From 32c2a6306d87582e8ad645e2a2270c1d6885485c Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Tue, 1 Mar 2022 23:05:29 -0500 Subject: [PATCH 01/33] add core defs to in buildSubgraphSchema --- internals-js/package.json | 2 +- subgraph-js/package.json | 6 ++ .../src/__tests__/subgraphCore.test.ts | 101 ++++++++++++++++++ subgraph-js/src/federation-atlas.ts | 58 ++++++++++ .../src/schema-helper/buildSchemaFromSDL.ts | 11 +- 5 files changed, 176 insertions(+), 2 deletions(-) create mode 100644 subgraph-js/src/__tests__/subgraphCore.test.ts create mode 100644 subgraph-js/src/federation-atlas.ts diff --git a/internals-js/package.json b/internals-js/package.json index f2fd2e633..fb6b11910 100644 --- a/internals-js/package.json +++ b/internals-js/package.json @@ -23,7 +23,7 @@ "node": ">=12.13.0 <17.0" }, "dependencies": { - "@apollo/core-schema": "^0.2.2", + "@apollo/core-schema": "^0.3", "chalk": "^4.1.0", "js-levenshtein": "^1.1.6" }, diff --git a/subgraph-js/package.json b/subgraph-js/package.json index 23a3472dc..b879ef120 100644 --- a/subgraph-js/package.json +++ b/subgraph-js/package.json @@ -20,6 +20,12 @@ "engines": { "node": ">=12.13.0 <17.0" }, + "dependencies": { + "@apollo/core-schema": "^0.3" + }, + "devDependencies": { + "@protoplasm/recall": "^0.1.0" + }, "publishConfig": { "access": "public" }, diff --git a/subgraph-js/src/__tests__/subgraphCore.test.ts b/subgraph-js/src/__tests__/subgraphCore.test.ts new file mode 100644 index 000000000..9534c622e --- /dev/null +++ b/subgraph-js/src/__tests__/subgraphCore.test.ts @@ -0,0 +1,101 @@ +import { fixtures } from 'apollo-federation-integration-testsuite'; +import { subgraphSchema } from '../schema-helper/buildSchemaFromSDL'; +import { print } from 'graphql'; +import recall from '@protoplasm/recall'; + +describe('subgraphSchema', () => { + it('compiles a subgraph into a core schema', () => { + const result = recall(() => + subgraphSchema([{ typeDefs: fixtures[0].typeDefs }]), + ).getResult(); + if (result.didThrow()) throw result.error; + expect([...result.errors()].length).toBe(0) + expect(print(result.data.document)).toBe(`directive @stream on FIELD + +directive @transform(from: String!) on FIELD + +directive @tag(name: String!) repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION + +enum CacheControlScope { + PUBLIC + PRIVATE +} + +directive @cacheControl(maxAge: Int, scope: CacheControlScope, inheritMaxAge: Boolean) on FIELD_DEFINITION | OBJECT | INTERFACE | UNION + +scalar JSON @specifiedBy(url: "https://json-spec.dev") + +schema { + query: RootQuery + mutation: Mutation +} + +type RootQuery { + user(id: ID!): User + me: User @cacheControl(maxAge: 1000, scope: PRIVATE) +} + +type PasswordAccount @key(fields: "email") { + email: String! +} + +type SMSAccount @key(fields: "number") { + number: String +} + +union AccountType @tag(name: "from-accounts") = PasswordAccount | SMSAccount + +type UserMetadata { + name: String + address: String + description: String +} + +type User @key(fields: "id") @key(fields: "username name { first last }") @tag(name: "from-accounts") { + id: ID! @tag(name: "accounts") + name: Name @cacheControl(inheritMaxAge: true) + username: String @shareable + birthDate(locale: String): String @tag(name: "admin") @tag(name: "dev") + account: AccountType + metadata: [UserMetadata] + ssn: String +} + +type Name { + first: String + last: String +} + +type Mutation { + login(username: String!, password: String!, userId: String @deprecated(reason: "Use username instead")): User +} + +type Library @key(fields: "id") { + id: ID! + name: String @external + userAccount(id: ID! = "1"): User @requires(fields: "name") +} + +extend schema @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key", "@requires", "@provides", "@external", "@shareable", "@tag", "@extends"]) + +extend schema + +directive @key(fields: federation__FieldSet!) repeatable on OBJECT + +directive @shareable on FIELD_DEFINITION + +directive @external repeatable on OBJECT + +directive @requires(fields: federation__FieldSet!) on FIELD_DEFINITION + +directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + +scalar federation__FieldSet + +scalar link__Url + +scalar link__Name + +scalar link__Imports`); + }); +}); diff --git a/subgraph-js/src/federation-atlas.ts b/subgraph-js/src/federation-atlas.ts new file mode 100644 index 000000000..d00521e7f --- /dev/null +++ b/subgraph-js/src/federation-atlas.ts @@ -0,0 +1,58 @@ +import { parse, Source } from "graphql"; +import { Atlas, IAtlas, Schema } from "@apollo/core-schema"; + +export const BASE = Schema.from(parse(new Source(` + extend schema + @link(url: "https://specs.apollo.dev/link/v0.3") + @link(url: "https://specs.apollo.dev/id/v1.0") +`, 'base'))) + +export const SUBGRAPH_BASE = Schema.from(parse(new Source(` + extend schema + @link(url: "https://specs.apollo.dev/federation/v1.0", as: "", + import: "@key @requires @provides @external") +`, 'subgraph-base')), BASE) + +export const ATLAS: IAtlas = Atlas.fromSchemas( + Schema.from(parse(new Source(` + extend schema @id(url: "https://specs.apollo.dev/federation/v1.0") + + directive @key(fields: FieldSet!) repeatable on OBJECT + directive @requires(fields: FieldSet!) on FIELD_DEFINITION + directive @provides(fields: FieldSet!) on FIELD_DEFINITION + directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION + + scalar FieldSet + `, 'builtin/federation/v1.0.graphql')), BASE), + + Schema.from(parse(new Source(` + extend schema @id(url: "https://specs.apollo.dev/federation/v2.0") + + directive @key(fields: FieldSet!) repeatable on OBJECT + directive @requires(fields: FieldSet!) on FIELD_DEFINITION + directive @provides(fields: FieldSet!) on FIELD_DEFINITION + directive @external repeatable on OBJECT + directive @moving(to: String!) on FIELD_DEFINITION + directive @shareable on FIELD_DEFINITION + + scalar FieldSet + `, 'builtin/federation/v2.0.graphql')), BASE), + + Schema.from(parse(new Source(` + extend schema @id(url: "https://specs.apollo.dev/link/v0.3") + + directive @link(url: Url!, as: Name, import: Imports) + repeatable on SCHEMA + + scalar Url + scalar Name + scalar Imports + `, 'builtin/link/v0.3.graphql')), BASE), + + Schema.from(parse(new Source(` + extend schema @id(url: "https://specs.apollo.dev/id/v1.0") + @link(url: "https://specs.apollo.dev/link/v0.3", import: "Url Name") + + directive @id(url: Url!, as: Name) on SCHEMA + `, 'builtin/id/v1.0.graphql')), BASE) +) diff --git a/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts b/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts index 966c9c826..9ff922cfb 100644 --- a/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts +++ b/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts @@ -22,6 +22,7 @@ import { ConstDirectiveNode, ASTNode, StringValueNode, + print, } from 'graphql'; import { GraphQLResolverMap, GraphQLSchemaModule } from './resolverMap'; @@ -36,6 +37,8 @@ import { SDLValidationRule } from "graphql/validation/ValidationContext"; import { specifiedSDLRules } from 'graphql/validation/specifiedRules'; import { GraphQLSchemaValidationError } from './error'; +import Schema from '@apollo/core-schema'; +import { ATLAS, SUBGRAPH_BASE } from '../federation-atlas'; function isNotNullOrUndefined( value: T | null | undefined, @@ -177,10 +180,11 @@ export function buildSchemaFromSDL( ): GraphQLSchema { const modules = modulesFromSDL(modulesOrSDL); - const documentAST = concatAST(modules.map(module => module.typeDefs)); + const documentAST = subgraphSchema(modules).document const errors = validateSDL(documentAST, schemaToExtend, sdlRules); if (errors.length > 0) { + console.log(print(documentAST)) throw new GraphQLSchemaValidationError(errors); } @@ -323,3 +327,8 @@ export function buildSchemaFromSDL( return schema; } + +export function subgraphSchema(modules: GraphQLSchemaModule[]) { + const mergedDocument = concatAST(modules.map(module => module.typeDefs)); + return Schema.from(mergedDocument, SUBGRAPH_BASE).compile(ATLAS) +} From c9e5e0060823fbd869dcd27857d9f3362533c7f7 Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Wed, 2 Mar 2022 00:14:43 -0500 Subject: [PATCH 02/33] always emit core. --- .../src/__tests__/subgraphCore.test.ts | 104 +++++++++++++++++- .../src/schema-helper/buildSchemaFromSDL.ts | 4 +- 2 files changed, 101 insertions(+), 7 deletions(-) diff --git a/subgraph-js/src/__tests__/subgraphCore.test.ts b/subgraph-js/src/__tests__/subgraphCore.test.ts index 9534c622e..895232e4d 100644 --- a/subgraph-js/src/__tests__/subgraphCore.test.ts +++ b/subgraph-js/src/__tests__/subgraphCore.test.ts @@ -9,8 +9,11 @@ describe('subgraphSchema', () => { subgraphSchema([{ typeDefs: fixtures[0].typeDefs }]), ).getResult(); if (result.didThrow()) throw result.error; - expect([...result.errors()].length).toBe(0) - expect(print(result.data.document)).toBe(`directive @stream on FIELD + expect([...result.errors()].length).toBe(0); + expect(print(result.data.document)) + .toBe(`extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v2.0", import: "@key @requires @provides @external @shareable @tag @extends") @link(url: "https://specs.apollo.dev/id/v1.0") + +directive @stream on FIELD directive @transform(from: String!) on FIELD @@ -76,10 +79,6 @@ type Library @key(fields: "id") { userAccount(id: ID! = "1"): User @requires(fields: "name") } -extend schema @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key", "@requires", "@provides", "@external", "@shareable", "@tag", "@extends"]) - -extend schema - directive @key(fields: federation__FieldSet!) repeatable on OBJECT directive @shareable on FIELD_DEFINITION @@ -98,4 +97,97 @@ scalar link__Name scalar link__Imports`); }); + + it('links against federation 1.0 by default', () => { + const doc = fixtures[0].typeDefs; + const result = recall(() => + subgraphSchema([ + { + typeDefs: { + ...doc, + definitions: doc.definitions.slice(0, doc.definitions.length - 1), + }, + }, + ]), + ).getResult(); + if (result.didThrow()) throw result.error; + expect([...result.errors()].length).toBe(0); + expect(print(result.data.document)).toMatchInlineSnapshot(` + "extend schema @link(url: \\"https://specs.apollo.dev/link/v0.3\\") @link(url: \\"https://specs.apollo.dev/federation/v1.0\\", import: \\"@key @requires @provides @external\\") @link(url: \\"https://specs.apollo.dev/id/v1.0\\") + + directive @stream on FIELD + + directive @transform(from: String!) on FIELD + + directive @tag(name: String!) repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION + + enum CacheControlScope { + PUBLIC + PRIVATE + } + + directive @cacheControl(maxAge: Int, scope: CacheControlScope, inheritMaxAge: Boolean) on FIELD_DEFINITION | OBJECT | INTERFACE | UNION + + scalar JSON @specifiedBy(url: \\"https://json-spec.dev\\") + + schema { + query: RootQuery + mutation: Mutation + } + + type RootQuery { + user(id: ID!): User + me: User @cacheControl(maxAge: 1000, scope: PRIVATE) + } + + type PasswordAccount @key(fields: \\"email\\") { + email: String! + } + + type SMSAccount @key(fields: \\"number\\") { + number: String + } + + union AccountType @tag(name: \\"from-accounts\\") = PasswordAccount | SMSAccount + + type UserMetadata { + name: String + address: String + description: String + } + + type User @key(fields: \\"id\\") @key(fields: \\"username name { first last }\\") @tag(name: \\"from-accounts\\") { + id: ID! @tag(name: \\"accounts\\") + name: Name @cacheControl(inheritMaxAge: true) + username: String @shareable + birthDate(locale: String): String @tag(name: \\"admin\\") @tag(name: \\"dev\\") + account: AccountType + metadata: [UserMetadata] + ssn: String + } + + type Name { + first: String + last: String + } + + type Mutation { + login(username: String!, password: String!, userId: String @deprecated(reason: \\"Use username instead\\")): User + } + + type Library @key(fields: \\"id\\") { + id: ID! + name: String @external + userAccount(id: ID! = \\"1\\"): User @requires(fields: \\"name\\") + } + + directive @key(fields: federation__FieldSet!) repeatable on OBJECT + + directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION + + directive @requires(fields: federation__FieldSet!) on FIELD_DEFINITION + + scalar federation__FieldSet" + `); + }); }); diff --git a/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts b/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts index 9ff922cfb..677e8aa0e 100644 --- a/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts +++ b/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts @@ -330,5 +330,7 @@ export function buildSchemaFromSDL( export function subgraphSchema(modules: GraphQLSchemaModule[]) { const mergedDocument = concatAST(modules.map(module => module.typeDefs)); - return Schema.from(mergedDocument, SUBGRAPH_BASE).compile(ATLAS) + return Schema.from(mergedDocument, SUBGRAPH_BASE) + .fill(ATLAS) + .toCore() } From 253af34550a1a69eef2ca68c79c01174cc025c08 Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Wed, 2 Mar 2022 20:10:21 -0500 Subject: [PATCH 03/33] appears to work, diffing snapshots --- subgraph-js/jest.config.js | 4 + .../src/__tests__/subgraphCore.test.ts | 226 ++++++++++++------ subgraph-js/src/buildSubgraphSchema.ts | 4 +- subgraph-js/src/federation-atlas.ts | 44 ++-- .../src/schema-helper/buildSchemaFromSDL.ts | 8 +- 5 files changed, 176 insertions(+), 110 deletions(-) diff --git a/subgraph-js/jest.config.js b/subgraph-js/jest.config.js index 9b3988006..d721a296f 100644 --- a/subgraph-js/jest.config.js +++ b/subgraph-js/jest.config.js @@ -9,4 +9,8 @@ module.exports = { name: "@apollo/subgraph", color: "blue", }, + snapshotSerializers: [ + '@apollo/core-schema/dist/snapshot-serializers/ast', + '@apollo/core-schema/dist/snapshot-serializers/raw', + ] }; diff --git a/subgraph-js/src/__tests__/subgraphCore.test.ts b/subgraph-js/src/__tests__/subgraphCore.test.ts index 895232e4d..299348790 100644 --- a/subgraph-js/src/__tests__/subgraphCore.test.ts +++ b/subgraph-js/src/__tests__/subgraphCore.test.ts @@ -1,107 +1,138 @@ import { fixtures } from 'apollo-federation-integration-testsuite'; -import { subgraphSchema } from '../schema-helper/buildSchemaFromSDL'; +import { subgraphCore } from '../schema-helper/buildSchemaFromSDL'; import { print } from 'graphql'; import recall from '@protoplasm/recall'; +import { ATLAS } from '../federation-atlas'; +import raw from '@apollo/core-schema/dist/snapshot-serializers/raw'; -describe('subgraphSchema', () => { +describe('subgraphCore', () => { it('compiles a subgraph into a core schema', () => { const result = recall(() => - subgraphSchema([{ typeDefs: fixtures[0].typeDefs }]), + subgraphCore([{ typeDefs: fixtures[0].typeDefs }]), ).getResult(); if (result.didThrow()) throw result.error; expect([...result.errors()].length).toBe(0); - expect(print(result.data.document)) - .toBe(`extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v2.0", import: "@key @requires @provides @external @shareable @tag @extends") @link(url: "https://specs.apollo.dev/id/v1.0") + expect(print(result.data.document)).toMatchInlineSnapshot(` + "extend schema @link(url: \\"https://specs.apollo.dev/link/v0.3\\") @link(url: \\"https://specs.apollo.dev/federation/v2.0\\", import: \\"@key @requires @provides @external @shareable @tag @extends\\") @link(url: \\"https://specs.apollo.dev/id/v1.0\\") -directive @stream on FIELD + directive @stream on FIELD -directive @transform(from: String!) on FIELD + directive @transform(from: String!) on FIELD -directive @tag(name: String!) repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION + directive @tag(name: String!) repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION -enum CacheControlScope { - PUBLIC - PRIVATE -} + enum CacheControlScope { + PUBLIC + PRIVATE + } -directive @cacheControl(maxAge: Int, scope: CacheControlScope, inheritMaxAge: Boolean) on FIELD_DEFINITION | OBJECT | INTERFACE | UNION + directive @cacheControl(maxAge: Int, scope: CacheControlScope, inheritMaxAge: Boolean) on FIELD_DEFINITION | OBJECT | INTERFACE | UNION -scalar JSON @specifiedBy(url: "https://json-spec.dev") + scalar JSON @specifiedBy(url: \\"https://json-spec.dev\\") -schema { - query: RootQuery - mutation: Mutation -} + schema { + query: RootQuery + mutation: Mutation + } + + type RootQuery { + user(id: ID!): User + me: User @cacheControl(maxAge: 1000, scope: PRIVATE) + } -type RootQuery { - user(id: ID!): User - me: User @cacheControl(maxAge: 1000, scope: PRIVATE) -} + type PasswordAccount @key(fields: \\"email\\") { + email: String! + } -type PasswordAccount @key(fields: "email") { - email: String! -} + type SMSAccount @key(fields: \\"number\\") { + number: String + } -type SMSAccount @key(fields: "number") { - number: String -} + union AccountType @tag(name: \\"from-accounts\\") = PasswordAccount | SMSAccount -union AccountType @tag(name: "from-accounts") = PasswordAccount | SMSAccount + type UserMetadata { + name: String + address: String + description: String + } -type UserMetadata { - name: String - address: String - description: String -} + type User @key(fields: \\"id\\") @key(fields: \\"username name { first last }\\") @tag(name: \\"from-accounts\\") { + id: ID! @tag(name: \\"accounts\\") + name: Name @cacheControl(inheritMaxAge: true) + username: String @shareable + birthDate(locale: String): String @tag(name: \\"admin\\") @tag(name: \\"dev\\") + account: AccountType + metadata: [UserMetadata] + ssn: String + } -type User @key(fields: "id") @key(fields: "username name { first last }") @tag(name: "from-accounts") { - id: ID! @tag(name: "accounts") - name: Name @cacheControl(inheritMaxAge: true) - username: String @shareable - birthDate(locale: String): String @tag(name: "admin") @tag(name: "dev") - account: AccountType - metadata: [UserMetadata] - ssn: String -} + type Name { + first: String + last: String + } -type Name { - first: String - last: String -} + type Mutation { + login(username: String!, password: String!, userId: String @deprecated(reason: \\"Use username instead\\")): User + } -type Mutation { - login(username: String!, password: String!, userId: String @deprecated(reason: "Use username instead")): User -} + type Library @key(fields: \\"id\\") { + id: ID! + name: String @external + userAccount(id: ID! = \\"1\\"): User @requires(fields: \\"name\\") + } -type Library @key(fields: "id") { - id: ID! - name: String @external - userAccount(id: ID! = "1"): User @requires(fields: "name") -} + directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA -directive @key(fields: federation__FieldSet!) repeatable on OBJECT + directive @key(fields: federation__FieldSet!) repeatable on OBJECT -directive @shareable on FIELD_DEFINITION + directive @shareable on FIELD_DEFINITION -directive @external repeatable on OBJECT + directive @external repeatable on OBJECT -directive @requires(fields: federation__FieldSet!) on FIELD_DEFINITION + directive @requires(fields: federation__FieldSet!) on FIELD_DEFINITION -directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + scalar link__Url -scalar federation__FieldSet + scalar link__Name -scalar link__Url + scalar link__Imports -scalar link__Name + scalar federation__FieldSet" + `); + }); -scalar link__Imports`); + it('has an atlas', () => { + expect([...ATLAS]).toMatchInlineSnapshot(` + Array [ + [builtin/federation/v1.0.graphql] 👉@id(url: "https://specs.apollo.dev/federation/v1.0"), + [builtin/federation/v1.0.graphql] 👉directive @key(fields: FieldSet!) repeatable on OBJECT, + [builtin/federation/v1.0.graphql] 👉directive @requires(fields: FieldSet!) on FIELD_DEFINITION, + [builtin/federation/v1.0.graphql] 👉directive @provides(fields: FieldSet!) on FIELD_DEFINITION, + [builtin/federation/v1.0.graphql] 👉directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION, + [builtin/federation/v1.0.graphql] 👉scalar FieldSet, + [builtin/federation/v2.0.graphql] 👉@id(url: "https://specs.apollo.dev/federation/v2.0"), + [builtin/federation/v2.0.graphql] 👉directive @key(fields: FieldSet!) repeatable on OBJECT, + [builtin/federation/v2.0.graphql] 👉directive @requires(fields: FieldSet!) on FIELD_DEFINITION, + [builtin/federation/v2.0.graphql] 👉directive @provides(fields: FieldSet!) on FIELD_DEFINITION, + [builtin/federation/v2.0.graphql] 👉directive @external repeatable on OBJECT, + [builtin/federation/v2.0.graphql] 👉directive @moving(to: String!) on FIELD_DEFINITION, + [builtin/federation/v2.0.graphql] 👉directive @shareable on FIELD_DEFINITION, + [builtin/federation/v2.0.graphql] 👉scalar FieldSet, + [builtin/link/v0.3.graphql] 👉@id(url: "https://specs.apollo.dev/link/v0.3"), + [builtin/link/v0.3.graphql] 👉directive @link(url: Url!, as: Name, import: Imports), + [builtin/link/v0.3.graphql] 👉scalar Url, + [builtin/link/v0.3.graphql] 👉scalar Name, + [builtin/link/v0.3.graphql] 👉scalar Imports, + [builtin/id/v1.0.graphql] 👉@id(url: "https://specs.apollo.dev/id/v1.0"), + [builtin/id/v1.0.graphql] 👉directive @id(url: Url!, as: Name) on SCHEMA, + ] + `); }); it('links against federation 1.0 by default', () => { const doc = fixtures[0].typeDefs; const result = recall(() => - subgraphSchema([ + subgraphCore([ { typeDefs: { ...doc, @@ -112,8 +143,39 @@ scalar link__Imports`); ).getResult(); if (result.didThrow()) throw result.error; expect([...result.errors()].length).toBe(0); - expect(print(result.data.document)).toMatchInlineSnapshot(` - "extend schema @link(url: \\"https://specs.apollo.dev/link/v0.3\\") @link(url: \\"https://specs.apollo.dev/federation/v1.0\\", import: \\"@key @requires @provides @external\\") @link(url: \\"https://specs.apollo.dev/id/v1.0\\") + const schema = result.data; + expect([...schema]).toMatchInlineSnapshot(` + Array [ + <>[+] extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/id/v1.0"), + <#@stream>[GraphQL request] 👉directive @stream on FIELD, + <#@transform>[GraphQL request] 👉directive @transform(from: String!) on FIELD, + <#@tag>[GraphQL request] 👉directive @tag(name: String!) repeatable on, + <#CacheControlScope>[GraphQL request] 👉enum CacheControlScope {, + <#@cacheControl>[GraphQL request] 👉directive @cacheControl(, + <#JSON>[GraphQL request] 👉scalar JSON @specifiedBy(url: "https://json-spec.dev"), + <>[GraphQL request] 👉schema {, + <#RootQuery>[GraphQL request] 👉type RootQuery {, + <#PasswordAccount>[GraphQL request] 👉type PasswordAccount @key(fields: "email") {, + <#SMSAccount>[GraphQL request] 👉type SMSAccount @key(fields: "number") {, + <#AccountType>[GraphQL request] 👉union AccountType @tag(name: "from-accounts") = PasswordAccount | SMSAccount, + <#UserMetadata>[GraphQL request] 👉type UserMetadata {, + <#User>[GraphQL request] 👉type User @key(fields: "id") @key(fields: "username name { first last }") @tag(name: "from-accounts") {, + <#Name>[GraphQL request] 👉type Name {, + <#Mutation>[GraphQL request] 👉type Mutation {, + <#Library>[GraphQL request] 👉type Library @key(fields: "id") {, + [builtin/link/v0.3.graphql] 👉directive @link(url: Url!, as: Name, import: Imports), + [builtin/federation/v1.0.graphql] 👉directive @key(fields: FieldSet!) repeatable on OBJECT, + [builtin/federation/v1.0.graphql] 👉directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION, + [builtin/federation/v1.0.graphql] 👉directive @requires(fields: FieldSet!) on FIELD_DEFINITION, + [builtin/link/v0.3.graphql] 👉scalar Url, + [builtin/link/v0.3.graphql] 👉scalar Name, + [builtin/link/v0.3.graphql] 👉scalar Imports, + [builtin/federation/v1.0.graphql] 👉scalar FieldSet, + ] + `); + + expect(raw(print(result.data.document))).toMatchInlineSnapshot(` + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/id/v1.0") directive @stream on FIELD @@ -128,7 +190,7 @@ scalar link__Imports`); directive @cacheControl(maxAge: Int, scope: CacheControlScope, inheritMaxAge: Boolean) on FIELD_DEFINITION | OBJECT | INTERFACE | UNION - scalar JSON @specifiedBy(url: \\"https://json-spec.dev\\") + scalar JSON @specifiedBy(url: "https://json-spec.dev") schema { query: RootQuery @@ -140,15 +202,15 @@ scalar link__Imports`); me: User @cacheControl(maxAge: 1000, scope: PRIVATE) } - type PasswordAccount @key(fields: \\"email\\") { + type PasswordAccount @key(fields: "email") { email: String! } - type SMSAccount @key(fields: \\"number\\") { + type SMSAccount @key(fields: "number") { number: String } - union AccountType @tag(name: \\"from-accounts\\") = PasswordAccount | SMSAccount + union AccountType @tag(name: "from-accounts") = PasswordAccount | SMSAccount type UserMetadata { name: String @@ -156,11 +218,11 @@ scalar link__Imports`); description: String } - type User @key(fields: \\"id\\") @key(fields: \\"username name { first last }\\") @tag(name: \\"from-accounts\\") { - id: ID! @tag(name: \\"accounts\\") + type User @key(fields: "id") @key(fields: "username name { first last }") @tag(name: "from-accounts") { + id: ID! @tag(name: "accounts") name: Name @cacheControl(inheritMaxAge: true) username: String @shareable - birthDate(locale: String): String @tag(name: \\"admin\\") @tag(name: \\"dev\\") + birthDate(locale: String): String @tag(name: "admin") @tag(name: "dev") account: AccountType metadata: [UserMetadata] ssn: String @@ -172,22 +234,30 @@ scalar link__Imports`); } type Mutation { - login(username: String!, password: String!, userId: String @deprecated(reason: \\"Use username instead\\")): User + login(username: String!, password: String!, userId: String @deprecated(reason: "Use username instead")): User } - type Library @key(fields: \\"id\\") { + type Library @key(fields: "id") { id: ID! name: String @external - userAccount(id: ID! = \\"1\\"): User @requires(fields: \\"name\\") + userAccount(id: ID! = "1"): User @requires(fields: "name") } + directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + directive @key(fields: federation__FieldSet!) repeatable on OBJECT directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION directive @requires(fields: federation__FieldSet!) on FIELD_DEFINITION - scalar federation__FieldSet" + scalar link__Url + + scalar link__Name + + scalar link__Imports + + scalar federation__FieldSet `); }); }); diff --git a/subgraph-js/src/buildSubgraphSchema.ts b/subgraph-js/src/buildSubgraphSchema.ts index 33c8e6839..0c09659b5 100644 --- a/subgraph-js/src/buildSubgraphSchema.ts +++ b/subgraph-js/src/buildSubgraphSchema.ts @@ -17,7 +17,7 @@ import { buildSchemaFromSDL, } from './schema-helper'; -import { federationDirectives, typeIncludesDirective } from './directives'; +import { typeIncludesDirective } from './directives'; import { serviceField, entitiesField, EntityType } from './types'; @@ -67,7 +67,7 @@ export function buildSubgraphSchema( modules, new GraphQLSchema({ query: undefined, - directives: [...specifiedDirectives, ...federationDirectives], + directives: [...specifiedDirectives], }), ); diff --git a/subgraph-js/src/federation-atlas.ts b/subgraph-js/src/federation-atlas.ts index d00521e7f..a8794fec9 100644 --- a/subgraph-js/src/federation-atlas.ts +++ b/subgraph-js/src/federation-atlas.ts @@ -1,21 +1,14 @@ -import { parse, Source } from "graphql"; -import { Atlas, IAtlas, Schema } from "@apollo/core-schema"; +import { Atlas, IAtlas, Schema, gql } from "@apollo/core-schema"; -export const BASE = Schema.from(parse(new Source(` - extend schema - @link(url: "https://specs.apollo.dev/link/v0.3") - @link(url: "https://specs.apollo.dev/id/v1.0") -`, 'base'))) - -export const SUBGRAPH_BASE = Schema.from(parse(new Source(` - extend schema +export const SUBGRAPH_BASE = Schema.basic( + gql `${'builtin:subgraph-base'} @link(url: "https://specs.apollo.dev/federation/v1.0", as: "", - import: "@key @requires @provides @external") -`, 'subgraph-base')), BASE) + import: "@key @requires @provides @external") + `) export const ATLAS: IAtlas = Atlas.fromSchemas( - Schema.from(parse(new Source(` - extend schema @id(url: "https://specs.apollo.dev/federation/v1.0") + Schema.basic(gql `${'builtin/federation/v1.0.graphql'} + @id(url: "https://specs.apollo.dev/federation/v1.0") directive @key(fields: FieldSet!) repeatable on OBJECT directive @requires(fields: FieldSet!) on FIELD_DEFINITION @@ -23,10 +16,10 @@ export const ATLAS: IAtlas = Atlas.fromSchemas( directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION scalar FieldSet - `, 'builtin/federation/v1.0.graphql')), BASE), + `), - Schema.from(parse(new Source(` - extend schema @id(url: "https://specs.apollo.dev/federation/v2.0") + Schema.basic(gql `${'builtin/federation/v2.0.graphql'} + @id(url: "https://specs.apollo.dev/federation/v2.0") directive @key(fields: FieldSet!) repeatable on OBJECT directive @requires(fields: FieldSet!) on FIELD_DEFINITION @@ -36,10 +29,10 @@ export const ATLAS: IAtlas = Atlas.fromSchemas( directive @shareable on FIELD_DEFINITION scalar FieldSet - `, 'builtin/federation/v2.0.graphql')), BASE), + `), - Schema.from(parse(new Source(` - extend schema @id(url: "https://specs.apollo.dev/link/v0.3") + Schema.basic(gql `${'builtin/link/v0.3.graphql'} + @id(url: "https://specs.apollo.dev/link/v0.3") directive @link(url: Url!, as: Name, import: Imports) repeatable on SCHEMA @@ -47,12 +40,13 @@ export const ATLAS: IAtlas = Atlas.fromSchemas( scalar Url scalar Name scalar Imports - `, 'builtin/link/v0.3.graphql')), BASE), + `), - Schema.from(parse(new Source(` - extend schema @id(url: "https://specs.apollo.dev/id/v1.0") - @link(url: "https://specs.apollo.dev/link/v0.3", import: "Url Name") + Schema.basic(gql `${'builtin/id/v1.0.graphql'} + @id(url: "https://specs.apollo.dev/id/v1.0") + @link(url: "https://specs.apollo.dev/link/v0.3", + import: "Url Name") directive @id(url: Url!, as: Name) on SCHEMA - `, 'builtin/id/v1.0.graphql')), BASE) + `) ) diff --git a/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts b/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts index 677e8aa0e..7f92680ee 100644 --- a/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts +++ b/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts @@ -180,7 +180,7 @@ export function buildSchemaFromSDL( ): GraphQLSchema { const modules = modulesFromSDL(modulesOrSDL); - const documentAST = subgraphSchema(modules).document + const documentAST = subgraphCore(modules).document const errors = validateSDL(documentAST, schemaToExtend, sdlRules); if (errors.length > 0) { @@ -328,9 +328,7 @@ export function buildSchemaFromSDL( return schema; } -export function subgraphSchema(modules: GraphQLSchemaModule[]) { +export function subgraphCore(modules: GraphQLSchemaModule[]) { const mergedDocument = concatAST(modules.map(module => module.typeDefs)); - return Schema.from(mergedDocument, SUBGRAPH_BASE) - .fill(ATLAS) - .toCore() + return Schema.from(mergedDocument, SUBGRAPH_BASE).compile(ATLAS) } From b13ddade5d793aca71e8d8cb7e1ff550b6c41a30 Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Thu, 3 Mar 2022 16:30:13 -0500 Subject: [PATCH 04/33] update tests, all subgraph-js tests passing --- .../src/__tests__/buildSubgraphSchema.test.ts | 436 ++++++++++++------ .../src/__tests__/printSubgraphSchema.test.ts | 87 +++- .../src/__tests__/subgraphCore.test.ts | 30 +- subgraph-js/src/federation-atlas.ts | 20 +- subgraph-js/src/printSubgraphSchema.ts | 4 +- .../src/schema-helper/buildSchemaFromSDL.ts | 2 - 6 files changed, 389 insertions(+), 190 deletions(-) diff --git a/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts b/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts index ac4c4b1f0..1bee06ae7 100644 --- a/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts +++ b/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts @@ -1,7 +1,14 @@ import gql from 'graphql-tag'; -import { Kind, graphql, DocumentNode, execute, type DefinitionNode } from 'graphql'; +import { + Kind, + graphql, + DocumentNode, + execute, + type DefinitionNode, +} from 'graphql'; import { buildSubgraphSchema } from '../buildSubgraphSchema'; import { typeSerializer } from 'apollo-federation-integration-testsuite'; +import raw from '@apollo/core-schema/dist/snapshot-serializers/raw'; expect.addSnapshotSerializer(typeSerializer); @@ -21,12 +28,12 @@ describe('buildSubgraphSchema', () => { `); expect(schema.getType('Product')).toMatchInlineSnapshot(` -type Product { - upc: String! - name: String - price: Int -} -`); + type Product { + upc: String! + name: String + price: Int + } + `); expect(schema.getType('_Entity')).toMatchInlineSnapshot( `union _Entity = Product`, @@ -44,13 +51,13 @@ type Product { `); expect(schema.getType('Product')).toMatchInlineSnapshot(` -type Product { - upc: String! - sku: String! - name: String - price: Int -} -`); + type Product { + upc: String! + sku: String! + name: String + price: Int + } + `); expect(schema.getType('_Entity')).toMatchInlineSnapshot( `union _Entity = Product`, @@ -66,11 +73,11 @@ type Product { `); expect(schema.getType('Money')).toMatchInlineSnapshot(` -type Money { - amount: Int! - currencyCode: String! -} -`); + type Money { + amount: Int! + currencyCode: String! + } + `); }); it('should preserve description text in generated SDL', async () => { @@ -80,7 +87,6 @@ type Money { } }`; const schema = buildSubgraphSchema(gql` - "Description text on 'SchemaDefinition' nodes supported as per the October 2021 Edition of the spec." schema { query: Query } @@ -111,41 +117,56 @@ type Money { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); - expect((data?._service as any).sdl).toEqual(`""" -Description text on 'SchemaDefinition' nodes supported as per the October 2021 Edition of the spec. -""" -schema { - query: Query -} - -""" -A user. This user is very complicated and requires so so so so so so so so so so so so so so so so so so so so so so so so so so so so so so so so much description text -""" -type User @key(fields: "id") { - """The unique ID of the user.""" - id: ID! - - """The user's name.""" - name: String - username: String - foo( - """Description 1""" - arg1: String - - """Description 2""" - arg2: String - - """ - Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 - """ - arg3: String - ): String -} - -extend type Query { - _dummyField: Boolean -} -`); + expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` + """a description of the schema. yo.""" + schema { + query: Query + } + + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + + directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + + """federation 1.0 key directive""" + directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE + + """ + A user. This user is very complicated and requires so so so so so so so so so so so so so so so so so so so so so so so so so so so so so so so so much description text + """ + type User @key(fields: "id") { + """The unique ID of the user.""" + id: ID! + + """The user's name.""" + name: String + username: String + foo( + """Description 1""" + arg1: String + + """Description 2""" + arg2: String + + """ + Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 + """ + arg3: String + ): String + } + + scalar link__Url + + scalar link__Name + + scalar link__Imports + + scalar federation__FieldSet + + extend type Query { + _dummyField: Boolean + } + + `); }); describe(`should add an _entities query root field to the schema`, () => { @@ -160,12 +181,12 @@ extend type Query { `); expect(schema.getQueryType()).toMatchInlineSnapshot(` -type Query { - _entities(representations: [_Any!]!): [_Entity]! - _service: _Service! - rootField: String -} -`); + type Query { + _entities(representations: [_Any!]!): [_Entity]! + _service: _Service! + rootField: String + } + `); }); it(`when a query root type with a non-default name has been defined`, () => { @@ -183,12 +204,12 @@ type Query { `); expect(schema.getQueryType()).toMatchInlineSnapshot(` -type QueryRoot { - _entities(representations: [_Any!]!): [_Entity]! - _service: _Service! - rootField: String -} -`); + type QueryRoot { + _entities(representations: [_Any!]!): [_Entity]! + _service: _Service! + rootField: String + } + `); }); }); describe(`should not add an _entities query root field to the schema`, () => { @@ -196,10 +217,10 @@ type QueryRoot { const schema = buildSubgraphSchema(EMPTY_DOCUMENT); expect(schema.getQueryType()).toMatchInlineSnapshot(` -type Query { - _service: _Service! -} -`); + type Query { + _service: _Service! + } + `); }); it(`when no types with keys are found`, () => { const schema = buildSubgraphSchema(gql` @@ -209,11 +230,11 @@ type Query { `); expect(schema.getQueryType()).toMatchInlineSnapshot(` -type Query { - _service: _Service! - rootField: String -} -`); + type Query { + _service: _Service! + rootField: String + } + `); }); it(`when only an interface with keys are found`, () => { const schema = buildSubgraphSchema(gql` @@ -226,11 +247,11 @@ type Query { `); expect(schema.getQueryType()).toMatchInlineSnapshot(` -type Query { - _service: _Service! - rootField: String -} -`); + type Query { + _service: _Service! + rootField: String + } + `); }); }); describe('_entities root field', () => { @@ -348,16 +369,35 @@ type Query { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); - expect((data?._service as any).sdl).toEqual(`type Review { - id: ID - title: String -} - -extend type Product @key(fields: "upc") { - upc: String @external - reviews: [Review] -} -`); + expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + + directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + + """federation 1.0 key directive""" + directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE + + directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION + + type Review { + id: ID + title: String + } + + scalar link__Url + + scalar link__Name + + scalar link__Imports + + scalar federation__FieldSet + + extend type Product @key(fields: "upc") { + upc: String @external + reviews: [Review] + } + + `); }); it('keeps extension interface when owner interface is not present', async () => { const query = `query GetServiceDetails { @@ -386,20 +426,39 @@ extend type Product @key(fields: "upc") { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); - expect((data?._service as any).sdl).toEqual(`type Review { - id: ID - title: String -} - -interface Node @key(fields: "id") { - id: ID! -} - -extend interface Product @key(fields: "upc") { - upc: String @external - reviews: [Review] -} -`); + expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + + directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + + """federation 1.0 key directive""" + directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE + + directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION + + type Review { + id: ID + title: String + } + + interface Node @key(fields: "id") { + id: ID! + } + + scalar link__Url + + scalar link__Name + + scalar link__Imports + + scalar federation__FieldSet + + extend interface Product @key(fields: "upc") { + upc: String @external + reviews: [Review] + } + + `); }); it('returns valid sdl for @key directives', async () => { const query = `query GetServiceDetails { @@ -417,12 +476,29 @@ extend interface Product @key(fields: "upc") { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); - expect((data?._service as any).sdl).toEqual(`type Product @key(fields: "upc") { - upc: String! - name: String - price: Int -} -`); + expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + + directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + + """federation 1.0 key directive""" + directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE + + type Product @key(fields: "upc") { + upc: String! + name: String + price: Int + } + + scalar link__Url + + scalar link__Name + + scalar link__Imports + + scalar federation__FieldSet + + `); }); it('returns valid sdl for multiple @key directives', async () => { const query = `query GetServiceDetails { @@ -440,13 +516,29 @@ extend interface Product @key(fields: "upc") { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); - expect((data?._service as any).sdl) - .toEqual(`type Product @key(fields: "upc") @key(fields: "name") { - upc: String! - name: String - price: Int -} -`); + expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + + directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + + """federation 1.0 key directive""" + directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE + + type Product @key(fields: "upc") @key(fields: "name") { + upc: String! + name: String + price: Int + } + + scalar link__Url + + scalar link__Name + + scalar link__Imports + + scalar federation__FieldSet + + `); }); it('supports all federation directives', async () => { const query = `query GetServiceDetails { @@ -476,23 +568,44 @@ extend interface Product @key(fields: "upc") { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); - expect((data?._service as any).sdl).toEqual(`type Review @key(fields: "id") { - id: ID! - body: String - author: User @provides(fields: "email") - product: Product @provides(fields: "upc") -} - -extend type User @key(fields: "email") { - email: String @external - reviews: [Review] -} - -extend type Product @key(fields: "upc") { - upc: String @external - reviews: [Review] -} -`); + expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + + directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + + """federation 1.0 key directive""" + directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE + + directive @provides(fields: federation__FieldSet!) on FIELD_DEFINITION + + directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION + + type Review @key(fields: "id") { + id: ID! + body: String + author: User @provides(fields: "email") + product: Product @provides(fields: "upc") + } + + scalar link__Url + + scalar link__Name + + scalar link__Imports + + scalar federation__FieldSet + + extend type User @key(fields: "email") { + email: String @external + reviews: [Review] + } + + extend type Product @key(fields: "upc") { + upc: String @external + reviews: [Review] + } + + `); }); it('keeps custom directives', async () => { const query = `query GetServiceDetails { @@ -511,12 +624,31 @@ extend type Product @key(fields: "upc") { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); - expect((data?._service as any).sdl).toEqual(`directive @custom on FIELD + expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + + directive @custom on FIELD + + directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + + """federation 1.0 key directive""" + directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE + + directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION + + scalar link__Url + + scalar link__Name + + scalar link__Imports + + scalar federation__FieldSet + + extend type User @key(fields: "email") { + email: String @external + } -extend type User @key(fields: "email") { - email: String @external -} -`); + `); }); }); }); @@ -619,12 +751,12 @@ describe('legacy interface', () => { `, }); expect(schema.getType('Product')).toMatchInlineSnapshot(` -type Product { - upc: String! - name: String - price: Int -} -`); + type Product { + upc: String! + name: String + price: Int + } + `); expect(schema.getType('_Entity')).toMatchInlineSnapshot( `union _Entity = Product`, ); @@ -632,12 +764,12 @@ type Product { it('allows legacy schema module interface as a simple array of documents', async () => { const schema = buildSubgraphSchema({ typeDefs }); expect(schema.getType('Product')).toMatchInlineSnapshot(` -type Product { - upc: String! - name: String - price: Int -} -`); + type Product { + upc: String! + name: String + price: Int + } + `); expect(schema.getType('_Entity')).toMatchInlineSnapshot( `union _Entity = Product`, ); diff --git a/subgraph-js/src/__tests__/printSubgraphSchema.test.ts b/subgraph-js/src/__tests__/printSubgraphSchema.test.ts index 9d42f204a..dd9636eda 100644 --- a/subgraph-js/src/__tests__/printSubgraphSchema.test.ts +++ b/subgraph-js/src/__tests__/printSubgraphSchema.test.ts @@ -2,17 +2,18 @@ import { fixtures } from 'apollo-federation-integration-testsuite'; import { buildSubgraphSchema } from '../buildSubgraphSchema'; import { printSubgraphSchema } from '../printSubgraphSchema'; import gql from 'graphql-tag'; +import raw from '@apollo/core-schema/dist/snapshot-serializers/raw'; describe('printSubgraphSchema', () => { it('prints a subgraph correctly', () => { const schema = buildSubgraphSchema(fixtures[0].typeDefs); - expect(printSubgraphSchema(schema)).toMatchInlineSnapshot(` - "schema { + expect(raw(printSubgraphSchema(schema))).toMatchInlineSnapshot(` + schema { query: RootQuery mutation: Mutation } - extend schema @link(url: \\"https://specs.apollo.dev/federation/v2.0\\", import: [\\"@key\\", \\"@requires\\", \\"@provides\\", \\"@external\\", \\"@shareable\\", \\"@tag\\", \\"@extends\\"]) + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v2.0", import: "@key @requires @provides @external @shareable @tag @extends") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") directive @stream on FIELD @@ -22,12 +23,23 @@ describe('printSubgraphSchema', () => { directive @cacheControl(maxAge: Int, scope: CacheControlScope, inheritMaxAge: Boolean) on FIELD_DEFINITION | OBJECT | INTERFACE | UNION + directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + + """federation 2.0 key directive""" + directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE + + directive @shareable on FIELD_DEFINITION | OBJECT + + directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION + + directive @requires(fields: federation__FieldSet!) on FIELD_DEFINITION + enum CacheControlScope { PUBLIC PRIVATE } - scalar JSON @specifiedBy(url: \\"https://json-spec.dev\\") + scalar JSON @specifiedBy(url: "https://json-spec.dev") type RootQuery { _entities(representations: [_Any!]!): [_Entity]! @@ -36,15 +48,15 @@ describe('printSubgraphSchema', () => { me: User } - type PasswordAccount @key(fields: \\"email\\") { + type PasswordAccount @key(fields: "email") { email: String! } - type SMSAccount @key(fields: \\"number\\") { + type SMSAccount @key(fields: "number") { number: String } - union AccountType @tag(name: \\"from-accounts\\") = PasswordAccount | SMSAccount + union AccountType @tag(name: "from-accounts") = PasswordAccount | SMSAccount type UserMetadata { name: String @@ -52,11 +64,11 @@ describe('printSubgraphSchema', () => { description: String } - type User @key(fields: \\"id\\") @key(fields: \\"username name { first last }\\") @tag(name: \\"from-accounts\\") { - id: ID! @tag(name: \\"accounts\\") + type User @key(fields: "id") @key(fields: "username name { first last }") @tag(name: "from-accounts") { + id: ID! @tag(name: "accounts") name: Name username: String @shareable - birthDate(locale: String): String @tag(name: \\"admin\\") @tag(name: \\"dev\\") + birthDate(locale: String): String @tag(name: "admin") @tag(name: "dev") account: AccountType metadata: [UserMetadata] ssn: String @@ -68,24 +80,44 @@ describe('printSubgraphSchema', () => { } type Mutation { - login(username: String!, password: String!, userId: String @deprecated(reason: \\"Use username instead\\")): User + login(username: String!, password: String!, userId: String @deprecated(reason: "Use username instead")): User } - type Library @key(fields: \\"id\\") { + type Library @key(fields: "id") { id: ID! name: String @external - userAccount(id: ID! = 1): User @requires(fields: \\"name\\") + userAccount(id: ID! = 1): User @requires(fields: "name") } - " + + scalar link__Url + + scalar link__Name + + scalar link__Imports + + scalar federation__FieldSet + `); }); it('prints a scalar without a directive correctly', () => { - const schema = gql`scalar JSON`; + const schema = gql` + scalar JSON + `; const subgraphSchema = buildSubgraphSchema(schema); expect(printSubgraphSchema(subgraphSchema)).toMatchInlineSnapshot(` - "scalar JSON + "extend schema @link(url: \\"https://specs.apollo.dev/link/v0.3\\") @link(url: \\"https://specs.apollo.dev/federation/v1.0\\", as: \\"\\", import: \\"@key @requires @provides @external\\") @link(url: \\"https://specs.apollo.dev/tag/v0.1\\") @link(url: \\"https://specs.apollo.dev/id/v1.0\\") + + directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + + scalar JSON + + scalar link__Url + + scalar link__Name + + scalar link__Imports type Query { _service: _Service! @@ -97,7 +129,7 @@ describe('printSubgraphSchema', () => { it('prints reviews subgraph correctly', () => { const schema = buildSubgraphSchema(fixtures[5].typeDefs); expect(printSubgraphSchema(schema)).toMatchInlineSnapshot(` - "extend schema @link(url: \\"https://specs.apollo.dev/federation/v2.0\\", import: [\\"@key\\", \\"@requires\\", \\"@provides\\", \\"@external\\", \\"@shareable\\", \\"@tag\\", \\"@extends\\"]) + "extend schema @link(url: \\"https://specs.apollo.dev/link/v0.3\\") @link(url: \\"https://specs.apollo.dev/federation/v2.0\\", import: \\"@key @requires @provides @external @shareable @tag @extends\\") @link(url: \\"https://specs.apollo.dev/tag/v0.1\\") @link(url: \\"https://specs.apollo.dev/id/v1.0\\") directive @stream on FIELD @@ -105,6 +137,19 @@ describe('printSubgraphSchema', () => { directive @tag(name: String!) repeatable on INTERFACE | FIELD_DEFINITION | OBJECT | UNION + directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + + \\"\\"\\"federation 2.0 key directive\\"\\"\\" + directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE + + directive @provides(fields: federation__FieldSet!) on FIELD_DEFINITION + + directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION + + directive @requires(fields: federation__FieldSet!) on FIELD_DEFINITION + + directive @shareable on FIELD_DEFINITION | OBJECT + type Query { _entities(representations: [_Any!]!): [_Entity]! _service: _Service! @@ -192,6 +237,14 @@ describe('printSubgraphSchema', () => { } union MetadataOrError = KeyValue | Error + + scalar link__Url + + scalar link__Name + + scalar link__Imports + + scalar federation__FieldSet " `); }); diff --git a/subgraph-js/src/__tests__/subgraphCore.test.ts b/subgraph-js/src/__tests__/subgraphCore.test.ts index 299348790..8aa2a0804 100644 --- a/subgraph-js/src/__tests__/subgraphCore.test.ts +++ b/subgraph-js/src/__tests__/subgraphCore.test.ts @@ -13,7 +13,7 @@ describe('subgraphCore', () => { if (result.didThrow()) throw result.error; expect([...result.errors()].length).toBe(0); expect(print(result.data.document)).toMatchInlineSnapshot(` - "extend schema @link(url: \\"https://specs.apollo.dev/link/v0.3\\") @link(url: \\"https://specs.apollo.dev/federation/v2.0\\", import: \\"@key @requires @provides @external @shareable @tag @extends\\") @link(url: \\"https://specs.apollo.dev/id/v1.0\\") + "extend schema @link(url: \\"https://specs.apollo.dev/link/v0.3\\") @link(url: \\"https://specs.apollo.dev/federation/v2.0\\", import: \\"@key @requires @provides @external @shareable @tag @extends\\") @link(url: \\"https://specs.apollo.dev/tag/v0.1\\") @link(url: \\"https://specs.apollo.dev/id/v1.0\\") directive @stream on FIELD @@ -83,11 +83,12 @@ describe('subgraphCore', () => { directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA - directive @key(fields: federation__FieldSet!) repeatable on OBJECT + \\"\\"\\"federation 2.0 key directive\\"\\"\\" + directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE - directive @shareable on FIELD_DEFINITION + directive @shareable on FIELD_DEFINITION | OBJECT - directive @external repeatable on OBJECT + directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION directive @requires(fields: federation__FieldSet!) on FIELD_DEFINITION @@ -104,19 +105,21 @@ describe('subgraphCore', () => { it('has an atlas', () => { expect([...ATLAS]).toMatchInlineSnapshot(` Array [ + [builtin/tag/v0.1] 👉@id(url: "https://specs.apollo.dev/tag/v0.1"), + [builtin/tag/v0.1] 👉directive @tag(name: String!), [builtin/federation/v1.0.graphql] 👉@id(url: "https://specs.apollo.dev/federation/v1.0"), - [builtin/federation/v1.0.graphql] 👉directive @key(fields: FieldSet!) repeatable on OBJECT, + [builtin/federation/v1.0.graphql] 👉directive @key(fields: FieldSet!) repeatable on OBJECT | INTERFACE, [builtin/federation/v1.0.graphql] 👉directive @requires(fields: FieldSet!) on FIELD_DEFINITION, [builtin/federation/v1.0.graphql] 👉directive @provides(fields: FieldSet!) on FIELD_DEFINITION, [builtin/federation/v1.0.graphql] 👉directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION, [builtin/federation/v1.0.graphql] 👉scalar FieldSet, [builtin/federation/v2.0.graphql] 👉@id(url: "https://specs.apollo.dev/federation/v2.0"), - [builtin/federation/v2.0.graphql] 👉directive @key(fields: FieldSet!) repeatable on OBJECT, + [builtin/federation/v2.0.graphql] 👉directive @key(fields: FieldSet!) repeatable on OBJECT | INTERFACE, [builtin/federation/v2.0.graphql] 👉directive @requires(fields: FieldSet!) on FIELD_DEFINITION, [builtin/federation/v2.0.graphql] 👉directive @provides(fields: FieldSet!) on FIELD_DEFINITION, - [builtin/federation/v2.0.graphql] 👉directive @external repeatable on OBJECT, + [builtin/federation/v2.0.graphql] 👉directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION, [builtin/federation/v2.0.graphql] 👉directive @moving(to: String!) on FIELD_DEFINITION, - [builtin/federation/v2.0.graphql] 👉directive @shareable on FIELD_DEFINITION, + [builtin/federation/v2.0.graphql] 👉directive @shareable on FIELD_DEFINITION | OBJECT, [builtin/federation/v2.0.graphql] 👉scalar FieldSet, [builtin/link/v0.3.graphql] 👉@id(url: "https://specs.apollo.dev/link/v0.3"), [builtin/link/v0.3.graphql] 👉directive @link(url: Url!, as: Name, import: Imports), @@ -146,10 +149,10 @@ describe('subgraphCore', () => { const schema = result.data; expect([...schema]).toMatchInlineSnapshot(` Array [ - <>[+] extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/id/v1.0"), + <>[+] extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0"), <#@stream>[GraphQL request] 👉directive @stream on FIELD, <#@transform>[GraphQL request] 👉directive @transform(from: String!) on FIELD, - <#@tag>[GraphQL request] 👉directive @tag(name: String!) repeatable on, + [GraphQL request] 👉directive @tag(name: String!) repeatable on, <#CacheControlScope>[GraphQL request] 👉enum CacheControlScope {, <#@cacheControl>[GraphQL request] 👉directive @cacheControl(, <#JSON>[GraphQL request] 👉scalar JSON @specifiedBy(url: "https://json-spec.dev"), @@ -164,7 +167,7 @@ describe('subgraphCore', () => { <#Mutation>[GraphQL request] 👉type Mutation {, <#Library>[GraphQL request] 👉type Library @key(fields: "id") {, [builtin/link/v0.3.graphql] 👉directive @link(url: Url!, as: Name, import: Imports), - [builtin/federation/v1.0.graphql] 👉directive @key(fields: FieldSet!) repeatable on OBJECT, + [builtin/federation/v1.0.graphql] 👉directive @key(fields: FieldSet!) repeatable on OBJECT | INTERFACE, [builtin/federation/v1.0.graphql] 👉directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION, [builtin/federation/v1.0.graphql] 👉directive @requires(fields: FieldSet!) on FIELD_DEFINITION, [builtin/link/v0.3.graphql] 👉scalar Url, @@ -175,7 +178,7 @@ describe('subgraphCore', () => { `); expect(raw(print(result.data.document))).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/id/v1.0") + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") directive @stream on FIELD @@ -245,7 +248,8 @@ describe('subgraphCore', () => { directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA - directive @key(fields: federation__FieldSet!) repeatable on OBJECT + """federation 1.0 key directive""" + directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION diff --git a/subgraph-js/src/federation-atlas.ts b/subgraph-js/src/federation-atlas.ts index a8794fec9..694ff2a1e 100644 --- a/subgraph-js/src/federation-atlas.ts +++ b/subgraph-js/src/federation-atlas.ts @@ -4,13 +4,22 @@ export const SUBGRAPH_BASE = Schema.basic( gql `${'builtin:subgraph-base'} @link(url: "https://specs.apollo.dev/federation/v1.0", as: "", import: "@key @requires @provides @external") + @link(url: "https://specs.apollo.dev/tag/v0.1") `) export const ATLAS: IAtlas = Atlas.fromSchemas( + Schema.basic(gql `${'builtin/tag/v0.1'} + @id(url: "https://specs.apollo.dev/tag/v0.1") + directive @tag(name: String!) + repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION + `), Schema.basic(gql `${'builtin/federation/v1.0.graphql'} @id(url: "https://specs.apollo.dev/federation/v1.0") - directive @key(fields: FieldSet!) repeatable on OBJECT + """ + federation 1.0 key directive + """ + directive @key(fields: FieldSet!) repeatable on OBJECT | INTERFACE directive @requires(fields: FieldSet!) on FIELD_DEFINITION directive @provides(fields: FieldSet!) on FIELD_DEFINITION directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION @@ -21,12 +30,15 @@ export const ATLAS: IAtlas = Atlas.fromSchemas( Schema.basic(gql `${'builtin/federation/v2.0.graphql'} @id(url: "https://specs.apollo.dev/federation/v2.0") - directive @key(fields: FieldSet!) repeatable on OBJECT + """ + federation 2.0 key directive + """ + directive @key(fields: FieldSet!) repeatable on OBJECT | INTERFACE directive @requires(fields: FieldSet!) on FIELD_DEFINITION directive @provides(fields: FieldSet!) on FIELD_DEFINITION - directive @external repeatable on OBJECT + directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION directive @moving(to: String!) on FIELD_DEFINITION - directive @shareable on FIELD_DEFINITION + directive @shareable on FIELD_DEFINITION | OBJECT scalar FieldSet `), diff --git a/subgraph-js/src/printSubgraphSchema.ts b/subgraph-js/src/printSubgraphSchema.ts index adc6683c4..2141a7731 100644 --- a/subgraph-js/src/printSubgraphSchema.ts +++ b/subgraph-js/src/printSubgraphSchema.ts @@ -35,7 +35,7 @@ import { gatherDirectives, federationDirectives, otherKnownDirectives, - isFederationDirective, + // isFederationDirective, } from './directives'; export function printSubgraphSchema(schema: GraphQLSchema): string { @@ -44,7 +44,7 @@ export function printSubgraphSchema(schema: GraphQLSchema): string { // Apollo change: treat the directives defined by the federation spec // similarly to the directives defined by the GraphQL spec (ie, don't print // their definitions). - (n) => !isSpecifiedDirective(n) && !isFederationDirective(n), + (n) => !isSpecifiedDirective(n), isDefinedType, ); } diff --git a/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts b/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts index 7f92680ee..78fc5928f 100644 --- a/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts +++ b/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts @@ -22,7 +22,6 @@ import { ConstDirectiveNode, ASTNode, StringValueNode, - print, } from 'graphql'; import { GraphQLResolverMap, GraphQLSchemaModule } from './resolverMap'; @@ -184,7 +183,6 @@ export function buildSchemaFromSDL( const errors = validateSDL(documentAST, schemaToExtend, sdlRules); if (errors.length > 0) { - console.log(print(documentAST)) throw new GraphQLSchemaValidationError(errors); } From 5a418a59a7b41246771eee021ed0c5d6394f2c94 Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Thu, 24 Mar 2022 18:06:03 -0400 Subject: [PATCH 05/33] update tests --- .../src/__tests__/buildSubgraphSchema.test.ts | 21 ++++++++++--------- .../src/__tests__/printSubgraphSchema.test.ts | 2 ++ 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts b/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts index 4ea7fdfa0..1e1b0a370 100644 --- a/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts +++ b/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts @@ -118,11 +118,6 @@ describe('buildSubgraphSchema', () => { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` - """a description of the schema. yo.""" - schema { - query: Query - } - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA @@ -660,7 +655,8 @@ describe('buildSubgraphSchema', () => { }`; const validateTag = async (header: string) => { - const schema = buildSubgraphSchema(gql`${header} + const schema = buildSubgraphSchema(gql` + ${header} type User @key(fields: "email") @tag(name: "tagOnType") { email: String @tag(name: "tagOnField") } @@ -674,7 +670,8 @@ describe('buildSubgraphSchema', () => { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); - expect((data?._service as any).sdl).toEqual(`${header}type User @key(fields: "email") @tag(name: "tagOnType") { + expect((data?._service as any).sdl) + .toEqual(`${header}type User @key(fields: "email") @tag(name: "tagOnType") { email: String @tag(name: "tagOnField") } @@ -687,9 +684,13 @@ union UserButAUnion @tag(name: "tagOnUnion") = User }; it.each([ - {name: 'fed1', header: ''}, - {name: 'fed2', header: 'extend schema @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@tag"])\n\n' } - ])('adds it for $name schema', async ({header}) => { + { name: 'fed1', header: '' }, + { + name: 'fed2', + header: + 'extend schema @link(url: "https://specs.apollo.dev/federation/v2.0")\n\n', + }, + ])('adds it for $name schema', async ({ header }) => { await validateTag(header); }); }); diff --git a/subgraph-js/src/__tests__/printSubgraphSchema.test.ts b/subgraph-js/src/__tests__/printSubgraphSchema.test.ts index 0624996ce..fe49a1c4c 100644 --- a/subgraph-js/src/__tests__/printSubgraphSchema.test.ts +++ b/subgraph-js/src/__tests__/printSubgraphSchema.test.ts @@ -19,6 +19,8 @@ describe('printSubgraphSchema', () => { directive @transform(from: String!) on FIELD + directive @tag(name: String!) repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION + directive @cacheControl(maxAge: Int, scope: CacheControlScope, inheritMaxAge: Boolean) on FIELD_DEFINITION | OBJECT | INTERFACE | UNION directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA From 22679f89b877f27c1b0ad8e6de53989547715f84 Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Thu, 24 Mar 2022 18:39:23 -0400 Subject: [PATCH 06/33] remove router bridge --- .gitignore | 3 + internals-js/package.json | 2 +- router-bridge/bundled/bridge.js | 37862 ------------ router-bridge/bundled/bridge.js.map | 1 - router-bridge/bundled/url_polyfill.js | 51499 ----------------- router-bridge/js-dist/do_introspect.d.ts | 2 - router-bridge/js-dist/do_introspect.d.ts.map | 1 - router-bridge/js-dist/do_introspect.js | 16 - router-bridge/js-dist/do_introspect.js.map | 1 - router-bridge/js-dist/do_plan.d.ts | 2 - router-bridge/js-dist/do_plan.d.ts.map | 1 - router-bridge/js-dist/do_plan.js | 10 - router-bridge/js-dist/do_plan.js.map | 1 - router-bridge/js-dist/index.d.ts | 3 - router-bridge/js-dist/index.d.ts.map | 1 - router-bridge/js-dist/index.js | 8 - router-bridge/js-dist/index.js.map | 1 - router-bridge/js-dist/introspection.d.ts | 4 - router-bridge/js-dist/introspection.d.ts.map | 1 - router-bridge/js-dist/introspection.js | 49 - router-bridge/js-dist/introspection.js.map | 1 - router-bridge/js-dist/plan.d.ts | 4 - router-bridge/js-dist/plan.d.ts.map | 1 - router-bridge/js-dist/plan.js | 19 - router-bridge/js-dist/plan.js.map | 1 - router-bridge/js-dist/runtime.d.ts | 4 - router-bridge/js-dist/runtime.d.ts.map | 1 - router-bridge/js-dist/runtime.js | 13 - router-bridge/js-dist/runtime.js.map | 1 - router-bridge/js-dist/types.d.ts | 8 - router-bridge/js-dist/types.d.ts.map | 1 - router-bridge/js-dist/types.js | 2 - router-bridge/js-dist/types.js.map | 1 - router-bridge/js-dist/url_polyfill.d.ts | 4 - router-bridge/js-dist/url_polyfill.d.ts.map | 1 - router-bridge/js-dist/url_polyfill.js | 24 - router-bridge/js-dist/url_polyfill.js.map | 1 - 37 files changed, 4 insertions(+), 89551 deletions(-) delete mode 100644 router-bridge/bundled/bridge.js delete mode 100644 router-bridge/bundled/bridge.js.map delete mode 100644 router-bridge/bundled/url_polyfill.js delete mode 100644 router-bridge/js-dist/do_introspect.d.ts delete mode 100644 router-bridge/js-dist/do_introspect.d.ts.map delete mode 100644 router-bridge/js-dist/do_introspect.js delete mode 100644 router-bridge/js-dist/do_introspect.js.map delete mode 100644 router-bridge/js-dist/do_plan.d.ts delete mode 100644 router-bridge/js-dist/do_plan.d.ts.map delete mode 100644 router-bridge/js-dist/do_plan.js delete mode 100644 router-bridge/js-dist/do_plan.js.map delete mode 100644 router-bridge/js-dist/index.d.ts delete mode 100644 router-bridge/js-dist/index.d.ts.map delete mode 100644 router-bridge/js-dist/index.js delete mode 100644 router-bridge/js-dist/index.js.map delete mode 100644 router-bridge/js-dist/introspection.d.ts delete mode 100644 router-bridge/js-dist/introspection.d.ts.map delete mode 100644 router-bridge/js-dist/introspection.js delete mode 100644 router-bridge/js-dist/introspection.js.map delete mode 100644 router-bridge/js-dist/plan.d.ts delete mode 100644 router-bridge/js-dist/plan.d.ts.map delete mode 100644 router-bridge/js-dist/plan.js delete mode 100644 router-bridge/js-dist/plan.js.map delete mode 100644 router-bridge/js-dist/runtime.d.ts delete mode 100644 router-bridge/js-dist/runtime.d.ts.map delete mode 100644 router-bridge/js-dist/runtime.js delete mode 100644 router-bridge/js-dist/runtime.js.map delete mode 100644 router-bridge/js-dist/types.d.ts delete mode 100644 router-bridge/js-dist/types.d.ts.map delete mode 100644 router-bridge/js-dist/types.js delete mode 100644 router-bridge/js-dist/types.js.map delete mode 100644 router-bridge/js-dist/url_polyfill.d.ts delete mode 100644 router-bridge/js-dist/url_polyfill.d.ts.map delete mode 100644 router-bridge/js-dist/url_polyfill.js delete mode 100644 router-bridge/js-dist/url_polyfill.js.map diff --git a/.gitignore b/.gitignore index 319016da3..030df832b 100644 --- a/.gitignore +++ b/.gitignore @@ -32,3 +32,6 @@ node_modules/ # Local Netlify folder .netlify + +# router build artifact +router-bridge \ No newline at end of file diff --git a/internals-js/package.json b/internals-js/package.json index 763faa453..83a16e650 100644 --- a/internals-js/package.json +++ b/internals-js/package.json @@ -23,7 +23,7 @@ "node": ">=12.13.0 <17.0" }, "dependencies": { - "@apollo/core-schema": "^0.3", + "@apollo/core-schema": "^0.2.2", "chalk": "^4.1.0", "js-levenshtein": "^1.1.6" }, diff --git a/router-bridge/bundled/bridge.js b/router-bridge/bundled/bridge.js deleted file mode 100644 index 85df7ed9e..000000000 --- a/router-bridge/bundled/bridge.js +++ /dev/null @@ -1,37862 +0,0 @@ -var bridge = (function (require$$0$3) { - 'use strict'; - - function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; } - - var require$$0__default = /*#__PURE__*/_interopDefaultLegacy(require$$0$3); - - var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; - - function getDefaultExportFromCjs (x) { - return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x; - } - - function getAugmentedNamespace(n) { - if (n.__esModule) return n; - var a = Object.defineProperty({}, '__esModule', {value: true}); - Object.keys(n).forEach(function (k) { - var d = Object.getOwnPropertyDescriptor(n, k); - Object.defineProperty(a, k, d.get ? d : { - enumerable: true, - get: function () { - return n[k]; - } - }); - }); - return a; - } - - var jsDist = {}; - - var introspection$1 = {}; - - // Note: This file is autogenerated using "resources/gen-version.js" script and - // automatically updated by "npm version" command. - - /** - * A string containing the version of the GraphQL.js library - */ - const version$2 = '16.3.0'; - /** - * An object containing the components of the GraphQL.js version string - */ - - const versionInfo = Object.freeze({ - major: 16, - minor: 3, - patch: 0, - preReleaseTag: null, - }); - - function devAssert(condition, message) { - const booleanCondition = Boolean(condition); - - if (!booleanCondition) { - throw new Error(message); - } - } - - /** - * Returns true if the value acts like a Promise, i.e. has a "then" function, - * otherwise returns false. - */ - function isPromise(value) { - return ( - typeof (value === null || value === void 0 ? void 0 : value.then) === - 'function' - ); - } - - /** - * Return true if `value` is object-like. A value is object-like if it's not - * `null` and has a `typeof` result of "object". - */ - function isObjectLike(value) { - return typeof value == 'object' && value !== null; - } - - function invariant(condition, message) { - const booleanCondition = Boolean(condition); - - if (!booleanCondition) { - throw new Error( - message != null ? message : 'Unexpected invariant triggered.', - ); - } - } - - const LineRegExp = /\r\n|[\n\r]/g; - /** - * Represents a location in a Source. - */ - - /** - * Takes a Source and a UTF-8 character offset, and returns the corresponding - * line and column as a SourceLocation. - */ - function getLocation(source, position) { - let lastLineStart = 0; - let line = 1; - - for (const match of source.body.matchAll(LineRegExp)) { - typeof match.index === 'number' || invariant(false); - - if (match.index >= position) { - break; - } - - lastLineStart = match.index + match[0].length; - line += 1; - } - - return { - line, - column: position + 1 - lastLineStart, - }; - } - - /** - * Render a helpful description of the location in the GraphQL Source document. - */ - function printLocation(location) { - return printSourceLocation( - location.source, - getLocation(location.source, location.start), - ); - } - /** - * Render a helpful description of the location in the GraphQL Source document. - */ - - function printSourceLocation(source, sourceLocation) { - const firstLineColumnOffset = source.locationOffset.column - 1; - const body = ''.padStart(firstLineColumnOffset) + source.body; - const lineIndex = sourceLocation.line - 1; - const lineOffset = source.locationOffset.line - 1; - const lineNum = sourceLocation.line + lineOffset; - const columnOffset = sourceLocation.line === 1 ? firstLineColumnOffset : 0; - const columnNum = sourceLocation.column + columnOffset; - const locationStr = `${source.name}:${lineNum}:${columnNum}\n`; - const lines = body.split(/\r\n|[\n\r]/g); - const locationLine = lines[lineIndex]; // Special case for minified documents - - if (locationLine.length > 120) { - const subLineIndex = Math.floor(columnNum / 80); - const subLineColumnNum = columnNum % 80; - const subLines = []; - - for (let i = 0; i < locationLine.length; i += 80) { - subLines.push(locationLine.slice(i, i + 80)); - } - - return ( - locationStr + - printPrefixedLines([ - [`${lineNum} |`, subLines[0]], - ...subLines.slice(1, subLineIndex + 1).map((subLine) => ['|', subLine]), - ['|', '^'.padStart(subLineColumnNum)], - ['|', subLines[subLineIndex + 1]], - ]) - ); - } - - return ( - locationStr + - printPrefixedLines([ - // Lines specified like this: ["prefix", "string"], - [`${lineNum - 1} |`, lines[lineIndex - 1]], - [`${lineNum} |`, locationLine], - ['|', '^'.padStart(columnNum)], - [`${lineNum + 1} |`, lines[lineIndex + 1]], - ]) - ); - } - - function printPrefixedLines(lines) { - const existingLines = lines.filter(([_, line]) => line !== undefined); - const padLen = Math.max(...existingLines.map(([prefix]) => prefix.length)); - return existingLines - .map(([prefix, line]) => prefix.padStart(padLen) + (line ? ' ' + line : '')) - .join('\n'); - } - - function toNormalizedArgs(args) { - const firstArg = args[0]; - - if (firstArg == null || 'kind' in firstArg || 'length' in firstArg) { - return { - nodes: firstArg, - source: args[1], - positions: args[2], - path: args[3], - originalError: args[4], - extensions: args[5], - }; - } - - return firstArg; - } - /** - * A GraphQLError describes an Error found during the parse, validate, or - * execute phases of performing a GraphQL operation. In addition to a message - * and stack trace, it also includes information about the locations in a - * GraphQL document and/or execution result that correspond to the Error. - */ - - class GraphQLError extends Error { - /** - * An array of `{ line, column }` locations within the source GraphQL document - * which correspond to this error. - * - * Errors during validation often contain multiple locations, for example to - * point out two things with the same name. Errors during execution include a - * single location, the field which produced the error. - * - * Enumerable, and appears in the result of JSON.stringify(). - */ - - /** - * An array describing the JSON-path into the execution response which - * corresponds to this error. Only included for errors during execution. - * - * Enumerable, and appears in the result of JSON.stringify(). - */ - - /** - * An array of GraphQL AST Nodes corresponding to this error. - */ - - /** - * The source GraphQL document for the first location of this error. - * - * Note that if this Error represents more than one node, the source may not - * represent nodes after the first node. - */ - - /** - * An array of character offsets within the source GraphQL document - * which correspond to this error. - */ - - /** - * The original error thrown from a field resolver during execution. - */ - - /** - * Extension fields to add to the formatted error. - */ - - /** - * @deprecated Please use the `GraphQLErrorArgs` constructor overload instead. - */ - constructor(message, ...rawArgs) { - var _this$nodes, _nodeLocations$, _ref; - - const { nodes, source, positions, path, originalError, extensions } = - toNormalizedArgs(rawArgs); - super(message); - this.name = 'GraphQLError'; - this.path = path !== null && path !== void 0 ? path : undefined; - this.originalError = - originalError !== null && originalError !== void 0 - ? originalError - : undefined; // Compute list of blame nodes. - - this.nodes = undefinedIfEmpty( - Array.isArray(nodes) ? nodes : nodes ? [nodes] : undefined, - ); - const nodeLocations = undefinedIfEmpty( - (_this$nodes = this.nodes) === null || _this$nodes === void 0 - ? void 0 - : _this$nodes.map((node) => node.loc).filter((loc) => loc != null), - ); // Compute locations in the source for the given nodes/positions. - - this.source = - source !== null && source !== void 0 - ? source - : nodeLocations === null || nodeLocations === void 0 - ? void 0 - : (_nodeLocations$ = nodeLocations[0]) === null || - _nodeLocations$ === void 0 - ? void 0 - : _nodeLocations$.source; - this.positions = - positions !== null && positions !== void 0 - ? positions - : nodeLocations === null || nodeLocations === void 0 - ? void 0 - : nodeLocations.map((loc) => loc.start); - this.locations = - positions && source - ? positions.map((pos) => getLocation(source, pos)) - : nodeLocations === null || nodeLocations === void 0 - ? void 0 - : nodeLocations.map((loc) => getLocation(loc.source, loc.start)); - const originalExtensions = isObjectLike( - originalError === null || originalError === void 0 - ? void 0 - : originalError.extensions, - ) - ? originalError === null || originalError === void 0 - ? void 0 - : originalError.extensions - : undefined; - this.extensions = - (_ref = - extensions !== null && extensions !== void 0 - ? extensions - : originalExtensions) !== null && _ref !== void 0 - ? _ref - : Object.create(null); // Only properties prescribed by the spec should be enumerable. - // Keep the rest as non-enumerable. - - Object.defineProperties(this, { - message: { - writable: true, - enumerable: true, - }, - name: { - enumerable: false, - }, - nodes: { - enumerable: false, - }, - source: { - enumerable: false, - }, - positions: { - enumerable: false, - }, - originalError: { - enumerable: false, - }, - }); // Include (non-enumerable) stack trace. - - /* c8 ignore start */ - // FIXME: https://github.com/graphql/graphql-js/issues/2317 - - if ( - originalError !== null && - originalError !== void 0 && - originalError.stack - ) { - Object.defineProperty(this, 'stack', { - value: originalError.stack, - writable: true, - configurable: true, - }); - } else if (Error.captureStackTrace) { - Error.captureStackTrace(this, GraphQLError); - } else { - Object.defineProperty(this, 'stack', { - value: Error().stack, - writable: true, - configurable: true, - }); - } - /* c8 ignore stop */ - } - - get [Symbol.toStringTag]() { - return 'GraphQLError'; - } - - toString() { - let output = this.message; - - if (this.nodes) { - for (const node of this.nodes) { - if (node.loc) { - output += '\n\n' + printLocation(node.loc); - } - } - } else if (this.source && this.locations) { - for (const location of this.locations) { - output += '\n\n' + printSourceLocation(this.source, location); - } - } - - return output; - } - - toJSON() { - const formattedError = { - message: this.message, - }; - - if (this.locations != null) { - formattedError.locations = this.locations; - } - - if (this.path != null) { - formattedError.path = this.path; - } - - if (this.extensions != null && Object.keys(this.extensions).length > 0) { - formattedError.extensions = this.extensions; - } - - return formattedError; - } - } - - function undefinedIfEmpty(array) { - return array === undefined || array.length === 0 ? undefined : array; - } - /** - * See: https://spec.graphql.org/draft/#sec-Errors - */ - - /** - * Prints a GraphQLError to a string, representing useful location information - * about the error's position in the source. - * - * @deprecated Please use `error.toString` instead. Will be removed in v17 - */ - function printError$1(error) { - return error.toString(); - } - /** - * Given a GraphQLError, format it according to the rules described by the - * Response Format, Errors section of the GraphQL Specification. - * - * @deprecated Please use `error.toString` instead. Will be removed in v17 - */ - - function formatError$1(error) { - return error.toJSON(); - } - - /** - * Produces a GraphQLError representing a syntax error, containing useful - * descriptive information about the syntax error's position in the source. - */ - - function syntaxError(source, position, description) { - return new GraphQLError(`Syntax Error: ${description}`, undefined, source, [ - position, - ]); - } - - /** - * Contains a range of UTF-8 character offsets and token references that - * identify the region of the source from which the AST derived. - */ - class Location { - /** - * The character offset at which this Node begins. - */ - - /** - * The character offset at which this Node ends. - */ - - /** - * The Token at which this Node begins. - */ - - /** - * The Token at which this Node ends. - */ - - /** - * The Source document the AST represents. - */ - constructor(startToken, endToken, source) { - this.start = startToken.start; - this.end = endToken.end; - this.startToken = startToken; - this.endToken = endToken; - this.source = source; - } - - get [Symbol.toStringTag]() { - return 'Location'; - } - - toJSON() { - return { - start: this.start, - end: this.end, - }; - } - } - /** - * Represents a range of characters represented by a lexical token - * within a Source. - */ - - class Token { - /** - * The kind of Token. - */ - - /** - * The character offset at which this Node begins. - */ - - /** - * The character offset at which this Node ends. - */ - - /** - * The 1-indexed line number on which this Token appears. - */ - - /** - * The 1-indexed column number at which this Token begins. - */ - - /** - * For non-punctuation tokens, represents the interpreted value of the token. - * - * Note: is undefined for punctuation tokens, but typed as string for - * convenience in the parser. - */ - - /** - * Tokens exist as nodes in a double-linked-list amongst all tokens - * including ignored tokens. is always the first node and - * the last. - */ - constructor(kind, start, end, line, column, value) { - this.kind = kind; - this.start = start; - this.end = end; - this.line = line; - this.column = column; // eslint-disable-next-line @typescript-eslint/no-non-null-assertion - - this.value = value; - this.prev = null; - this.next = null; - } - - get [Symbol.toStringTag]() { - return 'Token'; - } - - toJSON() { - return { - kind: this.kind, - value: this.value, - line: this.line, - column: this.column, - }; - } - } - /** - * The list of all possible AST node types. - */ - - /** - * @internal - */ - const QueryDocumentKeys = { - Name: [], - Document: ['definitions'], - OperationDefinition: [ - 'name', - 'variableDefinitions', - 'directives', - 'selectionSet', - ], - VariableDefinition: ['variable', 'type', 'defaultValue', 'directives'], - Variable: ['name'], - SelectionSet: ['selections'], - Field: ['alias', 'name', 'arguments', 'directives', 'selectionSet'], - Argument: ['name', 'value'], - FragmentSpread: ['name', 'directives'], - InlineFragment: ['typeCondition', 'directives', 'selectionSet'], - FragmentDefinition: [ - 'name', // Note: fragment variable definitions are deprecated and will removed in v17.0.0 - 'variableDefinitions', - 'typeCondition', - 'directives', - 'selectionSet', - ], - IntValue: [], - FloatValue: [], - StringValue: [], - BooleanValue: [], - NullValue: [], - EnumValue: [], - ListValue: ['values'], - ObjectValue: ['fields'], - ObjectField: ['name', 'value'], - Directive: ['name', 'arguments'], - NamedType: ['name'], - ListType: ['type'], - NonNullType: ['type'], - SchemaDefinition: ['description', 'directives', 'operationTypes'], - OperationTypeDefinition: ['type'], - ScalarTypeDefinition: ['description', 'name', 'directives'], - ObjectTypeDefinition: [ - 'description', - 'name', - 'interfaces', - 'directives', - 'fields', - ], - FieldDefinition: ['description', 'name', 'arguments', 'type', 'directives'], - InputValueDefinition: [ - 'description', - 'name', - 'type', - 'defaultValue', - 'directives', - ], - InterfaceTypeDefinition: [ - 'description', - 'name', - 'interfaces', - 'directives', - 'fields', - ], - UnionTypeDefinition: ['description', 'name', 'directives', 'types'], - EnumTypeDefinition: ['description', 'name', 'directives', 'values'], - EnumValueDefinition: ['description', 'name', 'directives'], - InputObjectTypeDefinition: ['description', 'name', 'directives', 'fields'], - DirectiveDefinition: ['description', 'name', 'arguments', 'locations'], - SchemaExtension: ['directives', 'operationTypes'], - ScalarTypeExtension: ['name', 'directives'], - ObjectTypeExtension: ['name', 'interfaces', 'directives', 'fields'], - InterfaceTypeExtension: ['name', 'interfaces', 'directives', 'fields'], - UnionTypeExtension: ['name', 'directives', 'types'], - EnumTypeExtension: ['name', 'directives', 'values'], - InputObjectTypeExtension: ['name', 'directives', 'fields'], - }; - const kindValues = new Set(Object.keys(QueryDocumentKeys)); - /** - * @internal - */ - - function isNode(maybeNode) { - const maybeKind = - maybeNode === null || maybeNode === void 0 ? void 0 : maybeNode.kind; - return typeof maybeKind === 'string' && kindValues.has(maybeKind); - } - /** Name */ - - let OperationTypeNode; - - (function (OperationTypeNode) { - OperationTypeNode['QUERY'] = 'query'; - OperationTypeNode['MUTATION'] = 'mutation'; - OperationTypeNode['SUBSCRIPTION'] = 'subscription'; - })(OperationTypeNode || (OperationTypeNode = {})); - - /** - * The set of allowed directive location values. - */ - let DirectiveLocation; - /** - * The enum type representing the directive location values. - * - * @deprecated Please use `DirectiveLocation`. Will be remove in v17. - */ - - (function (DirectiveLocation) { - DirectiveLocation['QUERY'] = 'QUERY'; - DirectiveLocation['MUTATION'] = 'MUTATION'; - DirectiveLocation['SUBSCRIPTION'] = 'SUBSCRIPTION'; - DirectiveLocation['FIELD'] = 'FIELD'; - DirectiveLocation['FRAGMENT_DEFINITION'] = 'FRAGMENT_DEFINITION'; - DirectiveLocation['FRAGMENT_SPREAD'] = 'FRAGMENT_SPREAD'; - DirectiveLocation['INLINE_FRAGMENT'] = 'INLINE_FRAGMENT'; - DirectiveLocation['VARIABLE_DEFINITION'] = 'VARIABLE_DEFINITION'; - DirectiveLocation['SCHEMA'] = 'SCHEMA'; - DirectiveLocation['SCALAR'] = 'SCALAR'; - DirectiveLocation['OBJECT'] = 'OBJECT'; - DirectiveLocation['FIELD_DEFINITION'] = 'FIELD_DEFINITION'; - DirectiveLocation['ARGUMENT_DEFINITION'] = 'ARGUMENT_DEFINITION'; - DirectiveLocation['INTERFACE'] = 'INTERFACE'; - DirectiveLocation['UNION'] = 'UNION'; - DirectiveLocation['ENUM'] = 'ENUM'; - DirectiveLocation['ENUM_VALUE'] = 'ENUM_VALUE'; - DirectiveLocation['INPUT_OBJECT'] = 'INPUT_OBJECT'; - DirectiveLocation['INPUT_FIELD_DEFINITION'] = 'INPUT_FIELD_DEFINITION'; - })(DirectiveLocation || (DirectiveLocation = {})); - - /** - * The set of allowed kind values for AST nodes. - */ - let Kind; - /** - * The enum type representing the possible kind values of AST nodes. - * - * @deprecated Please use `Kind`. Will be remove in v17. - */ - - (function (Kind) { - Kind['NAME'] = 'Name'; - Kind['DOCUMENT'] = 'Document'; - Kind['OPERATION_DEFINITION'] = 'OperationDefinition'; - Kind['VARIABLE_DEFINITION'] = 'VariableDefinition'; - Kind['SELECTION_SET'] = 'SelectionSet'; - Kind['FIELD'] = 'Field'; - Kind['ARGUMENT'] = 'Argument'; - Kind['FRAGMENT_SPREAD'] = 'FragmentSpread'; - Kind['INLINE_FRAGMENT'] = 'InlineFragment'; - Kind['FRAGMENT_DEFINITION'] = 'FragmentDefinition'; - Kind['VARIABLE'] = 'Variable'; - Kind['INT'] = 'IntValue'; - Kind['FLOAT'] = 'FloatValue'; - Kind['STRING'] = 'StringValue'; - Kind['BOOLEAN'] = 'BooleanValue'; - Kind['NULL'] = 'NullValue'; - Kind['ENUM'] = 'EnumValue'; - Kind['LIST'] = 'ListValue'; - Kind['OBJECT'] = 'ObjectValue'; - Kind['OBJECT_FIELD'] = 'ObjectField'; - Kind['DIRECTIVE'] = 'Directive'; - Kind['NAMED_TYPE'] = 'NamedType'; - Kind['LIST_TYPE'] = 'ListType'; - Kind['NON_NULL_TYPE'] = 'NonNullType'; - Kind['SCHEMA_DEFINITION'] = 'SchemaDefinition'; - Kind['OPERATION_TYPE_DEFINITION'] = 'OperationTypeDefinition'; - Kind['SCALAR_TYPE_DEFINITION'] = 'ScalarTypeDefinition'; - Kind['OBJECT_TYPE_DEFINITION'] = 'ObjectTypeDefinition'; - Kind['FIELD_DEFINITION'] = 'FieldDefinition'; - Kind['INPUT_VALUE_DEFINITION'] = 'InputValueDefinition'; - Kind['INTERFACE_TYPE_DEFINITION'] = 'InterfaceTypeDefinition'; - Kind['UNION_TYPE_DEFINITION'] = 'UnionTypeDefinition'; - Kind['ENUM_TYPE_DEFINITION'] = 'EnumTypeDefinition'; - Kind['ENUM_VALUE_DEFINITION'] = 'EnumValueDefinition'; - Kind['INPUT_OBJECT_TYPE_DEFINITION'] = 'InputObjectTypeDefinition'; - Kind['DIRECTIVE_DEFINITION'] = 'DirectiveDefinition'; - Kind['SCHEMA_EXTENSION'] = 'SchemaExtension'; - Kind['SCALAR_TYPE_EXTENSION'] = 'ScalarTypeExtension'; - Kind['OBJECT_TYPE_EXTENSION'] = 'ObjectTypeExtension'; - Kind['INTERFACE_TYPE_EXTENSION'] = 'InterfaceTypeExtension'; - Kind['UNION_TYPE_EXTENSION'] = 'UnionTypeExtension'; - Kind['ENUM_TYPE_EXTENSION'] = 'EnumTypeExtension'; - Kind['INPUT_OBJECT_TYPE_EXTENSION'] = 'InputObjectTypeExtension'; - })(Kind || (Kind = {})); - - /** - * ``` - * WhiteSpace :: - * - "Horizontal Tab (U+0009)" - * - "Space (U+0020)" - * ``` - * @internal - */ - function isWhiteSpace(code) { - return code === 0x0009 || code === 0x0020; - } - /** - * ``` - * Digit :: one of - * - `0` `1` `2` `3` `4` `5` `6` `7` `8` `9` - * ``` - * @internal - */ - - function isDigit$1(code) { - return code >= 0x0030 && code <= 0x0039; - } - /** - * ``` - * Letter :: one of - * - `A` `B` `C` `D` `E` `F` `G` `H` `I` `J` `K` `L` `M` - * - `N` `O` `P` `Q` `R` `S` `T` `U` `V` `W` `X` `Y` `Z` - * - `a` `b` `c` `d` `e` `f` `g` `h` `i` `j` `k` `l` `m` - * - `n` `o` `p` `q` `r` `s` `t` `u` `v` `w` `x` `y` `z` - * ``` - * @internal - */ - - function isLetter(code) { - return ( - (code >= 0x0061 && code <= 0x007a) || // A-Z - (code >= 0x0041 && code <= 0x005a) // a-z - ); - } - /** - * ``` - * NameStart :: - * - Letter - * - `_` - * ``` - * @internal - */ - - function isNameStart(code) { - return isLetter(code) || code === 0x005f; - } - /** - * ``` - * NameContinue :: - * - Letter - * - Digit - * - `_` - * ``` - * @internal - */ - - function isNameContinue(code) { - return isLetter(code) || isDigit$1(code) || code === 0x005f; - } - - /** - * Produces the value of a block string from its parsed raw value, similar to - * CoffeeScript's block string, Python's docstring trim or Ruby's strip_heredoc. - * - * This implements the GraphQL spec's BlockStringValue() static algorithm. - * - * @internal - */ - - function dedentBlockStringLines(lines) { - var _firstNonEmptyLine2; - - let commonIndent = Number.MAX_SAFE_INTEGER; - let firstNonEmptyLine = null; - let lastNonEmptyLine = -1; - - for (let i = 0; i < lines.length; ++i) { - var _firstNonEmptyLine; - - const line = lines[i]; - const indent = leadingWhitespace(line); - - if (indent === line.length) { - continue; // skip empty lines - } - - firstNonEmptyLine = - (_firstNonEmptyLine = firstNonEmptyLine) !== null && - _firstNonEmptyLine !== void 0 - ? _firstNonEmptyLine - : i; - lastNonEmptyLine = i; - - if (i !== 0 && indent < commonIndent) { - commonIndent = indent; - } - } - - return lines // Remove common indentation from all lines but first. - .map((line, i) => (i === 0 ? line : line.slice(commonIndent))) // Remove leading and trailing blank lines. - .slice( - (_firstNonEmptyLine2 = firstNonEmptyLine) !== null && - _firstNonEmptyLine2 !== void 0 - ? _firstNonEmptyLine2 - : 0, - lastNonEmptyLine + 1, - ); - } - - function leadingWhitespace(str) { - let i = 0; - - while (i < str.length && isWhiteSpace(str.charCodeAt(i))) { - ++i; - } - - return i; - } - /** - * @internal - */ - - function isPrintableAsBlockString(value) { - if (value === '') { - return true; // empty string is printable - } - - let isEmptyLine = true; - let hasIndent = false; - let hasCommonIndent = true; - let seenNonEmptyLine = false; - - for (let i = 0; i < value.length; ++i) { - switch (value.codePointAt(i)) { - case 0x0000: - case 0x0001: - case 0x0002: - case 0x0003: - case 0x0004: - case 0x0005: - case 0x0006: - case 0x0007: - case 0x0008: - case 0x000b: - case 0x000c: - case 0x000e: - case 0x000f: - return false; - // Has non-printable characters - - case 0x000d: - // \r - return false; - // Has \r or \r\n which will be replaced as \n - - case 10: - // \n - if (isEmptyLine && !seenNonEmptyLine) { - return false; // Has leading new line - } - - seenNonEmptyLine = true; - isEmptyLine = true; - hasIndent = false; - break; - - case 9: // \t - - case 32: - // - hasIndent || (hasIndent = isEmptyLine); - break; - - default: - hasCommonIndent && (hasCommonIndent = hasIndent); - isEmptyLine = false; - } - } - - if (isEmptyLine) { - return false; // Has trailing empty lines - } - - if (hasCommonIndent && seenNonEmptyLine) { - return false; // Has internal indent - } - - return true; - } - /** - * Print a block string in the indented block form by adding a leading and - * trailing blank line. However, if a block string starts with whitespace and is - * a single-line, adding a leading blank line would strip that whitespace. - * - * @internal - */ - - function printBlockString(value, options) { - const escapedValue = value.replace(/"""/g, '\\"""'); // Expand a block string's raw value into independent lines. - - const lines = escapedValue.split(/\r\n|[\n\r]/g); - const isSingleLine = lines.length === 1; // If common indentation is found we can fix some of those cases by adding leading new line - - const forceLeadingNewLine = - lines.length > 1 && - lines - .slice(1) - .every((line) => line.length === 0 || isWhiteSpace(line.charCodeAt(0))); // Trailing triple quotes just looks confusing but doesn't force trailing new line - - const hasTrailingTripleQuotes = escapedValue.endsWith('\\"""'); // Trailing quote (single or double) or slash forces trailing new line - - const hasTrailingQuote = value.endsWith('"') && !hasTrailingTripleQuotes; - const hasTrailingSlash = value.endsWith('\\'); - const forceTrailingNewline = hasTrailingQuote || hasTrailingSlash; - const printAsMultipleLines = - !(options !== null && options !== void 0 && options.minimize) && // add leading and trailing new lines only if it improves readability - (!isSingleLine || - value.length > 70 || - forceTrailingNewline || - forceLeadingNewLine || - hasTrailingTripleQuotes); - let result = ''; // Format a multi-line block quote to account for leading space. - - const skipLeadingNewLine = isSingleLine && isWhiteSpace(value.charCodeAt(0)); - - if ((printAsMultipleLines && !skipLeadingNewLine) || forceLeadingNewLine) { - result += '\n'; - } - - result += escapedValue; - - if (printAsMultipleLines || forceTrailingNewline) { - result += '\n'; - } - - return '"""' + result + '"""'; - } - - /** - * An exported enum describing the different kinds of tokens that the - * lexer emits. - */ - let TokenKind; - /** - * The enum type representing the token kinds values. - * - * @deprecated Please use `TokenKind`. Will be remove in v17. - */ - - (function (TokenKind) { - TokenKind['SOF'] = ''; - TokenKind['EOF'] = ''; - TokenKind['BANG'] = '!'; - TokenKind['DOLLAR'] = '$'; - TokenKind['AMP'] = '&'; - TokenKind['PAREN_L'] = '('; - TokenKind['PAREN_R'] = ')'; - TokenKind['SPREAD'] = '...'; - TokenKind['COLON'] = ':'; - TokenKind['EQUALS'] = '='; - TokenKind['AT'] = '@'; - TokenKind['BRACKET_L'] = '['; - TokenKind['BRACKET_R'] = ']'; - TokenKind['BRACE_L'] = '{'; - TokenKind['PIPE'] = '|'; - TokenKind['BRACE_R'] = '}'; - TokenKind['NAME'] = 'Name'; - TokenKind['INT'] = 'Int'; - TokenKind['FLOAT'] = 'Float'; - TokenKind['STRING'] = 'String'; - TokenKind['BLOCK_STRING'] = 'BlockString'; - TokenKind['COMMENT'] = 'Comment'; - })(TokenKind || (TokenKind = {})); - - /** - * Given a Source object, creates a Lexer for that source. - * A Lexer is a stateful stream generator in that every time - * it is advanced, it returns the next token in the Source. Assuming the - * source lexes, the final Token emitted by the lexer will be of kind - * EOF, after which the lexer will repeatedly return the same EOF token - * whenever called. - */ - - class Lexer { - /** - * The previously focused non-ignored token. - */ - - /** - * The currently focused non-ignored token. - */ - - /** - * The (1-indexed) line containing the current token. - */ - - /** - * The character offset at which the current line begins. - */ - constructor(source) { - const startOfFileToken = new Token(TokenKind.SOF, 0, 0, 0, 0); - this.source = source; - this.lastToken = startOfFileToken; - this.token = startOfFileToken; - this.line = 1; - this.lineStart = 0; - } - - get [Symbol.toStringTag]() { - return 'Lexer'; - } - /** - * Advances the token stream to the next non-ignored token. - */ - - advance() { - this.lastToken = this.token; - const token = (this.token = this.lookahead()); - return token; - } - /** - * Looks ahead and returns the next non-ignored token, but does not change - * the state of Lexer. - */ - - lookahead() { - let token = this.token; - - if (token.kind !== TokenKind.EOF) { - do { - if (token.next) { - token = token.next; - } else { - // Read the next token and form a link in the token linked-list. - const nextToken = readNextToken(this, token.end); // @ts-expect-error next is only mutable during parsing. - - token.next = nextToken; // @ts-expect-error prev is only mutable during parsing. - - nextToken.prev = token; - token = nextToken; - } - } while (token.kind === TokenKind.COMMENT); - } - - return token; - } - } - /** - * @internal - */ - - function isPunctuatorTokenKind(kind) { - return ( - kind === TokenKind.BANG || - kind === TokenKind.DOLLAR || - kind === TokenKind.AMP || - kind === TokenKind.PAREN_L || - kind === TokenKind.PAREN_R || - kind === TokenKind.SPREAD || - kind === TokenKind.COLON || - kind === TokenKind.EQUALS || - kind === TokenKind.AT || - kind === TokenKind.BRACKET_L || - kind === TokenKind.BRACKET_R || - kind === TokenKind.BRACE_L || - kind === TokenKind.PIPE || - kind === TokenKind.BRACE_R - ); - } - /** - * A Unicode scalar value is any Unicode code point except surrogate code - * points. In other words, the inclusive ranges of values 0x0000 to 0xD7FF and - * 0xE000 to 0x10FFFF. - * - * SourceCharacter :: - * - "Any Unicode scalar value" - */ - - function isUnicodeScalarValue(code) { - return ( - (code >= 0x0000 && code <= 0xd7ff) || (code >= 0xe000 && code <= 0x10ffff) - ); - } - /** - * The GraphQL specification defines source text as a sequence of unicode scalar - * values (which Unicode defines to exclude surrogate code points). However - * JavaScript defines strings as a sequence of UTF-16 code units which may - * include surrogates. A surrogate pair is a valid source character as it - * encodes a supplementary code point (above U+FFFF), but unpaired surrogate - * code points are not valid source characters. - */ - - function isSupplementaryCodePoint(body, location) { - return ( - isLeadingSurrogate(body.charCodeAt(location)) && - isTrailingSurrogate(body.charCodeAt(location + 1)) - ); - } - - function isLeadingSurrogate(code) { - return code >= 0xd800 && code <= 0xdbff; - } - - function isTrailingSurrogate(code) { - return code >= 0xdc00 && code <= 0xdfff; - } - /** - * Prints the code point (or end of file reference) at a given location in a - * source for use in error messages. - * - * Printable ASCII is printed quoted, while other points are printed in Unicode - * code point form (ie. U+1234). - */ - - function printCodePointAt(lexer, location) { - const code = lexer.source.body.codePointAt(location); - - if (code === undefined) { - return TokenKind.EOF; - } else if (code >= 0x0020 && code <= 0x007e) { - // Printable ASCII - const char = String.fromCodePoint(code); - return char === '"' ? "'\"'" : `"${char}"`; - } // Unicode code point - - return 'U+' + code.toString(16).toUpperCase().padStart(4, '0'); - } - /** - * Create a token with line and column location information. - */ - - function createToken(lexer, kind, start, end, value) { - const line = lexer.line; - const col = 1 + start - lexer.lineStart; - return new Token(kind, start, end, line, col, value); - } - /** - * Gets the next token from the source starting at the given position. - * - * This skips over whitespace until it finds the next lexable token, then lexes - * punctuators immediately or calls the appropriate helper function for more - * complicated tokens. - */ - - function readNextToken(lexer, start) { - const body = lexer.source.body; - const bodyLength = body.length; - let position = start; - - while (position < bodyLength) { - const code = body.charCodeAt(position); // SourceCharacter - - switch (code) { - // Ignored :: - // - UnicodeBOM - // - WhiteSpace - // - LineTerminator - // - Comment - // - Comma - // - // UnicodeBOM :: "Byte Order Mark (U+FEFF)" - // - // WhiteSpace :: - // - "Horizontal Tab (U+0009)" - // - "Space (U+0020)" - // - // Comma :: , - case 0xfeff: // - - case 0x0009: // \t - - case 0x0020: // - - case 0x002c: - // , - ++position; - continue; - // LineTerminator :: - // - "New Line (U+000A)" - // - "Carriage Return (U+000D)" [lookahead != "New Line (U+000A)"] - // - "Carriage Return (U+000D)" "New Line (U+000A)" - - case 0x000a: - // \n - ++position; - ++lexer.line; - lexer.lineStart = position; - continue; - - case 0x000d: - // \r - if (body.charCodeAt(position + 1) === 0x000a) { - position += 2; - } else { - ++position; - } - - ++lexer.line; - lexer.lineStart = position; - continue; - // Comment - - case 0x0023: - // # - return readComment(lexer, position); - // Token :: - // - Punctuator - // - Name - // - IntValue - // - FloatValue - // - StringValue - // - // Punctuator :: one of ! $ & ( ) ... : = @ [ ] { | } - - case 0x0021: - // ! - return createToken(lexer, TokenKind.BANG, position, position + 1); - - case 0x0024: - // $ - return createToken(lexer, TokenKind.DOLLAR, position, position + 1); - - case 0x0026: - // & - return createToken(lexer, TokenKind.AMP, position, position + 1); - - case 0x0028: - // ( - return createToken(lexer, TokenKind.PAREN_L, position, position + 1); - - case 0x0029: - // ) - return createToken(lexer, TokenKind.PAREN_R, position, position + 1); - - case 0x002e: - // . - if ( - body.charCodeAt(position + 1) === 0x002e && - body.charCodeAt(position + 2) === 0x002e - ) { - return createToken(lexer, TokenKind.SPREAD, position, position + 3); - } - - break; - - case 0x003a: - // : - return createToken(lexer, TokenKind.COLON, position, position + 1); - - case 0x003d: - // = - return createToken(lexer, TokenKind.EQUALS, position, position + 1); - - case 0x0040: - // @ - return createToken(lexer, TokenKind.AT, position, position + 1); - - case 0x005b: - // [ - return createToken(lexer, TokenKind.BRACKET_L, position, position + 1); - - case 0x005d: - // ] - return createToken(lexer, TokenKind.BRACKET_R, position, position + 1); - - case 0x007b: - // { - return createToken(lexer, TokenKind.BRACE_L, position, position + 1); - - case 0x007c: - // | - return createToken(lexer, TokenKind.PIPE, position, position + 1); - - case 0x007d: - // } - return createToken(lexer, TokenKind.BRACE_R, position, position + 1); - // StringValue - - case 0x0022: - // " - if ( - body.charCodeAt(position + 1) === 0x0022 && - body.charCodeAt(position + 2) === 0x0022 - ) { - return readBlockString(lexer, position); - } - - return readString(lexer, position); - } // IntValue | FloatValue (Digit | -) - - if (isDigit$1(code) || code === 0x002d) { - return readNumber(lexer, position, code); - } // Name - - if (isNameStart(code)) { - return readName(lexer, position); - } - - throw syntaxError( - lexer.source, - position, - code === 0x0027 - ? 'Unexpected single quote character (\'), did you mean to use a double quote (")?' - : isUnicodeScalarValue(code) || isSupplementaryCodePoint(body, position) - ? `Unexpected character: ${printCodePointAt(lexer, position)}.` - : `Invalid character: ${printCodePointAt(lexer, position)}.`, - ); - } - - return createToken(lexer, TokenKind.EOF, bodyLength, bodyLength); - } - /** - * Reads a comment token from the source file. - * - * ``` - * Comment :: # CommentChar* [lookahead != CommentChar] - * - * CommentChar :: SourceCharacter but not LineTerminator - * ``` - */ - - function readComment(lexer, start) { - const body = lexer.source.body; - const bodyLength = body.length; - let position = start + 1; - - while (position < bodyLength) { - const code = body.charCodeAt(position); // LineTerminator (\n | \r) - - if (code === 0x000a || code === 0x000d) { - break; - } // SourceCharacter - - if (isUnicodeScalarValue(code)) { - ++position; - } else if (isSupplementaryCodePoint(body, position)) { - position += 2; - } else { - break; - } - } - - return createToken( - lexer, - TokenKind.COMMENT, - start, - position, - body.slice(start + 1, position), - ); - } - /** - * Reads a number token from the source file, either a FloatValue or an IntValue - * depending on whether a FractionalPart or ExponentPart is encountered. - * - * ``` - * IntValue :: IntegerPart [lookahead != {Digit, `.`, NameStart}] - * - * IntegerPart :: - * - NegativeSign? 0 - * - NegativeSign? NonZeroDigit Digit* - * - * NegativeSign :: - - * - * NonZeroDigit :: Digit but not `0` - * - * FloatValue :: - * - IntegerPart FractionalPart ExponentPart [lookahead != {Digit, `.`, NameStart}] - * - IntegerPart FractionalPart [lookahead != {Digit, `.`, NameStart}] - * - IntegerPart ExponentPart [lookahead != {Digit, `.`, NameStart}] - * - * FractionalPart :: . Digit+ - * - * ExponentPart :: ExponentIndicator Sign? Digit+ - * - * ExponentIndicator :: one of `e` `E` - * - * Sign :: one of + - - * ``` - */ - - function readNumber(lexer, start, firstCode) { - const body = lexer.source.body; - let position = start; - let code = firstCode; - let isFloat = false; // NegativeSign (-) - - if (code === 0x002d) { - code = body.charCodeAt(++position); - } // Zero (0) - - if (code === 0x0030) { - code = body.charCodeAt(++position); - - if (isDigit$1(code)) { - throw syntaxError( - lexer.source, - position, - `Invalid number, unexpected digit after 0: ${printCodePointAt( - lexer, - position, - )}.`, - ); - } - } else { - position = readDigits(lexer, position, code); - code = body.charCodeAt(position); - } // Full stop (.) - - if (code === 0x002e) { - isFloat = true; - code = body.charCodeAt(++position); - position = readDigits(lexer, position, code); - code = body.charCodeAt(position); - } // E e - - if (code === 0x0045 || code === 0x0065) { - isFloat = true; - code = body.charCodeAt(++position); // + - - - if (code === 0x002b || code === 0x002d) { - code = body.charCodeAt(++position); - } - - position = readDigits(lexer, position, code); - code = body.charCodeAt(position); - } // Numbers cannot be followed by . or NameStart - - if (code === 0x002e || isNameStart(code)) { - throw syntaxError( - lexer.source, - position, - `Invalid number, expected digit but got: ${printCodePointAt( - lexer, - position, - )}.`, - ); - } - - return createToken( - lexer, - isFloat ? TokenKind.FLOAT : TokenKind.INT, - start, - position, - body.slice(start, position), - ); - } - /** - * Returns the new position in the source after reading one or more digits. - */ - - function readDigits(lexer, start, firstCode) { - if (!isDigit$1(firstCode)) { - throw syntaxError( - lexer.source, - start, - `Invalid number, expected digit but got: ${printCodePointAt( - lexer, - start, - )}.`, - ); - } - - const body = lexer.source.body; - let position = start + 1; // +1 to skip first firstCode - - while (isDigit$1(body.charCodeAt(position))) { - ++position; - } - - return position; - } - /** - * Reads a single-quote string token from the source file. - * - * ``` - * StringValue :: - * - `""` [lookahead != `"`] - * - `"` StringCharacter+ `"` - * - * StringCharacter :: - * - SourceCharacter but not `"` or `\` or LineTerminator - * - `\u` EscapedUnicode - * - `\` EscapedCharacter - * - * EscapedUnicode :: - * - `{` HexDigit+ `}` - * - HexDigit HexDigit HexDigit HexDigit - * - * EscapedCharacter :: one of `"` `\` `/` `b` `f` `n` `r` `t` - * ``` - */ - - function readString(lexer, start) { - const body = lexer.source.body; - const bodyLength = body.length; - let position = start + 1; - let chunkStart = position; - let value = ''; - - while (position < bodyLength) { - const code = body.charCodeAt(position); // Closing Quote (") - - if (code === 0x0022) { - value += body.slice(chunkStart, position); - return createToken(lexer, TokenKind.STRING, start, position + 1, value); - } // Escape Sequence (\) - - if (code === 0x005c) { - value += body.slice(chunkStart, position); - const escape = - body.charCodeAt(position + 1) === 0x0075 // u - ? body.charCodeAt(position + 2) === 0x007b // { - ? readEscapedUnicodeVariableWidth(lexer, position) - : readEscapedUnicodeFixedWidth(lexer, position) - : readEscapedCharacter(lexer, position); - value += escape.value; - position += escape.size; - chunkStart = position; - continue; - } // LineTerminator (\n | \r) - - if (code === 0x000a || code === 0x000d) { - break; - } // SourceCharacter - - if (isUnicodeScalarValue(code)) { - ++position; - } else if (isSupplementaryCodePoint(body, position)) { - position += 2; - } else { - throw syntaxError( - lexer.source, - position, - `Invalid character within String: ${printCodePointAt( - lexer, - position, - )}.`, - ); - } - } - - throw syntaxError(lexer.source, position, 'Unterminated string.'); - } // The string value and lexed size of an escape sequence. - - function readEscapedUnicodeVariableWidth(lexer, position) { - const body = lexer.source.body; - let point = 0; - let size = 3; // Cannot be larger than 12 chars (\u{00000000}). - - while (size < 12) { - const code = body.charCodeAt(position + size++); // Closing Brace (}) - - if (code === 0x007d) { - // Must be at least 5 chars (\u{0}) and encode a Unicode scalar value. - if (size < 5 || !isUnicodeScalarValue(point)) { - break; - } - - return { - value: String.fromCodePoint(point), - size, - }; - } // Append this hex digit to the code point. - - point = (point << 4) | readHexDigit(code); - - if (point < 0) { - break; - } - } - - throw syntaxError( - lexer.source, - position, - `Invalid Unicode escape sequence: "${body.slice( - position, - position + size, - )}".`, - ); - } - - function readEscapedUnicodeFixedWidth(lexer, position) { - const body = lexer.source.body; - const code = read16BitHexCode(body, position + 2); - - if (isUnicodeScalarValue(code)) { - return { - value: String.fromCodePoint(code), - size: 6, - }; - } // GraphQL allows JSON-style surrogate pair escape sequences, but only when - // a valid pair is formed. - - if (isLeadingSurrogate(code)) { - // \u - if ( - body.charCodeAt(position + 6) === 0x005c && - body.charCodeAt(position + 7) === 0x0075 - ) { - const trailingCode = read16BitHexCode(body, position + 8); - - if (isTrailingSurrogate(trailingCode)) { - // JavaScript defines strings as a sequence of UTF-16 code units and - // encodes Unicode code points above U+FFFF using a surrogate pair of - // code units. Since this is a surrogate pair escape sequence, just - // include both codes into the JavaScript string value. Had JavaScript - // not been internally based on UTF-16, then this surrogate pair would - // be decoded to retrieve the supplementary code point. - return { - value: String.fromCodePoint(code, trailingCode), - size: 12, - }; - } - } - } - - throw syntaxError( - lexer.source, - position, - `Invalid Unicode escape sequence: "${body.slice(position, position + 6)}".`, - ); - } - /** - * Reads four hexadecimal characters and returns the positive integer that 16bit - * hexadecimal string represents. For example, "000f" will return 15, and "dead" - * will return 57005. - * - * Returns a negative number if any char was not a valid hexadecimal digit. - */ - - function read16BitHexCode(body, position) { - // readHexDigit() returns -1 on error. ORing a negative value with any other - // value always produces a negative value. - return ( - (readHexDigit(body.charCodeAt(position)) << 12) | - (readHexDigit(body.charCodeAt(position + 1)) << 8) | - (readHexDigit(body.charCodeAt(position + 2)) << 4) | - readHexDigit(body.charCodeAt(position + 3)) - ); - } - /** - * Reads a hexadecimal character and returns its positive integer value (0-15). - * - * '0' becomes 0, '9' becomes 9 - * 'A' becomes 10, 'F' becomes 15 - * 'a' becomes 10, 'f' becomes 15 - * - * Returns -1 if the provided character code was not a valid hexadecimal digit. - * - * HexDigit :: one of - * - `0` `1` `2` `3` `4` `5` `6` `7` `8` `9` - * - `A` `B` `C` `D` `E` `F` - * - `a` `b` `c` `d` `e` `f` - */ - - function readHexDigit(code) { - return code >= 0x0030 && code <= 0x0039 // 0-9 - ? code - 0x0030 - : code >= 0x0041 && code <= 0x0046 // A-F - ? code - 0x0037 - : code >= 0x0061 && code <= 0x0066 // a-f - ? code - 0x0057 - : -1; - } - /** - * | Escaped Character | Code Point | Character Name | - * | ----------------- | ---------- | ---------------------------- | - * | `"` | U+0022 | double quote | - * | `\` | U+005C | reverse solidus (back slash) | - * | `/` | U+002F | solidus (forward slash) | - * | `b` | U+0008 | backspace | - * | `f` | U+000C | form feed | - * | `n` | U+000A | line feed (new line) | - * | `r` | U+000D | carriage return | - * | `t` | U+0009 | horizontal tab | - */ - - function readEscapedCharacter(lexer, position) { - const body = lexer.source.body; - const code = body.charCodeAt(position + 1); - - switch (code) { - case 0x0022: - // " - return { - value: '\u0022', - size: 2, - }; - - case 0x005c: - // \ - return { - value: '\u005c', - size: 2, - }; - - case 0x002f: - // / - return { - value: '\u002f', - size: 2, - }; - - case 0x0062: - // b - return { - value: '\u0008', - size: 2, - }; - - case 0x0066: - // f - return { - value: '\u000c', - size: 2, - }; - - case 0x006e: - // n - return { - value: '\u000a', - size: 2, - }; - - case 0x0072: - // r - return { - value: '\u000d', - size: 2, - }; - - case 0x0074: - // t - return { - value: '\u0009', - size: 2, - }; - } - - throw syntaxError( - lexer.source, - position, - `Invalid character escape sequence: "${body.slice( - position, - position + 2, - )}".`, - ); - } - /** - * Reads a block string token from the source file. - * - * ``` - * StringValue :: - * - `"""` BlockStringCharacter* `"""` - * - * BlockStringCharacter :: - * - SourceCharacter but not `"""` or `\"""` - * - `\"""` - * ``` - */ - - function readBlockString(lexer, start) { - const body = lexer.source.body; - const bodyLength = body.length; - let lineStart = lexer.lineStart; - let position = start + 3; - let chunkStart = position; - let currentLine = ''; - const blockLines = []; - - while (position < bodyLength) { - const code = body.charCodeAt(position); // Closing Triple-Quote (""") - - if ( - code === 0x0022 && - body.charCodeAt(position + 1) === 0x0022 && - body.charCodeAt(position + 2) === 0x0022 - ) { - currentLine += body.slice(chunkStart, position); - blockLines.push(currentLine); - const token = createToken( - lexer, - TokenKind.BLOCK_STRING, - start, - position + 3, // Return a string of the lines joined with U+000A. - dedentBlockStringLines(blockLines).join('\n'), - ); - lexer.line += blockLines.length - 1; - lexer.lineStart = lineStart; - return token; - } // Escaped Triple-Quote (\""") - - if ( - code === 0x005c && - body.charCodeAt(position + 1) === 0x0022 && - body.charCodeAt(position + 2) === 0x0022 && - body.charCodeAt(position + 3) === 0x0022 - ) { - currentLine += body.slice(chunkStart, position); - chunkStart = position + 1; // skip only slash - - position += 4; - continue; - } // LineTerminator - - if (code === 0x000a || code === 0x000d) { - currentLine += body.slice(chunkStart, position); - blockLines.push(currentLine); - - if (code === 0x000d && body.charCodeAt(position + 1) === 0x000a) { - position += 2; - } else { - ++position; - } - - currentLine = ''; - chunkStart = position; - lineStart = position; - continue; - } // SourceCharacter - - if (isUnicodeScalarValue(code)) { - ++position; - } else if (isSupplementaryCodePoint(body, position)) { - position += 2; - } else { - throw syntaxError( - lexer.source, - position, - `Invalid character within String: ${printCodePointAt( - lexer, - position, - )}.`, - ); - } - } - - throw syntaxError(lexer.source, position, 'Unterminated string.'); - } - /** - * Reads an alphanumeric + underscore name from the source. - * - * ``` - * Name :: - * - NameStart NameContinue* [lookahead != NameContinue] - * ``` - */ - - function readName(lexer, start) { - const body = lexer.source.body; - const bodyLength = body.length; - let position = start + 1; - - while (position < bodyLength) { - const code = body.charCodeAt(position); - - if (isNameContinue(code)) { - ++position; - } else { - break; - } - } - - return createToken( - lexer, - TokenKind.NAME, - start, - position, - body.slice(start, position), - ); - } - - const MAX_ARRAY_LENGTH = 10; - const MAX_RECURSIVE_DEPTH = 2; - /** - * Used to print values in error messages. - */ - - function inspect$2(value) { - return formatValue$1(value, []); - } - - function formatValue$1(value, seenValues) { - switch (typeof value) { - case 'string': - return JSON.stringify(value); - - case 'function': - return value.name ? `[function ${value.name}]` : '[function]'; - - case 'object': - return formatObjectValue(value, seenValues); - - default: - return String(value); - } - } - - function formatObjectValue(value, previouslySeenValues) { - if (value === null) { - return 'null'; - } - - if (previouslySeenValues.includes(value)) { - return '[Circular]'; - } - - const seenValues = [...previouslySeenValues, value]; - - if (isJSONable(value)) { - const jsonValue = value.toJSON(); // check for infinite recursion - - if (jsonValue !== value) { - return typeof jsonValue === 'string' - ? jsonValue - : formatValue$1(jsonValue, seenValues); - } - } else if (Array.isArray(value)) { - return formatArray$1(value, seenValues); - } - - return formatObject(value, seenValues); - } - - function isJSONable(value) { - return typeof value.toJSON === 'function'; - } - - function formatObject(object, seenValues) { - const entries = Object.entries(object); - - if (entries.length === 0) { - return '{}'; - } - - if (seenValues.length > MAX_RECURSIVE_DEPTH) { - return '[' + getObjectTag(object) + ']'; - } - - const properties = entries.map( - ([key, value]) => key + ': ' + formatValue$1(value, seenValues), - ); - return '{ ' + properties.join(', ') + ' }'; - } - - function formatArray$1(array, seenValues) { - if (array.length === 0) { - return '[]'; - } - - if (seenValues.length > MAX_RECURSIVE_DEPTH) { - return '[Array]'; - } - - const len = Math.min(MAX_ARRAY_LENGTH, array.length); - const remaining = array.length - len; - const items = []; - - for (let i = 0; i < len; ++i) { - items.push(formatValue$1(array[i], seenValues)); - } - - if (remaining === 1) { - items.push('... 1 more item'); - } else if (remaining > 1) { - items.push(`... ${remaining} more items`); - } - - return '[' + items.join(', ') + ']'; - } - - function getObjectTag(object) { - const tag = Object.prototype.toString - .call(object) - .replace(/^\[object /, '') - .replace(/]$/, ''); - - if (tag === 'Object' && typeof object.constructor === 'function') { - const name = object.constructor.name; - - if (typeof name === 'string' && name !== '') { - return name; - } - } - - return tag; - } - - /** - * A replacement for instanceof which includes an error warning when multi-realm - * constructors are detected. - * See: https://expressjs.com/en/advanced/best-practice-performance.html#set-node_env-to-production - * See: https://webpack.js.org/guides/production/ - */ - - const instanceOf = - /* c8 ignore next 5 */ - // FIXME: https://github.com/graphql/graphql-js/issues/2317 - process.env.NODE_ENV === 'production' - ? function instanceOf(value, constructor) { - return value instanceof constructor; - } - : function instanceOf(value, constructor) { - if (value instanceof constructor) { - return true; - } - - if (typeof value === 'object' && value !== null) { - var _value$constructor; - - // Prefer Symbol.toStringTag since it is immune to minification. - const className = constructor.prototype[Symbol.toStringTag]; - const valueClassName = // We still need to support constructor's name to detect conflicts with older versions of this library. - Symbol.toStringTag in value // @ts-expect-error TS bug see, https://github.com/microsoft/TypeScript/issues/38009 - ? value[Symbol.toStringTag] - : (_value$constructor = value.constructor) === null || - _value$constructor === void 0 - ? void 0 - : _value$constructor.name; - - if (className === valueClassName) { - const stringifiedValue = inspect$2(value); - throw new Error(`Cannot use ${className} "${stringifiedValue}" from another module or realm. - -Ensure that there is only one instance of "graphql" in the node_modules -directory. If different versions of "graphql" are the dependencies of other -relied on modules, use "resolutions" to ensure only one version is installed. - -https://yarnpkg.com/en/docs/selective-version-resolutions - -Duplicate "graphql" modules cannot be used at the same time since different -versions may have different capabilities and behavior. The data from one -version used in the function from another could produce confusing and -spurious results.`); - } - } - - return false; - }; - - /** - * A representation of source input to GraphQL. The `name` and `locationOffset` parameters are - * optional, but they are useful for clients who store GraphQL documents in source files. - * For example, if the GraphQL input starts at line 40 in a file named `Foo.graphql`, it might - * be useful for `name` to be `"Foo.graphql"` and location to be `{ line: 40, column: 1 }`. - * The `line` and `column` properties in `locationOffset` are 1-indexed. - */ - class Source { - constructor( - body, - name = 'GraphQL request', - locationOffset = { - line: 1, - column: 1, - }, - ) { - typeof body === 'string' || - devAssert(false, `Body must be a string. Received: ${inspect$2(body)}.`); - this.body = body; - this.name = name; - this.locationOffset = locationOffset; - this.locationOffset.line > 0 || - devAssert( - false, - 'line in locationOffset is 1-indexed and must be positive.', - ); - this.locationOffset.column > 0 || - devAssert( - false, - 'column in locationOffset is 1-indexed and must be positive.', - ); - } - - get [Symbol.toStringTag]() { - return 'Source'; - } - } - /** - * Test if the given value is a Source object. - * - * @internal - */ - - function isSource(source) { - return instanceOf(source, Source); - } - - /** - * Configuration options to control parser behavior - */ - - /** - * Given a GraphQL source, parses it into a Document. - * Throws GraphQLError if a syntax error is encountered. - */ - function parse(source, options) { - const parser = new Parser(source, options); - return parser.parseDocument(); - } - /** - * Given a string containing a GraphQL value (ex. `[42]`), parse the AST for - * that value. - * Throws GraphQLError if a syntax error is encountered. - * - * This is useful within tools that operate upon GraphQL Values directly and - * in isolation of complete GraphQL documents. - * - * Consider providing the results to the utility function: valueFromAST(). - */ - - function parseValue(source, options) { - const parser = new Parser(source, options); - parser.expectToken(TokenKind.SOF); - const value = parser.parseValueLiteral(false); - parser.expectToken(TokenKind.EOF); - return value; - } - /** - * Similar to parseValue(), but raises a parse error if it encounters a - * variable. The return type will be a constant value. - */ - - function parseConstValue(source, options) { - const parser = new Parser(source, options); - parser.expectToken(TokenKind.SOF); - const value = parser.parseConstValueLiteral(); - parser.expectToken(TokenKind.EOF); - return value; - } - /** - * Given a string containing a GraphQL Type (ex. `[Int!]`), parse the AST for - * that type. - * Throws GraphQLError if a syntax error is encountered. - * - * This is useful within tools that operate upon GraphQL Types directly and - * in isolation of complete GraphQL documents. - * - * Consider providing the results to the utility function: typeFromAST(). - */ - - function parseType(source, options) { - const parser = new Parser(source, options); - parser.expectToken(TokenKind.SOF); - const type = parser.parseTypeReference(); - parser.expectToken(TokenKind.EOF); - return type; - } - /** - * This class is exported only to assist people in implementing their own parsers - * without duplicating too much code and should be used only as last resort for cases - * such as experimental syntax or if certain features could not be contributed upstream. - * - * It is still part of the internal API and is versioned, so any changes to it are never - * considered breaking changes. If you still need to support multiple versions of the - * library, please use the `versionInfo` variable for version detection. - * - * @internal - */ - - class Parser { - constructor(source, options) { - const sourceObj = isSource(source) ? source : new Source(source); - this._lexer = new Lexer(sourceObj); - this._options = options; - } - /** - * Converts a name lex token into a name parse node. - */ - - parseName() { - const token = this.expectToken(TokenKind.NAME); - return this.node(token, { - kind: Kind.NAME, - value: token.value, - }); - } // Implements the parsing rules in the Document section. - - /** - * Document : Definition+ - */ - - parseDocument() { - return this.node(this._lexer.token, { - kind: Kind.DOCUMENT, - definitions: this.many( - TokenKind.SOF, - this.parseDefinition, - TokenKind.EOF, - ), - }); - } - /** - * Definition : - * - ExecutableDefinition - * - TypeSystemDefinition - * - TypeSystemExtension - * - * ExecutableDefinition : - * - OperationDefinition - * - FragmentDefinition - * - * TypeSystemDefinition : - * - SchemaDefinition - * - TypeDefinition - * - DirectiveDefinition - * - * TypeDefinition : - * - ScalarTypeDefinition - * - ObjectTypeDefinition - * - InterfaceTypeDefinition - * - UnionTypeDefinition - * - EnumTypeDefinition - * - InputObjectTypeDefinition - */ - - parseDefinition() { - if (this.peek(TokenKind.BRACE_L)) { - return this.parseOperationDefinition(); - } // Many definitions begin with a description and require a lookahead. - - const hasDescription = this.peekDescription(); - const keywordToken = hasDescription - ? this._lexer.lookahead() - : this._lexer.token; - - if (keywordToken.kind === TokenKind.NAME) { - switch (keywordToken.value) { - case 'schema': - return this.parseSchemaDefinition(); - - case 'scalar': - return this.parseScalarTypeDefinition(); - - case 'type': - return this.parseObjectTypeDefinition(); - - case 'interface': - return this.parseInterfaceTypeDefinition(); - - case 'union': - return this.parseUnionTypeDefinition(); - - case 'enum': - return this.parseEnumTypeDefinition(); - - case 'input': - return this.parseInputObjectTypeDefinition(); - - case 'directive': - return this.parseDirectiveDefinition(); - } - - if (hasDescription) { - throw syntaxError( - this._lexer.source, - this._lexer.token.start, - 'Unexpected description, descriptions are supported only on type definitions.', - ); - } - - switch (keywordToken.value) { - case 'query': - case 'mutation': - case 'subscription': - return this.parseOperationDefinition(); - - case 'fragment': - return this.parseFragmentDefinition(); - - case 'extend': - return this.parseTypeSystemExtension(); - } - } - - throw this.unexpected(keywordToken); - } // Implements the parsing rules in the Operations section. - - /** - * OperationDefinition : - * - SelectionSet - * - OperationType Name? VariableDefinitions? Directives? SelectionSet - */ - - parseOperationDefinition() { - const start = this._lexer.token; - - if (this.peek(TokenKind.BRACE_L)) { - return this.node(start, { - kind: Kind.OPERATION_DEFINITION, - operation: OperationTypeNode.QUERY, - name: undefined, - variableDefinitions: [], - directives: [], - selectionSet: this.parseSelectionSet(), - }); - } - - const operation = this.parseOperationType(); - let name; - - if (this.peek(TokenKind.NAME)) { - name = this.parseName(); - } - - return this.node(start, { - kind: Kind.OPERATION_DEFINITION, - operation, - name, - variableDefinitions: this.parseVariableDefinitions(), - directives: this.parseDirectives(false), - selectionSet: this.parseSelectionSet(), - }); - } - /** - * OperationType : one of query mutation subscription - */ - - parseOperationType() { - const operationToken = this.expectToken(TokenKind.NAME); - - switch (operationToken.value) { - case 'query': - return OperationTypeNode.QUERY; - - case 'mutation': - return OperationTypeNode.MUTATION; - - case 'subscription': - return OperationTypeNode.SUBSCRIPTION; - } - - throw this.unexpected(operationToken); - } - /** - * VariableDefinitions : ( VariableDefinition+ ) - */ - - parseVariableDefinitions() { - return this.optionalMany( - TokenKind.PAREN_L, - this.parseVariableDefinition, - TokenKind.PAREN_R, - ); - } - /** - * VariableDefinition : Variable : Type DefaultValue? Directives[Const]? - */ - - parseVariableDefinition() { - return this.node(this._lexer.token, { - kind: Kind.VARIABLE_DEFINITION, - variable: this.parseVariable(), - type: (this.expectToken(TokenKind.COLON), this.parseTypeReference()), - defaultValue: this.expectOptionalToken(TokenKind.EQUALS) - ? this.parseConstValueLiteral() - : undefined, - directives: this.parseConstDirectives(), - }); - } - /** - * Variable : $ Name - */ - - parseVariable() { - const start = this._lexer.token; - this.expectToken(TokenKind.DOLLAR); - return this.node(start, { - kind: Kind.VARIABLE, - name: this.parseName(), - }); - } - /** - * ``` - * SelectionSet : { Selection+ } - * ``` - */ - - parseSelectionSet() { - return this.node(this._lexer.token, { - kind: Kind.SELECTION_SET, - selections: this.many( - TokenKind.BRACE_L, - this.parseSelection, - TokenKind.BRACE_R, - ), - }); - } - /** - * Selection : - * - Field - * - FragmentSpread - * - InlineFragment - */ - - parseSelection() { - return this.peek(TokenKind.SPREAD) - ? this.parseFragment() - : this.parseField(); - } - /** - * Field : Alias? Name Arguments? Directives? SelectionSet? - * - * Alias : Name : - */ - - parseField() { - const start = this._lexer.token; - const nameOrAlias = this.parseName(); - let alias; - let name; - - if (this.expectOptionalToken(TokenKind.COLON)) { - alias = nameOrAlias; - name = this.parseName(); - } else { - name = nameOrAlias; - } - - return this.node(start, { - kind: Kind.FIELD, - alias, - name, - arguments: this.parseArguments(false), - directives: this.parseDirectives(false), - selectionSet: this.peek(TokenKind.BRACE_L) - ? this.parseSelectionSet() - : undefined, - }); - } - /** - * Arguments[Const] : ( Argument[?Const]+ ) - */ - - parseArguments(isConst) { - const item = isConst ? this.parseConstArgument : this.parseArgument; - return this.optionalMany(TokenKind.PAREN_L, item, TokenKind.PAREN_R); - } - /** - * Argument[Const] : Name : Value[?Const] - */ - - parseArgument(isConst = false) { - const start = this._lexer.token; - const name = this.parseName(); - this.expectToken(TokenKind.COLON); - return this.node(start, { - kind: Kind.ARGUMENT, - name, - value: this.parseValueLiteral(isConst), - }); - } - - parseConstArgument() { - return this.parseArgument(true); - } // Implements the parsing rules in the Fragments section. - - /** - * Corresponds to both FragmentSpread and InlineFragment in the spec. - * - * FragmentSpread : ... FragmentName Directives? - * - * InlineFragment : ... TypeCondition? Directives? SelectionSet - */ - - parseFragment() { - const start = this._lexer.token; - this.expectToken(TokenKind.SPREAD); - const hasTypeCondition = this.expectOptionalKeyword('on'); - - if (!hasTypeCondition && this.peek(TokenKind.NAME)) { - return this.node(start, { - kind: Kind.FRAGMENT_SPREAD, - name: this.parseFragmentName(), - directives: this.parseDirectives(false), - }); - } - - return this.node(start, { - kind: Kind.INLINE_FRAGMENT, - typeCondition: hasTypeCondition ? this.parseNamedType() : undefined, - directives: this.parseDirectives(false), - selectionSet: this.parseSelectionSet(), - }); - } - /** - * FragmentDefinition : - * - fragment FragmentName on TypeCondition Directives? SelectionSet - * - * TypeCondition : NamedType - */ - - parseFragmentDefinition() { - var _this$_options; - - const start = this._lexer.token; - this.expectKeyword('fragment'); // Legacy support for defining variables within fragments changes - // the grammar of FragmentDefinition: - // - fragment FragmentName VariableDefinitions? on TypeCondition Directives? SelectionSet - - if ( - ((_this$_options = this._options) === null || _this$_options === void 0 - ? void 0 - : _this$_options.allowLegacyFragmentVariables) === true - ) { - return this.node(start, { - kind: Kind.FRAGMENT_DEFINITION, - name: this.parseFragmentName(), - variableDefinitions: this.parseVariableDefinitions(), - typeCondition: (this.expectKeyword('on'), this.parseNamedType()), - directives: this.parseDirectives(false), - selectionSet: this.parseSelectionSet(), - }); - } - - return this.node(start, { - kind: Kind.FRAGMENT_DEFINITION, - name: this.parseFragmentName(), - typeCondition: (this.expectKeyword('on'), this.parseNamedType()), - directives: this.parseDirectives(false), - selectionSet: this.parseSelectionSet(), - }); - } - /** - * FragmentName : Name but not `on` - */ - - parseFragmentName() { - if (this._lexer.token.value === 'on') { - throw this.unexpected(); - } - - return this.parseName(); - } // Implements the parsing rules in the Values section. - - /** - * Value[Const] : - * - [~Const] Variable - * - IntValue - * - FloatValue - * - StringValue - * - BooleanValue - * - NullValue - * - EnumValue - * - ListValue[?Const] - * - ObjectValue[?Const] - * - * BooleanValue : one of `true` `false` - * - * NullValue : `null` - * - * EnumValue : Name but not `true`, `false` or `null` - */ - - parseValueLiteral(isConst) { - const token = this._lexer.token; - - switch (token.kind) { - case TokenKind.BRACKET_L: - return this.parseList(isConst); - - case TokenKind.BRACE_L: - return this.parseObject(isConst); - - case TokenKind.INT: - this._lexer.advance(); - - return this.node(token, { - kind: Kind.INT, - value: token.value, - }); - - case TokenKind.FLOAT: - this._lexer.advance(); - - return this.node(token, { - kind: Kind.FLOAT, - value: token.value, - }); - - case TokenKind.STRING: - case TokenKind.BLOCK_STRING: - return this.parseStringLiteral(); - - case TokenKind.NAME: - this._lexer.advance(); - - switch (token.value) { - case 'true': - return this.node(token, { - kind: Kind.BOOLEAN, - value: true, - }); - - case 'false': - return this.node(token, { - kind: Kind.BOOLEAN, - value: false, - }); - - case 'null': - return this.node(token, { - kind: Kind.NULL, - }); - - default: - return this.node(token, { - kind: Kind.ENUM, - value: token.value, - }); - } - - case TokenKind.DOLLAR: - if (isConst) { - this.expectToken(TokenKind.DOLLAR); - - if (this._lexer.token.kind === TokenKind.NAME) { - const varName = this._lexer.token.value; - throw syntaxError( - this._lexer.source, - token.start, - `Unexpected variable "$${varName}" in constant value.`, - ); - } else { - throw this.unexpected(token); - } - } - - return this.parseVariable(); - - default: - throw this.unexpected(); - } - } - - parseConstValueLiteral() { - return this.parseValueLiteral(true); - } - - parseStringLiteral() { - const token = this._lexer.token; - - this._lexer.advance(); - - return this.node(token, { - kind: Kind.STRING, - value: token.value, - block: token.kind === TokenKind.BLOCK_STRING, - }); - } - /** - * ListValue[Const] : - * - [ ] - * - [ Value[?Const]+ ] - */ - - parseList(isConst) { - const item = () => this.parseValueLiteral(isConst); - - return this.node(this._lexer.token, { - kind: Kind.LIST, - values: this.any(TokenKind.BRACKET_L, item, TokenKind.BRACKET_R), - }); - } - /** - * ``` - * ObjectValue[Const] : - * - { } - * - { ObjectField[?Const]+ } - * ``` - */ - - parseObject(isConst) { - const item = () => this.parseObjectField(isConst); - - return this.node(this._lexer.token, { - kind: Kind.OBJECT, - fields: this.any(TokenKind.BRACE_L, item, TokenKind.BRACE_R), - }); - } - /** - * ObjectField[Const] : Name : Value[?Const] - */ - - parseObjectField(isConst) { - const start = this._lexer.token; - const name = this.parseName(); - this.expectToken(TokenKind.COLON); - return this.node(start, { - kind: Kind.OBJECT_FIELD, - name, - value: this.parseValueLiteral(isConst), - }); - } // Implements the parsing rules in the Directives section. - - /** - * Directives[Const] : Directive[?Const]+ - */ - - parseDirectives(isConst) { - const directives = []; - - while (this.peek(TokenKind.AT)) { - directives.push(this.parseDirective(isConst)); - } - - return directives; - } - - parseConstDirectives() { - return this.parseDirectives(true); - } - /** - * ``` - * Directive[Const] : @ Name Arguments[?Const]? - * ``` - */ - - parseDirective(isConst) { - const start = this._lexer.token; - this.expectToken(TokenKind.AT); - return this.node(start, { - kind: Kind.DIRECTIVE, - name: this.parseName(), - arguments: this.parseArguments(isConst), - }); - } // Implements the parsing rules in the Types section. - - /** - * Type : - * - NamedType - * - ListType - * - NonNullType - */ - - parseTypeReference() { - const start = this._lexer.token; - let type; - - if (this.expectOptionalToken(TokenKind.BRACKET_L)) { - const innerType = this.parseTypeReference(); - this.expectToken(TokenKind.BRACKET_R); - type = this.node(start, { - kind: Kind.LIST_TYPE, - type: innerType, - }); - } else { - type = this.parseNamedType(); - } - - if (this.expectOptionalToken(TokenKind.BANG)) { - return this.node(start, { - kind: Kind.NON_NULL_TYPE, - type, - }); - } - - return type; - } - /** - * NamedType : Name - */ - - parseNamedType() { - return this.node(this._lexer.token, { - kind: Kind.NAMED_TYPE, - name: this.parseName(), - }); - } // Implements the parsing rules in the Type Definition section. - - peekDescription() { - return this.peek(TokenKind.STRING) || this.peek(TokenKind.BLOCK_STRING); - } - /** - * Description : StringValue - */ - - parseDescription() { - if (this.peekDescription()) { - return this.parseStringLiteral(); - } - } - /** - * ``` - * SchemaDefinition : Description? schema Directives[Const]? { OperationTypeDefinition+ } - * ``` - */ - - parseSchemaDefinition() { - const start = this._lexer.token; - const description = this.parseDescription(); - this.expectKeyword('schema'); - const directives = this.parseConstDirectives(); - const operationTypes = this.many( - TokenKind.BRACE_L, - this.parseOperationTypeDefinition, - TokenKind.BRACE_R, - ); - return this.node(start, { - kind: Kind.SCHEMA_DEFINITION, - description, - directives, - operationTypes, - }); - } - /** - * OperationTypeDefinition : OperationType : NamedType - */ - - parseOperationTypeDefinition() { - const start = this._lexer.token; - const operation = this.parseOperationType(); - this.expectToken(TokenKind.COLON); - const type = this.parseNamedType(); - return this.node(start, { - kind: Kind.OPERATION_TYPE_DEFINITION, - operation, - type, - }); - } - /** - * ScalarTypeDefinition : Description? scalar Name Directives[Const]? - */ - - parseScalarTypeDefinition() { - const start = this._lexer.token; - const description = this.parseDescription(); - this.expectKeyword('scalar'); - const name = this.parseName(); - const directives = this.parseConstDirectives(); - return this.node(start, { - kind: Kind.SCALAR_TYPE_DEFINITION, - description, - name, - directives, - }); - } - /** - * ObjectTypeDefinition : - * Description? - * type Name ImplementsInterfaces? Directives[Const]? FieldsDefinition? - */ - - parseObjectTypeDefinition() { - const start = this._lexer.token; - const description = this.parseDescription(); - this.expectKeyword('type'); - const name = this.parseName(); - const interfaces = this.parseImplementsInterfaces(); - const directives = this.parseConstDirectives(); - const fields = this.parseFieldsDefinition(); - return this.node(start, { - kind: Kind.OBJECT_TYPE_DEFINITION, - description, - name, - interfaces, - directives, - fields, - }); - } - /** - * ImplementsInterfaces : - * - implements `&`? NamedType - * - ImplementsInterfaces & NamedType - */ - - parseImplementsInterfaces() { - return this.expectOptionalKeyword('implements') - ? this.delimitedMany(TokenKind.AMP, this.parseNamedType) - : []; - } - /** - * ``` - * FieldsDefinition : { FieldDefinition+ } - * ``` - */ - - parseFieldsDefinition() { - return this.optionalMany( - TokenKind.BRACE_L, - this.parseFieldDefinition, - TokenKind.BRACE_R, - ); - } - /** - * FieldDefinition : - * - Description? Name ArgumentsDefinition? : Type Directives[Const]? - */ - - parseFieldDefinition() { - const start = this._lexer.token; - const description = this.parseDescription(); - const name = this.parseName(); - const args = this.parseArgumentDefs(); - this.expectToken(TokenKind.COLON); - const type = this.parseTypeReference(); - const directives = this.parseConstDirectives(); - return this.node(start, { - kind: Kind.FIELD_DEFINITION, - description, - name, - arguments: args, - type, - directives, - }); - } - /** - * ArgumentsDefinition : ( InputValueDefinition+ ) - */ - - parseArgumentDefs() { - return this.optionalMany( - TokenKind.PAREN_L, - this.parseInputValueDef, - TokenKind.PAREN_R, - ); - } - /** - * InputValueDefinition : - * - Description? Name : Type DefaultValue? Directives[Const]? - */ - - parseInputValueDef() { - const start = this._lexer.token; - const description = this.parseDescription(); - const name = this.parseName(); - this.expectToken(TokenKind.COLON); - const type = this.parseTypeReference(); - let defaultValue; - - if (this.expectOptionalToken(TokenKind.EQUALS)) { - defaultValue = this.parseConstValueLiteral(); - } - - const directives = this.parseConstDirectives(); - return this.node(start, { - kind: Kind.INPUT_VALUE_DEFINITION, - description, - name, - type, - defaultValue, - directives, - }); - } - /** - * InterfaceTypeDefinition : - * - Description? interface Name Directives[Const]? FieldsDefinition? - */ - - parseInterfaceTypeDefinition() { - const start = this._lexer.token; - const description = this.parseDescription(); - this.expectKeyword('interface'); - const name = this.parseName(); - const interfaces = this.parseImplementsInterfaces(); - const directives = this.parseConstDirectives(); - const fields = this.parseFieldsDefinition(); - return this.node(start, { - kind: Kind.INTERFACE_TYPE_DEFINITION, - description, - name, - interfaces, - directives, - fields, - }); - } - /** - * UnionTypeDefinition : - * - Description? union Name Directives[Const]? UnionMemberTypes? - */ - - parseUnionTypeDefinition() { - const start = this._lexer.token; - const description = this.parseDescription(); - this.expectKeyword('union'); - const name = this.parseName(); - const directives = this.parseConstDirectives(); - const types = this.parseUnionMemberTypes(); - return this.node(start, { - kind: Kind.UNION_TYPE_DEFINITION, - description, - name, - directives, - types, - }); - } - /** - * UnionMemberTypes : - * - = `|`? NamedType - * - UnionMemberTypes | NamedType - */ - - parseUnionMemberTypes() { - return this.expectOptionalToken(TokenKind.EQUALS) - ? this.delimitedMany(TokenKind.PIPE, this.parseNamedType) - : []; - } - /** - * EnumTypeDefinition : - * - Description? enum Name Directives[Const]? EnumValuesDefinition? - */ - - parseEnumTypeDefinition() { - const start = this._lexer.token; - const description = this.parseDescription(); - this.expectKeyword('enum'); - const name = this.parseName(); - const directives = this.parseConstDirectives(); - const values = this.parseEnumValuesDefinition(); - return this.node(start, { - kind: Kind.ENUM_TYPE_DEFINITION, - description, - name, - directives, - values, - }); - } - /** - * ``` - * EnumValuesDefinition : { EnumValueDefinition+ } - * ``` - */ - - parseEnumValuesDefinition() { - return this.optionalMany( - TokenKind.BRACE_L, - this.parseEnumValueDefinition, - TokenKind.BRACE_R, - ); - } - /** - * EnumValueDefinition : Description? EnumValue Directives[Const]? - */ - - parseEnumValueDefinition() { - const start = this._lexer.token; - const description = this.parseDescription(); - const name = this.parseEnumValueName(); - const directives = this.parseConstDirectives(); - return this.node(start, { - kind: Kind.ENUM_VALUE_DEFINITION, - description, - name, - directives, - }); - } - /** - * EnumValue : Name but not `true`, `false` or `null` - */ - - parseEnumValueName() { - if ( - this._lexer.token.value === 'true' || - this._lexer.token.value === 'false' || - this._lexer.token.value === 'null' - ) { - throw syntaxError( - this._lexer.source, - this._lexer.token.start, - `${getTokenDesc( - this._lexer.token, - )} is reserved and cannot be used for an enum value.`, - ); - } - - return this.parseName(); - } - /** - * InputObjectTypeDefinition : - * - Description? input Name Directives[Const]? InputFieldsDefinition? - */ - - parseInputObjectTypeDefinition() { - const start = this._lexer.token; - const description = this.parseDescription(); - this.expectKeyword('input'); - const name = this.parseName(); - const directives = this.parseConstDirectives(); - const fields = this.parseInputFieldsDefinition(); - return this.node(start, { - kind: Kind.INPUT_OBJECT_TYPE_DEFINITION, - description, - name, - directives, - fields, - }); - } - /** - * ``` - * InputFieldsDefinition : { InputValueDefinition+ } - * ``` - */ - - parseInputFieldsDefinition() { - return this.optionalMany( - TokenKind.BRACE_L, - this.parseInputValueDef, - TokenKind.BRACE_R, - ); - } - /** - * TypeSystemExtension : - * - SchemaExtension - * - TypeExtension - * - * TypeExtension : - * - ScalarTypeExtension - * - ObjectTypeExtension - * - InterfaceTypeExtension - * - UnionTypeExtension - * - EnumTypeExtension - * - InputObjectTypeDefinition - */ - - parseTypeSystemExtension() { - const keywordToken = this._lexer.lookahead(); - - if (keywordToken.kind === TokenKind.NAME) { - switch (keywordToken.value) { - case 'schema': - return this.parseSchemaExtension(); - - case 'scalar': - return this.parseScalarTypeExtension(); - - case 'type': - return this.parseObjectTypeExtension(); - - case 'interface': - return this.parseInterfaceTypeExtension(); - - case 'union': - return this.parseUnionTypeExtension(); - - case 'enum': - return this.parseEnumTypeExtension(); - - case 'input': - return this.parseInputObjectTypeExtension(); - } - } - - throw this.unexpected(keywordToken); - } - /** - * ``` - * SchemaExtension : - * - extend schema Directives[Const]? { OperationTypeDefinition+ } - * - extend schema Directives[Const] - * ``` - */ - - parseSchemaExtension() { - const start = this._lexer.token; - this.expectKeyword('extend'); - this.expectKeyword('schema'); - const directives = this.parseConstDirectives(); - const operationTypes = this.optionalMany( - TokenKind.BRACE_L, - this.parseOperationTypeDefinition, - TokenKind.BRACE_R, - ); - - if (directives.length === 0 && operationTypes.length === 0) { - throw this.unexpected(); - } - - return this.node(start, { - kind: Kind.SCHEMA_EXTENSION, - directives, - operationTypes, - }); - } - /** - * ScalarTypeExtension : - * - extend scalar Name Directives[Const] - */ - - parseScalarTypeExtension() { - const start = this._lexer.token; - this.expectKeyword('extend'); - this.expectKeyword('scalar'); - const name = this.parseName(); - const directives = this.parseConstDirectives(); - - if (directives.length === 0) { - throw this.unexpected(); - } - - return this.node(start, { - kind: Kind.SCALAR_TYPE_EXTENSION, - name, - directives, - }); - } - /** - * ObjectTypeExtension : - * - extend type Name ImplementsInterfaces? Directives[Const]? FieldsDefinition - * - extend type Name ImplementsInterfaces? Directives[Const] - * - extend type Name ImplementsInterfaces - */ - - parseObjectTypeExtension() { - const start = this._lexer.token; - this.expectKeyword('extend'); - this.expectKeyword('type'); - const name = this.parseName(); - const interfaces = this.parseImplementsInterfaces(); - const directives = this.parseConstDirectives(); - const fields = this.parseFieldsDefinition(); - - if ( - interfaces.length === 0 && - directives.length === 0 && - fields.length === 0 - ) { - throw this.unexpected(); - } - - return this.node(start, { - kind: Kind.OBJECT_TYPE_EXTENSION, - name, - interfaces, - directives, - fields, - }); - } - /** - * InterfaceTypeExtension : - * - extend interface Name ImplementsInterfaces? Directives[Const]? FieldsDefinition - * - extend interface Name ImplementsInterfaces? Directives[Const] - * - extend interface Name ImplementsInterfaces - */ - - parseInterfaceTypeExtension() { - const start = this._lexer.token; - this.expectKeyword('extend'); - this.expectKeyword('interface'); - const name = this.parseName(); - const interfaces = this.parseImplementsInterfaces(); - const directives = this.parseConstDirectives(); - const fields = this.parseFieldsDefinition(); - - if ( - interfaces.length === 0 && - directives.length === 0 && - fields.length === 0 - ) { - throw this.unexpected(); - } - - return this.node(start, { - kind: Kind.INTERFACE_TYPE_EXTENSION, - name, - interfaces, - directives, - fields, - }); - } - /** - * UnionTypeExtension : - * - extend union Name Directives[Const]? UnionMemberTypes - * - extend union Name Directives[Const] - */ - - parseUnionTypeExtension() { - const start = this._lexer.token; - this.expectKeyword('extend'); - this.expectKeyword('union'); - const name = this.parseName(); - const directives = this.parseConstDirectives(); - const types = this.parseUnionMemberTypes(); - - if (directives.length === 0 && types.length === 0) { - throw this.unexpected(); - } - - return this.node(start, { - kind: Kind.UNION_TYPE_EXTENSION, - name, - directives, - types, - }); - } - /** - * EnumTypeExtension : - * - extend enum Name Directives[Const]? EnumValuesDefinition - * - extend enum Name Directives[Const] - */ - - parseEnumTypeExtension() { - const start = this._lexer.token; - this.expectKeyword('extend'); - this.expectKeyword('enum'); - const name = this.parseName(); - const directives = this.parseConstDirectives(); - const values = this.parseEnumValuesDefinition(); - - if (directives.length === 0 && values.length === 0) { - throw this.unexpected(); - } - - return this.node(start, { - kind: Kind.ENUM_TYPE_EXTENSION, - name, - directives, - values, - }); - } - /** - * InputObjectTypeExtension : - * - extend input Name Directives[Const]? InputFieldsDefinition - * - extend input Name Directives[Const] - */ - - parseInputObjectTypeExtension() { - const start = this._lexer.token; - this.expectKeyword('extend'); - this.expectKeyword('input'); - const name = this.parseName(); - const directives = this.parseConstDirectives(); - const fields = this.parseInputFieldsDefinition(); - - if (directives.length === 0 && fields.length === 0) { - throw this.unexpected(); - } - - return this.node(start, { - kind: Kind.INPUT_OBJECT_TYPE_EXTENSION, - name, - directives, - fields, - }); - } - /** - * ``` - * DirectiveDefinition : - * - Description? directive @ Name ArgumentsDefinition? `repeatable`? on DirectiveLocations - * ``` - */ - - parseDirectiveDefinition() { - const start = this._lexer.token; - const description = this.parseDescription(); - this.expectKeyword('directive'); - this.expectToken(TokenKind.AT); - const name = this.parseName(); - const args = this.parseArgumentDefs(); - const repeatable = this.expectOptionalKeyword('repeatable'); - this.expectKeyword('on'); - const locations = this.parseDirectiveLocations(); - return this.node(start, { - kind: Kind.DIRECTIVE_DEFINITION, - description, - name, - arguments: args, - repeatable, - locations, - }); - } - /** - * DirectiveLocations : - * - `|`? DirectiveLocation - * - DirectiveLocations | DirectiveLocation - */ - - parseDirectiveLocations() { - return this.delimitedMany(TokenKind.PIPE, this.parseDirectiveLocation); - } - /* - * DirectiveLocation : - * - ExecutableDirectiveLocation - * - TypeSystemDirectiveLocation - * - * ExecutableDirectiveLocation : one of - * `QUERY` - * `MUTATION` - * `SUBSCRIPTION` - * `FIELD` - * `FRAGMENT_DEFINITION` - * `FRAGMENT_SPREAD` - * `INLINE_FRAGMENT` - * - * TypeSystemDirectiveLocation : one of - * `SCHEMA` - * `SCALAR` - * `OBJECT` - * `FIELD_DEFINITION` - * `ARGUMENT_DEFINITION` - * `INTERFACE` - * `UNION` - * `ENUM` - * `ENUM_VALUE` - * `INPUT_OBJECT` - * `INPUT_FIELD_DEFINITION` - */ - - parseDirectiveLocation() { - const start = this._lexer.token; - const name = this.parseName(); - - if (Object.prototype.hasOwnProperty.call(DirectiveLocation, name.value)) { - return name; - } - - throw this.unexpected(start); - } // Core parsing utility functions - - /** - * Returns a node that, if configured to do so, sets a "loc" field as a - * location object, used to identify the place in the source that created a - * given parsed object. - */ - - node(startToken, node) { - var _this$_options2; - - if ( - ((_this$_options2 = this._options) === null || _this$_options2 === void 0 - ? void 0 - : _this$_options2.noLocation) !== true - ) { - node.loc = new Location( - startToken, - this._lexer.lastToken, - this._lexer.source, - ); - } - - return node; - } - /** - * Determines if the next token is of a given kind - */ - - peek(kind) { - return this._lexer.token.kind === kind; - } - /** - * If the next token is of the given kind, return that token after advancing the lexer. - * Otherwise, do not change the parser state and throw an error. - */ - - expectToken(kind) { - const token = this._lexer.token; - - if (token.kind === kind) { - this._lexer.advance(); - - return token; - } - - throw syntaxError( - this._lexer.source, - token.start, - `Expected ${getTokenKindDesc(kind)}, found ${getTokenDesc(token)}.`, - ); - } - /** - * If the next token is of the given kind, return "true" after advancing the lexer. - * Otherwise, do not change the parser state and return "false". - */ - - expectOptionalToken(kind) { - const token = this._lexer.token; - - if (token.kind === kind) { - this._lexer.advance(); - - return true; - } - - return false; - } - /** - * If the next token is a given keyword, advance the lexer. - * Otherwise, do not change the parser state and throw an error. - */ - - expectKeyword(value) { - const token = this._lexer.token; - - if (token.kind === TokenKind.NAME && token.value === value) { - this._lexer.advance(); - } else { - throw syntaxError( - this._lexer.source, - token.start, - `Expected "${value}", found ${getTokenDesc(token)}.`, - ); - } - } - /** - * If the next token is a given keyword, return "true" after advancing the lexer. - * Otherwise, do not change the parser state and return "false". - */ - - expectOptionalKeyword(value) { - const token = this._lexer.token; - - if (token.kind === TokenKind.NAME && token.value === value) { - this._lexer.advance(); - - return true; - } - - return false; - } - /** - * Helper function for creating an error when an unexpected lexed token is encountered. - */ - - unexpected(atToken) { - const token = - atToken !== null && atToken !== void 0 ? atToken : this._lexer.token; - return syntaxError( - this._lexer.source, - token.start, - `Unexpected ${getTokenDesc(token)}.`, - ); - } - /** - * Returns a possibly empty list of parse nodes, determined by the parseFn. - * This list begins with a lex token of openKind and ends with a lex token of closeKind. - * Advances the parser to the next lex token after the closing token. - */ - - any(openKind, parseFn, closeKind) { - this.expectToken(openKind); - const nodes = []; - - while (!this.expectOptionalToken(closeKind)) { - nodes.push(parseFn.call(this)); - } - - return nodes; - } - /** - * Returns a list of parse nodes, determined by the parseFn. - * It can be empty only if open token is missing otherwise it will always return non-empty list - * that begins with a lex token of openKind and ends with a lex token of closeKind. - * Advances the parser to the next lex token after the closing token. - */ - - optionalMany(openKind, parseFn, closeKind) { - if (this.expectOptionalToken(openKind)) { - const nodes = []; - - do { - nodes.push(parseFn.call(this)); - } while (!this.expectOptionalToken(closeKind)); - - return nodes; - } - - return []; - } - /** - * Returns a non-empty list of parse nodes, determined by the parseFn. - * This list begins with a lex token of openKind and ends with a lex token of closeKind. - * Advances the parser to the next lex token after the closing token. - */ - - many(openKind, parseFn, closeKind) { - this.expectToken(openKind); - const nodes = []; - - do { - nodes.push(parseFn.call(this)); - } while (!this.expectOptionalToken(closeKind)); - - return nodes; - } - /** - * Returns a non-empty list of parse nodes, determined by the parseFn. - * This list may begin with a lex token of delimiterKind followed by items separated by lex tokens of tokenKind. - * Advances the parser to the next lex token after last item in the list. - */ - - delimitedMany(delimiterKind, parseFn) { - this.expectOptionalToken(delimiterKind); - const nodes = []; - - do { - nodes.push(parseFn.call(this)); - } while (this.expectOptionalToken(delimiterKind)); - - return nodes; - } - } - /** - * A helper function to describe a token as a string for debugging. - */ - - function getTokenDesc(token) { - const value = token.value; - return getTokenKindDesc(token.kind) + (value != null ? ` "${value}"` : ''); - } - /** - * A helper function to describe a token kind as a string for debugging. - */ - - function getTokenKindDesc(kind) { - return isPunctuatorTokenKind(kind) ? `"${kind}"` : kind; - } - - const MAX_SUGGESTIONS$1 = 5; - /** - * Given [ A, B, C ] return ' Did you mean A, B, or C?'. - */ - - function didYouMean$1(firstArg, secondArg) { - const [subMessage, suggestionsArg] = secondArg - ? [firstArg, secondArg] - : [undefined, firstArg]; - let message = ' Did you mean '; - - if (subMessage) { - message += subMessage + ' '; - } - - const suggestions = suggestionsArg.map((x) => `"${x}"`); - - switch (suggestions.length) { - case 0: - return ''; - - case 1: - return message + suggestions[0] + '?'; - - case 2: - return message + suggestions[0] + ' or ' + suggestions[1] + '?'; - } - - const selected = suggestions.slice(0, MAX_SUGGESTIONS$1); - const lastItem = selected.pop(); - return message + selected.join(', ') + ', or ' + lastItem + '?'; - } - - /** - * Returns the first argument it receives. - */ - function identityFunc(x) { - return x; - } - - /** - * Creates a keyed JS object from an array, given a function to produce the keys - * for each value in the array. - * - * This provides a convenient lookup for the array items if the key function - * produces unique results. - * ```ts - * const phoneBook = [ - * { name: 'Jon', num: '555-1234' }, - * { name: 'Jenny', num: '867-5309' } - * ] - * - * const entriesByName = keyMap( - * phoneBook, - * entry => entry.name - * ) - * - * // { - * // Jon: { name: 'Jon', num: '555-1234' }, - * // Jenny: { name: 'Jenny', num: '867-5309' } - * // } - * - * const jennyEntry = entriesByName['Jenny'] - * - * // { name: 'Jenny', num: '857-6309' } - * ``` - */ - function keyMap(list, keyFn) { - const result = Object.create(null); - - for (const item of list) { - result[keyFn(item)] = item; - } - - return result; - } - - /** - * Creates a keyed JS object from an array, given a function to produce the keys - * and a function to produce the values from each item in the array. - * ```ts - * const phoneBook = [ - * { name: 'Jon', num: '555-1234' }, - * { name: 'Jenny', num: '867-5309' } - * ] - * - * // { Jon: '555-1234', Jenny: '867-5309' } - * const phonesByName = keyValMap( - * phoneBook, - * entry => entry.name, - * entry => entry.num - * ) - * ``` - */ - function keyValMap(list, keyFn, valFn) { - const result = Object.create(null); - - for (const item of list) { - result[keyFn(item)] = valFn(item); - } - - return result; - } - - /** - * Creates an object map with the same keys as `map` and values generated by - * running each value of `map` thru `fn`. - */ - function mapValue(map, fn) { - const result = Object.create(null); - - for (const key of Object.keys(map)) { - result[key] = fn(map[key], key); - } - - return result; - } - - /** - * Returns a number indicating whether a reference string comes before, or after, - * or is the same as the given string in natural sort order. - * - * See: https://en.wikipedia.org/wiki/Natural_sort_order - * - */ - function naturalCompare(aStr, bStr) { - let aIndex = 0; - let bIndex = 0; - - while (aIndex < aStr.length && bIndex < bStr.length) { - let aChar = aStr.charCodeAt(aIndex); - let bChar = bStr.charCodeAt(bIndex); - - if (isDigit(aChar) && isDigit(bChar)) { - let aNum = 0; - - do { - ++aIndex; - aNum = aNum * 10 + aChar - DIGIT_0; - aChar = aStr.charCodeAt(aIndex); - } while (isDigit(aChar) && aNum > 0); - - let bNum = 0; - - do { - ++bIndex; - bNum = bNum * 10 + bChar - DIGIT_0; - bChar = bStr.charCodeAt(bIndex); - } while (isDigit(bChar) && bNum > 0); - - if (aNum < bNum) { - return -1; - } - - if (aNum > bNum) { - return 1; - } - } else { - if (aChar < bChar) { - return -1; - } - - if (aChar > bChar) { - return 1; - } - - ++aIndex; - ++bIndex; - } - } - - return aStr.length - bStr.length; - } - const DIGIT_0 = 48; - const DIGIT_9 = 57; - - function isDigit(code) { - return !isNaN(code) && DIGIT_0 <= code && code <= DIGIT_9; - } - - /** - * Given an invalid input string and a list of valid options, returns a filtered - * list of valid options sorted based on their similarity with the input. - */ - - function suggestionList$1(input, options) { - const optionsByDistance = Object.create(null); - const lexicalDistance = new LexicalDistance(input); - const threshold = Math.floor(input.length * 0.4) + 1; - - for (const option of options) { - const distance = lexicalDistance.measure(option, threshold); - - if (distance !== undefined) { - optionsByDistance[option] = distance; - } - } - - return Object.keys(optionsByDistance).sort((a, b) => { - const distanceDiff = optionsByDistance[a] - optionsByDistance[b]; - return distanceDiff !== 0 ? distanceDiff : naturalCompare(a, b); - }); - } - /** - * Computes the lexical distance between strings A and B. - * - * The "distance" between two strings is given by counting the minimum number - * of edits needed to transform string A into string B. An edit can be an - * insertion, deletion, or substitution of a single character, or a swap of two - * adjacent characters. - * - * Includes a custom alteration from Damerau-Levenshtein to treat case changes - * as a single edit which helps identify mis-cased values with an edit distance - * of 1. - * - * This distance can be useful for detecting typos in input or sorting - */ - - class LexicalDistance { - constructor(input) { - this._input = input; - this._inputLowerCase = input.toLowerCase(); - this._inputArray = stringToArray(this._inputLowerCase); - this._rows = [ - new Array(input.length + 1).fill(0), - new Array(input.length + 1).fill(0), - new Array(input.length + 1).fill(0), - ]; - } - - measure(option, threshold) { - if (this._input === option) { - return 0; - } - - const optionLowerCase = option.toLowerCase(); // Any case change counts as a single edit - - if (this._inputLowerCase === optionLowerCase) { - return 1; - } - - let a = stringToArray(optionLowerCase); - let b = this._inputArray; - - if (a.length < b.length) { - const tmp = a; - a = b; - b = tmp; - } - - const aLength = a.length; - const bLength = b.length; - - if (aLength - bLength > threshold) { - return undefined; - } - - const rows = this._rows; - - for (let j = 0; j <= bLength; j++) { - rows[0][j] = j; - } - - for (let i = 1; i <= aLength; i++) { - const upRow = rows[(i - 1) % 3]; - const currentRow = rows[i % 3]; - let smallestCell = (currentRow[0] = i); - - for (let j = 1; j <= bLength; j++) { - const cost = a[i - 1] === b[j - 1] ? 0 : 1; - let currentCell = Math.min( - upRow[j] + 1, // delete - currentRow[j - 1] + 1, // insert - upRow[j - 1] + cost, // substitute - ); - - if (i > 1 && j > 1 && a[i - 1] === b[j - 2] && a[i - 2] === b[j - 1]) { - // transposition - const doubleDiagonalCell = rows[(i - 2) % 3][j - 2]; - currentCell = Math.min(currentCell, doubleDiagonalCell + 1); - } - - if (currentCell < smallestCell) { - smallestCell = currentCell; - } - - currentRow[j] = currentCell; - } // Early exit, since distance can't go smaller than smallest element of the previous row. - - if (smallestCell > threshold) { - return undefined; - } - } - - const distance = rows[aLength % 3][bLength]; - return distance <= threshold ? distance : undefined; - } - } - - function stringToArray(str) { - const strLength = str.length; - const array = new Array(strLength); - - for (let i = 0; i < strLength; ++i) { - array[i] = str.charCodeAt(i); - } - - return array; - } - - function toObjMap(obj) { - if (obj == null) { - return Object.create(null); - } - - if (Object.getPrototypeOf(obj) === null) { - return obj; - } - - const map = Object.create(null); - - for (const [key, value] of Object.entries(obj)) { - map[key] = value; - } - - return map; - } - - /** - * Prints a string as a GraphQL StringValue literal. Replaces control characters - * and excluded characters (" U+0022 and \\ U+005C) with escape sequences. - */ - function printString(str) { - return `"${str.replace(escapedRegExp, escapedReplacer)}"`; - } // eslint-disable-next-line no-control-regex - - const escapedRegExp = /[\x00-\x1f\x22\x5c\x7f-\x9f]/g; - - function escapedReplacer(str) { - return escapeSequences[str.charCodeAt(0)]; - } // prettier-ignore - - const escapeSequences = [ - '\\u0000', - '\\u0001', - '\\u0002', - '\\u0003', - '\\u0004', - '\\u0005', - '\\u0006', - '\\u0007', - '\\b', - '\\t', - '\\n', - '\\u000B', - '\\f', - '\\r', - '\\u000E', - '\\u000F', - '\\u0010', - '\\u0011', - '\\u0012', - '\\u0013', - '\\u0014', - '\\u0015', - '\\u0016', - '\\u0017', - '\\u0018', - '\\u0019', - '\\u001A', - '\\u001B', - '\\u001C', - '\\u001D', - '\\u001E', - '\\u001F', - '', - '', - '\\"', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', // 2F - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', // 3F - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', // 4F - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '\\\\', - '', - '', - '', // 5F - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', // 6F - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '\\u007F', - '\\u0080', - '\\u0081', - '\\u0082', - '\\u0083', - '\\u0084', - '\\u0085', - '\\u0086', - '\\u0087', - '\\u0088', - '\\u0089', - '\\u008A', - '\\u008B', - '\\u008C', - '\\u008D', - '\\u008E', - '\\u008F', - '\\u0090', - '\\u0091', - '\\u0092', - '\\u0093', - '\\u0094', - '\\u0095', - '\\u0096', - '\\u0097', - '\\u0098', - '\\u0099', - '\\u009A', - '\\u009B', - '\\u009C', - '\\u009D', - '\\u009E', - '\\u009F', - ]; - - /** - * A visitor is provided to visit, it contains the collection of - * relevant functions to be called during the visitor's traversal. - */ - - const BREAK = Object.freeze({}); - /** - * visit() will walk through an AST using a depth-first traversal, calling - * the visitor's enter function at each node in the traversal, and calling the - * leave function after visiting that node and all of its child nodes. - * - * By returning different values from the enter and leave functions, the - * behavior of the visitor can be altered, including skipping over a sub-tree of - * the AST (by returning false), editing the AST by returning a value or null - * to remove the value, or to stop the whole traversal by returning BREAK. - * - * When using visit() to edit an AST, the original AST will not be modified, and - * a new version of the AST with the changes applied will be returned from the - * visit function. - * - * ```ts - * const editedAST = visit(ast, { - * enter(node, key, parent, path, ancestors) { - * // @return - * // undefined: no action - * // false: skip visiting this node - * // visitor.BREAK: stop visiting altogether - * // null: delete this node - * // any value: replace this node with the returned value - * }, - * leave(node, key, parent, path, ancestors) { - * // @return - * // undefined: no action - * // false: no action - * // visitor.BREAK: stop visiting altogether - * // null: delete this node - * // any value: replace this node with the returned value - * } - * }); - * ``` - * - * Alternatively to providing enter() and leave() functions, a visitor can - * instead provide functions named the same as the kinds of AST nodes, or - * enter/leave visitors at a named key, leading to three permutations of the - * visitor API: - * - * 1) Named visitors triggered when entering a node of a specific kind. - * - * ```ts - * visit(ast, { - * Kind(node) { - * // enter the "Kind" node - * } - * }) - * ``` - * - * 2) Named visitors that trigger upon entering and leaving a node of a specific kind. - * - * ```ts - * visit(ast, { - * Kind: { - * enter(node) { - * // enter the "Kind" node - * } - * leave(node) { - * // leave the "Kind" node - * } - * } - * }) - * ``` - * - * 3) Generic visitors that trigger upon entering and leaving any node. - * - * ```ts - * visit(ast, { - * enter(node) { - * // enter any node - * }, - * leave(node) { - * // leave any node - * } - * }) - * ``` - */ - - function visit(root, visitor, visitorKeys = QueryDocumentKeys) { - const enterLeaveMap = new Map(); - - for (const kind of Object.values(Kind)) { - enterLeaveMap.set(kind, getEnterLeaveForKind(visitor, kind)); - } - /* eslint-disable no-undef-init */ - - let stack = undefined; - let inArray = Array.isArray(root); - let keys = [root]; - let index = -1; - let edits = []; - let node = root; - let key = undefined; - let parent = undefined; - const path = []; - const ancestors = []; - /* eslint-enable no-undef-init */ - - do { - index++; - const isLeaving = index === keys.length; - const isEdited = isLeaving && edits.length !== 0; - - if (isLeaving) { - key = ancestors.length === 0 ? undefined : path[path.length - 1]; - node = parent; - parent = ancestors.pop(); - - if (isEdited) { - if (inArray) { - node = node.slice(); - let editOffset = 0; - - for (const [editKey, editValue] of edits) { - const arrayKey = editKey - editOffset; - - if (editValue === null) { - node.splice(arrayKey, 1); - editOffset++; - } else { - node[arrayKey] = editValue; - } - } - } else { - node = Object.defineProperties( - {}, - Object.getOwnPropertyDescriptors(node), - ); - - for (const [editKey, editValue] of edits) { - node[editKey] = editValue; - } - } - } - - index = stack.index; - keys = stack.keys; - edits = stack.edits; - inArray = stack.inArray; - stack = stack.prev; - } else if (parent) { - key = inArray ? index : keys[index]; - node = parent[key]; - - if (node === null || node === undefined) { - continue; - } - - path.push(key); - } - - let result; - - if (!Array.isArray(node)) { - var _enterLeaveMap$get, _enterLeaveMap$get2; - - isNode(node) || devAssert(false, `Invalid AST Node: ${inspect$2(node)}.`); - const visitFn = isLeaving - ? (_enterLeaveMap$get = enterLeaveMap.get(node.kind)) === null || - _enterLeaveMap$get === void 0 - ? void 0 - : _enterLeaveMap$get.leave - : (_enterLeaveMap$get2 = enterLeaveMap.get(node.kind)) === null || - _enterLeaveMap$get2 === void 0 - ? void 0 - : _enterLeaveMap$get2.enter; - result = - visitFn === null || visitFn === void 0 - ? void 0 - : visitFn.call(visitor, node, key, parent, path, ancestors); - - if (result === BREAK) { - break; - } - - if (result === false) { - if (!isLeaving) { - path.pop(); - continue; - } - } else if (result !== undefined) { - edits.push([key, result]); - - if (!isLeaving) { - if (isNode(result)) { - node = result; - } else { - path.pop(); - continue; - } - } - } - } - - if (result === undefined && isEdited) { - edits.push([key, node]); - } - - if (isLeaving) { - path.pop(); - } else { - var _node$kind; - - stack = { - inArray, - index, - keys, - edits, - prev: stack, - }; - inArray = Array.isArray(node); - keys = inArray - ? node - : (_node$kind = visitorKeys[node.kind]) !== null && - _node$kind !== void 0 - ? _node$kind - : []; - index = -1; - edits = []; - - if (parent) { - ancestors.push(parent); - } - - parent = node; - } - } while (stack !== undefined); - - if (edits.length !== 0) { - // New root - return edits[edits.length - 1][1]; - } - - return root; - } - /** - * Creates a new visitor instance which delegates to many visitors to run in - * parallel. Each visitor will be visited for each node before moving on. - * - * If a prior visitor edits a node, no following visitors will see that node. - */ - - function visitInParallel(visitors) { - const skipping = new Array(visitors.length).fill(null); - const mergedVisitor = Object.create(null); - - for (const kind of Object.values(Kind)) { - let hasVisitor = false; - const enterList = new Array(visitors.length).fill(undefined); - const leaveList = new Array(visitors.length).fill(undefined); - - for (let i = 0; i < visitors.length; ++i) { - const { enter, leave } = getEnterLeaveForKind(visitors[i], kind); - hasVisitor || (hasVisitor = enter != null || leave != null); - enterList[i] = enter; - leaveList[i] = leave; - } - - if (!hasVisitor) { - continue; - } - - const mergedEnterLeave = { - enter(...args) { - const node = args[0]; - - for (let i = 0; i < visitors.length; i++) { - if (skipping[i] === null) { - var _enterList$i; - - const result = - (_enterList$i = enterList[i]) === null || _enterList$i === void 0 - ? void 0 - : _enterList$i.apply(visitors[i], args); - - if (result === false) { - skipping[i] = node; - } else if (result === BREAK) { - skipping[i] = BREAK; - } else if (result !== undefined) { - return result; - } - } - } - }, - - leave(...args) { - const node = args[0]; - - for (let i = 0; i < visitors.length; i++) { - if (skipping[i] === null) { - var _leaveList$i; - - const result = - (_leaveList$i = leaveList[i]) === null || _leaveList$i === void 0 - ? void 0 - : _leaveList$i.apply(visitors[i], args); - - if (result === BREAK) { - skipping[i] = BREAK; - } else if (result !== undefined && result !== false) { - return result; - } - } else if (skipping[i] === node) { - skipping[i] = null; - } - } - }, - }; - mergedVisitor[kind] = mergedEnterLeave; - } - - return mergedVisitor; - } - /** - * Given a visitor instance and a node kind, return EnterLeaveVisitor for that kind. - */ - - function getEnterLeaveForKind(visitor, kind) { - const kindVisitor = visitor[kind]; - - if (typeof kindVisitor === 'object') { - // { Kind: { enter() {}, leave() {} } } - return kindVisitor; - } else if (typeof kindVisitor === 'function') { - // { Kind() {} } - return { - enter: kindVisitor, - leave: undefined, - }; - } // { enter() {}, leave() {} } - - return { - enter: visitor.enter, - leave: visitor.leave, - }; - } - /** - * Given a visitor instance, if it is leaving or not, and a node kind, return - * the function the visitor runtime should call. - * - * @deprecated Please use `getEnterLeaveForKind` instead. Will be removed in v17 - */ - - /* c8 ignore next 8 */ - - function getVisitFn(visitor, kind, isLeaving) { - const { enter, leave } = getEnterLeaveForKind(visitor, kind); - return isLeaving ? leave : enter; - } - - /** - * Converts an AST into a string, using one set of reasonable - * formatting rules. - */ - - function print$1(ast) { - return visit(ast, printDocASTReducer); - } - const MAX_LINE_LENGTH = 80; - const printDocASTReducer = { - Name: { - leave: (node) => node.value, - }, - Variable: { - leave: (node) => '$' + node.name, - }, - // Document - Document: { - leave: (node) => join$1(node.definitions, '\n\n'), - }, - OperationDefinition: { - leave(node) { - const varDefs = wrap('(', join$1(node.variableDefinitions, ', '), ')'); - const prefix = join$1( - [ - node.operation, - join$1([node.name, varDefs]), - join$1(node.directives, ' '), - ], - ' ', - ); // Anonymous queries with no directives or variable definitions can use - // the query short form. - - return (prefix === 'query' ? '' : prefix + ' ') + node.selectionSet; - }, - }, - VariableDefinition: { - leave: ({ variable, type, defaultValue, directives }) => - variable + - ': ' + - type + - wrap(' = ', defaultValue) + - wrap(' ', join$1(directives, ' ')), - }, - SelectionSet: { - leave: ({ selections }) => block(selections), - }, - Field: { - leave({ alias, name, arguments: args, directives, selectionSet }) { - const prefix = wrap('', alias, ': ') + name; - let argsLine = prefix + wrap('(', join$1(args, ', '), ')'); - - if (argsLine.length > MAX_LINE_LENGTH) { - argsLine = prefix + wrap('(\n', indent(join$1(args, '\n')), '\n)'); - } - - return join$1([argsLine, join$1(directives, ' '), selectionSet], ' '); - }, - }, - Argument: { - leave: ({ name, value }) => name + ': ' + value, - }, - // Fragments - FragmentSpread: { - leave: ({ name, directives }) => - '...' + name + wrap(' ', join$1(directives, ' ')), - }, - InlineFragment: { - leave: ({ typeCondition, directives, selectionSet }) => - join$1( - [ - '...', - wrap('on ', typeCondition), - join$1(directives, ' '), - selectionSet, - ], - ' ', - ), - }, - FragmentDefinition: { - leave: ( - { name, typeCondition, variableDefinitions, directives, selectionSet }, // Note: fragment variable definitions are experimental and may be changed - ) => - // or removed in the future. - `fragment ${name}${wrap('(', join$1(variableDefinitions, ', '), ')')} ` + - `on ${typeCondition} ${wrap('', join$1(directives, ' '), ' ')}` + - selectionSet, - }, - // Value - IntValue: { - leave: ({ value }) => value, - }, - FloatValue: { - leave: ({ value }) => value, - }, - StringValue: { - leave: ({ value, block: isBlockString }) => - isBlockString ? printBlockString(value) : printString(value), - }, - BooleanValue: { - leave: ({ value }) => (value ? 'true' : 'false'), - }, - NullValue: { - leave: () => 'null', - }, - EnumValue: { - leave: ({ value }) => value, - }, - ListValue: { - leave: ({ values }) => '[' + join$1(values, ', ') + ']', - }, - ObjectValue: { - leave: ({ fields }) => '{' + join$1(fields, ', ') + '}', - }, - ObjectField: { - leave: ({ name, value }) => name + ': ' + value, - }, - // Directive - Directive: { - leave: ({ name, arguments: args }) => - '@' + name + wrap('(', join$1(args, ', '), ')'), - }, - // Type - NamedType: { - leave: ({ name }) => name, - }, - ListType: { - leave: ({ type }) => '[' + type + ']', - }, - NonNullType: { - leave: ({ type }) => type + '!', - }, - // Type System Definitions - SchemaDefinition: { - leave: ({ description, directives, operationTypes }) => - wrap('', description, '\n') + - join$1(['schema', join$1(directives, ' '), block(operationTypes)], ' '), - }, - OperationTypeDefinition: { - leave: ({ operation, type }) => operation + ': ' + type, - }, - ScalarTypeDefinition: { - leave: ({ description, name, directives }) => - wrap('', description, '\n') + - join$1(['scalar', name, join$1(directives, ' ')], ' '), - }, - ObjectTypeDefinition: { - leave: ({ description, name, interfaces, directives, fields }) => - wrap('', description, '\n') + - join$1( - [ - 'type', - name, - wrap('implements ', join$1(interfaces, ' & ')), - join$1(directives, ' '), - block(fields), - ], - ' ', - ), - }, - FieldDefinition: { - leave: ({ description, name, arguments: args, type, directives }) => - wrap('', description, '\n') + - name + - (hasMultilineItems(args) - ? wrap('(\n', indent(join$1(args, '\n')), '\n)') - : wrap('(', join$1(args, ', '), ')')) + - ': ' + - type + - wrap(' ', join$1(directives, ' ')), - }, - InputValueDefinition: { - leave: ({ description, name, type, defaultValue, directives }) => - wrap('', description, '\n') + - join$1( - [name + ': ' + type, wrap('= ', defaultValue), join$1(directives, ' ')], - ' ', - ), - }, - InterfaceTypeDefinition: { - leave: ({ description, name, interfaces, directives, fields }) => - wrap('', description, '\n') + - join$1( - [ - 'interface', - name, - wrap('implements ', join$1(interfaces, ' & ')), - join$1(directives, ' '), - block(fields), - ], - ' ', - ), - }, - UnionTypeDefinition: { - leave: ({ description, name, directives, types }) => - wrap('', description, '\n') + - join$1( - ['union', name, join$1(directives, ' '), wrap('= ', join$1(types, ' | '))], - ' ', - ), - }, - EnumTypeDefinition: { - leave: ({ description, name, directives, values }) => - wrap('', description, '\n') + - join$1(['enum', name, join$1(directives, ' '), block(values)], ' '), - }, - EnumValueDefinition: { - leave: ({ description, name, directives }) => - wrap('', description, '\n') + join$1([name, join$1(directives, ' ')], ' '), - }, - InputObjectTypeDefinition: { - leave: ({ description, name, directives, fields }) => - wrap('', description, '\n') + - join$1(['input', name, join$1(directives, ' '), block(fields)], ' '), - }, - DirectiveDefinition: { - leave: ({ description, name, arguments: args, repeatable, locations }) => - wrap('', description, '\n') + - 'directive @' + - name + - (hasMultilineItems(args) - ? wrap('(\n', indent(join$1(args, '\n')), '\n)') - : wrap('(', join$1(args, ', '), ')')) + - (repeatable ? ' repeatable' : '') + - ' on ' + - join$1(locations, ' | '), - }, - SchemaExtension: { - leave: ({ directives, operationTypes }) => - join$1( - ['extend schema', join$1(directives, ' '), block(operationTypes)], - ' ', - ), - }, - ScalarTypeExtension: { - leave: ({ name, directives }) => - join$1(['extend scalar', name, join$1(directives, ' ')], ' '), - }, - ObjectTypeExtension: { - leave: ({ name, interfaces, directives, fields }) => - join$1( - [ - 'extend type', - name, - wrap('implements ', join$1(interfaces, ' & ')), - join$1(directives, ' '), - block(fields), - ], - ' ', - ), - }, - InterfaceTypeExtension: { - leave: ({ name, interfaces, directives, fields }) => - join$1( - [ - 'extend interface', - name, - wrap('implements ', join$1(interfaces, ' & ')), - join$1(directives, ' '), - block(fields), - ], - ' ', - ), - }, - UnionTypeExtension: { - leave: ({ name, directives, types }) => - join$1( - [ - 'extend union', - name, - join$1(directives, ' '), - wrap('= ', join$1(types, ' | ')), - ], - ' ', - ), - }, - EnumTypeExtension: { - leave: ({ name, directives, values }) => - join$1(['extend enum', name, join$1(directives, ' '), block(values)], ' '), - }, - InputObjectTypeExtension: { - leave: ({ name, directives, fields }) => - join$1(['extend input', name, join$1(directives, ' '), block(fields)], ' '), - }, - }; - /** - * Given maybeArray, print an empty string if it is null or empty, otherwise - * print all items together separated by separator if provided - */ - - function join$1(maybeArray, separator = '') { - var _maybeArray$filter$jo; - - return (_maybeArray$filter$jo = - maybeArray === null || maybeArray === void 0 - ? void 0 - : maybeArray.filter((x) => x).join(separator)) !== null && - _maybeArray$filter$jo !== void 0 - ? _maybeArray$filter$jo - : ''; - } - /** - * Given array, print each item on its own line, wrapped in an indented `{ }` block. - */ - - function block(array) { - return wrap('{\n', indent(join$1(array, '\n')), '\n}'); - } - /** - * If maybeString is not null or empty, then wrap with start and end, otherwise print an empty string. - */ - - function wrap(start, maybeString, end = '') { - return maybeString != null && maybeString !== '' - ? start + maybeString + end - : ''; - } - - function indent(str) { - return wrap(' ', str.replace(/\n/g, '\n ')); - } - - function hasMultilineItems(maybeArray) { - var _maybeArray$some; - - // FIXME: https://github.com/graphql/graphql-js/issues/2203 - - /* c8 ignore next */ - return (_maybeArray$some = - maybeArray === null || maybeArray === void 0 - ? void 0 - : maybeArray.some((str) => str.includes('\n'))) !== null && - _maybeArray$some !== void 0 - ? _maybeArray$some - : false; - } - - /** - * Produces a JavaScript value given a GraphQL Value AST. - * - * Unlike `valueFromAST()`, no type is provided. The resulting JavaScript value - * will reflect the provided GraphQL value AST. - * - * | GraphQL Value | JavaScript Value | - * | -------------------- | ---------------- | - * | Input Object | Object | - * | List | Array | - * | Boolean | Boolean | - * | String / Enum | String | - * | Int / Float | Number | - * | Null | null | - * - */ - - function valueFromASTUntyped$1(valueNode, variables) { - switch (valueNode.kind) { - case Kind.NULL: - return null; - - case Kind.INT: - return parseInt(valueNode.value, 10); - - case Kind.FLOAT: - return parseFloat(valueNode.value); - - case Kind.STRING: - case Kind.ENUM: - case Kind.BOOLEAN: - return valueNode.value; - - case Kind.LIST: - return valueNode.values.map((node) => - valueFromASTUntyped$1(node, variables), - ); - - case Kind.OBJECT: - return keyValMap( - valueNode.fields, - (field) => field.name.value, - (field) => valueFromASTUntyped$1(field.value, variables), - ); - - case Kind.VARIABLE: - return variables === null || variables === void 0 - ? void 0 - : variables[valueNode.name.value]; - } - } - - /** - * Upholds the spec rules about naming. - */ - - function assertName(name) { - name != null || devAssert(false, 'Must provide name.'); - typeof name === 'string' || devAssert(false, 'Expected name to be a string.'); - - if (name.length === 0) { - throw new GraphQLError('Expected name to be a non-empty string.'); - } - - for (let i = 1; i < name.length; ++i) { - if (!isNameContinue(name.charCodeAt(i))) { - throw new GraphQLError( - `Names must only contain [_a-zA-Z0-9] but "${name}" does not.`, - ); - } - } - - if (!isNameStart(name.charCodeAt(0))) { - throw new GraphQLError( - `Names must start with [_a-zA-Z] but "${name}" does not.`, - ); - } - - return name; - } - /** - * Upholds the spec rules about naming enum values. - * - * @internal - */ - - function assertEnumValueName(name) { - if (name === 'true' || name === 'false' || name === 'null') { - throw new GraphQLError(`Enum values cannot be named: ${name}`); - } - - return assertName(name); - } - - function isType(type) { - return ( - isScalarType(type) || - isObjectType(type) || - isInterfaceType(type) || - isUnionType(type) || - isEnumType(type) || - isInputObjectType(type) || - isListType(type) || - isNonNullType(type) - ); - } - function assertType(type) { - if (!isType(type)) { - throw new Error(`Expected ${inspect$2(type)} to be a GraphQL type.`); - } - - return type; - } - /** - * There are predicates for each kind of GraphQL type. - */ - - function isScalarType(type) { - return instanceOf(type, GraphQLScalarType); - } - function assertScalarType(type) { - if (!isScalarType(type)) { - throw new Error(`Expected ${inspect$2(type)} to be a GraphQL Scalar type.`); - } - - return type; - } - function isObjectType(type) { - return instanceOf(type, GraphQLObjectType); - } - function assertObjectType(type) { - if (!isObjectType(type)) { - throw new Error(`Expected ${inspect$2(type)} to be a GraphQL Object type.`); - } - - return type; - } - function isInterfaceType(type) { - return instanceOf(type, GraphQLInterfaceType); - } - function assertInterfaceType(type) { - if (!isInterfaceType(type)) { - throw new Error( - `Expected ${inspect$2(type)} to be a GraphQL Interface type.`, - ); - } - - return type; - } - function isUnionType(type) { - return instanceOf(type, GraphQLUnionType); - } - function assertUnionType(type) { - if (!isUnionType(type)) { - throw new Error(`Expected ${inspect$2(type)} to be a GraphQL Union type.`); - } - - return type; - } - function isEnumType(type) { - return instanceOf(type, GraphQLEnumType); - } - function assertEnumType(type) { - if (!isEnumType(type)) { - throw new Error(`Expected ${inspect$2(type)} to be a GraphQL Enum type.`); - } - - return type; - } - function isInputObjectType(type) { - return instanceOf(type, GraphQLInputObjectType); - } - function assertInputObjectType(type) { - if (!isInputObjectType(type)) { - throw new Error( - `Expected ${inspect$2(type)} to be a GraphQL Input Object type.`, - ); - } - - return type; - } - function isListType(type) { - return instanceOf(type, GraphQLList); - } - function assertListType(type) { - if (!isListType(type)) { - throw new Error(`Expected ${inspect$2(type)} to be a GraphQL List type.`); - } - - return type; - } - function isNonNullType(type) { - return instanceOf(type, GraphQLNonNull); - } - function assertNonNullType(type) { - if (!isNonNullType(type)) { - throw new Error(`Expected ${inspect$2(type)} to be a GraphQL Non-Null type.`); - } - - return type; - } - /** - * These types may be used as input types for arguments and directives. - */ - - function isInputType(type) { - return ( - isScalarType(type) || - isEnumType(type) || - isInputObjectType(type) || - (isWrappingType(type) && isInputType(type.ofType)) - ); - } - function assertInputType(type) { - if (!isInputType(type)) { - throw new Error(`Expected ${inspect$2(type)} to be a GraphQL input type.`); - } - - return type; - } - /** - * These types may be used as output types as the result of fields. - */ - - function isOutputType(type) { - return ( - isScalarType(type) || - isObjectType(type) || - isInterfaceType(type) || - isUnionType(type) || - isEnumType(type) || - (isWrappingType(type) && isOutputType(type.ofType)) - ); - } - function assertOutputType(type) { - if (!isOutputType(type)) { - throw new Error(`Expected ${inspect$2(type)} to be a GraphQL output type.`); - } - - return type; - } - /** - * These types may describe types which may be leaf values. - */ - - function isLeafType(type) { - return isScalarType(type) || isEnumType(type); - } - function assertLeafType(type) { - if (!isLeafType(type)) { - throw new Error(`Expected ${inspect$2(type)} to be a GraphQL leaf type.`); - } - - return type; - } - /** - * These types may describe the parent context of a selection set. - */ - - function isCompositeType(type) { - return isObjectType(type) || isInterfaceType(type) || isUnionType(type); - } - function assertCompositeType(type) { - if (!isCompositeType(type)) { - throw new Error( - `Expected ${inspect$2(type)} to be a GraphQL composite type.`, - ); - } - - return type; - } - /** - * These types may describe the parent context of a selection set. - */ - - function isAbstractType(type) { - return isInterfaceType(type) || isUnionType(type); - } - function assertAbstractType(type) { - if (!isAbstractType(type)) { - throw new Error(`Expected ${inspect$2(type)} to be a GraphQL abstract type.`); - } - - return type; - } - /** - * List Type Wrapper - * - * A list is a wrapping type which points to another type. - * Lists are often created within the context of defining the fields of - * an object type. - * - * Example: - * - * ```ts - * const PersonType = new GraphQLObjectType({ - * name: 'Person', - * fields: () => ({ - * parents: { type: new GraphQLList(PersonType) }, - * children: { type: new GraphQLList(PersonType) }, - * }) - * }) - * ``` - */ - - class GraphQLList { - constructor(ofType) { - isType(ofType) || - devAssert(false, `Expected ${inspect$2(ofType)} to be a GraphQL type.`); - this.ofType = ofType; - } - - get [Symbol.toStringTag]() { - return 'GraphQLList'; - } - - toString() { - return '[' + String(this.ofType) + ']'; - } - - toJSON() { - return this.toString(); - } - } - /** - * Non-Null Type Wrapper - * - * A non-null is a wrapping type which points to another type. - * Non-null types enforce that their values are never null and can ensure - * an error is raised if this ever occurs during a request. It is useful for - * fields which you can make a strong guarantee on non-nullability, for example - * usually the id field of a database row will never be null. - * - * Example: - * - * ```ts - * const RowType = new GraphQLObjectType({ - * name: 'Row', - * fields: () => ({ - * id: { type: new GraphQLNonNull(GraphQLString) }, - * }) - * }) - * ``` - * Note: the enforcement of non-nullability occurs within the executor. - */ - - class GraphQLNonNull { - constructor(ofType) { - isNullableType(ofType) || - devAssert( - false, - `Expected ${inspect$2(ofType)} to be a GraphQL nullable type.`, - ); - this.ofType = ofType; - } - - get [Symbol.toStringTag]() { - return 'GraphQLNonNull'; - } - - toString() { - return String(this.ofType) + '!'; - } - - toJSON() { - return this.toString(); - } - } - /** - * These types wrap and modify other types - */ - - function isWrappingType(type) { - return isListType(type) || isNonNullType(type); - } - function assertWrappingType(type) { - if (!isWrappingType(type)) { - throw new Error(`Expected ${inspect$2(type)} to be a GraphQL wrapping type.`); - } - - return type; - } - /** - * These types can all accept null as a value. - */ - - function isNullableType(type) { - return isType(type) && !isNonNullType(type); - } - function assertNullableType(type) { - if (!isNullableType(type)) { - throw new Error(`Expected ${inspect$2(type)} to be a GraphQL nullable type.`); - } - - return type; - } - function getNullableType(type) { - if (type) { - return isNonNullType(type) ? type.ofType : type; - } - } - /** - * These named types do not include modifiers like List or NonNull. - */ - - function isNamedType(type) { - return ( - isScalarType(type) || - isObjectType(type) || - isInterfaceType(type) || - isUnionType(type) || - isEnumType(type) || - isInputObjectType(type) - ); - } - function assertNamedType(type) { - if (!isNamedType(type)) { - throw new Error(`Expected ${inspect$2(type)} to be a GraphQL named type.`); - } - - return type; - } - function getNamedType(type) { - if (type) { - let unwrappedType = type; - - while (isWrappingType(unwrappedType)) { - unwrappedType = unwrappedType.ofType; - } - - return unwrappedType; - } - } - /** - * Used while defining GraphQL types to allow for circular references in - * otherwise immutable type definitions. - */ - - function resolveReadonlyArrayThunk(thunk) { - return typeof thunk === 'function' ? thunk() : thunk; - } - function resolveObjMapThunk(thunk) { - return typeof thunk === 'function' ? thunk() : thunk; - } - /** - * Custom extensions - * - * @remarks - * Use a unique identifier name for your extension, for example the name of - * your library or project. Do not use a shortened identifier as this increases - * the risk of conflicts. We recommend you add at most one extension field, - * an object which can contain all the values you need. - */ - - /** - * Scalar Type Definition - * - * The leaf values of any request and input values to arguments are - * Scalars (or Enums) and are defined with a name and a series of functions - * used to parse input from ast or variables and to ensure validity. - * - * If a type's serialize function does not return a value (i.e. it returns - * `undefined`) then an error will be raised and a `null` value will be returned - * in the response. If the serialize function returns `null`, then no error will - * be included in the response. - * - * Example: - * - * ```ts - * const OddType = new GraphQLScalarType({ - * name: 'Odd', - * serialize(value) { - * if (value % 2 === 1) { - * return value; - * } - * } - * }); - * ``` - */ - class GraphQLScalarType { - constructor(config) { - var _config$parseValue, - _config$serialize, - _config$parseLiteral, - _config$extensionASTN; - - const parseValue = - (_config$parseValue = config.parseValue) !== null && - _config$parseValue !== void 0 - ? _config$parseValue - : identityFunc; - this.name = assertName(config.name); - this.description = config.description; - this.specifiedByURL = config.specifiedByURL; - this.serialize = - (_config$serialize = config.serialize) !== null && - _config$serialize !== void 0 - ? _config$serialize - : identityFunc; - this.parseValue = parseValue; - this.parseLiteral = - (_config$parseLiteral = config.parseLiteral) !== null && - _config$parseLiteral !== void 0 - ? _config$parseLiteral - : (node, variables) => parseValue(valueFromASTUntyped$1(node, variables)); - this.extensions = toObjMap(config.extensions); - this.astNode = config.astNode; - this.extensionASTNodes = - (_config$extensionASTN = config.extensionASTNodes) !== null && - _config$extensionASTN !== void 0 - ? _config$extensionASTN - : []; - config.specifiedByURL == null || - typeof config.specifiedByURL === 'string' || - devAssert( - false, - `${this.name} must provide "specifiedByURL" as a string, ` + - `but got: ${inspect$2(config.specifiedByURL)}.`, - ); - config.serialize == null || - typeof config.serialize === 'function' || - devAssert( - false, - `${this.name} must provide "serialize" function. If this custom Scalar is also used as an input type, ensure "parseValue" and "parseLiteral" functions are also provided.`, - ); - - if (config.parseLiteral) { - (typeof config.parseValue === 'function' && - typeof config.parseLiteral === 'function') || - devAssert( - false, - `${this.name} must provide both "parseValue" and "parseLiteral" functions.`, - ); - } - } - - get [Symbol.toStringTag]() { - return 'GraphQLScalarType'; - } - - toConfig() { - return { - name: this.name, - description: this.description, - specifiedByURL: this.specifiedByURL, - serialize: this.serialize, - parseValue: this.parseValue, - parseLiteral: this.parseLiteral, - extensions: this.extensions, - astNode: this.astNode, - extensionASTNodes: this.extensionASTNodes, - }; - } - - toString() { - return this.name; - } - - toJSON() { - return this.toString(); - } - } - - /** - * Object Type Definition - * - * Almost all of the GraphQL types you define will be object types. Object types - * have a name, but most importantly describe their fields. - * - * Example: - * - * ```ts - * const AddressType = new GraphQLObjectType({ - * name: 'Address', - * fields: { - * street: { type: GraphQLString }, - * number: { type: GraphQLInt }, - * formatted: { - * type: GraphQLString, - * resolve(obj) { - * return obj.number + ' ' + obj.street - * } - * } - * } - * }); - * ``` - * - * When two types need to refer to each other, or a type needs to refer to - * itself in a field, you can use a function expression (aka a closure or a - * thunk) to supply the fields lazily. - * - * Example: - * - * ```ts - * const PersonType = new GraphQLObjectType({ - * name: 'Person', - * fields: () => ({ - * name: { type: GraphQLString }, - * bestFriend: { type: PersonType }, - * }) - * }); - * ``` - */ - class GraphQLObjectType { - constructor(config) { - var _config$extensionASTN2; - - this.name = assertName(config.name); - this.description = config.description; - this.isTypeOf = config.isTypeOf; - this.extensions = toObjMap(config.extensions); - this.astNode = config.astNode; - this.extensionASTNodes = - (_config$extensionASTN2 = config.extensionASTNodes) !== null && - _config$extensionASTN2 !== void 0 - ? _config$extensionASTN2 - : []; - - this._fields = () => defineFieldMap(config); - - this._interfaces = () => defineInterfaces(config); - - config.isTypeOf == null || - typeof config.isTypeOf === 'function' || - devAssert( - false, - `${this.name} must provide "isTypeOf" as a function, ` + - `but got: ${inspect$2(config.isTypeOf)}.`, - ); - } - - get [Symbol.toStringTag]() { - return 'GraphQLObjectType'; - } - - getFields() { - if (typeof this._fields === 'function') { - this._fields = this._fields(); - } - - return this._fields; - } - - getInterfaces() { - if (typeof this._interfaces === 'function') { - this._interfaces = this._interfaces(); - } - - return this._interfaces; - } - - toConfig() { - return { - name: this.name, - description: this.description, - interfaces: this.getInterfaces(), - fields: fieldsToFieldsConfig(this.getFields()), - isTypeOf: this.isTypeOf, - extensions: this.extensions, - astNode: this.astNode, - extensionASTNodes: this.extensionASTNodes, - }; - } - - toString() { - return this.name; - } - - toJSON() { - return this.toString(); - } - } - - function defineInterfaces(config) { - var _config$interfaces; - - const interfaces = resolveReadonlyArrayThunk( - (_config$interfaces = config.interfaces) !== null && - _config$interfaces !== void 0 - ? _config$interfaces - : [], - ); - Array.isArray(interfaces) || - devAssert( - false, - `${config.name} interfaces must be an Array or a function which returns an Array.`, - ); - return interfaces; - } - - function defineFieldMap(config) { - const fieldMap = resolveObjMapThunk(config.fields); - isPlainObj(fieldMap) || - devAssert( - false, - `${config.name} fields must be an object with field names as keys or a function which returns such an object.`, - ); - return mapValue(fieldMap, (fieldConfig, fieldName) => { - var _fieldConfig$args; - - isPlainObj(fieldConfig) || - devAssert( - false, - `${config.name}.${fieldName} field config must be an object.`, - ); - fieldConfig.resolve == null || - typeof fieldConfig.resolve === 'function' || - devAssert( - false, - `${config.name}.${fieldName} field resolver must be a function if ` + - `provided, but got: ${inspect$2(fieldConfig.resolve)}.`, - ); - const argsConfig = - (_fieldConfig$args = fieldConfig.args) !== null && - _fieldConfig$args !== void 0 - ? _fieldConfig$args - : {}; - isPlainObj(argsConfig) || - devAssert( - false, - `${config.name}.${fieldName} args must be an object with argument names as keys.`, - ); - return { - name: assertName(fieldName), - description: fieldConfig.description, - type: fieldConfig.type, - args: defineArguments(argsConfig), - resolve: fieldConfig.resolve, - subscribe: fieldConfig.subscribe, - deprecationReason: fieldConfig.deprecationReason, - extensions: toObjMap(fieldConfig.extensions), - astNode: fieldConfig.astNode, - }; - }); - } - - function defineArguments(config) { - return Object.entries(config).map(([argName, argConfig]) => ({ - name: assertName(argName), - description: argConfig.description, - type: argConfig.type, - defaultValue: argConfig.defaultValue, - deprecationReason: argConfig.deprecationReason, - extensions: toObjMap(argConfig.extensions), - astNode: argConfig.astNode, - })); - } - - function isPlainObj(obj) { - return isObjectLike(obj) && !Array.isArray(obj); - } - - function fieldsToFieldsConfig(fields) { - return mapValue(fields, (field) => ({ - description: field.description, - type: field.type, - args: argsToArgsConfig(field.args), - resolve: field.resolve, - subscribe: field.subscribe, - deprecationReason: field.deprecationReason, - extensions: field.extensions, - astNode: field.astNode, - })); - } - /** - * @internal - */ - - function argsToArgsConfig(args) { - return keyValMap( - args, - (arg) => arg.name, - (arg) => ({ - description: arg.description, - type: arg.type, - defaultValue: arg.defaultValue, - deprecationReason: arg.deprecationReason, - extensions: arg.extensions, - astNode: arg.astNode, - }), - ); - } - function isRequiredArgument(arg) { - return isNonNullType(arg.type) && arg.defaultValue === undefined; - } - - /** - * Interface Type Definition - * - * When a field can return one of a heterogeneous set of types, a Interface type - * is used to describe what types are possible, what fields are in common across - * all types, as well as a function to determine which type is actually used - * when the field is resolved. - * - * Example: - * - * ```ts - * const EntityType = new GraphQLInterfaceType({ - * name: 'Entity', - * fields: { - * name: { type: GraphQLString } - * } - * }); - * ``` - */ - class GraphQLInterfaceType { - constructor(config) { - var _config$extensionASTN3; - - this.name = assertName(config.name); - this.description = config.description; - this.resolveType = config.resolveType; - this.extensions = toObjMap(config.extensions); - this.astNode = config.astNode; - this.extensionASTNodes = - (_config$extensionASTN3 = config.extensionASTNodes) !== null && - _config$extensionASTN3 !== void 0 - ? _config$extensionASTN3 - : []; - this._fields = defineFieldMap.bind(undefined, config); - this._interfaces = defineInterfaces.bind(undefined, config); - config.resolveType == null || - typeof config.resolveType === 'function' || - devAssert( - false, - `${this.name} must provide "resolveType" as a function, ` + - `but got: ${inspect$2(config.resolveType)}.`, - ); - } - - get [Symbol.toStringTag]() { - return 'GraphQLInterfaceType'; - } - - getFields() { - if (typeof this._fields === 'function') { - this._fields = this._fields(); - } - - return this._fields; - } - - getInterfaces() { - if (typeof this._interfaces === 'function') { - this._interfaces = this._interfaces(); - } - - return this._interfaces; - } - - toConfig() { - return { - name: this.name, - description: this.description, - interfaces: this.getInterfaces(), - fields: fieldsToFieldsConfig(this.getFields()), - resolveType: this.resolveType, - extensions: this.extensions, - astNode: this.astNode, - extensionASTNodes: this.extensionASTNodes, - }; - } - - toString() { - return this.name; - } - - toJSON() { - return this.toString(); - } - } - - /** - * Union Type Definition - * - * When a field can return one of a heterogeneous set of types, a Union type - * is used to describe what types are possible as well as providing a function - * to determine which type is actually used when the field is resolved. - * - * Example: - * - * ```ts - * const PetType = new GraphQLUnionType({ - * name: 'Pet', - * types: [ DogType, CatType ], - * resolveType(value) { - * if (value instanceof Dog) { - * return DogType; - * } - * if (value instanceof Cat) { - * return CatType; - * } - * } - * }); - * ``` - */ - class GraphQLUnionType { - constructor(config) { - var _config$extensionASTN4; - - this.name = assertName(config.name); - this.description = config.description; - this.resolveType = config.resolveType; - this.extensions = toObjMap(config.extensions); - this.astNode = config.astNode; - this.extensionASTNodes = - (_config$extensionASTN4 = config.extensionASTNodes) !== null && - _config$extensionASTN4 !== void 0 - ? _config$extensionASTN4 - : []; - this._types = defineTypes.bind(undefined, config); - config.resolveType == null || - typeof config.resolveType === 'function' || - devAssert( - false, - `${this.name} must provide "resolveType" as a function, ` + - `but got: ${inspect$2(config.resolveType)}.`, - ); - } - - get [Symbol.toStringTag]() { - return 'GraphQLUnionType'; - } - - getTypes() { - if (typeof this._types === 'function') { - this._types = this._types(); - } - - return this._types; - } - - toConfig() { - return { - name: this.name, - description: this.description, - types: this.getTypes(), - resolveType: this.resolveType, - extensions: this.extensions, - astNode: this.astNode, - extensionASTNodes: this.extensionASTNodes, - }; - } - - toString() { - return this.name; - } - - toJSON() { - return this.toString(); - } - } - - function defineTypes(config) { - const types = resolveReadonlyArrayThunk(config.types); - Array.isArray(types) || - devAssert( - false, - `Must provide Array of types or a function which returns such an array for Union ${config.name}.`, - ); - return types; - } - - /** - * Enum Type Definition - * - * Some leaf values of requests and input values are Enums. GraphQL serializes - * Enum values as strings, however internally Enums can be represented by any - * kind of type, often integers. - * - * Example: - * - * ```ts - * const RGBType = new GraphQLEnumType({ - * name: 'RGB', - * values: { - * RED: { value: 0 }, - * GREEN: { value: 1 }, - * BLUE: { value: 2 } - * } - * }); - * ``` - * - * Note: If a value is not provided in a definition, the name of the enum value - * will be used as its internal value. - */ - class GraphQLEnumType { - /* */ - constructor(config) { - var _config$extensionASTN5; - - this.name = assertName(config.name); - this.description = config.description; - this.extensions = toObjMap(config.extensions); - this.astNode = config.astNode; - this.extensionASTNodes = - (_config$extensionASTN5 = config.extensionASTNodes) !== null && - _config$extensionASTN5 !== void 0 - ? _config$extensionASTN5 - : []; - this._values = defineEnumValues(this.name, config.values); - this._valueLookup = new Map( - this._values.map((enumValue) => [enumValue.value, enumValue]), - ); - this._nameLookup = keyMap(this._values, (value) => value.name); - } - - get [Symbol.toStringTag]() { - return 'GraphQLEnumType'; - } - - getValues() { - return this._values; - } - - getValue(name) { - return this._nameLookup[name]; - } - - serialize(outputValue) { - const enumValue = this._valueLookup.get(outputValue); - - if (enumValue === undefined) { - throw new GraphQLError( - `Enum "${this.name}" cannot represent value: ${inspect$2(outputValue)}`, - ); - } - - return enumValue.name; - } - - parseValue(inputValue) /* T */ - { - if (typeof inputValue !== 'string') { - const valueStr = inspect$2(inputValue); - throw new GraphQLError( - `Enum "${this.name}" cannot represent non-string value: ${valueStr}.` + - didYouMeanEnumValue(this, valueStr), - ); - } - - const enumValue = this.getValue(inputValue); - - if (enumValue == null) { - throw new GraphQLError( - `Value "${inputValue}" does not exist in "${this.name}" enum.` + - didYouMeanEnumValue(this, inputValue), - ); - } - - return enumValue.value; - } - - parseLiteral(valueNode, _variables) /* T */ - { - // Note: variables will be resolved to a value before calling this function. - if (valueNode.kind !== Kind.ENUM) { - const valueStr = print$1(valueNode); - throw new GraphQLError( - `Enum "${this.name}" cannot represent non-enum value: ${valueStr}.` + - didYouMeanEnumValue(this, valueStr), - valueNode, - ); - } - - const enumValue = this.getValue(valueNode.value); - - if (enumValue == null) { - const valueStr = print$1(valueNode); - throw new GraphQLError( - `Value "${valueStr}" does not exist in "${this.name}" enum.` + - didYouMeanEnumValue(this, valueStr), - valueNode, - ); - } - - return enumValue.value; - } - - toConfig() { - const values = keyValMap( - this.getValues(), - (value) => value.name, - (value) => ({ - description: value.description, - value: value.value, - deprecationReason: value.deprecationReason, - extensions: value.extensions, - astNode: value.astNode, - }), - ); - return { - name: this.name, - description: this.description, - values, - extensions: this.extensions, - astNode: this.astNode, - extensionASTNodes: this.extensionASTNodes, - }; - } - - toString() { - return this.name; - } - - toJSON() { - return this.toString(); - } - } - - function didYouMeanEnumValue(enumType, unknownValueStr) { - const allNames = enumType.getValues().map((value) => value.name); - const suggestedValues = suggestionList$1(unknownValueStr, allNames); - return didYouMean$1('the enum value', suggestedValues); - } - - function defineEnumValues(typeName, valueMap) { - isPlainObj(valueMap) || - devAssert( - false, - `${typeName} values must be an object with value names as keys.`, - ); - return Object.entries(valueMap).map(([valueName, valueConfig]) => { - isPlainObj(valueConfig) || - devAssert( - false, - `${typeName}.${valueName} must refer to an object with a "value" key ` + - `representing an internal value but got: ${inspect$2(valueConfig)}.`, - ); - return { - name: assertEnumValueName(valueName), - description: valueConfig.description, - value: valueConfig.value !== undefined ? valueConfig.value : valueName, - deprecationReason: valueConfig.deprecationReason, - extensions: toObjMap(valueConfig.extensions), - astNode: valueConfig.astNode, - }; - }); - } - - /** - * Input Object Type Definition - * - * An input object defines a structured collection of fields which may be - * supplied to a field argument. - * - * Using `NonNull` will ensure that a value must be provided by the query - * - * Example: - * - * ```ts - * const GeoPoint = new GraphQLInputObjectType({ - * name: 'GeoPoint', - * fields: { - * lat: { type: new GraphQLNonNull(GraphQLFloat) }, - * lon: { type: new GraphQLNonNull(GraphQLFloat) }, - * alt: { type: GraphQLFloat, defaultValue: 0 }, - * } - * }); - * ``` - */ - class GraphQLInputObjectType { - constructor(config) { - var _config$extensionASTN6; - - this.name = assertName(config.name); - this.description = config.description; - this.extensions = toObjMap(config.extensions); - this.astNode = config.astNode; - this.extensionASTNodes = - (_config$extensionASTN6 = config.extensionASTNodes) !== null && - _config$extensionASTN6 !== void 0 - ? _config$extensionASTN6 - : []; - this._fields = defineInputFieldMap.bind(undefined, config); - } - - get [Symbol.toStringTag]() { - return 'GraphQLInputObjectType'; - } - - getFields() { - if (typeof this._fields === 'function') { - this._fields = this._fields(); - } - - return this._fields; - } - - toConfig() { - const fields = mapValue(this.getFields(), (field) => ({ - description: field.description, - type: field.type, - defaultValue: field.defaultValue, - deprecationReason: field.deprecationReason, - extensions: field.extensions, - astNode: field.astNode, - })); - return { - name: this.name, - description: this.description, - fields, - extensions: this.extensions, - astNode: this.astNode, - extensionASTNodes: this.extensionASTNodes, - }; - } - - toString() { - return this.name; - } - - toJSON() { - return this.toString(); - } - } - - function defineInputFieldMap(config) { - const fieldMap = resolveObjMapThunk(config.fields); - isPlainObj(fieldMap) || - devAssert( - false, - `${config.name} fields must be an object with field names as keys or a function which returns such an object.`, - ); - return mapValue(fieldMap, (fieldConfig, fieldName) => { - !('resolve' in fieldConfig) || - devAssert( - false, - `${config.name}.${fieldName} field has a resolve property, but Input Types cannot define resolvers.`, - ); - return { - name: assertName(fieldName), - description: fieldConfig.description, - type: fieldConfig.type, - defaultValue: fieldConfig.defaultValue, - deprecationReason: fieldConfig.deprecationReason, - extensions: toObjMap(fieldConfig.extensions), - astNode: fieldConfig.astNode, - }; - }); - } - - function isRequiredInputField(field) { - return isNonNullType(field.type) && field.defaultValue === undefined; - } - - /** - * Provided two types, return true if the types are equal (invariant). - */ - function isEqualType(typeA, typeB) { - // Equivalent types are equal. - if (typeA === typeB) { - return true; - } // If either type is non-null, the other must also be non-null. - - if (isNonNullType(typeA) && isNonNullType(typeB)) { - return isEqualType(typeA.ofType, typeB.ofType); - } // If either type is a list, the other must also be a list. - - if (isListType(typeA) && isListType(typeB)) { - return isEqualType(typeA.ofType, typeB.ofType); - } // Otherwise the types are not equal. - - return false; - } - /** - * Provided a type and a super type, return true if the first type is either - * equal or a subset of the second super type (covariant). - */ - - function isTypeSubTypeOf(schema, maybeSubType, superType) { - // Equivalent type is a valid subtype - if (maybeSubType === superType) { - return true; - } // If superType is non-null, maybeSubType must also be non-null. - - if (isNonNullType(superType)) { - if (isNonNullType(maybeSubType)) { - return isTypeSubTypeOf(schema, maybeSubType.ofType, superType.ofType); - } - - return false; - } - - if (isNonNullType(maybeSubType)) { - // If superType is nullable, maybeSubType may be non-null or nullable. - return isTypeSubTypeOf(schema, maybeSubType.ofType, superType); - } // If superType type is a list, maybeSubType type must also be a list. - - if (isListType(superType)) { - if (isListType(maybeSubType)) { - return isTypeSubTypeOf(schema, maybeSubType.ofType, superType.ofType); - } - - return false; - } - - if (isListType(maybeSubType)) { - // If superType is not a list, maybeSubType must also be not a list. - return false; - } // If superType type is an abstract type, check if it is super type of maybeSubType. - // Otherwise, the child type is not a valid subtype of the parent type. - - return ( - isAbstractType(superType) && - (isInterfaceType(maybeSubType) || isObjectType(maybeSubType)) && - schema.isSubType(superType, maybeSubType) - ); - } - /** - * Provided two composite types, determine if they "overlap". Two composite - * types overlap when the Sets of possible concrete types for each intersect. - * - * This is often used to determine if a fragment of a given type could possibly - * be visited in a context of another type. - * - * This function is commutative. - */ - - function doTypesOverlap(schema, typeA, typeB) { - // Equivalent types overlap - if (typeA === typeB) { - return true; - } - - if (isAbstractType(typeA)) { - if (isAbstractType(typeB)) { - // If both types are abstract, then determine if there is any intersection - // between possible concrete types of each. - return schema - .getPossibleTypes(typeA) - .some((type) => schema.isSubType(typeB, type)); - } // Determine if the latter type is a possible concrete type of the former. - - return schema.isSubType(typeA, typeB); - } - - if (isAbstractType(typeB)) { - // Determine if the former type is a possible concrete type of the latter. - return schema.isSubType(typeB, typeA); - } // Otherwise the types do not overlap. - - return false; - } - - /** - * Maximum possible Int value as per GraphQL Spec (32-bit signed integer). - * n.b. This differs from JavaScript's numbers that are IEEE 754 doubles safe up-to 2^53 - 1 - * */ - - const GRAPHQL_MAX_INT = 2147483647; - /** - * Minimum possible Int value as per GraphQL Spec (32-bit signed integer). - * n.b. This differs from JavaScript's numbers that are IEEE 754 doubles safe starting at -(2^53 - 1) - * */ - - const GRAPHQL_MIN_INT = -2147483648; - const GraphQLInt = new GraphQLScalarType({ - name: 'Int', - description: - 'The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.', - - serialize(outputValue) { - const coercedValue = serializeObject(outputValue); - - if (typeof coercedValue === 'boolean') { - return coercedValue ? 1 : 0; - } - - let num = coercedValue; - - if (typeof coercedValue === 'string' && coercedValue !== '') { - num = Number(coercedValue); - } - - if (typeof num !== 'number' || !Number.isInteger(num)) { - throw new GraphQLError( - `Int cannot represent non-integer value: ${inspect$2(coercedValue)}`, - ); - } - - if (num > GRAPHQL_MAX_INT || num < GRAPHQL_MIN_INT) { - throw new GraphQLError( - 'Int cannot represent non 32-bit signed integer value: ' + - inspect$2(coercedValue), - ); - } - - return num; - }, - - parseValue(inputValue) { - if (typeof inputValue !== 'number' || !Number.isInteger(inputValue)) { - throw new GraphQLError( - `Int cannot represent non-integer value: ${inspect$2(inputValue)}`, - ); - } - - if (inputValue > GRAPHQL_MAX_INT || inputValue < GRAPHQL_MIN_INT) { - throw new GraphQLError( - `Int cannot represent non 32-bit signed integer value: ${inputValue}`, - ); - } - - return inputValue; - }, - - parseLiteral(valueNode) { - if (valueNode.kind !== Kind.INT) { - throw new GraphQLError( - `Int cannot represent non-integer value: ${print$1(valueNode)}`, - valueNode, - ); - } - - const num = parseInt(valueNode.value, 10); - - if (num > GRAPHQL_MAX_INT || num < GRAPHQL_MIN_INT) { - throw new GraphQLError( - `Int cannot represent non 32-bit signed integer value: ${valueNode.value}`, - valueNode, - ); - } - - return num; - }, - }); - const GraphQLFloat = new GraphQLScalarType({ - name: 'Float', - description: - 'The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).', - - serialize(outputValue) { - const coercedValue = serializeObject(outputValue); - - if (typeof coercedValue === 'boolean') { - return coercedValue ? 1 : 0; - } - - let num = coercedValue; - - if (typeof coercedValue === 'string' && coercedValue !== '') { - num = Number(coercedValue); - } - - if (typeof num !== 'number' || !Number.isFinite(num)) { - throw new GraphQLError( - `Float cannot represent non numeric value: ${inspect$2(coercedValue)}`, - ); - } - - return num; - }, - - parseValue(inputValue) { - if (typeof inputValue !== 'number' || !Number.isFinite(inputValue)) { - throw new GraphQLError( - `Float cannot represent non numeric value: ${inspect$2(inputValue)}`, - ); - } - - return inputValue; - }, - - parseLiteral(valueNode) { - if (valueNode.kind !== Kind.FLOAT && valueNode.kind !== Kind.INT) { - throw new GraphQLError( - `Float cannot represent non numeric value: ${print$1(valueNode)}`, - valueNode, - ); - } - - return parseFloat(valueNode.value); - }, - }); - const GraphQLString = new GraphQLScalarType({ - name: 'String', - description: - 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.', - - serialize(outputValue) { - const coercedValue = serializeObject(outputValue); // Serialize string, boolean and number values to a string, but do not - // attempt to coerce object, function, symbol, or other types as strings. - - if (typeof coercedValue === 'string') { - return coercedValue; - } - - if (typeof coercedValue === 'boolean') { - return coercedValue ? 'true' : 'false'; - } - - if (typeof coercedValue === 'number' && Number.isFinite(coercedValue)) { - return coercedValue.toString(); - } - - throw new GraphQLError( - `String cannot represent value: ${inspect$2(outputValue)}`, - ); - }, - - parseValue(inputValue) { - if (typeof inputValue !== 'string') { - throw new GraphQLError( - `String cannot represent a non string value: ${inspect$2(inputValue)}`, - ); - } - - return inputValue; - }, - - parseLiteral(valueNode) { - if (valueNode.kind !== Kind.STRING) { - throw new GraphQLError( - `String cannot represent a non string value: ${print$1(valueNode)}`, - valueNode, - ); - } - - return valueNode.value; - }, - }); - const GraphQLBoolean = new GraphQLScalarType({ - name: 'Boolean', - description: 'The `Boolean` scalar type represents `true` or `false`.', - - serialize(outputValue) { - const coercedValue = serializeObject(outputValue); - - if (typeof coercedValue === 'boolean') { - return coercedValue; - } - - if (Number.isFinite(coercedValue)) { - return coercedValue !== 0; - } - - throw new GraphQLError( - `Boolean cannot represent a non boolean value: ${inspect$2(coercedValue)}`, - ); - }, - - parseValue(inputValue) { - if (typeof inputValue !== 'boolean') { - throw new GraphQLError( - `Boolean cannot represent a non boolean value: ${inspect$2(inputValue)}`, - ); - } - - return inputValue; - }, - - parseLiteral(valueNode) { - if (valueNode.kind !== Kind.BOOLEAN) { - throw new GraphQLError( - `Boolean cannot represent a non boolean value: ${print$1(valueNode)}`, - valueNode, - ); - } - - return valueNode.value; - }, - }); - const GraphQLID = new GraphQLScalarType({ - name: 'ID', - description: - 'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.', - - serialize(outputValue) { - const coercedValue = serializeObject(outputValue); - - if (typeof coercedValue === 'string') { - return coercedValue; - } - - if (Number.isInteger(coercedValue)) { - return String(coercedValue); - } - - throw new GraphQLError( - `ID cannot represent value: ${inspect$2(outputValue)}`, - ); - }, - - parseValue(inputValue) { - if (typeof inputValue === 'string') { - return inputValue; - } - - if (typeof inputValue === 'number' && Number.isInteger(inputValue)) { - return inputValue.toString(); - } - - throw new GraphQLError(`ID cannot represent value: ${inspect$2(inputValue)}`); - }, - - parseLiteral(valueNode) { - if (valueNode.kind !== Kind.STRING && valueNode.kind !== Kind.INT) { - throw new GraphQLError( - 'ID cannot represent a non-string and non-integer value: ' + - print$1(valueNode), - valueNode, - ); - } - - return valueNode.value; - }, - }); - const specifiedScalarTypes = Object.freeze([ - GraphQLString, - GraphQLInt, - GraphQLFloat, - GraphQLBoolean, - GraphQLID, - ]); - function isSpecifiedScalarType(type) { - return specifiedScalarTypes.some(({ name }) => type.name === name); - } // Support serializing objects with custom valueOf() or toJSON() functions - - // a common way to represent a complex value which can be represented as - // a string (ex: MongoDB id objects). - - function serializeObject(outputValue) { - if (isObjectLike(outputValue)) { - if (typeof outputValue.valueOf === 'function') { - const valueOfResult = outputValue.valueOf(); - - if (!isObjectLike(valueOfResult)) { - return valueOfResult; - } - } - - if (typeof outputValue.toJSON === 'function') { - return outputValue.toJSON(); - } - } - - return outputValue; - } - - /** - * Test if the given value is a GraphQL directive. - */ - - function isDirective(directive) { - return instanceOf(directive, GraphQLDirective); - } - function assertDirective(directive) { - if (!isDirective(directive)) { - throw new Error( - `Expected ${inspect$2(directive)} to be a GraphQL directive.`, - ); - } - - return directive; - } - /** - * Custom extensions - * - * @remarks - * Use a unique identifier name for your extension, for example the name of - * your library or project. Do not use a shortened identifier as this increases - * the risk of conflicts. We recommend you add at most one extension field, - * an object which can contain all the values you need. - */ - - /** - * Directives are used by the GraphQL runtime as a way of modifying execution - * behavior. Type system creators will usually not create these directly. - */ - class GraphQLDirective { - constructor(config) { - var _config$isRepeatable, _config$args; - - this.name = assertName(config.name); - this.description = config.description; - this.locations = config.locations; - this.isRepeatable = - (_config$isRepeatable = config.isRepeatable) !== null && - _config$isRepeatable !== void 0 - ? _config$isRepeatable - : false; - this.extensions = toObjMap(config.extensions); - this.astNode = config.astNode; - Array.isArray(config.locations) || - devAssert(false, `@${config.name} locations must be an Array.`); - const args = - (_config$args = config.args) !== null && _config$args !== void 0 - ? _config$args - : {}; - (isObjectLike(args) && !Array.isArray(args)) || - devAssert( - false, - `@${config.name} args must be an object with argument names as keys.`, - ); - this.args = defineArguments(args); - } - - get [Symbol.toStringTag]() { - return 'GraphQLDirective'; - } - - toConfig() { - return { - name: this.name, - description: this.description, - locations: this.locations, - args: argsToArgsConfig(this.args), - isRepeatable: this.isRepeatable, - extensions: this.extensions, - astNode: this.astNode, - }; - } - - toString() { - return '@' + this.name; - } - - toJSON() { - return this.toString(); - } - } - - /** - * Used to conditionally include fields or fragments. - */ - const GraphQLIncludeDirective = new GraphQLDirective({ - name: 'include', - description: - 'Directs the executor to include this field or fragment only when the `if` argument is true.', - locations: [ - DirectiveLocation.FIELD, - DirectiveLocation.FRAGMENT_SPREAD, - DirectiveLocation.INLINE_FRAGMENT, - ], - args: { - if: { - type: new GraphQLNonNull(GraphQLBoolean), - description: 'Included when true.', - }, - }, - }); - /** - * Used to conditionally skip (exclude) fields or fragments. - */ - - const GraphQLSkipDirective = new GraphQLDirective({ - name: 'skip', - description: - 'Directs the executor to skip this field or fragment when the `if` argument is true.', - locations: [ - DirectiveLocation.FIELD, - DirectiveLocation.FRAGMENT_SPREAD, - DirectiveLocation.INLINE_FRAGMENT, - ], - args: { - if: { - type: new GraphQLNonNull(GraphQLBoolean), - description: 'Skipped when true.', - }, - }, - }); - /** - * Constant string used for default reason for a deprecation. - */ - - const DEFAULT_DEPRECATION_REASON = 'No longer supported'; - /** - * Used to declare element of a GraphQL schema as deprecated. - */ - - const GraphQLDeprecatedDirective = new GraphQLDirective({ - name: 'deprecated', - description: 'Marks an element of a GraphQL schema as no longer supported.', - locations: [ - DirectiveLocation.FIELD_DEFINITION, - DirectiveLocation.ARGUMENT_DEFINITION, - DirectiveLocation.INPUT_FIELD_DEFINITION, - DirectiveLocation.ENUM_VALUE, - ], - args: { - reason: { - type: GraphQLString, - description: - 'Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/).', - defaultValue: DEFAULT_DEPRECATION_REASON, - }, - }, - }); - /** - * Used to provide a URL for specifying the behavior of custom scalar definitions. - */ - - const GraphQLSpecifiedByDirective = new GraphQLDirective({ - name: 'specifiedBy', - description: 'Exposes a URL that specifies the behavior of this scalar.', - locations: [DirectiveLocation.SCALAR], - args: { - url: { - type: new GraphQLNonNull(GraphQLString), - description: 'The URL that specifies the behavior of this scalar.', - }, - }, - }); - /** - * The full list of specified directives. - */ - - const specifiedDirectives = Object.freeze([ - GraphQLIncludeDirective, - GraphQLSkipDirective, - GraphQLDeprecatedDirective, - GraphQLSpecifiedByDirective, - ]); - function isSpecifiedDirective(directive) { - return specifiedDirectives.some(({ name }) => name === directive.name); - } - - /** - * Returns true if the provided object is an Object (i.e. not a string literal) - * and implements the Iterator protocol. - * - * This may be used in place of [Array.isArray()][isArray] to determine if - * an object should be iterated-over e.g. Array, Map, Set, Int8Array, - * TypedArray, etc. but excludes string literals. - * - * @example - * ```ts - * isIterableObject([ 1, 2, 3 ]) // true - * isIterableObject(new Map()) // true - * isIterableObject('ABC') // false - * isIterableObject({ key: 'value' }) // false - * isIterableObject({ length: 1, 0: 'Alpha' }) // false - * ``` - */ - function isIterableObject(maybeIterable) { - return ( - typeof maybeIterable === 'object' && - typeof (maybeIterable === null || maybeIterable === void 0 - ? void 0 - : maybeIterable[Symbol.iterator]) === 'function' - ); - } - - /** - * Produces a GraphQL Value AST given a JavaScript object. - * Function will match JavaScript/JSON values to GraphQL AST schema format - * by using suggested GraphQLInputType. For example: - * - * astFromValue("value", GraphQLString) - * - * A GraphQL type must be provided, which will be used to interpret different - * JavaScript values. - * - * | JSON Value | GraphQL Value | - * | ------------- | -------------------- | - * | Object | Input Object | - * | Array | List | - * | Boolean | Boolean | - * | String | String / Enum Value | - * | Number | Int / Float | - * | Unknown | Enum Value | - * | null | NullValue | - * - */ - - function astFromValue(value, type) { - if (isNonNullType(type)) { - const astValue = astFromValue(value, type.ofType); - - if ( - (astValue === null || astValue === void 0 ? void 0 : astValue.kind) === - Kind.NULL - ) { - return null; - } - - return astValue; - } // only explicit null, not undefined, NaN - - if (value === null) { - return { - kind: Kind.NULL, - }; - } // undefined - - if (value === undefined) { - return null; - } // Convert JavaScript array to GraphQL list. If the GraphQLType is a list, but - // the value is not an array, convert the value using the list's item type. - - if (isListType(type)) { - const itemType = type.ofType; - - if (isIterableObject(value)) { - const valuesNodes = []; - - for (const item of value) { - const itemNode = astFromValue(item, itemType); - - if (itemNode != null) { - valuesNodes.push(itemNode); - } - } - - return { - kind: Kind.LIST, - values: valuesNodes, - }; - } - - return astFromValue(value, itemType); - } // Populate the fields of the input object by creating ASTs from each value - // in the JavaScript object according to the fields in the input type. - - if (isInputObjectType(type)) { - if (!isObjectLike(value)) { - return null; - } - - const fieldNodes = []; - - for (const field of Object.values(type.getFields())) { - const fieldValue = astFromValue(value[field.name], field.type); - - if (fieldValue) { - fieldNodes.push({ - kind: Kind.OBJECT_FIELD, - name: { - kind: Kind.NAME, - value: field.name, - }, - value: fieldValue, - }); - } - } - - return { - kind: Kind.OBJECT, - fields: fieldNodes, - }; - } - - if (isLeafType(type)) { - // Since value is an internally represented value, it must be serialized - // to an externally represented value before converting into an AST. - const serialized = type.serialize(value); - - if (serialized == null) { - return null; - } // Others serialize based on their corresponding JavaScript scalar types. - - if (typeof serialized === 'boolean') { - return { - kind: Kind.BOOLEAN, - value: serialized, - }; - } // JavaScript numbers can be Int or Float values. - - if (typeof serialized === 'number' && Number.isFinite(serialized)) { - const stringNum = String(serialized); - return integerStringRegExp$1.test(stringNum) - ? { - kind: Kind.INT, - value: stringNum, - } - : { - kind: Kind.FLOAT, - value: stringNum, - }; - } - - if (typeof serialized === 'string') { - // Enum types use Enum literals. - if (isEnumType(type)) { - return { - kind: Kind.ENUM, - value: serialized, - }; - } // ID types can use Int literals. - - if (type === GraphQLID && integerStringRegExp$1.test(serialized)) { - return { - kind: Kind.INT, - value: serialized, - }; - } - - return { - kind: Kind.STRING, - value: serialized, - }; - } - - throw new TypeError(`Cannot convert value to AST: ${inspect$2(serialized)}.`); - } - /* c8 ignore next 3 */ - // Not reachable, all possible types have been considered. - - invariant(false, 'Unexpected input type: ' + inspect$2(type)); - } - /** - * IntValue: - * - NegativeSign? 0 - * - NegativeSign? NonZeroDigit ( Digit+ )? - */ - - const integerStringRegExp$1 = /^-?(?:0|[1-9][0-9]*)$/; - - const __Schema = new GraphQLObjectType({ - name: '__Schema', - description: - 'A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.', - fields: () => ({ - description: { - type: GraphQLString, - resolve: (schema) => schema.description, - }, - types: { - description: 'A list of all types supported by this server.', - type: new GraphQLNonNull(new GraphQLList(new GraphQLNonNull(__Type))), - - resolve(schema) { - return Object.values(schema.getTypeMap()); - }, - }, - queryType: { - description: 'The type that query operations will be rooted at.', - type: new GraphQLNonNull(__Type), - resolve: (schema) => schema.getQueryType(), - }, - mutationType: { - description: - 'If this server supports mutation, the type that mutation operations will be rooted at.', - type: __Type, - resolve: (schema) => schema.getMutationType(), - }, - subscriptionType: { - description: - 'If this server support subscription, the type that subscription operations will be rooted at.', - type: __Type, - resolve: (schema) => schema.getSubscriptionType(), - }, - directives: { - description: 'A list of all directives supported by this server.', - type: new GraphQLNonNull( - new GraphQLList(new GraphQLNonNull(__Directive)), - ), - resolve: (schema) => schema.getDirectives(), - }, - }), - }); - const __Directive = new GraphQLObjectType({ - name: '__Directive', - description: - "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", - fields: () => ({ - name: { - type: new GraphQLNonNull(GraphQLString), - resolve: (directive) => directive.name, - }, - description: { - type: GraphQLString, - resolve: (directive) => directive.description, - }, - isRepeatable: { - type: new GraphQLNonNull(GraphQLBoolean), - resolve: (directive) => directive.isRepeatable, - }, - locations: { - type: new GraphQLNonNull( - new GraphQLList(new GraphQLNonNull(__DirectiveLocation)), - ), - resolve: (directive) => directive.locations, - }, - args: { - type: new GraphQLNonNull( - new GraphQLList(new GraphQLNonNull(__InputValue)), - ), - args: { - includeDeprecated: { - type: GraphQLBoolean, - defaultValue: false, - }, - }, - - resolve(field, { includeDeprecated }) { - return includeDeprecated - ? field.args - : field.args.filter((arg) => arg.deprecationReason == null); - }, - }, - }), - }); - const __DirectiveLocation = new GraphQLEnumType({ - name: '__DirectiveLocation', - description: - 'A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.', - values: { - QUERY: { - value: DirectiveLocation.QUERY, - description: 'Location adjacent to a query operation.', - }, - MUTATION: { - value: DirectiveLocation.MUTATION, - description: 'Location adjacent to a mutation operation.', - }, - SUBSCRIPTION: { - value: DirectiveLocation.SUBSCRIPTION, - description: 'Location adjacent to a subscription operation.', - }, - FIELD: { - value: DirectiveLocation.FIELD, - description: 'Location adjacent to a field.', - }, - FRAGMENT_DEFINITION: { - value: DirectiveLocation.FRAGMENT_DEFINITION, - description: 'Location adjacent to a fragment definition.', - }, - FRAGMENT_SPREAD: { - value: DirectiveLocation.FRAGMENT_SPREAD, - description: 'Location adjacent to a fragment spread.', - }, - INLINE_FRAGMENT: { - value: DirectiveLocation.INLINE_FRAGMENT, - description: 'Location adjacent to an inline fragment.', - }, - VARIABLE_DEFINITION: { - value: DirectiveLocation.VARIABLE_DEFINITION, - description: 'Location adjacent to a variable definition.', - }, - SCHEMA: { - value: DirectiveLocation.SCHEMA, - description: 'Location adjacent to a schema definition.', - }, - SCALAR: { - value: DirectiveLocation.SCALAR, - description: 'Location adjacent to a scalar definition.', - }, - OBJECT: { - value: DirectiveLocation.OBJECT, - description: 'Location adjacent to an object type definition.', - }, - FIELD_DEFINITION: { - value: DirectiveLocation.FIELD_DEFINITION, - description: 'Location adjacent to a field definition.', - }, - ARGUMENT_DEFINITION: { - value: DirectiveLocation.ARGUMENT_DEFINITION, - description: 'Location adjacent to an argument definition.', - }, - INTERFACE: { - value: DirectiveLocation.INTERFACE, - description: 'Location adjacent to an interface definition.', - }, - UNION: { - value: DirectiveLocation.UNION, - description: 'Location adjacent to a union definition.', - }, - ENUM: { - value: DirectiveLocation.ENUM, - description: 'Location adjacent to an enum definition.', - }, - ENUM_VALUE: { - value: DirectiveLocation.ENUM_VALUE, - description: 'Location adjacent to an enum value definition.', - }, - INPUT_OBJECT: { - value: DirectiveLocation.INPUT_OBJECT, - description: 'Location adjacent to an input object type definition.', - }, - INPUT_FIELD_DEFINITION: { - value: DirectiveLocation.INPUT_FIELD_DEFINITION, - description: 'Location adjacent to an input object field definition.', - }, - }, - }); - const __Type = new GraphQLObjectType({ - name: '__Type', - description: - 'The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.', - fields: () => ({ - kind: { - type: new GraphQLNonNull(__TypeKind), - - resolve(type) { - if (isScalarType(type)) { - return TypeKind.SCALAR; - } - - if (isObjectType(type)) { - return TypeKind.OBJECT; - } - - if (isInterfaceType(type)) { - return TypeKind.INTERFACE; - } - - if (isUnionType(type)) { - return TypeKind.UNION; - } - - if (isEnumType(type)) { - return TypeKind.ENUM; - } - - if (isInputObjectType(type)) { - return TypeKind.INPUT_OBJECT; - } - - if (isListType(type)) { - return TypeKind.LIST; - } - - if (isNonNullType(type)) { - return TypeKind.NON_NULL; - } - /* c8 ignore next 3 */ - // Not reachable, all possible types have been considered) - - invariant(false, `Unexpected type: "${inspect$2(type)}".`); - }, - }, - name: { - type: GraphQLString, - resolve: (type) => ('name' in type ? type.name : undefined), - }, - description: { - type: GraphQLString, - resolve: ( - type, // FIXME: add test case - ) => - /* c8 ignore next */ - 'description' in type ? type.description : undefined, - }, - specifiedByURL: { - type: GraphQLString, - resolve: (obj) => - 'specifiedByURL' in obj ? obj.specifiedByURL : undefined, - }, - fields: { - type: new GraphQLList(new GraphQLNonNull(__Field)), - args: { - includeDeprecated: { - type: GraphQLBoolean, - defaultValue: false, - }, - }, - - resolve(type, { includeDeprecated }) { - if (isObjectType(type) || isInterfaceType(type)) { - const fields = Object.values(type.getFields()); - return includeDeprecated - ? fields - : fields.filter((field) => field.deprecationReason == null); - } - }, - }, - interfaces: { - type: new GraphQLList(new GraphQLNonNull(__Type)), - - resolve(type) { - if (isObjectType(type) || isInterfaceType(type)) { - return type.getInterfaces(); - } - }, - }, - possibleTypes: { - type: new GraphQLList(new GraphQLNonNull(__Type)), - - resolve(type, _args, _context, { schema }) { - if (isAbstractType(type)) { - return schema.getPossibleTypes(type); - } - }, - }, - enumValues: { - type: new GraphQLList(new GraphQLNonNull(__EnumValue)), - args: { - includeDeprecated: { - type: GraphQLBoolean, - defaultValue: false, - }, - }, - - resolve(type, { includeDeprecated }) { - if (isEnumType(type)) { - const values = type.getValues(); - return includeDeprecated - ? values - : values.filter((field) => field.deprecationReason == null); - } - }, - }, - inputFields: { - type: new GraphQLList(new GraphQLNonNull(__InputValue)), - args: { - includeDeprecated: { - type: GraphQLBoolean, - defaultValue: false, - }, - }, - - resolve(type, { includeDeprecated }) { - if (isInputObjectType(type)) { - const values = Object.values(type.getFields()); - return includeDeprecated - ? values - : values.filter((field) => field.deprecationReason == null); - } - }, - }, - ofType: { - type: __Type, - resolve: (type) => ('ofType' in type ? type.ofType : undefined), - }, - }), - }); - const __Field = new GraphQLObjectType({ - name: '__Field', - description: - 'Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.', - fields: () => ({ - name: { - type: new GraphQLNonNull(GraphQLString), - resolve: (field) => field.name, - }, - description: { - type: GraphQLString, - resolve: (field) => field.description, - }, - args: { - type: new GraphQLNonNull( - new GraphQLList(new GraphQLNonNull(__InputValue)), - ), - args: { - includeDeprecated: { - type: GraphQLBoolean, - defaultValue: false, - }, - }, - - resolve(field, { includeDeprecated }) { - return includeDeprecated - ? field.args - : field.args.filter((arg) => arg.deprecationReason == null); - }, - }, - type: { - type: new GraphQLNonNull(__Type), - resolve: (field) => field.type, - }, - isDeprecated: { - type: new GraphQLNonNull(GraphQLBoolean), - resolve: (field) => field.deprecationReason != null, - }, - deprecationReason: { - type: GraphQLString, - resolve: (field) => field.deprecationReason, - }, - }), - }); - const __InputValue = new GraphQLObjectType({ - name: '__InputValue', - description: - 'Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.', - fields: () => ({ - name: { - type: new GraphQLNonNull(GraphQLString), - resolve: (inputValue) => inputValue.name, - }, - description: { - type: GraphQLString, - resolve: (inputValue) => inputValue.description, - }, - type: { - type: new GraphQLNonNull(__Type), - resolve: (inputValue) => inputValue.type, - }, - defaultValue: { - type: GraphQLString, - description: - 'A GraphQL-formatted string representing the default value for this input value.', - - resolve(inputValue) { - const { type, defaultValue } = inputValue; - const valueAST = astFromValue(defaultValue, type); - return valueAST ? print$1(valueAST) : null; - }, - }, - isDeprecated: { - type: new GraphQLNonNull(GraphQLBoolean), - resolve: (field) => field.deprecationReason != null, - }, - deprecationReason: { - type: GraphQLString, - resolve: (obj) => obj.deprecationReason, - }, - }), - }); - const __EnumValue = new GraphQLObjectType({ - name: '__EnumValue', - description: - 'One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.', - fields: () => ({ - name: { - type: new GraphQLNonNull(GraphQLString), - resolve: (enumValue) => enumValue.name, - }, - description: { - type: GraphQLString, - resolve: (enumValue) => enumValue.description, - }, - isDeprecated: { - type: new GraphQLNonNull(GraphQLBoolean), - resolve: (enumValue) => enumValue.deprecationReason != null, - }, - deprecationReason: { - type: GraphQLString, - resolve: (enumValue) => enumValue.deprecationReason, - }, - }), - }); - let TypeKind; - - (function (TypeKind) { - TypeKind['SCALAR'] = 'SCALAR'; - TypeKind['OBJECT'] = 'OBJECT'; - TypeKind['INTERFACE'] = 'INTERFACE'; - TypeKind['UNION'] = 'UNION'; - TypeKind['ENUM'] = 'ENUM'; - TypeKind['INPUT_OBJECT'] = 'INPUT_OBJECT'; - TypeKind['LIST'] = 'LIST'; - TypeKind['NON_NULL'] = 'NON_NULL'; - })(TypeKind || (TypeKind = {})); - - const __TypeKind = new GraphQLEnumType({ - name: '__TypeKind', - description: 'An enum describing what kind of type a given `__Type` is.', - values: { - SCALAR: { - value: TypeKind.SCALAR, - description: 'Indicates this type is a scalar.', - }, - OBJECT: { - value: TypeKind.OBJECT, - description: - 'Indicates this type is an object. `fields` and `interfaces` are valid fields.', - }, - INTERFACE: { - value: TypeKind.INTERFACE, - description: - 'Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.', - }, - UNION: { - value: TypeKind.UNION, - description: - 'Indicates this type is a union. `possibleTypes` is a valid field.', - }, - ENUM: { - value: TypeKind.ENUM, - description: - 'Indicates this type is an enum. `enumValues` is a valid field.', - }, - INPUT_OBJECT: { - value: TypeKind.INPUT_OBJECT, - description: - 'Indicates this type is an input object. `inputFields` is a valid field.', - }, - LIST: { - value: TypeKind.LIST, - description: 'Indicates this type is a list. `ofType` is a valid field.', - }, - NON_NULL: { - value: TypeKind.NON_NULL, - description: - 'Indicates this type is a non-null. `ofType` is a valid field.', - }, - }, - }); - /** - * Note that these are GraphQLField and not GraphQLFieldConfig, - * so the format for args is different. - */ - - const SchemaMetaFieldDef = { - name: '__schema', - type: new GraphQLNonNull(__Schema), - description: 'Access the current type schema of this server.', - args: [], - resolve: (_source, _args, _context, { schema }) => schema, - deprecationReason: undefined, - extensions: Object.create(null), - astNode: undefined, - }; - const TypeMetaFieldDef = { - name: '__type', - type: __Type, - description: 'Request the type information of a single type.', - args: [ - { - name: 'name', - description: undefined, - type: new GraphQLNonNull(GraphQLString), - defaultValue: undefined, - deprecationReason: undefined, - extensions: Object.create(null), - astNode: undefined, - }, - ], - resolve: (_source, { name }, _context, { schema }) => schema.getType(name), - deprecationReason: undefined, - extensions: Object.create(null), - astNode: undefined, - }; - const TypeNameMetaFieldDef = { - name: '__typename', - type: new GraphQLNonNull(GraphQLString), - description: 'The name of the current Object type at runtime.', - args: [], - resolve: (_source, _args, _context, { parentType }) => parentType.name, - deprecationReason: undefined, - extensions: Object.create(null), - astNode: undefined, - }; - const introspectionTypes = Object.freeze([ - __Schema, - __Directive, - __DirectiveLocation, - __Type, - __Field, - __InputValue, - __EnumValue, - __TypeKind, - ]); - function isIntrospectionType(type) { - return introspectionTypes.some(({ name }) => type.name === name); - } - - /** - * Test if the given value is a GraphQL schema. - */ - - function isSchema(schema) { - return instanceOf(schema, GraphQLSchema); - } - function assertSchema(schema) { - if (!isSchema(schema)) { - throw new Error(`Expected ${inspect$2(schema)} to be a GraphQL schema.`); - } - - return schema; - } - /** - * Custom extensions - * - * @remarks - * Use a unique identifier name for your extension, for example the name of - * your library or project. Do not use a shortened identifier as this increases - * the risk of conflicts. We recommend you add at most one extension field, - * an object which can contain all the values you need. - */ - - /** - * Schema Definition - * - * A Schema is created by supplying the root types of each type of operation, - * query and mutation (optional). A schema definition is then supplied to the - * validator and executor. - * - * Example: - * - * ```ts - * const MyAppSchema = new GraphQLSchema({ - * query: MyAppQueryRootType, - * mutation: MyAppMutationRootType, - * }) - * ``` - * - * Note: When the schema is constructed, by default only the types that are - * reachable by traversing the root types are included, other types must be - * explicitly referenced. - * - * Example: - * - * ```ts - * const characterInterface = new GraphQLInterfaceType({ - * name: 'Character', - * ... - * }); - * - * const humanType = new GraphQLObjectType({ - * name: 'Human', - * interfaces: [characterInterface], - * ... - * }); - * - * const droidType = new GraphQLObjectType({ - * name: 'Droid', - * interfaces: [characterInterface], - * ... - * }); - * - * const schema = new GraphQLSchema({ - * query: new GraphQLObjectType({ - * name: 'Query', - * fields: { - * hero: { type: characterInterface, ... }, - * } - * }), - * ... - * // Since this schema references only the `Character` interface it's - * // necessary to explicitly list the types that implement it if - * // you want them to be included in the final schema. - * types: [humanType, droidType], - * }) - * ``` - * - * Note: If an array of `directives` are provided to GraphQLSchema, that will be - * the exact list of directives represented and allowed. If `directives` is not - * provided then a default set of the specified directives (e.g. `@include` and - * `@skip`) will be used. If you wish to provide *additional* directives to these - * specified directives, you must explicitly declare them. Example: - * - * ```ts - * const MyAppSchema = new GraphQLSchema({ - * ... - * directives: specifiedDirectives.concat([ myCustomDirective ]), - * }) - * ``` - */ - class GraphQLSchema { - // Used as a cache for validateSchema(). - constructor(config) { - var _config$extensionASTN, _config$directives; - - // If this schema was built from a source known to be valid, then it may be - // marked with assumeValid to avoid an additional type system validation. - this.__validationErrors = config.assumeValid === true ? [] : undefined; // Check for common mistakes during construction to produce early errors. - - isObjectLike(config) || - devAssert(false, 'Must provide configuration object.'); - !config.types || - Array.isArray(config.types) || - devAssert( - false, - `"types" must be Array if provided but got: ${inspect$2(config.types)}.`, - ); - !config.directives || - Array.isArray(config.directives) || - devAssert( - false, - '"directives" must be Array if provided but got: ' + - `${inspect$2(config.directives)}.`, - ); - this.description = config.description; - this.extensions = toObjMap(config.extensions); - this.astNode = config.astNode; - this.extensionASTNodes = - (_config$extensionASTN = config.extensionASTNodes) !== null && - _config$extensionASTN !== void 0 - ? _config$extensionASTN - : []; - this._queryType = config.query; - this._mutationType = config.mutation; - this._subscriptionType = config.subscription; // Provide specified directives (e.g. @include and @skip) by default. - - this._directives = - (_config$directives = config.directives) !== null && - _config$directives !== void 0 - ? _config$directives - : specifiedDirectives; // To preserve order of user-provided types, we add first to add them to - // the set of "collected" types, so `collectReferencedTypes` ignore them. - - const allReferencedTypes = new Set(config.types); - - if (config.types != null) { - for (const type of config.types) { - // When we ready to process this type, we remove it from "collected" types - // and then add it together with all dependent types in the correct position. - allReferencedTypes.delete(type); - collectReferencedTypes(type, allReferencedTypes); - } - } - - if (this._queryType != null) { - collectReferencedTypes(this._queryType, allReferencedTypes); - } - - if (this._mutationType != null) { - collectReferencedTypes(this._mutationType, allReferencedTypes); - } - - if (this._subscriptionType != null) { - collectReferencedTypes(this._subscriptionType, allReferencedTypes); - } - - for (const directive of this._directives) { - // Directives are not validated until validateSchema() is called. - if (isDirective(directive)) { - for (const arg of directive.args) { - collectReferencedTypes(arg.type, allReferencedTypes); - } - } - } - - collectReferencedTypes(__Schema, allReferencedTypes); // Storing the resulting map for reference by the schema. - - this._typeMap = Object.create(null); - this._subTypeMap = Object.create(null); // Keep track of all implementations by interface name. - - this._implementationsMap = Object.create(null); - - for (const namedType of allReferencedTypes) { - if (namedType == null) { - continue; - } - - const typeName = namedType.name; - typeName || - devAssert( - false, - 'One of the provided types for building the Schema is missing a name.', - ); - - if (this._typeMap[typeName] !== undefined) { - throw new Error( - `Schema must contain uniquely named types but contains multiple types named "${typeName}".`, - ); - } - - this._typeMap[typeName] = namedType; - - if (isInterfaceType(namedType)) { - // Store implementations by interface. - for (const iface of namedType.getInterfaces()) { - if (isInterfaceType(iface)) { - let implementations = this._implementationsMap[iface.name]; - - if (implementations === undefined) { - implementations = this._implementationsMap[iface.name] = { - objects: [], - interfaces: [], - }; - } - - implementations.interfaces.push(namedType); - } - } - } else if (isObjectType(namedType)) { - // Store implementations by objects. - for (const iface of namedType.getInterfaces()) { - if (isInterfaceType(iface)) { - let implementations = this._implementationsMap[iface.name]; - - if (implementations === undefined) { - implementations = this._implementationsMap[iface.name] = { - objects: [], - interfaces: [], - }; - } - - implementations.objects.push(namedType); - } - } - } - } - } - - get [Symbol.toStringTag]() { - return 'GraphQLSchema'; - } - - getQueryType() { - return this._queryType; - } - - getMutationType() { - return this._mutationType; - } - - getSubscriptionType() { - return this._subscriptionType; - } - - getRootType(operation) { - switch (operation) { - case OperationTypeNode.QUERY: - return this.getQueryType(); - - case OperationTypeNode.MUTATION: - return this.getMutationType(); - - case OperationTypeNode.SUBSCRIPTION: - return this.getSubscriptionType(); - } - } - - getTypeMap() { - return this._typeMap; - } - - getType(name) { - return this.getTypeMap()[name]; - } - - getPossibleTypes(abstractType) { - return isUnionType(abstractType) - ? abstractType.getTypes() - : this.getImplementations(abstractType).objects; - } - - getImplementations(interfaceType) { - const implementations = this._implementationsMap[interfaceType.name]; - return implementations !== null && implementations !== void 0 - ? implementations - : { - objects: [], - interfaces: [], - }; - } - - isSubType(abstractType, maybeSubType) { - let map = this._subTypeMap[abstractType.name]; - - if (map === undefined) { - map = Object.create(null); - - if (isUnionType(abstractType)) { - for (const type of abstractType.getTypes()) { - map[type.name] = true; - } - } else { - const implementations = this.getImplementations(abstractType); - - for (const type of implementations.objects) { - map[type.name] = true; - } - - for (const type of implementations.interfaces) { - map[type.name] = true; - } - } - - this._subTypeMap[abstractType.name] = map; - } - - return map[maybeSubType.name] !== undefined; - } - - getDirectives() { - return this._directives; - } - - getDirective(name) { - return this.getDirectives().find((directive) => directive.name === name); - } - - toConfig() { - return { - description: this.description, - query: this.getQueryType(), - mutation: this.getMutationType(), - subscription: this.getSubscriptionType(), - types: Object.values(this.getTypeMap()), - directives: this.getDirectives(), - extensions: this.extensions, - astNode: this.astNode, - extensionASTNodes: this.extensionASTNodes, - assumeValid: this.__validationErrors !== undefined, - }; - } - } - - function collectReferencedTypes(type, typeSet) { - const namedType = getNamedType(type); - - if (!typeSet.has(namedType)) { - typeSet.add(namedType); - - if (isUnionType(namedType)) { - for (const memberType of namedType.getTypes()) { - collectReferencedTypes(memberType, typeSet); - } - } else if (isObjectType(namedType) || isInterfaceType(namedType)) { - for (const interfaceType of namedType.getInterfaces()) { - collectReferencedTypes(interfaceType, typeSet); - } - - for (const field of Object.values(namedType.getFields())) { - collectReferencedTypes(field.type, typeSet); - - for (const arg of field.args) { - collectReferencedTypes(arg.type, typeSet); - } - } - } else if (isInputObjectType(namedType)) { - for (const field of Object.values(namedType.getFields())) { - collectReferencedTypes(field.type, typeSet); - } - } - } - - return typeSet; - } - - /** - * Implements the "Type Validation" sub-sections of the specification's - * "Type System" section. - * - * Validation runs synchronously, returning an array of encountered errors, or - * an empty array if no errors were encountered and the Schema is valid. - */ - - function validateSchema$1(schema) { - // First check to ensure the provided value is in fact a GraphQLSchema. - assertSchema(schema); // If this Schema has already been validated, return the previous results. - - if (schema.__validationErrors) { - return schema.__validationErrors; - } // Validate the schema, producing a list of errors. - - const context = new SchemaValidationContext(schema); - validateRootTypes(context); - validateDirectives(context); - validateTypes(context); // Persist the results of validation before returning to ensure validation - // does not run multiple times for this schema. - - const errors = context.getErrors(); - schema.__validationErrors = errors; - return errors; - } - /** - * Utility function which asserts a schema is valid by throwing an error if - * it is invalid. - */ - - function assertValidSchema(schema) { - const errors = validateSchema$1(schema); - - if (errors.length !== 0) { - throw new Error(errors.map((error) => error.message).join('\n\n')); - } - } - - class SchemaValidationContext { - constructor(schema) { - this._errors = []; - this.schema = schema; - } - - reportError(message, nodes) { - const _nodes = Array.isArray(nodes) ? nodes.filter(Boolean) : nodes; - - this._errors.push(new GraphQLError(message, _nodes)); - } - - getErrors() { - return this._errors; - } - } - - function validateRootTypes(context) { - const schema = context.schema; - const queryType = schema.getQueryType(); - - if (!queryType) { - context.reportError('Query root type must be provided.', schema.astNode); - } else if (!isObjectType(queryType)) { - var _getOperationTypeNode; - - context.reportError( - `Query root type must be Object type, it cannot be ${inspect$2( - queryType, - )}.`, - (_getOperationTypeNode = getOperationTypeNode( - schema, - OperationTypeNode.QUERY, - )) !== null && _getOperationTypeNode !== void 0 - ? _getOperationTypeNode - : queryType.astNode, - ); - } - - const mutationType = schema.getMutationType(); - - if (mutationType && !isObjectType(mutationType)) { - var _getOperationTypeNode2; - - context.reportError( - 'Mutation root type must be Object type if provided, it cannot be ' + - `${inspect$2(mutationType)}.`, - (_getOperationTypeNode2 = getOperationTypeNode( - schema, - OperationTypeNode.MUTATION, - )) !== null && _getOperationTypeNode2 !== void 0 - ? _getOperationTypeNode2 - : mutationType.astNode, - ); - } - - const subscriptionType = schema.getSubscriptionType(); - - if (subscriptionType && !isObjectType(subscriptionType)) { - var _getOperationTypeNode3; - - context.reportError( - 'Subscription root type must be Object type if provided, it cannot be ' + - `${inspect$2(subscriptionType)}.`, - (_getOperationTypeNode3 = getOperationTypeNode( - schema, - OperationTypeNode.SUBSCRIPTION, - )) !== null && _getOperationTypeNode3 !== void 0 - ? _getOperationTypeNode3 - : subscriptionType.astNode, - ); - } - } - - function getOperationTypeNode(schema, operation) { - var _flatMap$find; - - return (_flatMap$find = [schema.astNode, ...schema.extensionASTNodes] - .flatMap( - // FIXME: https://github.com/graphql/graphql-js/issues/2203 - (schemaNode) => { - var _schemaNode$operation; - - return ( - /* c8 ignore next */ - (_schemaNode$operation = - schemaNode === null || schemaNode === void 0 - ? void 0 - : schemaNode.operationTypes) !== null && - _schemaNode$operation !== void 0 - ? _schemaNode$operation - : [] - ); - }, - ) - .find((operationNode) => operationNode.operation === operation)) === null || - _flatMap$find === void 0 - ? void 0 - : _flatMap$find.type; - } - - function validateDirectives(context) { - for (const directive of context.schema.getDirectives()) { - // Ensure all directives are in fact GraphQL directives. - if (!isDirective(directive)) { - context.reportError( - `Expected directive but got: ${inspect$2(directive)}.`, - directive === null || directive === void 0 ? void 0 : directive.astNode, - ); - continue; - } // Ensure they are named correctly. - - validateName(context, directive); // TODO: Ensure proper locations. - // Ensure the arguments are valid. - - for (const arg of directive.args) { - // Ensure they are named correctly. - validateName(context, arg); // Ensure the type is an input type. - - if (!isInputType(arg.type)) { - context.reportError( - `The type of @${directive.name}(${arg.name}:) must be Input Type ` + - `but got: ${inspect$2(arg.type)}.`, - arg.astNode, - ); - } - - if (isRequiredArgument(arg) && arg.deprecationReason != null) { - var _arg$astNode; - - context.reportError( - `Required argument @${directive.name}(${arg.name}:) cannot be deprecated.`, - [ - getDeprecatedDirectiveNode(arg.astNode), - (_arg$astNode = arg.astNode) === null || _arg$astNode === void 0 - ? void 0 - : _arg$astNode.type, - ], - ); - } - } - } - } - - function validateName(context, node) { - // Ensure names are valid, however introspection types opt out. - if (node.name.startsWith('__')) { - context.reportError( - `Name "${node.name}" must not begin with "__", which is reserved by GraphQL introspection.`, - node.astNode, - ); - } - } - - function validateTypes(context) { - const validateInputObjectCircularRefs = - createInputObjectCircularRefsValidator(context); - const typeMap = context.schema.getTypeMap(); - - for (const type of Object.values(typeMap)) { - // Ensure all provided types are in fact GraphQL type. - if (!isNamedType(type)) { - context.reportError( - `Expected GraphQL named type but got: ${inspect$2(type)}.`, - type.astNode, - ); - continue; - } // Ensure it is named correctly (excluding introspection types). - - if (!isIntrospectionType(type)) { - validateName(context, type); - } - - if (isObjectType(type)) { - // Ensure fields are valid - validateFields(context, type); // Ensure objects implement the interfaces they claim to. - - validateInterfaces(context, type); - } else if (isInterfaceType(type)) { - // Ensure fields are valid. - validateFields(context, type); // Ensure interfaces implement the interfaces they claim to. - - validateInterfaces(context, type); - } else if (isUnionType(type)) { - // Ensure Unions include valid member types. - validateUnionMembers(context, type); - } else if (isEnumType(type)) { - // Ensure Enums have valid values. - validateEnumValues(context, type); - } else if (isInputObjectType(type)) { - // Ensure Input Object fields are valid. - validateInputFields(context, type); // Ensure Input Objects do not contain non-nullable circular references - - validateInputObjectCircularRefs(type); - } - } - } - - function validateFields(context, type) { - const fields = Object.values(type.getFields()); // Objects and Interfaces both must define one or more fields. - - if (fields.length === 0) { - context.reportError(`Type ${type.name} must define one or more fields.`, [ - type.astNode, - ...type.extensionASTNodes, - ]); - } - - for (const field of fields) { - // Ensure they are named correctly. - validateName(context, field); // Ensure the type is an output type - - if (!isOutputType(field.type)) { - var _field$astNode; - - context.reportError( - `The type of ${type.name}.${field.name} must be Output Type ` + - `but got: ${inspect$2(field.type)}.`, - (_field$astNode = field.astNode) === null || _field$astNode === void 0 - ? void 0 - : _field$astNode.type, - ); - } // Ensure the arguments are valid - - for (const arg of field.args) { - const argName = arg.name; // Ensure they are named correctly. - - validateName(context, arg); // Ensure the type is an input type - - if (!isInputType(arg.type)) { - var _arg$astNode2; - - context.reportError( - `The type of ${type.name}.${field.name}(${argName}:) must be Input ` + - `Type but got: ${inspect$2(arg.type)}.`, - (_arg$astNode2 = arg.astNode) === null || _arg$astNode2 === void 0 - ? void 0 - : _arg$astNode2.type, - ); - } - - if (isRequiredArgument(arg) && arg.deprecationReason != null) { - var _arg$astNode3; - - context.reportError( - `Required argument ${type.name}.${field.name}(${argName}:) cannot be deprecated.`, - [ - getDeprecatedDirectiveNode(arg.astNode), - (_arg$astNode3 = arg.astNode) === null || _arg$astNode3 === void 0 - ? void 0 - : _arg$astNode3.type, - ], - ); - } - } - } - } - - function validateInterfaces(context, type) { - const ifaceTypeNames = Object.create(null); - - for (const iface of type.getInterfaces()) { - if (!isInterfaceType(iface)) { - context.reportError( - `Type ${inspect$2(type)} must only implement Interface types, ` + - `it cannot implement ${inspect$2(iface)}.`, - getAllImplementsInterfaceNodes(type, iface), - ); - continue; - } - - if (type === iface) { - context.reportError( - `Type ${type.name} cannot implement itself because it would create a circular reference.`, - getAllImplementsInterfaceNodes(type, iface), - ); - continue; - } - - if (ifaceTypeNames[iface.name]) { - context.reportError( - `Type ${type.name} can only implement ${iface.name} once.`, - getAllImplementsInterfaceNodes(type, iface), - ); - continue; - } - - ifaceTypeNames[iface.name] = true; - validateTypeImplementsAncestors(context, type, iface); - validateTypeImplementsInterface(context, type, iface); - } - } - - function validateTypeImplementsInterface(context, type, iface) { - const typeFieldMap = type.getFields(); // Assert each interface field is implemented. - - for (const ifaceField of Object.values(iface.getFields())) { - const fieldName = ifaceField.name; - const typeField = typeFieldMap[fieldName]; // Assert interface field exists on type. - - if (!typeField) { - context.reportError( - `Interface field ${iface.name}.${fieldName} expected but ${type.name} does not provide it.`, - [ifaceField.astNode, type.astNode, ...type.extensionASTNodes], - ); - continue; - } // Assert interface field type is satisfied by type field type, by being - // a valid subtype. (covariant) - - if (!isTypeSubTypeOf(context.schema, typeField.type, ifaceField.type)) { - var _ifaceField$astNode, _typeField$astNode; - - context.reportError( - `Interface field ${iface.name}.${fieldName} expects type ` + - `${inspect$2(ifaceField.type)} but ${type.name}.${fieldName} ` + - `is type ${inspect$2(typeField.type)}.`, - [ - (_ifaceField$astNode = ifaceField.astNode) === null || - _ifaceField$astNode === void 0 - ? void 0 - : _ifaceField$astNode.type, - (_typeField$astNode = typeField.astNode) === null || - _typeField$astNode === void 0 - ? void 0 - : _typeField$astNode.type, - ], - ); - } // Assert each interface field arg is implemented. - - for (const ifaceArg of ifaceField.args) { - const argName = ifaceArg.name; - const typeArg = typeField.args.find((arg) => arg.name === argName); // Assert interface field arg exists on object field. - - if (!typeArg) { - context.reportError( - `Interface field argument ${iface.name}.${fieldName}(${argName}:) expected but ${type.name}.${fieldName} does not provide it.`, - [ifaceArg.astNode, typeField.astNode], - ); - continue; - } // Assert interface field arg type matches object field arg type. - // (invariant) - // TODO: change to contravariant? - - if (!isEqualType(ifaceArg.type, typeArg.type)) { - var _ifaceArg$astNode, _typeArg$astNode; - - context.reportError( - `Interface field argument ${iface.name}.${fieldName}(${argName}:) ` + - `expects type ${inspect$2(ifaceArg.type)} but ` + - `${type.name}.${fieldName}(${argName}:) is type ` + - `${inspect$2(typeArg.type)}.`, - [ - (_ifaceArg$astNode = ifaceArg.astNode) === null || - _ifaceArg$astNode === void 0 - ? void 0 - : _ifaceArg$astNode.type, - (_typeArg$astNode = typeArg.astNode) === null || - _typeArg$astNode === void 0 - ? void 0 - : _typeArg$astNode.type, - ], - ); - } // TODO: validate default values? - } // Assert additional arguments must not be required. - - for (const typeArg of typeField.args) { - const argName = typeArg.name; - const ifaceArg = ifaceField.args.find((arg) => arg.name === argName); - - if (!ifaceArg && isRequiredArgument(typeArg)) { - context.reportError( - `Object field ${type.name}.${fieldName} includes required argument ${argName} that is missing from the Interface field ${iface.name}.${fieldName}.`, - [typeArg.astNode, ifaceField.astNode], - ); - } - } - } - } - - function validateTypeImplementsAncestors(context, type, iface) { - const ifaceInterfaces = type.getInterfaces(); - - for (const transitive of iface.getInterfaces()) { - if (!ifaceInterfaces.includes(transitive)) { - context.reportError( - transitive === type - ? `Type ${type.name} cannot implement ${iface.name} because it would create a circular reference.` - : `Type ${type.name} must implement ${transitive.name} because it is implemented by ${iface.name}.`, - [ - ...getAllImplementsInterfaceNodes(iface, transitive), - ...getAllImplementsInterfaceNodes(type, iface), - ], - ); - } - } - } - - function validateUnionMembers(context, union) { - const memberTypes = union.getTypes(); - - if (memberTypes.length === 0) { - context.reportError( - `Union type ${union.name} must define one or more member types.`, - [union.astNode, ...union.extensionASTNodes], - ); - } - - const includedTypeNames = Object.create(null); - - for (const memberType of memberTypes) { - if (includedTypeNames[memberType.name]) { - context.reportError( - `Union type ${union.name} can only include type ${memberType.name} once.`, - getUnionMemberTypeNodes(union, memberType.name), - ); - continue; - } - - includedTypeNames[memberType.name] = true; - - if (!isObjectType(memberType)) { - context.reportError( - `Union type ${union.name} can only include Object types, ` + - `it cannot include ${inspect$2(memberType)}.`, - getUnionMemberTypeNodes(union, String(memberType)), - ); - } - } - } - - function validateEnumValues(context, enumType) { - const enumValues = enumType.getValues(); - - if (enumValues.length === 0) { - context.reportError( - `Enum type ${enumType.name} must define one or more values.`, - [enumType.astNode, ...enumType.extensionASTNodes], - ); - } - - for (const enumValue of enumValues) { - // Ensure valid name. - validateName(context, enumValue); - } - } - - function validateInputFields(context, inputObj) { - const fields = Object.values(inputObj.getFields()); - - if (fields.length === 0) { - context.reportError( - `Input Object type ${inputObj.name} must define one or more fields.`, - [inputObj.astNode, ...inputObj.extensionASTNodes], - ); - } // Ensure the arguments are valid - - for (const field of fields) { - // Ensure they are named correctly. - validateName(context, field); // Ensure the type is an input type - - if (!isInputType(field.type)) { - var _field$astNode2; - - context.reportError( - `The type of ${inputObj.name}.${field.name} must be Input Type ` + - `but got: ${inspect$2(field.type)}.`, - (_field$astNode2 = field.astNode) === null || _field$astNode2 === void 0 - ? void 0 - : _field$astNode2.type, - ); - } - - if (isRequiredInputField(field) && field.deprecationReason != null) { - var _field$astNode3; - - context.reportError( - `Required input field ${inputObj.name}.${field.name} cannot be deprecated.`, - [ - getDeprecatedDirectiveNode(field.astNode), - (_field$astNode3 = field.astNode) === null || - _field$astNode3 === void 0 - ? void 0 - : _field$astNode3.type, - ], - ); - } - } - } - - function createInputObjectCircularRefsValidator(context) { - // Modified copy of algorithm from 'src/validation/rules/NoFragmentCycles.js'. - // Tracks already visited types to maintain O(N) and to ensure that cycles - // are not redundantly reported. - const visitedTypes = Object.create(null); // Array of types nodes used to produce meaningful errors - - const fieldPath = []; // Position in the type path - - const fieldPathIndexByTypeName = Object.create(null); - return detectCycleRecursive; // This does a straight-forward DFS to find cycles. - // It does not terminate when a cycle was found but continues to explore - // the graph to find all possible cycles. - - function detectCycleRecursive(inputObj) { - if (visitedTypes[inputObj.name]) { - return; - } - - visitedTypes[inputObj.name] = true; - fieldPathIndexByTypeName[inputObj.name] = fieldPath.length; - const fields = Object.values(inputObj.getFields()); - - for (const field of fields) { - if (isNonNullType(field.type) && isInputObjectType(field.type.ofType)) { - const fieldType = field.type.ofType; - const cycleIndex = fieldPathIndexByTypeName[fieldType.name]; - fieldPath.push(field); - - if (cycleIndex === undefined) { - detectCycleRecursive(fieldType); - } else { - const cyclePath = fieldPath.slice(cycleIndex); - const pathStr = cyclePath.map((fieldObj) => fieldObj.name).join('.'); - context.reportError( - `Cannot reference Input Object "${fieldType.name}" within itself through a series of non-null fields: "${pathStr}".`, - cyclePath.map((fieldObj) => fieldObj.astNode), - ); - } - - fieldPath.pop(); - } - } - - fieldPathIndexByTypeName[inputObj.name] = undefined; - } - } - - function getAllImplementsInterfaceNodes(type, iface) { - const { astNode, extensionASTNodes } = type; - const nodes = - astNode != null ? [astNode, ...extensionASTNodes] : extensionASTNodes; // FIXME: https://github.com/graphql/graphql-js/issues/2203 - - return nodes - .flatMap((typeNode) => { - var _typeNode$interfaces; - - return ( - /* c8 ignore next */ - (_typeNode$interfaces = typeNode.interfaces) !== null && - _typeNode$interfaces !== void 0 - ? _typeNode$interfaces - : [] - ); - }) - .filter((ifaceNode) => ifaceNode.name.value === iface.name); - } - - function getUnionMemberTypeNodes(union, typeName) { - const { astNode, extensionASTNodes } = union; - const nodes = - astNode != null ? [astNode, ...extensionASTNodes] : extensionASTNodes; // FIXME: https://github.com/graphql/graphql-js/issues/2203 - - return nodes - .flatMap((unionNode) => { - var _unionNode$types; - - return ( - /* c8 ignore next */ - (_unionNode$types = unionNode.types) !== null && - _unionNode$types !== void 0 - ? _unionNode$types - : [] - ); - }) - .filter((typeNode) => typeNode.name.value === typeName); - } - - function getDeprecatedDirectiveNode(definitionNode) { - var _definitionNode$direc; - - return definitionNode === null || definitionNode === void 0 - ? void 0 - : (_definitionNode$direc = definitionNode.directives) === null || - _definitionNode$direc === void 0 - ? void 0 - : _definitionNode$direc.find( - (node) => node.name.value === GraphQLDeprecatedDirective.name, - ); - } - - function typeFromAST(schema, typeNode) { - switch (typeNode.kind) { - case Kind.LIST_TYPE: { - const innerType = typeFromAST(schema, typeNode.type); - return innerType && new GraphQLList(innerType); - } - - case Kind.NON_NULL_TYPE: { - const innerType = typeFromAST(schema, typeNode.type); - return innerType && new GraphQLNonNull(innerType); - } - - case Kind.NAMED_TYPE: - return schema.getType(typeNode.name.value); - } - } - - /** - * TypeInfo is a utility class which, given a GraphQL schema, can keep track - * of the current field and type definitions at any point in a GraphQL document - * AST during a recursive descent by calling `enter(node)` and `leave(node)`. - */ - - class TypeInfo { - constructor( - schema, - /** - * Initial type may be provided in rare cases to facilitate traversals - * beginning somewhere other than documents. - */ - initialType, - /** @deprecated will be removed in 17.0.0 */ - getFieldDefFn, - ) { - this._schema = schema; - this._typeStack = []; - this._parentTypeStack = []; - this._inputTypeStack = []; - this._fieldDefStack = []; - this._defaultValueStack = []; - this._directive = null; - this._argument = null; - this._enumValue = null; - this._getFieldDef = - getFieldDefFn !== null && getFieldDefFn !== void 0 - ? getFieldDefFn - : getFieldDef$1; - - if (initialType) { - if (isInputType(initialType)) { - this._inputTypeStack.push(initialType); - } - - if (isCompositeType(initialType)) { - this._parentTypeStack.push(initialType); - } - - if (isOutputType(initialType)) { - this._typeStack.push(initialType); - } - } - } - - get [Symbol.toStringTag]() { - return 'TypeInfo'; - } - - getType() { - if (this._typeStack.length > 0) { - return this._typeStack[this._typeStack.length - 1]; - } - } - - getParentType() { - if (this._parentTypeStack.length > 0) { - return this._parentTypeStack[this._parentTypeStack.length - 1]; - } - } - - getInputType() { - if (this._inputTypeStack.length > 0) { - return this._inputTypeStack[this._inputTypeStack.length - 1]; - } - } - - getParentInputType() { - if (this._inputTypeStack.length > 1) { - return this._inputTypeStack[this._inputTypeStack.length - 2]; - } - } - - getFieldDef() { - if (this._fieldDefStack.length > 0) { - return this._fieldDefStack[this._fieldDefStack.length - 1]; - } - } - - getDefaultValue() { - if (this._defaultValueStack.length > 0) { - return this._defaultValueStack[this._defaultValueStack.length - 1]; - } - } - - getDirective() { - return this._directive; - } - - getArgument() { - return this._argument; - } - - getEnumValue() { - return this._enumValue; - } - - enter(node) { - const schema = this._schema; // Note: many of the types below are explicitly typed as "unknown" to drop - // any assumptions of a valid schema to ensure runtime types are properly - // checked before continuing since TypeInfo is used as part of validation - // which occurs before guarantees of schema and document validity. - - switch (node.kind) { - case Kind.SELECTION_SET: { - const namedType = getNamedType(this.getType()); - - this._parentTypeStack.push( - isCompositeType(namedType) ? namedType : undefined, - ); - - break; - } - - case Kind.FIELD: { - const parentType = this.getParentType(); - let fieldDef; - let fieldType; - - if (parentType) { - fieldDef = this._getFieldDef(schema, parentType, node); - - if (fieldDef) { - fieldType = fieldDef.type; - } - } - - this._fieldDefStack.push(fieldDef); - - this._typeStack.push(isOutputType(fieldType) ? fieldType : undefined); - - break; - } - - case Kind.DIRECTIVE: - this._directive = schema.getDirective(node.name.value); - break; - - case Kind.OPERATION_DEFINITION: { - const rootType = schema.getRootType(node.operation); - - this._typeStack.push(isObjectType(rootType) ? rootType : undefined); - - break; - } - - case Kind.INLINE_FRAGMENT: - case Kind.FRAGMENT_DEFINITION: { - const typeConditionAST = node.typeCondition; - const outputType = typeConditionAST - ? typeFromAST(schema, typeConditionAST) - : getNamedType(this.getType()); - - this._typeStack.push(isOutputType(outputType) ? outputType : undefined); - - break; - } - - case Kind.VARIABLE_DEFINITION: { - const inputType = typeFromAST(schema, node.type); - - this._inputTypeStack.push( - isInputType(inputType) ? inputType : undefined, - ); - - break; - } - - case Kind.ARGUMENT: { - var _this$getDirective; - - let argDef; - let argType; - const fieldOrDirective = - (_this$getDirective = this.getDirective()) !== null && - _this$getDirective !== void 0 - ? _this$getDirective - : this.getFieldDef(); - - if (fieldOrDirective) { - argDef = fieldOrDirective.args.find( - (arg) => arg.name === node.name.value, - ); - - if (argDef) { - argType = argDef.type; - } - } - - this._argument = argDef; - - this._defaultValueStack.push(argDef ? argDef.defaultValue : undefined); - - this._inputTypeStack.push(isInputType(argType) ? argType : undefined); - - break; - } - - case Kind.LIST: { - const listType = getNullableType(this.getInputType()); - const itemType = isListType(listType) ? listType.ofType : listType; // List positions never have a default value. - - this._defaultValueStack.push(undefined); - - this._inputTypeStack.push(isInputType(itemType) ? itemType : undefined); - - break; - } - - case Kind.OBJECT_FIELD: { - const objectType = getNamedType(this.getInputType()); - let inputFieldType; - let inputField; - - if (isInputObjectType(objectType)) { - inputField = objectType.getFields()[node.name.value]; - - if (inputField) { - inputFieldType = inputField.type; - } - } - - this._defaultValueStack.push( - inputField ? inputField.defaultValue : undefined, - ); - - this._inputTypeStack.push( - isInputType(inputFieldType) ? inputFieldType : undefined, - ); - - break; - } - - case Kind.ENUM: { - const enumType = getNamedType(this.getInputType()); - let enumValue; - - if (isEnumType(enumType)) { - enumValue = enumType.getValue(node.value); - } - - this._enumValue = enumValue; - break; - } - } - } - - leave(node) { - switch (node.kind) { - case Kind.SELECTION_SET: - this._parentTypeStack.pop(); - - break; - - case Kind.FIELD: - this._fieldDefStack.pop(); - - this._typeStack.pop(); - - break; - - case Kind.DIRECTIVE: - this._directive = null; - break; - - case Kind.OPERATION_DEFINITION: - case Kind.INLINE_FRAGMENT: - case Kind.FRAGMENT_DEFINITION: - this._typeStack.pop(); - - break; - - case Kind.VARIABLE_DEFINITION: - this._inputTypeStack.pop(); - - break; - - case Kind.ARGUMENT: - this._argument = null; - - this._defaultValueStack.pop(); - - this._inputTypeStack.pop(); - - break; - - case Kind.LIST: - case Kind.OBJECT_FIELD: - this._defaultValueStack.pop(); - - this._inputTypeStack.pop(); - - break; - - case Kind.ENUM: - this._enumValue = null; - break; - } - } - } - - /** - * Not exactly the same as the executor's definition of getFieldDef, in this - * statically evaluated environment we do not always have an Object type, - * and need to handle Interface and Union types. - */ - function getFieldDef$1(schema, parentType, fieldNode) { - const name = fieldNode.name.value; - - if ( - name === SchemaMetaFieldDef.name && - schema.getQueryType() === parentType - ) { - return SchemaMetaFieldDef; - } - - if (name === TypeMetaFieldDef.name && schema.getQueryType() === parentType) { - return TypeMetaFieldDef; - } - - if (name === TypeNameMetaFieldDef.name && isCompositeType(parentType)) { - return TypeNameMetaFieldDef; - } - - if (isObjectType(parentType) || isInterfaceType(parentType)) { - return parentType.getFields()[name]; - } - } - /** - * Creates a new visitor instance which maintains a provided TypeInfo instance - * along with visiting visitor. - */ - - function visitWithTypeInfo(typeInfo, visitor) { - return { - enter(...args) { - const node = args[0]; - typeInfo.enter(node); - const fn = getEnterLeaveForKind(visitor, node.kind).enter; - - if (fn) { - const result = fn.apply(visitor, args); - - if (result !== undefined) { - typeInfo.leave(node); - - if (isNode(result)) { - typeInfo.enter(result); - } - } - - return result; - } - }, - - leave(...args) { - const node = args[0]; - const fn = getEnterLeaveForKind(visitor, node.kind).leave; - let result; - - if (fn) { - result = fn.apply(visitor, args); - } - - typeInfo.leave(node); - return result; - }, - }; - } - - function isDefinitionNode(node) { - return ( - isExecutableDefinitionNode(node) || - isTypeSystemDefinitionNode(node) || - isTypeSystemExtensionNode(node) - ); - } - function isExecutableDefinitionNode(node) { - return ( - node.kind === Kind.OPERATION_DEFINITION || - node.kind === Kind.FRAGMENT_DEFINITION - ); - } - function isSelectionNode(node) { - return ( - node.kind === Kind.FIELD || - node.kind === Kind.FRAGMENT_SPREAD || - node.kind === Kind.INLINE_FRAGMENT - ); - } - function isValueNode(node) { - return ( - node.kind === Kind.VARIABLE || - node.kind === Kind.INT || - node.kind === Kind.FLOAT || - node.kind === Kind.STRING || - node.kind === Kind.BOOLEAN || - node.kind === Kind.NULL || - node.kind === Kind.ENUM || - node.kind === Kind.LIST || - node.kind === Kind.OBJECT - ); - } - function isConstValueNode(node) { - return ( - isValueNode(node) && - (node.kind === Kind.LIST - ? node.values.some(isConstValueNode) - : node.kind === Kind.OBJECT - ? node.fields.some((field) => isConstValueNode(field.value)) - : node.kind !== Kind.VARIABLE) - ); - } - function isTypeNode(node) { - return ( - node.kind === Kind.NAMED_TYPE || - node.kind === Kind.LIST_TYPE || - node.kind === Kind.NON_NULL_TYPE - ); - } - function isTypeSystemDefinitionNode(node) { - return ( - node.kind === Kind.SCHEMA_DEFINITION || - isTypeDefinitionNode(node) || - node.kind === Kind.DIRECTIVE_DEFINITION - ); - } - function isTypeDefinitionNode(node) { - return ( - node.kind === Kind.SCALAR_TYPE_DEFINITION || - node.kind === Kind.OBJECT_TYPE_DEFINITION || - node.kind === Kind.INTERFACE_TYPE_DEFINITION || - node.kind === Kind.UNION_TYPE_DEFINITION || - node.kind === Kind.ENUM_TYPE_DEFINITION || - node.kind === Kind.INPUT_OBJECT_TYPE_DEFINITION - ); - } - function isTypeSystemExtensionNode(node) { - return node.kind === Kind.SCHEMA_EXTENSION || isTypeExtensionNode(node); - } - function isTypeExtensionNode(node) { - return ( - node.kind === Kind.SCALAR_TYPE_EXTENSION || - node.kind === Kind.OBJECT_TYPE_EXTENSION || - node.kind === Kind.INTERFACE_TYPE_EXTENSION || - node.kind === Kind.UNION_TYPE_EXTENSION || - node.kind === Kind.ENUM_TYPE_EXTENSION || - node.kind === Kind.INPUT_OBJECT_TYPE_EXTENSION - ); - } - - /** - * Executable definitions - * - * A GraphQL document is only valid for execution if all definitions are either - * operation or fragment definitions. - * - * See https://spec.graphql.org/draft/#sec-Executable-Definitions - */ - function ExecutableDefinitionsRule(context) { - return { - Document(node) { - for (const definition of node.definitions) { - if (!isExecutableDefinitionNode(definition)) { - const defName = - definition.kind === Kind.SCHEMA_DEFINITION || - definition.kind === Kind.SCHEMA_EXTENSION - ? 'schema' - : '"' + definition.name.value + '"'; - context.reportError( - new GraphQLError( - `The ${defName} definition is not executable.`, - definition, - ), - ); - } - } - - return false; - }, - }; - } - - /** - * Fields on correct type - * - * A GraphQL document is only valid if all fields selected are defined by the - * parent type, or are an allowed meta field such as __typename. - * - * See https://spec.graphql.org/draft/#sec-Field-Selections - */ - function FieldsOnCorrectTypeRule(context) { - return { - Field(node) { - const type = context.getParentType(); - - if (type) { - const fieldDef = context.getFieldDef(); - - if (!fieldDef) { - // This field doesn't exist, lets look for suggestions. - const schema = context.getSchema(); - const fieldName = node.name.value; // First determine if there are any suggested types to condition on. - - let suggestion = didYouMean$1( - 'to use an inline fragment on', - getSuggestedTypeNames(schema, type, fieldName), - ); // If there are no suggested types, then perhaps this was a typo? - - if (suggestion === '') { - suggestion = didYouMean$1(getSuggestedFieldNames(type, fieldName)); - } // Report an error, including helpful suggestions. - - context.reportError( - new GraphQLError( - `Cannot query field "${fieldName}" on type "${type.name}".` + - suggestion, - node, - ), - ); - } - } - }, - }; - } - /** - * Go through all of the implementations of type, as well as the interfaces that - * they implement. If any of those types include the provided field, suggest them, - * sorted by how often the type is referenced. - */ - - function getSuggestedTypeNames(schema, type, fieldName) { - if (!isAbstractType(type)) { - // Must be an Object type, which does not have possible fields. - return []; - } - - const suggestedTypes = new Set(); - const usageCount = Object.create(null); - - for (const possibleType of schema.getPossibleTypes(type)) { - if (!possibleType.getFields()[fieldName]) { - continue; - } // This object type defines this field. - - suggestedTypes.add(possibleType); - usageCount[possibleType.name] = 1; - - for (const possibleInterface of possibleType.getInterfaces()) { - var _usageCount$possibleI; - - if (!possibleInterface.getFields()[fieldName]) { - continue; - } // This interface type defines this field. - - suggestedTypes.add(possibleInterface); - usageCount[possibleInterface.name] = - ((_usageCount$possibleI = usageCount[possibleInterface.name]) !== - null && _usageCount$possibleI !== void 0 - ? _usageCount$possibleI - : 0) + 1; - } - } - - return [...suggestedTypes] - .sort((typeA, typeB) => { - // Suggest both interface and object types based on how common they are. - const usageCountDiff = usageCount[typeB.name] - usageCount[typeA.name]; - - if (usageCountDiff !== 0) { - return usageCountDiff; - } // Suggest super types first followed by subtypes - - if (isInterfaceType(typeA) && schema.isSubType(typeA, typeB)) { - return -1; - } - - if (isInterfaceType(typeB) && schema.isSubType(typeB, typeA)) { - return 1; - } - - return naturalCompare(typeA.name, typeB.name); - }) - .map((x) => x.name); - } - /** - * For the field name provided, determine if there are any similar field names - * that may be the result of a typo. - */ - - function getSuggestedFieldNames(type, fieldName) { - if (isObjectType(type) || isInterfaceType(type)) { - const possibleFieldNames = Object.keys(type.getFields()); - return suggestionList$1(fieldName, possibleFieldNames); - } // Otherwise, must be a Union type, which does not define fields. - - return []; - } - - /** - * Fragments on composite type - * - * Fragments use a type condition to determine if they apply, since fragments - * can only be spread into a composite type (object, interface, or union), the - * type condition must also be a composite type. - * - * See https://spec.graphql.org/draft/#sec-Fragments-On-Composite-Types - */ - function FragmentsOnCompositeTypesRule(context) { - return { - InlineFragment(node) { - const typeCondition = node.typeCondition; - - if (typeCondition) { - const type = typeFromAST(context.getSchema(), typeCondition); - - if (type && !isCompositeType(type)) { - const typeStr = print$1(typeCondition); - context.reportError( - new GraphQLError( - `Fragment cannot condition on non composite type "${typeStr}".`, - typeCondition, - ), - ); - } - } - }, - - FragmentDefinition(node) { - const type = typeFromAST(context.getSchema(), node.typeCondition); - - if (type && !isCompositeType(type)) { - const typeStr = print$1(node.typeCondition); - context.reportError( - new GraphQLError( - `Fragment "${node.name.value}" cannot condition on non composite type "${typeStr}".`, - node.typeCondition, - ), - ); - } - }, - }; - } - - /** - * Known argument names - * - * A GraphQL field is only valid if all supplied arguments are defined by - * that field. - * - * See https://spec.graphql.org/draft/#sec-Argument-Names - * See https://spec.graphql.org/draft/#sec-Directives-Are-In-Valid-Locations - */ - function KnownArgumentNamesRule(context) { - return { - // eslint-disable-next-line new-cap - ...KnownArgumentNamesOnDirectivesRule(context), - - Argument(argNode) { - const argDef = context.getArgument(); - const fieldDef = context.getFieldDef(); - const parentType = context.getParentType(); - - if (!argDef && fieldDef && parentType) { - const argName = argNode.name.value; - const knownArgsNames = fieldDef.args.map((arg) => arg.name); - const suggestions = suggestionList$1(argName, knownArgsNames); - context.reportError( - new GraphQLError( - `Unknown argument "${argName}" on field "${parentType.name}.${fieldDef.name}".` + - didYouMean$1(suggestions), - argNode, - ), - ); - } - }, - }; - } - /** - * @internal - */ - - function KnownArgumentNamesOnDirectivesRule(context) { - const directiveArgs = Object.create(null); - const schema = context.getSchema(); - const definedDirectives = schema - ? schema.getDirectives() - : specifiedDirectives; - - for (const directive of definedDirectives) { - directiveArgs[directive.name] = directive.args.map((arg) => arg.name); - } - - const astDefinitions = context.getDocument().definitions; - - for (const def of astDefinitions) { - if (def.kind === Kind.DIRECTIVE_DEFINITION) { - var _def$arguments; - - // FIXME: https://github.com/graphql/graphql-js/issues/2203 - - /* c8 ignore next */ - const argsNodes = - (_def$arguments = def.arguments) !== null && _def$arguments !== void 0 - ? _def$arguments - : []; - directiveArgs[def.name.value] = argsNodes.map((arg) => arg.name.value); - } - } - - return { - Directive(directiveNode) { - const directiveName = directiveNode.name.value; - const knownArgs = directiveArgs[directiveName]; - - if (directiveNode.arguments && knownArgs) { - for (const argNode of directiveNode.arguments) { - const argName = argNode.name.value; - - if (!knownArgs.includes(argName)) { - const suggestions = suggestionList$1(argName, knownArgs); - context.reportError( - new GraphQLError( - `Unknown argument "${argName}" on directive "@${directiveName}".` + - didYouMean$1(suggestions), - argNode, - ), - ); - } - } - } - - return false; - }, - }; - } - - /** - * Known directives - * - * A GraphQL document is only valid if all `@directives` are known by the - * schema and legally positioned. - * - * See https://spec.graphql.org/draft/#sec-Directives-Are-Defined - */ - function KnownDirectivesRule(context) { - const locationsMap = Object.create(null); - const schema = context.getSchema(); - const definedDirectives = schema - ? schema.getDirectives() - : specifiedDirectives; - - for (const directive of definedDirectives) { - locationsMap[directive.name] = directive.locations; - } - - const astDefinitions = context.getDocument().definitions; - - for (const def of astDefinitions) { - if (def.kind === Kind.DIRECTIVE_DEFINITION) { - locationsMap[def.name.value] = def.locations.map((name) => name.value); - } - } - - return { - Directive(node, _key, _parent, _path, ancestors) { - const name = node.name.value; - const locations = locationsMap[name]; - - if (!locations) { - context.reportError( - new GraphQLError(`Unknown directive "@${name}".`, node), - ); - return; - } - - const candidateLocation = getDirectiveLocationForASTPath(ancestors); - - if (candidateLocation && !locations.includes(candidateLocation)) { - context.reportError( - new GraphQLError( - `Directive "@${name}" may not be used on ${candidateLocation}.`, - node, - ), - ); - } - }, - }; - } - - function getDirectiveLocationForASTPath(ancestors) { - const appliedTo = ancestors[ancestors.length - 1]; - 'kind' in appliedTo || invariant(false); - - switch (appliedTo.kind) { - case Kind.OPERATION_DEFINITION: - return getDirectiveLocationForOperation(appliedTo.operation); - - case Kind.FIELD: - return DirectiveLocation.FIELD; - - case Kind.FRAGMENT_SPREAD: - return DirectiveLocation.FRAGMENT_SPREAD; - - case Kind.INLINE_FRAGMENT: - return DirectiveLocation.INLINE_FRAGMENT; - - case Kind.FRAGMENT_DEFINITION: - return DirectiveLocation.FRAGMENT_DEFINITION; - - case Kind.VARIABLE_DEFINITION: - return DirectiveLocation.VARIABLE_DEFINITION; - - case Kind.SCHEMA_DEFINITION: - case Kind.SCHEMA_EXTENSION: - return DirectiveLocation.SCHEMA; - - case Kind.SCALAR_TYPE_DEFINITION: - case Kind.SCALAR_TYPE_EXTENSION: - return DirectiveLocation.SCALAR; - - case Kind.OBJECT_TYPE_DEFINITION: - case Kind.OBJECT_TYPE_EXTENSION: - return DirectiveLocation.OBJECT; - - case Kind.FIELD_DEFINITION: - return DirectiveLocation.FIELD_DEFINITION; - - case Kind.INTERFACE_TYPE_DEFINITION: - case Kind.INTERFACE_TYPE_EXTENSION: - return DirectiveLocation.INTERFACE; - - case Kind.UNION_TYPE_DEFINITION: - case Kind.UNION_TYPE_EXTENSION: - return DirectiveLocation.UNION; - - case Kind.ENUM_TYPE_DEFINITION: - case Kind.ENUM_TYPE_EXTENSION: - return DirectiveLocation.ENUM; - - case Kind.ENUM_VALUE_DEFINITION: - return DirectiveLocation.ENUM_VALUE; - - case Kind.INPUT_OBJECT_TYPE_DEFINITION: - case Kind.INPUT_OBJECT_TYPE_EXTENSION: - return DirectiveLocation.INPUT_OBJECT; - - case Kind.INPUT_VALUE_DEFINITION: { - const parentNode = ancestors[ancestors.length - 3]; - 'kind' in parentNode || invariant(false); - return parentNode.kind === Kind.INPUT_OBJECT_TYPE_DEFINITION - ? DirectiveLocation.INPUT_FIELD_DEFINITION - : DirectiveLocation.ARGUMENT_DEFINITION; - } - // Not reachable, all possible types have been considered. - - /* c8 ignore next */ - - default: - invariant(false, 'Unexpected kind: ' + inspect$2(appliedTo.kind)); - } - } - - function getDirectiveLocationForOperation(operation) { - switch (operation) { - case OperationTypeNode.QUERY: - return DirectiveLocation.QUERY; - - case OperationTypeNode.MUTATION: - return DirectiveLocation.MUTATION; - - case OperationTypeNode.SUBSCRIPTION: - return DirectiveLocation.SUBSCRIPTION; - } - } - - /** - * Known fragment names - * - * A GraphQL document is only valid if all `...Fragment` fragment spreads refer - * to fragments defined in the same document. - * - * See https://spec.graphql.org/draft/#sec-Fragment-spread-target-defined - */ - function KnownFragmentNamesRule(context) { - return { - FragmentSpread(node) { - const fragmentName = node.name.value; - const fragment = context.getFragment(fragmentName); - - if (!fragment) { - context.reportError( - new GraphQLError(`Unknown fragment "${fragmentName}".`, node.name), - ); - } - }, - }; - } - - /** - * Known type names - * - * A GraphQL document is only valid if referenced types (specifically - * variable definitions and fragment conditions) are defined by the type schema. - * - * See https://spec.graphql.org/draft/#sec-Fragment-Spread-Type-Existence - */ - function KnownTypeNamesRule(context) { - const schema = context.getSchema(); - const existingTypesMap = schema ? schema.getTypeMap() : Object.create(null); - const definedTypes = Object.create(null); - - for (const def of context.getDocument().definitions) { - if (isTypeDefinitionNode(def)) { - definedTypes[def.name.value] = true; - } - } - - const typeNames = [ - ...Object.keys(existingTypesMap), - ...Object.keys(definedTypes), - ]; - return { - NamedType(node, _1, parent, _2, ancestors) { - const typeName = node.name.value; - - if (!existingTypesMap[typeName] && !definedTypes[typeName]) { - var _ancestors$; - - const definitionNode = - (_ancestors$ = ancestors[2]) !== null && _ancestors$ !== void 0 - ? _ancestors$ - : parent; - const isSDL = definitionNode != null && isSDLNode$1(definitionNode); - - if (isSDL && standardTypeNames$1.includes(typeName)) { - return; - } - - const suggestedTypes = suggestionList$1( - typeName, - isSDL ? standardTypeNames$1.concat(typeNames) : typeNames, - ); - context.reportError( - new GraphQLError( - `Unknown type "${typeName}".` + didYouMean$1(suggestedTypes), - node, - ), - ); - } - }, - }; - } - const standardTypeNames$1 = [...specifiedScalarTypes, ...introspectionTypes].map( - (type) => type.name, - ); - - function isSDLNode$1(value) { - return ( - 'kind' in value && - (isTypeSystemDefinitionNode(value) || isTypeSystemExtensionNode(value)) - ); - } - - /** - * Lone anonymous operation - * - * A GraphQL document is only valid if when it contains an anonymous operation - * (the query short-hand) that it contains only that one operation definition. - * - * See https://spec.graphql.org/draft/#sec-Lone-Anonymous-Operation - */ - function LoneAnonymousOperationRule(context) { - let operationCount = 0; - return { - Document(node) { - operationCount = node.definitions.filter( - (definition) => definition.kind === Kind.OPERATION_DEFINITION, - ).length; - }, - - OperationDefinition(node) { - if (!node.name && operationCount > 1) { - context.reportError( - new GraphQLError( - 'This anonymous operation must be the only defined operation.', - node, - ), - ); - } - }, - }; - } - - /** - * Lone Schema definition - * - * A GraphQL document is only valid if it contains only one schema definition. - */ - function LoneSchemaDefinitionRule(context) { - var _ref, _ref2, _oldSchema$astNode; - - const oldSchema = context.getSchema(); - const alreadyDefined = - (_ref = - (_ref2 = - (_oldSchema$astNode = - oldSchema === null || oldSchema === void 0 - ? void 0 - : oldSchema.astNode) !== null && _oldSchema$astNode !== void 0 - ? _oldSchema$astNode - : oldSchema === null || oldSchema === void 0 - ? void 0 - : oldSchema.getQueryType()) !== null && _ref2 !== void 0 - ? _ref2 - : oldSchema === null || oldSchema === void 0 - ? void 0 - : oldSchema.getMutationType()) !== null && _ref !== void 0 - ? _ref - : oldSchema === null || oldSchema === void 0 - ? void 0 - : oldSchema.getSubscriptionType(); - let schemaDefinitionsCount = 0; - return { - SchemaDefinition(node) { - if (alreadyDefined) { - context.reportError( - new GraphQLError( - 'Cannot define a new schema within a schema extension.', - node, - ), - ); - return; - } - - if (schemaDefinitionsCount > 0) { - context.reportError( - new GraphQLError('Must provide only one schema definition.', node), - ); - } - - ++schemaDefinitionsCount; - }, - }; - } - - /** - * No fragment cycles - * - * The graph of fragment spreads must not form any cycles including spreading itself. - * Otherwise an operation could infinitely spread or infinitely execute on cycles in the underlying data. - * - * See https://spec.graphql.org/draft/#sec-Fragment-spreads-must-not-form-cycles - */ - function NoFragmentCyclesRule(context) { - // Tracks already visited fragments to maintain O(N) and to ensure that cycles - // are not redundantly reported. - const visitedFrags = Object.create(null); // Array of AST nodes used to produce meaningful errors - - const spreadPath = []; // Position in the spread path - - const spreadPathIndexByName = Object.create(null); - return { - OperationDefinition: () => false, - - FragmentDefinition(node) { - detectCycleRecursive(node); - return false; - }, - }; // This does a straight-forward DFS to find cycles. - // It does not terminate when a cycle was found but continues to explore - // the graph to find all possible cycles. - - function detectCycleRecursive(fragment) { - if (visitedFrags[fragment.name.value]) { - return; - } - - const fragmentName = fragment.name.value; - visitedFrags[fragmentName] = true; - const spreadNodes = context.getFragmentSpreads(fragment.selectionSet); - - if (spreadNodes.length === 0) { - return; - } - - spreadPathIndexByName[fragmentName] = spreadPath.length; - - for (const spreadNode of spreadNodes) { - const spreadName = spreadNode.name.value; - const cycleIndex = spreadPathIndexByName[spreadName]; - spreadPath.push(spreadNode); - - if (cycleIndex === undefined) { - const spreadFragment = context.getFragment(spreadName); - - if (spreadFragment) { - detectCycleRecursive(spreadFragment); - } - } else { - const cyclePath = spreadPath.slice(cycleIndex); - const viaPath = cyclePath - .slice(0, -1) - .map((s) => '"' + s.name.value + '"') - .join(', '); - context.reportError( - new GraphQLError( - `Cannot spread fragment "${spreadName}" within itself` + - (viaPath !== '' ? ` via ${viaPath}.` : '.'), - cyclePath, - ), - ); - } - - spreadPath.pop(); - } - - spreadPathIndexByName[fragmentName] = undefined; - } - } - - /** - * No undefined variables - * - * A GraphQL operation is only valid if all variables encountered, both directly - * and via fragment spreads, are defined by that operation. - * - * See https://spec.graphql.org/draft/#sec-All-Variable-Uses-Defined - */ - function NoUndefinedVariablesRule(context) { - let variableNameDefined = Object.create(null); - return { - OperationDefinition: { - enter() { - variableNameDefined = Object.create(null); - }, - - leave(operation) { - const usages = context.getRecursiveVariableUsages(operation); - - for (const { node } of usages) { - const varName = node.name.value; - - if (variableNameDefined[varName] !== true) { - context.reportError( - new GraphQLError( - operation.name - ? `Variable "$${varName}" is not defined by operation "${operation.name.value}".` - : `Variable "$${varName}" is not defined.`, - [node, operation], - ), - ); - } - } - }, - }, - - VariableDefinition(node) { - variableNameDefined[node.variable.name.value] = true; - }, - }; - } - - /** - * No unused fragments - * - * A GraphQL document is only valid if all fragment definitions are spread - * within operations, or spread within other fragments spread within operations. - * - * See https://spec.graphql.org/draft/#sec-Fragments-Must-Be-Used - */ - function NoUnusedFragmentsRule(context) { - const operationDefs = []; - const fragmentDefs = []; - return { - OperationDefinition(node) { - operationDefs.push(node); - return false; - }, - - FragmentDefinition(node) { - fragmentDefs.push(node); - return false; - }, - - Document: { - leave() { - const fragmentNameUsed = Object.create(null); - - for (const operation of operationDefs) { - for (const fragment of context.getRecursivelyReferencedFragments( - operation, - )) { - fragmentNameUsed[fragment.name.value] = true; - } - } - - for (const fragmentDef of fragmentDefs) { - const fragName = fragmentDef.name.value; - - if (fragmentNameUsed[fragName] !== true) { - context.reportError( - new GraphQLError( - `Fragment "${fragName}" is never used.`, - fragmentDef, - ), - ); - } - } - }, - }, - }; - } - - /** - * No unused variables - * - * A GraphQL operation is only valid if all variables defined by an operation - * are used, either directly or within a spread fragment. - * - * See https://spec.graphql.org/draft/#sec-All-Variables-Used - */ - function NoUnusedVariablesRule(context) { - let variableDefs = []; - return { - OperationDefinition: { - enter() { - variableDefs = []; - }, - - leave(operation) { - const variableNameUsed = Object.create(null); - const usages = context.getRecursiveVariableUsages(operation); - - for (const { node } of usages) { - variableNameUsed[node.name.value] = true; - } - - for (const variableDef of variableDefs) { - const variableName = variableDef.variable.name.value; - - if (variableNameUsed[variableName] !== true) { - context.reportError( - new GraphQLError( - operation.name - ? `Variable "$${variableName}" is never used in operation "${operation.name.value}".` - : `Variable "$${variableName}" is never used.`, - variableDef, - ), - ); - } - } - }, - }, - - VariableDefinition(def) { - variableDefs.push(def); - }, - }; - } - - /** - * Sort ValueNode. - * - * This function returns a sorted copy of the given ValueNode. - * - * @internal - */ - - function sortValueNode(valueNode) { - switch (valueNode.kind) { - case Kind.OBJECT: - return { ...valueNode, fields: sortFields(valueNode.fields) }; - - case Kind.LIST: - return { ...valueNode, values: valueNode.values.map(sortValueNode) }; - - case Kind.INT: - case Kind.FLOAT: - case Kind.STRING: - case Kind.BOOLEAN: - case Kind.NULL: - case Kind.ENUM: - case Kind.VARIABLE: - return valueNode; - } - } - - function sortFields(fields) { - return fields - .map((fieldNode) => ({ - ...fieldNode, - value: sortValueNode(fieldNode.value), - })) - .sort((fieldA, fieldB) => - naturalCompare(fieldA.name.value, fieldB.name.value), - ); - } - - function reasonMessage(reason) { - if (Array.isArray(reason)) { - return reason - .map( - ([responseName, subReason]) => - `subfields "${responseName}" conflict because ` + - reasonMessage(subReason), - ) - .join(' and '); - } - - return reason; - } - /** - * Overlapping fields can be merged - * - * A selection set is only valid if all fields (including spreading any - * fragments) either correspond to distinct response names or can be merged - * without ambiguity. - * - * See https://spec.graphql.org/draft/#sec-Field-Selection-Merging - */ - - function OverlappingFieldsCanBeMergedRule(context) { - // A memoization for when two fragments are compared "between" each other for - // conflicts. Two fragments may be compared many times, so memoizing this can - // dramatically improve the performance of this validator. - const comparedFragmentPairs = new PairSet(); // A cache for the "field map" and list of fragment names found in any given - // selection set. Selection sets may be asked for this information multiple - // times, so this improves the performance of this validator. - - const cachedFieldsAndFragmentNames = new Map(); - return { - SelectionSet(selectionSet) { - const conflicts = findConflictsWithinSelectionSet( - context, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - context.getParentType(), - selectionSet, - ); - - for (const [[responseName, reason], fields1, fields2] of conflicts) { - const reasonMsg = reasonMessage(reason); - context.reportError( - new GraphQLError( - `Fields "${responseName}" conflict because ${reasonMsg}. Use different aliases on the fields to fetch both if this was intentional.`, - fields1.concat(fields2), - ), - ); - } - }, - }; - } - - /** - * Algorithm: - * - * Conflicts occur when two fields exist in a query which will produce the same - * response name, but represent differing values, thus creating a conflict. - * The algorithm below finds all conflicts via making a series of comparisons - * between fields. In order to compare as few fields as possible, this makes - * a series of comparisons "within" sets of fields and "between" sets of fields. - * - * Given any selection set, a collection produces both a set of fields by - * also including all inline fragments, as well as a list of fragments - * referenced by fragment spreads. - * - * A) Each selection set represented in the document first compares "within" its - * collected set of fields, finding any conflicts between every pair of - * overlapping fields. - * Note: This is the *only time* that a the fields "within" a set are compared - * to each other. After this only fields "between" sets are compared. - * - * B) Also, if any fragment is referenced in a selection set, then a - * comparison is made "between" the original set of fields and the - * referenced fragment. - * - * C) Also, if multiple fragments are referenced, then comparisons - * are made "between" each referenced fragment. - * - * D) When comparing "between" a set of fields and a referenced fragment, first - * a comparison is made between each field in the original set of fields and - * each field in the the referenced set of fields. - * - * E) Also, if any fragment is referenced in the referenced selection set, - * then a comparison is made "between" the original set of fields and the - * referenced fragment (recursively referring to step D). - * - * F) When comparing "between" two fragments, first a comparison is made between - * each field in the first referenced set of fields and each field in the the - * second referenced set of fields. - * - * G) Also, any fragments referenced by the first must be compared to the - * second, and any fragments referenced by the second must be compared to the - * first (recursively referring to step F). - * - * H) When comparing two fields, if both have selection sets, then a comparison - * is made "between" both selection sets, first comparing the set of fields in - * the first selection set with the set of fields in the second. - * - * I) Also, if any fragment is referenced in either selection set, then a - * comparison is made "between" the other set of fields and the - * referenced fragment. - * - * J) Also, if two fragments are referenced in both selection sets, then a - * comparison is made "between" the two fragments. - * - */ - // Find all conflicts found "within" a selection set, including those found - // via spreading in fragments. Called when visiting each SelectionSet in the - // GraphQL Document. - function findConflictsWithinSelectionSet( - context, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - parentType, - selectionSet, - ) { - const conflicts = []; - const [fieldMap, fragmentNames] = getFieldsAndFragmentNames( - context, - cachedFieldsAndFragmentNames, - parentType, - selectionSet, - ); // (A) Find find all conflicts "within" the fields of this selection set. - // Note: this is the *only place* `collectConflictsWithin` is called. - - collectConflictsWithin( - context, - conflicts, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - fieldMap, - ); - - if (fragmentNames.length !== 0) { - // (B) Then collect conflicts between these fields and those represented by - // each spread fragment name found. - for (let i = 0; i < fragmentNames.length; i++) { - collectConflictsBetweenFieldsAndFragment( - context, - conflicts, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - false, - fieldMap, - fragmentNames[i], - ); // (C) Then compare this fragment with all other fragments found in this - // selection set to collect conflicts between fragments spread together. - // This compares each item in the list of fragment names to every other - // item in that same list (except for itself). - - for (let j = i + 1; j < fragmentNames.length; j++) { - collectConflictsBetweenFragments( - context, - conflicts, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - false, - fragmentNames[i], - fragmentNames[j], - ); - } - } - } - - return conflicts; - } // Collect all conflicts found between a set of fields and a fragment reference - // including via spreading in any nested fragments. - - function collectConflictsBetweenFieldsAndFragment( - context, - conflicts, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - areMutuallyExclusive, - fieldMap, - fragmentName, - ) { - const fragment = context.getFragment(fragmentName); - - if (!fragment) { - return; - } - - const [fieldMap2, referencedFragmentNames] = - getReferencedFieldsAndFragmentNames( - context, - cachedFieldsAndFragmentNames, - fragment, - ); // Do not compare a fragment's fieldMap to itself. - - if (fieldMap === fieldMap2) { - return; - } // (D) First collect any conflicts between the provided collection of fields - // and the collection of fields represented by the given fragment. - - collectConflictsBetween( - context, - conflicts, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - areMutuallyExclusive, - fieldMap, - fieldMap2, - ); // (E) Then collect any conflicts between the provided collection of fields - // and any fragment names found in the given fragment. - - for (const referencedFragmentName of referencedFragmentNames) { - // Memoize so two fragments are not compared for conflicts more than once. - if ( - comparedFragmentPairs.has( - referencedFragmentName, - fragmentName, - areMutuallyExclusive, - ) - ) { - continue; - } - - comparedFragmentPairs.add( - referencedFragmentName, - fragmentName, - areMutuallyExclusive, - ); - collectConflictsBetweenFieldsAndFragment( - context, - conflicts, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - areMutuallyExclusive, - fieldMap, - referencedFragmentName, - ); - } - } // Collect all conflicts found between two fragments, including via spreading in - // any nested fragments. - - function collectConflictsBetweenFragments( - context, - conflicts, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - areMutuallyExclusive, - fragmentName1, - fragmentName2, - ) { - // No need to compare a fragment to itself. - if (fragmentName1 === fragmentName2) { - return; - } // Memoize so two fragments are not compared for conflicts more than once. - - if ( - comparedFragmentPairs.has( - fragmentName1, - fragmentName2, - areMutuallyExclusive, - ) - ) { - return; - } - - comparedFragmentPairs.add(fragmentName1, fragmentName2, areMutuallyExclusive); - const fragment1 = context.getFragment(fragmentName1); - const fragment2 = context.getFragment(fragmentName2); - - if (!fragment1 || !fragment2) { - return; - } - - const [fieldMap1, referencedFragmentNames1] = - getReferencedFieldsAndFragmentNames( - context, - cachedFieldsAndFragmentNames, - fragment1, - ); - const [fieldMap2, referencedFragmentNames2] = - getReferencedFieldsAndFragmentNames( - context, - cachedFieldsAndFragmentNames, - fragment2, - ); // (F) First, collect all conflicts between these two collections of fields - // (not including any nested fragments). - - collectConflictsBetween( - context, - conflicts, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - areMutuallyExclusive, - fieldMap1, - fieldMap2, - ); // (G) Then collect conflicts between the first fragment and any nested - // fragments spread in the second fragment. - - for (const referencedFragmentName2 of referencedFragmentNames2) { - collectConflictsBetweenFragments( - context, - conflicts, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - areMutuallyExclusive, - fragmentName1, - referencedFragmentName2, - ); - } // (G) Then collect conflicts between the second fragment and any nested - // fragments spread in the first fragment. - - for (const referencedFragmentName1 of referencedFragmentNames1) { - collectConflictsBetweenFragments( - context, - conflicts, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - areMutuallyExclusive, - referencedFragmentName1, - fragmentName2, - ); - } - } // Find all conflicts found between two selection sets, including those found - // via spreading in fragments. Called when determining if conflicts exist - // between the sub-fields of two overlapping fields. - - function findConflictsBetweenSubSelectionSets( - context, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - areMutuallyExclusive, - parentType1, - selectionSet1, - parentType2, - selectionSet2, - ) { - const conflicts = []; - const [fieldMap1, fragmentNames1] = getFieldsAndFragmentNames( - context, - cachedFieldsAndFragmentNames, - parentType1, - selectionSet1, - ); - const [fieldMap2, fragmentNames2] = getFieldsAndFragmentNames( - context, - cachedFieldsAndFragmentNames, - parentType2, - selectionSet2, - ); // (H) First, collect all conflicts between these two collections of field. - - collectConflictsBetween( - context, - conflicts, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - areMutuallyExclusive, - fieldMap1, - fieldMap2, - ); // (I) Then collect conflicts between the first collection of fields and - // those referenced by each fragment name associated with the second. - - for (const fragmentName2 of fragmentNames2) { - collectConflictsBetweenFieldsAndFragment( - context, - conflicts, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - areMutuallyExclusive, - fieldMap1, - fragmentName2, - ); - } // (I) Then collect conflicts between the second collection of fields and - // those referenced by each fragment name associated with the first. - - for (const fragmentName1 of fragmentNames1) { - collectConflictsBetweenFieldsAndFragment( - context, - conflicts, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - areMutuallyExclusive, - fieldMap2, - fragmentName1, - ); - } // (J) Also collect conflicts between any fragment names by the first and - // fragment names by the second. This compares each item in the first set of - // names to each item in the second set of names. - - for (const fragmentName1 of fragmentNames1) { - for (const fragmentName2 of fragmentNames2) { - collectConflictsBetweenFragments( - context, - conflicts, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - areMutuallyExclusive, - fragmentName1, - fragmentName2, - ); - } - } - - return conflicts; - } // Collect all Conflicts "within" one collection of fields. - - function collectConflictsWithin( - context, - conflicts, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - fieldMap, - ) { - // A field map is a keyed collection, where each key represents a response - // name and the value at that key is a list of all fields which provide that - // response name. For every response name, if there are multiple fields, they - // must be compared to find a potential conflict. - for (const [responseName, fields] of Object.entries(fieldMap)) { - // This compares every field in the list to every other field in this list - // (except to itself). If the list only has one item, nothing needs to - // be compared. - if (fields.length > 1) { - for (let i = 0; i < fields.length; i++) { - for (let j = i + 1; j < fields.length; j++) { - const conflict = findConflict( - context, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - false, // within one collection is never mutually exclusive - responseName, - fields[i], - fields[j], - ); - - if (conflict) { - conflicts.push(conflict); - } - } - } - } - } - } // Collect all Conflicts between two collections of fields. This is similar to, - // but different from the `collectConflictsWithin` function above. This check - // assumes that `collectConflictsWithin` has already been called on each - // provided collection of fields. This is true because this validator traverses - // each individual selection set. - - function collectConflictsBetween( - context, - conflicts, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - parentFieldsAreMutuallyExclusive, - fieldMap1, - fieldMap2, - ) { - // A field map is a keyed collection, where each key represents a response - // name and the value at that key is a list of all fields which provide that - // response name. For any response name which appears in both provided field - // maps, each field from the first field map must be compared to every field - // in the second field map to find potential conflicts. - for (const [responseName, fields1] of Object.entries(fieldMap1)) { - const fields2 = fieldMap2[responseName]; - - if (fields2) { - for (const field1 of fields1) { - for (const field2 of fields2) { - const conflict = findConflict( - context, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - parentFieldsAreMutuallyExclusive, - responseName, - field1, - field2, - ); - - if (conflict) { - conflicts.push(conflict); - } - } - } - } - } - } // Determines if there is a conflict between two particular fields, including - // comparing their sub-fields. - - function findConflict( - context, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - parentFieldsAreMutuallyExclusive, - responseName, - field1, - field2, - ) { - const [parentType1, node1, def1] = field1; - const [parentType2, node2, def2] = field2; // If it is known that two fields could not possibly apply at the same - // time, due to the parent types, then it is safe to permit them to diverge - // in aliased field or arguments used as they will not present any ambiguity - // by differing. - // It is known that two parent types could never overlap if they are - // different Object types. Interface or Union types might overlap - if not - // in the current state of the schema, then perhaps in some future version, - // thus may not safely diverge. - - const areMutuallyExclusive = - parentFieldsAreMutuallyExclusive || - (parentType1 !== parentType2 && - isObjectType(parentType1) && - isObjectType(parentType2)); - - if (!areMutuallyExclusive) { - // Two aliases must refer to the same field. - const name1 = node1.name.value; - const name2 = node2.name.value; - - if (name1 !== name2) { - return [ - [responseName, `"${name1}" and "${name2}" are different fields`], - [node1], - [node2], - ]; - } // Two field calls must have the same arguments. - - if (stringifyArguments(node1) !== stringifyArguments(node2)) { - return [ - [responseName, 'they have differing arguments'], - [node1], - [node2], - ]; - } - } // The return type for each field. - - const type1 = def1 === null || def1 === void 0 ? void 0 : def1.type; - const type2 = def2 === null || def2 === void 0 ? void 0 : def2.type; - - if (type1 && type2 && doTypesConflict(type1, type2)) { - return [ - [ - responseName, - `they return conflicting types "${inspect$2(type1)}" and "${inspect$2( - type2, - )}"`, - ], - [node1], - [node2], - ]; - } // Collect and compare sub-fields. Use the same "visited fragment names" list - // for both collections so fields in a fragment reference are never - // compared to themselves. - - const selectionSet1 = node1.selectionSet; - const selectionSet2 = node2.selectionSet; - - if (selectionSet1 && selectionSet2) { - const conflicts = findConflictsBetweenSubSelectionSets( - context, - cachedFieldsAndFragmentNames, - comparedFragmentPairs, - areMutuallyExclusive, - getNamedType(type1), - selectionSet1, - getNamedType(type2), - selectionSet2, - ); - return subfieldConflicts(conflicts, responseName, node1, node2); - } - } - - function stringifyArguments(fieldNode) { - var _fieldNode$arguments; - - // FIXME https://github.com/graphql/graphql-js/issues/2203 - const args = - /* c8 ignore next */ - (_fieldNode$arguments = fieldNode.arguments) !== null && - _fieldNode$arguments !== void 0 - ? _fieldNode$arguments - : []; - const inputObjectWithArgs = { - kind: Kind.OBJECT, - fields: args.map((argNode) => ({ - kind: Kind.OBJECT_FIELD, - name: argNode.name, - value: argNode.value, - })), - }; - return print$1(sortValueNode(inputObjectWithArgs)); - } // Two types conflict if both types could not apply to a value simultaneously. - // Composite types are ignored as their individual field types will be compared - // later recursively. However List and Non-Null types must match. - - function doTypesConflict(type1, type2) { - if (isListType(type1)) { - return isListType(type2) - ? doTypesConflict(type1.ofType, type2.ofType) - : true; - } - - if (isListType(type2)) { - return true; - } - - if (isNonNullType(type1)) { - return isNonNullType(type2) - ? doTypesConflict(type1.ofType, type2.ofType) - : true; - } - - if (isNonNullType(type2)) { - return true; - } - - if (isLeafType(type1) || isLeafType(type2)) { - return type1 !== type2; - } - - return false; - } // Given a selection set, return the collection of fields (a mapping of response - // name to field nodes and definitions) as well as a list of fragment names - // referenced via fragment spreads. - - function getFieldsAndFragmentNames( - context, - cachedFieldsAndFragmentNames, - parentType, - selectionSet, - ) { - const cached = cachedFieldsAndFragmentNames.get(selectionSet); - - if (cached) { - return cached; - } - - const nodeAndDefs = Object.create(null); - const fragmentNames = Object.create(null); - - _collectFieldsAndFragmentNames( - context, - parentType, - selectionSet, - nodeAndDefs, - fragmentNames, - ); - - const result = [nodeAndDefs, Object.keys(fragmentNames)]; - cachedFieldsAndFragmentNames.set(selectionSet, result); - return result; - } // Given a reference to a fragment, return the represented collection of fields - // as well as a list of nested fragment names referenced via fragment spreads. - - function getReferencedFieldsAndFragmentNames( - context, - cachedFieldsAndFragmentNames, - fragment, - ) { - // Short-circuit building a type from the node if possible. - const cached = cachedFieldsAndFragmentNames.get(fragment.selectionSet); - - if (cached) { - return cached; - } - - const fragmentType = typeFromAST(context.getSchema(), fragment.typeCondition); - return getFieldsAndFragmentNames( - context, - cachedFieldsAndFragmentNames, - fragmentType, - fragment.selectionSet, - ); - } - - function _collectFieldsAndFragmentNames( - context, - parentType, - selectionSet, - nodeAndDefs, - fragmentNames, - ) { - for (const selection of selectionSet.selections) { - switch (selection.kind) { - case Kind.FIELD: { - const fieldName = selection.name.value; - let fieldDef; - - if (isObjectType(parentType) || isInterfaceType(parentType)) { - fieldDef = parentType.getFields()[fieldName]; - } - - const responseName = selection.alias - ? selection.alias.value - : fieldName; - - if (!nodeAndDefs[responseName]) { - nodeAndDefs[responseName] = []; - } - - nodeAndDefs[responseName].push([parentType, selection, fieldDef]); - break; - } - - case Kind.FRAGMENT_SPREAD: - fragmentNames[selection.name.value] = true; - break; - - case Kind.INLINE_FRAGMENT: { - const typeCondition = selection.typeCondition; - const inlineFragmentType = typeCondition - ? typeFromAST(context.getSchema(), typeCondition) - : parentType; - - _collectFieldsAndFragmentNames( - context, - inlineFragmentType, - selection.selectionSet, - nodeAndDefs, - fragmentNames, - ); - - break; - } - } - } - } // Given a series of Conflicts which occurred between two sub-fields, generate - // a single Conflict. - - function subfieldConflicts(conflicts, responseName, node1, node2) { - if (conflicts.length > 0) { - return [ - [responseName, conflicts.map(([reason]) => reason)], - [node1, ...conflicts.map(([, fields1]) => fields1).flat()], - [node2, ...conflicts.map(([, , fields2]) => fields2).flat()], - ]; - } - } - /** - * A way to keep track of pairs of things when the ordering of the pair does not matter. - */ - - class PairSet { - constructor() { - this._data = new Map(); - } - - has(a, b, areMutuallyExclusive) { - var _this$_data$get; - - const [key1, key2] = a < b ? [a, b] : [b, a]; - const result = - (_this$_data$get = this._data.get(key1)) === null || - _this$_data$get === void 0 - ? void 0 - : _this$_data$get.get(key2); - - if (result === undefined) { - return false; - } // areMutuallyExclusive being false is a superset of being true, hence if - // we want to know if this PairSet "has" these two with no exclusivity, - // we have to ensure it was added as such. - - return areMutuallyExclusive ? true : areMutuallyExclusive === result; - } - - add(a, b, areMutuallyExclusive) { - const [key1, key2] = a < b ? [a, b] : [b, a]; - - const map = this._data.get(key1); - - if (map === undefined) { - this._data.set(key1, new Map([[key2, areMutuallyExclusive]])); - } else { - map.set(key2, areMutuallyExclusive); - } - } - } - - /** - * Possible fragment spread - * - * A fragment spread is only valid if the type condition could ever possibly - * be true: if there is a non-empty intersection of the possible parent types, - * and possible types which pass the type condition. - */ - function PossibleFragmentSpreadsRule(context) { - return { - InlineFragment(node) { - const fragType = context.getType(); - const parentType = context.getParentType(); - - if ( - isCompositeType(fragType) && - isCompositeType(parentType) && - !doTypesOverlap(context.getSchema(), fragType, parentType) - ) { - const parentTypeStr = inspect$2(parentType); - const fragTypeStr = inspect$2(fragType); - context.reportError( - new GraphQLError( - `Fragment cannot be spread here as objects of type "${parentTypeStr}" can never be of type "${fragTypeStr}".`, - node, - ), - ); - } - }, - - FragmentSpread(node) { - const fragName = node.name.value; - const fragType = getFragmentType(context, fragName); - const parentType = context.getParentType(); - - if ( - fragType && - parentType && - !doTypesOverlap(context.getSchema(), fragType, parentType) - ) { - const parentTypeStr = inspect$2(parentType); - const fragTypeStr = inspect$2(fragType); - context.reportError( - new GraphQLError( - `Fragment "${fragName}" cannot be spread here as objects of type "${parentTypeStr}" can never be of type "${fragTypeStr}".`, - node, - ), - ); - } - }, - }; - } - - function getFragmentType(context, name) { - const frag = context.getFragment(name); - - if (frag) { - const type = typeFromAST(context.getSchema(), frag.typeCondition); - - if (isCompositeType(type)) { - return type; - } - } - } - - /** - * Possible type extension - * - * A type extension is only valid if the type is defined and has the same kind. - */ - function PossibleTypeExtensionsRule(context) { - const schema = context.getSchema(); - const definedTypes = Object.create(null); - - for (const def of context.getDocument().definitions) { - if (isTypeDefinitionNode(def)) { - definedTypes[def.name.value] = def; - } - } - - return { - ScalarTypeExtension: checkExtension, - ObjectTypeExtension: checkExtension, - InterfaceTypeExtension: checkExtension, - UnionTypeExtension: checkExtension, - EnumTypeExtension: checkExtension, - InputObjectTypeExtension: checkExtension, - }; - - function checkExtension(node) { - const typeName = node.name.value; - const defNode = definedTypes[typeName]; - const existingType = - schema === null || schema === void 0 ? void 0 : schema.getType(typeName); - let expectedKind; - - if (defNode) { - expectedKind = defKindToExtKind[defNode.kind]; - } else if (existingType) { - expectedKind = typeToExtKind(existingType); - } - - if (expectedKind) { - if (expectedKind !== node.kind) { - const kindStr = extensionKindToTypeName(node.kind); - context.reportError( - new GraphQLError( - `Cannot extend non-${kindStr} type "${typeName}".`, - defNode ? [defNode, node] : node, - ), - ); - } - } else { - const allTypeNames = Object.keys({ - ...definedTypes, - ...(schema === null || schema === void 0 - ? void 0 - : schema.getTypeMap()), - }); - const suggestedTypes = suggestionList$1(typeName, allTypeNames); - context.reportError( - new GraphQLError( - `Cannot extend type "${typeName}" because it is not defined.` + - didYouMean$1(suggestedTypes), - node.name, - ), - ); - } - } - } - const defKindToExtKind = { - [Kind.SCALAR_TYPE_DEFINITION]: Kind.SCALAR_TYPE_EXTENSION, - [Kind.OBJECT_TYPE_DEFINITION]: Kind.OBJECT_TYPE_EXTENSION, - [Kind.INTERFACE_TYPE_DEFINITION]: Kind.INTERFACE_TYPE_EXTENSION, - [Kind.UNION_TYPE_DEFINITION]: Kind.UNION_TYPE_EXTENSION, - [Kind.ENUM_TYPE_DEFINITION]: Kind.ENUM_TYPE_EXTENSION, - [Kind.INPUT_OBJECT_TYPE_DEFINITION]: Kind.INPUT_OBJECT_TYPE_EXTENSION, - }; - - function typeToExtKind(type) { - if (isScalarType(type)) { - return Kind.SCALAR_TYPE_EXTENSION; - } - - if (isObjectType(type)) { - return Kind.OBJECT_TYPE_EXTENSION; - } - - if (isInterfaceType(type)) { - return Kind.INTERFACE_TYPE_EXTENSION; - } - - if (isUnionType(type)) { - return Kind.UNION_TYPE_EXTENSION; - } - - if (isEnumType(type)) { - return Kind.ENUM_TYPE_EXTENSION; - } - - if (isInputObjectType(type)) { - return Kind.INPUT_OBJECT_TYPE_EXTENSION; - } - /* c8 ignore next 3 */ - // Not reachable. All possible types have been considered - - invariant(false, 'Unexpected type: ' + inspect$2(type)); - } - - function extensionKindToTypeName(kind) { - switch (kind) { - case Kind.SCALAR_TYPE_EXTENSION: - return 'scalar'; - - case Kind.OBJECT_TYPE_EXTENSION: - return 'object'; - - case Kind.INTERFACE_TYPE_EXTENSION: - return 'interface'; - - case Kind.UNION_TYPE_EXTENSION: - return 'union'; - - case Kind.ENUM_TYPE_EXTENSION: - return 'enum'; - - case Kind.INPUT_OBJECT_TYPE_EXTENSION: - return 'input object'; - // Not reachable. All possible types have been considered - - /* c8 ignore next */ - - default: - invariant(false, 'Unexpected kind: ' + inspect$2(kind)); - } - } - - /** - * Provided required arguments - * - * A field or directive is only valid if all required (non-null without a - * default value) field arguments have been provided. - */ - function ProvidedRequiredArgumentsRule(context) { - return { - // eslint-disable-next-line new-cap - ...ProvidedRequiredArgumentsOnDirectivesRule(context), - Field: { - // Validate on leave to allow for deeper errors to appear first. - leave(fieldNode) { - var _fieldNode$arguments; - - const fieldDef = context.getFieldDef(); - - if (!fieldDef) { - return false; - } - - const providedArgs = new Set( // FIXME: https://github.com/graphql/graphql-js/issues/2203 - /* c8 ignore next */ - (_fieldNode$arguments = fieldNode.arguments) === null || - _fieldNode$arguments === void 0 - ? void 0 - : _fieldNode$arguments.map((arg) => arg.name.value), - ); - - for (const argDef of fieldDef.args) { - if (!providedArgs.has(argDef.name) && isRequiredArgument(argDef)) { - const argTypeStr = inspect$2(argDef.type); - context.reportError( - new GraphQLError( - `Field "${fieldDef.name}" argument "${argDef.name}" of type "${argTypeStr}" is required, but it was not provided.`, - fieldNode, - ), - ); - } - } - }, - }, - }; - } - /** - * @internal - */ - - function ProvidedRequiredArgumentsOnDirectivesRule(context) { - var _schema$getDirectives; - - const requiredArgsMap = Object.create(null); - const schema = context.getSchema(); - const definedDirectives = - (_schema$getDirectives = - schema === null || schema === void 0 - ? void 0 - : schema.getDirectives()) !== null && _schema$getDirectives !== void 0 - ? _schema$getDirectives - : specifiedDirectives; - - for (const directive of definedDirectives) { - requiredArgsMap[directive.name] = keyMap( - directive.args.filter(isRequiredArgument), - (arg) => arg.name, - ); - } - - const astDefinitions = context.getDocument().definitions; - - for (const def of astDefinitions) { - if (def.kind === Kind.DIRECTIVE_DEFINITION) { - var _def$arguments; - - // FIXME: https://github.com/graphql/graphql-js/issues/2203 - - /* c8 ignore next */ - const argNodes = - (_def$arguments = def.arguments) !== null && _def$arguments !== void 0 - ? _def$arguments - : []; - requiredArgsMap[def.name.value] = keyMap( - argNodes.filter(isRequiredArgumentNode), - (arg) => arg.name.value, - ); - } - } - - return { - Directive: { - // Validate on leave to allow for deeper errors to appear first. - leave(directiveNode) { - const directiveName = directiveNode.name.value; - const requiredArgs = requiredArgsMap[directiveName]; - - if (requiredArgs) { - var _directiveNode$argume; - - // FIXME: https://github.com/graphql/graphql-js/issues/2203 - - /* c8 ignore next */ - const argNodes = - (_directiveNode$argume = directiveNode.arguments) !== null && - _directiveNode$argume !== void 0 - ? _directiveNode$argume - : []; - const argNodeMap = new Set(argNodes.map((arg) => arg.name.value)); - - for (const [argName, argDef] of Object.entries(requiredArgs)) { - if (!argNodeMap.has(argName)) { - const argType = isType(argDef.type) - ? inspect$2(argDef.type) - : print$1(argDef.type); - context.reportError( - new GraphQLError( - `Directive "@${directiveName}" argument "${argName}" of type "${argType}" is required, but it was not provided.`, - directiveNode, - ), - ); - } - } - } - }, - }, - }; - } - - function isRequiredArgumentNode(arg) { - return arg.type.kind === Kind.NON_NULL_TYPE && arg.defaultValue == null; - } - - /** - * Scalar leafs - * - * A GraphQL document is valid only if all leaf fields (fields without - * sub selections) are of scalar or enum types. - */ - function ScalarLeafsRule(context) { - return { - Field(node) { - const type = context.getType(); - const selectionSet = node.selectionSet; - - if (type) { - if (isLeafType(getNamedType(type))) { - if (selectionSet) { - const fieldName = node.name.value; - const typeStr = inspect$2(type); - context.reportError( - new GraphQLError( - `Field "${fieldName}" must not have a selection since type "${typeStr}" has no subfields.`, - selectionSet, - ), - ); - } - } else if (!selectionSet) { - const fieldName = node.name.value; - const typeStr = inspect$2(type); - context.reportError( - new GraphQLError( - `Field "${fieldName}" of type "${typeStr}" must have a selection of subfields. Did you mean "${fieldName} { ... }"?`, - node, - ), - ); - } - } - }, - }; - } - - /** - * Build a string describing the path. - */ - function printPathArray(path) { - return path - .map((key) => - typeof key === 'number' ? '[' + key.toString() + ']' : '.' + key, - ) - .join(''); - } - - /** - * Given a Path and a key, return a new Path containing the new key. - */ - function addPath(prev, key, typename) { - return { - prev, - key, - typename, - }; - } - /** - * Given a Path, return an Array of the path keys. - */ - - function pathToArray(path) { - const flattened = []; - let curr = path; - - while (curr) { - flattened.push(curr.key); - curr = curr.prev; - } - - return flattened.reverse(); - } - - /** - * Coerces a JavaScript value given a GraphQL Input Type. - */ - function coerceInputValue(inputValue, type, onError = defaultOnError) { - return coerceInputValueImpl(inputValue, type, onError, undefined); - } - - function defaultOnError(path, invalidValue, error) { - let errorPrefix = 'Invalid value ' + inspect$2(invalidValue); - - if (path.length > 0) { - errorPrefix += ` at "value${printPathArray(path)}"`; - } - - error.message = errorPrefix + ': ' + error.message; - throw error; - } - - function coerceInputValueImpl(inputValue, type, onError, path) { - if (isNonNullType(type)) { - if (inputValue != null) { - return coerceInputValueImpl(inputValue, type.ofType, onError, path); - } - - onError( - pathToArray(path), - inputValue, - new GraphQLError( - `Expected non-nullable type "${inspect$2(type)}" not to be null.`, - ), - ); - return; - } - - if (inputValue == null) { - // Explicitly return the value null. - return null; - } - - if (isListType(type)) { - const itemType = type.ofType; - - if (isIterableObject(inputValue)) { - return Array.from(inputValue, (itemValue, index) => { - const itemPath = addPath(path, index, undefined); - return coerceInputValueImpl(itemValue, itemType, onError, itemPath); - }); - } // Lists accept a non-list value as a list of one. - - return [coerceInputValueImpl(inputValue, itemType, onError, path)]; - } - - if (isInputObjectType(type)) { - if (!isObjectLike(inputValue)) { - onError( - pathToArray(path), - inputValue, - new GraphQLError(`Expected type "${type.name}" to be an object.`), - ); - return; - } - - const coercedValue = {}; - const fieldDefs = type.getFields(); - - for (const field of Object.values(fieldDefs)) { - const fieldValue = inputValue[field.name]; - - if (fieldValue === undefined) { - if (field.defaultValue !== undefined) { - coercedValue[field.name] = field.defaultValue; - } else if (isNonNullType(field.type)) { - const typeStr = inspect$2(field.type); - onError( - pathToArray(path), - inputValue, - new GraphQLError( - `Field "${field.name}" of required type "${typeStr}" was not provided.`, - ), - ); - } - - continue; - } - - coercedValue[field.name] = coerceInputValueImpl( - fieldValue, - field.type, - onError, - addPath(path, field.name, type.name), - ); - } // Ensure every provided field is defined. - - for (const fieldName of Object.keys(inputValue)) { - if (!fieldDefs[fieldName]) { - const suggestions = suggestionList$1( - fieldName, - Object.keys(type.getFields()), - ); - onError( - pathToArray(path), - inputValue, - new GraphQLError( - `Field "${fieldName}" is not defined by type "${type.name}".` + - didYouMean$1(suggestions), - ), - ); - } - } - - return coercedValue; - } - - if (isLeafType(type)) { - let parseResult; // Scalars and Enums determine if a input value is valid via parseValue(), - // which can throw to indicate failure. If it throws, maintain a reference - // to the original error. - - try { - parseResult = type.parseValue(inputValue); - } catch (error) { - if (error instanceof GraphQLError) { - onError(pathToArray(path), inputValue, error); - } else { - onError( - pathToArray(path), - inputValue, - new GraphQLError( - `Expected type "${type.name}". ` + error.message, - undefined, - undefined, - undefined, - undefined, - error, - ), - ); - } - - return; - } - - if (parseResult === undefined) { - onError( - pathToArray(path), - inputValue, - new GraphQLError(`Expected type "${type.name}".`), - ); - } - - return parseResult; - } - /* c8 ignore next 3 */ - // Not reachable, all possible types have been considered. - - invariant(false, 'Unexpected input type: ' + inspect$2(type)); - } - - /** - * Produces a JavaScript value given a GraphQL Value AST. - * - * A GraphQL type must be provided, which will be used to interpret different - * GraphQL Value literals. - * - * Returns `undefined` when the value could not be validly coerced according to - * the provided type. - * - * | GraphQL Value | JSON Value | - * | -------------------- | ------------- | - * | Input Object | Object | - * | List | Array | - * | Boolean | Boolean | - * | String | String | - * | Int / Float | Number | - * | Enum Value | Unknown | - * | NullValue | null | - * - */ - - function valueFromAST$1(valueNode, type, variables) { - if (!valueNode) { - // When there is no node, then there is also no value. - // Importantly, this is different from returning the value null. - return; - } - - if (valueNode.kind === Kind.VARIABLE) { - const variableName = valueNode.name.value; - - if (variables == null || variables[variableName] === undefined) { - // No valid return value. - return; - } - - const variableValue = variables[variableName]; - - if (variableValue === null && isNonNullType(type)) { - return; // Invalid: intentionally return no value. - } // Note: This does no further checking that this variable is correct. - // This assumes that this query has been validated and the variable - // usage here is of the correct type. - - return variableValue; - } - - if (isNonNullType(type)) { - if (valueNode.kind === Kind.NULL) { - return; // Invalid: intentionally return no value. - } - - return valueFromAST$1(valueNode, type.ofType, variables); - } - - if (valueNode.kind === Kind.NULL) { - // This is explicitly returning the value null. - return null; - } - - if (isListType(type)) { - const itemType = type.ofType; - - if (valueNode.kind === Kind.LIST) { - const coercedValues = []; - - for (const itemNode of valueNode.values) { - if (isMissingVariable(itemNode, variables)) { - // If an array contains a missing variable, it is either coerced to - // null or if the item type is non-null, it considered invalid. - if (isNonNullType(itemType)) { - return; // Invalid: intentionally return no value. - } - - coercedValues.push(null); - } else { - const itemValue = valueFromAST$1(itemNode, itemType, variables); - - if (itemValue === undefined) { - return; // Invalid: intentionally return no value. - } - - coercedValues.push(itemValue); - } - } - - return coercedValues; - } - - const coercedValue = valueFromAST$1(valueNode, itemType, variables); - - if (coercedValue === undefined) { - return; // Invalid: intentionally return no value. - } - - return [coercedValue]; - } - - if (isInputObjectType(type)) { - if (valueNode.kind !== Kind.OBJECT) { - return; // Invalid: intentionally return no value. - } - - const coercedObj = Object.create(null); - const fieldNodes = keyMap(valueNode.fields, (field) => field.name.value); - - for (const field of Object.values(type.getFields())) { - const fieldNode = fieldNodes[field.name]; - - if (!fieldNode || isMissingVariable(fieldNode.value, variables)) { - if (field.defaultValue !== undefined) { - coercedObj[field.name] = field.defaultValue; - } else if (isNonNullType(field.type)) { - return; // Invalid: intentionally return no value. - } - - continue; - } - - const fieldValue = valueFromAST$1(fieldNode.value, field.type, variables); - - if (fieldValue === undefined) { - return; // Invalid: intentionally return no value. - } - - coercedObj[field.name] = fieldValue; - } - - return coercedObj; - } - - if (isLeafType(type)) { - // Scalars and Enums fulfill parsing a literal value via parseLiteral(). - // Invalid values represent a failure to parse correctly, in which case - // no value is returned. - let result; - - try { - result = type.parseLiteral(valueNode, variables); - } catch (_error) { - return; // Invalid: intentionally return no value. - } - - if (result === undefined) { - return; // Invalid: intentionally return no value. - } - - return result; - } - /* c8 ignore next 3 */ - // Not reachable, all possible input types have been considered. - - invariant(false, 'Unexpected input type: ' + inspect$2(type)); - } // Returns true if the provided valueNode is a variable which is not defined - // in the set of variables. - - function isMissingVariable(valueNode, variables) { - return ( - valueNode.kind === Kind.VARIABLE && - (variables == null || variables[valueNode.name.value] === undefined) - ); - } - - /** - * Prepares an object map of variableValues of the correct type based on the - * provided variable definitions and arbitrary input. If the input cannot be - * parsed to match the variable definitions, a GraphQLError will be thrown. - * - * Note: The returned value is a plain Object with a prototype, since it is - * exposed to user code. Care should be taken to not pull values from the - * Object prototype. - */ - function getVariableValues(schema, varDefNodes, inputs, options) { - const errors = []; - const maxErrors = - options === null || options === void 0 ? void 0 : options.maxErrors; - - try { - const coerced = coerceVariableValues( - schema, - varDefNodes, - inputs, - (error) => { - if (maxErrors != null && errors.length >= maxErrors) { - throw new GraphQLError( - 'Too many errors processing variables, error limit reached. Execution aborted.', - ); - } - - errors.push(error); - }, - ); - - if (errors.length === 0) { - return { - coerced, - }; - } - } catch (error) { - errors.push(error); - } - - return { - errors, - }; - } - - function coerceVariableValues(schema, varDefNodes, inputs, onError) { - const coercedValues = {}; - - for (const varDefNode of varDefNodes) { - const varName = varDefNode.variable.name.value; - const varType = typeFromAST(schema, varDefNode.type); - - if (!isInputType(varType)) { - // Must use input types for variables. This should be caught during - // validation, however is checked again here for safety. - const varTypeStr = print$1(varDefNode.type); - onError( - new GraphQLError( - `Variable "$${varName}" expected value of type "${varTypeStr}" which cannot be used as an input type.`, - varDefNode.type, - ), - ); - continue; - } - - if (!hasOwnProperty$1(inputs, varName)) { - if (varDefNode.defaultValue) { - coercedValues[varName] = valueFromAST$1(varDefNode.defaultValue, varType); - } else if (isNonNullType(varType)) { - const varTypeStr = inspect$2(varType); - onError( - new GraphQLError( - `Variable "$${varName}" of required type "${varTypeStr}" was not provided.`, - varDefNode, - ), - ); - } - - continue; - } - - const value = inputs[varName]; - - if (value === null && isNonNullType(varType)) { - const varTypeStr = inspect$2(varType); - onError( - new GraphQLError( - `Variable "$${varName}" of non-null type "${varTypeStr}" must not be null.`, - varDefNode, - ), - ); - continue; - } - - coercedValues[varName] = coerceInputValue( - value, - varType, - (path, invalidValue, error) => { - let prefix = - `Variable "$${varName}" got invalid value ` + inspect$2(invalidValue); - - if (path.length > 0) { - prefix += ` at "${varName}${printPathArray(path)}"`; - } - - onError( - new GraphQLError( - prefix + '; ' + error.message, - varDefNode, - undefined, - undefined, - undefined, - error.originalError, - ), - ); - }, - ); - } - - return coercedValues; - } - /** - * Prepares an object map of argument values given a list of argument - * definitions and list of argument AST nodes. - * - * Note: The returned value is a plain Object with a prototype, since it is - * exposed to user code. Care should be taken to not pull values from the - * Object prototype. - * - * @internal - */ - - function getArgumentValues(def, node, variableValues) { - var _node$arguments; - - const coercedValues = {}; // FIXME: https://github.com/graphql/graphql-js/issues/2203 - - /* c8 ignore next */ - - const argumentNodes = - (_node$arguments = node.arguments) !== null && _node$arguments !== void 0 - ? _node$arguments - : []; - const argNodeMap = keyMap(argumentNodes, (arg) => arg.name.value); - - for (const argDef of def.args) { - const name = argDef.name; - const argType = argDef.type; - const argumentNode = argNodeMap[name]; - - if (!argumentNode) { - if (argDef.defaultValue !== undefined) { - coercedValues[name] = argDef.defaultValue; - } else if (isNonNullType(argType)) { - throw new GraphQLError( - `Argument "${name}" of required type "${inspect$2(argType)}" ` + - 'was not provided.', - node, - ); - } - - continue; - } - - const valueNode = argumentNode.value; - let isNull = valueNode.kind === Kind.NULL; - - if (valueNode.kind === Kind.VARIABLE) { - const variableName = valueNode.name.value; - - if ( - variableValues == null || - !hasOwnProperty$1(variableValues, variableName) - ) { - if (argDef.defaultValue !== undefined) { - coercedValues[name] = argDef.defaultValue; - } else if (isNonNullType(argType)) { - throw new GraphQLError( - `Argument "${name}" of required type "${inspect$2(argType)}" ` + - `was provided the variable "$${variableName}" which was not provided a runtime value.`, - valueNode, - ); - } - - continue; - } - - isNull = variableValues[variableName] == null; - } - - if (isNull && isNonNullType(argType)) { - throw new GraphQLError( - `Argument "${name}" of non-null type "${inspect$2(argType)}" ` + - 'must not be null.', - valueNode, - ); - } - - const coercedValue = valueFromAST$1(valueNode, argType, variableValues); - - if (coercedValue === undefined) { - // Note: ValuesOfCorrectTypeRule validation should catch this before - // execution. This is a runtime check to ensure execution does not - // continue with an invalid argument value. - throw new GraphQLError( - `Argument "${name}" has invalid value ${print$1(valueNode)}.`, - valueNode, - ); - } - - coercedValues[name] = coercedValue; - } - - return coercedValues; - } - /** - * Prepares an object map of argument values given a directive definition - * and a AST node which may contain directives. Optionally also accepts a map - * of variable values. - * - * If the directive does not exist on the node, returns undefined. - * - * Note: The returned value is a plain Object with a prototype, since it is - * exposed to user code. Care should be taken to not pull values from the - * Object prototype. - */ - - function getDirectiveValues(directiveDef, node, variableValues) { - var _node$directives; - - const directiveNode = - (_node$directives = node.directives) === null || _node$directives === void 0 - ? void 0 - : _node$directives.find( - (directive) => directive.name.value === directiveDef.name, - ); - - if (directiveNode) { - return getArgumentValues(directiveDef, directiveNode, variableValues); - } - } - - function hasOwnProperty$1(obj, prop) { - return Object.prototype.hasOwnProperty.call(obj, prop); - } - - var values$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - getVariableValues: getVariableValues, - getArgumentValues: getArgumentValues, - getDirectiveValues: getDirectiveValues - }); - - /** - * Given a selectionSet, collects all of the fields and returns them. - * - * CollectFields requires the "runtime type" of an object. For a field that - * returns an Interface or Union type, the "runtime type" will be the actual - * object type returned by that field. - * - * @internal - */ - - function collectFields( - schema, - fragments, - variableValues, - runtimeType, - selectionSet, - ) { - const fields = new Map(); - collectFieldsImpl( - schema, - fragments, - variableValues, - runtimeType, - selectionSet, - fields, - new Set(), - ); - return fields; - } - /** - * Given an array of field nodes, collects all of the subfields of the passed - * in fields, and returns them at the end. - * - * CollectSubFields requires the "return type" of an object. For a field that - * returns an Interface or Union type, the "return type" will be the actual - * object type returned by that field. - * - * @internal - */ - - function collectSubfields$1( - schema, - fragments, - variableValues, - returnType, - fieldNodes, - ) { - const subFieldNodes = new Map(); - const visitedFragmentNames = new Set(); - - for (const node of fieldNodes) { - if (node.selectionSet) { - collectFieldsImpl( - schema, - fragments, - variableValues, - returnType, - node.selectionSet, - subFieldNodes, - visitedFragmentNames, - ); - } - } - - return subFieldNodes; - } - - function collectFieldsImpl( - schema, - fragments, - variableValues, - runtimeType, - selectionSet, - fields, - visitedFragmentNames, - ) { - for (const selection of selectionSet.selections) { - switch (selection.kind) { - case Kind.FIELD: { - if (!shouldIncludeNode(variableValues, selection)) { - continue; - } - - const name = getFieldEntryKey(selection); - const fieldList = fields.get(name); - - if (fieldList !== undefined) { - fieldList.push(selection); - } else { - fields.set(name, [selection]); - } - - break; - } - - case Kind.INLINE_FRAGMENT: { - if ( - !shouldIncludeNode(variableValues, selection) || - !doesFragmentConditionMatch(schema, selection, runtimeType) - ) { - continue; - } - - collectFieldsImpl( - schema, - fragments, - variableValues, - runtimeType, - selection.selectionSet, - fields, - visitedFragmentNames, - ); - break; - } - - case Kind.FRAGMENT_SPREAD: { - const fragName = selection.name.value; - - if ( - visitedFragmentNames.has(fragName) || - !shouldIncludeNode(variableValues, selection) - ) { - continue; - } - - visitedFragmentNames.add(fragName); - const fragment = fragments[fragName]; - - if ( - !fragment || - !doesFragmentConditionMatch(schema, fragment, runtimeType) - ) { - continue; - } - - collectFieldsImpl( - schema, - fragments, - variableValues, - runtimeType, - fragment.selectionSet, - fields, - visitedFragmentNames, - ); - break; - } - } - } - } - /** - * Determines if a field should be included based on the `@include` and `@skip` - * directives, where `@skip` has higher precedence than `@include`. - */ - - function shouldIncludeNode(variableValues, node) { - const skip = getDirectiveValues(GraphQLSkipDirective, node, variableValues); - - if ((skip === null || skip === void 0 ? void 0 : skip.if) === true) { - return false; - } - - const include = getDirectiveValues( - GraphQLIncludeDirective, - node, - variableValues, - ); - - if ( - (include === null || include === void 0 ? void 0 : include.if) === false - ) { - return false; - } - - return true; - } - /** - * Determines if a fragment is applicable to the given type. - */ - - function doesFragmentConditionMatch(schema, fragment, type) { - const typeConditionNode = fragment.typeCondition; - - if (!typeConditionNode) { - return true; - } - - const conditionalType = typeFromAST(schema, typeConditionNode); - - if (conditionalType === type) { - return true; - } - - if (isAbstractType(conditionalType)) { - return schema.isSubType(conditionalType, type); - } - - return false; - } - /** - * Implements the logic to compute the key of a given field's entry - */ - - function getFieldEntryKey(node) { - return node.alias ? node.alias.value : node.name.value; - } - - /** - * Subscriptions must only include a non-introspection field. - * - * A GraphQL subscription is valid only if it contains a single root field and - * that root field is not an introspection field. - * - * See https://spec.graphql.org/draft/#sec-Single-root-field - */ - function SingleFieldSubscriptionsRule(context) { - return { - OperationDefinition(node) { - if (node.operation === 'subscription') { - const schema = context.getSchema(); - const subscriptionType = schema.getSubscriptionType(); - - if (subscriptionType) { - const operationName = node.name ? node.name.value : null; - const variableValues = Object.create(null); - const document = context.getDocument(); - const fragments = Object.create(null); - - for (const definition of document.definitions) { - if (definition.kind === Kind.FRAGMENT_DEFINITION) { - fragments[definition.name.value] = definition; - } - } - - const fields = collectFields( - schema, - fragments, - variableValues, - subscriptionType, - node.selectionSet, - ); - - if (fields.size > 1) { - const fieldSelectionLists = [...fields.values()]; - const extraFieldSelectionLists = fieldSelectionLists.slice(1); - const extraFieldSelections = extraFieldSelectionLists.flat(); - context.reportError( - new GraphQLError( - operationName != null - ? `Subscription "${operationName}" must select only one top level field.` - : 'Anonymous Subscription must select only one top level field.', - extraFieldSelections, - ), - ); - } - - for (const fieldNodes of fields.values()) { - const field = fieldNodes[0]; - const fieldName = field.name.value; - - if (fieldName.startsWith('__')) { - context.reportError( - new GraphQLError( - operationName != null - ? `Subscription "${operationName}" must not select an introspection top level field.` - : 'Anonymous Subscription must not select an introspection top level field.', - fieldNodes, - ), - ); - } - } - } - } - }, - }; - } - - /** - * Groups array items into a Map, given a function to produce grouping key. - */ - function groupBy(list, keyFn) { - const result = new Map(); - - for (const item of list) { - const key = keyFn(item); - const group = result.get(key); - - if (group === undefined) { - result.set(key, [item]); - } else { - group.push(item); - } - } - - return result; - } - - /** - * Unique argument definition names - * - * A GraphQL Object or Interface type is only valid if all its fields have uniquely named arguments. - * A GraphQL Directive is only valid if all its arguments are uniquely named. - */ - function UniqueArgumentDefinitionNamesRule(context) { - return { - DirectiveDefinition(directiveNode) { - var _directiveNode$argume; - - // FIXME: https://github.com/graphql/graphql-js/issues/2203 - - /* c8 ignore next */ - const argumentNodes = - (_directiveNode$argume = directiveNode.arguments) !== null && - _directiveNode$argume !== void 0 - ? _directiveNode$argume - : []; - return checkArgUniqueness(`@${directiveNode.name.value}`, argumentNodes); - }, - - InterfaceTypeDefinition: checkArgUniquenessPerField, - InterfaceTypeExtension: checkArgUniquenessPerField, - ObjectTypeDefinition: checkArgUniquenessPerField, - ObjectTypeExtension: checkArgUniquenessPerField, - }; - - function checkArgUniquenessPerField(typeNode) { - var _typeNode$fields; - - const typeName = typeNode.name.value; // FIXME: https://github.com/graphql/graphql-js/issues/2203 - - /* c8 ignore next */ - - const fieldNodes = - (_typeNode$fields = typeNode.fields) !== null && - _typeNode$fields !== void 0 - ? _typeNode$fields - : []; - - for (const fieldDef of fieldNodes) { - var _fieldDef$arguments; - - const fieldName = fieldDef.name.value; // FIXME: https://github.com/graphql/graphql-js/issues/2203 - - /* c8 ignore next */ - - const argumentNodes = - (_fieldDef$arguments = fieldDef.arguments) !== null && - _fieldDef$arguments !== void 0 - ? _fieldDef$arguments - : []; - checkArgUniqueness(`${typeName}.${fieldName}`, argumentNodes); - } - - return false; - } - - function checkArgUniqueness(parentName, argumentNodes) { - const seenArgs = groupBy(argumentNodes, (arg) => arg.name.value); - - for (const [argName, argNodes] of seenArgs) { - if (argNodes.length > 1) { - context.reportError( - new GraphQLError( - `Argument "${parentName}(${argName}:)" can only be defined once.`, - argNodes.map((node) => node.name), - ), - ); - } - } - - return false; - } - } - - /** - * Unique argument names - * - * A GraphQL field or directive is only valid if all supplied arguments are - * uniquely named. - * - * See https://spec.graphql.org/draft/#sec-Argument-Names - */ - function UniqueArgumentNamesRule(context) { - return { - Field: checkArgUniqueness, - Directive: checkArgUniqueness, - }; - - function checkArgUniqueness(parentNode) { - var _parentNode$arguments; - - // FIXME: https://github.com/graphql/graphql-js/issues/2203 - - /* c8 ignore next */ - const argumentNodes = - (_parentNode$arguments = parentNode.arguments) !== null && - _parentNode$arguments !== void 0 - ? _parentNode$arguments - : []; - const seenArgs = groupBy(argumentNodes, (arg) => arg.name.value); - - for (const [argName, argNodes] of seenArgs) { - if (argNodes.length > 1) { - context.reportError( - new GraphQLError( - `There can be only one argument named "${argName}".`, - argNodes.map((node) => node.name), - ), - ); - } - } - } - } - - /** - * Unique directive names - * - * A GraphQL document is only valid if all defined directives have unique names. - */ - function UniqueDirectiveNamesRule(context) { - const knownDirectiveNames = Object.create(null); - const schema = context.getSchema(); - return { - DirectiveDefinition(node) { - const directiveName = node.name.value; - - if ( - schema !== null && - schema !== void 0 && - schema.getDirective(directiveName) - ) { - context.reportError( - new GraphQLError( - `Directive "@${directiveName}" already exists in the schema. It cannot be redefined.`, - node.name, - ), - ); - return; - } - - if (knownDirectiveNames[directiveName]) { - context.reportError( - new GraphQLError( - `There can be only one directive named "@${directiveName}".`, - [knownDirectiveNames[directiveName], node.name], - ), - ); - } else { - knownDirectiveNames[directiveName] = node.name; - } - - return false; - }, - }; - } - - /** - * Unique directive names per location - * - * A GraphQL document is only valid if all non-repeatable directives at - * a given location are uniquely named. - * - * See https://spec.graphql.org/draft/#sec-Directives-Are-Unique-Per-Location - */ - function UniqueDirectivesPerLocationRule(context) { - const uniqueDirectiveMap = Object.create(null); - const schema = context.getSchema(); - const definedDirectives = schema - ? schema.getDirectives() - : specifiedDirectives; - - for (const directive of definedDirectives) { - uniqueDirectiveMap[directive.name] = !directive.isRepeatable; - } - - const astDefinitions = context.getDocument().definitions; - - for (const def of astDefinitions) { - if (def.kind === Kind.DIRECTIVE_DEFINITION) { - uniqueDirectiveMap[def.name.value] = !def.repeatable; - } - } - - const schemaDirectives = Object.create(null); - const typeDirectivesMap = Object.create(null); - return { - // Many different AST nodes may contain directives. Rather than listing - // them all, just listen for entering any node, and check to see if it - // defines any directives. - enter(node) { - if (!('directives' in node) || !node.directives) { - return; - } - - let seenDirectives; - - if ( - node.kind === Kind.SCHEMA_DEFINITION || - node.kind === Kind.SCHEMA_EXTENSION - ) { - seenDirectives = schemaDirectives; - } else if (isTypeDefinitionNode(node) || isTypeExtensionNode(node)) { - const typeName = node.name.value; - seenDirectives = typeDirectivesMap[typeName]; - - if (seenDirectives === undefined) { - typeDirectivesMap[typeName] = seenDirectives = Object.create(null); - } - } else { - seenDirectives = Object.create(null); - } - - for (const directive of node.directives) { - const directiveName = directive.name.value; - - if (uniqueDirectiveMap[directiveName]) { - if (seenDirectives[directiveName]) { - context.reportError( - new GraphQLError( - `The directive "@${directiveName}" can only be used once at this location.`, - [seenDirectives[directiveName], directive], - ), - ); - } else { - seenDirectives[directiveName] = directive; - } - } - } - }, - }; - } - - /** - * Unique enum value names - * - * A GraphQL enum type is only valid if all its values are uniquely named. - */ - function UniqueEnumValueNamesRule(context) { - const schema = context.getSchema(); - const existingTypeMap = schema ? schema.getTypeMap() : Object.create(null); - const knownValueNames = Object.create(null); - return { - EnumTypeDefinition: checkValueUniqueness, - EnumTypeExtension: checkValueUniqueness, - }; - - function checkValueUniqueness(node) { - var _node$values; - - const typeName = node.name.value; - - if (!knownValueNames[typeName]) { - knownValueNames[typeName] = Object.create(null); - } // FIXME: https://github.com/graphql/graphql-js/issues/2203 - - /* c8 ignore next */ - - const valueNodes = - (_node$values = node.values) !== null && _node$values !== void 0 - ? _node$values - : []; - const valueNames = knownValueNames[typeName]; - - for (const valueDef of valueNodes) { - const valueName = valueDef.name.value; - const existingType = existingTypeMap[typeName]; - - if (isEnumType(existingType) && existingType.getValue(valueName)) { - context.reportError( - new GraphQLError( - `Enum value "${typeName}.${valueName}" already exists in the schema. It cannot also be defined in this type extension.`, - valueDef.name, - ), - ); - } else if (valueNames[valueName]) { - context.reportError( - new GraphQLError( - `Enum value "${typeName}.${valueName}" can only be defined once.`, - [valueNames[valueName], valueDef.name], - ), - ); - } else { - valueNames[valueName] = valueDef.name; - } - } - - return false; - } - } - - /** - * Unique field definition names - * - * A GraphQL complex type is only valid if all its fields are uniquely named. - */ - function UniqueFieldDefinitionNamesRule(context) { - const schema = context.getSchema(); - const existingTypeMap = schema ? schema.getTypeMap() : Object.create(null); - const knownFieldNames = Object.create(null); - return { - InputObjectTypeDefinition: checkFieldUniqueness, - InputObjectTypeExtension: checkFieldUniqueness, - InterfaceTypeDefinition: checkFieldUniqueness, - InterfaceTypeExtension: checkFieldUniqueness, - ObjectTypeDefinition: checkFieldUniqueness, - ObjectTypeExtension: checkFieldUniqueness, - }; - - function checkFieldUniqueness(node) { - var _node$fields; - - const typeName = node.name.value; - - if (!knownFieldNames[typeName]) { - knownFieldNames[typeName] = Object.create(null); - } // FIXME: https://github.com/graphql/graphql-js/issues/2203 - - /* c8 ignore next */ - - const fieldNodes = - (_node$fields = node.fields) !== null && _node$fields !== void 0 - ? _node$fields - : []; - const fieldNames = knownFieldNames[typeName]; - - for (const fieldDef of fieldNodes) { - const fieldName = fieldDef.name.value; - - if (hasField(existingTypeMap[typeName], fieldName)) { - context.reportError( - new GraphQLError( - `Field "${typeName}.${fieldName}" already exists in the schema. It cannot also be defined in this type extension.`, - fieldDef.name, - ), - ); - } else if (fieldNames[fieldName]) { - context.reportError( - new GraphQLError( - `Field "${typeName}.${fieldName}" can only be defined once.`, - [fieldNames[fieldName], fieldDef.name], - ), - ); - } else { - fieldNames[fieldName] = fieldDef.name; - } - } - - return false; - } - } - - function hasField(type, fieldName) { - if (isObjectType(type) || isInterfaceType(type) || isInputObjectType(type)) { - return type.getFields()[fieldName] != null; - } - - return false; - } - - /** - * Unique fragment names - * - * A GraphQL document is only valid if all defined fragments have unique names. - * - * See https://spec.graphql.org/draft/#sec-Fragment-Name-Uniqueness - */ - function UniqueFragmentNamesRule(context) { - const knownFragmentNames = Object.create(null); - return { - OperationDefinition: () => false, - - FragmentDefinition(node) { - const fragmentName = node.name.value; - - if (knownFragmentNames[fragmentName]) { - context.reportError( - new GraphQLError( - `There can be only one fragment named "${fragmentName}".`, - [knownFragmentNames[fragmentName], node.name], - ), - ); - } else { - knownFragmentNames[fragmentName] = node.name; - } - - return false; - }, - }; - } - - /** - * Unique input field names - * - * A GraphQL input object value is only valid if all supplied fields are - * uniquely named. - * - * See https://spec.graphql.org/draft/#sec-Input-Object-Field-Uniqueness - */ - function UniqueInputFieldNamesRule(context) { - const knownNameStack = []; - let knownNames = Object.create(null); - return { - ObjectValue: { - enter() { - knownNameStack.push(knownNames); - knownNames = Object.create(null); - }, - - leave() { - const prevKnownNames = knownNameStack.pop(); - prevKnownNames || invariant(false); - knownNames = prevKnownNames; - }, - }, - - ObjectField(node) { - const fieldName = node.name.value; - - if (knownNames[fieldName]) { - context.reportError( - new GraphQLError( - `There can be only one input field named "${fieldName}".`, - [knownNames[fieldName], node.name], - ), - ); - } else { - knownNames[fieldName] = node.name; - } - }, - }; - } - - /** - * Unique operation names - * - * A GraphQL document is only valid if all defined operations have unique names. - * - * See https://spec.graphql.org/draft/#sec-Operation-Name-Uniqueness - */ - function UniqueOperationNamesRule(context) { - const knownOperationNames = Object.create(null); - return { - OperationDefinition(node) { - const operationName = node.name; - - if (operationName) { - if (knownOperationNames[operationName.value]) { - context.reportError( - new GraphQLError( - `There can be only one operation named "${operationName.value}".`, - [knownOperationNames[operationName.value], operationName], - ), - ); - } else { - knownOperationNames[operationName.value] = operationName; - } - } - - return false; - }, - - FragmentDefinition: () => false, - }; - } - - /** - * Unique operation types - * - * A GraphQL document is only valid if it has only one type per operation. - */ - function UniqueOperationTypesRule(context) { - const schema = context.getSchema(); - const definedOperationTypes = Object.create(null); - const existingOperationTypes = schema - ? { - query: schema.getQueryType(), - mutation: schema.getMutationType(), - subscription: schema.getSubscriptionType(), - } - : {}; - return { - SchemaDefinition: checkOperationTypes, - SchemaExtension: checkOperationTypes, - }; - - function checkOperationTypes(node) { - var _node$operationTypes; - - // See: https://github.com/graphql/graphql-js/issues/2203 - - /* c8 ignore next */ - const operationTypesNodes = - (_node$operationTypes = node.operationTypes) !== null && - _node$operationTypes !== void 0 - ? _node$operationTypes - : []; - - for (const operationType of operationTypesNodes) { - const operation = operationType.operation; - const alreadyDefinedOperationType = definedOperationTypes[operation]; - - if (existingOperationTypes[operation]) { - context.reportError( - new GraphQLError( - `Type for ${operation} already defined in the schema. It cannot be redefined.`, - operationType, - ), - ); - } else if (alreadyDefinedOperationType) { - context.reportError( - new GraphQLError( - `There can be only one ${operation} type in schema.`, - [alreadyDefinedOperationType, operationType], - ), - ); - } else { - definedOperationTypes[operation] = operationType; - } - } - - return false; - } - } - - /** - * Unique type names - * - * A GraphQL document is only valid if all defined types have unique names. - */ - function UniqueTypeNamesRule(context) { - const knownTypeNames = Object.create(null); - const schema = context.getSchema(); - return { - ScalarTypeDefinition: checkTypeName, - ObjectTypeDefinition: checkTypeName, - InterfaceTypeDefinition: checkTypeName, - UnionTypeDefinition: checkTypeName, - EnumTypeDefinition: checkTypeName, - InputObjectTypeDefinition: checkTypeName, - }; - - function checkTypeName(node) { - const typeName = node.name.value; - - if (schema !== null && schema !== void 0 && schema.getType(typeName)) { - context.reportError( - new GraphQLError( - `Type "${typeName}" already exists in the schema. It cannot also be defined in this type definition.`, - node.name, - ), - ); - return; - } - - if (knownTypeNames[typeName]) { - context.reportError( - new GraphQLError(`There can be only one type named "${typeName}".`, [ - knownTypeNames[typeName], - node.name, - ]), - ); - } else { - knownTypeNames[typeName] = node.name; - } - - return false; - } - } - - /** - * Unique variable names - * - * A GraphQL operation is only valid if all its variables are uniquely named. - */ - function UniqueVariableNamesRule(context) { - return { - OperationDefinition(operationNode) { - var _operationNode$variab; - - // See: https://github.com/graphql/graphql-js/issues/2203 - - /* c8 ignore next */ - const variableDefinitions = - (_operationNode$variab = operationNode.variableDefinitions) !== null && - _operationNode$variab !== void 0 - ? _operationNode$variab - : []; - const seenVariableDefinitions = groupBy( - variableDefinitions, - (node) => node.variable.name.value, - ); - - for (const [variableName, variableNodes] of seenVariableDefinitions) { - if (variableNodes.length > 1) { - context.reportError( - new GraphQLError( - `There can be only one variable named "$${variableName}".`, - variableNodes.map((node) => node.variable.name), - ), - ); - } - } - }, - }; - } - - /** - * Value literals of correct type - * - * A GraphQL document is only valid if all value literals are of the type - * expected at their position. - * - * See https://spec.graphql.org/draft/#sec-Values-of-Correct-Type - */ - function ValuesOfCorrectTypeRule(context) { - return { - ListValue(node) { - // Note: TypeInfo will traverse into a list's item type, so look to the - // parent input type to check if it is a list. - const type = getNullableType(context.getParentInputType()); - - if (!isListType(type)) { - isValidValueNode(context, node); - return false; // Don't traverse further. - } - }, - - ObjectValue(node) { - const type = getNamedType(context.getInputType()); - - if (!isInputObjectType(type)) { - isValidValueNode(context, node); - return false; // Don't traverse further. - } // Ensure every required field exists. - - const fieldNodeMap = keyMap(node.fields, (field) => field.name.value); - - for (const fieldDef of Object.values(type.getFields())) { - const fieldNode = fieldNodeMap[fieldDef.name]; - - if (!fieldNode && isRequiredInputField(fieldDef)) { - const typeStr = inspect$2(fieldDef.type); - context.reportError( - new GraphQLError( - `Field "${type.name}.${fieldDef.name}" of required type "${typeStr}" was not provided.`, - node, - ), - ); - } - } - }, - - ObjectField(node) { - const parentType = getNamedType(context.getParentInputType()); - const fieldType = context.getInputType(); - - if (!fieldType && isInputObjectType(parentType)) { - const suggestions = suggestionList$1( - node.name.value, - Object.keys(parentType.getFields()), - ); - context.reportError( - new GraphQLError( - `Field "${node.name.value}" is not defined by type "${parentType.name}".` + - didYouMean$1(suggestions), - node, - ), - ); - } - }, - - NullValue(node) { - const type = context.getInputType(); - - if (isNonNullType(type)) { - context.reportError( - new GraphQLError( - `Expected value of type "${inspect$2(type)}", found ${print$1(node)}.`, - node, - ), - ); - } - }, - - EnumValue: (node) => isValidValueNode(context, node), - IntValue: (node) => isValidValueNode(context, node), - FloatValue: (node) => isValidValueNode(context, node), - StringValue: (node) => isValidValueNode(context, node), - BooleanValue: (node) => isValidValueNode(context, node), - }; - } - /** - * Any value literal may be a valid representation of a Scalar, depending on - * that scalar type. - */ - - function isValidValueNode(context, node) { - // Report any error at the full type expected by the location. - const locationType = context.getInputType(); - - if (!locationType) { - return; - } - - const type = getNamedType(locationType); - - if (!isLeafType(type)) { - const typeStr = inspect$2(locationType); - context.reportError( - new GraphQLError( - `Expected value of type "${typeStr}", found ${print$1(node)}.`, - node, - ), - ); - return; - } // Scalars and Enums determine if a literal value is valid via parseLiteral(), - // which may throw or return an invalid value to indicate failure. - - try { - const parseResult = type.parseLiteral( - node, - undefined, - /* variables */ - ); - - if (parseResult === undefined) { - const typeStr = inspect$2(locationType); - context.reportError( - new GraphQLError( - `Expected value of type "${typeStr}", found ${print$1(node)}.`, - node, - ), - ); - } - } catch (error) { - const typeStr = inspect$2(locationType); - - if (error instanceof GraphQLError) { - context.reportError(error); - } else { - context.reportError( - new GraphQLError( - `Expected value of type "${typeStr}", found ${print$1(node)}; ` + - error.message, - node, - undefined, - undefined, - undefined, - error, - ), - ); - } - } - } - - /** - * Variables are input types - * - * A GraphQL operation is only valid if all the variables it defines are of - * input types (scalar, enum, or input object). - * - * See https://spec.graphql.org/draft/#sec-Variables-Are-Input-Types - */ - function VariablesAreInputTypesRule(context) { - return { - VariableDefinition(node) { - const type = typeFromAST(context.getSchema(), node.type); - - if (type !== undefined && !isInputType(type)) { - const variableName = node.variable.name.value; - const typeName = print$1(node.type); - context.reportError( - new GraphQLError( - `Variable "$${variableName}" cannot be non-input type "${typeName}".`, - node.type, - ), - ); - } - }, - }; - } - - /** - * Variables in allowed position - * - * Variable usages must be compatible with the arguments they are passed to. - * - * See https://spec.graphql.org/draft/#sec-All-Variable-Usages-are-Allowed - */ - function VariablesInAllowedPositionRule(context) { - let varDefMap = Object.create(null); - return { - OperationDefinition: { - enter() { - varDefMap = Object.create(null); - }, - - leave(operation) { - const usages = context.getRecursiveVariableUsages(operation); - - for (const { node, type, defaultValue } of usages) { - const varName = node.name.value; - const varDef = varDefMap[varName]; - - if (varDef && type) { - // A var type is allowed if it is the same or more strict (e.g. is - // a subtype of) than the expected type. It can be more strict if - // the variable type is non-null when the expected type is nullable. - // If both are list types, the variable item type can be more strict - // than the expected item type (contravariant). - const schema = context.getSchema(); - const varType = typeFromAST(schema, varDef.type); - - if ( - varType && - !allowedVariableUsage( - schema, - varType, - varDef.defaultValue, - type, - defaultValue, - ) - ) { - const varTypeStr = inspect$2(varType); - const typeStr = inspect$2(type); - context.reportError( - new GraphQLError( - `Variable "$${varName}" of type "${varTypeStr}" used in position expecting type "${typeStr}".`, - [varDef, node], - ), - ); - } - } - } - }, - }, - - VariableDefinition(node) { - varDefMap[node.variable.name.value] = node; - }, - }; - } - /** - * Returns true if the variable is allowed in the location it was found, - * which includes considering if default values exist for either the variable - * or the location at which it is located. - */ - - function allowedVariableUsage( - schema, - varType, - varDefaultValue, - locationType, - locationDefaultValue, - ) { - if (isNonNullType(locationType) && !isNonNullType(varType)) { - const hasNonNullVariableDefaultValue = - varDefaultValue != null && varDefaultValue.kind !== Kind.NULL; - const hasLocationDefaultValue = locationDefaultValue !== undefined; - - if (!hasNonNullVariableDefaultValue && !hasLocationDefaultValue) { - return false; - } - - const nullableLocationType = locationType.ofType; - return isTypeSubTypeOf(schema, varType, nullableLocationType); - } - - return isTypeSubTypeOf(schema, varType, locationType); - } - - // Spec Section: "Executable Definitions" - - /** - * This set includes all validation rules defined by the GraphQL spec. - * - * The order of the rules in this list has been adjusted to lead to the - * most clear output when encountering multiple validation errors. - */ - const specifiedRules = Object.freeze([ - ExecutableDefinitionsRule, - UniqueOperationNamesRule, - LoneAnonymousOperationRule, - SingleFieldSubscriptionsRule, - KnownTypeNamesRule, - FragmentsOnCompositeTypesRule, - VariablesAreInputTypesRule, - ScalarLeafsRule, - FieldsOnCorrectTypeRule, - UniqueFragmentNamesRule, - KnownFragmentNamesRule, - NoUnusedFragmentsRule, - PossibleFragmentSpreadsRule, - NoFragmentCyclesRule, - UniqueVariableNamesRule, - NoUndefinedVariablesRule, - NoUnusedVariablesRule, - KnownDirectivesRule, - UniqueDirectivesPerLocationRule, - KnownArgumentNamesRule, - UniqueArgumentNamesRule, - ValuesOfCorrectTypeRule, - ProvidedRequiredArgumentsRule, - VariablesInAllowedPositionRule, - OverlappingFieldsCanBeMergedRule, - UniqueInputFieldNamesRule, - ]); - /** - * @internal - */ - - const specifiedSDLRules = Object.freeze([ - LoneSchemaDefinitionRule, - UniqueOperationTypesRule, - UniqueTypeNamesRule, - UniqueEnumValueNamesRule, - UniqueFieldDefinitionNamesRule, - UniqueArgumentDefinitionNamesRule, - UniqueDirectiveNamesRule, - KnownTypeNamesRule, - KnownDirectivesRule, - UniqueDirectivesPerLocationRule, - PossibleTypeExtensionsRule, - KnownArgumentNamesOnDirectivesRule, - UniqueArgumentNamesRule, - UniqueInputFieldNamesRule, - ProvidedRequiredArgumentsOnDirectivesRule, - ]); - - var specifiedRules$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - specifiedRules: specifiedRules, - specifiedSDLRules: specifiedSDLRules - }); - - /** - * An instance of this class is passed as the "this" context to all validators, - * allowing access to commonly useful contextual information from within a - * validation rule. - */ - class ASTValidationContext { - constructor(ast, onError) { - this._ast = ast; - this._fragments = undefined; - this._fragmentSpreads = new Map(); - this._recursivelyReferencedFragments = new Map(); - this._onError = onError; - } - - get [Symbol.toStringTag]() { - return 'ASTValidationContext'; - } - - reportError(error) { - this._onError(error); - } - - getDocument() { - return this._ast; - } - - getFragment(name) { - let fragments; - - if (this._fragments) { - fragments = this._fragments; - } else { - fragments = Object.create(null); - - for (const defNode of this.getDocument().definitions) { - if (defNode.kind === Kind.FRAGMENT_DEFINITION) { - fragments[defNode.name.value] = defNode; - } - } - - this._fragments = fragments; - } - - return fragments[name]; - } - - getFragmentSpreads(node) { - let spreads = this._fragmentSpreads.get(node); - - if (!spreads) { - spreads = []; - const setsToVisit = [node]; - let set; - - while ((set = setsToVisit.pop())) { - for (const selection of set.selections) { - if (selection.kind === Kind.FRAGMENT_SPREAD) { - spreads.push(selection); - } else if (selection.selectionSet) { - setsToVisit.push(selection.selectionSet); - } - } - } - - this._fragmentSpreads.set(node, spreads); - } - - return spreads; - } - - getRecursivelyReferencedFragments(operation) { - let fragments = this._recursivelyReferencedFragments.get(operation); - - if (!fragments) { - fragments = []; - const collectedNames = Object.create(null); - const nodesToVisit = [operation.selectionSet]; - let node; - - while ((node = nodesToVisit.pop())) { - for (const spread of this.getFragmentSpreads(node)) { - const fragName = spread.name.value; - - if (collectedNames[fragName] !== true) { - collectedNames[fragName] = true; - const fragment = this.getFragment(fragName); - - if (fragment) { - fragments.push(fragment); - nodesToVisit.push(fragment.selectionSet); - } - } - } - } - - this._recursivelyReferencedFragments.set(operation, fragments); - } - - return fragments; - } - } - class SDLValidationContext extends ASTValidationContext { - constructor(ast, schema, onError) { - super(ast, onError); - this._schema = schema; - } - - get [Symbol.toStringTag]() { - return 'SDLValidationContext'; - } - - getSchema() { - return this._schema; - } - } - class ValidationContext extends ASTValidationContext { - constructor(schema, ast, typeInfo, onError) { - super(ast, onError); - this._schema = schema; - this._typeInfo = typeInfo; - this._variableUsages = new Map(); - this._recursiveVariableUsages = new Map(); - } - - get [Symbol.toStringTag]() { - return 'ValidationContext'; - } - - getSchema() { - return this._schema; - } - - getVariableUsages(node) { - let usages = this._variableUsages.get(node); - - if (!usages) { - const newUsages = []; - const typeInfo = new TypeInfo(this._schema); - visit( - node, - visitWithTypeInfo(typeInfo, { - VariableDefinition: () => false, - - Variable(variable) { - newUsages.push({ - node: variable, - type: typeInfo.getInputType(), - defaultValue: typeInfo.getDefaultValue(), - }); - }, - }), - ); - usages = newUsages; - - this._variableUsages.set(node, usages); - } - - return usages; - } - - getRecursiveVariableUsages(operation) { - let usages = this._recursiveVariableUsages.get(operation); - - if (!usages) { - usages = this.getVariableUsages(operation); - - for (const frag of this.getRecursivelyReferencedFragments(operation)) { - usages = usages.concat(this.getVariableUsages(frag)); - } - - this._recursiveVariableUsages.set(operation, usages); - } - - return usages; - } - - getType() { - return this._typeInfo.getType(); - } - - getParentType() { - return this._typeInfo.getParentType(); - } - - getInputType() { - return this._typeInfo.getInputType(); - } - - getParentInputType() { - return this._typeInfo.getParentInputType(); - } - - getFieldDef() { - return this._typeInfo.getFieldDef(); - } - - getDirective() { - return this._typeInfo.getDirective(); - } - - getArgument() { - return this._typeInfo.getArgument(); - } - - getEnumValue() { - return this._typeInfo.getEnumValue(); - } - } - - /** - * Implements the "Validation" section of the spec. - * - * Validation runs synchronously, returning an array of encountered errors, or - * an empty array if no errors were encountered and the document is valid. - * - * A list of specific validation rules may be provided. If not provided, the - * default list of rules defined by the GraphQL specification will be used. - * - * Each validation rules is a function which returns a visitor - * (see the language/visitor API). Visitor methods are expected to return - * GraphQLErrors, or Arrays of GraphQLErrors when invalid. - * - * Validate will stop validation after a `maxErrors` limit has been reached. - * Attackers can send pathologically invalid queries to induce a DoS attack, - * so by default `maxErrors` set to 100 errors. - * - * Optionally a custom TypeInfo instance may be provided. If not provided, one - * will be created from the provided schema. - */ - - function validate$2( - schema, - documentAST, - rules = specifiedRules, - options, - /** @deprecated will be removed in 17.0.0 */ - typeInfo = new TypeInfo(schema), - ) { - var _options$maxErrors; - - const maxErrors = - (_options$maxErrors = - options === null || options === void 0 ? void 0 : options.maxErrors) !== - null && _options$maxErrors !== void 0 - ? _options$maxErrors - : 100; - documentAST || devAssert(false, 'Must provide document.'); // If the schema used for validation is invalid, throw an error. - - assertValidSchema(schema); - const abortObj = Object.freeze({}); - const errors = []; - const context = new ValidationContext( - schema, - documentAST, - typeInfo, - (error) => { - if (errors.length >= maxErrors) { - errors.push( - new GraphQLError( - 'Too many validation errors, error limit reached. Validation aborted.', - ), - ); // eslint-disable-next-line @typescript-eslint/no-throw-literal - - throw abortObj; - } - - errors.push(error); - }, - ); // This uses a specialized visitor which runs multiple visitors in parallel, - // while maintaining the visitor skip and break API. - - const visitor = visitInParallel(rules.map((rule) => rule(context))); // Visit the whole document with each instance of all provided rules. - - try { - visit(documentAST, visitWithTypeInfo(typeInfo, visitor)); - } catch (e) { - if (e !== abortObj) { - throw e; - } - } - - return errors; - } - /** - * @internal - */ - - function validateSDL( - documentAST, - schemaToExtend, - rules = specifiedSDLRules, - ) { - const errors = []; - const context = new SDLValidationContext( - documentAST, - schemaToExtend, - (error) => { - errors.push(error); - }, - ); - const visitors = rules.map((rule) => rule(context)); - visit(documentAST, visitInParallel(visitors)); - return errors; - } - /** - * Utility function which asserts a SDL document is valid by throwing an error - * if it is invalid. - * - * @internal - */ - - function assertValidSDL(documentAST) { - const errors = validateSDL(documentAST); - - if (errors.length !== 0) { - throw new Error(errors.map((error) => error.message).join('\n\n')); - } - } - /** - * Utility function which asserts a SDL document is valid by throwing an error - * if it is invalid. - * - * @internal - */ - - function assertValidSDLExtension(documentAST, schema) { - const errors = validateSDL(documentAST, schema); - - if (errors.length !== 0) { - throw new Error(errors.map((error) => error.message).join('\n\n')); - } - } - - var validate$3 = /*#__PURE__*/Object.freeze({ - __proto__: null, - validate: validate$2, - validateSDL: validateSDL, - assertValidSDL: assertValidSDL, - assertValidSDLExtension: assertValidSDLExtension - }); - - /** - * Memoizes the provided three-argument function. - */ - function memoize3(fn) { - let cache0; - return function memoized(a1, a2, a3) { - if (cache0 === undefined) { - cache0 = new WeakMap(); - } - - let cache1 = cache0.get(a1); - - if (cache1 === undefined) { - cache1 = new WeakMap(); - cache0.set(a1, cache1); - } - - let cache2 = cache1.get(a2); - - if (cache2 === undefined) { - cache2 = new WeakMap(); - cache1.set(a2, cache2); - } - - let fnResult = cache2.get(a3); - - if (fnResult === undefined) { - fnResult = fn(a1, a2, a3); - cache2.set(a3, fnResult); - } - - return fnResult; - }; - } - - /** - * This function transforms a JS object `ObjMap>` into - * a `Promise>` - * - * This is akin to bluebird's `Promise.props`, but implemented only using - * `Promise.all` so it will work with any implementation of ES6 promises. - */ - function promiseForObject(object) { - return Promise.all(Object.values(object)).then((resolvedValues) => { - const resolvedObject = Object.create(null); - - for (const [i, key] of Object.keys(object).entries()) { - resolvedObject[key] = resolvedValues[i]; - } - - return resolvedObject; - }); - } - - /** - * Similar to Array.prototype.reduce(), however the reducing callback may return - * a Promise, in which case reduction will continue after each promise resolves. - * - * If the callback does not return a Promise, then this function will also not - * return a Promise. - */ - function promiseReduce(values, callbackFn, initialValue) { - let accumulator = initialValue; - - for (const value of values) { - accumulator = isPromise(accumulator) - ? accumulator.then((resolved) => callbackFn(resolved, value)) - : callbackFn(accumulator, value); - } - - return accumulator; - } - - /** - * Sometimes a non-error is thrown, wrap it as an Error instance to ensure a consistent Error interface. - */ - - function toError(thrownValue) { - return thrownValue instanceof Error - ? thrownValue - : new NonErrorThrown(thrownValue); - } - - class NonErrorThrown extends Error { - constructor(thrownValue) { - super('Unexpected error value: ' + inspect$2(thrownValue)); - this.name = 'NonErrorThrown'; - this.thrownValue = thrownValue; - } - } - - /** - * Given an arbitrary value, presumably thrown while attempting to execute a - * GraphQL operation, produce a new GraphQLError aware of the location in the - * document responsible for the original Error. - */ - - function locatedError(rawOriginalError, nodes, path) { - var _nodes; - - const originalError = toError(rawOriginalError); // Note: this uses a brand-check to support GraphQL errors originating from other contexts. - - if (isLocatedGraphQLError(originalError)) { - return originalError; - } - - return new GraphQLError( - originalError.message, - (_nodes = originalError.nodes) !== null && _nodes !== void 0 - ? _nodes - : nodes, - originalError.source, - originalError.positions, - path, - originalError, - ); - } - - function isLocatedGraphQLError(error) { - return Array.isArray(error.path); - } - - /** - * A memoized collection of relevant subfields with regard to the return - * type. Memoizing ensures the subfields are not repeatedly calculated, which - * saves overhead when resolving lists of values. - */ - - const collectSubfields = memoize3((exeContext, returnType, fieldNodes) => - collectSubfields$1( - exeContext.schema, - exeContext.fragments, - exeContext.variableValues, - returnType, - fieldNodes, - ), - ); - /** - * Terminology - * - * "Definitions" are the generic name for top-level statements in the document. - * Examples of this include: - * 1) Operations (such as a query) - * 2) Fragments - * - * "Operations" are a generic name for requests in the document. - * Examples of this include: - * 1) query, - * 2) mutation - * - * "Selections" are the definitions that can appear legally and at - * single level of the query. These include: - * 1) field references e.g `a` - * 2) fragment "spreads" e.g. `...c` - * 3) inline fragment "spreads" e.g. `...on Type { a }` - */ - - /** - * Data that must be available at all points during query execution. - * - * Namely, schema of the type system that is currently executing, - * and the fragments defined in the query document - */ - - /** - * Implements the "Executing requests" section of the GraphQL specification. - * - * Returns either a synchronous ExecutionResult (if all encountered resolvers - * are synchronous), or a Promise of an ExecutionResult that will eventually be - * resolved and never rejected. - * - * If the arguments to this function do not result in a legal execution context, - * a GraphQLError will be thrown immediately explaining the invalid input. - */ - function execute(args) { - // Temporary for v15 to v16 migration. Remove in v17 - arguments.length < 2 || - devAssert( - false, - 'graphql@16 dropped long-deprecated support for positional arguments, please pass an object instead.', - ); - const { schema, document, variableValues, rootValue } = args; // If arguments are missing or incorrect, throw an error. - - assertValidExecutionArguments(schema, document, variableValues); // If a valid execution context cannot be created due to incorrect arguments, - // a "Response" with only errors is returned. - - const exeContext = buildExecutionContext(args); // Return early errors if execution context failed. - - if (!('schema' in exeContext)) { - return { - errors: exeContext, - }; - } // Return a Promise that will eventually resolve to the data described by - // The "Response" section of the GraphQL specification. - // - // If errors are encountered while executing a GraphQL field, only that - // field and its descendants will be omitted, and sibling fields will still - // be executed. An execution which encounters errors will still result in a - // resolved Promise. - // - // Errors from sub-fields of a NonNull type may propagate to the top level, - // at which point we still log the error and null the parent field, which - // in this case is the entire response. - - try { - const { operation } = exeContext; - const result = executeOperation(exeContext, operation, rootValue); - - if (isPromise(result)) { - return result.then( - (data) => buildResponse(data, exeContext.errors), - (error) => { - exeContext.errors.push(error); - return buildResponse(null, exeContext.errors); - }, - ); - } - - return buildResponse(result, exeContext.errors); - } catch (error) { - exeContext.errors.push(error); - return buildResponse(null, exeContext.errors); - } - } - /** - * Also implements the "Executing requests" section of the GraphQL specification. - * However, it guarantees to complete synchronously (or throw an error) assuming - * that all field resolvers are also synchronous. - */ - - function executeSync(args) { - const result = execute(args); // Assert that the execution was synchronous. - - if (isPromise(result)) { - throw new Error('GraphQL execution failed to complete synchronously.'); - } - - return result; - } - /** - * Given a completed execution context and data, build the `{ errors, data }` - * response defined by the "Response" section of the GraphQL specification. - */ - - function buildResponse(data, errors) { - return errors.length === 0 - ? { - data, - } - : { - errors, - data, - }; - } - /** - * Essential assertions before executing to provide developer feedback for - * improper use of the GraphQL library. - * - * @internal - */ - - function assertValidExecutionArguments( - schema, - document, - rawVariableValues, - ) { - document || devAssert(false, 'Must provide document.'); // If the schema used for execution is invalid, throw an error. - - assertValidSchema(schema); // Variables, if provided, must be an object. - - rawVariableValues == null || - isObjectLike(rawVariableValues) || - devAssert( - false, - 'Variables must be provided as an Object where each property is a variable value. Perhaps look to see if an unparsed JSON string was provided.', - ); - } - /** - * Constructs a ExecutionContext object from the arguments passed to - * execute, which we will pass throughout the other execution methods. - * - * Throws a GraphQLError if a valid execution context cannot be created. - * - * @internal - */ - - function buildExecutionContext(args) { - var _definition$name, _operation$variableDe; - - const { - schema, - document, - rootValue, - contextValue, - variableValues: rawVariableValues, - operationName, - fieldResolver, - typeResolver, - subscribeFieldResolver, - } = args; - let operation; - const fragments = Object.create(null); - - for (const definition of document.definitions) { - switch (definition.kind) { - case Kind.OPERATION_DEFINITION: - if (operationName == null) { - if (operation !== undefined) { - return [ - new GraphQLError( - 'Must provide operation name if query contains multiple operations.', - ), - ]; - } - - operation = definition; - } else if ( - ((_definition$name = definition.name) === null || - _definition$name === void 0 - ? void 0 - : _definition$name.value) === operationName - ) { - operation = definition; - } - - break; - - case Kind.FRAGMENT_DEFINITION: - fragments[definition.name.value] = definition; - break; - } - } - - if (!operation) { - if (operationName != null) { - return [new GraphQLError(`Unknown operation named "${operationName}".`)]; - } - - return [new GraphQLError('Must provide an operation.')]; - } // FIXME: https://github.com/graphql/graphql-js/issues/2203 - - /* c8 ignore next */ - - const variableDefinitions = - (_operation$variableDe = operation.variableDefinitions) !== null && - _operation$variableDe !== void 0 - ? _operation$variableDe - : []; - const coercedVariableValues = getVariableValues( - schema, - variableDefinitions, - rawVariableValues !== null && rawVariableValues !== void 0 - ? rawVariableValues - : {}, - { - maxErrors: 50, - }, - ); - - if (coercedVariableValues.errors) { - return coercedVariableValues.errors; - } - - return { - schema, - fragments, - rootValue, - contextValue, - operation, - variableValues: coercedVariableValues.coerced, - fieldResolver: - fieldResolver !== null && fieldResolver !== void 0 - ? fieldResolver - : defaultFieldResolver, - typeResolver: - typeResolver !== null && typeResolver !== void 0 - ? typeResolver - : defaultTypeResolver, - subscribeFieldResolver: - subscribeFieldResolver !== null && subscribeFieldResolver !== void 0 - ? subscribeFieldResolver - : defaultFieldResolver, - errors: [], - }; - } - /** - * Implements the "Executing operations" section of the spec. - */ - - function executeOperation(exeContext, operation, rootValue) { - const rootType = exeContext.schema.getRootType(operation.operation); - - if (rootType == null) { - throw new GraphQLError( - `Schema is not configured to execute ${operation.operation} operation.`, - operation, - ); - } - - const rootFields = collectFields( - exeContext.schema, - exeContext.fragments, - exeContext.variableValues, - rootType, - operation.selectionSet, - ); - const path = undefined; - - switch (operation.operation) { - case OperationTypeNode.QUERY: - return executeFields(exeContext, rootType, rootValue, path, rootFields); - - case OperationTypeNode.MUTATION: - return executeFieldsSerially( - exeContext, - rootType, - rootValue, - path, - rootFields, - ); - - case OperationTypeNode.SUBSCRIPTION: - // TODO: deprecate `subscribe` and move all logic here - // Temporary solution until we finish merging execute and subscribe together - return executeFields(exeContext, rootType, rootValue, path, rootFields); - } - } - /** - * Implements the "Executing selection sets" section of the spec - * for fields that must be executed serially. - */ - - function executeFieldsSerially( - exeContext, - parentType, - sourceValue, - path, - fields, - ) { - return promiseReduce( - fields.entries(), - (results, [responseName, fieldNodes]) => { - const fieldPath = addPath(path, responseName, parentType.name); - const result = executeField( - exeContext, - parentType, - sourceValue, - fieldNodes, - fieldPath, - ); - - if (result === undefined) { - return results; - } - - if (isPromise(result)) { - return result.then((resolvedResult) => { - results[responseName] = resolvedResult; - return results; - }); - } - - results[responseName] = result; - return results; - }, - Object.create(null), - ); - } - /** - * Implements the "Executing selection sets" section of the spec - * for fields that may be executed in parallel. - */ - - function executeFields(exeContext, parentType, sourceValue, path, fields) { - const results = Object.create(null); - let containsPromise = false; - - for (const [responseName, fieldNodes] of fields.entries()) { - const fieldPath = addPath(path, responseName, parentType.name); - const result = executeField( - exeContext, - parentType, - sourceValue, - fieldNodes, - fieldPath, - ); - - if (result !== undefined) { - results[responseName] = result; - - if (isPromise(result)) { - containsPromise = true; - } - } - } // If there are no promises, we can just return the object - - if (!containsPromise) { - return results; - } // Otherwise, results is a map from field name to the result of resolving that - // field, which is possibly a promise. Return a promise that will return this - // same map, but with any promises replaced with the values they resolved to. - - return promiseForObject(results); - } - /** - * Implements the "Executing fields" section of the spec - * In particular, this function figures out the value that the field returns by - * calling its resolve function, then calls completeValue to complete promises, - * serialize scalars, or execute the sub-selection-set for objects. - */ - - function executeField(exeContext, parentType, source, fieldNodes, path) { - var _fieldDef$resolve; - - const fieldDef = getFieldDef(exeContext.schema, parentType, fieldNodes[0]); - - if (!fieldDef) { - return; - } - - const returnType = fieldDef.type; - const resolveFn = - (_fieldDef$resolve = fieldDef.resolve) !== null && - _fieldDef$resolve !== void 0 - ? _fieldDef$resolve - : exeContext.fieldResolver; - const info = buildResolveInfo( - exeContext, - fieldDef, - fieldNodes, - parentType, - path, - ); // Get the resolve function, regardless of if its result is normal or abrupt (error). - - try { - // Build a JS object of arguments from the field.arguments AST, using the - // variables scope to fulfill any variable references. - // TODO: find a way to memoize, in case this field is within a List type. - const args = getArgumentValues( - fieldDef, - fieldNodes[0], - exeContext.variableValues, - ); // The resolve function's optional third argument is a context value that - // is provided to every resolve function within an execution. It is commonly - // used to represent an authenticated user, or request-specific caches. - - const contextValue = exeContext.contextValue; - const result = resolveFn(source, args, contextValue, info); - let completed; - - if (isPromise(result)) { - completed = result.then((resolved) => - completeValue(exeContext, returnType, fieldNodes, info, path, resolved), - ); - } else { - completed = completeValue( - exeContext, - returnType, - fieldNodes, - info, - path, - result, - ); - } - - if (isPromise(completed)) { - // Note: we don't rely on a `catch` method, but we do expect "thenable" - // to take a second callback for the error case. - return completed.then(undefined, (rawError) => { - const error = locatedError(rawError, fieldNodes, pathToArray(path)); - return handleFieldError(error, returnType, exeContext); - }); - } - - return completed; - } catch (rawError) { - const error = locatedError(rawError, fieldNodes, pathToArray(path)); - return handleFieldError(error, returnType, exeContext); - } - } - /** - * @internal - */ - - function buildResolveInfo( - exeContext, - fieldDef, - fieldNodes, - parentType, - path, - ) { - // The resolve function's optional fourth argument is a collection of - // information about the current execution state. - return { - fieldName: fieldDef.name, - fieldNodes, - returnType: fieldDef.type, - parentType, - path, - schema: exeContext.schema, - fragments: exeContext.fragments, - rootValue: exeContext.rootValue, - operation: exeContext.operation, - variableValues: exeContext.variableValues, - }; - } - - function handleFieldError(error, returnType, exeContext) { - // If the field type is non-nullable, then it is resolved without any - // protection from errors, however it still properly locates the error. - if (isNonNullType(returnType)) { - throw error; - } // Otherwise, error protection is applied, logging the error and resolving - // a null value for this field if one is encountered. - - exeContext.errors.push(error); - return null; - } - /** - * Implements the instructions for completeValue as defined in the - * "Value Completion" section of the spec. - * - * If the field type is Non-Null, then this recursively completes the value - * for the inner type. It throws a field error if that completion returns null, - * as per the "Nullability" section of the spec. - * - * If the field type is a List, then this recursively completes the value - * for the inner type on each item in the list. - * - * If the field type is a Scalar or Enum, ensures the completed value is a legal - * value of the type by calling the `serialize` method of GraphQL type - * definition. - * - * If the field is an abstract type, determine the runtime type of the value - * and then complete based on that type - * - * Otherwise, the field type expects a sub-selection set, and will complete the - * value by executing all sub-selections. - */ - - function completeValue(exeContext, returnType, fieldNodes, info, path, result) { - // If result is an Error, throw a located error. - if (result instanceof Error) { - throw result; - } // If field type is NonNull, complete for inner type, and throw field error - // if result is null. - - if (isNonNullType(returnType)) { - const completed = completeValue( - exeContext, - returnType.ofType, - fieldNodes, - info, - path, - result, - ); - - if (completed === null) { - throw new Error( - `Cannot return null for non-nullable field ${info.parentType.name}.${info.fieldName}.`, - ); - } - - return completed; - } // If result value is null or undefined then return null. - - if (result == null) { - return null; - } // If field type is List, complete each item in the list with the inner type - - if (isListType(returnType)) { - return completeListValue( - exeContext, - returnType, - fieldNodes, - info, - path, - result, - ); - } // If field type is a leaf type, Scalar or Enum, serialize to a valid value, - // returning null if serialization is not possible. - - if (isLeafType(returnType)) { - return completeLeafValue(returnType, result); - } // If field type is an abstract type, Interface or Union, determine the - // runtime Object type and complete for that type. - - if (isAbstractType(returnType)) { - return completeAbstractValue( - exeContext, - returnType, - fieldNodes, - info, - path, - result, - ); - } // If field type is Object, execute and complete all sub-selections. - - if (isObjectType(returnType)) { - return completeObjectValue( - exeContext, - returnType, - fieldNodes, - info, - path, - result, - ); - } - /* c8 ignore next 6 */ - // Not reachable, all possible output types have been considered. - - invariant( - false, - 'Cannot complete value of unexpected output type: ' + inspect$2(returnType), - ); - } - /** - * Complete a list value by completing each item in the list with the - * inner type - */ - - function completeListValue( - exeContext, - returnType, - fieldNodes, - info, - path, - result, - ) { - if (!isIterableObject(result)) { - throw new GraphQLError( - `Expected Iterable, but did not find one for field "${info.parentType.name}.${info.fieldName}".`, - ); - } // This is specified as a simple map, however we're optimizing the path - // where the list contains no Promises by avoiding creating another Promise. - - const itemType = returnType.ofType; - let containsPromise = false; - const completedResults = Array.from(result, (item, index) => { - // No need to modify the info object containing the path, - // since from here on it is not ever accessed by resolver functions. - const itemPath = addPath(path, index, undefined); - - try { - let completedItem; - - if (isPromise(item)) { - completedItem = item.then((resolved) => - completeValue( - exeContext, - itemType, - fieldNodes, - info, - itemPath, - resolved, - ), - ); - } else { - completedItem = completeValue( - exeContext, - itemType, - fieldNodes, - info, - itemPath, - item, - ); - } - - if (isPromise(completedItem)) { - containsPromise = true; // Note: we don't rely on a `catch` method, but we do expect "thenable" - // to take a second callback for the error case. - - return completedItem.then(undefined, (rawError) => { - const error = locatedError( - rawError, - fieldNodes, - pathToArray(itemPath), - ); - return handleFieldError(error, itemType, exeContext); - }); - } - - return completedItem; - } catch (rawError) { - const error = locatedError(rawError, fieldNodes, pathToArray(itemPath)); - return handleFieldError(error, itemType, exeContext); - } - }); - return containsPromise ? Promise.all(completedResults) : completedResults; - } - /** - * Complete a Scalar or Enum by serializing to a valid value, returning - * null if serialization is not possible. - */ - - function completeLeafValue(returnType, result) { - const serializedResult = returnType.serialize(result); - - if (serializedResult == null) { - throw new Error( - `Expected \`${inspect$2(returnType)}.serialize(${inspect$2(result)})\` to ` + - `return non-nullable value, returned: ${inspect$2(serializedResult)}`, - ); - } - - return serializedResult; - } - /** - * Complete a value of an abstract type by determining the runtime object type - * of that value, then complete the value for that type. - */ - - function completeAbstractValue( - exeContext, - returnType, - fieldNodes, - info, - path, - result, - ) { - var _returnType$resolveTy; - - const resolveTypeFn = - (_returnType$resolveTy = returnType.resolveType) !== null && - _returnType$resolveTy !== void 0 - ? _returnType$resolveTy - : exeContext.typeResolver; - const contextValue = exeContext.contextValue; - const runtimeType = resolveTypeFn(result, contextValue, info, returnType); - - if (isPromise(runtimeType)) { - return runtimeType.then((resolvedRuntimeType) => - completeObjectValue( - exeContext, - ensureValidRuntimeType( - resolvedRuntimeType, - exeContext, - returnType, - fieldNodes, - info, - result, - ), - fieldNodes, - info, - path, - result, - ), - ); - } - - return completeObjectValue( - exeContext, - ensureValidRuntimeType( - runtimeType, - exeContext, - returnType, - fieldNodes, - info, - result, - ), - fieldNodes, - info, - path, - result, - ); - } - - function ensureValidRuntimeType( - runtimeTypeName, - exeContext, - returnType, - fieldNodes, - info, - result, - ) { - if (runtimeTypeName == null) { - throw new GraphQLError( - `Abstract type "${returnType.name}" must resolve to an Object type at runtime for field "${info.parentType.name}.${info.fieldName}". Either the "${returnType.name}" type should provide a "resolveType" function or each possible type should provide an "isTypeOf" function.`, - fieldNodes, - ); - } // releases before 16.0.0 supported returning `GraphQLObjectType` from `resolveType` - // TODO: remove in 17.0.0 release - - if (isObjectType(runtimeTypeName)) { - throw new GraphQLError( - 'Support for returning GraphQLObjectType from resolveType was removed in graphql-js@16.0.0 please return type name instead.', - ); - } - - if (typeof runtimeTypeName !== 'string') { - throw new GraphQLError( - `Abstract type "${returnType.name}" must resolve to an Object type at runtime for field "${info.parentType.name}.${info.fieldName}" with ` + - `value ${inspect$2(result)}, received "${inspect$2(runtimeTypeName)}".`, - ); - } - - const runtimeType = exeContext.schema.getType(runtimeTypeName); - - if (runtimeType == null) { - throw new GraphQLError( - `Abstract type "${returnType.name}" was resolved to a type "${runtimeTypeName}" that does not exist inside the schema.`, - fieldNodes, - ); - } - - if (!isObjectType(runtimeType)) { - throw new GraphQLError( - `Abstract type "${returnType.name}" was resolved to a non-object type "${runtimeTypeName}".`, - fieldNodes, - ); - } - - if (!exeContext.schema.isSubType(returnType, runtimeType)) { - throw new GraphQLError( - `Runtime Object type "${runtimeType.name}" is not a possible type for "${returnType.name}".`, - fieldNodes, - ); - } - - return runtimeType; - } - /** - * Complete an Object value by executing all sub-selections. - */ - - function completeObjectValue( - exeContext, - returnType, - fieldNodes, - info, - path, - result, - ) { - // Collect sub-fields to execute to complete this value. - const subFieldNodes = collectSubfields(exeContext, returnType, fieldNodes); // If there is an isTypeOf predicate function, call it with the - // current result. If isTypeOf returns false, then raise an error rather - // than continuing execution. - - if (returnType.isTypeOf) { - const isTypeOf = returnType.isTypeOf(result, exeContext.contextValue, info); - - if (isPromise(isTypeOf)) { - return isTypeOf.then((resolvedIsTypeOf) => { - if (!resolvedIsTypeOf) { - throw invalidReturnTypeError(returnType, result, fieldNodes); - } - - return executeFields( - exeContext, - returnType, - result, - path, - subFieldNodes, - ); - }); - } - - if (!isTypeOf) { - throw invalidReturnTypeError(returnType, result, fieldNodes); - } - } - - return executeFields(exeContext, returnType, result, path, subFieldNodes); - } - - function invalidReturnTypeError(returnType, result, fieldNodes) { - return new GraphQLError( - `Expected value of type "${returnType.name}" but got: ${inspect$2(result)}.`, - fieldNodes, - ); - } - /** - * If a resolveType function is not given, then a default resolve behavior is - * used which attempts two strategies: - * - * First, See if the provided value has a `__typename` field defined, if so, use - * that value as name of the resolved type. - * - * Otherwise, test each possible type for the abstract type by calling - * isTypeOf for the object being coerced, returning the first type that matches. - */ - - const defaultTypeResolver = function ( - value, - contextValue, - info, - abstractType, - ) { - // First, look for `__typename`. - if (isObjectLike(value) && typeof value.__typename === 'string') { - return value.__typename; - } // Otherwise, test each possible type. - - const possibleTypes = info.schema.getPossibleTypes(abstractType); - const promisedIsTypeOfResults = []; - - for (let i = 0; i < possibleTypes.length; i++) { - const type = possibleTypes[i]; - - if (type.isTypeOf) { - const isTypeOfResult = type.isTypeOf(value, contextValue, info); - - if (isPromise(isTypeOfResult)) { - promisedIsTypeOfResults[i] = isTypeOfResult; - } else if (isTypeOfResult) { - return type.name; - } - } - } - - if (promisedIsTypeOfResults.length) { - return Promise.all(promisedIsTypeOfResults).then((isTypeOfResults) => { - for (let i = 0; i < isTypeOfResults.length; i++) { - if (isTypeOfResults[i]) { - return possibleTypes[i].name; - } - } - }); - } - }; - /** - * If a resolve function is not given, then a default resolve behavior is used - * which takes the property of the source object of the same name as the field - * and returns it as the result, or if it's a function, returns the result - * of calling that function while passing along args and context value. - */ - - const defaultFieldResolver = function ( - source, - args, - contextValue, - info, - ) { - // ensure source is a value for which property access is acceptable. - if (isObjectLike(source) || typeof source === 'function') { - const property = source[info.fieldName]; - - if (typeof property === 'function') { - return source[info.fieldName](args, contextValue, info); - } - - return property; - } - }; - /** - * This method looks up the field on the given type definition. - * It has special casing for the three introspection fields, - * __schema, __type and __typename. __typename is special because - * it can always be queried as a field, even in situations where no - * other fields are allowed, like on a Union. __schema and __type - * could get automatically added to the query type, but that would - * require mutating type definitions, which would cause issues. - * - * @internal - */ - - function getFieldDef(schema, parentType, fieldNode) { - const fieldName = fieldNode.name.value; - - if ( - fieldName === SchemaMetaFieldDef.name && - schema.getQueryType() === parentType - ) { - return SchemaMetaFieldDef; - } else if ( - fieldName === TypeMetaFieldDef.name && - schema.getQueryType() === parentType - ) { - return TypeMetaFieldDef; - } else if (fieldName === TypeNameMetaFieldDef.name) { - return TypeNameMetaFieldDef; - } - - return parentType.getFields()[fieldName]; - } - - /** - * This is the primary entry point function for fulfilling GraphQL operations - * by parsing, validating, and executing a GraphQL document along side a - * GraphQL schema. - * - * More sophisticated GraphQL servers, such as those which persist queries, - * may wish to separate the validation and execution phases to a static time - * tooling step, and a server runtime step. - * - * Accepts either an object with named arguments, or individual arguments: - * - * schema: - * The GraphQL type system to use when validating and executing a query. - * source: - * A GraphQL language formatted string representing the requested operation. - * rootValue: - * The value provided as the first argument to resolver functions on the top - * level type (e.g. the query object type). - * contextValue: - * The context value is provided as an argument to resolver functions after - * field arguments. It is used to pass shared information useful at any point - * during executing this query, for example the currently logged in user and - * connections to databases or other services. - * variableValues: - * A mapping of variable name to runtime value to use for all variables - * defined in the requestString. - * operationName: - * The name of the operation to use if requestString contains multiple - * possible operations. Can be omitted if requestString contains only - * one operation. - * fieldResolver: - * A resolver function to use when one is not provided by the schema. - * If not provided, the default field resolver is used (which looks for a - * value or method on the source value with the field's name). - * typeResolver: - * A type resolver function to use when none is provided by the schema. - * If not provided, the default type resolver is used (which looks for a - * `__typename` field or alternatively calls the `isTypeOf` method). - */ - - function graphql$1(args) { - // Always return a Promise for a consistent API. - return new Promise((resolve) => resolve(graphqlImpl(args))); - } - /** - * The graphqlSync function also fulfills GraphQL operations by parsing, - * validating, and executing a GraphQL document along side a GraphQL schema. - * However, it guarantees to complete synchronously (or throw an error) assuming - * that all field resolvers are also synchronous. - */ - - function graphqlSync(args) { - const result = graphqlImpl(args); // Assert that the execution was synchronous. - - if (isPromise(result)) { - throw new Error('GraphQL execution failed to complete synchronously.'); - } - - return result; - } - - function graphqlImpl(args) { - // Temporary for v15 to v16 migration. Remove in v17 - arguments.length < 2 || - devAssert( - false, - 'graphql@16 dropped long-deprecated support for positional arguments, please pass an object instead.', - ); - const { - schema, - source, - rootValue, - contextValue, - variableValues, - operationName, - fieldResolver, - typeResolver, - } = args; // Validate Schema - - const schemaValidationErrors = validateSchema$1(schema); - - if (schemaValidationErrors.length > 0) { - return { - errors: schemaValidationErrors, - }; - } // Parse - - let document; - - try { - document = parse(source); - } catch (syntaxError) { - return { - errors: [syntaxError], - }; - } // Validate - - const validationErrors = validate$2(schema, document); - - if (validationErrors.length > 0) { - return { - errors: validationErrors, - }; - } // Execute - - return execute({ - schema, - document, - rootValue, - contextValue, - variableValues, - operationName, - fieldResolver, - typeResolver, - }); - } - - /** - * Returns true if the provided object implements the AsyncIterator protocol via - * implementing a `Symbol.asyncIterator` method. - */ - function isAsyncIterable(maybeAsyncIterable) { - return ( - typeof (maybeAsyncIterable === null || maybeAsyncIterable === void 0 - ? void 0 - : maybeAsyncIterable[Symbol.asyncIterator]) === 'function' - ); - } - - /** - * Given an AsyncIterable and a callback function, return an AsyncIterator - * which produces values mapped via calling the callback function. - */ - function mapAsyncIterator(iterable, callback) { - const iterator = iterable[Symbol.asyncIterator](); - - async function mapResult(result) { - if (result.done) { - return result; - } - - try { - return { - value: await callback(result.value), - done: false, - }; - } catch (error) { - /* c8 ignore start */ - // FIXME: add test case - if (typeof iterator.return === 'function') { - try { - await iterator.return(); - } catch (_e) { - /* ignore error */ - } - } - - throw error; - /* c8 ignore stop */ - } - } - - return { - async next() { - return mapResult(await iterator.next()); - }, - - async return() { - // If iterator.return() does not exist, then type R must be undefined. - return typeof iterator.return === 'function' - ? mapResult(await iterator.return()) - : { - value: undefined, - done: true, - }; - }, - - async throw(error) { - if (typeof iterator.throw === 'function') { - return mapResult(await iterator.throw(error)); - } - - throw error; - }, - - [Symbol.asyncIterator]() { - return this; - }, - }; - } - - /** - * Implements the "Subscribe" algorithm described in the GraphQL specification. - * - * Returns a Promise which resolves to either an AsyncIterator (if successful) - * or an ExecutionResult (error). The promise will be rejected if the schema or - * other arguments to this function are invalid, or if the resolved event stream - * is not an async iterable. - * - * If the client-provided arguments to this function do not result in a - * compliant subscription, a GraphQL Response (ExecutionResult) with - * descriptive errors and no data will be returned. - * - * If the source stream could not be created due to faulty subscription - * resolver logic or underlying systems, the promise will resolve to a single - * ExecutionResult containing `errors` and no `data`. - * - * If the operation succeeded, the promise resolves to an AsyncIterator, which - * yields a stream of ExecutionResults representing the response stream. - * - * Accepts either an object with named arguments, or individual arguments. - */ - - async function subscribe(args) { - // Temporary for v15 to v16 migration. Remove in v17 - arguments.length < 2 || - devAssert( - false, - 'graphql@16 dropped long-deprecated support for positional arguments, please pass an object instead.', - ); - const { - schema, - document, - rootValue, - contextValue, - variableValues, - operationName, - fieldResolver, - subscribeFieldResolver, - } = args; - const resultOrStream = await createSourceEventStream( - schema, - document, - rootValue, - contextValue, - variableValues, - operationName, - subscribeFieldResolver, - ); - - if (!isAsyncIterable(resultOrStream)) { - return resultOrStream; - } // For each payload yielded from a subscription, map it over the normal - // GraphQL `execute` function, with `payload` as the rootValue. - // This implements the "MapSourceToResponseEvent" algorithm described in - // the GraphQL specification. The `execute` function provides the - // "ExecuteSubscriptionEvent" algorithm, as it is nearly identical to the - // "ExecuteQuery" algorithm, for which `execute` is also used. - - const mapSourceToResponse = (payload) => - execute({ - schema, - document, - rootValue: payload, - contextValue, - variableValues, - operationName, - fieldResolver, - }); // Map every source value to a ExecutionResult value as described above. - - return mapAsyncIterator(resultOrStream, mapSourceToResponse); - } - /** - * Implements the "CreateSourceEventStream" algorithm described in the - * GraphQL specification, resolving the subscription source event stream. - * - * Returns a Promise which resolves to either an AsyncIterable (if successful) - * or an ExecutionResult (error). The promise will be rejected if the schema or - * other arguments to this function are invalid, or if the resolved event stream - * is not an async iterable. - * - * If the client-provided arguments to this function do not result in a - * compliant subscription, a GraphQL Response (ExecutionResult) with - * descriptive errors and no data will be returned. - * - * If the the source stream could not be created due to faulty subscription - * resolver logic or underlying systems, the promise will resolve to a single - * ExecutionResult containing `errors` and no `data`. - * - * If the operation succeeded, the promise resolves to the AsyncIterable for the - * event stream returned by the resolver. - * - * A Source Event Stream represents a sequence of events, each of which triggers - * a GraphQL execution for that event. - * - * This may be useful when hosting the stateful subscription service in a - * different process or machine than the stateless GraphQL execution engine, - * or otherwise separating these two steps. For more on this, see the - * "Supporting Subscriptions at Scale" information in the GraphQL specification. - */ - - async function createSourceEventStream( - schema, - document, - rootValue, - contextValue, - variableValues, - operationName, - subscribeFieldResolver, - ) { - // If arguments are missing or incorrectly typed, this is an internal - // developer mistake which should throw an early error. - assertValidExecutionArguments(schema, document, variableValues); // If a valid execution context cannot be created due to incorrect arguments, - // a "Response" with only errors is returned. - - const exeContext = buildExecutionContext({ - schema, - document, - rootValue, - contextValue, - variableValues, - operationName, - subscribeFieldResolver, - }); // Return early errors if execution context failed. - - if (!('schema' in exeContext)) { - return { - errors: exeContext, - }; - } - - try { - const eventStream = await executeSubscription(exeContext); // Assert field returned an event stream, otherwise yield an error. - - if (!isAsyncIterable(eventStream)) { - throw new Error( - 'Subscription field must return Async Iterable. ' + - `Received: ${inspect$2(eventStream)}.`, - ); - } - - return eventStream; - } catch (error) { - // If it GraphQLError, report it as an ExecutionResult, containing only errors and no data. - // Otherwise treat the error as a system-class error and re-throw it. - if (error instanceof GraphQLError) { - return { - errors: [error], - }; - } - - throw error; - } - } - - async function executeSubscription(exeContext) { - const { schema, fragments, operation, variableValues, rootValue } = - exeContext; - const rootType = schema.getSubscriptionType(); - - if (rootType == null) { - throw new GraphQLError( - 'Schema is not configured to execute subscription operation.', - operation, - ); - } - - const rootFields = collectFields( - schema, - fragments, - variableValues, - rootType, - operation.selectionSet, - ); - const [responseName, fieldNodes] = [...rootFields.entries()][0]; - const fieldDef = getFieldDef(schema, rootType, fieldNodes[0]); - - if (!fieldDef) { - const fieldName = fieldNodes[0].name.value; - throw new GraphQLError( - `The subscription field "${fieldName}" is not defined.`, - fieldNodes, - ); - } - - const path = addPath(undefined, responseName, rootType.name); - const info = buildResolveInfo( - exeContext, - fieldDef, - fieldNodes, - rootType, - path, - ); - - try { - var _fieldDef$subscribe; - - // Implements the "ResolveFieldEventStream" algorithm from GraphQL specification. - // It differs from "ResolveFieldValue" due to providing a different `resolveFn`. - // Build a JS object of arguments from the field.arguments AST, using the - // variables scope to fulfill any variable references. - const args = getArgumentValues(fieldDef, fieldNodes[0], variableValues); // The resolve function's optional third argument is a context value that - // is provided to every resolve function within an execution. It is commonly - // used to represent an authenticated user, or request-specific caches. - - const contextValue = exeContext.contextValue; // Call the `subscribe()` resolver or the default resolver to produce an - // AsyncIterable yielding raw payloads. - - const resolveFn = - (_fieldDef$subscribe = fieldDef.subscribe) !== null && - _fieldDef$subscribe !== void 0 - ? _fieldDef$subscribe - : exeContext.subscribeFieldResolver; - const eventStream = await resolveFn(rootValue, args, contextValue, info); - - if (eventStream instanceof Error) { - throw eventStream; - } - - return eventStream; - } catch (error) { - throw locatedError(error, fieldNodes, pathToArray(path)); - } - } - - /** - * No deprecated - * - * A GraphQL document is only valid if all selected fields and all used enum values have not been - * deprecated. - * - * Note: This rule is optional and is not part of the Validation section of the GraphQL - * Specification. The main purpose of this rule is detection of deprecated usages and not - * necessarily to forbid their use when querying a service. - */ - function NoDeprecatedCustomRule(context) { - return { - Field(node) { - const fieldDef = context.getFieldDef(); - const deprecationReason = - fieldDef === null || fieldDef === void 0 - ? void 0 - : fieldDef.deprecationReason; - - if (fieldDef && deprecationReason != null) { - const parentType = context.getParentType(); - parentType != null || invariant(false); - context.reportError( - new GraphQLError( - `The field ${parentType.name}.${fieldDef.name} is deprecated. ${deprecationReason}`, - node, - ), - ); - } - }, - - Argument(node) { - const argDef = context.getArgument(); - const deprecationReason = - argDef === null || argDef === void 0 - ? void 0 - : argDef.deprecationReason; - - if (argDef && deprecationReason != null) { - const directiveDef = context.getDirective(); - - if (directiveDef != null) { - context.reportError( - new GraphQLError( - `Directive "@${directiveDef.name}" argument "${argDef.name}" is deprecated. ${deprecationReason}`, - node, - ), - ); - } else { - const parentType = context.getParentType(); - const fieldDef = context.getFieldDef(); - (parentType != null && fieldDef != null) || invariant(false); - context.reportError( - new GraphQLError( - `Field "${parentType.name}.${fieldDef.name}" argument "${argDef.name}" is deprecated. ${deprecationReason}`, - node, - ), - ); - } - } - }, - - ObjectField(node) { - const inputObjectDef = getNamedType(context.getParentInputType()); - - if (isInputObjectType(inputObjectDef)) { - const inputFieldDef = inputObjectDef.getFields()[node.name.value]; - const deprecationReason = - inputFieldDef === null || inputFieldDef === void 0 - ? void 0 - : inputFieldDef.deprecationReason; - - if (deprecationReason != null) { - context.reportError( - new GraphQLError( - `The input field ${inputObjectDef.name}.${inputFieldDef.name} is deprecated. ${deprecationReason}`, - node, - ), - ); - } - } - }, - - EnumValue(node) { - const enumValueDef = context.getEnumValue(); - const deprecationReason = - enumValueDef === null || enumValueDef === void 0 - ? void 0 - : enumValueDef.deprecationReason; - - if (enumValueDef && deprecationReason != null) { - const enumTypeDef = getNamedType(context.getInputType()); - enumTypeDef != null || invariant(false); - context.reportError( - new GraphQLError( - `The enum value "${enumTypeDef.name}.${enumValueDef.name}" is deprecated. ${deprecationReason}`, - node, - ), - ); - } - }, - }; - } - - /** - * Prohibit introspection queries - * - * A GraphQL document is only valid if all fields selected are not fields that - * return an introspection type. - * - * Note: This rule is optional and is not part of the Validation section of the - * GraphQL Specification. This rule effectively disables introspection, which - * does not reflect best practices and should only be done if absolutely necessary. - */ - function NoSchemaIntrospectionCustomRule(context) { - return { - Field(node) { - const type = getNamedType(context.getType()); - - if (type && isIntrospectionType(type)) { - context.reportError( - new GraphQLError( - `GraphQL introspection has been disabled, but the requested query contained the field "${node.name.value}".`, - node, - ), - ); - } - }, - }; - } - - /** - * Produce the GraphQL query recommended for a full schema introspection. - * Accepts optional IntrospectionOptions. - */ - function getIntrospectionQuery(options) { - const optionsWithDefault = { - descriptions: true, - specifiedByUrl: false, - directiveIsRepeatable: false, - schemaDescription: false, - inputValueDeprecation: false, - ...options, - }; - const descriptions = optionsWithDefault.descriptions ? 'description' : ''; - const specifiedByUrl = optionsWithDefault.specifiedByUrl - ? 'specifiedByURL' - : ''; - const directiveIsRepeatable = optionsWithDefault.directiveIsRepeatable - ? 'isRepeatable' - : ''; - const schemaDescription = optionsWithDefault.schemaDescription - ? descriptions - : ''; - - function inputDeprecation(str) { - return optionsWithDefault.inputValueDeprecation ? str : ''; - } - - return ` - query IntrospectionQuery { - __schema { - ${schemaDescription} - queryType { name } - mutationType { name } - subscriptionType { name } - types { - ...FullType - } - directives { - name - ${descriptions} - ${directiveIsRepeatable} - locations - args${inputDeprecation('(includeDeprecated: true)')} { - ...InputValue - } - } - } - } - - fragment FullType on __Type { - kind - name - ${descriptions} - ${specifiedByUrl} - fields(includeDeprecated: true) { - name - ${descriptions} - args${inputDeprecation('(includeDeprecated: true)')} { - ...InputValue - } - type { - ...TypeRef - } - isDeprecated - deprecationReason - } - inputFields${inputDeprecation('(includeDeprecated: true)')} { - ...InputValue - } - interfaces { - ...TypeRef - } - enumValues(includeDeprecated: true) { - name - ${descriptions} - isDeprecated - deprecationReason - } - possibleTypes { - ...TypeRef - } - } - - fragment InputValue on __InputValue { - name - ${descriptions} - type { ...TypeRef } - defaultValue - ${inputDeprecation('isDeprecated')} - ${inputDeprecation('deprecationReason')} - } - - fragment TypeRef on __Type { - kind - name - ofType { - kind - name - ofType { - kind - name - ofType { - kind - name - ofType { - kind - name - ofType { - kind - name - ofType { - kind - name - ofType { - kind - name - } - } - } - } - } - } - } - } - `; - } - - /** - * Returns an operation AST given a document AST and optionally an operation - * name. If a name is not provided, an operation is only returned if only one is - * provided in the document. - */ - - function getOperationAST(documentAST, operationName) { - let operation = null; - - for (const definition of documentAST.definitions) { - if (definition.kind === Kind.OPERATION_DEFINITION) { - var _definition$name; - - if (operationName == null) { - // If no operation name was provided, only return an Operation if there - // is one defined in the document. Upon encountering the second, return - // null. - if (operation) { - return null; - } - - operation = definition; - } else if ( - ((_definition$name = definition.name) === null || - _definition$name === void 0 - ? void 0 - : _definition$name.value) === operationName - ) { - return definition; - } - } - } - - return operation; - } - - /** - * Extracts the root type of the operation from the schema. - * - * @deprecated Please use `GraphQLSchema.getRootType` instead. Will be removed in v17 - */ - function getOperationRootType(schema, operation) { - if (operation.operation === 'query') { - const queryType = schema.getQueryType(); - - if (!queryType) { - throw new GraphQLError( - 'Schema does not define the required query root type.', - operation, - ); - } - - return queryType; - } - - if (operation.operation === 'mutation') { - const mutationType = schema.getMutationType(); - - if (!mutationType) { - throw new GraphQLError( - 'Schema is not configured for mutations.', - operation, - ); - } - - return mutationType; - } - - if (operation.operation === 'subscription') { - const subscriptionType = schema.getSubscriptionType(); - - if (!subscriptionType) { - throw new GraphQLError( - 'Schema is not configured for subscriptions.', - operation, - ); - } - - return subscriptionType; - } - - throw new GraphQLError( - 'Can only have query, mutation and subscription operations.', - operation, - ); - } - - /** - * Build an IntrospectionQuery from a GraphQLSchema - * - * IntrospectionQuery is useful for utilities that care about type and field - * relationships, but do not need to traverse through those relationships. - * - * This is the inverse of buildClientSchema. The primary use case is outside - * of the server context, for instance when doing schema comparisons. - */ - - function introspectionFromSchema(schema, options) { - const optionsWithDefaults = { - specifiedByUrl: true, - directiveIsRepeatable: true, - schemaDescription: true, - inputValueDeprecation: true, - ...options, - }; - const document = parse(getIntrospectionQuery(optionsWithDefaults)); - const result = executeSync({ - schema, - document, - }); - (!result.errors && result.data) || invariant(false); - return result.data; - } - - /** - * Build a GraphQLSchema for use by client tools. - * - * Given the result of a client running the introspection query, creates and - * returns a GraphQLSchema instance which can be then used with all graphql-js - * tools, but cannot be used to execute a query, as introspection does not - * represent the "resolver", "parse" or "serialize" functions or any other - * server-internal mechanisms. - * - * This function expects a complete introspection result. Don't forget to check - * the "errors" field of a server response before calling this function. - */ - - function buildClientSchema(introspection, options) { - (isObjectLike(introspection) && isObjectLike(introspection.__schema)) || - devAssert( - false, - `Invalid or incomplete introspection result. Ensure that you are passing "data" property of introspection response and no "errors" was returned alongside: ${inspect$2( - introspection, - )}.`, - ); // Get the schema from the introspection result. - - const schemaIntrospection = introspection.__schema; // Iterate through all types, getting the type definition for each. - - const typeMap = keyValMap( - schemaIntrospection.types, - (typeIntrospection) => typeIntrospection.name, - (typeIntrospection) => buildType(typeIntrospection), - ); // Include standard types only if they are used. - - for (const stdType of [...specifiedScalarTypes, ...introspectionTypes]) { - if (typeMap[stdType.name]) { - typeMap[stdType.name] = stdType; - } - } // Get the root Query, Mutation, and Subscription types. - - const queryType = schemaIntrospection.queryType - ? getObjectType(schemaIntrospection.queryType) - : null; - const mutationType = schemaIntrospection.mutationType - ? getObjectType(schemaIntrospection.mutationType) - : null; - const subscriptionType = schemaIntrospection.subscriptionType - ? getObjectType(schemaIntrospection.subscriptionType) - : null; // Get the directives supported by Introspection, assuming empty-set if - // directives were not queried for. - - const directives = schemaIntrospection.directives - ? schemaIntrospection.directives.map(buildDirective) - : []; // Then produce and return a Schema with these types. - - return new GraphQLSchema({ - description: schemaIntrospection.description, - query: queryType, - mutation: mutationType, - subscription: subscriptionType, - types: Object.values(typeMap), - directives, - assumeValid: - options === null || options === void 0 ? void 0 : options.assumeValid, - }); // Given a type reference in introspection, return the GraphQLType instance. - // preferring cached instances before building new instances. - - function getType(typeRef) { - if (typeRef.kind === TypeKind.LIST) { - const itemRef = typeRef.ofType; - - if (!itemRef) { - throw new Error('Decorated type deeper than introspection query.'); - } - - return new GraphQLList(getType(itemRef)); - } - - if (typeRef.kind === TypeKind.NON_NULL) { - const nullableRef = typeRef.ofType; - - if (!nullableRef) { - throw new Error('Decorated type deeper than introspection query.'); - } - - const nullableType = getType(nullableRef); - return new GraphQLNonNull(assertNullableType(nullableType)); - } - - return getNamedType(typeRef); - } - - function getNamedType(typeRef) { - const typeName = typeRef.name; - - if (!typeName) { - throw new Error(`Unknown type reference: ${inspect$2(typeRef)}.`); - } - - const type = typeMap[typeName]; - - if (!type) { - throw new Error( - `Invalid or incomplete schema, unknown type: ${typeName}. Ensure that a full introspection query is used in order to build a client schema.`, - ); - } - - return type; - } - - function getObjectType(typeRef) { - return assertObjectType(getNamedType(typeRef)); - } - - function getInterfaceType(typeRef) { - return assertInterfaceType(getNamedType(typeRef)); - } // Given a type's introspection result, construct the correct - // GraphQLType instance. - - function buildType(type) { - // eslint-disable-next-line @typescript-eslint/prefer-optional-chain - if (type != null && type.name != null && type.kind != null) { - // FIXME: Properly type IntrospectionType, it's a breaking change so fix in v17 - // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check - switch (type.kind) { - case TypeKind.SCALAR: - return buildScalarDef(type); - - case TypeKind.OBJECT: - return buildObjectDef(type); - - case TypeKind.INTERFACE: - return buildInterfaceDef(type); - - case TypeKind.UNION: - return buildUnionDef(type); - - case TypeKind.ENUM: - return buildEnumDef(type); - - case TypeKind.INPUT_OBJECT: - return buildInputObjectDef(type); - } - } - - const typeStr = inspect$2(type); - throw new Error( - `Invalid or incomplete introspection result. Ensure that a full introspection query is used in order to build a client schema: ${typeStr}.`, - ); - } - - function buildScalarDef(scalarIntrospection) { - return new GraphQLScalarType({ - name: scalarIntrospection.name, - description: scalarIntrospection.description, - specifiedByURL: scalarIntrospection.specifiedByURL, - }); - } - - function buildImplementationsList(implementingIntrospection) { - // TODO: Temporary workaround until GraphQL ecosystem will fully support - // 'interfaces' on interface types. - if ( - implementingIntrospection.interfaces === null && - implementingIntrospection.kind === TypeKind.INTERFACE - ) { - return []; - } - - if (!implementingIntrospection.interfaces) { - const implementingIntrospectionStr = inspect$2(implementingIntrospection); - throw new Error( - `Introspection result missing interfaces: ${implementingIntrospectionStr}.`, - ); - } - - return implementingIntrospection.interfaces.map(getInterfaceType); - } - - function buildObjectDef(objectIntrospection) { - return new GraphQLObjectType({ - name: objectIntrospection.name, - description: objectIntrospection.description, - interfaces: () => buildImplementationsList(objectIntrospection), - fields: () => buildFieldDefMap(objectIntrospection), - }); - } - - function buildInterfaceDef(interfaceIntrospection) { - return new GraphQLInterfaceType({ - name: interfaceIntrospection.name, - description: interfaceIntrospection.description, - interfaces: () => buildImplementationsList(interfaceIntrospection), - fields: () => buildFieldDefMap(interfaceIntrospection), - }); - } - - function buildUnionDef(unionIntrospection) { - if (!unionIntrospection.possibleTypes) { - const unionIntrospectionStr = inspect$2(unionIntrospection); - throw new Error( - `Introspection result missing possibleTypes: ${unionIntrospectionStr}.`, - ); - } - - return new GraphQLUnionType({ - name: unionIntrospection.name, - description: unionIntrospection.description, - types: () => unionIntrospection.possibleTypes.map(getObjectType), - }); - } - - function buildEnumDef(enumIntrospection) { - if (!enumIntrospection.enumValues) { - const enumIntrospectionStr = inspect$2(enumIntrospection); - throw new Error( - `Introspection result missing enumValues: ${enumIntrospectionStr}.`, - ); - } - - return new GraphQLEnumType({ - name: enumIntrospection.name, - description: enumIntrospection.description, - values: keyValMap( - enumIntrospection.enumValues, - (valueIntrospection) => valueIntrospection.name, - (valueIntrospection) => ({ - description: valueIntrospection.description, - deprecationReason: valueIntrospection.deprecationReason, - }), - ), - }); - } - - function buildInputObjectDef(inputObjectIntrospection) { - if (!inputObjectIntrospection.inputFields) { - const inputObjectIntrospectionStr = inspect$2(inputObjectIntrospection); - throw new Error( - `Introspection result missing inputFields: ${inputObjectIntrospectionStr}.`, - ); - } - - return new GraphQLInputObjectType({ - name: inputObjectIntrospection.name, - description: inputObjectIntrospection.description, - fields: () => buildInputValueDefMap(inputObjectIntrospection.inputFields), - }); - } - - function buildFieldDefMap(typeIntrospection) { - if (!typeIntrospection.fields) { - throw new Error( - `Introspection result missing fields: ${inspect$2(typeIntrospection)}.`, - ); - } - - return keyValMap( - typeIntrospection.fields, - (fieldIntrospection) => fieldIntrospection.name, - buildField, - ); - } - - function buildField(fieldIntrospection) { - const type = getType(fieldIntrospection.type); - - if (!isOutputType(type)) { - const typeStr = inspect$2(type); - throw new Error( - `Introspection must provide output type for fields, but received: ${typeStr}.`, - ); - } - - if (!fieldIntrospection.args) { - const fieldIntrospectionStr = inspect$2(fieldIntrospection); - throw new Error( - `Introspection result missing field args: ${fieldIntrospectionStr}.`, - ); - } - - return { - description: fieldIntrospection.description, - deprecationReason: fieldIntrospection.deprecationReason, - type, - args: buildInputValueDefMap(fieldIntrospection.args), - }; - } - - function buildInputValueDefMap(inputValueIntrospections) { - return keyValMap( - inputValueIntrospections, - (inputValue) => inputValue.name, - buildInputValue, - ); - } - - function buildInputValue(inputValueIntrospection) { - const type = getType(inputValueIntrospection.type); - - if (!isInputType(type)) { - const typeStr = inspect$2(type); - throw new Error( - `Introspection must provide input type for arguments, but received: ${typeStr}.`, - ); - } - - const defaultValue = - inputValueIntrospection.defaultValue != null - ? valueFromAST$1(parseValue(inputValueIntrospection.defaultValue), type) - : undefined; - return { - description: inputValueIntrospection.description, - type, - defaultValue, - deprecationReason: inputValueIntrospection.deprecationReason, - }; - } - - function buildDirective(directiveIntrospection) { - if (!directiveIntrospection.args) { - const directiveIntrospectionStr = inspect$2(directiveIntrospection); - throw new Error( - `Introspection result missing directive args: ${directiveIntrospectionStr}.`, - ); - } - - if (!directiveIntrospection.locations) { - const directiveIntrospectionStr = inspect$2(directiveIntrospection); - throw new Error( - `Introspection result missing directive locations: ${directiveIntrospectionStr}.`, - ); - } - - return new GraphQLDirective({ - name: directiveIntrospection.name, - description: directiveIntrospection.description, - isRepeatable: directiveIntrospection.isRepeatable, - locations: directiveIntrospection.locations.slice(), - args: buildInputValueDefMap(directiveIntrospection.args), - }); - } - } - - /** - * Produces a new schema given an existing schema and a document which may - * contain GraphQL type extensions and definitions. The original schema will - * remain unaltered. - * - * Because a schema represents a graph of references, a schema cannot be - * extended without effectively making an entire copy. We do not know until it's - * too late if subgraphs remain unchanged. - * - * This algorithm copies the provided schema, applying extensions while - * producing the copy. The original schema remains unaltered. - */ - function extendSchema(schema, documentAST, options) { - assertSchema(schema); - (documentAST != null && documentAST.kind === Kind.DOCUMENT) || - devAssert(false, 'Must provide valid Document AST.'); - - if ( - (options === null || options === void 0 ? void 0 : options.assumeValid) !== - true && - (options === null || options === void 0 - ? void 0 - : options.assumeValidSDL) !== true - ) { - assertValidSDLExtension(documentAST, schema); - } - - const schemaConfig = schema.toConfig(); - const extendedConfig = extendSchemaImpl(schemaConfig, documentAST, options); - return schemaConfig === extendedConfig - ? schema - : new GraphQLSchema(extendedConfig); - } - /** - * @internal - */ - - function extendSchemaImpl(schemaConfig, documentAST, options) { - var _schemaDef, _schemaDef$descriptio, _schemaDef2, _options$assumeValid; - - // Collect the type definitions and extensions found in the document. - const typeDefs = []; - const typeExtensionsMap = Object.create(null); // New directives and types are separate because a directives and types can - // have the same name. For example, a type named "skip". - - const directiveDefs = []; - let schemaDef; // Schema extensions are collected which may add additional operation types. - - const schemaExtensions = []; - - for (const def of documentAST.definitions) { - if (def.kind === Kind.SCHEMA_DEFINITION) { - schemaDef = def; - } else if (def.kind === Kind.SCHEMA_EXTENSION) { - schemaExtensions.push(def); - } else if (isTypeDefinitionNode(def)) { - typeDefs.push(def); - } else if (isTypeExtensionNode(def)) { - const extendedTypeName = def.name.value; - const existingTypeExtensions = typeExtensionsMap[extendedTypeName]; - typeExtensionsMap[extendedTypeName] = existingTypeExtensions - ? existingTypeExtensions.concat([def]) - : [def]; - } else if (def.kind === Kind.DIRECTIVE_DEFINITION) { - directiveDefs.push(def); - } - } // If this document contains no new types, extensions, or directives then - // return the same unmodified GraphQLSchema instance. - - if ( - Object.keys(typeExtensionsMap).length === 0 && - typeDefs.length === 0 && - directiveDefs.length === 0 && - schemaExtensions.length === 0 && - schemaDef == null - ) { - return schemaConfig; - } - - const typeMap = Object.create(null); - - for (const existingType of schemaConfig.types) { - typeMap[existingType.name] = extendNamedType(existingType); - } - - for (const typeNode of typeDefs) { - var _stdTypeMap$name; - - const name = typeNode.name.value; - typeMap[name] = - (_stdTypeMap$name = stdTypeMap[name]) !== null && - _stdTypeMap$name !== void 0 - ? _stdTypeMap$name - : buildType(typeNode); - } - - const operationTypes = { - // Get the extended root operation types. - query: schemaConfig.query && replaceNamedType(schemaConfig.query), - mutation: schemaConfig.mutation && replaceNamedType(schemaConfig.mutation), - subscription: - schemaConfig.subscription && replaceNamedType(schemaConfig.subscription), - // Then, incorporate schema definition and all schema extensions. - ...(schemaDef && getOperationTypes([schemaDef])), - ...getOperationTypes(schemaExtensions), - }; // Then produce and return a Schema config with these types. - - return { - description: - (_schemaDef = schemaDef) === null || _schemaDef === void 0 - ? void 0 - : (_schemaDef$descriptio = _schemaDef.description) === null || - _schemaDef$descriptio === void 0 - ? void 0 - : _schemaDef$descriptio.value, - ...operationTypes, - types: Object.values(typeMap), - directives: [ - ...schemaConfig.directives.map(replaceDirective), - ...directiveDefs.map(buildDirective), - ], - extensions: Object.create(null), - astNode: - (_schemaDef2 = schemaDef) !== null && _schemaDef2 !== void 0 - ? _schemaDef2 - : schemaConfig.astNode, - extensionASTNodes: schemaConfig.extensionASTNodes.concat(schemaExtensions), - assumeValid: - (_options$assumeValid = - options === null || options === void 0 - ? void 0 - : options.assumeValid) !== null && _options$assumeValid !== void 0 - ? _options$assumeValid - : false, - }; // Below are functions used for producing this schema that have closed over - // this scope and have access to the schema, cache, and newly defined types. - - function replaceType(type) { - if (isListType(type)) { - // @ts-expect-error - return new GraphQLList(replaceType(type.ofType)); - } - - if (isNonNullType(type)) { - // @ts-expect-error - return new GraphQLNonNull(replaceType(type.ofType)); - } // @ts-expect-error FIXME - - return replaceNamedType(type); - } - - function replaceNamedType(type) { - // Note: While this could make early assertions to get the correctly - // typed values, that would throw immediately while type system - // validation with validateSchema() will produce more actionable results. - return typeMap[type.name]; - } - - function replaceDirective(directive) { - const config = directive.toConfig(); - return new GraphQLDirective({ - ...config, - args: mapValue(config.args, extendArg), - }); - } - - function extendNamedType(type) { - if (isIntrospectionType(type) || isSpecifiedScalarType(type)) { - // Builtin types are not extended. - return type; - } - - if (isScalarType(type)) { - return extendScalarType(type); - } - - if (isObjectType(type)) { - return extendObjectType(type); - } - - if (isInterfaceType(type)) { - return extendInterfaceType(type); - } - - if (isUnionType(type)) { - return extendUnionType(type); - } - - if (isEnumType(type)) { - return extendEnumType(type); - } - - if (isInputObjectType(type)) { - return extendInputObjectType(type); - } - /* c8 ignore next 3 */ - // Not reachable, all possible type definition nodes have been considered. - - invariant(false, 'Unexpected type: ' + inspect$2(type)); - } - - function extendInputObjectType(type) { - var _typeExtensionsMap$co; - - const config = type.toConfig(); - const extensions = - (_typeExtensionsMap$co = typeExtensionsMap[config.name]) !== null && - _typeExtensionsMap$co !== void 0 - ? _typeExtensionsMap$co - : []; - return new GraphQLInputObjectType({ - ...config, - fields: () => ({ - ...mapValue(config.fields, (field) => ({ - ...field, - type: replaceType(field.type), - })), - ...buildInputFieldMap(extensions), - }), - extensionASTNodes: config.extensionASTNodes.concat(extensions), - }); - } - - function extendEnumType(type) { - var _typeExtensionsMap$ty; - - const config = type.toConfig(); - const extensions = - (_typeExtensionsMap$ty = typeExtensionsMap[type.name]) !== null && - _typeExtensionsMap$ty !== void 0 - ? _typeExtensionsMap$ty - : []; - return new GraphQLEnumType({ - ...config, - values: { ...config.values, ...buildEnumValueMap(extensions) }, - extensionASTNodes: config.extensionASTNodes.concat(extensions), - }); - } - - function extendScalarType(type) { - var _typeExtensionsMap$co2; - - const config = type.toConfig(); - const extensions = - (_typeExtensionsMap$co2 = typeExtensionsMap[config.name]) !== null && - _typeExtensionsMap$co2 !== void 0 - ? _typeExtensionsMap$co2 - : []; - let specifiedByURL = config.specifiedByURL; - - for (const extensionNode of extensions) { - var _getSpecifiedByURL; - - specifiedByURL = - (_getSpecifiedByURL = getSpecifiedByURL(extensionNode)) !== null && - _getSpecifiedByURL !== void 0 - ? _getSpecifiedByURL - : specifiedByURL; - } - - return new GraphQLScalarType({ - ...config, - specifiedByURL, - extensionASTNodes: config.extensionASTNodes.concat(extensions), - }); - } - - function extendObjectType(type) { - var _typeExtensionsMap$co3; - - const config = type.toConfig(); - const extensions = - (_typeExtensionsMap$co3 = typeExtensionsMap[config.name]) !== null && - _typeExtensionsMap$co3 !== void 0 - ? _typeExtensionsMap$co3 - : []; - return new GraphQLObjectType({ - ...config, - interfaces: () => [ - ...type.getInterfaces().map(replaceNamedType), - ...buildInterfaces(extensions), - ], - fields: () => ({ - ...mapValue(config.fields, extendField), - ...buildFieldMap(extensions), - }), - extensionASTNodes: config.extensionASTNodes.concat(extensions), - }); - } - - function extendInterfaceType(type) { - var _typeExtensionsMap$co4; - - const config = type.toConfig(); - const extensions = - (_typeExtensionsMap$co4 = typeExtensionsMap[config.name]) !== null && - _typeExtensionsMap$co4 !== void 0 - ? _typeExtensionsMap$co4 - : []; - return new GraphQLInterfaceType({ - ...config, - interfaces: () => [ - ...type.getInterfaces().map(replaceNamedType), - ...buildInterfaces(extensions), - ], - fields: () => ({ - ...mapValue(config.fields, extendField), - ...buildFieldMap(extensions), - }), - extensionASTNodes: config.extensionASTNodes.concat(extensions), - }); - } - - function extendUnionType(type) { - var _typeExtensionsMap$co5; - - const config = type.toConfig(); - const extensions = - (_typeExtensionsMap$co5 = typeExtensionsMap[config.name]) !== null && - _typeExtensionsMap$co5 !== void 0 - ? _typeExtensionsMap$co5 - : []; - return new GraphQLUnionType({ - ...config, - types: () => [ - ...type.getTypes().map(replaceNamedType), - ...buildUnionTypes(extensions), - ], - extensionASTNodes: config.extensionASTNodes.concat(extensions), - }); - } - - function extendField(field) { - return { - ...field, - type: replaceType(field.type), - args: field.args && mapValue(field.args, extendArg), - }; - } - - function extendArg(arg) { - return { ...arg, type: replaceType(arg.type) }; - } - - function getOperationTypes(nodes) { - const opTypes = {}; - - for (const node of nodes) { - var _node$operationTypes; - - // FIXME: https://github.com/graphql/graphql-js/issues/2203 - const operationTypesNodes = - /* c8 ignore next */ - (_node$operationTypes = node.operationTypes) !== null && - _node$operationTypes !== void 0 - ? _node$operationTypes - : []; - - for (const operationType of operationTypesNodes) { - // Note: While this could make early assertions to get the correctly - // typed values below, that would throw immediately while type system - // validation with validateSchema() will produce more actionable results. - // @ts-expect-error - opTypes[operationType.operation] = getNamedType(operationType.type); - } - } - - return opTypes; - } - - function getNamedType(node) { - var _stdTypeMap$name2; - - const name = node.name.value; - const type = - (_stdTypeMap$name2 = stdTypeMap[name]) !== null && - _stdTypeMap$name2 !== void 0 - ? _stdTypeMap$name2 - : typeMap[name]; - - if (type === undefined) { - throw new Error(`Unknown type: "${name}".`); - } - - return type; - } - - function getWrappedType(node) { - if (node.kind === Kind.LIST_TYPE) { - return new GraphQLList(getWrappedType(node.type)); - } - - if (node.kind === Kind.NON_NULL_TYPE) { - return new GraphQLNonNull(getWrappedType(node.type)); - } - - return getNamedType(node); - } - - function buildDirective(node) { - var _node$description; - - return new GraphQLDirective({ - name: node.name.value, - description: - (_node$description = node.description) === null || - _node$description === void 0 - ? void 0 - : _node$description.value, - // @ts-expect-error - locations: node.locations.map(({ value }) => value), - isRepeatable: node.repeatable, - args: buildArgumentMap(node.arguments), - astNode: node, - }); - } - - function buildFieldMap(nodes) { - const fieldConfigMap = Object.create(null); - - for (const node of nodes) { - var _node$fields; - - // FIXME: https://github.com/graphql/graphql-js/issues/2203 - const nodeFields = - /* c8 ignore next */ - (_node$fields = node.fields) !== null && _node$fields !== void 0 - ? _node$fields - : []; - - for (const field of nodeFields) { - var _field$description; - - fieldConfigMap[field.name.value] = { - // Note: While this could make assertions to get the correctly typed - // value, that would throw immediately while type system validation - // with validateSchema() will produce more actionable results. - type: getWrappedType(field.type), - description: - (_field$description = field.description) === null || - _field$description === void 0 - ? void 0 - : _field$description.value, - args: buildArgumentMap(field.arguments), - deprecationReason: getDeprecationReason(field), - astNode: field, - }; - } - } - - return fieldConfigMap; - } - - function buildArgumentMap(args) { - // FIXME: https://github.com/graphql/graphql-js/issues/2203 - const argsNodes = - /* c8 ignore next */ - args !== null && args !== void 0 ? args : []; - const argConfigMap = Object.create(null); - - for (const arg of argsNodes) { - var _arg$description; - - // Note: While this could make assertions to get the correctly typed - // value, that would throw immediately while type system validation - // with validateSchema() will produce more actionable results. - const type = getWrappedType(arg.type); - argConfigMap[arg.name.value] = { - type, - description: - (_arg$description = arg.description) === null || - _arg$description === void 0 - ? void 0 - : _arg$description.value, - defaultValue: valueFromAST$1(arg.defaultValue, type), - deprecationReason: getDeprecationReason(arg), - astNode: arg, - }; - } - - return argConfigMap; - } - - function buildInputFieldMap(nodes) { - const inputFieldMap = Object.create(null); - - for (const node of nodes) { - var _node$fields2; - - // FIXME: https://github.com/graphql/graphql-js/issues/2203 - const fieldsNodes = - /* c8 ignore next */ - (_node$fields2 = node.fields) !== null && _node$fields2 !== void 0 - ? _node$fields2 - : []; - - for (const field of fieldsNodes) { - var _field$description2; - - // Note: While this could make assertions to get the correctly typed - // value, that would throw immediately while type system validation - // with validateSchema() will produce more actionable results. - const type = getWrappedType(field.type); - inputFieldMap[field.name.value] = { - type, - description: - (_field$description2 = field.description) === null || - _field$description2 === void 0 - ? void 0 - : _field$description2.value, - defaultValue: valueFromAST$1(field.defaultValue, type), - deprecationReason: getDeprecationReason(field), - astNode: field, - }; - } - } - - return inputFieldMap; - } - - function buildEnumValueMap(nodes) { - const enumValueMap = Object.create(null); - - for (const node of nodes) { - var _node$values; - - // FIXME: https://github.com/graphql/graphql-js/issues/2203 - const valuesNodes = - /* c8 ignore next */ - (_node$values = node.values) !== null && _node$values !== void 0 - ? _node$values - : []; - - for (const value of valuesNodes) { - var _value$description; - - enumValueMap[value.name.value] = { - description: - (_value$description = value.description) === null || - _value$description === void 0 - ? void 0 - : _value$description.value, - deprecationReason: getDeprecationReason(value), - astNode: value, - }; - } - } - - return enumValueMap; - } - - function buildInterfaces(nodes) { - // Note: While this could make assertions to get the correctly typed - // values below, that would throw immediately while type system - // validation with validateSchema() will produce more actionable results. - // @ts-expect-error - return nodes.flatMap( - // FIXME: https://github.com/graphql/graphql-js/issues/2203 - (node) => { - var _node$interfaces$map, _node$interfaces; - - return ( - /* c8 ignore next */ - (_node$interfaces$map = - (_node$interfaces = node.interfaces) === null || - _node$interfaces === void 0 - ? void 0 - : _node$interfaces.map(getNamedType)) !== null && - _node$interfaces$map !== void 0 - ? _node$interfaces$map - : [] - ); - }, - ); - } - - function buildUnionTypes(nodes) { - // Note: While this could make assertions to get the correctly typed - // values below, that would throw immediately while type system - // validation with validateSchema() will produce more actionable results. - // @ts-expect-error - return nodes.flatMap( - // FIXME: https://github.com/graphql/graphql-js/issues/2203 - (node) => { - var _node$types$map, _node$types; - - return ( - /* c8 ignore next */ - (_node$types$map = - (_node$types = node.types) === null || _node$types === void 0 - ? void 0 - : _node$types.map(getNamedType)) !== null && - _node$types$map !== void 0 - ? _node$types$map - : [] - ); - }, - ); - } - - function buildType(astNode) { - var _typeExtensionsMap$na; - - const name = astNode.name.value; - const extensionASTNodes = - (_typeExtensionsMap$na = typeExtensionsMap[name]) !== null && - _typeExtensionsMap$na !== void 0 - ? _typeExtensionsMap$na - : []; - - switch (astNode.kind) { - case Kind.OBJECT_TYPE_DEFINITION: { - var _astNode$description; - - const allNodes = [astNode, ...extensionASTNodes]; - return new GraphQLObjectType({ - name, - description: - (_astNode$description = astNode.description) === null || - _astNode$description === void 0 - ? void 0 - : _astNode$description.value, - interfaces: () => buildInterfaces(allNodes), - fields: () => buildFieldMap(allNodes), - astNode, - extensionASTNodes, - }); - } - - case Kind.INTERFACE_TYPE_DEFINITION: { - var _astNode$description2; - - const allNodes = [astNode, ...extensionASTNodes]; - return new GraphQLInterfaceType({ - name, - description: - (_astNode$description2 = astNode.description) === null || - _astNode$description2 === void 0 - ? void 0 - : _astNode$description2.value, - interfaces: () => buildInterfaces(allNodes), - fields: () => buildFieldMap(allNodes), - astNode, - extensionASTNodes, - }); - } - - case Kind.ENUM_TYPE_DEFINITION: { - var _astNode$description3; - - const allNodes = [astNode, ...extensionASTNodes]; - return new GraphQLEnumType({ - name, - description: - (_astNode$description3 = astNode.description) === null || - _astNode$description3 === void 0 - ? void 0 - : _astNode$description3.value, - values: buildEnumValueMap(allNodes), - astNode, - extensionASTNodes, - }); - } - - case Kind.UNION_TYPE_DEFINITION: { - var _astNode$description4; - - const allNodes = [astNode, ...extensionASTNodes]; - return new GraphQLUnionType({ - name, - description: - (_astNode$description4 = astNode.description) === null || - _astNode$description4 === void 0 - ? void 0 - : _astNode$description4.value, - types: () => buildUnionTypes(allNodes), - astNode, - extensionASTNodes, - }); - } - - case Kind.SCALAR_TYPE_DEFINITION: { - var _astNode$description5; - - return new GraphQLScalarType({ - name, - description: - (_astNode$description5 = astNode.description) === null || - _astNode$description5 === void 0 - ? void 0 - : _astNode$description5.value, - specifiedByURL: getSpecifiedByURL(astNode), - astNode, - extensionASTNodes, - }); - } - - case Kind.INPUT_OBJECT_TYPE_DEFINITION: { - var _astNode$description6; - - const allNodes = [astNode, ...extensionASTNodes]; - return new GraphQLInputObjectType({ - name, - description: - (_astNode$description6 = astNode.description) === null || - _astNode$description6 === void 0 - ? void 0 - : _astNode$description6.value, - fields: () => buildInputFieldMap(allNodes), - astNode, - extensionASTNodes, - }); - } - } - } - } - const stdTypeMap = keyMap( - [...specifiedScalarTypes, ...introspectionTypes], - (type) => type.name, - ); - /** - * Given a field or enum value node, returns the string value for the - * deprecation reason. - */ - - function getDeprecationReason(node) { - const deprecated = getDirectiveValues(GraphQLDeprecatedDirective, node); // @ts-expect-error validated by `getDirectiveValues` - - return deprecated === null || deprecated === void 0 - ? void 0 - : deprecated.reason; - } - /** - * Given a scalar node, returns the string value for the specifiedByURL. - */ - - function getSpecifiedByURL(node) { - const specifiedBy = getDirectiveValues(GraphQLSpecifiedByDirective, node); // @ts-expect-error validated by `getDirectiveValues` - - return specifiedBy === null || specifiedBy === void 0 - ? void 0 - : specifiedBy.url; - } - - /** - * This takes the ast of a schema document produced by the parse function in - * src/language/parser.js. - * - * If no schema definition is provided, then it will look for types named Query, - * Mutation and Subscription. - * - * Given that AST it constructs a GraphQLSchema. The resulting schema - * has no resolve methods, so execution will use default resolvers. - */ - function buildASTSchema(documentAST, options) { - (documentAST != null && documentAST.kind === Kind.DOCUMENT) || - devAssert(false, 'Must provide valid Document AST.'); - - if ( - (options === null || options === void 0 ? void 0 : options.assumeValid) !== - true && - (options === null || options === void 0 - ? void 0 - : options.assumeValidSDL) !== true - ) { - assertValidSDL(documentAST); - } - - const emptySchemaConfig = { - description: undefined, - types: [], - directives: [], - extensions: Object.create(null), - extensionASTNodes: [], - assumeValid: false, - }; - const config = extendSchemaImpl(emptySchemaConfig, documentAST, options); - - if (config.astNode == null) { - for (const type of config.types) { - switch (type.name) { - // Note: While this could make early assertions to get the correctly - // typed values below, that would throw immediately while type system - // validation with validateSchema() will produce more actionable results. - case 'Query': - // @ts-expect-error validated in `validateSchema` - config.query = type; - break; - - case 'Mutation': - // @ts-expect-error validated in `validateSchema` - config.mutation = type; - break; - - case 'Subscription': - // @ts-expect-error validated in `validateSchema` - config.subscription = type; - break; - } - } - } - - const directives = [ - ...config.directives, // If specified directives were not explicitly declared, add them. - ...specifiedDirectives.filter((stdDirective) => - config.directives.every( - (directive) => directive.name !== stdDirective.name, - ), - ), - ]; - return new GraphQLSchema({ ...config, directives }); - } - /** - * A helper function to build a GraphQLSchema directly from a source - * document. - */ - - function buildSchema$2(source, options) { - const document = parse(source, { - noLocation: - options === null || options === void 0 ? void 0 : options.noLocation, - allowLegacyFragmentVariables: - options === null || options === void 0 - ? void 0 - : options.allowLegacyFragmentVariables, - }); - return buildASTSchema(document, { - assumeValidSDL: - options === null || options === void 0 ? void 0 : options.assumeValidSDL, - assumeValid: - options === null || options === void 0 ? void 0 : options.assumeValid, - }); - } - - /** - * Sort GraphQLSchema. - * - * This function returns a sorted copy of the given GraphQLSchema. - */ - - function lexicographicSortSchema(schema) { - const schemaConfig = schema.toConfig(); - const typeMap = keyValMap( - sortByName(schemaConfig.types), - (type) => type.name, - sortNamedType, - ); - return new GraphQLSchema({ - ...schemaConfig, - types: Object.values(typeMap), - directives: sortByName(schemaConfig.directives).map(sortDirective), - query: replaceMaybeType(schemaConfig.query), - mutation: replaceMaybeType(schemaConfig.mutation), - subscription: replaceMaybeType(schemaConfig.subscription), - }); - - function replaceType(type) { - if (isListType(type)) { - // @ts-expect-error - return new GraphQLList(replaceType(type.ofType)); - } else if (isNonNullType(type)) { - // @ts-expect-error - return new GraphQLNonNull(replaceType(type.ofType)); - } // @ts-expect-error FIXME: TS Conversion - - return replaceNamedType(type); - } - - function replaceNamedType(type) { - return typeMap[type.name]; - } - - function replaceMaybeType(maybeType) { - return maybeType && replaceNamedType(maybeType); - } - - function sortDirective(directive) { - const config = directive.toConfig(); - return new GraphQLDirective({ - ...config, - locations: sortBy(config.locations, (x) => x), - args: sortArgs(config.args), - }); - } - - function sortArgs(args) { - return sortObjMap(args, (arg) => ({ ...arg, type: replaceType(arg.type) })); - } - - function sortFields(fieldsMap) { - return sortObjMap(fieldsMap, (field) => ({ - ...field, - type: replaceType(field.type), - args: field.args && sortArgs(field.args), - })); - } - - function sortInputFields(fieldsMap) { - return sortObjMap(fieldsMap, (field) => ({ - ...field, - type: replaceType(field.type), - })); - } - - function sortTypes(array) { - return sortByName(array).map(replaceNamedType); - } - - function sortNamedType(type) { - if (isScalarType(type) || isIntrospectionType(type)) { - return type; - } - - if (isObjectType(type)) { - const config = type.toConfig(); - return new GraphQLObjectType({ - ...config, - interfaces: () => sortTypes(config.interfaces), - fields: () => sortFields(config.fields), - }); - } - - if (isInterfaceType(type)) { - const config = type.toConfig(); - return new GraphQLInterfaceType({ - ...config, - interfaces: () => sortTypes(config.interfaces), - fields: () => sortFields(config.fields), - }); - } - - if (isUnionType(type)) { - const config = type.toConfig(); - return new GraphQLUnionType({ - ...config, - types: () => sortTypes(config.types), - }); - } - - if (isEnumType(type)) { - const config = type.toConfig(); - return new GraphQLEnumType({ - ...config, - values: sortObjMap(config.values, (value) => value), - }); - } - - if (isInputObjectType(type)) { - const config = type.toConfig(); - return new GraphQLInputObjectType({ - ...config, - fields: () => sortInputFields(config.fields), - }); - } - /* c8 ignore next 3 */ - // Not reachable, all possible types have been considered. - - invariant(false, 'Unexpected type: ' + inspect$2(type)); - } - } - - function sortObjMap(map, sortValueFn) { - const sortedMap = Object.create(null); - - for (const key of Object.keys(map).sort(naturalCompare)) { - sortedMap[key] = sortValueFn(map[key]); - } - - return sortedMap; - } - - function sortByName(array) { - return sortBy(array, (obj) => obj.name); - } - - function sortBy(array, mapToKey) { - return array.slice().sort((obj1, obj2) => { - const key1 = mapToKey(obj1); - const key2 = mapToKey(obj2); - return naturalCompare(key1, key2); - }); - } - - function printSchema(schema) { - return printFilteredSchema( - schema, - (n) => !isSpecifiedDirective(n), - isDefinedType, - ); - } - function printIntrospectionSchema(schema) { - return printFilteredSchema(schema, isSpecifiedDirective, isIntrospectionType); - } - - function isDefinedType(type) { - return !isSpecifiedScalarType(type) && !isIntrospectionType(type); - } - - function printFilteredSchema(schema, directiveFilter, typeFilter) { - const directives = schema.getDirectives().filter(directiveFilter); - const types = Object.values(schema.getTypeMap()).filter(typeFilter); - return [ - printSchemaDefinition(schema), - ...directives.map((directive) => printDirective(directive)), - ...types.map((type) => printType(type)), - ] - .filter(Boolean) - .join('\n\n'); - } - - function printSchemaDefinition(schema) { - if (schema.description == null && isSchemaOfCommonNames(schema)) { - return; - } - - const operationTypes = []; - const queryType = schema.getQueryType(); - - if (queryType) { - operationTypes.push(` query: ${queryType.name}`); - } - - const mutationType = schema.getMutationType(); - - if (mutationType) { - operationTypes.push(` mutation: ${mutationType.name}`); - } - - const subscriptionType = schema.getSubscriptionType(); - - if (subscriptionType) { - operationTypes.push(` subscription: ${subscriptionType.name}`); - } - - return printDescription(schema) + `schema {\n${operationTypes.join('\n')}\n}`; - } - /** - * GraphQL schema define root types for each type of operation. These types are - * the same as any other type and can be named in any manner, however there is - * a common naming convention: - * - * ```graphql - * schema { - * query: Query - * mutation: Mutation - * subscription: Subscription - * } - * ``` - * - * When using this naming convention, the schema description can be omitted. - */ - - function isSchemaOfCommonNames(schema) { - const queryType = schema.getQueryType(); - - if (queryType && queryType.name !== 'Query') { - return false; - } - - const mutationType = schema.getMutationType(); - - if (mutationType && mutationType.name !== 'Mutation') { - return false; - } - - const subscriptionType = schema.getSubscriptionType(); - - if (subscriptionType && subscriptionType.name !== 'Subscription') { - return false; - } - - return true; - } - - function printType(type) { - if (isScalarType(type)) { - return printScalar(type); - } - - if (isObjectType(type)) { - return printObject(type); - } - - if (isInterfaceType(type)) { - return printInterface(type); - } - - if (isUnionType(type)) { - return printUnion(type); - } - - if (isEnumType(type)) { - return printEnum(type); - } - - if (isInputObjectType(type)) { - return printInputObject(type); - } - /* c8 ignore next 3 */ - // Not reachable, all possible types have been considered. - - invariant(false, 'Unexpected type: ' + inspect$2(type)); - } - - function printScalar(type) { - return ( - printDescription(type) + `scalar ${type.name}` + printSpecifiedByURL(type) - ); - } - - function printImplementedInterfaces(type) { - const interfaces = type.getInterfaces(); - return interfaces.length - ? ' implements ' + interfaces.map((i) => i.name).join(' & ') - : ''; - } - - function printObject(type) { - return ( - printDescription(type) + - `type ${type.name}` + - printImplementedInterfaces(type) + - printFields(type) - ); - } - - function printInterface(type) { - return ( - printDescription(type) + - `interface ${type.name}` + - printImplementedInterfaces(type) + - printFields(type) - ); - } - - function printUnion(type) { - const types = type.getTypes(); - const possibleTypes = types.length ? ' = ' + types.join(' | ') : ''; - return printDescription(type) + 'union ' + type.name + possibleTypes; - } - - function printEnum(type) { - const values = type - .getValues() - .map( - (value, i) => - printDescription(value, ' ', !i) + - ' ' + - value.name + - printDeprecated(value.deprecationReason), - ); - return printDescription(type) + `enum ${type.name}` + printBlock(values); - } - - function printInputObject(type) { - const fields = Object.values(type.getFields()).map( - (f, i) => printDescription(f, ' ', !i) + ' ' + printInputValue(f), - ); - return printDescription(type) + `input ${type.name}` + printBlock(fields); - } - - function printFields(type) { - const fields = Object.values(type.getFields()).map( - (f, i) => - printDescription(f, ' ', !i) + - ' ' + - f.name + - printArgs(f.args, ' ') + - ': ' + - String(f.type) + - printDeprecated(f.deprecationReason), - ); - return printBlock(fields); - } - - function printBlock(items) { - return items.length !== 0 ? ' {\n' + items.join('\n') + '\n}' : ''; - } - - function printArgs(args, indentation = '') { - if (args.length === 0) { - return ''; - } // If every arg does not have a description, print them on one line. - - if (args.every((arg) => !arg.description)) { - return '(' + args.map(printInputValue).join(', ') + ')'; - } - - return ( - '(\n' + - args - .map( - (arg, i) => - printDescription(arg, ' ' + indentation, !i) + - ' ' + - indentation + - printInputValue(arg), - ) - .join('\n') + - '\n' + - indentation + - ')' - ); - } - - function printInputValue(arg) { - const defaultAST = astFromValue(arg.defaultValue, arg.type); - let argDecl = arg.name + ': ' + String(arg.type); - - if (defaultAST) { - argDecl += ` = ${print$1(defaultAST)}`; - } - - return argDecl + printDeprecated(arg.deprecationReason); - } - - function printDirective(directive) { - return ( - printDescription(directive) + - 'directive @' + - directive.name + - printArgs(directive.args) + - (directive.isRepeatable ? ' repeatable' : '') + - ' on ' + - directive.locations.join(' | ') - ); - } - - function printDeprecated(reason) { - if (reason == null) { - return ''; - } - - if (reason !== DEFAULT_DEPRECATION_REASON) { - const astValue = print$1({ - kind: Kind.STRING, - value: reason, - }); - return ` @deprecated(reason: ${astValue})`; - } - - return ' @deprecated'; - } - - function printSpecifiedByURL(scalar) { - if (scalar.specifiedByURL == null) { - return ''; - } - - const astValue = print$1({ - kind: Kind.STRING, - value: scalar.specifiedByURL, - }); - return ` @specifiedBy(url: ${astValue})`; - } - - function printDescription(def, indentation = '', firstInBlock = true) { - const { description } = def; - - if (description == null) { - return ''; - } - - const blockString = print$1({ - kind: Kind.STRING, - value: description, - block: isPrintableAsBlockString(description), - }); - const prefix = - indentation && !firstInBlock ? '\n' + indentation : indentation; - return prefix + blockString.replace(/\n/g, '\n' + indentation) + '\n'; - } - - /** - * Provided a collection of ASTs, presumably each from different files, - * concatenate the ASTs together into batched AST, useful for validating many - * GraphQL source files which together represent one conceptual application. - */ - - function concatAST(documents) { - const definitions = []; - - for (const doc of documents) { - definitions.push(...doc.definitions); - } - - return { - kind: Kind.DOCUMENT, - definitions, - }; - } - - /** - * separateOperations accepts a single AST document which may contain many - * operations and fragments and returns a collection of AST documents each of - * which contains a single operation as well the fragment definitions it - * refers to. - */ - - function separateOperations(documentAST) { - const operations = []; - const depGraph = Object.create(null); // Populate metadata and build a dependency graph. - - for (const definitionNode of documentAST.definitions) { - switch (definitionNode.kind) { - case Kind.OPERATION_DEFINITION: - operations.push(definitionNode); - break; - - case Kind.FRAGMENT_DEFINITION: - depGraph[definitionNode.name.value] = collectDependencies( - definitionNode.selectionSet, - ); - break; - } - } // For each operation, produce a new synthesized AST which includes only what - // is necessary for completing that operation. - - const separatedDocumentASTs = Object.create(null); - - for (const operation of operations) { - const dependencies = new Set(); - - for (const fragmentName of collectDependencies(operation.selectionSet)) { - collectTransitiveDependencies(dependencies, depGraph, fragmentName); - } // Provides the empty string for anonymous operations. - - const operationName = operation.name ? operation.name.value : ''; // The list of definition nodes to be included for this operation, sorted - // to retain the same order as the original document. - - separatedDocumentASTs[operationName] = { - kind: Kind.DOCUMENT, - definitions: documentAST.definitions.filter( - (node) => - node === operation || - (node.kind === Kind.FRAGMENT_DEFINITION && - dependencies.has(node.name.value)), - ), - }; - } - - return separatedDocumentASTs; - } - - // From a dependency graph, collects a list of transitive dependencies by - // recursing through a dependency graph. - function collectTransitiveDependencies(collected, depGraph, fromName) { - if (!collected.has(fromName)) { - collected.add(fromName); - const immediateDeps = depGraph[fromName]; - - if (immediateDeps !== undefined) { - for (const toName of immediateDeps) { - collectTransitiveDependencies(collected, depGraph, toName); - } - } - } - } - - function collectDependencies(selectionSet) { - const dependencies = []; - visit(selectionSet, { - FragmentSpread(node) { - dependencies.push(node.name.value); - }, - }); - return dependencies; - } - - /** - * Strips characters that are not significant to the validity or execution - * of a GraphQL document: - * - UnicodeBOM - * - WhiteSpace - * - LineTerminator - * - Comment - * - Comma - * - BlockString indentation - * - * Note: It is required to have a delimiter character between neighboring - * non-punctuator tokens and this function always uses single space as delimiter. - * - * It is guaranteed that both input and output documents if parsed would result - * in the exact same AST except for nodes location. - * - * Warning: It is guaranteed that this function will always produce stable results. - * However, it's not guaranteed that it will stay the same between different - * releases due to bugfixes or changes in the GraphQL specification. - * - * Query example: - * - * ```graphql - * query SomeQuery($foo: String!, $bar: String) { - * someField(foo: $foo, bar: $bar) { - * a - * b { - * c - * d - * } - * } - * } - * ``` - * - * Becomes: - * - * ```graphql - * query SomeQuery($foo:String!$bar:String){someField(foo:$foo bar:$bar){a b{c d}}} - * ``` - * - * SDL example: - * - * ```graphql - * """ - * Type description - * """ - * type Foo { - * """ - * Field description - * """ - * bar: String - * } - * ``` - * - * Becomes: - * - * ```graphql - * """Type description""" type Foo{"""Field description""" bar:String} - * ``` - */ - - function stripIgnoredCharacters(source) { - const sourceObj = isSource(source) ? source : new Source(source); - const body = sourceObj.body; - const lexer = new Lexer(sourceObj); - let strippedBody = ''; - let wasLastAddedTokenNonPunctuator = false; - - while (lexer.advance().kind !== TokenKind.EOF) { - const currentToken = lexer.token; - const tokenKind = currentToken.kind; - /** - * Every two non-punctuator tokens should have space between them. - * Also prevent case of non-punctuator token following by spread resulting - * in invalid token (e.g. `1...` is invalid Float token). - */ - - const isNonPunctuator = !isPunctuatorTokenKind(currentToken.kind); - - if (wasLastAddedTokenNonPunctuator) { - if (isNonPunctuator || currentToken.kind === TokenKind.SPREAD) { - strippedBody += ' '; - } - } - - const tokenBody = body.slice(currentToken.start, currentToken.end); - - if (tokenKind === TokenKind.BLOCK_STRING) { - strippedBody += printBlockString(currentToken.value, { - minimize: true, - }); - } else { - strippedBody += tokenBody; - } - - wasLastAddedTokenNonPunctuator = isNonPunctuator; - } - - return strippedBody; - } - - /* c8 ignore start */ - - /** - * Upholds the spec rules about naming. - * @deprecated Please use `assertName` instead. Will be removed in v17 - */ - - function assertValidName(name) { - const error = isValidNameError(name); - - if (error) { - throw error; - } - - return name; - } - /** - * Returns an Error if a name is invalid. - * @deprecated Please use `assertName` instead. Will be removed in v17 - */ - - function isValidNameError(name) { - typeof name === 'string' || devAssert(false, 'Expected name to be a string.'); - - if (name.startsWith('__')) { - return new GraphQLError( - `Name "${name}" must not begin with "__", which is reserved by GraphQL introspection.`, - ); - } - - try { - assertName(name); - } catch (error) { - return error; - } - } - /* c8 ignore stop */ - - let BreakingChangeType; - - (function (BreakingChangeType) { - BreakingChangeType['TYPE_REMOVED'] = 'TYPE_REMOVED'; - BreakingChangeType['TYPE_CHANGED_KIND'] = 'TYPE_CHANGED_KIND'; - BreakingChangeType['TYPE_REMOVED_FROM_UNION'] = 'TYPE_REMOVED_FROM_UNION'; - BreakingChangeType['VALUE_REMOVED_FROM_ENUM'] = 'VALUE_REMOVED_FROM_ENUM'; - BreakingChangeType['REQUIRED_INPUT_FIELD_ADDED'] = - 'REQUIRED_INPUT_FIELD_ADDED'; - BreakingChangeType['IMPLEMENTED_INTERFACE_REMOVED'] = - 'IMPLEMENTED_INTERFACE_REMOVED'; - BreakingChangeType['FIELD_REMOVED'] = 'FIELD_REMOVED'; - BreakingChangeType['FIELD_CHANGED_KIND'] = 'FIELD_CHANGED_KIND'; - BreakingChangeType['REQUIRED_ARG_ADDED'] = 'REQUIRED_ARG_ADDED'; - BreakingChangeType['ARG_REMOVED'] = 'ARG_REMOVED'; - BreakingChangeType['ARG_CHANGED_KIND'] = 'ARG_CHANGED_KIND'; - BreakingChangeType['DIRECTIVE_REMOVED'] = 'DIRECTIVE_REMOVED'; - BreakingChangeType['DIRECTIVE_ARG_REMOVED'] = 'DIRECTIVE_ARG_REMOVED'; - BreakingChangeType['REQUIRED_DIRECTIVE_ARG_ADDED'] = - 'REQUIRED_DIRECTIVE_ARG_ADDED'; - BreakingChangeType['DIRECTIVE_REPEATABLE_REMOVED'] = - 'DIRECTIVE_REPEATABLE_REMOVED'; - BreakingChangeType['DIRECTIVE_LOCATION_REMOVED'] = - 'DIRECTIVE_LOCATION_REMOVED'; - })(BreakingChangeType || (BreakingChangeType = {})); - - let DangerousChangeType; - - (function (DangerousChangeType) { - DangerousChangeType['VALUE_ADDED_TO_ENUM'] = 'VALUE_ADDED_TO_ENUM'; - DangerousChangeType['TYPE_ADDED_TO_UNION'] = 'TYPE_ADDED_TO_UNION'; - DangerousChangeType['OPTIONAL_INPUT_FIELD_ADDED'] = - 'OPTIONAL_INPUT_FIELD_ADDED'; - DangerousChangeType['OPTIONAL_ARG_ADDED'] = 'OPTIONAL_ARG_ADDED'; - DangerousChangeType['IMPLEMENTED_INTERFACE_ADDED'] = - 'IMPLEMENTED_INTERFACE_ADDED'; - DangerousChangeType['ARG_DEFAULT_VALUE_CHANGE'] = 'ARG_DEFAULT_VALUE_CHANGE'; - })(DangerousChangeType || (DangerousChangeType = {})); - - /** - * Given two schemas, returns an Array containing descriptions of all the types - * of breaking changes covered by the other functions down below. - */ - function findBreakingChanges(oldSchema, newSchema) { - // @ts-expect-error - return findSchemaChanges(oldSchema, newSchema).filter( - (change) => change.type in BreakingChangeType, - ); - } - /** - * Given two schemas, returns an Array containing descriptions of all the types - * of potentially dangerous changes covered by the other functions down below. - */ - - function findDangerousChanges(oldSchema, newSchema) { - // @ts-expect-error - return findSchemaChanges(oldSchema, newSchema).filter( - (change) => change.type in DangerousChangeType, - ); - } - - function findSchemaChanges(oldSchema, newSchema) { - return [ - ...findTypeChanges(oldSchema, newSchema), - ...findDirectiveChanges(oldSchema, newSchema), - ]; - } - - function findDirectiveChanges(oldSchema, newSchema) { - const schemaChanges = []; - const directivesDiff = diff( - oldSchema.getDirectives(), - newSchema.getDirectives(), - ); - - for (const oldDirective of directivesDiff.removed) { - schemaChanges.push({ - type: BreakingChangeType.DIRECTIVE_REMOVED, - description: `${oldDirective.name} was removed.`, - }); - } - - for (const [oldDirective, newDirective] of directivesDiff.persisted) { - const argsDiff = diff(oldDirective.args, newDirective.args); - - for (const newArg of argsDiff.added) { - if (isRequiredArgument(newArg)) { - schemaChanges.push({ - type: BreakingChangeType.REQUIRED_DIRECTIVE_ARG_ADDED, - description: `A required arg ${newArg.name} on directive ${oldDirective.name} was added.`, - }); - } - } - - for (const oldArg of argsDiff.removed) { - schemaChanges.push({ - type: BreakingChangeType.DIRECTIVE_ARG_REMOVED, - description: `${oldArg.name} was removed from ${oldDirective.name}.`, - }); - } - - if (oldDirective.isRepeatable && !newDirective.isRepeatable) { - schemaChanges.push({ - type: BreakingChangeType.DIRECTIVE_REPEATABLE_REMOVED, - description: `Repeatable flag was removed from ${oldDirective.name}.`, - }); - } - - for (const location of oldDirective.locations) { - if (!newDirective.locations.includes(location)) { - schemaChanges.push({ - type: BreakingChangeType.DIRECTIVE_LOCATION_REMOVED, - description: `${location} was removed from ${oldDirective.name}.`, - }); - } - } - } - - return schemaChanges; - } - - function findTypeChanges(oldSchema, newSchema) { - const schemaChanges = []; - const typesDiff = diff( - Object.values(oldSchema.getTypeMap()), - Object.values(newSchema.getTypeMap()), - ); - - for (const oldType of typesDiff.removed) { - schemaChanges.push({ - type: BreakingChangeType.TYPE_REMOVED, - description: isSpecifiedScalarType(oldType) - ? `Standard scalar ${oldType.name} was removed because it is not referenced anymore.` - : `${oldType.name} was removed.`, - }); - } - - for (const [oldType, newType] of typesDiff.persisted) { - if (isEnumType(oldType) && isEnumType(newType)) { - schemaChanges.push(...findEnumTypeChanges(oldType, newType)); - } else if (isUnionType(oldType) && isUnionType(newType)) { - schemaChanges.push(...findUnionTypeChanges(oldType, newType)); - } else if (isInputObjectType(oldType) && isInputObjectType(newType)) { - schemaChanges.push(...findInputObjectTypeChanges(oldType, newType)); - } else if (isObjectType(oldType) && isObjectType(newType)) { - schemaChanges.push( - ...findFieldChanges(oldType, newType), - ...findImplementedInterfacesChanges(oldType, newType), - ); - } else if (isInterfaceType(oldType) && isInterfaceType(newType)) { - schemaChanges.push( - ...findFieldChanges(oldType, newType), - ...findImplementedInterfacesChanges(oldType, newType), - ); - } else if (oldType.constructor !== newType.constructor) { - schemaChanges.push({ - type: BreakingChangeType.TYPE_CHANGED_KIND, - description: - `${oldType.name} changed from ` + - `${typeKindName(oldType)} to ${typeKindName(newType)}.`, - }); - } - } - - return schemaChanges; - } - - function findInputObjectTypeChanges(oldType, newType) { - const schemaChanges = []; - const fieldsDiff = diff( - Object.values(oldType.getFields()), - Object.values(newType.getFields()), - ); - - for (const newField of fieldsDiff.added) { - if (isRequiredInputField(newField)) { - schemaChanges.push({ - type: BreakingChangeType.REQUIRED_INPUT_FIELD_ADDED, - description: `A required field ${newField.name} on input type ${oldType.name} was added.`, - }); - } else { - schemaChanges.push({ - type: DangerousChangeType.OPTIONAL_INPUT_FIELD_ADDED, - description: `An optional field ${newField.name} on input type ${oldType.name} was added.`, - }); - } - } - - for (const oldField of fieldsDiff.removed) { - schemaChanges.push({ - type: BreakingChangeType.FIELD_REMOVED, - description: `${oldType.name}.${oldField.name} was removed.`, - }); - } - - for (const [oldField, newField] of fieldsDiff.persisted) { - const isSafe = isChangeSafeForInputObjectFieldOrFieldArg( - oldField.type, - newField.type, - ); - - if (!isSafe) { - schemaChanges.push({ - type: BreakingChangeType.FIELD_CHANGED_KIND, - description: - `${oldType.name}.${oldField.name} changed type from ` + - `${String(oldField.type)} to ${String(newField.type)}.`, - }); - } - } - - return schemaChanges; - } - - function findUnionTypeChanges(oldType, newType) { - const schemaChanges = []; - const possibleTypesDiff = diff(oldType.getTypes(), newType.getTypes()); - - for (const newPossibleType of possibleTypesDiff.added) { - schemaChanges.push({ - type: DangerousChangeType.TYPE_ADDED_TO_UNION, - description: `${newPossibleType.name} was added to union type ${oldType.name}.`, - }); - } - - for (const oldPossibleType of possibleTypesDiff.removed) { - schemaChanges.push({ - type: BreakingChangeType.TYPE_REMOVED_FROM_UNION, - description: `${oldPossibleType.name} was removed from union type ${oldType.name}.`, - }); - } - - return schemaChanges; - } - - function findEnumTypeChanges(oldType, newType) { - const schemaChanges = []; - const valuesDiff = diff(oldType.getValues(), newType.getValues()); - - for (const newValue of valuesDiff.added) { - schemaChanges.push({ - type: DangerousChangeType.VALUE_ADDED_TO_ENUM, - description: `${newValue.name} was added to enum type ${oldType.name}.`, - }); - } - - for (const oldValue of valuesDiff.removed) { - schemaChanges.push({ - type: BreakingChangeType.VALUE_REMOVED_FROM_ENUM, - description: `${oldValue.name} was removed from enum type ${oldType.name}.`, - }); - } - - return schemaChanges; - } - - function findImplementedInterfacesChanges(oldType, newType) { - const schemaChanges = []; - const interfacesDiff = diff(oldType.getInterfaces(), newType.getInterfaces()); - - for (const newInterface of interfacesDiff.added) { - schemaChanges.push({ - type: DangerousChangeType.IMPLEMENTED_INTERFACE_ADDED, - description: `${newInterface.name} added to interfaces implemented by ${oldType.name}.`, - }); - } - - for (const oldInterface of interfacesDiff.removed) { - schemaChanges.push({ - type: BreakingChangeType.IMPLEMENTED_INTERFACE_REMOVED, - description: `${oldType.name} no longer implements interface ${oldInterface.name}.`, - }); - } - - return schemaChanges; - } - - function findFieldChanges(oldType, newType) { - const schemaChanges = []; - const fieldsDiff = diff( - Object.values(oldType.getFields()), - Object.values(newType.getFields()), - ); - - for (const oldField of fieldsDiff.removed) { - schemaChanges.push({ - type: BreakingChangeType.FIELD_REMOVED, - description: `${oldType.name}.${oldField.name} was removed.`, - }); - } - - for (const [oldField, newField] of fieldsDiff.persisted) { - schemaChanges.push(...findArgChanges(oldType, oldField, newField)); - const isSafe = isChangeSafeForObjectOrInterfaceField( - oldField.type, - newField.type, - ); - - if (!isSafe) { - schemaChanges.push({ - type: BreakingChangeType.FIELD_CHANGED_KIND, - description: - `${oldType.name}.${oldField.name} changed type from ` + - `${String(oldField.type)} to ${String(newField.type)}.`, - }); - } - } - - return schemaChanges; - } - - function findArgChanges(oldType, oldField, newField) { - const schemaChanges = []; - const argsDiff = diff(oldField.args, newField.args); - - for (const oldArg of argsDiff.removed) { - schemaChanges.push({ - type: BreakingChangeType.ARG_REMOVED, - description: `${oldType.name}.${oldField.name} arg ${oldArg.name} was removed.`, - }); - } - - for (const [oldArg, newArg] of argsDiff.persisted) { - const isSafe = isChangeSafeForInputObjectFieldOrFieldArg( - oldArg.type, - newArg.type, - ); - - if (!isSafe) { - schemaChanges.push({ - type: BreakingChangeType.ARG_CHANGED_KIND, - description: - `${oldType.name}.${oldField.name} arg ${oldArg.name} has changed type from ` + - `${String(oldArg.type)} to ${String(newArg.type)}.`, - }); - } else if (oldArg.defaultValue !== undefined) { - if (newArg.defaultValue === undefined) { - schemaChanges.push({ - type: DangerousChangeType.ARG_DEFAULT_VALUE_CHANGE, - description: `${oldType.name}.${oldField.name} arg ${oldArg.name} defaultValue was removed.`, - }); - } else { - // Since we looking only for client's observable changes we should - // compare default values in the same representation as they are - // represented inside introspection. - const oldValueStr = stringifyValue(oldArg.defaultValue, oldArg.type); - const newValueStr = stringifyValue(newArg.defaultValue, newArg.type); - - if (oldValueStr !== newValueStr) { - schemaChanges.push({ - type: DangerousChangeType.ARG_DEFAULT_VALUE_CHANGE, - description: `${oldType.name}.${oldField.name} arg ${oldArg.name} has changed defaultValue from ${oldValueStr} to ${newValueStr}.`, - }); - } - } - } - } - - for (const newArg of argsDiff.added) { - if (isRequiredArgument(newArg)) { - schemaChanges.push({ - type: BreakingChangeType.REQUIRED_ARG_ADDED, - description: `A required arg ${newArg.name} on ${oldType.name}.${oldField.name} was added.`, - }); - } else { - schemaChanges.push({ - type: DangerousChangeType.OPTIONAL_ARG_ADDED, - description: `An optional arg ${newArg.name} on ${oldType.name}.${oldField.name} was added.`, - }); - } - } - - return schemaChanges; - } - - function isChangeSafeForObjectOrInterfaceField(oldType, newType) { - if (isListType(oldType)) { - return ( - // if they're both lists, make sure the underlying types are compatible - (isListType(newType) && - isChangeSafeForObjectOrInterfaceField( - oldType.ofType, - newType.ofType, - )) || // moving from nullable to non-null of the same underlying type is safe - (isNonNullType(newType) && - isChangeSafeForObjectOrInterfaceField(oldType, newType.ofType)) - ); - } - - if (isNonNullType(oldType)) { - // if they're both non-null, make sure the underlying types are compatible - return ( - isNonNullType(newType) && - isChangeSafeForObjectOrInterfaceField(oldType.ofType, newType.ofType) - ); - } - - return ( - // if they're both named types, see if their names are equivalent - (isNamedType(newType) && oldType.name === newType.name) || // moving from nullable to non-null of the same underlying type is safe - (isNonNullType(newType) && - isChangeSafeForObjectOrInterfaceField(oldType, newType.ofType)) - ); - } - - function isChangeSafeForInputObjectFieldOrFieldArg(oldType, newType) { - if (isListType(oldType)) { - // if they're both lists, make sure the underlying types are compatible - return ( - isListType(newType) && - isChangeSafeForInputObjectFieldOrFieldArg(oldType.ofType, newType.ofType) - ); - } - - if (isNonNullType(oldType)) { - return ( - // if they're both non-null, make sure the underlying types are - // compatible - (isNonNullType(newType) && - isChangeSafeForInputObjectFieldOrFieldArg( - oldType.ofType, - newType.ofType, - )) || // moving from non-null to nullable of the same underlying type is safe - (!isNonNullType(newType) && - isChangeSafeForInputObjectFieldOrFieldArg(oldType.ofType, newType)) - ); - } // if they're both named types, see if their names are equivalent - - return isNamedType(newType) && oldType.name === newType.name; - } - - function typeKindName(type) { - if (isScalarType(type)) { - return 'a Scalar type'; - } - - if (isObjectType(type)) { - return 'an Object type'; - } - - if (isInterfaceType(type)) { - return 'an Interface type'; - } - - if (isUnionType(type)) { - return 'a Union type'; - } - - if (isEnumType(type)) { - return 'an Enum type'; - } - - if (isInputObjectType(type)) { - return 'an Input type'; - } - /* c8 ignore next 3 */ - // Not reachable, all possible types have been considered. - - invariant(false, 'Unexpected type: ' + inspect$2(type)); - } - - function stringifyValue(value, type) { - const ast = astFromValue(value, type); - ast != null || invariant(false); - return print$1(sortValueNode(ast)); - } - - function diff(oldArray, newArray) { - const added = []; - const removed = []; - const persisted = []; - const oldMap = keyMap(oldArray, ({ name }) => name); - const newMap = keyMap(newArray, ({ name }) => name); - - for (const oldItem of oldArray) { - const newItem = newMap[oldItem.name]; - - if (newItem === undefined) { - removed.push(oldItem); - } else { - persisted.push([oldItem, newItem]); - } - } - - for (const newItem of newArray) { - if (oldMap[newItem.name] === undefined) { - added.push(newItem); - } - } - - return { - added, - persisted, - removed, - }; - } - - /** - * GraphQL.js provides a reference implementation for the GraphQL specification - * but is also a useful utility for operating on GraphQL files and building - * sophisticated tools. - * - * This primary module exports a general purpose function for fulfilling all - * steps of the GraphQL specification in a single operation, but also includes - * utilities for every part of the GraphQL specification: - * - * - Parsing the GraphQL language. - * - Building a GraphQL type schema. - * - Validating a GraphQL request against a type schema. - * - Executing a GraphQL request against a type schema. - * - * This also includes utility functions for operating on GraphQL types and - * GraphQL documents to facilitate building tools. - * - * You may also import from each sub-directory directly. For example, the - * following two import statements are equivalent: - * - * ```ts - * import { parse } from 'graphql'; - * import { parse } from 'graphql/language'; - * ``` - * - * @packageDocumentation - */ - - var graphql = /*#__PURE__*/Object.freeze({ - __proto__: null, - version: version$2, - versionInfo: versionInfo, - graphql: graphql$1, - graphqlSync: graphqlSync, - resolveObjMapThunk: resolveObjMapThunk, - resolveReadonlyArrayThunk: resolveReadonlyArrayThunk, - GraphQLSchema: GraphQLSchema, - GraphQLDirective: GraphQLDirective, - GraphQLScalarType: GraphQLScalarType, - GraphQLObjectType: GraphQLObjectType, - GraphQLInterfaceType: GraphQLInterfaceType, - GraphQLUnionType: GraphQLUnionType, - GraphQLEnumType: GraphQLEnumType, - GraphQLInputObjectType: GraphQLInputObjectType, - GraphQLList: GraphQLList, - GraphQLNonNull: GraphQLNonNull, - specifiedScalarTypes: specifiedScalarTypes, - GraphQLInt: GraphQLInt, - GraphQLFloat: GraphQLFloat, - GraphQLString: GraphQLString, - GraphQLBoolean: GraphQLBoolean, - GraphQLID: GraphQLID, - GRAPHQL_MAX_INT: GRAPHQL_MAX_INT, - GRAPHQL_MIN_INT: GRAPHQL_MIN_INT, - specifiedDirectives: specifiedDirectives, - GraphQLIncludeDirective: GraphQLIncludeDirective, - GraphQLSkipDirective: GraphQLSkipDirective, - GraphQLDeprecatedDirective: GraphQLDeprecatedDirective, - GraphQLSpecifiedByDirective: GraphQLSpecifiedByDirective, - get TypeKind () { return TypeKind; }, - DEFAULT_DEPRECATION_REASON: DEFAULT_DEPRECATION_REASON, - introspectionTypes: introspectionTypes, - __Schema: __Schema, - __Directive: __Directive, - __DirectiveLocation: __DirectiveLocation, - __Type: __Type, - __Field: __Field, - __InputValue: __InputValue, - __EnumValue: __EnumValue, - __TypeKind: __TypeKind, - SchemaMetaFieldDef: SchemaMetaFieldDef, - TypeMetaFieldDef: TypeMetaFieldDef, - TypeNameMetaFieldDef: TypeNameMetaFieldDef, - isSchema: isSchema, - isDirective: isDirective, - isType: isType, - isScalarType: isScalarType, - isObjectType: isObjectType, - isInterfaceType: isInterfaceType, - isUnionType: isUnionType, - isEnumType: isEnumType, - isInputObjectType: isInputObjectType, - isListType: isListType, - isNonNullType: isNonNullType, - isInputType: isInputType, - isOutputType: isOutputType, - isLeafType: isLeafType, - isCompositeType: isCompositeType, - isAbstractType: isAbstractType, - isWrappingType: isWrappingType, - isNullableType: isNullableType, - isNamedType: isNamedType, - isRequiredArgument: isRequiredArgument, - isRequiredInputField: isRequiredInputField, - isSpecifiedScalarType: isSpecifiedScalarType, - isIntrospectionType: isIntrospectionType, - isSpecifiedDirective: isSpecifiedDirective, - assertSchema: assertSchema, - assertDirective: assertDirective, - assertType: assertType, - assertScalarType: assertScalarType, - assertObjectType: assertObjectType, - assertInterfaceType: assertInterfaceType, - assertUnionType: assertUnionType, - assertEnumType: assertEnumType, - assertInputObjectType: assertInputObjectType, - assertListType: assertListType, - assertNonNullType: assertNonNullType, - assertInputType: assertInputType, - assertOutputType: assertOutputType, - assertLeafType: assertLeafType, - assertCompositeType: assertCompositeType, - assertAbstractType: assertAbstractType, - assertWrappingType: assertWrappingType, - assertNullableType: assertNullableType, - assertNamedType: assertNamedType, - getNullableType: getNullableType, - getNamedType: getNamedType, - validateSchema: validateSchema$1, - assertValidSchema: assertValidSchema, - assertName: assertName, - assertEnumValueName: assertEnumValueName, - Token: Token, - Source: Source, - Location: Location, - get OperationTypeNode () { return OperationTypeNode; }, - getLocation: getLocation, - printLocation: printLocation, - printSourceLocation: printSourceLocation, - Lexer: Lexer, - get TokenKind () { return TokenKind; }, - parse: parse, - parseValue: parseValue, - parseConstValue: parseConstValue, - parseType: parseType, - print: print$1, - visit: visit, - visitInParallel: visitInParallel, - getVisitFn: getVisitFn, - getEnterLeaveForKind: getEnterLeaveForKind, - BREAK: BREAK, - get Kind () { return Kind; }, - get DirectiveLocation () { return DirectiveLocation; }, - isDefinitionNode: isDefinitionNode, - isExecutableDefinitionNode: isExecutableDefinitionNode, - isSelectionNode: isSelectionNode, - isValueNode: isValueNode, - isConstValueNode: isConstValueNode, - isTypeNode: isTypeNode, - isTypeSystemDefinitionNode: isTypeSystemDefinitionNode, - isTypeDefinitionNode: isTypeDefinitionNode, - isTypeSystemExtensionNode: isTypeSystemExtensionNode, - isTypeExtensionNode: isTypeExtensionNode, - execute: execute, - executeSync: executeSync, - defaultFieldResolver: defaultFieldResolver, - defaultTypeResolver: defaultTypeResolver, - responsePathAsArray: pathToArray, - getVariableValues: getVariableValues, - getDirectiveValues: getDirectiveValues, - subscribe: subscribe, - createSourceEventStream: createSourceEventStream, - validate: validate$2, - ValidationContext: ValidationContext, - specifiedRules: specifiedRules, - ExecutableDefinitionsRule: ExecutableDefinitionsRule, - FieldsOnCorrectTypeRule: FieldsOnCorrectTypeRule, - FragmentsOnCompositeTypesRule: FragmentsOnCompositeTypesRule, - KnownArgumentNamesRule: KnownArgumentNamesRule, - KnownDirectivesRule: KnownDirectivesRule, - KnownFragmentNamesRule: KnownFragmentNamesRule, - KnownTypeNamesRule: KnownTypeNamesRule, - LoneAnonymousOperationRule: LoneAnonymousOperationRule, - NoFragmentCyclesRule: NoFragmentCyclesRule, - NoUndefinedVariablesRule: NoUndefinedVariablesRule, - NoUnusedFragmentsRule: NoUnusedFragmentsRule, - NoUnusedVariablesRule: NoUnusedVariablesRule, - OverlappingFieldsCanBeMergedRule: OverlappingFieldsCanBeMergedRule, - PossibleFragmentSpreadsRule: PossibleFragmentSpreadsRule, - ProvidedRequiredArgumentsRule: ProvidedRequiredArgumentsRule, - ScalarLeafsRule: ScalarLeafsRule, - SingleFieldSubscriptionsRule: SingleFieldSubscriptionsRule, - UniqueArgumentNamesRule: UniqueArgumentNamesRule, - UniqueDirectivesPerLocationRule: UniqueDirectivesPerLocationRule, - UniqueFragmentNamesRule: UniqueFragmentNamesRule, - UniqueInputFieldNamesRule: UniqueInputFieldNamesRule, - UniqueOperationNamesRule: UniqueOperationNamesRule, - UniqueVariableNamesRule: UniqueVariableNamesRule, - ValuesOfCorrectTypeRule: ValuesOfCorrectTypeRule, - VariablesAreInputTypesRule: VariablesAreInputTypesRule, - VariablesInAllowedPositionRule: VariablesInAllowedPositionRule, - LoneSchemaDefinitionRule: LoneSchemaDefinitionRule, - UniqueOperationTypesRule: UniqueOperationTypesRule, - UniqueTypeNamesRule: UniqueTypeNamesRule, - UniqueEnumValueNamesRule: UniqueEnumValueNamesRule, - UniqueFieldDefinitionNamesRule: UniqueFieldDefinitionNamesRule, - UniqueArgumentDefinitionNamesRule: UniqueArgumentDefinitionNamesRule, - UniqueDirectiveNamesRule: UniqueDirectiveNamesRule, - PossibleTypeExtensionsRule: PossibleTypeExtensionsRule, - NoDeprecatedCustomRule: NoDeprecatedCustomRule, - NoSchemaIntrospectionCustomRule: NoSchemaIntrospectionCustomRule, - GraphQLError: GraphQLError, - syntaxError: syntaxError, - locatedError: locatedError, - printError: printError$1, - formatError: formatError$1, - getIntrospectionQuery: getIntrospectionQuery, - getOperationAST: getOperationAST, - getOperationRootType: getOperationRootType, - introspectionFromSchema: introspectionFromSchema, - buildClientSchema: buildClientSchema, - buildASTSchema: buildASTSchema, - buildSchema: buildSchema$2, - extendSchema: extendSchema, - lexicographicSortSchema: lexicographicSortSchema, - printSchema: printSchema, - printType: printType, - printIntrospectionSchema: printIntrospectionSchema, - typeFromAST: typeFromAST, - valueFromAST: valueFromAST$1, - valueFromASTUntyped: valueFromASTUntyped$1, - astFromValue: astFromValue, - TypeInfo: TypeInfo, - visitWithTypeInfo: visitWithTypeInfo, - coerceInputValue: coerceInputValue, - concatAST: concatAST, - separateOperations: separateOperations, - stripIgnoredCharacters: stripIgnoredCharacters, - isEqualType: isEqualType, - isTypeSubTypeOf: isTypeSubTypeOf, - doTypesOverlap: doTypesOverlap, - assertValidName: assertValidName, - isValidNameError: isValidNameError, - get BreakingChangeType () { return BreakingChangeType; }, - get DangerousChangeType () { return DangerousChangeType; }, - findBreakingChanges: findBreakingChanges, - findDangerousChanges: findDangerousChanges - }); - - var require$$0$2 = /*@__PURE__*/getAugmentedNamespace(graphql); - - Object.defineProperty(introspection$1, "__esModule", { value: true }); - introspection$1.introspect = introspection$1.batchIntrospect = void 0; - const graphql_1$c = require$$0$2; - function batchIntrospect(sdl, queries) { - let schema; - try { - schema = (0, graphql_1$c.buildSchema)(sdl); - } - catch (e) { - return Array(queries.length).fill({ - errors: [e], - }); - } - if (!schema) { - return Array(queries.length).fill({ - errors: [new Error(`couldn't build schema from SDL`)], - }); - } - return queries.map((query) => introspectOne(schema, query)); - } - introspection$1.batchIntrospect = batchIntrospect; - function introspect(sdl, query) { - let schema; - try { - schema = (0, graphql_1$c.buildSchema)(sdl); - } - catch (e) { - return { - errors: [e], - }; - } - if (!schema) { - return { - errors: [new graphql_1$c.GraphQLError("couldn't build schema from SDL")], - }; - } - return introspectOne(schema, query); - } - introspection$1.introspect = introspect; - const introspectOne = (schema, query) => { - const { data, errors } = (0, graphql_1$c.graphqlSync)({ schema, source: query }); - if (errors) { - return { data, errors: [...errors] }; - } - else { - return { data, errors: [] }; - } - }; - - var plan$1 = {}; - - var dist$3 = {}; - - var snapshotSerializers = {}; - - var queryPlanSerializer = {}; - - Object.defineProperty(queryPlanSerializer, "__esModule", { value: true }); - const graphql_1$b = require$$0$2; - queryPlanSerializer.default = { - test(value) { - return value && value.kind === 'QueryPlan'; - }, - serialize(queryPlan, config, indentation, depth, refs, printer) { - return ('QueryPlan {' + - printNodes(queryPlan.node ? [queryPlan.node] : undefined, config, indentation, depth, refs, printer) + - '}'); - }, - }; - function printNode(node, config, indentation, depth, refs, printer) { - let result = ''; - const indentationNext = indentation + config.indent; - switch (node.kind) { - case 'Fetch': - result += - `Fetch(service: "${node.serviceName}")` + - ' {' + - config.spacingOuter + - (node.requires - ? printer({ kind: graphql_1$b.Kind.SELECTION_SET, selections: node.requires }, config, indentationNext, depth, refs, printer) + - ' =>' + - config.spacingOuter - : '') + - printer(flattenEntitiesField((0, graphql_1$b.parse)(node.operation)), config, indentationNext, depth, refs, printer) + - config.spacingOuter + - indentation + - '}'; - break; - case 'Flatten': - result += `Flatten(path: "${node.path.join('.')}")`; - break; - default: - result += node.kind; - } - const nodes = 'nodes' in node ? node.nodes : 'node' in node ? [node.node] : []; - if (nodes.length > 0) { - result += - ' {' + printNodes(nodes, config, indentation, depth, refs, printer) + '}'; - } - return result; - } - function printNodes(nodes, config, indentation, depth, refs, printer) { - let result = ''; - if (nodes && nodes.length > 0) { - result += config.spacingOuter; - const indentationNext = indentation + config.indent; - for (let i = 0; i < nodes.length; i++) { - const node = nodes[i]; - if (!node) - continue; - result += - indentationNext + - printNode(node, config, indentationNext, depth, refs, printer); - if (i < nodes.length - 1) { - result += ',' + config.spacingInner; - } - else if (!config.min) { - result += ','; - } - } - result += config.spacingOuter + indentation; - } - return result; - } - function flattenEntitiesField(node) { - return (0, graphql_1$b.visit)(node, { - OperationDefinition: ({ operation, selectionSet }) => { - const firstSelection = selectionSet.selections[0]; - if (operation === 'query' && - firstSelection.kind === graphql_1$b.Kind.FIELD && - firstSelection.name.value === '_entities') { - return firstSelection.selectionSet; - } - return selectionSet; - }, - }); - } - - var astSerializer = {}; - - Object.defineProperty(astSerializer, "__esModule", { value: true }); - astSerializer.remapInlineFragmentNodes = void 0; - const graphql_1$a = require$$0$2; - astSerializer.default = { - test(value) { - return value && typeof value.kind === 'string'; - }, - serialize(value, config, indentation, _depth, _refs, _printer) { - const lines = (0, graphql_1$a.print)(remapInlineFragmentNodes(value)).trim().split('\n'); - if (lines.length === 0) { - return ''; - } - else if (lines.length === 1) { - return lines[0]; - } - return lines.map(line => { - const indentationLength = getIndentationLength(line); - const dedentedLine = line.slice(indentationLength); - const indentationDepth = indentationLength / 2; - return indentation + config.indent.repeat(indentationDepth) + dedentedLine; - }).join(config.spacingOuter); - }, - }; - function getIndentationLength(line) { - const result = /^( {2})+/.exec(line); - return result === null ? 0 : result[0].length; - } - function remapInlineFragmentNodes(node) { - return (0, graphql_1$a.visit)(node, { - InlineFragment: (fragmentNode) => { - if (fragmentNode.selectionSet) - return fragmentNode; - return { - kind: graphql_1$a.Kind.INLINE_FRAGMENT, - typeCondition: fragmentNode.typeCondition - ? { - kind: graphql_1$a.Kind.NAMED_TYPE, - name: { - kind: graphql_1$a.Kind.NAME, - value: fragmentNode.typeCondition, - }, - } - : undefined, - selectionSet: { - kind: graphql_1$a.Kind.SELECTION_SET, - selections: remapSelections(fragmentNode.selections), - }, - }; - }, - }); - } - astSerializer.remapInlineFragmentNodes = remapInlineFragmentNodes; - function remapSelections(selections) { - return selections.map((selection) => { - switch (selection.kind) { - case 'Field': - return { - kind: graphql_1$a.Kind.FIELD, - name: { - kind: graphql_1$a.Kind.NAME, - value: selection.name, - }, - selectionSet: { - kind: graphql_1$a.Kind.SELECTION_SET, - selections: remapSelections(selection.selections || []), - }, - }; - case 'InlineFragment': - return { - kind: graphql_1$a.Kind.INLINE_FRAGMENT, - selectionSet: { - kind: graphql_1$a.Kind.SELECTION_SET, - selections: remapSelections(selection.selections || []), - }, - typeCondition: selection.typeCondition - ? { - kind: graphql_1$a.Kind.NAMED_TYPE, - name: { - kind: graphql_1$a.Kind.NAME, - value: selection.typeCondition, - }, - } - : undefined, - }; - } - }); - } - - (function (exports) { - var __importDefault = (commonjsGlobal && commonjsGlobal.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; - }; - Object.defineProperty(exports, "__esModule", { value: true }); - exports.astSerializer = exports.queryPlanSerializer = void 0; - var queryPlanSerializer_1 = queryPlanSerializer; - Object.defineProperty(exports, "queryPlanSerializer", { enumerable: true, get: function () { return __importDefault(queryPlanSerializer_1).default; } }); - var astSerializer_1 = astSerializer; - Object.defineProperty(exports, "astSerializer", { enumerable: true, get: function () { return __importDefault(astSerializer_1).default; } }); - - }(snapshotSerializers)); - - var prettyFormatQueryPlan$1 = {}; - - var build = {}; - - var ansiStyles$2 = {exports: {}}; - - (function (module) { - - const ANSI_BACKGROUND_OFFSET = 10; - - const wrapAnsi256 = (offset = 0) => code => `\u001B[${38 + offset};5;${code}m`; - - const wrapAnsi16m = (offset = 0) => (red, green, blue) => `\u001B[${38 + offset};2;${red};${green};${blue}m`; - - function assembleStyles() { - const codes = new Map(); - const styles = { - modifier: { - reset: [0, 0], - // 21 isn't widely supported and 22 does the same thing - bold: [1, 22], - dim: [2, 22], - italic: [3, 23], - underline: [4, 24], - overline: [53, 55], - inverse: [7, 27], - hidden: [8, 28], - strikethrough: [9, 29] - }, - color: { - black: [30, 39], - red: [31, 39], - green: [32, 39], - yellow: [33, 39], - blue: [34, 39], - magenta: [35, 39], - cyan: [36, 39], - white: [37, 39], - - // Bright color - blackBright: [90, 39], - redBright: [91, 39], - greenBright: [92, 39], - yellowBright: [93, 39], - blueBright: [94, 39], - magentaBright: [95, 39], - cyanBright: [96, 39], - whiteBright: [97, 39] - }, - bgColor: { - bgBlack: [40, 49], - bgRed: [41, 49], - bgGreen: [42, 49], - bgYellow: [43, 49], - bgBlue: [44, 49], - bgMagenta: [45, 49], - bgCyan: [46, 49], - bgWhite: [47, 49], - - // Bright color - bgBlackBright: [100, 49], - bgRedBright: [101, 49], - bgGreenBright: [102, 49], - bgYellowBright: [103, 49], - bgBlueBright: [104, 49], - bgMagentaBright: [105, 49], - bgCyanBright: [106, 49], - bgWhiteBright: [107, 49] - } - }; - - // Alias bright black as gray (and grey) - styles.color.gray = styles.color.blackBright; - styles.bgColor.bgGray = styles.bgColor.bgBlackBright; - styles.color.grey = styles.color.blackBright; - styles.bgColor.bgGrey = styles.bgColor.bgBlackBright; - - for (const [groupName, group] of Object.entries(styles)) { - for (const [styleName, style] of Object.entries(group)) { - styles[styleName] = { - open: `\u001B[${style[0]}m`, - close: `\u001B[${style[1]}m` - }; - - group[styleName] = styles[styleName]; - - codes.set(style[0], style[1]); - } - - Object.defineProperty(styles, groupName, { - value: group, - enumerable: false - }); - } - - Object.defineProperty(styles, 'codes', { - value: codes, - enumerable: false - }); - - styles.color.close = '\u001B[39m'; - styles.bgColor.close = '\u001B[49m'; - - styles.color.ansi256 = wrapAnsi256(); - styles.color.ansi16m = wrapAnsi16m(); - styles.bgColor.ansi256 = wrapAnsi256(ANSI_BACKGROUND_OFFSET); - styles.bgColor.ansi16m = wrapAnsi16m(ANSI_BACKGROUND_OFFSET); - - // From https://github.com/Qix-/color-convert/blob/3f0e0d4e92e235796ccb17f6e85c72094a651f49/conversions.js - Object.defineProperties(styles, { - rgbToAnsi256: { - value: (red, green, blue) => { - // We use the extended greyscale palette here, with the exception of - // black and white. normal palette only has 4 greyscale shades. - if (red === green && green === blue) { - if (red < 8) { - return 16; - } - - if (red > 248) { - return 231; - } - - return Math.round(((red - 8) / 247) * 24) + 232; - } - - return 16 + - (36 * Math.round(red / 255 * 5)) + - (6 * Math.round(green / 255 * 5)) + - Math.round(blue / 255 * 5); - }, - enumerable: false - }, - hexToRgb: { - value: hex => { - const matches = /(?[a-f\d]{6}|[a-f\d]{3})/i.exec(hex.toString(16)); - if (!matches) { - return [0, 0, 0]; - } - - let {colorString} = matches.groups; - - if (colorString.length === 3) { - colorString = colorString.split('').map(character => character + character).join(''); - } - - const integer = Number.parseInt(colorString, 16); - - return [ - (integer >> 16) & 0xFF, - (integer >> 8) & 0xFF, - integer & 0xFF - ]; - }, - enumerable: false - }, - hexToAnsi256: { - value: hex => styles.rgbToAnsi256(...styles.hexToRgb(hex)), - enumerable: false - } - }); - - return styles; - } - - // Make the export immutable - Object.defineProperty(module, 'exports', { - enumerable: true, - get: assembleStyles - }); - }(ansiStyles$2)); - - var collections = {}; - - Object.defineProperty(collections, '__esModule', { - value: true - }); - collections.printIteratorEntries = printIteratorEntries; - collections.printIteratorValues = printIteratorValues; - collections.printListItems = printListItems; - collections.printObjectProperties = printObjectProperties; - - /** - * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - * - */ - const getKeysOfEnumerableProperties = (object, compareKeys) => { - const keys = Object.keys(object).sort(compareKeys); - - if (Object.getOwnPropertySymbols) { - Object.getOwnPropertySymbols(object).forEach(symbol => { - if (Object.getOwnPropertyDescriptor(object, symbol).enumerable) { - keys.push(symbol); - } - }); - } - - return keys; - }; - /** - * Return entries (for example, of a map) - * with spacing, indentation, and comma - * without surrounding punctuation (for example, braces) - */ - - function printIteratorEntries( - iterator, - config, - indentation, - depth, - refs, - printer, // Too bad, so sad that separator for ECMAScript Map has been ' => ' - // What a distracting diff if you change a data structure to/from - // ECMAScript Object or Immutable.Map/OrderedMap which use the default. - separator = ': ' - ) { - let result = ''; - let current = iterator.next(); - - if (!current.done) { - result += config.spacingOuter; - const indentationNext = indentation + config.indent; - - while (!current.done) { - const name = printer( - current.value[0], - config, - indentationNext, - depth, - refs - ); - const value = printer( - current.value[1], - config, - indentationNext, - depth, - refs - ); - result += indentationNext + name + separator + value; - current = iterator.next(); - - if (!current.done) { - result += ',' + config.spacingInner; - } else if (!config.min) { - result += ','; - } - } - - result += config.spacingOuter + indentation; - } - - return result; - } - /** - * Return values (for example, of a set) - * with spacing, indentation, and comma - * without surrounding punctuation (braces or brackets) - */ - - function printIteratorValues( - iterator, - config, - indentation, - depth, - refs, - printer - ) { - let result = ''; - let current = iterator.next(); - - if (!current.done) { - result += config.spacingOuter; - const indentationNext = indentation + config.indent; - - while (!current.done) { - result += - indentationNext + - printer(current.value, config, indentationNext, depth, refs); - current = iterator.next(); - - if (!current.done) { - result += ',' + config.spacingInner; - } else if (!config.min) { - result += ','; - } - } - - result += config.spacingOuter + indentation; - } - - return result; - } - /** - * Return items (for example, of an array) - * with spacing, indentation, and comma - * without surrounding punctuation (for example, brackets) - **/ - - function printListItems(list, config, indentation, depth, refs, printer) { - let result = ''; - - if (list.length) { - result += config.spacingOuter; - const indentationNext = indentation + config.indent; - - for (let i = 0; i < list.length; i++) { - result += indentationNext; - - if (i in list) { - result += printer(list[i], config, indentationNext, depth, refs); - } - - if (i < list.length - 1) { - result += ',' + config.spacingInner; - } else if (!config.min) { - result += ','; - } - } - - result += config.spacingOuter + indentation; - } - - return result; - } - /** - * Return properties of an object - * with spacing, indentation, and comma - * without surrounding punctuation (for example, braces) - */ - - function printObjectProperties(val, config, indentation, depth, refs, printer) { - let result = ''; - const keys = getKeysOfEnumerableProperties(val, config.compareKeys); - - if (keys.length) { - result += config.spacingOuter; - const indentationNext = indentation + config.indent; - - for (let i = 0; i < keys.length; i++) { - const key = keys[i]; - const name = printer(key, config, indentationNext, depth, refs); - const value = printer(val[key], config, indentationNext, depth, refs); - result += indentationNext + name + ': ' + value; - - if (i < keys.length - 1) { - result += ',' + config.spacingInner; - } else if (!config.min) { - result += ','; - } - } - - result += config.spacingOuter + indentation; - } - - return result; - } - - var AsymmetricMatcher = {}; - - Object.defineProperty(AsymmetricMatcher, '__esModule', { - value: true - }); - AsymmetricMatcher.test = AsymmetricMatcher.serialize = AsymmetricMatcher.default = void 0; - - var _collections$3 = collections; - - var global$2 = (function () { - if (typeof globalThis !== 'undefined') { - return globalThis; - } else if (typeof global$2 !== 'undefined') { - return global$2; - } else if (typeof self !== 'undefined') { - return self; - } else if (typeof window !== 'undefined') { - return window; - } else { - return Function('return this')(); - } - })(); - - var Symbol$2 = global$2['jest-symbol-do-not-touch'] || global$2.Symbol; - const asymmetricMatcher = - typeof Symbol$2 === 'function' && Symbol$2.for - ? Symbol$2.for('jest.asymmetricMatcher') - : 0x1357a5; - const SPACE$2 = ' '; - - const serialize$6 = (val, config, indentation, depth, refs, printer) => { - const stringedValue = val.toString(); - - if ( - stringedValue === 'ArrayContaining' || - stringedValue === 'ArrayNotContaining' - ) { - if (++depth > config.maxDepth) { - return '[' + stringedValue + ']'; - } - - return ( - stringedValue + - SPACE$2 + - '[' + - (0, _collections$3.printListItems)( - val.sample, - config, - indentation, - depth, - refs, - printer - ) + - ']' - ); - } - - if ( - stringedValue === 'ObjectContaining' || - stringedValue === 'ObjectNotContaining' - ) { - if (++depth > config.maxDepth) { - return '[' + stringedValue + ']'; - } - - return ( - stringedValue + - SPACE$2 + - '{' + - (0, _collections$3.printObjectProperties)( - val.sample, - config, - indentation, - depth, - refs, - printer - ) + - '}' - ); - } - - if ( - stringedValue === 'StringMatching' || - stringedValue === 'StringNotMatching' - ) { - return ( - stringedValue + - SPACE$2 + - printer(val.sample, config, indentation, depth, refs) - ); - } - - if ( - stringedValue === 'StringContaining' || - stringedValue === 'StringNotContaining' - ) { - return ( - stringedValue + - SPACE$2 + - printer(val.sample, config, indentation, depth, refs) - ); - } - - return val.toAsymmetricMatcher(); - }; - - AsymmetricMatcher.serialize = serialize$6; - - const test$6 = val => val && val.$$typeof === asymmetricMatcher; - - AsymmetricMatcher.test = test$6; - const plugin$6 = { - serialize: serialize$6, - test: test$6 - }; - var _default$7 = plugin$6; - AsymmetricMatcher.default = _default$7; - - var ConvertAnsi = {}; - - var ansiRegex = ({onlyFirst = false} = {}) => { - const pattern = [ - '[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)', - '(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))' - ].join('|'); - - return new RegExp(pattern, onlyFirst ? undefined : 'g'); - }; - - Object.defineProperty(ConvertAnsi, '__esModule', { - value: true - }); - ConvertAnsi.test = ConvertAnsi.serialize = ConvertAnsi.default = void 0; - - var _ansiRegex = _interopRequireDefault$2(ansiRegex); - - var _ansiStyles$1 = _interopRequireDefault$2(ansiStyles$2.exports); - - function _interopRequireDefault$2(obj) { - return obj && obj.__esModule ? obj : {default: obj}; - } - - /** - * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - const toHumanReadableAnsi = text => - text.replace((0, _ansiRegex.default)(), match => { - switch (match) { - case _ansiStyles$1.default.red.close: - case _ansiStyles$1.default.green.close: - case _ansiStyles$1.default.cyan.close: - case _ansiStyles$1.default.gray.close: - case _ansiStyles$1.default.white.close: - case _ansiStyles$1.default.yellow.close: - case _ansiStyles$1.default.bgRed.close: - case _ansiStyles$1.default.bgGreen.close: - case _ansiStyles$1.default.bgYellow.close: - case _ansiStyles$1.default.inverse.close: - case _ansiStyles$1.default.dim.close: - case _ansiStyles$1.default.bold.close: - case _ansiStyles$1.default.reset.open: - case _ansiStyles$1.default.reset.close: - return ''; - - case _ansiStyles$1.default.red.open: - return ''; - - case _ansiStyles$1.default.green.open: - return ''; - - case _ansiStyles$1.default.cyan.open: - return ''; - - case _ansiStyles$1.default.gray.open: - return ''; - - case _ansiStyles$1.default.white.open: - return ''; - - case _ansiStyles$1.default.yellow.open: - return ''; - - case _ansiStyles$1.default.bgRed.open: - return ''; - - case _ansiStyles$1.default.bgGreen.open: - return ''; - - case _ansiStyles$1.default.bgYellow.open: - return ''; - - case _ansiStyles$1.default.inverse.open: - return ''; - - case _ansiStyles$1.default.dim.open: - return ''; - - case _ansiStyles$1.default.bold.open: - return ''; - - default: - return ''; - } - }); - - const test$5 = val => - typeof val === 'string' && !!val.match((0, _ansiRegex.default)()); - - ConvertAnsi.test = test$5; - - const serialize$5 = (val, config, indentation, depth, refs, printer) => - printer(toHumanReadableAnsi(val), config, indentation, depth, refs); - - ConvertAnsi.serialize = serialize$5; - const plugin$5 = { - serialize: serialize$5, - test: test$5 - }; - var _default$6 = plugin$5; - ConvertAnsi.default = _default$6; - - var DOMCollection = {}; - - Object.defineProperty(DOMCollection, '__esModule', { - value: true - }); - DOMCollection.test = DOMCollection.serialize = DOMCollection.default = void 0; - - var _collections$2 = collections; - - /** - * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - - /* eslint-disable local/ban-types-eventually */ - const SPACE$1 = ' '; - const OBJECT_NAMES = ['DOMStringMap', 'NamedNodeMap']; - const ARRAY_REGEXP = /^(HTML\w*Collection|NodeList)$/; - - const testName = name => - OBJECT_NAMES.indexOf(name) !== -1 || ARRAY_REGEXP.test(name); - - const test$4 = val => - val && - val.constructor && - !!val.constructor.name && - testName(val.constructor.name); - - DOMCollection.test = test$4; - - const isNamedNodeMap = collection => - collection.constructor.name === 'NamedNodeMap'; - - const serialize$4 = (collection, config, indentation, depth, refs, printer) => { - const name = collection.constructor.name; - - if (++depth > config.maxDepth) { - return '[' + name + ']'; - } - - return ( - (config.min ? '' : name + SPACE$1) + - (OBJECT_NAMES.indexOf(name) !== -1 - ? '{' + - (0, _collections$2.printObjectProperties)( - isNamedNodeMap(collection) - ? Array.from(collection).reduce((props, attribute) => { - props[attribute.name] = attribute.value; - return props; - }, {}) - : {...collection}, - config, - indentation, - depth, - refs, - printer - ) + - '}' - : '[' + - (0, _collections$2.printListItems)( - Array.from(collection), - config, - indentation, - depth, - refs, - printer - ) + - ']') - ); - }; - - DOMCollection.serialize = serialize$4; - const plugin$4 = { - serialize: serialize$4, - test: test$4 - }; - var _default$5 = plugin$4; - DOMCollection.default = _default$5; - - var DOMElement = {}; - - var markup = {}; - - var escapeHTML$1 = {}; - - Object.defineProperty(escapeHTML$1, '__esModule', { - value: true - }); - escapeHTML$1.default = escapeHTML; - - /** - * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - function escapeHTML(str) { - return str.replace(//g, '>'); - } - - Object.defineProperty(markup, '__esModule', { - value: true - }); - markup.printText = - markup.printProps = - markup.printElementAsLeaf = - markup.printElement = - markup.printComment = - markup.printChildren = - void 0; - - var _escapeHTML = _interopRequireDefault$1(escapeHTML$1); - - function _interopRequireDefault$1(obj) { - return obj && obj.__esModule ? obj : {default: obj}; - } - - /** - * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - // Return empty string if keys is empty. - const printProps = (keys, props, config, indentation, depth, refs, printer) => { - const indentationNext = indentation + config.indent; - const colors = config.colors; - return keys - .map(key => { - const value = props[key]; - let printed = printer(value, config, indentationNext, depth, refs); - - if (typeof value !== 'string') { - if (printed.indexOf('\n') !== -1) { - printed = - config.spacingOuter + - indentationNext + - printed + - config.spacingOuter + - indentation; - } - - printed = '{' + printed + '}'; - } - - return ( - config.spacingInner + - indentation + - colors.prop.open + - key + - colors.prop.close + - '=' + - colors.value.open + - printed + - colors.value.close - ); - }) - .join(''); - }; // Return empty string if children is empty. - - markup.printProps = printProps; - - const printChildren = (children, config, indentation, depth, refs, printer) => - children - .map( - child => - config.spacingOuter + - indentation + - (typeof child === 'string' - ? printText(child, config) - : printer(child, config, indentation, depth, refs)) - ) - .join(''); - - markup.printChildren = printChildren; - - const printText = (text, config) => { - const contentColor = config.colors.content; - return ( - contentColor.open + (0, _escapeHTML.default)(text) + contentColor.close - ); - }; - - markup.printText = printText; - - const printComment = (comment, config) => { - const commentColor = config.colors.comment; - return ( - commentColor.open + - '' + - commentColor.close - ); - }; // Separate the functions to format props, children, and element, - // so a plugin could override a particular function, if needed. - // Too bad, so sad: the traditional (but unnecessary) space - // in a self-closing tagColor requires a second test of printedProps. - - markup.printComment = printComment; - - const printElement = ( - type, - printedProps, - printedChildren, - config, - indentation - ) => { - const tagColor = config.colors.tag; - return ( - tagColor.open + - '<' + - type + - (printedProps && - tagColor.close + - printedProps + - config.spacingOuter + - indentation + - tagColor.open) + - (printedChildren - ? '>' + - tagColor.close + - printedChildren + - config.spacingOuter + - indentation + - tagColor.open + - '' + - tagColor.close - ); - }; - - markup.printElement = printElement; - - const printElementAsLeaf = (type, config) => { - const tagColor = config.colors.tag; - return ( - tagColor.open + - '<' + - type + - tagColor.close + - ' …' + - tagColor.open + - ' />' + - tagColor.close - ); - }; - - markup.printElementAsLeaf = printElementAsLeaf; - - Object.defineProperty(DOMElement, '__esModule', { - value: true - }); - DOMElement.test = DOMElement.serialize = DOMElement.default = void 0; - - var _markup$2 = markup; - - /** - * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - const ELEMENT_NODE = 1; - const TEXT_NODE = 3; - const COMMENT_NODE = 8; - const FRAGMENT_NODE = 11; - const ELEMENT_REGEXP = /^((HTML|SVG)\w*)?Element$/; - - const testHasAttribute = val => { - try { - return typeof val.hasAttribute === 'function' && val.hasAttribute('is'); - } catch { - return false; - } - }; - - const testNode = val => { - const constructorName = val.constructor.name; - const {nodeType, tagName} = val; - const isCustomElement = - (typeof tagName === 'string' && tagName.includes('-')) || - testHasAttribute(val); - return ( - (nodeType === ELEMENT_NODE && - (ELEMENT_REGEXP.test(constructorName) || isCustomElement)) || - (nodeType === TEXT_NODE && constructorName === 'Text') || - (nodeType === COMMENT_NODE && constructorName === 'Comment') || - (nodeType === FRAGMENT_NODE && constructorName === 'DocumentFragment') - ); - }; - - const test$3 = val => { - var _val$constructor; - - return ( - (val === null || val === void 0 - ? void 0 - : (_val$constructor = val.constructor) === null || - _val$constructor === void 0 - ? void 0 - : _val$constructor.name) && testNode(val) - ); - }; - - DOMElement.test = test$3; - - function nodeIsText(node) { - return node.nodeType === TEXT_NODE; - } - - function nodeIsComment(node) { - return node.nodeType === COMMENT_NODE; - } - - function nodeIsFragment(node) { - return node.nodeType === FRAGMENT_NODE; - } - - const serialize$3 = (node, config, indentation, depth, refs, printer) => { - if (nodeIsText(node)) { - return (0, _markup$2.printText)(node.data, config); - } - - if (nodeIsComment(node)) { - return (0, _markup$2.printComment)(node.data, config); - } - - const type = nodeIsFragment(node) - ? `DocumentFragment` - : node.tagName.toLowerCase(); - - if (++depth > config.maxDepth) { - return (0, _markup$2.printElementAsLeaf)(type, config); - } - - return (0, _markup$2.printElement)( - type, - (0, _markup$2.printProps)( - nodeIsFragment(node) - ? [] - : Array.from(node.attributes) - .map(attr => attr.name) - .sort(), - nodeIsFragment(node) - ? {} - : Array.from(node.attributes).reduce((props, attribute) => { - props[attribute.name] = attribute.value; - return props; - }, {}), - config, - indentation + config.indent, - depth, - refs, - printer - ), - (0, _markup$2.printChildren)( - Array.prototype.slice.call(node.childNodes || node.children), - config, - indentation + config.indent, - depth, - refs, - printer - ), - config, - indentation - ); - }; - - DOMElement.serialize = serialize$3; - const plugin$3 = { - serialize: serialize$3, - test: test$3 - }; - var _default$4 = plugin$3; - DOMElement.default = _default$4; - - var Immutable = {}; - - Object.defineProperty(Immutable, '__esModule', { - value: true - }); - Immutable.test = Immutable.serialize = Immutable.default = void 0; - - var _collections$1 = collections; - - /** - * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - // SENTINEL constants are from https://github.com/facebook/immutable-js - const IS_ITERABLE_SENTINEL = '@@__IMMUTABLE_ITERABLE__@@'; - const IS_LIST_SENTINEL = '@@__IMMUTABLE_LIST__@@'; - const IS_KEYED_SENTINEL = '@@__IMMUTABLE_KEYED__@@'; - const IS_MAP_SENTINEL = '@@__IMMUTABLE_MAP__@@'; - const IS_ORDERED_SENTINEL = '@@__IMMUTABLE_ORDERED__@@'; - const IS_RECORD_SENTINEL = '@@__IMMUTABLE_RECORD__@@'; // immutable v4 - - const IS_SEQ_SENTINEL = '@@__IMMUTABLE_SEQ__@@'; - const IS_SET_SENTINEL = '@@__IMMUTABLE_SET__@@'; - const IS_STACK_SENTINEL = '@@__IMMUTABLE_STACK__@@'; - - const getImmutableName = name => 'Immutable.' + name; - - const printAsLeaf = name => '[' + name + ']'; - - const SPACE = ' '; - const LAZY = '…'; // Seq is lazy if it calls a method like filter - - const printImmutableEntries = ( - val, - config, - indentation, - depth, - refs, - printer, - type - ) => - ++depth > config.maxDepth - ? printAsLeaf(getImmutableName(type)) - : getImmutableName(type) + - SPACE + - '{' + - (0, _collections$1.printIteratorEntries)( - val.entries(), - config, - indentation, - depth, - refs, - printer - ) + - '}'; // Record has an entries method because it is a collection in immutable v3. - // Return an iterator for Immutable Record from version v3 or v4. - - function getRecordEntries(val) { - let i = 0; - return { - next() { - if (i < val._keys.length) { - const key = val._keys[i++]; - return { - done: false, - value: [key, val.get(key)] - }; - } - - return { - done: true, - value: undefined - }; - } - }; - } - - const printImmutableRecord = ( - val, - config, - indentation, - depth, - refs, - printer - ) => { - // _name property is defined only for an Immutable Record instance - // which was constructed with a second optional descriptive name arg - const name = getImmutableName(val._name || 'Record'); - return ++depth > config.maxDepth - ? printAsLeaf(name) - : name + - SPACE + - '{' + - (0, _collections$1.printIteratorEntries)( - getRecordEntries(val), - config, - indentation, - depth, - refs, - printer - ) + - '}'; - }; - - const printImmutableSeq = (val, config, indentation, depth, refs, printer) => { - const name = getImmutableName('Seq'); - - if (++depth > config.maxDepth) { - return printAsLeaf(name); - } - - if (val[IS_KEYED_SENTINEL]) { - return ( - name + - SPACE + - '{' + // from Immutable collection of entries or from ECMAScript object - (val._iter || val._object - ? (0, _collections$1.printIteratorEntries)( - val.entries(), - config, - indentation, - depth, - refs, - printer - ) - : LAZY) + - '}' - ); - } - - return ( - name + - SPACE + - '[' + - (val._iter || // from Immutable collection of values - val._array || // from ECMAScript array - val._collection || // from ECMAScript collection in immutable v4 - val._iterable // from ECMAScript collection in immutable v3 - ? (0, _collections$1.printIteratorValues)( - val.values(), - config, - indentation, - depth, - refs, - printer - ) - : LAZY) + - ']' - ); - }; - - const printImmutableValues = ( - val, - config, - indentation, - depth, - refs, - printer, - type - ) => - ++depth > config.maxDepth - ? printAsLeaf(getImmutableName(type)) - : getImmutableName(type) + - SPACE + - '[' + - (0, _collections$1.printIteratorValues)( - val.values(), - config, - indentation, - depth, - refs, - printer - ) + - ']'; - - const serialize$2 = (val, config, indentation, depth, refs, printer) => { - if (val[IS_MAP_SENTINEL]) { - return printImmutableEntries( - val, - config, - indentation, - depth, - refs, - printer, - val[IS_ORDERED_SENTINEL] ? 'OrderedMap' : 'Map' - ); - } - - if (val[IS_LIST_SENTINEL]) { - return printImmutableValues( - val, - config, - indentation, - depth, - refs, - printer, - 'List' - ); - } - - if (val[IS_SET_SENTINEL]) { - return printImmutableValues( - val, - config, - indentation, - depth, - refs, - printer, - val[IS_ORDERED_SENTINEL] ? 'OrderedSet' : 'Set' - ); - } - - if (val[IS_STACK_SENTINEL]) { - return printImmutableValues( - val, - config, - indentation, - depth, - refs, - printer, - 'Stack' - ); - } - - if (val[IS_SEQ_SENTINEL]) { - return printImmutableSeq(val, config, indentation, depth, refs, printer); - } // For compatibility with immutable v3 and v4, let record be the default. - - return printImmutableRecord(val, config, indentation, depth, refs, printer); - }; // Explicitly comparing sentinel properties to true avoids false positive - // when mock identity-obj-proxy returns the key as the value for any key. - - Immutable.serialize = serialize$2; - - const test$2 = val => - val && - (val[IS_ITERABLE_SENTINEL] === true || val[IS_RECORD_SENTINEL] === true); - - Immutable.test = test$2; - const plugin$2 = { - serialize: serialize$2, - test: test$2 - }; - var _default$3 = plugin$2; - Immutable.default = _default$3; - - var ReactElement = {}; - - var reactIs = {exports: {}}; - - var reactIs_production_min = {}; - - /** @license React v17.0.2 - * react-is.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - var b=60103,c=60106,d=60107,e=60108,f=60114,g$3=60109,h=60110,k=60112,l=60113,m=60120,n=60115,p=60116,q=60121,r=60122,u=60117,v=60129,w=60131; - if("function"===typeof Symbol&&Symbol.for){var x=Symbol.for;b=x("react.element");c=x("react.portal");d=x("react.fragment");e=x("react.strict_mode");f=x("react.profiler");g$3=x("react.provider");h=x("react.context");k=x("react.forward_ref");l=x("react.suspense");m=x("react.suspense_list");n=x("react.memo");p=x("react.lazy");q=x("react.block");r=x("react.server.block");u=x("react.fundamental");v=x("react.debug_trace_mode");w=x("react.legacy_hidden");} - function y(a){if("object"===typeof a&&null!==a){var t=a.$$typeof;switch(t){case b:switch(a=a.type,a){case d:case f:case e:case l:case m:return a;default:switch(a=a&&a.$$typeof,a){case h:case k:case p:case n:case g$3:return a;default:return t}}case c:return t}}}var z=g$3,A=b,B=k,C=d,D=p,E=n,F=c,G=f,H=e,I=l;reactIs_production_min.ContextConsumer=h;reactIs_production_min.ContextProvider=z;reactIs_production_min.Element=A;reactIs_production_min.ForwardRef=B;reactIs_production_min.Fragment=C;reactIs_production_min.Lazy=D;reactIs_production_min.Memo=E;reactIs_production_min.Portal=F;reactIs_production_min.Profiler=G;reactIs_production_min.StrictMode=H; - reactIs_production_min.Suspense=I;reactIs_production_min.isAsyncMode=function(){return !1};reactIs_production_min.isConcurrentMode=function(){return !1};reactIs_production_min.isContextConsumer=function(a){return y(a)===h};reactIs_production_min.isContextProvider=function(a){return y(a)===g$3};reactIs_production_min.isElement=function(a){return "object"===typeof a&&null!==a&&a.$$typeof===b};reactIs_production_min.isForwardRef=function(a){return y(a)===k};reactIs_production_min.isFragment=function(a){return y(a)===d};reactIs_production_min.isLazy=function(a){return y(a)===p};reactIs_production_min.isMemo=function(a){return y(a)===n}; - reactIs_production_min.isPortal=function(a){return y(a)===c};reactIs_production_min.isProfiler=function(a){return y(a)===f};reactIs_production_min.isStrictMode=function(a){return y(a)===e};reactIs_production_min.isSuspense=function(a){return y(a)===l};reactIs_production_min.isValidElementType=function(a){return "string"===typeof a||"function"===typeof a||a===d||a===f||a===v||a===e||a===l||a===m||a===w||"object"===typeof a&&null!==a&&(a.$$typeof===p||a.$$typeof===n||a.$$typeof===g$3||a.$$typeof===h||a.$$typeof===k||a.$$typeof===u||a.$$typeof===q||a[0]===r)?!0:!1}; - reactIs_production_min.typeOf=y; - - var reactIs_development = {}; - - /** @license React v17.0.2 - * react-is.development.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - - if (process.env.NODE_ENV !== "production") { - (function() { - - // ATTENTION - // When adding new symbols to this file, - // Please consider also adding to 'react-devtools-shared/src/backend/ReactSymbols' - // The Symbol used to tag the ReactElement-like types. If there is no native Symbol - // nor polyfill, then a plain number is used for performance. - var REACT_ELEMENT_TYPE = 0xeac7; - var REACT_PORTAL_TYPE = 0xeaca; - var REACT_FRAGMENT_TYPE = 0xeacb; - var REACT_STRICT_MODE_TYPE = 0xeacc; - var REACT_PROFILER_TYPE = 0xead2; - var REACT_PROVIDER_TYPE = 0xeacd; - var REACT_CONTEXT_TYPE = 0xeace; - var REACT_FORWARD_REF_TYPE = 0xead0; - var REACT_SUSPENSE_TYPE = 0xead1; - var REACT_SUSPENSE_LIST_TYPE = 0xead8; - var REACT_MEMO_TYPE = 0xead3; - var REACT_LAZY_TYPE = 0xead4; - var REACT_BLOCK_TYPE = 0xead9; - var REACT_SERVER_BLOCK_TYPE = 0xeada; - var REACT_FUNDAMENTAL_TYPE = 0xead5; - var REACT_DEBUG_TRACING_MODE_TYPE = 0xeae1; - var REACT_LEGACY_HIDDEN_TYPE = 0xeae3; - - if (typeof Symbol === 'function' && Symbol.for) { - var symbolFor = Symbol.for; - REACT_ELEMENT_TYPE = symbolFor('react.element'); - REACT_PORTAL_TYPE = symbolFor('react.portal'); - REACT_FRAGMENT_TYPE = symbolFor('react.fragment'); - REACT_STRICT_MODE_TYPE = symbolFor('react.strict_mode'); - REACT_PROFILER_TYPE = symbolFor('react.profiler'); - REACT_PROVIDER_TYPE = symbolFor('react.provider'); - REACT_CONTEXT_TYPE = symbolFor('react.context'); - REACT_FORWARD_REF_TYPE = symbolFor('react.forward_ref'); - REACT_SUSPENSE_TYPE = symbolFor('react.suspense'); - REACT_SUSPENSE_LIST_TYPE = symbolFor('react.suspense_list'); - REACT_MEMO_TYPE = symbolFor('react.memo'); - REACT_LAZY_TYPE = symbolFor('react.lazy'); - REACT_BLOCK_TYPE = symbolFor('react.block'); - REACT_SERVER_BLOCK_TYPE = symbolFor('react.server.block'); - REACT_FUNDAMENTAL_TYPE = symbolFor('react.fundamental'); - symbolFor('react.scope'); - symbolFor('react.opaque.id'); - REACT_DEBUG_TRACING_MODE_TYPE = symbolFor('react.debug_trace_mode'); - symbolFor('react.offscreen'); - REACT_LEGACY_HIDDEN_TYPE = symbolFor('react.legacy_hidden'); - } - - // Filter certain DOM attributes (e.g. src, href) if their values are empty strings. - - var enableScopeAPI = false; // Experimental Create Event Handle API. - - function isValidElementType(type) { - if (typeof type === 'string' || typeof type === 'function') { - return true; - } // Note: typeof might be other than 'symbol' or 'number' (e.g. if it's a polyfill). - - - if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || type === REACT_DEBUG_TRACING_MODE_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || type === REACT_LEGACY_HIDDEN_TYPE || enableScopeAPI ) { - return true; - } - - if (typeof type === 'object' && type !== null) { - if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_BLOCK_TYPE || type[0] === REACT_SERVER_BLOCK_TYPE) { - return true; - } - } - - return false; - } - - function typeOf(object) { - if (typeof object === 'object' && object !== null) { - var $$typeof = object.$$typeof; - - switch ($$typeof) { - case REACT_ELEMENT_TYPE: - var type = object.type; - - switch (type) { - case REACT_FRAGMENT_TYPE: - case REACT_PROFILER_TYPE: - case REACT_STRICT_MODE_TYPE: - case REACT_SUSPENSE_TYPE: - case REACT_SUSPENSE_LIST_TYPE: - return type; - - default: - var $$typeofType = type && type.$$typeof; - - switch ($$typeofType) { - case REACT_CONTEXT_TYPE: - case REACT_FORWARD_REF_TYPE: - case REACT_LAZY_TYPE: - case REACT_MEMO_TYPE: - case REACT_PROVIDER_TYPE: - return $$typeofType; - - default: - return $$typeof; - } - - } - - case REACT_PORTAL_TYPE: - return $$typeof; - } - } - - return undefined; - } - var ContextConsumer = REACT_CONTEXT_TYPE; - var ContextProvider = REACT_PROVIDER_TYPE; - var Element = REACT_ELEMENT_TYPE; - var ForwardRef = REACT_FORWARD_REF_TYPE; - var Fragment = REACT_FRAGMENT_TYPE; - var Lazy = REACT_LAZY_TYPE; - var Memo = REACT_MEMO_TYPE; - var Portal = REACT_PORTAL_TYPE; - var Profiler = REACT_PROFILER_TYPE; - var StrictMode = REACT_STRICT_MODE_TYPE; - var Suspense = REACT_SUSPENSE_TYPE; - var hasWarnedAboutDeprecatedIsAsyncMode = false; - var hasWarnedAboutDeprecatedIsConcurrentMode = false; // AsyncMode should be deprecated - - function isAsyncMode(object) { - { - if (!hasWarnedAboutDeprecatedIsAsyncMode) { - hasWarnedAboutDeprecatedIsAsyncMode = true; // Using console['warn'] to evade Babel and ESLint - - console['warn']('The ReactIs.isAsyncMode() alias has been deprecated, ' + 'and will be removed in React 18+.'); - } - } - - return false; - } - function isConcurrentMode(object) { - { - if (!hasWarnedAboutDeprecatedIsConcurrentMode) { - hasWarnedAboutDeprecatedIsConcurrentMode = true; // Using console['warn'] to evade Babel and ESLint - - console['warn']('The ReactIs.isConcurrentMode() alias has been deprecated, ' + 'and will be removed in React 18+.'); - } - } - - return false; - } - function isContextConsumer(object) { - return typeOf(object) === REACT_CONTEXT_TYPE; - } - function isContextProvider(object) { - return typeOf(object) === REACT_PROVIDER_TYPE; - } - function isElement(object) { - return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE; - } - function isForwardRef(object) { - return typeOf(object) === REACT_FORWARD_REF_TYPE; - } - function isFragment(object) { - return typeOf(object) === REACT_FRAGMENT_TYPE; - } - function isLazy(object) { - return typeOf(object) === REACT_LAZY_TYPE; - } - function isMemo(object) { - return typeOf(object) === REACT_MEMO_TYPE; - } - function isPortal(object) { - return typeOf(object) === REACT_PORTAL_TYPE; - } - function isProfiler(object) { - return typeOf(object) === REACT_PROFILER_TYPE; - } - function isStrictMode(object) { - return typeOf(object) === REACT_STRICT_MODE_TYPE; - } - function isSuspense(object) { - return typeOf(object) === REACT_SUSPENSE_TYPE; - } - - reactIs_development.ContextConsumer = ContextConsumer; - reactIs_development.ContextProvider = ContextProvider; - reactIs_development.Element = Element; - reactIs_development.ForwardRef = ForwardRef; - reactIs_development.Fragment = Fragment; - reactIs_development.Lazy = Lazy; - reactIs_development.Memo = Memo; - reactIs_development.Portal = Portal; - reactIs_development.Profiler = Profiler; - reactIs_development.StrictMode = StrictMode; - reactIs_development.Suspense = Suspense; - reactIs_development.isAsyncMode = isAsyncMode; - reactIs_development.isConcurrentMode = isConcurrentMode; - reactIs_development.isContextConsumer = isContextConsumer; - reactIs_development.isContextProvider = isContextProvider; - reactIs_development.isElement = isElement; - reactIs_development.isForwardRef = isForwardRef; - reactIs_development.isFragment = isFragment; - reactIs_development.isLazy = isLazy; - reactIs_development.isMemo = isMemo; - reactIs_development.isPortal = isPortal; - reactIs_development.isProfiler = isProfiler; - reactIs_development.isStrictMode = isStrictMode; - reactIs_development.isSuspense = isSuspense; - reactIs_development.isValidElementType = isValidElementType; - reactIs_development.typeOf = typeOf; - })(); - } - - if (process.env.NODE_ENV === 'production') { - reactIs.exports = reactIs_production_min; - } else { - reactIs.exports = reactIs_development; - } - - Object.defineProperty(ReactElement, '__esModule', { - value: true - }); - ReactElement.test = ReactElement.serialize = ReactElement.default = void 0; - - var ReactIs = _interopRequireWildcard(reactIs.exports); - - var _markup$1 = markup; - - function _getRequireWildcardCache(nodeInterop) { - if (typeof WeakMap !== 'function') return null; - var cacheBabelInterop = new WeakMap(); - var cacheNodeInterop = new WeakMap(); - return (_getRequireWildcardCache = function (nodeInterop) { - return nodeInterop ? cacheNodeInterop : cacheBabelInterop; - })(nodeInterop); - } - - function _interopRequireWildcard(obj, nodeInterop) { - if (!nodeInterop && obj && obj.__esModule) { - return obj; - } - if (obj === null || (typeof obj !== 'object' && typeof obj !== 'function')) { - return {default: obj}; - } - var cache = _getRequireWildcardCache(nodeInterop); - if (cache && cache.has(obj)) { - return cache.get(obj); - } - var newObj = {}; - var hasPropertyDescriptor = - Object.defineProperty && Object.getOwnPropertyDescriptor; - for (var key in obj) { - if (key !== 'default' && Object.prototype.hasOwnProperty.call(obj, key)) { - var desc = hasPropertyDescriptor - ? Object.getOwnPropertyDescriptor(obj, key) - : null; - if (desc && (desc.get || desc.set)) { - Object.defineProperty(newObj, key, desc); - } else { - newObj[key] = obj[key]; - } - } - } - newObj.default = obj; - if (cache) { - cache.set(obj, newObj); - } - return newObj; - } - - /** - * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - // Given element.props.children, or subtree during recursive traversal, - // return flattened array of children. - const getChildren = (arg, children = []) => { - if (Array.isArray(arg)) { - arg.forEach(item => { - getChildren(item, children); - }); - } else if (arg != null && arg !== false) { - children.push(arg); - } - - return children; - }; - - const getType = element => { - const type = element.type; - - if (typeof type === 'string') { - return type; - } - - if (typeof type === 'function') { - return type.displayName || type.name || 'Unknown'; - } - - if (ReactIs.isFragment(element)) { - return 'React.Fragment'; - } - - if (ReactIs.isSuspense(element)) { - return 'React.Suspense'; - } - - if (typeof type === 'object' && type !== null) { - if (ReactIs.isContextProvider(element)) { - return 'Context.Provider'; - } - - if (ReactIs.isContextConsumer(element)) { - return 'Context.Consumer'; - } - - if (ReactIs.isForwardRef(element)) { - if (type.displayName) { - return type.displayName; - } - - const functionName = type.render.displayName || type.render.name || ''; - return functionName !== '' - ? 'ForwardRef(' + functionName + ')' - : 'ForwardRef'; - } - - if (ReactIs.isMemo(element)) { - const functionName = - type.displayName || type.type.displayName || type.type.name || ''; - return functionName !== '' ? 'Memo(' + functionName + ')' : 'Memo'; - } - } - - return 'UNDEFINED'; - }; - - const getPropKeys$1 = element => { - const {props} = element; - return Object.keys(props) - .filter(key => key !== 'children' && props[key] !== undefined) - .sort(); - }; - - const serialize$1 = (element, config, indentation, depth, refs, printer) => - ++depth > config.maxDepth - ? (0, _markup$1.printElementAsLeaf)(getType(element), config) - : (0, _markup$1.printElement)( - getType(element), - (0, _markup$1.printProps)( - getPropKeys$1(element), - element.props, - config, - indentation + config.indent, - depth, - refs, - printer - ), - (0, _markup$1.printChildren)( - getChildren(element.props.children), - config, - indentation + config.indent, - depth, - refs, - printer - ), - config, - indentation - ); - - ReactElement.serialize = serialize$1; - - const test$1 = val => val != null && ReactIs.isElement(val); - - ReactElement.test = test$1; - const plugin$1 = { - serialize: serialize$1, - test: test$1 - }; - var _default$2 = plugin$1; - ReactElement.default = _default$2; - - var ReactTestComponent = {}; - - Object.defineProperty(ReactTestComponent, '__esModule', { - value: true - }); - ReactTestComponent.test = ReactTestComponent.serialize = ReactTestComponent.default = void 0; - - var _markup = markup; - - var global$1 = (function () { - if (typeof globalThis !== 'undefined') { - return globalThis; - } else if (typeof global$1 !== 'undefined') { - return global$1; - } else if (typeof self !== 'undefined') { - return self; - } else if (typeof window !== 'undefined') { - return window; - } else { - return Function('return this')(); - } - })(); - - var Symbol$1 = global$1['jest-symbol-do-not-touch'] || global$1.Symbol; - const testSymbol = - typeof Symbol$1 === 'function' && Symbol$1.for - ? Symbol$1.for('react.test.json') - : 0xea71357; - - const getPropKeys = object => { - const {props} = object; - return props - ? Object.keys(props) - .filter(key => props[key] !== undefined) - .sort() - : []; - }; - - const serialize = (object, config, indentation, depth, refs, printer) => - ++depth > config.maxDepth - ? (0, _markup.printElementAsLeaf)(object.type, config) - : (0, _markup.printElement)( - object.type, - object.props - ? (0, _markup.printProps)( - getPropKeys(object), - object.props, - config, - indentation + config.indent, - depth, - refs, - printer - ) - : '', - object.children - ? (0, _markup.printChildren)( - object.children, - config, - indentation + config.indent, - depth, - refs, - printer - ) - : '', - config, - indentation - ); - - ReactTestComponent.serialize = serialize; - - const test = val => val && val.$$typeof === testSymbol; - - ReactTestComponent.test = test; - const plugin = { - serialize, - test - }; - var _default$1 = plugin; - ReactTestComponent.default = _default$1; - - Object.defineProperty(build, '__esModule', { - value: true - }); - build.default = build.DEFAULT_OPTIONS = void 0; - build.format = format$1; - build.plugins = void 0; - - var _ansiStyles = _interopRequireDefault(ansiStyles$2.exports); - - var _collections = collections; - - var _AsymmetricMatcher = _interopRequireDefault( - AsymmetricMatcher - ); - - var _ConvertAnsi = _interopRequireDefault(ConvertAnsi); - - var _DOMCollection = _interopRequireDefault(DOMCollection); - - var _DOMElement = _interopRequireDefault(DOMElement); - - var _Immutable = _interopRequireDefault(Immutable); - - var _ReactElement = _interopRequireDefault(ReactElement); - - var _ReactTestComponent = _interopRequireDefault( - ReactTestComponent - ); - - function _interopRequireDefault(obj) { - return obj && obj.__esModule ? obj : {default: obj}; - } - - /** - * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - - /* eslint-disable local/ban-types-eventually */ - const toString$2 = Object.prototype.toString; - const toISOString = Date.prototype.toISOString; - const errorToString$1 = Error.prototype.toString; - const regExpToString = RegExp.prototype.toString; - /** - * Explicitly comparing typeof constructor to function avoids undefined as name - * when mock identity-obj-proxy returns the key as the value for any key. - */ - - const getConstructorName = val => - (typeof val.constructor === 'function' && val.constructor.name) || 'Object'; - /* global window */ - - /** Is val is equal to global window object? Works even if it does not exist :) */ - - const isWindow = val => typeof window !== 'undefined' && val === window; - - const SYMBOL_REGEXP = /^Symbol\((.*)\)(.*)$/; - const NEWLINE_REGEXP = /\n/gi; - - class PrettyFormatPluginError extends Error { - constructor(message, stack) { - super(message); - this.stack = stack; - this.name = this.constructor.name; - } - } - - function isToStringedArrayType(toStringed) { - return ( - toStringed === '[object Array]' || - toStringed === '[object ArrayBuffer]' || - toStringed === '[object DataView]' || - toStringed === '[object Float32Array]' || - toStringed === '[object Float64Array]' || - toStringed === '[object Int8Array]' || - toStringed === '[object Int16Array]' || - toStringed === '[object Int32Array]' || - toStringed === '[object Uint8Array]' || - toStringed === '[object Uint8ClampedArray]' || - toStringed === '[object Uint16Array]' || - toStringed === '[object Uint32Array]' - ); - } - - function printNumber(val) { - return Object.is(val, -0) ? '-0' : String(val); - } - - function printBigInt(val) { - return String(`${val}n`); - } - - function printFunction(val, printFunctionName) { - if (!printFunctionName) { - return '[Function]'; - } - - return '[Function ' + (val.name || 'anonymous') + ']'; - } - - function printSymbol(val) { - return String(val).replace(SYMBOL_REGEXP, 'Symbol($1)'); - } - - function printError(val) { - return '[' + errorToString$1.call(val) + ']'; - } - /** - * The first port of call for printing an object, handles most of the - * data-types in JS. - */ - - function printBasicValue(val, printFunctionName, escapeRegex, escapeString) { - if (val === true || val === false) { - return '' + val; - } - - if (val === undefined) { - return 'undefined'; - } - - if (val === null) { - return 'null'; - } - - const typeOf = typeof val; - - if (typeOf === 'number') { - return printNumber(val); - } - - if (typeOf === 'bigint') { - return printBigInt(val); - } - - if (typeOf === 'string') { - if (escapeString) { - return '"' + val.replace(/"|\\/g, '\\$&') + '"'; - } - - return '"' + val + '"'; - } - - if (typeOf === 'function') { - return printFunction(val, printFunctionName); - } - - if (typeOf === 'symbol') { - return printSymbol(val); - } - - const toStringed = toString$2.call(val); - - if (toStringed === '[object WeakMap]') { - return 'WeakMap {}'; - } - - if (toStringed === '[object WeakSet]') { - return 'WeakSet {}'; - } - - if ( - toStringed === '[object Function]' || - toStringed === '[object GeneratorFunction]' - ) { - return printFunction(val, printFunctionName); - } - - if (toStringed === '[object Symbol]') { - return printSymbol(val); - } - - if (toStringed === '[object Date]') { - return isNaN(+val) ? 'Date { NaN }' : toISOString.call(val); - } - - if (toStringed === '[object Error]') { - return printError(val); - } - - if (toStringed === '[object RegExp]') { - if (escapeRegex) { - // https://github.com/benjamingr/RegExp.escape/blob/main/polyfill.js - return regExpToString.call(val).replace(/[\\^$*+?.()|[\]{}]/g, '\\$&'); - } - - return regExpToString.call(val); - } - - if (val instanceof Error) { - return printError(val); - } - - return null; - } - /** - * Handles more complex objects ( such as objects with circular references. - * maps and sets etc ) - */ - - function printComplexValue( - val, - config, - indentation, - depth, - refs, - hasCalledToJSON - ) { - if (refs.indexOf(val) !== -1) { - return '[Circular]'; - } - - refs = refs.slice(); - refs.push(val); - const hitMaxDepth = ++depth > config.maxDepth; - const min = config.min; - - if ( - config.callToJSON && - !hitMaxDepth && - val.toJSON && - typeof val.toJSON === 'function' && - !hasCalledToJSON - ) { - return printer(val.toJSON(), config, indentation, depth, refs, true); - } - - const toStringed = toString$2.call(val); - - if (toStringed === '[object Arguments]') { - return hitMaxDepth - ? '[Arguments]' - : (min ? '' : 'Arguments ') + - '[' + - (0, _collections.printListItems)( - val, - config, - indentation, - depth, - refs, - printer - ) + - ']'; - } - - if (isToStringedArrayType(toStringed)) { - return hitMaxDepth - ? '[' + val.constructor.name + ']' - : (min - ? '' - : !config.printBasicPrototype && val.constructor.name === 'Array' - ? '' - : val.constructor.name + ' ') + - '[' + - (0, _collections.printListItems)( - val, - config, - indentation, - depth, - refs, - printer - ) + - ']'; - } - - if (toStringed === '[object Map]') { - return hitMaxDepth - ? '[Map]' - : 'Map {' + - (0, _collections.printIteratorEntries)( - val.entries(), - config, - indentation, - depth, - refs, - printer, - ' => ' - ) + - '}'; - } - - if (toStringed === '[object Set]') { - return hitMaxDepth - ? '[Set]' - : 'Set {' + - (0, _collections.printIteratorValues)( - val.values(), - config, - indentation, - depth, - refs, - printer - ) + - '}'; - } // Avoid failure to serialize global window object in jsdom test environment. - // For example, not even relevant if window is prop of React element. - - return hitMaxDepth || isWindow(val) - ? '[' + getConstructorName(val) + ']' - : (min - ? '' - : !config.printBasicPrototype && getConstructorName(val) === 'Object' - ? '' - : getConstructorName(val) + ' ') + - '{' + - (0, _collections.printObjectProperties)( - val, - config, - indentation, - depth, - refs, - printer - ) + - '}'; - } - - function isNewPlugin(plugin) { - return plugin.serialize != null; - } - - function printPlugin(plugin, val, config, indentation, depth, refs) { - let printed; - - try { - printed = isNewPlugin(plugin) - ? plugin.serialize(val, config, indentation, depth, refs, printer) - : plugin.print( - val, - valChild => printer(valChild, config, indentation, depth, refs), - str => { - const indentationNext = indentation + config.indent; - return ( - indentationNext + - str.replace(NEWLINE_REGEXP, '\n' + indentationNext) - ); - }, - { - edgeSpacing: config.spacingOuter, - min: config.min, - spacing: config.spacingInner - }, - config.colors - ); - } catch (error) { - throw new PrettyFormatPluginError(error.message, error.stack); - } - - if (typeof printed !== 'string') { - throw new Error( - `pretty-format: Plugin must return type "string" but instead returned "${typeof printed}".` - ); - } - - return printed; - } - - function findPlugin(plugins, val) { - for (let p = 0; p < plugins.length; p++) { - try { - if (plugins[p].test(val)) { - return plugins[p]; - } - } catch (error) { - throw new PrettyFormatPluginError(error.message, error.stack); - } - } - - return null; - } - - function printer(val, config, indentation, depth, refs, hasCalledToJSON) { - const plugin = findPlugin(config.plugins, val); - - if (plugin !== null) { - return printPlugin(plugin, val, config, indentation, depth, refs); - } - - const basicResult = printBasicValue( - val, - config.printFunctionName, - config.escapeRegex, - config.escapeString - ); - - if (basicResult !== null) { - return basicResult; - } - - return printComplexValue( - val, - config, - indentation, - depth, - refs, - hasCalledToJSON - ); - } - - const DEFAULT_THEME = { - comment: 'gray', - content: 'reset', - prop: 'yellow', - tag: 'cyan', - value: 'green' - }; - const DEFAULT_THEME_KEYS = Object.keys(DEFAULT_THEME); - const DEFAULT_OPTIONS = { - callToJSON: true, - compareKeys: undefined, - escapeRegex: false, - escapeString: true, - highlight: false, - indent: 2, - maxDepth: Infinity, - min: false, - plugins: [], - printBasicPrototype: true, - printFunctionName: true, - theme: DEFAULT_THEME - }; - build.DEFAULT_OPTIONS = DEFAULT_OPTIONS; - - function validateOptions(options) { - Object.keys(options).forEach(key => { - if (!DEFAULT_OPTIONS.hasOwnProperty(key)) { - throw new Error(`pretty-format: Unknown option "${key}".`); - } - }); - - if (options.min && options.indent !== undefined && options.indent !== 0) { - throw new Error( - 'pretty-format: Options "min" and "indent" cannot be used together.' - ); - } - - if (options.theme !== undefined) { - if (options.theme === null) { - throw new Error(`pretty-format: Option "theme" must not be null.`); - } - - if (typeof options.theme !== 'object') { - throw new Error( - `pretty-format: Option "theme" must be of type "object" but instead received "${typeof options.theme}".` - ); - } - } - } - - const getColorsHighlight = options => - DEFAULT_THEME_KEYS.reduce((colors, key) => { - const value = - options.theme && options.theme[key] !== undefined - ? options.theme[key] - : DEFAULT_THEME[key]; - const color = value && _ansiStyles.default[value]; - - if ( - color && - typeof color.close === 'string' && - typeof color.open === 'string' - ) { - colors[key] = color; - } else { - throw new Error( - `pretty-format: Option "theme" has a key "${key}" whose value "${value}" is undefined in ansi-styles.` - ); - } - - return colors; - }, Object.create(null)); - - const getColorsEmpty = () => - DEFAULT_THEME_KEYS.reduce((colors, key) => { - colors[key] = { - close: '', - open: '' - }; - return colors; - }, Object.create(null)); - - const getPrintFunctionName = options => - options && options.printFunctionName !== undefined - ? options.printFunctionName - : DEFAULT_OPTIONS.printFunctionName; - - const getEscapeRegex = options => - options && options.escapeRegex !== undefined - ? options.escapeRegex - : DEFAULT_OPTIONS.escapeRegex; - - const getEscapeString = options => - options && options.escapeString !== undefined - ? options.escapeString - : DEFAULT_OPTIONS.escapeString; - - const getConfig = options => { - var _options$printBasicPr; - - return { - callToJSON: - options && options.callToJSON !== undefined - ? options.callToJSON - : DEFAULT_OPTIONS.callToJSON, - colors: - options && options.highlight - ? getColorsHighlight(options) - : getColorsEmpty(), - compareKeys: - options && typeof options.compareKeys === 'function' - ? options.compareKeys - : DEFAULT_OPTIONS.compareKeys, - escapeRegex: getEscapeRegex(options), - escapeString: getEscapeString(options), - indent: - options && options.min - ? '' - : createIndent( - options && options.indent !== undefined - ? options.indent - : DEFAULT_OPTIONS.indent - ), - maxDepth: - options && options.maxDepth !== undefined - ? options.maxDepth - : DEFAULT_OPTIONS.maxDepth, - min: - options && options.min !== undefined ? options.min : DEFAULT_OPTIONS.min, - plugins: - options && options.plugins !== undefined - ? options.plugins - : DEFAULT_OPTIONS.plugins, - printBasicPrototype: - (_options$printBasicPr = - options === null || options === void 0 - ? void 0 - : options.printBasicPrototype) !== null && - _options$printBasicPr !== void 0 - ? _options$printBasicPr - : true, - printFunctionName: getPrintFunctionName(options), - spacingInner: options && options.min ? ' ' : '\n', - spacingOuter: options && options.min ? '' : '\n' - }; - }; - - function createIndent(indent) { - return new Array(indent + 1).join(' '); - } - /** - * Returns a presentation string of your `val` object - * @param val any potential JavaScript object - * @param options Custom settings - */ - - function format$1(val, options) { - if (options) { - validateOptions(options); - - if (options.plugins) { - const plugin = findPlugin(options.plugins, val); - - if (plugin !== null) { - return printPlugin(plugin, val, getConfig(options), '', 0, []); - } - } - } - - const basicResult = printBasicValue( - val, - getPrintFunctionName(options), - getEscapeRegex(options), - getEscapeString(options) - ); - - if (basicResult !== null) { - return basicResult; - } - - return printComplexValue(val, getConfig(options), '', 0, []); - } - - const plugins = { - AsymmetricMatcher: _AsymmetricMatcher.default, - ConvertAnsi: _ConvertAnsi.default, - DOMCollection: _DOMCollection.default, - DOMElement: _DOMElement.default, - Immutable: _Immutable.default, - ReactElement: _ReactElement.default, - ReactTestComponent: _ReactTestComponent.default - }; - build.plugins = plugins; - var _default = format$1; - build.default = _default; - - var __importDefault$5 = (commonjsGlobal && commonjsGlobal.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; - }; - Object.defineProperty(prettyFormatQueryPlan$1, "__esModule", { value: true }); - prettyFormatQueryPlan$1.prettyFormatQueryPlan = void 0; - const pretty_format_1 = __importDefault$5(build); - const snapshotSerializers_1 = snapshotSerializers; - function prettyFormatQueryPlan(queryPlan) { - return (0, pretty_format_1.default)(queryPlan, { - plugins: [snapshotSerializers_1.queryPlanSerializer, snapshotSerializers_1.astSerializer], - }); - } - prettyFormatQueryPlan$1.prettyFormatQueryPlan = prettyFormatQueryPlan; - - var QueryPlan = {}; - - (function (exports) { - var __importDefault = (commonjsGlobal && commonjsGlobal.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; - }; - Object.defineProperty(exports, "__esModule", { value: true }); - exports.trimSelectionNodes = exports.getResponseName = exports.serializeQueryPlan = void 0; - const graphql_1 = require$$0$2; - const pretty_format_1 = __importDefault(build); - const snapshotSerializers_1 = snapshotSerializers; - function serializeQueryPlan(queryPlan) { - return (0, pretty_format_1.default)(queryPlan, { - plugins: [snapshotSerializers_1.queryPlanSerializer, snapshotSerializers_1.astSerializer], - }); - } - exports.serializeQueryPlan = serializeQueryPlan; - function getResponseName(node) { - return node.alias ? node.alias : node.name; - } - exports.getResponseName = getResponseName; - const trimSelectionNodes = (selections) => { - const remapped = []; - selections.forEach((selection) => { - var _a; - if (selection.kind === graphql_1.Kind.FIELD) { - remapped.push({ - kind: graphql_1.Kind.FIELD, - name: selection.name.value, - selections: selection.selectionSet && - (0, exports.trimSelectionNodes)(selection.selectionSet.selections), - }); - } - if (selection.kind === graphql_1.Kind.INLINE_FRAGMENT) { - remapped.push({ - kind: graphql_1.Kind.INLINE_FRAGMENT, - typeCondition: (_a = selection.typeCondition) === null || _a === void 0 ? void 0 : _a.name.value, - selections: (0, exports.trimSelectionNodes)(selection.selectionSet.selections), - }); - } - }); - return remapped; - }; - exports.trimSelectionNodes = trimSelectionNodes; - - }(QueryPlan)); - - var dist$2 = {}; - - var querygraph = {}; - - var dist$1 = {}; - - var definitions = {}; - - var coreSpec = {}; - - var types = {}; - - (function (exports) { - Object.defineProperty(exports, "__esModule", { value: true }); - exports.isStrictSubtype = exports.isSubtype = exports.isDirectSubtype = exports.sameType = exports.DEFAULT_SUBTYPING_RULES = exports.ALL_SUBTYPING_RULES = void 0; - const definitions_1 = definitions; - exports.ALL_SUBTYPING_RULES = [ - 'direct', - 'nonNullable_downgrade', - 'list_upgrade', - 'list_propagation', - 'nonNullable_propagation' - ]; - exports.DEFAULT_SUBTYPING_RULES = exports.ALL_SUBTYPING_RULES.filter(r => r !== "list_upgrade"); - function sameType(t1, t2) { - if (t1.kind !== t2.kind) { - return false; - } - switch (t1.kind) { - case 'ListType': - return sameType(t1.ofType, t2.ofType); - case 'NonNullType': - return sameType(t1.ofType, t2.ofType); - default: - return t1.name === t2.name; - } - } - exports.sameType = sameType; - function isDirectSubtype(type, maybeSubType, unionMembershipTester = (u, m) => u.hasTypeMember(m), implementsInterfaceTester = (m, i) => m.implementsInterface(i)) { - if ((0, definitions_1.isUnionType)(type)) { - return (0, definitions_1.isObjectType)(maybeSubType) && unionMembershipTester(type, maybeSubType); - } - return implementsInterfaceTester(maybeSubType, type); - } - exports.isDirectSubtype = isDirectSubtype; - function isSubtype(type, maybeSubType, allowedRules = exports.DEFAULT_SUBTYPING_RULES, unionMembershipTester = (u, m) => u.hasTypeMember(m), implementsInterfaceTester = (m, i) => m.implementsInterface(i)) { - return sameType(type, maybeSubType) || isStrictSubtype(type, maybeSubType, allowedRules, unionMembershipTester, implementsInterfaceTester); - } - exports.isSubtype = isSubtype; - function isStrictSubtype(type, maybeSubType, allowedRules = exports.DEFAULT_SUBTYPING_RULES, unionMembershipTester = (u, m) => u.hasTypeMember(m), implementsInterfaceTester = (m, i) => m.implementsInterface(i)) { - switch (maybeSubType.kind) { - case 'ListType': - return allowedRules.includes('list_propagation') - && (0, definitions_1.isListType)(type) - && isSubtype(type.ofType, maybeSubType.ofType, allowedRules, unionMembershipTester, implementsInterfaceTester); - case 'NonNullType': - if ((0, definitions_1.isNonNullType)(type)) { - return allowedRules.includes('nonNullable_propagation') - && isSubtype(type.ofType, maybeSubType.ofType, allowedRules, unionMembershipTester, implementsInterfaceTester); - } - return allowedRules.includes('nonNullable_downgrade') - && isSubtype(type, maybeSubType.ofType, allowedRules, unionMembershipTester, implementsInterfaceTester); - case 'ObjectType': - case 'InterfaceType': - if ((0, definitions_1.isListType)(type)) { - return allowedRules.includes('list_upgrade') - && isSubtype(type.ofType, maybeSubType, allowedRules, unionMembershipTester, implementsInterfaceTester); - } - return allowedRules.includes('direct') - && ((0, definitions_1.isInterfaceType)(type) || (0, definitions_1.isUnionType)(type)) - && isDirectSubtype(type, maybeSubType, unionMembershipTester, implementsInterfaceTester); - default: - return (0, definitions_1.isListType)(type) - && allowedRules.includes('list_upgrade') - && isSubtype(type.ofType, maybeSubType, allowedRules, unionMembershipTester, implementsInterfaceTester); - } - } - exports.isStrictSubtype = isStrictSubtype; - - }(types)); - - var dist = {}; - - var schema = {}; - - var require$$1$1 = /*@__PURE__*/getAugmentedNamespace(values$1); - - var core = {}; - - var error$1 = {}; - - Object.defineProperty(error$1, "__esModule", { value: true }); - error$1.err = error$1.GraphQLErrorExt = void 0; - const graphql_1$9 = require$$0$2; - class GraphQLErrorExt extends graphql_1$9.GraphQLError { - constructor(code, message, props) { - super(message, props === null || props === void 0 ? void 0 : props.nodes, props === null || props === void 0 ? void 0 : props.source, props === null || props === void 0 ? void 0 : props.positions, props === null || props === void 0 ? void 0 : props.path, props === null || props === void 0 ? void 0 : props.originalError, props === null || props === void 0 ? void 0 : props.extensions); - this.code = code; - if (props) - for (const prop in props) { - if (!GraphQLErrorExt.BASE_PROPS.has(prop)) { - this[prop] = props[prop]; - } - } - this.name = code; - } - throw() { throw this; } - toString() { - let output = `[${this.code}] ${(0, graphql_1$9.printError)(this)}`; - const causes = this.causes; - if (causes && causes.length) { - output += '\ncaused by:'; - for (const cause of this.causes || []) { - if (!cause) - continue; - output += '\n\n - '; - output += cause.toString().split('\n').join('\n '); - } - } - return output; - } - } - error$1.GraphQLErrorExt = GraphQLErrorExt; - GraphQLErrorExt.BASE_PROPS = new Set('nodes source positions path originalError extensions'.split(' ')); - function err(code, props) { - const message = typeof props === 'string' ? props : props.message; - const error = new GraphQLErrorExt(code, message, typeof props === 'string' ? undefined : props); - return error; - } - error$1.err = err; - error$1.default = err; - - (function (exports) { - Object.defineProperty(exports, "__esModule", { value: true }); - exports.Cell = exports.ROLLBACK = exports.Core = exports.ErrCheckFailed = exports.ErrEvalStackEmpty = exports.ErrNoData = void 0; - const error_1 = error$1; - const ErrNoData = (causes) => (0, error_1.err)('NoData', { - message: 'no data', - causes - }); - exports.ErrNoData = ErrNoData; - const ErrEvalStackEmpty = () => (0, error_1.err)('EvalStackEmpty', { - code: 'EvalStackEmpty', - message: 'this method must only be called from an evaluator, during evaluation. no evaluation is ongoing.' - }); - exports.ErrEvalStackEmpty = ErrEvalStackEmpty; - const ErrCheckFailed = (causes) => (0, error_1.err)('CheckFailed', { - message: 'one or more checks failed', - causes - }); - exports.ErrCheckFailed = ErrCheckFailed; - class Core { - constructor(data) { - this._cells = new WeakMap; - this._stack = []; - this._traceStack = []; - this._data = data; - } - get data() { return this._data; } - get(fn) { - var _a; - const cell = this.getCell(fn); - this.evaluate(cell, fn); - if (!cell.result) { - throw (0, exports.ErrNoData)(); - } - if (cell.result.data === undefined) { - if (((_a = cell.result.errors) === null || _a === void 0 ? void 0 : _a.length) === 1) - throw cell.result.errors[0]; - throw (0, exports.ErrNoData)(cell.result.errors); - } - return cell.result.data; - } - try(fn) { - var _a; - const cell = this.getCell(fn); - this.evaluate(cell, fn); - return (_a = cell.result) === null || _a === void 0 ? void 0 : _a.data; - } - getResult(fn) { - const cell = this.getCell(fn); - let result = { errors: [] }; - this.trace(() => { - var _a; - this.evaluate(cell, fn); - result.data = (_a = cell.result) === null || _a === void 0 ? void 0 : _a.data; - }, (event, _fn, cellResult) => { - if (event === 'end' && cellResult && cellResult.errors) - result.errors = result.errors.concat(cellResult.errors); - }); - return result; - } - check(...fns) { - let errors = []; - this.trace(() => { - for (const fn of fns) - this.try(fn); - }, (event, _fn, cellResult) => { - if (event === 'end' && cellResult && cellResult.errors) - errors = errors.concat(cellResult.errors); - }); - if (!errors.length) - return this; - throw (0, exports.ErrCheckFailed)(errors); - } - update(update) { - this._data = update(this.data); - } - pure(...passIfChanged) { - const { currentCell } = this; - currentCell.pure(...passIfChanged); - } - report(...errors) { - const { currentCell } = this; - for (const error of errors) - currentCell.report(error); - } - get currentCell() { - const top = this._stack[this._stack.length - 1]; - if (!top) - throw (0, exports.ErrEvalStackEmpty)(); - return top; - } - get currentTracer() { - return this._traceStack[this._traceStack.length - 1]; - } - trace(block, onEvent) { - this._traceStack.push(onEvent); - try { - block(); - } - finally { - this._traceStack.pop(); - } - } - evaluate(cell, fn) { - const tracer = this.currentTracer; - this._stack.push(cell); - try { - try { - if (tracer) - tracer('begin', fn, cell.result); - cell.evaluate(this, fn); - } - finally { - if (tracer) - tracer('end', fn, cell.result); - } - } - finally { - this._stack.pop(); - } - } - getCell(fn) { - const existing = this._cells.get(fn); - if (existing) - return existing; - const created = new Cell; - this._cells.set(fn, created); - return created; - } - } - exports.Core = Core; - exports.default = Core; - exports.ROLLBACK = Object.freeze({ ROLLBACK: true }); - class Cell { - constructor() { - this.status = 'empty'; - this.result = undefined; - this._pendingResult = undefined; - this._guards = []; - this._nextGuard = 0; - } - pure(...changed) { - const index = this._nextGuard++; - const existing = this._guards[index]; - try { - if (!existing) - return; - if (existing.length !== changed.length) - return; - let i = existing.length; - while (i-- > 0) { - if (existing[i] !== changed[i]) - return; - } - throw exports.ROLLBACK; - } - finally { - this._guards[index] = changed; - } - } - report(error) { - var _a; - const pending = this._pendingResult; - if (!pending) - throw new Error('cell is not being evaluated'); - pending.errors = (_a = pending.errors) !== null && _a !== void 0 ? _a : []; - pending.errors.push(error); - } - evaluate(core, fn) { - const pending = {}; - this._pendingResult = pending; - const lastStatus = this.status; - this.status = 'run'; - this._nextGuard = 0; - let rollback = false; - try { - pending.data = fn.call(core, core); - } - catch (err) { - if (err === exports.ROLLBACK) { - rollback = true; - } - else { - this.report(err); - } - } - finally { - this._nextGuard = 0; - if (!rollback) { - this.result = pending; - this.status = 'ready'; - } - else { - this.status = lastStatus; - } - this._pendingResult = undefined; - } - } - } - exports.Cell = Cell; - - }(core)); - - var featureUrl = {}; - - var version$1 = {}; - - (function (exports) { - var __importDefault = (commonjsGlobal && commonjsGlobal.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; - }; - Object.defineProperty(exports, "__esModule", { value: true }); - exports.Version = exports.ErrVersionParse = void 0; - const error_1 = __importDefault(error$1); - const ErrVersionParse = (input) => (0, error_1.default)('VersionParse', { - message: `expected a version specifier like "v9.8", got "${input}"`, - input, - }); - exports.ErrVersionParse = ErrVersionParse; - class Version { - constructor(major, minor) { - this.major = major; - this.minor = minor; - } - static parse(input) { - const match = input.match(this.VERSION_RE); - if (!match) - throw (0, exports.ErrVersionParse)(input); - return new this(+match[1], +match[2]); - } - satisfies(required) { - const { major, minor } = this; - const { major: rMajor, minor: rMinor } = required; - return rMajor == major && (major == 0 - ? rMinor == minor - : rMinor <= minor); - } - get series() { - const { major } = this; - return major > 0 ? `${major}.x` : String(this); - } - toString() { - return `v${this.major}.${this.minor}`; - } - equals(other) { - return this.major === other.major && this.minor === other.minor; - } - } - exports.Version = Version; - Version.VERSION_RE = /^v(\d+)\.(\d+)$/; - exports.default = Version; - - }(version$1)); - - (function (exports) { - Object.defineProperty(exports, "__esModule", { value: true }); - exports.ErrNoVersion = exports.ErrNoName = exports.ErrNoPath = void 0; - const url_1 = require$$0__default["default"]; - const version_1 = version$1; - const error_1 = error$1; - const ErrNoPath = (url, node) => (0, error_1.err)('NoPath', { - message: `feature url does not have a path: ${url}`, - url, - nodes: node ? [node] : undefined - }); - exports.ErrNoPath = ErrNoPath; - const ErrNoName = (url, node) => (0, error_1.err)('NoName', { - message: `feature url does not specify a name: ${url}`, - url, - nodes: node ? [node] : undefined - }); - exports.ErrNoName = ErrNoName; - const ErrNoVersion = (url, node) => (0, error_1.err)('NoVersion', { - message: `feature url does not specify a version: ${url}`, - url, - nodes: node ? [node] : undefined - }); - exports.ErrNoVersion = ErrNoVersion; - class FeatureUrl { - constructor(identity, name, version, element) { - this.identity = identity; - this.name = name; - this.version = version; - this.element = element; - } - static parse(input, node) { - const url = new url_1.URL(input); - if (!url.pathname || url.pathname === '/') - throw (0, exports.ErrNoPath)(url, node); - const path = url.pathname.split('/'); - const verStr = path.pop(); - if (!verStr) - throw (0, exports.ErrNoVersion)(url, node); - const version = version_1.Version.parse(verStr); - const name = path[path.length - 1]; - if (!name) - throw (0, exports.ErrNoName)(url, node); - const element = url.hash ? url.hash.slice(1) : undefined; - url.hash = ''; - url.search = ''; - url.password = ''; - url.username = ''; - url.pathname = path.join('/'); - return new FeatureUrl(url.toString(), name, version, element); - } - static decode(node) { - return this.parse(node.value, node); - } - satisfies(requested) { - return requested.identity === this.identity && - this.version.satisfies(requested.version); - } - equals(other) { - return this.identity === other.identity && - this.version.equals(other.version); - } - get url() { - return this.element ? - `${this.identity}/${this.version}#${this.element}` - : `${this.identity}/${this.version}`; - } - get isDirective() { - var _a; - return (_a = this.element) === null || _a === void 0 ? void 0 : _a.startsWith('@'); - } - get elementName() { - var _a; - return this.isDirective ? (_a = this.element) === null || _a === void 0 ? void 0 : _a.slice(1) : this.element; - } - get base() { - if (!this.element) - return this; - return new FeatureUrl(this.identity, this.name, this.version); - } - toString() { - return this.url; - } - } - exports.default = FeatureUrl; - - }(featureUrl)); - - var features = {}; - - var names = {}; - - Object.defineProperty(names, "__esModule", { value: true }); - names.getPrefix = void 0; - function getPrefix(name, sep = '__') { - const idx = name.indexOf(sep); - if (idx === -1) - return [null, name]; - return [name.substr(0, idx), name.substr(idx + sep.length)]; - } - names.getPrefix = getPrefix; - - var __importDefault$4 = (commonjsGlobal && commonjsGlobal.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; - }; - Object.defineProperty(features, "__esModule", { value: true }); - features.Features = features.Feature = void 0; - const error_1 = error$1; - const feature_url_1 = __importDefault$4(featureUrl); - const names_1 = names; - const ErrTooManyFeatureVersions = (features) => (0, error_1.err)('TooManyFeatureVersions', { - message: `too many versions of ${features[0].url.identity} at v${features[0].url.version.series}`, - features, - major: features[0].url.version.major, - nodes: features.map(f => f.directive), - }); - class Feature { - constructor(url, name, directive, purpose) { - this.url = url; - this.name = name; - this.directive = directive; - this.purpose = purpose; - } - canonicalName(docName) { - const [prefix, base] = (0, names_1.getPrefix)(docName); - if (prefix) { - if (prefix !== this.name) - return null; - return `${this.url.name}__${base}`; - } - if (base !== this.name) - return null; - return this.url.name; - } - } - features.Feature = Feature; - class Features { - constructor() { - this.features = new Map; - } - add(feature) { - const majors = this.findOrCreateIdentity(feature.url.identity); - const { series } = feature.url.version; - const existing = majors.get(series); - if (existing != null) { - existing.push(feature); - return; - } - majors.set(series, [feature]); - } - find(feature, exact = false) { - var _a, _b; - feature = typeof feature === 'string' ? feature_url_1.default.parse(feature) : feature; - const documentFeature = (_b = (_a = this.features.get(feature.identity)) === null || _a === void 0 ? void 0 : _a.get(feature.version.series)) === null || _b === void 0 ? void 0 : _b[0]; - if ((exact && (documentFeature === null || documentFeature === void 0 ? void 0 : documentFeature.url.equals(feature))) || - (!exact && (documentFeature === null || documentFeature === void 0 ? void 0 : documentFeature.url.satisfies(feature)))) - return documentFeature; - return null; - } - documentName(feature, exact = false) { - var _a; - feature = typeof feature === 'string' ? feature_url_1.default.parse(feature) : feature; - const found = this.find(feature, exact); - if (!found) - return null; - const element = feature.isDirective ? (_a = feature.element) === null || _a === void 0 ? void 0 : _a.slice(1) : feature.element; - if (!element || feature.isDirective && (element === found.url.name)) - return found.name; - return found.name + '__' + element; - } - *[Symbol.iterator]() { - for (const majors of this.features.values()) { - for (const features of majors.values()) { - yield* features; - } - } - } - validate() { - const errors = []; - for (const [_, majors] of this.features) { - for (const [_, features] of majors) { - if (features.length <= 1) - continue; - errors.push(ErrTooManyFeatureVersions(features)); - } - } - return errors; - } - findOrCreateIdentity(identity) { - const existing = this.features.get(identity); - if (existing) - return existing; - const created = new Map(); - this.features.set(identity, created); - return created; - } - } - features.Features = Features; - features.default = Features; - - var is$1 = {}; - - (function (exports) { - Object.defineProperty(exports, "__esModule", { value: true }); - exports.hasDirectives = exports.hasName = exports.isAst = exports.isEmpty = exports.isNonEmpty = exports.asString = exports.isAsString = exports.isTemplate = void 0; - const knownTemplates = new WeakSet; - const isTemplate = (args) => knownTemplates.has(args) || !!(Array.isArray(args[0]) && - args[0].every(x => typeof x === 'string') && - args[0].length === args.length && - knownTemplates.add(args[0])); - exports.isTemplate = isTemplate; - const isAsString = (args) => (0, exports.isTemplate)(args) || (args.length === 1 && typeof args[0] === 'string'); - exports.isAsString = isAsString; - function asString(input) { - return (!(0, exports.isAsString)(input) - ? undefined - : - (0, exports.isTemplate)(input) - ? String.raw(...input) - : input[0]); - } - exports.asString = asString; - function isNonEmpty(input) { - return !isEmpty(input); - } - exports.isNonEmpty = isNonEmpty; - function isEmpty(input) { - return !input.length; - } - exports.isEmpty = isEmpty; - const graphql_1 = require$$0$2; - function isAst(obj, ...kinds) { - return kinds.indexOf(obj === null || obj === void 0 ? void 0 : obj.kind) !== -1; - } - exports.isAst = isAst; - const hasName = (node) => isAst(node === null || node === void 0 ? void 0 : node.name, graphql_1.Kind.NAME); - exports.hasName = hasName; - const hasDirectives = (node) => Array.isArray(node === null || node === void 0 ? void 0 : node.directives); - exports.hasDirectives = hasDirectives; - - }(is$1)); - - (function (exports) { - var __createBinding = (commonjsGlobal && commonjsGlobal.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); - }) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; - })); - var __setModuleDefault = (commonjsGlobal && commonjsGlobal.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); - }) : function(o, v) { - o["default"] = v; - }); - var __importStar = (commonjsGlobal && commonjsGlobal.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; - }; - var __importDefault = (commonjsGlobal && commonjsGlobal.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; - }; - Object.defineProperty(exports, "__esModule", { value: true }); - exports.names = exports.features = exports.schema = exports.CoreSchema = exports.ErrOverlappingNames = exports.ErrBadFeature = exports.ErrNoCore = exports.ErrNoSchema = exports.ErrExtraSchema = void 0; - const graphql_1 = require$$0$2; - const values_1 = require$$1$1; - const core_1 = __importDefault(core); - const error_1 = error$1; - const feature_url_1 = __importDefault(featureUrl); - const features_1 = __importStar(features); - const is_1 = is$1; - const names_1 = names; - const ErrExtraSchema = (def) => (0, error_1.err)('ExtraSchema', { - message: 'extra schema definition ignored', - schemaDefinition: def, - nodes: [def] - }); - exports.ErrExtraSchema = ErrExtraSchema; - const ErrNoSchema = () => (0, error_1.err)('NoSchema', 'no schema definitions found'); - exports.ErrNoSchema = ErrNoSchema; - const ErrNoCore = (causes) => (0, error_1.err)('NoCore', { - message: 'no core feature found', - causes - }); - exports.ErrNoCore = ErrNoCore; - const ErrBadFeature = (node, ...causes) => (0, error_1.err)('BadFeature', { - message: 'bad core feature request', - directive: node, - nodes: [node], - causes - }); - exports.ErrBadFeature = ErrBadFeature; - const ErrOverlappingNames = (name, features) => (0, error_1.err)('OverlappingNames', { - message: `the name "${name}" is defined by multiple features`, - name, - features, - nodes: features.map(f => f.directive) - }); - exports.ErrOverlappingNames = ErrOverlappingNames; - class CoreSchema extends core_1.default { - static graphql(parts, ...replacements) { - return CoreSchema.fromSource(new graphql_1.Source(String.raw.call(null, parts, ...replacements), '(inline graphql)')); - } - static fromSource(source) { - return new CoreSchema((0, graphql_1.parse)(source)); - } - check(...fns) { - if (!fns.length) - fns = [features$1, names$1]; - return super.check(...fns); - } - get document() { return this.data; } - get schema() { return this.get(schema); } - get features() { return this.get(features$1); } - get names() { return this.get(names$1); } - *read(directive, node) { - var _a; - const url = directive instanceof feature_url_1.default ? directive - : typeof directive === 'string' ? feature_url_1.default.parse(directive) - : feature_url_1.default.parse((_a = directive.extensions) === null || _a === void 0 ? void 0 : _a.specifiedBy); - const name = this.features.documentName(url); - const feature = this.features.find(url); - const match = url.isDirective - ? (dir) => dir.name.value === name - : (dir) => this.featureFor(dir) === feature; - if (!(0, is_1.hasDirectives)(node)) - return; - if (!feature) - return; - for (const d of node.directives) { - if (match(d)) { - const data = directive instanceof graphql_1.GraphQLDirective - ? (0, values_1.getArgumentValues)(directive, d) - : undefined; - const item = { - node, - directive: d, - feature, - canonicalName: '@' + (feature === null || feature === void 0 ? void 0 : feature.canonicalName(d.name.value)), - }; - if (data != null) - item.data = data; - yield item; - } - } - } - featureFor(node) { - if (!(0, is_1.hasName)(node)) - return; - const [prefix] = (0, names_1.getPrefix)(node.name.value); - if (prefix || (0, is_1.isAst)(node, graphql_1.Kind.DIRECTIVE, graphql_1.Kind.DIRECTIVE_DEFINITION)) { - return this.names.get(prefix !== null && prefix !== void 0 ? prefix : node.name.value); - } - return; - } - } - exports.CoreSchema = CoreSchema; - exports.default = CoreSchema; - function schema() { - let schema = null; - for (const def of this.document.definitions) { - if (def.kind === 'SchemaDefinition') { - if (!schema) - schema = def; - else - this.report((0, exports.ErrExtraSchema)(def)); - } - } - if (!schema) { - throw (0, exports.ErrNoSchema)(); - } - return schema; - } - exports.schema = schema; - function isCoreArgs(maybeCoreArgs) { - return (typeof maybeCoreArgs === "object" && - maybeCoreArgs != null && - "feature" in maybeCoreArgs); - } - function features$1() { - var _a, _b, _c, _d; - const schema = this.schema; - this.pure(...(_a = schema.directives) !== null && _a !== void 0 ? _a : []); - const noCoreErrors = []; - let coreFeature = null; - const features = new features_1.default; - for (const d of schema.directives || []) { - if (!coreFeature) { - try { - const coreArgs = (0, values_1.getArgumentValues)($core, d); - if (isCoreArgs(coreArgs)) { - if (CORE_VERSIONS.has(coreArgs.feature) && - d.name.value === ((_b = coreArgs.as) !== null && _b !== void 0 ? _b : "core")) { - const url = feature_url_1.default.parse(coreArgs.feature); - coreFeature = new features_1.Feature(url, (_c = coreArgs.as) !== null && _c !== void 0 ? _c : url.name, d); - } - } - else { - throw new Error("Invalid arguments provided to core feature."); - } - } - catch (err) { - noCoreErrors.push(err); - } - } - if (coreFeature && d.name.value === coreFeature.name) { - try { - const coreArgs = (0, values_1.getArgumentValues)($core, d); - if (isCoreArgs(coreArgs)) { - const url = feature_url_1.default.parse(coreArgs.feature); - features.add(new features_1.Feature(url, (_d = coreArgs.as) !== null && _d !== void 0 ? _d : url.name, d, coreArgs.for)); - } - else { - throw new Error("Invalid arguments provided to core feature."); - } - } - catch (err) { - this.report((0, exports.ErrBadFeature)(d, err)); - } - } - } - if (!coreFeature) - throw (0, exports.ErrNoCore)(noCoreErrors); - this.report(...features.validate()); - return features; - } - exports.features = features$1; - function names$1() { - var _a; - const { features } = this; - this.pure(features); - const names = new Map; - for (const feature of features) { - if (!names.has(feature.name)) - names.set(feature.name, []); - (_a = names.get(feature.name)) === null || _a === void 0 ? void 0 : _a.push(feature); - } - const output = new Map; - for (const [name, features] of names) { - if (features.length > 1) { - this.report((0, exports.ErrOverlappingNames)(name, features)); - continue; - } - output.set(name, features[0]); - } - return output; - } - exports.names = names$1; - const CORE_VERSIONS = new Set([ - 'https://specs.apollo.dev/core/v0.1', - 'https://specs.apollo.dev/core/v0.2', - ]); - const Purpose = new graphql_1.GraphQLEnumType({ - name: 'core__Purpose', - values: { - SECURITY: {}, - EXECUTION: {}, - }, - }); - const $core = new graphql_1.GraphQLDirective({ - name: "core", - args: { - feature: { type: new graphql_1.GraphQLNonNull(graphql_1.GraphQLString) }, - as: { type: graphql_1.GraphQLString }, - for: { type: Purpose }, - }, - locations: [graphql_1.DirectiveLocation.SCHEMA], - isRepeatable: true, - }); - - }(schema)); - - var errors = {}; - - Object.defineProperty(errors, "__esModule", { value: true }); - errors.isAnyError = void 0; - const ERROR_CODES = new Set([ - "NoData", - "EvalStackEmpty", - "CheckFailed", - "NoPath", - "NoName", - "NoVersion", - "ExtraSchema", - "NoSchema", - "NoCore", - "BadFeature", - "OverlappingNames", - "VersionParse", - ]); - function isAnyError(o) { - return ERROR_CODES.has(o === null || o === void 0 ? void 0 : o.code); - } - errors.isAnyError = isAnyError; - - (function (exports) { - var __createBinding = (commonjsGlobal && commonjsGlobal.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); - }) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; - })); - var __exportStar = (commonjsGlobal && commonjsGlobal.__exportStar) || function(m, exports) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); - }; - Object.defineProperty(exports, "__esModule", { value: true }); - exports.err = exports.Core = exports.Features = exports.Feature = exports.Version = void 0; - __exportStar(schema, exports); - var version_1 = version$1; - Object.defineProperty(exports, "Version", { enumerable: true, get: function () { return version_1.Version; } }); - var features_1 = features; - Object.defineProperty(exports, "Feature", { enumerable: true, get: function () { return features_1.Feature; } }); - Object.defineProperty(exports, "Features", { enumerable: true, get: function () { return features_1.Features; } }); - var core_1 = core; - Object.defineProperty(exports, "Core", { enumerable: true, get: function () { return core_1.Core; } }); - var error_1 = error$1; - Object.defineProperty(exports, "err", { enumerable: true, get: function () { return error_1.err; } }); - __exportStar(errors, exports); - - }(dist)); - - var utils = {}; - - Object.defineProperty(utils, "__esModule", { value: true }); - utils.joinStrings = utils.validateStringContainsBoolean = utils.copyWitNewLength = utils.MapWithCachedArrays = utils.setValues = utils.mapEntries = utils.mapKeys = utils.mapValues = utils.firstOf = utils.arrayEquals = utils.OrderedMap = utils.MultiMap = utils.assertUnreachable = utils.assert = void 0; - function assert(condition, message) { - if (!condition) { - throw new Error(typeof message === 'string' ? message : message()); - } - } - utils.assert = assert; - function assertUnreachable(_) { - throw new Error("Didn't expect to get here"); - } - utils.assertUnreachable = assertUnreachable; - class MultiMap extends Map { - add(key, value) { - const values = this.get(key); - if (values) { - values.push(value); - } - else { - this.set(key, [value]); - } - return this; - } - } - utils.MultiMap = MultiMap; - class OrderedMap { - constructor(compareFn = OrderedMap.defaultCompareFn) { - this._keys = []; - this._values = new Map(); - this._compareFn = compareFn; - } - static defaultCompareFn(a, b) { - if (a < b) { - return -1; - } - else if (b < a) { - return 1; - } - return 0; - } - add(key, value) { - if (!this._values.has(key)) { - this.insertKeyInOrder(key); - } - this._values.set(key, value); - } - get(key) { - return this._values.get(key); - } - has(key) { - return this._values.has(key); - } - get size() { - return this._keys.length; - } - keys() { - return this._keys; - } - values() { - return this._keys.map(key => { - const v = this._values.get(key); - assert(v, 'value for known key not found in OrderedMap'); - return v; - }); - } - insertKeyInOrder(key) { - let lower = 0; - let upper = this._keys.length - 1; - while (lower <= upper) { - const middle = Math.floor((upper + lower) / 2); - if (this._compareFn(this._keys[middle], key) < 0) { - lower = middle + 1; - } - else { - upper = middle - 1; - } - } - this._keys = this._keys.slice(0, lower).concat(key).concat(this._keys.slice(lower)); - } - *[Symbol.iterator]() { - for (let i = 0; i < this._keys.length; i += 1) { - const v = this._values.get(this._keys[i]); - assert(v, 'value for known key not found in OrderedMap'); - yield v; - } - } - } - utils.OrderedMap = OrderedMap; - function arrayEquals(a, b, equalFct) { - if (a === b) { - return true; - } - if (a.length !== b.length) { - return false; - } - for (let i = 0; i < a.length; ++i) { - const eltEqual = equalFct ? equalFct(a[i], b[i]) : a[i] === b[i]; - if (!eltEqual) { - return false; - } - } - return true; - } - utils.arrayEquals = arrayEquals; - function firstOf(iterable) { - const res = iterable[Symbol.iterator]().next(); - return res.done ? undefined : res.value; - } - utils.firstOf = firstOf; - function mapValues(map) { - const array = new Array(map.size); - let i = 0; - for (const v of map.values()) { - array[i++] = v; - } - return array; - } - utils.mapValues = mapValues; - function mapKeys(map) { - const array = new Array(map.size); - let i = 0; - for (const k of map.keys()) { - array[i++] = k; - } - return array; - } - utils.mapKeys = mapKeys; - function mapEntries(map) { - const array = new Array(map.size); - let i = 0; - for (const entry of map.entries()) { - array[i++] = entry; - } - return array; - } - utils.mapEntries = mapEntries; - function setValues(set) { - const array = new Array(set.size); - let i = 0; - for (const v of set.values()) { - array[i++] = v; - } - return array; - } - utils.setValues = setValues; - class MapWithCachedArrays { - constructor() { - this.map = new Map(); - } - clearCaches() { - this.cachedKeys = undefined; - this.cachedValues = undefined; - } - get size() { - return this.map.size; - } - has(key) { - return this.map.has(key); - } - get(key) { - return this.map.get(key); - } - set(key, value) { - this.map.set(key, value); - this.clearCaches(); - return this; - } - delete(key) { - const deleted = this.map.delete(key); - if (deleted) { - this.clearCaches(); - } - return deleted; - } - clear() { - this.map.clear(); - this.clearCaches(); - } - keys() { - if (!this.cachedKeys) { - this.cachedKeys = mapKeys(this.map); - } - return this.cachedKeys; - } - values() { - if (!this.cachedValues) { - this.cachedValues = mapValues(this.map); - } - return this.cachedValues; - } - } - utils.MapWithCachedArrays = MapWithCachedArrays; - function copyWitNewLength(arr, newLength) { - assert(newLength >= arr.length, () => `${newLength} < ${arr.length}`); - const copy = new Array(newLength); - for (let i = 0; i < arr.length; i++) { - copy[i] = arr[i]; - } - return copy; - } - utils.copyWitNewLength = copyWitNewLength; - function validateStringContainsBoolean(str) { - if (!str) { - return false; - } - switch (str.toLocaleLowerCase()) { - case "true": - case "yes": - case "1": - return true; - case "false": - case "no": - case "0": - return false; - default: - return undefined; - } - } - utils.validateStringContainsBoolean = validateStringContainsBoolean; - function joinStrings(toJoin, sep = ', ', firstSep, lastSep = ' and ') { - if (toJoin.length == 0) { - return ''; - } - const first = toJoin[0]; - if (toJoin.length == 1) { - return first; - } - const last = toJoin[toJoin.length - 1]; - if (toJoin.length == 2) { - return first + (firstSep ? firstSep : lastSep) + last; - } - return first + (firstSep ? firstSep : sep) + toJoin.slice(1, toJoin.length - 1) + lastSep + last; - } - utils.joinStrings = joinStrings; - - (function (exports) { - Object.defineProperty(exports, "__esModule", { value: true }); - exports.removeFeatureElements = exports.CORE_VERSIONS = exports.FeatureUrl = exports.FeatureVersion = exports.FeatureDefinitions = exports.CoreSpecDefinition = exports.isCoreSpecDirectiveApplication = exports.FeatureDefinition = exports.corePurposes = exports.ErrCoreCheckFailed = exports.coreIdentity = void 0; - const graphql_1 = require$$0$2; - const url_1 = require$$0__default["default"]; - const definitions_1 = definitions; - const types_1 = types; - const core_schema_1 = dist; - const utils_1 = utils; - exports.coreIdentity = 'https://specs.apollo.dev/core'; - const ErrCoreCheckFailed = (causes) => (0, core_schema_1.err)('CheckFailed', { - message: 'one or more checks failed', - causes - }); - exports.ErrCoreCheckFailed = ErrCoreCheckFailed; - function buildError(message) { - return new Error(message); - } - exports.corePurposes = [ - 'SECURITY', - 'EXECUTION', - ]; - function purposesDescription(purpose) { - switch (purpose) { - case 'SECURITY': return "`SECURITY` features provide metadata necessary to securely resolve fields."; - case 'EXECUTION': return "`EXECUTION` features provide metadata necessary for operation execution."; - } - } - class FeatureDefinition { - constructor(url) { - this.url = typeof url === 'string' ? FeatureUrl.parse(url) : url; - } - get identity() { - return this.url.identity; - } - get version() { - return this.url.version; - } - isSpecType(type) { - const nameInSchema = this.nameInSchema(type.schema()); - return nameInSchema !== undefined && type.name.startsWith(`${nameInSchema}__`); - } - isSpecDirective(directive) { - const nameInSchema = this.nameInSchema(directive.schema()); - return nameInSchema != undefined && (directive.name === nameInSchema || directive.name.startsWith(`${nameInSchema}__`)); - } - nameInSchema(schema) { - const feature = this.featureInSchema(schema); - return feature === null || feature === void 0 ? void 0 : feature.nameInSchema; - } - elementNameInSchema(schema, elementName) { - const nameInSchema = this.nameInSchema(schema); - return nameInSchema - ? (elementName === nameInSchema ? nameInSchema : `${nameInSchema}__${elementName}`) - : undefined; - } - rootDirective(schema) { - const name = this.nameInSchema(schema); - return name ? schema.directive(name) : undefined; - } - directive(schema, elementName) { - const name = this.elementNameInSchema(schema, elementName); - return name ? schema.directive(name) : undefined; - } - type(schema, elementName) { - const name = this.elementNameInSchema(schema, elementName); - return name ? schema.type(name) : undefined; - } - addRootDirective(schema) { - return schema.addDirectiveDefinition(this.nameInSchema(schema)); - } - addDirective(schema, name) { - return schema.addDirectiveDefinition(this.elementNameInSchema(schema, name)); - } - addScalarType(schema, name) { - return schema.addType(new definitions_1.ScalarType(this.elementNameInSchema(schema, name))); - } - addEnumType(schema, name) { - return schema.addType(new definitions_1.EnumType(this.elementNameInSchema(schema, name))); - } - featureInSchema(schema) { - const features = schema.coreFeatures; - if (!features) { - throw buildError(`Schema is not a core schema (add @core first)`); - } - return features.getByIdentity(this.identity); - } - toString() { - return `${this.identity}/${this.version}`; - } - } - exports.FeatureDefinition = FeatureDefinition; - function isCoreSpecDirectiveApplication(directive) { - var _a; - const definition = directive.definition; - if (!definition) { - return false; - } - const featureArg = definition.argument('feature'); - if (!featureArg || !(0, types_1.sameType)(featureArg.type, new definitions_1.NonNullType(directive.schema().stringType()))) { - return false; - } - const asArg = definition.argument('as'); - if (asArg && !(0, types_1.sameType)(asArg.type, directive.schema().stringType())) { - return false; - } - if (!definition.repeatable || definition.locations.length !== 1 || definition.locations[0] !== graphql_1.DirectiveLocation.SCHEMA) { - return false; - } - const args = directive.arguments(); - try { - const url = FeatureUrl.parse(args.feature); - return url.identity === exports.coreIdentity && directive.name === ((_a = args.as) !== null && _a !== void 0 ? _a : 'core'); - } - catch (err) { - return false; - } - } - exports.isCoreSpecDirectiveApplication = isCoreSpecDirectiveApplication; - class CoreSpecDefinition extends FeatureDefinition { - constructor(version) { - super(new FeatureUrl(exports.coreIdentity, 'core', version)); - } - addElementsToSchema(_) { - } - addToSchema(schema, as) { - const existing = schema.coreFeatures; - if (existing) { - if (existing.coreItself.url.identity === this.identity) { - return; - } - else { - throw buildError(`Cannot add feature ${this} to the schema, it already uses ${existing.coreItself.url}`); - } - } - const nameInSchema = as !== null && as !== void 0 ? as : this.url.name; - const core = schema.addDirectiveDefinition(nameInSchema).addLocations(graphql_1.DirectiveLocation.SCHEMA); - core.repeatable = true; - core.addArgument('feature', new definitions_1.NonNullType(schema.stringType())); - core.addArgument('as', schema.stringType()); - if (this.supportPurposes()) { - const purposeEnum = schema.addType(new definitions_1.EnumType(`${nameInSchema}__Purpose`)); - for (const purpose of exports.corePurposes) { - purposeEnum.addValue(purpose).description = purposesDescription(purpose); - } - core.addArgument('for', purposeEnum); - } - const args = { feature: this.toString() }; - if (as) { - args.as = as; - } - schema.schemaDefinition.applyDirective(nameInSchema, args); - } - supportPurposes() { - return this.version.strictlyGreaterThan(new FeatureVersion(0, 1)); - } - extractFeature(schema) { - const features = schema.coreFeatures; - if (!features) { - throw buildError(`Schema is not a core schema (add @core first)`); - } - if (!features.coreItself.url.version.equals(this.version)) { - throw buildError(`Cannot use this version of @core (${this.version}), the schema uses version ${features.coreItself.url.version}`); - } - return features.coreItself; - } - coreDirective(schema) { - const feature = this.extractFeature(schema); - const directive = schema.directive(feature.nameInSchema); - return directive; - } - coreVersion(schema) { - const feature = this.extractFeature(schema); - return feature.url.version; - } - applyFeatureToSchema(schema, feature, as, purpose) { - const coreDirective = this.coreDirective(schema); - const args = { - feature: feature.toString(), - as, - }; - if (this.supportPurposes() && purpose) { - args.for = purpose; - } - schema.schemaDefinition.applyDirective(coreDirective, args); - feature.addElementsToSchema(schema); - } - } - exports.CoreSpecDefinition = CoreSpecDefinition; - class FeatureDefinitions { - constructor(identity) { - this.identity = identity; - this._definitions = []; - } - add(definition) { - if (definition.identity !== this.identity) { - throw buildError(`Cannot add definition for ${definition} to the versions of definitions for ${this.identity}`); - } - if (this._definitions.find(def => definition.version.equals(def.version))) { - return this; - } - this._definitions.push(definition); - this._definitions.sort((def1, def2) => -def1.version.compareTo(def2.version)); - return this; - } - find(requested) { - return this._definitions.find(def => def.version.satisfies(requested)); - } - versions() { - return this._definitions.map(def => def.version); - } - latest() { - (0, utils_1.assert)(this._definitions.length > 0, 'Trying to get latest when no definitions exist'); - return this._definitions[0]; - } - } - exports.FeatureDefinitions = FeatureDefinitions; - class FeatureVersion { - constructor(major, minor) { - this.major = major; - this.minor = minor; - } - static parse(input) { - const match = input.match(this.VERSION_RE); - if (!match) { - throw new graphql_1.GraphQLError(`Expected a version string (of the form v1.2), got ${input}`); - } - return new this(+match[1], +match[2]); - } - satisfies(required) { - const { major, minor } = this; - const { major: rMajor, minor: rMinor } = required; - return rMajor == major && (major == 0 - ? rMinor == minor - : rMinor <= minor); - } - get series() { - const { major } = this; - return major > 0 ? `${major}.x` : String(this); - } - compareTo(other) { - if (this.major > other.major) { - return 1; - } - if (this.major < other.major) { - return -1; - } - if (this.minor > other.minor) { - return 1; - } - if (this.minor < other.minor) { - return -1; - } - return 0; - } - strictlyGreaterThan(version) { - return this.compareTo(version) > 0; - } - toString() { - return `v${this.major}.${this.minor}`; - } - equals(other) { - return this.major === other.major && this.minor === other.minor; - } - } - exports.FeatureVersion = FeatureVersion; - FeatureVersion.VERSION_RE = /^v(\d+)\.(\d+)$/; - class FeatureUrl { - constructor(identity, name, version, element) { - this.identity = identity; - this.name = name; - this.version = version; - this.element = element; - } - static parse(input, node) { - const url = new url_1.URL(input); - if (!url.pathname || url.pathname === '/') { - throw new graphql_1.GraphQLError(`Missing path in feature url '${url}'`, node); - } - const path = url.pathname.split('/'); - const verStr = path.pop(); - if (!verStr) { - throw new graphql_1.GraphQLError(`Missing version component in feature url '${url}'`, node); - } - const version = FeatureVersion.parse(verStr); - const name = path[path.length - 1]; - if (!name) { - throw new graphql_1.GraphQLError(`Missing feature name component in feature url '${url}'`, node); - } - const element = url.hash ? url.hash.slice(1) : undefined; - url.hash = ''; - url.search = ''; - url.password = ''; - url.username = ''; - url.pathname = path.join('/'); - return new FeatureUrl(url.toString(), name, version, element); - } - static decode(node) { - return this.parse(node.value, node); - } - satisfies(requested) { - return requested.identity === this.identity && - this.version.satisfies(requested.version); - } - equals(other) { - return this.identity === other.identity && - this.version.equals(other.version); - } - get url() { - return this.element ? - `${this.identity}/${this.version}#${this.element}` - : `${this.identity}/${this.version}`; - } - get isDirective() { - var _a; - return (_a = this.element) === null || _a === void 0 ? void 0 : _a.startsWith('@'); - } - get elementName() { - var _a; - return this.isDirective ? (_a = this.element) === null || _a === void 0 ? void 0 : _a.slice(1) : this.element; - } - get base() { - if (!this.element) - return this; - return new FeatureUrl(this.identity, this.name, this.version); - } - toString() { - return this.url; - } - } - exports.FeatureUrl = FeatureUrl; - exports.CORE_VERSIONS = new FeatureDefinitions(exports.coreIdentity) - .add(new CoreSpecDefinition(new FeatureVersion(0, 1))) - .add(new CoreSpecDefinition(new FeatureVersion(0, 2))); - function removeFeatureElements(schema, feature) { - const featureDirectives = schema.directives().filter(d => feature.isFeatureDefinition(d)); - featureDirectives.forEach(d => d.remove().forEach(application => application.remove())); - const featureTypes = schema.types().filter(t => feature.isFeatureDefinition(t)); - featureTypes.forEach(type => { - const references = type.remove(); - if (references.length > 0) { - throw new graphql_1.GraphQLError(`Cannot remove elements of feature ${feature} as feature type ${type} is referenced by elements: ${references.join(', ')}`, references.map(r => r.sourceAST).filter(n => n !== undefined)); - } - }); - } - exports.removeFeatureElements = removeFeatureElements; - - }(coreSpec)); - - var values = {}; - - var suggestions = {}; - - var jsLevenshtein = (function() - { - function _min(d0, d1, d2, bx, ay) - { - return d0 < d1 || d2 < d1 - ? d0 > d2 - ? d2 + 1 - : d0 + 1 - : bx === ay - ? d1 - : d1 + 1; - } - - return function(a, b) - { - if (a === b) { - return 0; - } - - if (a.length > b.length) { - var tmp = a; - a = b; - b = tmp; - } - - var la = a.length; - var lb = b.length; - - while (la > 0 && (a.charCodeAt(la - 1) === b.charCodeAt(lb - 1))) { - la--; - lb--; - } - - var offset = 0; - - while (offset < la && (a.charCodeAt(offset) === b.charCodeAt(offset))) { - offset++; - } - - la -= offset; - lb -= offset; - - if (la === 0 || lb < 3) { - return lb; - } - - var x = 0; - var y; - var d0; - var d1; - var d2; - var d3; - var dd; - var dy; - var ay; - var bx0; - var bx1; - var bx2; - var bx3; - - var vector = []; - - for (y = 0; y < la; y++) { - vector.push(y + 1); - vector.push(a.charCodeAt(offset + y)); - } - - var len = vector.length - 1; - - for (; x < lb - 3;) { - bx0 = b.charCodeAt(offset + (d0 = x)); - bx1 = b.charCodeAt(offset + (d1 = x + 1)); - bx2 = b.charCodeAt(offset + (d2 = x + 2)); - bx3 = b.charCodeAt(offset + (d3 = x + 3)); - dd = (x += 4); - for (y = 0; y < len; y += 2) { - dy = vector[y]; - ay = vector[y + 1]; - d0 = _min(dy, d0, d1, bx0, ay); - d1 = _min(d0, d1, d2, bx1, ay); - d2 = _min(d1, d2, d3, bx2, ay); - dd = _min(d2, d3, dd, bx3, ay); - vector[y] = dd; - d3 = d2; - d2 = d1; - d1 = d0; - d0 = dy; - } - } - - for (; x < lb;) { - bx0 = b.charCodeAt(offset + (d0 = x)); - dd = ++x; - for (y = 0; y < len; y += 2) { - dy = vector[y]; - vector[y] = dd = _min(dy, d0, dd, bx0, vector[y + 1]); - d0 = dy; - } - } - - return dd; - }; - })(); - - var __importDefault$3 = (commonjsGlobal && commonjsGlobal.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; - }; - Object.defineProperty(suggestions, "__esModule", { value: true }); - suggestions.didYouMean = suggestions.suggestionList = void 0; - const js_levenshtein_1 = __importDefault$3(jsLevenshtein); - const utils_1$4 = utils; - function suggestionList(input, options) { - const optionsByDistance = new Map(); - const threshold = Math.floor(input.length * 0.4) + 1; - const inputLowerCase = input.toLowerCase(); - for (const option of options) { - const distance = inputLowerCase === option.toLowerCase() - ? 1 - : (0, js_levenshtein_1.default)(input, option); - if (distance <= threshold) { - optionsByDistance.set(option, distance); - } - } - return (0, utils_1$4.mapKeys)(optionsByDistance).sort((a, b) => { - const distanceDiff = optionsByDistance.get(a) - optionsByDistance.get(b); - return distanceDiff !== 0 ? distanceDiff : a.localeCompare(b); - }); - } - suggestions.suggestionList = suggestionList; - const MAX_SUGGESTIONS = 5; - function didYouMean(suggestions) { - const message = ' Did you mean '; - const quotedSuggestions = suggestions.map((x) => `"${x}"`); - switch (suggestions.length) { - case 0: - return ''; - case 1: - return message + quotedSuggestions[0] + '?'; - case 2: - return message + quotedSuggestions[0] + ' or ' + quotedSuggestions[1] + '?'; - } - const selected = quotedSuggestions.slice(0, MAX_SUGGESTIONS); - const lastItem = selected.pop(); - return message + selected.join(', ') + ', or ' + lastItem + '?'; - } - suggestions.didYouMean = didYouMean; - - // shim for using process in browser - // based off https://github.com/defunctzombie/node-process/blob/master/browser.js - - function defaultSetTimout() { - throw new Error('setTimeout has not been defined'); - } - function defaultClearTimeout () { - throw new Error('clearTimeout has not been defined'); - } - var cachedSetTimeout = defaultSetTimout; - var cachedClearTimeout = defaultClearTimeout; - if (typeof global.setTimeout === 'function') { - cachedSetTimeout = setTimeout; - } - if (typeof global.clearTimeout === 'function') { - cachedClearTimeout = clearTimeout; - } - - function runTimeout(fun) { - if (cachedSetTimeout === setTimeout) { - //normal enviroments in sane situations - return setTimeout(fun, 0); - } - // if setTimeout wasn't available but was latter defined - if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) { - cachedSetTimeout = setTimeout; - return setTimeout(fun, 0); - } - try { - // when when somebody has screwed with setTimeout but no I.E. maddness - return cachedSetTimeout(fun, 0); - } catch(e){ - try { - // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally - return cachedSetTimeout.call(null, fun, 0); - } catch(e){ - // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error - return cachedSetTimeout.call(this, fun, 0); - } - } - - - } - function runClearTimeout(marker) { - if (cachedClearTimeout === clearTimeout) { - //normal enviroments in sane situations - return clearTimeout(marker); - } - // if clearTimeout wasn't available but was latter defined - if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) { - cachedClearTimeout = clearTimeout; - return clearTimeout(marker); - } - try { - // when when somebody has screwed with setTimeout but no I.E. maddness - return cachedClearTimeout(marker); - } catch (e){ - try { - // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally - return cachedClearTimeout.call(null, marker); - } catch (e){ - // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error. - // Some versions of I.E. have different rules for clearTimeout vs setTimeout - return cachedClearTimeout.call(this, marker); - } - } - - - - } - var queue = []; - var draining = false; - var currentQueue; - var queueIndex = -1; - - function cleanUpNextTick() { - if (!draining || !currentQueue) { - return; - } - draining = false; - if (currentQueue.length) { - queue = currentQueue.concat(queue); - } else { - queueIndex = -1; - } - if (queue.length) { - drainQueue(); - } - } - - function drainQueue() { - if (draining) { - return; - } - var timeout = runTimeout(cleanUpNextTick); - draining = true; - - var len = queue.length; - while(len) { - currentQueue = queue; - queue = []; - while (++queueIndex < len) { - if (currentQueue) { - currentQueue[queueIndex].run(); - } - } - queueIndex = -1; - len = queue.length; - } - currentQueue = null; - draining = false; - runClearTimeout(timeout); - } - function nextTick(fun) { - var args = new Array(arguments.length - 1); - if (arguments.length > 1) { - for (var i = 1; i < arguments.length; i++) { - args[i - 1] = arguments[i]; - } - } - queue.push(new Item(fun, args)); - if (queue.length === 1 && !draining) { - runTimeout(drainQueue); - } - } - // v8 likes predictible objects - function Item(fun, array) { - this.fun = fun; - this.array = array; - } - Item.prototype.run = function () { - this.fun.apply(null, this.array); - }; - var title = 'browser'; - var platform$1 = 'browser'; - var browser = true; - var env$1 = {}; - var argv = []; - var version = ''; // empty string to avoid regexp issues - var versions = {}; - var release$1 = {}; - var config = {}; - - function noop$1() {} - - var on = noop$1; - var addListener = noop$1; - var once = noop$1; - var off = noop$1; - var removeListener = noop$1; - var removeAllListeners = noop$1; - var emit = noop$1; - - function binding(name) { - throw new Error('process.binding is not supported'); - } - - function cwd () { return '/' } - function chdir (dir) { - throw new Error('process.chdir is not supported'); - }function umask() { return 0; } - - // from https://github.com/kumavis/browser-process-hrtime/blob/master/index.js - var performance = global.performance || {}; - var performanceNow = - performance.now || - performance.mozNow || - performance.msNow || - performance.oNow || - performance.webkitNow || - function(){ return (new Date()).getTime() }; - - // generate timestamp or delta - // see http://nodejs.org/api/process.html#process_process_hrtime - function hrtime(previousTimestamp){ - var clocktime = performanceNow.call(performance)*1e-3; - var seconds = Math.floor(clocktime); - var nanoseconds = Math.floor((clocktime%1)*1e9); - if (previousTimestamp) { - seconds = seconds - previousTimestamp[0]; - nanoseconds = nanoseconds - previousTimestamp[1]; - if (nanoseconds<0) { - seconds--; - nanoseconds += 1e9; - } - } - return [seconds,nanoseconds] - } - - var startTime = new Date(); - function uptime$1() { - var currentTime = new Date(); - var dif = currentTime - startTime; - return dif / 1000; - } - - var browser$1 = { - nextTick: nextTick, - title: title, - browser: browser, - env: env$1, - argv: argv, - version: version, - versions: versions, - on: on, - addListener: addListener, - once: once, - off: off, - removeListener: removeListener, - removeAllListeners: removeAllListeners, - emit: emit, - binding: binding, - cwd: cwd, - chdir: chdir, - umask: umask, - hrtime: hrtime, - platform: platform$1, - release: release$1, - config: config, - uptime: uptime$1 - }; - - var process$1 = browser$1; - - var inherits; - if (typeof Object.create === 'function'){ - inherits = function inherits(ctor, superCtor) { - // implementation from standard node.js 'util' module - ctor.super_ = superCtor; - ctor.prototype = Object.create(superCtor.prototype, { - constructor: { - value: ctor, - enumerable: false, - writable: true, - configurable: true - } - }); - }; - } else { - inherits = function inherits(ctor, superCtor) { - ctor.super_ = superCtor; - var TempCtor = function () {}; - TempCtor.prototype = superCtor.prototype; - ctor.prototype = new TempCtor(); - ctor.prototype.constructor = ctor; - }; - } - var inherits$1 = inherits; - - // Copyright Joyent, Inc. and other Node contributors. - var formatRegExp = /%[sdj%]/g; - function format(f) { - if (!isString$3(f)) { - var objects = []; - for (var i = 0; i < arguments.length; i++) { - objects.push(inspect$1(arguments[i])); - } - return objects.join(' '); - } - - var i = 1; - var args = arguments; - var len = args.length; - var str = String(f).replace(formatRegExp, function(x) { - if (x === '%%') return '%'; - if (i >= len) return x; - switch (x) { - case '%s': return String(args[i++]); - case '%d': return Number(args[i++]); - case '%j': - try { - return JSON.stringify(args[i++]); - } catch (_) { - return '[Circular]'; - } - default: - return x; - } - }); - for (var x = args[i]; i < len; x = args[++i]) { - if (isNull(x) || !isObject(x)) { - str += ' ' + x; - } else { - str += ' ' + inspect$1(x); - } - } - return str; - } - - // Mark that a method should not be used. - // Returns a modified function which warns once by default. - // If --no-deprecation is set, then it is a no-op. - function deprecate(fn, msg) { - // Allow for deprecating things in the process of starting up. - if (isUndefined(global.process)) { - return function() { - return deprecate(fn, msg).apply(this, arguments); - }; - } - - if (process$1.noDeprecation === true) { - return fn; - } - - var warned = false; - function deprecated() { - if (!warned) { - if (process$1.throwDeprecation) { - throw new Error(msg); - } else if (process$1.traceDeprecation) { - console.trace(msg); - } else { - console.error(msg); - } - warned = true; - } - return fn.apply(this, arguments); - } - - return deprecated; - } - - var debugs = {}; - var debugEnviron; - function debuglog(set) { - if (isUndefined(debugEnviron)) - debugEnviron = process$1.env.NODE_DEBUG || ''; - set = set.toUpperCase(); - if (!debugs[set]) { - if (new RegExp('\\b' + set + '\\b', 'i').test(debugEnviron)) { - var pid = 0; - debugs[set] = function() { - var msg = format.apply(null, arguments); - console.error('%s %d: %s', set, pid, msg); - }; - } else { - debugs[set] = function() {}; - } - } - return debugs[set]; - } - - /** - * Echos the value of a value. Trys to print the value out - * in the best way possible given the different types. - * - * @param {Object} obj The object to print out. - * @param {Object} opts Optional options object that alters the output. - */ - /* legacy: obj, showHidden, depth, colors*/ - function inspect$1(obj, opts) { - // default options - var ctx = { - seen: [], - stylize: stylizeNoColor - }; - // legacy... - if (arguments.length >= 3) ctx.depth = arguments[2]; - if (arguments.length >= 4) ctx.colors = arguments[3]; - if (isBoolean$2(opts)) { - // legacy... - ctx.showHidden = opts; - } else if (opts) { - // got an "options" object - _extend(ctx, opts); - } - // set default options - if (isUndefined(ctx.showHidden)) ctx.showHidden = false; - if (isUndefined(ctx.depth)) ctx.depth = 2; - if (isUndefined(ctx.colors)) ctx.colors = false; - if (isUndefined(ctx.customInspect)) ctx.customInspect = true; - if (ctx.colors) ctx.stylize = stylizeWithColor; - return formatValue(ctx, obj, ctx.depth); - } - - // http://en.wikipedia.org/wiki/ANSI_escape_code#graphics - inspect$1.colors = { - 'bold' : [1, 22], - 'italic' : [3, 23], - 'underline' : [4, 24], - 'inverse' : [7, 27], - 'white' : [37, 39], - 'grey' : [90, 39], - 'black' : [30, 39], - 'blue' : [34, 39], - 'cyan' : [36, 39], - 'green' : [32, 39], - 'magenta' : [35, 39], - 'red' : [31, 39], - 'yellow' : [33, 39] - }; - - // Don't use 'blue' not visible on cmd.exe - inspect$1.styles = { - 'special': 'cyan', - 'number': 'yellow', - 'boolean': 'yellow', - 'undefined': 'grey', - 'null': 'bold', - 'string': 'green', - 'date': 'magenta', - // "name": intentionally not styling - 'regexp': 'red' - }; - - - function stylizeWithColor(str, styleType) { - var style = inspect$1.styles[styleType]; - - if (style) { - return '\u001b[' + inspect$1.colors[style][0] + 'm' + str + - '\u001b[' + inspect$1.colors[style][1] + 'm'; - } else { - return str; - } - } - - - function stylizeNoColor(str, styleType) { - return str; - } - - - function arrayToHash(array) { - var hash = {}; - - array.forEach(function(val, idx) { - hash[val] = true; - }); - - return hash; - } - - - function formatValue(ctx, value, recurseTimes) { - // Provide a hook for user-specified inspect functions. - // Check that value is an object with an inspect function on it - if (ctx.customInspect && - value && - isFunction$1(value.inspect) && - // Filter out the util module, it's inspect function is special - value.inspect !== inspect$1 && - // Also filter out any prototype objects using the circular check. - !(value.constructor && value.constructor.prototype === value)) { - var ret = value.inspect(recurseTimes, ctx); - if (!isString$3(ret)) { - ret = formatValue(ctx, ret, recurseTimes); - } - return ret; - } - - // Primitive types cannot have properties - var primitive = formatPrimitive(ctx, value); - if (primitive) { - return primitive; - } - - // Look up the keys of the object. - var keys = Object.keys(value); - var visibleKeys = arrayToHash(keys); - - if (ctx.showHidden) { - keys = Object.getOwnPropertyNames(value); - } - - // IE doesn't make error fields non-enumerable - // http://msdn.microsoft.com/en-us/library/ie/dww52sbt(v=vs.94).aspx - if (isError$1(value) - && (keys.indexOf('message') >= 0 || keys.indexOf('description') >= 0)) { - return formatError(value); - } - - // Some type of object without properties can be shortcutted. - if (keys.length === 0) { - if (isFunction$1(value)) { - var name = value.name ? ': ' + value.name : ''; - return ctx.stylize('[Function' + name + ']', 'special'); - } - if (isRegExp$1(value)) { - return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp'); - } - if (isDate$2(value)) { - return ctx.stylize(Date.prototype.toString.call(value), 'date'); - } - if (isError$1(value)) { - return formatError(value); - } - } - - var base = '', array = false, braces = ['{', '}']; - - // Make Array say that they are Array - if (isArray$3(value)) { - array = true; - braces = ['[', ']']; - } - - // Make functions say that they are functions - if (isFunction$1(value)) { - var n = value.name ? ': ' + value.name : ''; - base = ' [Function' + n + ']'; - } - - // Make RegExps say that they are RegExps - if (isRegExp$1(value)) { - base = ' ' + RegExp.prototype.toString.call(value); - } - - // Make dates with properties first say the date - if (isDate$2(value)) { - base = ' ' + Date.prototype.toUTCString.call(value); - } - - // Make error with message first say the error - if (isError$1(value)) { - base = ' ' + formatError(value); - } - - if (keys.length === 0 && (!array || value.length == 0)) { - return braces[0] + base + braces[1]; - } - - if (recurseTimes < 0) { - if (isRegExp$1(value)) { - return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp'); - } else { - return ctx.stylize('[Object]', 'special'); - } - } - - ctx.seen.push(value); - - var output; - if (array) { - output = formatArray(ctx, value, recurseTimes, visibleKeys, keys); - } else { - output = keys.map(function(key) { - return formatProperty(ctx, value, recurseTimes, visibleKeys, key, array); - }); - } - - ctx.seen.pop(); - - return reduceToSingleString(output, base, braces); - } - - - function formatPrimitive(ctx, value) { - if (isUndefined(value)) - return ctx.stylize('undefined', 'undefined'); - if (isString$3(value)) { - var simple = '\'' + JSON.stringify(value).replace(/^"|"$/g, '') - .replace(/'/g, "\\'") - .replace(/\\"/g, '"') + '\''; - return ctx.stylize(simple, 'string'); - } - if (isNumber$2(value)) - return ctx.stylize('' + value, 'number'); - if (isBoolean$2(value)) - return ctx.stylize('' + value, 'boolean'); - // For some reason typeof null is "object", so special case here. - if (isNull(value)) - return ctx.stylize('null', 'null'); - } - - - function formatError(value) { - return '[' + Error.prototype.toString.call(value) + ']'; - } - - - function formatArray(ctx, value, recurseTimes, visibleKeys, keys) { - var output = []; - for (var i = 0, l = value.length; i < l; ++i) { - if (hasOwnProperty(value, String(i))) { - output.push(formatProperty(ctx, value, recurseTimes, visibleKeys, - String(i), true)); - } else { - output.push(''); - } - } - keys.forEach(function(key) { - if (!key.match(/^\d+$/)) { - output.push(formatProperty(ctx, value, recurseTimes, visibleKeys, - key, true)); - } - }); - return output; - } - - - function formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) { - var name, str, desc; - desc = Object.getOwnPropertyDescriptor(value, key) || { value: value[key] }; - if (desc.get) { - if (desc.set) { - str = ctx.stylize('[Getter/Setter]', 'special'); - } else { - str = ctx.stylize('[Getter]', 'special'); - } - } else { - if (desc.set) { - str = ctx.stylize('[Setter]', 'special'); - } - } - if (!hasOwnProperty(visibleKeys, key)) { - name = '[' + key + ']'; - } - if (!str) { - if (ctx.seen.indexOf(desc.value) < 0) { - if (isNull(recurseTimes)) { - str = formatValue(ctx, desc.value, null); - } else { - str = formatValue(ctx, desc.value, recurseTimes - 1); - } - if (str.indexOf('\n') > -1) { - if (array) { - str = str.split('\n').map(function(line) { - return ' ' + line; - }).join('\n').substr(2); - } else { - str = '\n' + str.split('\n').map(function(line) { - return ' ' + line; - }).join('\n'); - } - } - } else { - str = ctx.stylize('[Circular]', 'special'); - } - } - if (isUndefined(name)) { - if (array && key.match(/^\d+$/)) { - return str; - } - name = JSON.stringify('' + key); - if (name.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)) { - name = name.substr(1, name.length - 2); - name = ctx.stylize(name, 'name'); - } else { - name = name.replace(/'/g, "\\'") - .replace(/\\"/g, '"') - .replace(/(^"|"$)/g, "'"); - name = ctx.stylize(name, 'string'); - } - } - - return name + ': ' + str; - } - - - function reduceToSingleString(output, base, braces) { - var length = output.reduce(function(prev, cur) { - if (cur.indexOf('\n') >= 0) ; - return prev + cur.replace(/\u001b\[\d\d?m/g, '').length + 1; - }, 0); - - if (length > 60) { - return braces[0] + - (base === '' ? '' : base + '\n ') + - ' ' + - output.join(',\n ') + - ' ' + - braces[1]; - } - - return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1]; - } - - - // NOTE: These type checking functions intentionally don't use `instanceof` - // because it is fragile and can be easily faked with `Object.create()`. - function isArray$3(ar) { - return Array.isArray(ar); - } - - function isBoolean$2(arg) { - return typeof arg === 'boolean'; - } - - function isNull(arg) { - return arg === null; - } - - function isNullOrUndefined(arg) { - return arg == null; - } - - function isNumber$2(arg) { - return typeof arg === 'number'; - } - - function isString$3(arg) { - return typeof arg === 'string'; - } - - function isSymbol$3(arg) { - return typeof arg === 'symbol'; - } - - function isUndefined(arg) { - return arg === void 0; - } - - function isRegExp$1(re) { - return isObject(re) && objectToString$1(re) === '[object RegExp]'; - } - - function isObject(arg) { - return typeof arg === 'object' && arg !== null; - } - - function isDate$2(d) { - return isObject(d) && objectToString$1(d) === '[object Date]'; - } - - function isError$1(e) { - return isObject(e) && - (objectToString$1(e) === '[object Error]' || e instanceof Error); - } - - function isFunction$1(arg) { - return typeof arg === 'function'; - } - - function isPrimitive(arg) { - return arg === null || - typeof arg === 'boolean' || - typeof arg === 'number' || - typeof arg === 'string' || - typeof arg === 'symbol' || // ES6 symbol - typeof arg === 'undefined'; - } - - function isBuffer$1(maybeBuf) { - return Buffer.isBuffer(maybeBuf); - } - - function objectToString$1(o) { - return Object.prototype.toString.call(o); - } - - - function pad(n) { - return n < 10 ? '0' + n.toString(10) : n.toString(10); - } - - - var months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', - 'Oct', 'Nov', 'Dec']; - - // 26 Feb 16:19:34 - function timestamp() { - var d = new Date(); - var time = [pad(d.getHours()), - pad(d.getMinutes()), - pad(d.getSeconds())].join(':'); - return [d.getDate(), months[d.getMonth()], time].join(' '); - } - - - // log is just a thin wrapper to console.log that prepends a timestamp - function log() { - console.log('%s - %s', timestamp(), format.apply(null, arguments)); - } - - function _extend(origin, add) { - // Don't do anything if add isn't an object - if (!add || !isObject(add)) return origin; - - var keys = Object.keys(add); - var i = keys.length; - while (i--) { - origin[keys[i]] = add[keys[i]]; - } - return origin; - } - function hasOwnProperty(obj, prop) { - return Object.prototype.hasOwnProperty.call(obj, prop); - } - - var util$1 = { - inherits: inherits$1, - _extend: _extend, - log: log, - isBuffer: isBuffer$1, - isPrimitive: isPrimitive, - isFunction: isFunction$1, - isError: isError$1, - isDate: isDate$2, - isObject: isObject, - isRegExp: isRegExp$1, - isUndefined: isUndefined, - isSymbol: isSymbol$3, - isString: isString$3, - isNumber: isNumber$2, - isNullOrUndefined: isNullOrUndefined, - isNull: isNull, - isBoolean: isBoolean$2, - isArray: isArray$3, - inspect: inspect$1, - deprecate: deprecate, - format: format, - debuglog: debuglog - }; - - var util$2 = /*#__PURE__*/Object.freeze({ - __proto__: null, - format: format, - deprecate: deprecate, - debuglog: debuglog, - inspect: inspect$1, - isArray: isArray$3, - isBoolean: isBoolean$2, - isNull: isNull, - isNullOrUndefined: isNullOrUndefined, - isNumber: isNumber$2, - isString: isString$3, - isSymbol: isSymbol$3, - isUndefined: isUndefined, - isRegExp: isRegExp$1, - isObject: isObject, - isDate: isDate$2, - isError: isError$1, - isFunction: isFunction$1, - isPrimitive: isPrimitive, - isBuffer: isBuffer$1, - log: log, - inherits: inherits$1, - _extend: _extend, - 'default': util$1 - }); - - var require$$0$1 = /*@__PURE__*/getAugmentedNamespace(util$2); - - Object.defineProperty(values, "__esModule", { value: true }); - values.variablesInValue = values.argumentsFromAST = values.valueFromAST = values.isValidValue = values.valueToAST = values.valueNodeToConstValueNode = values.withDefaultValues = values.argumentsEquals = values.valueEquals = values.valueToString = void 0; - const definitions_1$6 = definitions; - const graphql_1$8 = require$$0$2; - const suggestions_1$1 = suggestions; - const util_1$1 = require$$0$1; - const types_1$2 = types; - const utils_1$3 = utils; - const MAX_INT = 2147483647; - const MIN_INT = -2147483648; - function valueToString(v, expectedType) { - if (v === undefined || v === null) { - if (expectedType && (0, definitions_1$6.isNonNullType)(expectedType)) { - throw buildError(`Invalid undefined/null value for non-null type ${expectedType}`); - } - return "null"; - } - if (expectedType && (0, definitions_1$6.isNonNullType)(expectedType)) { - expectedType = expectedType.ofType; - } - if (expectedType && (0, definitions_1$6.isCustomScalarType)(expectedType)) { - expectedType = undefined; - } - if ((0, definitions_1$6.isVariable)(v)) { - return v.toString(); - } - if (Array.isArray(v)) { - let elementsType = undefined; - if (expectedType) { - if (!(0, definitions_1$6.isListType)(expectedType)) { - throw buildError(`Invalid list value for non-list type ${expectedType}`); - } - elementsType = expectedType.ofType; - } - return '[' + v.map(e => valueToString(e, elementsType)).join(', ') + ']'; - } - if (typeof v === 'object') { - if (expectedType && !(0, definitions_1$6.isInputObjectType)(expectedType)) { - throw buildError(`Invalid object value for non-input-object type ${expectedType} (isCustomScalar? ${(0, definitions_1$6.isCustomScalarType)(expectedType)})`); - } - return '{' + Object.keys(v).map(k => { - var _a; - const valueType = expectedType ? (_a = expectedType.field(k)) === null || _a === void 0 ? void 0 : _a.type : undefined; - return `${k}: ${valueToString(v[k], valueType)}`; - }).join(', ') + '}'; - } - if (typeof v === 'string') { - if (expectedType) { - if ((0, definitions_1$6.isEnumType)(expectedType)) { - return v; - } - if (expectedType === expectedType.schema().idType() && integerStringRegExp.test(v)) { - return v; - } - } - return JSON.stringify(v); - } - return String(v); - } - values.valueToString = valueToString; - function valueEquals(a, b) { - if (a === b) { - return true; - } - if (Array.isArray(a)) { - return Array.isArray(b) && arrayValueEquals(a, b); - } - if (typeof a === 'object') { - return typeof b === 'object' && objectEquals(a, b); - } - return a === b; - } - values.valueEquals = valueEquals; - function arrayValueEquals(a, b) { - if (a.length !== b.length) { - return false; - } - for (let i = 0; i < a.length; ++i) { - if (!valueEquals(a[i], b[i])) { - return false; - } - } - return true; - } - function objectEquals(a, b) { - const keys1 = Object.keys(a); - const keys2 = Object.keys(b); - if (keys1.length != keys2.length) { - return false; - } - for (const key of keys1) { - const v1 = a[key]; - const v2 = b[key]; - if (v2 === undefined) { - return v1 === undefined && b.hasOwnProperty(key); - } - if (!valueEquals(v1, v2)) { - return false; - } - } - return true; - } - function argumentsEquals(args1, args2) { - if (args1 === args2) { - return true; - } - return objectEquals(args1, args2); - } - values.argumentsEquals = argumentsEquals; - function buildError(message) { - return new Error(message); - } - function applyDefaultValues(value, type) { - if ((0, definitions_1$6.isVariable)(value)) { - return value; - } - if (value === null) { - if ((0, definitions_1$6.isNonNullType)(type)) { - throw new graphql_1$8.GraphQLError(`Invalid null value for non-null type ${type} while computing default values`); - } - return null; - } - if ((0, definitions_1$6.isNonNullType)(type)) { - return applyDefaultValues(value, type.ofType); - } - if ((0, definitions_1$6.isListType)(type)) { - if (Array.isArray(value)) { - return value.map(v => applyDefaultValues(v, type.ofType)); - } - else { - return applyDefaultValues(value, type.ofType); - } - } - if ((0, definitions_1$6.isInputObjectType)(type)) { - if (typeof value !== 'object') { - throw new graphql_1$8.GraphQLError(`Expected value for type ${type} to be an object, but is ${typeof value}.`); - } - const updated = Object.create(null); - for (const field of type.fields()) { - if (!field.type) { - throw buildError(`Cannot compute default value for field ${field.name} of ${type} as the field type is undefined`); - } - const fieldValue = value[field.name]; - if (fieldValue === undefined) { - if (field.defaultValue !== undefined) { - updated[field.name] = applyDefaultValues(field.defaultValue, field.type); - } - else if ((0, definitions_1$6.isNonNullType)(field.type)) { - throw new graphql_1$8.GraphQLError(`Field "${field.name}" of required type ${type} was not provided.`); - } - } - else { - updated[field.name] = applyDefaultValues(fieldValue, field.type); - } - } - for (const fieldName of Object.keys(value)) { - if (!type.field(fieldName)) { - const suggestions = (0, suggestions_1$1.suggestionList)(fieldName, type.fields().map(f => f.name)); - throw new graphql_1$8.GraphQLError(`Field "${fieldName}" is not defined by type "${type}".` + (0, suggestions_1$1.didYouMean)(suggestions)); - } - } - return updated; - } - return value; - } - function withDefaultValues(value, argument) { - if (!argument.type) { - throw buildError(`Cannot compute default value for argument ${argument} as the type is undefined`); - } - if (value === undefined) { - if (argument.defaultValue) { - return applyDefaultValues(argument.defaultValue, argument.type); - } - } - return applyDefaultValues(value, argument.type); - } - values.withDefaultValues = withDefaultValues; - const integerStringRegExp = /^-?(?:0|[1-9][0-9]*)$/; - function objectFieldNodeToConst(field) { - return { ...field, value: valueNodeToConstValueNode(field.value) }; - } - function valueNodeToConstValueNode(value) { - if (value.kind === graphql_1$8.Kind.NULL - || value.kind === graphql_1$8.Kind.INT - || value.kind === graphql_1$8.Kind.FLOAT - || value.kind === graphql_1$8.Kind.STRING - || value.kind === graphql_1$8.Kind.BOOLEAN - || value.kind === graphql_1$8.Kind.ENUM) { - return value; - } - if (value.kind === graphql_1$8.Kind.LIST) { - const constValues = value.values.map(v => valueNodeToConstValueNode(v)); - return { ...value, values: constValues }; - } - if (value.kind === graphql_1$8.Kind.OBJECT) { - const constFields = value.fields.map(f => objectFieldNodeToConst(f)); - return { ...value, fields: constFields }; - } - if (value.kind === graphql_1$8.Kind.VARIABLE) { - throw new Error('Unexpected VariableNode in const AST'); - } - (0, utils_1$3.assertUnreachable)(value); - } - values.valueNodeToConstValueNode = valueNodeToConstValueNode; - function valueToAST(value, type) { - if (value === undefined) { - return undefined; - } - if ((0, definitions_1$6.isNonNullType)(type)) { - const astValue = valueToAST(value, type.ofType); - if ((astValue === null || astValue === void 0 ? void 0 : astValue.kind) === graphql_1$8.Kind.NULL) { - throw buildError(`Invalid null value ${valueToString(value)} for non-null type ${type}`); - } - return astValue; - } - if (value === null) { - return { kind: graphql_1$8.Kind.NULL }; - } - if ((0, definitions_1$6.isVariable)(value)) { - return { kind: graphql_1$8.Kind.VARIABLE, name: { kind: graphql_1$8.Kind.NAME, value: value.name } }; - } - if ((0, definitions_1$6.isCustomScalarType)(type)) { - return valueToASTUntyped(value); - } - if ((0, definitions_1$6.isListType)(type)) { - const itemType = type.ofType; - const items = Array.from(value); - if (items != null) { - const valuesNodes = []; - for (const item of items) { - const itemNode = valueToAST(item, itemType); - if (itemNode != null) { - valuesNodes.push(itemNode); - } - } - return { kind: graphql_1$8.Kind.LIST, values: valuesNodes }; - } - return valueToAST(value, itemType); - } - if ((0, definitions_1$6.isInputObjectType)(type)) { - if (typeof value !== 'object') { - throw buildError(`Invalid non-objet value for input type ${type}, cannot be converted to AST: ${(0, util_1$1.inspect)(value, true, 10, true)}`); - } - const fieldNodes = []; - for (const field of type.fields()) { - if (!field.type) { - throw buildError(`Cannot convert value ${valueToString(value)} as field ${field} has no type set`); - } - const fieldValue = valueToAST(value[field.name], field.type); - if (fieldValue) { - fieldNodes.push({ - kind: graphql_1$8.Kind.OBJECT_FIELD, - name: { kind: graphql_1$8.Kind.NAME, value: field.name }, - value: fieldValue, - }); - } - } - return { kind: graphql_1$8.Kind.OBJECT, fields: fieldNodes }; - } - if (typeof value === 'boolean') { - return { kind: graphql_1$8.Kind.BOOLEAN, value: value }; - } - if (typeof value === 'number' && isFinite(value)) { - const stringNum = String(value); - return integerStringRegExp.test(stringNum) - ? { kind: graphql_1$8.Kind.INT, value: stringNum } - : { kind: graphql_1$8.Kind.FLOAT, value: stringNum }; - } - if (typeof value === 'string') { - if ((0, definitions_1$6.isEnumType)(type)) { - return { kind: graphql_1$8.Kind.ENUM, value: value }; - } - if (type === type.schema().idType() && integerStringRegExp.test(value)) { - return { kind: graphql_1$8.Kind.INT, value: value }; - } - return { - kind: graphql_1$8.Kind.STRING, - value: value, - }; - } - throw buildError(`Invalid value for type ${type}, cannot be converted to AST: ${(0, util_1$1.inspect)(value)}`); - } - values.valueToAST = valueToAST; - function valueToASTUntyped(value) { - if (value === undefined) { - return undefined; - } - if (value === null) { - return { kind: graphql_1$8.Kind.NULL }; - } - if ((0, definitions_1$6.isVariable)(value)) { - return { kind: graphql_1$8.Kind.VARIABLE, name: { kind: graphql_1$8.Kind.NAME, value: value.name } }; - } - if (Array.isArray(value)) { - const valuesNodes = []; - for (const item of value) { - const itemNode = valueToASTUntyped(item); - if (itemNode !== undefined) { - valuesNodes.push(itemNode); - } - } - return { kind: graphql_1$8.Kind.LIST, values: valuesNodes }; - } - if (typeof value === 'object') { - const fieldNodes = []; - for (const key of Object.keys(value)) { - const fieldValue = valueToASTUntyped(value[key]); - if (fieldValue) { - fieldNodes.push({ - kind: graphql_1$8.Kind.OBJECT_FIELD, - name: { kind: graphql_1$8.Kind.NAME, value: key }, - value: fieldValue, - }); - } - } - return { kind: graphql_1$8.Kind.OBJECT, fields: fieldNodes }; - } - if (typeof value === 'boolean') { - return { kind: graphql_1$8.Kind.BOOLEAN, value: value }; - } - if (typeof value === 'number' && isFinite(value)) { - const stringNum = String(value); - return integerStringRegExp.test(stringNum) - ? { kind: graphql_1$8.Kind.INT, value: stringNum } - : { kind: graphql_1$8.Kind.FLOAT, value: stringNum }; - } - if (typeof value === 'string') { - return { kind: graphql_1$8.Kind.STRING, value: value }; - } - throw buildError(`Invalid value, cannot be converted to AST: ${(0, util_1$1.inspect)(value, true, 10, true)}`); - } - function isValidVariable(variable, locationType, locationDefault) { - const variableType = variable.type; - if ((0, definitions_1$6.isNonNullType)(locationType) && !(0, definitions_1$6.isNonNullType)(variableType)) { - const hasVariableDefault = variable.defaultValue !== undefined && variable.defaultValue !== null; - const hasLocationDefault = locationDefault !== undefined; - if (!hasVariableDefault && !hasLocationDefault) { - return false; - } - return areTypesCompatible(variableType, locationType.ofType); - } - return areTypesCompatible(variableType, locationType); - } - function areTypesCompatible(variableType, locationType) { - if ((0, definitions_1$6.isNonNullType)(locationType)) { - if (!(0, definitions_1$6.isNonNullType)(variableType)) { - return false; - } - return areTypesCompatible(variableType.ofType, locationType.ofType); - } - if ((0, definitions_1$6.isNonNullType)(variableType)) { - return areTypesCompatible(variableType.ofType, locationType); - } - if ((0, definitions_1$6.isListType)(locationType)) { - if (!(0, definitions_1$6.isListType)(variableType)) { - return false; - } - return areTypesCompatible(variableType.ofType, locationType.ofType); - } - return !(0, definitions_1$6.isListType)(variableType) && (0, types_1$2.sameType)(variableType, locationType); - } - function isValidValue(value, argument, variableDefinitions) { - return isValidValueApplication(value, argument.type, argument.defaultValue, variableDefinitions); - } - values.isValidValue = isValidValue; - function isValidValueApplication(value, locationType, locationDefault, variableDefinitions) { - if ((0, definitions_1$6.isVariable)(value)) { - const definition = variableDefinitions.definition(value); - return !!definition && isValidVariable(definition, locationType, locationDefault); - } - if ((0, definitions_1$6.isNonNullType)(locationType)) { - return value !== null && isValidValueApplication(value, locationType.ofType, undefined, variableDefinitions); - } - if (value === null || value === undefined) { - return true; - } - if ((0, definitions_1$6.isCustomScalarType)(locationType)) { - return true; - } - if ((0, definitions_1$6.isListType)(locationType)) { - const itemType = locationType.ofType; - if (Array.isArray(value)) { - return value.every(item => isValidValueApplication(item, itemType, undefined, variableDefinitions)); - } - return isValidValueApplication(value, itemType, locationDefault, variableDefinitions); - } - if ((0, definitions_1$6.isInputObjectType)(locationType)) { - if (typeof value !== 'object') { - return false; - } - const isValid = locationType.fields().every(field => isValidValueApplication(value[field.name], field.type, undefined, variableDefinitions)); - return isValid; - } - const schema = locationType.schema(); - if (typeof value === 'boolean') { - return locationType === schema.booleanType(); - } - if (typeof value === 'number' && isFinite(value)) { - const stringNum = String(value); - if (locationType === schema.intType() || locationType === schema.idType()) { - return integerStringRegExp.test(stringNum); - } - return locationType === schema.floatType(); - } - if (typeof value === 'string') { - if ((0, definitions_1$6.isEnumType)(locationType)) { - return locationType.value(value) !== undefined; - } - return (0, definitions_1$6.isScalarType)(locationType) - && locationType !== schema.booleanType() - && locationType !== schema.intType() - && locationType !== schema.floatType(); - } - return false; - } - function valueFromAST(node, expectedType) { - if (node.kind === graphql_1$8.Kind.NULL) { - if ((0, definitions_1$6.isNonNullType)(expectedType)) { - throw new graphql_1$8.GraphQLError(`Invalid null value for non-null type "${expectedType}"`); - } - return null; - } - if (node.kind === graphql_1$8.Kind.VARIABLE) { - return new definitions_1$6.Variable(node.name.value); - } - if ((0, definitions_1$6.isNonNullType)(expectedType)) { - expectedType = expectedType.ofType; - } - if ((0, definitions_1$6.isListType)(expectedType)) { - const baseType = expectedType.ofType; - if (node.kind === graphql_1$8.Kind.LIST) { - return node.values.map(v => valueFromAST(v, baseType)); - } - return [valueFromAST(node, baseType)]; - } - if ((0, definitions_1$6.isIntType)(expectedType)) { - if (node.kind !== graphql_1$8.Kind.INT) { - throw new graphql_1$8.GraphQLError(`Int cannot represent non-integer value ${(0, graphql_1$8.print)(node)}.`); - } - const i = parseInt(node.value, 10); - if (i > MAX_INT || i < MIN_INT) { - throw new graphql_1$8.GraphQLError(`Int cannot represent non 32-bit signed integer value ${i}.`); - } - return i; - } - if ((0, definitions_1$6.isFloatType)(expectedType)) { - let parsed; - if (node.kind === graphql_1$8.Kind.INT) { - parsed = parseInt(node.value, 10); - } - else if (node.kind === graphql_1$8.Kind.FLOAT) { - parsed = parseFloat(node.value); - } - else { - throw new graphql_1$8.GraphQLError(`Float can only represent integer or float value, but got a ${node.kind}.`); - } - if (!isFinite(parsed)) { - throw new graphql_1$8.GraphQLError(`Float cannot represent non numeric value ${parsed}.`); - } - return parsed; - } - if ((0, definitions_1$6.isBooleanType)(expectedType)) { - if (node.kind !== graphql_1$8.Kind.BOOLEAN) { - throw new graphql_1$8.GraphQLError(`Boolean cannot represent a non boolean value ${(0, graphql_1$8.print)(node)}.`); - } - return node.value; - } - if ((0, definitions_1$6.isStringType)(expectedType)) { - if (node.kind !== graphql_1$8.Kind.STRING) { - throw new graphql_1$8.GraphQLError(`String cannot represent non string value ${(0, graphql_1$8.print)(node)}.`); - } - return node.value; - } - if ((0, definitions_1$6.isIDType)(expectedType)) { - if (node.kind !== graphql_1$8.Kind.STRING && node.kind !== graphql_1$8.Kind.INT) { - throw new graphql_1$8.GraphQLError(`ID cannot represent value ${(0, graphql_1$8.print)(node)}.`); - } - return node.value; - } - if ((0, definitions_1$6.isScalarType)(expectedType)) { - return valueFromASTUntyped(node); - } - if ((0, definitions_1$6.isInputObjectType)(expectedType)) { - if (node.kind !== graphql_1$8.Kind.OBJECT) { - throw new graphql_1$8.GraphQLError(`Input Object Type ${expectedType} cannot represent non-object value ${(0, graphql_1$8.print)(node)}.`); - } - const obj = Object.create(null); - for (const f of node.fields) { - const name = f.name.value; - const field = expectedType.field(name); - if (!field) { - throw new graphql_1$8.GraphQLError(`Unknown field "${name}" found in value for Input Object Type "${expectedType}".`); - } - obj[name] = valueFromAST(f.value, field.type); - } - return obj; - } - if ((0, definitions_1$6.isEnumType)(expectedType)) { - if (node.kind !== graphql_1$8.Kind.STRING && node.kind !== graphql_1$8.Kind.ENUM) { - throw new graphql_1$8.GraphQLError(`Enum Type ${expectedType} cannot represent value ${(0, graphql_1$8.print)(node)}.`); - } - if (!expectedType.value(node.value)) { - throw new graphql_1$8.GraphQLError(`Enum Type ${expectedType} has no value ${node.value}.`); - } - return node.value; - } - (0, utils_1$3.assert)(false, () => `Unexpected input type ${expectedType} of kind ${expectedType.kind}.`); - } - values.valueFromAST = valueFromAST; - function valueFromASTUntyped(node) { - switch (node.kind) { - case graphql_1$8.Kind.NULL: - return null; - case graphql_1$8.Kind.INT: - return parseInt(node.value, 10); - case graphql_1$8.Kind.FLOAT: - return parseFloat(node.value); - case graphql_1$8.Kind.STRING: - case graphql_1$8.Kind.ENUM: - case graphql_1$8.Kind.BOOLEAN: - return node.value; - case graphql_1$8.Kind.LIST: - return node.values.map(valueFromASTUntyped); - case graphql_1$8.Kind.OBJECT: - const obj = Object.create(null); - node.fields.forEach(f => obj[f.name.value] = valueFromASTUntyped(f.value)); - return obj; - case graphql_1$8.Kind.VARIABLE: - return new definitions_1$6.Variable(node.name.value); - } - } - function argumentsFromAST(context, args, argsDefiner) { - var _a; - const values = Object.create(null); - if (args) { - for (const argNode of args) { - const name = argNode.name.value; - const expectedType = (_a = argsDefiner.argument(name)) === null || _a === void 0 ? void 0 : _a.type; - if (!expectedType) { - throw new graphql_1$8.GraphQLError(`Unknown argument "${name}" found in value: ${context} has no argument named "${name}"`); - } - try { - values[name] = valueFromAST(argNode.value, expectedType); - } - catch (e) { - if (e instanceof graphql_1$8.GraphQLError) { - throw new graphql_1$8.GraphQLError(`Invalid value for argument ${name}: ${e.message}`); - } - throw e; - } - } - } - return values; - } - values.argumentsFromAST = argumentsFromAST; - function variablesInValue(value) { - const variables = []; - collectVariables(value, variables); - return variables; - } - values.variablesInValue = variablesInValue; - function collectVariables(value, variables) { - if ((0, definitions_1$6.isVariable)(value)) { - if (!variables.some(v => v.name === value.name)) { - variables.push(value); - } - return; - } - if (!value) { - return; - } - if (Array.isArray(value)) { - value.forEach(v => collectVariables(v, variables)); - } - if (typeof value === 'object') { - Object.keys(value).forEach(k => collectVariables(value[k], variables)); - } - } - - var inaccessibleSpec = {}; - - (function (exports) { - Object.defineProperty(exports, "__esModule", { value: true }); - exports.removeInaccessibleElements = exports.INACCESSIBLE_VERSIONS = exports.InaccessibleSpecDefinition = exports.inaccessibleIdentity = void 0; - const coreSpec_1 = coreSpec; - const definitions_1 = definitions; - const graphql_1 = require$$0$2; - exports.inaccessibleIdentity = 'https://specs.apollo.dev/inaccessible'; - class InaccessibleSpecDefinition extends coreSpec_1.FeatureDefinition { - constructor(version) { - super(new coreSpec_1.FeatureUrl(exports.inaccessibleIdentity, 'inaccessible', version)); - } - addElementsToSchema(schema) { - this.addDirective(schema, 'inaccessible').addLocations(graphql_1.DirectiveLocation.FIELD_DEFINITION, graphql_1.DirectiveLocation.OBJECT, graphql_1.DirectiveLocation.INTERFACE, graphql_1.DirectiveLocation.UNION); - } - inaccessibleDirective(schema) { - return this.directive(schema, 'inaccessible'); - } - } - exports.InaccessibleSpecDefinition = InaccessibleSpecDefinition; - exports.INACCESSIBLE_VERSIONS = new coreSpec_1.FeatureDefinitions(exports.inaccessibleIdentity) - .add(new InaccessibleSpecDefinition(new coreSpec_1.FeatureVersion(0, 1))); - function removeInaccessibleElements(schema) { - const coreFeatures = schema.coreFeatures; - if (!coreFeatures) { - return; - } - const inaccessibleFeature = coreFeatures.getByIdentity(exports.inaccessibleIdentity); - if (!inaccessibleFeature) { - return; - } - const inaccessibleSpec = exports.INACCESSIBLE_VERSIONS.find(inaccessibleFeature.url.version); - if (!inaccessibleSpec) { - throw new graphql_1.GraphQLError(`Cannot remove inaccessible elements: the schema uses unsupported inaccessible spec version ${inaccessibleFeature.url.version} (supported versions: ${exports.INACCESSIBLE_VERSIONS.versions().join(', ')})`); - } - const inaccessibleDirective = inaccessibleSpec.inaccessibleDirective(schema); - if (!inaccessibleDirective) { - throw new graphql_1.GraphQLError(`Invalid schema: declares ${inaccessibleSpec.url} spec but does not define a @inaccessible directive`); - } - for (const type of schema.types()) { - if (!(0, definitions_1.isCompositeType)(type)) { - continue; - } - if (type.hasAppliedDirective(inaccessibleDirective)) { - const references = type.remove(); - for (const reference of references) { - if (reference.kind === 'FieldDefinition') { - if (!reference.hasAppliedDirective(inaccessibleDirective)) { - throw new graphql_1.GraphQLError(`Field ${reference.coordinate} returns an @inaccessible type without being marked @inaccessible itself.`, reference.sourceAST); - } - } - } - } - else if ((0, definitions_1.isObjectType)(type) || (0, definitions_1.isInterfaceType)(type)) { - const toRemove = type.fields().filter(f => f.hasAppliedDirective(inaccessibleDirective)); - toRemove.forEach(f => f.remove()); - } - } - } - exports.removeInaccessibleElements = removeInaccessibleElements; - - }(inaccessibleSpec)); - - var print = {}; - - (function (exports) { - Object.defineProperty(exports, "__esModule", { value: true }); - exports.printDirectiveDefinition = exports.printTypeDefinitionAndExtensions = exports.printType = exports.printSchema = exports.orderPrintedDefinitions = exports.defaultPrintOptions = void 0; - const utils_1 = utils; - const values_1 = values; - exports.defaultPrintOptions = { - indentString: " ", - definitionsOrder: ['schema', 'directives', 'types'], - rootTypesOrder: ['query', 'mutation', 'subscription'], - mergeTypesAndExtensions: false, - showAllBuiltIns: false, - showNonGraphQLBuiltIns: false, - noDescriptions: false, - }; - function orderPrintedDefinitions(options) { - return { - ...options, - typeCompareFn: (t1, t2) => t1.name.localeCompare(t2.name), - directiveCompareFn: (t1, t2) => t1.name.localeCompare(t2.name), - }; - } - exports.orderPrintedDefinitions = orderPrintedDefinitions; - function isDefinitionOrderValid(options) { - return options.definitionsOrder.length === 3 - && options.definitionsOrder.indexOf('schema') >= 0 - && options.definitionsOrder.indexOf('types') >= 0 - && options.definitionsOrder.indexOf('directives') >= 0; - } - function validateOptions(options) { - if (!isDefinitionOrderValid(options)) { - throw new Error(`'definitionsOrder' should be a 3-element array containing 'schema', 'types' and 'directives' in the desired order (got: [${options.definitionsOrder.join(', ')}])`); - } - } - function printSchema(schema, options = exports.defaultPrintOptions) { - validateOptions(options); - let directives = options.showAllBuiltIns ? schema.allDirectives() : schema.directives(options.showNonGraphQLBuiltIns); - if (options.directiveCompareFn) { - directives = directives.concat().sort(options.directiveCompareFn); - } - let types = options.showAllBuiltIns ? schema.allTypes() : schema.types(undefined, options.showNonGraphQLBuiltIns); - if (options.typeCompareFn) { - types = types.concat().sort(options.typeCompareFn); - } - const definitions = new Array(3); - definitions[options.definitionsOrder.indexOf('schema')] = printSchemaDefinitionAndExtensions(schema.schemaDefinition, options); - definitions[options.definitionsOrder.indexOf('directives')] = directives.map(directive => printDirectiveDefinition(directive, options)); - definitions[options.definitionsOrder.indexOf('types')] = types.flatMap(type => printTypeDefinitionAndExtensions(type, options)); - return definitions.flat().join('\n\n'); - } - exports.printSchema = printSchema; - function definitionAndExtensions(element, options) { - return options.mergeTypesAndExtensions ? [undefined] : [null, ...element.extensions()]; - } - function printSchemaDefinitionAndExtensions(schemaDefinition, options) { - if (isSchemaOfCommonNames(schemaDefinition)) { - return []; - } - return printDefinitionAndExtensions(schemaDefinition, options, printSchemaDefinitionOrExtension); - } - function printDefinitionAndExtensions(t, options, printer) { - return definitionAndExtensions(t, options) - .map(ext => printer(t, options, ext)) - .filter(v => v !== undefined); - } - function printIsExtension(extension) { - return extension ? 'extend ' : ''; - } - function forExtension(ts, extension) { - if (extension === undefined) { - return ts; - } - return ts.filter(r => { var _a; return ((_a = r.ofExtension()) !== null && _a !== void 0 ? _a : null) === extension; }); - } - function orderRoots(roots, options) { - return roots.concat().sort((r1, r2) => options.rootTypesOrder.indexOf(r1.rootKind) - options.rootTypesOrder.indexOf(r2.rootKind)); - } - function printSchemaDefinitionOrExtension(schemaDefinition, options, extension) { - const roots = forExtension(schemaDefinition.roots(), extension); - const directives = forExtension(schemaDefinition.appliedDirectives, extension); - if (!roots.length && !directives.length) { - return undefined; - } - const rootEntries = orderRoots(roots, options).map((rootType) => `${options.indentString}${rootType.rootKind}: ${rootType.type}`); - return printDescription(schemaDefinition, options) - + printIsExtension(extension) - + 'schema' - + printAppliedDirectives(directives, options, true) - + (directives.length === 0 ? ' ' : '') - + '{\n' + rootEntries.join('\n') + '\n}'; - } - function isSchemaOfCommonNames(schema) { - return schema.appliedDirectives.length === 0 && !schema.description && schema.roots().every(r => r.isDefaultRootName()); - } - function printType(type, options = exports.defaultPrintOptions) { - const definitionAndExtensions = printTypeDefinitionAndExtensions(type, options); - (0, utils_1.assert)(definitionAndExtensions.length == 1, `Type ${type} is built from more than 1 definition or extension`); - return definitionAndExtensions[0]; - } - exports.printType = printType; - function printTypeDefinitionAndExtensions(type, options = exports.defaultPrintOptions) { - switch (type.kind) { - case 'ScalarType': return printDefinitionAndExtensions(type, options, printScalarDefinitionOrExtension); - case 'ObjectType': return printDefinitionAndExtensions(type, options, (t, options, ext) => printFieldBasedTypeDefinitionOrExtension('type', t, options, ext)); - case 'InterfaceType': return printDefinitionAndExtensions(type, options, (t, options, ext) => printFieldBasedTypeDefinitionOrExtension('interface', t, options, ext)); - case 'UnionType': return printDefinitionAndExtensions(type, options, printUnionDefinitionOrExtension); - case 'EnumType': return printDefinitionAndExtensions(type, options, printEnumDefinitionOrExtension); - case 'InputObjectType': return printDefinitionAndExtensions(type, options, printInputDefinitionOrExtension); - } - } - exports.printTypeDefinitionAndExtensions = printTypeDefinitionAndExtensions; - function printDirectiveDefinition(directive, options) { - const locations = directive.locations.join(' | '); - return `${printDescription(directive, options)}directive ${directive}${printArgs(directive.arguments(), options)}${directive.repeatable ? ' repeatable' : ''} on ${locations}`; - } - exports.printDirectiveDefinition = printDirectiveDefinition; - function printAppliedDirectives(appliedDirectives, options, onNewLines = false, endWithNewLine = onNewLines) { - if (appliedDirectives.length == 0) { - return ""; - } - const joinStr = onNewLines ? '\n' + options.indentString : ' '; - const directives = appliedDirectives.map(d => d.toString()).join(joinStr); - return onNewLines ? '\n' + options.indentString + directives + (endWithNewLine ? '\n' : '') : ' ' + directives; - } - function printDescription(element, options, indentation = '', firstInBlock = true) { - if (element.description === undefined || options.noDescriptions) { - return ''; - } - const preferMultipleLines = element.description.length > 70; - const blockString = printBlockString(element.description, '', preferMultipleLines); - const prefix = indentation && !firstInBlock ? '\n' + indentation : indentation; - return prefix + blockString.replace(/\n/g, '\n' + indentation) + '\n'; - } - function printScalarDefinitionOrExtension(type, options, extension) { - const directives = forExtension(type.appliedDirectives, extension); - if (extension && !directives.length) { - return undefined; - } - return `${printDescription(type, options)}${printIsExtension(extension)}scalar ${type.name}${printAppliedDirectives(directives, options, true, false)}`; - } - function printImplementedInterfaces(implementations) { - return implementations.length - ? ' implements ' + implementations.map(i => i.interface.name).join(' & ') - : ''; - } - function printFieldBasedTypeDefinitionOrExtension(kind, type, options, extension) { - const directives = forExtension(type.appliedDirectives, extension); - const interfaces = forExtension(type.interfaceImplementations(), extension); - const fields = forExtension(type.fields(options.showNonGraphQLBuiltIns), extension); - if (!directives.length && !interfaces.length && !fields.length) { - return undefined; - } - return printDescription(type, options) - + printIsExtension(extension) - + kind + ' ' + type - + printImplementedInterfaces(interfaces) - + printAppliedDirectives(directives, options, true, fields.length > 0) - + (directives.length === 0 ? ' ' : '') - + printFields(fields, options); - } - function printUnionDefinitionOrExtension(type, options, extension) { - const directives = forExtension(type.appliedDirectives, extension); - const members = forExtension(type.members(), extension); - if (!directives.length && !members.length) { - return undefined; - } - const possibleTypes = members.length ? ' = ' + members.map(m => m.type).join(' | ') : ''; - return printDescription(type, options) - + printIsExtension(extension) - + 'union ' + type - + printAppliedDirectives(directives, options, true, members.length > 0) - + possibleTypes; - } - function printEnumDefinitionOrExtension(type, options, extension) { - const directives = forExtension(type.appliedDirectives, extension); - const values = forExtension(type.values, extension); - if (!directives.length && !values.length) { - return undefined; - } - const vals = values.map((v, i) => printDescription(v, options, options.indentString, !i) - + options.indentString - + v - + printAppliedDirectives(v.appliedDirectives, options)); - return printDescription(type, options) - + printIsExtension(extension) - + 'enum ' + type - + printAppliedDirectives(directives, options, true, vals.length > 0) - + (directives.length === 0 ? ' ' : '') - + printBlock(vals); - } - function printInputDefinitionOrExtension(type, options, extension) { - const directives = forExtension(type.appliedDirectives, extension); - const fields = forExtension(type.fields(), extension); - if (!directives.length && !fields.length) { - return undefined; - } - return printDescription(type, options) - + printIsExtension(extension) - + 'input ' + type - + printAppliedDirectives(directives, options, true, fields.length > 0) - + (directives.length === 0 ? ' ' : '') - + printFields(fields, options); - } - function printFields(fields, options) { - return printBlock(fields.map((f, i) => printDescription(f, options, options.indentString, !i) - + options.indentString - + printField(f, options) - + printAppliedDirectives(f.appliedDirectives, options))); - } - function printField(field, options) { - const args = field.kind == 'FieldDefinition' ? printArgs(field.arguments(), options, options.indentString) : ''; - const defaultValue = field.kind === 'InputFieldDefinition' && field.defaultValue !== undefined - ? ' = ' + (0, values_1.valueToString)(field.defaultValue, field.type) - : ''; - return `${field.name}${args}: ${field.type}${defaultValue}`; - } - function printArgs(args, options, indentation = '') { - if (args.length === 0) { - return ''; - } - if (args.every(arg => !arg.description)) { - return '(' + args.map(arg => printArg(arg, options)).join(', ') + ')'; - } - const formattedArgs = args - .map((arg, i) => printDescription(arg, options, ' ' + indentation, !i) + ' ' + indentation + printArg(arg, options)) - .join('\n'); - return `(\n${formattedArgs}\n${indentation})`; - } - function printArg(arg, options) { - return `${arg}${printAppliedDirectives(arg.appliedDirectives, options)}`; - } - function printBlock(items) { - return items.length !== 0 ? '{\n' + items.join('\n') + '\n}' : ''; - } - function printBlockString(value, indentation = '', preferMultipleLines = false) { - const isSingleLine = value.indexOf('\n') === -1; - const hasLeadingSpace = value[0] === ' ' || value[0] === '\t'; - const hasTrailingQuote = value[value.length - 1] === '"'; - const hasTrailingSlash = value[value.length - 1] === '\\'; - const printAsMultipleLines = !isSingleLine || - hasTrailingQuote || - hasTrailingSlash || - preferMultipleLines; - let result = ''; - if (printAsMultipleLines && !(isSingleLine && hasLeadingSpace)) { - result += '\n' + indentation; - } - result += indentation ? value.replace(/\n/g, '\n' + indentation) : value; - if (printAsMultipleLines) { - result += '\n'; - } - return '"""' + result.replace(/"""/g, '\\"""') + '"""'; - } - - }(print)); - - var introspection = {}; - - Object.defineProperty(introspection, "__esModule", { value: true }); - introspection.addIntrospectionFields = introspection.isIntrospectionName = introspection.introspectionFieldNames = void 0; - const graphql_1$7 = require$$0$2; - const definitions_1$5 = definitions; - introspection.introspectionFieldNames = ['__schema', '__type']; - function isIntrospectionName(name) { - return name.startsWith('__'); - } - introspection.isIntrospectionName = isIntrospectionName; - function addIntrospectionFields(schema) { - if (schema.type('__Schema')) { - return; - } - const typeKindEnum = schema.addType(new definitions_1$5.EnumType('__TypeKind', true)); - typeKindEnum.addValue('SCALAR'); - typeKindEnum.addValue('OBJECT'); - typeKindEnum.addValue('INTERFACE'); - typeKindEnum.addValue('UNION'); - typeKindEnum.addValue('ENUM'); - typeKindEnum.addValue('INPUT_OBJECT'); - typeKindEnum.addValue('LIST'); - typeKindEnum.addValue('NON_NULL'); - const inputValueType = schema.addType(new definitions_1$5.ObjectType('__InputValue', true)); - const fieldType = schema.addType(new definitions_1$5.ObjectType('__Field', true)); - const typeType = schema.addType(new definitions_1$5.ObjectType('__Type', true)); - const enumValueType = schema.addType(new definitions_1$5.ObjectType('__EnumValue', true)); - typeType.addField('kind', new definitions_1$5.NonNullType(typeKindEnum)); - typeType.addField('name', schema.stringType()); - typeType.addField('description', schema.stringType()); - typeType.addField('fields', new definitions_1$5.ListType(new definitions_1$5.NonNullType(fieldType))) - .addArgument('includeDeprecated', schema.booleanType(), false); - typeType.addField('interfaces', new definitions_1$5.ListType(new definitions_1$5.NonNullType(typeType))); - typeType.addField('possibleTypes', new definitions_1$5.ListType(new definitions_1$5.NonNullType(typeType))); - typeType.addField('enumValues', new definitions_1$5.ListType(new definitions_1$5.NonNullType(enumValueType))) - .addArgument('includeDeprecated', schema.booleanType(), false); - typeType.addField('inputFields', new definitions_1$5.ListType(new definitions_1$5.NonNullType(inputValueType))); - typeType.addField('ofType', typeType); - typeType.addField('specifiedByURL', schema.stringType()); - fieldType.addField('name', new definitions_1$5.NonNullType(schema.stringType())); - fieldType.addField('description', schema.stringType()); - fieldType.addField('args', new definitions_1$5.NonNullType(new definitions_1$5.ListType(new definitions_1$5.NonNullType(inputValueType)))); - fieldType.addField('type', new definitions_1$5.NonNullType(typeType)); - fieldType.addField('isDeprecated', new definitions_1$5.NonNullType(schema.booleanType())); - fieldType.addField('deprecationReason', schema.stringType()); - inputValueType.addField('name', new definitions_1$5.NonNullType(schema.stringType())); - inputValueType.addField('description', schema.stringType()); - inputValueType.addField('type', new definitions_1$5.NonNullType(typeType)); - inputValueType.addField('defaultValue', schema.stringType()); - enumValueType.addField('name', new definitions_1$5.NonNullType(schema.stringType())); - enumValueType.addField('description', schema.stringType()); - enumValueType.addField('isDeprecated', new definitions_1$5.NonNullType(schema.booleanType())); - enumValueType.addField('deprecationReason', schema.stringType()); - const directiveLocationEnum = schema.addType(new definitions_1$5.EnumType('__DirectiveLocation', true)); - for (const location of Object.values(graphql_1$7.DirectiveLocation)) { - directiveLocationEnum.addValue(location); - } - const directiveType = schema.addType(new definitions_1$5.ObjectType('__Directive', true)); - directiveType.addField('name', new definitions_1$5.NonNullType(schema.stringType())); - directiveType.addField('description', schema.stringType()); - directiveType.addField('locations', new definitions_1$5.NonNullType(new definitions_1$5.ListType(new definitions_1$5.NonNullType(directiveLocationEnum)))); - directiveType.addField('args', new definitions_1$5.NonNullType(new definitions_1$5.ListType(new definitions_1$5.NonNullType(inputValueType)))); - directiveType.addField('isRepeatable', new definitions_1$5.NonNullType(schema.booleanType())); - const schemaType = schema.addType(new definitions_1$5.ObjectType('__Schema', true)); - schemaType.addField('description', schema.stringType()); - schemaType.addField('types', new definitions_1$5.NonNullType(new definitions_1$5.ListType(new definitions_1$5.NonNullType(typeType)))); - schemaType.addField('queryType', new definitions_1$5.NonNullType(typeType)); - schemaType.addField('mutationType', new definitions_1$5.NonNullType(typeType)); - schemaType.addField('subscriptionType', new definitions_1$5.NonNullType(typeType)); - schemaType.addField('directives', new definitions_1$5.NonNullType(new definitions_1$5.ListType(new definitions_1$5.NonNullType(directiveType)))); - let queryRoot = schema.schemaDefinition.rootType('query'); - if (!queryRoot) { - queryRoot = schema.addType(new definitions_1$5.ObjectType('Query')); - schema.schemaDefinition.setRoot('query', queryRoot); - } - queryRoot.addField(new definitions_1$5.FieldDefinition('__schema', true), new definitions_1$5.NonNullType(schemaType)); - queryRoot.addField(new definitions_1$5.FieldDefinition('__type', true), typeType) - .addArgument('name', new definitions_1$5.NonNullType(schema.stringType())); - } - introspection.addIntrospectionFields = addIntrospectionFields; - - var require$$10$1 = /*@__PURE__*/getAugmentedNamespace(validate$3); - - var require$$2$1 = /*@__PURE__*/getAugmentedNamespace(specifiedRules$1); - - var validate$1 = {}; - - Object.defineProperty(validate$1, "__esModule", { value: true }); - validate$1.validateSchema = void 0; - const definitions_1$4 = definitions; - const graphql_1$6 = require$$0$2; - const values_1$1 = values; - const introspection_1 = introspection; - const types_1$1 = types; - function validateSchema(schema) { - return new Validator(schema).validate(); - } - validate$1.validateSchema = validateSchema; - class InputObjectCircularRefsValidator { - constructor(onError) { - this.onError = onError; - this.visitedTypes = new Set(); - this.fieldPath = []; - this.fieldPathIndexByTypeName = new Map(); - } - detectCycles(type) { - if (this.visitedTypes.has(type.name)) { - return; - } - this.visitedTypes.add(type.name); - this.fieldPathIndexByTypeName.set(type.name, this.fieldPath.length); - for (const field of type.fields()) { - if ((0, definitions_1$4.isNonNullType)(field.type) && (0, definitions_1$4.isInputObjectType)(field.type.ofType)) { - const fieldType = field.type.ofType; - const cycleIndex = this.fieldPathIndexByTypeName.get(fieldType.name); - this.fieldPath.push(field); - if (cycleIndex === undefined) { - this.detectCycles(fieldType); - } - else { - const cyclePath = this.fieldPath.slice(cycleIndex); - const pathStr = cyclePath.map((fieldObj) => fieldObj.name).join('.'); - this.onError(new graphql_1$6.GraphQLError(`Cannot reference Input Object "${fieldType.name}" within itself through a series of non-null fields: "${pathStr}".`, (0, definitions_1$4.sourceASTs)(...cyclePath))); - } - this.fieldPath.pop(); - } - } - this.fieldPathIndexByTypeName.delete(type.name); - } - } - class Validator { - constructor(schema) { - this.schema = schema; - this.emptyVariables = new definitions_1$4.VariableDefinitions(); - this.hasMissingTypes = false; - this.errors = []; - } - validate() { - for (const type of this.schema.types()) { - this.validateName(type); - switch (type.kind) { - case 'ObjectType': - case 'InterfaceType': - this.validateObjectOrInterfaceType(type); - break; - case 'InputObjectType': - this.validateInputObjectType(type); - break; - case 'UnionType': - this.validateUnionType(type); - break; - case 'EnumType': - this.validateEnumType(type); - break; - } - } - for (const directive of this.schema.allDirectives()) { - this.validateName(directive); - for (const arg of directive.arguments()) { - this.validateArg(arg); - } - for (const application of directive.applications()) { - this.validateDirectiveApplication(directive, application); - } - } - if (!this.hasMissingTypes) { - const refsValidator = new InputObjectCircularRefsValidator(e => this.errors.push(e)); - for (const type of this.schema.types()) { - switch (type.kind) { - case 'ObjectType': - case 'InterfaceType': - this.validateImplementedInterfaces(type); - break; - case 'InputObjectType': - refsValidator.detectCycles(type); - break; - } - } - } - return this.errors; - } - validateHasType(elt) { - if (!elt.type) { - this.errors.push(new graphql_1$6.GraphQLError(`Element ${elt.coordinate} does not have a type set`, elt.sourceAST)); - this.hasMissingTypes = false; - } - } - validateName(elt) { - if ((0, introspection_1.isIntrospectionName)(elt.name)) { - return; - } - const error = (0, graphql_1$6.isValidNameError)(elt.name); - if (error) { - this.errors.push(elt.sourceAST ? new graphql_1$6.GraphQLError(error.message, elt.sourceAST) : error); - } - } - validateObjectOrInterfaceType(type) { - if (!type.hasFields(true)) { - this.errors.push(new graphql_1$6.GraphQLError(`Type ${type.name} must define one or more fields.`, type.sourceAST)); - } - for (const field of type.fields()) { - this.validateName(field); - this.validateHasType(field); - for (const arg of field.arguments()) { - this.validateArg(arg); - } - } - } - validateImplementedInterfaces(type) { - if (type.implementsInterface(type.name)) { - this.errors.push(new graphql_1$6.GraphQLError(`Type ${type} cannot implement itself because it would create a circular reference.`, (0, definitions_1$4.sourceASTs)(type, type.interfaceImplementation(type.name)))); - } - for (const itf of type.interfaces()) { - for (const itfField of itf.fields()) { - const field = type.field(itfField.name); - if (!field) { - this.errors.push(new graphql_1$6.GraphQLError(`Interface field ${itfField.coordinate} expected but ${type} does not provide it.`, (0, definitions_1$4.sourceASTs)(itfField, type))); - continue; - } - this.validateHasType(itfField); - if (!(0, types_1$1.isSubtype)(itfField.type, field.type)) { - this.errors.push(new graphql_1$6.GraphQLError(`Interface field ${itfField.coordinate} expects type ${itfField.type} but ${field.coordinate} of type ${field.type} is not a proper subtype.`, (0, definitions_1$4.sourceASTs)(itfField, field))); - } - for (const itfArg of itfField.arguments()) { - const arg = field.argument(itfArg.name); - if (!arg) { - this.errors.push(new graphql_1$6.GraphQLError(`Interface field argument ${itfArg.coordinate} expected but ${field.coordinate} does not provide it.`, (0, definitions_1$4.sourceASTs)(itfArg, field))); - continue; - } - this.validateHasType(itfArg); - if (!(0, types_1$1.sameType)(itfArg.type, arg.type)) { - this.errors.push(new graphql_1$6.GraphQLError(`Interface field argument ${itfArg.coordinate} expects type ${itfArg.type} but ${arg.coordinate} is type ${arg.type}.`, (0, definitions_1$4.sourceASTs)(itfArg, arg))); - } - } - for (const arg of field.arguments()) { - if (itfField.argument(arg.name)) { - continue; - } - if (arg.isRequired()) { - this.errors.push(new graphql_1$6.GraphQLError(`Field ${field.coordinate} includes required argument ${arg.name} that is missing from the Interface field ${itfField.coordinate}.`, (0, definitions_1$4.sourceASTs)(arg, itfField))); - } - } - } - for (const itfOfItf of itf.interfaces()) { - if (!type.implementsInterface(itfOfItf)) { - if (itfOfItf === type) { - this.errors.push(new graphql_1$6.GraphQLError(`Type ${type} cannot implement ${itf} because it would create a circular reference.`, (0, definitions_1$4.sourceASTs)(type, itf))); - } - else { - this.errors.push(new graphql_1$6.GraphQLError(`Type ${type} must implement ${itfOfItf} because it is implemented by ${itf}.`, (0, definitions_1$4.sourceASTs)(type, itf, itfOfItf))); - } - } - } - } - } - validateInputObjectType(type) { - if (!type.hasFields()) { - this.errors.push(new graphql_1$6.GraphQLError(`Input Object type ${type.name} must define one or more fields.`, type.sourceAST)); - } - for (const field of type.fields()) { - this.validateName(field); - this.validateHasType(field); - if (field.isRequired() && field.isDeprecated()) { - this.errors.push(new graphql_1$6.GraphQLError(`Required input field ${field.coordinate} cannot be deprecated.`, (0, definitions_1$4.sourceASTs)(field.appliedDirectivesOf('deprecated')[0], field))); - } - } - } - validateArg(arg) { - this.validateName(arg); - this.validateHasType(arg); - if (arg.isRequired() && arg.isDeprecated()) { - this.errors.push(new graphql_1$6.GraphQLError(`Required argument ${arg.coordinate} cannot be deprecated.`, (0, definitions_1$4.sourceASTs)(arg.appliedDirectivesOf('deprecated')[0], arg))); - } - } - validateUnionType(type) { - if (type.membersCount() === 0) { - this.errors.push(new graphql_1$6.GraphQLError(`Union type ${type.coordinate} must define one or more member types.`, type.sourceAST)); - } - } - validateEnumType(type) { - if (type.values.length === 0) { - this.errors.push(new graphql_1$6.GraphQLError(`Enum type ${type.coordinate} must define one or more values.`, type.sourceAST)); - } - for (const value of type.values) { - this.validateName(value); - if (value.name === 'true' || value.name === 'false' || value.name === 'null') { - this.errors.push(new graphql_1$6.GraphQLError(`Enum type ${type.coordinate} cannot include value: ${value}.`, value.sourceAST)); - } - } - } - validateDirectiveApplication(definition, application) { - for (const argument of definition.arguments()) { - const value = application.arguments()[argument.name]; - if (!value) { - continue; - } - if (!(0, values_1$1.isValidValue)(value, argument, this.emptyVariables)) { - const parent = application.parent; - const parentDesc = parent instanceof definitions_1$4.NamedSchemaElement - ? parent.coordinate - : 'schema'; - this.errors.push(new graphql_1$6.GraphQLError(`Invalid value for "${argument.coordinate}" of type "${argument.type}" in application of "${definition.coordinate}" to "${parentDesc}".`, (0, definitions_1$4.sourceASTs)(application, argument))); - } - } - } - } - - (function (exports) { - Object.defineProperty(exports, "__esModule", { value: true }); - exports.ObjectType = exports.InterfaceImplementation = exports.ScalarType = exports.SchemaDefinition = exports.RootType = exports.Schema = exports.CoreFeatures = exports.CoreFeature = exports.BuiltIns = exports.NamedSchemaElementWithType = exports.NamedSchemaElement = exports.SchemaElement = exports.Extension = exports.sourceASTs = exports.DirectiveTargetElement = exports.isLeafType = exports.typeFromAST = exports.typeToAST = exports.executableDirectiveLocations = exports.runtimeTypesIntersects = exports.possibleRuntimeTypes = exports.isCompositeType = exports.isAbstractType = exports.isNullableType = exports.baseType = exports.isInputType = exports.isOutputType = exports.isInputObjectType = exports.isUnionType = exports.isEnumType = exports.isInterfaceType = exports.isObjectType = exports.isIDType = exports.isBooleanType = exports.isFloatType = exports.isStringType = exports.isIntType = exports.isCustomScalarType = exports.isScalarType = exports.isNonNullType = exports.isListType = exports.isWrapperType = exports.isNamedType = exports.defaultRootName = exports.allSchemaRootKinds = exports.typenameFieldName = exports.printErrors = exports.printGraphQLErrorsOrRethrow = exports.errorCauses = exports.ErrGraphQLValidationFailed = void 0; - exports.newNamedType = exports.graphQLBuiltIns = exports.variableDefinitionFromAST = exports.variableDefinitionsFromAST = exports.VariableDefinitions = exports.VariableDefinition = exports.variablesInArguments = exports.isVariable = exports.containsVariable = exports.mergeVariables = exports.Variable = exports.Directive = exports.DirectiveDefinition = exports.EnumValue = exports.ArgumentDefinition = exports.InputFieldDefinition = exports.FieldDefinition = exports.NonNullType = exports.ListType = exports.InputObjectType = exports.EnumType = exports.UnionType = exports.UnionMember = exports.InterfaceType = void 0; - const graphql_1 = require$$0$2; - const coreSpec_1 = coreSpec; - const utils_1 = utils; - const values_1 = values; - const inaccessibleSpec_1 = inaccessibleSpec; - const print_1 = print; - const types_1 = types; - const introspection_1 = introspection; - const core_schema_1 = dist; - const error_1 = error$1; - const validate_1 = require$$10$1; - const specifiedRules_1 = require$$2$1; - const validate_2 = validate$1; - const validationErrorCode = 'GraphQLValidationFailed'; - const ErrGraphQLValidationFailed = (causes) => (0, core_schema_1.err)(validationErrorCode, { - message: 'The schema is not a valid GraphQL schema', - causes - }); - exports.ErrGraphQLValidationFailed = ErrGraphQLValidationFailed; - function errorCauses(e) { - if (e instanceof error_1.GraphQLErrorExt) { - if (e.code === validationErrorCode) { - return (e.causes); - } - return [e]; - } - if (e instanceof graphql_1.GraphQLError) { - return [e]; - } - return undefined; - } - exports.errorCauses = errorCauses; - function printGraphQLErrorsOrRethrow(e) { - const causes = errorCauses(e); - if (!causes) { - throw e; - } - return causes.map(e => (0, graphql_1.printError)(e)).join('\n\n'); - } - exports.printGraphQLErrorsOrRethrow = printGraphQLErrorsOrRethrow; - function printErrors(errors) { - return errors.map(e => (0, graphql_1.printError)(e)).join('\n\n'); - } - exports.printErrors = printErrors; - exports.typenameFieldName = '__typename'; - exports.allSchemaRootKinds = ['query', 'mutation', 'subscription']; - function defaultRootName(rootKind) { - return rootKind.charAt(0).toUpperCase() + rootKind.slice(1); - } - exports.defaultRootName = defaultRootName; - function checkDefaultSchemaRoot(type) { - if (type.kind !== 'ObjectType') { - return undefined; - } - switch (type.name) { - case 'Query': return 'query'; - case 'Mutation': return 'mutation'; - case 'Subscription': return 'subscription'; - default: return undefined; - } - } - function isNamedType(type) { - return type instanceof BaseNamedType; - } - exports.isNamedType = isNamedType; - function isWrapperType(type) { - return isListType(type) || isNonNullType(type); - } - exports.isWrapperType = isWrapperType; - function isListType(type) { - return type.kind == 'ListType'; - } - exports.isListType = isListType; - function isNonNullType(type) { - return type.kind == 'NonNullType'; - } - exports.isNonNullType = isNonNullType; - function isScalarType(type) { - return type.kind == 'ScalarType'; - } - exports.isScalarType = isScalarType; - function isCustomScalarType(type) { - return isScalarType(type) && !exports.graphQLBuiltIns.defaultGraphQLBuiltInTypes.includes(type.name); - } - exports.isCustomScalarType = isCustomScalarType; - function isIntType(type) { - return type === type.schema().intType(); - } - exports.isIntType = isIntType; - function isStringType(type) { - return type === type.schema().stringType(); - } - exports.isStringType = isStringType; - function isFloatType(type) { - return type === type.schema().floatType(); - } - exports.isFloatType = isFloatType; - function isBooleanType(type) { - return type === type.schema().booleanType(); - } - exports.isBooleanType = isBooleanType; - function isIDType(type) { - return type === type.schema().idType(); - } - exports.isIDType = isIDType; - function isObjectType(type) { - return type.kind == 'ObjectType'; - } - exports.isObjectType = isObjectType; - function isInterfaceType(type) { - return type.kind == 'InterfaceType'; - } - exports.isInterfaceType = isInterfaceType; - function isEnumType(type) { - return type.kind == 'EnumType'; - } - exports.isEnumType = isEnumType; - function isUnionType(type) { - return type.kind == 'UnionType'; - } - exports.isUnionType = isUnionType; - function isInputObjectType(type) { - return type.kind == 'InputObjectType'; - } - exports.isInputObjectType = isInputObjectType; - function isOutputType(type) { - switch (baseType(type).kind) { - case 'ScalarType': - case 'ObjectType': - case 'UnionType': - case 'EnumType': - case 'InterfaceType': - return true; - default: - return false; - } - } - exports.isOutputType = isOutputType; - function isInputType(type) { - switch (baseType(type).kind) { - case 'ScalarType': - case 'EnumType': - case 'InputObjectType': - return true; - default: - return false; - } - } - exports.isInputType = isInputType; - function baseType(type) { - return isWrapperType(type) ? type.baseType() : type; - } - exports.baseType = baseType; - function isNullableType(type) { - return !isNonNullType(type); - } - exports.isNullableType = isNullableType; - function isAbstractType(type) { - return isInterfaceType(type) || isUnionType(type); - } - exports.isAbstractType = isAbstractType; - function isCompositeType(type) { - return isObjectType(type) || isInterfaceType(type) || isUnionType(type); - } - exports.isCompositeType = isCompositeType; - function possibleRuntimeTypes(type) { - switch (type.kind) { - case 'InterfaceType': return type.possibleRuntimeTypes(); - case 'UnionType': return type.types(); - case 'ObjectType': return [type]; - } - } - exports.possibleRuntimeTypes = possibleRuntimeTypes; - function runtimeTypesIntersects(t1, t2) { - const rt1 = possibleRuntimeTypes(t1); - const rt2 = possibleRuntimeTypes(t2); - for (const obj1 of rt1) { - if (rt2.some(obj2 => obj1.name === obj2.name)) { - return true; - } - } - return false; - } - exports.runtimeTypesIntersects = runtimeTypesIntersects; - exports.executableDirectiveLocations = [ - graphql_1.DirectiveLocation.QUERY, - graphql_1.DirectiveLocation.MUTATION, - graphql_1.DirectiveLocation.SUBSCRIPTION, - graphql_1.DirectiveLocation.FIELD, - graphql_1.DirectiveLocation.FRAGMENT_DEFINITION, - graphql_1.DirectiveLocation.FRAGMENT_SPREAD, - graphql_1.DirectiveLocation.INLINE_FRAGMENT, - graphql_1.DirectiveLocation.VARIABLE_DEFINITION, - ]; - function typeToAST(type) { - switch (type.kind) { - case 'ListType': - return { - kind: graphql_1.Kind.LIST_TYPE, - type: typeToAST(type.ofType) - }; - case 'NonNullType': - return { - kind: graphql_1.Kind.NON_NULL_TYPE, - type: typeToAST(type.ofType) - }; - default: - return { - kind: graphql_1.Kind.NAMED_TYPE, - name: { kind: graphql_1.Kind.NAME, value: type.name } - }; - } - } - exports.typeToAST = typeToAST; - function typeFromAST(schema, node) { - switch (node.kind) { - case graphql_1.Kind.LIST_TYPE: - return new ListType(typeFromAST(schema, node.type)); - case graphql_1.Kind.NON_NULL_TYPE: - return new NonNullType(typeFromAST(schema, node.type)); - default: - const type = schema.type(node.name.value); - if (!type) { - throw new graphql_1.GraphQLError(`Unknown type "${node.name.value}"`, node); - } - return type; - } - } - exports.typeFromAST = typeFromAST; - function isLeafType(type) { - return isScalarType(type) || isEnumType(type); - } - exports.isLeafType = isLeafType; - class DirectiveTargetElement { - constructor(_schema) { - this._schema = _schema; - this.appliedDirectives = []; - } - schema() { - return this._schema; - } - appliedDirectivesOf(nameOrDefinition) { - const directiveName = typeof nameOrDefinition === 'string' ? nameOrDefinition : nameOrDefinition.name; - return this.appliedDirectives.filter(d => d.name == directiveName); - } - hasAppliedDirective(nameOrDefinition) { - const directiveName = typeof nameOrDefinition === 'string' ? nameOrDefinition : nameOrDefinition.name; - return this.appliedDirectives.some(d => d.name == directiveName); - } - applyDirective(defOrDirective, args) { - let toAdd; - if (defOrDirective instanceof Directive) { - if (defOrDirective.schema() != this.schema()) { - throw new Error(`Cannot add directive ${defOrDirective} to ${this} as it is attached to another schema`); - } - toAdd = defOrDirective; - if (args) { - toAdd.setArguments(args); - } - } - else { - toAdd = new Directive(defOrDirective.name, args !== null && args !== void 0 ? args : Object.create(null)); - } - Element.prototype['setParent'].call(toAdd, this); - this.appliedDirectives.push(toAdd); - return toAdd; - } - appliedDirectivesToDirectiveNodes() { - if (this.appliedDirectives.length == 0) { - return undefined; - } - return this.appliedDirectives.map(directive => { - return { - kind: graphql_1.Kind.DIRECTIVE, - name: { - kind: graphql_1.Kind.NAME, - value: directive.name, - }, - arguments: directive.argumentsToAST() - }; - }); - } - appliedDirectivesToString() { - return this.appliedDirectives.length == 0 - ? '' - : ' ' + this.appliedDirectives.join(' '); - } - variablesInAppliedDirectives() { - return this.appliedDirectives.reduce((acc, d) => mergeVariables(acc, variablesInArguments(d.arguments())), []); - } - } - exports.DirectiveTargetElement = DirectiveTargetElement; - function sourceASTs(...elts) { - return elts.map(elt => elt === null || elt === void 0 ? void 0 : elt.sourceAST).filter(elt => elt !== undefined); - } - exports.sourceASTs = sourceASTs; - class Element { - schema() { - const schema = this.schemaInternal(); - (0, utils_1.assert)(schema, 'requested schema does not exist. Probably because the element is unattached'); - return schema; - } - schemaInternal() { - if (!this._parent) { - return undefined; - } - else if (this._parent instanceof Schema) { - return this._parent; - } - else if (this._parent instanceof SchemaElement) { - return this._parent.schemaInternal(); - } - else if (this._parent instanceof DirectiveTargetElement) { - return this._parent.schema(); - } - (0, utils_1.assert)(false, 'unreachable code. parent is of unknown type'); - } - get parent() { - (0, utils_1.assert)(this._parent, 'trying to access non-existent parent'); - return this._parent; - } - isAttached() { - return !!this._parent; - } - setParent(parent) { - (0, utils_1.assert)(!this._parent, "Cannot set parent of an already attached element"); - this._parent = parent; - this.onAttached(); - } - onAttached() { - } - checkUpdate() { - if (!this.isAttached()) { - throw error(`Cannot modify detached element ${this}`); - } - } - } - class Extension { - get extendedElement() { - return this._extendedElement; - } - setExtendedElement(element) { - (0, utils_1.assert)(!this._extendedElement, "Cannot attached already attached extension"); - this._extendedElement = element; - } - } - exports.Extension = Extension; - class SchemaElement extends Element { - constructor() { - super(...arguments); - this._appliedDirectives = []; - } - get appliedDirectives() { - return this._appliedDirectives; - } - appliedDirectivesOf(nameOrDefinition) { - const directiveName = typeof nameOrDefinition === 'string' ? nameOrDefinition : nameOrDefinition.name; - return this._appliedDirectives.filter(d => d.name == directiveName); - } - hasAppliedDirective(nameOrDefinition) { - return (typeof nameOrDefinition === 'string' - ? this.appliedDirectivesOf(nameOrDefinition) - : this.appliedDirectivesOf(nameOrDefinition)).length !== 0; - } - applyDirective(nameOrDefOrDirective, args) { - let toAdd; - if (nameOrDefOrDirective instanceof Directive) { - this.checkUpdate(nameOrDefOrDirective); - toAdd = nameOrDefOrDirective; - if (args) { - toAdd.setArguments(args); - } - } - else { - let name; - if (typeof nameOrDefOrDirective === 'string') { - this.checkUpdate(); - const def = this.schema().directive(nameOrDefOrDirective); - if (!def) { - throw new graphql_1.GraphQLError(`Cannot apply unknown directive "@${nameOrDefOrDirective}"`); - } - name = nameOrDefOrDirective; - } - else { - this.checkUpdate(nameOrDefOrDirective); - name = nameOrDefOrDirective.name; - } - toAdd = new Directive(name, args !== null && args !== void 0 ? args : Object.create(null)); - Element.prototype['setParent'].call(toAdd, this); - } - this._appliedDirectives.push(toAdd); - DirectiveDefinition.prototype['addReferencer'].call(toAdd.definition, toAdd); - this.onModification(); - return toAdd; - } - removeAppliedDirectives() { - const applied = this._appliedDirectives.concat(); - applied.forEach(d => d.remove()); - } - onModification() { - const schema = this.schemaInternal(); - if (schema) { - Schema.prototype['onModification'].call(schema); - } - } - isElementBuiltIn() { - return false; - } - removeTypeReferenceInternal(type) { - this.removeTypeReference(type); - } - checkRemoval() { - if (this.isElementBuiltIn() && !Schema.prototype['canModifyBuiltIn'].call(this.schema())) { - throw error(`Cannot modify built-in ${this}`); - } - } - checkUpdate(addedElement) { - super.checkUpdate(); - if (!Schema.prototype['canModifyBuiltIn'].call(this.schema())) { - let thisElement = this; - while (thisElement && thisElement instanceof SchemaElement) { - if (thisElement.isElementBuiltIn()) { - throw error(`Cannot modify built-in (or part of built-in) ${this}`); - } - thisElement = thisElement.parent; - } - } - if (addedElement && addedElement.isAttached()) { - const thatSchema = addedElement.schema(); - if (thatSchema && thatSchema != this.schema()) { - throw error(`Cannot add element ${addedElement} to ${this} as it is attached to another schema`); - } - } - } - } - exports.SchemaElement = SchemaElement; - class NamedSchemaElement extends SchemaElement { - constructor(name) { - super(); - this._name = name; - } - get name() { - return this._name; - } - } - exports.NamedSchemaElement = NamedSchemaElement; - class BaseNamedType extends NamedSchemaElement { - constructor(name, isBuiltIn = false) { - super(name); - this.isBuiltIn = isBuiltIn; - this._referencers = new Set(); - this._extensions = new Set(); - } - addReferencer(referencer) { - this._referencers.add(referencer); - } - removeReferencer(referencer) { - this._referencers.delete(referencer); - } - get coordinate() { - return this.name; - } - *allChildElements() { - } - extensions() { - return this._extensions; - } - newExtension() { - return this.addExtension(new Extension()); - } - addExtension(extension) { - this.checkUpdate(); - if (this._extensions.has(extension)) { - return extension; - } - if (extension.extendedElement) { - throw error(`Cannot add extension to type ${this}: it is already added to another type`); - } - this._extensions.add(extension); - Extension.prototype['setExtendedElement'].call(extension, this); - this.onModification(); - return extension; - } - isIntrospectionType() { - return (0, introspection_1.isIntrospectionName)(this.name); - } - hasExtensionElements() { - return this._extensions.size > 0; - } - hasNonExtensionElements() { - return this._appliedDirectives.some(d => d.ofExtension() === undefined) || this.hasNonExtensionInnerElements(); - } - isElementBuiltIn() { - return this.isBuiltIn; - } - rename(newName) { - this.checkUpdate(); - const oldName = this._name; - this._name = newName; - Schema.prototype['renameTypeInternal'].call(this._parent, oldName, newName); - this.onModification(); - } - remove() { - if (!this._parent) { - return []; - } - this.checkRemoval(); - this.onModification(); - this.removeInnerElements(); - Schema.prototype['removeTypeInternal'].call(this._parent, this); - this.removeAppliedDirectives(); - this.sourceAST = undefined; - const toReturn = (0, utils_1.setValues)(this._referencers).map(r => { - SchemaElement.prototype['removeTypeReferenceInternal'].call(r, this); - return r; - }); - this._referencers.clear(); - this._parent = undefined; - return toReturn; - } - removeRecursive() { - this.remove().forEach(ref => this.removeReferenceRecursive(ref)); - } - referencers() { - return (0, utils_1.setValues)(this._referencers); - } - isReferenced() { - return this._referencers.size > 0; - } - toString() { - return this.name; - } - } - class NamedSchemaElementWithType extends NamedSchemaElement { - get type() { - return this._type; - } - set type(type) { - if (type) { - this.checkUpdate(type); - } - else { - this.checkRemoval(); - } - if (this._type) { - removeReferenceToType(this, this._type); - } - this._type = type; - if (type) { - addReferenceToType(this, type); - } - } - removeTypeReference(type) { - (0, utils_1.assert)(this._type && baseType(this._type) === type, () => `Cannot remove reference to type ${type} on ${this} as its type is ${this._type}`); - this._type = undefined; - } - } - exports.NamedSchemaElementWithType = NamedSchemaElementWithType; - function error(message) { - return new graphql_1.GraphQLError(message); - } - class BaseExtensionMember extends Element { - ofExtension() { - return this._extension; - } - setOfExtension(extension) { - var _a; - this.checkUpdate(); - if (extension && !((_a = this._parent) === null || _a === void 0 ? void 0 : _a.extensions().has(extension))) { - throw error(`Cannot set object as part of the provided extension: it is not an extension of parent ${this.parent}`); - } - this._extension = extension; - } - remove() { - this.removeInner(); - Schema.prototype['onModification'].call(this.schema()); - this._extension = undefined; - this._parent = undefined; - } - } - function sortedMemberNames(u) { - return u.members().map(m => m.type.name).sort((n1, n2) => n1.localeCompare(n2)); - } - class BuiltIns { - constructor() { - this.defaultGraphQLBuiltInTypes = ['Int', 'Float', 'String', 'Boolean', 'ID']; - this.defaultGraphQLBuiltInDirectives = ['include', 'skip', 'deprecated', 'specifiedBy']; - } - addBuiltInTypes(schema) { - this.defaultGraphQLBuiltInTypes.forEach(t => this.addBuiltInScalar(schema, t)); - } - addBuiltInDirectives(schema) { - for (const name of ['include', 'skip']) { - this.addBuiltInDirective(schema, name) - .addLocations(graphql_1.DirectiveLocation.FIELD, graphql_1.DirectiveLocation.FRAGMENT_SPREAD, graphql_1.DirectiveLocation.INLINE_FRAGMENT) - .addArgument('if', new NonNullType(schema.booleanType())); - } - this.addBuiltInDirective(schema, 'deprecated') - .addLocations(graphql_1.DirectiveLocation.FIELD_DEFINITION, graphql_1.DirectiveLocation.ENUM_VALUE, graphql_1.DirectiveLocation.ARGUMENT_DEFINITION, graphql_1.DirectiveLocation.INPUT_FIELD_DEFINITION).addArgument('reason', schema.stringType(), 'No longer supported'); - this.addBuiltInDirective(schema, 'specifiedBy') - .addLocations(graphql_1.DirectiveLocation.SCALAR) - .addArgument('url', new NonNullType(schema.stringType())); - } - isGraphQLBuiltIn(element) { - if ((0, introspection_1.isIntrospectionName)(element.name)) { - return true; - } - if (element instanceof FieldDefinition) { - return false; - } - else if (element instanceof DirectiveDefinition) { - return this.defaultGraphQLBuiltInDirectives.includes(element.name); - } - else { - return this.defaultGraphQLBuiltInTypes.includes(element.name); - } - } - prepareValidation(_) { - } - onValidation(schema, unvalidatedDirectives) { - const errors = []; - for (const type of schema.builtInTypes(undefined, true)) { - const maybeRedefined = schema.type(type.name); - if (!maybeRedefined.isBuiltIn) { - this.ensureSameTypeStructure(type, maybeRedefined, errors); - } - } - for (const directive of schema.builtInDirectives(true)) { - if (unvalidatedDirectives && unvalidatedDirectives.includes(directive.name)) { - continue; - } - const maybeRedefined = schema.directive(directive.name); - if (!maybeRedefined.isBuiltIn) { - this.ensureSameDirectiveStructure(directive, maybeRedefined, errors); - } - } - return errors; - } - validationRules() { - return specifiedRules_1.specifiedSDLRules; - } - maybeUpdateSubgraphDocument(_, document) { - return document; - } - ensureSameDirectiveStructure(builtIn, manuallyDefined, errors) { - this.ensureSameArguments(builtIn, manuallyDefined, `directive ${builtIn}`, errors); - if (!builtIn.repeatable && manuallyDefined.repeatable) { - errors.push(error(`Invalid redefinition of built-in directive ${builtIn}: ${builtIn} should${builtIn.repeatable ? "" : " not"} be repeatable`)); - } - if (!manuallyDefined.locations.every(loc => builtIn.locations.includes(loc))) { - errors.push(error(`Invalid redefinition of built-in directive ${builtIn}: ${builtIn} should have locations ${builtIn.locations.join(', ')}, but found (non-subset) ${manuallyDefined.locations.join(', ')}`)); - } - } - ensureSameArguments(builtIn, manuallyDefined, what, errors) { - const expectedArguments = builtIn.arguments(); - const foundArguments = manuallyDefined.arguments(); - if (expectedArguments.length !== foundArguments.length) { - errors.push(error(`Invalid redefinition of built-in ${what}: should have ${expectedArguments.length} arguments but ${foundArguments.length} found in redefinition`)); - return; - } - for (const expectedArgument of expectedArguments) { - const foundArgument = manuallyDefined.argument(expectedArgument.name); - const expectedType = expectedArgument.type; - let actualType = foundArgument.type; - if (isNonNullType(actualType) && !isNonNullType(expectedType)) { - actualType = actualType.ofType; - } - if (!(0, types_1.sameType)(expectedType, actualType)) { - errors.push(error(`Invalid redefinition of built-in ${what}: ${expectedArgument.coordinate} should have type ${expectedArgument.type} but found type ${foundArgument.type}`)); - } - else if (!isNonNullType(actualType) && !(0, values_1.valueEquals)(expectedArgument.defaultValue, foundArgument.defaultValue)) { - errors.push(error(`Invalid redefinition of built-in ${what}: ${expectedArgument.coordinate} should have default value ${(0, values_1.valueToString)(expectedArgument.defaultValue)} but found default value ${(0, values_1.valueToString)(foundArgument.defaultValue)}`)); - } - } - } - ensureSameTypeStructure(builtIn, manuallyDefined, errors) { - if (builtIn.kind !== manuallyDefined.kind) { - errors.push(error(`Invalid redefinition of built-in type ${builtIn}: ${builtIn} should be a ${builtIn.kind} type but redefined as a ${manuallyDefined.kind}`)); - return; - } - switch (builtIn.kind) { - case 'ScalarType': - return; - case 'ObjectType': - const redefinedObject = manuallyDefined; - for (const builtInField of builtIn.fields()) { - const redefinedField = redefinedObject.field(builtInField.name); - if (!redefinedField) { - errors.push(error(`Invalid redefinition of built-in type ${builtIn}: redefinition is missing field ${builtInField}`)); - return; - } - let rType = redefinedField.type; - if (!isNonNullType(builtInField.type) && isNonNullType(rType)) { - rType = rType.ofType; - } - if (!(0, types_1.sameType)(builtInField.type, rType)) { - errors.push(error(`Invalid redefinition of field ${builtInField} of built-in type ${builtIn}: should have type ${builtInField.type} but redefined with type ${redefinedField.type}`)); - return; - } - this.ensureSameArguments(builtInField, redefinedField, `field ${builtInField.coordinate}`, errors); - } - break; - case 'UnionType': - const redefinedUnion = manuallyDefined; - const builtInMembers = sortedMemberNames(builtIn); - const redefinedMembers = sortedMemberNames(redefinedUnion); - if (!(0, utils_1.arrayEquals)(builtInMembers, redefinedMembers)) { - errors.push(error(`Invalid redefinition of built-in type ${builtIn}: redefinition has members [${redefinedMembers}] but should have members [${builtInMembers}]`)); - } - break; - default: - errors.push(error(`Invalid redefinition of built-in type ${builtIn}: cannot redefine ${builtIn.kind} built-in types`)); - } - } - addBuiltInScalar(schema, name) { - return schema.addType(new ScalarType(name, true)); - } - addBuiltInObject(schema, name) { - return schema.addType(new ObjectType(name, true)); - } - addBuiltInUnion(schema, name) { - return schema.addType(new UnionType(name, true)); - } - addBuiltInDirective(schema, name) { - return schema.addDirectiveDefinition(new DirectiveDefinition(name, true)); - } - addBuiltInField(parentType, name, type) { - return parentType.addField(new FieldDefinition(name, true), type); - } - getTypedDirective(schema, name) { - const directive = schema.directive(name); - if (!directive) { - throw new Error(`The provided schema has not be built with the ${name} directive built-in`); - } - return directive; - } - includeDirective(schema) { - return this.getTypedDirective(schema, 'include'); - } - skipDirective(schema) { - return this.getTypedDirective(schema, 'skip'); - } - deprecatedDirective(schema) { - return this.getTypedDirective(schema, 'deprecated'); - } - specifiedByDirective(schema) { - return this.getTypedDirective(schema, 'specifiedBy'); - } - } - exports.BuiltIns = BuiltIns; - class CoreFeature { - constructor(url, nameInSchema, directive, purpose) { - this.url = url; - this.nameInSchema = nameInSchema; - this.directive = directive; - this.purpose = purpose; - } - isFeatureDefinition(element) { - return element.name.startsWith(this.nameInSchema + '__') - || (element.kind === 'DirectiveDefinition' && element.name === this.nameInSchema); - } - } - exports.CoreFeature = CoreFeature; - class CoreFeatures { - constructor(coreItself) { - this.coreItself = coreItself; - this.byAlias = new Map(); - this.byIdentity = new Map(); - this.add(coreItself); - const coreDef = coreSpec_1.CORE_VERSIONS.find(coreItself.url.version); - if (!coreDef) { - throw error(`Schema uses unknown version ${coreItself.url.version} of the core spec (known versions: ${coreSpec_1.CORE_VERSIONS.versions().join(', ')})`); - } - this.coreDefinition = coreDef; - } - getByIdentity(identity) { - return this.byIdentity.get(identity); - } - allFeatures() { - return this.byIdentity.values(); - } - removeFeature(featureIdentity) { - const feature = this.byIdentity.get(featureIdentity); - if (feature) { - this.byIdentity.delete(featureIdentity); - this.byAlias.delete(feature.nameInSchema); - } - } - maybeAddFeature(directive) { - var _a, _b; - if (((_a = directive.definition) === null || _a === void 0 ? void 0 : _a.name) !== this.coreItself.nameInSchema) { - return undefined; - } - const args = directive.arguments(); - const url = coreSpec_1.FeatureUrl.parse(args.feature); - const existing = this.byIdentity.get(url.identity); - if (existing) { - throw error(`Duplicate inclusion of feature ${url.identity}`); - } - const feature = new CoreFeature(url, (_b = args.as) !== null && _b !== void 0 ? _b : url.name, directive, args.for); - this.add(feature); - return feature; - } - add(feature) { - this.byAlias.set(feature.nameInSchema, feature); - this.byIdentity.set(feature.url.identity, feature); - } - } - exports.CoreFeatures = CoreFeatures; - const toASTPrintOptions = { ...print_1.defaultPrintOptions, showNonGraphQLBuiltIns: true }; - class Schema { - constructor(builtIns = exports.graphQLBuiltIns) { - this.builtIns = builtIns; - this._builtInTypes = new utils_1.MapWithCachedArrays(); - this._types = new utils_1.MapWithCachedArrays(); - this._builtInDirectives = new utils_1.MapWithCachedArrays(); - this._directives = new utils_1.MapWithCachedArrays(); - this.isConstructed = false; - this.isValidated = false; - this._schemaDefinition = new SchemaDefinition(); - Element.prototype['setParent'].call(this._schemaDefinition, this); - builtIns.addBuiltInTypes(this); - builtIns.addBuiltInDirectives(this); - this.isConstructed = true; - } - canModifyBuiltIn() { - return !this.isConstructed; - } - runWithBuiltInModificationAllowed(fct) { - const wasConstructed = this.isConstructed; - this.isConstructed = false; - fct(); - this.isConstructed = wasConstructed; - } - renameTypeInternal(oldName, newName) { - this._types.set(newName, this._types.get(oldName)); - this._types.delete(oldName); - } - removeTypeInternal(type) { - this._types.delete(type.name); - } - removeDirectiveInternal(definition) { - this._directives.delete(definition.name); - } - markAsCoreSchema(coreItself) { - this._coreFeatures = new CoreFeatures(coreItself); - } - unmarkAsCoreSchema() { - this._coreFeatures = undefined; - } - onModification() { - if (this.isConstructed) { - this.invalidate(); - this.cachedDocument = undefined; - this.apiSchema = undefined; - } - } - forceSetCachedDocument(document, addNonGraphQLBuiltIns = true) { - this.cachedDocument = addNonGraphQLBuiltIns - ? this.builtIns.maybeUpdateSubgraphDocument(this, document) - : document; - } - isCoreSchema() { - return this.coreFeatures !== undefined; - } - get coreFeatures() { - return this._coreFeatures; - } - toAST() { - if (!this.cachedDocument) { - this.forceSetCachedDocument((0, graphql_1.parse)((0, print_1.printSchema)(this, toASTPrintOptions), { noLocation: true }), false); - } - return this.cachedDocument; - } - toAPISchema() { - if (!this.apiSchema) { - this.validate(); - const apiSchema = this.clone(); - (0, inaccessibleSpec_1.removeInaccessibleElements)(apiSchema); - const coreFeatures = apiSchema.coreFeatures; - if (coreFeatures) { - for (const coreFeature of coreFeatures.allFeatures()) { - (0, coreSpec_1.removeFeatureElements)(apiSchema, coreFeature); - } - } - (0, utils_1.assert)(!apiSchema.isCoreSchema(), "The API schema shouldn't be a core schema"); - apiSchema.validate(); - this.apiSchema = apiSchema; - } - return this.apiSchema; - } - toGraphQLJSSchema(isSubgraph = false) { - if (!isSubgraph) { - return (0, graphql_1.buildASTSchema)(this.toAST()); - } - const ast = (0, graphql_1.parse)((0, print_1.printSchema)(this, { ...toASTPrintOptions, mergeTypesAndExtensions: true }), { noLocation: true }); - return (0, graphql_1.buildASTSchema)(ast); - } - get schemaDefinition() { - return this._schemaDefinition; - } - types(kind, includeNonGraphQLBuiltIns = false) { - const allKinds = this._types.values(); - const forKind = (kind ? allKinds.filter(t => t.kind === kind) : allKinds); - return includeNonGraphQLBuiltIns - ? this.builtInTypes(kind).filter(t => !exports.graphQLBuiltIns.isGraphQLBuiltIn(t)).concat(forKind) - : forKind; - } - builtInTypes(kind, includeShadowed = false) { - const allBuiltIns = this._builtInTypes.values(); - const forKind = (kind ? allBuiltIns.filter(t => t.kind === kind) : allBuiltIns); - return includeShadowed - ? forKind - : forKind.filter(t => !this.isShadowedBuiltInType(t)); - } - isShadowedBuiltInType(type) { - return type.isBuiltIn && this._types.has(type.name); - } - allTypes(kind) { - return this.builtInTypes(kind).concat(this.types(kind)); - } - type(name) { - const type = this._types.get(name); - return type ? type : this._builtInTypes.get(name); - } - typeOfKind(name, kind) { - const type = this.type(name); - return type && type.kind === kind ? type : undefined; - } - intType() { - return this._builtInTypes.get('Int'); - } - floatType() { - return this._builtInTypes.get('Float'); - } - stringType() { - return this._builtInTypes.get('String'); - } - booleanType() { - return this._builtInTypes.get('Boolean'); - } - idType() { - return this._builtInTypes.get('ID'); - } - addType(type) { - const existing = this.type(type.name); - if (existing && !existing.isBuiltIn) { - throw error(`Type ${type} already exists in this schema`); - } - if (type.isAttached()) { - if (type.parent == this) { - return type; - } - throw error(`Cannot add type ${type} to this schema; it is already attached to another schema`); - } - if (type.isBuiltIn) { - if (!this.isConstructed) { - this._builtInTypes.set(type.name, type); - } - else { - throw error(`Cannot add built-in ${type} to this schema (built-ins can only be added at schema construction time)`); - } - } - else { - this._types.set(type.name, type); - } - Element.prototype['setParent'].call(type, this); - const defaultSchemaRoot = checkDefaultSchemaRoot(type); - if (defaultSchemaRoot && !this.schemaDefinition.root(defaultSchemaRoot)) { - this.schemaDefinition.setRoot(defaultSchemaRoot, type); - } - this.onModification(); - return type; - } - directives(includeNonGraphQLBuiltIns = false) { - return includeNonGraphQLBuiltIns - ? this.builtInDirectives().filter(d => !exports.graphQLBuiltIns.isGraphQLBuiltIn(d)).concat(this._directives.values()) - : this._directives.values(); - } - builtInDirectives(includeShadowed = false) { - return includeShadowed - ? this._builtInDirectives.values() - : this._builtInDirectives.values().filter(d => !this.isShadowedBuiltInDirective(d)); - } - allDirectives() { - return this.builtInDirectives().concat(this.directives()); - } - isShadowedBuiltInDirective(directive) { - return directive.isBuiltIn && this._directives.has(directive.name); - } - directive(name) { - const directive = this._directives.get(name); - return directive ? directive : this._builtInDirectives.get(name); - } - *allNamedSchemaElement() { - for (const type of this.types()) { - yield type; - yield* type.allChildElements(); - } - for (const directive of this.directives()) { - yield directive; - yield* directive.arguments(); - } - } - *allSchemaElement() { - yield this._schemaDefinition; - yield* this.allNamedSchemaElement(); - } - addDirectiveDefinition(directiveOrName) { - const definition = typeof directiveOrName === 'string' ? new DirectiveDefinition(directiveOrName) : directiveOrName; - const existing = this.directive(definition.name); - if (existing && !existing.isBuiltIn) { - throw error(`Directive ${definition} already exists in this schema`); - } - if (definition.isAttached()) { - if (definition.parent == this) { - return definition; - } - throw error(`Cannot add directive ${definition} to this schema; it is already attached to another schema`); - } - if (definition.isBuiltIn) { - if (!this.isConstructed) { - this._builtInDirectives.set(definition.name, definition); - } - else { - throw error(`Cannot add built-in ${definition} to this schema (built-ins can only be added at schema construction time)`); - } - } - else { - this._directives.set(definition.name, definition); - } - Element.prototype['setParent'].call(definition, this); - this.onModification(); - return definition; - } - invalidate() { - this.isValidated = false; - } - validate() { - if (this.isValidated) { - return; - } - this.runWithBuiltInModificationAllowed(() => { - this.builtIns.prepareValidation(this); - (0, introspection_1.addIntrospectionFields)(this); - }); - let errors = (0, validate_1.validateSDL)(this.toAST(), undefined, this.builtIns.validationRules()); - errors = errors.concat((0, validate_2.validateSchema)(this)); - if (errors.length === 0) { - this.runWithBuiltInModificationAllowed(() => { - errors = this.builtIns.onValidation(this); - }); - } - if (errors.length > 0) { - throw (0, exports.ErrGraphQLValidationFailed)(errors); - } - this.isValidated = true; - } - clone(builtIns) { - const cloned = new Schema(builtIns !== null && builtIns !== void 0 ? builtIns : this.builtIns); - copy(this, cloned); - if (this.isValidated) { - cloned.validate(); - } - return cloned; - } - } - exports.Schema = Schema; - class RootType extends BaseExtensionMember { - constructor(rootKind, type) { - super(); - this.rootKind = rootKind; - this.type = type; - } - isDefaultRootName() { - return defaultRootName(this.rootKind) == this.type.name; - } - removeInner() { - SchemaDefinition.prototype['removeRootType'].call(this._parent, this); - } - } - exports.RootType = RootType; - class SchemaDefinition extends SchemaElement { - constructor() { - super(...arguments); - this.kind = 'SchemaDefinition'; - this._roots = new utils_1.MapWithCachedArrays(); - this._extensions = new Set(); - } - roots() { - return this._roots.values(); - } - applyDirective(nameOrDefOrDirective, args) { - var _a; - const applied = super.applyDirective(nameOrDefOrDirective, args); - const schema = this.schema(); - const coreFeatures = schema.coreFeatures; - if ((0, coreSpec_1.isCoreSpecDirectiveApplication)(applied)) { - if (coreFeatures) { - throw error(`Invalid duplicate application of the @core feature`); - } - const schemaDirective = applied; - const args = schemaDirective.arguments(); - const url = coreSpec_1.FeatureUrl.parse(args.feature); - const core = new CoreFeature(url, (_a = args.as) !== null && _a !== void 0 ? _a : 'core', schemaDirective, args.for); - Schema.prototype['markAsCoreSchema'].call(schema, core); - } - else if (coreFeatures) { - CoreFeatures.prototype['maybeAddFeature'].call(coreFeatures, applied); - } - this.onModification(); - return applied; - } - root(rootKind) { - return this._roots.get(rootKind); - } - rootType(rootKind) { - var _a; - return (_a = this.root(rootKind)) === null || _a === void 0 ? void 0 : _a.type; - } - setRoot(rootKind, nameOrType) { - let toSet; - if (typeof nameOrType === 'string') { - this.checkUpdate(); - const obj = this.schema().type(nameOrType); - if (!obj) { - throw new graphql_1.GraphQLError(`Cannot set schema ${rootKind} root to unknown type ${nameOrType}`); - } - else if (obj.kind != 'ObjectType') { - throw new graphql_1.GraphQLError(`${defaultRootName(rootKind)} root type must be an Object type${rootKind === 'query' ? '' : ' if provided'}, it cannot be set to ${nameOrType} (an ${obj.kind}).`); - } - toSet = new RootType(rootKind, obj); - } - else { - this.checkUpdate(nameOrType); - toSet = new RootType(rootKind, nameOrType); - } - const prevRoot = this._roots.get(rootKind); - if (prevRoot) { - removeReferenceToType(this, prevRoot.type); - } - this._roots.set(rootKind, toSet); - Element.prototype['setParent'].call(toSet, this); - addReferenceToType(this, toSet.type); - this.onModification(); - return toSet; - } - extensions() { - return this._extensions; - } - newExtension() { - return this.addExtension(new Extension()); - } - addExtension(extension) { - this.checkUpdate(); - if (this._extensions.has(extension)) { - return extension; - } - if (extension.extendedElement) { - throw error(`Cannot add extension to this schema: extension is already added to another schema`); - } - this._extensions.add(extension); - Extension.prototype['setExtendedElement'].call(extension, this); - this.onModification(); - return extension; - } - removeRootType(rootType) { - this._roots.delete(rootType.rootKind); - removeReferenceToType(this, rootType.type); - } - removeTypeReference(toRemove) { - for (const rootType of this.roots()) { - if (rootType.type == toRemove) { - this._roots.delete(rootType.rootKind); - } - } - } - toString() { - return `schema[${this._roots.keys().join(', ')}]`; - } - } - exports.SchemaDefinition = SchemaDefinition; - class ScalarType extends BaseNamedType { - constructor() { - super(...arguments); - this.kind = 'ScalarType'; - } - removeTypeReference(type) { - (0, utils_1.assert)(false, `Scalar type ${this} can't reference other types; shouldn't be asked to remove reference to ${type}`); - } - hasNonExtensionInnerElements() { - return false; - } - removeInnerElements() { - } - removeReferenceRecursive(ref) { - ref.remove(); - } - } - exports.ScalarType = ScalarType; - class InterfaceImplementation extends BaseExtensionMember { - constructor(itf) { - super(); - this.interface = itf; - } - removeInner() { - FieldBasedType.prototype['removeInterfaceImplementation'].call(this._parent, this.interface); - } - toString() { - return `'implements ${this.interface}'`; - } - } - exports.InterfaceImplementation = InterfaceImplementation; - class FieldBasedType extends BaseNamedType { - constructor() { - super(...arguments); - this._interfaceImplementations = new utils_1.MapWithCachedArrays(); - this._fields = new utils_1.MapWithCachedArrays(); - } - onAttached() { - Schema.prototype['runWithBuiltInModificationAllowed'].call(this.schema(), () => { - this.addField(new FieldDefinition(exports.typenameFieldName, true), new NonNullType(this.schema().stringType())); - }); - } - removeFieldInternal(field) { - this._fields.delete(field.name); - this._cachedNonBuiltInFields = undefined; - } - interfaceImplementations() { - return this._interfaceImplementations.values(); - } - interfaceImplementation(type) { - return this._interfaceImplementations.get(typeof type === 'string' ? type : type.name); - } - interfaces() { - return this.interfaceImplementations().map(impl => impl.interface); - } - implementsInterface(type) { - return this._interfaceImplementations.has(typeof type === 'string' ? type : type.name); - } - addImplementedInterface(nameOrItfOrItfImpl) { - let toAdd; - if (nameOrItfOrItfImpl instanceof InterfaceImplementation) { - this.checkUpdate(nameOrItfOrItfImpl); - toAdd = nameOrItfOrItfImpl; - } - else { - let itf; - if (typeof nameOrItfOrItfImpl === 'string') { - this.checkUpdate(); - const maybeItf = this.schema().type(nameOrItfOrItfImpl); - if (!maybeItf) { - throw new graphql_1.GraphQLError(`Cannot implement unknown type ${nameOrItfOrItfImpl}`); - } - else if (maybeItf.kind != 'InterfaceType') { - throw new graphql_1.GraphQLError(`Cannot implement non-interface type ${nameOrItfOrItfImpl} (of type ${maybeItf.kind})`); - } - itf = maybeItf; - } - else { - itf = nameOrItfOrItfImpl; - } - toAdd = new InterfaceImplementation(itf); - } - const existing = this._interfaceImplementations.get(toAdd.interface.name); - if (!existing) { - this._interfaceImplementations.set(toAdd.interface.name, toAdd); - addReferenceToType(this, toAdd.interface); - Element.prototype['setParent'].call(toAdd, this); - this.onModification(); - return toAdd; - } - else { - return existing; - } - } - fields(includeNonGraphQLBuiltIns = false) { - if (includeNonGraphQLBuiltIns) { - return this.allFields().filter(f => !exports.graphQLBuiltIns.isGraphQLBuiltIn(f)); - } - if (!this._cachedNonBuiltInFields) { - this._cachedNonBuiltInFields = this._fields.values().filter(f => !f.isBuiltIn); - } - return this._cachedNonBuiltInFields; - } - hasFields(includeNonGraphQLBuiltIns = false) { - return this.fields(includeNonGraphQLBuiltIns).length > 0; - } - builtInFields() { - return this.allFields().filter(f => f.isBuiltIn); - } - allFields() { - return this._fields.values(); - } - field(name) { - return this._fields.get(name); - } - typenameField() { - return this.field(exports.typenameFieldName); - } - addField(nameOrField, type) { - let toAdd; - if (typeof nameOrField === 'string') { - this.checkUpdate(); - toAdd = new FieldDefinition(nameOrField); - } - else { - this.checkUpdate(nameOrField); - toAdd = nameOrField; - } - if (this.field(toAdd.name)) { - throw error(`Field ${toAdd.name} already exists on ${this}`); - } - if (type && !isOutputType(type)) { - throw error(`Invalid input type ${type} for field ${toAdd.name}: object and interface field types should be output types.`); - } - this._fields.set(toAdd.name, toAdd); - this._cachedNonBuiltInFields = undefined; - Element.prototype['setParent'].call(toAdd, this); - if (type) { - toAdd.type = type; - } - this.onModification(); - return toAdd; - } - *allChildElements() { - for (const field of this._fields.values()) { - yield field; - yield* field.arguments(); - } - } - removeInterfaceImplementation(itf) { - this._interfaceImplementations.delete(itf.name); - removeReferenceToType(this, itf); - } - removeTypeReference(type) { - this._interfaceImplementations.delete(type.name); - } - removeInnerElements() { - for (const interfaceImpl of this.interfaceImplementations()) { - interfaceImpl.remove(); - } - for (const field of this.allFields()) { - if (field.isBuiltIn) { - FieldDefinition.prototype['removeParent'].call(field); - } - else { - field.remove(); - } - } - } - hasNonExtensionInnerElements() { - return this.interfaceImplementations().some(itf => itf.ofExtension() === undefined) - || this.fields().some(f => f.ofExtension() === undefined); - } - } - class ObjectType extends FieldBasedType { - constructor() { - super(...arguments); - this.kind = 'ObjectType'; - } - isRootType() { - const schema = this.schema(); - return schema.schemaDefinition.roots().some(rt => rt.type == this); - } - isQueryRootType() { - var _a; - const schema = this.schema(); - return ((_a = schema.schemaDefinition.root('query')) === null || _a === void 0 ? void 0 : _a.type) === this; - } - removeReferenceRecursive(ref) { - switch (ref.kind) { - case 'FieldDefinition': - ref.removeRecursive(); - break; - case 'UnionType': - if (ref.membersCount() === 0) { - ref.removeRecursive(); - } - break; - } - } - } - exports.ObjectType = ObjectType; - class InterfaceType extends FieldBasedType { - constructor() { - super(...arguments); - this.kind = 'InterfaceType'; - } - allImplementations() { - return (0, utils_1.setValues)(this._referencers).filter(ref => ref.kind === 'ObjectType' || ref.kind === 'InterfaceType'); - } - possibleRuntimeTypes() { - return this.allImplementations().filter(impl => impl.kind === 'ObjectType'); - } - isPossibleRuntimeType(type) { - const typeName = typeof type === 'string' ? type : type.name; - return this.possibleRuntimeTypes().some(t => t.name == typeName); - } - removeReferenceRecursive(ref) { - if (ref.kind === 'FieldDefinition') { - ref.removeRecursive(); - } - } - } - exports.InterfaceType = InterfaceType; - class UnionMember extends BaseExtensionMember { - constructor(type) { - super(); - this.type = type; - } - removeInner() { - UnionType.prototype['removeMember'].call(this._parent, this.type); - } - } - exports.UnionMember = UnionMember; - class UnionType extends BaseNamedType { - constructor() { - super(...arguments); - this.kind = 'UnionType'; - this._members = new utils_1.MapWithCachedArrays(); - } - onAttached() { - Schema.prototype['runWithBuiltInModificationAllowed'].call(this.schema(), () => { - this._typenameField = new FieldDefinition(exports.typenameFieldName, true); - Element.prototype['setParent'].call(this._typenameField, this); - this._typenameField.type = new NonNullType(this.schema().stringType()); - }); - } - types() { - return this.members().map(m => m.type); - } - members() { - return this._members.values(); - } - membersCount() { - return this._members.size; - } - hasTypeMember(type) { - return this._members.has(typeof type === 'string' ? type : type.name); - } - addType(nameOrTypeOrMember) { - let toAdd; - if (nameOrTypeOrMember instanceof UnionMember) { - this.checkUpdate(nameOrTypeOrMember); - toAdd = nameOrTypeOrMember; - } - else { - let obj; - if (typeof nameOrTypeOrMember === 'string') { - this.checkUpdate(); - const maybeObj = this.schema().type(nameOrTypeOrMember); - if (!maybeObj) { - throw new graphql_1.GraphQLError(`Cannot add unknown type ${nameOrTypeOrMember} as member of union type ${this.name}`); - } - else if (maybeObj.kind != 'ObjectType') { - throw new graphql_1.GraphQLError(`Cannot add non-object type ${nameOrTypeOrMember} (of type ${maybeObj.kind}) as member of union type ${this.name}`); - } - obj = maybeObj; - } - else { - this.checkUpdate(nameOrTypeOrMember); - obj = nameOrTypeOrMember; - } - toAdd = new UnionMember(obj); - } - const existing = this._members.get(toAdd.type.name); - if (!existing) { - this._members.set(toAdd.type.name, toAdd); - Element.prototype['setParent'].call(toAdd, this); - addReferenceToType(this, toAdd.type); - this.onModification(); - return toAdd; - } - else { - return existing; - } - } - clearTypes() { - for (const type of this.types()) { - this.removeMember(type); - } - this.onModification(); - } - field(name) { - if (name === exports.typenameFieldName && this._typenameField) { - return this._typenameField; - } - return undefined; - } - typenameField() { - return this._typenameField; - } - removeMember(type) { - this._members.delete(type.name); - removeReferenceToType(this, type); - } - removeTypeReference(type) { - this._members.delete(type.name); - } - removeInnerElements() { - for (const member of this.members()) { - member.remove(); - } - } - hasNonExtensionInnerElements() { - return this.members().some(m => m.ofExtension() === undefined); - } - removeReferenceRecursive(ref) { - ref.removeRecursive(); - } - } - exports.UnionType = UnionType; - class EnumType extends BaseNamedType { - constructor() { - super(...arguments); - this.kind = 'EnumType'; - this._values = []; - } - get values() { - return this._values; - } - value(name) { - return this._values.find(v => v.name == name); - } - addValue(nameOrValue) { - let toAdd; - if (typeof nameOrValue === 'string') { - this.checkUpdate(); - toAdd = new EnumValue(nameOrValue); - } - else { - this.checkUpdate(nameOrValue); - toAdd = nameOrValue; - } - const existing = this.value(toAdd.name); - if (!existing) { - this._values.push(toAdd); - Element.prototype['setParent'].call(toAdd, this); - this.onModification(); - return toAdd; - } - else { - return existing; - } - } - removeTypeReference(type) { - (0, utils_1.assert)(false, `Eum type ${this} can't reference other types; shouldn't be asked to remove reference to ${type}`); - } - removeValueInternal(value) { - const index = this._values.indexOf(value); - if (index >= 0) { - this._values.splice(index, 1); - } - } - removeInnerElements() { - this._values.splice(0, this._values.length); - } - hasNonExtensionInnerElements() { - return this._values.some(v => v.ofExtension() === undefined); - } - removeReferenceRecursive(ref) { - ref.removeRecursive(); - } - } - exports.EnumType = EnumType; - class InputObjectType extends BaseNamedType { - constructor() { - super(...arguments); - this.kind = 'InputObjectType'; - this._fields = new Map(); - } - fields() { - if (!this._cachedFieldsArray) { - this._cachedFieldsArray = (0, utils_1.mapValues)(this._fields); - } - return this._cachedFieldsArray; - } - field(name) { - return this._fields.get(name); - } - addField(nameOrField, type) { - const toAdd = typeof nameOrField === 'string' ? new InputFieldDefinition(nameOrField) : nameOrField; - this.checkUpdate(toAdd); - if (this.field(toAdd.name)) { - throw error(`Field ${toAdd.name} already exists on ${this}`); - } - if (type && !isInputType(type)) { - throw error(`Invalid output type ${type} for field ${toAdd.name}: input field types should be input types.`); - } - this._fields.set(toAdd.name, toAdd); - this._cachedFieldsArray = undefined; - Element.prototype['setParent'].call(toAdd, this); - if (typeof nameOrField === 'string' && type) { - toAdd.type = type; - } - this.onModification(); - return toAdd; - } - hasFields() { - return this._fields.size > 0; - } - *allChildElements() { - yield* this._fields.values(); - } - removeTypeReference(type) { - (0, utils_1.assert)(false, `Input Object type ${this} can't reference other types; shouldn't be asked to remove reference to ${type}`); - } - removeInnerElements() { - for (const field of this.fields()) { - field.remove(); - } - } - removeFieldInternal(field) { - this._fields.delete(field.name); - this._cachedFieldsArray = undefined; - } - hasNonExtensionInnerElements() { - return this.fields().some(f => f.ofExtension() === undefined); - } - removeReferenceRecursive(ref) { - if (ref.kind === 'ArgumentDefinition') { - ref.parent().removeRecursive(); - } - else { - ref.removeRecursive(); - } - } - } - exports.InputObjectType = InputObjectType; - class BaseWrapperType { - constructor(_type) { - this._type = _type; - (0, utils_1.assert)(this._type, 'Cannot wrap an undefined/null type'); - } - schema() { - return this.baseType().schema(); - } - isAttached() { - return this.baseType().isAttached(); - } - get ofType() { - return this._type; - } - baseType() { - return baseType(this._type); - } - } - class ListType extends BaseWrapperType { - constructor(type) { - super(type); - this.kind = 'ListType'; - } - toString() { - return `[${this.ofType}]`; - } - } - exports.ListType = ListType; - class NonNullType extends BaseWrapperType { - constructor(type) { - super(type); - this.kind = 'NonNullType'; - } - toString() { - return `${this.ofType}!`; - } - } - exports.NonNullType = NonNullType; - class FieldDefinition extends NamedSchemaElementWithType { - constructor(name, isBuiltIn = false) { - super(name); - this.isBuiltIn = isBuiltIn; - this.kind = 'FieldDefinition'; - this._args = new utils_1.MapWithCachedArrays(); - } - isElementBuiltIn() { - return this.isBuiltIn; - } - get coordinate() { - const parent = this._parent; - return `${parent == undefined ? '' : parent.coordinate}.${this.name}`; - } - hasArguments() { - return this._args.size > 0; - } - arguments() { - return this._args.values(); - } - argument(name) { - return this._args.get(name); - } - addArgument(nameOrArg, type, defaultValue) { - let toAdd; - if (typeof nameOrArg === 'string') { - this.checkUpdate(); - toAdd = new ArgumentDefinition(nameOrArg); - toAdd.defaultValue = defaultValue; - } - else { - this.checkUpdate(nameOrArg); - toAdd = nameOrArg; - } - const existing = this.argument(toAdd.name); - if (existing) { - if (type && existing.type && !(0, types_1.sameType)(type, existing.type)) { - throw error(`Argument ${toAdd.name} already exists on field ${this.name} with a different type (${existing.type})`); - } - if (defaultValue && (!existing.defaultValue || !(0, values_1.valueEquals)(defaultValue, existing.defaultValue))) { - throw error(`Argument ${toAdd.name} already exists on field ${this.name} with a different default value (${(0, values_1.valueToString)(existing.defaultValue)})`); - } - return existing; - } - if (type && !isInputType(type)) { - throw error(`Invalid output type ${type} for argument ${toAdd.name} of ${this}: arguments should be input types.`); - } - this._args.set(toAdd.name, toAdd); - Element.prototype['setParent'].call(toAdd, this); - if (typeof nameOrArg === 'string') { - toAdd.type = type; - } - this.onModification(); - return toAdd; - } - ofExtension() { - return this._extension; - } - setOfExtension(extension) { - var _a; - this.checkUpdate(); - if (extension && !((_a = this._parent) === null || _a === void 0 ? void 0 : _a.extensions().has(extension))) { - throw error(`Cannot mark field ${this.name} as part of the provided extension: it is not an extension of field parent type ${this.parent}`); - } - this._extension = extension; - this.onModification(); - } - isIntrospectionField() { - return (0, introspection_1.isIntrospectionName)(this.name); - } - isSchemaIntrospectionField() { - return introspection_1.introspectionFieldNames.includes(this.name); - } - removeArgumentInternal(name) { - this._args.delete(name); - } - removeParent() { - this._parent = undefined; - } - isDeprecated() { - return this.hasAppliedDirective('deprecated'); - } - remove() { - if (!this._parent) { - return []; - } - this.onModification(); - this.removeAppliedDirectives(); - this.type = undefined; - this._extension = undefined; - for (const arg of this.arguments()) { - arg.remove(); - } - FieldBasedType.prototype['removeFieldInternal'].call(this._parent, this); - this._parent = undefined; - return []; - } - removeRecursive() { - const parent = this._parent; - this.remove(); - if (parent && !isUnionType(parent) && parent.fields().length === 0) { - parent.removeRecursive(); - } - } - toString() { - const args = this._args.size == 0 - ? "" - : '(' + this.arguments().map(arg => arg.toString()).join(', ') + ')'; - return `${this.name}${args}: ${this.type}`; - } - } - exports.FieldDefinition = FieldDefinition; - class InputFieldDefinition extends NamedSchemaElementWithType { - constructor() { - super(...arguments); - this.kind = 'InputFieldDefinition'; - } - get coordinate() { - const parent = this._parent; - return `${parent == undefined ? '' : parent.coordinate}.${this.name}`; - } - isRequired() { - return isNonNullType(this.type) && this.defaultValue === undefined; - } - ofExtension() { - return this._extension; - } - setOfExtension(extension) { - var _a; - this.checkUpdate(); - if (extension && !((_a = this._parent) === null || _a === void 0 ? void 0 : _a.extensions().has(extension))) { - throw error(`Cannot mark field ${this.name} as part of the provided extension: it is not an extension of field parent type ${this.parent}`); - } - this._extension = extension; - this.onModification(); - } - isDeprecated() { - return this.hasAppliedDirective('deprecated'); - } - remove() { - if (!this._parent) { - return []; - } - this.onModification(); - InputObjectType.prototype['removeFieldInternal'].call(this._parent, this); - this._parent = undefined; - this.type = undefined; - return []; - } - removeRecursive() { - const parent = this._parent; - this.remove(); - if (parent && parent.fields().length === 0) { - parent.removeRecursive(); - } - } - toString() { - const defaultStr = this.defaultValue === undefined ? "" : ` = ${(0, values_1.valueToString)(this.defaultValue, this.type)}`; - return `${this.name}: ${this.type}${defaultStr}`; - } - } - exports.InputFieldDefinition = InputFieldDefinition; - class ArgumentDefinition extends NamedSchemaElementWithType { - constructor(name) { - super(name); - this.kind = 'ArgumentDefinition'; - } - get coordinate() { - const parent = this._parent; - return `${parent == undefined ? '' : parent.coordinate}(${this.name}:)`; - } - isRequired() { - return isNonNullType(this.type) && this.defaultValue === undefined; - } - isDeprecated() { - return this.hasAppliedDirective('deprecated'); - } - remove() { - if (!this._parent) { - return []; - } - this.onModification(); - if (this._parent instanceof FieldDefinition) { - FieldDefinition.prototype['removeArgumentInternal'].call(this._parent, this.name); - } - else { - DirectiveDefinition.prototype['removeArgumentInternal'].call(this._parent, this.name); - } - this._parent = undefined; - this.type = undefined; - this.defaultValue = undefined; - return []; - } - toString() { - const defaultStr = this.defaultValue === undefined ? "" : ` = ${(0, values_1.valueToString)(this.defaultValue, this.type)}`; - return `${this.name}: ${this.type}${defaultStr}`; - } - } - exports.ArgumentDefinition = ArgumentDefinition; - class EnumValue extends NamedSchemaElement { - constructor() { - super(...arguments); - this.kind = 'EnumValue'; - } - get coordinate() { - const parent = this._parent; - return `${parent == undefined ? '' : parent.coordinate}.${this.name}`; - } - ofExtension() { - return this._extension; - } - setOfExtension(extension) { - var _a; - this.checkUpdate(); - if (extension && !((_a = this._parent) === null || _a === void 0 ? void 0 : _a.extensions().has(extension))) { - throw error(`Cannot mark field ${this.name} as part of the provided extension: it is not an extension of field parent type ${this.parent}`); - } - this._extension = extension; - this.onModification(); - } - isDeprecated() { - return this.hasAppliedDirective('deprecated'); - } - remove() { - if (!this._parent) { - return []; - } - this.onModification(); - EnumType.prototype['removeValueInternal'].call(this._parent, this); - this._parent = undefined; - return []; - } - removeTypeReference(type) { - (0, utils_1.assert)(false, `Enum value ${this} can't reference other types; shouldn't be asked to remove reference to ${type}`); - } - toString() { - return `${this.name}`; - } - } - exports.EnumValue = EnumValue; - class DirectiveDefinition extends NamedSchemaElement { - constructor(name, isBuiltIn = false) { - super(name); - this.isBuiltIn = isBuiltIn; - this.kind = 'DirectiveDefinition'; - this._args = new utils_1.MapWithCachedArrays(); - this.repeatable = false; - this._locations = []; - this._referencers = new Set(); - } - get coordinate() { - return `@${this.name}`; - } - arguments() { - return this._args.values(); - } - argument(name) { - return this._args.get(name); - } - addArgument(nameOrArg, type, defaultValue) { - let toAdd; - if (typeof nameOrArg === 'string') { - this.checkUpdate(); - toAdd = new ArgumentDefinition(nameOrArg); - toAdd.defaultValue = defaultValue; - } - else { - this.checkUpdate(nameOrArg); - toAdd = nameOrArg; - } - if (this.argument(toAdd.name)) { - throw error(`Argument ${toAdd.name} already exists on field ${this.name}`); - } - this._args.set(toAdd.name, toAdd); - Element.prototype['setParent'].call(toAdd, this); - if (typeof nameOrArg === 'string') { - toAdd.type = type; - } - this.onModification(); - return toAdd; - } - removeArgumentInternal(name) { - this._args.delete(name); - } - get locations() { - return this._locations; - } - addLocations(...locations) { - let modified = false; - for (const location of locations) { - if (!this._locations.includes(location)) { - this._locations.push(location); - modified = true; - } - } - if (modified) { - this.onModification(); - } - return this; - } - addAllLocations() { - return this.addLocations(...Object.values(graphql_1.DirectiveLocation)); - } - addAllTypeLocations() { - return this.addLocations(graphql_1.DirectiveLocation.SCALAR, graphql_1.DirectiveLocation.OBJECT, graphql_1.DirectiveLocation.INTERFACE, graphql_1.DirectiveLocation.UNION, graphql_1.DirectiveLocation.ENUM, graphql_1.DirectiveLocation.INPUT_OBJECT); - } - removeLocations(...locations) { - let modified = false; - for (const location of locations) { - const index = this._locations.indexOf(location); - if (index >= 0) { - this._locations.splice(index, 1); - modified = true; - } - } - if (modified) { - this.onModification(); - } - return this; - } - applications() { - return (0, utils_1.setValues)(this._referencers); - } - addReferencer(referencer) { - (0, utils_1.assert)(referencer, 'Referencer should exists'); - this._referencers.add(referencer); - } - removeReferencer(referencer) { - this._referencers.delete(referencer); - } - removeTypeReference(type) { - (0, utils_1.assert)(false, `Directive definition ${this} can't reference other types (it's arguments can); shouldn't be asked to remove reference to ${type}`); - } - remove() { - if (!this._parent) { - return []; - } - this.onModification(); - Schema.prototype['removeDirectiveInternal'].call(this._parent, this); - this._parent = undefined; - (0, utils_1.assert)(this._appliedDirectives.length === 0, "Directive definition should not have directive applied to it"); - for (const arg of this.arguments()) { - arg.remove(); - } - const toReturn = (0, utils_1.setValues)(this._referencers); - this._referencers.clear(); - return toReturn; - } - removeRecursive() { - this.remove().forEach(ref => ref.remove()); - } - toString() { - return `@${this.name}`; - } - } - exports.DirectiveDefinition = DirectiveDefinition; - class Directive extends Element { - constructor(name, _args) { - super(); - this.name = name; - this._args = _args; - } - schema() { - return this.parent.schema(); - } - get definition() { - const doc = this.schema(); - return doc.directive(this.name); - } - arguments(includeDefaultValues = false) { - if (!includeDefaultValues) { - return this._args; - } - const definition = this.definition; - if (!definition) { - throw error(`Cannot include default values for arguments: cannot find directive definition for ${this.name}`); - } - const updated = Object.create(null); - for (const argDef of definition.arguments()) { - updated[argDef.name] = (0, values_1.withDefaultValues)(this._args[argDef.name], argDef); - } - return updated; - } - onModification() { - if (this.isAttachedToSchemaElement()) { - Schema.prototype['onModification'].call(this.schema()); - } - } - isAttachedToSchemaElement() { - return this.isAttached(); - } - setArguments(args) { - this._args = args; - this.onModification(); - } - argumentType(name) { - var _a, _b; - return (_b = (_a = this.definition) === null || _a === void 0 ? void 0 : _a.argument(name)) === null || _b === void 0 ? void 0 : _b.type; - } - matchArguments(expectedArgs) { - const entries = Object.entries(this._args); - if (entries.length !== Object.keys(expectedArgs).length) { - return false; - } - for (const [key, val] of entries) { - if (!(key in expectedArgs)) { - return false; - } - const expectedVal = expectedArgs[key]; - if (!(0, values_1.valueEquals)(expectedVal, val)) { - return false; - } - } - return true; - } - ofExtension() { - return this._extension; - } - setOfExtension(extension) { - this.checkUpdate(); - if (extension) { - const parent = this.parent; - if (parent instanceof SchemaDefinition || parent instanceof BaseNamedType) { - if (!parent.extensions().has(extension)) { - throw error(`Cannot mark directive ${this.name} as part of the provided extension: it is not an extension of parent ${parent}`); - } - } - else { - throw error(`Can only mark directive parts of extensions when directly apply to type or schema definition.`); - } - } - this._extension = extension; - this.onModification(); - } - argumentsToAST() { - const entries = Object.entries(this._args); - if (entries.length === 0) { - return undefined; - } - const definition = this.definition; - (0, utils_1.assert)(definition, () => `Cannot convert arguments of detached directive ${this}`); - return entries.map(([n, v]) => { - return { - kind: graphql_1.Kind.ARGUMENT, - name: { kind: graphql_1.Kind.NAME, value: n }, - value: (0, values_1.valueToAST)(v, definition.argument(n).type), - }; - }); - } - remove() { - if (!this._parent) { - return false; - } - this.onModification(); - const coreFeatures = this.schema().coreFeatures; - if (coreFeatures && this.name === coreFeatures.coreItself.nameInSchema) { - const url = coreSpec_1.FeatureUrl.parse(this._args['feature']); - if (url.identity === coreFeatures.coreItself.url.identity) { - Schema.prototype['unmarkAsCoreSchema'].call(this.schema()); - for (const d of this.schema().schemaDefinition.appliedDirectivesOf(coreFeatures.coreItself.nameInSchema)) { - d.removeInternal(); - } - return true; - } - else { - CoreFeatures.prototype['removeFeature'].call(coreFeatures, url.identity); - } - } - return this.removeInternal(); - } - removeInternal() { - if (!this._parent) { - return false; - } - const definition = this.definition; - if (definition && this.isAttachedToSchemaElement()) { - DirectiveDefinition.prototype['removeReferencer'].call(definition, this); - } - const parentDirectives = this._parent.appliedDirectives; - const index = parentDirectives.indexOf(this); - (0, utils_1.assert)(index >= 0, () => `Directive ${this} lists ${this._parent} as parent, but that parent doesn't list it as applied directive`); - parentDirectives.splice(index, 1); - this._parent = undefined; - this._extension = undefined; - return true; - } - toString() { - const entries = Object.entries(this._args).filter(([_, v]) => v !== undefined); - const args = entries.length == 0 ? '' : '(' + entries.map(([n, v]) => `${n}: ${(0, values_1.valueToString)(v, this.argumentType(n))}`).join(', ') + ')'; - return `@${this.name}${args}`; - } - } - exports.Directive = Directive; - class Variable { - constructor(name) { - this.name = name; - } - toVariableNode() { - return { - kind: graphql_1.Kind.VARIABLE, - name: { kind: graphql_1.Kind.NAME, value: this.name }, - }; - } - toString() { - return '$' + this.name; - } - } - exports.Variable = Variable; - function mergeVariables(v1s, v2s) { - if (v1s.length == 0) { - return v2s; - } - if (v2s.length == 0) { - return v1s; - } - const res = v1s.concat(); - for (const v of v2s) { - if (!containsVariable(v1s, v)) { - res.push(v); - } - } - return res; - } - exports.mergeVariables = mergeVariables; - function containsVariable(variables, toCheck) { - return variables.some(v => v.name == toCheck.name); - } - exports.containsVariable = containsVariable; - function isVariable(v) { - return v instanceof Variable; - } - exports.isVariable = isVariable; - function variablesInArguments(args) { - let variables = []; - for (const value of Object.values(args)) { - variables = mergeVariables(variables, (0, values_1.variablesInValue)(value)); - } - return variables; - } - exports.variablesInArguments = variablesInArguments; - class VariableDefinition extends DirectiveTargetElement { - constructor(schema, variable, type, defaultValue) { - super(schema); - this.variable = variable; - this.type = type; - this.defaultValue = defaultValue; - } - toVariableDefinitionNode() { - const ast = (0, values_1.valueToAST)(this.defaultValue, this.type); - return { - kind: graphql_1.Kind.VARIABLE_DEFINITION, - variable: this.variable.toVariableNode(), - type: typeToAST(this.type), - defaultValue: (ast !== undefined) ? (0, values_1.valueNodeToConstValueNode)(ast) : undefined, - directives: this.appliedDirectivesToDirectiveNodes(), - }; - } - toString() { - let base = this.variable + ': ' + this.type; - if (this.defaultValue) { - base = base + ' = ' + (0, values_1.valueToString)(this.defaultValue, this.type); - } - return base + this.appliedDirectivesToString(); - } - } - exports.VariableDefinition = VariableDefinition; - class VariableDefinitions { - constructor() { - this._definitions = new utils_1.MapWithCachedArrays(); - } - add(definition) { - if (this._definitions.has(definition.variable.name)) { - return false; - } - this._definitions.set(definition.variable.name, definition); - return true; - } - addAll(definitions) { - for (const definition of definitions._definitions.values()) { - this.add(definition); - } - } - definition(variable) { - const varName = typeof variable === 'string' ? variable : variable.name; - return this._definitions.get(varName); - } - isEmpty() { - return this._definitions.size === 0; - } - definitions() { - return this._definitions.values(); - } - filter(variables) { - if (variables.length === 0) { - return new VariableDefinitions(); - } - const newDefs = new VariableDefinitions(); - for (const variable of variables) { - const def = this.definition(variable); - if (!def) { - throw new Error(`Cannot find variable ${variable} in definitions ${this}`); - } - newDefs.add(def); - } - return newDefs; - } - toVariableDefinitionNodes() { - if (this._definitions.size === 0) { - return undefined; - } - return this.definitions().map(def => def.toVariableDefinitionNode()); - } - toString() { - return '(' + this.definitions().join(', ') + ')'; - } - } - exports.VariableDefinitions = VariableDefinitions; - function variableDefinitionsFromAST(schema, definitionNodes) { - const definitions = new VariableDefinitions(); - for (const definitionNode of definitionNodes) { - if (!definitions.add(variableDefinitionFromAST(schema, definitionNode))) { - const name = definitionNode.variable.name.value; - throw new graphql_1.GraphQLError(`Duplicate definition for variable ${name}`, definitionNodes.filter(n => n.variable.name.value === name)); - } - } - return definitions; - } - exports.variableDefinitionsFromAST = variableDefinitionsFromAST; - function variableDefinitionFromAST(schema, definitionNode) { - const variable = new Variable(definitionNode.variable.name.value); - const type = typeFromAST(schema, definitionNode.type); - if (!isInputType(type)) { - throw new graphql_1.GraphQLError(`Invalid type "${type}" for variable $${variable}: not an input type`, definitionNode.type); - } - const def = new VariableDefinition(schema, variable, type, definitionNode.defaultValue ? (0, values_1.valueFromAST)(definitionNode.defaultValue, type) : undefined); - return def; - } - exports.variableDefinitionFromAST = variableDefinitionFromAST; - exports.graphQLBuiltIns = new BuiltIns(); - function addReferenceToType(referencer, type) { - switch (type.kind) { - case 'ListType': - addReferenceToType(referencer, type.baseType()); - break; - case 'NonNullType': - addReferenceToType(referencer, type.baseType()); - break; - default: - BaseNamedType.prototype['addReferencer'].call(type, referencer); - break; - } - } - function removeReferenceToType(referencer, type) { - switch (type.kind) { - case 'ListType': - removeReferenceToType(referencer, type.baseType()); - break; - case 'NonNullType': - removeReferenceToType(referencer, type.baseType()); - break; - default: - BaseNamedType.prototype['removeReferencer'].call(type, referencer); - break; - } - } - function newNamedType(kind, name) { - switch (kind) { - case 'ScalarType': - return new ScalarType(name); - case 'ObjectType': - return new ObjectType(name); - case 'InterfaceType': - return new InterfaceType(name); - case 'UnionType': - return new UnionType(name); - case 'EnumType': - return new EnumType(name); - case 'InputObjectType': - return new InputObjectType(name); - default: - (0, utils_1.assert)(false, `Unhandled kind ${kind} for type ${name}`); - } - } - exports.newNamedType = newNamedType; - function* typesToCopy(source, dest) { - var _a; - for (const type of source.builtInTypes()) { - if (!type.isIntrospectionType() && !((_a = dest.type(type.name)) === null || _a === void 0 ? void 0 : _a.isBuiltIn)) { - yield type; - } - } - yield* source.types(); - } - function* directivesToCopy(source, dest) { - var _a; - for (const directive of source.builtInDirectives()) { - if (!((_a = dest.directive(directive.name)) === null || _a === void 0 ? void 0 : _a.isBuiltIn)) { - yield directive; - } - } - yield* source.directives(); - } - function copy(source, dest) { - for (const type of typesToCopy(source, dest)) { - dest.addType(newNamedType(type.kind, type.name)); - } - for (const directive of directivesToCopy(source, dest)) { - copyDirectiveDefinitionInner(directive, dest.addDirectiveDefinition(directive.name)); - } - copySchemaDefinitionInner(source.schemaDefinition, dest.schemaDefinition); - for (const type of typesToCopy(source, dest)) { - copyNamedTypeInner(type, dest.type(type.name)); - } - } - function copyExtensions(source, dest) { - const extensionMap = new Map(); - for (const sourceExtension of source.extensions()) { - const destExtension = new Extension(); - dest.addExtension(destExtension); - extensionMap.set(sourceExtension, destExtension); - } - return extensionMap; - } - function copyOfExtension(extensionsMap, source, dest) { - const toCopy = source.ofExtension(); - if (toCopy) { - dest.setOfExtension(extensionsMap.get(toCopy)); - } - } - function copySchemaDefinitionInner(source, dest) { - const extensionsMap = copyExtensions(source, dest); - for (const rootType of source.roots()) { - copyOfExtension(extensionsMap, rootType, dest.setRoot(rootType.rootKind, rootType.type.name)); - } - for (const directive of source.appliedDirectives) { - copyOfExtension(extensionsMap, directive, dest.applyDirective(directive.name, { ...directive.arguments() })); - } - dest.description = source.description; - dest.sourceAST = source.sourceAST; - } - function copyNamedTypeInner(source, dest) { - const extensionsMap = copyExtensions(source, dest); - for (const directive of source.appliedDirectives) { - copyOfExtension(extensionsMap, directive, dest.applyDirective(directive.name, { ...directive.arguments() })); - } - dest.description = source.description; - dest.sourceAST = source.sourceAST; - switch (source.kind) { - case 'ObjectType': - case 'InterfaceType': - const destFieldBasedType = dest; - for (const sourceField of source.fields()) { - const destField = destFieldBasedType.addField(new FieldDefinition(sourceField.name)); - copyOfExtension(extensionsMap, sourceField, destField); - copyFieldDefinitionInner(sourceField, destField); - } - for (const sourceImpl of source.interfaceImplementations()) { - const destImpl = destFieldBasedType.addImplementedInterface(sourceImpl.interface.name); - copyOfExtension(extensionsMap, sourceImpl, destImpl); - } - break; - case 'UnionType': - const destUnionType = dest; - for (const sourceType of source.members()) { - const destType = destUnionType.addType(sourceType.type.name); - copyOfExtension(extensionsMap, sourceType, destType); - } - break; - case 'EnumType': - const destEnumType = dest; - for (const sourceValue of source.values) { - const destValue = destEnumType.addValue(sourceValue.name); - destValue.description = sourceValue.description; - copyOfExtension(extensionsMap, sourceValue, destValue); - copyAppliedDirectives(sourceValue, destValue); - } - break; - case 'InputObjectType': - const destInputType = dest; - for (const sourceField of source.fields()) { - const destField = destInputType.addField(new InputFieldDefinition(sourceField.name)); - copyOfExtension(extensionsMap, sourceField, destField); - copyInputFieldDefinitionInner(sourceField, destField); - } - } - } - function copyAppliedDirectives(source, dest) { - for (const directive of source.appliedDirectives) { - dest.applyDirective(directive.name, { ...directive.arguments() }); - } - } - function copyFieldDefinitionInner(source, dest) { - const type = copyWrapperTypeOrTypeRef(source.type, dest.schema()); - dest.type = type; - for (const arg of source.arguments()) { - const argType = copyWrapperTypeOrTypeRef(arg.type, dest.schema()); - copyArgumentDefinitionInner(arg, dest.addArgument(arg.name, argType)); - } - copyAppliedDirectives(source, dest); - dest.description = source.description; - dest.sourceAST = source.sourceAST; - } - function copyInputFieldDefinitionInner(source, dest) { - const type = copyWrapperTypeOrTypeRef(source.type, dest.schema()); - dest.type = type; - dest.defaultValue = source.defaultValue; - copyAppliedDirectives(source, dest); - dest.description = source.description; - dest.sourceAST = source.sourceAST; - } - function copyWrapperTypeOrTypeRef(source, destParent) { - if (!source) { - return undefined; - } - switch (source.kind) { - case 'ListType': - return new ListType(copyWrapperTypeOrTypeRef(source.ofType, destParent)); - case 'NonNullType': - return new NonNullType(copyWrapperTypeOrTypeRef(source.ofType, destParent)); - default: - return destParent.type(source.name); - } - } - function copyArgumentDefinitionInner(source, dest) { - const type = copyWrapperTypeOrTypeRef(source.type, dest.schema()); - dest.type = type; - dest.defaultValue = source.defaultValue; - copyAppliedDirectives(source, dest); - dest.description = source.description; - dest.sourceAST = source.sourceAST; - } - function copyDirectiveDefinitionInner(source, dest) { - for (const arg of source.arguments()) { - const type = copyWrapperTypeOrTypeRef(arg.type, dest.schema()); - copyArgumentDefinitionInner(arg, dest.addArgument(arg.name, type)); - } - dest.repeatable = source.repeatable; - dest.addLocations(...source.locations); - dest.sourceAST = source.sourceAST; - dest.description = source.description; - } - - }(definitions)); - - var buildSchema$1 = {}; - - Object.defineProperty(buildSchema$1, "__esModule", { value: true }); - buildSchema$1.builtTypeReference = buildSchema$1.buildSchemaFromAST = buildSchema$1.buildSchema = void 0; - const graphql_1$5 = require$$0$2; - const definitions_1$3 = definitions; - function buildValue(value) { - return value ? (0, graphql_1$5.valueFromASTUntyped)(value) : undefined; - } - function buildSchema(source, builtIns = definitions_1$3.graphQLBuiltIns, validate = true) { - return buildSchemaFromAST((0, graphql_1$5.parse)(source), builtIns, validate); - } - buildSchema$1.buildSchema = buildSchema; - function buildSchemaFromAST(documentNode, builtIns = definitions_1$3.graphQLBuiltIns, validate = true) { - const schema = new definitions_1$3.Schema(builtIns); - const directiveDefinitionNodes = buildNamedTypeAndDirectivesShallow(documentNode, schema); - for (const directiveDefinitionNode of directiveDefinitionNodes) { - buildDirectiveDefinitionInner(directiveDefinitionNode, schema.directive(directiveDefinitionNode.name.value)); - } - for (const definitionNode of documentNode.definitions) { - switch (definitionNode.kind) { - case 'OperationDefinition': - case 'FragmentDefinition': - throw new graphql_1$5.GraphQLError("Invalid executable definition found while building schema", definitionNode); - case 'SchemaDefinition': - buildSchemaDefinitionInner(definitionNode, schema.schemaDefinition); - break; - case 'SchemaExtension': - buildSchemaDefinitionInner(definitionNode, schema.schemaDefinition, schema.schemaDefinition.newExtension()); - break; - case 'ScalarTypeDefinition': - case 'ObjectTypeDefinition': - case 'InterfaceTypeDefinition': - case 'UnionTypeDefinition': - case 'EnumTypeDefinition': - case 'InputObjectTypeDefinition': - buildNamedTypeInner(definitionNode, schema.type(definitionNode.name.value)); - break; - case 'ScalarTypeExtension': - case 'ObjectTypeExtension': - case 'InterfaceTypeExtension': - case 'UnionTypeExtension': - case 'EnumTypeExtension': - case 'InputObjectTypeExtension': - const toExtend = schema.type(definitionNode.name.value); - const extension = toExtend.newExtension(); - extension.sourceAST = definitionNode; - buildNamedTypeInner(definitionNode, toExtend, extension); - break; - } - } - definitions_1$3.Schema.prototype['forceSetCachedDocument'].call(schema, documentNode); - if (validate) { - schema.validate(); - } - return schema; - } - buildSchema$1.buildSchemaFromAST = buildSchemaFromAST; - function buildNamedTypeAndDirectivesShallow(documentNode, schema) { - const directiveDefinitionNodes = []; - for (const definitionNode of documentNode.definitions) { - switch (definitionNode.kind) { - case 'ScalarTypeDefinition': - case 'ObjectTypeDefinition': - case 'InterfaceTypeDefinition': - case 'UnionTypeDefinition': - case 'EnumTypeDefinition': - case 'InputObjectTypeDefinition': - case 'ScalarTypeExtension': - case 'ObjectTypeExtension': - case 'InterfaceTypeExtension': - case 'UnionTypeExtension': - case 'EnumTypeExtension': - case 'InputObjectTypeExtension': - const existing = schema.type(definitionNode.name.value); - if (!existing || existing.isBuiltIn) { - schema.addType((0, definitions_1$3.newNamedType)(withoutTrailingDefinition(definitionNode.kind), definitionNode.name.value)); - } - break; - case 'DirectiveDefinition': - directiveDefinitionNodes.push(definitionNode); - schema.addDirectiveDefinition(definitionNode.name.value); - break; - } - } - return directiveDefinitionNodes; - } - function withoutTrailingDefinition(str) { - const endString = str.endsWith('Definition') ? 'Definition' : 'Extension'; - return str.slice(0, str.length - endString.length); - } - function getReferencedType(node, schema) { - const type = schema.type(node.name.value); - if (!type) { - throw new graphql_1$5.GraphQLError(`Unknown type ${node.name.value}`, node); - } - return type; - } - function withNodeAttachedToError(operation, node) { - try { - operation(); - } - catch (e) { - if (e instanceof graphql_1$5.GraphQLError) { - const allNodes = e.nodes ? [node, ...e.nodes] : node; - throw new graphql_1$5.GraphQLError(e.message, allNodes, e.source, e.positions, e.path, e, e.extensions); - } - else { - throw e; - } - } - } - function buildSchemaDefinitionInner(schemaNode, schemaDefinition, extension) { - var _a, _b; - for (const opTypeNode of (_a = schemaNode.operationTypes) !== null && _a !== void 0 ? _a : []) { - withNodeAttachedToError(() => schemaDefinition.setRoot(opTypeNode.operation, opTypeNode.type.name.value).setOfExtension(extension), opTypeNode); - } - schemaDefinition.sourceAST = schemaNode; - schemaDefinition.description = 'description' in schemaNode ? (_b = schemaNode.description) === null || _b === void 0 ? void 0 : _b.value : undefined; - buildAppliedDirectives(schemaNode, schemaDefinition, extension); - } - function buildAppliedDirectives(elementNode, element, extension) { - var _a; - for (const directive of (_a = elementNode.directives) !== null && _a !== void 0 ? _a : []) { - withNodeAttachedToError(() => { - const d = element.applyDirective(directive.name.value, buildArgs(directive)); - d.setOfExtension(extension); - d.sourceAST = directive; - }, directive); - } - } - function buildArgs(argumentsNode) { - var _a; - const args = Object.create(null); - for (const argNode of (_a = argumentsNode.arguments) !== null && _a !== void 0 ? _a : []) { - args[argNode.name.value] = buildValue(argNode.value); - } - return args; - } - function buildNamedTypeInner(definitionNode, type, extension) { - var _a, _b, _c, _d, _e, _f, _g; - switch (definitionNode.kind) { - case 'ObjectTypeDefinition': - case 'ObjectTypeExtension': - case 'InterfaceTypeDefinition': - case 'InterfaceTypeExtension': - const fieldBasedType = type; - for (const fieldNode of (_a = definitionNode.fields) !== null && _a !== void 0 ? _a : []) { - const field = fieldBasedType.addField(fieldNode.name.value); - field.setOfExtension(extension); - buildFieldDefinitionInner(fieldNode, field); - } - for (const itfNode of (_b = definitionNode.interfaces) !== null && _b !== void 0 ? _b : []) { - withNodeAttachedToError(() => { - const itfName = itfNode.name.value; - if (fieldBasedType.implementsInterface(itfName)) { - throw new graphql_1$5.GraphQLError(`Type ${type} can only implement ${itfName} once.`); - } - fieldBasedType.addImplementedInterface(itfName).setOfExtension(extension); - }, itfNode); - } - break; - case 'UnionTypeDefinition': - case 'UnionTypeExtension': - const unionType = type; - for (const namedType of (_c = definitionNode.types) !== null && _c !== void 0 ? _c : []) { - withNodeAttachedToError(() => { - const name = namedType.name.value; - if (unionType.hasTypeMember(name)) { - throw new graphql_1$5.GraphQLError(`Union type ${unionType} can only include type ${name} once.`); - } - unionType.addType(name).setOfExtension(extension); - }, namedType); - } - break; - case 'EnumTypeDefinition': - case 'EnumTypeExtension': - const enumType = type; - for (const enumVal of (_d = definitionNode.values) !== null && _d !== void 0 ? _d : []) { - const v = enumType.addValue(enumVal.name.value); - v.description = (_e = enumVal.description) === null || _e === void 0 ? void 0 : _e.value; - v.setOfExtension(extension); - buildAppliedDirectives(enumVal, v); - } - break; - case 'InputObjectTypeDefinition': - case 'InputObjectTypeExtension': - const inputObjectType = type; - for (const fieldNode of (_f = definitionNode.fields) !== null && _f !== void 0 ? _f : []) { - const field = inputObjectType.addField(fieldNode.name.value); - field.setOfExtension(extension); - buildInputFieldDefinitionInner(fieldNode, field); - } - break; - } - buildAppliedDirectives(definitionNode, type, extension); - type.description = (_g = definitionNode.description) === null || _g === void 0 ? void 0 : _g.value; - type.sourceAST = definitionNode; - } - function buildFieldDefinitionInner(fieldNode, field) { - var _a, _b; - const type = buildTypeReferenceFromAST(fieldNode.type, field.schema()); - field.type = ensureOutputType(type, field.coordinate, fieldNode); - for (const inputValueDef of (_a = fieldNode.arguments) !== null && _a !== void 0 ? _a : []) { - buildArgumentDefinitionInner(inputValueDef, field.addArgument(inputValueDef.name.value)); - } - buildAppliedDirectives(fieldNode, field); - field.description = (_b = fieldNode.description) === null || _b === void 0 ? void 0 : _b.value; - field.sourceAST = fieldNode; - } - function ensureOutputType(type, what, node) { - if ((0, definitions_1$3.isOutputType)(type)) { - return type; - } - else { - throw new graphql_1$5.GraphQLError(`The type of ${what} must be Output Type but got: ${type}, a ${type.kind}.`, node); - } - } - function ensureInputType(type, what, node) { - if ((0, definitions_1$3.isInputType)(type)) { - return type; - } - else { - throw new graphql_1$5.GraphQLError(`The type of ${what} must be Input Type but got: ${type}, a ${type.kind}.`, node); - } - } - function builtTypeReference(encodedType, schema) { - return buildTypeReferenceFromAST((0, graphql_1$5.parseType)(encodedType), schema); - } - buildSchema$1.builtTypeReference = builtTypeReference; - function buildTypeReferenceFromAST(typeNode, schema) { - switch (typeNode.kind) { - case graphql_1$5.Kind.LIST_TYPE: - return new definitions_1$3.ListType(buildTypeReferenceFromAST(typeNode.type, schema)); - case graphql_1$5.Kind.NON_NULL_TYPE: - const wrapped = buildTypeReferenceFromAST(typeNode.type, schema); - if (wrapped.kind == graphql_1$5.Kind.NON_NULL_TYPE) { - throw new graphql_1$5.GraphQLError(`Cannot apply the non-null operator (!) twice to the same type`, typeNode); - } - return new definitions_1$3.NonNullType(wrapped); - default: - return getReferencedType(typeNode, schema); - } - } - function buildArgumentDefinitionInner(inputNode, arg) { - var _a; - const type = buildTypeReferenceFromAST(inputNode.type, arg.schema()); - arg.type = ensureInputType(type, arg.coordinate, inputNode); - arg.defaultValue = buildValue(inputNode.defaultValue); - buildAppliedDirectives(inputNode, arg); - arg.description = (_a = inputNode.description) === null || _a === void 0 ? void 0 : _a.value; - arg.sourceAST = inputNode; - } - function buildInputFieldDefinitionInner(fieldNode, field) { - var _a; - const type = buildTypeReferenceFromAST(fieldNode.type, field.schema()); - field.type = ensureInputType(type, field.coordinate, fieldNode); - field.defaultValue = buildValue(fieldNode.defaultValue); - buildAppliedDirectives(fieldNode, field); - field.description = (_a = fieldNode.description) === null || _a === void 0 ? void 0 : _a.value; - field.sourceAST = fieldNode; - } - function buildDirectiveDefinitionInner(directiveNode, directive) { - var _a, _b; - for (const inputValueDef of (_a = directiveNode.arguments) !== null && _a !== void 0 ? _a : []) { - buildArgumentDefinitionInner(inputValueDef, directive.addArgument(inputValueDef.name.value)); - } - directive.repeatable = directiveNode.repeatable; - const locations = directiveNode.locations.map(({ value }) => value); - directive.addLocations(...locations); - directive.description = (_b = directiveNode.description) === null || _b === void 0 ? void 0 : _b.value; - directive.sourceAST = directiveNode; - } - - var federation = {}; - - var KnownTypeNamesInFederationRule$1 = {}; - - Object.defineProperty(KnownTypeNamesInFederationRule$1, "__esModule", { value: true }); - KnownTypeNamesInFederationRule$1.KnownTypeNamesInFederationRule = void 0; - const graphql_1$4 = require$$0$2; - const federation_1$1 = federation; - const suggestions_1 = suggestions; - function KnownTypeNamesInFederationRule(context) { - const schema = context.getSchema(); - const existingTypesMap = schema ? schema.getTypeMap() : Object.create(null); - const definedTypes = Object.create(null); - for (const def of context.getDocument().definitions) { - if ((0, graphql_1$4.isTypeDefinitionNode)(def) || (0, graphql_1$4.isTypeExtensionNode)(def)) { - definedTypes[def.name.value] = true; - } - } - const typeNames = Object.keys(existingTypesMap).concat(Object.keys(definedTypes)); - return { - NamedType(node, _1, parent, _2, ancestors) { - var _a; - const typeName = node.name.value; - if (!existingTypesMap[typeName] && !definedTypes[typeName]) { - const definitionNode = (_a = ancestors[2]) !== null && _a !== void 0 ? _a : parent; - const isSDL = definitionNode != null && isSDLNode(definitionNode); - if (isSDL && isStandardTypeName(typeName)) { - return; - } - const suggestedTypes = (0, suggestions_1.suggestionList)(typeName, isSDL ? standardTypeNames.concat(typeNames) : typeNames); - context.reportError(new graphql_1$4.GraphQLError(`Unknown type "${typeName}".` + (0, suggestions_1.didYouMean)(suggestedTypes), node)); - } - }, - }; - } - KnownTypeNamesInFederationRule$1.KnownTypeNamesInFederationRule = KnownTypeNamesInFederationRule; - const standardTypeNames = [...graphql_1$4.specifiedScalarTypes, ...graphql_1$4.introspectionTypes].map((type) => type.name); - function isStandardTypeName(typeName) { - return standardTypeNames.indexOf(typeName) !== -1 || (0, federation_1$1.isFederationTypeName)(typeName); - } - function isSDLNode(value) { - return (!Array.isArray(value) && - ((0, graphql_1$4.isTypeSystemDefinitionNode)(value) || (0, graphql_1$4.isTypeSystemExtensionNode)(value))); - } - - var operations = {}; - - Object.defineProperty(operations, "__esModule", { value: true }); - operations.operationToDocument = operations.parseSelectionSet = operations.parseOperation = operations.operationFromDocument = operations.FragmentSelection = operations.FieldSelection = operations.selectionSetOfPath = operations.selectionOfElement = operations.selectionSetOfElement = operations.SelectionSet = operations.NamedFragments = operations.NamedFragmentDefinition = operations.selectionSetOf = operations.Operation = operations.sameOperationPaths = operations.FragmentElement = operations.Field = void 0; - const graphql_1$3 = require$$0$2; - const definitions_1$2 = definitions; - const utils_1$2 = utils; - const values_1 = values; - function validate(condition, message, sourceAST) { - if (!condition) { - throw new graphql_1$3.GraphQLError(message(), sourceAST); - } - } - function haveSameDirectives(op1, op2) { - if (op1.appliedDirectives.length != op2.appliedDirectives.length) { - return false; - } - for (const thisDirective of op1.appliedDirectives) { - if (!op2.appliedDirectives.some(thatDirective => thisDirective.name === thatDirective.name && (0, values_1.argumentsEquals)(thisDirective.arguments(), thatDirective.arguments()))) { - return false; - } - } - return true; - } - class AbstractOperationElement extends definitions_1$2.DirectiveTargetElement { - constructor(schema, variablesInElement) { - super(schema); - this.variablesInElement = variablesInElement; - } - variables() { - return (0, definitions_1$2.mergeVariables)(this.variablesInElement, this.variablesInAppliedDirectives()); - } - } - class Field extends AbstractOperationElement { - constructor(definition, args = Object.create(null), variableDefinitions = new definitions_1$2.VariableDefinitions(), alias) { - super(definition.schema(), (0, definitions_1$2.variablesInArguments)(args)); - this.definition = definition; - this.args = args; - this.variableDefinitions = variableDefinitions; - this.alias = alias; - this.kind = 'Field'; - this.validate(); - } - get name() { - return this.definition.name; - } - responseName() { - return this.alias ? this.alias : this.name; - } - get parentType() { - return this.definition.parent; - } - withUpdatedDefinition(newDefinition) { - const newField = new Field(newDefinition, this.args, this.variableDefinitions, this.alias); - for (const directive of this.appliedDirectives) { - newField.applyDirective(directive.definition, directive.arguments()); - } - return newField; - } - appliesTo(type) { - const definition = type.field(this.name); - return !!definition && this.selects(definition); - } - selects(definition, assumeValid = false) { - if (definition == this.definition) { - return true; - } - if (this.name !== definition.name) { - return false; - } - for (const argDef of definition.arguments()) { - const appliedValue = this.args[argDef.name]; - if (appliedValue === undefined) { - if (argDef.defaultValue === undefined && !(0, definitions_1$2.isNullableType)(argDef.type)) { - return false; - } - } - else { - if (!assumeValid && !(0, values_1.isValidValue)(appliedValue, argDef, this.variableDefinitions)) { - return false; - } - } - } - if (!assumeValid) { - for (const [name, value] of Object.entries(this.args)) { - if (value !== null && definition.argument(name) === undefined) { - return false; - } - } - } - return true; - } - validate() { - validate(this.name === this.definition.name, () => `Field name "${this.name}" cannot select field "${this.definition.coordinate}: name mismatch"`); - for (const argDef of this.definition.arguments()) { - const appliedValue = this.args[argDef.name]; - if (appliedValue === undefined) { - validate(argDef.defaultValue !== undefined || (0, definitions_1$2.isNullableType)(argDef.type), () => `Missing mandatory value "${argDef.name}" in field selection "${this}"`); - } - else { - validate((0, values_1.isValidValue)(appliedValue, argDef, this.variableDefinitions), () => `Invalid value ${(0, values_1.valueToString)(appliedValue)} for argument "${argDef.coordinate}" of type ${argDef.type}`); - } - } - for (const [name, value] of Object.entries(this.args)) { - validate(value === null || this.definition.argument(name) !== undefined, () => `Unknown argument "${name}" in field application of "${this.name}"`); - } - } - updateForAddingTo(selectionSet) { - const selectionParent = selectionSet.parentType; - const fieldParent = this.definition.parent; - if (selectionParent.name !== fieldParent.name) { - if (this.name === definitions_1$2.typenameFieldName) { - return this.withUpdatedDefinition(selectionParent.typenameField()); - } - validate(!(0, definitions_1$2.isUnionType)(selectionParent) - && (((0, definitions_1$2.isInterfaceType)(fieldParent) && fieldParent.allImplementations().some(i => i.name == selectionParent.name)) - || ((0, definitions_1$2.isObjectType)(fieldParent) && fieldParent.name == selectionParent.name)), () => `Cannot add selection of field "${this.definition.coordinate}" to selection set of parent type "${selectionSet.parentType}"`); - const fieldDef = selectionParent.field(this.name); - validate(fieldDef, () => `Cannot add selection of field "${this.definition.coordinate}" to selection set of parent type "${selectionParent} (that does not declare that type)"`); - return this.withUpdatedDefinition(fieldDef); - } - return this; - } - equals(that) { - if (this === that) { - return true; - } - return that.kind === 'Field' - && this.name === that.name - && this.alias === that.alias - && (0, values_1.argumentsEquals)(this.args, that.args) - && haveSameDirectives(this, that); - } - toString() { - const alias = this.alias ? this.alias + ': ' : ''; - const entries = Object.entries(this.args); - const args = entries.length == 0 - ? '' - : '(' + entries.map(([n, v]) => { var _a; return `${n}: ${(0, values_1.valueToString)(v, (_a = this.definition.argument(n)) === null || _a === void 0 ? void 0 : _a.type)}`; }).join(', ') + ')'; - return alias + this.name + args + this.appliedDirectivesToString(); - } - } - operations.Field = Field; - class FragmentElement extends AbstractOperationElement { - constructor(sourceType, typeCondition) { - super(sourceType.schema(), []); - this.sourceType = sourceType; - this.kind = 'FragmentElement'; - this.typeCondition = typeCondition !== undefined && typeof typeCondition === 'string' - ? this.schema().type(typeCondition) - : typeCondition; - } - get parentType() { - return this.sourceType; - } - withUpdatedSourceType(newSourceType) { - const newFragment = new FragmentElement(newSourceType, this.typeCondition); - for (const directive of this.appliedDirectives) { - newFragment.applyDirective(directive.definition, directive.arguments()); - } - return newFragment; - } - updateForAddingTo(selectionSet) { - const selectionParent = selectionSet.parentType; - const fragmentParent = this.parentType; - const typeCondition = this.typeCondition; - if (selectionParent != fragmentParent) { - validate(!typeCondition || (0, definitions_1$2.runtimeTypesIntersects)(selectionParent, typeCondition), () => `Cannot add fragment of parent type "${this.parentType}" to selection set of parent type "${selectionSet.parentType}"`); - return this.withUpdatedSourceType(selectionParent); - } - return this; - } - equals(that) { - var _a, _b; - if (this === that) { - return true; - } - return that.kind === 'FragmentElement' - && ((_a = this.typeCondition) === null || _a === void 0 ? void 0 : _a.name) === ((_b = that.typeCondition) === null || _b === void 0 ? void 0 : _b.name) - && haveSameDirectives(this, that); - } - toString() { - return '...' + (this.typeCondition ? ' on ' + this.typeCondition : '') + this.appliedDirectivesToString(); - } - } - operations.FragmentElement = FragmentElement; - function sameOperationPaths(p1, p2) { - if (p1 === p2) { - return true; - } - if (p1.length !== p2.length) { - return false; - } - for (let i = 0; i < p1.length; i++) { - if (!p1[i].equals(p2[i])) { - return false; - } - } - return true; - } - operations.sameOperationPaths = sameOperationPaths; - class Operation { - constructor(rootKind, selectionSet, variableDefinitions, name) { - this.rootKind = rootKind; - this.selectionSet = selectionSet; - this.variableDefinitions = variableDefinitions; - this.name = name; - } - optimize(fragments, minUsagesToOptimize = 2) { - if (!fragments) { - return this; - } - let optimizedSelection = this.selectionSet.optimize(fragments); - if (optimizedSelection === this.selectionSet) { - return this; - } - if (minUsagesToOptimize > 1) { - const usages = new Map(); - optimizedSelection.collectUsedFragmentNames(usages); - for (const fragment of fragments.names()) { - if (!usages.has(fragment)) { - usages.set(fragment, 0); - } - } - const toDeoptimize = (0, utils_1$2.mapEntries)(usages).filter(([_, count]) => count < minUsagesToOptimize).map(([name]) => name); - optimizedSelection = optimizedSelection.expandFragments(toDeoptimize); - } - return new Operation(this.rootKind, optimizedSelection, this.variableDefinitions, this.name); - } - expandAllFragments() { - const expandedSelections = this.selectionSet.expandFragments(); - if (expandedSelections === this.selectionSet) { - return this; - } - return new Operation(this.rootKind, expandedSelections, this.variableDefinitions, this.name); - } - toString(expandFragments = false, prettyPrint = true) { - return this.selectionSet.toOperationString(this.rootKind, this.variableDefinitions, this.name, expandFragments, prettyPrint); - } - } - operations.Operation = Operation; - function addDirectiveNodesToElement(directiveNodes, element) { - if (!directiveNodes) { - return; - } - const schema = element.schema(); - for (const node of directiveNodes) { - const directiveDef = schema.directive(node.name.value); - validate(directiveDef, () => `Unknown directive "@${node.name.value}" in selection`); - element.applyDirective(directiveDef, (0, values_1.argumentsFromAST)(directiveDef.coordinate, node.arguments, directiveDef)); - } - } - function selectionSetOf(parentType, selection) { - const selectionSet = new SelectionSet(parentType); - selectionSet.add(selection); - return selectionSet; - } - operations.selectionSetOf = selectionSetOf; - class NamedFragmentDefinition extends definitions_1$2.DirectiveTargetElement { - constructor(schema, name, typeCondition, selectionSet) { - super(schema); - this.name = name; - this.typeCondition = typeCondition; - this.selectionSet = selectionSet; - } - variables() { - return (0, definitions_1$2.mergeVariables)(this.variablesInAppliedDirectives(), this.selectionSet.usedVariables()); - } - collectUsedFragmentNames(collector) { - this.selectionSet.collectUsedFragmentNames(collector); - } - toFragmentDefinitionNode() { - return { - kind: graphql_1$3.Kind.FRAGMENT_DEFINITION, - name: { - kind: graphql_1$3.Kind.NAME, - value: this.name - }, - typeCondition: { - kind: graphql_1$3.Kind.NAMED_TYPE, - name: { - kind: graphql_1$3.Kind.NAME, - value: this.typeCondition.name - } - }, - selectionSet: this.selectionSet.toSelectionSetNode() - }; - } - toString(indent) { - return (indent !== null && indent !== void 0 ? indent : '') + `fragment ${this.name} on ${this.typeCondition}${this.appliedDirectivesToString()} ${this.selectionSet.toString(false, true, indent)}`; - } - } - operations.NamedFragmentDefinition = NamedFragmentDefinition; - class NamedFragments { - constructor() { - this.fragments = new utils_1$2.MapWithCachedArrays(); - } - isEmpty() { - return this.fragments.size === 0; - } - variables() { - let variables = []; - for (const fragment of this.fragments.values()) { - variables = (0, definitions_1$2.mergeVariables)(variables, fragment.variables()); - } - return variables; - } - names() { - return this.fragments.keys(); - } - add(fragment) { - if (this.fragments.has(fragment.name)) { - throw new graphql_1$3.GraphQLError(`Duplicate fragment name '${fragment}'`); - } - this.fragments.set(fragment.name, fragment); - } - addIfNotExist(fragment) { - if (!this.fragments.has(fragment.name)) { - this.fragments.set(fragment.name, fragment); - } - } - onType(type) { - return this.fragments.values().filter(f => f.typeCondition.name === type.name); - } - without(names) { - if (!names.some(n => this.fragments.has(n))) { - return this; - } - const newFragments = new NamedFragments(); - for (const fragment of this.fragments.values()) { - if (!names.includes(fragment.name)) { - const updatedSelection = fragment.selectionSet.expandFragments(names, false); - const newFragment = updatedSelection === fragment.selectionSet - ? fragment - : new NamedFragmentDefinition(fragment.schema(), fragment.name, fragment.typeCondition, updatedSelection); - newFragments.add(newFragment); - } - } - return newFragments; - } - get(name) { - return this.fragments.get(name); - } - definitions() { - return this.fragments.values(); - } - validate() { - for (const fragment of this.fragments.values()) { - fragment.selectionSet.validate(); - } - } - toFragmentDefinitionNodes() { - return this.definitions().map(f => f.toFragmentDefinitionNode()); - } - toString(indent) { - return this.definitions().map(f => f.toString(indent)).join('\n\n'); - } - } - operations.NamedFragments = NamedFragments; - class SelectionSet { - constructor(parentType, fragments) { - this.parentType = parentType; - this.fragments = fragments; - this._selections = new utils_1$2.MultiMap(); - this._selectionCount = 0; - validate(!(0, definitions_1$2.isLeafType)(parentType), () => `Cannot have selection on non-leaf type ${parentType}`); - } - selections(reversedOrder = false) { - if (!this._cachedSelections) { - const selections = new Array(this._selectionCount); - let idx = 0; - for (const byResponseName of this._selections.values()) { - for (const selection of byResponseName) { - selections[idx++] = selection; - } - } - this._cachedSelections = selections; - } - (0, utils_1$2.assert)(this._cachedSelections, 'Cache should have been populated'); - if (reversedOrder) { - const reversed = new Array(this._selectionCount); - for (let i = 0; i < this._selectionCount; i++) { - reversed[i] = this._cachedSelections[this._selectionCount - i - 1]; - } - return reversed; - } - return this._cachedSelections; - } - usedVariables() { - let variables = []; - for (const byResponseName of this._selections.values()) { - for (const selection of byResponseName) { - variables = (0, definitions_1$2.mergeVariables)(variables, selection.usedVariables()); - } - } - if (this.fragments) { - variables = (0, definitions_1$2.mergeVariables)(variables, this.fragments.variables()); - } - return variables; - } - collectUsedFragmentNames(collector) { - if (!this.fragments) { - return; - } - for (const byResponseName of this._selections.values()) { - for (const selection of byResponseName) { - selection.collectUsedFragmentNames(collector); - } - } - } - optimize(fragments) { - if (!fragments || fragments.isEmpty()) { - return this; - } - if (this.fragments && this.fragments.definitions().some(def => fragments.get(def.name))) { - return this; - } - const optimized = new SelectionSet(this.parentType, fragments); - for (const selection of this.selections()) { - optimized.add(selection.optimize(fragments)); - } - return optimized; - } - expandFragments(names, updateSelectionSetFragments = true) { - var _a; - if (!this.fragments) { - return this; - } - if (names && names.length === 0) { - return this; - } - const newFragments = updateSelectionSetFragments - ? (names ? (_a = this.fragments) === null || _a === void 0 ? void 0 : _a.without(names) : undefined) - : this.fragments; - const withExpanded = new SelectionSet(this.parentType, newFragments); - for (const selection of this.selections()) { - withExpanded.add(selection.expandFragments(names, updateSelectionSetFragments)); - } - return withExpanded; - } - mergeIn(selectionSet) { - for (const selection of selectionSet.selections()) { - this.add(selection); - } - } - addAll(selections) { - selections.forEach(s => this.add(s)); - return this; - } - add(selection) { - const toAdd = selection.updateForAddingTo(this); - const key = toAdd.key(); - const existing = this._selections.get(key); - if (existing) { - for (const existingSelection of existing) { - if (existingSelection.kind === toAdd.kind && haveSameDirectives(existingSelection.element(), toAdd.element())) { - if (toAdd.selectionSet) { - existingSelection.selectionSet.mergeIn(toAdd.selectionSet); - } - return existingSelection; - } - } - } - this._selections.add(key, toAdd); - ++this._selectionCount; - this._cachedSelections = undefined; - return selection; - } - addPath(path) { - let previousSelections = this; - let currentSelections = this; - for (const element of path) { - validate(currentSelections, () => `Cannot apply selection ${element} to non-selectable parent type "${previousSelections.parentType}"`); - const mergedSelection = currentSelections.add(selectionOfElement(element)); - previousSelections = currentSelections; - currentSelections = mergedSelection.selectionSet; - } - } - addSelectionSetNode(node, variableDefinitions, fieldAccessor = (type, name) => type.field(name)) { - if (!node) { - return; - } - for (const selectionNode of node.selections) { - this.addSelectionNode(selectionNode, variableDefinitions, fieldAccessor); - } - } - addSelectionNode(node, variableDefinitions, fieldAccessor = (type, name) => type.field(name)) { - this.add(this.nodeToSelection(node, variableDefinitions, fieldAccessor)); - } - nodeToSelection(node, variableDefinitions, fieldAccessor) { - var _a, _b; - let selection; - switch (node.kind) { - case graphql_1$3.Kind.FIELD: - const definition = fieldAccessor(this.parentType, node.name.value); - validate(definition, () => `Cannot query field "${node.name.value}" on type "${this.parentType}".`, this.parentType.sourceAST); - const type = (0, definitions_1$2.baseType)(definition.type); - selection = new FieldSelection(new Field(definition, (0, values_1.argumentsFromAST)(definition.coordinate, node.arguments, definition), variableDefinitions, (_a = node.alias) === null || _a === void 0 ? void 0 : _a.value), (0, definitions_1$2.isLeafType)(type) ? undefined : new SelectionSet(type, this.fragments)); - if (node.selectionSet) { - validate(selection.selectionSet, () => `Unexpected selection set on leaf field "${selection.element()}"`, selection.element().definition.sourceAST); - selection.selectionSet.addSelectionSetNode(node.selectionSet, variableDefinitions, fieldAccessor); - } - break; - case graphql_1$3.Kind.INLINE_FRAGMENT: - const element = new FragmentElement(this.parentType, (_b = node.typeCondition) === null || _b === void 0 ? void 0 : _b.name.value); - selection = new InlineFragmentSelection(element, new SelectionSet(element.typeCondition ? element.typeCondition : element.parentType, this.fragments)); - selection.selectionSet.addSelectionSetNode(node.selectionSet, variableDefinitions, fieldAccessor); - break; - case graphql_1$3.Kind.FRAGMENT_SPREAD: - const fragmentName = node.name.value; - validate(this.fragments, () => `Cannot find fragment name "${fragmentName}" (no fragments were provided)`); - selection = new FragmentSpreadSelection(this.parentType, this.fragments, fragmentName); - break; - } - addDirectiveNodesToElement(node.directives, selection.element()); - return selection; - } - equals(that) { - if (this === that) { - return true; - } - if (this._selections.size !== that._selections.size) { - return false; - } - for (const [key, thisSelections] of this._selections) { - const thatSelections = that._selections.get(key); - if (!thatSelections - || thisSelections.length !== thatSelections.length - || !thisSelections.every(thisSelection => thatSelections.some(thatSelection => thisSelection.equals(thatSelection)))) { - return false; - } - } - return true; - } - contains(that) { - if (this._selections.size < that._selections.size) { - return false; - } - for (const [key, thatSelections] of that._selections) { - const thisSelections = this._selections.get(key); - if (!thisSelections - || (thisSelections.length < thatSelections.length - || !thatSelections.every(thatSelection => thisSelections.some(thisSelection => thisSelection.contains(thatSelection))))) { - return false; - } - } - return true; - } - validate() { - validate(!this.isEmpty(), () => `Invalid empty selection set`); - for (const selection of this.selections()) { - selection.validate(); - const selectionFragments = selection.namedFragments(); - (0, utils_1$2.assert)(!selectionFragments || selectionFragments === this.fragments, () => `Selection fragments (${selectionFragments}) for ${selection} does not match selection set one (${this.fragments})`); - } - } - isEmpty() { - return this._selections.size === 0; - } - toSelectionSetNode() { - if (this.isEmpty()) { - return { - kind: graphql_1$3.Kind.SELECTION_SET, - selections: [{ - kind: graphql_1$3.Kind.FIELD, - name: { - kind: graphql_1$3.Kind.NAME, - value: '...', - }, - }] - }; - } - return { - kind: graphql_1$3.Kind.SELECTION_SET, - selections: Array.from(this.selectionsInPrintOrder(), s => s.toSelectionNode()) - }; - } - selectionsInPrintOrder() { - const typenameSelection = this._selections.get(definitions_1$2.typenameFieldName); - if (typenameSelection) { - return typenameSelection.concat(this.selections().filter(s => s.kind != 'FieldSelection' || s.field.name !== definitions_1$2.typenameFieldName)); - } - else { - return this.selections(); - } - } - toOperationPaths() { - return this.toOperationPathsInternal([]); - } - toOperationPathsInternal(parentPaths) { - return this.selections().flatMap((selection) => { - const updatedPaths = parentPaths.map(path => path.concat(selection.element())); - return selection.selectionSet - ? selection.selectionSet.toOperationPathsInternal(updatedPaths) - : updatedPaths; - }); - } - clone() { - const cloned = new SelectionSet(this.parentType); - for (const selection of this.selections()) { - cloned.add(selection.clone()); - } - return cloned; - } - toOperationString(rootKind, variableDefinitions, operationName, expandFragments = false, prettyPrint = true) { - const indent = prettyPrint ? '' : undefined; - const fragmentsDefinitions = !expandFragments && this.fragments && !this.fragments.isEmpty() - ? this.fragments.toString(indent) + "\n\n" - : ""; - if (rootKind == "query" && !operationName && variableDefinitions.isEmpty()) { - return fragmentsDefinitions + this.toString(expandFragments, true, indent); - } - const nameAndVariables = operationName - ? " " + (operationName + (variableDefinitions.isEmpty() ? "" : variableDefinitions.toString())) - : (variableDefinitions.isEmpty() ? "" : " " + variableDefinitions.toString()); - return fragmentsDefinitions + rootKind + nameAndVariables + " " + this.toString(expandFragments, true, indent); - } - toString(expandFragments = true, includeExternalBrackets = true, indent) { - if (indent === undefined) { - const selectionsToString = this.selections().map(s => s.toString(expandFragments)).join(' '); - return includeExternalBrackets ? '{ ' + selectionsToString + ' }' : selectionsToString; - } - else { - const selectionIndent = includeExternalBrackets ? indent + " " : indent; - const selectionsToString = this.selections().map(s => s.toString(expandFragments, selectionIndent)).join('\n'); - return includeExternalBrackets - ? '{\n' + selectionsToString + '\n' + indent + '}' - : selectionsToString; - } - } - } - operations.SelectionSet = SelectionSet; - function selectionSetOfElement(element, subSelection) { - const selectionSet = new SelectionSet(element.parentType); - selectionSet.add(selectionOfElement(element, subSelection)); - return selectionSet; - } - operations.selectionSetOfElement = selectionSetOfElement; - function selectionOfElement(element, subSelection) { - return element.kind === 'Field' ? new FieldSelection(element, subSelection) : new InlineFragmentSelection(element, subSelection); - } - operations.selectionOfElement = selectionOfElement; - function selectionSetOfPath(path, onPathEnd) { - validate(path.length > 0, () => `Cannot create a selection set from an empty path`); - const last = selectionSetOfElement(path[path.length - 1]); - let current = last; - for (let i = path.length - 2; i >= 0; i--) { - current = selectionSetOfElement(path[i], current); - } - if (onPathEnd) { - onPathEnd(last.selections()[0].selectionSet); - } - return current; - } - operations.selectionSetOfPath = selectionSetOfPath; - class FieldSelection { - constructor(field, initialSelectionSet) { - this.field = field; - this.kind = 'FieldSelection'; - const type = (0, definitions_1$2.baseType)(field.definition.type); - this.selectionSet = (0, definitions_1$2.isLeafType)(type) ? undefined : (initialSelectionSet ? initialSelectionSet : new SelectionSet(type)); - } - key() { - return this.element().responseName(); - } - element() { - return this.field; - } - usedVariables() { - var _a, _b; - return (0, definitions_1$2.mergeVariables)(this.element().variables(), (_b = (_a = this.selectionSet) === null || _a === void 0 ? void 0 : _a.usedVariables()) !== null && _b !== void 0 ? _b : []); - } - collectUsedFragmentNames(collector) { - if (this.selectionSet) { - this.selectionSet.collectUsedFragmentNames(collector); - } - } - optimize(fragments) { - const optimizedSelection = this.selectionSet ? this.selectionSet.optimize(fragments) : undefined; - return this.selectionSet === optimizedSelection - ? this - : new FieldSelection(this.field, optimizedSelection); - } - expandFragments(names, updateSelectionSetFragments = true) { - const expandedSelection = this.selectionSet ? this.selectionSet.expandFragments(names, updateSelectionSetFragments) : undefined; - return this.selectionSet === expandedSelection - ? this - : new FieldSelection(this.field, expandedSelection); - } - fieldArgumentsToAST() { - const entries = Object.entries(this.field.args); - if (entries.length === 0) { - return undefined; - } - return entries.map(([n, v]) => { - return { - kind: graphql_1$3.Kind.ARGUMENT, - name: { kind: graphql_1$3.Kind.NAME, value: n }, - value: (0, values_1.valueToAST)(v, this.field.definition.argument(n).type), - }; - }); - } - validate() { - var _a; - validate(!(this.selectionSet && this.selectionSet.isEmpty()), () => `Invalid empty selection set for field "${this.field.definition.coordinate}" of non-leaf type ${this.field.definition.type}`, this.field.definition.sourceAST); - (_a = this.selectionSet) === null || _a === void 0 ? void 0 : _a.validate(); - } - updateForAddingTo(selectionSet) { - const updatedField = this.field.updateForAddingTo(selectionSet); - return this.field === updatedField ? this : new FieldSelection(updatedField, this.selectionSet); - } - toSelectionNode() { - var _a; - const alias = this.field.alias ? { kind: graphql_1$3.Kind.NAME, value: this.field.alias, } : undefined; - return { - kind: graphql_1$3.Kind.FIELD, - name: { - kind: graphql_1$3.Kind.NAME, - value: this.field.name, - }, - alias, - arguments: this.fieldArgumentsToAST(), - directives: this.element().appliedDirectivesToDirectiveNodes(), - selectionSet: (_a = this.selectionSet) === null || _a === void 0 ? void 0 : _a.toSelectionSetNode() - }; - } - equals(that) { - if (this === that) { - return true; - } - if (!(that instanceof FieldSelection) || !this.field.equals(that.field)) { - return false; - } - if (!this.selectionSet) { - return !that.selectionSet; - } - return !!that.selectionSet && this.selectionSet.equals(that.selectionSet); - } - contains(that) { - if (!(that instanceof FieldSelection) || !this.field.equals(that.field)) { - return false; - } - if (!that.selectionSet) { - return true; - } - return !!this.selectionSet && this.selectionSet.contains(that.selectionSet); - } - namedFragments() { - var _a; - return (_a = this.selectionSet) === null || _a === void 0 ? void 0 : _a.fragments; - } - clone() { - if (!this.selectionSet) { - return this; - } - return new FieldSelection(this.field, this.selectionSet.clone()); - } - toString(expandFragments = true, indent) { - return (indent !== null && indent !== void 0 ? indent : '') + this.field + (this.selectionSet ? ' ' + this.selectionSet.toString(expandFragments, true, indent) : ''); - } - } - operations.FieldSelection = FieldSelection; - class FragmentSelection { - constructor() { - this.kind = 'FragmentSelection'; - } - usedVariables() { - return (0, definitions_1$2.mergeVariables)(this.element().variables(), this.selectionSet.usedVariables()); - } - updateForAddingTo(selectionSet) { - const updatedFragment = this.element().updateForAddingTo(selectionSet); - return this.element() === updatedFragment ? this : new InlineFragmentSelection(updatedFragment, this.selectionSet); - } - equals(that) { - if (this === that) { - return true; - } - return (that instanceof FragmentSelection) - && this.element().equals(that.element()) - && this.selectionSet.equals(that.selectionSet); - } - contains(that) { - return (that instanceof FragmentSelection) - && this.element().equals(that.element()) - && this.selectionSet.contains(that.selectionSet); - } - clone() { - return new InlineFragmentSelection(this.element(), this.selectionSet.clone()); - } - } - operations.FragmentSelection = FragmentSelection; - class InlineFragmentSelection extends FragmentSelection { - constructor(fragmentElement, initialSelectionSet) { - super(); - this.fragmentElement = fragmentElement; - this._selectionSet = initialSelectionSet - ? initialSelectionSet - : new SelectionSet(fragmentElement.typeCondition ? fragmentElement.typeCondition : fragmentElement.parentType); - } - key() { - var _a, _b; - return (_b = (_a = this.element().typeCondition) === null || _a === void 0 ? void 0 : _a.name) !== null && _b !== void 0 ? _b : ''; - } - validate() { - validate(!this.selectionSet.isEmpty(), () => `Invalid empty selection set for fragment "${this.element()}"`); - this.selectionSet.validate(); - } - get selectionSet() { - return this._selectionSet; - } - namedFragments() { - return this.selectionSet.fragments; - } - element() { - return this.fragmentElement; - } - toSelectionNode() { - const typeCondition = this.element().typeCondition; - return { - kind: graphql_1$3.Kind.INLINE_FRAGMENT, - typeCondition: typeCondition - ? { - kind: graphql_1$3.Kind.NAMED_TYPE, - name: { - kind: graphql_1$3.Kind.NAME, - value: typeCondition.name, - }, - } - : undefined, - directives: this.element().appliedDirectivesToDirectiveNodes(), - selectionSet: this.selectionSet.toSelectionSetNode() - }; - } - optimize(fragments) { - const optimizedSelection = this.selectionSet.optimize(fragments); - const typeCondition = this.element().typeCondition; - if (typeCondition) { - for (const candidate of fragments.onType(typeCondition)) { - if (candidate.selectionSet.equals(optimizedSelection)) { - fragments.addIfNotExist(candidate); - return new FragmentSpreadSelection(this.element().parentType, fragments, candidate.name); - } - } - } - return this.selectionSet === optimizedSelection - ? this - : new InlineFragmentSelection(this.fragmentElement, optimizedSelection); - } - expandFragments(names, updateSelectionSetFragments = true) { - const expandedSelection = this.selectionSet.expandFragments(names, updateSelectionSetFragments); - return this.selectionSet === expandedSelection - ? this - : new InlineFragmentSelection(this.element(), expandedSelection); - } - collectUsedFragmentNames(collector) { - this.selectionSet.collectUsedFragmentNames(collector); - } - toString(expandFragments = true, indent) { - return (indent !== null && indent !== void 0 ? indent : '') + this.fragmentElement + ' ' + this.selectionSet.toString(expandFragments, true, indent); - } - } - class FragmentSpreadSelection extends FragmentSelection { - constructor(sourceType, fragments, fragmentName) { - super(); - this.fragments = fragments; - const fragmentDefinition = fragments.get(fragmentName); - validate(fragmentDefinition, () => `Unknown fragment "...${fragmentName}"`); - this.namedFragment = fragmentDefinition; - this._element = new FragmentElement(sourceType, fragmentDefinition.typeCondition); - for (const directive of fragmentDefinition.appliedDirectives) { - this._element.applyDirective(directive.definition, directive.arguments()); - } - } - key() { - return '...' + this.namedFragment.name; - } - element() { - return this._element; - } - namedFragments() { - return this.fragments; - } - get selectionSet() { - return this.namedFragment.selectionSet; - } - validate() { - } - toSelectionNode() { - const spreadDirectives = this.spreadDirectives(); - const directiveNodes = spreadDirectives.length === 0 - ? undefined - : spreadDirectives.map(directive => { - return { - kind: graphql_1$3.Kind.DIRECTIVE, - name: { - kind: graphql_1$3.Kind.NAME, - value: directive.name, - }, - arguments: directive.argumentsToAST() - }; - }); - return { - kind: graphql_1$3.Kind.FRAGMENT_SPREAD, - name: { kind: graphql_1$3.Kind.NAME, value: this.namedFragment.name }, - directives: directiveNodes, - }; - } - optimize(_) { - return this; - } - expandFragments(names, updateSelectionSetFragments = true) { - if (names && !names.includes(this.namedFragment.name)) { - return this; - } - return new InlineFragmentSelection(this._element, this.selectionSet.expandFragments(names, updateSelectionSetFragments)); - } - collectUsedFragmentNames(collector) { - this.selectionSet.collectUsedFragmentNames(collector); - const usageCount = collector.get(this.namedFragment.name); - collector.set(this.namedFragment.name, usageCount === undefined ? 1 : usageCount + 1); - } - spreadDirectives() { - return this._element.appliedDirectives.slice(this.namedFragment.appliedDirectives.length); - } - toString(expandFragments = true, indent) { - if (expandFragments) { - return (indent !== null && indent !== void 0 ? indent : '') + this._element + ' ' + this.selectionSet.toString(true, true, indent); - } - else { - const directives = this.spreadDirectives(); - const directiveString = directives.length == 0 ? '' : ' ' + directives.join(' '); - return (indent !== null && indent !== void 0 ? indent : '') + '...' + this.namedFragment.name + directiveString; - } - } - } - function operationFromDocument(schema, document, operationName) { - let operation; - const fragments = new NamedFragments(); - document.definitions.forEach(definition => { - switch (definition.kind) { - case graphql_1$3.Kind.OPERATION_DEFINITION: - validate(!operation || operationName, () => 'Must provide operation name if query contains multiple operations.'); - if (!operationName || (definition.name && definition.name.value === operationName)) { - operation = definition; - } - break; - case graphql_1$3.Kind.FRAGMENT_DEFINITION: - const name = definition.name.value; - const typeName = definition.typeCondition.name.value; - const typeCondition = schema.type(typeName); - if (!typeCondition) { - throw new graphql_1$3.GraphQLError(`Unknown type "${typeName}" for fragment "${name}"`, definition); - } - if (!(0, definitions_1$2.isCompositeType)(typeCondition)) { - throw new graphql_1$3.GraphQLError(`Invalid fragment "${name}" on non-composite type "${typeName}"`, definition); - } - const fragment = new NamedFragmentDefinition(schema, name, typeCondition, new SelectionSet(typeCondition, fragments)); - addDirectiveNodesToElement(definition.directives, fragment); - fragments.add(fragment); - break; - } - }); - validate(operation, () => operationName ? `Unknown operation named "${operationName}"` : 'No operation found in provided document.'); - const variableDefinitions = operation.variableDefinitions - ? (0, definitions_1$2.variableDefinitionsFromAST)(schema, operation.variableDefinitions) - : new definitions_1$2.VariableDefinitions(); - document.definitions.forEach(definition => { - switch (definition.kind) { - case graphql_1$3.Kind.FRAGMENT_DEFINITION: - const fragment = fragments.get(definition.name.value); - fragment.selectionSet.addSelectionSetNode(definition.selectionSet, variableDefinitions); - break; - } - }); - fragments.validate(); - return operationFromAST(schema, operation, fragments); - } - operations.operationFromDocument = operationFromDocument; - function operationFromAST(schema, operation, fragments) { - var _a; - const rootType = schema.schemaDefinition.root(operation.operation); - validate(rootType, () => `The schema has no "${operation.operation}" root type defined`); - const variableDefinitions = operation.variableDefinitions ? (0, definitions_1$2.variableDefinitionsFromAST)(schema, operation.variableDefinitions) : new definitions_1$2.VariableDefinitions(); - return new Operation(operation.operation, parseSelectionSet(rootType.type, operation.selectionSet, variableDefinitions, fragments), variableDefinitions, (_a = operation.name) === null || _a === void 0 ? void 0 : _a.value); - } - function parseOperation(schema, operation, operationName) { - return operationFromDocument(schema, (0, graphql_1$3.parse)(operation), operationName); - } - operations.parseOperation = parseOperation; - function parseSelectionSet(parentType, source, variableDefinitions = new definitions_1$2.VariableDefinitions(), fragments, fieldAccessor = (type, name) => type.field(name)) { - const node = typeof source === 'string' - ? parseOperationAST(source.trim().startsWith('{') ? source : `{${source}}`).selectionSet - : source; - const selectionSet = new SelectionSet(parentType, fragments); - selectionSet.addSelectionSetNode(node, variableDefinitions, fieldAccessor); - selectionSet.validate(); - return selectionSet; - } - operations.parseSelectionSet = parseSelectionSet; - function parseOperationAST(source) { - const parsed = (0, graphql_1$3.parse)(source); - validate(parsed.definitions.length === 1, () => 'Selections should contain a single definitions, found ' + parsed.definitions.length); - const def = parsed.definitions[0]; - validate(def.kind === graphql_1$3.Kind.OPERATION_DEFINITION, () => 'Expected an operation definition but got a ' + def.kind); - return def; - } - function operationToDocument(operation) { - var _a; - const operationAST = { - kind: graphql_1$3.Kind.OPERATION_DEFINITION, - operation: operation.rootKind, - selectionSet: operation.selectionSet.toSelectionSetNode(), - variableDefinitions: operation.variableDefinitions.toVariableDefinitionNodes(), - }; - const fragmentASTs = operation.selectionSet.fragments - ? (_a = operation.selectionSet.fragments) === null || _a === void 0 ? void 0 : _a.toFragmentDefinitionNodes() - : []; - return { - kind: graphql_1$3.Kind.DOCUMENT, - definitions: [operationAST].concat(fragmentASTs), - }; - } - operations.operationToDocument = operationToDocument; - - var tagSpec = {}; - - var error = {}; - - (function (exports) { - Object.defineProperty(exports, "__esModule", { value: true }); - exports.REMOVED_ERRORS = exports.ERRORS = exports.ERROR_CATEGORIES = exports.errorCodeDef = exports.errorCode = void 0; - const graphql_1 = require$$0$2; - const utils_1 = utils; - const FED1_CODE = '0.x'; - const makeCodeDefinition = (code, description, metadata = DEFAULT_METADATA) => ({ - code, - description, - metadata, - err: ({ message, nodes, source, positions, path, originalError, extensions, }) => new graphql_1.GraphQLError(message, nodes, source, positions, path, originalError, { - ...extensions, - code, - }), - }); - const DEFAULT_METADATA = { addedIn: '2.0.0' }; - const makeErrorCodeCategory = (extractCode, makeDescription, metadata = DEFAULT_METADATA) => ({ - createCode: (element) => { - return makeCodeDefinition(extractCode(element), makeDescription(element), metadata); - }, - get: (element) => { - const def = codeDefByCode[extractCode(element)]; - (0, utils_1.assert)(def, `Unexpected element: ${element}`); - return def; - } - }); - const makeFederationDirectiveErrorCodeCategory = (codeSuffix, makeDescription, metadata = DEFAULT_METADATA) => makeErrorCodeCategory((directive) => `${directive.toLocaleUpperCase()}_${codeSuffix}`, makeDescription, metadata); - function errorCode(e) { - if (!('code' in e.extensions)) { - return undefined; - } - return e.extensions.code; - } - exports.errorCode = errorCode; - function errorCodeDef(e) { - const code = typeof e === 'string' ? e : errorCode(e); - return code ? codeDefByCode[code] : undefined; - } - exports.errorCodeDef = errorCodeDef; - const INVALID_GRAPHQL = makeCodeDefinition('INVALID_GRAPHQL', 'A schema is invalid GraphQL: it violates one of the rule of the specification.'); - const TAG_DEFINITION_INVALID = makeCodeDefinition('TAG_DIRECTIVE_DEFINITION_INVALID', 'The @tag directive has an invalid defintion in the schema.', { addedIn: FED1_CODE }); - const FIELDS_HAS_ARGS = makeFederationDirectiveErrorCodeCategory('FIELDS_HAS_ARGS', (directive) => `The \`fields\` argument of a \`@${directive}\` directive includes a field defined with arguments (which is not currently supported).`); - const KEY_FIELDS_HAS_ARGS = FIELDS_HAS_ARGS.createCode('key'); - const PROVIDES_FIELDS_HAS_ARGS = FIELDS_HAS_ARGS.createCode('provides'); - const REQUIRES_FIELDS_HAS_ARGS = FIELDS_HAS_ARGS.createCode('requires'); - const DIRECTIVE_FIELDS_MISSING_EXTERNAL = makeFederationDirectiveErrorCodeCategory('FIELDS_MISSING_EXTERNAL', (directive) => `The \`fields\` argument of a \`@${directive}\` directive includes a field that is not marked as \`@external\`.`, { addedIn: FED1_CODE }); - const PROVIDES_MISSING_EXTERNAL = DIRECTIVE_FIELDS_MISSING_EXTERNAL.createCode('provides'); - const REQUIRES_MISSING_EXTERNAL = DIRECTIVE_FIELDS_MISSING_EXTERNAL.createCode('requires'); - const DIRECTIVE_UNSUPPORTED_ON_INTERFACE = makeFederationDirectiveErrorCodeCategory('UNSUPPORTED_ON_INTERFACE', (directive) => `A \`@${directive}\` directive is used on an interface, which is not (yet) supported.`); - const KEY_UNSUPPORTED_ON_INTERFACE = DIRECTIVE_UNSUPPORTED_ON_INTERFACE.createCode('key'); - const PROVIDES_UNSUPPORTED_ON_INTERFACE = DIRECTIVE_UNSUPPORTED_ON_INTERFACE.createCode('provides'); - const REQUIRES_UNSUPPORTED_ON_INTERFACE = DIRECTIVE_UNSUPPORTED_ON_INTERFACE.createCode('requires'); - const EXTERNAL_UNUSED = makeCodeDefinition('EXTERNAL_UNUSED', 'An `@external` field is not being used by any instance of `@key`, `@requires`, `@provides` or to satisfy an interface implememtation.', { addedIn: FED1_CODE }); - const PROVIDES_ON_NON_OBJECT_FIELD = makeCodeDefinition('PROVIDES_ON_NON_OBJECT_FIELD', 'A `@provides` directive is used to mark a field whose base type is not an object type.'); - const DIRECTIVE_INVALID_FIELDS_TYPE = makeFederationDirectiveErrorCodeCategory('INVALID_FIELDS_TYPE', (directive) => `The value passed to the \`fields\` argument of a \`@${directive}\` directive is not a string.`); - const KEY_INVALID_FIELDS_TYPE = DIRECTIVE_INVALID_FIELDS_TYPE.createCode('key'); - const PROVIDES_INVALID_FIELDS_TYPE = DIRECTIVE_INVALID_FIELDS_TYPE.createCode('provides'); - const REQUIRES_INVALID_FIELDS_TYPE = DIRECTIVE_INVALID_FIELDS_TYPE.createCode('requires'); - const DIRECTIVE_INVALID_FIELDS = makeFederationDirectiveErrorCodeCategory('INVALID_FIELDS', (directive) => `The \`fields\` argument of a \`@${directive}\` directive is invalid (it has invalid syntax, includes unknown fields, ...).`); - const KEY_INVALID_FIELDS = DIRECTIVE_INVALID_FIELDS.createCode('key'); - const PROVIDES_INVALID_FIELDS = DIRECTIVE_INVALID_FIELDS.createCode('provides'); - const REQUIRES_INVALID_FIELDS = DIRECTIVE_INVALID_FIELDS.createCode('requires'); - const KEY_FIELDS_SELECT_INVALID_TYPE = makeCodeDefinition('KEY_FIELDS_SELECT_INVALID_TYPE', 'The `fields` argument of `@key` directive includes a field whose type is a list, interface, or union type. Fields of these types cannot be part of a `@key`', { addedIn: FED1_CODE }); - const ROOT_TYPE_USED = makeErrorCodeCategory((kind) => `ROOT_${kind.toLocaleUpperCase()}_USED`, (kind) => `A subgraph's schema defines a type with the name \`${kind}\`, while also specifying a _different_ type name as the root query object. This is not allowed.`, { addedIn: FED1_CODE }); - const ROOT_QUERY_USED = ROOT_TYPE_USED.createCode('query'); - const ROOT_MUTATION_USED = ROOT_TYPE_USED.createCode('mutation'); - const ROOT_SUBSCRIPTION_USED = ROOT_TYPE_USED.createCode('subscription'); - const INVALID_SUBGRAPH_NAME = makeCodeDefinition('INVALID_SUBGRAPH_NAME', 'A subgraph name is invalid (subgraph names cannot be a single underscore ("_")).'); - const NO_QUERIES = makeCodeDefinition('NO_QUERIES', 'None of the composed subgraphs expose any query.'); - const INTERFACE_FIELD_NO_IMPLEM = makeCodeDefinition('INTERFACE_FIELD_NO_IMPLEM', 'After subgraph merging, an implemenation is missing a field of one of the interface it implements (which can happen for valid subgraphs).'); - const TYPE_KIND_MISMATCH = makeCodeDefinition('TYPE_KIND_MISMATCH', 'A type has the same name in different subgraphs, but a different kind. For instance, one definition is an object type but another is an interface.', { ...DEFAULT_METADATA, replaces: ['VALUE_TYPE_KIND_MISMATCH', 'EXTENSION_OF_WRONG_KIND', 'ENUM_MISMATCH_TYPE'] }); - const EXTERNAL_TYPE_MISMATCH = makeCodeDefinition('EXTERNAL_TYPE_MISMATCH', 'An `@external` field has a type that is incompatible with the declaration(s) of that field in other subgraphs.', { addedIn: FED1_CODE }); - const EXTERNAL_ARGUMENT_MISSING = makeCodeDefinition('EXTERNAL_ARGUMENT_MISSING', 'An `@external` field is missing some arguments present in the declaration(s) of that field in other subgraphs.'); - const EXTERNAL_ARGUMENT_TYPE_MISMATCH = makeCodeDefinition('EXTERNAL_ARGUMENT_TYPE_MISMATCH', 'An `@external` field declares an argument with a type that is incompatible with the corresponding argument in the declaration(s) of that field in other subgtaphs.'); - const EXTERNAL_ARGUMENT_DEFAULT_MISMATCH = makeCodeDefinition('EXTERNAL_ARGUMENT_DEFAULT_MISMATCH', 'An `@external` field declares an argument with a default that is incompatible with the corresponding argument in the declaration(s) of that field in other subgtaphs.'); - const FIELD_TYPE_MISMATCH = makeCodeDefinition('FIELD_TYPE_MISMATCH', 'A field has a type that is incompatible with other declarations of that field in other subgraphs.', { ...DEFAULT_METADATA, replaces: ['VALUE_TYPE_FIELD_TYPE_MISMATCH'] }); - const ARGUMENT_TYPE_MISMATCH = makeCodeDefinition('FIELD_ARGUMENT_TYPE_MISMATCH', 'An argument (of a field/directive) has a type that is incompatible with that of other declarations of that same argument in other subgraphs.', { ...DEFAULT_METADATA, replaces: ['VALUE_TYPE_INPUT_VALUE_MISMATCH'] }); - const INPUT_FIELD_DEFAULT_MISMATCH = makeCodeDefinition('INPUT_FIELD_DEFAULT_MISMATCH', 'An input field has a default value that is incompatible with other declarations of that field in other subgraphs.'); - const ARGUMENT_DEFAULT_MISMATCH = makeCodeDefinition('FIELD_ARGUMENT_DEFAULT_MISMATCH', 'An argument (of a field/directive) has a default value that is incompatible with that of other declarations of that same argument in other subgraphs.'); - const EXTENSION_WITH_NO_BASE = makeCodeDefinition('EXTENSION_WITH_NO_BASE', 'A subgraph is attempting to `extend` a type that is not originally defined in any known subgraph.', { addedIn: FED1_CODE }); - const EXTERNAL_MISSING_ON_BASE = makeCodeDefinition('EXTERNAL_MISSING_ON_BASE', 'A field is marked as `@external` in a subgraph but with no non-external declaration in any other subgraph.', { addedIn: FED1_CODE }); - const INTERFACE_FIELD_IMPLEM_TYPE_MISMATCH = makeCodeDefinition('INTERFACE_FIELD_IMPLEM_TYPE_MISMATCH', 'For an interface field, some of its concrete implementations have @external or @requires and there is difference in those implementations return type (which is currently not supported; see https://github.com/apollographql/federation/issues/1257)'); - const SATISFIABILITY_ERROR = makeCodeDefinition('SATISFIABILITY_ERROR', 'Subgraphs can be merged, but the resulting supergraph API would have queries that cannot be satisfied by those subgraphs.'); - exports.ERROR_CATEGORIES = { - DIRECTIVE_FIELDS_MISSING_EXTERNAL, - DIRECTIVE_UNSUPPORTED_ON_INTERFACE, - DIRECTIVE_INVALID_FIELDS_TYPE, - DIRECTIVE_INVALID_FIELDS, - FIELDS_HAS_ARGS, - ROOT_TYPE_USED, - }; - exports.ERRORS = { - INVALID_GRAPHQL, - TAG_DEFINITION_INVALID, - KEY_FIELDS_HAS_ARGS, - PROVIDES_FIELDS_HAS_ARGS, - REQUIRES_FIELDS_HAS_ARGS, - PROVIDES_MISSING_EXTERNAL, - REQUIRES_MISSING_EXTERNAL, - KEY_UNSUPPORTED_ON_INTERFACE, - PROVIDES_UNSUPPORTED_ON_INTERFACE, - REQUIRES_UNSUPPORTED_ON_INTERFACE, - EXTERNAL_UNUSED, - PROVIDES_ON_NON_OBJECT_FIELD, - KEY_INVALID_FIELDS_TYPE, - PROVIDES_INVALID_FIELDS_TYPE, - REQUIRES_INVALID_FIELDS_TYPE, - KEY_INVALID_FIELDS, - PROVIDES_INVALID_FIELDS, - REQUIRES_INVALID_FIELDS, - KEY_FIELDS_SELECT_INVALID_TYPE, - ROOT_QUERY_USED, - ROOT_MUTATION_USED, - ROOT_SUBSCRIPTION_USED, - INVALID_SUBGRAPH_NAME, - NO_QUERIES, - INTERFACE_FIELD_NO_IMPLEM, - TYPE_KIND_MISMATCH, - EXTERNAL_TYPE_MISMATCH, - EXTERNAL_ARGUMENT_MISSING, - EXTERNAL_ARGUMENT_TYPE_MISMATCH, - EXTERNAL_ARGUMENT_DEFAULT_MISMATCH, - FIELD_TYPE_MISMATCH, - ARGUMENT_TYPE_MISMATCH, - INPUT_FIELD_DEFAULT_MISMATCH, - ARGUMENT_DEFAULT_MISMATCH, - EXTENSION_WITH_NO_BASE, - EXTERNAL_MISSING_ON_BASE, - INTERFACE_FIELD_IMPLEM_TYPE_MISMATCH, - SATISFIABILITY_ERROR, - }; - const codeDefByCode = Object.values(exports.ERRORS).reduce((obj, codeDef) => { obj[codeDef.code] = codeDef; return obj; }, {}); - exports.REMOVED_ERRORS = [ - ['KEY_FIELDS_MISSING_ON_BASE', 'Keys can now use any field from any other subgraph.'], - ['KEY_FIELDS_MISSING_EXTERNAL', 'Using `@external` for key fields is now decouraged, unless the field is truly meant to be external.'], - ['KEY_MISSING_ON_BASE', 'Each subgraph is now free to declare a key only if it needs it.'], - ['MULTIPLE_KEYS_ON_EXTENSION', 'Every subgraph can have multiple keys, as necessary.'], - ['KEY_NOT_SPECIFIED', 'Each subgraph can declare key independently of any other subgraph.'], - ['EXTERNAL_USED_ON_BASE', 'As there is not type ownership anymore, there is also no particular limitation as to where a field can be external.'], - ['PROVIDES_NOT_ON_ENTITY', '@provides can now be used on any type.'], - ['REQUIRES_FIELDS_MISSING_ON_BASE', 'Fields in @requires can now be from any subgraph.'], - ['REQUIRES_USED_ON_BASE', 'As there is not type ownership anymore, there is also no particular limitation as to which subgraph can use a @requires.'], - ['DUPLICATE_SCALAR_DEFINITION', 'As duplicate scalar definitions is invalid GraphQL, this will now be an error with code `INVALID_GRAPHQL`'], - ['DUPLICATE_ENUM_DEFINITION', 'As duplicate enum definitions is invalid GraphQL, this will now be an error with code `INVALID_GRAPHQL`'], - ['DUPLICATE_ENUM_VALUE', 'As duplicate enum values is invalid GraphQL, this will now be an error with code `INVALID_GRAPHQL`'], - ['ENUM_MISMATCH', 'Subgraph definitions for an enum are now merged by composition'], - ['VALUE_TYPE_NO_ENTITY', 'There is no strong different between entity and value types in the model (they are just usage pattern) and a type can have keys in one subgraph but not another.'], - ['VALUE_TYPE_UNION_TYPES_MISMATCH', 'Subgraph definitions for an union are now merged by composition'], - ['PROVIDES_FIELDS_SELECT_INVALID_TYPE', '@provides can now be used on field of interface, union and list types'], - ['RESERVED_FIELD_USED', 'This error was previously not correctly enforced: the _service and _entities, if present, were overriden; this is still the case'], - ]; - - }(error)); - - (function (exports) { - Object.defineProperty(exports, "__esModule", { value: true }); - exports.TAG_VERSIONS = exports.TagSpecDefinition = exports.tagLocations = exports.tagIdentity = void 0; - const graphql_1 = require$$0$2; - const coreSpec_1 = coreSpec; - const definitions_1 = definitions; - const error_1 = error; - const types_1 = types; - const utils_1 = utils; - exports.tagIdentity = 'https://specs.apollo.dev/tag'; - exports.tagLocations = [ - graphql_1.DirectiveLocation.FIELD_DEFINITION, - graphql_1.DirectiveLocation.OBJECT, - graphql_1.DirectiveLocation.INTERFACE, - graphql_1.DirectiveLocation.UNION, - ]; - const printedTagDefinition = 'directive @tag(name: String!) repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION'; - class TagSpecDefinition extends coreSpec_1.FeatureDefinition { - constructor(version) { - super(new coreSpec_1.FeatureUrl(exports.tagIdentity, 'tag', version)); - } - addElementsToSchema(schema) { - const directive = this.addDirective(schema, 'tag').addLocations(...exports.tagLocations); - directive.addArgument("name", new definitions_1.NonNullType(schema.stringType())); - } - tagDirective(schema) { - return this.directive(schema, 'tag'); - } - checkCompatibleDirective(definition) { - (0, utils_1.assert)(definition.name === 'tag', () => `This method should not have been called on directive named ${definition.name}`); - const hasUnknownArguments = Object.keys(definition.arguments()).length > 1; - const nameArg = definition.argument('name'); - const hasValidNameArg = nameArg && (0, types_1.sameType)(nameArg.type, new definitions_1.NonNullType(definition.schema().stringType())); - const hasValidLocations = definition.locations.every(loc => exports.tagLocations.includes(loc)); - if (hasUnknownArguments || !hasValidNameArg || !hasValidLocations) { - return error_1.ERRORS.TAG_DEFINITION_INVALID.err({ - message: `Found invalid @tag directive definition. Please ensure the directive definition in your schema's definitions matches the following:\n\t${printedTagDefinition}`, - }); - } - return undefined; - } - } - exports.TagSpecDefinition = TagSpecDefinition; - exports.TAG_VERSIONS = new coreSpec_1.FeatureDefinitions(exports.tagIdentity) - .add(new TagSpecDefinition(new coreSpec_1.FeatureVersion(0, 1))); - - }(tagSpec)); - - (function (exports) { - Object.defineProperty(exports, "__esModule", { value: true }); - exports.ExternalTester = exports.addSubgraphToError = exports.addSubgraphToASTNode = exports.Subgraph = exports.Subgraphs = exports.subgraphsFromServiceList = exports.parseFieldSetArgument = exports.buildSubgraph = exports.isEntityType = exports.isFederationDirective = exports.isFederationField = exports.isFederationTypeName = exports.isFederationType = exports.isFederationSubgraphSchema = exports.federationBuiltIns = exports.FederationBuiltIns = exports.FEDERATION_RESERVED_SUBGRAPH_NAME = exports.entitiesFieldName = exports.serviceFieldName = exports.tagDirectiveName = exports.providesDirectiveName = exports.requiresDirectiveName = exports.externalDirectiveName = exports.extendsDirectiveName = exports.keyDirectiveName = exports.fieldSetTypeName = exports.anyTypeName = exports.serviceTypeName = exports.entityTypeName = void 0; - const definitions_1 = definitions; - const utils_1 = utils; - const specifiedRules_1 = require$$2$1; - const graphql_1 = require$$0$2; - const print_1 = print; - const KnownTypeNamesInFederationRule_1 = KnownTypeNamesInFederationRule$1; - const buildSchema_1 = buildSchema$1; - const operations_1 = operations; - const tagSpec_1 = tagSpec; - const error_1 = error; - exports.entityTypeName = '_Entity'; - exports.serviceTypeName = '_Service'; - exports.anyTypeName = '_Any'; - exports.fieldSetTypeName = '_FieldSet'; - exports.keyDirectiveName = 'key'; - exports.extendsDirectiveName = 'extends'; - exports.externalDirectiveName = 'external'; - exports.requiresDirectiveName = 'requires'; - exports.providesDirectiveName = 'provides'; - exports.tagDirectiveName = 'tag'; - exports.serviceFieldName = '_service'; - exports.entitiesFieldName = '_entities'; - const tagSpec$1 = tagSpec_1.TAG_VERSIONS.latest(); - exports.FEDERATION_RESERVED_SUBGRAPH_NAME = '_'; - const FEDERATION_TYPES = [ - exports.entityTypeName, - exports.serviceTypeName, - exports.anyTypeName, - exports.fieldSetTypeName - ]; - const FEDERATION_DIRECTIVES = [ - exports.keyDirectiveName, - exports.extendsDirectiveName, - exports.externalDirectiveName, - exports.requiresDirectiveName, - exports.providesDirectiveName, - exports.tagDirectiveName - ]; - const FEDERATION_ROOT_FIELDS = [ - exports.serviceFieldName, - exports.entitiesFieldName - ]; - const FEDERATION_OMITTED_VALIDATION_RULES = [ - graphql_1.PossibleTypeExtensionsRule, - graphql_1.KnownTypeNamesRule - ]; - const FEDERATION_SPECIFIC_VALIDATION_RULES = [ - KnownTypeNamesInFederationRule_1.KnownTypeNamesInFederationRule - ]; - const FEDERATION_VALIDATION_RULES = specifiedRules_1.specifiedSDLRules.filter(rule => !FEDERATION_OMITTED_VALIDATION_RULES.includes(rule)).concat(FEDERATION_SPECIFIC_VALIDATION_RULES); - function validateFieldSetSelections(directiveName, selectionSet, hasExternalInParents, externalTester, externalFieldCoordinatesCollector, allowOnNonExternalLeafFields) { - for (const selection of selectionSet.selections()) { - if (selection.kind === 'FieldSelection') { - const field = selection.element().definition; - const isExternal = externalTester.isExternal(field); - if (isExternal) { - externalFieldCoordinatesCollector.push(field.coordinate); - } - if (field.hasArguments()) { - throw error_1.ERROR_CATEGORIES.FIELDS_HAS_ARGS.get(directiveName).err({ - message: `field ${field.coordinate} cannot be included because it has arguments (fields with argument are not allowed in @${directiveName})`, - nodes: field.sourceAST - }); - } - const mustBeExternal = !selection.selectionSet && !allowOnNonExternalLeafFields && !hasExternalInParents; - if (!isExternal && mustBeExternal) { - const errorCode = error_1.ERROR_CATEGORIES.DIRECTIVE_FIELDS_MISSING_EXTERNAL.get(directiveName); - if (externalTester.isFakeExternal(field)) { - throw errorCode.err({ - message: `field "${field.coordinate}" should not be part of a @${directiveName} since it is already "effectively" provided by this subgraph ` - + `(while it is marked @${exports.externalDirectiveName}, it is a @${exports.keyDirectiveName} field of an extension type, which are not internally considered external for historical/backward compatibility reasons)`, - nodes: field.sourceAST - }); - } - else { - throw errorCode.err({ - message: `field "${field.coordinate}" should not be part of a @${directiveName} since it is already provided by this subgraph (it is not marked @${exports.externalDirectiveName})`, - nodes: field.sourceAST - }); - } - } - if (selection.selectionSet) { - let newHasExternalInParents = hasExternalInParents || isExternal; - const parentType = field.parent; - if (!newHasExternalInParents && (0, definitions_1.isInterfaceType)(parentType)) { - for (const implem of parentType.possibleRuntimeTypes()) { - const fieldInImplem = implem.field(field.name); - if (fieldInImplem && externalTester.isExternal(fieldInImplem)) { - newHasExternalInParents = true; - break; - } - } - } - validateFieldSetSelections(directiveName, selection.selectionSet, newHasExternalInParents, externalTester, externalFieldCoordinatesCollector, allowOnNonExternalLeafFields); - } - } - else { - validateFieldSetSelections(directiveName, selection.selectionSet, hasExternalInParents, externalTester, externalFieldCoordinatesCollector, allowOnNonExternalLeafFields); - } - } - } - function validateFieldSet(type, directive, externalTester, externalFieldCoordinatesCollector, allowOnNonExternalLeafFields, onFields) { - var _a; - try { - const fieldAcessor = onFields - ? (type, fieldName) => { - const field = type.field(fieldName); - if (field) { - onFields(field); - } - return field; - } - : undefined; - const selectionSet = parseFieldSetArgument(type, directive, fieldAcessor); - try { - validateFieldSetSelections(directive.name, selectionSet, false, externalTester, externalFieldCoordinatesCollector, allowOnNonExternalLeafFields); - return undefined; - } - catch (e) { - if (!(e instanceof graphql_1.GraphQLError)) { - throw e; - } - const nodes = (0, definitions_1.sourceASTs)(directive); - if (e.nodes) { - nodes.push(...e.nodes); - } - const codeDef = (_a = (0, error_1.errorCodeDef)(e)) !== null && _a !== void 0 ? _a : error_1.ERROR_CATEGORIES.DIRECTIVE_INVALID_FIELDS.get(directive.name); - return codeDef.err({ - message: `${fieldSetErrorDescriptor(directive)}: ${e.message.trim()}`, - nodes, - originalError: e, - }); - } - } - catch (e) { - if (e instanceof graphql_1.GraphQLError) { - return e; - } - else { - throw e; - } - } - } - function fieldSetErrorDescriptor(directive) { - return `On ${fieldSetTargetDescription(directive)}, for ${directiveStrUsingASTIfPossible(directive)}`; - } - function directiveStrUsingASTIfPossible(directive) { - return directive.sourceAST ? (0, graphql_1.print)(directive.sourceAST) : directive.toString(); - } - function fieldSetTargetDescription(directive) { - var _a; - const targetKind = directive.parent instanceof definitions_1.FieldDefinition ? "field" : "type"; - return `${targetKind} "${(_a = directive.parent) === null || _a === void 0 ? void 0 : _a.coordinate}"`; - } - function validateAllFieldSet(definition, targetTypeExtractor, errorCollector, externalTester, externalFieldCoordinatesCollector, isOnParentType, allowOnNonExternalLeafFields, onFields) { - for (const application of definition.applications()) { - const elt = application.parent; - const type = targetTypeExtractor(elt); - const parentType = isOnParentType ? type : elt.parent; - if ((0, definitions_1.isInterfaceType)(parentType)) { - const code = error_1.ERROR_CATEGORIES.DIRECTIVE_UNSUPPORTED_ON_INTERFACE.get(definition.name); - errorCollector.push(code.err({ - message: isOnParentType - ? `Cannot use ${definition.coordinate} on interface "${parentType.coordinate}": ${definition.coordinate} is not yet supported on interfaces` - : `Cannot use ${definition.coordinate} on ${fieldSetTargetDescription(application)} of parent type "${parentType}": ${definition.coordinate} is not yet supported within interfaces`, - nodes: (0, definitions_1.sourceASTs)(application).concat(isOnParentType ? [] : (0, definitions_1.sourceASTs)(type)), - })); - } - const error = validateFieldSet(type, application, externalTester, externalFieldCoordinatesCollector, allowOnNonExternalLeafFields, onFields); - if (error) { - errorCollector.push(error); - } - } - } - function validateAllExternalFieldsUsed(schema, externalTester, allExternalFieldsUsedInFederationDirectivesCoordinates, errorCollector) { - for (const type of schema.types()) { - if (!(0, definitions_1.isObjectType)(type) && !(0, definitions_1.isInterfaceType)(type)) { - continue; - } - for (const field of type.fields()) { - if (!externalTester.isExternal(field) || allExternalFieldsUsedInFederationDirectivesCoordinates.includes(field.coordinate)) { - continue; - } - if (!isFieldSatisfyingInterface(field)) { - errorCollector.push(error_1.ERRORS.EXTERNAL_UNUSED.err({ - message: `Field "${field.coordinate}" is marked @external but is not used in any federation directive (@key, @provides, @requires) or to satisfy an interface;` - + ' the field declaration has no use and should be removed (or the field should not be @external).', - nodes: field.sourceAST, - })); - } - } - } - } - function isFieldSatisfyingInterface(field) { - return field.parent.interfaces().some(itf => itf.field(field.name)); - } - function validateInterfaceRuntimeImplementationFieldsTypes(itf, externalTester, errorCollector) { - const runtimeTypes = itf.possibleRuntimeTypes(); - for (const field of itf.fields()) { - const withExternalOrRequires = []; - const typeToImplems = new utils_1.MultiMap(); - const nodes = []; - for (const type of runtimeTypes) { - const implemField = type.field(field.name); - if (!implemField) - continue; - if (implemField.sourceAST) { - nodes.push(implemField.sourceAST); - } - if (externalTester.isExternal(implemField) || implemField.hasAppliedDirective(exports.requiresDirectiveName)) { - withExternalOrRequires.push(implemField); - } - const returnType = implemField.type; - typeToImplems.add(returnType.toString(), implemField); - } - if (withExternalOrRequires.length > 0 && typeToImplems.size > 1) { - const typeToImplemsArray = [...typeToImplems.entries()]; - errorCollector.push(error_1.ERRORS.INTERFACE_FIELD_IMPLEM_TYPE_MISMATCH.err({ - message: `Some of the runtime implementations of interface field "${field.coordinate}" are marked @external or have a @require (${withExternalOrRequires.map(printFieldCoordinate)}) so all the implementations should use the same type (a current limitation of federation; see https://github.com/apollographql/federation/issues/1257), but ${formatFieldsToReturnType(typeToImplemsArray[0])} while ${(0, utils_1.joinStrings)(typeToImplemsArray.slice(1).map(formatFieldsToReturnType), ' and ')}.`, - nodes - })); - } - } - } - const printFieldCoordinate = (f) => `"${f.coordinate}"`; - function formatFieldsToReturnType([type, implems]) { - return `${(0, utils_1.joinStrings)(implems.map(printFieldCoordinate))} ${implems.length == 1 ? 'has' : 'have'} type "${type}"`; - } - class FederationBuiltIns extends definitions_1.BuiltIns { - addBuiltInTypes(schema) { - super.addBuiltInTypes(schema); - this.addBuiltInUnion(schema, exports.entityTypeName); - this.addBuiltInObject(schema, exports.serviceTypeName).addField('sdl', schema.stringType()); - this.addBuiltInScalar(schema, exports.anyTypeName); - this.addBuiltInScalar(schema, exports.fieldSetTypeName); - } - addBuiltInDirectives(schema) { - super.addBuiltInDirectives(schema); - const fieldSetType = new definitions_1.NonNullType(schema.type(exports.fieldSetTypeName)); - const keyDirective = this.addBuiltInDirective(schema, exports.keyDirectiveName) - .addLocations(graphql_1.DirectiveLocation.OBJECT, graphql_1.DirectiveLocation.INTERFACE); - keyDirective.repeatable = true; - keyDirective.addArgument('fields', fieldSetType); - this.addBuiltInDirective(schema, exports.extendsDirectiveName) - .addLocations(graphql_1.DirectiveLocation.OBJECT, graphql_1.DirectiveLocation.INTERFACE); - this.addBuiltInDirective(schema, exports.externalDirectiveName) - .addLocations(graphql_1.DirectiveLocation.OBJECT, graphql_1.DirectiveLocation.FIELD_DEFINITION); - for (const name of [exports.requiresDirectiveName, exports.providesDirectiveName]) { - this.addBuiltInDirective(schema, name) - .addLocations(graphql_1.DirectiveLocation.FIELD_DEFINITION) - .addArgument('fields', fieldSetType); - } - const directive = this.addBuiltInDirective(schema, 'tag').addLocations(...tagSpec_1.tagLocations); - directive.addArgument("name", new definitions_1.NonNullType(schema.stringType())); - } - prepareValidation(schema) { - super.prepareValidation(schema); - let entityType = schema.type(exports.entityTypeName); - if (!entityType.isBuiltIn) { - if (entityType.membersCount() === 0) { - entityType.remove(); - } - entityType = schema.builtInTypes('UnionType', true).find(u => u.name === exports.entityTypeName); - } - entityType.clearTypes(); - for (const objectType of schema.types("ObjectType")) { - if (isEntityType(objectType)) { - entityType.addType(objectType); - } - } - const hasEntities = entityType.membersCount() > 0; - if (!hasEntities) { - entityType.remove(); - } - const queryRoot = schema.schemaDefinition.root("query"); - const queryType = queryRoot ? queryRoot.type : schema.addType(new definitions_1.ObjectType("Query")); - const entityField = queryType.field(exports.entitiesFieldName); - if (hasEntities) { - const anyType = schema.type(exports.anyTypeName); - (0, utils_1.assert)(anyType, `The schema should have the _Any type`); - const entityFieldType = new definitions_1.NonNullType(new definitions_1.ListType(entityType)); - if (!entityField) { - this.addBuiltInField(queryType, exports.entitiesFieldName, entityFieldType) - .addArgument('representations', new definitions_1.NonNullType(new definitions_1.ListType(new definitions_1.NonNullType(anyType)))); - } - else if (!entityField.type) { - entityField.type = entityType; - } - } - else if (entityField) { - entityField.remove(); - } - if (!queryType.field(exports.serviceFieldName)) { - this.addBuiltInField(queryType, exports.serviceFieldName, schema.type(exports.serviceTypeName)); - } - } - onValidation(schema) { - var _a; - const errors = super.onValidation(schema, [exports.tagDirectiveName]); - for (const k of definitions_1.allSchemaRootKinds) { - const type = (_a = schema.schemaDefinition.root(k)) === null || _a === void 0 ? void 0 : _a.type; - const defaultName = (0, definitions_1.defaultRootName)(k); - if (type && type.name !== defaultName) { - const existing = schema.type(defaultName); - if (existing) { - errors.push(error_1.ERROR_CATEGORIES.ROOT_TYPE_USED.get(k).err({ - message: `The schema has a type named "${defaultName}" but it is not set as the ${k} root type ("${type.name}" is instead): ` - + 'this is not supported by federation. ' - + 'If a root type does not use its default name, there should be no other type with that default name.', - nodes: (0, definitions_1.sourceASTs)(type, existing), - })); - } - type.rename(defaultName); - } - } - const externalTester = new ExternalTester(schema); - const externalFieldsInFedDirectivesCoordinates = []; - const keyDirective = this.keyDirective(schema); - validateAllFieldSet(keyDirective, type => type, errors, externalTester, externalFieldsInFedDirectivesCoordinates, true, true, field => { - if ((0, definitions_1.isListType)(field.type) || (0, definitions_1.isUnionType)(field.type) || (0, definitions_1.isInterfaceType)(field.type)) { - let kind = field.type.kind; - kind = kind.slice(0, kind.length - 'Type'.length); - throw error_1.ERRORS.KEY_FIELDS_SELECT_INVALID_TYPE.err({ - message: `field "${field.coordinate}" is a ${kind} type which is not allowed in @key` - }); - } - }); - validateAllFieldSet(this.requiresDirective(schema), field => field.parent, errors, externalTester, externalFieldsInFedDirectivesCoordinates, false, false); - validateAllFieldSet(this.providesDirective(schema), field => { - if (externalTester.isExternal(field)) { - throw new graphql_1.GraphQLError(`Cannot have both @provides and @external on field "${field.coordinate}"`, field.sourceAST); - } - const type = (0, definitions_1.baseType)(field.type); - if (!(0, definitions_1.isCompositeType)(type)) { - throw error_1.ERRORS.PROVIDES_ON_NON_OBJECT_FIELD.err({ - message: `Invalid @provides directive on field "${field.coordinate}": field has type "${field.type}" which is not a Composite Type`, - nodes: field.sourceAST, - }); - } - return type; - }, errors, externalTester, externalFieldsInFedDirectivesCoordinates, false, false); - validateAllExternalFieldsUsed(schema, externalTester, externalFieldsInFedDirectivesCoordinates, errors); - const tagDirective = this.tagDirective(schema); - if (!tagDirective.isBuiltIn) { - const error = tagSpec$1.checkCompatibleDirective(tagDirective); - if (error) { - errors.push(error); - } - } - for (const itf of schema.types('InterfaceType')) { - validateInterfaceRuntimeImplementationFieldsTypes(itf, externalTester, errors); - } - return errors; - } - validationRules() { - return FEDERATION_VALIDATION_RULES; - } - keyDirective(schema) { - return this.getTypedDirective(schema, exports.keyDirectiveName); - } - extendsDirective(schema) { - return this.getTypedDirective(schema, exports.extendsDirectiveName); - } - externalDirective(schema) { - return this.getTypedDirective(schema, exports.externalDirectiveName); - } - requiresDirective(schema) { - return this.getTypedDirective(schema, exports.requiresDirectiveName); - } - providesDirective(schema) { - return this.getTypedDirective(schema, exports.providesDirectiveName); - } - tagDirective(schema) { - return this.getTypedDirective(schema, exports.tagDirectiveName); - } - maybeUpdateSubgraphDocument(schema, document) { - document = super.maybeUpdateSubgraphDocument(schema, document); - const definitions = document.definitions.concat(); - for (const directiveName of FEDERATION_DIRECTIVES) { - const directive = schema.directive(directiveName); - (0, utils_1.assert)(directive, 'This method should only have been called on a schema with federation built-ins'); - if (directive.isBuiltIn) { - definitions.push((0, graphql_1.parse)((0, print_1.printDirectiveDefinition)(directive, print_1.defaultPrintOptions)).definitions[0]); - } - } - return { - kind: graphql_1.Kind.DOCUMENT, - loc: document.loc, - definitions - }; - } - } - exports.FederationBuiltIns = FederationBuiltIns; - exports.federationBuiltIns = new FederationBuiltIns(); - function isFederationSubgraphSchema(schema) { - return schema.builtIns instanceof FederationBuiltIns; - } - exports.isFederationSubgraphSchema = isFederationSubgraphSchema; - function isFederationType(type) { - return isFederationTypeName(type.name); - } - exports.isFederationType = isFederationType; - function isFederationTypeName(typeName) { - return FEDERATION_TYPES.includes(typeName); - } - exports.isFederationTypeName = isFederationTypeName; - function isFederationField(field) { - var _a; - if (field.parent === ((_a = field.schema().schemaDefinition.root("query")) === null || _a === void 0 ? void 0 : _a.type)) { - return FEDERATION_ROOT_FIELDS.includes(field.name); - } - return false; - } - exports.isFederationField = isFederationField; - function isFederationDirective(directive) { - return FEDERATION_DIRECTIVES.includes(directive.name); - } - exports.isFederationDirective = isFederationDirective; - function isEntityType(type) { - return type.kind == "ObjectType" && type.hasAppliedDirective(exports.keyDirectiveName); - } - exports.isEntityType = isEntityType; - function buildSubgraph(name, source) { - try { - return typeof source === 'string' - ? (0, buildSchema_1.buildSchema)(new graphql_1.Source(source, name), exports.federationBuiltIns) - : (0, buildSchema_1.buildSchemaFromAST)(source, exports.federationBuiltIns); - } - catch (e) { - if (e instanceof graphql_1.GraphQLError) { - throw addSubgraphToError(e, name, error_1.ERRORS.INVALID_GRAPHQL); - } - else { - throw e; - } - } - } - exports.buildSubgraph = buildSubgraph; - function parseFieldSetArgument(parentType, directive, fieldAccessor = (type, name) => type.field(name)) { - var _a; - try { - const selectionSet = (0, operations_1.parseSelectionSet)(parentType, validateFieldSetValue(directive), new definitions_1.VariableDefinitions(), undefined, fieldAccessor); - selectionSet.validate(); - return selectionSet; - } - catch (e) { - if (!(e instanceof graphql_1.GraphQLError)) { - throw e; - } - const nodes = (0, definitions_1.sourceASTs)(directive); - if (e.nodes) { - nodes.push(...e.nodes); - } - let msg = e.message.trim(); - if (msg.startsWith('Cannot query field')) { - if (msg.endsWith('.')) { - msg = msg.slice(0, msg.length - 1); - } - if (directive.name === exports.keyDirectiveName) { - msg = msg + ' (the field should be either be added to this subgraph or, if it should not be resolved by this subgraph, you need to add it to this subgraph with @external).'; - } - else { - msg = msg + ' (if the field is defined in another subgraph, you need to add it to this subgraph with @external).'; - } - } - const codeDef = (_a = (0, error_1.errorCodeDef)(e)) !== null && _a !== void 0 ? _a : error_1.ERROR_CATEGORIES.DIRECTIVE_INVALID_FIELDS.get(directive.name); - throw codeDef.err({ - message: `${fieldSetErrorDescriptor(directive)}: ${msg}`, - nodes, - originalError: e, - }); - } - } - exports.parseFieldSetArgument = parseFieldSetArgument; - function validateFieldSetValue(directive) { - var _a; - const fields = directive.arguments().fields; - const nodes = directive.sourceAST; - if (typeof fields !== 'string') { - throw error_1.ERROR_CATEGORIES.DIRECTIVE_INVALID_FIELDS_TYPE.get(directive.name).err({ - message: `Invalid value for argument "${directive.definition.argument('fields').name}": must be a string.`, - nodes, - }); - } - if (nodes && nodes.kind === 'Directive') { - for (const argNode of (_a = nodes.arguments) !== null && _a !== void 0 ? _a : []) { - if (argNode.name.value === 'fields') { - if (argNode.value.kind !== 'StringValue') { - throw error_1.ERROR_CATEGORIES.DIRECTIVE_INVALID_FIELDS_TYPE.get(directive.name).err({ - message: `Invalid value for argument "${directive.definition.argument('fields').name}": must be a string.`, - nodes, - }); - } - break; - } - } - } - return fields; - } - function subgraphsFromServiceList(serviceList) { - var _a; - let errors = []; - const subgraphs = new Subgraphs(); - for (const service of serviceList) { - try { - subgraphs.add(service.name, (_a = service.url) !== null && _a !== void 0 ? _a : '', service.typeDefs); - } - catch (e) { - const causes = (0, definitions_1.errorCauses)(e); - if (causes) { - errors = errors.concat(causes); - } - else { - throw e; - } - } - } - return errors.length === 0 ? subgraphs : errors; - } - exports.subgraphsFromServiceList = subgraphsFromServiceList; - class Subgraphs { - constructor() { - this.subgraphs = new utils_1.OrderedMap(); - } - add(subgraphOrName, url, schema) { - const toAdd = typeof subgraphOrName === 'string' - ? new Subgraph(subgraphOrName, url, schema instanceof definitions_1.Schema ? schema : buildSubgraph(subgraphOrName, schema)) - : subgraphOrName; - if (toAdd.name === exports.FEDERATION_RESERVED_SUBGRAPH_NAME) { - throw error_1.ERRORS.INVALID_SUBGRAPH_NAME.err({ message: `Invalid name ${exports.FEDERATION_RESERVED_SUBGRAPH_NAME} for a subgraph: this name is reserved` }); - } - if (this.subgraphs.has(toAdd.name)) { - throw new Error(`A subgraph named ${toAdd.name} already exists` + (toAdd.url ? ` (with url '${toAdd.url}')` : '')); - } - this.subgraphs.add(toAdd.name, toAdd); - return toAdd; - } - get(name) { - return this.subgraphs.get(name); - } - size() { - return this.subgraphs.size; - } - names() { - return this.subgraphs.keys(); - } - values() { - return this.subgraphs.values(); - } - *[Symbol.iterator]() { - for (const subgraph of this.subgraphs) { - yield subgraph; - } - } - toString() { - return '[' + this.subgraphs.keys().join(', ') + ']'; - } - } - exports.Subgraphs = Subgraphs; - class Subgraph { - constructor(name, url, schema, validateSchema = true) { - this.name = name; - this.url = url; - this.schema = schema; - if (validateSchema) { - schema.validate(); - } - } - toString() { - return `${this.name} (${this.url})`; - } - } - exports.Subgraph = Subgraph; - function addSubgraphToASTNode(node, subgraph) { - return { - ...node, - subgraph - }; - } - exports.addSubgraphToASTNode = addSubgraphToASTNode; - function addSubgraphToError(e, subgraphName, errorCode) { - const updatedCauses = (0, definitions_1.errorCauses)(e).map(cause => { - var _a; - const message = `[${subgraphName}] ${cause.message}`; - const nodes = cause.nodes - ? cause.nodes.map(node => addSubgraphToASTNode(node, subgraphName)) - : undefined; - const code = (_a = (0, error_1.errorCodeDef)(cause)) !== null && _a !== void 0 ? _a : errorCode; - if (code) { - return code.err({ - message, - nodes, - source: cause.source, - positions: cause.positions, - path: cause.path, - originalError: cause.originalError, - extensions: cause.extensions, - }); - } - else { - return new graphql_1.GraphQLError(message, nodes, cause.source, cause.positions, cause.path, cause.originalError, cause.extensions); - } - }); - return (0, definitions_1.ErrGraphQLValidationFailed)(updatedCauses); - } - exports.addSubgraphToError = addSubgraphToError; - class ExternalTester { - constructor(schema) { - this.schema = schema; - this.fakeExternalFields = new Set(); - this.collectFakeExternals(); - } - collectFakeExternals() { - const keyDirective = exports.federationBuiltIns.keyDirective(this.schema); - if (!keyDirective) { - return; - } - for (const key of keyDirective.applications()) { - const parent = key.parent; - if (!(key.ofExtension() || parent.hasAppliedDirective(exports.extendsDirectiveName))) { - continue; - } - try { - parseFieldSetArgument(parent, key, (parentType, fieldName) => { - const field = parentType.field(fieldName); - if (field && field.hasAppliedDirective(exports.externalDirectiveName)) { - this.fakeExternalFields.add(field.coordinate); - } - return field; - }); - } - catch (e) { - } - } - } - isExternal(field) { - return field.hasAppliedDirective(exports.externalDirectiveName) && !this.isFakeExternal(field); - } - isFakeExternal(field) { - return this.fakeExternalFields.has(field.coordinate); - } - selectsAnyExternalField(selectionSet) { - for (const selection of selectionSet.selections()) { - if (selection.kind === 'FieldSelection' && this.isExternal(selection.element().definition)) { - return true; - } - if (selection.selectionSet) { - if (this.selectsAnyExternalField(selection.selectionSet)) { - return true; - } - } - } - return false; - } - } - exports.ExternalTester = ExternalTester; - - }(federation)); - - var debug = {}; - - var ansiStyles$1 = {exports: {}}; - - var colorName = { - "aliceblue": [240, 248, 255], - "antiquewhite": [250, 235, 215], - "aqua": [0, 255, 255], - "aquamarine": [127, 255, 212], - "azure": [240, 255, 255], - "beige": [245, 245, 220], - "bisque": [255, 228, 196], - "black": [0, 0, 0], - "blanchedalmond": [255, 235, 205], - "blue": [0, 0, 255], - "blueviolet": [138, 43, 226], - "brown": [165, 42, 42], - "burlywood": [222, 184, 135], - "cadetblue": [95, 158, 160], - "chartreuse": [127, 255, 0], - "chocolate": [210, 105, 30], - "coral": [255, 127, 80], - "cornflowerblue": [100, 149, 237], - "cornsilk": [255, 248, 220], - "crimson": [220, 20, 60], - "cyan": [0, 255, 255], - "darkblue": [0, 0, 139], - "darkcyan": [0, 139, 139], - "darkgoldenrod": [184, 134, 11], - "darkgray": [169, 169, 169], - "darkgreen": [0, 100, 0], - "darkgrey": [169, 169, 169], - "darkkhaki": [189, 183, 107], - "darkmagenta": [139, 0, 139], - "darkolivegreen": [85, 107, 47], - "darkorange": [255, 140, 0], - "darkorchid": [153, 50, 204], - "darkred": [139, 0, 0], - "darksalmon": [233, 150, 122], - "darkseagreen": [143, 188, 143], - "darkslateblue": [72, 61, 139], - "darkslategray": [47, 79, 79], - "darkslategrey": [47, 79, 79], - "darkturquoise": [0, 206, 209], - "darkviolet": [148, 0, 211], - "deeppink": [255, 20, 147], - "deepskyblue": [0, 191, 255], - "dimgray": [105, 105, 105], - "dimgrey": [105, 105, 105], - "dodgerblue": [30, 144, 255], - "firebrick": [178, 34, 34], - "floralwhite": [255, 250, 240], - "forestgreen": [34, 139, 34], - "fuchsia": [255, 0, 255], - "gainsboro": [220, 220, 220], - "ghostwhite": [248, 248, 255], - "gold": [255, 215, 0], - "goldenrod": [218, 165, 32], - "gray": [128, 128, 128], - "green": [0, 128, 0], - "greenyellow": [173, 255, 47], - "grey": [128, 128, 128], - "honeydew": [240, 255, 240], - "hotpink": [255, 105, 180], - "indianred": [205, 92, 92], - "indigo": [75, 0, 130], - "ivory": [255, 255, 240], - "khaki": [240, 230, 140], - "lavender": [230, 230, 250], - "lavenderblush": [255, 240, 245], - "lawngreen": [124, 252, 0], - "lemonchiffon": [255, 250, 205], - "lightblue": [173, 216, 230], - "lightcoral": [240, 128, 128], - "lightcyan": [224, 255, 255], - "lightgoldenrodyellow": [250, 250, 210], - "lightgray": [211, 211, 211], - "lightgreen": [144, 238, 144], - "lightgrey": [211, 211, 211], - "lightpink": [255, 182, 193], - "lightsalmon": [255, 160, 122], - "lightseagreen": [32, 178, 170], - "lightskyblue": [135, 206, 250], - "lightslategray": [119, 136, 153], - "lightslategrey": [119, 136, 153], - "lightsteelblue": [176, 196, 222], - "lightyellow": [255, 255, 224], - "lime": [0, 255, 0], - "limegreen": [50, 205, 50], - "linen": [250, 240, 230], - "magenta": [255, 0, 255], - "maroon": [128, 0, 0], - "mediumaquamarine": [102, 205, 170], - "mediumblue": [0, 0, 205], - "mediumorchid": [186, 85, 211], - "mediumpurple": [147, 112, 219], - "mediumseagreen": [60, 179, 113], - "mediumslateblue": [123, 104, 238], - "mediumspringgreen": [0, 250, 154], - "mediumturquoise": [72, 209, 204], - "mediumvioletred": [199, 21, 133], - "midnightblue": [25, 25, 112], - "mintcream": [245, 255, 250], - "mistyrose": [255, 228, 225], - "moccasin": [255, 228, 181], - "navajowhite": [255, 222, 173], - "navy": [0, 0, 128], - "oldlace": [253, 245, 230], - "olive": [128, 128, 0], - "olivedrab": [107, 142, 35], - "orange": [255, 165, 0], - "orangered": [255, 69, 0], - "orchid": [218, 112, 214], - "palegoldenrod": [238, 232, 170], - "palegreen": [152, 251, 152], - "paleturquoise": [175, 238, 238], - "palevioletred": [219, 112, 147], - "papayawhip": [255, 239, 213], - "peachpuff": [255, 218, 185], - "peru": [205, 133, 63], - "pink": [255, 192, 203], - "plum": [221, 160, 221], - "powderblue": [176, 224, 230], - "purple": [128, 0, 128], - "rebeccapurple": [102, 51, 153], - "red": [255, 0, 0], - "rosybrown": [188, 143, 143], - "royalblue": [65, 105, 225], - "saddlebrown": [139, 69, 19], - "salmon": [250, 128, 114], - "sandybrown": [244, 164, 96], - "seagreen": [46, 139, 87], - "seashell": [255, 245, 238], - "sienna": [160, 82, 45], - "silver": [192, 192, 192], - "skyblue": [135, 206, 235], - "slateblue": [106, 90, 205], - "slategray": [112, 128, 144], - "slategrey": [112, 128, 144], - "snow": [255, 250, 250], - "springgreen": [0, 255, 127], - "steelblue": [70, 130, 180], - "tan": [210, 180, 140], - "teal": [0, 128, 128], - "thistle": [216, 191, 216], - "tomato": [255, 99, 71], - "turquoise": [64, 224, 208], - "violet": [238, 130, 238], - "wheat": [245, 222, 179], - "white": [255, 255, 255], - "whitesmoke": [245, 245, 245], - "yellow": [255, 255, 0], - "yellowgreen": [154, 205, 50] - }; - - /* MIT license */ - - /* eslint-disable no-mixed-operators */ - const cssKeywords = colorName; - - // NOTE: conversions should only return primitive values (i.e. arrays, or - // values that give correct `typeof` results). - // do not use box values types (i.e. Number(), String(), etc.) - - const reverseKeywords = {}; - for (const key of Object.keys(cssKeywords)) { - reverseKeywords[cssKeywords[key]] = key; - } - - const convert$1 = { - rgb: {channels: 3, labels: 'rgb'}, - hsl: {channels: 3, labels: 'hsl'}, - hsv: {channels: 3, labels: 'hsv'}, - hwb: {channels: 3, labels: 'hwb'}, - cmyk: {channels: 4, labels: 'cmyk'}, - xyz: {channels: 3, labels: 'xyz'}, - lab: {channels: 3, labels: 'lab'}, - lch: {channels: 3, labels: 'lch'}, - hex: {channels: 1, labels: ['hex']}, - keyword: {channels: 1, labels: ['keyword']}, - ansi16: {channels: 1, labels: ['ansi16']}, - ansi256: {channels: 1, labels: ['ansi256']}, - hcg: {channels: 3, labels: ['h', 'c', 'g']}, - apple: {channels: 3, labels: ['r16', 'g16', 'b16']}, - gray: {channels: 1, labels: ['gray']} - }; - - var conversions$2 = convert$1; - - // Hide .channels and .labels properties - for (const model of Object.keys(convert$1)) { - if (!('channels' in convert$1[model])) { - throw new Error('missing channels property: ' + model); - } - - if (!('labels' in convert$1[model])) { - throw new Error('missing channel labels property: ' + model); - } - - if (convert$1[model].labels.length !== convert$1[model].channels) { - throw new Error('channel and label counts mismatch: ' + model); - } - - const {channels, labels} = convert$1[model]; - delete convert$1[model].channels; - delete convert$1[model].labels; - Object.defineProperty(convert$1[model], 'channels', {value: channels}); - Object.defineProperty(convert$1[model], 'labels', {value: labels}); - } - - convert$1.rgb.hsl = function (rgb) { - const r = rgb[0] / 255; - const g = rgb[1] / 255; - const b = rgb[2] / 255; - const min = Math.min(r, g, b); - const max = Math.max(r, g, b); - const delta = max - min; - let h; - let s; - - if (max === min) { - h = 0; - } else if (r === max) { - h = (g - b) / delta; - } else if (g === max) { - h = 2 + (b - r) / delta; - } else if (b === max) { - h = 4 + (r - g) / delta; - } - - h = Math.min(h * 60, 360); - - if (h < 0) { - h += 360; - } - - const l = (min + max) / 2; - - if (max === min) { - s = 0; - } else if (l <= 0.5) { - s = delta / (max + min); - } else { - s = delta / (2 - max - min); - } - - return [h, s * 100, l * 100]; - }; - - convert$1.rgb.hsv = function (rgb) { - let rdif; - let gdif; - let bdif; - let h; - let s; - - const r = rgb[0] / 255; - const g = rgb[1] / 255; - const b = rgb[2] / 255; - const v = Math.max(r, g, b); - const diff = v - Math.min(r, g, b); - const diffc = function (c) { - return (v - c) / 6 / diff + 1 / 2; - }; - - if (diff === 0) { - h = 0; - s = 0; - } else { - s = diff / v; - rdif = diffc(r); - gdif = diffc(g); - bdif = diffc(b); - - if (r === v) { - h = bdif - gdif; - } else if (g === v) { - h = (1 / 3) + rdif - bdif; - } else if (b === v) { - h = (2 / 3) + gdif - rdif; - } - - if (h < 0) { - h += 1; - } else if (h > 1) { - h -= 1; - } - } - - return [ - h * 360, - s * 100, - v * 100 - ]; - }; - - convert$1.rgb.hwb = function (rgb) { - const r = rgb[0]; - const g = rgb[1]; - let b = rgb[2]; - const h = convert$1.rgb.hsl(rgb)[0]; - const w = 1 / 255 * Math.min(r, Math.min(g, b)); - - b = 1 - 1 / 255 * Math.max(r, Math.max(g, b)); - - return [h, w * 100, b * 100]; - }; - - convert$1.rgb.cmyk = function (rgb) { - const r = rgb[0] / 255; - const g = rgb[1] / 255; - const b = rgb[2] / 255; - - const k = Math.min(1 - r, 1 - g, 1 - b); - const c = (1 - r - k) / (1 - k) || 0; - const m = (1 - g - k) / (1 - k) || 0; - const y = (1 - b - k) / (1 - k) || 0; - - return [c * 100, m * 100, y * 100, k * 100]; - }; - - function comparativeDistance(x, y) { - /* - See https://en.m.wikipedia.org/wiki/Euclidean_distance#Squared_Euclidean_distance - */ - return ( - ((x[0] - y[0]) ** 2) + - ((x[1] - y[1]) ** 2) + - ((x[2] - y[2]) ** 2) - ); - } - - convert$1.rgb.keyword = function (rgb) { - const reversed = reverseKeywords[rgb]; - if (reversed) { - return reversed; - } - - let currentClosestDistance = Infinity; - let currentClosestKeyword; - - for (const keyword of Object.keys(cssKeywords)) { - const value = cssKeywords[keyword]; - - // Compute comparative distance - const distance = comparativeDistance(rgb, value); - - // Check if its less, if so set as closest - if (distance < currentClosestDistance) { - currentClosestDistance = distance; - currentClosestKeyword = keyword; - } - } - - return currentClosestKeyword; - }; - - convert$1.keyword.rgb = function (keyword) { - return cssKeywords[keyword]; - }; - - convert$1.rgb.xyz = function (rgb) { - let r = rgb[0] / 255; - let g = rgb[1] / 255; - let b = rgb[2] / 255; - - // Assume sRGB - r = r > 0.04045 ? (((r + 0.055) / 1.055) ** 2.4) : (r / 12.92); - g = g > 0.04045 ? (((g + 0.055) / 1.055) ** 2.4) : (g / 12.92); - b = b > 0.04045 ? (((b + 0.055) / 1.055) ** 2.4) : (b / 12.92); - - const x = (r * 0.4124) + (g * 0.3576) + (b * 0.1805); - const y = (r * 0.2126) + (g * 0.7152) + (b * 0.0722); - const z = (r * 0.0193) + (g * 0.1192) + (b * 0.9505); - - return [x * 100, y * 100, z * 100]; - }; - - convert$1.rgb.lab = function (rgb) { - const xyz = convert$1.rgb.xyz(rgb); - let x = xyz[0]; - let y = xyz[1]; - let z = xyz[2]; - - x /= 95.047; - y /= 100; - z /= 108.883; - - x = x > 0.008856 ? (x ** (1 / 3)) : (7.787 * x) + (16 / 116); - y = y > 0.008856 ? (y ** (1 / 3)) : (7.787 * y) + (16 / 116); - z = z > 0.008856 ? (z ** (1 / 3)) : (7.787 * z) + (16 / 116); - - const l = (116 * y) - 16; - const a = 500 * (x - y); - const b = 200 * (y - z); - - return [l, a, b]; - }; - - convert$1.hsl.rgb = function (hsl) { - const h = hsl[0] / 360; - const s = hsl[1] / 100; - const l = hsl[2] / 100; - let t2; - let t3; - let val; - - if (s === 0) { - val = l * 255; - return [val, val, val]; - } - - if (l < 0.5) { - t2 = l * (1 + s); - } else { - t2 = l + s - l * s; - } - - const t1 = 2 * l - t2; - - const rgb = [0, 0, 0]; - for (let i = 0; i < 3; i++) { - t3 = h + 1 / 3 * -(i - 1); - if (t3 < 0) { - t3++; - } - - if (t3 > 1) { - t3--; - } - - if (6 * t3 < 1) { - val = t1 + (t2 - t1) * 6 * t3; - } else if (2 * t3 < 1) { - val = t2; - } else if (3 * t3 < 2) { - val = t1 + (t2 - t1) * (2 / 3 - t3) * 6; - } else { - val = t1; - } - - rgb[i] = val * 255; - } - - return rgb; - }; - - convert$1.hsl.hsv = function (hsl) { - const h = hsl[0]; - let s = hsl[1] / 100; - let l = hsl[2] / 100; - let smin = s; - const lmin = Math.max(l, 0.01); - - l *= 2; - s *= (l <= 1) ? l : 2 - l; - smin *= lmin <= 1 ? lmin : 2 - lmin; - const v = (l + s) / 2; - const sv = l === 0 ? (2 * smin) / (lmin + smin) : (2 * s) / (l + s); - - return [h, sv * 100, v * 100]; - }; - - convert$1.hsv.rgb = function (hsv) { - const h = hsv[0] / 60; - const s = hsv[1] / 100; - let v = hsv[2] / 100; - const hi = Math.floor(h) % 6; - - const f = h - Math.floor(h); - const p = 255 * v * (1 - s); - const q = 255 * v * (1 - (s * f)); - const t = 255 * v * (1 - (s * (1 - f))); - v *= 255; - - switch (hi) { - case 0: - return [v, t, p]; - case 1: - return [q, v, p]; - case 2: - return [p, v, t]; - case 3: - return [p, q, v]; - case 4: - return [t, p, v]; - case 5: - return [v, p, q]; - } - }; - - convert$1.hsv.hsl = function (hsv) { - const h = hsv[0]; - const s = hsv[1] / 100; - const v = hsv[2] / 100; - const vmin = Math.max(v, 0.01); - let sl; - let l; - - l = (2 - s) * v; - const lmin = (2 - s) * vmin; - sl = s * vmin; - sl /= (lmin <= 1) ? lmin : 2 - lmin; - sl = sl || 0; - l /= 2; - - return [h, sl * 100, l * 100]; - }; - - // http://dev.w3.org/csswg/css-color/#hwb-to-rgb - convert$1.hwb.rgb = function (hwb) { - const h = hwb[0] / 360; - let wh = hwb[1] / 100; - let bl = hwb[2] / 100; - const ratio = wh + bl; - let f; - - // Wh + bl cant be > 1 - if (ratio > 1) { - wh /= ratio; - bl /= ratio; - } - - const i = Math.floor(6 * h); - const v = 1 - bl; - f = 6 * h - i; - - if ((i & 0x01) !== 0) { - f = 1 - f; - } - - const n = wh + f * (v - wh); // Linear interpolation - - let r; - let g; - let b; - /* eslint-disable max-statements-per-line,no-multi-spaces */ - switch (i) { - default: - case 6: - case 0: r = v; g = n; b = wh; break; - case 1: r = n; g = v; b = wh; break; - case 2: r = wh; g = v; b = n; break; - case 3: r = wh; g = n; b = v; break; - case 4: r = n; g = wh; b = v; break; - case 5: r = v; g = wh; b = n; break; - } - /* eslint-enable max-statements-per-line,no-multi-spaces */ - - return [r * 255, g * 255, b * 255]; - }; - - convert$1.cmyk.rgb = function (cmyk) { - const c = cmyk[0] / 100; - const m = cmyk[1] / 100; - const y = cmyk[2] / 100; - const k = cmyk[3] / 100; - - const r = 1 - Math.min(1, c * (1 - k) + k); - const g = 1 - Math.min(1, m * (1 - k) + k); - const b = 1 - Math.min(1, y * (1 - k) + k); - - return [r * 255, g * 255, b * 255]; - }; - - convert$1.xyz.rgb = function (xyz) { - const x = xyz[0] / 100; - const y = xyz[1] / 100; - const z = xyz[2] / 100; - let r; - let g; - let b; - - r = (x * 3.2406) + (y * -1.5372) + (z * -0.4986); - g = (x * -0.9689) + (y * 1.8758) + (z * 0.0415); - b = (x * 0.0557) + (y * -0.2040) + (z * 1.0570); - - // Assume sRGB - r = r > 0.0031308 - ? ((1.055 * (r ** (1.0 / 2.4))) - 0.055) - : r * 12.92; - - g = g > 0.0031308 - ? ((1.055 * (g ** (1.0 / 2.4))) - 0.055) - : g * 12.92; - - b = b > 0.0031308 - ? ((1.055 * (b ** (1.0 / 2.4))) - 0.055) - : b * 12.92; - - r = Math.min(Math.max(0, r), 1); - g = Math.min(Math.max(0, g), 1); - b = Math.min(Math.max(0, b), 1); - - return [r * 255, g * 255, b * 255]; - }; - - convert$1.xyz.lab = function (xyz) { - let x = xyz[0]; - let y = xyz[1]; - let z = xyz[2]; - - x /= 95.047; - y /= 100; - z /= 108.883; - - x = x > 0.008856 ? (x ** (1 / 3)) : (7.787 * x) + (16 / 116); - y = y > 0.008856 ? (y ** (1 / 3)) : (7.787 * y) + (16 / 116); - z = z > 0.008856 ? (z ** (1 / 3)) : (7.787 * z) + (16 / 116); - - const l = (116 * y) - 16; - const a = 500 * (x - y); - const b = 200 * (y - z); - - return [l, a, b]; - }; - - convert$1.lab.xyz = function (lab) { - const l = lab[0]; - const a = lab[1]; - const b = lab[2]; - let x; - let y; - let z; - - y = (l + 16) / 116; - x = a / 500 + y; - z = y - b / 200; - - const y2 = y ** 3; - const x2 = x ** 3; - const z2 = z ** 3; - y = y2 > 0.008856 ? y2 : (y - 16 / 116) / 7.787; - x = x2 > 0.008856 ? x2 : (x - 16 / 116) / 7.787; - z = z2 > 0.008856 ? z2 : (z - 16 / 116) / 7.787; - - x *= 95.047; - y *= 100; - z *= 108.883; - - return [x, y, z]; - }; - - convert$1.lab.lch = function (lab) { - const l = lab[0]; - const a = lab[1]; - const b = lab[2]; - let h; - - const hr = Math.atan2(b, a); - h = hr * 360 / 2 / Math.PI; - - if (h < 0) { - h += 360; - } - - const c = Math.sqrt(a * a + b * b); - - return [l, c, h]; - }; - - convert$1.lch.lab = function (lch) { - const l = lch[0]; - const c = lch[1]; - const h = lch[2]; - - const hr = h / 360 * 2 * Math.PI; - const a = c * Math.cos(hr); - const b = c * Math.sin(hr); - - return [l, a, b]; - }; - - convert$1.rgb.ansi16 = function (args, saturation = null) { - const [r, g, b] = args; - let value = saturation === null ? convert$1.rgb.hsv(args)[2] : saturation; // Hsv -> ansi16 optimization - - value = Math.round(value / 50); - - if (value === 0) { - return 30; - } - - let ansi = 30 - + ((Math.round(b / 255) << 2) - | (Math.round(g / 255) << 1) - | Math.round(r / 255)); - - if (value === 2) { - ansi += 60; - } - - return ansi; - }; - - convert$1.hsv.ansi16 = function (args) { - // Optimization here; we already know the value and don't need to get - // it converted for us. - return convert$1.rgb.ansi16(convert$1.hsv.rgb(args), args[2]); - }; - - convert$1.rgb.ansi256 = function (args) { - const r = args[0]; - const g = args[1]; - const b = args[2]; - - // We use the extended greyscale palette here, with the exception of - // black and white. normal palette only has 4 greyscale shades. - if (r === g && g === b) { - if (r < 8) { - return 16; - } - - if (r > 248) { - return 231; - } - - return Math.round(((r - 8) / 247) * 24) + 232; - } - - const ansi = 16 - + (36 * Math.round(r / 255 * 5)) - + (6 * Math.round(g / 255 * 5)) - + Math.round(b / 255 * 5); - - return ansi; - }; - - convert$1.ansi16.rgb = function (args) { - let color = args % 10; - - // Handle greyscale - if (color === 0 || color === 7) { - if (args > 50) { - color += 3.5; - } - - color = color / 10.5 * 255; - - return [color, color, color]; - } - - const mult = (~~(args > 50) + 1) * 0.5; - const r = ((color & 1) * mult) * 255; - const g = (((color >> 1) & 1) * mult) * 255; - const b = (((color >> 2) & 1) * mult) * 255; - - return [r, g, b]; - }; - - convert$1.ansi256.rgb = function (args) { - // Handle greyscale - if (args >= 232) { - const c = (args - 232) * 10 + 8; - return [c, c, c]; - } - - args -= 16; - - let rem; - const r = Math.floor(args / 36) / 5 * 255; - const g = Math.floor((rem = args % 36) / 6) / 5 * 255; - const b = (rem % 6) / 5 * 255; - - return [r, g, b]; - }; - - convert$1.rgb.hex = function (args) { - const integer = ((Math.round(args[0]) & 0xFF) << 16) - + ((Math.round(args[1]) & 0xFF) << 8) - + (Math.round(args[2]) & 0xFF); - - const string = integer.toString(16).toUpperCase(); - return '000000'.substring(string.length) + string; - }; - - convert$1.hex.rgb = function (args) { - const match = args.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i); - if (!match) { - return [0, 0, 0]; - } - - let colorString = match[0]; - - if (match[0].length === 3) { - colorString = colorString.split('').map(char => { - return char + char; - }).join(''); - } - - const integer = parseInt(colorString, 16); - const r = (integer >> 16) & 0xFF; - const g = (integer >> 8) & 0xFF; - const b = integer & 0xFF; - - return [r, g, b]; - }; - - convert$1.rgb.hcg = function (rgb) { - const r = rgb[0] / 255; - const g = rgb[1] / 255; - const b = rgb[2] / 255; - const max = Math.max(Math.max(r, g), b); - const min = Math.min(Math.min(r, g), b); - const chroma = (max - min); - let grayscale; - let hue; - - if (chroma < 1) { - grayscale = min / (1 - chroma); - } else { - grayscale = 0; - } - - if (chroma <= 0) { - hue = 0; - } else - if (max === r) { - hue = ((g - b) / chroma) % 6; - } else - if (max === g) { - hue = 2 + (b - r) / chroma; - } else { - hue = 4 + (r - g) / chroma; - } - - hue /= 6; - hue %= 1; - - return [hue * 360, chroma * 100, grayscale * 100]; - }; - - convert$1.hsl.hcg = function (hsl) { - const s = hsl[1] / 100; - const l = hsl[2] / 100; - - const c = l < 0.5 ? (2.0 * s * l) : (2.0 * s * (1.0 - l)); - - let f = 0; - if (c < 1.0) { - f = (l - 0.5 * c) / (1.0 - c); - } - - return [hsl[0], c * 100, f * 100]; - }; - - convert$1.hsv.hcg = function (hsv) { - const s = hsv[1] / 100; - const v = hsv[2] / 100; - - const c = s * v; - let f = 0; - - if (c < 1.0) { - f = (v - c) / (1 - c); - } - - return [hsv[0], c * 100, f * 100]; - }; - - convert$1.hcg.rgb = function (hcg) { - const h = hcg[0] / 360; - const c = hcg[1] / 100; - const g = hcg[2] / 100; - - if (c === 0.0) { - return [g * 255, g * 255, g * 255]; - } - - const pure = [0, 0, 0]; - const hi = (h % 1) * 6; - const v = hi % 1; - const w = 1 - v; - let mg = 0; - - /* eslint-disable max-statements-per-line */ - switch (Math.floor(hi)) { - case 0: - pure[0] = 1; pure[1] = v; pure[2] = 0; break; - case 1: - pure[0] = w; pure[1] = 1; pure[2] = 0; break; - case 2: - pure[0] = 0; pure[1] = 1; pure[2] = v; break; - case 3: - pure[0] = 0; pure[1] = w; pure[2] = 1; break; - case 4: - pure[0] = v; pure[1] = 0; pure[2] = 1; break; - default: - pure[0] = 1; pure[1] = 0; pure[2] = w; - } - /* eslint-enable max-statements-per-line */ - - mg = (1.0 - c) * g; - - return [ - (c * pure[0] + mg) * 255, - (c * pure[1] + mg) * 255, - (c * pure[2] + mg) * 255 - ]; - }; - - convert$1.hcg.hsv = function (hcg) { - const c = hcg[1] / 100; - const g = hcg[2] / 100; - - const v = c + g * (1.0 - c); - let f = 0; - - if (v > 0.0) { - f = c / v; - } - - return [hcg[0], f * 100, v * 100]; - }; - - convert$1.hcg.hsl = function (hcg) { - const c = hcg[1] / 100; - const g = hcg[2] / 100; - - const l = g * (1.0 - c) + 0.5 * c; - let s = 0; - - if (l > 0.0 && l < 0.5) { - s = c / (2 * l); - } else - if (l >= 0.5 && l < 1.0) { - s = c / (2 * (1 - l)); - } - - return [hcg[0], s * 100, l * 100]; - }; - - convert$1.hcg.hwb = function (hcg) { - const c = hcg[1] / 100; - const g = hcg[2] / 100; - const v = c + g * (1.0 - c); - return [hcg[0], (v - c) * 100, (1 - v) * 100]; - }; - - convert$1.hwb.hcg = function (hwb) { - const w = hwb[1] / 100; - const b = hwb[2] / 100; - const v = 1 - b; - const c = v - w; - let g = 0; - - if (c < 1) { - g = (v - c) / (1 - c); - } - - return [hwb[0], c * 100, g * 100]; - }; - - convert$1.apple.rgb = function (apple) { - return [(apple[0] / 65535) * 255, (apple[1] / 65535) * 255, (apple[2] / 65535) * 255]; - }; - - convert$1.rgb.apple = function (rgb) { - return [(rgb[0] / 255) * 65535, (rgb[1] / 255) * 65535, (rgb[2] / 255) * 65535]; - }; - - convert$1.gray.rgb = function (args) { - return [args[0] / 100 * 255, args[0] / 100 * 255, args[0] / 100 * 255]; - }; - - convert$1.gray.hsl = function (args) { - return [0, 0, args[0]]; - }; - - convert$1.gray.hsv = convert$1.gray.hsl; - - convert$1.gray.hwb = function (gray) { - return [0, 100, gray[0]]; - }; - - convert$1.gray.cmyk = function (gray) { - return [0, 0, 0, gray[0]]; - }; - - convert$1.gray.lab = function (gray) { - return [gray[0], 0, 0]; - }; - - convert$1.gray.hex = function (gray) { - const val = Math.round(gray[0] / 100 * 255) & 0xFF; - const integer = (val << 16) + (val << 8) + val; - - const string = integer.toString(16).toUpperCase(); - return '000000'.substring(string.length) + string; - }; - - convert$1.rgb.gray = function (rgb) { - const val = (rgb[0] + rgb[1] + rgb[2]) / 3; - return [val / 255 * 100]; - }; - - const conversions$1 = conversions$2; - - /* - This function routes a model to all other models. - - all functions that are routed have a property `.conversion` attached - to the returned synthetic function. This property is an array - of strings, each with the steps in between the 'from' and 'to' - color models (inclusive). - - conversions that are not possible simply are not included. - */ - - function buildGraph() { - const graph = {}; - // https://jsperf.com/object-keys-vs-for-in-with-closure/3 - const models = Object.keys(conversions$1); - - for (let len = models.length, i = 0; i < len; i++) { - graph[models[i]] = { - // http://jsperf.com/1-vs-infinity - // micro-opt, but this is simple. - distance: -1, - parent: null - }; - } - - return graph; - } - - // https://en.wikipedia.org/wiki/Breadth-first_search - function deriveBFS(fromModel) { - const graph = buildGraph(); - const queue = [fromModel]; // Unshift -> queue -> pop - - graph[fromModel].distance = 0; - - while (queue.length) { - const current = queue.pop(); - const adjacents = Object.keys(conversions$1[current]); - - for (let len = adjacents.length, i = 0; i < len; i++) { - const adjacent = adjacents[i]; - const node = graph[adjacent]; - - if (node.distance === -1) { - node.distance = graph[current].distance + 1; - node.parent = current; - queue.unshift(adjacent); - } - } - } - - return graph; - } - - function link(from, to) { - return function (args) { - return to(from(args)); - }; - } - - function wrapConversion(toModel, graph) { - const path = [graph[toModel].parent, toModel]; - let fn = conversions$1[graph[toModel].parent][toModel]; - - let cur = graph[toModel].parent; - while (graph[cur].parent) { - path.unshift(graph[cur].parent); - fn = link(conversions$1[graph[cur].parent][cur], fn); - cur = graph[cur].parent; - } - - fn.conversion = path; - return fn; - } - - var route$1 = function (fromModel) { - const graph = deriveBFS(fromModel); - const conversion = {}; - - const models = Object.keys(graph); - for (let len = models.length, i = 0; i < len; i++) { - const toModel = models[i]; - const node = graph[toModel]; - - if (node.parent === null) { - // No possible conversion, or this node is the source model. - continue; - } - - conversion[toModel] = wrapConversion(toModel, graph); - } - - return conversion; - }; - - const conversions = conversions$2; - const route = route$1; - - const convert = {}; - - const models = Object.keys(conversions); - - function wrapRaw(fn) { - const wrappedFn = function (...args) { - const arg0 = args[0]; - if (arg0 === undefined || arg0 === null) { - return arg0; - } - - if (arg0.length > 1) { - args = arg0; - } - - return fn(args); - }; - - // Preserve .conversion property if there is one - if ('conversion' in fn) { - wrappedFn.conversion = fn.conversion; - } - - return wrappedFn; - } - - function wrapRounded(fn) { - const wrappedFn = function (...args) { - const arg0 = args[0]; - - if (arg0 === undefined || arg0 === null) { - return arg0; - } - - if (arg0.length > 1) { - args = arg0; - } - - const result = fn(args); - - // We're assuming the result is an array here. - // see notice in conversions.js; don't use box types - // in conversion functions. - if (typeof result === 'object') { - for (let len = result.length, i = 0; i < len; i++) { - result[i] = Math.round(result[i]); - } - } - - return result; - }; - - // Preserve .conversion property if there is one - if ('conversion' in fn) { - wrappedFn.conversion = fn.conversion; - } - - return wrappedFn; - } - - models.forEach(fromModel => { - convert[fromModel] = {}; - - Object.defineProperty(convert[fromModel], 'channels', {value: conversions[fromModel].channels}); - Object.defineProperty(convert[fromModel], 'labels', {value: conversions[fromModel].labels}); - - const routes = route(fromModel); - const routeModels = Object.keys(routes); - - routeModels.forEach(toModel => { - const fn = routes[toModel]; - - convert[fromModel][toModel] = wrapRounded(fn); - convert[fromModel][toModel].raw = wrapRaw(fn); - }); - }); - - var colorConvert = convert; - - (function (module) { - - const wrapAnsi16 = (fn, offset) => (...args) => { - const code = fn(...args); - return `\u001B[${code + offset}m`; - }; - - const wrapAnsi256 = (fn, offset) => (...args) => { - const code = fn(...args); - return `\u001B[${38 + offset};5;${code}m`; - }; - - const wrapAnsi16m = (fn, offset) => (...args) => { - const rgb = fn(...args); - return `\u001B[${38 + offset};2;${rgb[0]};${rgb[1]};${rgb[2]}m`; - }; - - const ansi2ansi = n => n; - const rgb2rgb = (r, g, b) => [r, g, b]; - - const setLazyProperty = (object, property, get) => { - Object.defineProperty(object, property, { - get: () => { - const value = get(); - - Object.defineProperty(object, property, { - value, - enumerable: true, - configurable: true - }); - - return value; - }, - enumerable: true, - configurable: true - }); - }; - - /** @type {typeof import('color-convert')} */ - let colorConvert$1; - const makeDynamicStyles = (wrap, targetSpace, identity, isBackground) => { - if (colorConvert$1 === undefined) { - colorConvert$1 = colorConvert; - } - - const offset = isBackground ? 10 : 0; - const styles = {}; - - for (const [sourceSpace, suite] of Object.entries(colorConvert$1)) { - const name = sourceSpace === 'ansi16' ? 'ansi' : sourceSpace; - if (sourceSpace === targetSpace) { - styles[name] = wrap(identity, offset); - } else if (typeof suite === 'object') { - styles[name] = wrap(suite[targetSpace], offset); - } - } - - return styles; - }; - - function assembleStyles() { - const codes = new Map(); - const styles = { - modifier: { - reset: [0, 0], - // 21 isn't widely supported and 22 does the same thing - bold: [1, 22], - dim: [2, 22], - italic: [3, 23], - underline: [4, 24], - inverse: [7, 27], - hidden: [8, 28], - strikethrough: [9, 29] - }, - color: { - black: [30, 39], - red: [31, 39], - green: [32, 39], - yellow: [33, 39], - blue: [34, 39], - magenta: [35, 39], - cyan: [36, 39], - white: [37, 39], - - // Bright color - blackBright: [90, 39], - redBright: [91, 39], - greenBright: [92, 39], - yellowBright: [93, 39], - blueBright: [94, 39], - magentaBright: [95, 39], - cyanBright: [96, 39], - whiteBright: [97, 39] - }, - bgColor: { - bgBlack: [40, 49], - bgRed: [41, 49], - bgGreen: [42, 49], - bgYellow: [43, 49], - bgBlue: [44, 49], - bgMagenta: [45, 49], - bgCyan: [46, 49], - bgWhite: [47, 49], - - // Bright color - bgBlackBright: [100, 49], - bgRedBright: [101, 49], - bgGreenBright: [102, 49], - bgYellowBright: [103, 49], - bgBlueBright: [104, 49], - bgMagentaBright: [105, 49], - bgCyanBright: [106, 49], - bgWhiteBright: [107, 49] - } - }; - - // Alias bright black as gray (and grey) - styles.color.gray = styles.color.blackBright; - styles.bgColor.bgGray = styles.bgColor.bgBlackBright; - styles.color.grey = styles.color.blackBright; - styles.bgColor.bgGrey = styles.bgColor.bgBlackBright; - - for (const [groupName, group] of Object.entries(styles)) { - for (const [styleName, style] of Object.entries(group)) { - styles[styleName] = { - open: `\u001B[${style[0]}m`, - close: `\u001B[${style[1]}m` - }; - - group[styleName] = styles[styleName]; - - codes.set(style[0], style[1]); - } - - Object.defineProperty(styles, groupName, { - value: group, - enumerable: false - }); - } - - Object.defineProperty(styles, 'codes', { - value: codes, - enumerable: false - }); - - styles.color.close = '\u001B[39m'; - styles.bgColor.close = '\u001B[49m'; - - setLazyProperty(styles.color, 'ansi', () => makeDynamicStyles(wrapAnsi16, 'ansi16', ansi2ansi, false)); - setLazyProperty(styles.color, 'ansi256', () => makeDynamicStyles(wrapAnsi256, 'ansi256', ansi2ansi, false)); - setLazyProperty(styles.color, 'ansi16m', () => makeDynamicStyles(wrapAnsi16m, 'rgb', rgb2rgb, false)); - setLazyProperty(styles.bgColor, 'ansi', () => makeDynamicStyles(wrapAnsi16, 'ansi16', ansi2ansi, true)); - setLazyProperty(styles.bgColor, 'ansi256', () => makeDynamicStyles(wrapAnsi256, 'ansi256', ansi2ansi, true)); - setLazyProperty(styles.bgColor, 'ansi16m', () => makeDynamicStyles(wrapAnsi16m, 'rgb', rgb2rgb, true)); - - return styles; - } - - // Make the export immutable - Object.defineProperty(module, 'exports', { - enumerable: true, - get: assembleStyles - }); - }(ansiStyles$1)); - - /* - The MIT License (MIT) - - Copyright (c) 2016 CoderPuppy - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all - copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - - */ - var _endianness; - function endianness() { - if (typeof _endianness === 'undefined') { - var a = new ArrayBuffer(2); - var b = new Uint8Array(a); - var c = new Uint16Array(a); - b[0] = 1; - b[1] = 2; - if (c[0] === 258) { - _endianness = 'BE'; - } else if (c[0] === 513){ - _endianness = 'LE'; - } else { - throw new Error('unable to figure out endianess'); - } - } - return _endianness; - } - - function hostname() { - if (typeof global.location !== 'undefined') { - return global.location.hostname - } else return ''; - } - - function loadavg() { - return []; - } - - function uptime() { - return 0; - } - - function freemem() { - return Number.MAX_VALUE; - } - - function totalmem() { - return Number.MAX_VALUE; - } - - function cpus() { - return []; - } - - function type() { - return 'Browser'; - } - - function release () { - if (typeof global.navigator !== 'undefined') { - return global.navigator.appVersion; - } - return ''; - } - - function networkInterfaces(){} - function getNetworkInterfaces(){} - - function arch() { - return 'javascript'; - } - - function platform() { - return 'browser'; - } - - function tmpDir() { - return '/tmp'; - } - var tmpdir = tmpDir; - - var EOL = '\n'; - var os$1 = { - EOL: EOL, - tmpdir: tmpdir, - tmpDir: tmpDir, - networkInterfaces:networkInterfaces, - getNetworkInterfaces: getNetworkInterfaces, - release: release, - type: type, - cpus: cpus, - totalmem: totalmem, - freemem: freemem, - uptime: uptime, - loadavg: loadavg, - hostname: hostname, - endianness: endianness, - }; - - var os$2 = /*#__PURE__*/Object.freeze({ - __proto__: null, - endianness: endianness, - hostname: hostname, - loadavg: loadavg, - uptime: uptime, - freemem: freemem, - totalmem: totalmem, - cpus: cpus, - type: type, - release: release, - networkInterfaces: networkInterfaces, - getNetworkInterfaces: getNetworkInterfaces, - arch: arch, - platform: platform, - tmpDir: tmpDir, - tmpdir: tmpdir, - EOL: EOL, - 'default': os$1 - }); - - var require$$0 = /*@__PURE__*/getAugmentedNamespace(os$2); - - // MIT lisence - // from https://github.com/substack/tty-browserify/blob/1ba769a6429d242f36226538835b4034bf6b7886/index.js - - function isatty() { - return false; - } - - function ReadStream() { - throw new Error('tty.ReadStream is not implemented'); - } - - function WriteStream() { - throw new Error('tty.ReadStream is not implemented'); - } - - var tty$1 = { - isatty: isatty, - ReadStream: ReadStream, - WriteStream: WriteStream - }; - - var tty$2 = /*#__PURE__*/Object.freeze({ - __proto__: null, - isatty: isatty, - ReadStream: ReadStream, - WriteStream: WriteStream, - 'default': tty$1 - }); - - var require$$1 = /*@__PURE__*/getAugmentedNamespace(tty$2); - - var hasFlag$1 = (flag, argv = process.argv) => { - const prefix = flag.startsWith('-') ? '' : (flag.length === 1 ? '-' : '--'); - const position = argv.indexOf(prefix + flag); - const terminatorPosition = argv.indexOf('--'); - return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition); - }; - - const os = require$$0; - const tty = require$$1; - const hasFlag = hasFlag$1; - - const {env} = process; - - let forceColor; - if (hasFlag('no-color') || - hasFlag('no-colors') || - hasFlag('color=false') || - hasFlag('color=never')) { - forceColor = 0; - } else if (hasFlag('color') || - hasFlag('colors') || - hasFlag('color=true') || - hasFlag('color=always')) { - forceColor = 1; - } - - if ('FORCE_COLOR' in env) { - if (env.FORCE_COLOR === 'true') { - forceColor = 1; - } else if (env.FORCE_COLOR === 'false') { - forceColor = 0; - } else { - forceColor = env.FORCE_COLOR.length === 0 ? 1 : Math.min(parseInt(env.FORCE_COLOR, 10), 3); - } - } - - function translateLevel(level) { - if (level === 0) { - return false; - } - - return { - level, - hasBasic: true, - has256: level >= 2, - has16m: level >= 3 - }; - } - - function supportsColor(haveStream, streamIsTTY) { - if (forceColor === 0) { - return 0; - } - - if (hasFlag('color=16m') || - hasFlag('color=full') || - hasFlag('color=truecolor')) { - return 3; - } - - if (hasFlag('color=256')) { - return 2; - } - - if (haveStream && !streamIsTTY && forceColor === undefined) { - return 0; - } - - const min = forceColor || 0; - - if (env.TERM === 'dumb') { - return min; - } - - if (process.platform === 'win32') { - // Windows 10 build 10586 is the first Windows release that supports 256 colors. - // Windows 10 build 14931 is the first release that supports 16m/TrueColor. - const osRelease = os.release().split('.'); - if ( - Number(osRelease[0]) >= 10 && - Number(osRelease[2]) >= 10586 - ) { - return Number(osRelease[2]) >= 14931 ? 3 : 2; - } - - return 1; - } - - if ('CI' in env) { - if (['TRAVIS', 'CIRCLECI', 'APPVEYOR', 'GITLAB_CI', 'GITHUB_ACTIONS', 'BUILDKITE'].some(sign => sign in env) || env.CI_NAME === 'codeship') { - return 1; - } - - return min; - } - - if ('TEAMCITY_VERSION' in env) { - return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0; - } - - if (env.COLORTERM === 'truecolor') { - return 3; - } - - if ('TERM_PROGRAM' in env) { - const version = parseInt((env.TERM_PROGRAM_VERSION || '').split('.')[0], 10); - - switch (env.TERM_PROGRAM) { - case 'iTerm.app': - return version >= 3 ? 3 : 2; - case 'Apple_Terminal': - return 2; - // No default - } - } - - if (/-256(color)?$/i.test(env.TERM)) { - return 2; - } - - if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) { - return 1; - } - - if ('COLORTERM' in env) { - return 1; - } - - return min; - } - - function getSupportLevel(stream) { - const level = supportsColor(stream, stream && stream.isTTY); - return translateLevel(level); - } - - var supportsColor_1 = { - supportsColor: getSupportLevel, - stdout: translateLevel(supportsColor(true, tty.isatty(1))), - stderr: translateLevel(supportsColor(true, tty.isatty(2))) - }; - - const stringReplaceAll$1 = (string, substring, replacer) => { - let index = string.indexOf(substring); - if (index === -1) { - return string; - } - - const substringLength = substring.length; - let endIndex = 0; - let returnValue = ''; - do { - returnValue += string.substr(endIndex, index - endIndex) + substring + replacer; - endIndex = index + substringLength; - index = string.indexOf(substring, endIndex); - } while (index !== -1); - - returnValue += string.substr(endIndex); - return returnValue; - }; - - const stringEncaseCRLFWithFirstIndex$1 = (string, prefix, postfix, index) => { - let endIndex = 0; - let returnValue = ''; - do { - const gotCR = string[index - 1] === '\r'; - returnValue += string.substr(endIndex, (gotCR ? index - 1 : index) - endIndex) + prefix + (gotCR ? '\r\n' : '\n') + postfix; - endIndex = index + 1; - index = string.indexOf('\n', endIndex); - } while (index !== -1); - - returnValue += string.substr(endIndex); - return returnValue; - }; - - var util = { - stringReplaceAll: stringReplaceAll$1, - stringEncaseCRLFWithFirstIndex: stringEncaseCRLFWithFirstIndex$1 - }; - - const TEMPLATE_REGEX = /(?:\\(u(?:[a-f\d]{4}|\{[a-f\d]{1,6}\})|x[a-f\d]{2}|.))|(?:\{(~)?(\w+(?:\([^)]*\))?(?:\.\w+(?:\([^)]*\))?)*)(?:[ \t]|(?=\r?\n)))|(\})|((?:.|[\r\n\f])+?)/gi; - const STYLE_REGEX = /(?:^|\.)(\w+)(?:\(([^)]*)\))?/g; - const STRING_REGEX = /^(['"])((?:\\.|(?!\1)[^\\])*)\1$/; - const ESCAPE_REGEX = /\\(u(?:[a-f\d]{4}|{[a-f\d]{1,6}})|x[a-f\d]{2}|.)|([^\\])/gi; - - const ESCAPES = new Map([ - ['n', '\n'], - ['r', '\r'], - ['t', '\t'], - ['b', '\b'], - ['f', '\f'], - ['v', '\v'], - ['0', '\0'], - ['\\', '\\'], - ['e', '\u001B'], - ['a', '\u0007'] - ]); - - function unescape(c) { - const u = c[0] === 'u'; - const bracket = c[1] === '{'; - - if ((u && !bracket && c.length === 5) || (c[0] === 'x' && c.length === 3)) { - return String.fromCharCode(parseInt(c.slice(1), 16)); - } - - if (u && bracket) { - return String.fromCodePoint(parseInt(c.slice(2, -1), 16)); - } - - return ESCAPES.get(c) || c; - } - - function parseArguments(name, arguments_) { - const results = []; - const chunks = arguments_.trim().split(/\s*,\s*/g); - let matches; - - for (const chunk of chunks) { - const number = Number(chunk); - if (!Number.isNaN(number)) { - results.push(number); - } else if ((matches = chunk.match(STRING_REGEX))) { - results.push(matches[2].replace(ESCAPE_REGEX, (m, escape, character) => escape ? unescape(escape) : character)); - } else { - throw new Error(`Invalid Chalk template style argument: ${chunk} (in style '${name}')`); - } - } - - return results; - } - - function parseStyle(style) { - STYLE_REGEX.lastIndex = 0; - - const results = []; - let matches; - - while ((matches = STYLE_REGEX.exec(style)) !== null) { - const name = matches[1]; - - if (matches[2]) { - const args = parseArguments(name, matches[2]); - results.push([name].concat(args)); - } else { - results.push([name]); - } - } - - return results; - } - - function buildStyle(chalk, styles) { - const enabled = {}; - - for (const layer of styles) { - for (const style of layer.styles) { - enabled[style[0]] = layer.inverse ? null : style.slice(1); - } - } - - let current = chalk; - for (const [styleName, styles] of Object.entries(enabled)) { - if (!Array.isArray(styles)) { - continue; - } - - if (!(styleName in current)) { - throw new Error(`Unknown Chalk style: ${styleName}`); - } - - current = styles.length > 0 ? current[styleName](...styles) : current[styleName]; - } - - return current; - } - - var templates = (chalk, temporary) => { - const styles = []; - const chunks = []; - let chunk = []; - - // eslint-disable-next-line max-params - temporary.replace(TEMPLATE_REGEX, (m, escapeCharacter, inverse, style, close, character) => { - if (escapeCharacter) { - chunk.push(unescape(escapeCharacter)); - } else if (style) { - const string = chunk.join(''); - chunk = []; - chunks.push(styles.length === 0 ? string : buildStyle(chalk, styles)(string)); - styles.push({inverse, styles: parseStyle(style)}); - } else if (close) { - if (styles.length === 0) { - throw new Error('Found extraneous } in Chalk template literal'); - } - - chunks.push(buildStyle(chalk, styles)(chunk.join(''))); - chunk = []; - styles.pop(); - } else { - chunk.push(character); - } - }); - - chunks.push(chunk.join('')); - - if (styles.length > 0) { - const errMessage = `Chalk template literal is missing ${styles.length} closing bracket${styles.length === 1 ? '' : 's'} (\`}\`)`; - throw new Error(errMessage); - } - - return chunks.join(''); - }; - - const ansiStyles = ansiStyles$1.exports; - const {stdout: stdoutColor, stderr: stderrColor} = supportsColor_1; - const { - stringReplaceAll, - stringEncaseCRLFWithFirstIndex - } = util; - - const {isArray: isArray$2} = Array; - - // `supportsColor.level` → `ansiStyles.color[name]` mapping - const levelMapping = [ - 'ansi', - 'ansi', - 'ansi256', - 'ansi16m' - ]; - - const styles = Object.create(null); - - const applyOptions = (object, options = {}) => { - if (options.level && !(Number.isInteger(options.level) && options.level >= 0 && options.level <= 3)) { - throw new Error('The `level` option should be an integer from 0 to 3'); - } - - // Detect level if not set manually - const colorLevel = stdoutColor ? stdoutColor.level : 0; - object.level = options.level === undefined ? colorLevel : options.level; - }; - - class ChalkClass { - constructor(options) { - // eslint-disable-next-line no-constructor-return - return chalkFactory(options); - } - } - - const chalkFactory = options => { - const chalk = {}; - applyOptions(chalk, options); - - chalk.template = (...arguments_) => chalkTag(chalk.template, ...arguments_); - - Object.setPrototypeOf(chalk, Chalk.prototype); - Object.setPrototypeOf(chalk.template, chalk); - - chalk.template.constructor = () => { - throw new Error('`chalk.constructor()` is deprecated. Use `new chalk.Instance()` instead.'); - }; - - chalk.template.Instance = ChalkClass; - - return chalk.template; - }; - - function Chalk(options) { - return chalkFactory(options); - } - - for (const [styleName, style] of Object.entries(ansiStyles)) { - styles[styleName] = { - get() { - const builder = createBuilder(this, createStyler(style.open, style.close, this._styler), this._isEmpty); - Object.defineProperty(this, styleName, {value: builder}); - return builder; - } - }; - } - - styles.visible = { - get() { - const builder = createBuilder(this, this._styler, true); - Object.defineProperty(this, 'visible', {value: builder}); - return builder; - } - }; - - const usedModels = ['rgb', 'hex', 'keyword', 'hsl', 'hsv', 'hwb', 'ansi', 'ansi256']; - - for (const model of usedModels) { - styles[model] = { - get() { - const {level} = this; - return function (...arguments_) { - const styler = createStyler(ansiStyles.color[levelMapping[level]][model](...arguments_), ansiStyles.color.close, this._styler); - return createBuilder(this, styler, this._isEmpty); - }; - } - }; - } - - for (const model of usedModels) { - const bgModel = 'bg' + model[0].toUpperCase() + model.slice(1); - styles[bgModel] = { - get() { - const {level} = this; - return function (...arguments_) { - const styler = createStyler(ansiStyles.bgColor[levelMapping[level]][model](...arguments_), ansiStyles.bgColor.close, this._styler); - return createBuilder(this, styler, this._isEmpty); - }; - } - }; - } - - const proto = Object.defineProperties(() => {}, { - ...styles, - level: { - enumerable: true, - get() { - return this._generator.level; - }, - set(level) { - this._generator.level = level; - } - } - }); - - const createStyler = (open, close, parent) => { - let openAll; - let closeAll; - if (parent === undefined) { - openAll = open; - closeAll = close; - } else { - openAll = parent.openAll + open; - closeAll = close + parent.closeAll; - } - - return { - open, - close, - openAll, - closeAll, - parent - }; - }; - - const createBuilder = (self, _styler, _isEmpty) => { - const builder = (...arguments_) => { - if (isArray$2(arguments_[0]) && isArray$2(arguments_[0].raw)) { - // Called as a template literal, for example: chalk.red`2 + 3 = {bold ${2+3}}` - return applyStyle(builder, chalkTag(builder, ...arguments_)); - } - - // Single argument is hot path, implicit coercion is faster than anything - // eslint-disable-next-line no-implicit-coercion - return applyStyle(builder, (arguments_.length === 1) ? ('' + arguments_[0]) : arguments_.join(' ')); - }; - - // We alter the prototype because we must return a function, but there is - // no way to create a function with a different prototype - Object.setPrototypeOf(builder, proto); - - builder._generator = self; - builder._styler = _styler; - builder._isEmpty = _isEmpty; - - return builder; - }; - - const applyStyle = (self, string) => { - if (self.level <= 0 || !string) { - return self._isEmpty ? '' : string; - } - - let styler = self._styler; - - if (styler === undefined) { - return string; - } - - const {openAll, closeAll} = styler; - if (string.indexOf('\u001B') !== -1) { - while (styler !== undefined) { - // Replace any instances already present with a re-opening code - // otherwise only the part of the string until said closing code - // will be colored, and the rest will simply be 'plain'. - string = stringReplaceAll(string, styler.close, styler.open); - - styler = styler.parent; - } - } - - // We can move both next actions out of loop, because remaining actions in loop won't have - // any/visible effect on parts we add here. Close the styling before a linebreak and reopen - // after next line to fix a bleed issue on macOS: https://github.com/chalk/chalk/pull/92 - const lfIndex = string.indexOf('\n'); - if (lfIndex !== -1) { - string = stringEncaseCRLFWithFirstIndex(string, closeAll, openAll, lfIndex); - } - - return openAll + string + closeAll; - }; - - let template; - const chalkTag = (chalk, ...strings) => { - const [firstString] = strings; - - if (!isArray$2(firstString) || !isArray$2(firstString.raw)) { - // If chalk() was called by itself or with a string, - // return the string itself as a string. - return strings.join(' '); - } - - const arguments_ = strings.slice(1); - const parts = [firstString.raw[0]]; - - for (let i = 1; i < firstString.length; i++) { - parts.push( - String(arguments_[i - 1]).replace(/[{}\\]/g, '\\$&'), - String(firstString.raw[i]) - ); - } - - if (template === undefined) { - template = templates; - } - - return template(chalk, parts.join('')); - }; - - Object.defineProperties(Chalk.prototype, styles); - - const chalk = Chalk(); // eslint-disable-line new-cap - chalk.supportsColor = stdoutColor; - chalk.stderr = Chalk({level: stderrColor ? stderrColor.level : 0}); // eslint-disable-line new-cap - chalk.stderr.supportsColor = stderrColor; - - var source = chalk; - - function noop(){} - - var console$1 = global.console ? global.console : { - log: noop, - info: noop, - warn: noop, - error: noop, - dir: noop, - assert: noop, - time: noop, - timeEnd: noop, - trace: noop - }; - - var console$2 = /*#__PURE__*/Object.freeze({ - __proto__: null, - 'default': console$1 - }); - - var require$$2 = /*@__PURE__*/getAugmentedNamespace(console$2); - - var __importDefault$2 = (commonjsGlobal && commonjsGlobal.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; - }; - Object.defineProperty(debug, "__esModule", { value: true }); - debug.DebugLogger = debug.newDebugLogger = void 0; - const chalk_1 = __importDefault$2(source); - const utils_1$1 = utils; - function indentString(indentLevel) { - let str = ""; - for (let i = 0; i < indentLevel; i++) { - str += chalk_1.default.blackBright("⎸ "); - } - return str; - } - function isEnabled(name) { - const v = process.env.APOLLO_FEDERATION_DEBUG; - const bool = (0, utils_1$1.validateStringContainsBoolean)(v); - if (bool !== undefined) { - return bool; - } - const enabledNames = v.split(',').map(n => n.trim()); - return enabledNames.includes(name); - } - let currentIndentLevel = 0; - let currentIndentation = ''; - let maxLoggerNameLength = 0; - const createdLoggers = []; - function newDebugLogger(name) { - const enabled = isEnabled(name); - const created = new DebugLogger(name, enabled); - if (enabled) { - commonjsGlobal.console = require$$2; - createdLoggers.push(created); - maxLoggerNameLength = Math.max(maxLoggerNameLength, name.length); - for (const logger of createdLoggers) { - DebugLogger.prototype['updateHeader'].call(logger, maxLoggerNameLength); - } - } - return created; - } - debug.newDebugLogger = newDebugLogger; - function increaseIndentation() { - currentIndentLevel++; - currentIndentation = indentString(currentIndentLevel); - } - function decreaseIndentation() { - if (currentIndentLevel > 0) { - currentIndentLevel--; - currentIndentation = indentString(currentIndentLevel); - } - } - class DebugLogger { - constructor(name, enabled) { - this.name = name; - this.enabled = enabled; - this.header = chalk_1.default.blackBright(`[${name}] `); - } - updateHeader(maxLength) { - let padding = ""; - if (maxLength > this.name.length) { - const toPad = maxLength - this.name.length; - for (let i = 0; i < toPad; i++) { - padding += " "; - } - } - this.header = chalk_1.default.blackBright('[' + padding + this.name + '] '); - } - doLog(str) { - const indent = this.header + currentIndentation; - const withIndentedNewlines = str.replace(/\n/g, '\n' + indent + ' '); - console.log(indent + withIndentedNewlines); - } - log(message, prefix = chalk_1.default.yellow('• ')) { - if (!this.enabled) - return this; - if (typeof message !== 'string') { - message = message(); - } - this.doLog(prefix + message); - return this; - } - groupedValues(values, printFn, initialMessage) { - if (!this.enabled) - return this; - this.group(initialMessage); - for (const value of values) { - this.doLog('- ' + printFn(value)); - } - return this.groupEnd(); - } - groupedEntries(map, keyPrintFn, valuePrintFn) { - if (!this.enabled) - return this; - this.group(); - for (const [k, v] of map.entries()) { - this.doLog('- ' + keyPrintFn(k) + ': ' + valuePrintFn(v)); - } - return this.groupEnd(); - } - group(openingMessage) { - if (this.enabled) { - if (openingMessage) { - this.log(openingMessage, chalk_1.default.blue('‣ ')); - } - increaseIndentation(); - } - return this; - } - groupEnd(closingMessage) { - if (!this.enabled) { - return this; - } - decreaseIndentation(); - if (closingMessage) { - this.log(closingMessage, chalk_1.default.green('⇒ ')); - } - return this; - } - } - debug.DebugLogger = DebugLogger; - - var joinSpec = {}; - - (function (exports) { - Object.defineProperty(exports, "__esModule", { value: true }); - exports.JOIN_VERSIONS = exports.JoinSpecDefinition = exports.joinIdentity = void 0; - const graphql_1 = require$$0$2; - const coreSpec_1 = coreSpec; - const definitions_1 = definitions; - const utils_1 = utils; - exports.joinIdentity = 'https://specs.apollo.dev/join'; - function sanitizeGraphQLName(name) { - const alphaNumericUnderscoreOnly = name.replace(/[\W]/g, '_'); - const noNumericFirstChar = alphaNumericUnderscoreOnly.match(/^\d/) - ? '_' + alphaNumericUnderscoreOnly - : alphaNumericUnderscoreOnly; - const noUnderscoreNumericEnding = noNumericFirstChar.match(/_\d+$/) - ? noNumericFirstChar + '_' - : noNumericFirstChar; - const toUpper = noUnderscoreNumericEnding.toLocaleUpperCase(); - return toUpper; - } - class JoinSpecDefinition extends coreSpec_1.FeatureDefinition { - constructor(version) { - super(new coreSpec_1.FeatureUrl(exports.joinIdentity, 'join', version)); - } - isV01() { - return this.version.equals(new coreSpec_1.FeatureVersion(0, 1)); - } - addElementsToSchema(schema) { - const joinGraph = this.addDirective(schema, 'graph').addLocations(graphql_1.DirectiveLocation.ENUM_VALUE); - joinGraph.addArgument('name', new definitions_1.NonNullType(schema.stringType())); - joinGraph.addArgument('url', new definitions_1.NonNullType(schema.stringType())); - const graphEnum = this.addEnumType(schema, 'Graph'); - const joinFieldSet = this.addScalarType(schema, 'FieldSet'); - const joinType = this.addDirective(schema, 'type').addLocations(graphql_1.DirectiveLocation.OBJECT, graphql_1.DirectiveLocation.INTERFACE, graphql_1.DirectiveLocation.UNION, graphql_1.DirectiveLocation.ENUM, graphql_1.DirectiveLocation.INPUT_OBJECT, graphql_1.DirectiveLocation.SCALAR); - if (!this.isV01()) { - joinType.repeatable = true; - } - joinType.addArgument('graph', new definitions_1.NonNullType(graphEnum)); - joinType.addArgument('key', joinFieldSet); - if (!this.isV01()) { - joinType.addArgument('extension', new definitions_1.NonNullType(schema.booleanType()), false); - } - const joinField = this.addDirective(schema, 'field').addLocations(graphql_1.DirectiveLocation.FIELD_DEFINITION, graphql_1.DirectiveLocation.INPUT_FIELD_DEFINITION); - joinField.repeatable = true; - joinField.addArgument('graph', new definitions_1.NonNullType(graphEnum)); - joinField.addArgument('requires', joinFieldSet); - joinField.addArgument('provides', joinFieldSet); - if (!this.isV01()) { - joinField.addArgument('type', schema.stringType()); - joinField.addArgument('external', schema.booleanType()); - } - if (!this.isV01()) { - const joinImplements = this.addDirective(schema, 'implements').addLocations(graphql_1.DirectiveLocation.OBJECT, graphql_1.DirectiveLocation.INTERFACE); - joinImplements.repeatable = true; - joinImplements.addArgument('graph', new definitions_1.NonNullType(graphEnum)); - joinImplements.addArgument('interface', new definitions_1.NonNullType(schema.stringType())); - } - if (this.isV01()) { - const joinOwner = this.addDirective(schema, 'owner').addLocations(graphql_1.DirectiveLocation.OBJECT); - joinOwner.addArgument('graph', new definitions_1.NonNullType(graphEnum)); - } - } - populateGraphEnum(schema, subgraphs) { - const sanitizedNameToSubgraphs = new utils_1.MultiMap(); - for (const subgraph of subgraphs) { - const sanitized = sanitizeGraphQLName(subgraph.name); - sanitizedNameToSubgraphs.add(sanitized, subgraph); - } - const subgraphToEnumName = new Map(); - for (const [sanitizedName, subgraphsForName] of sanitizedNameToSubgraphs) { - if (subgraphsForName.length === 1) { - subgraphToEnumName.set(subgraphsForName[0].name, sanitizedName); - } - else { - for (const [index, subgraph] of subgraphsForName.entries()) { - subgraphToEnumName.set(subgraph.name, `${sanitizedName}_${index + 1}`); - } - } - } - const graphEnum = this.graphEnum(schema); - const graphDirective = this.graphDirective(schema); - for (const subgraph of subgraphs) { - const enumValue = graphEnum.addValue(subgraphToEnumName.get(subgraph.name)); - enumValue.applyDirective(graphDirective, { name: subgraph.name, url: subgraph.url }); - } - return subgraphToEnumName; - } - fieldSetScalar(schema) { - return this.type(schema, 'FieldSet'); - } - graphEnum(schema) { - return this.type(schema, 'Graph'); - } - graphDirective(schema) { - return this.directive(schema, 'graph'); - } - typeDirective(schema) { - return this.directive(schema, 'type'); - } - implementsDirective(schema) { - return this.directive(schema, 'implements'); - } - fieldDirective(schema) { - return this.directive(schema, 'field'); - } - ownerDirective(schema) { - return this.directive(schema, 'owner'); - } - } - exports.JoinSpecDefinition = JoinSpecDefinition; - exports.JOIN_VERSIONS = new coreSpec_1.FeatureDefinitions(exports.joinIdentity) - .add(new JoinSpecDefinition(new coreSpec_1.FeatureVersion(0, 1))) - .add(new JoinSpecDefinition(new coreSpec_1.FeatureVersion(0, 2))); - - }(joinSpec)); - - var supergraphs = {}; - - var extractSubgraphsFromSupergraph$1 = {}; - - var empty = {}; - - var empty$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - 'default': empty - }); - - var require$$10 = /*@__PURE__*/getAugmentedNamespace(empty$1); - - // Copyright Joyent, Inc. and other Node contributors. - // - // Permission is hereby granted, free of charge, to any person obtaining a - // copy of this software and associated documentation files (the - // "Software"), to deal in the Software without restriction, including - // without limitation the rights to use, copy, modify, merge, publish, - // distribute, sublicense, and/or sell copies of the Software, and to permit - // persons to whom the Software is furnished to do so, subject to the - // following conditions: - // - // The above copyright notice and this permission notice shall be included - // in all copies or substantial portions of the Software. - // - // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN - // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE - // USE OR OTHER DEALINGS IN THE SOFTWARE. - - // resolves . and .. elements in a path array with directory names there - // must be no slashes, empty elements, or device names (c:\) in the array - // (so also no leading and trailing slashes - it does not distinguish - // relative and absolute paths) - function normalizeArray(parts, allowAboveRoot) { - // if the path tries to go above the root, `up` ends up > 0 - var up = 0; - for (var i = parts.length - 1; i >= 0; i--) { - var last = parts[i]; - if (last === '.') { - parts.splice(i, 1); - } else if (last === '..') { - parts.splice(i, 1); - up++; - } else if (up) { - parts.splice(i, 1); - up--; - } - } - - // if the path is allowed to go above the root, restore leading ..s - if (allowAboveRoot) { - for (; up--; up) { - parts.unshift('..'); - } - } - - return parts; - } - - // Split a filename into [root, dir, basename, ext], unix version - // 'root' is just a slash, or nothing. - var splitPathRe = - /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; - var splitPath = function(filename) { - return splitPathRe.exec(filename).slice(1); - }; - - // path.resolve([from ...], to) - // posix version - function resolve() { - var resolvedPath = '', - resolvedAbsolute = false; - - for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { - var path = (i >= 0) ? arguments[i] : '/'; - - // Skip empty and invalid entries - if (typeof path !== 'string') { - throw new TypeError('Arguments to path.resolve must be strings'); - } else if (!path) { - continue; - } - - resolvedPath = path + '/' + resolvedPath; - resolvedAbsolute = path.charAt(0) === '/'; - } - - // At this point the path should be resolved to a full absolute path, but - // handle relative paths to be safe (might happen when process.cwd() fails) - - // Normalize the path - resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) { - return !!p; - }), !resolvedAbsolute).join('/'); - - return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.'; - } - // path.normalize(path) - // posix version - function normalize(path) { - var isPathAbsolute = isAbsolute(path), - trailingSlash = substr(path, -1) === '/'; - - // Normalize the path - path = normalizeArray(filter(path.split('/'), function(p) { - return !!p; - }), !isPathAbsolute).join('/'); - - if (!path && !isPathAbsolute) { - path = '.'; - } - if (path && trailingSlash) { - path += '/'; - } - - return (isPathAbsolute ? '/' : '') + path; - } - // posix version - function isAbsolute(path) { - return path.charAt(0) === '/'; - } - - // posix version - function join() { - var paths = Array.prototype.slice.call(arguments, 0); - return normalize(filter(paths, function(p, index) { - if (typeof p !== 'string') { - throw new TypeError('Arguments to path.join must be strings'); - } - return p; - }).join('/')); - } - - - // path.relative(from, to) - // posix version - function relative(from, to) { - from = resolve(from).substr(1); - to = resolve(to).substr(1); - - function trim(arr) { - var start = 0; - for (; start < arr.length; start++) { - if (arr[start] !== '') break; - } - - var end = arr.length - 1; - for (; end >= 0; end--) { - if (arr[end] !== '') break; - } - - if (start > end) return []; - return arr.slice(start, end - start + 1); - } - - var fromParts = trim(from.split('/')); - var toParts = trim(to.split('/')); - - var length = Math.min(fromParts.length, toParts.length); - var samePartsLength = length; - for (var i = 0; i < length; i++) { - if (fromParts[i] !== toParts[i]) { - samePartsLength = i; - break; - } - } - - var outputParts = []; - for (var i = samePartsLength; i < fromParts.length; i++) { - outputParts.push('..'); - } - - outputParts = outputParts.concat(toParts.slice(samePartsLength)); - - return outputParts.join('/'); - } - - var sep = '/'; - var delimiter = ':'; - - function dirname(path) { - var result = splitPath(path), - root = result[0], - dir = result[1]; - - if (!root && !dir) { - // No dirname whatsoever - return '.'; - } - - if (dir) { - // It has a dirname, strip trailing slash - dir = dir.substr(0, dir.length - 1); - } - - return root + dir; - } - - function basename(path, ext) { - var f = splitPath(path)[2]; - // TODO: make this comparison case-insensitive on windows? - if (ext && f.substr(-1 * ext.length) === ext) { - f = f.substr(0, f.length - ext.length); - } - return f; - } - - - function extname(path) { - return splitPath(path)[3]; - } - var path = { - extname: extname, - basename: basename, - dirname: dirname, - sep: sep, - delimiter: delimiter, - relative: relative, - join: join, - isAbsolute: isAbsolute, - normalize: normalize, - resolve: resolve - }; - function filter (xs, f) { - if (xs.filter) return xs.filter(f); - var res = []; - for (var i = 0; i < xs.length; i++) { - if (f(xs[i], i, xs)) res.push(xs[i]); - } - return res; - } - - // String.prototype.substr - negative index don't work in IE8 - var substr = 'ab'.substr(-1) === 'b' ? - function (str, start, len) { return str.substr(start, len) } : - function (str, start, len) { - if (start < 0) start = str.length + start; - return str.substr(start, len); - } - ; - - var path$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - resolve: resolve, - normalize: normalize, - isAbsolute: isAbsolute, - join: join, - relative: relative, - sep: sep, - delimiter: delimiter, - dirname: dirname, - basename: basename, - extname: extname, - 'default': path - }); - - var require$$11 = /*@__PURE__*/getAugmentedNamespace(path$1); - - var __importDefault$1 = (commonjsGlobal && commonjsGlobal.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; - }; - Object.defineProperty(extractSubgraphsFromSupergraph$1, "__esModule", { value: true }); - extractSubgraphsFromSupergraph$1.extractSubgraphsFromSupergraph = extractSubgraphsFromSupergraph$1.extractSubgraphsNamesAndUrlsFromSupergraph = void 0; - const definitions_1$1 = definitions; - const federation_1 = federation; - const coreSpec_1$1 = coreSpec; - const federation_2 = federation; - const utils_1 = utils; - const supergraphs_1 = supergraphs; - const buildSchema_1$1 = buildSchema$1; - const graphql_1$2 = require$$0$2; - const operations_1 = operations; - const types_1 = types; - const print_1 = print; - const fs_1 = __importDefault$1(require$$10); - const path_1 = __importDefault$1(require$$11); - const utils_2 = utils; - function filteredTypes(supergraph, joinSpec, coreSpec) { - return supergraph.types().filter(t => !joinSpec.isSpecType(t) && !coreSpec.isSpecType(t)); - } - function extractSubgraphsNamesAndUrlsFromSupergraph(supergraph) { - const [_, joinSpec] = (0, supergraphs_1.validateSupergraph)(supergraph); - const [subgraphs] = collectEmptySubgraphs(supergraph, joinSpec); - return subgraphs.values().map(subgraph => { return { name: subgraph.name, url: subgraph.url }; }); - } - extractSubgraphsFromSupergraph$1.extractSubgraphsNamesAndUrlsFromSupergraph = extractSubgraphsNamesAndUrlsFromSupergraph; - function collectEmptySubgraphs(supergraph, joinSpec) { - const subgraphs = new federation_2.Subgraphs(); - const graphDirective = joinSpec.graphDirective(supergraph); - const graphEnum = joinSpec.graphEnum(supergraph); - const graphEnumNameToSubgraphName = new Map(); - for (const value of graphEnum.values) { - const graphApplications = value.appliedDirectivesOf(graphDirective); - if (!graphApplications.length) { - throw new Error(`Value ${value} of join__Graph enum has no @join__graph directive`); - } - const info = graphApplications[0].arguments(); - const subgraph = new federation_2.Subgraph(info.name, info.url, new definitions_1$1.Schema(federation_1.federationBuiltIns), false); - subgraphs.add(subgraph); - graphEnumNameToSubgraphName.set(value.name, info.name); - } - return [subgraphs, graphEnumNameToSubgraphName]; - } - function extractSubgraphsFromSupergraph(supergraph) { - const [coreFeatures, joinSpec] = (0, supergraphs_1.validateSupergraph)(supergraph); - const isFed1 = joinSpec.version.equals(new coreSpec_1$1.FeatureVersion(0, 1)); - const [subgraphs, graphEnumNameToSubgraphName] = collectEmptySubgraphs(supergraph, joinSpec); - const typeDirective = joinSpec.typeDirective(supergraph); - const implementsDirective = joinSpec.implementsDirective(supergraph); - for (const type of filteredTypes(supergraph, joinSpec, coreFeatures.coreDefinition)) { - const typeApplications = type.appliedDirectivesOf(typeDirective); - if (!typeApplications.length) { - subgraphs.values().map(sg => sg.schema).forEach(schema => schema.addType((0, definitions_1$1.newNamedType)(type.kind, type.name))); - } - else { - for (const application of typeApplications) { - const args = application.arguments(); - const subgraphName = graphEnumNameToSubgraphName.get(args.graph); - const schema = subgraphs.get(subgraphName).schema; - let subgraphType = schema.type(type.name); - if (!subgraphType) { - subgraphType = schema.addType((0, definitions_1$1.newNamedType)(type.kind, type.name)); - } - if (args.key) { - const directive = subgraphType.applyDirective('key', { 'fields': args.key }); - if (args.extension) { - directive.setOfExtension(subgraphType.newExtension()); - } - } - } - } - } - const ownerDirective = joinSpec.ownerDirective(supergraph); - const fieldDirective = joinSpec.fieldDirective(supergraph); - for (const type of filteredTypes(supergraph, joinSpec, coreFeatures.coreDefinition)) { - switch (type.kind) { - case 'ObjectType': - case 'InterfaceType': - const addedInterfaces = []; - const implementsApplications = implementsDirective ? type.appliedDirectivesOf(implementsDirective) : []; - for (const application of implementsApplications) { - const args = application.arguments(); - const subgraph = subgraphs.get(graphEnumNameToSubgraphName.get(args.graph)); - const schema = subgraph.schema; - schema.type(type.name).addImplementedInterface(args.interface); - addedInterfaces.push(args.interface); - } - for (const implementations of type.interfaceImplementations()) { - const name = implementations.interface.name; - if (!addedInterfaces.includes(name)) { - for (const subgraph of subgraphs) { - const subgraphType = subgraph.schema.type(type.name); - const subgraphItf = subgraph.schema.type(name); - if (subgraphType && subgraphItf) { - subgraphType.addImplementedInterface(name); - } - } - } - } - case 'InputObjectType': - for (const field of type.fields()) { - const fieldApplications = field.appliedDirectivesOf(fieldDirective); - if (!fieldApplications.length) { - const ownerApplications = ownerDirective ? type.appliedDirectivesOf(ownerDirective) : []; - if (!ownerApplications.length) { - const fieldBaseType = (0, definitions_1$1.baseType)(field.type); - for (const subgraph of subgraphs) { - if (subgraph.schema.type(fieldBaseType.name)) { - addSubgraphField(field, subgraph); - } - } - } - else { - (0, utils_1.assert)(ownerApplications.length == 1, () => `Found multiple join__owner directives on type ${type}`); - const subgraph = subgraphs.get(graphEnumNameToSubgraphName.get(ownerApplications[0].arguments().graph)); - const subgraphField = addSubgraphField(field, subgraph); - (0, utils_1.assert)(subgraphField, () => `Found join__owner directive on ${type} but no corresponding join__type`); - } - } - else { - for (const application of fieldApplications) { - const args = application.arguments(); - const subgraph = subgraphs.get(graphEnumNameToSubgraphName.get(args.graph)); - const subgraphField = addSubgraphField(field, subgraph, args.type); - (0, utils_1.assert)(subgraphField, () => `Found join__field directive for graph ${subgraph.name} on field ${field.coordinate} but no corresponding join__type on ${type}`); - if (args.requires) { - subgraphField.applyDirective('requires', { 'fields': args.requires }); - } - if (args.provides) { - subgraphField.applyDirective('provides', { 'fields': args.provides }); - } - if (args.external) { - subgraphField.applyDirective('external'); - } - } - } - } - break; - case 'EnumType': - for (const subgraph of subgraphs) { - const subgraphEnum = subgraph.schema.type(type.name); - if (!subgraphEnum) { - continue; - } - (0, utils_1.assert)((0, definitions_1$1.isEnumType)(subgraphEnum), () => `${subgraphEnum} should be an enum but found a ${subgraphEnum.kind}`); - for (const value of type.values) { - subgraphEnum.addValue(value.name); - } - } - break; - case 'UnionType': - for (const subgraph of subgraphs) { - const subgraphUnion = subgraph.schema.type(type.name); - if (!subgraphUnion) { - continue; - } - (0, utils_1.assert)((0, definitions_1$1.isUnionType)(subgraphUnion), () => `${subgraphUnion} should be an enum but found a ${subgraphUnion.kind}`); - for (const memberType of type.types()) { - const subgraphType = subgraph.schema.type(memberType.name); - if (subgraphType) { - subgraphUnion.addType(subgraphType); - } - } - } - break; - } - } - for (const subgraph of subgraphs) { - if (isFed1) { - addExternalFields(subgraph, supergraph, isFed1); - } - removeNeedlessProvides(subgraph); - for (const type of subgraph.schema.types()) { - switch (type.kind) { - case 'ObjectType': - case 'InterfaceType': - case 'InputObjectType': - if (!type.hasFields()) { - type.removeRecursive(); - } - break; - case 'UnionType': - if (type.membersCount() === 0) { - type.remove(); - } - break; - } - } - } - if (isFed1) { - for (const subgraph of subgraphs) { - for (const itf of subgraph.schema.types('InterfaceType')) { - const implementations = itf.possibleRuntimeTypes(); - for (const field of itf.fields()) { - if (!implementations.every(implem => implem.field(field.name))) { - field.remove(); - } - } - if (!itf.hasFields()) { - itf.remove(); - } - } - } - } - for (const subgraph of subgraphs) { - try { - subgraph.schema.validate(); - } - catch (e) { - if (isFed1) { - const msg = `Error extracting subgraph ${subgraph.name} from the supergraph: this might due to errors in subgraphs that were mistakenly ignored by federation 0.x versions but are rejected by federation 2.\n` - + 'Please try composing your subgraphs with federation 2: this should help precisely pinpoint the errors and generate a correct federation 2 supergraph.'; - throw new Error(`${msg}.\n\nDetails:\n${errorToString(e, subgraph.name)}`); - } - else { - const msg = `Unexpected error extracting subgraph ${subgraph.name} from the supergraph: this is either a bug, or the supergraph has been corrupted.`; - const dumpMsg = maybeDumpSubgraphSchema(subgraph); - throw new Error(`${msg}.\n\nDetails:\n${errorToString(e, subgraph.name)}\n\n${dumpMsg}`); - } - } - } - return subgraphs; - } - extractSubgraphsFromSupergraph$1.extractSubgraphsFromSupergraph = extractSubgraphsFromSupergraph; - const DEBUG_SUBGRAPHS_ENV_VARIABLE_NAME = 'APOLLO_FEDERATION_DEBUG_SUBGRAPHS'; - function maybeDumpSubgraphSchema(subgraph) { - const shouldDump = !!(0, utils_2.validateStringContainsBoolean)(process.env[DEBUG_SUBGRAPHS_ENV_VARIABLE_NAME]); - if (!shouldDump) { - return `Re-run with environment variable '${DEBUG_SUBGRAPHS_ENV_VARIABLE_NAME}' set to 'true' to extract the invalid subgraph`; - } - try { - const filename = `extracted-subgraph-${subgraph.name}-${Date.now()}.graphql`; - const file = path_1.default.resolve(filename); - if (fs_1.default.existsSync(file)) { - throw new Error(`candidate file ${filename} already existed`); - } - fs_1.default.writeFileSync(file, (0, print_1.printSchema)(subgraph.schema)); - return `The (invalid) extracted subgraph has been written in: ${file}.`; - } - catch (e2) { - return `Was not able to print generated subgraph because: ${errorToString(e2, subgraph.name)}`; - } - } - function errorToString(e, subgraphName) { - return e instanceof graphql_1$2.GraphQLError ? (0, federation_1.addSubgraphToError)(e, subgraphName).toString() : String(e); - } - function addSubgraphField(supergraphField, subgraph, encodedType) { - if (supergraphField instanceof definitions_1$1.FieldDefinition) { - return addSubgraphObjectOrInterfaceField(supergraphField, subgraph, encodedType); - } - else { - return addSubgraphInputField(supergraphField, subgraph, encodedType); - } - } - function addSubgraphObjectOrInterfaceField(supergraphField, subgraph, encodedType) { - const subgraphType = subgraph.schema.type(supergraphField.parent.name); - if (subgraphType) { - const copiedType = encodedType - ? decodeType(encodedType, subgraph.schema, subgraph.name) - : copyType(supergraphField.type, subgraph.schema, subgraph.name); - const field = subgraphType.addField(supergraphField.name, copiedType); - for (const arg of supergraphField.arguments()) { - field.addArgument(arg.name, copyType(arg.type, subgraph.schema, subgraph.name), arg.defaultValue); - } - return field; - } - else { - return undefined; - } - } - function addSubgraphInputField(supergraphField, subgraph, encodedType) { - const subgraphType = subgraph.schema.type(supergraphField.parent.name); - if (subgraphType) { - const copiedType = encodedType - ? decodeType(encodedType, subgraph.schema, subgraph.name) - : copyType(supergraphField.type, subgraph.schema, subgraph.name); - return subgraphType.addField(supergraphField.name, copiedType); - } - else { - return undefined; - } - } - function decodeType(encodedType, subgraph, subgraphName) { - try { - return (0, buildSchema_1$1.builtTypeReference)(encodedType, subgraph); - } - catch (e) { - (0, utils_1.assert)(false, () => `Cannot parse type "${encodedType}" in subgraph ${subgraphName}: ${e}`); - } - } - function copyType(type, subgraph, subgraphName) { - switch (type.kind) { - case 'ListType': - return new definitions_1$1.ListType(copyType(type.ofType, subgraph, subgraphName)); - case 'NonNullType': - return new definitions_1$1.NonNullType(copyType(type.ofType, subgraph, subgraphName)); - default: - const subgraphType = subgraph.type(type.name); - (0, utils_1.assert)(subgraphType, () => `Cannot find type ${type.name} in subgraph ${subgraphName}`); - return subgraphType; - } - } - function addExternalFields(subgraph, supergraph, isFed1) { - for (const type of subgraph.schema.types()) { - if (!(0, definitions_1$1.isObjectType)(type) && !(0, definitions_1$1.isInterfaceType)(type)) { - continue; - } - for (const keyApplication of type.appliedDirectivesOf(federation_1.federationBuiltIns.keyDirective(subgraph.schema))) { - const forceNonExternal = isFed1 || !!keyApplication.ofExtension(); - addExternalFieldsFromDirectiveFieldSet(subgraph, type, keyApplication, supergraph, forceNonExternal); - } - for (const field of type.fields()) { - for (const requiresApplication of field.appliedDirectivesOf(federation_1.federationBuiltIns.requiresDirective(subgraph.schema))) { - addExternalFieldsFromDirectiveFieldSet(subgraph, type, requiresApplication, supergraph); - } - const fieldBaseType = (0, definitions_1$1.baseType)(field.type); - for (const providesApplication of field.appliedDirectivesOf(federation_1.federationBuiltIns.providesDirective(subgraph.schema))) { - (0, utils_1.assert)((0, definitions_1$1.isObjectType)(fieldBaseType) || (0, definitions_1$1.isInterfaceType)(fieldBaseType), () => `Found @provides on field ${field.coordinate} whose type ${field.type} (${fieldBaseType.kind}) is not an object or interface `); - addExternalFieldsFromDirectiveFieldSet(subgraph, fieldBaseType, providesApplication, supergraph); - } - } - addExternalFieldsFromInterface(type); - } - } - function addExternalFieldsFromDirectiveFieldSet(subgraph, parentType, directive, supergraph, forceNonExternal = false) { - const external = federation_1.federationBuiltIns.externalDirective(subgraph.schema); - const accessor = function (type, fieldName) { - const field = type.field(fieldName); - if (field) { - if (forceNonExternal && field.hasAppliedDirective(external)) { - field.appliedDirectivesOf(external).forEach(d => d.remove()); - } - return field; - } - (0, utils_1.assert)(!(0, definitions_1$1.isUnionType)(type), () => `Shouldn't select field ${fieldName} from union type ${type}`); - const supergraphType = supergraph.type(type.name); - const supergraphField = supergraphType.field(fieldName); - (0, utils_1.assert)(supergraphField, () => `No field named ${fieldName} found on type ${type.name} in the supergraph`); - const created = addSubgraphObjectOrInterfaceField(supergraphField, subgraph); - if (!forceNonExternal) { - created.applyDirective(external); - } - return created; - }; - (0, federation_1.parseFieldSetArgument)(parentType, directive, accessor); - } - function addExternalFieldsFromInterface(type) { - for (const itf of type.interfaces()) { - for (const field of itf.fields()) { - const typeField = type.field(field.name); - if (!typeField) { - copyFieldAsExternal(field, type); - } - else if (typeField.hasAppliedDirective(federation_1.externalDirectiveName)) { - maybeUpdateFieldForInterface(typeField, field); - } - } - } - } - function copyFieldAsExternal(field, type) { - const newField = type.addField(field.name, field.type); - for (const arg of field.arguments()) { - newField.addArgument(arg.name, arg.type, arg.defaultValue); - } - newField.applyDirective(federation_1.externalDirectiveName); - } - function maybeUpdateFieldForInterface(toModify, itfField) { - if (!(0, types_1.isSubtype)(itfField.type, toModify.type)) { - (0, utils_1.assert)((0, types_1.isSubtype)(toModify.type, itfField.type), () => `For ${toModify.coordinate}, expected ${itfField.type} and ${toModify.type} to be in a subtyping relationship`); - toModify.type = itfField.type; - } - } - function removeNeedlessProvides(subgraph) { - for (const type of subgraph.schema.types()) { - if (!(0, definitions_1$1.isObjectType)(type) && !(0, definitions_1$1.isInterfaceType)(type)) { - continue; - } - const providesDirective = federation_1.federationBuiltIns.providesDirective(subgraph.schema); - for (const field of type.fields()) { - const fieldBaseType = (0, definitions_1$1.baseType)(field.type); - for (const providesApplication of field.appliedDirectivesOf(providesDirective)) { - const selection = (0, federation_1.parseFieldSetArgument)(fieldBaseType, providesApplication); - if (selectsNonExternalLeafField(selection)) { - providesApplication.remove(); - const updated = withoutNonExternalLeafFields(selection); - if (!updated.isEmpty()) { - field.applyDirective(providesDirective, { fields: updated.toString(true, false) }); - } - } - } - } - } - } - function isExternalOrHasExternalImplementations(field) { - if (field.hasAppliedDirective(federation_1.externalDirectiveName)) { - return true; - } - const parentType = field.parent; - if ((0, definitions_1$1.isInterfaceType)(parentType)) { - for (const implem of parentType.possibleRuntimeTypes()) { - const fieldInImplem = implem.field(field.name); - if (fieldInImplem && fieldInImplem.hasAppliedDirective(federation_1.externalDirectiveName)) { - return true; - } - } - } - return false; - } - function selectsNonExternalLeafField(selection) { - return selection.selections().some(s => { - if (s.kind === 'FieldSelection') { - if (isExternalOrHasExternalImplementations(s.field.definition)) { - return false; - } - return !s.selectionSet || selectsNonExternalLeafField(s.selectionSet); - } - else { - return selectsNonExternalLeafField(s.selectionSet); - } - }); - } - function withoutNonExternalLeafFields(selectionSet) { - const newSelectionSet = new operations_1.SelectionSet(selectionSet.parentType); - for (const selection of selectionSet.selections()) { - if (selection.kind === 'FieldSelection') { - if (isExternalOrHasExternalImplementations(selection.field.definition)) { - newSelectionSet.add(selection); - continue; - } - } - if (selection.selectionSet) { - const updated = withoutNonExternalLeafFields(selection.selectionSet); - if (!updated.isEmpty()) { - newSelectionSet.add((0, operations_1.selectionOfElement)(selection.element(), updated)); - } - } - } - return newSelectionSet; - } - - Object.defineProperty(supergraphs, "__esModule", { value: true }); - supergraphs.isFed1Supergraph = supergraphs.validateSupergraph = supergraphs.buildSupergraphSchema = supergraphs.ErrForUnsupported = supergraphs.ErrUnsupportedFeature = void 0; - const graphql_1$1 = require$$0$2; - const core_schema_1 = dist; - const coreSpec_1 = coreSpec; - const definitions_1 = definitions; - const joinSpec_1 = joinSpec; - const buildSchema_1 = buildSchema$1; - const extractSubgraphsFromSupergraph_1 = extractSubgraphsFromSupergraph$1; - const SUPPORTED_FEATURES = new Set([ - 'https://specs.apollo.dev/core/v0.1', - 'https://specs.apollo.dev/core/v0.2', - 'https://specs.apollo.dev/join/v0.1', - 'https://specs.apollo.dev/join/v0.2', - 'https://specs.apollo.dev/tag/v0.1', - 'https://specs.apollo.dev/inaccessible/v0.1', - ]); - function ErrUnsupportedFeature(feature) { - return (0, core_schema_1.err)('UnsupportedFeature', { - message: `feature ${feature.url} is for: ${feature.purpose} but is unsupported`, - feature, - nodes: feature.directive.sourceAST, - }); - } - supergraphs.ErrUnsupportedFeature = ErrUnsupportedFeature; - function ErrForUnsupported(core, ...features) { - return (0, core_schema_1.err)('ForUnsupported', { - message: `the \`for:\` argument is unsupported by version ${core.url.version} ` + - `of the core spec. Please upgrade to at least @core v0.2 (https://specs.apollo.dev/core/v0.2).`, - features, - nodes: [core.directive.sourceAST, ...features.map(f => f.directive.sourceAST)].filter(n => !!n) - }); - } - supergraphs.ErrForUnsupported = ErrForUnsupported; - const coreVersionZeroDotOneUrl = coreSpec_1.FeatureUrl.parse('https://specs.apollo.dev/core/v0.1'); - function buildSupergraphSchema(supergraphSdl) { - const schema = typeof supergraphSdl === 'string' - ? (0, buildSchema_1.buildSchema)(supergraphSdl, definitions_1.graphQLBuiltIns, false) - : (0, buildSchema_1.buildSchemaFromAST)(supergraphSdl, definitions_1.graphQLBuiltIns, false); - const [coreFeatures] = validateSupergraph(schema); - checkFeatureSupport(coreFeatures); - schema.validate(); - return [schema, (0, extractSubgraphsFromSupergraph_1.extractSubgraphsNamesAndUrlsFromSupergraph)(schema)]; - } - supergraphs.buildSupergraphSchema = buildSupergraphSchema; - function checkFeatureSupport(coreFeatures) { - const errors = []; - if (coreFeatures.coreItself.url.equals(coreVersionZeroDotOneUrl)) { - const purposefulFeatures = [...coreFeatures.allFeatures()].filter(f => f.purpose); - if (purposefulFeatures.length > 0) { - errors.push(ErrForUnsupported(coreFeatures.coreItself, ...purposefulFeatures)); - } - } - for (const feature of coreFeatures.allFeatures()) { - if (feature.url.equals(coreVersionZeroDotOneUrl) || feature.purpose === 'EXECUTION' || feature.purpose === 'SECURITY') { - if (!SUPPORTED_FEATURES.has(feature.url.base.toString())) { - errors.push(ErrUnsupportedFeature(feature)); - } - } - } - if (errors.length > 0) { - throw (0, coreSpec_1.ErrCoreCheckFailed)(errors); - } - } - function validateSupergraph(supergraph) { - const coreFeatures = supergraph.coreFeatures; - if (!coreFeatures) { - throw new graphql_1$1.GraphQLError("Invalid supergraph: must be a core schema"); - } - const joinFeature = coreFeatures.getByIdentity(joinSpec_1.joinIdentity); - if (!joinFeature) { - throw new graphql_1$1.GraphQLError("Invalid supergraph: must use the join spec"); - } - const joinSpec = joinSpec_1.JOIN_VERSIONS.find(joinFeature.url.version); - if (!joinSpec) { - throw new graphql_1$1.GraphQLError(`Invalid supergraph: uses unsupported join spec version ${joinFeature.url.version} (supported versions: ${joinSpec_1.JOIN_VERSIONS.versions().join(', ')})`); - } - return [coreFeatures, joinSpec]; - } - supergraphs.validateSupergraph = validateSupergraph; - function isFed1Supergraph(supergraph) { - return validateSupergraph(supergraph)[1].version.equals(new coreSpec_1.FeatureVersion(0, 1)); - } - supergraphs.isFed1Supergraph = isFed1Supergraph; - - (function (exports) { - var __createBinding = (commonjsGlobal && commonjsGlobal.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); - }) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; - })); - var __exportStar = (commonjsGlobal && commonjsGlobal.__exportStar) || function(m, exports) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); - }; - Object.defineProperty(exports, "__esModule", { value: true }); - __exportStar(definitions, exports); - __exportStar(buildSchema$1, exports); - __exportStar(print, exports); - __exportStar(values, exports); - __exportStar(federation, exports); - __exportStar(types, exports); - __exportStar(operations, exports); - __exportStar(utils, exports); - __exportStar(debug, exports); - __exportStar(coreSpec, exports); - __exportStar(joinSpec, exports); - __exportStar(tagSpec, exports); - __exportStar(supergraphs, exports); - __exportStar(extractSubgraphsFromSupergraph$1, exports); - __exportStar(error, exports); - - }(dist$1)); - - var transition = {}; - - Object.defineProperty(transition, "__esModule", { value: true }); - transition.subgraphEnteringTransition = transition.SubgraphEnteringTransition = transition.DownCast = transition.FieldCollection = transition.RootTypeResolution = transition.KeyResolution = void 0; - class KeyResolution { - constructor() { - this.kind = 'KeyResolution'; - this.collectOperationElements = false; - } - toString() { - return 'key()'; - } - } - transition.KeyResolution = KeyResolution; - class RootTypeResolution { - constructor(rootKind) { - this.rootKind = rootKind; - this.kind = 'RootTypeResolution'; - this.collectOperationElements = false; - } - toString() { - return this.rootKind + '()'; - } - } - transition.RootTypeResolution = RootTypeResolution; - class FieldCollection { - constructor(definition, isPartOfProvide = false) { - this.definition = definition; - this.isPartOfProvide = isPartOfProvide; - this.kind = 'FieldCollection'; - this.collectOperationElements = true; - } - toString() { - return this.definition.name; - } - } - transition.FieldCollection = FieldCollection; - class DownCast { - constructor(sourceType, castedType) { - this.sourceType = sourceType; - this.castedType = castedType; - this.kind = 'DownCast'; - this.collectOperationElements = true; - } - toString() { - return '... on ' + this.castedType.name; - } - } - transition.DownCast = DownCast; - class SubgraphEnteringTransition { - constructor() { - this.kind = 'SubgraphEnteringTransition'; - this.collectOperationElements = false; - } - toString() { - return '∅'; - } - } - transition.SubgraphEnteringTransition = SubgraphEnteringTransition; - transition.subgraphEnteringTransition = new SubgraphEnteringTransition(); - - var structuralSubtyping = {}; - - Object.defineProperty(structuralSubtyping, "__esModule", { value: true }); - structuralSubtyping.isStructuralFieldSubtype = structuralSubtyping.isStructuralInputSubType = void 0; - const federation_internals_1$5 = dist$1; - function typeComparison(t1, t2, typeTest, test) { - if (typeTest(t1)) { - return typeTest(t2) ? test(t1, t2) : false; - } - return typeTest(t2) ? false : undefined; - } - function isSubset(set, maybeSubset) { - return maybeSubset.every(v => set.includes(v)); - } - function isAccessible(element) { - return element.hasAppliedDirective('inaccessible'); - } - function accessibleEnumValues(enumType) { - return enumType - .values - .filter(v => isAccessible(v)) - .map(v => v.name); - } - function isEnumInputSubtype(enumType, maybeSubType) { - if (enumType.name != maybeSubType.name) { - return false; - } - return isSubset(accessibleEnumValues(maybeSubType), accessibleEnumValues(enumType)); - } - function isObjectInputSubtype(objectInputType, maybeSubType) { - if (objectInputType.name != maybeSubType.name) { - return false; - } - return maybeSubType.fields() - .filter(isAccessible) - .every(subtypeField => { - const field = objectInputType.field(subtypeField.name); - return field && isAccessible(field) ? isStructuralInputSubType(field.type, subtypeField.type) : false; - }); - } - function isStructuralInputSubType(inputType, maybeSubType) { - if ((0, federation_internals_1$5.isNonNullType)(inputType)) { - return (0, federation_internals_1$5.isNonNullType)(maybeSubType) ? isStructuralInputSubType(inputType.ofType, maybeSubType.ofType) : false; - } - if ((0, federation_internals_1$5.isNonNullType)(maybeSubType)) { - return isStructuralInputSubType(inputType, maybeSubType.ofType); - } - let c = typeComparison(inputType, maybeSubType, federation_internals_1$5.isListType, (l1, l2) => isStructuralInputSubType(l1.ofType, l2.ofType)); - if (c != undefined) { - return c; - } - c = typeComparison(inputType, maybeSubType, federation_internals_1$5.isScalarType, (l1, l2) => l1.name == l2.name); - if (c != undefined) { - return c; - } - c = typeComparison(inputType, maybeSubType, federation_internals_1$5.isEnumType, (l1, l2) => isEnumInputSubtype(l1, l2)); - if (c != undefined) { - return c; - } - c = typeComparison(inputType, maybeSubType, federation_internals_1$5.isInputObjectType, (l1, l2) => isObjectInputSubtype(l1, l2)); - return c !== null && c !== void 0 ? c : false; - } - structuralSubtyping.isStructuralInputSubType = isStructuralInputSubType; - function getArg(field, argName) { - const arg = field.argument(argName); - return arg && isAccessible(arg) ? arg : undefined; - } - function isStructuralFieldSubtype(fieldDef, maybeSubType, allowedRules = federation_internals_1$5.DEFAULT_SUBTYPING_RULES, unionMembershipTester = (u, m) => u.hasTypeMember(m), implementsInterfaceTester = (m, i) => m.implementsInterface(i)) { - if (fieldDef.name !== maybeSubType.name) { - return false; - } - if (!(0, federation_internals_1$5.isSubtype)(maybeSubType.type, fieldDef.type, allowedRules, unionMembershipTester, implementsInterfaceTester)) { - return false; - } - for (const argDef of maybeSubType.arguments().filter(isAccessible)) { - const providedArgDef = getArg(fieldDef, argDef.name); - if (!providedArgDef || !isStructuralInputSubType(providedArgDef.type, argDef.type)) { - return false; - } - } - return true; - } - structuralSubtyping.isStructuralFieldSubtype = isStructuralFieldSubtype; - - Object.defineProperty(querygraph, "__esModule", { value: true }); - querygraph.simpleTraversal = querygraph.buildFederatedQueryGraph = querygraph.buildSupergraphAPIQueryGraph = querygraph.buildQueryGraph = querygraph.QueryGraphState = querygraph.QueryGraph = querygraph.Edge = querygraph.isRootVertex = querygraph.RootVertex = querygraph.Vertex = querygraph.isFederatedGraphRootType = querygraph.federatedGraphRootTypeName = void 0; - const federation_internals_1$4 = dist$1; - const util_1 = require$$0$1; - const transition_1 = transition; - const structuralSubtyping_1 = structuralSubtyping; - const FEDERATED_GRAPH_ROOT_SOURCE = federation_internals_1$4.FEDERATION_RESERVED_SUBGRAPH_NAME; - const FEDERATED_GRAPH_ROOT_SCHEMA = new federation_internals_1$4.Schema(); - function federatedGraphRootTypeName(rootKind) { - return `[${rootKind}]`; - } - querygraph.federatedGraphRootTypeName = federatedGraphRootTypeName; - function isFederatedGraphRootType(type) { - return type.name.startsWith('[') && type.name.endsWith(']'); - } - querygraph.isFederatedGraphRootType = isFederatedGraphRootType; - class Vertex { - constructor(index, type, source) { - this.index = index; - this.type = type; - this.source = source; - } - toString() { - return `${this.type}(${this.source})`; - } - } - querygraph.Vertex = Vertex; - class RootVertex extends Vertex { - constructor(rootKind, index, type, source) { - super(index, type, source); - this.rootKind = rootKind; - } - toString() { - return super.toString() + '*'; - } - } - querygraph.RootVertex = RootVertex; - function toRootVertex(vertex, rootKind) { - return new RootVertex(rootKind, vertex.index, vertex.type, vertex.source); - } - function isRootVertex(vertex) { - return vertex instanceof RootVertex; - } - querygraph.isRootVertex = isRootVertex; - class Edge { - constructor(index, head, tail, transition, conditions) { - this.index = index; - this.head = head; - this.tail = tail; - this.transition = transition; - this._conditions = conditions; - } - get conditions() { - return this._conditions; - } - isEdgeForField(name) { - return this.transition.kind === 'FieldCollection' && this.transition.definition.name === name; - } - matchesSupergraphTransition(supergraph, otherTransition) { - const transition = this.transition; - switch (transition.kind) { - case 'FieldCollection': - if (otherTransition.kind === 'FieldCollection') { - return (0, structuralSubtyping_1.isStructuralFieldSubtype)(transition.definition, otherTransition.definition, federation_internals_1$4.ALL_SUBTYPING_RULES, (union, maybeMember) => supergraph.type(union.name).hasTypeMember(maybeMember.name), (maybeImplementer, itf) => supergraph.type(maybeImplementer.name).implementsInterface(itf)); - } - else { - return false; - } - case 'DownCast': - return otherTransition.kind === 'DownCast' && transition.castedType.name === otherTransition.castedType.name; - default: - return transition.kind === otherTransition.kind; - } - } - label() { - if (this.transition instanceof transition_1.SubgraphEnteringTransition && !this._conditions) { - return ""; - } - return this._conditions ? `${this._conditions} ⊢ ${this.transition}` : this.transition.toString(); - } - withNewHead(newHead) { - return new Edge(this.index, newHead, this.tail, this.transition, this._conditions); - } - addToConditions(newConditions) { - if (!this._conditions) { - this._conditions = new federation_internals_1$4.SelectionSet(this.head.type); - } - this._conditions.mergeIn(newConditions); - } - toString() { - return `${this.head} -> ${this.tail} (${this.label()})`; - } - } - querygraph.Edge = Edge; - class QueryGraph { - constructor(name, vertices, adjacencies, typesToVertices, rootVertices, sources) { - this.name = name; - this.vertices = vertices; - this.adjacencies = adjacencies; - this.typesToVertices = typesToVertices; - this.rootVertices = rootVertices; - this.sources = sources; - this.externalTesters = new Map(); - } - verticesCount() { - return this.vertices.length; - } - edgesCount() { - return this.adjacencies.reduce((acc, v) => acc + v.length, 0); - } - rootKinds() { - return this.rootVertices.keys(); - } - roots() { - return this.rootVertices.values(); - } - root(kind) { - return this.rootVertices.get(kind); - } - outEdges(vertex) { - return this.adjacencies[vertex.index]; - } - outEdge(vertex, edgeIndex) { - return this.adjacencies[vertex.index][edgeIndex]; - } - isTerminal(vertex) { - return this.outEdges(vertex).length == 0; - } - verticesForType(typeName) { - const indexes = this.typesToVertices.get(typeName); - return indexes == undefined ? [] : indexes.map(i => this.vertices[i]); - } - externalTester(source) { - let tester = this.externalTesters.get(source); - if (!tester) { - const schema = this.sources.get(source); - (0, federation_internals_1$4.assert)(schema, () => `Unknown source: ${source}`); - tester = new federation_internals_1$4.ExternalTester(schema); - } - return tester; - } - } - querygraph.QueryGraph = QueryGraph; - class QueryGraphState { - constructor(graph) { - this.graph = graph; - this.verticesStates = new Array(graph.verticesCount()); - this.adjacenciesStates = new Array(graph.verticesCount()); - } - setVertexState(vertex, state) { - this.verticesStates[vertex.index] = state; - } - removeVertexState(vertex) { - this.verticesStates[vertex.index] = undefined; - } - getVertexState(vertex) { - return this.verticesStates[vertex.index]; - } - setEdgeState(edge, state) { - if (!this.adjacenciesStates[edge.head.index]) { - this.adjacenciesStates[edge.head.index] = new Array(this.graph.outEdges(edge.head).length); - } - this.adjacenciesStates[edge.head.index][edge.index] = state; - } - removeEdgeState(edge) { - this.adjacenciesStates[edge.head.index][edge.index] = undefined; - } - getEdgeState(edge) { - const forEdge = this.adjacenciesStates[edge.head.index]; - return forEdge ? forEdge[edge.index] : undefined; - } - toDebugString(vertexMapper, edgeMapper) { - const vs = this.verticesStates.map((state, idx) => ` ${idx}: ${!state ? "" : vertexMapper(state)}`).join("\n"); - const es = this.adjacenciesStates.map((adj, vIdx) => adj.map((state, eIdx) => ` ${vIdx}[${eIdx}]: ${!state ? "" : edgeMapper(state)}`).join("\n")).join("\n"); - return `vertices = {${vs}\n}, edges = {${es}\n}`; - } - } - querygraph.QueryGraphState = QueryGraphState; - function buildQueryGraph(name, schema) { - return buildGraphInternal(name, schema, false); - } - querygraph.buildQueryGraph = buildQueryGraph; - function buildGraphInternal(name, schema, addAdditionalAbstractTypeEdges, supergraphSchema) { - const builder = new GraphBuilderFromSchema(name, schema, supergraphSchema); - for (const rootType of schema.schemaDefinition.roots()) { - builder.addRecursivelyFromRoot(rootType.rootKind, rootType.type); - } - if (addAdditionalAbstractTypeEdges) { - builder.addAdditionalAbstractTypeEdges(); - } - return builder.build(); - } - function buildSupergraphAPIQueryGraph(supergraph) { - return buildQueryGraph("supergraph", supergraph); - } - querygraph.buildSupergraphAPIQueryGraph = buildSupergraphAPIQueryGraph; - function buildFederatedQueryGraph(supergraph, forQueryPlanning) { - const subgraphs = (0, federation_internals_1$4.extractSubgraphsFromSupergraph)(supergraph); - const graphs = []; - for (const subgraph of subgraphs) { - graphs.push(buildGraphInternal(subgraph.name, subgraph.schema, forQueryPlanning, supergraph)); - } - return federateSubgraphs(graphs); - } - querygraph.buildFederatedQueryGraph = buildFederatedQueryGraph; - function federatedProperties(subgraphs) { - let vertices = 0; - const rootKinds = new Set(); - const schemas = []; - for (const subgraph of subgraphs) { - vertices += subgraph.verticesCount(); - subgraph.rootKinds().forEach(k => rootKinds.add(k)); - (0, federation_internals_1$4.assert)(subgraph.sources.size === 1, () => `Subgraphs should only have one sources, got ${subgraph.sources.size} ([${(0, federation_internals_1$4.mapKeys)(subgraph.sources).join(', ')}])`); - schemas.push((0, federation_internals_1$4.firstOf)(subgraph.sources.values())); - } - return [vertices + rootKinds.size, rootKinds, schemas]; - } - function federateSubgraphs(subgraphs) { - const [verticesCount, rootKinds, schemas] = federatedProperties(subgraphs); - const builder = new GraphBuilder(verticesCount); - rootKinds.forEach(k => builder.createRootVertex(k, new federation_internals_1$4.ObjectType(federatedGraphRootTypeName(k)), FEDERATED_GRAPH_ROOT_SOURCE, FEDERATED_GRAPH_ROOT_SCHEMA)); - const copyPointers = new Array(subgraphs.length); - for (const [i, subgraph] of subgraphs.entries()) { - copyPointers[i] = builder.copyGraph(subgraph); - } - for (const [i, subgraph] of subgraphs.entries()) { - const copyPointer = copyPointers[i]; - for (const rootKind of subgraph.rootKinds()) { - const rootVertex = copyPointer.copiedVertex(subgraph.root(rootKind)); - builder.addEdge(builder.root(rootKind), rootVertex, transition_1.subgraphEnteringTransition); - for (const [j, otherSubgraph] of subgraphs.entries()) { - if (i === j) { - continue; - } - const otherRootVertex = otherSubgraph.root(rootKind); - if (otherRootVertex) { - const otherCopyPointer = copyPointers[j]; - builder.addEdge(rootVertex, otherCopyPointer.copiedVertex(otherRootVertex), new transition_1.RootTypeResolution(rootKind)); - } - } - } - } - for (const [i, subgraph] of subgraphs.entries()) { - const subgraphSchema = schemas[i]; - const keyDirective = federation_internals_1$4.federationBuiltIns.keyDirective(subgraphSchema); - const requireDirective = federation_internals_1$4.federationBuiltIns.requiresDirective(subgraphSchema); - simpleTraversal(subgraph, v => { - const type = v.type; - for (const keyApplication of type.appliedDirectivesOf(keyDirective)) { - (0, federation_internals_1$4.assert)((0, federation_internals_1$4.isInterfaceType)(type) || (0, federation_internals_1$4.isObjectType)(type), () => `Invalid "@key" application on non Object || Interface type "${type}"`); - const conditions = (0, federation_internals_1$4.parseFieldSetArgument)(type, keyApplication); - for (const [j, otherSubgraph] of subgraphs.entries()) { - if (i == j) { - continue; - } - const otherVertices = otherSubgraph.verticesForType(type.name); - if (otherVertices.length == 0) { - continue; - } - (0, federation_internals_1$4.assert)(otherVertices.length == 1, () => `Subgraph ${j} should have a single vertex for type ${type.name} but got ${otherVertices.length}: ${(0, util_1.inspect)(otherVertices)}`); - const head = copyPointers[j].copiedVertex(otherVertices[0]); - const tail = copyPointers[i].copiedVertex(v); - builder.addEdge(head, tail, new transition_1.KeyResolution(), conditions); - } - } - }, e => { - if (e.transition.kind === 'FieldCollection') { - const type = e.head.type; - const field = e.transition.definition; - (0, federation_internals_1$4.assert)((0, federation_internals_1$4.isCompositeType)(type), () => `Non composite type "${type}" should not have field collection edge ${e}`); - for (const requiresApplication of field.appliedDirectivesOf(requireDirective)) { - const conditions = (0, federation_internals_1$4.parseFieldSetArgument)(type, requiresApplication); - const head = copyPointers[i].copiedVertex(e.head); - const copiedEdge = builder.edge(head, e.index); - copiedEdge.addToConditions(conditions); - } - } - return true; - }); - } - for (const [i, subgraph] of subgraphs.entries()) { - const subgraphSchema = schemas[i]; - const providesDirective = federation_internals_1$4.federationBuiltIns.providesDirective(subgraphSchema); - simpleTraversal(subgraph, _ => undefined, e => { - if (e.transition.kind === 'FieldCollection') { - const type = e.head.type; - const field = e.transition.definition; - (0, federation_internals_1$4.assert)((0, federation_internals_1$4.isCompositeType)(type), () => `Non composite type "${type}" should not have field collection edge ${e}`); - for (const providesApplication of field.appliedDirectivesOf(providesDirective)) { - const fieldType = (0, federation_internals_1$4.baseType)(field.type); - (0, federation_internals_1$4.assert)((0, federation_internals_1$4.isCompositeType)(fieldType), () => `Invalid @provide on field "${field}" whose type "${fieldType}" is not a composite type`); - const provided = (0, federation_internals_1$4.parseFieldSetArgument)(fieldType, providesApplication); - const head = copyPointers[i].copiedVertex(e.head); - const tail = copyPointers[i].copiedVertex(e.tail); - const copiedEdge = builder.edge(head, e.index); - const copiedTail = builder.makeCopy(tail); - builder.updateEdgeTail(copiedEdge, copiedTail); - addProvidesEdges(subgraphSchema, builder, copiedTail, provided); - } - } - return true; - }); - } - return builder.build(FEDERATED_GRAPH_ROOT_SOURCE); - } - function addProvidesEdges(schema, builder, from, provided) { - const stack = [[from, provided]]; - const source = from.source; - while (stack.length > 0) { - const [v, selectionSet] = stack.pop(); - for (const selection of selectionSet.selections(true)) { - const element = selection.element(); - if (element.kind == 'Field') { - const fieldDef = element.definition; - const existingEdge = builder.edges(v).find(e => e.transition.kind === 'FieldCollection' && e.transition.definition.name === fieldDef.name); - if (existingEdge) { - if (selection.selectionSet) { - const copiedTail = builder.makeCopy(existingEdge.tail); - builder.updateEdgeTail(existingEdge, copiedTail); - stack.push([copiedTail, selection.selectionSet]); - } - } - else { - const fieldType = (0, federation_internals_1$4.baseType)(fieldDef.type); - const existingTail = builder.verticesForType(fieldType.name).find(v => v.source === source); - const newTail = existingTail ? existingTail : builder.createNewVertex(fieldType, v.source, schema); - if (selection.selectionSet) { - const copiedTail = existingTail ? builder.makeCopy(existingTail) : newTail; - builder.addEdge(v, copiedTail, new transition_1.FieldCollection(fieldDef, true)); - stack.push([copiedTail, selection.selectionSet]); - } - else { - builder.addEdge(v, newTail, new transition_1.FieldCollection(fieldDef, true)); - } - } - } - else { - const typeCondition = element.typeCondition; - if (typeCondition) { - const existingEdge = builder.edges(v).find(e => e.transition.kind === 'DownCast' && e.transition.castedType.name === typeCondition.name); - (0, federation_internals_1$4.assert)(existingEdge, () => `Shouldn't have ${selection} with no corresponding edge on ${v}`); - const copiedTail = builder.makeCopy(existingEdge.tail); - builder.updateEdgeTail(existingEdge, copiedTail); - stack.push([copiedTail, selection.selectionSet]); - } - else { - stack.push([v, selection.selectionSet]); - } - } - } - } - } - class GraphBuilder { - constructor(verticesCount) { - this.nextIndex = 0; - this.typesToVertices = new federation_internals_1$4.MultiMap(); - this.rootVertices = new federation_internals_1$4.MapWithCachedArrays(); - this.sources = new Map(); - this.vertices = verticesCount ? new Array(verticesCount) : []; - this.adjacencies = verticesCount ? new Array(verticesCount) : []; - } - verticesForType(typeName) { - const indexes = this.typesToVertices.get(typeName); - return indexes == undefined ? [] : indexes.map(i => this.vertices[i]); - } - root(kind) { - return this.rootVertices.get(kind); - } - addEdge(head, tail, transition, conditions) { - const edges = this.adjacencies[head.index]; - const edge = new Edge(edges.length, head, tail, transition, conditions); - edges.push(edge); - } - createNewVertex(type, source, schema, index) { - if (!index) { - index = this.nextIndex++; - } - const vertex = new Vertex(index, type, source); - const previous = this.vertices[index]; - (0, federation_internals_1$4.assert)(!previous, () => `Overriding existing vertex ${previous} with ${vertex}`); - this.vertices[index] = vertex; - this.typesToVertices.add(type.name, index); - this.adjacencies[index] = []; - if (!this.sources.has(source)) { - this.sources.set(source, schema); - } - return vertex; - } - createRootVertex(kind, type, source, schema) { - const vertex = this.createNewVertex(type, source, schema); - (0, federation_internals_1$4.assert)(!this.rootVertices.has(kind), () => `Root vertex for ${kind} (${this.rootVertices.get(kind)}) already exists: cannot replace by ${vertex}`); - this.setAsRoot(kind, vertex.index); - } - setAsRoot(kind, index) { - const vertex = this.vertices[index]; - (0, federation_internals_1$4.assert)(vertex, () => `Cannot set non-existing vertex at index ${index} as root ${kind}`); - const rootVertex = toRootVertex(vertex, kind); - this.vertices[vertex.index] = rootVertex; - this.rootVertices.set(kind, rootVertex); - const rootEdges = this.adjacencies[vertex.index]; - for (let i = 0; i < rootEdges.length; i++) { - rootEdges[i] = rootEdges[i].withNewHead(rootVertex); - } - } - copyGraph(graph) { - const offset = this.nextIndex; - simpleTraversal(graph, v => { - this.getOrCopyVertex(v, offset, graph); - }, e => { - const newHead = this.getOrCopyVertex(e.head, offset, graph); - const newTail = this.getOrCopyVertex(e.tail, offset, graph); - this.addEdge(newHead, newTail, e.transition, e.conditions); - return true; - }); - this.nextIndex += graph.verticesCount(); - const that = this; - return { - copiedVertex(original) { - const vertex = that.vertices[original.index + offset]; - (0, federation_internals_1$4.assert)(vertex, () => `Vertex ${original} has no copy for offset ${offset}`); - return vertex; - } - }; - } - vertex(index) { - return this.vertices[index]; - } - edge(head, index) { - return this.adjacencies[head.index][index]; - } - edges(head) { - return this.adjacencies[head.index]; - } - makeCopy(vertex) { - const newVertex = this.createNewVertex(vertex.type, vertex.source, this.sources.get(vertex.source)); - for (const edge of this.adjacencies[vertex.index]) { - this.addEdge(newVertex, edge.tail, edge.transition, edge.conditions); - } - return newVertex; - } - updateEdgeTail(edge, newTail) { - const newEdge = new Edge(edge.index, edge.head, newTail, edge.transition, edge.conditions); - this.adjacencies[edge.head.index][edge.index] = newEdge; - return newEdge; - } - getOrCopyVertex(toCopy, indexOffset, graph) { - const index = toCopy.index + indexOffset; - let v = this.vertices[index]; - if (!v) { - v = this.createNewVertex(toCopy.type, toCopy.source, graph.sources.get(toCopy.source), index); - } - return v; - } - build(name) { - return new QueryGraph(name, this.vertices, this.adjacencies, this.typesToVertices, this.rootVertices, this.sources); - } - } - class GraphBuilderFromSchema extends GraphBuilder { - constructor(name, schema, supergraphSchema) { - super(); - this.name = name; - this.schema = schema; - this.supergraphSchema = supergraphSchema; - this.isFederatedSubgraph = (0, federation_internals_1$4.isFederationSubgraphSchema)(schema); - (0, federation_internals_1$4.assert)(!this.isFederatedSubgraph || supergraphSchema, `Missing supergraph schema for building the federated subgraph graph`); - this.forceTypeExplosion = supergraphSchema !== undefined && (0, federation_internals_1$4.isFed1Supergraph)(supergraphSchema); - } - addRecursivelyFromRoot(kind, root) { - this.setAsRoot(kind, this.addTypeRecursively(root).index); - } - addTypeRecursively(type) { - const namedType = (0, federation_internals_1$4.baseType)(type); - const existing = this.verticesForType(namedType.name); - if (existing.length > 0) { - (0, federation_internals_1$4.assert)(existing.length == 1, () => `Only one vertex should have been created for type ${namedType.name}, got ${existing.length}: ${(0, util_1.inspect)(this)}`); - return existing[0]; - } - const vertex = this.createNewVertex(namedType, this.name, this.schema); - if ((0, federation_internals_1$4.isObjectType)(namedType)) { - this.addObjectTypeEdges(namedType, vertex); - } - else if ((0, federation_internals_1$4.isInterfaceType)(namedType)) { - if (this.isFederatedSubgraph && !this.forceTypeExplosion) { - this.maybeAddInterfaceFieldsEdges(namedType, vertex); - } - this.addAbstractTypeEdges(namedType, vertex); - } - else if ((0, federation_internals_1$4.isUnionType)(namedType)) { - this.addEdgeForField(namedType.typenameField(), vertex); - this.addAbstractTypeEdges(namedType, vertex); - } - return vertex; - } - addObjectTypeEdges(type, head) { - for (const field of type.allFields()) { - if (field.isSchemaIntrospectionField() || field.hasAppliedDirective(federation_internals_1$4.externalDirectiveName)) { - continue; - } - this.addEdgeForField(field, head); - } - } - addEdgeForField(field, head) { - const tail = this.addTypeRecursively(field.type); - this.addEdge(head, tail, new transition_1.FieldCollection(field)); - } - isDirectlyProvidedByType(type, fieldName) { - const field = type.field(fieldName); - return field && !field.hasAppliedDirective(federation_internals_1$4.externalDirectiveName) && !field.hasAppliedDirective(federation_internals_1$4.requiresDirectiveName); - } - maybeAddInterfaceFieldsEdges(type, head) { - (0, federation_internals_1$4.assert)(this.supergraphSchema, 'Missing supergraph schema when building a subgraph'); - const supergraphType = this.supergraphSchema.type(type.name); - if (!supergraphType) { - return; - } - const supergraphRuntimeTypes = supergraphType.possibleRuntimeTypes().map(t => t.name); - const localRuntimeTypes = supergraphRuntimeTypes.map(t => this.schema.type(t)).filter(t => t !== undefined); - for (const field of type.allFields()) { - if (field.hasAppliedDirective(federation_internals_1$4.externalDirectiveName) || localRuntimeTypes.some(t => !this.isDirectlyProvidedByType(t, field.name))) { - continue; - } - this.addEdgeForField(field, head); - } - } - addAbstractTypeEdges(type, head) { - const implementations = (0, federation_internals_1$4.isInterfaceType)(type) ? type.possibleRuntimeTypes() : type.types(); - for (const implementationType of implementations) { - const tail = this.addTypeRecursively(implementationType); - this.addEdge(head, tail, new transition_1.DownCast(type, implementationType)); - } - } - addAdditionalAbstractTypeEdges() { - const abstractTypesWithTheirRuntimeTypes = []; - for (const type of this.schema.types()) { - if ((0, federation_internals_1$4.isAbstractType)(type)) { - abstractTypesWithTheirRuntimeTypes.push([type, (0, federation_internals_1$4.possibleRuntimeTypes)(type)]); - } - } - for (let i = 0; i < abstractTypesWithTheirRuntimeTypes.length - 1; i++) { - const [t1, t1Runtimes] = abstractTypesWithTheirRuntimeTypes[i]; - const t1Vertex = this.addTypeRecursively(t1); - for (let j = i; j < abstractTypesWithTheirRuntimeTypes.length; j++) { - const [t2, t2Runtimes] = abstractTypesWithTheirRuntimeTypes[j]; - if ((0, federation_internals_1$4.isInterfaceType)(t1) && (0, federation_internals_1$4.isInterfaceType)(t2) && (t1.implementsInterface(t2) || t2.implementsInterface(t1))) { - continue; - } - const intersecting = t1Runtimes.filter(o1 => t2Runtimes.includes(o1)); - if (intersecting.length >= 2) { - const t2Vertex = this.addTypeRecursively(t2); - this.addEdge(t1Vertex, t2Vertex, new transition_1.DownCast(t1, t2)); - this.addEdge(t2Vertex, t1Vertex, new transition_1.DownCast(t2, t1)); - } - } - } - } - build() { - return super.build(this.name); - } - } - function simpleTraversal(graph, onVertex, onEdges) { - const marked = new Array(graph.verticesCount()); - const stack = []; - const maybeAdd = function (vertex) { - if (!marked[vertex.index]) { - stack.push(vertex); - marked[vertex.index] = true; - } - }; - graph.roots().forEach(maybeAdd); - while (stack.length > 0) { - const vertex = stack.pop(); - onVertex(vertex); - for (const edge of graph.outEdges(vertex)) { - const shouldTraverse = onEdges(edge); - if (shouldTraverse) { - maybeAdd(edge.tail); - } - } - } - } - querygraph.simpleTraversal = simpleTraversal; - - var graphPath = {}; - - var pathTree = {}; - - var pathContext = {}; - - var toStr$8 = Object.prototype.toString; - - var isArguments$2 = function isArguments(value) { - var str = toStr$8.call(value); - var isArgs = str === '[object Arguments]'; - if (!isArgs) { - isArgs = str !== '[object Array]' && - value !== null && - typeof value === 'object' && - typeof value.length === 'number' && - value.length >= 0 && - toStr$8.call(value.callee) === '[object Function]'; - } - return isArgs; - }; - - var keysShim$1; - if (!Object.keys) { - // modified from https://github.com/es-shims/es5-shim - var has$2 = Object.prototype.hasOwnProperty; - var toStr$7 = Object.prototype.toString; - var isArgs$1 = isArguments$2; // eslint-disable-line global-require - var isEnumerable$1 = Object.prototype.propertyIsEnumerable; - var hasDontEnumBug = !isEnumerable$1.call({ toString: null }, 'toString'); - var hasProtoEnumBug = isEnumerable$1.call(function () {}, 'prototype'); - var dontEnums = [ - 'toString', - 'toLocaleString', - 'valueOf', - 'hasOwnProperty', - 'isPrototypeOf', - 'propertyIsEnumerable', - 'constructor' - ]; - var equalsConstructorPrototype = function (o) { - var ctor = o.constructor; - return ctor && ctor.prototype === o; - }; - var excludedKeys = { - $applicationCache: true, - $console: true, - $external: true, - $frame: true, - $frameElement: true, - $frames: true, - $innerHeight: true, - $innerWidth: true, - $onmozfullscreenchange: true, - $onmozfullscreenerror: true, - $outerHeight: true, - $outerWidth: true, - $pageXOffset: true, - $pageYOffset: true, - $parent: true, - $scrollLeft: true, - $scrollTop: true, - $scrollX: true, - $scrollY: true, - $self: true, - $webkitIndexedDB: true, - $webkitStorageInfo: true, - $window: true - }; - var hasAutomationEqualityBug = (function () { - /* global window */ - if (typeof window === 'undefined') { return false; } - for (var k in window) { - try { - if (!excludedKeys['$' + k] && has$2.call(window, k) && window[k] !== null && typeof window[k] === 'object') { - try { - equalsConstructorPrototype(window[k]); - } catch (e) { - return true; - } - } - } catch (e) { - return true; - } - } - return false; - }()); - var equalsConstructorPrototypeIfNotBuggy = function (o) { - /* global window */ - if (typeof window === 'undefined' || !hasAutomationEqualityBug) { - return equalsConstructorPrototype(o); - } - try { - return equalsConstructorPrototype(o); - } catch (e) { - return false; - } - }; - - keysShim$1 = function keys(object) { - var isObject = object !== null && typeof object === 'object'; - var isFunction = toStr$7.call(object) === '[object Function]'; - var isArguments = isArgs$1(object); - var isString = isObject && toStr$7.call(object) === '[object String]'; - var theKeys = []; - - if (!isObject && !isFunction && !isArguments) { - throw new TypeError('Object.keys called on a non-object'); - } - - var skipProto = hasProtoEnumBug && isFunction; - if (isString && object.length > 0 && !has$2.call(object, 0)) { - for (var i = 0; i < object.length; ++i) { - theKeys.push(String(i)); - } - } - - if (isArguments && object.length > 0) { - for (var j = 0; j < object.length; ++j) { - theKeys.push(String(j)); - } - } else { - for (var name in object) { - if (!(skipProto && name === 'prototype') && has$2.call(object, name)) { - theKeys.push(String(name)); - } - } - } - - if (hasDontEnumBug) { - var skipConstructor = equalsConstructorPrototypeIfNotBuggy(object); - - for (var k = 0; k < dontEnums.length; ++k) { - if (!(skipConstructor && dontEnums[k] === 'constructor') && has$2.call(object, dontEnums[k])) { - theKeys.push(dontEnums[k]); - } - } - } - return theKeys; - }; - } - var implementation$b = keysShim$1; - - var slice$1 = Array.prototype.slice; - var isArgs = isArguments$2; - - var origKeys = Object.keys; - var keysShim = origKeys ? function keys(o) { return origKeys(o); } : implementation$b; - - var originalKeys = Object.keys; - - keysShim.shim = function shimObjectKeys() { - if (Object.keys) { - var keysWorksWithArguments = (function () { - // Safari 5.0 bug - var args = Object.keys(arguments); - return args && args.length === arguments.length; - }(1, 2)); - if (!keysWorksWithArguments) { - Object.keys = function keys(object) { // eslint-disable-line func-name-matching - if (isArgs(object)) { - return originalKeys(slice$1.call(object)); - } - return originalKeys(object); - }; - } - } else { - Object.keys = keysShim; - } - return Object.keys || keysShim; - }; - - var objectKeys$1 = keysShim; - - /* eslint complexity: [2, 18], max-statements: [2, 33] */ - var shams$1 = function hasSymbols() { - if (typeof Symbol !== 'function' || typeof Object.getOwnPropertySymbols !== 'function') { return false; } - if (typeof Symbol.iterator === 'symbol') { return true; } - - var obj = {}; - var sym = Symbol('test'); - var symObj = Object(sym); - if (typeof sym === 'string') { return false; } - - if (Object.prototype.toString.call(sym) !== '[object Symbol]') { return false; } - if (Object.prototype.toString.call(symObj) !== '[object Symbol]') { return false; } - - // temp disabled per https://github.com/ljharb/object.assign/issues/17 - // if (sym instanceof Symbol) { return false; } - // temp disabled per https://github.com/WebReflection/get-own-property-symbols/issues/4 - // if (!(symObj instanceof Symbol)) { return false; } - - // if (typeof Symbol.prototype.toString !== 'function') { return false; } - // if (String(sym) !== Symbol.prototype.toString.call(sym)) { return false; } - - var symVal = 42; - obj[sym] = symVal; - for (sym in obj) { return false; } // eslint-disable-line no-restricted-syntax, no-unreachable-loop - if (typeof Object.keys === 'function' && Object.keys(obj).length !== 0) { return false; } - - if (typeof Object.getOwnPropertyNames === 'function' && Object.getOwnPropertyNames(obj).length !== 0) { return false; } - - var syms = Object.getOwnPropertySymbols(obj); - if (syms.length !== 1 || syms[0] !== sym) { return false; } - - if (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; } - - if (typeof Object.getOwnPropertyDescriptor === 'function') { - var descriptor = Object.getOwnPropertyDescriptor(obj, sym); - if (descriptor.value !== symVal || descriptor.enumerable !== true) { return false; } - } - - return true; - }; - - var hasSymbols$5 = shams$1; - - var shams = function hasToStringTagShams() { - return hasSymbols$5() && !!Symbol.toStringTag; - }; - - var origSymbol = typeof Symbol !== 'undefined' && Symbol; - var hasSymbolSham = shams$1; - - var hasSymbols$4 = function hasNativeSymbols() { - if (typeof origSymbol !== 'function') { return false; } - if (typeof Symbol !== 'function') { return false; } - if (typeof origSymbol('foo') !== 'symbol') { return false; } - if (typeof Symbol('bar') !== 'symbol') { return false; } - - return hasSymbolSham(); - }; - - /* eslint no-invalid-this: 1 */ - - var ERROR_MESSAGE = 'Function.prototype.bind called on incompatible '; - var slice = Array.prototype.slice; - var toStr$6 = Object.prototype.toString; - var funcType = '[object Function]'; - - var implementation$a = function bind(that) { - var target = this; - if (typeof target !== 'function' || toStr$6.call(target) !== funcType) { - throw new TypeError(ERROR_MESSAGE + target); - } - var args = slice.call(arguments, 1); - - var bound; - var binder = function () { - if (this instanceof bound) { - var result = target.apply( - this, - args.concat(slice.call(arguments)) - ); - if (Object(result) === result) { - return result; - } - return this; - } else { - return target.apply( - that, - args.concat(slice.call(arguments)) - ); - } - }; - - var boundLength = Math.max(0, target.length - args.length); - var boundArgs = []; - for (var i = 0; i < boundLength; i++) { - boundArgs.push('$' + i); - } - - bound = Function('binder', 'return function (' + boundArgs.join(',') + '){ return binder.apply(this,arguments); }')(binder); - - if (target.prototype) { - var Empty = function Empty() {}; - Empty.prototype = target.prototype; - bound.prototype = new Empty(); - Empty.prototype = null; - } - - return bound; - }; - - var implementation$9 = implementation$a; - - var functionBind = Function.prototype.bind || implementation$9; - - var bind$1 = functionBind; - - var src = bind$1.call(Function.call, Object.prototype.hasOwnProperty); - - var undefined$1; - - var $SyntaxError = SyntaxError; - var $Function = Function; - var $TypeError$3 = TypeError; - - // eslint-disable-next-line consistent-return - var getEvalledConstructor = function (expressionSyntax) { - try { - return $Function('"use strict"; return (' + expressionSyntax + ').constructor;')(); - } catch (e) {} - }; - - var $gOPD$2 = Object.getOwnPropertyDescriptor; - if ($gOPD$2) { - try { - $gOPD$2({}, ''); - } catch (e) { - $gOPD$2 = null; // this is IE 8, which has a broken gOPD - } - } - - var throwTypeError = function () { - throw new $TypeError$3(); - }; - var ThrowTypeError = $gOPD$2 - ? (function () { - try { - // eslint-disable-next-line no-unused-expressions, no-caller, no-restricted-properties - arguments.callee; // IE 8 does not throw here - return throwTypeError; - } catch (calleeThrows) { - try { - // IE 8 throws on Object.getOwnPropertyDescriptor(arguments, '') - return $gOPD$2(arguments, 'callee').get; - } catch (gOPDthrows) { - return throwTypeError; - } - } - }()) - : throwTypeError; - - var hasSymbols$3 = hasSymbols$4(); - - var getProto$1 = Object.getPrototypeOf || function (x) { return x.__proto__; }; // eslint-disable-line no-proto - - var needsEval = {}; - - var TypedArray = typeof Uint8Array === 'undefined' ? undefined$1 : getProto$1(Uint8Array); - - var INTRINSICS = { - '%AggregateError%': typeof AggregateError === 'undefined' ? undefined$1 : AggregateError, - '%Array%': Array, - '%ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined$1 : ArrayBuffer, - '%ArrayIteratorPrototype%': hasSymbols$3 ? getProto$1([][Symbol.iterator]()) : undefined$1, - '%AsyncFromSyncIteratorPrototype%': undefined$1, - '%AsyncFunction%': needsEval, - '%AsyncGenerator%': needsEval, - '%AsyncGeneratorFunction%': needsEval, - '%AsyncIteratorPrototype%': needsEval, - '%Atomics%': typeof Atomics === 'undefined' ? undefined$1 : Atomics, - '%BigInt%': typeof BigInt === 'undefined' ? undefined$1 : BigInt, - '%Boolean%': Boolean, - '%DataView%': typeof DataView === 'undefined' ? undefined$1 : DataView, - '%Date%': Date, - '%decodeURI%': decodeURI, - '%decodeURIComponent%': decodeURIComponent, - '%encodeURI%': encodeURI, - '%encodeURIComponent%': encodeURIComponent, - '%Error%': Error, - '%eval%': eval, // eslint-disable-line no-eval - '%EvalError%': EvalError, - '%Float32Array%': typeof Float32Array === 'undefined' ? undefined$1 : Float32Array, - '%Float64Array%': typeof Float64Array === 'undefined' ? undefined$1 : Float64Array, - '%FinalizationRegistry%': typeof FinalizationRegistry === 'undefined' ? undefined$1 : FinalizationRegistry, - '%Function%': $Function, - '%GeneratorFunction%': needsEval, - '%Int8Array%': typeof Int8Array === 'undefined' ? undefined$1 : Int8Array, - '%Int16Array%': typeof Int16Array === 'undefined' ? undefined$1 : Int16Array, - '%Int32Array%': typeof Int32Array === 'undefined' ? undefined$1 : Int32Array, - '%isFinite%': isFinite, - '%isNaN%': isNaN, - '%IteratorPrototype%': hasSymbols$3 ? getProto$1(getProto$1([][Symbol.iterator]())) : undefined$1, - '%JSON%': typeof JSON === 'object' ? JSON : undefined$1, - '%Map%': typeof Map === 'undefined' ? undefined$1 : Map, - '%MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols$3 ? undefined$1 : getProto$1(new Map()[Symbol.iterator]()), - '%Math%': Math, - '%Number%': Number, - '%Object%': Object, - '%parseFloat%': parseFloat, - '%parseInt%': parseInt, - '%Promise%': typeof Promise === 'undefined' ? undefined$1 : Promise, - '%Proxy%': typeof Proxy === 'undefined' ? undefined$1 : Proxy, - '%RangeError%': RangeError, - '%ReferenceError%': ReferenceError, - '%Reflect%': typeof Reflect === 'undefined' ? undefined$1 : Reflect, - '%RegExp%': RegExp, - '%Set%': typeof Set === 'undefined' ? undefined$1 : Set, - '%SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols$3 ? undefined$1 : getProto$1(new Set()[Symbol.iterator]()), - '%SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined$1 : SharedArrayBuffer, - '%String%': String, - '%StringIteratorPrototype%': hasSymbols$3 ? getProto$1(''[Symbol.iterator]()) : undefined$1, - '%Symbol%': hasSymbols$3 ? Symbol : undefined$1, - '%SyntaxError%': $SyntaxError, - '%ThrowTypeError%': ThrowTypeError, - '%TypedArray%': TypedArray, - '%TypeError%': $TypeError$3, - '%Uint8Array%': typeof Uint8Array === 'undefined' ? undefined$1 : Uint8Array, - '%Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? undefined$1 : Uint8ClampedArray, - '%Uint16Array%': typeof Uint16Array === 'undefined' ? undefined$1 : Uint16Array, - '%Uint32Array%': typeof Uint32Array === 'undefined' ? undefined$1 : Uint32Array, - '%URIError%': URIError, - '%WeakMap%': typeof WeakMap === 'undefined' ? undefined$1 : WeakMap, - '%WeakRef%': typeof WeakRef === 'undefined' ? undefined$1 : WeakRef, - '%WeakSet%': typeof WeakSet === 'undefined' ? undefined$1 : WeakSet - }; - - var doEval = function doEval(name) { - var value; - if (name === '%AsyncFunction%') { - value = getEvalledConstructor('async function () {}'); - } else if (name === '%GeneratorFunction%') { - value = getEvalledConstructor('function* () {}'); - } else if (name === '%AsyncGeneratorFunction%') { - value = getEvalledConstructor('async function* () {}'); - } else if (name === '%AsyncGenerator%') { - var fn = doEval('%AsyncGeneratorFunction%'); - if (fn) { - value = fn.prototype; - } - } else if (name === '%AsyncIteratorPrototype%') { - var gen = doEval('%AsyncGenerator%'); - if (gen) { - value = getProto$1(gen.prototype); - } - } - - INTRINSICS[name] = value; - - return value; - }; - - var LEGACY_ALIASES = { - '%ArrayBufferPrototype%': ['ArrayBuffer', 'prototype'], - '%ArrayPrototype%': ['Array', 'prototype'], - '%ArrayProto_entries%': ['Array', 'prototype', 'entries'], - '%ArrayProto_forEach%': ['Array', 'prototype', 'forEach'], - '%ArrayProto_keys%': ['Array', 'prototype', 'keys'], - '%ArrayProto_values%': ['Array', 'prototype', 'values'], - '%AsyncFunctionPrototype%': ['AsyncFunction', 'prototype'], - '%AsyncGenerator%': ['AsyncGeneratorFunction', 'prototype'], - '%AsyncGeneratorPrototype%': ['AsyncGeneratorFunction', 'prototype', 'prototype'], - '%BooleanPrototype%': ['Boolean', 'prototype'], - '%DataViewPrototype%': ['DataView', 'prototype'], - '%DatePrototype%': ['Date', 'prototype'], - '%ErrorPrototype%': ['Error', 'prototype'], - '%EvalErrorPrototype%': ['EvalError', 'prototype'], - '%Float32ArrayPrototype%': ['Float32Array', 'prototype'], - '%Float64ArrayPrototype%': ['Float64Array', 'prototype'], - '%FunctionPrototype%': ['Function', 'prototype'], - '%Generator%': ['GeneratorFunction', 'prototype'], - '%GeneratorPrototype%': ['GeneratorFunction', 'prototype', 'prototype'], - '%Int8ArrayPrototype%': ['Int8Array', 'prototype'], - '%Int16ArrayPrototype%': ['Int16Array', 'prototype'], - '%Int32ArrayPrototype%': ['Int32Array', 'prototype'], - '%JSONParse%': ['JSON', 'parse'], - '%JSONStringify%': ['JSON', 'stringify'], - '%MapPrototype%': ['Map', 'prototype'], - '%NumberPrototype%': ['Number', 'prototype'], - '%ObjectPrototype%': ['Object', 'prototype'], - '%ObjProto_toString%': ['Object', 'prototype', 'toString'], - '%ObjProto_valueOf%': ['Object', 'prototype', 'valueOf'], - '%PromisePrototype%': ['Promise', 'prototype'], - '%PromiseProto_then%': ['Promise', 'prototype', 'then'], - '%Promise_all%': ['Promise', 'all'], - '%Promise_reject%': ['Promise', 'reject'], - '%Promise_resolve%': ['Promise', 'resolve'], - '%RangeErrorPrototype%': ['RangeError', 'prototype'], - '%ReferenceErrorPrototype%': ['ReferenceError', 'prototype'], - '%RegExpPrototype%': ['RegExp', 'prototype'], - '%SetPrototype%': ['Set', 'prototype'], - '%SharedArrayBufferPrototype%': ['SharedArrayBuffer', 'prototype'], - '%StringPrototype%': ['String', 'prototype'], - '%SymbolPrototype%': ['Symbol', 'prototype'], - '%SyntaxErrorPrototype%': ['SyntaxError', 'prototype'], - '%TypedArrayPrototype%': ['TypedArray', 'prototype'], - '%TypeErrorPrototype%': ['TypeError', 'prototype'], - '%Uint8ArrayPrototype%': ['Uint8Array', 'prototype'], - '%Uint8ClampedArrayPrototype%': ['Uint8ClampedArray', 'prototype'], - '%Uint16ArrayPrototype%': ['Uint16Array', 'prototype'], - '%Uint32ArrayPrototype%': ['Uint32Array', 'prototype'], - '%URIErrorPrototype%': ['URIError', 'prototype'], - '%WeakMapPrototype%': ['WeakMap', 'prototype'], - '%WeakSetPrototype%': ['WeakSet', 'prototype'] - }; - - var bind = functionBind; - var hasOwn$2 = src; - var $concat$1 = bind.call(Function.call, Array.prototype.concat); - var $spliceApply = bind.call(Function.apply, Array.prototype.splice); - var $replace$1 = bind.call(Function.call, String.prototype.replace); - var $strSlice = bind.call(Function.call, String.prototype.slice); - - /* adapted from https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js#L6735-L6744 */ - var rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g; - var reEscapeChar = /\\(\\)?/g; /** Used to match backslashes in property paths. */ - var stringToPath = function stringToPath(string) { - var first = $strSlice(string, 0, 1); - var last = $strSlice(string, -1); - if (first === '%' && last !== '%') { - throw new $SyntaxError('invalid intrinsic syntax, expected closing `%`'); - } else if (last === '%' && first !== '%') { - throw new $SyntaxError('invalid intrinsic syntax, expected opening `%`'); - } - var result = []; - $replace$1(string, rePropName, function (match, number, quote, subString) { - result[result.length] = quote ? $replace$1(subString, reEscapeChar, '$1') : number || match; - }); - return result; - }; - /* end adaptation */ - - var getBaseIntrinsic = function getBaseIntrinsic(name, allowMissing) { - var intrinsicName = name; - var alias; - if (hasOwn$2(LEGACY_ALIASES, intrinsicName)) { - alias = LEGACY_ALIASES[intrinsicName]; - intrinsicName = '%' + alias[0] + '%'; - } - - if (hasOwn$2(INTRINSICS, intrinsicName)) { - var value = INTRINSICS[intrinsicName]; - if (value === needsEval) { - value = doEval(intrinsicName); - } - if (typeof value === 'undefined' && !allowMissing) { - throw new $TypeError$3('intrinsic ' + name + ' exists, but is not available. Please file an issue!'); - } - - return { - alias: alias, - name: intrinsicName, - value: value - }; - } - - throw new $SyntaxError('intrinsic ' + name + ' does not exist!'); - }; - - var getIntrinsic = function GetIntrinsic(name, allowMissing) { - if (typeof name !== 'string' || name.length === 0) { - throw new $TypeError$3('intrinsic name must be a non-empty string'); - } - if (arguments.length > 1 && typeof allowMissing !== 'boolean') { - throw new $TypeError$3('"allowMissing" argument must be a boolean'); - } - - var parts = stringToPath(name); - var intrinsicBaseName = parts.length > 0 ? parts[0] : ''; - - var intrinsic = getBaseIntrinsic('%' + intrinsicBaseName + '%', allowMissing); - var intrinsicRealName = intrinsic.name; - var value = intrinsic.value; - var skipFurtherCaching = false; - - var alias = intrinsic.alias; - if (alias) { - intrinsicBaseName = alias[0]; - $spliceApply(parts, $concat$1([0, 1], alias)); - } - - for (var i = 1, isOwn = true; i < parts.length; i += 1) { - var part = parts[i]; - var first = $strSlice(part, 0, 1); - var last = $strSlice(part, -1); - if ( - ( - (first === '"' || first === "'" || first === '`') - || (last === '"' || last === "'" || last === '`') - ) - && first !== last - ) { - throw new $SyntaxError('property names with quotes must have matching quotes'); - } - if (part === 'constructor' || !isOwn) { - skipFurtherCaching = true; - } - - intrinsicBaseName += '.' + part; - intrinsicRealName = '%' + intrinsicBaseName + '%'; - - if (hasOwn$2(INTRINSICS, intrinsicRealName)) { - value = INTRINSICS[intrinsicRealName]; - } else if (value != null) { - if (!(part in value)) { - if (!allowMissing) { - throw new $TypeError$3('base intrinsic for ' + name + ' exists, but the property is not available.'); - } - return void undefined$1; - } - if ($gOPD$2 && (i + 1) >= parts.length) { - var desc = $gOPD$2(value, part); - isOwn = !!desc; - - // By convention, when a data property is converted to an accessor - // property to emulate a data property that does not suffer from - // the override mistake, that accessor's getter is marked with - // an `originalValue` property. Here, when we detect this, we - // uphold the illusion by pretending to see that original data - // property, i.e., returning the value rather than the getter - // itself. - if (isOwn && 'get' in desc && !('originalValue' in desc.get)) { - value = desc.get; - } else { - value = value[part]; - } - } else { - isOwn = hasOwn$2(value, part); - value = value[part]; - } - - if (isOwn && !skipFurtherCaching) { - INTRINSICS[intrinsicRealName] = value; - } - } - } - return value; - }; - - var callBind$4 = {exports: {}}; - - (function (module) { - - var bind = functionBind; - var GetIntrinsic = getIntrinsic; - - var $apply = GetIntrinsic('%Function.prototype.apply%'); - var $call = GetIntrinsic('%Function.prototype.call%'); - var $reflectApply = GetIntrinsic('%Reflect.apply%', true) || bind.call($call, $apply); - - var $gOPD = GetIntrinsic('%Object.getOwnPropertyDescriptor%', true); - var $defineProperty = GetIntrinsic('%Object.defineProperty%', true); - var $max = GetIntrinsic('%Math.max%'); - - if ($defineProperty) { - try { - $defineProperty({}, 'a', { value: 1 }); - } catch (e) { - // IE 8 has a broken defineProperty - $defineProperty = null; - } - } - - module.exports = function callBind(originalFunction) { - var func = $reflectApply(bind, $call, arguments); - if ($gOPD && $defineProperty) { - var desc = $gOPD(func, 'length'); - if (desc.configurable) { - // original length, plus the receiver, minus any additional arguments (after the receiver) - $defineProperty( - func, - 'length', - { value: 1 + $max(0, originalFunction.length - (arguments.length - 1)) } - ); - } - } - return func; - }; - - var applyBind = function applyBind() { - return $reflectApply(bind, $apply, arguments); - }; - - if ($defineProperty) { - $defineProperty(module.exports, 'apply', { value: applyBind }); - } else { - module.exports.apply = applyBind; - } - }(callBind$4)); - - var GetIntrinsic$4 = getIntrinsic; - - var callBind$3 = callBind$4.exports; - - var $indexOf$1 = callBind$3(GetIntrinsic$4('String.prototype.indexOf')); - - var callBound$9 = function callBoundIntrinsic(name, allowMissing) { - var intrinsic = GetIntrinsic$4(name, !!allowMissing); - if (typeof intrinsic === 'function' && $indexOf$1(name, '.prototype.') > -1) { - return callBind$3(intrinsic); - } - return intrinsic; - }; - - var hasToStringTag$7 = shams(); - var callBound$8 = callBound$9; - - var $toString$4 = callBound$8('Object.prototype.toString'); - - var isStandardArguments = function isArguments(value) { - if (hasToStringTag$7 && value && typeof value === 'object' && Symbol.toStringTag in value) { - return false; - } - return $toString$4(value) === '[object Arguments]'; - }; - - var isLegacyArguments = function isArguments(value) { - if (isStandardArguments(value)) { - return true; - } - return value !== null && - typeof value === 'object' && - typeof value.length === 'number' && - value.length >= 0 && - $toString$4(value) !== '[object Array]' && - $toString$4(value.callee) === '[object Function]'; - }; - - var supportsStandardArguments = (function () { - return isStandardArguments(arguments); - }()); - - isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests - - var isArguments$1 = supportsStandardArguments ? isStandardArguments : isLegacyArguments; - - var keys$1 = objectKeys$1; - var hasSymbols$2 = typeof Symbol === 'function' && typeof Symbol('foo') === 'symbol'; - - var toStr$5 = Object.prototype.toString; - var concat = Array.prototype.concat; - var origDefineProperty = Object.defineProperty; - - var isFunction = function (fn) { - return typeof fn === 'function' && toStr$5.call(fn) === '[object Function]'; - }; - - var arePropertyDescriptorsSupported = function () { - var obj = {}; - try { - origDefineProperty(obj, 'x', { enumerable: false, value: obj }); - // eslint-disable-next-line no-unused-vars, no-restricted-syntax - for (var _ in obj) { // jscs:ignore disallowUnusedVariables - return false; - } - return obj.x === obj; - } catch (e) { /* this is IE 8. */ - return false; - } - }; - var supportsDescriptors$2 = origDefineProperty && arePropertyDescriptorsSupported(); - - var defineProperty$1 = function (object, name, value, predicate) { - if (name in object && (!isFunction(predicate) || !predicate())) { - return; - } - if (supportsDescriptors$2) { - origDefineProperty(object, name, { - configurable: true, - enumerable: false, - value: value, - writable: true - }); - } else { - object[name] = value; - } - }; - - var defineProperties$1 = function (object, map) { - var predicates = arguments.length > 2 ? arguments[2] : {}; - var props = keys$1(map); - if (hasSymbols$2) { - props = concat.call(props, Object.getOwnPropertySymbols(map)); - } - for (var i = 0; i < props.length; i += 1) { - defineProperty$1(object, props[i], map[props[i]], predicates[props[i]]); - } - }; - - defineProperties$1.supportsDescriptors = !!supportsDescriptors$2; - - var defineProperties_1 = defineProperties$1; - - var numberIsNaN = function (value) { - return value !== value; - }; - - var implementation$8 = function is(a, b) { - if (a === 0 && b === 0) { - return 1 / a === 1 / b; - } - if (a === b) { - return true; - } - if (numberIsNaN(a) && numberIsNaN(b)) { - return true; - } - return false; - }; - - var implementation$7 = implementation$8; - - var polyfill$4 = function getPolyfill() { - return typeof Object.is === 'function' ? Object.is : implementation$7; - }; - - var getPolyfill$5 = polyfill$4; - var define$3 = defineProperties_1; - - var shim$5 = function shimObjectIs() { - var polyfill = getPolyfill$5(); - define$3(Object, { is: polyfill }, { - is: function testObjectIs() { - return Object.is !== polyfill; - } - }); - return polyfill; - }; - - var define$2 = defineProperties_1; - var callBind$2 = callBind$4.exports; - - var implementation$6 = implementation$8; - var getPolyfill$4 = polyfill$4; - var shim$4 = shim$5; - - var polyfill$3 = callBind$2(getPolyfill$4(), Object); - - define$2(polyfill$3, { - getPolyfill: getPolyfill$4, - implementation: implementation$6, - shim: shim$4 - }); - - var objectIs = polyfill$3; - - var callBound$7 = callBound$9; - var hasToStringTag$6 = shams(); - var has$1; - var $exec; - var isRegexMarker; - var badStringifier; - - if (hasToStringTag$6) { - has$1 = callBound$7('Object.prototype.hasOwnProperty'); - $exec = callBound$7('RegExp.prototype.exec'); - isRegexMarker = {}; - - var throwRegexMarker = function () { - throw isRegexMarker; - }; - badStringifier = { - toString: throwRegexMarker, - valueOf: throwRegexMarker - }; - - if (typeof Symbol.toPrimitive === 'symbol') { - badStringifier[Symbol.toPrimitive] = throwRegexMarker; - } - } - - var $toString$3 = callBound$7('Object.prototype.toString'); - var gOPD$3 = Object.getOwnPropertyDescriptor; - var regexClass = '[object RegExp]'; - - var isRegex$1 = hasToStringTag$6 - // eslint-disable-next-line consistent-return - ? function isRegex(value) { - if (!value || typeof value !== 'object') { - return false; - } - - var descriptor = gOPD$3(value, 'lastIndex'); - var hasLastIndexDataProperty = descriptor && has$1(descriptor, 'value'); - if (!hasLastIndexDataProperty) { - return false; - } - - try { - $exec(value, badStringifier); - } catch (e) { - return e === isRegexMarker; - } - } - : function isRegex(value) { - // In older browsers, typeof regex incorrectly returns 'function' - if (!value || (typeof value !== 'object' && typeof value !== 'function')) { - return false; - } - - return $toString$3(value) === regexClass; - }; - - var $Object = Object; - var $TypeError$2 = TypeError; - - var implementation$5 = function flags() { - if (this != null && this !== $Object(this)) { - throw new $TypeError$2('RegExp.prototype.flags getter called on non-object'); - } - var result = ''; - if (this.global) { - result += 'g'; - } - if (this.ignoreCase) { - result += 'i'; - } - if (this.multiline) { - result += 'm'; - } - if (this.dotAll) { - result += 's'; - } - if (this.unicode) { - result += 'u'; - } - if (this.sticky) { - result += 'y'; - } - return result; - }; - - var implementation$4 = implementation$5; - - var supportsDescriptors$1 = defineProperties_1.supportsDescriptors; - var $gOPD$1 = Object.getOwnPropertyDescriptor; - var $TypeError$1 = TypeError; - - var polyfill$2 = function getPolyfill() { - if (!supportsDescriptors$1) { - throw new $TypeError$1('RegExp.prototype.flags requires a true ES5 environment that supports property descriptors'); - } - if ((/a/mig).flags === 'gim') { - var descriptor = $gOPD$1(RegExp.prototype, 'flags'); - if (descriptor && typeof descriptor.get === 'function' && typeof (/a/).dotAll === 'boolean') { - return descriptor.get; - } - } - return implementation$4; - }; - - var supportsDescriptors = defineProperties_1.supportsDescriptors; - var getPolyfill$3 = polyfill$2; - var gOPD$2 = Object.getOwnPropertyDescriptor; - var defineProperty = Object.defineProperty; - var TypeErr = TypeError; - var getProto = Object.getPrototypeOf; - var regex = /a/; - - var shim$3 = function shimFlags() { - if (!supportsDescriptors || !getProto) { - throw new TypeErr('RegExp.prototype.flags requires a true ES5 environment that supports property descriptors'); - } - var polyfill = getPolyfill$3(); - var proto = getProto(regex); - var descriptor = gOPD$2(proto, 'flags'); - if (!descriptor || descriptor.get !== polyfill) { - defineProperty(proto, 'flags', { - configurable: true, - enumerable: false, - get: polyfill - }); - } - return polyfill; - }; - - var define$1 = defineProperties_1; - var callBind$1 = callBind$4.exports; - - var implementation$3 = implementation$5; - var getPolyfill$2 = polyfill$2; - var shim$2 = shim$3; - - var flagsBound = callBind$1(implementation$3); - - define$1(flagsBound, { - getPolyfill: getPolyfill$2, - implementation: implementation$3, - shim: shim$2 - }); - - var regexp_prototype_flags = flagsBound; - - var toString$1 = {}.toString; - - var isarray = Array.isArray || function (arr) { - return toString$1.call(arr) == '[object Array]'; - }; - - var getDay = Date.prototype.getDay; - var tryDateObject = function tryDateGetDayCall(value) { - try { - getDay.call(value); - return true; - } catch (e) { - return false; - } - }; - - var toStr$4 = Object.prototype.toString; - var dateClass = '[object Date]'; - var hasToStringTag$5 = shams(); - - var isDateObject = function isDateObject(value) { - if (typeof value !== 'object' || value === null) { - return false; - } - return hasToStringTag$5 ? tryDateObject(value) : toStr$4.call(value) === dateClass; - }; - - var strValue = String.prototype.valueOf; - var tryStringObject = function tryStringObject(value) { - try { - strValue.call(value); - return true; - } catch (e) { - return false; - } - }; - var toStr$3 = Object.prototype.toString; - var strClass = '[object String]'; - var hasToStringTag$4 = shams(); - - var isString$2 = function isString(value) { - if (typeof value === 'string') { - return true; - } - if (typeof value !== 'object') { - return false; - } - return hasToStringTag$4 ? tryStringObject(value) : toStr$3.call(value) === strClass; - }; - - var numToStr = Number.prototype.toString; - var tryNumberObject = function tryNumberObject(value) { - try { - numToStr.call(value); - return true; - } catch (e) { - return false; - } - }; - var toStr$2 = Object.prototype.toString; - var numClass = '[object Number]'; - var hasToStringTag$3 = shams(); - - var isNumberObject = function isNumberObject(value) { - if (typeof value === 'number') { - return true; - } - if (typeof value !== 'object') { - return false; - } - return hasToStringTag$3 ? tryNumberObject(value) : toStr$2.call(value) === numClass; - }; - - var callBound$6 = callBound$9; - var $boolToStr = callBound$6('Boolean.prototype.toString'); - var $toString$2 = callBound$6('Object.prototype.toString'); - - var tryBooleanObject = function booleanBrandCheck(value) { - try { - $boolToStr(value); - return true; - } catch (e) { - return false; - } - }; - var boolClass = '[object Boolean]'; - var hasToStringTag$2 = shams(); - - var isBooleanObject = function isBoolean(value) { - if (typeof value === 'boolean') { - return true; - } - if (value === null || typeof value !== 'object') { - return false; - } - return hasToStringTag$2 && Symbol.toStringTag in value ? tryBooleanObject(value) : $toString$2(value) === boolClass; - }; - - var isSymbol$2 = {exports: {}}; - - var toStr$1 = Object.prototype.toString; - var hasSymbols$1 = hasSymbols$4(); - - if (hasSymbols$1) { - var symToStr = Symbol.prototype.toString; - var symStringRegex = /^Symbol\(.*\)$/; - var isSymbolObject = function isRealSymbolObject(value) { - if (typeof value.valueOf() !== 'symbol') { - return false; - } - return symStringRegex.test(symToStr.call(value)); - }; - - isSymbol$2.exports = function isSymbol(value) { - if (typeof value === 'symbol') { - return true; - } - if (toStr$1.call(value) !== '[object Symbol]') { - return false; - } - try { - return isSymbolObject(value); - } catch (e) { - return false; - } - }; - } else { - - isSymbol$2.exports = function isSymbol(value) { - // this environment does not support Symbols. - return false ; - }; - } - - var isBigint = {exports: {}}; - - var $BigInt = commonjsGlobal.BigInt; - - var hasBigints = function hasNativeBigInts() { - return typeof $BigInt === 'function' - && typeof BigInt === 'function' - && typeof $BigInt(42) === 'bigint' // eslint-disable-line no-magic-numbers - && typeof BigInt(42) === 'bigint'; // eslint-disable-line no-magic-numbers - }; - - var hasBigInts = hasBigints(); - - if (hasBigInts) { - var bigIntValueOf$1 = BigInt.prototype.valueOf; - var tryBigInt = function tryBigIntObject(value) { - try { - bigIntValueOf$1.call(value); - return true; - } catch (e) { - } - return false; - }; - - isBigint.exports = function isBigInt(value) { - if ( - value === null - || typeof value === 'undefined' - || typeof value === 'boolean' - || typeof value === 'string' - || typeof value === 'number' - || typeof value === 'symbol' - || typeof value === 'function' - ) { - return false; - } - if (typeof value === 'bigint') { - return true; - } - - return tryBigInt(value); - }; - } else { - isBigint.exports = function isBigInt(value) { - return false ; - }; - } - - var isString$1 = isString$2; - var isNumber$1 = isNumberObject; - var isBoolean$1 = isBooleanObject; - var isSymbol$1 = isSymbol$2.exports; - var isBigInt$1 = isBigint.exports; - - // eslint-disable-next-line consistent-return - var whichBoxedPrimitive$1 = function whichBoxedPrimitive(value) { - // eslint-disable-next-line eqeqeq - if (value == null || (typeof value !== 'object' && typeof value !== 'function')) { - return null; - } - if (isString$1(value)) { - return 'String'; - } - if (isNumber$1(value)) { - return 'Number'; - } - if (isBoolean$1(value)) { - return 'Boolean'; - } - if (isSymbol$1(value)) { - return 'Symbol'; - } - if (isBigInt$1(value)) { - return 'BigInt'; - } - }; - - var $Map$2 = typeof Map === 'function' && Map.prototype ? Map : null; - var $Set$2 = typeof Set === 'function' && Set.prototype ? Set : null; - - var exported$2; - - if (!$Map$2) { - // eslint-disable-next-line no-unused-vars - exported$2 = function isMap(x) { - // `Map` is not present in this environment. - return false; - }; - } - - var $mapHas$5 = $Map$2 ? Map.prototype.has : null; - var $setHas$4 = $Set$2 ? Set.prototype.has : null; - if (!exported$2 && !$mapHas$5) { - // eslint-disable-next-line no-unused-vars - exported$2 = function isMap(x) { - // `Map` does not have a `has` method - return false; - }; - } - - var isMap$2 = exported$2 || function isMap(x) { - if (!x || typeof x !== 'object') { - return false; - } - try { - $mapHas$5.call(x); - if ($setHas$4) { - try { - $setHas$4.call(x); - } catch (e) { - return true; - } - } - return x instanceof $Map$2; // core-js workaround, pre-v2.5.0 - } catch (e) {} - return false; - }; - - var $Map$1 = typeof Map === 'function' && Map.prototype ? Map : null; - var $Set$1 = typeof Set === 'function' && Set.prototype ? Set : null; - - var exported$1; - - if (!$Set$1) { - // eslint-disable-next-line no-unused-vars - exported$1 = function isSet(x) { - // `Set` is not present in this environment. - return false; - }; - } - - var $mapHas$4 = $Map$1 ? Map.prototype.has : null; - var $setHas$3 = $Set$1 ? Set.prototype.has : null; - if (!exported$1 && !$setHas$3) { - // eslint-disable-next-line no-unused-vars - exported$1 = function isSet(x) { - // `Set` does not have a `has` method - return false; - }; - } - - var isSet$2 = exported$1 || function isSet(x) { - if (!x || typeof x !== 'object') { - return false; - } - try { - $setHas$3.call(x); - if ($mapHas$4) { - try { - $mapHas$4.call(x); - } catch (e) { - return true; - } - } - return x instanceof $Set$1; // core-js workaround, pre-v2.5.0 - } catch (e) {} - return false; - }; - - var $WeakMap$1 = typeof WeakMap === 'function' && WeakMap.prototype ? WeakMap : null; - var $WeakSet$1 = typeof WeakSet === 'function' && WeakSet.prototype ? WeakSet : null; - - var exported; - - if (!$WeakMap$1) { - // eslint-disable-next-line no-unused-vars - exported = function isWeakMap(x) { - // `WeakMap` is not present in this environment. - return false; - }; - } - - var $mapHas$3 = $WeakMap$1 ? $WeakMap$1.prototype.has : null; - var $setHas$2 = $WeakSet$1 ? $WeakSet$1.prototype.has : null; - if (!exported && !$mapHas$3) { - // eslint-disable-next-line no-unused-vars - exported = function isWeakMap(x) { - // `WeakMap` does not have a `has` method - return false; - }; - } - - var isWeakmap = exported || function isWeakMap(x) { - if (!x || typeof x !== 'object') { - return false; - } - try { - $mapHas$3.call(x, $mapHas$3); - if ($setHas$2) { - try { - $setHas$2.call(x, $setHas$2); - } catch (e) { - return true; - } - } - return x instanceof $WeakMap$1; // core-js workaround, pre-v3 - } catch (e) {} - return false; - }; - - var isWeakset = {exports: {}}; - - var GetIntrinsic$3 = getIntrinsic; - var callBound$5 = callBound$9; - - var $WeakSet = GetIntrinsic$3('%WeakSet%', true); - - var $setHas$1 = callBound$5('WeakSet.prototype.has', true); - - if ($setHas$1) { - var $mapHas$2 = callBound$5('WeakMap.prototype.has', true); - - isWeakset.exports = function isWeakSet(x) { - if (!x || typeof x !== 'object') { - return false; - } - try { - $setHas$1(x, $setHas$1); - if ($mapHas$2) { - try { - $mapHas$2(x, $mapHas$2); - } catch (e) { - return true; - } - } - return x instanceof $WeakSet; // core-js workaround, pre-v3 - } catch (e) {} - return false; - }; - } else { - // eslint-disable-next-line no-unused-vars - isWeakset.exports = function isWeakSet(x) { - // `WeakSet` does not exist, or does not have a `has` method - return false; - }; - } - - var isMap$1 = isMap$2; - var isSet$1 = isSet$2; - var isWeakMap$1 = isWeakmap; - var isWeakSet$1 = isWeakset.exports; - - var whichCollection$1 = function whichCollection(value) { - if (value && typeof value === 'object') { - if (isMap$1(value)) { - return 'Map'; - } - if (isSet$1(value)) { - return 'Set'; - } - if (isWeakMap$1(value)) { - return 'WeakMap'; - } - if (isWeakSet$1(value)) { - return 'WeakSet'; - } - } - return false; - }; - - // this should only run in node >= 13.2, so it - // does not need any of the intense fallbacks that old node/browsers do - - var $iterator = Symbol.iterator; - var node = function getIterator(iterable) { - // alternatively, `iterable[$iterator]?.()` - if (iterable != null && typeof iterable[$iterator] !== 'undefined') { - return iterable[$iterator](); - } - }; - - var util_inspect = require$$0$1.inspect; - - var hasMap = typeof Map === 'function' && Map.prototype; - var mapSizeDescriptor = Object.getOwnPropertyDescriptor && hasMap ? Object.getOwnPropertyDescriptor(Map.prototype, 'size') : null; - var mapSize = hasMap && mapSizeDescriptor && typeof mapSizeDescriptor.get === 'function' ? mapSizeDescriptor.get : null; - var mapForEach = hasMap && Map.prototype.forEach; - var hasSet = typeof Set === 'function' && Set.prototype; - var setSizeDescriptor = Object.getOwnPropertyDescriptor && hasSet ? Object.getOwnPropertyDescriptor(Set.prototype, 'size') : null; - var setSize = hasSet && setSizeDescriptor && typeof setSizeDescriptor.get === 'function' ? setSizeDescriptor.get : null; - var setForEach = hasSet && Set.prototype.forEach; - var hasWeakMap = typeof WeakMap === 'function' && WeakMap.prototype; - var weakMapHas = hasWeakMap ? WeakMap.prototype.has : null; - var hasWeakSet = typeof WeakSet === 'function' && WeakSet.prototype; - var weakSetHas = hasWeakSet ? WeakSet.prototype.has : null; - var hasWeakRef = typeof WeakRef === 'function' && WeakRef.prototype; - var weakRefDeref = hasWeakRef ? WeakRef.prototype.deref : null; - var booleanValueOf = Boolean.prototype.valueOf; - var objectToString = Object.prototype.toString; - var functionToString = Function.prototype.toString; - var $match = String.prototype.match; - var $slice$2 = String.prototype.slice; - var $replace = String.prototype.replace; - var $toUpperCase = String.prototype.toUpperCase; - var $toLowerCase = String.prototype.toLowerCase; - var $test = RegExp.prototype.test; - var $concat = Array.prototype.concat; - var $join = Array.prototype.join; - var $arrSlice = Array.prototype.slice; - var $floor = Math.floor; - var bigIntValueOf = typeof BigInt === 'function' ? BigInt.prototype.valueOf : null; - var gOPS = Object.getOwnPropertySymbols; - var symToString = typeof Symbol === 'function' && typeof Symbol.iterator === 'symbol' ? Symbol.prototype.toString : null; - var hasShammedSymbols = typeof Symbol === 'function' && typeof Symbol.iterator === 'object'; - // ie, `has-tostringtag/shams - var toStringTag = typeof Symbol === 'function' && Symbol.toStringTag && (typeof Symbol.toStringTag === hasShammedSymbols ? 'object' : 'symbol') - ? Symbol.toStringTag - : null; - var isEnumerable = Object.prototype.propertyIsEnumerable; - - var gPO$1 = (typeof Reflect === 'function' ? Reflect.getPrototypeOf : Object.getPrototypeOf) || ( - [].__proto__ === Array.prototype // eslint-disable-line no-proto - ? function (O) { - return O.__proto__; // eslint-disable-line no-proto - } - : null - ); - - function addNumericSeparator(num, str) { - if ( - num === Infinity - || num === -Infinity - || num !== num - || (num && num > -1000 && num < 1000) - || $test.call(/e/, str) - ) { - return str; - } - var sepRegex = /[0-9](?=(?:[0-9]{3})+(?![0-9]))/g; - if (typeof num === 'number') { - var int = num < 0 ? -$floor(-num) : $floor(num); // trunc(num) - if (int !== num) { - var intStr = String(int); - var dec = $slice$2.call(str, intStr.length + 1); - return $replace.call(intStr, sepRegex, '$&_') + '.' + $replace.call($replace.call(dec, /([0-9]{3})/g, '$&_'), /_$/, ''); - } - } - return $replace.call(str, sepRegex, '$&_'); - } - - var inspectCustom = util_inspect.custom; - var inspectSymbol = inspectCustom && isSymbol(inspectCustom) ? inspectCustom : null; - - var objectInspect = function inspect_(obj, options, depth, seen) { - var opts = options || {}; - - if (has(opts, 'quoteStyle') && (opts.quoteStyle !== 'single' && opts.quoteStyle !== 'double')) { - throw new TypeError('option "quoteStyle" must be "single" or "double"'); - } - if ( - has(opts, 'maxStringLength') && (typeof opts.maxStringLength === 'number' - ? opts.maxStringLength < 0 && opts.maxStringLength !== Infinity - : opts.maxStringLength !== null - ) - ) { - throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`'); - } - var customInspect = has(opts, 'customInspect') ? opts.customInspect : true; - if (typeof customInspect !== 'boolean' && customInspect !== 'symbol') { - throw new TypeError('option "customInspect", if provided, must be `true`, `false`, or `\'symbol\'`'); - } - - if ( - has(opts, 'indent') - && opts.indent !== null - && opts.indent !== '\t' - && !(parseInt(opts.indent, 10) === opts.indent && opts.indent > 0) - ) { - throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`'); - } - if (has(opts, 'numericSeparator') && typeof opts.numericSeparator !== 'boolean') { - throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`'); - } - var numericSeparator = opts.numericSeparator; - - if (typeof obj === 'undefined') { - return 'undefined'; - } - if (obj === null) { - return 'null'; - } - if (typeof obj === 'boolean') { - return obj ? 'true' : 'false'; - } - - if (typeof obj === 'string') { - return inspectString(obj, opts); - } - if (typeof obj === 'number') { - if (obj === 0) { - return Infinity / obj > 0 ? '0' : '-0'; - } - var str = String(obj); - return numericSeparator ? addNumericSeparator(obj, str) : str; - } - if (typeof obj === 'bigint') { - var bigIntStr = String(obj) + 'n'; - return numericSeparator ? addNumericSeparator(obj, bigIntStr) : bigIntStr; - } - - var maxDepth = typeof opts.depth === 'undefined' ? 5 : opts.depth; - if (typeof depth === 'undefined') { depth = 0; } - if (depth >= maxDepth && maxDepth > 0 && typeof obj === 'object') { - return isArray$1(obj) ? '[Array]' : '[Object]'; - } - - var indent = getIndent(opts, depth); - - if (typeof seen === 'undefined') { - seen = []; - } else if (indexOf(seen, obj) >= 0) { - return '[Circular]'; - } - - function inspect(value, from, noIndent) { - if (from) { - seen = $arrSlice.call(seen); - seen.push(from); - } - if (noIndent) { - var newOpts = { - depth: opts.depth - }; - if (has(opts, 'quoteStyle')) { - newOpts.quoteStyle = opts.quoteStyle; - } - return inspect_(value, newOpts, depth + 1, seen); - } - return inspect_(value, opts, depth + 1, seen); - } - - if (typeof obj === 'function') { - var name = nameOf(obj); - var keys = arrObjKeys(obj, inspect); - return '[Function' + (name ? ': ' + name : ' (anonymous)') + ']' + (keys.length > 0 ? ' { ' + $join.call(keys, ', ') + ' }' : ''); - } - if (isSymbol(obj)) { - var symString = hasShammedSymbols ? $replace.call(String(obj), /^(Symbol\(.*\))_[^)]*$/, '$1') : symToString.call(obj); - return typeof obj === 'object' && !hasShammedSymbols ? markBoxed(symString) : symString; - } - if (isElement(obj)) { - var s = '<' + $toLowerCase.call(String(obj.nodeName)); - var attrs = obj.attributes || []; - for (var i = 0; i < attrs.length; i++) { - s += ' ' + attrs[i].name + '=' + wrapQuotes(quote(attrs[i].value), 'double', opts); - } - s += '>'; - if (obj.childNodes && obj.childNodes.length) { s += '...'; } - s += ''; - return s; - } - if (isArray$1(obj)) { - if (obj.length === 0) { return '[]'; } - var xs = arrObjKeys(obj, inspect); - if (indent && !singleLineValues(xs)) { - return '[' + indentedJoin(xs, indent) + ']'; - } - return '[ ' + $join.call(xs, ', ') + ' ]'; - } - if (isError(obj)) { - var parts = arrObjKeys(obj, inspect); - if ('cause' in obj && !isEnumerable.call(obj, 'cause')) { - return '{ [' + String(obj) + '] ' + $join.call($concat.call('[cause]: ' + inspect(obj.cause), parts), ', ') + ' }'; - } - if (parts.length === 0) { return '[' + String(obj) + ']'; } - return '{ [' + String(obj) + '] ' + $join.call(parts, ', ') + ' }'; - } - if (typeof obj === 'object' && customInspect) { - if (inspectSymbol && typeof obj[inspectSymbol] === 'function') { - return obj[inspectSymbol](); - } else if (customInspect !== 'symbol' && typeof obj.inspect === 'function') { - return obj.inspect(); - } - } - if (isMap(obj)) { - var mapParts = []; - mapForEach.call(obj, function (value, key) { - mapParts.push(inspect(key, obj, true) + ' => ' + inspect(value, obj)); - }); - return collectionOf('Map', mapSize.call(obj), mapParts, indent); - } - if (isSet(obj)) { - var setParts = []; - setForEach.call(obj, function (value) { - setParts.push(inspect(value, obj)); - }); - return collectionOf('Set', setSize.call(obj), setParts, indent); - } - if (isWeakMap(obj)) { - return weakCollectionOf('WeakMap'); - } - if (isWeakSet(obj)) { - return weakCollectionOf('WeakSet'); - } - if (isWeakRef(obj)) { - return weakCollectionOf('WeakRef'); - } - if (isNumber(obj)) { - return markBoxed(inspect(Number(obj))); - } - if (isBigInt(obj)) { - return markBoxed(inspect(bigIntValueOf.call(obj))); - } - if (isBoolean(obj)) { - return markBoxed(booleanValueOf.call(obj)); - } - if (isString(obj)) { - return markBoxed(inspect(String(obj))); - } - if (!isDate$1(obj) && !isRegExp(obj)) { - var ys = arrObjKeys(obj, inspect); - var isPlainObject = gPO$1 ? gPO$1(obj) === Object.prototype : obj instanceof Object || obj.constructor === Object; - var protoTag = obj instanceof Object ? '' : 'null prototype'; - var stringTag = !isPlainObject && toStringTag && Object(obj) === obj && toStringTag in obj ? $slice$2.call(toStr(obj), 8, -1) : protoTag ? 'Object' : ''; - var constructorTag = isPlainObject || typeof obj.constructor !== 'function' ? '' : obj.constructor.name ? obj.constructor.name + ' ' : ''; - var tag = constructorTag + (stringTag || protoTag ? '[' + $join.call($concat.call([], stringTag || [], protoTag || []), ': ') + '] ' : ''); - if (ys.length === 0) { return tag + '{}'; } - if (indent) { - return tag + '{' + indentedJoin(ys, indent) + '}'; - } - return tag + '{ ' + $join.call(ys, ', ') + ' }'; - } - return String(obj); - }; - - function wrapQuotes(s, defaultStyle, opts) { - var quoteChar = (opts.quoteStyle || defaultStyle) === 'double' ? '"' : "'"; - return quoteChar + s + quoteChar; - } - - function quote(s) { - return $replace.call(String(s), /"/g, '"'); - } - - function isArray$1(obj) { return toStr(obj) === '[object Array]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); } - function isDate$1(obj) { return toStr(obj) === '[object Date]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); } - function isRegExp(obj) { return toStr(obj) === '[object RegExp]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); } - function isError(obj) { return toStr(obj) === '[object Error]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); } - function isString(obj) { return toStr(obj) === '[object String]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); } - function isNumber(obj) { return toStr(obj) === '[object Number]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); } - function isBoolean(obj) { return toStr(obj) === '[object Boolean]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); } - - // Symbol and BigInt do have Symbol.toStringTag by spec, so that can't be used to eliminate false positives - function isSymbol(obj) { - if (hasShammedSymbols) { - return obj && typeof obj === 'object' && obj instanceof Symbol; - } - if (typeof obj === 'symbol') { - return true; - } - if (!obj || typeof obj !== 'object' || !symToString) { - return false; - } - try { - symToString.call(obj); - return true; - } catch (e) {} - return false; - } - - function isBigInt(obj) { - if (!obj || typeof obj !== 'object' || !bigIntValueOf) { - return false; - } - try { - bigIntValueOf.call(obj); - return true; - } catch (e) {} - return false; - } - - var hasOwn$1 = Object.prototype.hasOwnProperty || function (key) { return key in this; }; - function has(obj, key) { - return hasOwn$1.call(obj, key); - } - - function toStr(obj) { - return objectToString.call(obj); - } - - function nameOf(f) { - if (f.name) { return f.name; } - var m = $match.call(functionToString.call(f), /^function\s*([\w$]+)/); - if (m) { return m[1]; } - return null; - } - - function indexOf(xs, x) { - if (xs.indexOf) { return xs.indexOf(x); } - for (var i = 0, l = xs.length; i < l; i++) { - if (xs[i] === x) { return i; } - } - return -1; - } - - function isMap(x) { - if (!mapSize || !x || typeof x !== 'object') { - return false; - } - try { - mapSize.call(x); - try { - setSize.call(x); - } catch (s) { - return true; - } - return x instanceof Map; // core-js workaround, pre-v2.5.0 - } catch (e) {} - return false; - } - - function isWeakMap(x) { - if (!weakMapHas || !x || typeof x !== 'object') { - return false; - } - try { - weakMapHas.call(x, weakMapHas); - try { - weakSetHas.call(x, weakSetHas); - } catch (s) { - return true; - } - return x instanceof WeakMap; // core-js workaround, pre-v2.5.0 - } catch (e) {} - return false; - } - - function isWeakRef(x) { - if (!weakRefDeref || !x || typeof x !== 'object') { - return false; - } - try { - weakRefDeref.call(x); - return true; - } catch (e) {} - return false; - } - - function isSet(x) { - if (!setSize || !x || typeof x !== 'object') { - return false; - } - try { - setSize.call(x); - try { - mapSize.call(x); - } catch (m) { - return true; - } - return x instanceof Set; // core-js workaround, pre-v2.5.0 - } catch (e) {} - return false; - } - - function isWeakSet(x) { - if (!weakSetHas || !x || typeof x !== 'object') { - return false; - } - try { - weakSetHas.call(x, weakSetHas); - try { - weakMapHas.call(x, weakMapHas); - } catch (s) { - return true; - } - return x instanceof WeakSet; // core-js workaround, pre-v2.5.0 - } catch (e) {} - return false; - } - - function isElement(x) { - if (!x || typeof x !== 'object') { return false; } - if (typeof HTMLElement !== 'undefined' && x instanceof HTMLElement) { - return true; - } - return typeof x.nodeName === 'string' && typeof x.getAttribute === 'function'; - } - - function inspectString(str, opts) { - if (str.length > opts.maxStringLength) { - var remaining = str.length - opts.maxStringLength; - var trailer = '... ' + remaining + ' more character' + (remaining > 1 ? 's' : ''); - return inspectString($slice$2.call(str, 0, opts.maxStringLength), opts) + trailer; - } - // eslint-disable-next-line no-control-regex - var s = $replace.call($replace.call(str, /(['\\])/g, '\\$1'), /[\x00-\x1f]/g, lowbyte); - return wrapQuotes(s, 'single', opts); - } - - function lowbyte(c) { - var n = c.charCodeAt(0); - var x = { - 8: 'b', - 9: 't', - 10: 'n', - 12: 'f', - 13: 'r' - }[n]; - if (x) { return '\\' + x; } - return '\\x' + (n < 0x10 ? '0' : '') + $toUpperCase.call(n.toString(16)); - } - - function markBoxed(str) { - return 'Object(' + str + ')'; - } - - function weakCollectionOf(type) { - return type + ' { ? }'; - } - - function collectionOf(type, size, entries, indent) { - var joinedEntries = indent ? indentedJoin(entries, indent) : $join.call(entries, ', '); - return type + ' (' + size + ') {' + joinedEntries + '}'; - } - - function singleLineValues(xs) { - for (var i = 0; i < xs.length; i++) { - if (indexOf(xs[i], '\n') >= 0) { - return false; - } - } - return true; - } - - function getIndent(opts, depth) { - var baseIndent; - if (opts.indent === '\t') { - baseIndent = '\t'; - } else if (typeof opts.indent === 'number' && opts.indent > 0) { - baseIndent = $join.call(Array(opts.indent + 1), ' '); - } else { - return null; - } - return { - base: baseIndent, - prev: $join.call(Array(depth + 1), baseIndent) - }; - } - - function indentedJoin(xs, indent) { - if (xs.length === 0) { return ''; } - var lineJoiner = '\n' + indent.prev + indent.base; - return lineJoiner + $join.call(xs, ',' + lineJoiner) + '\n' + indent.prev; - } - - function arrObjKeys(obj, inspect) { - var isArr = isArray$1(obj); - var xs = []; - if (isArr) { - xs.length = obj.length; - for (var i = 0; i < obj.length; i++) { - xs[i] = has(obj, i) ? inspect(obj[i], obj) : ''; - } - } - var syms = typeof gOPS === 'function' ? gOPS(obj) : []; - var symMap; - if (hasShammedSymbols) { - symMap = {}; - for (var k = 0; k < syms.length; k++) { - symMap['$' + syms[k]] = syms[k]; - } - } - - for (var key in obj) { // eslint-disable-line no-restricted-syntax - if (!has(obj, key)) { continue; } // eslint-disable-line no-restricted-syntax, no-continue - if (isArr && String(Number(key)) === key && key < obj.length) { continue; } // eslint-disable-line no-restricted-syntax, no-continue - if (hasShammedSymbols && symMap['$' + key] instanceof Symbol) { - // this is to prevent shammed Symbols, which are stored as strings, from being included in the string key section - continue; // eslint-disable-line no-restricted-syntax, no-continue - } else if ($test.call(/[^\w$]/, key)) { - xs.push(inspect(key, obj) + ': ' + inspect(obj[key], obj)); - } else { - xs.push(key + ': ' + inspect(obj[key], obj)); - } - } - if (typeof gOPS === 'function') { - for (var j = 0; j < syms.length; j++) { - if (isEnumerable.call(obj, syms[j])) { - xs.push('[' + inspect(syms[j]) + ']: ' + inspect(obj[syms[j]], obj)); - } - } - } - return xs; - } - - var GetIntrinsic$2 = getIntrinsic; - var callBound$4 = callBound$9; - var inspect = objectInspect; - - var $TypeError = GetIntrinsic$2('%TypeError%'); - var $WeakMap = GetIntrinsic$2('%WeakMap%', true); - var $Map = GetIntrinsic$2('%Map%', true); - - var $weakMapGet = callBound$4('WeakMap.prototype.get', true); - var $weakMapSet = callBound$4('WeakMap.prototype.set', true); - var $weakMapHas = callBound$4('WeakMap.prototype.has', true); - var $mapGet$1 = callBound$4('Map.prototype.get', true); - var $mapSet = callBound$4('Map.prototype.set', true); - var $mapHas$1 = callBound$4('Map.prototype.has', true); - - /* - * This function traverses the list returning the node corresponding to the - * given key. - * - * That node is also moved to the head of the list, so that if it's accessed - * again we don't need to traverse the whole list. By doing so, all the recently - * used nodes can be accessed relatively quickly. - */ - var listGetNode = function (list, key) { // eslint-disable-line consistent-return - for (var prev = list, curr; (curr = prev.next) !== null; prev = curr) { - if (curr.key === key) { - prev.next = curr.next; - curr.next = list.next; - list.next = curr; // eslint-disable-line no-param-reassign - return curr; - } - } - }; - - var listGet = function (objects, key) { - var node = listGetNode(objects, key); - return node && node.value; - }; - var listSet = function (objects, key, value) { - var node = listGetNode(objects, key); - if (node) { - node.value = value; - } else { - // Prepend the new node to the beginning of the list - objects.next = { // eslint-disable-line no-param-reassign - key: key, - next: objects.next, - value: value - }; - } - }; - var listHas = function (objects, key) { - return !!listGetNode(objects, key); - }; - - var sideChannel = function getSideChannel() { - var $wm; - var $m; - var $o; - var channel = { - assert: function (key) { - if (!channel.has(key)) { - throw new $TypeError('Side channel does not contain ' + inspect(key)); - } - }, - get: function (key) { // eslint-disable-line consistent-return - if ($WeakMap && key && (typeof key === 'object' || typeof key === 'function')) { - if ($wm) { - return $weakMapGet($wm, key); - } - } else if ($Map) { - if ($m) { - return $mapGet$1($m, key); - } - } else { - if ($o) { // eslint-disable-line no-lonely-if - return listGet($o, key); - } - } - }, - has: function (key) { - if ($WeakMap && key && (typeof key === 'object' || typeof key === 'function')) { - if ($wm) { - return $weakMapHas($wm, key); - } - } else if ($Map) { - if ($m) { - return $mapHas$1($m, key); - } - } else { - if ($o) { // eslint-disable-line no-lonely-if - return listHas($o, key); - } - } - return false; - }, - set: function (key, value) { - if ($WeakMap && key && (typeof key === 'object' || typeof key === 'function')) { - if (!$wm) { - $wm = new $WeakMap(); - } - $weakMapSet($wm, key, value); - } else if ($Map) { - if (!$m) { - $m = new $Map(); - } - $mapSet($m, key, value); - } else { - if (!$o) { - /* - * Initialize the linked list as an empty node, so that we don't have - * to special-case handling of the first node: we can always refer to - * it as (previous node).next, instead of something like (list).head - */ - $o = { key: {}, next: null }; - } - listSet($o, key, value); - } - } - }; - return channel; - }; - - var hasOwn = Object.prototype.hasOwnProperty; - var toString = Object.prototype.toString; - - var foreach = function forEach (obj, fn, ctx) { - if (toString.call(fn) !== '[object Function]') { - throw new TypeError('iterator must be a function'); - } - var l = obj.length; - if (l === +l) { - for (var i = 0; i < l; i++) { - fn.call(ctx, obj[i], i, obj); - } - } else { - for (var k in obj) { - if (hasOwn.call(obj, k)) { - fn.call(ctx, obj[k], k, obj); - } - } - } - }; - - var possibleNames = [ - 'BigInt64Array', - 'BigUint64Array', - 'Float32Array', - 'Float64Array', - 'Int16Array', - 'Int32Array', - 'Int8Array', - 'Uint16Array', - 'Uint32Array', - 'Uint8Array', - 'Uint8ClampedArray' - ]; - - var g$2 = typeof globalThis === 'undefined' ? commonjsGlobal : globalThis; - - var availableTypedArrays$2 = function availableTypedArrays() { - var out = []; - for (var i = 0; i < possibleNames.length; i++) { - if (typeof g$2[possibleNames[i]] === 'function') { - out[out.length] = possibleNames[i]; - } - } - return out; - }; - - var GetIntrinsic$1 = getIntrinsic; - - var $gOPD = GetIntrinsic$1('%Object.getOwnPropertyDescriptor%', true); - if ($gOPD) { - try { - $gOPD([], 'length'); - } catch (e) { - // IE 8 has a broken gOPD - $gOPD = null; - } - } - - var getOwnPropertyDescriptor = $gOPD; - - var forEach$1 = foreach; - var availableTypedArrays$1 = availableTypedArrays$2; - var callBound$3 = callBound$9; - - var $toString$1 = callBound$3('Object.prototype.toString'); - var hasToStringTag$1 = shams(); - - var g$1 = typeof globalThis === 'undefined' ? commonjsGlobal : globalThis; - var typedArrays$1 = availableTypedArrays$1(); - - var $indexOf = callBound$3('Array.prototype.indexOf', true) || function indexOf(array, value) { - for (var i = 0; i < array.length; i += 1) { - if (array[i] === value) { - return i; - } - } - return -1; - }; - var $slice$1 = callBound$3('String.prototype.slice'); - var toStrTags$1 = {}; - var gOPD$1 = getOwnPropertyDescriptor; - var getPrototypeOf$1 = Object.getPrototypeOf; // require('getprototypeof'); - if (hasToStringTag$1 && gOPD$1 && getPrototypeOf$1) { - forEach$1(typedArrays$1, function (typedArray) { - var arr = new g$1[typedArray](); - if (Symbol.toStringTag in arr) { - var proto = getPrototypeOf$1(arr); - var descriptor = gOPD$1(proto, Symbol.toStringTag); - if (!descriptor) { - var superProto = getPrototypeOf$1(proto); - descriptor = gOPD$1(superProto, Symbol.toStringTag); - } - toStrTags$1[typedArray] = descriptor.get; - } - }); - } - - var tryTypedArrays$1 = function tryAllTypedArrays(value) { - var anyTrue = false; - forEach$1(toStrTags$1, function (getter, typedArray) { - if (!anyTrue) { - try { - anyTrue = getter.call(value) === typedArray; - } catch (e) { /**/ } - } - }); - return anyTrue; - }; - - var isTypedArray$1 = function isTypedArray(value) { - if (!value || typeof value !== 'object') { return false; } - if (!hasToStringTag$1 || !(Symbol.toStringTag in value)) { - var tag = $slice$1($toString$1(value), 8, -1); - return $indexOf(typedArrays$1, tag) > -1; - } - if (!gOPD$1) { return false; } - return tryTypedArrays$1(value); - }; - - var forEach = foreach; - var availableTypedArrays = availableTypedArrays$2; - var callBound$2 = callBound$9; - - var $toString = callBound$2('Object.prototype.toString'); - var hasToStringTag = shams(); - - var g = typeof globalThis === 'undefined' ? commonjsGlobal : globalThis; - var typedArrays = availableTypedArrays(); - - var $slice = callBound$2('String.prototype.slice'); - var toStrTags = {}; - var gOPD = getOwnPropertyDescriptor; - var getPrototypeOf = Object.getPrototypeOf; // require('getprototypeof'); - if (hasToStringTag && gOPD && getPrototypeOf) { - forEach(typedArrays, function (typedArray) { - if (typeof g[typedArray] === 'function') { - var arr = new g[typedArray](); - if (Symbol.toStringTag in arr) { - var proto = getPrototypeOf(arr); - var descriptor = gOPD(proto, Symbol.toStringTag); - if (!descriptor) { - var superProto = getPrototypeOf(proto); - descriptor = gOPD(superProto, Symbol.toStringTag); - } - toStrTags[typedArray] = descriptor.get; - } - } - }); - } - - var tryTypedArrays = function tryAllTypedArrays(value) { - var foundName = false; - forEach(toStrTags, function (getter, typedArray) { - if (!foundName) { - try { - var name = getter.call(value); - if (name === typedArray) { - foundName = name; - } - } catch (e) {} - } - }); - return foundName; - }; - - var isTypedArray = isTypedArray$1; - - var whichTypedArray$1 = function whichTypedArray(value) { - if (!isTypedArray(value)) { return false; } - if (!hasToStringTag || !(Symbol.toStringTag in value)) { return $slice($toString(value), 8, -1); } - return tryTypedArrays(value); - }; - - // modified from https://github.com/es-shims/es6-shim - var keys = objectKeys$1; - var canBeObject = function (obj) { - return typeof obj !== 'undefined' && obj !== null; - }; - var hasSymbols = shams$1(); - var callBound$1 = callBound$9; - var toObject = Object; - var $push = callBound$1('Array.prototype.push'); - var $propIsEnumerable = callBound$1('Object.prototype.propertyIsEnumerable'); - var originalGetSymbols = hasSymbols ? Object.getOwnPropertySymbols : null; - - // eslint-disable-next-line no-unused-vars - var implementation$2 = function assign(target, source1) { - if (!canBeObject(target)) { throw new TypeError('target must be an object'); } - var objTarget = toObject(target); - var s, source, i, props, syms, value, key; - for (s = 1; s < arguments.length; ++s) { - source = toObject(arguments[s]); - props = keys(source); - var getSymbols = hasSymbols && (Object.getOwnPropertySymbols || originalGetSymbols); - if (getSymbols) { - syms = getSymbols(source); - for (i = 0; i < syms.length; ++i) { - key = syms[i]; - if ($propIsEnumerable(source, key)) { - $push(props, key); - } - } - } - for (i = 0; i < props.length; ++i) { - key = props[i]; - value = source[key]; - if ($propIsEnumerable(source, key)) { - objTarget[key] = value; - } - } - } - return objTarget; - }; - - var implementation$1 = implementation$2; - - var lacksProperEnumerationOrder = function () { - if (!Object.assign) { - return false; - } - /* - * v8, specifically in node 4.x, has a bug with incorrect property enumeration order - * note: this does not detect the bug unless there's 20 characters - */ - var str = 'abcdefghijklmnopqrst'; - var letters = str.split(''); - var map = {}; - for (var i = 0; i < letters.length; ++i) { - map[letters[i]] = letters[i]; - } - var obj = Object.assign({}, map); - var actual = ''; - for (var k in obj) { - actual += k; - } - return str !== actual; - }; - - var assignHasPendingExceptions = function () { - if (!Object.assign || !Object.preventExtensions) { - return false; - } - /* - * Firefox 37 still has "pending exception" logic in its Object.assign implementation, - * which is 72% slower than our shim, and Firefox 40's native implementation. - */ - var thrower = Object.preventExtensions({ 1: 2 }); - try { - Object.assign(thrower, 'xy'); - } catch (e) { - return thrower[1] === 'y'; - } - return false; - }; - - var polyfill$1 = function getPolyfill() { - if (!Object.assign) { - return implementation$1; - } - if (lacksProperEnumerationOrder()) { - return implementation$1; - } - if (assignHasPendingExceptions()) { - return implementation$1; - } - return Object.assign; - }; - - var define = defineProperties_1; - var getPolyfill$1 = polyfill$1; - - var shim$1 = function shimAssign() { - var polyfill = getPolyfill$1(); - define( - Object, - { assign: polyfill }, - { assign: function () { return Object.assign !== polyfill; } } - ); - return polyfill; - }; - - var defineProperties = defineProperties_1; - var callBind = callBind$4.exports; - - var implementation = implementation$2; - var getPolyfill = polyfill$1; - var shim = shim$1; - - var polyfill = callBind.apply(getPolyfill()); - // eslint-disable-next-line no-unused-vars - var bound = function assign(target, source1) { - return polyfill(Object, arguments); - }; - - defineProperties(bound, { - getPolyfill: getPolyfill, - implementation: implementation, - shim: shim - }); - - var object_assign = bound; - - var objectKeys = objectKeys$1; - var isArguments = isArguments$1; - var is = objectIs; - var isRegex = isRegex$1; - var flags = regexp_prototype_flags; - var isArray = isarray; - var isDate = isDateObject; - var whichBoxedPrimitive = whichBoxedPrimitive$1; - var GetIntrinsic = getIntrinsic; - var callBound = callBound$9; - var whichCollection = whichCollection$1; - var getIterator = node; - var getSideChannel = sideChannel; - var whichTypedArray = whichTypedArray$1; - var assign = object_assign; - - var $getTime = callBound('Date.prototype.getTime'); - var gPO = Object.getPrototypeOf; - var $objToString = callBound('Object.prototype.toString'); - - var $Set = GetIntrinsic('%Set%', true); - var $mapHas = callBound('Map.prototype.has', true); - var $mapGet = callBound('Map.prototype.get', true); - var $mapSize = callBound('Map.prototype.size', true); - var $setAdd = callBound('Set.prototype.add', true); - var $setDelete = callBound('Set.prototype.delete', true); - var $setHas = callBound('Set.prototype.has', true); - var $setSize = callBound('Set.prototype.size', true); - - // taken from https://github.com/browserify/commonjs-assert/blob/bba838e9ba9e28edf3127ce6974624208502f6bc/internal/util/comparisons.js#L401-L414 - function setHasEqualElement(set, val1, opts, channel) { - var i = getIterator(set); - var result; - while ((result = i.next()) && !result.done) { - if (internalDeepEqual(val1, result.value, opts, channel)) { // eslint-disable-line no-use-before-define - // Remove the matching element to make sure we do not check that again. - $setDelete(set, result.value); - return true; - } - } - - return false; - } - - // taken from https://github.com/browserify/commonjs-assert/blob/bba838e9ba9e28edf3127ce6974624208502f6bc/internal/util/comparisons.js#L416-L439 - function findLooseMatchingPrimitives(prim) { - if (typeof prim === 'undefined') { - return null; - } - if (typeof prim === 'object') { // Only pass in null as object! - return void 0; - } - if (typeof prim === 'symbol') { - return false; - } - if (typeof prim === 'string' || typeof prim === 'number') { - // Loose equal entries exist only if the string is possible to convert to a regular number and not NaN. - return +prim === +prim; // eslint-disable-line no-implicit-coercion - } - return true; - } - - // taken from https://github.com/browserify/commonjs-assert/blob/bba838e9ba9e28edf3127ce6974624208502f6bc/internal/util/comparisons.js#L449-L460 - function mapMightHaveLoosePrim(a, b, prim, item, opts, channel) { - var altValue = findLooseMatchingPrimitives(prim); - if (altValue != null) { - return altValue; - } - var curB = $mapGet(b, altValue); - var looseOpts = assign({}, opts, { strict: false }); - if ( - (typeof curB === 'undefined' && !$mapHas(b, altValue)) - // eslint-disable-next-line no-use-before-define - || !internalDeepEqual(item, curB, looseOpts, channel) - ) { - return false; - } - // eslint-disable-next-line no-use-before-define - return !$mapHas(a, altValue) && internalDeepEqual(item, curB, looseOpts, channel); - } - - // taken from https://github.com/browserify/commonjs-assert/blob/bba838e9ba9e28edf3127ce6974624208502f6bc/internal/util/comparisons.js#L441-L447 - function setMightHaveLoosePrim(a, b, prim) { - var altValue = findLooseMatchingPrimitives(prim); - if (altValue != null) { - return altValue; - } - - return $setHas(b, altValue) && !$setHas(a, altValue); - } - - // taken from https://github.com/browserify/commonjs-assert/blob/bba838e9ba9e28edf3127ce6974624208502f6bc/internal/util/comparisons.js#L518-L533 - function mapHasEqualEntry(set, map, key1, item1, opts, channel) { - var i = getIterator(set); - var result; - var key2; - while ((result = i.next()) && !result.done) { - key2 = result.value; - if ( - // eslint-disable-next-line no-use-before-define - internalDeepEqual(key1, key2, opts, channel) - // eslint-disable-next-line no-use-before-define - && internalDeepEqual(item1, $mapGet(map, key2), opts, channel) - ) { - $setDelete(set, key2); - return true; - } - } - - return false; - } - - function internalDeepEqual(actual, expected, options, channel) { - var opts = options || {}; - - // 7.1. All identical values are equivalent, as determined by ===. - if (opts.strict ? is(actual, expected) : actual === expected) { - return true; - } - - var actualBoxed = whichBoxedPrimitive(actual); - var expectedBoxed = whichBoxedPrimitive(expected); - if (actualBoxed !== expectedBoxed) { - return false; - } - - // 7.3. Other pairs that do not both pass typeof value == 'object', equivalence is determined by ==. - if (!actual || !expected || (typeof actual !== 'object' && typeof expected !== 'object')) { - return opts.strict ? is(actual, expected) : actual == expected; // eslint-disable-line eqeqeq - } - - /* - * 7.4. For all other Object pairs, including Array objects, equivalence is - * determined by having the same number of owned properties (as verified - * with Object.prototype.hasOwnProperty.call), the same set of keys - * (although not necessarily the same order), equivalent values for every - * corresponding key, and an identical 'prototype' property. Note: this - * accounts for both named and indexed properties on Arrays. - */ - // see https://github.com/nodejs/node/commit/d3aafd02efd3a403d646a3044adcf14e63a88d32 for memos/channel inspiration - - var hasActual = channel.has(actual); - var hasExpected = channel.has(expected); - var sentinel; - if (hasActual && hasExpected) { - if (channel.get(actual) === channel.get(expected)) { - return true; - } - } else { - sentinel = {}; - } - if (!hasActual) { channel.set(actual, sentinel); } - if (!hasExpected) { channel.set(expected, sentinel); } - - // eslint-disable-next-line no-use-before-define - return objEquiv(actual, expected, opts, channel); - } - - function isBuffer(x) { - if (!x || typeof x !== 'object' || typeof x.length !== 'number') { - return false; - } - if (typeof x.copy !== 'function' || typeof x.slice !== 'function') { - return false; - } - if (x.length > 0 && typeof x[0] !== 'number') { - return false; - } - - return !!(x.constructor && x.constructor.isBuffer && x.constructor.isBuffer(x)); - } - - function setEquiv(a, b, opts, channel) { - if ($setSize(a) !== $setSize(b)) { - return false; - } - var iA = getIterator(a); - var iB = getIterator(b); - var resultA; - var resultB; - var set; - while ((resultA = iA.next()) && !resultA.done) { - if (resultA.value && typeof resultA.value === 'object') { - if (!set) { set = new $Set(); } - $setAdd(set, resultA.value); - } else if (!$setHas(b, resultA.value)) { - if (opts.strict) { return false; } - if (!setMightHaveLoosePrim(a, b, resultA.value)) { - return false; - } - if (!set) { set = new $Set(); } - $setAdd(set, resultA.value); - } - } - if (set) { - while ((resultB = iB.next()) && !resultB.done) { - // We have to check if a primitive value is already matching and only if it's not, go hunting for it. - if (resultB.value && typeof resultB.value === 'object') { - if (!setHasEqualElement(set, resultB.value, opts.strict, channel)) { - return false; - } - } else if ( - !opts.strict - && !$setHas(a, resultB.value) - && !setHasEqualElement(set, resultB.value, opts.strict, channel) - ) { - return false; - } - } - return $setSize(set) === 0; - } - return true; - } - - function mapEquiv(a, b, opts, channel) { - if ($mapSize(a) !== $mapSize(b)) { - return false; - } - var iA = getIterator(a); - var iB = getIterator(b); - var resultA; - var resultB; - var set; - var key; - var item1; - var item2; - while ((resultA = iA.next()) && !resultA.done) { - key = resultA.value[0]; - item1 = resultA.value[1]; - if (key && typeof key === 'object') { - if (!set) { set = new $Set(); } - $setAdd(set, key); - } else { - item2 = $mapGet(b, key); - if ((typeof item2 === 'undefined' && !$mapHas(b, key)) || !internalDeepEqual(item1, item2, opts, channel)) { - if (opts.strict) { - return false; - } - if (!mapMightHaveLoosePrim(a, b, key, item1, opts, channel)) { - return false; - } - if (!set) { set = new $Set(); } - $setAdd(set, key); - } - } - } - - if (set) { - while ((resultB = iB.next()) && !resultB.done) { - key = resultB.value[0]; - item2 = resultB.value[1]; - if (key && typeof key === 'object') { - if (!mapHasEqualEntry(set, a, key, item2, opts, channel)) { - return false; - } - } else if ( - !opts.strict - && (!a.has(key) || !internalDeepEqual($mapGet(a, key), item2, opts, channel)) - && !mapHasEqualEntry(set, a, key, item2, assign({}, opts, { strict: false }), channel) - ) { - return false; - } - } - return $setSize(set) === 0; - } - return true; - } - - function objEquiv(a, b, opts, channel) { - /* eslint max-statements: [2, 100], max-lines-per-function: [2, 120], max-depth: [2, 5] */ - var i, key; - - if (typeof a !== typeof b) { return false; } - if (a == null || b == null) { return false; } - - if ($objToString(a) !== $objToString(b)) { return false; } - - if (isArguments(a) !== isArguments(b)) { return false; } - - var aIsArray = isArray(a); - var bIsArray = isArray(b); - if (aIsArray !== bIsArray) { return false; } - - // TODO: replace when a cross-realm brand check is available - var aIsError = a instanceof Error; - var bIsError = b instanceof Error; - if (aIsError !== bIsError) { return false; } - if (aIsError || bIsError) { - if (a.name !== b.name || a.message !== b.message) { return false; } - } - - var aIsRegex = isRegex(a); - var bIsRegex = isRegex(b); - if (aIsRegex !== bIsRegex) { return false; } - if ((aIsRegex || bIsRegex) && (a.source !== b.source || flags(a) !== flags(b))) { - return false; - } - - var aIsDate = isDate(a); - var bIsDate = isDate(b); - if (aIsDate !== bIsDate) { return false; } - if (aIsDate || bIsDate) { // && would work too, because both are true or both false here - if ($getTime(a) !== $getTime(b)) { return false; } - } - if (opts.strict && gPO && gPO(a) !== gPO(b)) { return false; } - - if (whichTypedArray(a) !== whichTypedArray(b)) { - return false; - } - - var aIsBuffer = isBuffer(a); - var bIsBuffer = isBuffer(b); - if (aIsBuffer !== bIsBuffer) { return false; } - if (aIsBuffer || bIsBuffer) { // && would work too, because both are true or both false here - if (a.length !== b.length) { return false; } - for (i = 0; i < a.length; i++) { - if (a[i] !== b[i]) { return false; } - } - return true; - } - - if (typeof a !== typeof b) { return false; } - - var ka = objectKeys(a); - var kb = objectKeys(b); - // having the same number of owned properties (keys incorporates hasOwnProperty) - if (ka.length !== kb.length) { return false; } - - // the same set of keys (although not necessarily the same order), - ka.sort(); - kb.sort(); - // ~~~cheap key test - for (i = ka.length - 1; i >= 0; i--) { - if (ka[i] != kb[i]) { return false; } // eslint-disable-line eqeqeq - } - - // equivalent values for every corresponding key, and ~~~possibly expensive deep test - for (i = ka.length - 1; i >= 0; i--) { - key = ka[i]; - if (!internalDeepEqual(a[key], b[key], opts, channel)) { return false; } - } - - var aCollection = whichCollection(a); - var bCollection = whichCollection(b); - if (aCollection !== bCollection) { - return false; - } - if (aCollection === 'Set' || bCollection === 'Set') { // aCollection === bCollection - return setEquiv(a, b, opts, channel); - } - if (aCollection === 'Map') { // aCollection === bCollection - return mapEquiv(a, b, opts, channel); - } - - return true; - } - - var deepEqual = function deepEqual(a, b, opts) { - return internalDeepEqual(a, b, opts, getSideChannel()); - }; - - var __importDefault = (commonjsGlobal && commonjsGlobal.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; - }; - Object.defineProperty(pathContext, "__esModule", { value: true }); - pathContext.emptyContext = pathContext.PathContext = pathContext.isPathContext = void 0; - const federation_internals_1$3 = dist$1; - const deep_equal_1 = __importDefault(deepEqual); - function isPathContext(v) { - return v instanceof PathContext; - } - pathContext.isPathContext = isPathContext; - function addExtractedDirective(operation, directiveName, addTo) { - const applied = operation.appliedDirectivesOf(directiveName); - if (applied.length > 0) { - (0, federation_internals_1$3.assert)(applied.length === 1, () => `${directiveName} shouldn't be repeated on ${operation}`); - const value = applied[0].arguments()['if']; - addTo.push([directiveName, value]); - } - } - class PathContext { - constructor(directives) { - this.directives = directives; - } - isEmpty() { - return this.directives.length === 0; - } - size() { - return this.directives.length; - } - withContextOf(operation) { - if (operation.appliedDirectives.length === 0) { - return this; - } - const newDirectives = []; - addExtractedDirective(operation, 'skip', newDirectives); - addExtractedDirective(operation, 'include', newDirectives); - return newDirectives.length === 0 - ? this - : new PathContext(newDirectives.concat(this.directives)); - } - equals(that) { - return (0, deep_equal_1.default)(this.directives, that.directives); - } - toString() { - return '[' + this.directives.map(([name, cond]) => `@${name}(if: ${cond})`).join(', ') + ']'; - } - } - pathContext.PathContext = PathContext; - pathContext.emptyContext = new PathContext([]); - - Object.defineProperty(pathTree, "__esModule", { value: true }); - pathTree.traversePathTree = pathTree.isRootPathTree = pathTree.PathTree = void 0; - const federation_internals_1$2 = dist$1; - const querygraph_1$2 = querygraph; - const pathContext_1 = pathContext; - function opTriggerEquality(t1, t2) { - if (t1 === t2) { - return true; - } - if ((0, pathContext_1.isPathContext)(t1)) { - return (0, pathContext_1.isPathContext)(t2) && t1.equals(t2); - } - if ((0, pathContext_1.isPathContext)(t2)) { - return false; - } - return t1.equals(t2); - } - function findTriggerIdx(triggerEquality, forIndex, trigger) { - for (let i = 0; i < forIndex.length; i++) { - if (triggerEquality(forIndex[i][0], trigger)) { - return i; - } - } - return -1; - } - class PathTree { - constructor(graph, vertex, triggerEquality, childs) { - this.graph = graph; - this.vertex = vertex; - this.triggerEquality = triggerEquality; - this.childs = childs; - } - static create(graph, root, triggerEquality) { - return new PathTree(graph, root, triggerEquality, []); - } - static createOp(graph, root) { - return this.create(graph, root, opTriggerEquality); - } - static createFromOpPaths(graph, root, paths) { - (0, federation_internals_1$2.assert)(paths.length > 0, `Should compute on empty paths`); - return this.createFromPaths(graph, opTriggerEquality, root, paths.map(p => p[Symbol.iterator]())); - } - static createFromPaths(graph, triggerEquality, currentVertex, paths) { - const maxEdges = graph.outEdges(currentVertex).length; - const forEdgeIndex = new Array(maxEdges + 1); - const newVertices = new Array(maxEdges); - const order = new Array(maxEdges + 1); - let currentOrder = 0; - let totalChilds = 0; - for (const path of paths) { - const iterResult = path.next(); - if (iterResult.done) { - continue; - } - const [edge, trigger, conditions] = iterResult.value; - const idx = edge ? edge.index : maxEdges; - if (edge) { - newVertices[idx] = edge.tail; - } - const forIndex = forEdgeIndex[idx]; - if (forIndex) { - const triggerIdx = findTriggerIdx(triggerEquality, forIndex, trigger); - if (triggerIdx < 0) { - forIndex.push([trigger, conditions, [path]]); - totalChilds++; - } - else { - const existing = forIndex[triggerIdx]; - const existingCond = existing[1]; - const mergedConditions = existingCond ? (conditions ? existingCond.mergeIfNotEqual(conditions) : existingCond) : conditions; - const newPaths = existing[2]; - newPaths.push(path); - forIndex[triggerIdx] = [trigger, mergedConditions, newPaths]; - } - } - else { - order[currentOrder++] = idx; - forEdgeIndex[idx] = [[trigger, conditions, [path]]]; - totalChilds++; - } - } - const childs = new Array(totalChilds); - let idx = 0; - for (let i = 0; i < currentOrder; i++) { - const edgeIndex = order[i]; - const index = (edgeIndex === maxEdges ? null : edgeIndex); - const newVertex = index === null ? currentVertex : newVertices[edgeIndex]; - const values = forEdgeIndex[edgeIndex]; - for (const [trigger, conditions, subPaths] of values) { - childs[idx++] = { - index, - trigger, - conditions, - tree: this.createFromPaths(graph, triggerEquality, newVertex, subPaths) - }; - } - } - (0, federation_internals_1$2.assert)(idx === totalChilds, () => `Expected to have ${totalChilds} childs but only ${idx} added`); - return new PathTree(graph, currentVertex, triggerEquality, childs); - } - static mergeAllOpTrees(graph, root, trees) { - return this.mergeAllTreesInternal(graph, opTriggerEquality, root, trees); - } - static mergeAllTreesInternal(graph, triggerEquality, currentVertex, trees) { - const maxEdges = graph.outEdges(currentVertex).length; - const forEdgeIndex = new Array(maxEdges + 1); - const newVertices = new Array(maxEdges); - const order = new Array(maxEdges + 1); - let currentOrder = 0; - let totalChilds = 0; - for (const tree of trees) { - for (const child of tree.childs) { - const idx = child.index === null ? maxEdges : child.index; - if (!newVertices[idx]) { - newVertices[idx] = child.tree.vertex; - } - const forIndex = forEdgeIndex[idx]; - if (forIndex) { - const triggerIdx = findTriggerIdx(triggerEquality, forIndex, child.trigger); - if (triggerIdx < 0) { - forIndex.push([child.trigger, child.conditions, [child.tree]]); - totalChilds++; - } - else { - const existing = forIndex[triggerIdx]; - const existingCond = existing[1]; - const mergedConditions = existingCond ? (child.conditions ? existingCond.mergeIfNotEqual(child.conditions) : existingCond) : child.conditions; - const newTrees = existing[2]; - newTrees.push(child.tree); - forIndex[triggerIdx] = [child.trigger, mergedConditions, newTrees]; - } - } - else { - order[currentOrder++] = idx; - forEdgeIndex[idx] = [[child.trigger, child.conditions, [child.tree]]]; - totalChilds++; - } - } - } - const childs = new Array(totalChilds); - let idx = 0; - for (let i = 0; i < currentOrder; i++) { - const edgeIndex = order[i]; - const index = (edgeIndex === maxEdges ? null : edgeIndex); - const newVertex = index === null ? currentVertex : newVertices[edgeIndex]; - const values = forEdgeIndex[edgeIndex]; - for (const [trigger, conditions, subTrees] of values) { - childs[idx++] = { - index, - trigger, - conditions, - tree: this.mergeAllTreesInternal(graph, triggerEquality, newVertex, subTrees) - }; - } - } - (0, federation_internals_1$2.assert)(idx === totalChilds, () => `Expected to have ${totalChilds} childs but only ${idx} added`); - return new PathTree(graph, currentVertex, triggerEquality, childs); - } - childCount() { - return this.childs.length; - } - isLeaf() { - return this.childCount() === 0; - } - *childElements(reverseOrder = false) { - if (reverseOrder) { - for (let i = this.childs.length - 1; i >= 0; i--) { - yield this.element(i); - } - } - else { - for (let i = 0; i < this.childs.length; i++) { - yield this.element(i); - } - } - } - element(i) { - const child = this.childs[i]; - return [ - (child.index === null ? null : this.graph.outEdge(this.vertex, child.index)), - child.trigger, - child.conditions, - child.tree - ]; - } - mergeChilds(c1, c2) { - const cond1 = c1.conditions; - const cond2 = c2.conditions; - return { - index: c1.index, - trigger: c1.trigger, - conditions: cond1 ? (cond2 ? cond1.mergeIfNotEqual(cond2) : cond1) : cond2, - tree: c1.tree.merge(c2.tree) - }; - } - mergeIfNotEqual(other) { - if (this.equalsSameRoot(other)) { - return this; - } - return this.merge(other); - } - merge(other) { - if (this === other) { - return this; - } - (0, federation_internals_1$2.assert)(other.graph === this.graph, 'Cannot merge path tree build on another graph'); - (0, federation_internals_1$2.assert)(other.vertex.index === this.vertex.index, () => `Cannot merge path tree rooted at vertex ${other.vertex} into tree rooted at other vertex ${this.vertex}`); - if (!other.childs.length) { - return this; - } - if (!this.childs.length) { - return other; - } - const mergeIndexes = new Array(other.childs.length); - let countToAdd = 0; - for (let i = 0; i < other.childs.length; i++) { - const otherChild = other.childs[i]; - const idx = this.findIndex(otherChild.trigger, otherChild.index); - mergeIndexes[i] = idx; - if (idx < 0) { - ++countToAdd; - } - } - const thisSize = this.childs.length; - const newSize = thisSize + countToAdd; - const newChilds = (0, federation_internals_1$2.copyWitNewLength)(this.childs, newSize); - let addIdx = thisSize; - for (let i = 0; i < other.childs.length; i++) { - const idx = mergeIndexes[i]; - if (idx < 0) { - newChilds[addIdx++] = other.childs[i]; - } - else { - newChilds[idx] = this.mergeChilds(newChilds[idx], other.childs[i]); - } - } - (0, federation_internals_1$2.assert)(addIdx === newSize, () => `Expected ${newSize} childs but only got ${addIdx}`); - return new PathTree(this.graph, this.vertex, this.triggerEquality, newChilds); - } - equalsSameRoot(that) { - if (this === that) { - return true; - } - return (0, federation_internals_1$2.arrayEquals)(this.childs, that.childs, (c1, c2) => { - return c1.index === c2.index - && c1.trigger === c2.trigger - && (c1.conditions ? (c2.conditions ? c1.conditions.equalsSameRoot(c2.conditions) : false) : !c2.conditions) - && c1.tree.equalsSameRoot(c2.tree); - }); - } - concat(other) { - (0, federation_internals_1$2.assert)(other.graph === this.graph, 'Cannot concat path tree build on another graph'); - (0, federation_internals_1$2.assert)(other.vertex.index === this.vertex.index, () => `Cannot concat path tree rooted at vertex ${other.vertex} into tree rooted at other vertex ${this.vertex}`); - if (!other.childs.length) { - return this; - } - if (!this.childs.length) { - return other; - } - const newChilds = this.childs.concat(other.childs); - return new PathTree(this.graph, this.vertex, this.triggerEquality, newChilds); - } - mergePath(path) { - (0, federation_internals_1$2.assert)(path.graph === this.graph, 'Cannot merge path build on another graph'); - (0, federation_internals_1$2.assert)(path.root.index === this.vertex.index, () => `Cannot merge path rooted at vertex ${path.root} into tree rooted at other vertex ${this.vertex}`); - return this.mergePathInternal(path[Symbol.iterator]()); - } - childsFromPathElements(currentVertex, elements) { - const iterResult = elements.next(); - if (iterResult.done) { - return []; - } - const [edge, trigger, conditions] = iterResult.value; - const edgeIndex = (edge ? edge.index : null); - currentVertex = edge ? edge.tail : currentVertex; - return [{ - index: edgeIndex, - trigger: trigger, - conditions: conditions, - tree: new PathTree(this.graph, currentVertex, this.triggerEquality, this.childsFromPathElements(currentVertex, elements)) - }]; - } - mergePathInternal(elements) { - const iterResult = elements.next(); - if (iterResult.done) { - return this; - } - const [edge, trigger, conditions] = iterResult.value; - (0, federation_internals_1$2.assert)(!edge || edge.head.index === this.vertex.index, () => `Next element head of ${edge} is not equal to current tree vertex ${this.vertex}`); - const edgeIndex = (edge ? edge.index : null); - const idx = this.findIndex(trigger, edgeIndex); - if (idx < 0) { - const currentVertex = edge ? edge.tail : this.vertex; - return new PathTree(this.graph, this.vertex, this.triggerEquality, this.childs.concat({ - index: edgeIndex, - trigger: trigger, - conditions: conditions, - tree: new PathTree(this.graph, currentVertex, this.triggerEquality, this.childsFromPathElements(currentVertex, elements)) - })); - } - else { - const newChilds = this.childs.concat(); - const existing = newChilds[idx]; - newChilds[idx] = { - index: existing.index, - trigger: existing.trigger, - conditions: conditions ? (existing.conditions ? existing.conditions.merge(conditions) : conditions) : existing.conditions, - tree: existing.tree.mergePathInternal(elements) - }; - return new PathTree(this.graph, this.vertex, this.triggerEquality, newChilds); - } - } - findIndex(trigger, edgeIndex) { - for (let i = 0; i < this.childs.length; i++) { - const child = this.childs[i]; - if (child.index === edgeIndex && this.triggerEquality(child.trigger, trigger)) { - return i; - } - } - return -1; - } - isAllInSameSubgraph() { - return this.isAllInSameSubgraphInternal(this.vertex.source); - } - isAllInSameSubgraphInternal(target) { - return this.vertex.source === target - && this.childs.every(c => c.tree.isAllInSameSubgraphInternal(target)); - } - toString(indent = "", includeConditions = false) { - return this.toStringInternal(indent, includeConditions); - } - toStringInternal(indent, includeConditions) { - if (this.isLeaf()) { - return this.vertex.toString(); - } - return this.vertex + ':\n' + - this.childs.map(child => indent - + ` -> [${child.index}] ` - + (includeConditions && child.conditions ? `!! {\n${indent + " "}${child.conditions.toString(indent + " ", true)}\n${indent} } ` : "") - + `${child.trigger} = ` - + child.tree.toStringInternal(indent + " ", includeConditions)).join('\n'); - } - } - pathTree.PathTree = PathTree; - function isRootPathTree(tree) { - return (0, querygraph_1$2.isRootVertex)(tree.vertex); - } - pathTree.isRootPathTree = isRootPathTree; - function traversePathTree(pathTree, onEdges) { - for (const [edge, _, conditions, childTree] of pathTree.childElements()) { - if (edge) { - onEdges(edge); - } - if (conditions) { - traversePathTree(conditions, onEdges); - } - traversePathTree(childTree, onEdges); - } - } - pathTree.traversePathTree = traversePathTree; - - (function (exports) { - Object.defineProperty(exports, "__esModule", { value: true }); - exports.advanceSimultaneousPathsWithOperation = exports.advanceOptionsToString = exports.simultaneousPathsToString = exports.SimultaneousPathsWithLazyIndirectPaths = exports.getLocallySatisfiableKey = exports.addConditionExclusion = exports.sameExcludedEdges = exports.advancePathWithTransition = exports.isUnadvanceable = exports.Unadvanceables = exports.UnadvanceableReason = exports.unsatisfiedConditionsResolution = exports.noConditionsResolution = exports.UnsatisfiedConditionReason = exports.traversePath = exports.terminateWithNonRequestedTypenameField = exports.isRootPath = exports.GraphPath = void 0; - const federation_internals_1 = dist$1; - const pathTree_1 = pathTree; - const querygraph_1 = querygraph; - const pathContext_1 = pathContext; - const debug = (0, federation_internals_1.newDebugLogger)('path'); - function updateRuntimeTypes(currentRuntimeTypes, edge) { - var _a; - if (!edge) { - return currentRuntimeTypes; - } - switch (edge.transition.kind) { - case 'FieldCollection': - const field = edge.transition.definition; - if (!(0, federation_internals_1.isCompositeType)((0, federation_internals_1.baseType)(field.type))) { - return []; - } - const newRuntimeTypes = []; - for (const parentType of currentRuntimeTypes) { - const fieldType = (_a = parentType.field(field.name)) === null || _a === void 0 ? void 0 : _a.type; - if (fieldType) { - for (const type of (0, federation_internals_1.possibleRuntimeTypes)((0, federation_internals_1.baseType)(fieldType))) { - if (!newRuntimeTypes.includes(type)) { - newRuntimeTypes.push(type); - } - } - } - } - return newRuntimeTypes; - case 'DownCast': - const castedType = edge.transition.castedType; - const castedRuntimeTypes = (0, federation_internals_1.possibleRuntimeTypes)(castedType); - return currentRuntimeTypes.filter(t => castedRuntimeTypes.includes(t)); - case 'KeyResolution': - const currentType = edge.tail.type; - return (0, federation_internals_1.possibleRuntimeTypes)(currentType); - case 'RootTypeResolution': - case 'SubgraphEnteringTransition': - (0, federation_internals_1.assert)((0, federation_internals_1.isObjectType)(edge.tail.type), () => `Query edge should be between object type but got ${edge}`); - return [edge.tail.type]; - } - } - function withReplacedLastElement(arr, newLast) { - (0, federation_internals_1.assert)(arr.length > 0, 'Should not have been called on empty array'); - const newArr = new Array(arr.length); - for (let i = 0; i < arr.length - 1; i++) { - newArr[i] = arr[i]; - } - newArr[arr.length - 1] = newLast; - return newArr; - } - class GraphPath { - constructor(graph, root, tail, edgeTriggers, edgeIndexes, edgeConditions, subgraphEnteringEdgeIndex, subgraphEnteringEdge, subgraphEnteringEdgeCost, edgeToTail, runtimeTypesOfTail, runtimeTypesBeforeTailIfLastIsCast) { - this.graph = graph; - this.root = root; - this.tail = tail; - this.edgeTriggers = edgeTriggers; - this.edgeIndexes = edgeIndexes; - this.edgeConditions = edgeConditions; - this.subgraphEnteringEdgeIndex = subgraphEnteringEdgeIndex; - this.subgraphEnteringEdge = subgraphEnteringEdge; - this.subgraphEnteringEdgeCost = subgraphEnteringEdgeCost; - this.edgeToTail = edgeToTail; - this.runtimeTypesOfTail = runtimeTypesOfTail; - this.runtimeTypesBeforeTailIfLastIsCast = runtimeTypesBeforeTailIfLastIsCast; - } - static create(graph, root) { - const runtimeTypes = (0, querygraph_1.isFederatedGraphRootType)(root.type) ? [] : (0, federation_internals_1.possibleRuntimeTypes)(root.type); - return new GraphPath(graph, root, root, [], [], [], -1, undefined, -1, undefined, runtimeTypes); - } - static fromGraphRoot(graph, rootKind) { - const root = graph.root(rootKind); - return root ? this.create(graph, root) : undefined; - } - get size() { - return this.edgeIndexes.length; - } - subgraphJumps() { - let jumps = 0; - let v = this.root; - for (let i = 0; i < this.size; i++) { - const edge = this.edgeAt(i, v); - if (!edge) { - continue; - } - if (edge.transition.kind === 'KeyResolution' || edge.transition.kind === 'RootTypeResolution') { - ++jumps; - } - v = edge.tail; - } - return jumps; - } - [Symbol.iterator]() { - const path = this; - return { - currentIndex: 0, - currentVertex: this.root, - next() { - if (this.currentIndex >= path.size) { - return { done: true, value: undefined }; - } - const idx = this.currentIndex++; - const edge = path.edgeAt(idx, this.currentVertex); - if (edge) { - this.currentVertex = edge.tail; - } - return { done: false, value: [edge, path.edgeTriggers[idx], path.edgeConditions[idx]] }; - } - }; - } - lastEdge() { - return this.edgeToTail; - } - lastTrigger() { - return this.edgeTriggers[this.size - 1]; - } - tailPossibleRuntimeTypes() { - return this.runtimeTypesOfTail; - } - add(trigger, edge, conditionsResolution) { - var _a, _b, _c; - (0, federation_internals_1.assert)(!edge || this.tail.index === edge.head.index, () => `Cannot add edge ${edge} to path ending at ${this.tail}`); - (0, federation_internals_1.assert)(conditionsResolution.satisfied, 'Should add to a path if the conditions cannot be satisfied'); - (0, federation_internals_1.assert)(!edge || edge.conditions || !conditionsResolution.pathTree, () => `Shouldn't have conditions paths (got ${conditionsResolution.pathTree}) for edge without conditions (edge: ${edge})`); - if (edge && edge.transition.kind === 'DownCast' && this.edgeToTail) { - const previousOperation = this.lastTrigger(); - if (previousOperation instanceof federation_internals_1.FragmentElement && previousOperation.appliedDirectives.length === 0) { - const runtimeTypesWithoutPreviousCast = updateRuntimeTypes(this.runtimeTypesBeforeTailIfLastIsCast, edge); - if (runtimeTypesWithoutPreviousCast.length > 0 - && runtimeTypesWithoutPreviousCast.every(t => this.runtimeTypesOfTail.includes(t))) { - const updatedEdge = this.graph.outEdges(this.edgeToTail.head).find(e => e.tail.type === edge.tail.type); - if (updatedEdge) { - debug.log(() => `Previous cast ${previousOperation} is made obsolete by new cast ${trigger}, removing from path.`); - return new GraphPath(this.graph, this.root, updatedEdge.tail, withReplacedLastElement(this.edgeTriggers, trigger), withReplacedLastElement(this.edgeIndexes, updatedEdge.index), withReplacedLastElement(this.edgeConditions, (_a = conditionsResolution.pathTree) !== null && _a !== void 0 ? _a : null), this.subgraphEnteringEdgeIndex, this.subgraphEnteringEdge, this.subgraphEnteringEdgeCost, updatedEdge, runtimeTypesWithoutPreviousCast, this.runtimeTypesBeforeTailIfLastIsCast); - } - } - } - } - let subgraphEnteringEdgeIndex = this.subgraphEnteringEdgeIndex; - let subgraphEnteringEdge = this.subgraphEnteringEdge; - let subgraphEnteringEdgeCost = this.subgraphEnteringEdgeCost; - if (edge && edge.transition.kind === 'KeyResolution') { - subgraphEnteringEdgeIndex = this.size; - subgraphEnteringEdge = edge; - subgraphEnteringEdgeCost = conditionsResolution.cost; - } - return new GraphPath(this.graph, this.root, edge ? edge.tail : this.tail, this.edgeTriggers.concat(trigger), this.edgeIndexes.concat((edge ? edge.index : null)), this.edgeConditions.concat((_b = conditionsResolution.pathTree) !== null && _b !== void 0 ? _b : null), subgraphEnteringEdgeIndex, subgraphEnteringEdge, subgraphEnteringEdgeCost, edge, updateRuntimeTypes(this.runtimeTypesOfTail, edge), ((_c = edge === null || edge === void 0 ? void 0 : edge.transition) === null || _c === void 0 ? void 0 : _c.kind) === 'DownCast' ? this.runtimeTypesOfTail : undefined); - } - concat(tailPath) { - var _a, _b; - (0, federation_internals_1.assert)(this.tail.index === tailPath.root.index, () => `Cannot concat ${tailPath} after ${this}`); - if (tailPath.size === 0) { - return this; - } - let prevRuntimeTypes = this.runtimeTypesBeforeTailIfLastIsCast; - let runtimeTypes = this.runtimeTypesOfTail; - for (const [edge] of tailPath) { - prevRuntimeTypes = runtimeTypes; - runtimeTypes = updateRuntimeTypes(runtimeTypes, edge); - } - return new GraphPath(this.graph, this.root, tailPath.tail, this.edgeTriggers.concat(tailPath.edgeTriggers), this.edgeIndexes.concat(tailPath.edgeIndexes), this.edgeConditions.concat(tailPath.edgeConditions), tailPath.subgraphEnteringEdge ? tailPath.subgraphEnteringEdgeIndex : this.subgraphEnteringEdgeIndex, tailPath.subgraphEnteringEdge ? tailPath.subgraphEnteringEdge : this.subgraphEnteringEdge, tailPath.subgraphEnteringEdge ? tailPath.subgraphEnteringEdgeCost : this.subgraphEnteringEdgeCost, tailPath.edgeToTail, runtimeTypes, ((_b = (_a = tailPath.edgeToTail) === null || _a === void 0 ? void 0 : _a.transition) === null || _b === void 0 ? void 0 : _b.kind) === 'DownCast' ? prevRuntimeTypes : undefined); - } - checkDirectPathFomPreviousSubgraphTo(typeName, triggerToEdge) { - if (this.subgraphEnteringEdgeIndex < 0) { - return undefined; - } - (0, federation_internals_1.assert)(this.subgraphEnteringEdge, 'Should have an entering edge since the index is >= 0'); - let prevSubgraphVertex = this.subgraphEnteringEdge.head; - for (let i = this.subgraphEnteringEdgeIndex + 1; i < this.size; i++) { - const triggerToMatch = this.edgeTriggers[i]; - const prevSubgraphMatchingEdge = triggerToEdge(this.graph, prevSubgraphVertex, triggerToMatch); - if (prevSubgraphMatchingEdge === null) { - continue; - } - if (!prevSubgraphMatchingEdge || prevSubgraphMatchingEdge.conditions) { - return undefined; - } - prevSubgraphVertex = prevSubgraphMatchingEdge.tail; - } - return prevSubgraphVertex.type.name === typeName ? prevSubgraphVertex : undefined; - } - nextEdges() { - return this.graph.outEdges(this.tail); - } - isTerminal() { - return this.graph.isTerminal(this.tail); - } - isRootPath() { - return (0, querygraph_1.isRootVertex)(this.root); - } - mapMainPath(mapper) { - const result = new Array(this.size); - let v = this.root; - for (let i = 0; i < this.size; i++) { - const edge = this.edgeAt(i, v); - result[i] = mapper(edge, i); - if (edge) { - v = edge.tail; - } - } - return result; - } - edgeAt(index, v) { - const edgeIdx = this.edgeIndexes[index]; - return (edgeIdx !== null ? this.graph.outEdge(v, edgeIdx) : null); - } - reduceMainPath(reducer, initialValue) { - let value = initialValue; - let v = this.root; - for (let i = 0; i < this.size; i++) { - const edge = this.edgeAt(i, v); - value = reducer(value, edge, i); - if (edge) { - v = edge.tail; - } - } - return value; - } - hasJustCycled() { - if (this.root.index == this.tail.index) { - return true; - } - let v = this.root; - for (let i = 0; i < this.size - 1; i++) { - const edge = this.edgeAt(i, v); - if (!edge) { - continue; - } - v = edge.tail; - if (v.index == this.tail.index) { - return true; - } - } - return false; - } - hasAnyEdgeConditions() { - return this.edgeConditions.some(c => c !== null); - } - isOnTopLevelQueryRoot() { - if (!(0, querygraph_1.isRootVertex)(this.root)) { - return false; - } - let vertex = this.root; - for (let i = 0; i < this.size; i++) { - const edge = this.edgeAt(i, vertex); - if (!edge) { - continue; - } - if (edge.transition.kind === 'FieldCollection' || edge.tail.type.name !== "Query") { - return false; - } - vertex = edge.tail; - } - return true; - } - truncateTrailingDowncasts() { - let lastNonDowncastIdx = -1; - let v = this.root; - let lastNonDowncastVertex = v; - let lastNonDowncastEdge; - let runtimeTypes = (0, querygraph_1.isFederatedGraphRootType)(this.root.type) ? [] : (0, federation_internals_1.possibleRuntimeTypes)(this.root.type); - let runtimeTypesAtLastNonDowncastEdge = runtimeTypes; - for (let i = 0; i < this.size; i++) { - const edge = this.edgeAt(i, v); - runtimeTypes = updateRuntimeTypes(runtimeTypes, edge); - if (edge) { - v = edge.tail; - if (edge.transition.kind !== 'DownCast') { - lastNonDowncastIdx = i; - lastNonDowncastVertex = v; - lastNonDowncastEdge = edge; - runtimeTypesAtLastNonDowncastEdge = runtimeTypes; - } - } - } - if (lastNonDowncastIdx < 0 || lastNonDowncastIdx === this.size - 1) { - return this; - } - const newSize = lastNonDowncastIdx + 1; - return new GraphPath(this.graph, this.root, lastNonDowncastVertex, this.edgeTriggers.slice(0, newSize), this.edgeIndexes.slice(0, newSize), this.edgeConditions.slice(0, newSize), this.subgraphEnteringEdgeIndex, this.subgraphEnteringEdge, this.subgraphEnteringEdgeCost, lastNonDowncastEdge, runtimeTypesAtLastNonDowncastEdge); - } - toString() { - const isRoot = (0, querygraph_1.isRootVertex)(this.root); - if (isRoot && this.size === 0) { - return '_'; - } - const pathStr = this.mapMainPath((edge, idx) => { - if (edge) { - if (isRoot && idx == 0) { - return edge.tail.toString(); - } - const label = edge.label(); - return ` -${label === "" ? "" : '-[' + label + ']-'}-> ${edge.tail}`; - } - return ` (${this.edgeTriggers[idx]}) `; - }).join(''); - return `${isRoot ? '' : this.root}${pathStr} (types: [${this.runtimeTypesOfTail.join(', ')}])`; - } - } - exports.GraphPath = GraphPath; - function isRootPath(path) { - return (0, querygraph_1.isRootVertex)(path.root); - } - exports.isRootPath = isRootPath; - function terminateWithNonRequestedTypenameField(path) { - path = path.truncateTrailingDowncasts(); - if (!(0, federation_internals_1.isCompositeType)(path.tail.type)) { - return path; - } - const typenameField = new federation_internals_1.Field(path.tail.type.typenameField()); - const edge = edgeForField(path.graph, path.tail, typenameField); - (0, federation_internals_1.assert)(edge, () => `We should have an edge from ${path.tail} for ${typenameField}`); - return path.add(typenameField, edge, exports.noConditionsResolution); - } - exports.terminateWithNonRequestedTypenameField = terminateWithNonRequestedTypenameField; - function traversePath(path, onEdges) { - for (const [edge, _, conditions] of path) { - if (conditions) { - (0, pathTree_1.traversePathTree)(conditions, onEdges); - } - onEdges(edge); - } - } - exports.traversePath = traversePath; - var UnsatisfiedConditionReason; - (function (UnsatisfiedConditionReason) { - UnsatisfiedConditionReason[UnsatisfiedConditionReason["NO_POST_REQUIRE_KEY"] = 0] = "NO_POST_REQUIRE_KEY"; - })(UnsatisfiedConditionReason = exports.UnsatisfiedConditionReason || (exports.UnsatisfiedConditionReason = {})); - exports.noConditionsResolution = { satisfied: true, cost: 0 }; - exports.unsatisfiedConditionsResolution = { satisfied: false, cost: -1 }; - var UnadvanceableReason; - (function (UnadvanceableReason) { - UnadvanceableReason[UnadvanceableReason["UNSATISFIABLE_KEY_CONDITION"] = 0] = "UNSATISFIABLE_KEY_CONDITION"; - UnadvanceableReason[UnadvanceableReason["UNSATISFIABLE_REQUIRES_CONDITION"] = 1] = "UNSATISFIABLE_REQUIRES_CONDITION"; - UnadvanceableReason[UnadvanceableReason["NO_MATCHING_TRANSITION"] = 2] = "NO_MATCHING_TRANSITION"; - UnadvanceableReason[UnadvanceableReason["UNREACHABLE_TYPE"] = 3] = "UNREACHABLE_TYPE"; - UnadvanceableReason[UnadvanceableReason["IGNORED_INDIRECT_PATH"] = 4] = "IGNORED_INDIRECT_PATH"; - })(UnadvanceableReason = exports.UnadvanceableReason || (exports.UnadvanceableReason = {})); - class Unadvanceables { - constructor(reasons) { - this.reasons = reasons; - } - } - exports.Unadvanceables = Unadvanceables; - function isUnadvanceable(result) { - return result instanceof Unadvanceables; - } - exports.isUnadvanceable = isUnadvanceable; - function createPathTransitionToEdgeFct(supergraph) { - return (graph, vertex, transition) => { - for (const edge of graph.outEdges(vertex)) { - if (transition.collectOperationElements && edge.matchesSupergraphTransition(supergraph, transition)) { - return edge; - } - } - return undefined; - }; - } - function advancePathWithTransition(supergraph, subgraphPath, transition, targetType, conditionResolver) { - if (transition.kind === 'DownCast') { - const supergraphRuntimeTypes = (0, federation_internals_1.possibleRuntimeTypes)(targetType); - const subgraphRuntimeTypes = subgraphPath.tailPossibleRuntimeTypes(); - const intersection = supergraphRuntimeTypes.filter(t1 => subgraphRuntimeTypes.some(t2 => t1.name === t2.name)).map(t => t.name); - if (intersection.length === 0) { - debug.log(() => `No intersection between casted type ${targetType} and the possible types in this subgraph`); - return []; - } - } - debug.group(() => `Trying to advance ${subgraphPath} for ${transition}`); - debug.group('Direct options:'); - const directOptions = advancePathWithDirectTransition(supergraph, subgraphPath, transition, conditionResolver); - let options; - const deadEnds = []; - if (isUnadvanceable(directOptions)) { - options = []; - debug.groupEnd(() => 'No direct options'); - deadEnds.push(...directOptions.reasons); - } - else { - debug.groupEnd(() => advanceOptionsToString(directOptions)); - if (directOptions.length > 0 && (0, federation_internals_1.isLeafType)(targetType)) { - debug.groupEnd(() => `reached leaf type ${targetType} so not trying indirect paths`); - return directOptions; - } - options = directOptions; - } - debug.group(`Computing indirect paths:`); - const pathTransitionToEdge = createPathTransitionToEdgeFct(supergraph); - const pathsWithNonCollecting = advancePathWithNonCollectingAndTypePreservingTransitions(subgraphPath, pathContext_1.emptyContext, conditionResolver, [], [], t => t, pathTransitionToEdge); - if (pathsWithNonCollecting.paths.length > 0) { - debug.groupEnd(() => `${pathsWithNonCollecting.paths.length} indirect paths`); - debug.group('Validating indirect options:'); - for (const nonCollectingPath of pathsWithNonCollecting.paths) { - debug.group(() => `For indirect path ${nonCollectingPath}:`); - const pathsWithTransition = advancePathWithDirectTransition(supergraph, nonCollectingPath, transition, conditionResolver); - if (isUnadvanceable(pathsWithTransition)) { - debug.groupEnd(() => `Cannot be advanced with ${transition}`); - deadEnds.push(...pathsWithTransition.reasons); - } - else { - debug.groupEnd(() => `Adding valid option: ${pathsWithTransition}`); - options = options.concat(pathsWithTransition); - } - } - debug.groupEnd(); - } - else { - debug.groupEnd('no indirect paths'); - } - debug.groupEnd(() => options.length > 0 ? advanceOptionsToString(options) : `Cannot advance ${transition} for this path`); - if (options.length > 0) { - return options; - } - const allDeadEnds = deadEnds.concat(pathsWithNonCollecting.deadEnds.reasons); - if (transition.kind === 'FieldCollection') { - const typeName = transition.definition.parent.name; - const fieldName = transition.definition.name; - const subgraphsWithDeadEnd = new Set(allDeadEnds.map(e => e.destSubgraph)); - for (const [subgraph, schema] of subgraphPath.graph.sources.entries()) { - if (subgraphsWithDeadEnd.has(subgraph)) { - continue; - } - const type = schema.type(typeName); - if (type && (0, federation_internals_1.isCompositeType)(type) && type.field(fieldName)) { - (0, federation_internals_1.assert)(!type.hasAppliedDirective(federation_internals_1.keyDirectiveName), () => `Expected type ${type} in ${subgraph} to not have keys`); - allDeadEnds.push({ - sourceSubgraph: subgraphPath.tail.source, - destSubgraph: subgraph, - reason: UnadvanceableReason.UNREACHABLE_TYPE, - details: `cannot move to subgraph "${subgraph}", which has field "${transition.definition.coordinate}", because type "${typeName}" has no @key defined in subgraph "${subgraph}"` - }); - } - } - } - return new Unadvanceables(allDeadEnds); - } - exports.advancePathWithTransition = advancePathWithTransition; - function isEdgeExcluded(edge, excluded) { - return excluded.some(([vIdx, eIdx]) => edge.head.index === vIdx && edge.index === eIdx); - } - function sameExcludedEdges(ex1, ex2) { - if (ex1 === ex2) { - return true; - } - if (ex1.length !== ex2.length) { - return false; - } - for (let i = 0; i < ex1.length; ++i) { - if (ex1[i][0] !== ex2[i][0] || ex1[i][1] !== ex2[i][1]) { - return false; - } - } - return true; - } - exports.sameExcludedEdges = sameExcludedEdges; - function addEdgeExclusion(excluded, newExclusion) { - return excluded.concat([[newExclusion.head.index, newExclusion.index]]); - } - function isConditionExcluded(condition, excluded) { - if (!condition) { - return false; - } - return excluded.find(e => condition.equals(e)) !== undefined; - } - function addConditionExclusion(excluded, newExclusion) { - return newExclusion ? excluded.concat(newExclusion) : excluded; - } - exports.addConditionExclusion = addConditionExclusion; - function popMin(paths) { - let minIdx = 0; - let minSize = paths[0].size; - for (let i = 1; i < paths.length; i++) { - if (paths[i].size < minSize) { - minSize = paths[i].size; - minIdx = i; - } - } - const min = paths[minIdx]; - paths.splice(minIdx, 1); - return min; - } - function advancePathWithNonCollectingAndTypePreservingTransitions(path, context, conditionResolver, excludedEdges, excludedConditions, convertTransitionWithCondition, triggerToEdge) { - var _a, _b; - const isTopLevelPath = path.isOnTopLevelQueryRoot(); - const typeName = (0, querygraph_1.isFederatedGraphRootType)(path.tail.type) ? undefined : path.tail.type.name; - const originalSource = path.tail.source; - const bestPathBySource = new Map(); - const deadEnds = []; - const toTry = [path]; - while (toTry.length > 0) { - const toAdvance = popMin(toTry); - const nextEdges = toAdvance.nextEdges().filter(e => !e.transition.collectOperationElements); - if (nextEdges.length === 0) { - debug.log(`Nothing to try for ${toAdvance}: it has no non-collecting outbound edges`); - continue; - } - debug.group(() => `From ${toAdvance}:`); - for (const edge of nextEdges) { - debug.group(() => `Testing edge ${edge}`); - if (isEdgeExcluded(edge, excludedEdges)) { - debug.groupEnd(`Ignored: edge is excluded`); - continue; - } - excludedEdges = addEdgeExclusion(excludedEdges, edge); - if (isConditionExcluded(edge.conditions, excludedConditions)) { - debug.groupEnd(`Ignored: edge condition is excluded`); - continue; - } - const target = edge.tail; - if (target.source === originalSource) { - debug.groupEnd('Ignored: edge get us back to our original source'); - continue; - } - if (typeName && typeName != target.type.name) { - debug.groupEnd('Ignored: edge does not get to our target type'); - continue; - } - if (isTopLevelPath && edge.transition.kind === 'RootTypeResolution') { - debug.groupEnd(`Ignored: edge is a top-level "RootTypeResolution"`); - continue; - } - const prevForSource = bestPathBySource.get(target.source); - if (prevForSource === null) { - debug.groupEnd(() => `Ignored: we've shown before than going to ${target.source} is not productive`); - continue; - } - if (prevForSource - && (prevForSource[0].size < toAdvance.size + 1 - || (prevForSource[0].size == toAdvance.size + 1 && prevForSource[1] <= 1))) { - debug.groupEnd(`Ignored: a better path to the same subgraph already added`); - continue; - } - debug.group(() => `Validating conditions ${edge.conditions}`); - const conditionResolution = canSatisfyConditions(toAdvance, edge, conditionResolver, context, excludedEdges, excludedConditions); - if (conditionResolution.satisfied) { - debug.groupEnd('Condition satisfied'); - if (prevForSource && prevForSource[0].size === toAdvance.size + 1 && prevForSource[1] <= conditionResolution.cost) { - debug.groupEnd('Ignored: a better path to the same subgraph already added'); - continue; - } - const subgraphEnteringEdge = toAdvance.subgraphEnteringEdge; - if (subgraphEnteringEdge && edge.transition.kind === 'KeyResolution' && subgraphEnteringEdge.tail.type.name !== typeName) { - const prevSubgraphVertex = toAdvance.checkDirectPathFomPreviousSubgraphTo(edge.tail.type.name, triggerToEdge); - const backToPreviousSubgraph = subgraphEnteringEdge.head.source === edge.tail.source; - const maxCost = toAdvance.subgraphEnteringEdgeCost + (backToPreviousSubgraph ? 0 : conditionResolution.cost); - if (prevSubgraphVertex - && (backToPreviousSubgraph - || hasValidDirectKeyEdge(toAdvance.graph, prevSubgraphVertex, edge.tail.source, conditionResolver, maxCost) != undefined)) { - debug.groupEnd(() => `Ignored: edge correspond to a detour by subgraph ${edge.head.source} from subgraph ${subgraphEnteringEdge.head.source}: ` - + `we have a direct path from ${subgraphEnteringEdge.head.type} to ${edge.tail.type} in ${subgraphEnteringEdge.head.source}` - + (backToPreviousSubgraph ? '.' : ` and can move to ${edge.tail.source} from there`)); - bestPathBySource.set(edge.tail.source, null); - deadEnds.push({ - sourceSubgraph: toAdvance.tail.source, - destSubgraph: edge.tail.source, - reason: UnadvanceableReason.IGNORED_INDIRECT_PATH, - details: `ignoring moving to subgraph "${edge.tail.source}" using @key(fields: "${(_a = edge.conditions) === null || _a === void 0 ? void 0 : _a.toString(true, false)}") of "${edge.head.type}" because there is a more direct path in ${edge.tail.source} that avoids ${toAdvance.tail.source} altogether."` - }); - continue; - } - } - const updatedPath = toAdvance.add(convertTransitionWithCondition(edge.transition, context), edge, conditionResolution); - debug.log(() => `Using edge, advance path: ${updatedPath}`); - bestPathBySource.set(target.source, [updatedPath, conditionResolution.cost]); - if (edge.transition.kind === 'KeyResolution') { - toTry.push(updatedPath); - } - } - else { - debug.groupEnd('Condition unsatisfiable'); - deadEnds.push({ - sourceSubgraph: toAdvance.tail.source, - destSubgraph: edge.tail.source, - reason: UnadvanceableReason.UNSATISFIABLE_KEY_CONDITION, - details: `cannot move to subgraph "${edge.tail.source}" using @key(fields: "${(_b = edge.conditions) === null || _b === void 0 ? void 0 : _b.toString(true, false)}") of "${edge.head.type}", the key field(s) cannot be resolved from subgraph "${toAdvance.tail.source}"` - }); - } - debug.groupEnd(); - } - debug.groupEnd(); - } - return { - paths: (0, federation_internals_1.mapValues)(bestPathBySource).filter(p => p !== null).map(b => b[0]), - deadEnds: new Unadvanceables(deadEnds) - }; - } - function hasValidDirectKeyEdge(graph, from, to, conditionResolver, maxCost) { - for (const edge of graph.outEdges(from)) { - if (edge.transition.kind !== 'KeyResolution' || edge.tail.source !== to) { - continue; - } - const resolution = conditionResolver(edge, pathContext_1.emptyContext, [], []); - if (!resolution.satisfied) { - continue; - } - if (resolution.cost <= maxCost) { - return true; - } - } - return false; - } - function advancePathWithDirectTransition(supergraph, path, transition, conditionResolver) { - const options = []; - const deadEnds = []; - for (const edge of path.nextEdges()) { - if (!transition.collectOperationElements || !edge.matchesSupergraphTransition(supergraph, transition)) { - continue; - } - const conditionResolution = canSatisfyConditions(path, edge, conditionResolver, pathContext_1.emptyContext, [], []); - if (conditionResolution.satisfied) { - options.push(path.add(transition, edge, conditionResolution)); - } - else { - (0, federation_internals_1.assert)(transition.kind === 'FieldCollection', () => `Shouldn't have conditions on direct transition ${transition}`); - const field = transition.definition; - const parentTypeInSubgraph = path.graph.sources.get(edge.head.source).type(field.parent.name); - const details = conditionResolution.unsatisfiedConditionReason === UnsatisfiedConditionReason.NO_POST_REQUIRE_KEY - ? `@require condition on field "${field.coordinate}" can be satisfied but missing usable key on "${parentTypeInSubgraph}" in subgraph "${edge.head.source}" to resume query` - : `cannot satisfy @require conditions on field "${field.coordinate}"${warnOnKeyFieldsMarkedExternal(parentTypeInSubgraph)}`; - deadEnds.push({ - sourceSubgraph: edge.head.source, - destSubgraph: edge.head.source, - reason: UnadvanceableReason.UNSATISFIABLE_REQUIRES_CONDITION, - details - }); - } - } - if (options.length > 0) { - return options; - } - else if (deadEnds.length > 0) { - return new Unadvanceables(deadEnds); - } - else { - let details; - const subgraph = path.tail.source; - if (transition.kind === 'FieldCollection') { - const schema = path.graph.sources.get(subgraph); - const typeInSubgraph = schema.type(path.tail.type.name); - const fieldInSubgraph = typeInSubgraph && (0, federation_internals_1.isCompositeType)(typeInSubgraph) - ? typeInSubgraph.field(transition.definition.name) - : undefined; - if (fieldInSubgraph) { - (0, federation_internals_1.assert)(fieldInSubgraph.hasAppliedDirective('external'), () => `${fieldInSubgraph.coordinate} in ${subgraph} is not external but there is no corresponding edge (edges from ${path} = [${path.nextEdges().join(', ')}])`); - details = `field "${transition.definition.coordinate}" is not resolvable because marked @external`; - } - else { - details = `cannot find field "${transition.definition.coordinate}"`; - } - } - else { - (0, federation_internals_1.assert)(transition.kind === 'DownCast', () => `Unhandled direct transition ${transition} of kind ${transition.kind}`); - details = `cannot find type "${transition.castedType}"`; - } - return new Unadvanceables([{ - sourceSubgraph: subgraph, - destSubgraph: subgraph, - reason: UnadvanceableReason.NO_MATCHING_TRANSITION, - details - }]); - } - } - function warnOnKeyFieldsMarkedExternal(type) { - const keyDirective = federation_internals_1.federationBuiltIns.keyDirective(type.schema()); - const keys = type.appliedDirectivesOf(keyDirective); - if (keys.length === 0) { - return ""; - } - const keyFieldMarkedExternal = []; - for (const key of keys) { - const fieldSet = (0, federation_internals_1.parseFieldSetArgument)(type, key); - for (const selection of fieldSet.selections()) { - if (selection.kind === 'FieldSelection' && selection.field.definition.hasAppliedDirective(federation_internals_1.externalDirectiveName)) { - const fieldName = selection.field.name; - if (!keyFieldMarkedExternal.includes(fieldName)) { - keyFieldMarkedExternal.push(fieldName); - } - } - } - } - if (keyFieldMarkedExternal.length === 0) { - return ""; - } - const printedFields = keyFieldMarkedExternal.map(f => `"${f}"`).join(', '); - const fieldWithPlural = keyFieldMarkedExternal.length === 1 ? 'field' : 'fields'; - return ` (please ensure that this is not due to key ${fieldWithPlural} ${printedFields} being accidentally marked @external)`; - } - function getLocallySatisfiableKey(graph, typeVertex) { - const type = typeVertex.type; - const externalTester = graph.externalTester(typeVertex.source); - const keyDirective = federation_internals_1.federationBuiltIns.keyDirective(type.schema()); - for (const key of type.appliedDirectivesOf(keyDirective)) { - const selection = (0, federation_internals_1.parseFieldSetArgument)(type, key); - if (!externalTester.selectsAnyExternalField(selection)) { - return selection; - } - } - return undefined; - } - exports.getLocallySatisfiableKey = getLocallySatisfiableKey; - function canSatisfyConditions(path, edge, conditionResolver, context, excludedEdges, excludedConditions) { - const conditions = edge.conditions; - if (!conditions) { - return exports.noConditionsResolution; - } - const resolution = conditionResolver(edge, context, excludedEdges, excludedConditions); - if (!resolution.satisfied) { - return exports.unsatisfiedConditionsResolution; - } - const pathTree = resolution.pathTree; - const lastEdge = path.lastEdge(); - if (edge.transition.kind === 'FieldCollection' - && lastEdge !== null - && (lastEdge === null || lastEdge === void 0 ? void 0 : lastEdge.transition.kind) !== 'KeyResolution' - && (!pathTree || pathTree.isAllInSameSubgraph())) { - const postRequireKeyCondition = getLocallySatisfiableKey(path.graph, edge.head); - if (!postRequireKeyCondition) { - return { ...exports.unsatisfiedConditionsResolution, unsatisfiedConditionReason: UnsatisfiedConditionReason.NO_POST_REQUIRE_KEY }; - } - } - return resolution; - } - function isTerminalOperation(operation) { - return operation.kind === 'Field' && (0, federation_internals_1.isLeafType)((0, federation_internals_1.baseType)(operation.definition.type)); - } - class SimultaneousPathsWithLazyIndirectPaths { - constructor(paths, context, conditionResolver, excludedNonCollectingEdges = [], excludedConditionsOnNonCollectingEdges = []) { - this.paths = paths; - this.context = context; - this.conditionResolver = conditionResolver; - this.excludedNonCollectingEdges = excludedNonCollectingEdges; - this.excludedConditionsOnNonCollectingEdges = excludedConditionsOnNonCollectingEdges; - this.lazilyComputedIndirectPaths = new Array(paths.length); - } - indirectOptions(updatedContext, pathIdx) { - if (updatedContext !== this.context) { - return this.computeIndirectPaths(pathIdx); - } - if (!this.lazilyComputedIndirectPaths[pathIdx]) { - this.lazilyComputedIndirectPaths[pathIdx] = this.computeIndirectPaths(pathIdx); - } - return this.lazilyComputedIndirectPaths[pathIdx]; - } - computeIndirectPaths(idx) { - return advancePathWithNonCollectingAndTypePreservingTransitions(this.paths[idx], this.context, this.conditionResolver, this.excludedNonCollectingEdges, this.excludedConditionsOnNonCollectingEdges, (_t, context) => context, opPathTriggerToEdge); - } - toString() { - return simultaneousPathsToString(this.paths); - } - } - exports.SimultaneousPathsWithLazyIndirectPaths = SimultaneousPathsWithLazyIndirectPaths; - function simultaneousPathsToString(simultaneousPaths, indentOnNewLine = "") { - const paths = Array.isArray(simultaneousPaths) ? simultaneousPaths : simultaneousPaths.paths; - if (paths.length === 0) { - return ''; - } - if (paths.length === 1) { - return paths[0].toString(); - } - return `{\n${indentOnNewLine} ` + paths.join(`\n${indentOnNewLine} `) + `\n${indentOnNewLine}}`; - } - exports.simultaneousPathsToString = simultaneousPathsToString; - function advanceOptionsToString(options) { - if (!options) { - return ''; - } - if (options.length === 0) { - return ''; - } - if (options.length === 1) { - return '[' + options[0] + ']'; - } - return '[\n ' + options.map(opt => Array.isArray(opt) ? simultaneousPathsToString(opt, " ") : opt.toString()).join('\n ') + '\n]'; - } - exports.advanceOptionsToString = advanceOptionsToString; - function advanceSimultaneousPathsWithOperation(supergraphSchema, subgraphSimultaneousPaths, operation) { - debug.group(() => `Trying to advance ${simultaneousPathsToString(subgraphSimultaneousPaths)} for ${operation}`); - const updatedContext = subgraphSimultaneousPaths.context.withContextOf(operation); - const optionsForEachPath = []; - for (const [i, path] of subgraphSimultaneousPaths.paths.entries()) { - debug.group(() => `Computing options for ${path}`); - debug.group(() => `Direct options`); - let options = advanceWithOperation(supergraphSchema, path, operation, updatedContext, subgraphSimultaneousPaths.conditionResolver); - debug.groupEnd(() => advanceOptionsToString(options)); - if (options && (options.length === 0 || isTerminalOperation(operation) || operation.kind === 'FragmentElement')) { - debug.groupEnd(() => `Final options for ${path}: ${advanceOptionsToString(options)}`); - if (options.length > 0) { - optionsForEachPath.push(options); - } - continue; - } - options = options !== null && options !== void 0 ? options : []; - debug.group(`Computing indirect paths:`); - const pathsWithNonCollecting = subgraphSimultaneousPaths.indirectOptions(updatedContext, i); - debug.groupEnd(() => pathsWithNonCollecting.paths.length == 0 ? `no indirect paths` : `${pathsWithNonCollecting.paths.length} indirect paths`); - if (pathsWithNonCollecting.paths.length > 0) { - debug.group('Validating indirect options:'); - for (const pathWithNonCollecting of pathsWithNonCollecting.paths) { - debug.group(() => `For indirect path ${pathWithNonCollecting}:`); - const pathWithOperation = advanceWithOperation(supergraphSchema, pathWithNonCollecting, operation, updatedContext, subgraphSimultaneousPaths.conditionResolver); - if (!pathWithOperation) { - debug.groupEnd(() => `Ignoring: cannot be advanced with ${operation}`); - continue; - } - debug.groupEnd(() => `Adding valid option: ${pathWithOperation}`); - (0, federation_internals_1.assert)(pathWithOperation.length > 0, () => `Unexpected empty options after non-collecting path ${pathWithNonCollecting} for ${operation}`); - options = options.concat(pathWithOperation); - } - debug.groupEnd(); - } - if (options.length === 0) { - debug.groupEnd(); - debug.groupEnd(() => `No valid options for ${operation}, aborting operation ${operation}`); - return undefined; - } - else { - debug.groupEnd(() => advanceOptionsToString(options)); - optionsForEachPath.push(options); - } - } - const allOptions = flatCartesianProduct(optionsForEachPath); - debug.groupEnd(() => advanceOptionsToString(allOptions)); - return createLazyOptions(allOptions, subgraphSimultaneousPaths, updatedContext); - } - exports.advanceSimultaneousPathsWithOperation = advanceSimultaneousPathsWithOperation; - function createLazyOptions(options, origin, context) { - return options.map(option => new SimultaneousPathsWithLazyIndirectPaths(option, context, origin.conditionResolver, origin.excludedNonCollectingEdges, origin.excludedConditionsOnNonCollectingEdges)); - } - function opPathTriggerToEdge(graph, vertex, trigger) { - if (trigger instanceof pathContext_1.PathContext) { - return undefined; - } - if (trigger.kind === 'Field') { - return edgeForField(graph, vertex, trigger); - } - else { - return trigger.typeCondition ? edgeForTypeCast(graph, vertex, trigger.typeCondition.name) : null; - } - } - function flatCartesianProduct(arr) { - const size = arr.length; - if (size === 0) { - return []; - } - const eltIndexes = new Array(size); - let totalCombinations = 1; - for (let i = 0; i < size; ++i) { - const eltSize = arr[i].length; - if (!eltSize) { - totalCombinations = 0; - break; - } - eltIndexes[i] = 0; - totalCombinations *= eltSize; - } - const product = new Array(totalCombinations); - for (let i = 0; i < totalCombinations; ++i) { - let itemSize = 0; - for (let j = 0; j < size; ++j) { - itemSize += arr[j][eltIndexes[j]].length; - } - const item = new Array(itemSize); - let k = 0; - for (let j = 0; j < size; ++j) { - for (const v of arr[j][eltIndexes[j]]) { - item[k++] = v; - } - } - product[i] = item; - for (let idx = 0; idx < size; ++idx) { - if (eltIndexes[idx] == arr[idx].length - 1) { - eltIndexes[idx] = 0; - } - else { - eltIndexes[idx] += 1; - break; - } - } - } - return product; - } - function anImplementationHasAProvides(fieldName, itf) { - for (const implem of itf.possibleRuntimeTypes()) { - const field = implem.field(fieldName); - if (field && field.hasAppliedDirective(federation_internals_1.providesDirectiveName)) { - return true; - } - } - return false; - } - function isProvidedEdge(edge) { - return edge.transition.kind === 'FieldCollection' && edge.transition.isPartOfProvide; - } - function advanceWithOperation(supergraphSchema, path, operation, context, conditionResolver) { - debug.group(() => `Trying to advance ${path} directly with ${operation}`); - const currentType = path.tail.type; - if ((0, querygraph_1.isFederatedGraphRootType)(currentType)) { - debug.groupEnd('Cannot advance federated graph root with direct operations'); - return undefined; - } - if (operation.kind === 'Field') { - const field = operation.definition; - switch (currentType.kind) { - case 'ObjectType': - const edge = nextEdgeForField(path, operation); - if (!edge) { - debug.groupEnd(() => `No edge for field ${field} on object type ${currentType}`); - return undefined; - } - const fieldOptions = addFieldEdge(path, operation, edge, conditionResolver, context); - debug.groupEnd(() => fieldOptions - ? `Collected field ${field} on object type ${currentType}` - : `Cannot satisfy @requires on field ${field} for object type ${currentType}`); - return fieldOptions; - case 'InterfaceType': - const itfEdge = nextEdgeForField(path, operation); - let itfOptions = undefined; - if (itfEdge) { - itfOptions = addFieldEdge(path, operation, itfEdge, conditionResolver, context); - (0, federation_internals_1.assert)(itfOptions, () => `Interface edge ${itfEdge} shouldn't have conditions`); - if (field.name === federation_internals_1.typenameFieldName || (!isProvidedEdge(itfEdge) && !anImplementationHasAProvides(field.name, currentType))) { - debug.groupEnd(() => `Collecting field ${field} on interface ${currentType} without type-exploding`); - return itfOptions; - } - else { - debug.log(() => `Collecting field ${field} on interface ${currentType} as 1st option`); - } - } - const implementations = path.tailPossibleRuntimeTypes(); - debug.log(() => itfOptions - ? `No direct edge: type exploding interface ${currentType} into possible runtime types [${implementations.join(', ')}]` - : `Type exploding interface ${currentType} into possible runtime types [${implementations.join(', ')}] as 2nd option`); - const optionsByImplems = []; - for (const implemType of implementations) { - const castOp = new federation_internals_1.FragmentElement(currentType, implemType.name); - debug.group(() => `Handling implementation ${implemType}`); - const implemOptions = advanceSimultaneousPathsWithOperation(supergraphSchema, new SimultaneousPathsWithLazyIndirectPaths([path], context, conditionResolver), castOp); - if (!implemOptions) { - debug.groupEnd(); - debug.groupEnd(() => `Cannot collect field ${field} from ${implemType}: stopping with options ${advanceOptionsToString(itfOptions)}`); - return itfOptions; - } - if (implemOptions.length === 0) { - debug.groupEnd(() => `Cannot ever get ${implemType} from this branch, ignoring it`); - continue; - } - let withField = []; - debug.log(() => `Trying to collect ${field} from options ${advanceOptionsToString(implemOptions)}`); - for (const optPaths of implemOptions) { - debug.group(() => `For ${simultaneousPathsToString(optPaths)}`); - const withFieldOptions = advanceSimultaneousPathsWithOperation(supergraphSchema, optPaths, operation); - if (!withFieldOptions) { - debug.groupEnd(() => `Cannot collect ${field}`); - continue; - } - (0, federation_internals_1.assert)(withFieldOptions.length > 0, () => `Unexpected unsatisfiable path after ${optPaths} for ${operation}`); - debug.groupEnd(() => `Collected field ${field}: adding ${advanceOptionsToString(withFieldOptions)}`); - withField = withField.concat(withFieldOptions.map(opt => opt.paths)); - } - if (withField.length === 0) { - debug.groupEnd(); - debug.groupEnd(() => `Cannot collect field ${field} from ${implemType}: stopping with options ${advanceOptionsToString(itfOptions)}`); - return itfOptions; - } - debug.groupEnd(() => `Collected field ${field} from ${implemType}`); - optionsByImplems.push(withField); - } - const implemOptions = flatCartesianProduct(optionsByImplems); - const allOptions = itfOptions ? itfOptions.concat(implemOptions) : implemOptions; - debug.groupEnd(() => `With type-exploded options: ${advanceOptionsToString(allOptions)}`); - return allOptions; - case 'UnionType': - (0, federation_internals_1.assert)(field.name === federation_internals_1.typenameFieldName, () => `Invalid field selection ${operation} for union type ${currentType}`); - const typenameEdge = nextEdgeForField(path, operation); - (0, federation_internals_1.assert)(typenameEdge, `Should always have an edge for __typename edge on an union`); - debug.groupEnd(() => `Trivial collection of __typename for union ${currentType}`); - return addFieldEdge(path, operation, typenameEdge, conditionResolver, context); - default: - (0, federation_internals_1.assert)(false, `Unexpected ${currentType.kind} type ${currentType} from ${path.tail} given operation ${operation}`); - } - } - else { - (0, federation_internals_1.assert)(operation.kind === 'FragmentElement', () => "Unhandled operation kind: " + operation.kind); - if (!operation.typeCondition || currentType.name === operation.typeCondition.name) { - debug.groupEnd(() => `No edge to take for condition ${operation} from current type ${currentType}`); - const updatedPath = operation.appliedDirectives.length > 0 - ? path.add(operation, null, exports.noConditionsResolution) - : path; - return [[updatedPath]]; - } - const typeName = operation.typeCondition.name; - switch (currentType.kind) { - case 'InterfaceType': - case 'UnionType': - const edge = nextEdgeForTypeCast(path, typeName); - if (edge) { - (0, federation_internals_1.assert)(!edge.conditions, "TypeCast collecting edges shouldn't have conditions"); - debug.groupEnd(() => `Using type-casting edge for ${typeName} from current type ${currentType}`); - return [[path.add(operation, edge, exports.noConditionsResolution)]]; - } - const parentTypes = path.tailPossibleRuntimeTypes(); - const castedTypes = (0, federation_internals_1.possibleRuntimeTypes)(supergraphSchema.type(typeName)); - const intersection = parentTypes.filter(t1 => castedTypes.some(t2 => t1.name === t2.name)).map(t => t.name); - debug.log(() => `Trying to type-explode into intersection between ${currentType} and ${typeName} = [${intersection}]`); - const optionsByImplems = []; - for (const tName of intersection) { - debug.group(() => `Trying ${tName}`); - const castOp = new federation_internals_1.FragmentElement(currentType, tName); - const implemOptions = advanceSimultaneousPathsWithOperation(supergraphSchema, new SimultaneousPathsWithLazyIndirectPaths([path], context, conditionResolver), castOp); - if (!implemOptions) { - debug.groupEnd(); - debug.groupEnd(() => `Cannot advance into ${tName} from ${currentType}: no options for ${operation}.`); - return undefined; - } - if (implemOptions.length === 0) { - debug.groupEnd(() => `Cannot ever get ${tName} from this branch, ignoring it`); - continue; - } - debug.groupEnd(() => `Advanced into ${tName} from ${currentType}: ${advanceOptionsToString(implemOptions)}`); - optionsByImplems.push(implemOptions.map(opt => opt.paths)); - } - const allCastOptions = flatCartesianProduct(optionsByImplems); - debug.groupEnd(() => `Type-exploded options: ${advanceOptionsToString(allCastOptions)}`); - return allCastOptions; - case 'ObjectType': - const conditionType = supergraphSchema.type(typeName); - if ((0, federation_internals_1.isAbstractType)(conditionType) && (0, federation_internals_1.possibleRuntimeTypes)(conditionType).some(t => t.name == currentType.name)) { - debug.groupEnd(() => `${typeName} is a super-type of current type ${currentType}: no edge to take`); - const updatedPath = operation.appliedDirectives.length > 0 - ? path.add(operation, null, exports.noConditionsResolution) - : path; - return [[updatedPath]]; - } - debug.groupEnd(() => `Cannot ever get ${typeName} from current type ${currentType}: returning empty branch`); - return []; - default: - (0, federation_internals_1.assert)(false, `Unexpected ${currentType.kind} type ${currentType} from ${path.tail} given operation ${operation}`); - } - } - } - function addFieldEdge(path, fieldOperation, edge, conditionResolver, context) { - const conditionResolution = canSatisfyConditions(path, edge, conditionResolver, context, [], []); - return conditionResolution.satisfied ? [[path.add(fieldOperation, edge, conditionResolution)]] : undefined; - } - function nextEdgeForField(path, field) { - return edgeForField(path.graph, path.tail, field); - } - function edgeForField(graph, vertex, field) { - const candidates = graph.outEdges(vertex).filter(e => e.transition.kind === 'FieldCollection' && field.selects(e.transition.definition, true)); - (0, federation_internals_1.assert)(candidates.length <= 1, () => `Vertex ${vertex} has multiple edges matching ${field} (${candidates})`); - return candidates.length === 0 ? undefined : candidates[0]; - } - function nextEdgeForTypeCast(path, typeName) { - return edgeForTypeCast(path.graph, path.tail, typeName); - } - function edgeForTypeCast(graph, vertex, typeName) { - const candidates = graph.outEdges(vertex).filter(e => e.transition.kind === 'DownCast' && typeName === e.transition.castedType.name); - (0, federation_internals_1.assert)(candidates.length <= 1, () => `Vertex ${vertex} has multiple edges matching ${typeName} (${candidates})`); - return candidates.length === 0 ? undefined : candidates[0]; - } - - }(graphPath)); - - var graphviz = {}; - - var lib = {}; - - (function (exports) { - var t;Object.defineProperty(exports,"__esModule",{value:!0}),exports.attribute=void 0,(t=exports.attribute||(exports.attribute={})).Damping="Damping",t.K="K",t.URL="URL",t._background="_background",t.area="area",t.arrowhead="arrowhead",t.arrowsize="arrowsize",t.arrowtail="arrowtail",t.bb="bb",t.bgcolor="bgcolor",t.center="center",t.charset="charset",t.clusterrank="clusterrank",t.color="color",t.colorscheme="colorscheme",t.comment="comment",t.compound="compound",t.concentrate="concentrate",t.constraint="constraint",t.decorate="decorate",t.defaultdist="defaultdist",t.dim="dim",t.dimen="dimen",t.dir="dir",t.diredgeconstraints="diredgeconstraints",t.distortion="distortion",t.dpi="dpi",t.edgeURL="edgeURL",t.edgehref="edgehref",t.edgetarget="edgetarget",t.edgetooltip="edgetooltip",t.epsilon="epsilon",t.esep="esep",t.fillcolor="fillcolor",t.fixedsize="fixedsize",t.fontcolor="fontcolor",t.fontname="fontname",t.fontnames="fontnames",t.fontpath="fontpath",t.fontsize="fontsize",t.forcelabels="forcelabels",t.gradientangle="gradientangle",t.group="group",t.headURL="headURL",t.head_lp="head_lp",t.headclip="headclip",t.headhref="headhref",t.headlabel="headlabel",t.headport="headport",t.headtarget="headtarget",t.headtooltip="headtooltip",t.height="height",t.href="href",t.id="id",t.image="image",t.imagepath="imagepath",t.imagepos="imagepos",t.imagescale="imagescale",t.inputscale="inputscale",t.label="label",t.labelURL="labelURL",t.label_scheme="label_scheme",t.labelangle="labelangle",t.labeldistance="labeldistance",t.labelfloat="labelfloat",t.labelfontcolor="labelfontcolor",t.labelfontname="labelfontname",t.labelfontsize="labelfontsize",t.labelhref="labelhref",t.labeljust="labeljust",t.labelloc="labelloc",t.labeltarget="labeltarget",t.labeltooltip="labeltooltip",t.landscape="landscape",t.layer="layer",t.layerlistsep="layerlistsep",t.layers="layers",t.layerselect="layerselect",t.layersep="layersep",t.layout="layout",t.len="len",t.levels="levels",t.levelsgap="levelsgap",t.lhead="lhead",t.lheight="lheight",t.lp="lp",t.ltail="ltail",t.lwidth="lwidth",t.margin="margin",t.maxiter="maxiter",t.mclimit="mclimit",t.mindist="mindist",t.minlen="minlen",t.mode="mode",t.model="model",t.mosek="mosek",t.newrank="newrank",t.nodesep="nodesep",t.nojustify="nojustify",t.normalize="normalize",t.notranslate="notranslate",t.nslimit="nslimit",t.nslimit1="nslimit1",t.ordering="ordering",t.orientation="orientation",t.outputorder="outputorder",t.overlap="overlap",t.overlap_scaling="overlap_scaling",t.overlap_shrink="overlap_shrink",t.pack="pack",t.packmode="packmode",t.pad="pad",t.page="page",t.pagedir="pagedir",t.pencolor="pencolor",t.penwidth="penwidth",t.peripheries="peripheries",t.pin="pin",t.pos="pos",t.quadtree="quadtree",t.quantum="quantum",t.rank="rank",t.rankdir="rankdir",t.ranksep="ranksep",t.ratio="ratio",t.rects="rects",t.regular="regular",t.remincross="remincross",t.repulsiveforce="repulsiveforce",t.resolution="resolution",t.root="root",t.rotate="rotate",t.rotation="rotation",t.samehead="samehead",t.sametail="sametail",t.samplepoints="samplepoints",t.scale="scale",t.searchsize="searchsize",t.sep="sep",t.shape="shape",t.shapefile="shapefile",t.showboxes="showboxes",t.sides="sides",t.size="size",t.skew="skew",t.smoothing="smoothing",t.sortv="sortv",t.splines="splines",t.start="start",t.style="style",t.stylesheet="stylesheet",t.tailURL="tailURL",t.tail_lp="tail_lp",t.tailclip="tailclip",t.tailhref="tailhref",t.taillabel="taillabel",t.tailport="tailport",t.tailtarget="tailtarget",t.tailtooltip="tailtooltip",t.target="target",t.tooltip="tooltip",t.truecolor="truecolor",t.vertices="vertices",t.viewport="viewport",t.voro_margin="voro_margin",t.weight="weight",t.width="width",t.xdotversion="xdotversion",t.xlabel="xlabel",t.xlp="xlp",t.z="z",exports.Compass=void 0,function(t){t.n="n",t.ne="ne",t.e="e",t.se="se",t.s="s",t.sw="sw",t.w="w",t.nw="nw",t.c="c";var e=[t.n,t.ne,t.e,t.se,t.s,t.sw,t.w,t.nw,t.c];t.is=function(t){return e.includes(t)};}(exports.Compass||(exports.Compass={})); - /*! ***************************************************************************** - Copyright (c) Microsoft Corporation. - - Permission to use, copy, modify, and/or distribute this software for any - purpose with or without fee is hereby granted. - - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH - REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM - LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR - OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. - ***************************************************************************** */ - var e=function(t,r){return (e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e;}||function(t,e){for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);})(t,r)};function r(t,r){if("function"!=typeof r&&null!==r)throw new TypeError("Class extends value "+String(r)+" is not a constructor or null");function n(){this.constructor=t;}e(t,r),t.prototype=null===r?Object.create(r):(n.prototype=r.prototype,new n);}var n=function(){return (n=Object.assign||function(t){for(var e,r=1,n=arguments.length;r$/ms.test(i))?o=i:n=!0;}return e||r?o:n?O(o.replace(/\n/g,"\\n").replace(/"/g,'\\"')):o}function G(t){return function(e){var r=e[0],n=e[1];return N(r," = ",T(n),t)}}var K=G(";"),B=G(",");function W(t){return 0===t.size?"":R("[",L(R.apply(void 0,o([U(t.comment)],t.values.map(B)))),"]")}function $(t){if(D(t))return T(t.id);if(p(t)){var e=t.id,r=t.port,n=t.compass;return C(T(e),void 0!==r?T(r):void 0,void 0!==n?T(n):void 0)}}var F=function(){function t(){}return t.prototype.renderNode=function(t){var e=U(t.comment),r=$(t),n=t.attributes.size>0?S(W(t.attributes)):void 0,o=N(r,n,";");return R(e,o)},t.prototype.renderEdge=function(t){var e,r=U(t.comment),n=(e=q(this.root)?" -- ":" -> ",t.targets.map((function(t){return c(t)?$(t):(e=t,"{"+A.apply(void 0,e.map($))+"}");var e;})).filter((function(t){return "string"==typeof t})).join(e)),o=t.attributes.size>0?S(W(t.attributes)):void 0,i=N(n,o,";");return R(r,i)},t.prototype.renderCluster=function(t){var e=M(t),r=void 0!==t.id?T(t.id):void 0,n=t.values.map(K),i=Object.entries(t.attributes).filter((function(t){return t[1].size>0})).map((function(t){var e=t[0],r=t[1];return N(e," ",W(r),";")})),a=t.nodes.map(this.renderNode.bind(this)),s=t.subgraphs.map(this.renderSubgraph.bind(this)),u=t.edges.map(this.renderEdge.bind(this)),l=R.apply(void 0,o(o(o(o(o([],n),i),a),s),u));return R(A(e,r,"{"),l.length>0?L(l):void 0,"}")},t.prototype.renderRootCluster=function(t){var e=U(t.comment),r=this.renderCluster(t);return R(e,A(t.strict?"strict":void 0,r))},t.prototype.renderSubgraph=function(t){var e=U(t.comment),r=this.renderCluster(t);return R(e,r)},t.prototype.render=function(t){return D(t)?this.renderNode(t):function(t){return t instanceof h}(t)?this.renderEdge(t):function(t){return t instanceof u}(t)?W(t):P(t)?this.renderSubgraph(t):function(t){return t instanceof y}(t)?(this.root=t,this.renderRootCluster(t)):T(t)},t}();exports.Attributes=u,exports.AttributesBase=s,exports.Cluster=g,exports.Digraph=m,exports.DotObject=a,exports.Edge=h,exports.Graph=v,exports.GraphvizObject=i,exports.Node=l,exports.RootCluster=y,exports.Subgraph=b,exports.digraph=j,exports.graph=x,exports.strict=_,exports.toDot=function(t){return (new F).render(t)}; - }(lib)); - - Object.defineProperty(graphviz, "__esModule", { value: true }); - graphviz.pickHighlights = graphviz.groupToDot = graphviz.toDot = void 0; - const querygraph_1$1 = querygraph; - const ts_graphviz_1 = lib; - const graphPath_1$1 = graphPath; - function toDot(graph, config) { - const vizGraph = (0, ts_graphviz_1.digraph)(graph.name); - addToVizGraphAndHighlight(graph, vizGraph, config); - return (0, ts_graphviz_1.toDot)(vizGraph); - } - graphviz.toDot = toDot; - function groupToDot(name, graphs, configs = new Map()) { - const vizGraph = (0, ts_graphviz_1.digraph)(name); - for (const [group, graph] of graphs.entries()) { - const cluster = vizGraph.createSubgraph(`cluster_${group}`, { - [ts_graphviz_1.attribute.label]: `${group}`, - [ts_graphviz_1.attribute.style]: "filled", - [ts_graphviz_1.attribute.color]: "grey95" - }); - addToVizGraphAndHighlight(graph, cluster, configs.get(group)); - } - return (0, ts_graphviz_1.toDot)(vizGraph); - } - graphviz.groupToDot = groupToDot; - function addToVizGraphAndHighlight(graph, vizGraph, config) { - const state = addToVizGraph(graph, vizGraph, config === null || config === void 0 ? void 0 : config.noTerminal); - highlightPaths(state, config === null || config === void 0 ? void 0 : config.highlightedPaths); - } - const colors = [ - 'blue', - 'darkgreen', - 'red', - 'yellow', - 'orange', - 'lightseagreen' - ]; - function pickHighlights(paths, excluded = []) { - const usableColors = colors.filter(c => !excluded.includes(c)); - return paths.map((path, i) => { return { path, color: usableColors[i % usableColors.length] }; }); - } - graphviz.pickHighlights = pickHighlights; - function addToVizGraph(graph, vizGraph, noTerminal = false) { - const vizSubGraphs = new Map(); - for (const source of graph.sources.keys()) { - if (source != graph.name) { - vizSubGraphs.set(source, vizGraph.createSubgraph(`cluster_${source}`, { - [ts_graphviz_1.attribute.label]: `Subgraph "${source}"`, - [ts_graphviz_1.attribute.color]: "black", - [ts_graphviz_1.attribute.style]: "" - })); - } - } - const getNode = function (vertex) { - const existingNode = state.getVertexState(vertex); - if (existingNode) { - return existingNode; - } - let newNode; - if (vertex.source == graph.name) { - newNode = vizGraph.createNode(vertex.type.name); - } - else { - const vizSubGraph = vizSubGraphs.get(vertex.source); - newNode = vizSubGraph.createNode(`${vertex.type.name}@${vertex.source}`); - } - state.setVertexState(vertex, newNode); - return newNode; - }; - const pickGraphForEdge = function (head, tail) { - if (head.source == tail.source && head.source != graph.name) { - return vizSubGraphs.get(head.source); - } - return vizGraph; - }; - const state = new querygraph_1$1.QueryGraphState(graph); - const onEdge = function (edge) { - const head = edge.head; - const tail = edge.tail; - if (noTerminal && graph.isTerminal(tail)) { - return false; - } - const headNode = getNode(head); - const tailNode = getNode(tail); - const attributes = { - [ts_graphviz_1.attribute.label]: edge.label(), - }; - state.setEdgeState(edge, pickGraphForEdge(head, tail).createEdge([headNode, tailNode], attributes)); - return true; - }; - (0, querygraph_1$1.simpleTraversal)(graph, _ => undefined, onEdge); - return state; - } - function highlightPaths(state, toHighlights) { - toHighlights === null || toHighlights === void 0 ? void 0 : toHighlights.forEach(h => highlightPath(state, h)); - } - function highlightPath(state, toHighlight) { - (0, graphPath_1$1.traversePath)(toHighlight.path, e => { - var _a, _b, _c; - for (const vAttrs of [(_a = state.getVertexState(e.head)) === null || _a === void 0 ? void 0 : _a.attributes, (_b = state.getVertexState(e.tail)) === null || _b === void 0 ? void 0 : _b.attributes]) { - vAttrs === null || vAttrs === void 0 ? void 0 : vAttrs.set(ts_graphviz_1.attribute.color, toHighlight.color); - vAttrs === null || vAttrs === void 0 ? void 0 : vAttrs.set(ts_graphviz_1.attribute.fontcolor, toHighlight.color); - } - const eAttrs = (_c = state.getEdgeState(e)) === null || _c === void 0 ? void 0 : _c.attributes; - eAttrs === null || eAttrs === void 0 ? void 0 : eAttrs.set(ts_graphviz_1.attribute.color, toHighlight.color); - eAttrs === null || eAttrs === void 0 ? void 0 : eAttrs.set(ts_graphviz_1.attribute.fontcolor, toHighlight.color); - }); - } - - var conditionsCaching = {}; - - Object.defineProperty(conditionsCaching, "__esModule", { value: true }); - conditionsCaching.cachingConditionResolver = void 0; - const federation_internals_1$1 = dist$1; - const graphPath_1 = graphPath; - const querygraph_1 = querygraph; - function cachingConditionResolver(graph, resolver) { - const cache = new querygraph_1.QueryGraphState(graph); - return (edge, context, excludedEdges, excludedConditions) => { - (0, federation_internals_1$1.assert)(edge.conditions, 'Should not have been called for edge without conditions'); - if (!context.isEmpty() || excludedConditions.length > 0) { - return resolver(edge, context, excludedEdges, excludedConditions); - } - const cachedResolutionAndExcludedEdges = cache.getEdgeState(edge); - if (cachedResolutionAndExcludedEdges) { - const [cachedResolution, forExcludedEdges] = cachedResolutionAndExcludedEdges; - return (0, graphPath_1.sameExcludedEdges)(forExcludedEdges, excludedEdges) - ? cachedResolution - : resolver(edge, context, excludedEdges, excludedConditions); - } - else { - const resolution = resolver(edge, context, excludedEdges, excludedConditions); - cache.setEdgeState(edge, [resolution, excludedEdges]); - return resolution; - } - }; - } - conditionsCaching.cachingConditionResolver = cachingConditionResolver; - - (function (exports) { - var __createBinding = (commonjsGlobal && commonjsGlobal.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); - }) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; - })); - var __exportStar = (commonjsGlobal && commonjsGlobal.__exportStar) || function(m, exports) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); - }; - Object.defineProperty(exports, "__esModule", { value: true }); - __exportStar(querygraph, exports); - __exportStar(graphPath, exports); - __exportStar(pathTree, exports); - __exportStar(graphviz, exports); - __exportStar(structuralSubtyping, exports); - __exportStar(transition, exports); - __exportStar(pathContext, exports); - __exportStar(conditionsCaching, exports); - - }(dist$2)); - - var buildPlan = {}; - - (function (exports) { - Object.defineProperty(exports, "__esModule", { value: true }); - exports.computeQueryPlan = exports.MAX_COMPUTED_PLANS = void 0; - const federation_internals_1 = dist$1; - const query_graphs_1 = dist$2; - const graphql_1 = require$$0$2; - const QueryPlan_1 = QueryPlan; - const debug = (0, federation_internals_1.newDebugLogger)('plan'); - exports.MAX_COMPUTED_PLANS = 10000; - function mapOptionsToSelections(selectionSet, options) { - return selectionSet.selections(true).map(node => [node, options]); - } - class QueryPlanningTaversal { - constructor(supergraphSchema, subgraphs, selectionSet, variableDefinitions, startVertex, rootKind, costFunction, initialContext, excludedEdges = [], excludedConditions = []) { - this.supergraphSchema = supergraphSchema; - this.subgraphs = subgraphs; - this.variableDefinitions = variableDefinitions; - this.startVertex = startVertex; - this.rootKind = rootKind; - this.costFunction = costFunction; - this.closedBranches = []; - this.isTopLevel = (0, query_graphs_1.isRootVertex)(startVertex); - this.conditionResolver = (0, query_graphs_1.cachingConditionResolver)(subgraphs, (edge, context, excludedEdges, excludedConditions) => this.resolveConditionPlan(edge, context, excludedEdges, excludedConditions)); - const initialPath = query_graphs_1.GraphPath.create(subgraphs, startVertex); - const initialOptions = [new query_graphs_1.SimultaneousPathsWithLazyIndirectPaths([initialPath], initialContext, this.conditionResolver, excludedEdges, excludedConditions)]; - this.stack = mapOptionsToSelections(selectionSet, initialOptions); - } - debugStack() { - if (this.isTopLevel && debug.enabled) { - debug.group('Query planning open branches:'); - for (const [selection, options] of this.stack) { - debug.groupedValues(options, opt => `${(0, query_graphs_1.simultaneousPathsToString)(opt)}`, `${selection}:`); - } - debug.groupEnd(); - } - } - findBestPlan() { - while (this.stack.length > 0) { - this.debugStack(); - const [selection, options] = this.stack.pop(); - this.handleOpenBranch(selection, options); - } - this.computeBestPlanFromClosedBranches(); - return this.bestPlan; - } - handleOpenBranch(selection, options) { - const operation = selection.element(); - let newOptions = []; - for (const option of options) { - const followupForOption = (0, query_graphs_1.advanceSimultaneousPathsWithOperation)(this.supergraphSchema, option, operation); - if (!followupForOption) { - continue; - } - if (followupForOption.length === 0) { - if (operation.kind === 'FragmentElement') { - this.closedBranches.push([option.paths.map(p => (0, query_graphs_1.terminateWithNonRequestedTypenameField)(p))]); - } - return; - } - newOptions = newOptions.concat(followupForOption); - } - if (newOptions.length === 0) { - if (this.isTopLevel) { - debug.log(`No valid options to advance ${selection} from ${(0, query_graphs_1.advanceOptionsToString)(options)}`); - throw new Error(`Was not able to find any options for ${selection}: This shouldn't have happened.`); - } - else { - this.stack.splice(0, this.stack.length); - this.closedBranches.splice(0, this.closedBranches.length); - return; - } - } - if (selection.selectionSet) { - for (const branch of mapOptionsToSelections(selection.selectionSet, newOptions)) { - this.stack.push(branch); - } - } - else { - const updated = this.maybeEliminateStrictlyMoreCostlyPaths(newOptions); - this.closedBranches.push(updated); - } - } - maybeEliminateStrictlyMoreCostlyPaths(options) { - if (options.length === 1) { - return [options[0].paths]; - } - const singlePathOptions = options.filter(opt => opt.paths.length === 1); - if (singlePathOptions.length === 0) { - return options.map(opt => opt.paths); - } - let minJumps = Number.MAX_SAFE_INTEGER; - let withMinJumps = []; - for (const option of singlePathOptions) { - const jumps = option.paths[0].subgraphJumps(); - if (jumps < minJumps) { - minJumps = jumps; - withMinJumps = [option.paths]; - } - else if (jumps === minJumps) { - withMinJumps.push(option.paths); - } - } - for (const option of singlePathOptions.filter(opt => opt.paths.length > 1)) { - const jumps = option.paths.reduce((acc, p) => Math.min(acc, p.subgraphJumps()), Number.MAX_SAFE_INTEGER); - if (jumps <= minJumps) { - withMinJumps.push(option.paths); - } - } - return withMinJumps; - } - newDependencyGraph() { - return FetchDependencyGraph.create(this.subgraphs); - } - reorderFirstBranch() { - const firstBranch = this.closedBranches[0]; - let i = 1; - while (i < this.closedBranches.length && this.closedBranches[i].length > firstBranch.length) { - i++; - } - this.closedBranches[0] = this.closedBranches[i - 1]; - this.closedBranches[i - 1] = firstBranch; - } - computeBestPlanFromClosedBranches() { - if (this.closedBranches.length === 0) { - return; - } - this.closedBranches.sort((b1, b2) => b1.length > b2.length ? -1 : (b1.length < b2.length ? 1 : 0)); - let planCount = possiblePlans(this.closedBranches); - debug.log(() => `Query has ${planCount} possible plans`); - let firstBranch = this.closedBranches[0]; - while (planCount > exports.MAX_COMPUTED_PLANS && firstBranch.length > 1) { - const prevSize = firstBranch.length; - firstBranch.pop(); - planCount -= planCount / prevSize; - this.reorderFirstBranch(); - firstBranch = this.closedBranches[0]; - debug.log(() => `Reduced plans to consider to ${planCount} plans`); - } - debug.log(() => `All branches:${this.closedBranches.map((opts, i) => `\n${i}:${opts.map((opt => `\n - ${(0, query_graphs_1.simultaneousPathsToString)(opt)}`))}`)}`); - let idxFirstOfLengthOne = 0; - while (idxFirstOfLengthOne < this.closedBranches.length && this.closedBranches[idxFirstOfLengthOne].length > 1) { - idxFirstOfLengthOne++; - } - let initialTree; - let initialDependencyGraph; - if (idxFirstOfLengthOne === this.closedBranches.length) { - initialTree = query_graphs_1.PathTree.createOp(this.subgraphs, this.startVertex); - initialDependencyGraph = this.newDependencyGraph(); - } - else { - initialTree = query_graphs_1.PathTree.createFromOpPaths(this.subgraphs, this.startVertex, this.closedBranches.slice(idxFirstOfLengthOne).flat(2)); - initialDependencyGraph = this.updatedDependencyGraph(this.newDependencyGraph(), initialTree); - if (idxFirstOfLengthOne === 0) { - this.onNewPlan(initialDependencyGraph, initialTree); - return; - } - } - const otherTrees = this.closedBranches.slice(0, idxFirstOfLengthOne).map(b => b.map(opt => query_graphs_1.PathTree.createFromOpPaths(this.subgraphs, this.startVertex, opt))); - this.generateAllPlans(initialDependencyGraph, initialTree, otherTrees); - } - generateAllPlans(initialDependencyGraph, initialTree, others) { - const eltIndexes = new Array(others.length); - let totalCombinations = 1; - for (let i = 0; i < others.length; ++i) { - const eltSize = others[i].length; - (0, federation_internals_1.assert)(eltSize, "Got empty option: this shouldn't have happened"); - if (!eltSize) { - totalCombinations = 0; - break; - } - eltIndexes[i] = 0; - totalCombinations *= eltSize; - } - for (let i = 0; i < totalCombinations; ++i) { - const dependencyGraph = initialDependencyGraph.clone(); - let tree = initialTree; - for (let j = 0; j < others.length; ++j) { - const t = others[j][eltIndexes[j]]; - this.updatedDependencyGraph(dependencyGraph, t); - tree = tree.merge(t); - } - this.onNewPlan(dependencyGraph, tree); - for (let idx = 0; idx < others.length; ++idx) { - if (eltIndexes[idx] == others[idx].length - 1) { - eltIndexes[idx] = 0; - } - else { - eltIndexes[idx] += 1; - break; - } - } - } - } - cost(dependencyGraph) { - return this.costFunction.finalize(dependencyGraph.process(this.costFunction), true); - } - updatedDependencyGraph(dependencyGraph, tree) { - return (0, query_graphs_1.isRootPathTree)(tree) - ? computeRootFetchGroups(dependencyGraph, tree, this.rootKind) - : computeNonRootFetchGroups(dependencyGraph, tree, this.rootKind); - } - resolveConditionPlan(edge, context, excludedEdges, excludedConditions) { - const bestPlan = new QueryPlanningTaversal(this.supergraphSchema, this.subgraphs, edge.conditions, this.variableDefinitions, edge.head, 'query', this.costFunction, context, excludedEdges, (0, query_graphs_1.addConditionExclusion)(excludedConditions, edge.conditions)).findBestPlan(); - return bestPlan ? { satisfied: true, cost: bestPlan[2], pathTree: bestPlan[1] } : query_graphs_1.unsatisfiedConditionsResolution; - } - onNewPlan(dependencyGraph, tree) { - const cost = this.cost(dependencyGraph); - if (!this.bestPlan || cost < this.bestPlan[2]) { - debug.log(() => this.bestPlan ? `Found better with cost ${cost} (previous had cost ${this.bestPlan[2]}): ${tree}` : `Computed plan with cost ${cost}: ${tree}`); - this.bestPlan = [dependencyGraph, tree, cost]; - } - else { - debug.log(() => `Ignoring plan with cost ${cost} (a better plan with cost ${this.bestPlan[2]} exists): ${tree}`); - } - } - } - function possiblePlans(closedBranches) { - let totalCombinations = 1; - for (let i = 0; i < closedBranches.length; ++i) { - const eltSize = closedBranches[i].length; - if (!eltSize) { - totalCombinations = 0; - break; - } - totalCombinations *= eltSize; - } - return totalCombinations; - } - function sum(arr) { - return arr.reduce((a, b) => a + b, 0); - } - const fetchCost = 10000; - const pipeliningCost = 100; - const sameLevelFetchCost = 100; - function selectionCost(selection, depth = 1) { - return selection ? selection.selections().reduce((prev, curr) => prev + depth + selectionCost(curr.selectionSet, depth + 1), 0) : 0; - } - const defaultCostFunction = { - onFetchGroup: (group) => selectionCost(group.selection), - reduceParallel: (values) => values, - reduceSequence: (values) => values.reduceRight((acc, value, idx) => { - const valueArray = Array.isArray(value) ? value : [value]; - return acc + ((idx + 1) * pipeliningCost) * (fetchCost * valueArray.length) * (Math.max(...valueArray) + (valueArray.length - 1) * sameLevelFetchCost); - }, 0), - finalize: (roots, rootsAreParallel) => roots.length === 0 ? 0 : (rootsAreParallel ? (Math.max(...roots) + (roots.length - 1) * sameLevelFetchCost) : sum(roots)) - }; - function isIntrospectionSelection(selection) { - return selection.kind == 'FieldSelection' && selection.element().definition.isIntrospectionField(); - } - function withoutIntrospection(operation) { - if (!operation.selectionSet.selections().some(isIntrospectionSelection)) { - return operation; - } - const newSelections = operation.selectionSet.selections().filter(s => !isIntrospectionSelection(s)); - return new federation_internals_1.Operation(operation.rootKind, new federation_internals_1.SelectionSet(operation.selectionSet.parentType).addAll(newSelections), operation.variableDefinitions, operation.name); - } - function computeQueryPlan(supergraphSchema, federatedQueryGraph, operation) { - if (operation.rootKind === 'subscription') { - throw new graphql_1.GraphQLError('Query planning does not support subscriptions for now.', [(0, graphql_1.parse)(operation.toString())]); - } - operation = operation.expandAllFragments(); - operation = withoutIntrospection(operation); - debug.group(() => `Computing plan for\n${operation}`); - if (operation.selectionSet.isEmpty()) { - debug.groupEnd('Empty plan'); - return { kind: 'QueryPlan' }; - } - const root = federatedQueryGraph.root(operation.rootKind); - (0, federation_internals_1.assert)(root, () => `Shouldn't have a ${operation.rootKind} operation if the subgraphs don't have a ${operation.rootKind} root`); - const processor = fetchGroupToPlanProcessor(operation.variableDefinitions, operation.selectionSet.fragments); - if (operation.rootKind === 'mutation') { - const dependencyGraphs = computeRootSerialDependencyGraph(supergraphSchema, operation, federatedQueryGraph, root); - const rootNode = processor.finalize(dependencyGraphs.flatMap(g => g.process(processor)), false); - debug.groupEnd('Mutation plan computed'); - return { kind: 'QueryPlan', node: rootNode }; - } - else { - const dependencyGraph = computeRootParallelDependencyGraph(supergraphSchema, operation, federatedQueryGraph, root); - const rootNode = processor.finalize(dependencyGraph.process(processor), true); - debug.groupEnd('Query plan computed'); - return { kind: 'QueryPlan', node: rootNode }; - } - } - exports.computeQueryPlan = computeQueryPlan; - function computeRootParallelDependencyGraph(supergraphSchema, operation, federatedQueryGraph, root) { - return computeRootParallelBestPlan(supergraphSchema, operation.selectionSet, operation.variableDefinitions, federatedQueryGraph, root)[0]; - } - function computeRootParallelBestPlan(supergraphSchema, selection, variables, federatedQueryGraph, root) { - const planningTraversal = new QueryPlanningTaversal(supergraphSchema, federatedQueryGraph, selection, variables, root, root.rootKind, defaultCostFunction, query_graphs_1.emptyContext); - const plan = planningTraversal.findBestPlan(); - return plan !== null && plan !== void 0 ? plan : createEmptyPlan(federatedQueryGraph, root); - } - function createEmptyPlan(federatedQueryGraph, root) { - return [ - FetchDependencyGraph.create(federatedQueryGraph), - query_graphs_1.PathTree.createOp(federatedQueryGraph, root), - 0 - ]; - } - function onlyRootSubgraph(graph) { - const subgraphs = graph.rootSubgraphs(); - (0, federation_internals_1.assert)(subgraphs.length === 1, () => `${graph} should have only one root, but has [${graph.rootSubgraphs()}]`); - return subgraphs[0]; - } - function computeRootSerialDependencyGraph(supergraphSchema, operation, federatedQueryGraph, root) { - const splittedRoots = splitTopLevelFields(operation.selectionSet); - const graphs = []; - let [prevDepGraph, prevPaths] = computeRootParallelBestPlan(supergraphSchema, splittedRoots[0], operation.variableDefinitions, federatedQueryGraph, root); - let prevSubgraph = onlyRootSubgraph(prevDepGraph); - for (let i = 1; i < splittedRoots.length; i++) { - const [newDepGraph, newPaths] = computeRootParallelBestPlan(supergraphSchema, splittedRoots[i], operation.variableDefinitions, federatedQueryGraph, root); - const newSubgraph = onlyRootSubgraph(newDepGraph); - if (prevSubgraph === newSubgraph) { - prevPaths = prevPaths.concat(newPaths); - prevDepGraph = computeRootFetchGroups(FetchDependencyGraph.create(federatedQueryGraph), prevPaths, root.rootKind); - } - else { - graphs.push(prevDepGraph); - [prevDepGraph, prevPaths, prevSubgraph] = [newDepGraph, newPaths, newSubgraph]; - } - } - graphs.push(prevDepGraph); - return graphs; - } - function splitTopLevelFields(selectionSet) { - return selectionSet.selections().flatMap(selection => { - if (selection.kind === 'FieldSelection') { - return [(0, federation_internals_1.selectionSetOf)(selectionSet.parentType, selection)]; - } - else { - return splitTopLevelFields(selection.selectionSet).map(s => (0, federation_internals_1.selectionSetOfElement)(selection.element(), s)); - } - }); - } - function fetchGroupToPlanProcessor(variableDefinitions, fragments) { - return { - onFetchGroup: (group) => group.toPlanNode(variableDefinitions, fragments), - reduceParallel: (values) => flatWrap('Parallel', values), - reduceSequence: (values) => flatWrap('Sequence', values), - finalize: (roots, rootsAreParallel) => roots.length == 0 ? undefined : flatWrap(rootsAreParallel ? 'Parallel' : 'Sequence', roots) - }; - } - function addToResponsePath(path, responseName, type) { - path = path.concat(responseName); - while (!(0, federation_internals_1.isNamedType)(type)) { - if ((0, federation_internals_1.isListType)(type)) { - path.push('@'); - } - type = type.ofType; - } - return path; - } - class LazySelectionSet { - constructor(_computed, _toCloneOnWrite) { - this._computed = _computed; - this._toCloneOnWrite = _toCloneOnWrite; - (0, federation_internals_1.assert)(_computed || _toCloneOnWrite, 'Should have one of the argument'); - } - forRead() { - return this._computed ? this._computed : this._toCloneOnWrite; - } - forWrite() { - if (!this._computed) { - this._computed = this._toCloneOnWrite.clone(); - } - return this._computed; - } - clone() { - if (this._computed) { - return new LazySelectionSet(undefined, this._computed); - } - else { - return this; - } - } - toString() { - return this.forRead().toString(); - } - } - class FetchGroup { - constructor(dependencyGraph, index, subgraphName, rootKind, parentType, isEntityFetch, _selection, _inputs, mergeAt) { - this.dependencyGraph = dependencyGraph; - this.index = index; - this.subgraphName = subgraphName; - this.rootKind = rootKind; - this.parentType = parentType; - this.isEntityFetch = isEntityFetch; - this._selection = _selection; - this._inputs = _inputs; - this.mergeAt = mergeAt; - } - static create(dependencyGraph, index, subgraphName, rootKind, parentType, isEntityFetch, mergeAt) { - return new FetchGroup(dependencyGraph, index, subgraphName, rootKind, parentType, isEntityFetch, new LazySelectionSet(new federation_internals_1.SelectionSet(parentType)), isEntityFetch ? new LazySelectionSet(new federation_internals_1.SelectionSet(parentType)) : undefined, mergeAt); - } - clone(newDependencyGraph) { - var _a; - return new FetchGroup(newDependencyGraph, this.index, this.subgraphName, this.rootKind, this.parentType, this.isEntityFetch, this._selection.clone(), (_a = this._inputs) === null || _a === void 0 ? void 0 : _a.clone(), this.mergeAt); - } - get isTopLevel() { - return !this.mergeAt; - } - get selection() { - return this._selection.forRead(); - } - get inputs() { - var _a; - return (_a = this._inputs) === null || _a === void 0 ? void 0 : _a.forRead(); - } - clonedInputs() { - var _a; - return (_a = this._inputs) === null || _a === void 0 ? void 0 : _a.clone(); - } - addDependencyOn(groups) { - this.dependencyGraph.addDependency(this, groups); - } - removeDependencyOn(groups) { - this.dependencyGraph.removeDependency(this, groups); - } - addInputs(selection) { - (0, federation_internals_1.assert)(this._inputs, "Shouldn't try to add inputs to a root fetch group"); - if (selection instanceof federation_internals_1.SelectionSet) { - this._inputs.forWrite().mergeIn(selection); - } - else { - this._inputs.forWrite().add(selection); - } - } - addSelection(path) { - this._selection.forWrite().addPath(path); - } - addSelections(selection) { - this._selection.forWrite().mergeIn(selection); - } - mergeIn(toMerge, mergePath) { - (0, federation_internals_1.assert)(!toMerge.isTopLevel, () => `Shouldn't merge top level group ${toMerge} into ${this}`); - const selectionSet = (0, federation_internals_1.selectionSetOfPath)(mergePath, (endOfPathSet) => { - (0, federation_internals_1.assert)(endOfPathSet, () => `Merge path ${mergePath} ends on a non-selectable type`); - for (const typeCastSel of toMerge.selection.selections()) { - (0, federation_internals_1.assert)(typeCastSel instanceof federation_internals_1.FragmentSelection, () => `Unexpected field selection ${typeCastSel} at top-level of ${toMerge} selection.`); - const entityType = typeCastSel.element().typeCondition; - (0, federation_internals_1.assert)(entityType, () => `Unexpected fragment _without_ condition at start of ${toMerge}`); - if ((0, federation_internals_1.sameType)(endOfPathSet.parentType, entityType)) { - endOfPathSet.mergeIn(typeCastSel.selectionSet); - } - else { - endOfPathSet.add(typeCastSel); - } - } - }); - this._selection.forWrite().mergeIn(selectionSet); - this.dependencyGraph.onMergedIn(this, toMerge); - } - toPlanNode(variableDefinitions, fragments) { - var _a; - addTypenameFieldForAbstractTypes(this.selection); - this.selection.validate(); - const inputs = (_a = this._inputs) === null || _a === void 0 ? void 0 : _a.forRead(); - if (inputs) { - inputs.validate(); - } - const inputNodes = inputs ? inputs.toSelectionSetNode() : undefined; - const operation = this.isEntityFetch - ? operationForEntitiesFetch(this.dependencyGraph.subgraphSchemas.get(this.subgraphName), this.selection, variableDefinitions, fragments) - : operationForQueryFetch(this.rootKind, this.selection, variableDefinitions, fragments); - const fetchNode = { - kind: 'Fetch', - serviceName: this.subgraphName, - requires: inputNodes ? (0, QueryPlan_1.trimSelectionNodes)(inputNodes.selections) : undefined, - variableUsages: this.selection.usedVariables().map(v => v.name), - operation: (0, graphql_1.stripIgnoredCharacters)((0, graphql_1.print)(operation)), - }; - return this.isTopLevel - ? fetchNode - : { - kind: 'Flatten', - path: this.mergeAt, - node: fetchNode, - }; - } - toString() { - return this.isTopLevel - ? `[${this.index}]${this.subgraphName}[${this._selection}]` - : `[${this.index}]${this.subgraphName}@(${this.mergeAt})[${this._inputs} => ${this._selection}]`; - } - } - function removeInPlace(value, array) { - const idx = array.indexOf(value); - if (idx >= 0) { - array.splice(idx, 1); - } - } - function sameMergeAt(m1, m2) { - if (!m1) { - return !m2; - } - if (!m2) { - return false; - } - return (0, federation_internals_1.arrayEquals)(m1, m2); - } - class FetchDependencyGraph { - constructor(subgraphSchemas, federatedQueryGraph, rootGroups, groups, adjacencies, inEdges, pathsInParents) { - this.subgraphSchemas = subgraphSchemas; - this.federatedQueryGraph = federatedQueryGraph; - this.rootGroups = rootGroups; - this.groups = groups; - this.adjacencies = adjacencies; - this.inEdges = inEdges; - this.pathsInParents = pathsInParents; - this.isReduced = false; - } - static create(federatedQueryGraph) { - return new FetchDependencyGraph(federatedQueryGraph.sources, federatedQueryGraph, new federation_internals_1.MapWithCachedArrays(), [], [], [], []); - } - clone() { - const cloned = new FetchDependencyGraph(this.subgraphSchemas, this.federatedQueryGraph, new federation_internals_1.MapWithCachedArrays(), new Array(this.groups.length), this.adjacencies.map(a => a.concat()), this.inEdges.map(a => a.concat()), this.pathsInParents.concat()); - for (let i = 0; i < this.groups.length; i++) { - cloned.groups[i] = this.groups[i].clone(cloned); - } - for (const group of this.rootGroups.values()) { - cloned.rootGroups.set(group.subgraphName, cloned.groups[group.index]); - } - return cloned; - } - getOrCreateRootFetchGroup(subgraphName, rootKind, parentType) { - let group = this.rootGroups.get(subgraphName); - if (!group) { - group = this.createRootFetchGroup(subgraphName, rootKind, parentType); - this.rootGroups.set(subgraphName, group); - } - return group; - } - rootSubgraphs() { - return this.rootGroups.keys(); - } - createRootFetchGroup(subgraphName, rootKind, parentType) { - const group = this.newFetchGroup(subgraphName, parentType, false, rootKind); - this.rootGroups.set(subgraphName, group); - return group; - } - newFetchGroup(subgraphName, parentType, isEntityFetch, rootKind, mergeAt, directParent, pathInParent) { - this.onModification(); - const newGroup = FetchGroup.create(this, this.groups.length, subgraphName, rootKind, parentType, isEntityFetch, mergeAt); - this.groups.push(newGroup); - this.adjacencies.push([]); - this.inEdges.push([]); - if (directParent) { - this.addEdge(directParent.index, newGroup.index, pathInParent); - } - return newGroup; - } - getOrCreateKeyFetchGroup(subgraphName, mergeAt, directParent, pathInParent, conditionsGroups) { - for (const existing of this.dependents(directParent)) { - if (existing.subgraphName === subgraphName - && existing.mergeAt - && sameMergeAt(existing.mergeAt, mergeAt) - && !this.isDependedOn(existing, conditionsGroups)) { - const existingPathInParent = this.pathInParent(existing); - if (pathInParent && existingPathInParent && !(0, federation_internals_1.sameOperationPaths)(existingPathInParent, pathInParent)) { - this.pathsInParents[existing.index] = undefined; - } - return existing; - } - } - const entityType = this.subgraphSchemas.get(subgraphName).type(federation_internals_1.entityTypeName); - return this.newFetchGroup(subgraphName, entityType, true, 'query', mergeAt, directParent, pathInParent); - } - newRootTypeFetchGroup(subgraphName, rootKind, parentType, mergeAt, directParent, pathInParent) { - return this.newFetchGroup(subgraphName, parentType, false, rootKind, mergeAt, directParent, pathInParent); - } - isDependedOn(toCheck, conditions) { - const stack = conditions.concat(); - while (stack.length > 0) { - const group = stack.pop(); - if (toCheck.index === group.index) { - return true; - } - stack.push(...this.dependencies(group)); - } - return false; - } - newKeyFetchGroup(subgraphName, mergeAt) { - const entityType = this.subgraphSchemas.get(subgraphName).type(federation_internals_1.entityTypeName); - return this.newFetchGroup(subgraphName, entityType, true, 'query', mergeAt); - } - addDependency(dependentGroup, dependentOn) { - this.onModification(); - const groups = Array.isArray(dependentOn) ? dependentOn : [dependentOn]; - for (const group of groups) { - this.addEdge(group.index, dependentGroup.index); - } - } - removeDependency(dependentGroup, dependentOn) { - this.onModification(); - const groups = Array.isArray(dependentOn) ? dependentOn : [dependentOn]; - for (const group of groups) { - this.removeEdge(group.index, dependentGroup.index); - } - } - pathInParent(group) { - return this.pathsInParents[group.index]; - } - addEdge(from, to, pathInFrom) { - if (!this.adjacencies[from].includes(to)) { - this.adjacencies[from].push(to); - this.inEdges[to].push(from); - const parentsCount = this.inEdges[to].length; - if (pathInFrom && parentsCount === 1) { - this.pathsInParents[to] = pathInFrom; - } - else if (parentsCount > 1) { - this.pathsInParents[to] = undefined; - } - } - } - removeEdge(from, to) { - if (this.adjacencies[from].includes(to)) { - removeInPlace(to, this.adjacencies[from]); - removeInPlace(from, this.inEdges[to]); - this.pathsInParents[to] = undefined; - } - } - onMergedIn(mergedInto, merged) { - (0, federation_internals_1.assert)(!merged.isTopLevel, "Shouldn't remove top level groups"); - this.onModification(); - this.relocateDependentsOnMergedIn(mergedInto, merged.index); - this.removeInternal(merged.index); - } - relocateDependentsOnMergedIn(mergedInto, mergedIndex) { - for (const dependentIdx of this.adjacencies[mergedIndex]) { - this.addEdge(mergedInto.index, dependentIdx); - const idxInIns = this.inEdges[dependentIdx].indexOf(mergedIndex); - if (idxInIns >= 0) { - this.inEdges[dependentIdx].splice(idxInIns, 1); - } - } - } - remove(group) { - this.onModification(); - const dependents = this.dependents(group); - const dependencies = this.dependencies(group); - (0, federation_internals_1.assert)(dependents.length === 0, () => `Cannot remove group ${group} with dependents [${dependents}]`); - (0, federation_internals_1.assert)(dependencies.length <= 1, () => `Cannot remove group ${group} with more/less than one dependency: [${dependencies}]`); - this.removeInternal(group.index); - } - removeInternal(mergedIndex) { - for (const dependedIdx of this.inEdges[mergedIndex]) { - const idxInAdj = this.adjacencies[dependedIdx].indexOf(mergedIndex); - this.adjacencies[dependedIdx].splice(idxInAdj, 1); - } - this.groups.splice(mergedIndex, 1); - this.adjacencies.splice(mergedIndex, 1); - this.inEdges.splice(mergedIndex, 1); - this.groups.forEach(g => { - if (g.index > mergedIndex) { - --g.index; - } - }); - this.adjacencies.forEach(adj => { - adj.forEach((v, i) => { - if (v > mergedIndex) { - adj[i] = v - 1; - } - }); - }); - this.inEdges.forEach(ins => { - ins.forEach((v, i) => { - if (v > mergedIndex) { - ins[i] = v - 1; - } - }); - }); - } - onModification() { - this.isReduced = false; - } - reduce() { - if (this.isReduced) { - return; - } - for (const group of this.groups) { - for (const adjacent of this.adjacencies[group.index]) { - this.dfsRemoveRedundantEdges(group.index, adjacent); - } - } - for (const group of this.rootGroups.values()) { - this.removeEmptyGroups(group); - } - for (const group of this.rootGroups.values()) { - this.mergeDependentFetchesForSameSubgraphAndPath(group); - } - this.isReduced = true; - } - removeEmptyGroups(group) { - const dependents = this.dependents(group); - if (group.selection.isEmpty()) { - (0, federation_internals_1.assert)(dependents.length === 0, () => `Empty group ${group} has dependents: ${dependents}`); - this.remove(group); - } - for (const g of dependents) { - this.removeEmptyGroups(g); - } - } - mergeDependentFetchesForSameSubgraphAndPath(group) { - const dependents = this.dependents(group); - if (dependents.length > 1) { - for (const g1 of dependents) { - for (const g2 of dependents) { - if (g1.index !== g2.index - && g1.subgraphName === g2.subgraphName - && sameMergeAt(g1.mergeAt, g2.mergeAt) - && this.dependencies(g1).length === 1 - && this.dependencies(g2).length === 1) { - const merged = FetchGroup.create(this, g1.index, g1.subgraphName, g1.rootKind, g1.selection.parentType, g1.isEntityFetch, g1.mergeAt); - this.pathsInParents[g1.index] = undefined; - if (g1.inputs) { - merged.addInputs(g1.inputs); - } - merged.addSelections(g1.selection); - this.groups[merged.index] = merged; - if (g2.inputs) { - merged.addInputs(g2.inputs); - } - merged.addSelections(g2.selection); - this.onMergedIn(merged, g2); - this.mergeDependentFetchesForSameSubgraphAndPath(group); - return; - } - } - } - } - for (const g of dependents) { - this.mergeDependentFetchesForSameSubgraphAndPath(g); - } - } - dependencies(group) { - return this.inEdges[group.index].map(i => this.groups[i]); - } - dependents(group) { - return this.adjacencies[group.index].map(i => this.groups[i]); - } - dfsRemoveRedundantEdges(parentVertex, startVertex) { - const parentAdjacencies = this.adjacencies[parentVertex]; - const stack = [...this.adjacencies[startVertex]]; - while (stack.length > 0) { - const v = stack.pop(); - removeInPlace(v, parentAdjacencies); - removeInPlace(parentVertex, this.inEdges[v]); - stack.push(...this.adjacencies[v]); - } - } - outGroups(group) { - return this.adjacencies[group.index].map(i => this.groups[i]); - } - inGroups(group) { - return this.inEdges[group.index].map(i => this.groups[i]); - } - processGroup(processor, group, isRootGroup) { - const outGroups = this.outGroups(group); - const processed = processor.onFetchGroup(group, isRootGroup); - if (outGroups.length == 0) { - return [processed, []]; - } - const allOutGroupsHaveThisAsIn = outGroups.every(g => this.inGroups(g).length === 1); - if (allOutGroupsHaveThisAsIn) { - const nodes = [processed]; - let nextNodes = outGroups; - let remainingNext = []; - while (nextNodes.length > 0) { - const [node, toHandle, remaining] = this.processParallelGroups(processor, nextNodes, remainingNext); - nodes.push(node); - const [canHandle, newRemaining] = this.mergeRemainings(remainingNext, remaining); - remainingNext = newRemaining; - nextNodes = canHandle.concat(toHandle); - } - return [processor.reduceSequence(nodes), remainingNext]; - } - else { - return [processed, outGroups.map(g => [g, this.inEdges[g.index].filter(e => e !== group.index)])]; - } - } - processParallelGroups(processor, groups, remaining) { - const parallelNodes = []; - let remainingNext = remaining; - const toHandleNext = []; - for (const group of groups) { - const [node, remaining] = this.processGroup(processor, group, false); - parallelNodes.push(node); - const [canHandle, newRemaining] = this.mergeRemainings(remainingNext, remaining); - toHandleNext.push(...canHandle); - remainingNext = newRemaining; - } - return [ - processor.reduceParallel(parallelNodes), - toHandleNext, - remainingNext - ]; - } - mergeRemainings(r1, r2) { - const unhandled = []; - const toHandle = []; - for (const [g, edges] of r1) { - const newEdges = this.mergeRemaingsAndRemoveIfFound(g, edges, r2); - if (newEdges.length == 0) { - toHandle.push(g); - } - else { - unhandled.push([g, newEdges]); - } - } - unhandled.push(...r2); - return [toHandle, unhandled]; - } - mergeRemaingsAndRemoveIfFound(group, inEdges, otherGroups) { - const idx = otherGroups.findIndex(g => g[0].index === group.index); - if (idx < 0) { - return inEdges; - } - else { - const otherEdges = otherGroups[idx][1]; - otherGroups.splice(idx, 1); - return inEdges.filter(e => otherEdges.includes(e)); - } - } - process(processor) { - this.reduce(); - const rootNodes = this.rootGroups.values().map(rootGroup => { - const [node, remaining] = this.processGroup(processor, rootGroup, true); - (0, federation_internals_1.assert)(remaining.length == 0, `A root group should have no remaining groups unhandled`); - return node; - }); - return rootNodes; - } - dumpOnConsole() { - console.log('Groups:'); - for (const group of this.groups) { - console.log(` ${group}`); - } - console.log('Adjacencies:'); - for (const [i, adj] of this.adjacencies.entries()) { - console.log(` ${i} => [${adj.join(', ')}]`); - } - console.log('In-Edges:'); - for (const [i, ins] of this.inEdges.entries()) { - console.log(` ${i} => [${ins.join(', ')}]`); - } - } - toString() { - return this.rootGroups.values().map(g => this.toStringInternal(g, "")).join('\n'); - } - toStringInternal(group, indent) { - const groupDependents = this.adjacencies[group.index]; - return [indent + group.subgraphName + ' <- ' + groupDependents.map(i => this.groups[i].subgraphName).join(', ')] - .concat(groupDependents - .flatMap(g => this.adjacencies[g].length == 0 - ? [] - : this.toStringInternal(this.groups[g], indent + " "))) - .join('\n'); - } - } - function computeRootFetchGroups(dependencyGraph, pathTree, rootKind) { - for (const [edge, _trigger, _conditions, child] of pathTree.childElements()) { - (0, federation_internals_1.assert)(edge !== null, `The root edge should not be null`); - const source = edge.tail.source; - const rootType = edge.tail.type; - const group = dependencyGraph.getOrCreateRootFetchGroup(source, rootKind, rootType); - computeGroupsForTree(dependencyGraph, child, group); - } - return dependencyGraph; - } - function computeNonRootFetchGroups(dependencyGraph, pathTree, rootKind) { - const source = pathTree.vertex.source; - const rootType = pathTree.vertex.type; - (0, federation_internals_1.assert)((0, federation_internals_1.isCompositeType)(rootType), () => `Should not have condition on non-selectable type ${rootType}`); - const group = dependencyGraph.getOrCreateRootFetchGroup(source, rootKind, rootType); - computeGroupsForTree(dependencyGraph, pathTree, group); - return dependencyGraph; - } - function createNewFetchSelectionContext(type, selections, context) { - const typeCast = new federation_internals_1.FragmentElement(type, type.name); - let inputSelection = (0, federation_internals_1.selectionOfElement)(typeCast, selections); - let path = [typeCast]; - if (context.isEmpty()) { - return [inputSelection, path]; - } - const schema = type.schema(); - const [name0, ifs0] = context.directives[0]; - typeCast.applyDirective(schema.directive(name0), { 'if': ifs0 }); - for (let i = 1; i < context.directives.length; i++) { - const [name, ifs] = context.directives[i]; - const fragment = new federation_internals_1.FragmentElement(type, type.name); - fragment.applyDirective(schema.directive(name), { 'if': ifs }); - inputSelection = (0, federation_internals_1.selectionOfElement)(fragment, (0, federation_internals_1.selectionSetOf)(type, inputSelection)); - path = [fragment].concat(path); - } - return [inputSelection, path]; - } - function extractPathInParentForKeyFetch(type, path) { - var _a; - const lastElement = path[path.length - 1]; - return (lastElement && lastElement.kind === 'FragmentElement' && ((_a = lastElement.typeCondition) === null || _a === void 0 ? void 0 : _a.name) === type.name) - ? path.slice(0, path.length - 1) - : path; - } - function computeGroupsForTree(dependencyGraph, pathTree, startGroup, initialMergeAt = [], initialPath = []) { - const stack = [[pathTree, startGroup, initialMergeAt, initialPath]]; - const createdGroups = []; - while (stack.length > 0) { - const [tree, group, mergeAt, path] = stack.pop(); - if (tree.isLeaf()) { - group.addSelection(path); - } - else { - for (const [edge, operation, conditions, child] of tree.childElements(true)) { - if ((0, query_graphs_1.isPathContext)(operation)) { - (0, federation_internals_1.assert)(edge !== null, () => `Unexpected 'null' edge with no trigger at ${path}`); - (0, federation_internals_1.assert)(edge.head.source !== edge.tail.source, () => `Key/Query edge ${edge} should change the underlying subgraph`); - if (edge.transition.kind === 'KeyResolution') { - (0, federation_internals_1.assert)(conditions, () => `Key edge ${edge} should have some conditions paths`); - const groupsForConditions = computeGroupsForTree(dependencyGraph, conditions, group, mergeAt, path); - const type = edge.tail.type; - const pathInParent = extractPathInParentForKeyFetch(type, path); - const newGroup = dependencyGraph.getOrCreateKeyFetchGroup(edge.tail.source, mergeAt, group, pathInParent, groupsForConditions); - createdGroups.push(newGroup); - newGroup.addDependencyOn(groupsForConditions); - const inputSelections = new federation_internals_1.SelectionSet(type); - inputSelections.add(new federation_internals_1.FieldSelection(new federation_internals_1.Field(type.typenameField()))); - inputSelections.mergeIn(edge.conditions); - const [inputs, newPath] = createNewFetchSelectionContext(type, inputSelections, operation); - newGroup.addInputs(inputs); - group.addSelection(path.concat(new federation_internals_1.Field(edge.head.type.typenameField()))); - stack.push([child, newGroup, mergeAt, newPath]); - } - else { - (0, federation_internals_1.assert)(edge.transition.kind === 'RootTypeResolution', () => `Unexpected non-collecting edge ${edge}`); - const rootKind = edge.transition.rootKind; - (0, federation_internals_1.assert)(!conditions, () => `Root type resolution edge ${edge} should not have conditions`); - (0, federation_internals_1.assert)((0, federation_internals_1.isObjectType)(edge.head.type) && (0, federation_internals_1.isObjectType)(edge.tail.type), () => `Expected an objects for the vertices of ${edge}`); - const type = edge.tail.type; - (0, federation_internals_1.assert)(type === type.schema().schemaDefinition.rootType(rootKind), () => `Expected ${type} to be the root ${rootKind} type, but that is ${type.schema().schemaDefinition.rootType(rootKind)}`); - group.addSelection(path.concat(new federation_internals_1.Field(edge.head.type.typenameField()))); - const newGroup = dependencyGraph.newRootTypeFetchGroup(edge.tail.source, rootKind, type, mergeAt, group, path); - const newPath = createNewFetchSelectionContext(type, undefined, operation)[1]; - stack.push([child, newGroup, mergeAt, newPath]); - } - } - else if (edge === null) { - const newPath = operation.appliedDirectives.length === 0 ? path : path.concat(operation); - stack.push([child, group, mergeAt, newPath]); - } - else { - (0, federation_internals_1.assert)(edge.head.source === edge.tail.source, () => `Collecting edge ${edge} for ${operation} should not change the underlying subgraph`); - let updatedGroup = group; - let updatedMergeAt = mergeAt; - let updatedPath = path; - if (conditions) { - [updatedGroup, updatedMergeAt, updatedPath] = handleRequires(dependencyGraph, edge, conditions, group, mergeAt, path); - } - const newMergeAt = operation.kind === 'Field' - ? addToResponsePath(updatedMergeAt, operation.responseName(), edge.transition.definition.type) - : updatedMergeAt; - stack.push([child, updatedGroup, newMergeAt, updatedPath.concat(operation)]); - } - } - } - } - return createdGroups; - } - function addTypenameFieldForAbstractTypes(selectionSet) { - for (const selection of selectionSet.selections()) { - if (selection.kind == 'FieldSelection') { - const fieldBaseType = (0, federation_internals_1.baseType)(selection.field.definition.type); - if ((0, federation_internals_1.isAbstractType)(fieldBaseType)) { - selection.selectionSet.add(new federation_internals_1.FieldSelection(new federation_internals_1.Field(fieldBaseType.typenameField()))); - } - if (selection.selectionSet) { - addTypenameFieldForAbstractTypes(selection.selectionSet); - } - } - else { - addTypenameFieldForAbstractTypes(selection.selectionSet); - } - } - } - function handleRequires(dependencyGraph, edge, requiresConditions, group, mergeAt, path) { - const entityType = edge.head.type; - if (!group.isTopLevel && path.length == 1 && path[0].kind === 'FragmentElement') { - const originalInputs = group.clonedInputs(); - const newGroup = dependencyGraph.newKeyFetchGroup(group.subgraphName, group.mergeAt); - newGroup.addInputs(originalInputs.forRead()); - const createdGroups = computeGroupsForTree(dependencyGraph, requiresConditions, newGroup, mergeAt, path); - if (createdGroups.length == 0) { - group.mergeIn(newGroup, path); - return [group, mergeAt, path]; - } - const newGroupIsUseless = newGroup.inputs.contains(newGroup.selection); - const parents = dependencyGraph.dependencies(group); - const pathInParent = dependencyGraph.pathInParent(group); - const unmergedGroups = []; - if (newGroupIsUseless) { - for (const created of createdGroups) { - if (pathInParent - && created.subgraphName === parents[0].subgraphName - && sameMergeAt(created.mergeAt, group.mergeAt)) { - parents[0].mergeIn(created, pathInParent); - } - else { - created.removeDependencyOn(newGroup); - created.addDependencyOn(parents); - unmergedGroups.push(created); - } - } - dependencyGraph.remove(newGroup); - } - else { - group.mergeIn(newGroup, path); - for (const created of createdGroups) { - if (pathInParent - && created.subgraphName === parents[0].subgraphName - && sameMergeAt(created.mergeAt, group.mergeAt) - && originalInputs.forRead().contains(created.inputs)) { - parents[0].mergeIn(created, pathInParent); - } - else { - unmergedGroups.push(created); - } - } - } - if (unmergedGroups.length == 0) { - group.addInputs(inputsForRequire(dependencyGraph.federatedQueryGraph, entityType, edge, false)[0]); - return [group, mergeAt, path]; - } - const postRequireGroup = dependencyGraph.newKeyFetchGroup(group.subgraphName, group.mergeAt); - postRequireGroup.addDependencyOn(unmergedGroups); - const [inputs, newPath] = inputsForRequire(dependencyGraph.federatedQueryGraph, entityType, edge); - postRequireGroup.addInputs(inputs); - return [postRequireGroup, mergeAt, newPath]; - } - else { - const createdGroups = computeGroupsForTree(dependencyGraph, requiresConditions, group, mergeAt, path); - if (createdGroups.length == 0) { - return [group, mergeAt, path]; - } - const newGroup = dependencyGraph.newKeyFetchGroup(group.subgraphName, mergeAt); - newGroup.addDependencyOn(createdGroups); - const [inputs, newPath] = inputsForRequire(dependencyGraph.federatedQueryGraph, entityType, edge); - newGroup.addInputs(inputs); - return [newGroup, mergeAt, newPath]; - } - } - function inputsForRequire(graph, entityType, edge, includeKeyInputs = true) { - const typeCast = new federation_internals_1.FragmentElement(entityType, entityType.name); - const fullSelectionSet = new federation_internals_1.SelectionSet(entityType); - fullSelectionSet.add(new federation_internals_1.FieldSelection(new federation_internals_1.Field(entityType.typenameField()))); - fullSelectionSet.mergeIn(edge.conditions); - if (includeKeyInputs) { - const keyCondition = (0, query_graphs_1.getLocallySatisfiableKey)(graph, edge.head); - (0, federation_internals_1.assert)(keyCondition, () => `Due to @require, validation should have required a key to be present for ${edge}`); - fullSelectionSet.mergeIn(keyCondition); - } - return [(0, federation_internals_1.selectionOfElement)(typeCast, fullSelectionSet), [typeCast]]; - } - const representationsVariable = new federation_internals_1.Variable('representations'); - function representationsVariableDefinition(schema) { - const anyType = schema.type('_Any'); - (0, federation_internals_1.assert)(anyType, `Cannot find _Any type in schema`); - const representationsType = new federation_internals_1.NonNullType(new federation_internals_1.ListType(new federation_internals_1.NonNullType(anyType))); - return new federation_internals_1.VariableDefinition(schema, representationsVariable, representationsType); - } - function operationForEntitiesFetch(subgraphSchema, selectionSet, allVariableDefinitions, fragments) { - const variableDefinitions = new federation_internals_1.VariableDefinitions(); - variableDefinitions.add(representationsVariableDefinition(subgraphSchema)); - variableDefinitions.addAll(allVariableDefinitions.filter(selectionSet.usedVariables())); - const queryType = subgraphSchema.schemaDefinition.rootType('query'); - (0, federation_internals_1.assert)(queryType, `Subgraphs should always have a query root (they should at least provides _entities)`); - const entities = queryType.field('_entities'); - (0, federation_internals_1.assert)(entities, `Subgraphs should always have the _entities field`); - const entitiesCall = new federation_internals_1.SelectionSet(queryType); - entitiesCall.add(new federation_internals_1.FieldSelection(new federation_internals_1.Field(entities, { 'representations': representationsVariable }, variableDefinitions), selectionSet)); - return (0, federation_internals_1.operationToDocument)(new federation_internals_1.Operation('query', entitiesCall, variableDefinitions).optimize(fragments)); - } - function flatWrap(kind, nodes) { - (0, federation_internals_1.assert)(nodes.length !== 0, 'programming error: should always be called with nodes'); - if (nodes.length === 1) { - return nodes[0]; - } - return { - kind, - nodes: nodes.flatMap(n => (n.kind === kind ? n.nodes : [n])), - }; - } - function operationForQueryFetch(rootKind, selectionSet, allVariableDefinitions, fragments) { - const operation = new federation_internals_1.Operation(rootKind, selectionSet, allVariableDefinitions.filter(selectionSet.usedVariables())).optimize(fragments); - return (0, federation_internals_1.operationToDocument)(operation); - } - - }(buildPlan)); - - (function (exports) { - var __createBinding = (commonjsGlobal && commonjsGlobal.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); - }) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; - })); - var __exportStar = (commonjsGlobal && commonjsGlobal.__exportStar) || function(m, exports) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); - }; - Object.defineProperty(exports, "__esModule", { value: true }); - exports.QueryPlanner = exports.prettyFormatQueryPlan = exports.astSerializer = exports.queryPlanSerializer = void 0; - var snapshotSerializers_1 = snapshotSerializers; - Object.defineProperty(exports, "queryPlanSerializer", { enumerable: true, get: function () { return snapshotSerializers_1.queryPlanSerializer; } }); - Object.defineProperty(exports, "astSerializer", { enumerable: true, get: function () { return snapshotSerializers_1.astSerializer; } }); - var prettyFormatQueryPlan_1 = prettyFormatQueryPlan$1; - Object.defineProperty(exports, "prettyFormatQueryPlan", { enumerable: true, get: function () { return prettyFormatQueryPlan_1.prettyFormatQueryPlan; } }); - __exportStar(QueryPlan, exports); - const query_graphs_1 = dist$2; - const buildPlan_1 = buildPlan; - class QueryPlanner { - constructor(supergraphSchema) { - this.supergraphSchema = supergraphSchema; - this.federatedQueryGraph = (0, query_graphs_1.buildFederatedQueryGraph)(supergraphSchema, true); - } - buildQueryPlan(operation) { - if (operation.selectionSet.isEmpty()) { - return { kind: 'QueryPlan' }; - } - return (0, buildPlan_1.computeQueryPlan)(this.supergraphSchema, this.federatedQueryGraph, operation); - } - } - exports.QueryPlanner = QueryPlanner; - - }(dist$3)); - - Object.defineProperty(plan$1, "__esModule", { value: true }); - plan$1.plan = void 0; - const graphql_1 = require$$0$2; - const query_planner_1 = dist$3; - const federation_internals_1 = dist$1; - function plan(schemaString, operationString, operationName) { - try { - const composedSchema = (0, federation_internals_1.buildSchema)(schemaString); - const operationDocument = (0, graphql_1.parse)(operationString); - const operation = (0, federation_internals_1.operationFromDocument)(composedSchema, operationDocument, operationName); - const planner = new query_planner_1.QueryPlanner(composedSchema); - return { data: planner.buildQueryPlan(operation) }; - } - catch (e) { - return { errors: [e] }; - } - } - plan$1.plan = plan; - - (function (exports) { - Object.defineProperty(exports, "__esModule", { value: true }); - exports.plan = exports.batchIntrospect = exports.introspect = void 0; - var introspection_1 = introspection$1; - Object.defineProperty(exports, "introspect", { enumerable: true, get: function () { return introspection_1.introspect; } }); - Object.defineProperty(exports, "batchIntrospect", { enumerable: true, get: function () { return introspection_1.batchIntrospect; } }); - var plan_1 = plan$1; - Object.defineProperty(exports, "plan", { enumerable: true, get: function () { return plan_1.plan; } }); - - }(jsDist)); - - var index = /*@__PURE__*/getDefaultExportFromCjs(jsDist); - - return index; - -})(whatwg_url_1); -//# sourceMappingURL=bridge.js.map diff --git a/router-bridge/bundled/bridge.js.map b/router-bridge/bundled/bridge.js.map deleted file mode 100644 index 2b7648e75..000000000 --- a/router-bridge/bundled/bridge.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"bridge.js","sources":["../../node_modules/graphql/version.mjs","../../node_modules/graphql/jsutils/devAssert.mjs","../../node_modules/graphql/jsutils/isPromise.mjs","../../node_modules/graphql/jsutils/isObjectLike.mjs","../../node_modules/graphql/jsutils/invariant.mjs","../../node_modules/graphql/language/location.mjs","../../node_modules/graphql/language/printLocation.mjs","../../node_modules/graphql/error/GraphQLError.mjs","../../node_modules/graphql/error/syntaxError.mjs","../../node_modules/graphql/language/ast.mjs","../../node_modules/graphql/language/directiveLocation.mjs","../../node_modules/graphql/language/kinds.mjs","../../node_modules/graphql/language/characterClasses.mjs","../../node_modules/graphql/language/blockString.mjs","../../node_modules/graphql/language/tokenKind.mjs","../../node_modules/graphql/language/lexer.mjs","../../node_modules/graphql/jsutils/inspect.mjs","../../node_modules/graphql/jsutils/instanceOf.mjs","../../node_modules/graphql/language/source.mjs","../../node_modules/graphql/language/parser.mjs","../../node_modules/graphql/jsutils/didYouMean.mjs","../../node_modules/graphql/jsutils/identityFunc.mjs","../../node_modules/graphql/jsutils/keyMap.mjs","../../node_modules/graphql/jsutils/keyValMap.mjs","../../node_modules/graphql/jsutils/mapValue.mjs","../../node_modules/graphql/jsutils/naturalCompare.mjs","../../node_modules/graphql/jsutils/suggestionList.mjs","../../node_modules/graphql/jsutils/toObjMap.mjs","../../node_modules/graphql/language/printString.mjs","../../node_modules/graphql/language/visitor.mjs","../../node_modules/graphql/language/printer.mjs","../../node_modules/graphql/utilities/valueFromASTUntyped.mjs","../../node_modules/graphql/type/assertName.mjs","../../node_modules/graphql/type/definition.mjs","../../node_modules/graphql/utilities/typeComparators.mjs","../../node_modules/graphql/type/scalars.mjs","../../node_modules/graphql/type/directives.mjs","../../node_modules/graphql/jsutils/isIterableObject.mjs","../../node_modules/graphql/utilities/astFromValue.mjs","../../node_modules/graphql/type/introspection.mjs","../../node_modules/graphql/type/schema.mjs","../../node_modules/graphql/type/validate.mjs","../../node_modules/graphql/utilities/typeFromAST.mjs","../../node_modules/graphql/utilities/TypeInfo.mjs","../../node_modules/graphql/language/predicates.mjs","../../node_modules/graphql/validation/rules/ExecutableDefinitionsRule.mjs","../../node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.mjs","../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.mjs","../../node_modules/graphql/validation/rules/KnownArgumentNamesRule.mjs","../../node_modules/graphql/validation/rules/KnownDirectivesRule.mjs","../../node_modules/graphql/validation/rules/KnownFragmentNamesRule.mjs","../../node_modules/graphql/validation/rules/KnownTypeNamesRule.mjs","../../node_modules/graphql/validation/rules/LoneAnonymousOperationRule.mjs","../../node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.mjs","../../node_modules/graphql/validation/rules/NoFragmentCyclesRule.mjs","../../node_modules/graphql/validation/rules/NoUndefinedVariablesRule.mjs","../../node_modules/graphql/validation/rules/NoUnusedFragmentsRule.mjs","../../node_modules/graphql/validation/rules/NoUnusedVariablesRule.mjs","../../node_modules/graphql/utilities/sortValueNode.mjs","../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.mjs","../../node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.mjs","../../node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.mjs","../../node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.mjs","../../node_modules/graphql/validation/rules/ScalarLeafsRule.mjs","../../node_modules/graphql/jsutils/printPathArray.mjs","../../node_modules/graphql/jsutils/Path.mjs","../../node_modules/graphql/utilities/coerceInputValue.mjs","../../node_modules/graphql/utilities/valueFromAST.mjs","../../node_modules/graphql/execution/values.mjs","../../node_modules/graphql/execution/collectFields.mjs","../../node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.mjs","../../node_modules/graphql/jsutils/groupBy.mjs","../../node_modules/graphql/validation/rules/UniqueArgumentDefinitionNamesRule.mjs","../../node_modules/graphql/validation/rules/UniqueArgumentNamesRule.mjs","../../node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.mjs","../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.mjs","../../node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.mjs","../../node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.mjs","../../node_modules/graphql/validation/rules/UniqueFragmentNamesRule.mjs","../../node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.mjs","../../node_modules/graphql/validation/rules/UniqueOperationNamesRule.mjs","../../node_modules/graphql/validation/rules/UniqueOperationTypesRule.mjs","../../node_modules/graphql/validation/rules/UniqueTypeNamesRule.mjs","../../node_modules/graphql/validation/rules/UniqueVariableNamesRule.mjs","../../node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.mjs","../../node_modules/graphql/validation/rules/VariablesAreInputTypesRule.mjs","../../node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.mjs","../../node_modules/graphql/validation/specifiedRules.mjs","../../node_modules/graphql/validation/ValidationContext.mjs","../../node_modules/graphql/validation/validate.mjs","../../node_modules/graphql/jsutils/memoize3.mjs","../../node_modules/graphql/jsutils/promiseForObject.mjs","../../node_modules/graphql/jsutils/promiseReduce.mjs","../../node_modules/graphql/jsutils/toError.mjs","../../node_modules/graphql/error/locatedError.mjs","../../node_modules/graphql/execution/execute.mjs","../../node_modules/graphql/graphql.mjs","../../node_modules/graphql/jsutils/isAsyncIterable.mjs","../../node_modules/graphql/execution/mapAsyncIterator.mjs","../../node_modules/graphql/execution/subscribe.mjs","../../node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.mjs","../../node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.mjs","../../node_modules/graphql/utilities/getIntrospectionQuery.mjs","../../node_modules/graphql/utilities/getOperationAST.mjs","../../node_modules/graphql/utilities/getOperationRootType.mjs","../../node_modules/graphql/utilities/introspectionFromSchema.mjs","../../node_modules/graphql/utilities/buildClientSchema.mjs","../../node_modules/graphql/utilities/extendSchema.mjs","../../node_modules/graphql/utilities/buildASTSchema.mjs","../../node_modules/graphql/utilities/lexicographicSortSchema.mjs","../../node_modules/graphql/utilities/printSchema.mjs","../../node_modules/graphql/utilities/concatAST.mjs","../../node_modules/graphql/utilities/separateOperations.mjs","../../node_modules/graphql/utilities/stripIgnoredCharacters.mjs","../../node_modules/graphql/utilities/assertValidName.mjs","../../node_modules/graphql/utilities/findBreakingChanges.mjs","../../node_modules/graphql/index.mjs","../js-dist/introspection.js","../../query-planner-js/dist/snapshotSerializers/queryPlanSerializer.js","../../query-planner-js/dist/snapshotSerializers/astSerializer.js","../../query-planner-js/dist/snapshotSerializers/index.js","../../node_modules/pretty-format/node_modules/ansi-styles/index.js","../../node_modules/pretty-format/build/collections.js","../../node_modules/pretty-format/build/plugins/AsymmetricMatcher.js","../../node_modules/ansi-regex/index.js","../../node_modules/pretty-format/build/plugins/ConvertAnsi.js","../../node_modules/pretty-format/build/plugins/DOMCollection.js","../../node_modules/pretty-format/build/plugins/lib/escapeHTML.js","../../node_modules/pretty-format/build/plugins/lib/markup.js","../../node_modules/pretty-format/build/plugins/DOMElement.js","../../node_modules/pretty-format/build/plugins/Immutable.js","../../node_modules/pretty-format/node_modules/react-is/cjs/react-is.production.min.js","../../node_modules/pretty-format/node_modules/react-is/cjs/react-is.development.js","../../node_modules/pretty-format/node_modules/react-is/index.js","../../node_modules/pretty-format/build/plugins/ReactElement.js","../../node_modules/pretty-format/build/plugins/ReactTestComponent.js","../../node_modules/pretty-format/build/index.js","../../query-planner-js/dist/prettyFormatQueryPlan.js","../../query-planner-js/dist/QueryPlan.js","../../internals-js/dist/types.js","../../node_modules/@apollo/core-schema/dist/error.js","../../node_modules/@apollo/core-schema/dist/core.js","../../node_modules/@apollo/core-schema/dist/version.js","../../node_modules/@apollo/core-schema/dist/feature-url.js","../../node_modules/@apollo/core-schema/dist/names.js","../../node_modules/@apollo/core-schema/dist/features.js","../../node_modules/@apollo/core-schema/dist/is.js","../../node_modules/@apollo/core-schema/dist/schema.js","../../node_modules/@apollo/core-schema/dist/errors.js","../../node_modules/@apollo/core-schema/dist/index.js","../../internals-js/dist/utils.js","../../internals-js/dist/coreSpec.js","../../node_modules/js-levenshtein/index.js","../../internals-js/dist/suggestions.js","../../node_modules/rollup-plugin-node-polyfills/polyfills/process-es6.js","../../node_modules/rollup-plugin-node-polyfills/polyfills/inherits.js","../../node_modules/rollup-plugin-node-polyfills/polyfills/util.js","../../internals-js/dist/values.js","../../internals-js/dist/inaccessibleSpec.js","../../internals-js/dist/print.js","../../internals-js/dist/introspection.js","../../internals-js/dist/validate.js","../../internals-js/dist/definitions.js","../../internals-js/dist/buildSchema.js","../../internals-js/dist/validation/KnownTypeNamesInFederationRule.js","../../internals-js/dist/operations.js","../../internals-js/dist/error.js","../../internals-js/dist/tagSpec.js","../../internals-js/dist/federation.js","../../node_modules/color-name/index.js","../../node_modules/color-convert/conversions.js","../../node_modules/color-convert/route.js","../../node_modules/color-convert/index.js","../../node_modules/ansi-styles/index.js","../../node_modules/rollup-plugin-node-polyfills/polyfills/os.js","../../node_modules/rollup-plugin-node-polyfills/polyfills/tty.js","../../node_modules/has-flag/index.js","../../node_modules/supports-color/index.js","../../node_modules/chalk/source/util.js","../../node_modules/chalk/source/templates.js","../../node_modules/chalk/source/index.js","../../node_modules/rollup-plugin-node-polyfills/polyfills/console.js","../../internals-js/dist/debug.js","../../internals-js/dist/joinSpec.js","../../node_modules/rollup-plugin-node-polyfills/polyfills/empty.js","../../node_modules/rollup-plugin-node-polyfills/polyfills/path.js","../../internals-js/dist/extractSubgraphsFromSupergraph.js","../../internals-js/dist/supergraphs.js","../../internals-js/dist/index.js","../../query-graphs-js/dist/transition.js","../../query-graphs-js/dist/structuralSubtyping.js","../../query-graphs-js/dist/querygraph.js","../../node_modules/object-keys/isArguments.js","../../node_modules/object-keys/implementation.js","../../node_modules/object-keys/index.js","../../node_modules/has-symbols/shams.js","../../node_modules/has-tostringtag/shams.js","../../node_modules/has-symbols/index.js","../../node_modules/function-bind/implementation.js","../../node_modules/function-bind/index.js","../../node_modules/has/src/index.js","../../node_modules/get-intrinsic/index.js","../../node_modules/call-bind/index.js","../../node_modules/call-bind/callBound.js","../../node_modules/is-arguments/index.js","../../node_modules/define-properties/index.js","../../node_modules/object-is/implementation.js","../../node_modules/object-is/polyfill.js","../../node_modules/object-is/shim.js","../../node_modules/object-is/index.js","../../node_modules/is-regex/index.js","../../node_modules/regexp.prototype.flags/implementation.js","../../node_modules/regexp.prototype.flags/polyfill.js","../../node_modules/regexp.prototype.flags/shim.js","../../node_modules/regexp.prototype.flags/index.js","../../node_modules/deep-equal/node_modules/isarray/index.js","../../node_modules/is-date-object/index.js","../../node_modules/is-string/index.js","../../node_modules/is-number-object/index.js","../../node_modules/is-boolean-object/index.js","../../node_modules/is-symbol/index.js","../../node_modules/has-bigints/index.js","../../node_modules/is-bigint/index.js","../../node_modules/which-boxed-primitive/index.js","../../node_modules/is-map/index.js","../../node_modules/is-set/index.js","../../node_modules/is-weakmap/index.js","../../node_modules/is-weakset/index.js","../../node_modules/which-collection/index.js","../../node_modules/es-get-iterator/node.js","../../node_modules/object-inspect/util.inspect.js","../../node_modules/object-inspect/index.js","../../node_modules/side-channel/index.js","../../node_modules/foreach/index.js","../../node_modules/available-typed-arrays/index.js","../../node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js","../../node_modules/is-typed-array/index.js","../../node_modules/which-typed-array/index.js","../../node_modules/object.assign/implementation.js","../../node_modules/object.assign/polyfill.js","../../node_modules/object.assign/shim.js","../../node_modules/object.assign/index.js","../../node_modules/deep-equal/index.js","../../query-graphs-js/dist/pathContext.js","../../query-graphs-js/dist/pathTree.js","../../query-graphs-js/dist/graphPath.js","../../node_modules/ts-graphviz/lib/index.js","../../query-graphs-js/dist/graphviz.js","../../query-graphs-js/dist/conditionsCaching.js","../../query-graphs-js/dist/index.js","../../query-planner-js/dist/buildPlan.js","../../query-planner-js/dist/index.js","../js-dist/plan.js","../js-dist/index.js"],"sourcesContent":["// Note: This file is autogenerated using \"resources/gen-version.js\" script and\n// automatically updated by \"npm version\" command.\n\n/**\n * A string containing the version of the GraphQL.js library\n */\nexport const version = '16.3.0';\n/**\n * An object containing the components of the GraphQL.js version string\n */\n\nexport const versionInfo = Object.freeze({\n major: 16,\n minor: 3,\n patch: 0,\n preReleaseTag: null,\n});\n","export function devAssert(condition, message) {\n const booleanCondition = Boolean(condition);\n\n if (!booleanCondition) {\n throw new Error(message);\n }\n}\n","/**\n * Returns true if the value acts like a Promise, i.e. has a \"then\" function,\n * otherwise returns false.\n */\nexport function isPromise(value) {\n return (\n typeof (value === null || value === void 0 ? void 0 : value.then) ===\n 'function'\n );\n}\n","/**\n * Return true if `value` is object-like. A value is object-like if it's not\n * `null` and has a `typeof` result of \"object\".\n */\nexport function isObjectLike(value) {\n return typeof value == 'object' && value !== null;\n}\n","export function invariant(condition, message) {\n const booleanCondition = Boolean(condition);\n\n if (!booleanCondition) {\n throw new Error(\n message != null ? message : 'Unexpected invariant triggered.',\n );\n }\n}\n","import { invariant } from '../jsutils/invariant.mjs';\nconst LineRegExp = /\\r\\n|[\\n\\r]/g;\n/**\n * Represents a location in a Source.\n */\n\n/**\n * Takes a Source and a UTF-8 character offset, and returns the corresponding\n * line and column as a SourceLocation.\n */\nexport function getLocation(source, position) {\n let lastLineStart = 0;\n let line = 1;\n\n for (const match of source.body.matchAll(LineRegExp)) {\n typeof match.index === 'number' || invariant(false);\n\n if (match.index >= position) {\n break;\n }\n\n lastLineStart = match.index + match[0].length;\n line += 1;\n }\n\n return {\n line,\n column: position + 1 - lastLineStart,\n };\n}\n","import { getLocation } from './location.mjs';\n\n/**\n * Render a helpful description of the location in the GraphQL Source document.\n */\nexport function printLocation(location) {\n return printSourceLocation(\n location.source,\n getLocation(location.source, location.start),\n );\n}\n/**\n * Render a helpful description of the location in the GraphQL Source document.\n */\n\nexport function printSourceLocation(source, sourceLocation) {\n const firstLineColumnOffset = source.locationOffset.column - 1;\n const body = ''.padStart(firstLineColumnOffset) + source.body;\n const lineIndex = sourceLocation.line - 1;\n const lineOffset = source.locationOffset.line - 1;\n const lineNum = sourceLocation.line + lineOffset;\n const columnOffset = sourceLocation.line === 1 ? firstLineColumnOffset : 0;\n const columnNum = sourceLocation.column + columnOffset;\n const locationStr = `${source.name}:${lineNum}:${columnNum}\\n`;\n const lines = body.split(/\\r\\n|[\\n\\r]/g);\n const locationLine = lines[lineIndex]; // Special case for minified documents\n\n if (locationLine.length > 120) {\n const subLineIndex = Math.floor(columnNum / 80);\n const subLineColumnNum = columnNum % 80;\n const subLines = [];\n\n for (let i = 0; i < locationLine.length; i += 80) {\n subLines.push(locationLine.slice(i, i + 80));\n }\n\n return (\n locationStr +\n printPrefixedLines([\n [`${lineNum} |`, subLines[0]],\n ...subLines.slice(1, subLineIndex + 1).map((subLine) => ['|', subLine]),\n ['|', '^'.padStart(subLineColumnNum)],\n ['|', subLines[subLineIndex + 1]],\n ])\n );\n }\n\n return (\n locationStr +\n printPrefixedLines([\n // Lines specified like this: [\"prefix\", \"string\"],\n [`${lineNum - 1} |`, lines[lineIndex - 1]],\n [`${lineNum} |`, locationLine],\n ['|', '^'.padStart(columnNum)],\n [`${lineNum + 1} |`, lines[lineIndex + 1]],\n ])\n );\n}\n\nfunction printPrefixedLines(lines) {\n const existingLines = lines.filter(([_, line]) => line !== undefined);\n const padLen = Math.max(...existingLines.map(([prefix]) => prefix.length));\n return existingLines\n .map(([prefix, line]) => prefix.padStart(padLen) + (line ? ' ' + line : ''))\n .join('\\n');\n}\n","import { isObjectLike } from '../jsutils/isObjectLike.mjs';\nimport { getLocation } from '../language/location.mjs';\nimport {\n printLocation,\n printSourceLocation,\n} from '../language/printLocation.mjs';\n\nfunction toNormalizedArgs(args) {\n const firstArg = args[0];\n\n if (firstArg == null || 'kind' in firstArg || 'length' in firstArg) {\n return {\n nodes: firstArg,\n source: args[1],\n positions: args[2],\n path: args[3],\n originalError: args[4],\n extensions: args[5],\n };\n }\n\n return firstArg;\n}\n/**\n * A GraphQLError describes an Error found during the parse, validate, or\n * execute phases of performing a GraphQL operation. In addition to a message\n * and stack trace, it also includes information about the locations in a\n * GraphQL document and/or execution result that correspond to the Error.\n */\n\nexport class GraphQLError extends Error {\n /**\n * An array of `{ line, column }` locations within the source GraphQL document\n * which correspond to this error.\n *\n * Errors during validation often contain multiple locations, for example to\n * point out two things with the same name. Errors during execution include a\n * single location, the field which produced the error.\n *\n * Enumerable, and appears in the result of JSON.stringify().\n */\n\n /**\n * An array describing the JSON-path into the execution response which\n * corresponds to this error. Only included for errors during execution.\n *\n * Enumerable, and appears in the result of JSON.stringify().\n */\n\n /**\n * An array of GraphQL AST Nodes corresponding to this error.\n */\n\n /**\n * The source GraphQL document for the first location of this error.\n *\n * Note that if this Error represents more than one node, the source may not\n * represent nodes after the first node.\n */\n\n /**\n * An array of character offsets within the source GraphQL document\n * which correspond to this error.\n */\n\n /**\n * The original error thrown from a field resolver during execution.\n */\n\n /**\n * Extension fields to add to the formatted error.\n */\n\n /**\n * @deprecated Please use the `GraphQLErrorArgs` constructor overload instead.\n */\n constructor(message, ...rawArgs) {\n var _this$nodes, _nodeLocations$, _ref;\n\n const { nodes, source, positions, path, originalError, extensions } =\n toNormalizedArgs(rawArgs);\n super(message);\n this.name = 'GraphQLError';\n this.path = path !== null && path !== void 0 ? path : undefined;\n this.originalError =\n originalError !== null && originalError !== void 0\n ? originalError\n : undefined; // Compute list of blame nodes.\n\n this.nodes = undefinedIfEmpty(\n Array.isArray(nodes) ? nodes : nodes ? [nodes] : undefined,\n );\n const nodeLocations = undefinedIfEmpty(\n (_this$nodes = this.nodes) === null || _this$nodes === void 0\n ? void 0\n : _this$nodes.map((node) => node.loc).filter((loc) => loc != null),\n ); // Compute locations in the source for the given nodes/positions.\n\n this.source =\n source !== null && source !== void 0\n ? source\n : nodeLocations === null || nodeLocations === void 0\n ? void 0\n : (_nodeLocations$ = nodeLocations[0]) === null ||\n _nodeLocations$ === void 0\n ? void 0\n : _nodeLocations$.source;\n this.positions =\n positions !== null && positions !== void 0\n ? positions\n : nodeLocations === null || nodeLocations === void 0\n ? void 0\n : nodeLocations.map((loc) => loc.start);\n this.locations =\n positions && source\n ? positions.map((pos) => getLocation(source, pos))\n : nodeLocations === null || nodeLocations === void 0\n ? void 0\n : nodeLocations.map((loc) => getLocation(loc.source, loc.start));\n const originalExtensions = isObjectLike(\n originalError === null || originalError === void 0\n ? void 0\n : originalError.extensions,\n )\n ? originalError === null || originalError === void 0\n ? void 0\n : originalError.extensions\n : undefined;\n this.extensions =\n (_ref =\n extensions !== null && extensions !== void 0\n ? extensions\n : originalExtensions) !== null && _ref !== void 0\n ? _ref\n : Object.create(null); // Only properties prescribed by the spec should be enumerable.\n // Keep the rest as non-enumerable.\n\n Object.defineProperties(this, {\n message: {\n writable: true,\n enumerable: true,\n },\n name: {\n enumerable: false,\n },\n nodes: {\n enumerable: false,\n },\n source: {\n enumerable: false,\n },\n positions: {\n enumerable: false,\n },\n originalError: {\n enumerable: false,\n },\n }); // Include (non-enumerable) stack trace.\n\n /* c8 ignore start */\n // FIXME: https://github.com/graphql/graphql-js/issues/2317\n\n if (\n originalError !== null &&\n originalError !== void 0 &&\n originalError.stack\n ) {\n Object.defineProperty(this, 'stack', {\n value: originalError.stack,\n writable: true,\n configurable: true,\n });\n } else if (Error.captureStackTrace) {\n Error.captureStackTrace(this, GraphQLError);\n } else {\n Object.defineProperty(this, 'stack', {\n value: Error().stack,\n writable: true,\n configurable: true,\n });\n }\n /* c8 ignore stop */\n }\n\n get [Symbol.toStringTag]() {\n return 'GraphQLError';\n }\n\n toString() {\n let output = this.message;\n\n if (this.nodes) {\n for (const node of this.nodes) {\n if (node.loc) {\n output += '\\n\\n' + printLocation(node.loc);\n }\n }\n } else if (this.source && this.locations) {\n for (const location of this.locations) {\n output += '\\n\\n' + printSourceLocation(this.source, location);\n }\n }\n\n return output;\n }\n\n toJSON() {\n const formattedError = {\n message: this.message,\n };\n\n if (this.locations != null) {\n formattedError.locations = this.locations;\n }\n\n if (this.path != null) {\n formattedError.path = this.path;\n }\n\n if (this.extensions != null && Object.keys(this.extensions).length > 0) {\n formattedError.extensions = this.extensions;\n }\n\n return formattedError;\n }\n}\n\nfunction undefinedIfEmpty(array) {\n return array === undefined || array.length === 0 ? undefined : array;\n}\n/**\n * See: https://spec.graphql.org/draft/#sec-Errors\n */\n\n/**\n * Prints a GraphQLError to a string, representing useful location information\n * about the error's position in the source.\n *\n * @deprecated Please use `error.toString` instead. Will be removed in v17\n */\nexport function printError(error) {\n return error.toString();\n}\n/**\n * Given a GraphQLError, format it according to the rules described by the\n * Response Format, Errors section of the GraphQL Specification.\n *\n * @deprecated Please use `error.toString` instead. Will be removed in v17\n */\n\nexport function formatError(error) {\n return error.toJSON();\n}\n","import { GraphQLError } from './GraphQLError.mjs';\n/**\n * Produces a GraphQLError representing a syntax error, containing useful\n * descriptive information about the syntax error's position in the source.\n */\n\nexport function syntaxError(source, position, description) {\n return new GraphQLError(`Syntax Error: ${description}`, undefined, source, [\n position,\n ]);\n}\n","/**\n * Contains a range of UTF-8 character offsets and token references that\n * identify the region of the source from which the AST derived.\n */\nexport class Location {\n /**\n * The character offset at which this Node begins.\n */\n\n /**\n * The character offset at which this Node ends.\n */\n\n /**\n * The Token at which this Node begins.\n */\n\n /**\n * The Token at which this Node ends.\n */\n\n /**\n * The Source document the AST represents.\n */\n constructor(startToken, endToken, source) {\n this.start = startToken.start;\n this.end = endToken.end;\n this.startToken = startToken;\n this.endToken = endToken;\n this.source = source;\n }\n\n get [Symbol.toStringTag]() {\n return 'Location';\n }\n\n toJSON() {\n return {\n start: this.start,\n end: this.end,\n };\n }\n}\n/**\n * Represents a range of characters represented by a lexical token\n * within a Source.\n */\n\nexport class Token {\n /**\n * The kind of Token.\n */\n\n /**\n * The character offset at which this Node begins.\n */\n\n /**\n * The character offset at which this Node ends.\n */\n\n /**\n * The 1-indexed line number on which this Token appears.\n */\n\n /**\n * The 1-indexed column number at which this Token begins.\n */\n\n /**\n * For non-punctuation tokens, represents the interpreted value of the token.\n *\n * Note: is undefined for punctuation tokens, but typed as string for\n * convenience in the parser.\n */\n\n /**\n * Tokens exist as nodes in a double-linked-list amongst all tokens\n * including ignored tokens. is always the first node and \n * the last.\n */\n constructor(kind, start, end, line, column, value) {\n this.kind = kind;\n this.start = start;\n this.end = end;\n this.line = line;\n this.column = column; // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n\n this.value = value;\n this.prev = null;\n this.next = null;\n }\n\n get [Symbol.toStringTag]() {\n return 'Token';\n }\n\n toJSON() {\n return {\n kind: this.kind,\n value: this.value,\n line: this.line,\n column: this.column,\n };\n }\n}\n/**\n * The list of all possible AST node types.\n */\n\n/**\n * @internal\n */\nexport const QueryDocumentKeys = {\n Name: [],\n Document: ['definitions'],\n OperationDefinition: [\n 'name',\n 'variableDefinitions',\n 'directives',\n 'selectionSet',\n ],\n VariableDefinition: ['variable', 'type', 'defaultValue', 'directives'],\n Variable: ['name'],\n SelectionSet: ['selections'],\n Field: ['alias', 'name', 'arguments', 'directives', 'selectionSet'],\n Argument: ['name', 'value'],\n FragmentSpread: ['name', 'directives'],\n InlineFragment: ['typeCondition', 'directives', 'selectionSet'],\n FragmentDefinition: [\n 'name', // Note: fragment variable definitions are deprecated and will removed in v17.0.0\n 'variableDefinitions',\n 'typeCondition',\n 'directives',\n 'selectionSet',\n ],\n IntValue: [],\n FloatValue: [],\n StringValue: [],\n BooleanValue: [],\n NullValue: [],\n EnumValue: [],\n ListValue: ['values'],\n ObjectValue: ['fields'],\n ObjectField: ['name', 'value'],\n Directive: ['name', 'arguments'],\n NamedType: ['name'],\n ListType: ['type'],\n NonNullType: ['type'],\n SchemaDefinition: ['description', 'directives', 'operationTypes'],\n OperationTypeDefinition: ['type'],\n ScalarTypeDefinition: ['description', 'name', 'directives'],\n ObjectTypeDefinition: [\n 'description',\n 'name',\n 'interfaces',\n 'directives',\n 'fields',\n ],\n FieldDefinition: ['description', 'name', 'arguments', 'type', 'directives'],\n InputValueDefinition: [\n 'description',\n 'name',\n 'type',\n 'defaultValue',\n 'directives',\n ],\n InterfaceTypeDefinition: [\n 'description',\n 'name',\n 'interfaces',\n 'directives',\n 'fields',\n ],\n UnionTypeDefinition: ['description', 'name', 'directives', 'types'],\n EnumTypeDefinition: ['description', 'name', 'directives', 'values'],\n EnumValueDefinition: ['description', 'name', 'directives'],\n InputObjectTypeDefinition: ['description', 'name', 'directives', 'fields'],\n DirectiveDefinition: ['description', 'name', 'arguments', 'locations'],\n SchemaExtension: ['directives', 'operationTypes'],\n ScalarTypeExtension: ['name', 'directives'],\n ObjectTypeExtension: ['name', 'interfaces', 'directives', 'fields'],\n InterfaceTypeExtension: ['name', 'interfaces', 'directives', 'fields'],\n UnionTypeExtension: ['name', 'directives', 'types'],\n EnumTypeExtension: ['name', 'directives', 'values'],\n InputObjectTypeExtension: ['name', 'directives', 'fields'],\n};\nconst kindValues = new Set(Object.keys(QueryDocumentKeys));\n/**\n * @internal\n */\n\nexport function isNode(maybeNode) {\n const maybeKind =\n maybeNode === null || maybeNode === void 0 ? void 0 : maybeNode.kind;\n return typeof maybeKind === 'string' && kindValues.has(maybeKind);\n}\n/** Name */\n\nexport let OperationTypeNode;\n\n(function (OperationTypeNode) {\n OperationTypeNode['QUERY'] = 'query';\n OperationTypeNode['MUTATION'] = 'mutation';\n OperationTypeNode['SUBSCRIPTION'] = 'subscription';\n})(OperationTypeNode || (OperationTypeNode = {}));\n","/**\n * The set of allowed directive location values.\n */\nexport let DirectiveLocation;\n/**\n * The enum type representing the directive location values.\n *\n * @deprecated Please use `DirectiveLocation`. Will be remove in v17.\n */\n\n(function (DirectiveLocation) {\n DirectiveLocation['QUERY'] = 'QUERY';\n DirectiveLocation['MUTATION'] = 'MUTATION';\n DirectiveLocation['SUBSCRIPTION'] = 'SUBSCRIPTION';\n DirectiveLocation['FIELD'] = 'FIELD';\n DirectiveLocation['FRAGMENT_DEFINITION'] = 'FRAGMENT_DEFINITION';\n DirectiveLocation['FRAGMENT_SPREAD'] = 'FRAGMENT_SPREAD';\n DirectiveLocation['INLINE_FRAGMENT'] = 'INLINE_FRAGMENT';\n DirectiveLocation['VARIABLE_DEFINITION'] = 'VARIABLE_DEFINITION';\n DirectiveLocation['SCHEMA'] = 'SCHEMA';\n DirectiveLocation['SCALAR'] = 'SCALAR';\n DirectiveLocation['OBJECT'] = 'OBJECT';\n DirectiveLocation['FIELD_DEFINITION'] = 'FIELD_DEFINITION';\n DirectiveLocation['ARGUMENT_DEFINITION'] = 'ARGUMENT_DEFINITION';\n DirectiveLocation['INTERFACE'] = 'INTERFACE';\n DirectiveLocation['UNION'] = 'UNION';\n DirectiveLocation['ENUM'] = 'ENUM';\n DirectiveLocation['ENUM_VALUE'] = 'ENUM_VALUE';\n DirectiveLocation['INPUT_OBJECT'] = 'INPUT_OBJECT';\n DirectiveLocation['INPUT_FIELD_DEFINITION'] = 'INPUT_FIELD_DEFINITION';\n})(DirectiveLocation || (DirectiveLocation = {}));\n","/**\n * The set of allowed kind values for AST nodes.\n */\nexport let Kind;\n/**\n * The enum type representing the possible kind values of AST nodes.\n *\n * @deprecated Please use `Kind`. Will be remove in v17.\n */\n\n(function (Kind) {\n Kind['NAME'] = 'Name';\n Kind['DOCUMENT'] = 'Document';\n Kind['OPERATION_DEFINITION'] = 'OperationDefinition';\n Kind['VARIABLE_DEFINITION'] = 'VariableDefinition';\n Kind['SELECTION_SET'] = 'SelectionSet';\n Kind['FIELD'] = 'Field';\n Kind['ARGUMENT'] = 'Argument';\n Kind['FRAGMENT_SPREAD'] = 'FragmentSpread';\n Kind['INLINE_FRAGMENT'] = 'InlineFragment';\n Kind['FRAGMENT_DEFINITION'] = 'FragmentDefinition';\n Kind['VARIABLE'] = 'Variable';\n Kind['INT'] = 'IntValue';\n Kind['FLOAT'] = 'FloatValue';\n Kind['STRING'] = 'StringValue';\n Kind['BOOLEAN'] = 'BooleanValue';\n Kind['NULL'] = 'NullValue';\n Kind['ENUM'] = 'EnumValue';\n Kind['LIST'] = 'ListValue';\n Kind['OBJECT'] = 'ObjectValue';\n Kind['OBJECT_FIELD'] = 'ObjectField';\n Kind['DIRECTIVE'] = 'Directive';\n Kind['NAMED_TYPE'] = 'NamedType';\n Kind['LIST_TYPE'] = 'ListType';\n Kind['NON_NULL_TYPE'] = 'NonNullType';\n Kind['SCHEMA_DEFINITION'] = 'SchemaDefinition';\n Kind['OPERATION_TYPE_DEFINITION'] = 'OperationTypeDefinition';\n Kind['SCALAR_TYPE_DEFINITION'] = 'ScalarTypeDefinition';\n Kind['OBJECT_TYPE_DEFINITION'] = 'ObjectTypeDefinition';\n Kind['FIELD_DEFINITION'] = 'FieldDefinition';\n Kind['INPUT_VALUE_DEFINITION'] = 'InputValueDefinition';\n Kind['INTERFACE_TYPE_DEFINITION'] = 'InterfaceTypeDefinition';\n Kind['UNION_TYPE_DEFINITION'] = 'UnionTypeDefinition';\n Kind['ENUM_TYPE_DEFINITION'] = 'EnumTypeDefinition';\n Kind['ENUM_VALUE_DEFINITION'] = 'EnumValueDefinition';\n Kind['INPUT_OBJECT_TYPE_DEFINITION'] = 'InputObjectTypeDefinition';\n Kind['DIRECTIVE_DEFINITION'] = 'DirectiveDefinition';\n Kind['SCHEMA_EXTENSION'] = 'SchemaExtension';\n Kind['SCALAR_TYPE_EXTENSION'] = 'ScalarTypeExtension';\n Kind['OBJECT_TYPE_EXTENSION'] = 'ObjectTypeExtension';\n Kind['INTERFACE_TYPE_EXTENSION'] = 'InterfaceTypeExtension';\n Kind['UNION_TYPE_EXTENSION'] = 'UnionTypeExtension';\n Kind['ENUM_TYPE_EXTENSION'] = 'EnumTypeExtension';\n Kind['INPUT_OBJECT_TYPE_EXTENSION'] = 'InputObjectTypeExtension';\n})(Kind || (Kind = {}));\n","/**\n * ```\n * WhiteSpace ::\n * - \"Horizontal Tab (U+0009)\"\n * - \"Space (U+0020)\"\n * ```\n * @internal\n */\nexport function isWhiteSpace(code) {\n return code === 0x0009 || code === 0x0020;\n}\n/**\n * ```\n * Digit :: one of\n * - `0` `1` `2` `3` `4` `5` `6` `7` `8` `9`\n * ```\n * @internal\n */\n\nexport function isDigit(code) {\n return code >= 0x0030 && code <= 0x0039;\n}\n/**\n * ```\n * Letter :: one of\n * - `A` `B` `C` `D` `E` `F` `G` `H` `I` `J` `K` `L` `M`\n * - `N` `O` `P` `Q` `R` `S` `T` `U` `V` `W` `X` `Y` `Z`\n * - `a` `b` `c` `d` `e` `f` `g` `h` `i` `j` `k` `l` `m`\n * - `n` `o` `p` `q` `r` `s` `t` `u` `v` `w` `x` `y` `z`\n * ```\n * @internal\n */\n\nexport function isLetter(code) {\n return (\n (code >= 0x0061 && code <= 0x007a) || // A-Z\n (code >= 0x0041 && code <= 0x005a) // a-z\n );\n}\n/**\n * ```\n * NameStart ::\n * - Letter\n * - `_`\n * ```\n * @internal\n */\n\nexport function isNameStart(code) {\n return isLetter(code) || code === 0x005f;\n}\n/**\n * ```\n * NameContinue ::\n * - Letter\n * - Digit\n * - `_`\n * ```\n * @internal\n */\n\nexport function isNameContinue(code) {\n return isLetter(code) || isDigit(code) || code === 0x005f;\n}\n","import { isWhiteSpace } from './characterClasses.mjs';\n/**\n * Produces the value of a block string from its parsed raw value, similar to\n * CoffeeScript's block string, Python's docstring trim or Ruby's strip_heredoc.\n *\n * This implements the GraphQL spec's BlockStringValue() static algorithm.\n *\n * @internal\n */\n\nexport function dedentBlockStringLines(lines) {\n var _firstNonEmptyLine2;\n\n let commonIndent = Number.MAX_SAFE_INTEGER;\n let firstNonEmptyLine = null;\n let lastNonEmptyLine = -1;\n\n for (let i = 0; i < lines.length; ++i) {\n var _firstNonEmptyLine;\n\n const line = lines[i];\n const indent = leadingWhitespace(line);\n\n if (indent === line.length) {\n continue; // skip empty lines\n }\n\n firstNonEmptyLine =\n (_firstNonEmptyLine = firstNonEmptyLine) !== null &&\n _firstNonEmptyLine !== void 0\n ? _firstNonEmptyLine\n : i;\n lastNonEmptyLine = i;\n\n if (i !== 0 && indent < commonIndent) {\n commonIndent = indent;\n }\n }\n\n return lines // Remove common indentation from all lines but first.\n .map((line, i) => (i === 0 ? line : line.slice(commonIndent))) // Remove leading and trailing blank lines.\n .slice(\n (_firstNonEmptyLine2 = firstNonEmptyLine) !== null &&\n _firstNonEmptyLine2 !== void 0\n ? _firstNonEmptyLine2\n : 0,\n lastNonEmptyLine + 1,\n );\n}\n\nfunction leadingWhitespace(str) {\n let i = 0;\n\n while (i < str.length && isWhiteSpace(str.charCodeAt(i))) {\n ++i;\n }\n\n return i;\n}\n/**\n * @internal\n */\n\nexport function isPrintableAsBlockString(value) {\n if (value === '') {\n return true; // empty string is printable\n }\n\n let isEmptyLine = true;\n let hasIndent = false;\n let hasCommonIndent = true;\n let seenNonEmptyLine = false;\n\n for (let i = 0; i < value.length; ++i) {\n switch (value.codePointAt(i)) {\n case 0x0000:\n case 0x0001:\n case 0x0002:\n case 0x0003:\n case 0x0004:\n case 0x0005:\n case 0x0006:\n case 0x0007:\n case 0x0008:\n case 0x000b:\n case 0x000c:\n case 0x000e:\n case 0x000f:\n return false;\n // Has non-printable characters\n\n case 0x000d:\n // \\r\n return false;\n // Has \\r or \\r\\n which will be replaced as \\n\n\n case 10:\n // \\n\n if (isEmptyLine && !seenNonEmptyLine) {\n return false; // Has leading new line\n }\n\n seenNonEmptyLine = true;\n isEmptyLine = true;\n hasIndent = false;\n break;\n\n case 9: // \\t\n\n case 32:\n // \n hasIndent || (hasIndent = isEmptyLine);\n break;\n\n default:\n hasCommonIndent && (hasCommonIndent = hasIndent);\n isEmptyLine = false;\n }\n }\n\n if (isEmptyLine) {\n return false; // Has trailing empty lines\n }\n\n if (hasCommonIndent && seenNonEmptyLine) {\n return false; // Has internal indent\n }\n\n return true;\n}\n/**\n * Print a block string in the indented block form by adding a leading and\n * trailing blank line. However, if a block string starts with whitespace and is\n * a single-line, adding a leading blank line would strip that whitespace.\n *\n * @internal\n */\n\nexport function printBlockString(value, options) {\n const escapedValue = value.replace(/\"\"\"/g, '\\\\\"\"\"'); // Expand a block string's raw value into independent lines.\n\n const lines = escapedValue.split(/\\r\\n|[\\n\\r]/g);\n const isSingleLine = lines.length === 1; // If common indentation is found we can fix some of those cases by adding leading new line\n\n const forceLeadingNewLine =\n lines.length > 1 &&\n lines\n .slice(1)\n .every((line) => line.length === 0 || isWhiteSpace(line.charCodeAt(0))); // Trailing triple quotes just looks confusing but doesn't force trailing new line\n\n const hasTrailingTripleQuotes = escapedValue.endsWith('\\\\\"\"\"'); // Trailing quote (single or double) or slash forces trailing new line\n\n const hasTrailingQuote = value.endsWith('\"') && !hasTrailingTripleQuotes;\n const hasTrailingSlash = value.endsWith('\\\\');\n const forceTrailingNewline = hasTrailingQuote || hasTrailingSlash;\n const printAsMultipleLines =\n !(options !== null && options !== void 0 && options.minimize) && // add leading and trailing new lines only if it improves readability\n (!isSingleLine ||\n value.length > 70 ||\n forceTrailingNewline ||\n forceLeadingNewLine ||\n hasTrailingTripleQuotes);\n let result = ''; // Format a multi-line block quote to account for leading space.\n\n const skipLeadingNewLine = isSingleLine && isWhiteSpace(value.charCodeAt(0));\n\n if ((printAsMultipleLines && !skipLeadingNewLine) || forceLeadingNewLine) {\n result += '\\n';\n }\n\n result += escapedValue;\n\n if (printAsMultipleLines || forceTrailingNewline) {\n result += '\\n';\n }\n\n return '\"\"\"' + result + '\"\"\"';\n}\n","/**\n * An exported enum describing the different kinds of tokens that the\n * lexer emits.\n */\nexport let TokenKind;\n/**\n * The enum type representing the token kinds values.\n *\n * @deprecated Please use `TokenKind`. Will be remove in v17.\n */\n\n(function (TokenKind) {\n TokenKind['SOF'] = '';\n TokenKind['EOF'] = '';\n TokenKind['BANG'] = '!';\n TokenKind['DOLLAR'] = '$';\n TokenKind['AMP'] = '&';\n TokenKind['PAREN_L'] = '(';\n TokenKind['PAREN_R'] = ')';\n TokenKind['SPREAD'] = '...';\n TokenKind['COLON'] = ':';\n TokenKind['EQUALS'] = '=';\n TokenKind['AT'] = '@';\n TokenKind['BRACKET_L'] = '[';\n TokenKind['BRACKET_R'] = ']';\n TokenKind['BRACE_L'] = '{';\n TokenKind['PIPE'] = '|';\n TokenKind['BRACE_R'] = '}';\n TokenKind['NAME'] = 'Name';\n TokenKind['INT'] = 'Int';\n TokenKind['FLOAT'] = 'Float';\n TokenKind['STRING'] = 'String';\n TokenKind['BLOCK_STRING'] = 'BlockString';\n TokenKind['COMMENT'] = 'Comment';\n})(TokenKind || (TokenKind = {}));\n","import { syntaxError } from '../error/syntaxError.mjs';\nimport { Token } from './ast.mjs';\nimport { dedentBlockStringLines } from './blockString.mjs';\nimport { isDigit, isNameContinue, isNameStart } from './characterClasses.mjs';\nimport { TokenKind } from './tokenKind.mjs';\n/**\n * Given a Source object, creates a Lexer for that source.\n * A Lexer is a stateful stream generator in that every time\n * it is advanced, it returns the next token in the Source. Assuming the\n * source lexes, the final Token emitted by the lexer will be of kind\n * EOF, after which the lexer will repeatedly return the same EOF token\n * whenever called.\n */\n\nexport class Lexer {\n /**\n * The previously focused non-ignored token.\n */\n\n /**\n * The currently focused non-ignored token.\n */\n\n /**\n * The (1-indexed) line containing the current token.\n */\n\n /**\n * The character offset at which the current line begins.\n */\n constructor(source) {\n const startOfFileToken = new Token(TokenKind.SOF, 0, 0, 0, 0);\n this.source = source;\n this.lastToken = startOfFileToken;\n this.token = startOfFileToken;\n this.line = 1;\n this.lineStart = 0;\n }\n\n get [Symbol.toStringTag]() {\n return 'Lexer';\n }\n /**\n * Advances the token stream to the next non-ignored token.\n */\n\n advance() {\n this.lastToken = this.token;\n const token = (this.token = this.lookahead());\n return token;\n }\n /**\n * Looks ahead and returns the next non-ignored token, but does not change\n * the state of Lexer.\n */\n\n lookahead() {\n let token = this.token;\n\n if (token.kind !== TokenKind.EOF) {\n do {\n if (token.next) {\n token = token.next;\n } else {\n // Read the next token and form a link in the token linked-list.\n const nextToken = readNextToken(this, token.end); // @ts-expect-error next is only mutable during parsing.\n\n token.next = nextToken; // @ts-expect-error prev is only mutable during parsing.\n\n nextToken.prev = token;\n token = nextToken;\n }\n } while (token.kind === TokenKind.COMMENT);\n }\n\n return token;\n }\n}\n/**\n * @internal\n */\n\nexport function isPunctuatorTokenKind(kind) {\n return (\n kind === TokenKind.BANG ||\n kind === TokenKind.DOLLAR ||\n kind === TokenKind.AMP ||\n kind === TokenKind.PAREN_L ||\n kind === TokenKind.PAREN_R ||\n kind === TokenKind.SPREAD ||\n kind === TokenKind.COLON ||\n kind === TokenKind.EQUALS ||\n kind === TokenKind.AT ||\n kind === TokenKind.BRACKET_L ||\n kind === TokenKind.BRACKET_R ||\n kind === TokenKind.BRACE_L ||\n kind === TokenKind.PIPE ||\n kind === TokenKind.BRACE_R\n );\n}\n/**\n * A Unicode scalar value is any Unicode code point except surrogate code\n * points. In other words, the inclusive ranges of values 0x0000 to 0xD7FF and\n * 0xE000 to 0x10FFFF.\n *\n * SourceCharacter ::\n * - \"Any Unicode scalar value\"\n */\n\nfunction isUnicodeScalarValue(code) {\n return (\n (code >= 0x0000 && code <= 0xd7ff) || (code >= 0xe000 && code <= 0x10ffff)\n );\n}\n/**\n * The GraphQL specification defines source text as a sequence of unicode scalar\n * values (which Unicode defines to exclude surrogate code points). However\n * JavaScript defines strings as a sequence of UTF-16 code units which may\n * include surrogates. A surrogate pair is a valid source character as it\n * encodes a supplementary code point (above U+FFFF), but unpaired surrogate\n * code points are not valid source characters.\n */\n\nfunction isSupplementaryCodePoint(body, location) {\n return (\n isLeadingSurrogate(body.charCodeAt(location)) &&\n isTrailingSurrogate(body.charCodeAt(location + 1))\n );\n}\n\nfunction isLeadingSurrogate(code) {\n return code >= 0xd800 && code <= 0xdbff;\n}\n\nfunction isTrailingSurrogate(code) {\n return code >= 0xdc00 && code <= 0xdfff;\n}\n/**\n * Prints the code point (or end of file reference) at a given location in a\n * source for use in error messages.\n *\n * Printable ASCII is printed quoted, while other points are printed in Unicode\n * code point form (ie. U+1234).\n */\n\nfunction printCodePointAt(lexer, location) {\n const code = lexer.source.body.codePointAt(location);\n\n if (code === undefined) {\n return TokenKind.EOF;\n } else if (code >= 0x0020 && code <= 0x007e) {\n // Printable ASCII\n const char = String.fromCodePoint(code);\n return char === '\"' ? \"'\\\"'\" : `\"${char}\"`;\n } // Unicode code point\n\n return 'U+' + code.toString(16).toUpperCase().padStart(4, '0');\n}\n/**\n * Create a token with line and column location information.\n */\n\nfunction createToken(lexer, kind, start, end, value) {\n const line = lexer.line;\n const col = 1 + start - lexer.lineStart;\n return new Token(kind, start, end, line, col, value);\n}\n/**\n * Gets the next token from the source starting at the given position.\n *\n * This skips over whitespace until it finds the next lexable token, then lexes\n * punctuators immediately or calls the appropriate helper function for more\n * complicated tokens.\n */\n\nfunction readNextToken(lexer, start) {\n const body = lexer.source.body;\n const bodyLength = body.length;\n let position = start;\n\n while (position < bodyLength) {\n const code = body.charCodeAt(position); // SourceCharacter\n\n switch (code) {\n // Ignored ::\n // - UnicodeBOM\n // - WhiteSpace\n // - LineTerminator\n // - Comment\n // - Comma\n //\n // UnicodeBOM :: \"Byte Order Mark (U+FEFF)\"\n //\n // WhiteSpace ::\n // - \"Horizontal Tab (U+0009)\"\n // - \"Space (U+0020)\"\n //\n // Comma :: ,\n case 0xfeff: // \n\n case 0x0009: // \\t\n\n case 0x0020: // \n\n case 0x002c:\n // ,\n ++position;\n continue;\n // LineTerminator ::\n // - \"New Line (U+000A)\"\n // - \"Carriage Return (U+000D)\" [lookahead != \"New Line (U+000A)\"]\n // - \"Carriage Return (U+000D)\" \"New Line (U+000A)\"\n\n case 0x000a:\n // \\n\n ++position;\n ++lexer.line;\n lexer.lineStart = position;\n continue;\n\n case 0x000d:\n // \\r\n if (body.charCodeAt(position + 1) === 0x000a) {\n position += 2;\n } else {\n ++position;\n }\n\n ++lexer.line;\n lexer.lineStart = position;\n continue;\n // Comment\n\n case 0x0023:\n // #\n return readComment(lexer, position);\n // Token ::\n // - Punctuator\n // - Name\n // - IntValue\n // - FloatValue\n // - StringValue\n //\n // Punctuator :: one of ! $ & ( ) ... : = @ [ ] { | }\n\n case 0x0021:\n // !\n return createToken(lexer, TokenKind.BANG, position, position + 1);\n\n case 0x0024:\n // $\n return createToken(lexer, TokenKind.DOLLAR, position, position + 1);\n\n case 0x0026:\n // &\n return createToken(lexer, TokenKind.AMP, position, position + 1);\n\n case 0x0028:\n // (\n return createToken(lexer, TokenKind.PAREN_L, position, position + 1);\n\n case 0x0029:\n // )\n return createToken(lexer, TokenKind.PAREN_R, position, position + 1);\n\n case 0x002e:\n // .\n if (\n body.charCodeAt(position + 1) === 0x002e &&\n body.charCodeAt(position + 2) === 0x002e\n ) {\n return createToken(lexer, TokenKind.SPREAD, position, position + 3);\n }\n\n break;\n\n case 0x003a:\n // :\n return createToken(lexer, TokenKind.COLON, position, position + 1);\n\n case 0x003d:\n // =\n return createToken(lexer, TokenKind.EQUALS, position, position + 1);\n\n case 0x0040:\n // @\n return createToken(lexer, TokenKind.AT, position, position + 1);\n\n case 0x005b:\n // [\n return createToken(lexer, TokenKind.BRACKET_L, position, position + 1);\n\n case 0x005d:\n // ]\n return createToken(lexer, TokenKind.BRACKET_R, position, position + 1);\n\n case 0x007b:\n // {\n return createToken(lexer, TokenKind.BRACE_L, position, position + 1);\n\n case 0x007c:\n // |\n return createToken(lexer, TokenKind.PIPE, position, position + 1);\n\n case 0x007d:\n // }\n return createToken(lexer, TokenKind.BRACE_R, position, position + 1);\n // StringValue\n\n case 0x0022:\n // \"\n if (\n body.charCodeAt(position + 1) === 0x0022 &&\n body.charCodeAt(position + 2) === 0x0022\n ) {\n return readBlockString(lexer, position);\n }\n\n return readString(lexer, position);\n } // IntValue | FloatValue (Digit | -)\n\n if (isDigit(code) || code === 0x002d) {\n return readNumber(lexer, position, code);\n } // Name\n\n if (isNameStart(code)) {\n return readName(lexer, position);\n }\n\n throw syntaxError(\n lexer.source,\n position,\n code === 0x0027\n ? 'Unexpected single quote character (\\'), did you mean to use a double quote (\")?'\n : isUnicodeScalarValue(code) || isSupplementaryCodePoint(body, position)\n ? `Unexpected character: ${printCodePointAt(lexer, position)}.`\n : `Invalid character: ${printCodePointAt(lexer, position)}.`,\n );\n }\n\n return createToken(lexer, TokenKind.EOF, bodyLength, bodyLength);\n}\n/**\n * Reads a comment token from the source file.\n *\n * ```\n * Comment :: # CommentChar* [lookahead != CommentChar]\n *\n * CommentChar :: SourceCharacter but not LineTerminator\n * ```\n */\n\nfunction readComment(lexer, start) {\n const body = lexer.source.body;\n const bodyLength = body.length;\n let position = start + 1;\n\n while (position < bodyLength) {\n const code = body.charCodeAt(position); // LineTerminator (\\n | \\r)\n\n if (code === 0x000a || code === 0x000d) {\n break;\n } // SourceCharacter\n\n if (isUnicodeScalarValue(code)) {\n ++position;\n } else if (isSupplementaryCodePoint(body, position)) {\n position += 2;\n } else {\n break;\n }\n }\n\n return createToken(\n lexer,\n TokenKind.COMMENT,\n start,\n position,\n body.slice(start + 1, position),\n );\n}\n/**\n * Reads a number token from the source file, either a FloatValue or an IntValue\n * depending on whether a FractionalPart or ExponentPart is encountered.\n *\n * ```\n * IntValue :: IntegerPart [lookahead != {Digit, `.`, NameStart}]\n *\n * IntegerPart ::\n * - NegativeSign? 0\n * - NegativeSign? NonZeroDigit Digit*\n *\n * NegativeSign :: -\n *\n * NonZeroDigit :: Digit but not `0`\n *\n * FloatValue ::\n * - IntegerPart FractionalPart ExponentPart [lookahead != {Digit, `.`, NameStart}]\n * - IntegerPart FractionalPart [lookahead != {Digit, `.`, NameStart}]\n * - IntegerPart ExponentPart [lookahead != {Digit, `.`, NameStart}]\n *\n * FractionalPart :: . Digit+\n *\n * ExponentPart :: ExponentIndicator Sign? Digit+\n *\n * ExponentIndicator :: one of `e` `E`\n *\n * Sign :: one of + -\n * ```\n */\n\nfunction readNumber(lexer, start, firstCode) {\n const body = lexer.source.body;\n let position = start;\n let code = firstCode;\n let isFloat = false; // NegativeSign (-)\n\n if (code === 0x002d) {\n code = body.charCodeAt(++position);\n } // Zero (0)\n\n if (code === 0x0030) {\n code = body.charCodeAt(++position);\n\n if (isDigit(code)) {\n throw syntaxError(\n lexer.source,\n position,\n `Invalid number, unexpected digit after 0: ${printCodePointAt(\n lexer,\n position,\n )}.`,\n );\n }\n } else {\n position = readDigits(lexer, position, code);\n code = body.charCodeAt(position);\n } // Full stop (.)\n\n if (code === 0x002e) {\n isFloat = true;\n code = body.charCodeAt(++position);\n position = readDigits(lexer, position, code);\n code = body.charCodeAt(position);\n } // E e\n\n if (code === 0x0045 || code === 0x0065) {\n isFloat = true;\n code = body.charCodeAt(++position); // + -\n\n if (code === 0x002b || code === 0x002d) {\n code = body.charCodeAt(++position);\n }\n\n position = readDigits(lexer, position, code);\n code = body.charCodeAt(position);\n } // Numbers cannot be followed by . or NameStart\n\n if (code === 0x002e || isNameStart(code)) {\n throw syntaxError(\n lexer.source,\n position,\n `Invalid number, expected digit but got: ${printCodePointAt(\n lexer,\n position,\n )}.`,\n );\n }\n\n return createToken(\n lexer,\n isFloat ? TokenKind.FLOAT : TokenKind.INT,\n start,\n position,\n body.slice(start, position),\n );\n}\n/**\n * Returns the new position in the source after reading one or more digits.\n */\n\nfunction readDigits(lexer, start, firstCode) {\n if (!isDigit(firstCode)) {\n throw syntaxError(\n lexer.source,\n start,\n `Invalid number, expected digit but got: ${printCodePointAt(\n lexer,\n start,\n )}.`,\n );\n }\n\n const body = lexer.source.body;\n let position = start + 1; // +1 to skip first firstCode\n\n while (isDigit(body.charCodeAt(position))) {\n ++position;\n }\n\n return position;\n}\n/**\n * Reads a single-quote string token from the source file.\n *\n * ```\n * StringValue ::\n * - `\"\"` [lookahead != `\"`]\n * - `\"` StringCharacter+ `\"`\n *\n * StringCharacter ::\n * - SourceCharacter but not `\"` or `\\` or LineTerminator\n * - `\\u` EscapedUnicode\n * - `\\` EscapedCharacter\n *\n * EscapedUnicode ::\n * - `{` HexDigit+ `}`\n * - HexDigit HexDigit HexDigit HexDigit\n *\n * EscapedCharacter :: one of `\"` `\\` `/` `b` `f` `n` `r` `t`\n * ```\n */\n\nfunction readString(lexer, start) {\n const body = lexer.source.body;\n const bodyLength = body.length;\n let position = start + 1;\n let chunkStart = position;\n let value = '';\n\n while (position < bodyLength) {\n const code = body.charCodeAt(position); // Closing Quote (\")\n\n if (code === 0x0022) {\n value += body.slice(chunkStart, position);\n return createToken(lexer, TokenKind.STRING, start, position + 1, value);\n } // Escape Sequence (\\)\n\n if (code === 0x005c) {\n value += body.slice(chunkStart, position);\n const escape =\n body.charCodeAt(position + 1) === 0x0075 // u\n ? body.charCodeAt(position + 2) === 0x007b // {\n ? readEscapedUnicodeVariableWidth(lexer, position)\n : readEscapedUnicodeFixedWidth(lexer, position)\n : readEscapedCharacter(lexer, position);\n value += escape.value;\n position += escape.size;\n chunkStart = position;\n continue;\n } // LineTerminator (\\n | \\r)\n\n if (code === 0x000a || code === 0x000d) {\n break;\n } // SourceCharacter\n\n if (isUnicodeScalarValue(code)) {\n ++position;\n } else if (isSupplementaryCodePoint(body, position)) {\n position += 2;\n } else {\n throw syntaxError(\n lexer.source,\n position,\n `Invalid character within String: ${printCodePointAt(\n lexer,\n position,\n )}.`,\n );\n }\n }\n\n throw syntaxError(lexer.source, position, 'Unterminated string.');\n} // The string value and lexed size of an escape sequence.\n\nfunction readEscapedUnicodeVariableWidth(lexer, position) {\n const body = lexer.source.body;\n let point = 0;\n let size = 3; // Cannot be larger than 12 chars (\\u{00000000}).\n\n while (size < 12) {\n const code = body.charCodeAt(position + size++); // Closing Brace (})\n\n if (code === 0x007d) {\n // Must be at least 5 chars (\\u{0}) and encode a Unicode scalar value.\n if (size < 5 || !isUnicodeScalarValue(point)) {\n break;\n }\n\n return {\n value: String.fromCodePoint(point),\n size,\n };\n } // Append this hex digit to the code point.\n\n point = (point << 4) | readHexDigit(code);\n\n if (point < 0) {\n break;\n }\n }\n\n throw syntaxError(\n lexer.source,\n position,\n `Invalid Unicode escape sequence: \"${body.slice(\n position,\n position + size,\n )}\".`,\n );\n}\n\nfunction readEscapedUnicodeFixedWidth(lexer, position) {\n const body = lexer.source.body;\n const code = read16BitHexCode(body, position + 2);\n\n if (isUnicodeScalarValue(code)) {\n return {\n value: String.fromCodePoint(code),\n size: 6,\n };\n } // GraphQL allows JSON-style surrogate pair escape sequences, but only when\n // a valid pair is formed.\n\n if (isLeadingSurrogate(code)) {\n // \\u\n if (\n body.charCodeAt(position + 6) === 0x005c &&\n body.charCodeAt(position + 7) === 0x0075\n ) {\n const trailingCode = read16BitHexCode(body, position + 8);\n\n if (isTrailingSurrogate(trailingCode)) {\n // JavaScript defines strings as a sequence of UTF-16 code units and\n // encodes Unicode code points above U+FFFF using a surrogate pair of\n // code units. Since this is a surrogate pair escape sequence, just\n // include both codes into the JavaScript string value. Had JavaScript\n // not been internally based on UTF-16, then this surrogate pair would\n // be decoded to retrieve the supplementary code point.\n return {\n value: String.fromCodePoint(code, trailingCode),\n size: 12,\n };\n }\n }\n }\n\n throw syntaxError(\n lexer.source,\n position,\n `Invalid Unicode escape sequence: \"${body.slice(position, position + 6)}\".`,\n );\n}\n/**\n * Reads four hexadecimal characters and returns the positive integer that 16bit\n * hexadecimal string represents. For example, \"000f\" will return 15, and \"dead\"\n * will return 57005.\n *\n * Returns a negative number if any char was not a valid hexadecimal digit.\n */\n\nfunction read16BitHexCode(body, position) {\n // readHexDigit() returns -1 on error. ORing a negative value with any other\n // value always produces a negative value.\n return (\n (readHexDigit(body.charCodeAt(position)) << 12) |\n (readHexDigit(body.charCodeAt(position + 1)) << 8) |\n (readHexDigit(body.charCodeAt(position + 2)) << 4) |\n readHexDigit(body.charCodeAt(position + 3))\n );\n}\n/**\n * Reads a hexadecimal character and returns its positive integer value (0-15).\n *\n * '0' becomes 0, '9' becomes 9\n * 'A' becomes 10, 'F' becomes 15\n * 'a' becomes 10, 'f' becomes 15\n *\n * Returns -1 if the provided character code was not a valid hexadecimal digit.\n *\n * HexDigit :: one of\n * - `0` `1` `2` `3` `4` `5` `6` `7` `8` `9`\n * - `A` `B` `C` `D` `E` `F`\n * - `a` `b` `c` `d` `e` `f`\n */\n\nfunction readHexDigit(code) {\n return code >= 0x0030 && code <= 0x0039 // 0-9\n ? code - 0x0030\n : code >= 0x0041 && code <= 0x0046 // A-F\n ? code - 0x0037\n : code >= 0x0061 && code <= 0x0066 // a-f\n ? code - 0x0057\n : -1;\n}\n/**\n * | Escaped Character | Code Point | Character Name |\n * | ----------------- | ---------- | ---------------------------- |\n * | `\"` | U+0022 | double quote |\n * | `\\` | U+005C | reverse solidus (back slash) |\n * | `/` | U+002F | solidus (forward slash) |\n * | `b` | U+0008 | backspace |\n * | `f` | U+000C | form feed |\n * | `n` | U+000A | line feed (new line) |\n * | `r` | U+000D | carriage return |\n * | `t` | U+0009 | horizontal tab |\n */\n\nfunction readEscapedCharacter(lexer, position) {\n const body = lexer.source.body;\n const code = body.charCodeAt(position + 1);\n\n switch (code) {\n case 0x0022:\n // \"\n return {\n value: '\\u0022',\n size: 2,\n };\n\n case 0x005c:\n // \\\n return {\n value: '\\u005c',\n size: 2,\n };\n\n case 0x002f:\n // /\n return {\n value: '\\u002f',\n size: 2,\n };\n\n case 0x0062:\n // b\n return {\n value: '\\u0008',\n size: 2,\n };\n\n case 0x0066:\n // f\n return {\n value: '\\u000c',\n size: 2,\n };\n\n case 0x006e:\n // n\n return {\n value: '\\u000a',\n size: 2,\n };\n\n case 0x0072:\n // r\n return {\n value: '\\u000d',\n size: 2,\n };\n\n case 0x0074:\n // t\n return {\n value: '\\u0009',\n size: 2,\n };\n }\n\n throw syntaxError(\n lexer.source,\n position,\n `Invalid character escape sequence: \"${body.slice(\n position,\n position + 2,\n )}\".`,\n );\n}\n/**\n * Reads a block string token from the source file.\n *\n * ```\n * StringValue ::\n * - `\"\"\"` BlockStringCharacter* `\"\"\"`\n *\n * BlockStringCharacter ::\n * - SourceCharacter but not `\"\"\"` or `\\\"\"\"`\n * - `\\\"\"\"`\n * ```\n */\n\nfunction readBlockString(lexer, start) {\n const body = lexer.source.body;\n const bodyLength = body.length;\n let lineStart = lexer.lineStart;\n let position = start + 3;\n let chunkStart = position;\n let currentLine = '';\n const blockLines = [];\n\n while (position < bodyLength) {\n const code = body.charCodeAt(position); // Closing Triple-Quote (\"\"\")\n\n if (\n code === 0x0022 &&\n body.charCodeAt(position + 1) === 0x0022 &&\n body.charCodeAt(position + 2) === 0x0022\n ) {\n currentLine += body.slice(chunkStart, position);\n blockLines.push(currentLine);\n const token = createToken(\n lexer,\n TokenKind.BLOCK_STRING,\n start,\n position + 3, // Return a string of the lines joined with U+000A.\n dedentBlockStringLines(blockLines).join('\\n'),\n );\n lexer.line += blockLines.length - 1;\n lexer.lineStart = lineStart;\n return token;\n } // Escaped Triple-Quote (\\\"\"\")\n\n if (\n code === 0x005c &&\n body.charCodeAt(position + 1) === 0x0022 &&\n body.charCodeAt(position + 2) === 0x0022 &&\n body.charCodeAt(position + 3) === 0x0022\n ) {\n currentLine += body.slice(chunkStart, position);\n chunkStart = position + 1; // skip only slash\n\n position += 4;\n continue;\n } // LineTerminator\n\n if (code === 0x000a || code === 0x000d) {\n currentLine += body.slice(chunkStart, position);\n blockLines.push(currentLine);\n\n if (code === 0x000d && body.charCodeAt(position + 1) === 0x000a) {\n position += 2;\n } else {\n ++position;\n }\n\n currentLine = '';\n chunkStart = position;\n lineStart = position;\n continue;\n } // SourceCharacter\n\n if (isUnicodeScalarValue(code)) {\n ++position;\n } else if (isSupplementaryCodePoint(body, position)) {\n position += 2;\n } else {\n throw syntaxError(\n lexer.source,\n position,\n `Invalid character within String: ${printCodePointAt(\n lexer,\n position,\n )}.`,\n );\n }\n }\n\n throw syntaxError(lexer.source, position, 'Unterminated string.');\n}\n/**\n * Reads an alphanumeric + underscore name from the source.\n *\n * ```\n * Name ::\n * - NameStart NameContinue* [lookahead != NameContinue]\n * ```\n */\n\nfunction readName(lexer, start) {\n const body = lexer.source.body;\n const bodyLength = body.length;\n let position = start + 1;\n\n while (position < bodyLength) {\n const code = body.charCodeAt(position);\n\n if (isNameContinue(code)) {\n ++position;\n } else {\n break;\n }\n }\n\n return createToken(\n lexer,\n TokenKind.NAME,\n start,\n position,\n body.slice(start, position),\n );\n}\n","const MAX_ARRAY_LENGTH = 10;\nconst MAX_RECURSIVE_DEPTH = 2;\n/**\n * Used to print values in error messages.\n */\n\nexport function inspect(value) {\n return formatValue(value, []);\n}\n\nfunction formatValue(value, seenValues) {\n switch (typeof value) {\n case 'string':\n return JSON.stringify(value);\n\n case 'function':\n return value.name ? `[function ${value.name}]` : '[function]';\n\n case 'object':\n return formatObjectValue(value, seenValues);\n\n default:\n return String(value);\n }\n}\n\nfunction formatObjectValue(value, previouslySeenValues) {\n if (value === null) {\n return 'null';\n }\n\n if (previouslySeenValues.includes(value)) {\n return '[Circular]';\n }\n\n const seenValues = [...previouslySeenValues, value];\n\n if (isJSONable(value)) {\n const jsonValue = value.toJSON(); // check for infinite recursion\n\n if (jsonValue !== value) {\n return typeof jsonValue === 'string'\n ? jsonValue\n : formatValue(jsonValue, seenValues);\n }\n } else if (Array.isArray(value)) {\n return formatArray(value, seenValues);\n }\n\n return formatObject(value, seenValues);\n}\n\nfunction isJSONable(value) {\n return typeof value.toJSON === 'function';\n}\n\nfunction formatObject(object, seenValues) {\n const entries = Object.entries(object);\n\n if (entries.length === 0) {\n return '{}';\n }\n\n if (seenValues.length > MAX_RECURSIVE_DEPTH) {\n return '[' + getObjectTag(object) + ']';\n }\n\n const properties = entries.map(\n ([key, value]) => key + ': ' + formatValue(value, seenValues),\n );\n return '{ ' + properties.join(', ') + ' }';\n}\n\nfunction formatArray(array, seenValues) {\n if (array.length === 0) {\n return '[]';\n }\n\n if (seenValues.length > MAX_RECURSIVE_DEPTH) {\n return '[Array]';\n }\n\n const len = Math.min(MAX_ARRAY_LENGTH, array.length);\n const remaining = array.length - len;\n const items = [];\n\n for (let i = 0; i < len; ++i) {\n items.push(formatValue(array[i], seenValues));\n }\n\n if (remaining === 1) {\n items.push('... 1 more item');\n } else if (remaining > 1) {\n items.push(`... ${remaining} more items`);\n }\n\n return '[' + items.join(', ') + ']';\n}\n\nfunction getObjectTag(object) {\n const tag = Object.prototype.toString\n .call(object)\n .replace(/^\\[object /, '')\n .replace(/]$/, '');\n\n if (tag === 'Object' && typeof object.constructor === 'function') {\n const name = object.constructor.name;\n\n if (typeof name === 'string' && name !== '') {\n return name;\n }\n }\n\n return tag;\n}\n","import { inspect } from './inspect.mjs';\n/**\n * A replacement for instanceof which includes an error warning when multi-realm\n * constructors are detected.\n * See: https://expressjs.com/en/advanced/best-practice-performance.html#set-node_env-to-production\n * See: https://webpack.js.org/guides/production/\n */\n\nexport const instanceOf =\n /* c8 ignore next 5 */\n // FIXME: https://github.com/graphql/graphql-js/issues/2317\n process.env.NODE_ENV === 'production'\n ? function instanceOf(value, constructor) {\n return value instanceof constructor;\n }\n : function instanceOf(value, constructor) {\n if (value instanceof constructor) {\n return true;\n }\n\n if (typeof value === 'object' && value !== null) {\n var _value$constructor;\n\n // Prefer Symbol.toStringTag since it is immune to minification.\n const className = constructor.prototype[Symbol.toStringTag];\n const valueClassName = // We still need to support constructor's name to detect conflicts with older versions of this library.\n Symbol.toStringTag in value // @ts-expect-error TS bug see, https://github.com/microsoft/TypeScript/issues/38009\n ? value[Symbol.toStringTag]\n : (_value$constructor = value.constructor) === null ||\n _value$constructor === void 0\n ? void 0\n : _value$constructor.name;\n\n if (className === valueClassName) {\n const stringifiedValue = inspect(value);\n throw new Error(`Cannot use ${className} \"${stringifiedValue}\" from another module or realm.\n\nEnsure that there is only one instance of \"graphql\" in the node_modules\ndirectory. If different versions of \"graphql\" are the dependencies of other\nrelied on modules, use \"resolutions\" to ensure only one version is installed.\n\nhttps://yarnpkg.com/en/docs/selective-version-resolutions\n\nDuplicate \"graphql\" modules cannot be used at the same time since different\nversions may have different capabilities and behavior. The data from one\nversion used in the function from another could produce confusing and\nspurious results.`);\n }\n }\n\n return false;\n };\n","import { devAssert } from '../jsutils/devAssert.mjs';\nimport { inspect } from '../jsutils/inspect.mjs';\nimport { instanceOf } from '../jsutils/instanceOf.mjs';\n\n/**\n * A representation of source input to GraphQL. The `name` and `locationOffset` parameters are\n * optional, but they are useful for clients who store GraphQL documents in source files.\n * For example, if the GraphQL input starts at line 40 in a file named `Foo.graphql`, it might\n * be useful for `name` to be `\"Foo.graphql\"` and location to be `{ line: 40, column: 1 }`.\n * The `line` and `column` properties in `locationOffset` are 1-indexed.\n */\nexport class Source {\n constructor(\n body,\n name = 'GraphQL request',\n locationOffset = {\n line: 1,\n column: 1,\n },\n ) {\n typeof body === 'string' ||\n devAssert(false, `Body must be a string. Received: ${inspect(body)}.`);\n this.body = body;\n this.name = name;\n this.locationOffset = locationOffset;\n this.locationOffset.line > 0 ||\n devAssert(\n false,\n 'line in locationOffset is 1-indexed and must be positive.',\n );\n this.locationOffset.column > 0 ||\n devAssert(\n false,\n 'column in locationOffset is 1-indexed and must be positive.',\n );\n }\n\n get [Symbol.toStringTag]() {\n return 'Source';\n }\n}\n/**\n * Test if the given value is a Source object.\n *\n * @internal\n */\n\nexport function isSource(source) {\n return instanceOf(source, Source);\n}\n","import { syntaxError } from '../error/syntaxError.mjs';\nimport { Location, OperationTypeNode } from './ast.mjs';\nimport { DirectiveLocation } from './directiveLocation.mjs';\nimport { Kind } from './kinds.mjs';\nimport { isPunctuatorTokenKind, Lexer } from './lexer.mjs';\nimport { isSource, Source } from './source.mjs';\nimport { TokenKind } from './tokenKind.mjs';\n/**\n * Configuration options to control parser behavior\n */\n\n/**\n * Given a GraphQL source, parses it into a Document.\n * Throws GraphQLError if a syntax error is encountered.\n */\nexport function parse(source, options) {\n const parser = new Parser(source, options);\n return parser.parseDocument();\n}\n/**\n * Given a string containing a GraphQL value (ex. `[42]`), parse the AST for\n * that value.\n * Throws GraphQLError if a syntax error is encountered.\n *\n * This is useful within tools that operate upon GraphQL Values directly and\n * in isolation of complete GraphQL documents.\n *\n * Consider providing the results to the utility function: valueFromAST().\n */\n\nexport function parseValue(source, options) {\n const parser = new Parser(source, options);\n parser.expectToken(TokenKind.SOF);\n const value = parser.parseValueLiteral(false);\n parser.expectToken(TokenKind.EOF);\n return value;\n}\n/**\n * Similar to parseValue(), but raises a parse error if it encounters a\n * variable. The return type will be a constant value.\n */\n\nexport function parseConstValue(source, options) {\n const parser = new Parser(source, options);\n parser.expectToken(TokenKind.SOF);\n const value = parser.parseConstValueLiteral();\n parser.expectToken(TokenKind.EOF);\n return value;\n}\n/**\n * Given a string containing a GraphQL Type (ex. `[Int!]`), parse the AST for\n * that type.\n * Throws GraphQLError if a syntax error is encountered.\n *\n * This is useful within tools that operate upon GraphQL Types directly and\n * in isolation of complete GraphQL documents.\n *\n * Consider providing the results to the utility function: typeFromAST().\n */\n\nexport function parseType(source, options) {\n const parser = new Parser(source, options);\n parser.expectToken(TokenKind.SOF);\n const type = parser.parseTypeReference();\n parser.expectToken(TokenKind.EOF);\n return type;\n}\n/**\n * This class is exported only to assist people in implementing their own parsers\n * without duplicating too much code and should be used only as last resort for cases\n * such as experimental syntax or if certain features could not be contributed upstream.\n *\n * It is still part of the internal API and is versioned, so any changes to it are never\n * considered breaking changes. If you still need to support multiple versions of the\n * library, please use the `versionInfo` variable for version detection.\n *\n * @internal\n */\n\nexport class Parser {\n constructor(source, options) {\n const sourceObj = isSource(source) ? source : new Source(source);\n this._lexer = new Lexer(sourceObj);\n this._options = options;\n }\n /**\n * Converts a name lex token into a name parse node.\n */\n\n parseName() {\n const token = this.expectToken(TokenKind.NAME);\n return this.node(token, {\n kind: Kind.NAME,\n value: token.value,\n });\n } // Implements the parsing rules in the Document section.\n\n /**\n * Document : Definition+\n */\n\n parseDocument() {\n return this.node(this._lexer.token, {\n kind: Kind.DOCUMENT,\n definitions: this.many(\n TokenKind.SOF,\n this.parseDefinition,\n TokenKind.EOF,\n ),\n });\n }\n /**\n * Definition :\n * - ExecutableDefinition\n * - TypeSystemDefinition\n * - TypeSystemExtension\n *\n * ExecutableDefinition :\n * - OperationDefinition\n * - FragmentDefinition\n *\n * TypeSystemDefinition :\n * - SchemaDefinition\n * - TypeDefinition\n * - DirectiveDefinition\n *\n * TypeDefinition :\n * - ScalarTypeDefinition\n * - ObjectTypeDefinition\n * - InterfaceTypeDefinition\n * - UnionTypeDefinition\n * - EnumTypeDefinition\n * - InputObjectTypeDefinition\n */\n\n parseDefinition() {\n if (this.peek(TokenKind.BRACE_L)) {\n return this.parseOperationDefinition();\n } // Many definitions begin with a description and require a lookahead.\n\n const hasDescription = this.peekDescription();\n const keywordToken = hasDescription\n ? this._lexer.lookahead()\n : this._lexer.token;\n\n if (keywordToken.kind === TokenKind.NAME) {\n switch (keywordToken.value) {\n case 'schema':\n return this.parseSchemaDefinition();\n\n case 'scalar':\n return this.parseScalarTypeDefinition();\n\n case 'type':\n return this.parseObjectTypeDefinition();\n\n case 'interface':\n return this.parseInterfaceTypeDefinition();\n\n case 'union':\n return this.parseUnionTypeDefinition();\n\n case 'enum':\n return this.parseEnumTypeDefinition();\n\n case 'input':\n return this.parseInputObjectTypeDefinition();\n\n case 'directive':\n return this.parseDirectiveDefinition();\n }\n\n if (hasDescription) {\n throw syntaxError(\n this._lexer.source,\n this._lexer.token.start,\n 'Unexpected description, descriptions are supported only on type definitions.',\n );\n }\n\n switch (keywordToken.value) {\n case 'query':\n case 'mutation':\n case 'subscription':\n return this.parseOperationDefinition();\n\n case 'fragment':\n return this.parseFragmentDefinition();\n\n case 'extend':\n return this.parseTypeSystemExtension();\n }\n }\n\n throw this.unexpected(keywordToken);\n } // Implements the parsing rules in the Operations section.\n\n /**\n * OperationDefinition :\n * - SelectionSet\n * - OperationType Name? VariableDefinitions? Directives? SelectionSet\n */\n\n parseOperationDefinition() {\n const start = this._lexer.token;\n\n if (this.peek(TokenKind.BRACE_L)) {\n return this.node(start, {\n kind: Kind.OPERATION_DEFINITION,\n operation: OperationTypeNode.QUERY,\n name: undefined,\n variableDefinitions: [],\n directives: [],\n selectionSet: this.parseSelectionSet(),\n });\n }\n\n const operation = this.parseOperationType();\n let name;\n\n if (this.peek(TokenKind.NAME)) {\n name = this.parseName();\n }\n\n return this.node(start, {\n kind: Kind.OPERATION_DEFINITION,\n operation,\n name,\n variableDefinitions: this.parseVariableDefinitions(),\n directives: this.parseDirectives(false),\n selectionSet: this.parseSelectionSet(),\n });\n }\n /**\n * OperationType : one of query mutation subscription\n */\n\n parseOperationType() {\n const operationToken = this.expectToken(TokenKind.NAME);\n\n switch (operationToken.value) {\n case 'query':\n return OperationTypeNode.QUERY;\n\n case 'mutation':\n return OperationTypeNode.MUTATION;\n\n case 'subscription':\n return OperationTypeNode.SUBSCRIPTION;\n }\n\n throw this.unexpected(operationToken);\n }\n /**\n * VariableDefinitions : ( VariableDefinition+ )\n */\n\n parseVariableDefinitions() {\n return this.optionalMany(\n TokenKind.PAREN_L,\n this.parseVariableDefinition,\n TokenKind.PAREN_R,\n );\n }\n /**\n * VariableDefinition : Variable : Type DefaultValue? Directives[Const]?\n */\n\n parseVariableDefinition() {\n return this.node(this._lexer.token, {\n kind: Kind.VARIABLE_DEFINITION,\n variable: this.parseVariable(),\n type: (this.expectToken(TokenKind.COLON), this.parseTypeReference()),\n defaultValue: this.expectOptionalToken(TokenKind.EQUALS)\n ? this.parseConstValueLiteral()\n : undefined,\n directives: this.parseConstDirectives(),\n });\n }\n /**\n * Variable : $ Name\n */\n\n parseVariable() {\n const start = this._lexer.token;\n this.expectToken(TokenKind.DOLLAR);\n return this.node(start, {\n kind: Kind.VARIABLE,\n name: this.parseName(),\n });\n }\n /**\n * ```\n * SelectionSet : { Selection+ }\n * ```\n */\n\n parseSelectionSet() {\n return this.node(this._lexer.token, {\n kind: Kind.SELECTION_SET,\n selections: this.many(\n TokenKind.BRACE_L,\n this.parseSelection,\n TokenKind.BRACE_R,\n ),\n });\n }\n /**\n * Selection :\n * - Field\n * - FragmentSpread\n * - InlineFragment\n */\n\n parseSelection() {\n return this.peek(TokenKind.SPREAD)\n ? this.parseFragment()\n : this.parseField();\n }\n /**\n * Field : Alias? Name Arguments? Directives? SelectionSet?\n *\n * Alias : Name :\n */\n\n parseField() {\n const start = this._lexer.token;\n const nameOrAlias = this.parseName();\n let alias;\n let name;\n\n if (this.expectOptionalToken(TokenKind.COLON)) {\n alias = nameOrAlias;\n name = this.parseName();\n } else {\n name = nameOrAlias;\n }\n\n return this.node(start, {\n kind: Kind.FIELD,\n alias,\n name,\n arguments: this.parseArguments(false),\n directives: this.parseDirectives(false),\n selectionSet: this.peek(TokenKind.BRACE_L)\n ? this.parseSelectionSet()\n : undefined,\n });\n }\n /**\n * Arguments[Const] : ( Argument[?Const]+ )\n */\n\n parseArguments(isConst) {\n const item = isConst ? this.parseConstArgument : this.parseArgument;\n return this.optionalMany(TokenKind.PAREN_L, item, TokenKind.PAREN_R);\n }\n /**\n * Argument[Const] : Name : Value[?Const]\n */\n\n parseArgument(isConst = false) {\n const start = this._lexer.token;\n const name = this.parseName();\n this.expectToken(TokenKind.COLON);\n return this.node(start, {\n kind: Kind.ARGUMENT,\n name,\n value: this.parseValueLiteral(isConst),\n });\n }\n\n parseConstArgument() {\n return this.parseArgument(true);\n } // Implements the parsing rules in the Fragments section.\n\n /**\n * Corresponds to both FragmentSpread and InlineFragment in the spec.\n *\n * FragmentSpread : ... FragmentName Directives?\n *\n * InlineFragment : ... TypeCondition? Directives? SelectionSet\n */\n\n parseFragment() {\n const start = this._lexer.token;\n this.expectToken(TokenKind.SPREAD);\n const hasTypeCondition = this.expectOptionalKeyword('on');\n\n if (!hasTypeCondition && this.peek(TokenKind.NAME)) {\n return this.node(start, {\n kind: Kind.FRAGMENT_SPREAD,\n name: this.parseFragmentName(),\n directives: this.parseDirectives(false),\n });\n }\n\n return this.node(start, {\n kind: Kind.INLINE_FRAGMENT,\n typeCondition: hasTypeCondition ? this.parseNamedType() : undefined,\n directives: this.parseDirectives(false),\n selectionSet: this.parseSelectionSet(),\n });\n }\n /**\n * FragmentDefinition :\n * - fragment FragmentName on TypeCondition Directives? SelectionSet\n *\n * TypeCondition : NamedType\n */\n\n parseFragmentDefinition() {\n var _this$_options;\n\n const start = this._lexer.token;\n this.expectKeyword('fragment'); // Legacy support for defining variables within fragments changes\n // the grammar of FragmentDefinition:\n // - fragment FragmentName VariableDefinitions? on TypeCondition Directives? SelectionSet\n\n if (\n ((_this$_options = this._options) === null || _this$_options === void 0\n ? void 0\n : _this$_options.allowLegacyFragmentVariables) === true\n ) {\n return this.node(start, {\n kind: Kind.FRAGMENT_DEFINITION,\n name: this.parseFragmentName(),\n variableDefinitions: this.parseVariableDefinitions(),\n typeCondition: (this.expectKeyword('on'), this.parseNamedType()),\n directives: this.parseDirectives(false),\n selectionSet: this.parseSelectionSet(),\n });\n }\n\n return this.node(start, {\n kind: Kind.FRAGMENT_DEFINITION,\n name: this.parseFragmentName(),\n typeCondition: (this.expectKeyword('on'), this.parseNamedType()),\n directives: this.parseDirectives(false),\n selectionSet: this.parseSelectionSet(),\n });\n }\n /**\n * FragmentName : Name but not `on`\n */\n\n parseFragmentName() {\n if (this._lexer.token.value === 'on') {\n throw this.unexpected();\n }\n\n return this.parseName();\n } // Implements the parsing rules in the Values section.\n\n /**\n * Value[Const] :\n * - [~Const] Variable\n * - IntValue\n * - FloatValue\n * - StringValue\n * - BooleanValue\n * - NullValue\n * - EnumValue\n * - ListValue[?Const]\n * - ObjectValue[?Const]\n *\n * BooleanValue : one of `true` `false`\n *\n * NullValue : `null`\n *\n * EnumValue : Name but not `true`, `false` or `null`\n */\n\n parseValueLiteral(isConst) {\n const token = this._lexer.token;\n\n switch (token.kind) {\n case TokenKind.BRACKET_L:\n return this.parseList(isConst);\n\n case TokenKind.BRACE_L:\n return this.parseObject(isConst);\n\n case TokenKind.INT:\n this._lexer.advance();\n\n return this.node(token, {\n kind: Kind.INT,\n value: token.value,\n });\n\n case TokenKind.FLOAT:\n this._lexer.advance();\n\n return this.node(token, {\n kind: Kind.FLOAT,\n value: token.value,\n });\n\n case TokenKind.STRING:\n case TokenKind.BLOCK_STRING:\n return this.parseStringLiteral();\n\n case TokenKind.NAME:\n this._lexer.advance();\n\n switch (token.value) {\n case 'true':\n return this.node(token, {\n kind: Kind.BOOLEAN,\n value: true,\n });\n\n case 'false':\n return this.node(token, {\n kind: Kind.BOOLEAN,\n value: false,\n });\n\n case 'null':\n return this.node(token, {\n kind: Kind.NULL,\n });\n\n default:\n return this.node(token, {\n kind: Kind.ENUM,\n value: token.value,\n });\n }\n\n case TokenKind.DOLLAR:\n if (isConst) {\n this.expectToken(TokenKind.DOLLAR);\n\n if (this._lexer.token.kind === TokenKind.NAME) {\n const varName = this._lexer.token.value;\n throw syntaxError(\n this._lexer.source,\n token.start,\n `Unexpected variable \"$${varName}\" in constant value.`,\n );\n } else {\n throw this.unexpected(token);\n }\n }\n\n return this.parseVariable();\n\n default:\n throw this.unexpected();\n }\n }\n\n parseConstValueLiteral() {\n return this.parseValueLiteral(true);\n }\n\n parseStringLiteral() {\n const token = this._lexer.token;\n\n this._lexer.advance();\n\n return this.node(token, {\n kind: Kind.STRING,\n value: token.value,\n block: token.kind === TokenKind.BLOCK_STRING,\n });\n }\n /**\n * ListValue[Const] :\n * - [ ]\n * - [ Value[?Const]+ ]\n */\n\n parseList(isConst) {\n const item = () => this.parseValueLiteral(isConst);\n\n return this.node(this._lexer.token, {\n kind: Kind.LIST,\n values: this.any(TokenKind.BRACKET_L, item, TokenKind.BRACKET_R),\n });\n }\n /**\n * ```\n * ObjectValue[Const] :\n * - { }\n * - { ObjectField[?Const]+ }\n * ```\n */\n\n parseObject(isConst) {\n const item = () => this.parseObjectField(isConst);\n\n return this.node(this._lexer.token, {\n kind: Kind.OBJECT,\n fields: this.any(TokenKind.BRACE_L, item, TokenKind.BRACE_R),\n });\n }\n /**\n * ObjectField[Const] : Name : Value[?Const]\n */\n\n parseObjectField(isConst) {\n const start = this._lexer.token;\n const name = this.parseName();\n this.expectToken(TokenKind.COLON);\n return this.node(start, {\n kind: Kind.OBJECT_FIELD,\n name,\n value: this.parseValueLiteral(isConst),\n });\n } // Implements the parsing rules in the Directives section.\n\n /**\n * Directives[Const] : Directive[?Const]+\n */\n\n parseDirectives(isConst) {\n const directives = [];\n\n while (this.peek(TokenKind.AT)) {\n directives.push(this.parseDirective(isConst));\n }\n\n return directives;\n }\n\n parseConstDirectives() {\n return this.parseDirectives(true);\n }\n /**\n * ```\n * Directive[Const] : @ Name Arguments[?Const]?\n * ```\n */\n\n parseDirective(isConst) {\n const start = this._lexer.token;\n this.expectToken(TokenKind.AT);\n return this.node(start, {\n kind: Kind.DIRECTIVE,\n name: this.parseName(),\n arguments: this.parseArguments(isConst),\n });\n } // Implements the parsing rules in the Types section.\n\n /**\n * Type :\n * - NamedType\n * - ListType\n * - NonNullType\n */\n\n parseTypeReference() {\n const start = this._lexer.token;\n let type;\n\n if (this.expectOptionalToken(TokenKind.BRACKET_L)) {\n const innerType = this.parseTypeReference();\n this.expectToken(TokenKind.BRACKET_R);\n type = this.node(start, {\n kind: Kind.LIST_TYPE,\n type: innerType,\n });\n } else {\n type = this.parseNamedType();\n }\n\n if (this.expectOptionalToken(TokenKind.BANG)) {\n return this.node(start, {\n kind: Kind.NON_NULL_TYPE,\n type,\n });\n }\n\n return type;\n }\n /**\n * NamedType : Name\n */\n\n parseNamedType() {\n return this.node(this._lexer.token, {\n kind: Kind.NAMED_TYPE,\n name: this.parseName(),\n });\n } // Implements the parsing rules in the Type Definition section.\n\n peekDescription() {\n return this.peek(TokenKind.STRING) || this.peek(TokenKind.BLOCK_STRING);\n }\n /**\n * Description : StringValue\n */\n\n parseDescription() {\n if (this.peekDescription()) {\n return this.parseStringLiteral();\n }\n }\n /**\n * ```\n * SchemaDefinition : Description? schema Directives[Const]? { OperationTypeDefinition+ }\n * ```\n */\n\n parseSchemaDefinition() {\n const start = this._lexer.token;\n const description = this.parseDescription();\n this.expectKeyword('schema');\n const directives = this.parseConstDirectives();\n const operationTypes = this.many(\n TokenKind.BRACE_L,\n this.parseOperationTypeDefinition,\n TokenKind.BRACE_R,\n );\n return this.node(start, {\n kind: Kind.SCHEMA_DEFINITION,\n description,\n directives,\n operationTypes,\n });\n }\n /**\n * OperationTypeDefinition : OperationType : NamedType\n */\n\n parseOperationTypeDefinition() {\n const start = this._lexer.token;\n const operation = this.parseOperationType();\n this.expectToken(TokenKind.COLON);\n const type = this.parseNamedType();\n return this.node(start, {\n kind: Kind.OPERATION_TYPE_DEFINITION,\n operation,\n type,\n });\n }\n /**\n * ScalarTypeDefinition : Description? scalar Name Directives[Const]?\n */\n\n parseScalarTypeDefinition() {\n const start = this._lexer.token;\n const description = this.parseDescription();\n this.expectKeyword('scalar');\n const name = this.parseName();\n const directives = this.parseConstDirectives();\n return this.node(start, {\n kind: Kind.SCALAR_TYPE_DEFINITION,\n description,\n name,\n directives,\n });\n }\n /**\n * ObjectTypeDefinition :\n * Description?\n * type Name ImplementsInterfaces? Directives[Const]? FieldsDefinition?\n */\n\n parseObjectTypeDefinition() {\n const start = this._lexer.token;\n const description = this.parseDescription();\n this.expectKeyword('type');\n const name = this.parseName();\n const interfaces = this.parseImplementsInterfaces();\n const directives = this.parseConstDirectives();\n const fields = this.parseFieldsDefinition();\n return this.node(start, {\n kind: Kind.OBJECT_TYPE_DEFINITION,\n description,\n name,\n interfaces,\n directives,\n fields,\n });\n }\n /**\n * ImplementsInterfaces :\n * - implements `&`? NamedType\n * - ImplementsInterfaces & NamedType\n */\n\n parseImplementsInterfaces() {\n return this.expectOptionalKeyword('implements')\n ? this.delimitedMany(TokenKind.AMP, this.parseNamedType)\n : [];\n }\n /**\n * ```\n * FieldsDefinition : { FieldDefinition+ }\n * ```\n */\n\n parseFieldsDefinition() {\n return this.optionalMany(\n TokenKind.BRACE_L,\n this.parseFieldDefinition,\n TokenKind.BRACE_R,\n );\n }\n /**\n * FieldDefinition :\n * - Description? Name ArgumentsDefinition? : Type Directives[Const]?\n */\n\n parseFieldDefinition() {\n const start = this._lexer.token;\n const description = this.parseDescription();\n const name = this.parseName();\n const args = this.parseArgumentDefs();\n this.expectToken(TokenKind.COLON);\n const type = this.parseTypeReference();\n const directives = this.parseConstDirectives();\n return this.node(start, {\n kind: Kind.FIELD_DEFINITION,\n description,\n name,\n arguments: args,\n type,\n directives,\n });\n }\n /**\n * ArgumentsDefinition : ( InputValueDefinition+ )\n */\n\n parseArgumentDefs() {\n return this.optionalMany(\n TokenKind.PAREN_L,\n this.parseInputValueDef,\n TokenKind.PAREN_R,\n );\n }\n /**\n * InputValueDefinition :\n * - Description? Name : Type DefaultValue? Directives[Const]?\n */\n\n parseInputValueDef() {\n const start = this._lexer.token;\n const description = this.parseDescription();\n const name = this.parseName();\n this.expectToken(TokenKind.COLON);\n const type = this.parseTypeReference();\n let defaultValue;\n\n if (this.expectOptionalToken(TokenKind.EQUALS)) {\n defaultValue = this.parseConstValueLiteral();\n }\n\n const directives = this.parseConstDirectives();\n return this.node(start, {\n kind: Kind.INPUT_VALUE_DEFINITION,\n description,\n name,\n type,\n defaultValue,\n directives,\n });\n }\n /**\n * InterfaceTypeDefinition :\n * - Description? interface Name Directives[Const]? FieldsDefinition?\n */\n\n parseInterfaceTypeDefinition() {\n const start = this._lexer.token;\n const description = this.parseDescription();\n this.expectKeyword('interface');\n const name = this.parseName();\n const interfaces = this.parseImplementsInterfaces();\n const directives = this.parseConstDirectives();\n const fields = this.parseFieldsDefinition();\n return this.node(start, {\n kind: Kind.INTERFACE_TYPE_DEFINITION,\n description,\n name,\n interfaces,\n directives,\n fields,\n });\n }\n /**\n * UnionTypeDefinition :\n * - Description? union Name Directives[Const]? UnionMemberTypes?\n */\n\n parseUnionTypeDefinition() {\n const start = this._lexer.token;\n const description = this.parseDescription();\n this.expectKeyword('union');\n const name = this.parseName();\n const directives = this.parseConstDirectives();\n const types = this.parseUnionMemberTypes();\n return this.node(start, {\n kind: Kind.UNION_TYPE_DEFINITION,\n description,\n name,\n directives,\n types,\n });\n }\n /**\n * UnionMemberTypes :\n * - = `|`? NamedType\n * - UnionMemberTypes | NamedType\n */\n\n parseUnionMemberTypes() {\n return this.expectOptionalToken(TokenKind.EQUALS)\n ? this.delimitedMany(TokenKind.PIPE, this.parseNamedType)\n : [];\n }\n /**\n * EnumTypeDefinition :\n * - Description? enum Name Directives[Const]? EnumValuesDefinition?\n */\n\n parseEnumTypeDefinition() {\n const start = this._lexer.token;\n const description = this.parseDescription();\n this.expectKeyword('enum');\n const name = this.parseName();\n const directives = this.parseConstDirectives();\n const values = this.parseEnumValuesDefinition();\n return this.node(start, {\n kind: Kind.ENUM_TYPE_DEFINITION,\n description,\n name,\n directives,\n values,\n });\n }\n /**\n * ```\n * EnumValuesDefinition : { EnumValueDefinition+ }\n * ```\n */\n\n parseEnumValuesDefinition() {\n return this.optionalMany(\n TokenKind.BRACE_L,\n this.parseEnumValueDefinition,\n TokenKind.BRACE_R,\n );\n }\n /**\n * EnumValueDefinition : Description? EnumValue Directives[Const]?\n */\n\n parseEnumValueDefinition() {\n const start = this._lexer.token;\n const description = this.parseDescription();\n const name = this.parseEnumValueName();\n const directives = this.parseConstDirectives();\n return this.node(start, {\n kind: Kind.ENUM_VALUE_DEFINITION,\n description,\n name,\n directives,\n });\n }\n /**\n * EnumValue : Name but not `true`, `false` or `null`\n */\n\n parseEnumValueName() {\n if (\n this._lexer.token.value === 'true' ||\n this._lexer.token.value === 'false' ||\n this._lexer.token.value === 'null'\n ) {\n throw syntaxError(\n this._lexer.source,\n this._lexer.token.start,\n `${getTokenDesc(\n this._lexer.token,\n )} is reserved and cannot be used for an enum value.`,\n );\n }\n\n return this.parseName();\n }\n /**\n * InputObjectTypeDefinition :\n * - Description? input Name Directives[Const]? InputFieldsDefinition?\n */\n\n parseInputObjectTypeDefinition() {\n const start = this._lexer.token;\n const description = this.parseDescription();\n this.expectKeyword('input');\n const name = this.parseName();\n const directives = this.parseConstDirectives();\n const fields = this.parseInputFieldsDefinition();\n return this.node(start, {\n kind: Kind.INPUT_OBJECT_TYPE_DEFINITION,\n description,\n name,\n directives,\n fields,\n });\n }\n /**\n * ```\n * InputFieldsDefinition : { InputValueDefinition+ }\n * ```\n */\n\n parseInputFieldsDefinition() {\n return this.optionalMany(\n TokenKind.BRACE_L,\n this.parseInputValueDef,\n TokenKind.BRACE_R,\n );\n }\n /**\n * TypeSystemExtension :\n * - SchemaExtension\n * - TypeExtension\n *\n * TypeExtension :\n * - ScalarTypeExtension\n * - ObjectTypeExtension\n * - InterfaceTypeExtension\n * - UnionTypeExtension\n * - EnumTypeExtension\n * - InputObjectTypeDefinition\n */\n\n parseTypeSystemExtension() {\n const keywordToken = this._lexer.lookahead();\n\n if (keywordToken.kind === TokenKind.NAME) {\n switch (keywordToken.value) {\n case 'schema':\n return this.parseSchemaExtension();\n\n case 'scalar':\n return this.parseScalarTypeExtension();\n\n case 'type':\n return this.parseObjectTypeExtension();\n\n case 'interface':\n return this.parseInterfaceTypeExtension();\n\n case 'union':\n return this.parseUnionTypeExtension();\n\n case 'enum':\n return this.parseEnumTypeExtension();\n\n case 'input':\n return this.parseInputObjectTypeExtension();\n }\n }\n\n throw this.unexpected(keywordToken);\n }\n /**\n * ```\n * SchemaExtension :\n * - extend schema Directives[Const]? { OperationTypeDefinition+ }\n * - extend schema Directives[Const]\n * ```\n */\n\n parseSchemaExtension() {\n const start = this._lexer.token;\n this.expectKeyword('extend');\n this.expectKeyword('schema');\n const directives = this.parseConstDirectives();\n const operationTypes = this.optionalMany(\n TokenKind.BRACE_L,\n this.parseOperationTypeDefinition,\n TokenKind.BRACE_R,\n );\n\n if (directives.length === 0 && operationTypes.length === 0) {\n throw this.unexpected();\n }\n\n return this.node(start, {\n kind: Kind.SCHEMA_EXTENSION,\n directives,\n operationTypes,\n });\n }\n /**\n * ScalarTypeExtension :\n * - extend scalar Name Directives[Const]\n */\n\n parseScalarTypeExtension() {\n const start = this._lexer.token;\n this.expectKeyword('extend');\n this.expectKeyword('scalar');\n const name = this.parseName();\n const directives = this.parseConstDirectives();\n\n if (directives.length === 0) {\n throw this.unexpected();\n }\n\n return this.node(start, {\n kind: Kind.SCALAR_TYPE_EXTENSION,\n name,\n directives,\n });\n }\n /**\n * ObjectTypeExtension :\n * - extend type Name ImplementsInterfaces? Directives[Const]? FieldsDefinition\n * - extend type Name ImplementsInterfaces? Directives[Const]\n * - extend type Name ImplementsInterfaces\n */\n\n parseObjectTypeExtension() {\n const start = this._lexer.token;\n this.expectKeyword('extend');\n this.expectKeyword('type');\n const name = this.parseName();\n const interfaces = this.parseImplementsInterfaces();\n const directives = this.parseConstDirectives();\n const fields = this.parseFieldsDefinition();\n\n if (\n interfaces.length === 0 &&\n directives.length === 0 &&\n fields.length === 0\n ) {\n throw this.unexpected();\n }\n\n return this.node(start, {\n kind: Kind.OBJECT_TYPE_EXTENSION,\n name,\n interfaces,\n directives,\n fields,\n });\n }\n /**\n * InterfaceTypeExtension :\n * - extend interface Name ImplementsInterfaces? Directives[Const]? FieldsDefinition\n * - extend interface Name ImplementsInterfaces? Directives[Const]\n * - extend interface Name ImplementsInterfaces\n */\n\n parseInterfaceTypeExtension() {\n const start = this._lexer.token;\n this.expectKeyword('extend');\n this.expectKeyword('interface');\n const name = this.parseName();\n const interfaces = this.parseImplementsInterfaces();\n const directives = this.parseConstDirectives();\n const fields = this.parseFieldsDefinition();\n\n if (\n interfaces.length === 0 &&\n directives.length === 0 &&\n fields.length === 0\n ) {\n throw this.unexpected();\n }\n\n return this.node(start, {\n kind: Kind.INTERFACE_TYPE_EXTENSION,\n name,\n interfaces,\n directives,\n fields,\n });\n }\n /**\n * UnionTypeExtension :\n * - extend union Name Directives[Const]? UnionMemberTypes\n * - extend union Name Directives[Const]\n */\n\n parseUnionTypeExtension() {\n const start = this._lexer.token;\n this.expectKeyword('extend');\n this.expectKeyword('union');\n const name = this.parseName();\n const directives = this.parseConstDirectives();\n const types = this.parseUnionMemberTypes();\n\n if (directives.length === 0 && types.length === 0) {\n throw this.unexpected();\n }\n\n return this.node(start, {\n kind: Kind.UNION_TYPE_EXTENSION,\n name,\n directives,\n types,\n });\n }\n /**\n * EnumTypeExtension :\n * - extend enum Name Directives[Const]? EnumValuesDefinition\n * - extend enum Name Directives[Const]\n */\n\n parseEnumTypeExtension() {\n const start = this._lexer.token;\n this.expectKeyword('extend');\n this.expectKeyword('enum');\n const name = this.parseName();\n const directives = this.parseConstDirectives();\n const values = this.parseEnumValuesDefinition();\n\n if (directives.length === 0 && values.length === 0) {\n throw this.unexpected();\n }\n\n return this.node(start, {\n kind: Kind.ENUM_TYPE_EXTENSION,\n name,\n directives,\n values,\n });\n }\n /**\n * InputObjectTypeExtension :\n * - extend input Name Directives[Const]? InputFieldsDefinition\n * - extend input Name Directives[Const]\n */\n\n parseInputObjectTypeExtension() {\n const start = this._lexer.token;\n this.expectKeyword('extend');\n this.expectKeyword('input');\n const name = this.parseName();\n const directives = this.parseConstDirectives();\n const fields = this.parseInputFieldsDefinition();\n\n if (directives.length === 0 && fields.length === 0) {\n throw this.unexpected();\n }\n\n return this.node(start, {\n kind: Kind.INPUT_OBJECT_TYPE_EXTENSION,\n name,\n directives,\n fields,\n });\n }\n /**\n * ```\n * DirectiveDefinition :\n * - Description? directive @ Name ArgumentsDefinition? `repeatable`? on DirectiveLocations\n * ```\n */\n\n parseDirectiveDefinition() {\n const start = this._lexer.token;\n const description = this.parseDescription();\n this.expectKeyword('directive');\n this.expectToken(TokenKind.AT);\n const name = this.parseName();\n const args = this.parseArgumentDefs();\n const repeatable = this.expectOptionalKeyword('repeatable');\n this.expectKeyword('on');\n const locations = this.parseDirectiveLocations();\n return this.node(start, {\n kind: Kind.DIRECTIVE_DEFINITION,\n description,\n name,\n arguments: args,\n repeatable,\n locations,\n });\n }\n /**\n * DirectiveLocations :\n * - `|`? DirectiveLocation\n * - DirectiveLocations | DirectiveLocation\n */\n\n parseDirectiveLocations() {\n return this.delimitedMany(TokenKind.PIPE, this.parseDirectiveLocation);\n }\n /*\n * DirectiveLocation :\n * - ExecutableDirectiveLocation\n * - TypeSystemDirectiveLocation\n *\n * ExecutableDirectiveLocation : one of\n * `QUERY`\n * `MUTATION`\n * `SUBSCRIPTION`\n * `FIELD`\n * `FRAGMENT_DEFINITION`\n * `FRAGMENT_SPREAD`\n * `INLINE_FRAGMENT`\n *\n * TypeSystemDirectiveLocation : one of\n * `SCHEMA`\n * `SCALAR`\n * `OBJECT`\n * `FIELD_DEFINITION`\n * `ARGUMENT_DEFINITION`\n * `INTERFACE`\n * `UNION`\n * `ENUM`\n * `ENUM_VALUE`\n * `INPUT_OBJECT`\n * `INPUT_FIELD_DEFINITION`\n */\n\n parseDirectiveLocation() {\n const start = this._lexer.token;\n const name = this.parseName();\n\n if (Object.prototype.hasOwnProperty.call(DirectiveLocation, name.value)) {\n return name;\n }\n\n throw this.unexpected(start);\n } // Core parsing utility functions\n\n /**\n * Returns a node that, if configured to do so, sets a \"loc\" field as a\n * location object, used to identify the place in the source that created a\n * given parsed object.\n */\n\n node(startToken, node) {\n var _this$_options2;\n\n if (\n ((_this$_options2 = this._options) === null || _this$_options2 === void 0\n ? void 0\n : _this$_options2.noLocation) !== true\n ) {\n node.loc = new Location(\n startToken,\n this._lexer.lastToken,\n this._lexer.source,\n );\n }\n\n return node;\n }\n /**\n * Determines if the next token is of a given kind\n */\n\n peek(kind) {\n return this._lexer.token.kind === kind;\n }\n /**\n * If the next token is of the given kind, return that token after advancing the lexer.\n * Otherwise, do not change the parser state and throw an error.\n */\n\n expectToken(kind) {\n const token = this._lexer.token;\n\n if (token.kind === kind) {\n this._lexer.advance();\n\n return token;\n }\n\n throw syntaxError(\n this._lexer.source,\n token.start,\n `Expected ${getTokenKindDesc(kind)}, found ${getTokenDesc(token)}.`,\n );\n }\n /**\n * If the next token is of the given kind, return \"true\" after advancing the lexer.\n * Otherwise, do not change the parser state and return \"false\".\n */\n\n expectOptionalToken(kind) {\n const token = this._lexer.token;\n\n if (token.kind === kind) {\n this._lexer.advance();\n\n return true;\n }\n\n return false;\n }\n /**\n * If the next token is a given keyword, advance the lexer.\n * Otherwise, do not change the parser state and throw an error.\n */\n\n expectKeyword(value) {\n const token = this._lexer.token;\n\n if (token.kind === TokenKind.NAME && token.value === value) {\n this._lexer.advance();\n } else {\n throw syntaxError(\n this._lexer.source,\n token.start,\n `Expected \"${value}\", found ${getTokenDesc(token)}.`,\n );\n }\n }\n /**\n * If the next token is a given keyword, return \"true\" after advancing the lexer.\n * Otherwise, do not change the parser state and return \"false\".\n */\n\n expectOptionalKeyword(value) {\n const token = this._lexer.token;\n\n if (token.kind === TokenKind.NAME && token.value === value) {\n this._lexer.advance();\n\n return true;\n }\n\n return false;\n }\n /**\n * Helper function for creating an error when an unexpected lexed token is encountered.\n */\n\n unexpected(atToken) {\n const token =\n atToken !== null && atToken !== void 0 ? atToken : this._lexer.token;\n return syntaxError(\n this._lexer.source,\n token.start,\n `Unexpected ${getTokenDesc(token)}.`,\n );\n }\n /**\n * Returns a possibly empty list of parse nodes, determined by the parseFn.\n * This list begins with a lex token of openKind and ends with a lex token of closeKind.\n * Advances the parser to the next lex token after the closing token.\n */\n\n any(openKind, parseFn, closeKind) {\n this.expectToken(openKind);\n const nodes = [];\n\n while (!this.expectOptionalToken(closeKind)) {\n nodes.push(parseFn.call(this));\n }\n\n return nodes;\n }\n /**\n * Returns a list of parse nodes, determined by the parseFn.\n * It can be empty only if open token is missing otherwise it will always return non-empty list\n * that begins with a lex token of openKind and ends with a lex token of closeKind.\n * Advances the parser to the next lex token after the closing token.\n */\n\n optionalMany(openKind, parseFn, closeKind) {\n if (this.expectOptionalToken(openKind)) {\n const nodes = [];\n\n do {\n nodes.push(parseFn.call(this));\n } while (!this.expectOptionalToken(closeKind));\n\n return nodes;\n }\n\n return [];\n }\n /**\n * Returns a non-empty list of parse nodes, determined by the parseFn.\n * This list begins with a lex token of openKind and ends with a lex token of closeKind.\n * Advances the parser to the next lex token after the closing token.\n */\n\n many(openKind, parseFn, closeKind) {\n this.expectToken(openKind);\n const nodes = [];\n\n do {\n nodes.push(parseFn.call(this));\n } while (!this.expectOptionalToken(closeKind));\n\n return nodes;\n }\n /**\n * Returns a non-empty list of parse nodes, determined by the parseFn.\n * This list may begin with a lex token of delimiterKind followed by items separated by lex tokens of tokenKind.\n * Advances the parser to the next lex token after last item in the list.\n */\n\n delimitedMany(delimiterKind, parseFn) {\n this.expectOptionalToken(delimiterKind);\n const nodes = [];\n\n do {\n nodes.push(parseFn.call(this));\n } while (this.expectOptionalToken(delimiterKind));\n\n return nodes;\n }\n}\n/**\n * A helper function to describe a token as a string for debugging.\n */\n\nfunction getTokenDesc(token) {\n const value = token.value;\n return getTokenKindDesc(token.kind) + (value != null ? ` \"${value}\"` : '');\n}\n/**\n * A helper function to describe a token kind as a string for debugging.\n */\n\nfunction getTokenKindDesc(kind) {\n return isPunctuatorTokenKind(kind) ? `\"${kind}\"` : kind;\n}\n","const MAX_SUGGESTIONS = 5;\n/**\n * Given [ A, B, C ] return ' Did you mean A, B, or C?'.\n */\n\nexport function didYouMean(firstArg, secondArg) {\n const [subMessage, suggestionsArg] = secondArg\n ? [firstArg, secondArg]\n : [undefined, firstArg];\n let message = ' Did you mean ';\n\n if (subMessage) {\n message += subMessage + ' ';\n }\n\n const suggestions = suggestionsArg.map((x) => `\"${x}\"`);\n\n switch (suggestions.length) {\n case 0:\n return '';\n\n case 1:\n return message + suggestions[0] + '?';\n\n case 2:\n return message + suggestions[0] + ' or ' + suggestions[1] + '?';\n }\n\n const selected = suggestions.slice(0, MAX_SUGGESTIONS);\n const lastItem = selected.pop();\n return message + selected.join(', ') + ', or ' + lastItem + '?';\n}\n","/**\n * Returns the first argument it receives.\n */\nexport function identityFunc(x) {\n return x;\n}\n","/**\n * Creates a keyed JS object from an array, given a function to produce the keys\n * for each value in the array.\n *\n * This provides a convenient lookup for the array items if the key function\n * produces unique results.\n * ```ts\n * const phoneBook = [\n * { name: 'Jon', num: '555-1234' },\n * { name: 'Jenny', num: '867-5309' }\n * ]\n *\n * const entriesByName = keyMap(\n * phoneBook,\n * entry => entry.name\n * )\n *\n * // {\n * // Jon: { name: 'Jon', num: '555-1234' },\n * // Jenny: { name: 'Jenny', num: '867-5309' }\n * // }\n *\n * const jennyEntry = entriesByName['Jenny']\n *\n * // { name: 'Jenny', num: '857-6309' }\n * ```\n */\nexport function keyMap(list, keyFn) {\n const result = Object.create(null);\n\n for (const item of list) {\n result[keyFn(item)] = item;\n }\n\n return result;\n}\n","/**\n * Creates a keyed JS object from an array, given a function to produce the keys\n * and a function to produce the values from each item in the array.\n * ```ts\n * const phoneBook = [\n * { name: 'Jon', num: '555-1234' },\n * { name: 'Jenny', num: '867-5309' }\n * ]\n *\n * // { Jon: '555-1234', Jenny: '867-5309' }\n * const phonesByName = keyValMap(\n * phoneBook,\n * entry => entry.name,\n * entry => entry.num\n * )\n * ```\n */\nexport function keyValMap(list, keyFn, valFn) {\n const result = Object.create(null);\n\n for (const item of list) {\n result[keyFn(item)] = valFn(item);\n }\n\n return result;\n}\n","/**\n * Creates an object map with the same keys as `map` and values generated by\n * running each value of `map` thru `fn`.\n */\nexport function mapValue(map, fn) {\n const result = Object.create(null);\n\n for (const key of Object.keys(map)) {\n result[key] = fn(map[key], key);\n }\n\n return result;\n}\n","/**\n * Returns a number indicating whether a reference string comes before, or after,\n * or is the same as the given string in natural sort order.\n *\n * See: https://en.wikipedia.org/wiki/Natural_sort_order\n *\n */\nexport function naturalCompare(aStr, bStr) {\n let aIndex = 0;\n let bIndex = 0;\n\n while (aIndex < aStr.length && bIndex < bStr.length) {\n let aChar = aStr.charCodeAt(aIndex);\n let bChar = bStr.charCodeAt(bIndex);\n\n if (isDigit(aChar) && isDigit(bChar)) {\n let aNum = 0;\n\n do {\n ++aIndex;\n aNum = aNum * 10 + aChar - DIGIT_0;\n aChar = aStr.charCodeAt(aIndex);\n } while (isDigit(aChar) && aNum > 0);\n\n let bNum = 0;\n\n do {\n ++bIndex;\n bNum = bNum * 10 + bChar - DIGIT_0;\n bChar = bStr.charCodeAt(bIndex);\n } while (isDigit(bChar) && bNum > 0);\n\n if (aNum < bNum) {\n return -1;\n }\n\n if (aNum > bNum) {\n return 1;\n }\n } else {\n if (aChar < bChar) {\n return -1;\n }\n\n if (aChar > bChar) {\n return 1;\n }\n\n ++aIndex;\n ++bIndex;\n }\n }\n\n return aStr.length - bStr.length;\n}\nconst DIGIT_0 = 48;\nconst DIGIT_9 = 57;\n\nfunction isDigit(code) {\n return !isNaN(code) && DIGIT_0 <= code && code <= DIGIT_9;\n}\n","import { naturalCompare } from './naturalCompare.mjs';\n/**\n * Given an invalid input string and a list of valid options, returns a filtered\n * list of valid options sorted based on their similarity with the input.\n */\n\nexport function suggestionList(input, options) {\n const optionsByDistance = Object.create(null);\n const lexicalDistance = new LexicalDistance(input);\n const threshold = Math.floor(input.length * 0.4) + 1;\n\n for (const option of options) {\n const distance = lexicalDistance.measure(option, threshold);\n\n if (distance !== undefined) {\n optionsByDistance[option] = distance;\n }\n }\n\n return Object.keys(optionsByDistance).sort((a, b) => {\n const distanceDiff = optionsByDistance[a] - optionsByDistance[b];\n return distanceDiff !== 0 ? distanceDiff : naturalCompare(a, b);\n });\n}\n/**\n * Computes the lexical distance between strings A and B.\n *\n * The \"distance\" between two strings is given by counting the minimum number\n * of edits needed to transform string A into string B. An edit can be an\n * insertion, deletion, or substitution of a single character, or a swap of two\n * adjacent characters.\n *\n * Includes a custom alteration from Damerau-Levenshtein to treat case changes\n * as a single edit which helps identify mis-cased values with an edit distance\n * of 1.\n *\n * This distance can be useful for detecting typos in input or sorting\n */\n\nclass LexicalDistance {\n constructor(input) {\n this._input = input;\n this._inputLowerCase = input.toLowerCase();\n this._inputArray = stringToArray(this._inputLowerCase);\n this._rows = [\n new Array(input.length + 1).fill(0),\n new Array(input.length + 1).fill(0),\n new Array(input.length + 1).fill(0),\n ];\n }\n\n measure(option, threshold) {\n if (this._input === option) {\n return 0;\n }\n\n const optionLowerCase = option.toLowerCase(); // Any case change counts as a single edit\n\n if (this._inputLowerCase === optionLowerCase) {\n return 1;\n }\n\n let a = stringToArray(optionLowerCase);\n let b = this._inputArray;\n\n if (a.length < b.length) {\n const tmp = a;\n a = b;\n b = tmp;\n }\n\n const aLength = a.length;\n const bLength = b.length;\n\n if (aLength - bLength > threshold) {\n return undefined;\n }\n\n const rows = this._rows;\n\n for (let j = 0; j <= bLength; j++) {\n rows[0][j] = j;\n }\n\n for (let i = 1; i <= aLength; i++) {\n const upRow = rows[(i - 1) % 3];\n const currentRow = rows[i % 3];\n let smallestCell = (currentRow[0] = i);\n\n for (let j = 1; j <= bLength; j++) {\n const cost = a[i - 1] === b[j - 1] ? 0 : 1;\n let currentCell = Math.min(\n upRow[j] + 1, // delete\n currentRow[j - 1] + 1, // insert\n upRow[j - 1] + cost, // substitute\n );\n\n if (i > 1 && j > 1 && a[i - 1] === b[j - 2] && a[i - 2] === b[j - 1]) {\n // transposition\n const doubleDiagonalCell = rows[(i - 2) % 3][j - 2];\n currentCell = Math.min(currentCell, doubleDiagonalCell + 1);\n }\n\n if (currentCell < smallestCell) {\n smallestCell = currentCell;\n }\n\n currentRow[j] = currentCell;\n } // Early exit, since distance can't go smaller than smallest element of the previous row.\n\n if (smallestCell > threshold) {\n return undefined;\n }\n }\n\n const distance = rows[aLength % 3][bLength];\n return distance <= threshold ? distance : undefined;\n }\n}\n\nfunction stringToArray(str) {\n const strLength = str.length;\n const array = new Array(strLength);\n\n for (let i = 0; i < strLength; ++i) {\n array[i] = str.charCodeAt(i);\n }\n\n return array;\n}\n","export function toObjMap(obj) {\n if (obj == null) {\n return Object.create(null);\n }\n\n if (Object.getPrototypeOf(obj) === null) {\n return obj;\n }\n\n const map = Object.create(null);\n\n for (const [key, value] of Object.entries(obj)) {\n map[key] = value;\n }\n\n return map;\n}\n","/**\n * Prints a string as a GraphQL StringValue literal. Replaces control characters\n * and excluded characters (\" U+0022 and \\\\ U+005C) with escape sequences.\n */\nexport function printString(str) {\n return `\"${str.replace(escapedRegExp, escapedReplacer)}\"`;\n} // eslint-disable-next-line no-control-regex\n\nconst escapedRegExp = /[\\x00-\\x1f\\x22\\x5c\\x7f-\\x9f]/g;\n\nfunction escapedReplacer(str) {\n return escapeSequences[str.charCodeAt(0)];\n} // prettier-ignore\n\nconst escapeSequences = [\n '\\\\u0000',\n '\\\\u0001',\n '\\\\u0002',\n '\\\\u0003',\n '\\\\u0004',\n '\\\\u0005',\n '\\\\u0006',\n '\\\\u0007',\n '\\\\b',\n '\\\\t',\n '\\\\n',\n '\\\\u000B',\n '\\\\f',\n '\\\\r',\n '\\\\u000E',\n '\\\\u000F',\n '\\\\u0010',\n '\\\\u0011',\n '\\\\u0012',\n '\\\\u0013',\n '\\\\u0014',\n '\\\\u0015',\n '\\\\u0016',\n '\\\\u0017',\n '\\\\u0018',\n '\\\\u0019',\n '\\\\u001A',\n '\\\\u001B',\n '\\\\u001C',\n '\\\\u001D',\n '\\\\u001E',\n '\\\\u001F',\n '',\n '',\n '\\\\\"',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '', // 2F\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '', // 3F\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '', // 4F\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '\\\\\\\\',\n '',\n '',\n '', // 5F\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '', // 6F\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '',\n '\\\\u007F',\n '\\\\u0080',\n '\\\\u0081',\n '\\\\u0082',\n '\\\\u0083',\n '\\\\u0084',\n '\\\\u0085',\n '\\\\u0086',\n '\\\\u0087',\n '\\\\u0088',\n '\\\\u0089',\n '\\\\u008A',\n '\\\\u008B',\n '\\\\u008C',\n '\\\\u008D',\n '\\\\u008E',\n '\\\\u008F',\n '\\\\u0090',\n '\\\\u0091',\n '\\\\u0092',\n '\\\\u0093',\n '\\\\u0094',\n '\\\\u0095',\n '\\\\u0096',\n '\\\\u0097',\n '\\\\u0098',\n '\\\\u0099',\n '\\\\u009A',\n '\\\\u009B',\n '\\\\u009C',\n '\\\\u009D',\n '\\\\u009E',\n '\\\\u009F',\n];\n","import { devAssert } from '../jsutils/devAssert.mjs';\nimport { inspect } from '../jsutils/inspect.mjs';\nimport { isNode, QueryDocumentKeys } from './ast.mjs';\nimport { Kind } from './kinds.mjs';\n/**\n * A visitor is provided to visit, it contains the collection of\n * relevant functions to be called during the visitor's traversal.\n */\n\nexport const BREAK = Object.freeze({});\n/**\n * visit() will walk through an AST using a depth-first traversal, calling\n * the visitor's enter function at each node in the traversal, and calling the\n * leave function after visiting that node and all of its child nodes.\n *\n * By returning different values from the enter and leave functions, the\n * behavior of the visitor can be altered, including skipping over a sub-tree of\n * the AST (by returning false), editing the AST by returning a value or null\n * to remove the value, or to stop the whole traversal by returning BREAK.\n *\n * When using visit() to edit an AST, the original AST will not be modified, and\n * a new version of the AST with the changes applied will be returned from the\n * visit function.\n *\n * ```ts\n * const editedAST = visit(ast, {\n * enter(node, key, parent, path, ancestors) {\n * // @return\n * // undefined: no action\n * // false: skip visiting this node\n * // visitor.BREAK: stop visiting altogether\n * // null: delete this node\n * // any value: replace this node with the returned value\n * },\n * leave(node, key, parent, path, ancestors) {\n * // @return\n * // undefined: no action\n * // false: no action\n * // visitor.BREAK: stop visiting altogether\n * // null: delete this node\n * // any value: replace this node with the returned value\n * }\n * });\n * ```\n *\n * Alternatively to providing enter() and leave() functions, a visitor can\n * instead provide functions named the same as the kinds of AST nodes, or\n * enter/leave visitors at a named key, leading to three permutations of the\n * visitor API:\n *\n * 1) Named visitors triggered when entering a node of a specific kind.\n *\n * ```ts\n * visit(ast, {\n * Kind(node) {\n * // enter the \"Kind\" node\n * }\n * })\n * ```\n *\n * 2) Named visitors that trigger upon entering and leaving a node of a specific kind.\n *\n * ```ts\n * visit(ast, {\n * Kind: {\n * enter(node) {\n * // enter the \"Kind\" node\n * }\n * leave(node) {\n * // leave the \"Kind\" node\n * }\n * }\n * })\n * ```\n *\n * 3) Generic visitors that trigger upon entering and leaving any node.\n *\n * ```ts\n * visit(ast, {\n * enter(node) {\n * // enter any node\n * },\n * leave(node) {\n * // leave any node\n * }\n * })\n * ```\n */\n\nexport function visit(root, visitor, visitorKeys = QueryDocumentKeys) {\n const enterLeaveMap = new Map();\n\n for (const kind of Object.values(Kind)) {\n enterLeaveMap.set(kind, getEnterLeaveForKind(visitor, kind));\n }\n /* eslint-disable no-undef-init */\n\n let stack = undefined;\n let inArray = Array.isArray(root);\n let keys = [root];\n let index = -1;\n let edits = [];\n let node = root;\n let key = undefined;\n let parent = undefined;\n const path = [];\n const ancestors = [];\n /* eslint-enable no-undef-init */\n\n do {\n index++;\n const isLeaving = index === keys.length;\n const isEdited = isLeaving && edits.length !== 0;\n\n if (isLeaving) {\n key = ancestors.length === 0 ? undefined : path[path.length - 1];\n node = parent;\n parent = ancestors.pop();\n\n if (isEdited) {\n if (inArray) {\n node = node.slice();\n let editOffset = 0;\n\n for (const [editKey, editValue] of edits) {\n const arrayKey = editKey - editOffset;\n\n if (editValue === null) {\n node.splice(arrayKey, 1);\n editOffset++;\n } else {\n node[arrayKey] = editValue;\n }\n }\n } else {\n node = Object.defineProperties(\n {},\n Object.getOwnPropertyDescriptors(node),\n );\n\n for (const [editKey, editValue] of edits) {\n node[editKey] = editValue;\n }\n }\n }\n\n index = stack.index;\n keys = stack.keys;\n edits = stack.edits;\n inArray = stack.inArray;\n stack = stack.prev;\n } else if (parent) {\n key = inArray ? index : keys[index];\n node = parent[key];\n\n if (node === null || node === undefined) {\n continue;\n }\n\n path.push(key);\n }\n\n let result;\n\n if (!Array.isArray(node)) {\n var _enterLeaveMap$get, _enterLeaveMap$get2;\n\n isNode(node) || devAssert(false, `Invalid AST Node: ${inspect(node)}.`);\n const visitFn = isLeaving\n ? (_enterLeaveMap$get = enterLeaveMap.get(node.kind)) === null ||\n _enterLeaveMap$get === void 0\n ? void 0\n : _enterLeaveMap$get.leave\n : (_enterLeaveMap$get2 = enterLeaveMap.get(node.kind)) === null ||\n _enterLeaveMap$get2 === void 0\n ? void 0\n : _enterLeaveMap$get2.enter;\n result =\n visitFn === null || visitFn === void 0\n ? void 0\n : visitFn.call(visitor, node, key, parent, path, ancestors);\n\n if (result === BREAK) {\n break;\n }\n\n if (result === false) {\n if (!isLeaving) {\n path.pop();\n continue;\n }\n } else if (result !== undefined) {\n edits.push([key, result]);\n\n if (!isLeaving) {\n if (isNode(result)) {\n node = result;\n } else {\n path.pop();\n continue;\n }\n }\n }\n }\n\n if (result === undefined && isEdited) {\n edits.push([key, node]);\n }\n\n if (isLeaving) {\n path.pop();\n } else {\n var _node$kind;\n\n stack = {\n inArray,\n index,\n keys,\n edits,\n prev: stack,\n };\n inArray = Array.isArray(node);\n keys = inArray\n ? node\n : (_node$kind = visitorKeys[node.kind]) !== null &&\n _node$kind !== void 0\n ? _node$kind\n : [];\n index = -1;\n edits = [];\n\n if (parent) {\n ancestors.push(parent);\n }\n\n parent = node;\n }\n } while (stack !== undefined);\n\n if (edits.length !== 0) {\n // New root\n return edits[edits.length - 1][1];\n }\n\n return root;\n}\n/**\n * Creates a new visitor instance which delegates to many visitors to run in\n * parallel. Each visitor will be visited for each node before moving on.\n *\n * If a prior visitor edits a node, no following visitors will see that node.\n */\n\nexport function visitInParallel(visitors) {\n const skipping = new Array(visitors.length).fill(null);\n const mergedVisitor = Object.create(null);\n\n for (const kind of Object.values(Kind)) {\n let hasVisitor = false;\n const enterList = new Array(visitors.length).fill(undefined);\n const leaveList = new Array(visitors.length).fill(undefined);\n\n for (let i = 0; i < visitors.length; ++i) {\n const { enter, leave } = getEnterLeaveForKind(visitors[i], kind);\n hasVisitor || (hasVisitor = enter != null || leave != null);\n enterList[i] = enter;\n leaveList[i] = leave;\n }\n\n if (!hasVisitor) {\n continue;\n }\n\n const mergedEnterLeave = {\n enter(...args) {\n const node = args[0];\n\n for (let i = 0; i < visitors.length; i++) {\n if (skipping[i] === null) {\n var _enterList$i;\n\n const result =\n (_enterList$i = enterList[i]) === null || _enterList$i === void 0\n ? void 0\n : _enterList$i.apply(visitors[i], args);\n\n if (result === false) {\n skipping[i] = node;\n } else if (result === BREAK) {\n skipping[i] = BREAK;\n } else if (result !== undefined) {\n return result;\n }\n }\n }\n },\n\n leave(...args) {\n const node = args[0];\n\n for (let i = 0; i < visitors.length; i++) {\n if (skipping[i] === null) {\n var _leaveList$i;\n\n const result =\n (_leaveList$i = leaveList[i]) === null || _leaveList$i === void 0\n ? void 0\n : _leaveList$i.apply(visitors[i], args);\n\n if (result === BREAK) {\n skipping[i] = BREAK;\n } else if (result !== undefined && result !== false) {\n return result;\n }\n } else if (skipping[i] === node) {\n skipping[i] = null;\n }\n }\n },\n };\n mergedVisitor[kind] = mergedEnterLeave;\n }\n\n return mergedVisitor;\n}\n/**\n * Given a visitor instance and a node kind, return EnterLeaveVisitor for that kind.\n */\n\nexport function getEnterLeaveForKind(visitor, kind) {\n const kindVisitor = visitor[kind];\n\n if (typeof kindVisitor === 'object') {\n // { Kind: { enter() {}, leave() {} } }\n return kindVisitor;\n } else if (typeof kindVisitor === 'function') {\n // { Kind() {} }\n return {\n enter: kindVisitor,\n leave: undefined,\n };\n } // { enter() {}, leave() {} }\n\n return {\n enter: visitor.enter,\n leave: visitor.leave,\n };\n}\n/**\n * Given a visitor instance, if it is leaving or not, and a node kind, return\n * the function the visitor runtime should call.\n *\n * @deprecated Please use `getEnterLeaveForKind` instead. Will be removed in v17\n */\n\n/* c8 ignore next 8 */\n\nexport function getVisitFn(visitor, kind, isLeaving) {\n const { enter, leave } = getEnterLeaveForKind(visitor, kind);\n return isLeaving ? leave : enter;\n}\n","import { printBlockString } from './blockString.mjs';\nimport { printString } from './printString.mjs';\nimport { visit } from './visitor.mjs';\n/**\n * Converts an AST into a string, using one set of reasonable\n * formatting rules.\n */\n\nexport function print(ast) {\n return visit(ast, printDocASTReducer);\n}\nconst MAX_LINE_LENGTH = 80;\nconst printDocASTReducer = {\n Name: {\n leave: (node) => node.value,\n },\n Variable: {\n leave: (node) => '$' + node.name,\n },\n // Document\n Document: {\n leave: (node) => join(node.definitions, '\\n\\n'),\n },\n OperationDefinition: {\n leave(node) {\n const varDefs = wrap('(', join(node.variableDefinitions, ', '), ')');\n const prefix = join(\n [\n node.operation,\n join([node.name, varDefs]),\n join(node.directives, ' '),\n ],\n ' ',\n ); // Anonymous queries with no directives or variable definitions can use\n // the query short form.\n\n return (prefix === 'query' ? '' : prefix + ' ') + node.selectionSet;\n },\n },\n VariableDefinition: {\n leave: ({ variable, type, defaultValue, directives }) =>\n variable +\n ': ' +\n type +\n wrap(' = ', defaultValue) +\n wrap(' ', join(directives, ' ')),\n },\n SelectionSet: {\n leave: ({ selections }) => block(selections),\n },\n Field: {\n leave({ alias, name, arguments: args, directives, selectionSet }) {\n const prefix = wrap('', alias, ': ') + name;\n let argsLine = prefix + wrap('(', join(args, ', '), ')');\n\n if (argsLine.length > MAX_LINE_LENGTH) {\n argsLine = prefix + wrap('(\\n', indent(join(args, '\\n')), '\\n)');\n }\n\n return join([argsLine, join(directives, ' '), selectionSet], ' ');\n },\n },\n Argument: {\n leave: ({ name, value }) => name + ': ' + value,\n },\n // Fragments\n FragmentSpread: {\n leave: ({ name, directives }) =>\n '...' + name + wrap(' ', join(directives, ' ')),\n },\n InlineFragment: {\n leave: ({ typeCondition, directives, selectionSet }) =>\n join(\n [\n '...',\n wrap('on ', typeCondition),\n join(directives, ' '),\n selectionSet,\n ],\n ' ',\n ),\n },\n FragmentDefinition: {\n leave: (\n { name, typeCondition, variableDefinitions, directives, selectionSet }, // Note: fragment variable definitions are experimental and may be changed\n ) =>\n // or removed in the future.\n `fragment ${name}${wrap('(', join(variableDefinitions, ', '), ')')} ` +\n `on ${typeCondition} ${wrap('', join(directives, ' '), ' ')}` +\n selectionSet,\n },\n // Value\n IntValue: {\n leave: ({ value }) => value,\n },\n FloatValue: {\n leave: ({ value }) => value,\n },\n StringValue: {\n leave: ({ value, block: isBlockString }) =>\n isBlockString ? printBlockString(value) : printString(value),\n },\n BooleanValue: {\n leave: ({ value }) => (value ? 'true' : 'false'),\n },\n NullValue: {\n leave: () => 'null',\n },\n EnumValue: {\n leave: ({ value }) => value,\n },\n ListValue: {\n leave: ({ values }) => '[' + join(values, ', ') + ']',\n },\n ObjectValue: {\n leave: ({ fields }) => '{' + join(fields, ', ') + '}',\n },\n ObjectField: {\n leave: ({ name, value }) => name + ': ' + value,\n },\n // Directive\n Directive: {\n leave: ({ name, arguments: args }) =>\n '@' + name + wrap('(', join(args, ', '), ')'),\n },\n // Type\n NamedType: {\n leave: ({ name }) => name,\n },\n ListType: {\n leave: ({ type }) => '[' + type + ']',\n },\n NonNullType: {\n leave: ({ type }) => type + '!',\n },\n // Type System Definitions\n SchemaDefinition: {\n leave: ({ description, directives, operationTypes }) =>\n wrap('', description, '\\n') +\n join(['schema', join(directives, ' '), block(operationTypes)], ' '),\n },\n OperationTypeDefinition: {\n leave: ({ operation, type }) => operation + ': ' + type,\n },\n ScalarTypeDefinition: {\n leave: ({ description, name, directives }) =>\n wrap('', description, '\\n') +\n join(['scalar', name, join(directives, ' ')], ' '),\n },\n ObjectTypeDefinition: {\n leave: ({ description, name, interfaces, directives, fields }) =>\n wrap('', description, '\\n') +\n join(\n [\n 'type',\n name,\n wrap('implements ', join(interfaces, ' & ')),\n join(directives, ' '),\n block(fields),\n ],\n ' ',\n ),\n },\n FieldDefinition: {\n leave: ({ description, name, arguments: args, type, directives }) =>\n wrap('', description, '\\n') +\n name +\n (hasMultilineItems(args)\n ? wrap('(\\n', indent(join(args, '\\n')), '\\n)')\n : wrap('(', join(args, ', '), ')')) +\n ': ' +\n type +\n wrap(' ', join(directives, ' ')),\n },\n InputValueDefinition: {\n leave: ({ description, name, type, defaultValue, directives }) =>\n wrap('', description, '\\n') +\n join(\n [name + ': ' + type, wrap('= ', defaultValue), join(directives, ' ')],\n ' ',\n ),\n },\n InterfaceTypeDefinition: {\n leave: ({ description, name, interfaces, directives, fields }) =>\n wrap('', description, '\\n') +\n join(\n [\n 'interface',\n name,\n wrap('implements ', join(interfaces, ' & ')),\n join(directives, ' '),\n block(fields),\n ],\n ' ',\n ),\n },\n UnionTypeDefinition: {\n leave: ({ description, name, directives, types }) =>\n wrap('', description, '\\n') +\n join(\n ['union', name, join(directives, ' '), wrap('= ', join(types, ' | '))],\n ' ',\n ),\n },\n EnumTypeDefinition: {\n leave: ({ description, name, directives, values }) =>\n wrap('', description, '\\n') +\n join(['enum', name, join(directives, ' '), block(values)], ' '),\n },\n EnumValueDefinition: {\n leave: ({ description, name, directives }) =>\n wrap('', description, '\\n') + join([name, join(directives, ' ')], ' '),\n },\n InputObjectTypeDefinition: {\n leave: ({ description, name, directives, fields }) =>\n wrap('', description, '\\n') +\n join(['input', name, join(directives, ' '), block(fields)], ' '),\n },\n DirectiveDefinition: {\n leave: ({ description, name, arguments: args, repeatable, locations }) =>\n wrap('', description, '\\n') +\n 'directive @' +\n name +\n (hasMultilineItems(args)\n ? wrap('(\\n', indent(join(args, '\\n')), '\\n)')\n : wrap('(', join(args, ', '), ')')) +\n (repeatable ? ' repeatable' : '') +\n ' on ' +\n join(locations, ' | '),\n },\n SchemaExtension: {\n leave: ({ directives, operationTypes }) =>\n join(\n ['extend schema', join(directives, ' '), block(operationTypes)],\n ' ',\n ),\n },\n ScalarTypeExtension: {\n leave: ({ name, directives }) =>\n join(['extend scalar', name, join(directives, ' ')], ' '),\n },\n ObjectTypeExtension: {\n leave: ({ name, interfaces, directives, fields }) =>\n join(\n [\n 'extend type',\n name,\n wrap('implements ', join(interfaces, ' & ')),\n join(directives, ' '),\n block(fields),\n ],\n ' ',\n ),\n },\n InterfaceTypeExtension: {\n leave: ({ name, interfaces, directives, fields }) =>\n join(\n [\n 'extend interface',\n name,\n wrap('implements ', join(interfaces, ' & ')),\n join(directives, ' '),\n block(fields),\n ],\n ' ',\n ),\n },\n UnionTypeExtension: {\n leave: ({ name, directives, types }) =>\n join(\n [\n 'extend union',\n name,\n join(directives, ' '),\n wrap('= ', join(types, ' | ')),\n ],\n ' ',\n ),\n },\n EnumTypeExtension: {\n leave: ({ name, directives, values }) =>\n join(['extend enum', name, join(directives, ' '), block(values)], ' '),\n },\n InputObjectTypeExtension: {\n leave: ({ name, directives, fields }) =>\n join(['extend input', name, join(directives, ' '), block(fields)], ' '),\n },\n};\n/**\n * Given maybeArray, print an empty string if it is null or empty, otherwise\n * print all items together separated by separator if provided\n */\n\nfunction join(maybeArray, separator = '') {\n var _maybeArray$filter$jo;\n\n return (_maybeArray$filter$jo =\n maybeArray === null || maybeArray === void 0\n ? void 0\n : maybeArray.filter((x) => x).join(separator)) !== null &&\n _maybeArray$filter$jo !== void 0\n ? _maybeArray$filter$jo\n : '';\n}\n/**\n * Given array, print each item on its own line, wrapped in an indented `{ }` block.\n */\n\nfunction block(array) {\n return wrap('{\\n', indent(join(array, '\\n')), '\\n}');\n}\n/**\n * If maybeString is not null or empty, then wrap with start and end, otherwise print an empty string.\n */\n\nfunction wrap(start, maybeString, end = '') {\n return maybeString != null && maybeString !== ''\n ? start + maybeString + end\n : '';\n}\n\nfunction indent(str) {\n return wrap(' ', str.replace(/\\n/g, '\\n '));\n}\n\nfunction hasMultilineItems(maybeArray) {\n var _maybeArray$some;\n\n // FIXME: https://github.com/graphql/graphql-js/issues/2203\n\n /* c8 ignore next */\n return (_maybeArray$some =\n maybeArray === null || maybeArray === void 0\n ? void 0\n : maybeArray.some((str) => str.includes('\\n'))) !== null &&\n _maybeArray$some !== void 0\n ? _maybeArray$some\n : false;\n}\n","import { keyValMap } from '../jsutils/keyValMap.mjs';\nimport { Kind } from '../language/kinds.mjs';\n/**\n * Produces a JavaScript value given a GraphQL Value AST.\n *\n * Unlike `valueFromAST()`, no type is provided. The resulting JavaScript value\n * will reflect the provided GraphQL value AST.\n *\n * | GraphQL Value | JavaScript Value |\n * | -------------------- | ---------------- |\n * | Input Object | Object |\n * | List | Array |\n * | Boolean | Boolean |\n * | String / Enum | String |\n * | Int / Float | Number |\n * | Null | null |\n *\n */\n\nexport function valueFromASTUntyped(valueNode, variables) {\n switch (valueNode.kind) {\n case Kind.NULL:\n return null;\n\n case Kind.INT:\n return parseInt(valueNode.value, 10);\n\n case Kind.FLOAT:\n return parseFloat(valueNode.value);\n\n case Kind.STRING:\n case Kind.ENUM:\n case Kind.BOOLEAN:\n return valueNode.value;\n\n case Kind.LIST:\n return valueNode.values.map((node) =>\n valueFromASTUntyped(node, variables),\n );\n\n case Kind.OBJECT:\n return keyValMap(\n valueNode.fields,\n (field) => field.name.value,\n (field) => valueFromASTUntyped(field.value, variables),\n );\n\n case Kind.VARIABLE:\n return variables === null || variables === void 0\n ? void 0\n : variables[valueNode.name.value];\n }\n}\n","import { devAssert } from '../jsutils/devAssert.mjs';\nimport { GraphQLError } from '../error/GraphQLError.mjs';\nimport { isNameContinue, isNameStart } from '../language/characterClasses.mjs';\n/**\n * Upholds the spec rules about naming.\n */\n\nexport function assertName(name) {\n name != null || devAssert(false, 'Must provide name.');\n typeof name === 'string' || devAssert(false, 'Expected name to be a string.');\n\n if (name.length === 0) {\n throw new GraphQLError('Expected name to be a non-empty string.');\n }\n\n for (let i = 1; i < name.length; ++i) {\n if (!isNameContinue(name.charCodeAt(i))) {\n throw new GraphQLError(\n `Names must only contain [_a-zA-Z0-9] but \"${name}\" does not.`,\n );\n }\n }\n\n if (!isNameStart(name.charCodeAt(0))) {\n throw new GraphQLError(\n `Names must start with [_a-zA-Z] but \"${name}\" does not.`,\n );\n }\n\n return name;\n}\n/**\n * Upholds the spec rules about naming enum values.\n *\n * @internal\n */\n\nexport function assertEnumValueName(name) {\n if (name === 'true' || name === 'false' || name === 'null') {\n throw new GraphQLError(`Enum values cannot be named: ${name}`);\n }\n\n return assertName(name);\n}\n","import { devAssert } from '../jsutils/devAssert.mjs';\nimport { didYouMean } from '../jsutils/didYouMean.mjs';\nimport { identityFunc } from '../jsutils/identityFunc.mjs';\nimport { inspect } from '../jsutils/inspect.mjs';\nimport { instanceOf } from '../jsutils/instanceOf.mjs';\nimport { isObjectLike } from '../jsutils/isObjectLike.mjs';\nimport { keyMap } from '../jsutils/keyMap.mjs';\nimport { keyValMap } from '../jsutils/keyValMap.mjs';\nimport { mapValue } from '../jsutils/mapValue.mjs';\nimport { suggestionList } from '../jsutils/suggestionList.mjs';\nimport { toObjMap } from '../jsutils/toObjMap.mjs';\nimport { GraphQLError } from '../error/GraphQLError.mjs';\nimport { Kind } from '../language/kinds.mjs';\nimport { print } from '../language/printer.mjs';\nimport { valueFromASTUntyped } from '../utilities/valueFromASTUntyped.mjs';\nimport { assertEnumValueName, assertName } from './assertName.mjs';\nexport function isType(type) {\n return (\n isScalarType(type) ||\n isObjectType(type) ||\n isInterfaceType(type) ||\n isUnionType(type) ||\n isEnumType(type) ||\n isInputObjectType(type) ||\n isListType(type) ||\n isNonNullType(type)\n );\n}\nexport function assertType(type) {\n if (!isType(type)) {\n throw new Error(`Expected ${inspect(type)} to be a GraphQL type.`);\n }\n\n return type;\n}\n/**\n * There are predicates for each kind of GraphQL type.\n */\n\nexport function isScalarType(type) {\n return instanceOf(type, GraphQLScalarType);\n}\nexport function assertScalarType(type) {\n if (!isScalarType(type)) {\n throw new Error(`Expected ${inspect(type)} to be a GraphQL Scalar type.`);\n }\n\n return type;\n}\nexport function isObjectType(type) {\n return instanceOf(type, GraphQLObjectType);\n}\nexport function assertObjectType(type) {\n if (!isObjectType(type)) {\n throw new Error(`Expected ${inspect(type)} to be a GraphQL Object type.`);\n }\n\n return type;\n}\nexport function isInterfaceType(type) {\n return instanceOf(type, GraphQLInterfaceType);\n}\nexport function assertInterfaceType(type) {\n if (!isInterfaceType(type)) {\n throw new Error(\n `Expected ${inspect(type)} to be a GraphQL Interface type.`,\n );\n }\n\n return type;\n}\nexport function isUnionType(type) {\n return instanceOf(type, GraphQLUnionType);\n}\nexport function assertUnionType(type) {\n if (!isUnionType(type)) {\n throw new Error(`Expected ${inspect(type)} to be a GraphQL Union type.`);\n }\n\n return type;\n}\nexport function isEnumType(type) {\n return instanceOf(type, GraphQLEnumType);\n}\nexport function assertEnumType(type) {\n if (!isEnumType(type)) {\n throw new Error(`Expected ${inspect(type)} to be a GraphQL Enum type.`);\n }\n\n return type;\n}\nexport function isInputObjectType(type) {\n return instanceOf(type, GraphQLInputObjectType);\n}\nexport function assertInputObjectType(type) {\n if (!isInputObjectType(type)) {\n throw new Error(\n `Expected ${inspect(type)} to be a GraphQL Input Object type.`,\n );\n }\n\n return type;\n}\nexport function isListType(type) {\n return instanceOf(type, GraphQLList);\n}\nexport function assertListType(type) {\n if (!isListType(type)) {\n throw new Error(`Expected ${inspect(type)} to be a GraphQL List type.`);\n }\n\n return type;\n}\nexport function isNonNullType(type) {\n return instanceOf(type, GraphQLNonNull);\n}\nexport function assertNonNullType(type) {\n if (!isNonNullType(type)) {\n throw new Error(`Expected ${inspect(type)} to be a GraphQL Non-Null type.`);\n }\n\n return type;\n}\n/**\n * These types may be used as input types for arguments and directives.\n */\n\nexport function isInputType(type) {\n return (\n isScalarType(type) ||\n isEnumType(type) ||\n isInputObjectType(type) ||\n (isWrappingType(type) && isInputType(type.ofType))\n );\n}\nexport function assertInputType(type) {\n if (!isInputType(type)) {\n throw new Error(`Expected ${inspect(type)} to be a GraphQL input type.`);\n }\n\n return type;\n}\n/**\n * These types may be used as output types as the result of fields.\n */\n\nexport function isOutputType(type) {\n return (\n isScalarType(type) ||\n isObjectType(type) ||\n isInterfaceType(type) ||\n isUnionType(type) ||\n isEnumType(type) ||\n (isWrappingType(type) && isOutputType(type.ofType))\n );\n}\nexport function assertOutputType(type) {\n if (!isOutputType(type)) {\n throw new Error(`Expected ${inspect(type)} to be a GraphQL output type.`);\n }\n\n return type;\n}\n/**\n * These types may describe types which may be leaf values.\n */\n\nexport function isLeafType(type) {\n return isScalarType(type) || isEnumType(type);\n}\nexport function assertLeafType(type) {\n if (!isLeafType(type)) {\n throw new Error(`Expected ${inspect(type)} to be a GraphQL leaf type.`);\n }\n\n return type;\n}\n/**\n * These types may describe the parent context of a selection set.\n */\n\nexport function isCompositeType(type) {\n return isObjectType(type) || isInterfaceType(type) || isUnionType(type);\n}\nexport function assertCompositeType(type) {\n if (!isCompositeType(type)) {\n throw new Error(\n `Expected ${inspect(type)} to be a GraphQL composite type.`,\n );\n }\n\n return type;\n}\n/**\n * These types may describe the parent context of a selection set.\n */\n\nexport function isAbstractType(type) {\n return isInterfaceType(type) || isUnionType(type);\n}\nexport function assertAbstractType(type) {\n if (!isAbstractType(type)) {\n throw new Error(`Expected ${inspect(type)} to be a GraphQL abstract type.`);\n }\n\n return type;\n}\n/**\n * List Type Wrapper\n *\n * A list is a wrapping type which points to another type.\n * Lists are often created within the context of defining the fields of\n * an object type.\n *\n * Example:\n *\n * ```ts\n * const PersonType = new GraphQLObjectType({\n * name: 'Person',\n * fields: () => ({\n * parents: { type: new GraphQLList(PersonType) },\n * children: { type: new GraphQLList(PersonType) },\n * })\n * })\n * ```\n */\n\nexport class GraphQLList {\n constructor(ofType) {\n isType(ofType) ||\n devAssert(false, `Expected ${inspect(ofType)} to be a GraphQL type.`);\n this.ofType = ofType;\n }\n\n get [Symbol.toStringTag]() {\n return 'GraphQLList';\n }\n\n toString() {\n return '[' + String(this.ofType) + ']';\n }\n\n toJSON() {\n return this.toString();\n }\n}\n/**\n * Non-Null Type Wrapper\n *\n * A non-null is a wrapping type which points to another type.\n * Non-null types enforce that their values are never null and can ensure\n * an error is raised if this ever occurs during a request. It is useful for\n * fields which you can make a strong guarantee on non-nullability, for example\n * usually the id field of a database row will never be null.\n *\n * Example:\n *\n * ```ts\n * const RowType = new GraphQLObjectType({\n * name: 'Row',\n * fields: () => ({\n * id: { type: new GraphQLNonNull(GraphQLString) },\n * })\n * })\n * ```\n * Note: the enforcement of non-nullability occurs within the executor.\n */\n\nexport class GraphQLNonNull {\n constructor(ofType) {\n isNullableType(ofType) ||\n devAssert(\n false,\n `Expected ${inspect(ofType)} to be a GraphQL nullable type.`,\n );\n this.ofType = ofType;\n }\n\n get [Symbol.toStringTag]() {\n return 'GraphQLNonNull';\n }\n\n toString() {\n return String(this.ofType) + '!';\n }\n\n toJSON() {\n return this.toString();\n }\n}\n/**\n * These types wrap and modify other types\n */\n\nexport function isWrappingType(type) {\n return isListType(type) || isNonNullType(type);\n}\nexport function assertWrappingType(type) {\n if (!isWrappingType(type)) {\n throw new Error(`Expected ${inspect(type)} to be a GraphQL wrapping type.`);\n }\n\n return type;\n}\n/**\n * These types can all accept null as a value.\n */\n\nexport function isNullableType(type) {\n return isType(type) && !isNonNullType(type);\n}\nexport function assertNullableType(type) {\n if (!isNullableType(type)) {\n throw new Error(`Expected ${inspect(type)} to be a GraphQL nullable type.`);\n }\n\n return type;\n}\nexport function getNullableType(type) {\n if (type) {\n return isNonNullType(type) ? type.ofType : type;\n }\n}\n/**\n * These named types do not include modifiers like List or NonNull.\n */\n\nexport function isNamedType(type) {\n return (\n isScalarType(type) ||\n isObjectType(type) ||\n isInterfaceType(type) ||\n isUnionType(type) ||\n isEnumType(type) ||\n isInputObjectType(type)\n );\n}\nexport function assertNamedType(type) {\n if (!isNamedType(type)) {\n throw new Error(`Expected ${inspect(type)} to be a GraphQL named type.`);\n }\n\n return type;\n}\nexport function getNamedType(type) {\n if (type) {\n let unwrappedType = type;\n\n while (isWrappingType(unwrappedType)) {\n unwrappedType = unwrappedType.ofType;\n }\n\n return unwrappedType;\n }\n}\n/**\n * Used while defining GraphQL types to allow for circular references in\n * otherwise immutable type definitions.\n */\n\nexport function resolveReadonlyArrayThunk(thunk) {\n return typeof thunk === 'function' ? thunk() : thunk;\n}\nexport function resolveObjMapThunk(thunk) {\n return typeof thunk === 'function' ? thunk() : thunk;\n}\n/**\n * Custom extensions\n *\n * @remarks\n * Use a unique identifier name for your extension, for example the name of\n * your library or project. Do not use a shortened identifier as this increases\n * the risk of conflicts. We recommend you add at most one extension field,\n * an object which can contain all the values you need.\n */\n\n/**\n * Scalar Type Definition\n *\n * The leaf values of any request and input values to arguments are\n * Scalars (or Enums) and are defined with a name and a series of functions\n * used to parse input from ast or variables and to ensure validity.\n *\n * If a type's serialize function does not return a value (i.e. it returns\n * `undefined`) then an error will be raised and a `null` value will be returned\n * in the response. If the serialize function returns `null`, then no error will\n * be included in the response.\n *\n * Example:\n *\n * ```ts\n * const OddType = new GraphQLScalarType({\n * name: 'Odd',\n * serialize(value) {\n * if (value % 2 === 1) {\n * return value;\n * }\n * }\n * });\n * ```\n */\nexport class GraphQLScalarType {\n constructor(config) {\n var _config$parseValue,\n _config$serialize,\n _config$parseLiteral,\n _config$extensionASTN;\n\n const parseValue =\n (_config$parseValue = config.parseValue) !== null &&\n _config$parseValue !== void 0\n ? _config$parseValue\n : identityFunc;\n this.name = assertName(config.name);\n this.description = config.description;\n this.specifiedByURL = config.specifiedByURL;\n this.serialize =\n (_config$serialize = config.serialize) !== null &&\n _config$serialize !== void 0\n ? _config$serialize\n : identityFunc;\n this.parseValue = parseValue;\n this.parseLiteral =\n (_config$parseLiteral = config.parseLiteral) !== null &&\n _config$parseLiteral !== void 0\n ? _config$parseLiteral\n : (node, variables) => parseValue(valueFromASTUntyped(node, variables));\n this.extensions = toObjMap(config.extensions);\n this.astNode = config.astNode;\n this.extensionASTNodes =\n (_config$extensionASTN = config.extensionASTNodes) !== null &&\n _config$extensionASTN !== void 0\n ? _config$extensionASTN\n : [];\n config.specifiedByURL == null ||\n typeof config.specifiedByURL === 'string' ||\n devAssert(\n false,\n `${this.name} must provide \"specifiedByURL\" as a string, ` +\n `but got: ${inspect(config.specifiedByURL)}.`,\n );\n config.serialize == null ||\n typeof config.serialize === 'function' ||\n devAssert(\n false,\n `${this.name} must provide \"serialize\" function. If this custom Scalar is also used as an input type, ensure \"parseValue\" and \"parseLiteral\" functions are also provided.`,\n );\n\n if (config.parseLiteral) {\n (typeof config.parseValue === 'function' &&\n typeof config.parseLiteral === 'function') ||\n devAssert(\n false,\n `${this.name} must provide both \"parseValue\" and \"parseLiteral\" functions.`,\n );\n }\n }\n\n get [Symbol.toStringTag]() {\n return 'GraphQLScalarType';\n }\n\n toConfig() {\n return {\n name: this.name,\n description: this.description,\n specifiedByURL: this.specifiedByURL,\n serialize: this.serialize,\n parseValue: this.parseValue,\n parseLiteral: this.parseLiteral,\n extensions: this.extensions,\n astNode: this.astNode,\n extensionASTNodes: this.extensionASTNodes,\n };\n }\n\n toString() {\n return this.name;\n }\n\n toJSON() {\n return this.toString();\n }\n}\n\n/**\n * Object Type Definition\n *\n * Almost all of the GraphQL types you define will be object types. Object types\n * have a name, but most importantly describe their fields.\n *\n * Example:\n *\n * ```ts\n * const AddressType = new GraphQLObjectType({\n * name: 'Address',\n * fields: {\n * street: { type: GraphQLString },\n * number: { type: GraphQLInt },\n * formatted: {\n * type: GraphQLString,\n * resolve(obj) {\n * return obj.number + ' ' + obj.street\n * }\n * }\n * }\n * });\n * ```\n *\n * When two types need to refer to each other, or a type needs to refer to\n * itself in a field, you can use a function expression (aka a closure or a\n * thunk) to supply the fields lazily.\n *\n * Example:\n *\n * ```ts\n * const PersonType = new GraphQLObjectType({\n * name: 'Person',\n * fields: () => ({\n * name: { type: GraphQLString },\n * bestFriend: { type: PersonType },\n * })\n * });\n * ```\n */\nexport class GraphQLObjectType {\n constructor(config) {\n var _config$extensionASTN2;\n\n this.name = assertName(config.name);\n this.description = config.description;\n this.isTypeOf = config.isTypeOf;\n this.extensions = toObjMap(config.extensions);\n this.astNode = config.astNode;\n this.extensionASTNodes =\n (_config$extensionASTN2 = config.extensionASTNodes) !== null &&\n _config$extensionASTN2 !== void 0\n ? _config$extensionASTN2\n : [];\n\n this._fields = () => defineFieldMap(config);\n\n this._interfaces = () => defineInterfaces(config);\n\n config.isTypeOf == null ||\n typeof config.isTypeOf === 'function' ||\n devAssert(\n false,\n `${this.name} must provide \"isTypeOf\" as a function, ` +\n `but got: ${inspect(config.isTypeOf)}.`,\n );\n }\n\n get [Symbol.toStringTag]() {\n return 'GraphQLObjectType';\n }\n\n getFields() {\n if (typeof this._fields === 'function') {\n this._fields = this._fields();\n }\n\n return this._fields;\n }\n\n getInterfaces() {\n if (typeof this._interfaces === 'function') {\n this._interfaces = this._interfaces();\n }\n\n return this._interfaces;\n }\n\n toConfig() {\n return {\n name: this.name,\n description: this.description,\n interfaces: this.getInterfaces(),\n fields: fieldsToFieldsConfig(this.getFields()),\n isTypeOf: this.isTypeOf,\n extensions: this.extensions,\n astNode: this.astNode,\n extensionASTNodes: this.extensionASTNodes,\n };\n }\n\n toString() {\n return this.name;\n }\n\n toJSON() {\n return this.toString();\n }\n}\n\nfunction defineInterfaces(config) {\n var _config$interfaces;\n\n const interfaces = resolveReadonlyArrayThunk(\n (_config$interfaces = config.interfaces) !== null &&\n _config$interfaces !== void 0\n ? _config$interfaces\n : [],\n );\n Array.isArray(interfaces) ||\n devAssert(\n false,\n `${config.name} interfaces must be an Array or a function which returns an Array.`,\n );\n return interfaces;\n}\n\nfunction defineFieldMap(config) {\n const fieldMap = resolveObjMapThunk(config.fields);\n isPlainObj(fieldMap) ||\n devAssert(\n false,\n `${config.name} fields must be an object with field names as keys or a function which returns such an object.`,\n );\n return mapValue(fieldMap, (fieldConfig, fieldName) => {\n var _fieldConfig$args;\n\n isPlainObj(fieldConfig) ||\n devAssert(\n false,\n `${config.name}.${fieldName} field config must be an object.`,\n );\n fieldConfig.resolve == null ||\n typeof fieldConfig.resolve === 'function' ||\n devAssert(\n false,\n `${config.name}.${fieldName} field resolver must be a function if ` +\n `provided, but got: ${inspect(fieldConfig.resolve)}.`,\n );\n const argsConfig =\n (_fieldConfig$args = fieldConfig.args) !== null &&\n _fieldConfig$args !== void 0\n ? _fieldConfig$args\n : {};\n isPlainObj(argsConfig) ||\n devAssert(\n false,\n `${config.name}.${fieldName} args must be an object with argument names as keys.`,\n );\n return {\n name: assertName(fieldName),\n description: fieldConfig.description,\n type: fieldConfig.type,\n args: defineArguments(argsConfig),\n resolve: fieldConfig.resolve,\n subscribe: fieldConfig.subscribe,\n deprecationReason: fieldConfig.deprecationReason,\n extensions: toObjMap(fieldConfig.extensions),\n astNode: fieldConfig.astNode,\n };\n });\n}\n\nexport function defineArguments(config) {\n return Object.entries(config).map(([argName, argConfig]) => ({\n name: assertName(argName),\n description: argConfig.description,\n type: argConfig.type,\n defaultValue: argConfig.defaultValue,\n deprecationReason: argConfig.deprecationReason,\n extensions: toObjMap(argConfig.extensions),\n astNode: argConfig.astNode,\n }));\n}\n\nfunction isPlainObj(obj) {\n return isObjectLike(obj) && !Array.isArray(obj);\n}\n\nfunction fieldsToFieldsConfig(fields) {\n return mapValue(fields, (field) => ({\n description: field.description,\n type: field.type,\n args: argsToArgsConfig(field.args),\n resolve: field.resolve,\n subscribe: field.subscribe,\n deprecationReason: field.deprecationReason,\n extensions: field.extensions,\n astNode: field.astNode,\n }));\n}\n/**\n * @internal\n */\n\nexport function argsToArgsConfig(args) {\n return keyValMap(\n args,\n (arg) => arg.name,\n (arg) => ({\n description: arg.description,\n type: arg.type,\n defaultValue: arg.defaultValue,\n deprecationReason: arg.deprecationReason,\n extensions: arg.extensions,\n astNode: arg.astNode,\n }),\n );\n}\nexport function isRequiredArgument(arg) {\n return isNonNullType(arg.type) && arg.defaultValue === undefined;\n}\n\n/**\n * Interface Type Definition\n *\n * When a field can return one of a heterogeneous set of types, a Interface type\n * is used to describe what types are possible, what fields are in common across\n * all types, as well as a function to determine which type is actually used\n * when the field is resolved.\n *\n * Example:\n *\n * ```ts\n * const EntityType = new GraphQLInterfaceType({\n * name: 'Entity',\n * fields: {\n * name: { type: GraphQLString }\n * }\n * });\n * ```\n */\nexport class GraphQLInterfaceType {\n constructor(config) {\n var _config$extensionASTN3;\n\n this.name = assertName(config.name);\n this.description = config.description;\n this.resolveType = config.resolveType;\n this.extensions = toObjMap(config.extensions);\n this.astNode = config.astNode;\n this.extensionASTNodes =\n (_config$extensionASTN3 = config.extensionASTNodes) !== null &&\n _config$extensionASTN3 !== void 0\n ? _config$extensionASTN3\n : [];\n this._fields = defineFieldMap.bind(undefined, config);\n this._interfaces = defineInterfaces.bind(undefined, config);\n config.resolveType == null ||\n typeof config.resolveType === 'function' ||\n devAssert(\n false,\n `${this.name} must provide \"resolveType\" as a function, ` +\n `but got: ${inspect(config.resolveType)}.`,\n );\n }\n\n get [Symbol.toStringTag]() {\n return 'GraphQLInterfaceType';\n }\n\n getFields() {\n if (typeof this._fields === 'function') {\n this._fields = this._fields();\n }\n\n return this._fields;\n }\n\n getInterfaces() {\n if (typeof this._interfaces === 'function') {\n this._interfaces = this._interfaces();\n }\n\n return this._interfaces;\n }\n\n toConfig() {\n return {\n name: this.name,\n description: this.description,\n interfaces: this.getInterfaces(),\n fields: fieldsToFieldsConfig(this.getFields()),\n resolveType: this.resolveType,\n extensions: this.extensions,\n astNode: this.astNode,\n extensionASTNodes: this.extensionASTNodes,\n };\n }\n\n toString() {\n return this.name;\n }\n\n toJSON() {\n return this.toString();\n }\n}\n\n/**\n * Union Type Definition\n *\n * When a field can return one of a heterogeneous set of types, a Union type\n * is used to describe what types are possible as well as providing a function\n * to determine which type is actually used when the field is resolved.\n *\n * Example:\n *\n * ```ts\n * const PetType = new GraphQLUnionType({\n * name: 'Pet',\n * types: [ DogType, CatType ],\n * resolveType(value) {\n * if (value instanceof Dog) {\n * return DogType;\n * }\n * if (value instanceof Cat) {\n * return CatType;\n * }\n * }\n * });\n * ```\n */\nexport class GraphQLUnionType {\n constructor(config) {\n var _config$extensionASTN4;\n\n this.name = assertName(config.name);\n this.description = config.description;\n this.resolveType = config.resolveType;\n this.extensions = toObjMap(config.extensions);\n this.astNode = config.astNode;\n this.extensionASTNodes =\n (_config$extensionASTN4 = config.extensionASTNodes) !== null &&\n _config$extensionASTN4 !== void 0\n ? _config$extensionASTN4\n : [];\n this._types = defineTypes.bind(undefined, config);\n config.resolveType == null ||\n typeof config.resolveType === 'function' ||\n devAssert(\n false,\n `${this.name} must provide \"resolveType\" as a function, ` +\n `but got: ${inspect(config.resolveType)}.`,\n );\n }\n\n get [Symbol.toStringTag]() {\n return 'GraphQLUnionType';\n }\n\n getTypes() {\n if (typeof this._types === 'function') {\n this._types = this._types();\n }\n\n return this._types;\n }\n\n toConfig() {\n return {\n name: this.name,\n description: this.description,\n types: this.getTypes(),\n resolveType: this.resolveType,\n extensions: this.extensions,\n astNode: this.astNode,\n extensionASTNodes: this.extensionASTNodes,\n };\n }\n\n toString() {\n return this.name;\n }\n\n toJSON() {\n return this.toString();\n }\n}\n\nfunction defineTypes(config) {\n const types = resolveReadonlyArrayThunk(config.types);\n Array.isArray(types) ||\n devAssert(\n false,\n `Must provide Array of types or a function which returns such an array for Union ${config.name}.`,\n );\n return types;\n}\n\n/**\n * Enum Type Definition\n *\n * Some leaf values of requests and input values are Enums. GraphQL serializes\n * Enum values as strings, however internally Enums can be represented by any\n * kind of type, often integers.\n *\n * Example:\n *\n * ```ts\n * const RGBType = new GraphQLEnumType({\n * name: 'RGB',\n * values: {\n * RED: { value: 0 },\n * GREEN: { value: 1 },\n * BLUE: { value: 2 }\n * }\n * });\n * ```\n *\n * Note: If a value is not provided in a definition, the name of the enum value\n * will be used as its internal value.\n */\nexport class GraphQLEnumType {\n /* */\n constructor(config) {\n var _config$extensionASTN5;\n\n this.name = assertName(config.name);\n this.description = config.description;\n this.extensions = toObjMap(config.extensions);\n this.astNode = config.astNode;\n this.extensionASTNodes =\n (_config$extensionASTN5 = config.extensionASTNodes) !== null &&\n _config$extensionASTN5 !== void 0\n ? _config$extensionASTN5\n : [];\n this._values = defineEnumValues(this.name, config.values);\n this._valueLookup = new Map(\n this._values.map((enumValue) => [enumValue.value, enumValue]),\n );\n this._nameLookup = keyMap(this._values, (value) => value.name);\n }\n\n get [Symbol.toStringTag]() {\n return 'GraphQLEnumType';\n }\n\n getValues() {\n return this._values;\n }\n\n getValue(name) {\n return this._nameLookup[name];\n }\n\n serialize(outputValue) {\n const enumValue = this._valueLookup.get(outputValue);\n\n if (enumValue === undefined) {\n throw new GraphQLError(\n `Enum \"${this.name}\" cannot represent value: ${inspect(outputValue)}`,\n );\n }\n\n return enumValue.name;\n }\n\n parseValue(inputValue) /* T */\n {\n if (typeof inputValue !== 'string') {\n const valueStr = inspect(inputValue);\n throw new GraphQLError(\n `Enum \"${this.name}\" cannot represent non-string value: ${valueStr}.` +\n didYouMeanEnumValue(this, valueStr),\n );\n }\n\n const enumValue = this.getValue(inputValue);\n\n if (enumValue == null) {\n throw new GraphQLError(\n `Value \"${inputValue}\" does not exist in \"${this.name}\" enum.` +\n didYouMeanEnumValue(this, inputValue),\n );\n }\n\n return enumValue.value;\n }\n\n parseLiteral(valueNode, _variables) /* T */\n {\n // Note: variables will be resolved to a value before calling this function.\n if (valueNode.kind !== Kind.ENUM) {\n const valueStr = print(valueNode);\n throw new GraphQLError(\n `Enum \"${this.name}\" cannot represent non-enum value: ${valueStr}.` +\n didYouMeanEnumValue(this, valueStr),\n valueNode,\n );\n }\n\n const enumValue = this.getValue(valueNode.value);\n\n if (enumValue == null) {\n const valueStr = print(valueNode);\n throw new GraphQLError(\n `Value \"${valueStr}\" does not exist in \"${this.name}\" enum.` +\n didYouMeanEnumValue(this, valueStr),\n valueNode,\n );\n }\n\n return enumValue.value;\n }\n\n toConfig() {\n const values = keyValMap(\n this.getValues(),\n (value) => value.name,\n (value) => ({\n description: value.description,\n value: value.value,\n deprecationReason: value.deprecationReason,\n extensions: value.extensions,\n astNode: value.astNode,\n }),\n );\n return {\n name: this.name,\n description: this.description,\n values,\n extensions: this.extensions,\n astNode: this.astNode,\n extensionASTNodes: this.extensionASTNodes,\n };\n }\n\n toString() {\n return this.name;\n }\n\n toJSON() {\n return this.toString();\n }\n}\n\nfunction didYouMeanEnumValue(enumType, unknownValueStr) {\n const allNames = enumType.getValues().map((value) => value.name);\n const suggestedValues = suggestionList(unknownValueStr, allNames);\n return didYouMean('the enum value', suggestedValues);\n}\n\nfunction defineEnumValues(typeName, valueMap) {\n isPlainObj(valueMap) ||\n devAssert(\n false,\n `${typeName} values must be an object with value names as keys.`,\n );\n return Object.entries(valueMap).map(([valueName, valueConfig]) => {\n isPlainObj(valueConfig) ||\n devAssert(\n false,\n `${typeName}.${valueName} must refer to an object with a \"value\" key ` +\n `representing an internal value but got: ${inspect(valueConfig)}.`,\n );\n return {\n name: assertEnumValueName(valueName),\n description: valueConfig.description,\n value: valueConfig.value !== undefined ? valueConfig.value : valueName,\n deprecationReason: valueConfig.deprecationReason,\n extensions: toObjMap(valueConfig.extensions),\n astNode: valueConfig.astNode,\n };\n });\n}\n\n/**\n * Input Object Type Definition\n *\n * An input object defines a structured collection of fields which may be\n * supplied to a field argument.\n *\n * Using `NonNull` will ensure that a value must be provided by the query\n *\n * Example:\n *\n * ```ts\n * const GeoPoint = new GraphQLInputObjectType({\n * name: 'GeoPoint',\n * fields: {\n * lat: { type: new GraphQLNonNull(GraphQLFloat) },\n * lon: { type: new GraphQLNonNull(GraphQLFloat) },\n * alt: { type: GraphQLFloat, defaultValue: 0 },\n * }\n * });\n * ```\n */\nexport class GraphQLInputObjectType {\n constructor(config) {\n var _config$extensionASTN6;\n\n this.name = assertName(config.name);\n this.description = config.description;\n this.extensions = toObjMap(config.extensions);\n this.astNode = config.astNode;\n this.extensionASTNodes =\n (_config$extensionASTN6 = config.extensionASTNodes) !== null &&\n _config$extensionASTN6 !== void 0\n ? _config$extensionASTN6\n : [];\n this._fields = defineInputFieldMap.bind(undefined, config);\n }\n\n get [Symbol.toStringTag]() {\n return 'GraphQLInputObjectType';\n }\n\n getFields() {\n if (typeof this._fields === 'function') {\n this._fields = this._fields();\n }\n\n return this._fields;\n }\n\n toConfig() {\n const fields = mapValue(this.getFields(), (field) => ({\n description: field.description,\n type: field.type,\n defaultValue: field.defaultValue,\n deprecationReason: field.deprecationReason,\n extensions: field.extensions,\n astNode: field.astNode,\n }));\n return {\n name: this.name,\n description: this.description,\n fields,\n extensions: this.extensions,\n astNode: this.astNode,\n extensionASTNodes: this.extensionASTNodes,\n };\n }\n\n toString() {\n return this.name;\n }\n\n toJSON() {\n return this.toString();\n }\n}\n\nfunction defineInputFieldMap(config) {\n const fieldMap = resolveObjMapThunk(config.fields);\n isPlainObj(fieldMap) ||\n devAssert(\n false,\n `${config.name} fields must be an object with field names as keys or a function which returns such an object.`,\n );\n return mapValue(fieldMap, (fieldConfig, fieldName) => {\n !('resolve' in fieldConfig) ||\n devAssert(\n false,\n `${config.name}.${fieldName} field has a resolve property, but Input Types cannot define resolvers.`,\n );\n return {\n name: assertName(fieldName),\n description: fieldConfig.description,\n type: fieldConfig.type,\n defaultValue: fieldConfig.defaultValue,\n deprecationReason: fieldConfig.deprecationReason,\n extensions: toObjMap(fieldConfig.extensions),\n astNode: fieldConfig.astNode,\n };\n });\n}\n\nexport function isRequiredInputField(field) {\n return isNonNullType(field.type) && field.defaultValue === undefined;\n}\n","import {\n isAbstractType,\n isInterfaceType,\n isListType,\n isNonNullType,\n isObjectType,\n} from '../type/definition.mjs';\n\n/**\n * Provided two types, return true if the types are equal (invariant).\n */\nexport function isEqualType(typeA, typeB) {\n // Equivalent types are equal.\n if (typeA === typeB) {\n return true;\n } // If either type is non-null, the other must also be non-null.\n\n if (isNonNullType(typeA) && isNonNullType(typeB)) {\n return isEqualType(typeA.ofType, typeB.ofType);\n } // If either type is a list, the other must also be a list.\n\n if (isListType(typeA) && isListType(typeB)) {\n return isEqualType(typeA.ofType, typeB.ofType);\n } // Otherwise the types are not equal.\n\n return false;\n}\n/**\n * Provided a type and a super type, return true if the first type is either\n * equal or a subset of the second super type (covariant).\n */\n\nexport function isTypeSubTypeOf(schema, maybeSubType, superType) {\n // Equivalent type is a valid subtype\n if (maybeSubType === superType) {\n return true;\n } // If superType is non-null, maybeSubType must also be non-null.\n\n if (isNonNullType(superType)) {\n if (isNonNullType(maybeSubType)) {\n return isTypeSubTypeOf(schema, maybeSubType.ofType, superType.ofType);\n }\n\n return false;\n }\n\n if (isNonNullType(maybeSubType)) {\n // If superType is nullable, maybeSubType may be non-null or nullable.\n return isTypeSubTypeOf(schema, maybeSubType.ofType, superType);\n } // If superType type is a list, maybeSubType type must also be a list.\n\n if (isListType(superType)) {\n if (isListType(maybeSubType)) {\n return isTypeSubTypeOf(schema, maybeSubType.ofType, superType.ofType);\n }\n\n return false;\n }\n\n if (isListType(maybeSubType)) {\n // If superType is not a list, maybeSubType must also be not a list.\n return false;\n } // If superType type is an abstract type, check if it is super type of maybeSubType.\n // Otherwise, the child type is not a valid subtype of the parent type.\n\n return (\n isAbstractType(superType) &&\n (isInterfaceType(maybeSubType) || isObjectType(maybeSubType)) &&\n schema.isSubType(superType, maybeSubType)\n );\n}\n/**\n * Provided two composite types, determine if they \"overlap\". Two composite\n * types overlap when the Sets of possible concrete types for each intersect.\n *\n * This is often used to determine if a fragment of a given type could possibly\n * be visited in a context of another type.\n *\n * This function is commutative.\n */\n\nexport function doTypesOverlap(schema, typeA, typeB) {\n // Equivalent types overlap\n if (typeA === typeB) {\n return true;\n }\n\n if (isAbstractType(typeA)) {\n if (isAbstractType(typeB)) {\n // If both types are abstract, then determine if there is any intersection\n // between possible concrete types of each.\n return schema\n .getPossibleTypes(typeA)\n .some((type) => schema.isSubType(typeB, type));\n } // Determine if the latter type is a possible concrete type of the former.\n\n return schema.isSubType(typeA, typeB);\n }\n\n if (isAbstractType(typeB)) {\n // Determine if the former type is a possible concrete type of the latter.\n return schema.isSubType(typeB, typeA);\n } // Otherwise the types do not overlap.\n\n return false;\n}\n","import { inspect } from '../jsutils/inspect.mjs';\nimport { isObjectLike } from '../jsutils/isObjectLike.mjs';\nimport { GraphQLError } from '../error/GraphQLError.mjs';\nimport { Kind } from '../language/kinds.mjs';\nimport { print } from '../language/printer.mjs';\nimport { GraphQLScalarType } from './definition.mjs';\n/**\n * Maximum possible Int value as per GraphQL Spec (32-bit signed integer).\n * n.b. This differs from JavaScript's numbers that are IEEE 754 doubles safe up-to 2^53 - 1\n * */\n\nexport const GRAPHQL_MAX_INT = 2147483647;\n/**\n * Minimum possible Int value as per GraphQL Spec (32-bit signed integer).\n * n.b. This differs from JavaScript's numbers that are IEEE 754 doubles safe starting at -(2^53 - 1)\n * */\n\nexport const GRAPHQL_MIN_INT = -2147483648;\nexport const GraphQLInt = new GraphQLScalarType({\n name: 'Int',\n description:\n 'The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.',\n\n serialize(outputValue) {\n const coercedValue = serializeObject(outputValue);\n\n if (typeof coercedValue === 'boolean') {\n return coercedValue ? 1 : 0;\n }\n\n let num = coercedValue;\n\n if (typeof coercedValue === 'string' && coercedValue !== '') {\n num = Number(coercedValue);\n }\n\n if (typeof num !== 'number' || !Number.isInteger(num)) {\n throw new GraphQLError(\n `Int cannot represent non-integer value: ${inspect(coercedValue)}`,\n );\n }\n\n if (num > GRAPHQL_MAX_INT || num < GRAPHQL_MIN_INT) {\n throw new GraphQLError(\n 'Int cannot represent non 32-bit signed integer value: ' +\n inspect(coercedValue),\n );\n }\n\n return num;\n },\n\n parseValue(inputValue) {\n if (typeof inputValue !== 'number' || !Number.isInteger(inputValue)) {\n throw new GraphQLError(\n `Int cannot represent non-integer value: ${inspect(inputValue)}`,\n );\n }\n\n if (inputValue > GRAPHQL_MAX_INT || inputValue < GRAPHQL_MIN_INT) {\n throw new GraphQLError(\n `Int cannot represent non 32-bit signed integer value: ${inputValue}`,\n );\n }\n\n return inputValue;\n },\n\n parseLiteral(valueNode) {\n if (valueNode.kind !== Kind.INT) {\n throw new GraphQLError(\n `Int cannot represent non-integer value: ${print(valueNode)}`,\n valueNode,\n );\n }\n\n const num = parseInt(valueNode.value, 10);\n\n if (num > GRAPHQL_MAX_INT || num < GRAPHQL_MIN_INT) {\n throw new GraphQLError(\n `Int cannot represent non 32-bit signed integer value: ${valueNode.value}`,\n valueNode,\n );\n }\n\n return num;\n },\n});\nexport const GraphQLFloat = new GraphQLScalarType({\n name: 'Float',\n description:\n 'The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).',\n\n serialize(outputValue) {\n const coercedValue = serializeObject(outputValue);\n\n if (typeof coercedValue === 'boolean') {\n return coercedValue ? 1 : 0;\n }\n\n let num = coercedValue;\n\n if (typeof coercedValue === 'string' && coercedValue !== '') {\n num = Number(coercedValue);\n }\n\n if (typeof num !== 'number' || !Number.isFinite(num)) {\n throw new GraphQLError(\n `Float cannot represent non numeric value: ${inspect(coercedValue)}`,\n );\n }\n\n return num;\n },\n\n parseValue(inputValue) {\n if (typeof inputValue !== 'number' || !Number.isFinite(inputValue)) {\n throw new GraphQLError(\n `Float cannot represent non numeric value: ${inspect(inputValue)}`,\n );\n }\n\n return inputValue;\n },\n\n parseLiteral(valueNode) {\n if (valueNode.kind !== Kind.FLOAT && valueNode.kind !== Kind.INT) {\n throw new GraphQLError(\n `Float cannot represent non numeric value: ${print(valueNode)}`,\n valueNode,\n );\n }\n\n return parseFloat(valueNode.value);\n },\n});\nexport const GraphQLString = new GraphQLScalarType({\n name: 'String',\n description:\n 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',\n\n serialize(outputValue) {\n const coercedValue = serializeObject(outputValue); // Serialize string, boolean and number values to a string, but do not\n // attempt to coerce object, function, symbol, or other types as strings.\n\n if (typeof coercedValue === 'string') {\n return coercedValue;\n }\n\n if (typeof coercedValue === 'boolean') {\n return coercedValue ? 'true' : 'false';\n }\n\n if (typeof coercedValue === 'number' && Number.isFinite(coercedValue)) {\n return coercedValue.toString();\n }\n\n throw new GraphQLError(\n `String cannot represent value: ${inspect(outputValue)}`,\n );\n },\n\n parseValue(inputValue) {\n if (typeof inputValue !== 'string') {\n throw new GraphQLError(\n `String cannot represent a non string value: ${inspect(inputValue)}`,\n );\n }\n\n return inputValue;\n },\n\n parseLiteral(valueNode) {\n if (valueNode.kind !== Kind.STRING) {\n throw new GraphQLError(\n `String cannot represent a non string value: ${print(valueNode)}`,\n valueNode,\n );\n }\n\n return valueNode.value;\n },\n});\nexport const GraphQLBoolean = new GraphQLScalarType({\n name: 'Boolean',\n description: 'The `Boolean` scalar type represents `true` or `false`.',\n\n serialize(outputValue) {\n const coercedValue = serializeObject(outputValue);\n\n if (typeof coercedValue === 'boolean') {\n return coercedValue;\n }\n\n if (Number.isFinite(coercedValue)) {\n return coercedValue !== 0;\n }\n\n throw new GraphQLError(\n `Boolean cannot represent a non boolean value: ${inspect(coercedValue)}`,\n );\n },\n\n parseValue(inputValue) {\n if (typeof inputValue !== 'boolean') {\n throw new GraphQLError(\n `Boolean cannot represent a non boolean value: ${inspect(inputValue)}`,\n );\n }\n\n return inputValue;\n },\n\n parseLiteral(valueNode) {\n if (valueNode.kind !== Kind.BOOLEAN) {\n throw new GraphQLError(\n `Boolean cannot represent a non boolean value: ${print(valueNode)}`,\n valueNode,\n );\n }\n\n return valueNode.value;\n },\n});\nexport const GraphQLID = new GraphQLScalarType({\n name: 'ID',\n description:\n 'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.',\n\n serialize(outputValue) {\n const coercedValue = serializeObject(outputValue);\n\n if (typeof coercedValue === 'string') {\n return coercedValue;\n }\n\n if (Number.isInteger(coercedValue)) {\n return String(coercedValue);\n }\n\n throw new GraphQLError(\n `ID cannot represent value: ${inspect(outputValue)}`,\n );\n },\n\n parseValue(inputValue) {\n if (typeof inputValue === 'string') {\n return inputValue;\n }\n\n if (typeof inputValue === 'number' && Number.isInteger(inputValue)) {\n return inputValue.toString();\n }\n\n throw new GraphQLError(`ID cannot represent value: ${inspect(inputValue)}`);\n },\n\n parseLiteral(valueNode) {\n if (valueNode.kind !== Kind.STRING && valueNode.kind !== Kind.INT) {\n throw new GraphQLError(\n 'ID cannot represent a non-string and non-integer value: ' +\n print(valueNode),\n valueNode,\n );\n }\n\n return valueNode.value;\n },\n});\nexport const specifiedScalarTypes = Object.freeze([\n GraphQLString,\n GraphQLInt,\n GraphQLFloat,\n GraphQLBoolean,\n GraphQLID,\n]);\nexport function isSpecifiedScalarType(type) {\n return specifiedScalarTypes.some(({ name }) => type.name === name);\n} // Support serializing objects with custom valueOf() or toJSON() functions -\n// a common way to represent a complex value which can be represented as\n// a string (ex: MongoDB id objects).\n\nfunction serializeObject(outputValue) {\n if (isObjectLike(outputValue)) {\n if (typeof outputValue.valueOf === 'function') {\n const valueOfResult = outputValue.valueOf();\n\n if (!isObjectLike(valueOfResult)) {\n return valueOfResult;\n }\n }\n\n if (typeof outputValue.toJSON === 'function') {\n return outputValue.toJSON();\n }\n }\n\n return outputValue;\n}\n","import { devAssert } from '../jsutils/devAssert.mjs';\nimport { inspect } from '../jsutils/inspect.mjs';\nimport { instanceOf } from '../jsutils/instanceOf.mjs';\nimport { isObjectLike } from '../jsutils/isObjectLike.mjs';\nimport { toObjMap } from '../jsutils/toObjMap.mjs';\nimport { DirectiveLocation } from '../language/directiveLocation.mjs';\nimport { assertName } from './assertName.mjs';\nimport {\n argsToArgsConfig,\n defineArguments,\n GraphQLNonNull,\n} from './definition.mjs';\nimport { GraphQLBoolean, GraphQLString } from './scalars.mjs';\n/**\n * Test if the given value is a GraphQL directive.\n */\n\nexport function isDirective(directive) {\n return instanceOf(directive, GraphQLDirective);\n}\nexport function assertDirective(directive) {\n if (!isDirective(directive)) {\n throw new Error(\n `Expected ${inspect(directive)} to be a GraphQL directive.`,\n );\n }\n\n return directive;\n}\n/**\n * Custom extensions\n *\n * @remarks\n * Use a unique identifier name for your extension, for example the name of\n * your library or project. Do not use a shortened identifier as this increases\n * the risk of conflicts. We recommend you add at most one extension field,\n * an object which can contain all the values you need.\n */\n\n/**\n * Directives are used by the GraphQL runtime as a way of modifying execution\n * behavior. Type system creators will usually not create these directly.\n */\nexport class GraphQLDirective {\n constructor(config) {\n var _config$isRepeatable, _config$args;\n\n this.name = assertName(config.name);\n this.description = config.description;\n this.locations = config.locations;\n this.isRepeatable =\n (_config$isRepeatable = config.isRepeatable) !== null &&\n _config$isRepeatable !== void 0\n ? _config$isRepeatable\n : false;\n this.extensions = toObjMap(config.extensions);\n this.astNode = config.astNode;\n Array.isArray(config.locations) ||\n devAssert(false, `@${config.name} locations must be an Array.`);\n const args =\n (_config$args = config.args) !== null && _config$args !== void 0\n ? _config$args\n : {};\n (isObjectLike(args) && !Array.isArray(args)) ||\n devAssert(\n false,\n `@${config.name} args must be an object with argument names as keys.`,\n );\n this.args = defineArguments(args);\n }\n\n get [Symbol.toStringTag]() {\n return 'GraphQLDirective';\n }\n\n toConfig() {\n return {\n name: this.name,\n description: this.description,\n locations: this.locations,\n args: argsToArgsConfig(this.args),\n isRepeatable: this.isRepeatable,\n extensions: this.extensions,\n astNode: this.astNode,\n };\n }\n\n toString() {\n return '@' + this.name;\n }\n\n toJSON() {\n return this.toString();\n }\n}\n\n/**\n * Used to conditionally include fields or fragments.\n */\nexport const GraphQLIncludeDirective = new GraphQLDirective({\n name: 'include',\n description:\n 'Directs the executor to include this field or fragment only when the `if` argument is true.',\n locations: [\n DirectiveLocation.FIELD,\n DirectiveLocation.FRAGMENT_SPREAD,\n DirectiveLocation.INLINE_FRAGMENT,\n ],\n args: {\n if: {\n type: new GraphQLNonNull(GraphQLBoolean),\n description: 'Included when true.',\n },\n },\n});\n/**\n * Used to conditionally skip (exclude) fields or fragments.\n */\n\nexport const GraphQLSkipDirective = new GraphQLDirective({\n name: 'skip',\n description:\n 'Directs the executor to skip this field or fragment when the `if` argument is true.',\n locations: [\n DirectiveLocation.FIELD,\n DirectiveLocation.FRAGMENT_SPREAD,\n DirectiveLocation.INLINE_FRAGMENT,\n ],\n args: {\n if: {\n type: new GraphQLNonNull(GraphQLBoolean),\n description: 'Skipped when true.',\n },\n },\n});\n/**\n * Constant string used for default reason for a deprecation.\n */\n\nexport const DEFAULT_DEPRECATION_REASON = 'No longer supported';\n/**\n * Used to declare element of a GraphQL schema as deprecated.\n */\n\nexport const GraphQLDeprecatedDirective = new GraphQLDirective({\n name: 'deprecated',\n description: 'Marks an element of a GraphQL schema as no longer supported.',\n locations: [\n DirectiveLocation.FIELD_DEFINITION,\n DirectiveLocation.ARGUMENT_DEFINITION,\n DirectiveLocation.INPUT_FIELD_DEFINITION,\n DirectiveLocation.ENUM_VALUE,\n ],\n args: {\n reason: {\n type: GraphQLString,\n description:\n 'Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/).',\n defaultValue: DEFAULT_DEPRECATION_REASON,\n },\n },\n});\n/**\n * Used to provide a URL for specifying the behavior of custom scalar definitions.\n */\n\nexport const GraphQLSpecifiedByDirective = new GraphQLDirective({\n name: 'specifiedBy',\n description: 'Exposes a URL that specifies the behavior of this scalar.',\n locations: [DirectiveLocation.SCALAR],\n args: {\n url: {\n type: new GraphQLNonNull(GraphQLString),\n description: 'The URL that specifies the behavior of this scalar.',\n },\n },\n});\n/**\n * The full list of specified directives.\n */\n\nexport const specifiedDirectives = Object.freeze([\n GraphQLIncludeDirective,\n GraphQLSkipDirective,\n GraphQLDeprecatedDirective,\n GraphQLSpecifiedByDirective,\n]);\nexport function isSpecifiedDirective(directive) {\n return specifiedDirectives.some(({ name }) => name === directive.name);\n}\n","/**\n * Returns true if the provided object is an Object (i.e. not a string literal)\n * and implements the Iterator protocol.\n *\n * This may be used in place of [Array.isArray()][isArray] to determine if\n * an object should be iterated-over e.g. Array, Map, Set, Int8Array,\n * TypedArray, etc. but excludes string literals.\n *\n * @example\n * ```ts\n * isIterableObject([ 1, 2, 3 ]) // true\n * isIterableObject(new Map()) // true\n * isIterableObject('ABC') // false\n * isIterableObject({ key: 'value' }) // false\n * isIterableObject({ length: 1, 0: 'Alpha' }) // false\n * ```\n */\nexport function isIterableObject(maybeIterable) {\n return (\n typeof maybeIterable === 'object' &&\n typeof (maybeIterable === null || maybeIterable === void 0\n ? void 0\n : maybeIterable[Symbol.iterator]) === 'function'\n );\n}\n","import { inspect } from '../jsutils/inspect.mjs';\nimport { invariant } from '../jsutils/invariant.mjs';\nimport { isIterableObject } from '../jsutils/isIterableObject.mjs';\nimport { isObjectLike } from '../jsutils/isObjectLike.mjs';\nimport { Kind } from '../language/kinds.mjs';\nimport {\n isEnumType,\n isInputObjectType,\n isLeafType,\n isListType,\n isNonNullType,\n} from '../type/definition.mjs';\nimport { GraphQLID } from '../type/scalars.mjs';\n/**\n * Produces a GraphQL Value AST given a JavaScript object.\n * Function will match JavaScript/JSON values to GraphQL AST schema format\n * by using suggested GraphQLInputType. For example:\n *\n * astFromValue(\"value\", GraphQLString)\n *\n * A GraphQL type must be provided, which will be used to interpret different\n * JavaScript values.\n *\n * | JSON Value | GraphQL Value |\n * | ------------- | -------------------- |\n * | Object | Input Object |\n * | Array | List |\n * | Boolean | Boolean |\n * | String | String / Enum Value |\n * | Number | Int / Float |\n * | Unknown | Enum Value |\n * | null | NullValue |\n *\n */\n\nexport function astFromValue(value, type) {\n if (isNonNullType(type)) {\n const astValue = astFromValue(value, type.ofType);\n\n if (\n (astValue === null || astValue === void 0 ? void 0 : astValue.kind) ===\n Kind.NULL\n ) {\n return null;\n }\n\n return astValue;\n } // only explicit null, not undefined, NaN\n\n if (value === null) {\n return {\n kind: Kind.NULL,\n };\n } // undefined\n\n if (value === undefined) {\n return null;\n } // Convert JavaScript array to GraphQL list. If the GraphQLType is a list, but\n // the value is not an array, convert the value using the list's item type.\n\n if (isListType(type)) {\n const itemType = type.ofType;\n\n if (isIterableObject(value)) {\n const valuesNodes = [];\n\n for (const item of value) {\n const itemNode = astFromValue(item, itemType);\n\n if (itemNode != null) {\n valuesNodes.push(itemNode);\n }\n }\n\n return {\n kind: Kind.LIST,\n values: valuesNodes,\n };\n }\n\n return astFromValue(value, itemType);\n } // Populate the fields of the input object by creating ASTs from each value\n // in the JavaScript object according to the fields in the input type.\n\n if (isInputObjectType(type)) {\n if (!isObjectLike(value)) {\n return null;\n }\n\n const fieldNodes = [];\n\n for (const field of Object.values(type.getFields())) {\n const fieldValue = astFromValue(value[field.name], field.type);\n\n if (fieldValue) {\n fieldNodes.push({\n kind: Kind.OBJECT_FIELD,\n name: {\n kind: Kind.NAME,\n value: field.name,\n },\n value: fieldValue,\n });\n }\n }\n\n return {\n kind: Kind.OBJECT,\n fields: fieldNodes,\n };\n }\n\n if (isLeafType(type)) {\n // Since value is an internally represented value, it must be serialized\n // to an externally represented value before converting into an AST.\n const serialized = type.serialize(value);\n\n if (serialized == null) {\n return null;\n } // Others serialize based on their corresponding JavaScript scalar types.\n\n if (typeof serialized === 'boolean') {\n return {\n kind: Kind.BOOLEAN,\n value: serialized,\n };\n } // JavaScript numbers can be Int or Float values.\n\n if (typeof serialized === 'number' && Number.isFinite(serialized)) {\n const stringNum = String(serialized);\n return integerStringRegExp.test(stringNum)\n ? {\n kind: Kind.INT,\n value: stringNum,\n }\n : {\n kind: Kind.FLOAT,\n value: stringNum,\n };\n }\n\n if (typeof serialized === 'string') {\n // Enum types use Enum literals.\n if (isEnumType(type)) {\n return {\n kind: Kind.ENUM,\n value: serialized,\n };\n } // ID types can use Int literals.\n\n if (type === GraphQLID && integerStringRegExp.test(serialized)) {\n return {\n kind: Kind.INT,\n value: serialized,\n };\n }\n\n return {\n kind: Kind.STRING,\n value: serialized,\n };\n }\n\n throw new TypeError(`Cannot convert value to AST: ${inspect(serialized)}.`);\n }\n /* c8 ignore next 3 */\n // Not reachable, all possible types have been considered.\n\n false || invariant(false, 'Unexpected input type: ' + inspect(type));\n}\n/**\n * IntValue:\n * - NegativeSign? 0\n * - NegativeSign? NonZeroDigit ( Digit+ )?\n */\n\nconst integerStringRegExp = /^-?(?:0|[1-9][0-9]*)$/;\n","import { inspect } from '../jsutils/inspect.mjs';\nimport { invariant } from '../jsutils/invariant.mjs';\nimport { DirectiveLocation } from '../language/directiveLocation.mjs';\nimport { print } from '../language/printer.mjs';\nimport { astFromValue } from '../utilities/astFromValue.mjs';\nimport {\n GraphQLEnumType,\n GraphQLList,\n GraphQLNonNull,\n GraphQLObjectType,\n isAbstractType,\n isEnumType,\n isInputObjectType,\n isInterfaceType,\n isListType,\n isNonNullType,\n isObjectType,\n isScalarType,\n isUnionType,\n} from './definition.mjs';\nimport { GraphQLBoolean, GraphQLString } from './scalars.mjs';\nexport const __Schema = new GraphQLObjectType({\n name: '__Schema',\n description:\n 'A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.',\n fields: () => ({\n description: {\n type: GraphQLString,\n resolve: (schema) => schema.description,\n },\n types: {\n description: 'A list of all types supported by this server.',\n type: new GraphQLNonNull(new GraphQLList(new GraphQLNonNull(__Type))),\n\n resolve(schema) {\n return Object.values(schema.getTypeMap());\n },\n },\n queryType: {\n description: 'The type that query operations will be rooted at.',\n type: new GraphQLNonNull(__Type),\n resolve: (schema) => schema.getQueryType(),\n },\n mutationType: {\n description:\n 'If this server supports mutation, the type that mutation operations will be rooted at.',\n type: __Type,\n resolve: (schema) => schema.getMutationType(),\n },\n subscriptionType: {\n description:\n 'If this server support subscription, the type that subscription operations will be rooted at.',\n type: __Type,\n resolve: (schema) => schema.getSubscriptionType(),\n },\n directives: {\n description: 'A list of all directives supported by this server.',\n type: new GraphQLNonNull(\n new GraphQLList(new GraphQLNonNull(__Directive)),\n ),\n resolve: (schema) => schema.getDirectives(),\n },\n }),\n});\nexport const __Directive = new GraphQLObjectType({\n name: '__Directive',\n description:\n \"A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\\n\\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.\",\n fields: () => ({\n name: {\n type: new GraphQLNonNull(GraphQLString),\n resolve: (directive) => directive.name,\n },\n description: {\n type: GraphQLString,\n resolve: (directive) => directive.description,\n },\n isRepeatable: {\n type: new GraphQLNonNull(GraphQLBoolean),\n resolve: (directive) => directive.isRepeatable,\n },\n locations: {\n type: new GraphQLNonNull(\n new GraphQLList(new GraphQLNonNull(__DirectiveLocation)),\n ),\n resolve: (directive) => directive.locations,\n },\n args: {\n type: new GraphQLNonNull(\n new GraphQLList(new GraphQLNonNull(__InputValue)),\n ),\n args: {\n includeDeprecated: {\n type: GraphQLBoolean,\n defaultValue: false,\n },\n },\n\n resolve(field, { includeDeprecated }) {\n return includeDeprecated\n ? field.args\n : field.args.filter((arg) => arg.deprecationReason == null);\n },\n },\n }),\n});\nexport const __DirectiveLocation = new GraphQLEnumType({\n name: '__DirectiveLocation',\n description:\n 'A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.',\n values: {\n QUERY: {\n value: DirectiveLocation.QUERY,\n description: 'Location adjacent to a query operation.',\n },\n MUTATION: {\n value: DirectiveLocation.MUTATION,\n description: 'Location adjacent to a mutation operation.',\n },\n SUBSCRIPTION: {\n value: DirectiveLocation.SUBSCRIPTION,\n description: 'Location adjacent to a subscription operation.',\n },\n FIELD: {\n value: DirectiveLocation.FIELD,\n description: 'Location adjacent to a field.',\n },\n FRAGMENT_DEFINITION: {\n value: DirectiveLocation.FRAGMENT_DEFINITION,\n description: 'Location adjacent to a fragment definition.',\n },\n FRAGMENT_SPREAD: {\n value: DirectiveLocation.FRAGMENT_SPREAD,\n description: 'Location adjacent to a fragment spread.',\n },\n INLINE_FRAGMENT: {\n value: DirectiveLocation.INLINE_FRAGMENT,\n description: 'Location adjacent to an inline fragment.',\n },\n VARIABLE_DEFINITION: {\n value: DirectiveLocation.VARIABLE_DEFINITION,\n description: 'Location adjacent to a variable definition.',\n },\n SCHEMA: {\n value: DirectiveLocation.SCHEMA,\n description: 'Location adjacent to a schema definition.',\n },\n SCALAR: {\n value: DirectiveLocation.SCALAR,\n description: 'Location adjacent to a scalar definition.',\n },\n OBJECT: {\n value: DirectiveLocation.OBJECT,\n description: 'Location adjacent to an object type definition.',\n },\n FIELD_DEFINITION: {\n value: DirectiveLocation.FIELD_DEFINITION,\n description: 'Location adjacent to a field definition.',\n },\n ARGUMENT_DEFINITION: {\n value: DirectiveLocation.ARGUMENT_DEFINITION,\n description: 'Location adjacent to an argument definition.',\n },\n INTERFACE: {\n value: DirectiveLocation.INTERFACE,\n description: 'Location adjacent to an interface definition.',\n },\n UNION: {\n value: DirectiveLocation.UNION,\n description: 'Location adjacent to a union definition.',\n },\n ENUM: {\n value: DirectiveLocation.ENUM,\n description: 'Location adjacent to an enum definition.',\n },\n ENUM_VALUE: {\n value: DirectiveLocation.ENUM_VALUE,\n description: 'Location adjacent to an enum value definition.',\n },\n INPUT_OBJECT: {\n value: DirectiveLocation.INPUT_OBJECT,\n description: 'Location adjacent to an input object type definition.',\n },\n INPUT_FIELD_DEFINITION: {\n value: DirectiveLocation.INPUT_FIELD_DEFINITION,\n description: 'Location adjacent to an input object field definition.',\n },\n },\n});\nexport const __Type = new GraphQLObjectType({\n name: '__Type',\n description:\n 'The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\\n\\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.',\n fields: () => ({\n kind: {\n type: new GraphQLNonNull(__TypeKind),\n\n resolve(type) {\n if (isScalarType(type)) {\n return TypeKind.SCALAR;\n }\n\n if (isObjectType(type)) {\n return TypeKind.OBJECT;\n }\n\n if (isInterfaceType(type)) {\n return TypeKind.INTERFACE;\n }\n\n if (isUnionType(type)) {\n return TypeKind.UNION;\n }\n\n if (isEnumType(type)) {\n return TypeKind.ENUM;\n }\n\n if (isInputObjectType(type)) {\n return TypeKind.INPUT_OBJECT;\n }\n\n if (isListType(type)) {\n return TypeKind.LIST;\n }\n\n if (isNonNullType(type)) {\n return TypeKind.NON_NULL;\n }\n /* c8 ignore next 3 */\n // Not reachable, all possible types have been considered)\n\n false || invariant(false, `Unexpected type: \"${inspect(type)}\".`);\n },\n },\n name: {\n type: GraphQLString,\n resolve: (type) => ('name' in type ? type.name : undefined),\n },\n description: {\n type: GraphQLString,\n resolve: (\n type, // FIXME: add test case\n ) =>\n /* c8 ignore next */\n 'description' in type ? type.description : undefined,\n },\n specifiedByURL: {\n type: GraphQLString,\n resolve: (obj) =>\n 'specifiedByURL' in obj ? obj.specifiedByURL : undefined,\n },\n fields: {\n type: new GraphQLList(new GraphQLNonNull(__Field)),\n args: {\n includeDeprecated: {\n type: GraphQLBoolean,\n defaultValue: false,\n },\n },\n\n resolve(type, { includeDeprecated }) {\n if (isObjectType(type) || isInterfaceType(type)) {\n const fields = Object.values(type.getFields());\n return includeDeprecated\n ? fields\n : fields.filter((field) => field.deprecationReason == null);\n }\n },\n },\n interfaces: {\n type: new GraphQLList(new GraphQLNonNull(__Type)),\n\n resolve(type) {\n if (isObjectType(type) || isInterfaceType(type)) {\n return type.getInterfaces();\n }\n },\n },\n possibleTypes: {\n type: new GraphQLList(new GraphQLNonNull(__Type)),\n\n resolve(type, _args, _context, { schema }) {\n if (isAbstractType(type)) {\n return schema.getPossibleTypes(type);\n }\n },\n },\n enumValues: {\n type: new GraphQLList(new GraphQLNonNull(__EnumValue)),\n args: {\n includeDeprecated: {\n type: GraphQLBoolean,\n defaultValue: false,\n },\n },\n\n resolve(type, { includeDeprecated }) {\n if (isEnumType(type)) {\n const values = type.getValues();\n return includeDeprecated\n ? values\n : values.filter((field) => field.deprecationReason == null);\n }\n },\n },\n inputFields: {\n type: new GraphQLList(new GraphQLNonNull(__InputValue)),\n args: {\n includeDeprecated: {\n type: GraphQLBoolean,\n defaultValue: false,\n },\n },\n\n resolve(type, { includeDeprecated }) {\n if (isInputObjectType(type)) {\n const values = Object.values(type.getFields());\n return includeDeprecated\n ? values\n : values.filter((field) => field.deprecationReason == null);\n }\n },\n },\n ofType: {\n type: __Type,\n resolve: (type) => ('ofType' in type ? type.ofType : undefined),\n },\n }),\n});\nexport const __Field = new GraphQLObjectType({\n name: '__Field',\n description:\n 'Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.',\n fields: () => ({\n name: {\n type: new GraphQLNonNull(GraphQLString),\n resolve: (field) => field.name,\n },\n description: {\n type: GraphQLString,\n resolve: (field) => field.description,\n },\n args: {\n type: new GraphQLNonNull(\n new GraphQLList(new GraphQLNonNull(__InputValue)),\n ),\n args: {\n includeDeprecated: {\n type: GraphQLBoolean,\n defaultValue: false,\n },\n },\n\n resolve(field, { includeDeprecated }) {\n return includeDeprecated\n ? field.args\n : field.args.filter((arg) => arg.deprecationReason == null);\n },\n },\n type: {\n type: new GraphQLNonNull(__Type),\n resolve: (field) => field.type,\n },\n isDeprecated: {\n type: new GraphQLNonNull(GraphQLBoolean),\n resolve: (field) => field.deprecationReason != null,\n },\n deprecationReason: {\n type: GraphQLString,\n resolve: (field) => field.deprecationReason,\n },\n }),\n});\nexport const __InputValue = new GraphQLObjectType({\n name: '__InputValue',\n description:\n 'Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.',\n fields: () => ({\n name: {\n type: new GraphQLNonNull(GraphQLString),\n resolve: (inputValue) => inputValue.name,\n },\n description: {\n type: GraphQLString,\n resolve: (inputValue) => inputValue.description,\n },\n type: {\n type: new GraphQLNonNull(__Type),\n resolve: (inputValue) => inputValue.type,\n },\n defaultValue: {\n type: GraphQLString,\n description:\n 'A GraphQL-formatted string representing the default value for this input value.',\n\n resolve(inputValue) {\n const { type, defaultValue } = inputValue;\n const valueAST = astFromValue(defaultValue, type);\n return valueAST ? print(valueAST) : null;\n },\n },\n isDeprecated: {\n type: new GraphQLNonNull(GraphQLBoolean),\n resolve: (field) => field.deprecationReason != null,\n },\n deprecationReason: {\n type: GraphQLString,\n resolve: (obj) => obj.deprecationReason,\n },\n }),\n});\nexport const __EnumValue = new GraphQLObjectType({\n name: '__EnumValue',\n description:\n 'One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.',\n fields: () => ({\n name: {\n type: new GraphQLNonNull(GraphQLString),\n resolve: (enumValue) => enumValue.name,\n },\n description: {\n type: GraphQLString,\n resolve: (enumValue) => enumValue.description,\n },\n isDeprecated: {\n type: new GraphQLNonNull(GraphQLBoolean),\n resolve: (enumValue) => enumValue.deprecationReason != null,\n },\n deprecationReason: {\n type: GraphQLString,\n resolve: (enumValue) => enumValue.deprecationReason,\n },\n }),\n});\nexport let TypeKind;\n\n(function (TypeKind) {\n TypeKind['SCALAR'] = 'SCALAR';\n TypeKind['OBJECT'] = 'OBJECT';\n TypeKind['INTERFACE'] = 'INTERFACE';\n TypeKind['UNION'] = 'UNION';\n TypeKind['ENUM'] = 'ENUM';\n TypeKind['INPUT_OBJECT'] = 'INPUT_OBJECT';\n TypeKind['LIST'] = 'LIST';\n TypeKind['NON_NULL'] = 'NON_NULL';\n})(TypeKind || (TypeKind = {}));\n\nexport const __TypeKind = new GraphQLEnumType({\n name: '__TypeKind',\n description: 'An enum describing what kind of type a given `__Type` is.',\n values: {\n SCALAR: {\n value: TypeKind.SCALAR,\n description: 'Indicates this type is a scalar.',\n },\n OBJECT: {\n value: TypeKind.OBJECT,\n description:\n 'Indicates this type is an object. `fields` and `interfaces` are valid fields.',\n },\n INTERFACE: {\n value: TypeKind.INTERFACE,\n description:\n 'Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.',\n },\n UNION: {\n value: TypeKind.UNION,\n description:\n 'Indicates this type is a union. `possibleTypes` is a valid field.',\n },\n ENUM: {\n value: TypeKind.ENUM,\n description:\n 'Indicates this type is an enum. `enumValues` is a valid field.',\n },\n INPUT_OBJECT: {\n value: TypeKind.INPUT_OBJECT,\n description:\n 'Indicates this type is an input object. `inputFields` is a valid field.',\n },\n LIST: {\n value: TypeKind.LIST,\n description: 'Indicates this type is a list. `ofType` is a valid field.',\n },\n NON_NULL: {\n value: TypeKind.NON_NULL,\n description:\n 'Indicates this type is a non-null. `ofType` is a valid field.',\n },\n },\n});\n/**\n * Note that these are GraphQLField and not GraphQLFieldConfig,\n * so the format for args is different.\n */\n\nexport const SchemaMetaFieldDef = {\n name: '__schema',\n type: new GraphQLNonNull(__Schema),\n description: 'Access the current type schema of this server.',\n args: [],\n resolve: (_source, _args, _context, { schema }) => schema,\n deprecationReason: undefined,\n extensions: Object.create(null),\n astNode: undefined,\n};\nexport const TypeMetaFieldDef = {\n name: '__type',\n type: __Type,\n description: 'Request the type information of a single type.',\n args: [\n {\n name: 'name',\n description: undefined,\n type: new GraphQLNonNull(GraphQLString),\n defaultValue: undefined,\n deprecationReason: undefined,\n extensions: Object.create(null),\n astNode: undefined,\n },\n ],\n resolve: (_source, { name }, _context, { schema }) => schema.getType(name),\n deprecationReason: undefined,\n extensions: Object.create(null),\n astNode: undefined,\n};\nexport const TypeNameMetaFieldDef = {\n name: '__typename',\n type: new GraphQLNonNull(GraphQLString),\n description: 'The name of the current Object type at runtime.',\n args: [],\n resolve: (_source, _args, _context, { parentType }) => parentType.name,\n deprecationReason: undefined,\n extensions: Object.create(null),\n astNode: undefined,\n};\nexport const introspectionTypes = Object.freeze([\n __Schema,\n __Directive,\n __DirectiveLocation,\n __Type,\n __Field,\n __InputValue,\n __EnumValue,\n __TypeKind,\n]);\nexport function isIntrospectionType(type) {\n return introspectionTypes.some(({ name }) => type.name === name);\n}\n","import { devAssert } from '../jsutils/devAssert.mjs';\nimport { inspect } from '../jsutils/inspect.mjs';\nimport { instanceOf } from '../jsutils/instanceOf.mjs';\nimport { isObjectLike } from '../jsutils/isObjectLike.mjs';\nimport { toObjMap } from '../jsutils/toObjMap.mjs';\nimport { OperationTypeNode } from '../language/ast.mjs';\nimport {\n getNamedType,\n isInputObjectType,\n isInterfaceType,\n isObjectType,\n isUnionType,\n} from './definition.mjs';\nimport { isDirective, specifiedDirectives } from './directives.mjs';\nimport { __Schema } from './introspection.mjs';\n/**\n * Test if the given value is a GraphQL schema.\n */\n\nexport function isSchema(schema) {\n return instanceOf(schema, GraphQLSchema);\n}\nexport function assertSchema(schema) {\n if (!isSchema(schema)) {\n throw new Error(`Expected ${inspect(schema)} to be a GraphQL schema.`);\n }\n\n return schema;\n}\n/**\n * Custom extensions\n *\n * @remarks\n * Use a unique identifier name for your extension, for example the name of\n * your library or project. Do not use a shortened identifier as this increases\n * the risk of conflicts. We recommend you add at most one extension field,\n * an object which can contain all the values you need.\n */\n\n/**\n * Schema Definition\n *\n * A Schema is created by supplying the root types of each type of operation,\n * query and mutation (optional). A schema definition is then supplied to the\n * validator and executor.\n *\n * Example:\n *\n * ```ts\n * const MyAppSchema = new GraphQLSchema({\n * query: MyAppQueryRootType,\n * mutation: MyAppMutationRootType,\n * })\n * ```\n *\n * Note: When the schema is constructed, by default only the types that are\n * reachable by traversing the root types are included, other types must be\n * explicitly referenced.\n *\n * Example:\n *\n * ```ts\n * const characterInterface = new GraphQLInterfaceType({\n * name: 'Character',\n * ...\n * });\n *\n * const humanType = new GraphQLObjectType({\n * name: 'Human',\n * interfaces: [characterInterface],\n * ...\n * });\n *\n * const droidType = new GraphQLObjectType({\n * name: 'Droid',\n * interfaces: [characterInterface],\n * ...\n * });\n *\n * const schema = new GraphQLSchema({\n * query: new GraphQLObjectType({\n * name: 'Query',\n * fields: {\n * hero: { type: characterInterface, ... },\n * }\n * }),\n * ...\n * // Since this schema references only the `Character` interface it's\n * // necessary to explicitly list the types that implement it if\n * // you want them to be included in the final schema.\n * types: [humanType, droidType],\n * })\n * ```\n *\n * Note: If an array of `directives` are provided to GraphQLSchema, that will be\n * the exact list of directives represented and allowed. If `directives` is not\n * provided then a default set of the specified directives (e.g. `@include` and\n * `@skip`) will be used. If you wish to provide *additional* directives to these\n * specified directives, you must explicitly declare them. Example:\n *\n * ```ts\n * const MyAppSchema = new GraphQLSchema({\n * ...\n * directives: specifiedDirectives.concat([ myCustomDirective ]),\n * })\n * ```\n */\nexport class GraphQLSchema {\n // Used as a cache for validateSchema().\n constructor(config) {\n var _config$extensionASTN, _config$directives;\n\n // If this schema was built from a source known to be valid, then it may be\n // marked with assumeValid to avoid an additional type system validation.\n this.__validationErrors = config.assumeValid === true ? [] : undefined; // Check for common mistakes during construction to produce early errors.\n\n isObjectLike(config) ||\n devAssert(false, 'Must provide configuration object.');\n !config.types ||\n Array.isArray(config.types) ||\n devAssert(\n false,\n `\"types\" must be Array if provided but got: ${inspect(config.types)}.`,\n );\n !config.directives ||\n Array.isArray(config.directives) ||\n devAssert(\n false,\n '\"directives\" must be Array if provided but got: ' +\n `${inspect(config.directives)}.`,\n );\n this.description = config.description;\n this.extensions = toObjMap(config.extensions);\n this.astNode = config.astNode;\n this.extensionASTNodes =\n (_config$extensionASTN = config.extensionASTNodes) !== null &&\n _config$extensionASTN !== void 0\n ? _config$extensionASTN\n : [];\n this._queryType = config.query;\n this._mutationType = config.mutation;\n this._subscriptionType = config.subscription; // Provide specified directives (e.g. @include and @skip) by default.\n\n this._directives =\n (_config$directives = config.directives) !== null &&\n _config$directives !== void 0\n ? _config$directives\n : specifiedDirectives; // To preserve order of user-provided types, we add first to add them to\n // the set of \"collected\" types, so `collectReferencedTypes` ignore them.\n\n const allReferencedTypes = new Set(config.types);\n\n if (config.types != null) {\n for (const type of config.types) {\n // When we ready to process this type, we remove it from \"collected\" types\n // and then add it together with all dependent types in the correct position.\n allReferencedTypes.delete(type);\n collectReferencedTypes(type, allReferencedTypes);\n }\n }\n\n if (this._queryType != null) {\n collectReferencedTypes(this._queryType, allReferencedTypes);\n }\n\n if (this._mutationType != null) {\n collectReferencedTypes(this._mutationType, allReferencedTypes);\n }\n\n if (this._subscriptionType != null) {\n collectReferencedTypes(this._subscriptionType, allReferencedTypes);\n }\n\n for (const directive of this._directives) {\n // Directives are not validated until validateSchema() is called.\n if (isDirective(directive)) {\n for (const arg of directive.args) {\n collectReferencedTypes(arg.type, allReferencedTypes);\n }\n }\n }\n\n collectReferencedTypes(__Schema, allReferencedTypes); // Storing the resulting map for reference by the schema.\n\n this._typeMap = Object.create(null);\n this._subTypeMap = Object.create(null); // Keep track of all implementations by interface name.\n\n this._implementationsMap = Object.create(null);\n\n for (const namedType of allReferencedTypes) {\n if (namedType == null) {\n continue;\n }\n\n const typeName = namedType.name;\n typeName ||\n devAssert(\n false,\n 'One of the provided types for building the Schema is missing a name.',\n );\n\n if (this._typeMap[typeName] !== undefined) {\n throw new Error(\n `Schema must contain uniquely named types but contains multiple types named \"${typeName}\".`,\n );\n }\n\n this._typeMap[typeName] = namedType;\n\n if (isInterfaceType(namedType)) {\n // Store implementations by interface.\n for (const iface of namedType.getInterfaces()) {\n if (isInterfaceType(iface)) {\n let implementations = this._implementationsMap[iface.name];\n\n if (implementations === undefined) {\n implementations = this._implementationsMap[iface.name] = {\n objects: [],\n interfaces: [],\n };\n }\n\n implementations.interfaces.push(namedType);\n }\n }\n } else if (isObjectType(namedType)) {\n // Store implementations by objects.\n for (const iface of namedType.getInterfaces()) {\n if (isInterfaceType(iface)) {\n let implementations = this._implementationsMap[iface.name];\n\n if (implementations === undefined) {\n implementations = this._implementationsMap[iface.name] = {\n objects: [],\n interfaces: [],\n };\n }\n\n implementations.objects.push(namedType);\n }\n }\n }\n }\n }\n\n get [Symbol.toStringTag]() {\n return 'GraphQLSchema';\n }\n\n getQueryType() {\n return this._queryType;\n }\n\n getMutationType() {\n return this._mutationType;\n }\n\n getSubscriptionType() {\n return this._subscriptionType;\n }\n\n getRootType(operation) {\n switch (operation) {\n case OperationTypeNode.QUERY:\n return this.getQueryType();\n\n case OperationTypeNode.MUTATION:\n return this.getMutationType();\n\n case OperationTypeNode.SUBSCRIPTION:\n return this.getSubscriptionType();\n }\n }\n\n getTypeMap() {\n return this._typeMap;\n }\n\n getType(name) {\n return this.getTypeMap()[name];\n }\n\n getPossibleTypes(abstractType) {\n return isUnionType(abstractType)\n ? abstractType.getTypes()\n : this.getImplementations(abstractType).objects;\n }\n\n getImplementations(interfaceType) {\n const implementations = this._implementationsMap[interfaceType.name];\n return implementations !== null && implementations !== void 0\n ? implementations\n : {\n objects: [],\n interfaces: [],\n };\n }\n\n isSubType(abstractType, maybeSubType) {\n let map = this._subTypeMap[abstractType.name];\n\n if (map === undefined) {\n map = Object.create(null);\n\n if (isUnionType(abstractType)) {\n for (const type of abstractType.getTypes()) {\n map[type.name] = true;\n }\n } else {\n const implementations = this.getImplementations(abstractType);\n\n for (const type of implementations.objects) {\n map[type.name] = true;\n }\n\n for (const type of implementations.interfaces) {\n map[type.name] = true;\n }\n }\n\n this._subTypeMap[abstractType.name] = map;\n }\n\n return map[maybeSubType.name] !== undefined;\n }\n\n getDirectives() {\n return this._directives;\n }\n\n getDirective(name) {\n return this.getDirectives().find((directive) => directive.name === name);\n }\n\n toConfig() {\n return {\n description: this.description,\n query: this.getQueryType(),\n mutation: this.getMutationType(),\n subscription: this.getSubscriptionType(),\n types: Object.values(this.getTypeMap()),\n directives: this.getDirectives(),\n extensions: this.extensions,\n astNode: this.astNode,\n extensionASTNodes: this.extensionASTNodes,\n assumeValid: this.__validationErrors !== undefined,\n };\n }\n}\n\nfunction collectReferencedTypes(type, typeSet) {\n const namedType = getNamedType(type);\n\n if (!typeSet.has(namedType)) {\n typeSet.add(namedType);\n\n if (isUnionType(namedType)) {\n for (const memberType of namedType.getTypes()) {\n collectReferencedTypes(memberType, typeSet);\n }\n } else if (isObjectType(namedType) || isInterfaceType(namedType)) {\n for (const interfaceType of namedType.getInterfaces()) {\n collectReferencedTypes(interfaceType, typeSet);\n }\n\n for (const field of Object.values(namedType.getFields())) {\n collectReferencedTypes(field.type, typeSet);\n\n for (const arg of field.args) {\n collectReferencedTypes(arg.type, typeSet);\n }\n }\n } else if (isInputObjectType(namedType)) {\n for (const field of Object.values(namedType.getFields())) {\n collectReferencedTypes(field.type, typeSet);\n }\n }\n }\n\n return typeSet;\n}\n","import { inspect } from '../jsutils/inspect.mjs';\nimport { GraphQLError } from '../error/GraphQLError.mjs';\nimport { OperationTypeNode } from '../language/ast.mjs';\nimport { isEqualType, isTypeSubTypeOf } from '../utilities/typeComparators.mjs';\nimport {\n isEnumType,\n isInputObjectType,\n isInputType,\n isInterfaceType,\n isNamedType,\n isNonNullType,\n isObjectType,\n isOutputType,\n isRequiredArgument,\n isRequiredInputField,\n isUnionType,\n} from './definition.mjs';\nimport { GraphQLDeprecatedDirective, isDirective } from './directives.mjs';\nimport { isIntrospectionType } from './introspection.mjs';\nimport { assertSchema } from './schema.mjs';\n/**\n * Implements the \"Type Validation\" sub-sections of the specification's\n * \"Type System\" section.\n *\n * Validation runs synchronously, returning an array of encountered errors, or\n * an empty array if no errors were encountered and the Schema is valid.\n */\n\nexport function validateSchema(schema) {\n // First check to ensure the provided value is in fact a GraphQLSchema.\n assertSchema(schema); // If this Schema has already been validated, return the previous results.\n\n if (schema.__validationErrors) {\n return schema.__validationErrors;\n } // Validate the schema, producing a list of errors.\n\n const context = new SchemaValidationContext(schema);\n validateRootTypes(context);\n validateDirectives(context);\n validateTypes(context); // Persist the results of validation before returning to ensure validation\n // does not run multiple times for this schema.\n\n const errors = context.getErrors();\n schema.__validationErrors = errors;\n return errors;\n}\n/**\n * Utility function which asserts a schema is valid by throwing an error if\n * it is invalid.\n */\n\nexport function assertValidSchema(schema) {\n const errors = validateSchema(schema);\n\n if (errors.length !== 0) {\n throw new Error(errors.map((error) => error.message).join('\\n\\n'));\n }\n}\n\nclass SchemaValidationContext {\n constructor(schema) {\n this._errors = [];\n this.schema = schema;\n }\n\n reportError(message, nodes) {\n const _nodes = Array.isArray(nodes) ? nodes.filter(Boolean) : nodes;\n\n this._errors.push(new GraphQLError(message, _nodes));\n }\n\n getErrors() {\n return this._errors;\n }\n}\n\nfunction validateRootTypes(context) {\n const schema = context.schema;\n const queryType = schema.getQueryType();\n\n if (!queryType) {\n context.reportError('Query root type must be provided.', schema.astNode);\n } else if (!isObjectType(queryType)) {\n var _getOperationTypeNode;\n\n context.reportError(\n `Query root type must be Object type, it cannot be ${inspect(\n queryType,\n )}.`,\n (_getOperationTypeNode = getOperationTypeNode(\n schema,\n OperationTypeNode.QUERY,\n )) !== null && _getOperationTypeNode !== void 0\n ? _getOperationTypeNode\n : queryType.astNode,\n );\n }\n\n const mutationType = schema.getMutationType();\n\n if (mutationType && !isObjectType(mutationType)) {\n var _getOperationTypeNode2;\n\n context.reportError(\n 'Mutation root type must be Object type if provided, it cannot be ' +\n `${inspect(mutationType)}.`,\n (_getOperationTypeNode2 = getOperationTypeNode(\n schema,\n OperationTypeNode.MUTATION,\n )) !== null && _getOperationTypeNode2 !== void 0\n ? _getOperationTypeNode2\n : mutationType.astNode,\n );\n }\n\n const subscriptionType = schema.getSubscriptionType();\n\n if (subscriptionType && !isObjectType(subscriptionType)) {\n var _getOperationTypeNode3;\n\n context.reportError(\n 'Subscription root type must be Object type if provided, it cannot be ' +\n `${inspect(subscriptionType)}.`,\n (_getOperationTypeNode3 = getOperationTypeNode(\n schema,\n OperationTypeNode.SUBSCRIPTION,\n )) !== null && _getOperationTypeNode3 !== void 0\n ? _getOperationTypeNode3\n : subscriptionType.astNode,\n );\n }\n}\n\nfunction getOperationTypeNode(schema, operation) {\n var _flatMap$find;\n\n return (_flatMap$find = [schema.astNode, ...schema.extensionASTNodes]\n .flatMap(\n // FIXME: https://github.com/graphql/graphql-js/issues/2203\n (schemaNode) => {\n var _schemaNode$operation;\n\n return (\n /* c8 ignore next */\n (_schemaNode$operation =\n schemaNode === null || schemaNode === void 0\n ? void 0\n : schemaNode.operationTypes) !== null &&\n _schemaNode$operation !== void 0\n ? _schemaNode$operation\n : []\n );\n },\n )\n .find((operationNode) => operationNode.operation === operation)) === null ||\n _flatMap$find === void 0\n ? void 0\n : _flatMap$find.type;\n}\n\nfunction validateDirectives(context) {\n for (const directive of context.schema.getDirectives()) {\n // Ensure all directives are in fact GraphQL directives.\n if (!isDirective(directive)) {\n context.reportError(\n `Expected directive but got: ${inspect(directive)}.`,\n directive === null || directive === void 0 ? void 0 : directive.astNode,\n );\n continue;\n } // Ensure they are named correctly.\n\n validateName(context, directive); // TODO: Ensure proper locations.\n // Ensure the arguments are valid.\n\n for (const arg of directive.args) {\n // Ensure they are named correctly.\n validateName(context, arg); // Ensure the type is an input type.\n\n if (!isInputType(arg.type)) {\n context.reportError(\n `The type of @${directive.name}(${arg.name}:) must be Input Type ` +\n `but got: ${inspect(arg.type)}.`,\n arg.astNode,\n );\n }\n\n if (isRequiredArgument(arg) && arg.deprecationReason != null) {\n var _arg$astNode;\n\n context.reportError(\n `Required argument @${directive.name}(${arg.name}:) cannot be deprecated.`,\n [\n getDeprecatedDirectiveNode(arg.astNode),\n (_arg$astNode = arg.astNode) === null || _arg$astNode === void 0\n ? void 0\n : _arg$astNode.type,\n ],\n );\n }\n }\n }\n}\n\nfunction validateName(context, node) {\n // Ensure names are valid, however introspection types opt out.\n if (node.name.startsWith('__')) {\n context.reportError(\n `Name \"${node.name}\" must not begin with \"__\", which is reserved by GraphQL introspection.`,\n node.astNode,\n );\n }\n}\n\nfunction validateTypes(context) {\n const validateInputObjectCircularRefs =\n createInputObjectCircularRefsValidator(context);\n const typeMap = context.schema.getTypeMap();\n\n for (const type of Object.values(typeMap)) {\n // Ensure all provided types are in fact GraphQL type.\n if (!isNamedType(type)) {\n context.reportError(\n `Expected GraphQL named type but got: ${inspect(type)}.`,\n type.astNode,\n );\n continue;\n } // Ensure it is named correctly (excluding introspection types).\n\n if (!isIntrospectionType(type)) {\n validateName(context, type);\n }\n\n if (isObjectType(type)) {\n // Ensure fields are valid\n validateFields(context, type); // Ensure objects implement the interfaces they claim to.\n\n validateInterfaces(context, type);\n } else if (isInterfaceType(type)) {\n // Ensure fields are valid.\n validateFields(context, type); // Ensure interfaces implement the interfaces they claim to.\n\n validateInterfaces(context, type);\n } else if (isUnionType(type)) {\n // Ensure Unions include valid member types.\n validateUnionMembers(context, type);\n } else if (isEnumType(type)) {\n // Ensure Enums have valid values.\n validateEnumValues(context, type);\n } else if (isInputObjectType(type)) {\n // Ensure Input Object fields are valid.\n validateInputFields(context, type); // Ensure Input Objects do not contain non-nullable circular references\n\n validateInputObjectCircularRefs(type);\n }\n }\n}\n\nfunction validateFields(context, type) {\n const fields = Object.values(type.getFields()); // Objects and Interfaces both must define one or more fields.\n\n if (fields.length === 0) {\n context.reportError(`Type ${type.name} must define one or more fields.`, [\n type.astNode,\n ...type.extensionASTNodes,\n ]);\n }\n\n for (const field of fields) {\n // Ensure they are named correctly.\n validateName(context, field); // Ensure the type is an output type\n\n if (!isOutputType(field.type)) {\n var _field$astNode;\n\n context.reportError(\n `The type of ${type.name}.${field.name} must be Output Type ` +\n `but got: ${inspect(field.type)}.`,\n (_field$astNode = field.astNode) === null || _field$astNode === void 0\n ? void 0\n : _field$astNode.type,\n );\n } // Ensure the arguments are valid\n\n for (const arg of field.args) {\n const argName = arg.name; // Ensure they are named correctly.\n\n validateName(context, arg); // Ensure the type is an input type\n\n if (!isInputType(arg.type)) {\n var _arg$astNode2;\n\n context.reportError(\n `The type of ${type.name}.${field.name}(${argName}:) must be Input ` +\n `Type but got: ${inspect(arg.type)}.`,\n (_arg$astNode2 = arg.astNode) === null || _arg$astNode2 === void 0\n ? void 0\n : _arg$astNode2.type,\n );\n }\n\n if (isRequiredArgument(arg) && arg.deprecationReason != null) {\n var _arg$astNode3;\n\n context.reportError(\n `Required argument ${type.name}.${field.name}(${argName}:) cannot be deprecated.`,\n [\n getDeprecatedDirectiveNode(arg.astNode),\n (_arg$astNode3 = arg.astNode) === null || _arg$astNode3 === void 0\n ? void 0\n : _arg$astNode3.type,\n ],\n );\n }\n }\n }\n}\n\nfunction validateInterfaces(context, type) {\n const ifaceTypeNames = Object.create(null);\n\n for (const iface of type.getInterfaces()) {\n if (!isInterfaceType(iface)) {\n context.reportError(\n `Type ${inspect(type)} must only implement Interface types, ` +\n `it cannot implement ${inspect(iface)}.`,\n getAllImplementsInterfaceNodes(type, iface),\n );\n continue;\n }\n\n if (type === iface) {\n context.reportError(\n `Type ${type.name} cannot implement itself because it would create a circular reference.`,\n getAllImplementsInterfaceNodes(type, iface),\n );\n continue;\n }\n\n if (ifaceTypeNames[iface.name]) {\n context.reportError(\n `Type ${type.name} can only implement ${iface.name} once.`,\n getAllImplementsInterfaceNodes(type, iface),\n );\n continue;\n }\n\n ifaceTypeNames[iface.name] = true;\n validateTypeImplementsAncestors(context, type, iface);\n validateTypeImplementsInterface(context, type, iface);\n }\n}\n\nfunction validateTypeImplementsInterface(context, type, iface) {\n const typeFieldMap = type.getFields(); // Assert each interface field is implemented.\n\n for (const ifaceField of Object.values(iface.getFields())) {\n const fieldName = ifaceField.name;\n const typeField = typeFieldMap[fieldName]; // Assert interface field exists on type.\n\n if (!typeField) {\n context.reportError(\n `Interface field ${iface.name}.${fieldName} expected but ${type.name} does not provide it.`,\n [ifaceField.astNode, type.astNode, ...type.extensionASTNodes],\n );\n continue;\n } // Assert interface field type is satisfied by type field type, by being\n // a valid subtype. (covariant)\n\n if (!isTypeSubTypeOf(context.schema, typeField.type, ifaceField.type)) {\n var _ifaceField$astNode, _typeField$astNode;\n\n context.reportError(\n `Interface field ${iface.name}.${fieldName} expects type ` +\n `${inspect(ifaceField.type)} but ${type.name}.${fieldName} ` +\n `is type ${inspect(typeField.type)}.`,\n [\n (_ifaceField$astNode = ifaceField.astNode) === null ||\n _ifaceField$astNode === void 0\n ? void 0\n : _ifaceField$astNode.type,\n (_typeField$astNode = typeField.astNode) === null ||\n _typeField$astNode === void 0\n ? void 0\n : _typeField$astNode.type,\n ],\n );\n } // Assert each interface field arg is implemented.\n\n for (const ifaceArg of ifaceField.args) {\n const argName = ifaceArg.name;\n const typeArg = typeField.args.find((arg) => arg.name === argName); // Assert interface field arg exists on object field.\n\n if (!typeArg) {\n context.reportError(\n `Interface field argument ${iface.name}.${fieldName}(${argName}:) expected but ${type.name}.${fieldName} does not provide it.`,\n [ifaceArg.astNode, typeField.astNode],\n );\n continue;\n } // Assert interface field arg type matches object field arg type.\n // (invariant)\n // TODO: change to contravariant?\n\n if (!isEqualType(ifaceArg.type, typeArg.type)) {\n var _ifaceArg$astNode, _typeArg$astNode;\n\n context.reportError(\n `Interface field argument ${iface.name}.${fieldName}(${argName}:) ` +\n `expects type ${inspect(ifaceArg.type)} but ` +\n `${type.name}.${fieldName}(${argName}:) is type ` +\n `${inspect(typeArg.type)}.`,\n [\n (_ifaceArg$astNode = ifaceArg.astNode) === null ||\n _ifaceArg$astNode === void 0\n ? void 0\n : _ifaceArg$astNode.type,\n (_typeArg$astNode = typeArg.astNode) === null ||\n _typeArg$astNode === void 0\n ? void 0\n : _typeArg$astNode.type,\n ],\n );\n } // TODO: validate default values?\n } // Assert additional arguments must not be required.\n\n for (const typeArg of typeField.args) {\n const argName = typeArg.name;\n const ifaceArg = ifaceField.args.find((arg) => arg.name === argName);\n\n if (!ifaceArg && isRequiredArgument(typeArg)) {\n context.reportError(\n `Object field ${type.name}.${fieldName} includes required argument ${argName} that is missing from the Interface field ${iface.name}.${fieldName}.`,\n [typeArg.astNode, ifaceField.astNode],\n );\n }\n }\n }\n}\n\nfunction validateTypeImplementsAncestors(context, type, iface) {\n const ifaceInterfaces = type.getInterfaces();\n\n for (const transitive of iface.getInterfaces()) {\n if (!ifaceInterfaces.includes(transitive)) {\n context.reportError(\n transitive === type\n ? `Type ${type.name} cannot implement ${iface.name} because it would create a circular reference.`\n : `Type ${type.name} must implement ${transitive.name} because it is implemented by ${iface.name}.`,\n [\n ...getAllImplementsInterfaceNodes(iface, transitive),\n ...getAllImplementsInterfaceNodes(type, iface),\n ],\n );\n }\n }\n}\n\nfunction validateUnionMembers(context, union) {\n const memberTypes = union.getTypes();\n\n if (memberTypes.length === 0) {\n context.reportError(\n `Union type ${union.name} must define one or more member types.`,\n [union.astNode, ...union.extensionASTNodes],\n );\n }\n\n const includedTypeNames = Object.create(null);\n\n for (const memberType of memberTypes) {\n if (includedTypeNames[memberType.name]) {\n context.reportError(\n `Union type ${union.name} can only include type ${memberType.name} once.`,\n getUnionMemberTypeNodes(union, memberType.name),\n );\n continue;\n }\n\n includedTypeNames[memberType.name] = true;\n\n if (!isObjectType(memberType)) {\n context.reportError(\n `Union type ${union.name} can only include Object types, ` +\n `it cannot include ${inspect(memberType)}.`,\n getUnionMemberTypeNodes(union, String(memberType)),\n );\n }\n }\n}\n\nfunction validateEnumValues(context, enumType) {\n const enumValues = enumType.getValues();\n\n if (enumValues.length === 0) {\n context.reportError(\n `Enum type ${enumType.name} must define one or more values.`,\n [enumType.astNode, ...enumType.extensionASTNodes],\n );\n }\n\n for (const enumValue of enumValues) {\n // Ensure valid name.\n validateName(context, enumValue);\n }\n}\n\nfunction validateInputFields(context, inputObj) {\n const fields = Object.values(inputObj.getFields());\n\n if (fields.length === 0) {\n context.reportError(\n `Input Object type ${inputObj.name} must define one or more fields.`,\n [inputObj.astNode, ...inputObj.extensionASTNodes],\n );\n } // Ensure the arguments are valid\n\n for (const field of fields) {\n // Ensure they are named correctly.\n validateName(context, field); // Ensure the type is an input type\n\n if (!isInputType(field.type)) {\n var _field$astNode2;\n\n context.reportError(\n `The type of ${inputObj.name}.${field.name} must be Input Type ` +\n `but got: ${inspect(field.type)}.`,\n (_field$astNode2 = field.astNode) === null || _field$astNode2 === void 0\n ? void 0\n : _field$astNode2.type,\n );\n }\n\n if (isRequiredInputField(field) && field.deprecationReason != null) {\n var _field$astNode3;\n\n context.reportError(\n `Required input field ${inputObj.name}.${field.name} cannot be deprecated.`,\n [\n getDeprecatedDirectiveNode(field.astNode),\n (_field$astNode3 = field.astNode) === null ||\n _field$astNode3 === void 0\n ? void 0\n : _field$astNode3.type,\n ],\n );\n }\n }\n}\n\nfunction createInputObjectCircularRefsValidator(context) {\n // Modified copy of algorithm from 'src/validation/rules/NoFragmentCycles.js'.\n // Tracks already visited types to maintain O(N) and to ensure that cycles\n // are not redundantly reported.\n const visitedTypes = Object.create(null); // Array of types nodes used to produce meaningful errors\n\n const fieldPath = []; // Position in the type path\n\n const fieldPathIndexByTypeName = Object.create(null);\n return detectCycleRecursive; // This does a straight-forward DFS to find cycles.\n // It does not terminate when a cycle was found but continues to explore\n // the graph to find all possible cycles.\n\n function detectCycleRecursive(inputObj) {\n if (visitedTypes[inputObj.name]) {\n return;\n }\n\n visitedTypes[inputObj.name] = true;\n fieldPathIndexByTypeName[inputObj.name] = fieldPath.length;\n const fields = Object.values(inputObj.getFields());\n\n for (const field of fields) {\n if (isNonNullType(field.type) && isInputObjectType(field.type.ofType)) {\n const fieldType = field.type.ofType;\n const cycleIndex = fieldPathIndexByTypeName[fieldType.name];\n fieldPath.push(field);\n\n if (cycleIndex === undefined) {\n detectCycleRecursive(fieldType);\n } else {\n const cyclePath = fieldPath.slice(cycleIndex);\n const pathStr = cyclePath.map((fieldObj) => fieldObj.name).join('.');\n context.reportError(\n `Cannot reference Input Object \"${fieldType.name}\" within itself through a series of non-null fields: \"${pathStr}\".`,\n cyclePath.map((fieldObj) => fieldObj.astNode),\n );\n }\n\n fieldPath.pop();\n }\n }\n\n fieldPathIndexByTypeName[inputObj.name] = undefined;\n }\n}\n\nfunction getAllImplementsInterfaceNodes(type, iface) {\n const { astNode, extensionASTNodes } = type;\n const nodes =\n astNode != null ? [astNode, ...extensionASTNodes] : extensionASTNodes; // FIXME: https://github.com/graphql/graphql-js/issues/2203\n\n return nodes\n .flatMap((typeNode) => {\n var _typeNode$interfaces;\n\n return (\n /* c8 ignore next */\n (_typeNode$interfaces = typeNode.interfaces) !== null &&\n _typeNode$interfaces !== void 0\n ? _typeNode$interfaces\n : []\n );\n })\n .filter((ifaceNode) => ifaceNode.name.value === iface.name);\n}\n\nfunction getUnionMemberTypeNodes(union, typeName) {\n const { astNode, extensionASTNodes } = union;\n const nodes =\n astNode != null ? [astNode, ...extensionASTNodes] : extensionASTNodes; // FIXME: https://github.com/graphql/graphql-js/issues/2203\n\n return nodes\n .flatMap((unionNode) => {\n var _unionNode$types;\n\n return (\n /* c8 ignore next */\n (_unionNode$types = unionNode.types) !== null &&\n _unionNode$types !== void 0\n ? _unionNode$types\n : []\n );\n })\n .filter((typeNode) => typeNode.name.value === typeName);\n}\n\nfunction getDeprecatedDirectiveNode(definitionNode) {\n var _definitionNode$direc;\n\n return definitionNode === null || definitionNode === void 0\n ? void 0\n : (_definitionNode$direc = definitionNode.directives) === null ||\n _definitionNode$direc === void 0\n ? void 0\n : _definitionNode$direc.find(\n (node) => node.name.value === GraphQLDeprecatedDirective.name,\n );\n}\n","import { Kind } from '../language/kinds.mjs';\nimport { GraphQLList, GraphQLNonNull } from '../type/definition.mjs';\nexport function typeFromAST(schema, typeNode) {\n switch (typeNode.kind) {\n case Kind.LIST_TYPE: {\n const innerType = typeFromAST(schema, typeNode.type);\n return innerType && new GraphQLList(innerType);\n }\n\n case Kind.NON_NULL_TYPE: {\n const innerType = typeFromAST(schema, typeNode.type);\n return innerType && new GraphQLNonNull(innerType);\n }\n\n case Kind.NAMED_TYPE:\n return schema.getType(typeNode.name.value);\n }\n}\n","import { isNode } from '../language/ast.mjs';\nimport { Kind } from '../language/kinds.mjs';\nimport { getEnterLeaveForKind } from '../language/visitor.mjs';\nimport {\n getNamedType,\n getNullableType,\n isCompositeType,\n isEnumType,\n isInputObjectType,\n isInputType,\n isInterfaceType,\n isListType,\n isObjectType,\n isOutputType,\n} from '../type/definition.mjs';\nimport {\n SchemaMetaFieldDef,\n TypeMetaFieldDef,\n TypeNameMetaFieldDef,\n} from '../type/introspection.mjs';\nimport { typeFromAST } from './typeFromAST.mjs';\n/**\n * TypeInfo is a utility class which, given a GraphQL schema, can keep track\n * of the current field and type definitions at any point in a GraphQL document\n * AST during a recursive descent by calling `enter(node)` and `leave(node)`.\n */\n\nexport class TypeInfo {\n constructor(\n schema,\n /**\n * Initial type may be provided in rare cases to facilitate traversals\n * beginning somewhere other than documents.\n */\n initialType,\n /** @deprecated will be removed in 17.0.0 */\n getFieldDefFn,\n ) {\n this._schema = schema;\n this._typeStack = [];\n this._parentTypeStack = [];\n this._inputTypeStack = [];\n this._fieldDefStack = [];\n this._defaultValueStack = [];\n this._directive = null;\n this._argument = null;\n this._enumValue = null;\n this._getFieldDef =\n getFieldDefFn !== null && getFieldDefFn !== void 0\n ? getFieldDefFn\n : getFieldDef;\n\n if (initialType) {\n if (isInputType(initialType)) {\n this._inputTypeStack.push(initialType);\n }\n\n if (isCompositeType(initialType)) {\n this._parentTypeStack.push(initialType);\n }\n\n if (isOutputType(initialType)) {\n this._typeStack.push(initialType);\n }\n }\n }\n\n get [Symbol.toStringTag]() {\n return 'TypeInfo';\n }\n\n getType() {\n if (this._typeStack.length > 0) {\n return this._typeStack[this._typeStack.length - 1];\n }\n }\n\n getParentType() {\n if (this._parentTypeStack.length > 0) {\n return this._parentTypeStack[this._parentTypeStack.length - 1];\n }\n }\n\n getInputType() {\n if (this._inputTypeStack.length > 0) {\n return this._inputTypeStack[this._inputTypeStack.length - 1];\n }\n }\n\n getParentInputType() {\n if (this._inputTypeStack.length > 1) {\n return this._inputTypeStack[this._inputTypeStack.length - 2];\n }\n }\n\n getFieldDef() {\n if (this._fieldDefStack.length > 0) {\n return this._fieldDefStack[this._fieldDefStack.length - 1];\n }\n }\n\n getDefaultValue() {\n if (this._defaultValueStack.length > 0) {\n return this._defaultValueStack[this._defaultValueStack.length - 1];\n }\n }\n\n getDirective() {\n return this._directive;\n }\n\n getArgument() {\n return this._argument;\n }\n\n getEnumValue() {\n return this._enumValue;\n }\n\n enter(node) {\n const schema = this._schema; // Note: many of the types below are explicitly typed as \"unknown\" to drop\n // any assumptions of a valid schema to ensure runtime types are properly\n // checked before continuing since TypeInfo is used as part of validation\n // which occurs before guarantees of schema and document validity.\n\n switch (node.kind) {\n case Kind.SELECTION_SET: {\n const namedType = getNamedType(this.getType());\n\n this._parentTypeStack.push(\n isCompositeType(namedType) ? namedType : undefined,\n );\n\n break;\n }\n\n case Kind.FIELD: {\n const parentType = this.getParentType();\n let fieldDef;\n let fieldType;\n\n if (parentType) {\n fieldDef = this._getFieldDef(schema, parentType, node);\n\n if (fieldDef) {\n fieldType = fieldDef.type;\n }\n }\n\n this._fieldDefStack.push(fieldDef);\n\n this._typeStack.push(isOutputType(fieldType) ? fieldType : undefined);\n\n break;\n }\n\n case Kind.DIRECTIVE:\n this._directive = schema.getDirective(node.name.value);\n break;\n\n case Kind.OPERATION_DEFINITION: {\n const rootType = schema.getRootType(node.operation);\n\n this._typeStack.push(isObjectType(rootType) ? rootType : undefined);\n\n break;\n }\n\n case Kind.INLINE_FRAGMENT:\n case Kind.FRAGMENT_DEFINITION: {\n const typeConditionAST = node.typeCondition;\n const outputType = typeConditionAST\n ? typeFromAST(schema, typeConditionAST)\n : getNamedType(this.getType());\n\n this._typeStack.push(isOutputType(outputType) ? outputType : undefined);\n\n break;\n }\n\n case Kind.VARIABLE_DEFINITION: {\n const inputType = typeFromAST(schema, node.type);\n\n this._inputTypeStack.push(\n isInputType(inputType) ? inputType : undefined,\n );\n\n break;\n }\n\n case Kind.ARGUMENT: {\n var _this$getDirective;\n\n let argDef;\n let argType;\n const fieldOrDirective =\n (_this$getDirective = this.getDirective()) !== null &&\n _this$getDirective !== void 0\n ? _this$getDirective\n : this.getFieldDef();\n\n if (fieldOrDirective) {\n argDef = fieldOrDirective.args.find(\n (arg) => arg.name === node.name.value,\n );\n\n if (argDef) {\n argType = argDef.type;\n }\n }\n\n this._argument = argDef;\n\n this._defaultValueStack.push(argDef ? argDef.defaultValue : undefined);\n\n this._inputTypeStack.push(isInputType(argType) ? argType : undefined);\n\n break;\n }\n\n case Kind.LIST: {\n const listType = getNullableType(this.getInputType());\n const itemType = isListType(listType) ? listType.ofType : listType; // List positions never have a default value.\n\n this._defaultValueStack.push(undefined);\n\n this._inputTypeStack.push(isInputType(itemType) ? itemType : undefined);\n\n break;\n }\n\n case Kind.OBJECT_FIELD: {\n const objectType = getNamedType(this.getInputType());\n let inputFieldType;\n let inputField;\n\n if (isInputObjectType(objectType)) {\n inputField = objectType.getFields()[node.name.value];\n\n if (inputField) {\n inputFieldType = inputField.type;\n }\n }\n\n this._defaultValueStack.push(\n inputField ? inputField.defaultValue : undefined,\n );\n\n this._inputTypeStack.push(\n isInputType(inputFieldType) ? inputFieldType : undefined,\n );\n\n break;\n }\n\n case Kind.ENUM: {\n const enumType = getNamedType(this.getInputType());\n let enumValue;\n\n if (isEnumType(enumType)) {\n enumValue = enumType.getValue(node.value);\n }\n\n this._enumValue = enumValue;\n break;\n }\n\n default: // Ignore other nodes\n }\n }\n\n leave(node) {\n switch (node.kind) {\n case Kind.SELECTION_SET:\n this._parentTypeStack.pop();\n\n break;\n\n case Kind.FIELD:\n this._fieldDefStack.pop();\n\n this._typeStack.pop();\n\n break;\n\n case Kind.DIRECTIVE:\n this._directive = null;\n break;\n\n case Kind.OPERATION_DEFINITION:\n case Kind.INLINE_FRAGMENT:\n case Kind.FRAGMENT_DEFINITION:\n this._typeStack.pop();\n\n break;\n\n case Kind.VARIABLE_DEFINITION:\n this._inputTypeStack.pop();\n\n break;\n\n case Kind.ARGUMENT:\n this._argument = null;\n\n this._defaultValueStack.pop();\n\n this._inputTypeStack.pop();\n\n break;\n\n case Kind.LIST:\n case Kind.OBJECT_FIELD:\n this._defaultValueStack.pop();\n\n this._inputTypeStack.pop();\n\n break;\n\n case Kind.ENUM:\n this._enumValue = null;\n break;\n\n default: // Ignore other nodes\n }\n }\n}\n\n/**\n * Not exactly the same as the executor's definition of getFieldDef, in this\n * statically evaluated environment we do not always have an Object type,\n * and need to handle Interface and Union types.\n */\nfunction getFieldDef(schema, parentType, fieldNode) {\n const name = fieldNode.name.value;\n\n if (\n name === SchemaMetaFieldDef.name &&\n schema.getQueryType() === parentType\n ) {\n return SchemaMetaFieldDef;\n }\n\n if (name === TypeMetaFieldDef.name && schema.getQueryType() === parentType) {\n return TypeMetaFieldDef;\n }\n\n if (name === TypeNameMetaFieldDef.name && isCompositeType(parentType)) {\n return TypeNameMetaFieldDef;\n }\n\n if (isObjectType(parentType) || isInterfaceType(parentType)) {\n return parentType.getFields()[name];\n }\n}\n/**\n * Creates a new visitor instance which maintains a provided TypeInfo instance\n * along with visiting visitor.\n */\n\nexport function visitWithTypeInfo(typeInfo, visitor) {\n return {\n enter(...args) {\n const node = args[0];\n typeInfo.enter(node);\n const fn = getEnterLeaveForKind(visitor, node.kind).enter;\n\n if (fn) {\n const result = fn.apply(visitor, args);\n\n if (result !== undefined) {\n typeInfo.leave(node);\n\n if (isNode(result)) {\n typeInfo.enter(result);\n }\n }\n\n return result;\n }\n },\n\n leave(...args) {\n const node = args[0];\n const fn = getEnterLeaveForKind(visitor, node.kind).leave;\n let result;\n\n if (fn) {\n result = fn.apply(visitor, args);\n }\n\n typeInfo.leave(node);\n return result;\n },\n };\n}\n","import { Kind } from './kinds.mjs';\nexport function isDefinitionNode(node) {\n return (\n isExecutableDefinitionNode(node) ||\n isTypeSystemDefinitionNode(node) ||\n isTypeSystemExtensionNode(node)\n );\n}\nexport function isExecutableDefinitionNode(node) {\n return (\n node.kind === Kind.OPERATION_DEFINITION ||\n node.kind === Kind.FRAGMENT_DEFINITION\n );\n}\nexport function isSelectionNode(node) {\n return (\n node.kind === Kind.FIELD ||\n node.kind === Kind.FRAGMENT_SPREAD ||\n node.kind === Kind.INLINE_FRAGMENT\n );\n}\nexport function isValueNode(node) {\n return (\n node.kind === Kind.VARIABLE ||\n node.kind === Kind.INT ||\n node.kind === Kind.FLOAT ||\n node.kind === Kind.STRING ||\n node.kind === Kind.BOOLEAN ||\n node.kind === Kind.NULL ||\n node.kind === Kind.ENUM ||\n node.kind === Kind.LIST ||\n node.kind === Kind.OBJECT\n );\n}\nexport function isConstValueNode(node) {\n return (\n isValueNode(node) &&\n (node.kind === Kind.LIST\n ? node.values.some(isConstValueNode)\n : node.kind === Kind.OBJECT\n ? node.fields.some((field) => isConstValueNode(field.value))\n : node.kind !== Kind.VARIABLE)\n );\n}\nexport function isTypeNode(node) {\n return (\n node.kind === Kind.NAMED_TYPE ||\n node.kind === Kind.LIST_TYPE ||\n node.kind === Kind.NON_NULL_TYPE\n );\n}\nexport function isTypeSystemDefinitionNode(node) {\n return (\n node.kind === Kind.SCHEMA_DEFINITION ||\n isTypeDefinitionNode(node) ||\n node.kind === Kind.DIRECTIVE_DEFINITION\n );\n}\nexport function isTypeDefinitionNode(node) {\n return (\n node.kind === Kind.SCALAR_TYPE_DEFINITION ||\n node.kind === Kind.OBJECT_TYPE_DEFINITION ||\n node.kind === Kind.INTERFACE_TYPE_DEFINITION ||\n node.kind === Kind.UNION_TYPE_DEFINITION ||\n node.kind === Kind.ENUM_TYPE_DEFINITION ||\n node.kind === Kind.INPUT_OBJECT_TYPE_DEFINITION\n );\n}\nexport function isTypeSystemExtensionNode(node) {\n return node.kind === Kind.SCHEMA_EXTENSION || isTypeExtensionNode(node);\n}\nexport function isTypeExtensionNode(node) {\n return (\n node.kind === Kind.SCALAR_TYPE_EXTENSION ||\n node.kind === Kind.OBJECT_TYPE_EXTENSION ||\n node.kind === Kind.INTERFACE_TYPE_EXTENSION ||\n node.kind === Kind.UNION_TYPE_EXTENSION ||\n node.kind === Kind.ENUM_TYPE_EXTENSION ||\n node.kind === Kind.INPUT_OBJECT_TYPE_EXTENSION\n );\n}\n","import { GraphQLError } from '../../error/GraphQLError.mjs';\nimport { Kind } from '../../language/kinds.mjs';\nimport { isExecutableDefinitionNode } from '../../language/predicates.mjs';\n\n/**\n * Executable definitions\n *\n * A GraphQL document is only valid for execution if all definitions are either\n * operation or fragment definitions.\n *\n * See https://spec.graphql.org/draft/#sec-Executable-Definitions\n */\nexport function ExecutableDefinitionsRule(context) {\n return {\n Document(node) {\n for (const definition of node.definitions) {\n if (!isExecutableDefinitionNode(definition)) {\n const defName =\n definition.kind === Kind.SCHEMA_DEFINITION ||\n definition.kind === Kind.SCHEMA_EXTENSION\n ? 'schema'\n : '\"' + definition.name.value + '\"';\n context.reportError(\n new GraphQLError(\n `The ${defName} definition is not executable.`,\n definition,\n ),\n );\n }\n }\n\n return false;\n },\n };\n}\n","import { didYouMean } from '../../jsutils/didYouMean.mjs';\nimport { naturalCompare } from '../../jsutils/naturalCompare.mjs';\nimport { suggestionList } from '../../jsutils/suggestionList.mjs';\nimport { GraphQLError } from '../../error/GraphQLError.mjs';\nimport {\n isAbstractType,\n isInterfaceType,\n isObjectType,\n} from '../../type/definition.mjs';\n\n/**\n * Fields on correct type\n *\n * A GraphQL document is only valid if all fields selected are defined by the\n * parent type, or are an allowed meta field such as __typename.\n *\n * See https://spec.graphql.org/draft/#sec-Field-Selections\n */\nexport function FieldsOnCorrectTypeRule(context) {\n return {\n Field(node) {\n const type = context.getParentType();\n\n if (type) {\n const fieldDef = context.getFieldDef();\n\n if (!fieldDef) {\n // This field doesn't exist, lets look for suggestions.\n const schema = context.getSchema();\n const fieldName = node.name.value; // First determine if there are any suggested types to condition on.\n\n let suggestion = didYouMean(\n 'to use an inline fragment on',\n getSuggestedTypeNames(schema, type, fieldName),\n ); // If there are no suggested types, then perhaps this was a typo?\n\n if (suggestion === '') {\n suggestion = didYouMean(getSuggestedFieldNames(type, fieldName));\n } // Report an error, including helpful suggestions.\n\n context.reportError(\n new GraphQLError(\n `Cannot query field \"${fieldName}\" on type \"${type.name}\".` +\n suggestion,\n node,\n ),\n );\n }\n }\n },\n };\n}\n/**\n * Go through all of the implementations of type, as well as the interfaces that\n * they implement. If any of those types include the provided field, suggest them,\n * sorted by how often the type is referenced.\n */\n\nfunction getSuggestedTypeNames(schema, type, fieldName) {\n if (!isAbstractType(type)) {\n // Must be an Object type, which does not have possible fields.\n return [];\n }\n\n const suggestedTypes = new Set();\n const usageCount = Object.create(null);\n\n for (const possibleType of schema.getPossibleTypes(type)) {\n if (!possibleType.getFields()[fieldName]) {\n continue;\n } // This object type defines this field.\n\n suggestedTypes.add(possibleType);\n usageCount[possibleType.name] = 1;\n\n for (const possibleInterface of possibleType.getInterfaces()) {\n var _usageCount$possibleI;\n\n if (!possibleInterface.getFields()[fieldName]) {\n continue;\n } // This interface type defines this field.\n\n suggestedTypes.add(possibleInterface);\n usageCount[possibleInterface.name] =\n ((_usageCount$possibleI = usageCount[possibleInterface.name]) !==\n null && _usageCount$possibleI !== void 0\n ? _usageCount$possibleI\n : 0) + 1;\n }\n }\n\n return [...suggestedTypes]\n .sort((typeA, typeB) => {\n // Suggest both interface and object types based on how common they are.\n const usageCountDiff = usageCount[typeB.name] - usageCount[typeA.name];\n\n if (usageCountDiff !== 0) {\n return usageCountDiff;\n } // Suggest super types first followed by subtypes\n\n if (isInterfaceType(typeA) && schema.isSubType(typeA, typeB)) {\n return -1;\n }\n\n if (isInterfaceType(typeB) && schema.isSubType(typeB, typeA)) {\n return 1;\n }\n\n return naturalCompare(typeA.name, typeB.name);\n })\n .map((x) => x.name);\n}\n/**\n * For the field name provided, determine if there are any similar field names\n * that may be the result of a typo.\n */\n\nfunction getSuggestedFieldNames(type, fieldName) {\n if (isObjectType(type) || isInterfaceType(type)) {\n const possibleFieldNames = Object.keys(type.getFields());\n return suggestionList(fieldName, possibleFieldNames);\n } // Otherwise, must be a Union type, which does not define fields.\n\n return [];\n}\n","import { GraphQLError } from '../../error/GraphQLError.mjs';\nimport { print } from '../../language/printer.mjs';\nimport { isCompositeType } from '../../type/definition.mjs';\nimport { typeFromAST } from '../../utilities/typeFromAST.mjs';\n\n/**\n * Fragments on composite type\n *\n * Fragments use a type condition to determine if they apply, since fragments\n * can only be spread into a composite type (object, interface, or union), the\n * type condition must also be a composite type.\n *\n * See https://spec.graphql.org/draft/#sec-Fragments-On-Composite-Types\n */\nexport function FragmentsOnCompositeTypesRule(context) {\n return {\n InlineFragment(node) {\n const typeCondition = node.typeCondition;\n\n if (typeCondition) {\n const type = typeFromAST(context.getSchema(), typeCondition);\n\n if (type && !isCompositeType(type)) {\n const typeStr = print(typeCondition);\n context.reportError(\n new GraphQLError(\n `Fragment cannot condition on non composite type \"${typeStr}\".`,\n typeCondition,\n ),\n );\n }\n }\n },\n\n FragmentDefinition(node) {\n const type = typeFromAST(context.getSchema(), node.typeCondition);\n\n if (type && !isCompositeType(type)) {\n const typeStr = print(node.typeCondition);\n context.reportError(\n new GraphQLError(\n `Fragment \"${node.name.value}\" cannot condition on non composite type \"${typeStr}\".`,\n node.typeCondition,\n ),\n );\n }\n },\n };\n}\n","import { didYouMean } from '../../jsutils/didYouMean.mjs';\nimport { suggestionList } from '../../jsutils/suggestionList.mjs';\nimport { GraphQLError } from '../../error/GraphQLError.mjs';\nimport { Kind } from '../../language/kinds.mjs';\nimport { specifiedDirectives } from '../../type/directives.mjs';\n\n/**\n * Known argument names\n *\n * A GraphQL field is only valid if all supplied arguments are defined by\n * that field.\n *\n * See https://spec.graphql.org/draft/#sec-Argument-Names\n * See https://spec.graphql.org/draft/#sec-Directives-Are-In-Valid-Locations\n */\nexport function KnownArgumentNamesRule(context) {\n return {\n // eslint-disable-next-line new-cap\n ...KnownArgumentNamesOnDirectivesRule(context),\n\n Argument(argNode) {\n const argDef = context.getArgument();\n const fieldDef = context.getFieldDef();\n const parentType = context.getParentType();\n\n if (!argDef && fieldDef && parentType) {\n const argName = argNode.name.value;\n const knownArgsNames = fieldDef.args.map((arg) => arg.name);\n const suggestions = suggestionList(argName, knownArgsNames);\n context.reportError(\n new GraphQLError(\n `Unknown argument \"${argName}\" on field \"${parentType.name}.${fieldDef.name}\".` +\n didYouMean(suggestions),\n argNode,\n ),\n );\n }\n },\n };\n}\n/**\n * @internal\n */\n\nexport function KnownArgumentNamesOnDirectivesRule(context) {\n const directiveArgs = Object.create(null);\n const schema = context.getSchema();\n const definedDirectives = schema\n ? schema.getDirectives()\n : specifiedDirectives;\n\n for (const directive of definedDirectives) {\n directiveArgs[directive.name] = directive.args.map((arg) => arg.name);\n }\n\n const astDefinitions = context.getDocument().definitions;\n\n for (const def of astDefinitions) {\n if (def.kind === Kind.DIRECTIVE_DEFINITION) {\n var _def$arguments;\n\n // FIXME: https://github.com/graphql/graphql-js/issues/2203\n\n /* c8 ignore next */\n const argsNodes =\n (_def$arguments = def.arguments) !== null && _def$arguments !== void 0\n ? _def$arguments\n : [];\n directiveArgs[def.name.value] = argsNodes.map((arg) => arg.name.value);\n }\n }\n\n return {\n Directive(directiveNode) {\n const directiveName = directiveNode.name.value;\n const knownArgs = directiveArgs[directiveName];\n\n if (directiveNode.arguments && knownArgs) {\n for (const argNode of directiveNode.arguments) {\n const argName = argNode.name.value;\n\n if (!knownArgs.includes(argName)) {\n const suggestions = suggestionList(argName, knownArgs);\n context.reportError(\n new GraphQLError(\n `Unknown argument \"${argName}\" on directive \"@${directiveName}\".` +\n didYouMean(suggestions),\n argNode,\n ),\n );\n }\n }\n }\n\n return false;\n },\n };\n}\n","import { inspect } from '../../jsutils/inspect.mjs';\nimport { invariant } from '../../jsutils/invariant.mjs';\nimport { GraphQLError } from '../../error/GraphQLError.mjs';\nimport { OperationTypeNode } from '../../language/ast.mjs';\nimport { DirectiveLocation } from '../../language/directiveLocation.mjs';\nimport { Kind } from '../../language/kinds.mjs';\nimport { specifiedDirectives } from '../../type/directives.mjs';\n\n/**\n * Known directives\n *\n * A GraphQL document is only valid if all `@directives` are known by the\n * schema and legally positioned.\n *\n * See https://spec.graphql.org/draft/#sec-Directives-Are-Defined\n */\nexport function KnownDirectivesRule(context) {\n const locationsMap = Object.create(null);\n const schema = context.getSchema();\n const definedDirectives = schema\n ? schema.getDirectives()\n : specifiedDirectives;\n\n for (const directive of definedDirectives) {\n locationsMap[directive.name] = directive.locations;\n }\n\n const astDefinitions = context.getDocument().definitions;\n\n for (const def of astDefinitions) {\n if (def.kind === Kind.DIRECTIVE_DEFINITION) {\n locationsMap[def.name.value] = def.locations.map((name) => name.value);\n }\n }\n\n return {\n Directive(node, _key, _parent, _path, ancestors) {\n const name = node.name.value;\n const locations = locationsMap[name];\n\n if (!locations) {\n context.reportError(\n new GraphQLError(`Unknown directive \"@${name}\".`, node),\n );\n return;\n }\n\n const candidateLocation = getDirectiveLocationForASTPath(ancestors);\n\n if (candidateLocation && !locations.includes(candidateLocation)) {\n context.reportError(\n new GraphQLError(\n `Directive \"@${name}\" may not be used on ${candidateLocation}.`,\n node,\n ),\n );\n }\n },\n };\n}\n\nfunction getDirectiveLocationForASTPath(ancestors) {\n const appliedTo = ancestors[ancestors.length - 1];\n 'kind' in appliedTo || invariant(false);\n\n switch (appliedTo.kind) {\n case Kind.OPERATION_DEFINITION:\n return getDirectiveLocationForOperation(appliedTo.operation);\n\n case Kind.FIELD:\n return DirectiveLocation.FIELD;\n\n case Kind.FRAGMENT_SPREAD:\n return DirectiveLocation.FRAGMENT_SPREAD;\n\n case Kind.INLINE_FRAGMENT:\n return DirectiveLocation.INLINE_FRAGMENT;\n\n case Kind.FRAGMENT_DEFINITION:\n return DirectiveLocation.FRAGMENT_DEFINITION;\n\n case Kind.VARIABLE_DEFINITION:\n return DirectiveLocation.VARIABLE_DEFINITION;\n\n case Kind.SCHEMA_DEFINITION:\n case Kind.SCHEMA_EXTENSION:\n return DirectiveLocation.SCHEMA;\n\n case Kind.SCALAR_TYPE_DEFINITION:\n case Kind.SCALAR_TYPE_EXTENSION:\n return DirectiveLocation.SCALAR;\n\n case Kind.OBJECT_TYPE_DEFINITION:\n case Kind.OBJECT_TYPE_EXTENSION:\n return DirectiveLocation.OBJECT;\n\n case Kind.FIELD_DEFINITION:\n return DirectiveLocation.FIELD_DEFINITION;\n\n case Kind.INTERFACE_TYPE_DEFINITION:\n case Kind.INTERFACE_TYPE_EXTENSION:\n return DirectiveLocation.INTERFACE;\n\n case Kind.UNION_TYPE_DEFINITION:\n case Kind.UNION_TYPE_EXTENSION:\n return DirectiveLocation.UNION;\n\n case Kind.ENUM_TYPE_DEFINITION:\n case Kind.ENUM_TYPE_EXTENSION:\n return DirectiveLocation.ENUM;\n\n case Kind.ENUM_VALUE_DEFINITION:\n return DirectiveLocation.ENUM_VALUE;\n\n case Kind.INPUT_OBJECT_TYPE_DEFINITION:\n case Kind.INPUT_OBJECT_TYPE_EXTENSION:\n return DirectiveLocation.INPUT_OBJECT;\n\n case Kind.INPUT_VALUE_DEFINITION: {\n const parentNode = ancestors[ancestors.length - 3];\n 'kind' in parentNode || invariant(false);\n return parentNode.kind === Kind.INPUT_OBJECT_TYPE_DEFINITION\n ? DirectiveLocation.INPUT_FIELD_DEFINITION\n : DirectiveLocation.ARGUMENT_DEFINITION;\n }\n // Not reachable, all possible types have been considered.\n\n /* c8 ignore next */\n\n default:\n false || invariant(false, 'Unexpected kind: ' + inspect(appliedTo.kind));\n }\n}\n\nfunction getDirectiveLocationForOperation(operation) {\n switch (operation) {\n case OperationTypeNode.QUERY:\n return DirectiveLocation.QUERY;\n\n case OperationTypeNode.MUTATION:\n return DirectiveLocation.MUTATION;\n\n case OperationTypeNode.SUBSCRIPTION:\n return DirectiveLocation.SUBSCRIPTION;\n }\n}\n","import { GraphQLError } from '../../error/GraphQLError.mjs';\n\n/**\n * Known fragment names\n *\n * A GraphQL document is only valid if all `...Fragment` fragment spreads refer\n * to fragments defined in the same document.\n *\n * See https://spec.graphql.org/draft/#sec-Fragment-spread-target-defined\n */\nexport function KnownFragmentNamesRule(context) {\n return {\n FragmentSpread(node) {\n const fragmentName = node.name.value;\n const fragment = context.getFragment(fragmentName);\n\n if (!fragment) {\n context.reportError(\n new GraphQLError(`Unknown fragment \"${fragmentName}\".`, node.name),\n );\n }\n },\n };\n}\n","import { didYouMean } from '../../jsutils/didYouMean.mjs';\nimport { suggestionList } from '../../jsutils/suggestionList.mjs';\nimport { GraphQLError } from '../../error/GraphQLError.mjs';\nimport {\n isTypeDefinitionNode,\n isTypeSystemDefinitionNode,\n isTypeSystemExtensionNode,\n} from '../../language/predicates.mjs';\nimport { introspectionTypes } from '../../type/introspection.mjs';\nimport { specifiedScalarTypes } from '../../type/scalars.mjs';\n\n/**\n * Known type names\n *\n * A GraphQL document is only valid if referenced types (specifically\n * variable definitions and fragment conditions) are defined by the type schema.\n *\n * See https://spec.graphql.org/draft/#sec-Fragment-Spread-Type-Existence\n */\nexport function KnownTypeNamesRule(context) {\n const schema = context.getSchema();\n const existingTypesMap = schema ? schema.getTypeMap() : Object.create(null);\n const definedTypes = Object.create(null);\n\n for (const def of context.getDocument().definitions) {\n if (isTypeDefinitionNode(def)) {\n definedTypes[def.name.value] = true;\n }\n }\n\n const typeNames = [\n ...Object.keys(existingTypesMap),\n ...Object.keys(definedTypes),\n ];\n return {\n NamedType(node, _1, parent, _2, ancestors) {\n const typeName = node.name.value;\n\n if (!existingTypesMap[typeName] && !definedTypes[typeName]) {\n var _ancestors$;\n\n const definitionNode =\n (_ancestors$ = ancestors[2]) !== null && _ancestors$ !== void 0\n ? _ancestors$\n : parent;\n const isSDL = definitionNode != null && isSDLNode(definitionNode);\n\n if (isSDL && standardTypeNames.includes(typeName)) {\n return;\n }\n\n const suggestedTypes = suggestionList(\n typeName,\n isSDL ? standardTypeNames.concat(typeNames) : typeNames,\n );\n context.reportError(\n new GraphQLError(\n `Unknown type \"${typeName}\".` + didYouMean(suggestedTypes),\n node,\n ),\n );\n }\n },\n };\n}\nconst standardTypeNames = [...specifiedScalarTypes, ...introspectionTypes].map(\n (type) => type.name,\n);\n\nfunction isSDLNode(value) {\n return (\n 'kind' in value &&\n (isTypeSystemDefinitionNode(value) || isTypeSystemExtensionNode(value))\n );\n}\n","import { GraphQLError } from '../../error/GraphQLError.mjs';\nimport { Kind } from '../../language/kinds.mjs';\n\n/**\n * Lone anonymous operation\n *\n * A GraphQL document is only valid if when it contains an anonymous operation\n * (the query short-hand) that it contains only that one operation definition.\n *\n * See https://spec.graphql.org/draft/#sec-Lone-Anonymous-Operation\n */\nexport function LoneAnonymousOperationRule(context) {\n let operationCount = 0;\n return {\n Document(node) {\n operationCount = node.definitions.filter(\n (definition) => definition.kind === Kind.OPERATION_DEFINITION,\n ).length;\n },\n\n OperationDefinition(node) {\n if (!node.name && operationCount > 1) {\n context.reportError(\n new GraphQLError(\n 'This anonymous operation must be the only defined operation.',\n node,\n ),\n );\n }\n },\n };\n}\n","import { GraphQLError } from '../../error/GraphQLError.mjs';\n\n/**\n * Lone Schema definition\n *\n * A GraphQL document is only valid if it contains only one schema definition.\n */\nexport function LoneSchemaDefinitionRule(context) {\n var _ref, _ref2, _oldSchema$astNode;\n\n const oldSchema = context.getSchema();\n const alreadyDefined =\n (_ref =\n (_ref2 =\n (_oldSchema$astNode =\n oldSchema === null || oldSchema === void 0\n ? void 0\n : oldSchema.astNode) !== null && _oldSchema$astNode !== void 0\n ? _oldSchema$astNode\n : oldSchema === null || oldSchema === void 0\n ? void 0\n : oldSchema.getQueryType()) !== null && _ref2 !== void 0\n ? _ref2\n : oldSchema === null || oldSchema === void 0\n ? void 0\n : oldSchema.getMutationType()) !== null && _ref !== void 0\n ? _ref\n : oldSchema === null || oldSchema === void 0\n ? void 0\n : oldSchema.getSubscriptionType();\n let schemaDefinitionsCount = 0;\n return {\n SchemaDefinition(node) {\n if (alreadyDefined) {\n context.reportError(\n new GraphQLError(\n 'Cannot define a new schema within a schema extension.',\n node,\n ),\n );\n return;\n }\n\n if (schemaDefinitionsCount > 0) {\n context.reportError(\n new GraphQLError('Must provide only one schema definition.', node),\n );\n }\n\n ++schemaDefinitionsCount;\n },\n };\n}\n","import { GraphQLError } from '../../error/GraphQLError.mjs';\n\n/**\n * No fragment cycles\n *\n * The graph of fragment spreads must not form any cycles including spreading itself.\n * Otherwise an operation could infinitely spread or infinitely execute on cycles in the underlying data.\n *\n * See https://spec.graphql.org/draft/#sec-Fragment-spreads-must-not-form-cycles\n */\nexport function NoFragmentCyclesRule(context) {\n // Tracks already visited fragments to maintain O(N) and to ensure that cycles\n // are not redundantly reported.\n const visitedFrags = Object.create(null); // Array of AST nodes used to produce meaningful errors\n\n const spreadPath = []; // Position in the spread path\n\n const spreadPathIndexByName = Object.create(null);\n return {\n OperationDefinition: () => false,\n\n FragmentDefinition(node) {\n detectCycleRecursive(node);\n return false;\n },\n }; // This does a straight-forward DFS to find cycles.\n // It does not terminate when a cycle was found but continues to explore\n // the graph to find all possible cycles.\n\n function detectCycleRecursive(fragment) {\n if (visitedFrags[fragment.name.value]) {\n return;\n }\n\n const fragmentName = fragment.name.value;\n visitedFrags[fragmentName] = true;\n const spreadNodes = context.getFragmentSpreads(fragment.selectionSet);\n\n if (spreadNodes.length === 0) {\n return;\n }\n\n spreadPathIndexByName[fragmentName] = spreadPath.length;\n\n for (const spreadNode of spreadNodes) {\n const spreadName = spreadNode.name.value;\n const cycleIndex = spreadPathIndexByName[spreadName];\n spreadPath.push(spreadNode);\n\n if (cycleIndex === undefined) {\n const spreadFragment = context.getFragment(spreadName);\n\n if (spreadFragment) {\n detectCycleRecursive(spreadFragment);\n }\n } else {\n const cyclePath = spreadPath.slice(cycleIndex);\n const viaPath = cyclePath\n .slice(0, -1)\n .map((s) => '\"' + s.name.value + '\"')\n .join(', ');\n context.reportError(\n new GraphQLError(\n `Cannot spread fragment \"${spreadName}\" within itself` +\n (viaPath !== '' ? ` via ${viaPath}.` : '.'),\n cyclePath,\n ),\n );\n }\n\n spreadPath.pop();\n }\n\n spreadPathIndexByName[fragmentName] = undefined;\n }\n}\n","import { GraphQLError } from '../../error/GraphQLError.mjs';\n\n/**\n * No undefined variables\n *\n * A GraphQL operation is only valid if all variables encountered, both directly\n * and via fragment spreads, are defined by that operation.\n *\n * See https://spec.graphql.org/draft/#sec-All-Variable-Uses-Defined\n */\nexport function NoUndefinedVariablesRule(context) {\n let variableNameDefined = Object.create(null);\n return {\n OperationDefinition: {\n enter() {\n variableNameDefined = Object.create(null);\n },\n\n leave(operation) {\n const usages = context.getRecursiveVariableUsages(operation);\n\n for (const { node } of usages) {\n const varName = node.name.value;\n\n if (variableNameDefined[varName] !== true) {\n context.reportError(\n new GraphQLError(\n operation.name\n ? `Variable \"$${varName}\" is not defined by operation \"${operation.name.value}\".`\n : `Variable \"$${varName}\" is not defined.`,\n [node, operation],\n ),\n );\n }\n }\n },\n },\n\n VariableDefinition(node) {\n variableNameDefined[node.variable.name.value] = true;\n },\n };\n}\n","import { GraphQLError } from '../../error/GraphQLError.mjs';\n\n/**\n * No unused fragments\n *\n * A GraphQL document is only valid if all fragment definitions are spread\n * within operations, or spread within other fragments spread within operations.\n *\n * See https://spec.graphql.org/draft/#sec-Fragments-Must-Be-Used\n */\nexport function NoUnusedFragmentsRule(context) {\n const operationDefs = [];\n const fragmentDefs = [];\n return {\n OperationDefinition(node) {\n operationDefs.push(node);\n return false;\n },\n\n FragmentDefinition(node) {\n fragmentDefs.push(node);\n return false;\n },\n\n Document: {\n leave() {\n const fragmentNameUsed = Object.create(null);\n\n for (const operation of operationDefs) {\n for (const fragment of context.getRecursivelyReferencedFragments(\n operation,\n )) {\n fragmentNameUsed[fragment.name.value] = true;\n }\n }\n\n for (const fragmentDef of fragmentDefs) {\n const fragName = fragmentDef.name.value;\n\n if (fragmentNameUsed[fragName] !== true) {\n context.reportError(\n new GraphQLError(\n `Fragment \"${fragName}\" is never used.`,\n fragmentDef,\n ),\n );\n }\n }\n },\n },\n };\n}\n","import { GraphQLError } from '../../error/GraphQLError.mjs';\n\n/**\n * No unused variables\n *\n * A GraphQL operation is only valid if all variables defined by an operation\n * are used, either directly or within a spread fragment.\n *\n * See https://spec.graphql.org/draft/#sec-All-Variables-Used\n */\nexport function NoUnusedVariablesRule(context) {\n let variableDefs = [];\n return {\n OperationDefinition: {\n enter() {\n variableDefs = [];\n },\n\n leave(operation) {\n const variableNameUsed = Object.create(null);\n const usages = context.getRecursiveVariableUsages(operation);\n\n for (const { node } of usages) {\n variableNameUsed[node.name.value] = true;\n }\n\n for (const variableDef of variableDefs) {\n const variableName = variableDef.variable.name.value;\n\n if (variableNameUsed[variableName] !== true) {\n context.reportError(\n new GraphQLError(\n operation.name\n ? `Variable \"$${variableName}\" is never used in operation \"${operation.name.value}\".`\n : `Variable \"$${variableName}\" is never used.`,\n variableDef,\n ),\n );\n }\n }\n },\n },\n\n VariableDefinition(def) {\n variableDefs.push(def);\n },\n };\n}\n","import { naturalCompare } from '../jsutils/naturalCompare.mjs';\nimport { Kind } from '../language/kinds.mjs';\n/**\n * Sort ValueNode.\n *\n * This function returns a sorted copy of the given ValueNode.\n *\n * @internal\n */\n\nexport function sortValueNode(valueNode) {\n switch (valueNode.kind) {\n case Kind.OBJECT:\n return { ...valueNode, fields: sortFields(valueNode.fields) };\n\n case Kind.LIST:\n return { ...valueNode, values: valueNode.values.map(sortValueNode) };\n\n case Kind.INT:\n case Kind.FLOAT:\n case Kind.STRING:\n case Kind.BOOLEAN:\n case Kind.NULL:\n case Kind.ENUM:\n case Kind.VARIABLE:\n return valueNode;\n }\n}\n\nfunction sortFields(fields) {\n return fields\n .map((fieldNode) => ({\n ...fieldNode,\n value: sortValueNode(fieldNode.value),\n }))\n .sort((fieldA, fieldB) =>\n naturalCompare(fieldA.name.value, fieldB.name.value),\n );\n}\n","import { inspect } from '../../jsutils/inspect.mjs';\nimport { GraphQLError } from '../../error/GraphQLError.mjs';\nimport { Kind } from '../../language/kinds.mjs';\nimport { print } from '../../language/printer.mjs';\nimport {\n getNamedType,\n isInterfaceType,\n isLeafType,\n isListType,\n isNonNullType,\n isObjectType,\n} from '../../type/definition.mjs';\nimport { sortValueNode } from '../../utilities/sortValueNode.mjs';\nimport { typeFromAST } from '../../utilities/typeFromAST.mjs';\n\nfunction reasonMessage(reason) {\n if (Array.isArray(reason)) {\n return reason\n .map(\n ([responseName, subReason]) =>\n `subfields \"${responseName}\" conflict because ` +\n reasonMessage(subReason),\n )\n .join(' and ');\n }\n\n return reason;\n}\n/**\n * Overlapping fields can be merged\n *\n * A selection set is only valid if all fields (including spreading any\n * fragments) either correspond to distinct response names or can be merged\n * without ambiguity.\n *\n * See https://spec.graphql.org/draft/#sec-Field-Selection-Merging\n */\n\nexport function OverlappingFieldsCanBeMergedRule(context) {\n // A memoization for when two fragments are compared \"between\" each other for\n // conflicts. Two fragments may be compared many times, so memoizing this can\n // dramatically improve the performance of this validator.\n const comparedFragmentPairs = new PairSet(); // A cache for the \"field map\" and list of fragment names found in any given\n // selection set. Selection sets may be asked for this information multiple\n // times, so this improves the performance of this validator.\n\n const cachedFieldsAndFragmentNames = new Map();\n return {\n SelectionSet(selectionSet) {\n const conflicts = findConflictsWithinSelectionSet(\n context,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n context.getParentType(),\n selectionSet,\n );\n\n for (const [[responseName, reason], fields1, fields2] of conflicts) {\n const reasonMsg = reasonMessage(reason);\n context.reportError(\n new GraphQLError(\n `Fields \"${responseName}\" conflict because ${reasonMsg}. Use different aliases on the fields to fetch both if this was intentional.`,\n fields1.concat(fields2),\n ),\n );\n }\n },\n };\n}\n\n/**\n * Algorithm:\n *\n * Conflicts occur when two fields exist in a query which will produce the same\n * response name, but represent differing values, thus creating a conflict.\n * The algorithm below finds all conflicts via making a series of comparisons\n * between fields. In order to compare as few fields as possible, this makes\n * a series of comparisons \"within\" sets of fields and \"between\" sets of fields.\n *\n * Given any selection set, a collection produces both a set of fields by\n * also including all inline fragments, as well as a list of fragments\n * referenced by fragment spreads.\n *\n * A) Each selection set represented in the document first compares \"within\" its\n * collected set of fields, finding any conflicts between every pair of\n * overlapping fields.\n * Note: This is the *only time* that a the fields \"within\" a set are compared\n * to each other. After this only fields \"between\" sets are compared.\n *\n * B) Also, if any fragment is referenced in a selection set, then a\n * comparison is made \"between\" the original set of fields and the\n * referenced fragment.\n *\n * C) Also, if multiple fragments are referenced, then comparisons\n * are made \"between\" each referenced fragment.\n *\n * D) When comparing \"between\" a set of fields and a referenced fragment, first\n * a comparison is made between each field in the original set of fields and\n * each field in the the referenced set of fields.\n *\n * E) Also, if any fragment is referenced in the referenced selection set,\n * then a comparison is made \"between\" the original set of fields and the\n * referenced fragment (recursively referring to step D).\n *\n * F) When comparing \"between\" two fragments, first a comparison is made between\n * each field in the first referenced set of fields and each field in the the\n * second referenced set of fields.\n *\n * G) Also, any fragments referenced by the first must be compared to the\n * second, and any fragments referenced by the second must be compared to the\n * first (recursively referring to step F).\n *\n * H) When comparing two fields, if both have selection sets, then a comparison\n * is made \"between\" both selection sets, first comparing the set of fields in\n * the first selection set with the set of fields in the second.\n *\n * I) Also, if any fragment is referenced in either selection set, then a\n * comparison is made \"between\" the other set of fields and the\n * referenced fragment.\n *\n * J) Also, if two fragments are referenced in both selection sets, then a\n * comparison is made \"between\" the two fragments.\n *\n */\n// Find all conflicts found \"within\" a selection set, including those found\n// via spreading in fragments. Called when visiting each SelectionSet in the\n// GraphQL Document.\nfunction findConflictsWithinSelectionSet(\n context,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n parentType,\n selectionSet,\n) {\n const conflicts = [];\n const [fieldMap, fragmentNames] = getFieldsAndFragmentNames(\n context,\n cachedFieldsAndFragmentNames,\n parentType,\n selectionSet,\n ); // (A) Find find all conflicts \"within\" the fields of this selection set.\n // Note: this is the *only place* `collectConflictsWithin` is called.\n\n collectConflictsWithin(\n context,\n conflicts,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n fieldMap,\n );\n\n if (fragmentNames.length !== 0) {\n // (B) Then collect conflicts between these fields and those represented by\n // each spread fragment name found.\n for (let i = 0; i < fragmentNames.length; i++) {\n collectConflictsBetweenFieldsAndFragment(\n context,\n conflicts,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n false,\n fieldMap,\n fragmentNames[i],\n ); // (C) Then compare this fragment with all other fragments found in this\n // selection set to collect conflicts between fragments spread together.\n // This compares each item in the list of fragment names to every other\n // item in that same list (except for itself).\n\n for (let j = i + 1; j < fragmentNames.length; j++) {\n collectConflictsBetweenFragments(\n context,\n conflicts,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n false,\n fragmentNames[i],\n fragmentNames[j],\n );\n }\n }\n }\n\n return conflicts;\n} // Collect all conflicts found between a set of fields and a fragment reference\n// including via spreading in any nested fragments.\n\nfunction collectConflictsBetweenFieldsAndFragment(\n context,\n conflicts,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n areMutuallyExclusive,\n fieldMap,\n fragmentName,\n) {\n const fragment = context.getFragment(fragmentName);\n\n if (!fragment) {\n return;\n }\n\n const [fieldMap2, referencedFragmentNames] =\n getReferencedFieldsAndFragmentNames(\n context,\n cachedFieldsAndFragmentNames,\n fragment,\n ); // Do not compare a fragment's fieldMap to itself.\n\n if (fieldMap === fieldMap2) {\n return;\n } // (D) First collect any conflicts between the provided collection of fields\n // and the collection of fields represented by the given fragment.\n\n collectConflictsBetween(\n context,\n conflicts,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n areMutuallyExclusive,\n fieldMap,\n fieldMap2,\n ); // (E) Then collect any conflicts between the provided collection of fields\n // and any fragment names found in the given fragment.\n\n for (const referencedFragmentName of referencedFragmentNames) {\n // Memoize so two fragments are not compared for conflicts more than once.\n if (\n comparedFragmentPairs.has(\n referencedFragmentName,\n fragmentName,\n areMutuallyExclusive,\n )\n ) {\n continue;\n }\n\n comparedFragmentPairs.add(\n referencedFragmentName,\n fragmentName,\n areMutuallyExclusive,\n );\n collectConflictsBetweenFieldsAndFragment(\n context,\n conflicts,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n areMutuallyExclusive,\n fieldMap,\n referencedFragmentName,\n );\n }\n} // Collect all conflicts found between two fragments, including via spreading in\n// any nested fragments.\n\nfunction collectConflictsBetweenFragments(\n context,\n conflicts,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n areMutuallyExclusive,\n fragmentName1,\n fragmentName2,\n) {\n // No need to compare a fragment to itself.\n if (fragmentName1 === fragmentName2) {\n return;\n } // Memoize so two fragments are not compared for conflicts more than once.\n\n if (\n comparedFragmentPairs.has(\n fragmentName1,\n fragmentName2,\n areMutuallyExclusive,\n )\n ) {\n return;\n }\n\n comparedFragmentPairs.add(fragmentName1, fragmentName2, areMutuallyExclusive);\n const fragment1 = context.getFragment(fragmentName1);\n const fragment2 = context.getFragment(fragmentName2);\n\n if (!fragment1 || !fragment2) {\n return;\n }\n\n const [fieldMap1, referencedFragmentNames1] =\n getReferencedFieldsAndFragmentNames(\n context,\n cachedFieldsAndFragmentNames,\n fragment1,\n );\n const [fieldMap2, referencedFragmentNames2] =\n getReferencedFieldsAndFragmentNames(\n context,\n cachedFieldsAndFragmentNames,\n fragment2,\n ); // (F) First, collect all conflicts between these two collections of fields\n // (not including any nested fragments).\n\n collectConflictsBetween(\n context,\n conflicts,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n areMutuallyExclusive,\n fieldMap1,\n fieldMap2,\n ); // (G) Then collect conflicts between the first fragment and any nested\n // fragments spread in the second fragment.\n\n for (const referencedFragmentName2 of referencedFragmentNames2) {\n collectConflictsBetweenFragments(\n context,\n conflicts,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n areMutuallyExclusive,\n fragmentName1,\n referencedFragmentName2,\n );\n } // (G) Then collect conflicts between the second fragment and any nested\n // fragments spread in the first fragment.\n\n for (const referencedFragmentName1 of referencedFragmentNames1) {\n collectConflictsBetweenFragments(\n context,\n conflicts,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n areMutuallyExclusive,\n referencedFragmentName1,\n fragmentName2,\n );\n }\n} // Find all conflicts found between two selection sets, including those found\n// via spreading in fragments. Called when determining if conflicts exist\n// between the sub-fields of two overlapping fields.\n\nfunction findConflictsBetweenSubSelectionSets(\n context,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n areMutuallyExclusive,\n parentType1,\n selectionSet1,\n parentType2,\n selectionSet2,\n) {\n const conflicts = [];\n const [fieldMap1, fragmentNames1] = getFieldsAndFragmentNames(\n context,\n cachedFieldsAndFragmentNames,\n parentType1,\n selectionSet1,\n );\n const [fieldMap2, fragmentNames2] = getFieldsAndFragmentNames(\n context,\n cachedFieldsAndFragmentNames,\n parentType2,\n selectionSet2,\n ); // (H) First, collect all conflicts between these two collections of field.\n\n collectConflictsBetween(\n context,\n conflicts,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n areMutuallyExclusive,\n fieldMap1,\n fieldMap2,\n ); // (I) Then collect conflicts between the first collection of fields and\n // those referenced by each fragment name associated with the second.\n\n for (const fragmentName2 of fragmentNames2) {\n collectConflictsBetweenFieldsAndFragment(\n context,\n conflicts,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n areMutuallyExclusive,\n fieldMap1,\n fragmentName2,\n );\n } // (I) Then collect conflicts between the second collection of fields and\n // those referenced by each fragment name associated with the first.\n\n for (const fragmentName1 of fragmentNames1) {\n collectConflictsBetweenFieldsAndFragment(\n context,\n conflicts,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n areMutuallyExclusive,\n fieldMap2,\n fragmentName1,\n );\n } // (J) Also collect conflicts between any fragment names by the first and\n // fragment names by the second. This compares each item in the first set of\n // names to each item in the second set of names.\n\n for (const fragmentName1 of fragmentNames1) {\n for (const fragmentName2 of fragmentNames2) {\n collectConflictsBetweenFragments(\n context,\n conflicts,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n areMutuallyExclusive,\n fragmentName1,\n fragmentName2,\n );\n }\n }\n\n return conflicts;\n} // Collect all Conflicts \"within\" one collection of fields.\n\nfunction collectConflictsWithin(\n context,\n conflicts,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n fieldMap,\n) {\n // A field map is a keyed collection, where each key represents a response\n // name and the value at that key is a list of all fields which provide that\n // response name. For every response name, if there are multiple fields, they\n // must be compared to find a potential conflict.\n for (const [responseName, fields] of Object.entries(fieldMap)) {\n // This compares every field in the list to every other field in this list\n // (except to itself). If the list only has one item, nothing needs to\n // be compared.\n if (fields.length > 1) {\n for (let i = 0; i < fields.length; i++) {\n for (let j = i + 1; j < fields.length; j++) {\n const conflict = findConflict(\n context,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n false, // within one collection is never mutually exclusive\n responseName,\n fields[i],\n fields[j],\n );\n\n if (conflict) {\n conflicts.push(conflict);\n }\n }\n }\n }\n }\n} // Collect all Conflicts between two collections of fields. This is similar to,\n// but different from the `collectConflictsWithin` function above. This check\n// assumes that `collectConflictsWithin` has already been called on each\n// provided collection of fields. This is true because this validator traverses\n// each individual selection set.\n\nfunction collectConflictsBetween(\n context,\n conflicts,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n parentFieldsAreMutuallyExclusive,\n fieldMap1,\n fieldMap2,\n) {\n // A field map is a keyed collection, where each key represents a response\n // name and the value at that key is a list of all fields which provide that\n // response name. For any response name which appears in both provided field\n // maps, each field from the first field map must be compared to every field\n // in the second field map to find potential conflicts.\n for (const [responseName, fields1] of Object.entries(fieldMap1)) {\n const fields2 = fieldMap2[responseName];\n\n if (fields2) {\n for (const field1 of fields1) {\n for (const field2 of fields2) {\n const conflict = findConflict(\n context,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n parentFieldsAreMutuallyExclusive,\n responseName,\n field1,\n field2,\n );\n\n if (conflict) {\n conflicts.push(conflict);\n }\n }\n }\n }\n }\n} // Determines if there is a conflict between two particular fields, including\n// comparing their sub-fields.\n\nfunction findConflict(\n context,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n parentFieldsAreMutuallyExclusive,\n responseName,\n field1,\n field2,\n) {\n const [parentType1, node1, def1] = field1;\n const [parentType2, node2, def2] = field2; // If it is known that two fields could not possibly apply at the same\n // time, due to the parent types, then it is safe to permit them to diverge\n // in aliased field or arguments used as they will not present any ambiguity\n // by differing.\n // It is known that two parent types could never overlap if they are\n // different Object types. Interface or Union types might overlap - if not\n // in the current state of the schema, then perhaps in some future version,\n // thus may not safely diverge.\n\n const areMutuallyExclusive =\n parentFieldsAreMutuallyExclusive ||\n (parentType1 !== parentType2 &&\n isObjectType(parentType1) &&\n isObjectType(parentType2));\n\n if (!areMutuallyExclusive) {\n // Two aliases must refer to the same field.\n const name1 = node1.name.value;\n const name2 = node2.name.value;\n\n if (name1 !== name2) {\n return [\n [responseName, `\"${name1}\" and \"${name2}\" are different fields`],\n [node1],\n [node2],\n ];\n } // Two field calls must have the same arguments.\n\n if (stringifyArguments(node1) !== stringifyArguments(node2)) {\n return [\n [responseName, 'they have differing arguments'],\n [node1],\n [node2],\n ];\n }\n } // The return type for each field.\n\n const type1 = def1 === null || def1 === void 0 ? void 0 : def1.type;\n const type2 = def2 === null || def2 === void 0 ? void 0 : def2.type;\n\n if (type1 && type2 && doTypesConflict(type1, type2)) {\n return [\n [\n responseName,\n `they return conflicting types \"${inspect(type1)}\" and \"${inspect(\n type2,\n )}\"`,\n ],\n [node1],\n [node2],\n ];\n } // Collect and compare sub-fields. Use the same \"visited fragment names\" list\n // for both collections so fields in a fragment reference are never\n // compared to themselves.\n\n const selectionSet1 = node1.selectionSet;\n const selectionSet2 = node2.selectionSet;\n\n if (selectionSet1 && selectionSet2) {\n const conflicts = findConflictsBetweenSubSelectionSets(\n context,\n cachedFieldsAndFragmentNames,\n comparedFragmentPairs,\n areMutuallyExclusive,\n getNamedType(type1),\n selectionSet1,\n getNamedType(type2),\n selectionSet2,\n );\n return subfieldConflicts(conflicts, responseName, node1, node2);\n }\n}\n\nfunction stringifyArguments(fieldNode) {\n var _fieldNode$arguments;\n\n // FIXME https://github.com/graphql/graphql-js/issues/2203\n const args =\n /* c8 ignore next */\n (_fieldNode$arguments = fieldNode.arguments) !== null &&\n _fieldNode$arguments !== void 0\n ? _fieldNode$arguments\n : [];\n const inputObjectWithArgs = {\n kind: Kind.OBJECT,\n fields: args.map((argNode) => ({\n kind: Kind.OBJECT_FIELD,\n name: argNode.name,\n value: argNode.value,\n })),\n };\n return print(sortValueNode(inputObjectWithArgs));\n} // Two types conflict if both types could not apply to a value simultaneously.\n// Composite types are ignored as their individual field types will be compared\n// later recursively. However List and Non-Null types must match.\n\nfunction doTypesConflict(type1, type2) {\n if (isListType(type1)) {\n return isListType(type2)\n ? doTypesConflict(type1.ofType, type2.ofType)\n : true;\n }\n\n if (isListType(type2)) {\n return true;\n }\n\n if (isNonNullType(type1)) {\n return isNonNullType(type2)\n ? doTypesConflict(type1.ofType, type2.ofType)\n : true;\n }\n\n if (isNonNullType(type2)) {\n return true;\n }\n\n if (isLeafType(type1) || isLeafType(type2)) {\n return type1 !== type2;\n }\n\n return false;\n} // Given a selection set, return the collection of fields (a mapping of response\n// name to field nodes and definitions) as well as a list of fragment names\n// referenced via fragment spreads.\n\nfunction getFieldsAndFragmentNames(\n context,\n cachedFieldsAndFragmentNames,\n parentType,\n selectionSet,\n) {\n const cached = cachedFieldsAndFragmentNames.get(selectionSet);\n\n if (cached) {\n return cached;\n }\n\n const nodeAndDefs = Object.create(null);\n const fragmentNames = Object.create(null);\n\n _collectFieldsAndFragmentNames(\n context,\n parentType,\n selectionSet,\n nodeAndDefs,\n fragmentNames,\n );\n\n const result = [nodeAndDefs, Object.keys(fragmentNames)];\n cachedFieldsAndFragmentNames.set(selectionSet, result);\n return result;\n} // Given a reference to a fragment, return the represented collection of fields\n// as well as a list of nested fragment names referenced via fragment spreads.\n\nfunction getReferencedFieldsAndFragmentNames(\n context,\n cachedFieldsAndFragmentNames,\n fragment,\n) {\n // Short-circuit building a type from the node if possible.\n const cached = cachedFieldsAndFragmentNames.get(fragment.selectionSet);\n\n if (cached) {\n return cached;\n }\n\n const fragmentType = typeFromAST(context.getSchema(), fragment.typeCondition);\n return getFieldsAndFragmentNames(\n context,\n cachedFieldsAndFragmentNames,\n fragmentType,\n fragment.selectionSet,\n );\n}\n\nfunction _collectFieldsAndFragmentNames(\n context,\n parentType,\n selectionSet,\n nodeAndDefs,\n fragmentNames,\n) {\n for (const selection of selectionSet.selections) {\n switch (selection.kind) {\n case Kind.FIELD: {\n const fieldName = selection.name.value;\n let fieldDef;\n\n if (isObjectType(parentType) || isInterfaceType(parentType)) {\n fieldDef = parentType.getFields()[fieldName];\n }\n\n const responseName = selection.alias\n ? selection.alias.value\n : fieldName;\n\n if (!nodeAndDefs[responseName]) {\n nodeAndDefs[responseName] = [];\n }\n\n nodeAndDefs[responseName].push([parentType, selection, fieldDef]);\n break;\n }\n\n case Kind.FRAGMENT_SPREAD:\n fragmentNames[selection.name.value] = true;\n break;\n\n case Kind.INLINE_FRAGMENT: {\n const typeCondition = selection.typeCondition;\n const inlineFragmentType = typeCondition\n ? typeFromAST(context.getSchema(), typeCondition)\n : parentType;\n\n _collectFieldsAndFragmentNames(\n context,\n inlineFragmentType,\n selection.selectionSet,\n nodeAndDefs,\n fragmentNames,\n );\n\n break;\n }\n }\n }\n} // Given a series of Conflicts which occurred between two sub-fields, generate\n// a single Conflict.\n\nfunction subfieldConflicts(conflicts, responseName, node1, node2) {\n if (conflicts.length > 0) {\n return [\n [responseName, conflicts.map(([reason]) => reason)],\n [node1, ...conflicts.map(([, fields1]) => fields1).flat()],\n [node2, ...conflicts.map(([, , fields2]) => fields2).flat()],\n ];\n }\n}\n/**\n * A way to keep track of pairs of things when the ordering of the pair does not matter.\n */\n\nclass PairSet {\n constructor() {\n this._data = new Map();\n }\n\n has(a, b, areMutuallyExclusive) {\n var _this$_data$get;\n\n const [key1, key2] = a < b ? [a, b] : [b, a];\n const result =\n (_this$_data$get = this._data.get(key1)) === null ||\n _this$_data$get === void 0\n ? void 0\n : _this$_data$get.get(key2);\n\n if (result === undefined) {\n return false;\n } // areMutuallyExclusive being false is a superset of being true, hence if\n // we want to know if this PairSet \"has\" these two with no exclusivity,\n // we have to ensure it was added as such.\n\n return areMutuallyExclusive ? true : areMutuallyExclusive === result;\n }\n\n add(a, b, areMutuallyExclusive) {\n const [key1, key2] = a < b ? [a, b] : [b, a];\n\n const map = this._data.get(key1);\n\n if (map === undefined) {\n this._data.set(key1, new Map([[key2, areMutuallyExclusive]]));\n } else {\n map.set(key2, areMutuallyExclusive);\n }\n }\n}\n","import { inspect } from '../../jsutils/inspect.mjs';\nimport { GraphQLError } from '../../error/GraphQLError.mjs';\nimport { isCompositeType } from '../../type/definition.mjs';\nimport { doTypesOverlap } from '../../utilities/typeComparators.mjs';\nimport { typeFromAST } from '../../utilities/typeFromAST.mjs';\n\n/**\n * Possible fragment spread\n *\n * A fragment spread is only valid if the type condition could ever possibly\n * be true: if there is a non-empty intersection of the possible parent types,\n * and possible types which pass the type condition.\n */\nexport function PossibleFragmentSpreadsRule(context) {\n return {\n InlineFragment(node) {\n const fragType = context.getType();\n const parentType = context.getParentType();\n\n if (\n isCompositeType(fragType) &&\n isCompositeType(parentType) &&\n !doTypesOverlap(context.getSchema(), fragType, parentType)\n ) {\n const parentTypeStr = inspect(parentType);\n const fragTypeStr = inspect(fragType);\n context.reportError(\n new GraphQLError(\n `Fragment cannot be spread here as objects of type \"${parentTypeStr}\" can never be of type \"${fragTypeStr}\".`,\n node,\n ),\n );\n }\n },\n\n FragmentSpread(node) {\n const fragName = node.name.value;\n const fragType = getFragmentType(context, fragName);\n const parentType = context.getParentType();\n\n if (\n fragType &&\n parentType &&\n !doTypesOverlap(context.getSchema(), fragType, parentType)\n ) {\n const parentTypeStr = inspect(parentType);\n const fragTypeStr = inspect(fragType);\n context.reportError(\n new GraphQLError(\n `Fragment \"${fragName}\" cannot be spread here as objects of type \"${parentTypeStr}\" can never be of type \"${fragTypeStr}\".`,\n node,\n ),\n );\n }\n },\n };\n}\n\nfunction getFragmentType(context, name) {\n const frag = context.getFragment(name);\n\n if (frag) {\n const type = typeFromAST(context.getSchema(), frag.typeCondition);\n\n if (isCompositeType(type)) {\n return type;\n }\n }\n}\n","import { didYouMean } from '../../jsutils/didYouMean.mjs';\nimport { inspect } from '../../jsutils/inspect.mjs';\nimport { invariant } from '../../jsutils/invariant.mjs';\nimport { suggestionList } from '../../jsutils/suggestionList.mjs';\nimport { GraphQLError } from '../../error/GraphQLError.mjs';\nimport { Kind } from '../../language/kinds.mjs';\nimport { isTypeDefinitionNode } from '../../language/predicates.mjs';\nimport {\n isEnumType,\n isInputObjectType,\n isInterfaceType,\n isObjectType,\n isScalarType,\n isUnionType,\n} from '../../type/definition.mjs';\n\n/**\n * Possible type extension\n *\n * A type extension is only valid if the type is defined and has the same kind.\n */\nexport function PossibleTypeExtensionsRule(context) {\n const schema = context.getSchema();\n const definedTypes = Object.create(null);\n\n for (const def of context.getDocument().definitions) {\n if (isTypeDefinitionNode(def)) {\n definedTypes[def.name.value] = def;\n }\n }\n\n return {\n ScalarTypeExtension: checkExtension,\n ObjectTypeExtension: checkExtension,\n InterfaceTypeExtension: checkExtension,\n UnionTypeExtension: checkExtension,\n EnumTypeExtension: checkExtension,\n InputObjectTypeExtension: checkExtension,\n };\n\n function checkExtension(node) {\n const typeName = node.name.value;\n const defNode = definedTypes[typeName];\n const existingType =\n schema === null || schema === void 0 ? void 0 : schema.getType(typeName);\n let expectedKind;\n\n if (defNode) {\n expectedKind = defKindToExtKind[defNode.kind];\n } else if (existingType) {\n expectedKind = typeToExtKind(existingType);\n }\n\n if (expectedKind) {\n if (expectedKind !== node.kind) {\n const kindStr = extensionKindToTypeName(node.kind);\n context.reportError(\n new GraphQLError(\n `Cannot extend non-${kindStr} type \"${typeName}\".`,\n defNode ? [defNode, node] : node,\n ),\n );\n }\n } else {\n const allTypeNames = Object.keys({\n ...definedTypes,\n ...(schema === null || schema === void 0\n ? void 0\n : schema.getTypeMap()),\n });\n const suggestedTypes = suggestionList(typeName, allTypeNames);\n context.reportError(\n new GraphQLError(\n `Cannot extend type \"${typeName}\" because it is not defined.` +\n didYouMean(suggestedTypes),\n node.name,\n ),\n );\n }\n }\n}\nconst defKindToExtKind = {\n [Kind.SCALAR_TYPE_DEFINITION]: Kind.SCALAR_TYPE_EXTENSION,\n [Kind.OBJECT_TYPE_DEFINITION]: Kind.OBJECT_TYPE_EXTENSION,\n [Kind.INTERFACE_TYPE_DEFINITION]: Kind.INTERFACE_TYPE_EXTENSION,\n [Kind.UNION_TYPE_DEFINITION]: Kind.UNION_TYPE_EXTENSION,\n [Kind.ENUM_TYPE_DEFINITION]: Kind.ENUM_TYPE_EXTENSION,\n [Kind.INPUT_OBJECT_TYPE_DEFINITION]: Kind.INPUT_OBJECT_TYPE_EXTENSION,\n};\n\nfunction typeToExtKind(type) {\n if (isScalarType(type)) {\n return Kind.SCALAR_TYPE_EXTENSION;\n }\n\n if (isObjectType(type)) {\n return Kind.OBJECT_TYPE_EXTENSION;\n }\n\n if (isInterfaceType(type)) {\n return Kind.INTERFACE_TYPE_EXTENSION;\n }\n\n if (isUnionType(type)) {\n return Kind.UNION_TYPE_EXTENSION;\n }\n\n if (isEnumType(type)) {\n return Kind.ENUM_TYPE_EXTENSION;\n }\n\n if (isInputObjectType(type)) {\n return Kind.INPUT_OBJECT_TYPE_EXTENSION;\n }\n /* c8 ignore next 3 */\n // Not reachable. All possible types have been considered\n\n false || invariant(false, 'Unexpected type: ' + inspect(type));\n}\n\nfunction extensionKindToTypeName(kind) {\n switch (kind) {\n case Kind.SCALAR_TYPE_EXTENSION:\n return 'scalar';\n\n case Kind.OBJECT_TYPE_EXTENSION:\n return 'object';\n\n case Kind.INTERFACE_TYPE_EXTENSION:\n return 'interface';\n\n case Kind.UNION_TYPE_EXTENSION:\n return 'union';\n\n case Kind.ENUM_TYPE_EXTENSION:\n return 'enum';\n\n case Kind.INPUT_OBJECT_TYPE_EXTENSION:\n return 'input object';\n // Not reachable. All possible types have been considered\n\n /* c8 ignore next */\n\n default:\n false || invariant(false, 'Unexpected kind: ' + inspect(kind));\n }\n}\n","import { inspect } from '../../jsutils/inspect.mjs';\nimport { keyMap } from '../../jsutils/keyMap.mjs';\nimport { GraphQLError } from '../../error/GraphQLError.mjs';\nimport { Kind } from '../../language/kinds.mjs';\nimport { print } from '../../language/printer.mjs';\nimport { isRequiredArgument, isType } from '../../type/definition.mjs';\nimport { specifiedDirectives } from '../../type/directives.mjs';\n\n/**\n * Provided required arguments\n *\n * A field or directive is only valid if all required (non-null without a\n * default value) field arguments have been provided.\n */\nexport function ProvidedRequiredArgumentsRule(context) {\n return {\n // eslint-disable-next-line new-cap\n ...ProvidedRequiredArgumentsOnDirectivesRule(context),\n Field: {\n // Validate on leave to allow for deeper errors to appear first.\n leave(fieldNode) {\n var _fieldNode$arguments;\n\n const fieldDef = context.getFieldDef();\n\n if (!fieldDef) {\n return false;\n }\n\n const providedArgs = new Set( // FIXME: https://github.com/graphql/graphql-js/issues/2203\n /* c8 ignore next */\n (_fieldNode$arguments = fieldNode.arguments) === null ||\n _fieldNode$arguments === void 0\n ? void 0\n : _fieldNode$arguments.map((arg) => arg.name.value),\n );\n\n for (const argDef of fieldDef.args) {\n if (!providedArgs.has(argDef.name) && isRequiredArgument(argDef)) {\n const argTypeStr = inspect(argDef.type);\n context.reportError(\n new GraphQLError(\n `Field \"${fieldDef.name}\" argument \"${argDef.name}\" of type \"${argTypeStr}\" is required, but it was not provided.`,\n fieldNode,\n ),\n );\n }\n }\n },\n },\n };\n}\n/**\n * @internal\n */\n\nexport function ProvidedRequiredArgumentsOnDirectivesRule(context) {\n var _schema$getDirectives;\n\n const requiredArgsMap = Object.create(null);\n const schema = context.getSchema();\n const definedDirectives =\n (_schema$getDirectives =\n schema === null || schema === void 0\n ? void 0\n : schema.getDirectives()) !== null && _schema$getDirectives !== void 0\n ? _schema$getDirectives\n : specifiedDirectives;\n\n for (const directive of definedDirectives) {\n requiredArgsMap[directive.name] = keyMap(\n directive.args.filter(isRequiredArgument),\n (arg) => arg.name,\n );\n }\n\n const astDefinitions = context.getDocument().definitions;\n\n for (const def of astDefinitions) {\n if (def.kind === Kind.DIRECTIVE_DEFINITION) {\n var _def$arguments;\n\n // FIXME: https://github.com/graphql/graphql-js/issues/2203\n\n /* c8 ignore next */\n const argNodes =\n (_def$arguments = def.arguments) !== null && _def$arguments !== void 0\n ? _def$arguments\n : [];\n requiredArgsMap[def.name.value] = keyMap(\n argNodes.filter(isRequiredArgumentNode),\n (arg) => arg.name.value,\n );\n }\n }\n\n return {\n Directive: {\n // Validate on leave to allow for deeper errors to appear first.\n leave(directiveNode) {\n const directiveName = directiveNode.name.value;\n const requiredArgs = requiredArgsMap[directiveName];\n\n if (requiredArgs) {\n var _directiveNode$argume;\n\n // FIXME: https://github.com/graphql/graphql-js/issues/2203\n\n /* c8 ignore next */\n const argNodes =\n (_directiveNode$argume = directiveNode.arguments) !== null &&\n _directiveNode$argume !== void 0\n ? _directiveNode$argume\n : [];\n const argNodeMap = new Set(argNodes.map((arg) => arg.name.value));\n\n for (const [argName, argDef] of Object.entries(requiredArgs)) {\n if (!argNodeMap.has(argName)) {\n const argType = isType(argDef.type)\n ? inspect(argDef.type)\n : print(argDef.type);\n context.reportError(\n new GraphQLError(\n `Directive \"@${directiveName}\" argument \"${argName}\" of type \"${argType}\" is required, but it was not provided.`,\n directiveNode,\n ),\n );\n }\n }\n }\n },\n },\n };\n}\n\nfunction isRequiredArgumentNode(arg) {\n return arg.type.kind === Kind.NON_NULL_TYPE && arg.defaultValue == null;\n}\n","import { inspect } from '../../jsutils/inspect.mjs';\nimport { GraphQLError } from '../../error/GraphQLError.mjs';\nimport { getNamedType, isLeafType } from '../../type/definition.mjs';\n\n/**\n * Scalar leafs\n *\n * A GraphQL document is valid only if all leaf fields (fields without\n * sub selections) are of scalar or enum types.\n */\nexport function ScalarLeafsRule(context) {\n return {\n Field(node) {\n const type = context.getType();\n const selectionSet = node.selectionSet;\n\n if (type) {\n if (isLeafType(getNamedType(type))) {\n if (selectionSet) {\n const fieldName = node.name.value;\n const typeStr = inspect(type);\n context.reportError(\n new GraphQLError(\n `Field \"${fieldName}\" must not have a selection since type \"${typeStr}\" has no subfields.`,\n selectionSet,\n ),\n );\n }\n } else if (!selectionSet) {\n const fieldName = node.name.value;\n const typeStr = inspect(type);\n context.reportError(\n new GraphQLError(\n `Field \"${fieldName}\" of type \"${typeStr}\" must have a selection of subfields. Did you mean \"${fieldName} { ... }\"?`,\n node,\n ),\n );\n }\n }\n },\n };\n}\n","/**\n * Build a string describing the path.\n */\nexport function printPathArray(path) {\n return path\n .map((key) =>\n typeof key === 'number' ? '[' + key.toString() + ']' : '.' + key,\n )\n .join('');\n}\n","/**\n * Given a Path and a key, return a new Path containing the new key.\n */\nexport function addPath(prev, key, typename) {\n return {\n prev,\n key,\n typename,\n };\n}\n/**\n * Given a Path, return an Array of the path keys.\n */\n\nexport function pathToArray(path) {\n const flattened = [];\n let curr = path;\n\n while (curr) {\n flattened.push(curr.key);\n curr = curr.prev;\n }\n\n return flattened.reverse();\n}\n","import { didYouMean } from '../jsutils/didYouMean.mjs';\nimport { inspect } from '../jsutils/inspect.mjs';\nimport { invariant } from '../jsutils/invariant.mjs';\nimport { isIterableObject } from '../jsutils/isIterableObject.mjs';\nimport { isObjectLike } from '../jsutils/isObjectLike.mjs';\nimport { addPath, pathToArray } from '../jsutils/Path.mjs';\nimport { printPathArray } from '../jsutils/printPathArray.mjs';\nimport { suggestionList } from '../jsutils/suggestionList.mjs';\nimport { GraphQLError } from '../error/GraphQLError.mjs';\nimport {\n isInputObjectType,\n isLeafType,\n isListType,\n isNonNullType,\n} from '../type/definition.mjs';\n\n/**\n * Coerces a JavaScript value given a GraphQL Input Type.\n */\nexport function coerceInputValue(inputValue, type, onError = defaultOnError) {\n return coerceInputValueImpl(inputValue, type, onError, undefined);\n}\n\nfunction defaultOnError(path, invalidValue, error) {\n let errorPrefix = 'Invalid value ' + inspect(invalidValue);\n\n if (path.length > 0) {\n errorPrefix += ` at \"value${printPathArray(path)}\"`;\n }\n\n error.message = errorPrefix + ': ' + error.message;\n throw error;\n}\n\nfunction coerceInputValueImpl(inputValue, type, onError, path) {\n if (isNonNullType(type)) {\n if (inputValue != null) {\n return coerceInputValueImpl(inputValue, type.ofType, onError, path);\n }\n\n onError(\n pathToArray(path),\n inputValue,\n new GraphQLError(\n `Expected non-nullable type \"${inspect(type)}\" not to be null.`,\n ),\n );\n return;\n }\n\n if (inputValue == null) {\n // Explicitly return the value null.\n return null;\n }\n\n if (isListType(type)) {\n const itemType = type.ofType;\n\n if (isIterableObject(inputValue)) {\n return Array.from(inputValue, (itemValue, index) => {\n const itemPath = addPath(path, index, undefined);\n return coerceInputValueImpl(itemValue, itemType, onError, itemPath);\n });\n } // Lists accept a non-list value as a list of one.\n\n return [coerceInputValueImpl(inputValue, itemType, onError, path)];\n }\n\n if (isInputObjectType(type)) {\n if (!isObjectLike(inputValue)) {\n onError(\n pathToArray(path),\n inputValue,\n new GraphQLError(`Expected type \"${type.name}\" to be an object.`),\n );\n return;\n }\n\n const coercedValue = {};\n const fieldDefs = type.getFields();\n\n for (const field of Object.values(fieldDefs)) {\n const fieldValue = inputValue[field.name];\n\n if (fieldValue === undefined) {\n if (field.defaultValue !== undefined) {\n coercedValue[field.name] = field.defaultValue;\n } else if (isNonNullType(field.type)) {\n const typeStr = inspect(field.type);\n onError(\n pathToArray(path),\n inputValue,\n new GraphQLError(\n `Field \"${field.name}\" of required type \"${typeStr}\" was not provided.`,\n ),\n );\n }\n\n continue;\n }\n\n coercedValue[field.name] = coerceInputValueImpl(\n fieldValue,\n field.type,\n onError,\n addPath(path, field.name, type.name),\n );\n } // Ensure every provided field is defined.\n\n for (const fieldName of Object.keys(inputValue)) {\n if (!fieldDefs[fieldName]) {\n const suggestions = suggestionList(\n fieldName,\n Object.keys(type.getFields()),\n );\n onError(\n pathToArray(path),\n inputValue,\n new GraphQLError(\n `Field \"${fieldName}\" is not defined by type \"${type.name}\".` +\n didYouMean(suggestions),\n ),\n );\n }\n }\n\n return coercedValue;\n }\n\n if (isLeafType(type)) {\n let parseResult; // Scalars and Enums determine if a input value is valid via parseValue(),\n // which can throw to indicate failure. If it throws, maintain a reference\n // to the original error.\n\n try {\n parseResult = type.parseValue(inputValue);\n } catch (error) {\n if (error instanceof GraphQLError) {\n onError(pathToArray(path), inputValue, error);\n } else {\n onError(\n pathToArray(path),\n inputValue,\n new GraphQLError(\n `Expected type \"${type.name}\". ` + error.message,\n undefined,\n undefined,\n undefined,\n undefined,\n error,\n ),\n );\n }\n\n return;\n }\n\n if (parseResult === undefined) {\n onError(\n pathToArray(path),\n inputValue,\n new GraphQLError(`Expected type \"${type.name}\".`),\n );\n }\n\n return parseResult;\n }\n /* c8 ignore next 3 */\n // Not reachable, all possible types have been considered.\n\n false || invariant(false, 'Unexpected input type: ' + inspect(type));\n}\n","import { inspect } from '../jsutils/inspect.mjs';\nimport { invariant } from '../jsutils/invariant.mjs';\nimport { keyMap } from '../jsutils/keyMap.mjs';\nimport { Kind } from '../language/kinds.mjs';\nimport {\n isInputObjectType,\n isLeafType,\n isListType,\n isNonNullType,\n} from '../type/definition.mjs';\n/**\n * Produces a JavaScript value given a GraphQL Value AST.\n *\n * A GraphQL type must be provided, which will be used to interpret different\n * GraphQL Value literals.\n *\n * Returns `undefined` when the value could not be validly coerced according to\n * the provided type.\n *\n * | GraphQL Value | JSON Value |\n * | -------------------- | ------------- |\n * | Input Object | Object |\n * | List | Array |\n * | Boolean | Boolean |\n * | String | String |\n * | Int / Float | Number |\n * | Enum Value | Unknown |\n * | NullValue | null |\n *\n */\n\nexport function valueFromAST(valueNode, type, variables) {\n if (!valueNode) {\n // When there is no node, then there is also no value.\n // Importantly, this is different from returning the value null.\n return;\n }\n\n if (valueNode.kind === Kind.VARIABLE) {\n const variableName = valueNode.name.value;\n\n if (variables == null || variables[variableName] === undefined) {\n // No valid return value.\n return;\n }\n\n const variableValue = variables[variableName];\n\n if (variableValue === null && isNonNullType(type)) {\n return; // Invalid: intentionally return no value.\n } // Note: This does no further checking that this variable is correct.\n // This assumes that this query has been validated and the variable\n // usage here is of the correct type.\n\n return variableValue;\n }\n\n if (isNonNullType(type)) {\n if (valueNode.kind === Kind.NULL) {\n return; // Invalid: intentionally return no value.\n }\n\n return valueFromAST(valueNode, type.ofType, variables);\n }\n\n if (valueNode.kind === Kind.NULL) {\n // This is explicitly returning the value null.\n return null;\n }\n\n if (isListType(type)) {\n const itemType = type.ofType;\n\n if (valueNode.kind === Kind.LIST) {\n const coercedValues = [];\n\n for (const itemNode of valueNode.values) {\n if (isMissingVariable(itemNode, variables)) {\n // If an array contains a missing variable, it is either coerced to\n // null or if the item type is non-null, it considered invalid.\n if (isNonNullType(itemType)) {\n return; // Invalid: intentionally return no value.\n }\n\n coercedValues.push(null);\n } else {\n const itemValue = valueFromAST(itemNode, itemType, variables);\n\n if (itemValue === undefined) {\n return; // Invalid: intentionally return no value.\n }\n\n coercedValues.push(itemValue);\n }\n }\n\n return coercedValues;\n }\n\n const coercedValue = valueFromAST(valueNode, itemType, variables);\n\n if (coercedValue === undefined) {\n return; // Invalid: intentionally return no value.\n }\n\n return [coercedValue];\n }\n\n if (isInputObjectType(type)) {\n if (valueNode.kind !== Kind.OBJECT) {\n return; // Invalid: intentionally return no value.\n }\n\n const coercedObj = Object.create(null);\n const fieldNodes = keyMap(valueNode.fields, (field) => field.name.value);\n\n for (const field of Object.values(type.getFields())) {\n const fieldNode = fieldNodes[field.name];\n\n if (!fieldNode || isMissingVariable(fieldNode.value, variables)) {\n if (field.defaultValue !== undefined) {\n coercedObj[field.name] = field.defaultValue;\n } else if (isNonNullType(field.type)) {\n return; // Invalid: intentionally return no value.\n }\n\n continue;\n }\n\n const fieldValue = valueFromAST(fieldNode.value, field.type, variables);\n\n if (fieldValue === undefined) {\n return; // Invalid: intentionally return no value.\n }\n\n coercedObj[field.name] = fieldValue;\n }\n\n return coercedObj;\n }\n\n if (isLeafType(type)) {\n // Scalars and Enums fulfill parsing a literal value via parseLiteral().\n // Invalid values represent a failure to parse correctly, in which case\n // no value is returned.\n let result;\n\n try {\n result = type.parseLiteral(valueNode, variables);\n } catch (_error) {\n return; // Invalid: intentionally return no value.\n }\n\n if (result === undefined) {\n return; // Invalid: intentionally return no value.\n }\n\n return result;\n }\n /* c8 ignore next 3 */\n // Not reachable, all possible input types have been considered.\n\n false || invariant(false, 'Unexpected input type: ' + inspect(type));\n} // Returns true if the provided valueNode is a variable which is not defined\n// in the set of variables.\n\nfunction isMissingVariable(valueNode, variables) {\n return (\n valueNode.kind === Kind.VARIABLE &&\n (variables == null || variables[valueNode.name.value] === undefined)\n );\n}\n","import { inspect } from '../jsutils/inspect.mjs';\nimport { keyMap } from '../jsutils/keyMap.mjs';\nimport { printPathArray } from '../jsutils/printPathArray.mjs';\nimport { GraphQLError } from '../error/GraphQLError.mjs';\nimport { Kind } from '../language/kinds.mjs';\nimport { print } from '../language/printer.mjs';\nimport { isInputType, isNonNullType } from '../type/definition.mjs';\nimport { coerceInputValue } from '../utilities/coerceInputValue.mjs';\nimport { typeFromAST } from '../utilities/typeFromAST.mjs';\nimport { valueFromAST } from '../utilities/valueFromAST.mjs';\n\n/**\n * Prepares an object map of variableValues of the correct type based on the\n * provided variable definitions and arbitrary input. If the input cannot be\n * parsed to match the variable definitions, a GraphQLError will be thrown.\n *\n * Note: The returned value is a plain Object with a prototype, since it is\n * exposed to user code. Care should be taken to not pull values from the\n * Object prototype.\n */\nexport function getVariableValues(schema, varDefNodes, inputs, options) {\n const errors = [];\n const maxErrors =\n options === null || options === void 0 ? void 0 : options.maxErrors;\n\n try {\n const coerced = coerceVariableValues(\n schema,\n varDefNodes,\n inputs,\n (error) => {\n if (maxErrors != null && errors.length >= maxErrors) {\n throw new GraphQLError(\n 'Too many errors processing variables, error limit reached. Execution aborted.',\n );\n }\n\n errors.push(error);\n },\n );\n\n if (errors.length === 0) {\n return {\n coerced,\n };\n }\n } catch (error) {\n errors.push(error);\n }\n\n return {\n errors,\n };\n}\n\nfunction coerceVariableValues(schema, varDefNodes, inputs, onError) {\n const coercedValues = {};\n\n for (const varDefNode of varDefNodes) {\n const varName = varDefNode.variable.name.value;\n const varType = typeFromAST(schema, varDefNode.type);\n\n if (!isInputType(varType)) {\n // Must use input types for variables. This should be caught during\n // validation, however is checked again here for safety.\n const varTypeStr = print(varDefNode.type);\n onError(\n new GraphQLError(\n `Variable \"$${varName}\" expected value of type \"${varTypeStr}\" which cannot be used as an input type.`,\n varDefNode.type,\n ),\n );\n continue;\n }\n\n if (!hasOwnProperty(inputs, varName)) {\n if (varDefNode.defaultValue) {\n coercedValues[varName] = valueFromAST(varDefNode.defaultValue, varType);\n } else if (isNonNullType(varType)) {\n const varTypeStr = inspect(varType);\n onError(\n new GraphQLError(\n `Variable \"$${varName}\" of required type \"${varTypeStr}\" was not provided.`,\n varDefNode,\n ),\n );\n }\n\n continue;\n }\n\n const value = inputs[varName];\n\n if (value === null && isNonNullType(varType)) {\n const varTypeStr = inspect(varType);\n onError(\n new GraphQLError(\n `Variable \"$${varName}\" of non-null type \"${varTypeStr}\" must not be null.`,\n varDefNode,\n ),\n );\n continue;\n }\n\n coercedValues[varName] = coerceInputValue(\n value,\n varType,\n (path, invalidValue, error) => {\n let prefix =\n `Variable \"$${varName}\" got invalid value ` + inspect(invalidValue);\n\n if (path.length > 0) {\n prefix += ` at \"${varName}${printPathArray(path)}\"`;\n }\n\n onError(\n new GraphQLError(\n prefix + '; ' + error.message,\n varDefNode,\n undefined,\n undefined,\n undefined,\n error.originalError,\n ),\n );\n },\n );\n }\n\n return coercedValues;\n}\n/**\n * Prepares an object map of argument values given a list of argument\n * definitions and list of argument AST nodes.\n *\n * Note: The returned value is a plain Object with a prototype, since it is\n * exposed to user code. Care should be taken to not pull values from the\n * Object prototype.\n *\n * @internal\n */\n\nexport function getArgumentValues(def, node, variableValues) {\n var _node$arguments;\n\n const coercedValues = {}; // FIXME: https://github.com/graphql/graphql-js/issues/2203\n\n /* c8 ignore next */\n\n const argumentNodes =\n (_node$arguments = node.arguments) !== null && _node$arguments !== void 0\n ? _node$arguments\n : [];\n const argNodeMap = keyMap(argumentNodes, (arg) => arg.name.value);\n\n for (const argDef of def.args) {\n const name = argDef.name;\n const argType = argDef.type;\n const argumentNode = argNodeMap[name];\n\n if (!argumentNode) {\n if (argDef.defaultValue !== undefined) {\n coercedValues[name] = argDef.defaultValue;\n } else if (isNonNullType(argType)) {\n throw new GraphQLError(\n `Argument \"${name}\" of required type \"${inspect(argType)}\" ` +\n 'was not provided.',\n node,\n );\n }\n\n continue;\n }\n\n const valueNode = argumentNode.value;\n let isNull = valueNode.kind === Kind.NULL;\n\n if (valueNode.kind === Kind.VARIABLE) {\n const variableName = valueNode.name.value;\n\n if (\n variableValues == null ||\n !hasOwnProperty(variableValues, variableName)\n ) {\n if (argDef.defaultValue !== undefined) {\n coercedValues[name] = argDef.defaultValue;\n } else if (isNonNullType(argType)) {\n throw new GraphQLError(\n `Argument \"${name}\" of required type \"${inspect(argType)}\" ` +\n `was provided the variable \"$${variableName}\" which was not provided a runtime value.`,\n valueNode,\n );\n }\n\n continue;\n }\n\n isNull = variableValues[variableName] == null;\n }\n\n if (isNull && isNonNullType(argType)) {\n throw new GraphQLError(\n `Argument \"${name}\" of non-null type \"${inspect(argType)}\" ` +\n 'must not be null.',\n valueNode,\n );\n }\n\n const coercedValue = valueFromAST(valueNode, argType, variableValues);\n\n if (coercedValue === undefined) {\n // Note: ValuesOfCorrectTypeRule validation should catch this before\n // execution. This is a runtime check to ensure execution does not\n // continue with an invalid argument value.\n throw new GraphQLError(\n `Argument \"${name}\" has invalid value ${print(valueNode)}.`,\n valueNode,\n );\n }\n\n coercedValues[name] = coercedValue;\n }\n\n return coercedValues;\n}\n/**\n * Prepares an object map of argument values given a directive definition\n * and a AST node which may contain directives. Optionally also accepts a map\n * of variable values.\n *\n * If the directive does not exist on the node, returns undefined.\n *\n * Note: The returned value is a plain Object with a prototype, since it is\n * exposed to user code. Care should be taken to not pull values from the\n * Object prototype.\n */\n\nexport function getDirectiveValues(directiveDef, node, variableValues) {\n var _node$directives;\n\n const directiveNode =\n (_node$directives = node.directives) === null || _node$directives === void 0\n ? void 0\n : _node$directives.find(\n (directive) => directive.name.value === directiveDef.name,\n );\n\n if (directiveNode) {\n return getArgumentValues(directiveDef, directiveNode, variableValues);\n }\n}\n\nfunction hasOwnProperty(obj, prop) {\n return Object.prototype.hasOwnProperty.call(obj, prop);\n}\n","import { Kind } from '../language/kinds.mjs';\nimport { isAbstractType } from '../type/definition.mjs';\nimport {\n GraphQLIncludeDirective,\n GraphQLSkipDirective,\n} from '../type/directives.mjs';\nimport { typeFromAST } from '../utilities/typeFromAST.mjs';\nimport { getDirectiveValues } from './values.mjs';\n/**\n * Given a selectionSet, collects all of the fields and returns them.\n *\n * CollectFields requires the \"runtime type\" of an object. For a field that\n * returns an Interface or Union type, the \"runtime type\" will be the actual\n * object type returned by that field.\n *\n * @internal\n */\n\nexport function collectFields(\n schema,\n fragments,\n variableValues,\n runtimeType,\n selectionSet,\n) {\n const fields = new Map();\n collectFieldsImpl(\n schema,\n fragments,\n variableValues,\n runtimeType,\n selectionSet,\n fields,\n new Set(),\n );\n return fields;\n}\n/**\n * Given an array of field nodes, collects all of the subfields of the passed\n * in fields, and returns them at the end.\n *\n * CollectSubFields requires the \"return type\" of an object. For a field that\n * returns an Interface or Union type, the \"return type\" will be the actual\n * object type returned by that field.\n *\n * @internal\n */\n\nexport function collectSubfields(\n schema,\n fragments,\n variableValues,\n returnType,\n fieldNodes,\n) {\n const subFieldNodes = new Map();\n const visitedFragmentNames = new Set();\n\n for (const node of fieldNodes) {\n if (node.selectionSet) {\n collectFieldsImpl(\n schema,\n fragments,\n variableValues,\n returnType,\n node.selectionSet,\n subFieldNodes,\n visitedFragmentNames,\n );\n }\n }\n\n return subFieldNodes;\n}\n\nfunction collectFieldsImpl(\n schema,\n fragments,\n variableValues,\n runtimeType,\n selectionSet,\n fields,\n visitedFragmentNames,\n) {\n for (const selection of selectionSet.selections) {\n switch (selection.kind) {\n case Kind.FIELD: {\n if (!shouldIncludeNode(variableValues, selection)) {\n continue;\n }\n\n const name = getFieldEntryKey(selection);\n const fieldList = fields.get(name);\n\n if (fieldList !== undefined) {\n fieldList.push(selection);\n } else {\n fields.set(name, [selection]);\n }\n\n break;\n }\n\n case Kind.INLINE_FRAGMENT: {\n if (\n !shouldIncludeNode(variableValues, selection) ||\n !doesFragmentConditionMatch(schema, selection, runtimeType)\n ) {\n continue;\n }\n\n collectFieldsImpl(\n schema,\n fragments,\n variableValues,\n runtimeType,\n selection.selectionSet,\n fields,\n visitedFragmentNames,\n );\n break;\n }\n\n case Kind.FRAGMENT_SPREAD: {\n const fragName = selection.name.value;\n\n if (\n visitedFragmentNames.has(fragName) ||\n !shouldIncludeNode(variableValues, selection)\n ) {\n continue;\n }\n\n visitedFragmentNames.add(fragName);\n const fragment = fragments[fragName];\n\n if (\n !fragment ||\n !doesFragmentConditionMatch(schema, fragment, runtimeType)\n ) {\n continue;\n }\n\n collectFieldsImpl(\n schema,\n fragments,\n variableValues,\n runtimeType,\n fragment.selectionSet,\n fields,\n visitedFragmentNames,\n );\n break;\n }\n }\n }\n}\n/**\n * Determines if a field should be included based on the `@include` and `@skip`\n * directives, where `@skip` has higher precedence than `@include`.\n */\n\nfunction shouldIncludeNode(variableValues, node) {\n const skip = getDirectiveValues(GraphQLSkipDirective, node, variableValues);\n\n if ((skip === null || skip === void 0 ? void 0 : skip.if) === true) {\n return false;\n }\n\n const include = getDirectiveValues(\n GraphQLIncludeDirective,\n node,\n variableValues,\n );\n\n if (\n (include === null || include === void 0 ? void 0 : include.if) === false\n ) {\n return false;\n }\n\n return true;\n}\n/**\n * Determines if a fragment is applicable to the given type.\n */\n\nfunction doesFragmentConditionMatch(schema, fragment, type) {\n const typeConditionNode = fragment.typeCondition;\n\n if (!typeConditionNode) {\n return true;\n }\n\n const conditionalType = typeFromAST(schema, typeConditionNode);\n\n if (conditionalType === type) {\n return true;\n }\n\n if (isAbstractType(conditionalType)) {\n return schema.isSubType(conditionalType, type);\n }\n\n return false;\n}\n/**\n * Implements the logic to compute the key of a given field's entry\n */\n\nfunction getFieldEntryKey(node) {\n return node.alias ? node.alias.value : node.name.value;\n}\n","import { GraphQLError } from '../../error/GraphQLError.mjs';\nimport { Kind } from '../../language/kinds.mjs';\nimport { collectFields } from '../../execution/collectFields.mjs';\n\n/**\n * Subscriptions must only include a non-introspection field.\n *\n * A GraphQL subscription is valid only if it contains a single root field and\n * that root field is not an introspection field.\n *\n * See https://spec.graphql.org/draft/#sec-Single-root-field\n */\nexport function SingleFieldSubscriptionsRule(context) {\n return {\n OperationDefinition(node) {\n if (node.operation === 'subscription') {\n const schema = context.getSchema();\n const subscriptionType = schema.getSubscriptionType();\n\n if (subscriptionType) {\n const operationName = node.name ? node.name.value : null;\n const variableValues = Object.create(null);\n const document = context.getDocument();\n const fragments = Object.create(null);\n\n for (const definition of document.definitions) {\n if (definition.kind === Kind.FRAGMENT_DEFINITION) {\n fragments[definition.name.value] = definition;\n }\n }\n\n const fields = collectFields(\n schema,\n fragments,\n variableValues,\n subscriptionType,\n node.selectionSet,\n );\n\n if (fields.size > 1) {\n const fieldSelectionLists = [...fields.values()];\n const extraFieldSelectionLists = fieldSelectionLists.slice(1);\n const extraFieldSelections = extraFieldSelectionLists.flat();\n context.reportError(\n new GraphQLError(\n operationName != null\n ? `Subscription \"${operationName}\" must select only one top level field.`\n : 'Anonymous Subscription must select only one top level field.',\n extraFieldSelections,\n ),\n );\n }\n\n for (const fieldNodes of fields.values()) {\n const field = fieldNodes[0];\n const fieldName = field.name.value;\n\n if (fieldName.startsWith('__')) {\n context.reportError(\n new GraphQLError(\n operationName != null\n ? `Subscription \"${operationName}\" must not select an introspection top level field.`\n : 'Anonymous Subscription must not select an introspection top level field.',\n fieldNodes,\n ),\n );\n }\n }\n }\n }\n },\n };\n}\n","/**\n * Groups array items into a Map, given a function to produce grouping key.\n */\nexport function groupBy(list, keyFn) {\n const result = new Map();\n\n for (const item of list) {\n const key = keyFn(item);\n const group = result.get(key);\n\n if (group === undefined) {\n result.set(key, [item]);\n } else {\n group.push(item);\n }\n }\n\n return result;\n}\n","import { groupBy } from '../../jsutils/groupBy.mjs';\nimport { GraphQLError } from '../../error/GraphQLError.mjs';\n\n/**\n * Unique argument definition names\n *\n * A GraphQL Object or Interface type is only valid if all its fields have uniquely named arguments.\n * A GraphQL Directive is only valid if all its arguments are uniquely named.\n */\nexport function UniqueArgumentDefinitionNamesRule(context) {\n return {\n DirectiveDefinition(directiveNode) {\n var _directiveNode$argume;\n\n // FIXME: https://github.com/graphql/graphql-js/issues/2203\n\n /* c8 ignore next */\n const argumentNodes =\n (_directiveNode$argume = directiveNode.arguments) !== null &&\n _directiveNode$argume !== void 0\n ? _directiveNode$argume\n : [];\n return checkArgUniqueness(`@${directiveNode.name.value}`, argumentNodes);\n },\n\n InterfaceTypeDefinition: checkArgUniquenessPerField,\n InterfaceTypeExtension: checkArgUniquenessPerField,\n ObjectTypeDefinition: checkArgUniquenessPerField,\n ObjectTypeExtension: checkArgUniquenessPerField,\n };\n\n function checkArgUniquenessPerField(typeNode) {\n var _typeNode$fields;\n\n const typeName = typeNode.name.value; // FIXME: https://github.com/graphql/graphql-js/issues/2203\n\n /* c8 ignore next */\n\n const fieldNodes =\n (_typeNode$fields = typeNode.fields) !== null &&\n _typeNode$fields !== void 0\n ? _typeNode$fields\n : [];\n\n for (const fieldDef of fieldNodes) {\n var _fieldDef$arguments;\n\n const fieldName = fieldDef.name.value; // FIXME: https://github.com/graphql/graphql-js/issues/2203\n\n /* c8 ignore next */\n\n const argumentNodes =\n (_fieldDef$arguments = fieldDef.arguments) !== null &&\n _fieldDef$arguments !== void 0\n ? _fieldDef$arguments\n : [];\n checkArgUniqueness(`${typeName}.${fieldName}`, argumentNodes);\n }\n\n return false;\n }\n\n function checkArgUniqueness(parentName, argumentNodes) {\n const seenArgs = groupBy(argumentNodes, (arg) => arg.name.value);\n\n for (const [argName, argNodes] of seenArgs) {\n if (argNodes.length > 1) {\n context.reportError(\n new GraphQLError(\n `Argument \"${parentName}(${argName}:)\" can only be defined once.`,\n argNodes.map((node) => node.name),\n ),\n );\n }\n }\n\n return false;\n }\n}\n","import { groupBy } from '../../jsutils/groupBy.mjs';\nimport { GraphQLError } from '../../error/GraphQLError.mjs';\n\n/**\n * Unique argument names\n *\n * A GraphQL field or directive is only valid if all supplied arguments are\n * uniquely named.\n *\n * See https://spec.graphql.org/draft/#sec-Argument-Names\n */\nexport function UniqueArgumentNamesRule(context) {\n return {\n Field: checkArgUniqueness,\n Directive: checkArgUniqueness,\n };\n\n function checkArgUniqueness(parentNode) {\n var _parentNode$arguments;\n\n // FIXME: https://github.com/graphql/graphql-js/issues/2203\n\n /* c8 ignore next */\n const argumentNodes =\n (_parentNode$arguments = parentNode.arguments) !== null &&\n _parentNode$arguments !== void 0\n ? _parentNode$arguments\n : [];\n const seenArgs = groupBy(argumentNodes, (arg) => arg.name.value);\n\n for (const [argName, argNodes] of seenArgs) {\n if (argNodes.length > 1) {\n context.reportError(\n new GraphQLError(\n `There can be only one argument named \"${argName}\".`,\n argNodes.map((node) => node.name),\n ),\n );\n }\n }\n }\n}\n","import { GraphQLError } from '../../error/GraphQLError.mjs';\n\n/**\n * Unique directive names\n *\n * A GraphQL document is only valid if all defined directives have unique names.\n */\nexport function UniqueDirectiveNamesRule(context) {\n const knownDirectiveNames = Object.create(null);\n const schema = context.getSchema();\n return {\n DirectiveDefinition(node) {\n const directiveName = node.name.value;\n\n if (\n schema !== null &&\n schema !== void 0 &&\n schema.getDirective(directiveName)\n ) {\n context.reportError(\n new GraphQLError(\n `Directive \"@${directiveName}\" already exists in the schema. It cannot be redefined.`,\n node.name,\n ),\n );\n return;\n }\n\n if (knownDirectiveNames[directiveName]) {\n context.reportError(\n new GraphQLError(\n `There can be only one directive named \"@${directiveName}\".`,\n [knownDirectiveNames[directiveName], node.name],\n ),\n );\n } else {\n knownDirectiveNames[directiveName] = node.name;\n }\n\n return false;\n },\n };\n}\n","import { GraphQLError } from '../../error/GraphQLError.mjs';\nimport { Kind } from '../../language/kinds.mjs';\nimport {\n isTypeDefinitionNode,\n isTypeExtensionNode,\n} from '../../language/predicates.mjs';\nimport { specifiedDirectives } from '../../type/directives.mjs';\n\n/**\n * Unique directive names per location\n *\n * A GraphQL document is only valid if all non-repeatable directives at\n * a given location are uniquely named.\n *\n * See https://spec.graphql.org/draft/#sec-Directives-Are-Unique-Per-Location\n */\nexport function UniqueDirectivesPerLocationRule(context) {\n const uniqueDirectiveMap = Object.create(null);\n const schema = context.getSchema();\n const definedDirectives = schema\n ? schema.getDirectives()\n : specifiedDirectives;\n\n for (const directive of definedDirectives) {\n uniqueDirectiveMap[directive.name] = !directive.isRepeatable;\n }\n\n const astDefinitions = context.getDocument().definitions;\n\n for (const def of astDefinitions) {\n if (def.kind === Kind.DIRECTIVE_DEFINITION) {\n uniqueDirectiveMap[def.name.value] = !def.repeatable;\n }\n }\n\n const schemaDirectives = Object.create(null);\n const typeDirectivesMap = Object.create(null);\n return {\n // Many different AST nodes may contain directives. Rather than listing\n // them all, just listen for entering any node, and check to see if it\n // defines any directives.\n enter(node) {\n if (!('directives' in node) || !node.directives) {\n return;\n }\n\n let seenDirectives;\n\n if (\n node.kind === Kind.SCHEMA_DEFINITION ||\n node.kind === Kind.SCHEMA_EXTENSION\n ) {\n seenDirectives = schemaDirectives;\n } else if (isTypeDefinitionNode(node) || isTypeExtensionNode(node)) {\n const typeName = node.name.value;\n seenDirectives = typeDirectivesMap[typeName];\n\n if (seenDirectives === undefined) {\n typeDirectivesMap[typeName] = seenDirectives = Object.create(null);\n }\n } else {\n seenDirectives = Object.create(null);\n }\n\n for (const directive of node.directives) {\n const directiveName = directive.name.value;\n\n if (uniqueDirectiveMap[directiveName]) {\n if (seenDirectives[directiveName]) {\n context.reportError(\n new GraphQLError(\n `The directive \"@${directiveName}\" can only be used once at this location.`,\n [seenDirectives[directiveName], directive],\n ),\n );\n } else {\n seenDirectives[directiveName] = directive;\n }\n }\n }\n },\n };\n}\n","import { GraphQLError } from '../../error/GraphQLError.mjs';\nimport { isEnumType } from '../../type/definition.mjs';\n\n/**\n * Unique enum value names\n *\n * A GraphQL enum type is only valid if all its values are uniquely named.\n */\nexport function UniqueEnumValueNamesRule(context) {\n const schema = context.getSchema();\n const existingTypeMap = schema ? schema.getTypeMap() : Object.create(null);\n const knownValueNames = Object.create(null);\n return {\n EnumTypeDefinition: checkValueUniqueness,\n EnumTypeExtension: checkValueUniqueness,\n };\n\n function checkValueUniqueness(node) {\n var _node$values;\n\n const typeName = node.name.value;\n\n if (!knownValueNames[typeName]) {\n knownValueNames[typeName] = Object.create(null);\n } // FIXME: https://github.com/graphql/graphql-js/issues/2203\n\n /* c8 ignore next */\n\n const valueNodes =\n (_node$values = node.values) !== null && _node$values !== void 0\n ? _node$values\n : [];\n const valueNames = knownValueNames[typeName];\n\n for (const valueDef of valueNodes) {\n const valueName = valueDef.name.value;\n const existingType = existingTypeMap[typeName];\n\n if (isEnumType(existingType) && existingType.getValue(valueName)) {\n context.reportError(\n new GraphQLError(\n `Enum value \"${typeName}.${valueName}\" already exists in the schema. It cannot also be defined in this type extension.`,\n valueDef.name,\n ),\n );\n } else if (valueNames[valueName]) {\n context.reportError(\n new GraphQLError(\n `Enum value \"${typeName}.${valueName}\" can only be defined once.`,\n [valueNames[valueName], valueDef.name],\n ),\n );\n } else {\n valueNames[valueName] = valueDef.name;\n }\n }\n\n return false;\n }\n}\n","import { GraphQLError } from '../../error/GraphQLError.mjs';\nimport {\n isInputObjectType,\n isInterfaceType,\n isObjectType,\n} from '../../type/definition.mjs';\n\n/**\n * Unique field definition names\n *\n * A GraphQL complex type is only valid if all its fields are uniquely named.\n */\nexport function UniqueFieldDefinitionNamesRule(context) {\n const schema = context.getSchema();\n const existingTypeMap = schema ? schema.getTypeMap() : Object.create(null);\n const knownFieldNames = Object.create(null);\n return {\n InputObjectTypeDefinition: checkFieldUniqueness,\n InputObjectTypeExtension: checkFieldUniqueness,\n InterfaceTypeDefinition: checkFieldUniqueness,\n InterfaceTypeExtension: checkFieldUniqueness,\n ObjectTypeDefinition: checkFieldUniqueness,\n ObjectTypeExtension: checkFieldUniqueness,\n };\n\n function checkFieldUniqueness(node) {\n var _node$fields;\n\n const typeName = node.name.value;\n\n if (!knownFieldNames[typeName]) {\n knownFieldNames[typeName] = Object.create(null);\n } // FIXME: https://github.com/graphql/graphql-js/issues/2203\n\n /* c8 ignore next */\n\n const fieldNodes =\n (_node$fields = node.fields) !== null && _node$fields !== void 0\n ? _node$fields\n : [];\n const fieldNames = knownFieldNames[typeName];\n\n for (const fieldDef of fieldNodes) {\n const fieldName = fieldDef.name.value;\n\n if (hasField(existingTypeMap[typeName], fieldName)) {\n context.reportError(\n new GraphQLError(\n `Field \"${typeName}.${fieldName}\" already exists in the schema. It cannot also be defined in this type extension.`,\n fieldDef.name,\n ),\n );\n } else if (fieldNames[fieldName]) {\n context.reportError(\n new GraphQLError(\n `Field \"${typeName}.${fieldName}\" can only be defined once.`,\n [fieldNames[fieldName], fieldDef.name],\n ),\n );\n } else {\n fieldNames[fieldName] = fieldDef.name;\n }\n }\n\n return false;\n }\n}\n\nfunction hasField(type, fieldName) {\n if (isObjectType(type) || isInterfaceType(type) || isInputObjectType(type)) {\n return type.getFields()[fieldName] != null;\n }\n\n return false;\n}\n","import { GraphQLError } from '../../error/GraphQLError.mjs';\n\n/**\n * Unique fragment names\n *\n * A GraphQL document is only valid if all defined fragments have unique names.\n *\n * See https://spec.graphql.org/draft/#sec-Fragment-Name-Uniqueness\n */\nexport function UniqueFragmentNamesRule(context) {\n const knownFragmentNames = Object.create(null);\n return {\n OperationDefinition: () => false,\n\n FragmentDefinition(node) {\n const fragmentName = node.name.value;\n\n if (knownFragmentNames[fragmentName]) {\n context.reportError(\n new GraphQLError(\n `There can be only one fragment named \"${fragmentName}\".`,\n [knownFragmentNames[fragmentName], node.name],\n ),\n );\n } else {\n knownFragmentNames[fragmentName] = node.name;\n }\n\n return false;\n },\n };\n}\n","import { invariant } from '../../jsutils/invariant.mjs';\nimport { GraphQLError } from '../../error/GraphQLError.mjs';\n\n/**\n * Unique input field names\n *\n * A GraphQL input object value is only valid if all supplied fields are\n * uniquely named.\n *\n * See https://spec.graphql.org/draft/#sec-Input-Object-Field-Uniqueness\n */\nexport function UniqueInputFieldNamesRule(context) {\n const knownNameStack = [];\n let knownNames = Object.create(null);\n return {\n ObjectValue: {\n enter() {\n knownNameStack.push(knownNames);\n knownNames = Object.create(null);\n },\n\n leave() {\n const prevKnownNames = knownNameStack.pop();\n prevKnownNames || invariant(false);\n knownNames = prevKnownNames;\n },\n },\n\n ObjectField(node) {\n const fieldName = node.name.value;\n\n if (knownNames[fieldName]) {\n context.reportError(\n new GraphQLError(\n `There can be only one input field named \"${fieldName}\".`,\n [knownNames[fieldName], node.name],\n ),\n );\n } else {\n knownNames[fieldName] = node.name;\n }\n },\n };\n}\n","import { GraphQLError } from '../../error/GraphQLError.mjs';\n\n/**\n * Unique operation names\n *\n * A GraphQL document is only valid if all defined operations have unique names.\n *\n * See https://spec.graphql.org/draft/#sec-Operation-Name-Uniqueness\n */\nexport function UniqueOperationNamesRule(context) {\n const knownOperationNames = Object.create(null);\n return {\n OperationDefinition(node) {\n const operationName = node.name;\n\n if (operationName) {\n if (knownOperationNames[operationName.value]) {\n context.reportError(\n new GraphQLError(\n `There can be only one operation named \"${operationName.value}\".`,\n [knownOperationNames[operationName.value], operationName],\n ),\n );\n } else {\n knownOperationNames[operationName.value] = operationName;\n }\n }\n\n return false;\n },\n\n FragmentDefinition: () => false,\n };\n}\n","import { GraphQLError } from '../../error/GraphQLError.mjs';\n\n/**\n * Unique operation types\n *\n * A GraphQL document is only valid if it has only one type per operation.\n */\nexport function UniqueOperationTypesRule(context) {\n const schema = context.getSchema();\n const definedOperationTypes = Object.create(null);\n const existingOperationTypes = schema\n ? {\n query: schema.getQueryType(),\n mutation: schema.getMutationType(),\n subscription: schema.getSubscriptionType(),\n }\n : {};\n return {\n SchemaDefinition: checkOperationTypes,\n SchemaExtension: checkOperationTypes,\n };\n\n function checkOperationTypes(node) {\n var _node$operationTypes;\n\n // See: https://github.com/graphql/graphql-js/issues/2203\n\n /* c8 ignore next */\n const operationTypesNodes =\n (_node$operationTypes = node.operationTypes) !== null &&\n _node$operationTypes !== void 0\n ? _node$operationTypes\n : [];\n\n for (const operationType of operationTypesNodes) {\n const operation = operationType.operation;\n const alreadyDefinedOperationType = definedOperationTypes[operation];\n\n if (existingOperationTypes[operation]) {\n context.reportError(\n new GraphQLError(\n `Type for ${operation} already defined in the schema. It cannot be redefined.`,\n operationType,\n ),\n );\n } else if (alreadyDefinedOperationType) {\n context.reportError(\n new GraphQLError(\n `There can be only one ${operation} type in schema.`,\n [alreadyDefinedOperationType, operationType],\n ),\n );\n } else {\n definedOperationTypes[operation] = operationType;\n }\n }\n\n return false;\n }\n}\n","import { GraphQLError } from '../../error/GraphQLError.mjs';\n\n/**\n * Unique type names\n *\n * A GraphQL document is only valid if all defined types have unique names.\n */\nexport function UniqueTypeNamesRule(context) {\n const knownTypeNames = Object.create(null);\n const schema = context.getSchema();\n return {\n ScalarTypeDefinition: checkTypeName,\n ObjectTypeDefinition: checkTypeName,\n InterfaceTypeDefinition: checkTypeName,\n UnionTypeDefinition: checkTypeName,\n EnumTypeDefinition: checkTypeName,\n InputObjectTypeDefinition: checkTypeName,\n };\n\n function checkTypeName(node) {\n const typeName = node.name.value;\n\n if (schema !== null && schema !== void 0 && schema.getType(typeName)) {\n context.reportError(\n new GraphQLError(\n `Type \"${typeName}\" already exists in the schema. It cannot also be defined in this type definition.`,\n node.name,\n ),\n );\n return;\n }\n\n if (knownTypeNames[typeName]) {\n context.reportError(\n new GraphQLError(`There can be only one type named \"${typeName}\".`, [\n knownTypeNames[typeName],\n node.name,\n ]),\n );\n } else {\n knownTypeNames[typeName] = node.name;\n }\n\n return false;\n }\n}\n","import { groupBy } from '../../jsutils/groupBy.mjs';\nimport { GraphQLError } from '../../error/GraphQLError.mjs';\n\n/**\n * Unique variable names\n *\n * A GraphQL operation is only valid if all its variables are uniquely named.\n */\nexport function UniqueVariableNamesRule(context) {\n return {\n OperationDefinition(operationNode) {\n var _operationNode$variab;\n\n // See: https://github.com/graphql/graphql-js/issues/2203\n\n /* c8 ignore next */\n const variableDefinitions =\n (_operationNode$variab = operationNode.variableDefinitions) !== null &&\n _operationNode$variab !== void 0\n ? _operationNode$variab\n : [];\n const seenVariableDefinitions = groupBy(\n variableDefinitions,\n (node) => node.variable.name.value,\n );\n\n for (const [variableName, variableNodes] of seenVariableDefinitions) {\n if (variableNodes.length > 1) {\n context.reportError(\n new GraphQLError(\n `There can be only one variable named \"$${variableName}\".`,\n variableNodes.map((node) => node.variable.name),\n ),\n );\n }\n }\n },\n };\n}\n","import { didYouMean } from '../../jsutils/didYouMean.mjs';\nimport { inspect } from '../../jsutils/inspect.mjs';\nimport { keyMap } from '../../jsutils/keyMap.mjs';\nimport { suggestionList } from '../../jsutils/suggestionList.mjs';\nimport { GraphQLError } from '../../error/GraphQLError.mjs';\nimport { print } from '../../language/printer.mjs';\nimport {\n getNamedType,\n getNullableType,\n isInputObjectType,\n isLeafType,\n isListType,\n isNonNullType,\n isRequiredInputField,\n} from '../../type/definition.mjs';\n\n/**\n * Value literals of correct type\n *\n * A GraphQL document is only valid if all value literals are of the type\n * expected at their position.\n *\n * See https://spec.graphql.org/draft/#sec-Values-of-Correct-Type\n */\nexport function ValuesOfCorrectTypeRule(context) {\n return {\n ListValue(node) {\n // Note: TypeInfo will traverse into a list's item type, so look to the\n // parent input type to check if it is a list.\n const type = getNullableType(context.getParentInputType());\n\n if (!isListType(type)) {\n isValidValueNode(context, node);\n return false; // Don't traverse further.\n }\n },\n\n ObjectValue(node) {\n const type = getNamedType(context.getInputType());\n\n if (!isInputObjectType(type)) {\n isValidValueNode(context, node);\n return false; // Don't traverse further.\n } // Ensure every required field exists.\n\n const fieldNodeMap = keyMap(node.fields, (field) => field.name.value);\n\n for (const fieldDef of Object.values(type.getFields())) {\n const fieldNode = fieldNodeMap[fieldDef.name];\n\n if (!fieldNode && isRequiredInputField(fieldDef)) {\n const typeStr = inspect(fieldDef.type);\n context.reportError(\n new GraphQLError(\n `Field \"${type.name}.${fieldDef.name}\" of required type \"${typeStr}\" was not provided.`,\n node,\n ),\n );\n }\n }\n },\n\n ObjectField(node) {\n const parentType = getNamedType(context.getParentInputType());\n const fieldType = context.getInputType();\n\n if (!fieldType && isInputObjectType(parentType)) {\n const suggestions = suggestionList(\n node.name.value,\n Object.keys(parentType.getFields()),\n );\n context.reportError(\n new GraphQLError(\n `Field \"${node.name.value}\" is not defined by type \"${parentType.name}\".` +\n didYouMean(suggestions),\n node,\n ),\n );\n }\n },\n\n NullValue(node) {\n const type = context.getInputType();\n\n if (isNonNullType(type)) {\n context.reportError(\n new GraphQLError(\n `Expected value of type \"${inspect(type)}\", found ${print(node)}.`,\n node,\n ),\n );\n }\n },\n\n EnumValue: (node) => isValidValueNode(context, node),\n IntValue: (node) => isValidValueNode(context, node),\n FloatValue: (node) => isValidValueNode(context, node),\n StringValue: (node) => isValidValueNode(context, node),\n BooleanValue: (node) => isValidValueNode(context, node),\n };\n}\n/**\n * Any value literal may be a valid representation of a Scalar, depending on\n * that scalar type.\n */\n\nfunction isValidValueNode(context, node) {\n // Report any error at the full type expected by the location.\n const locationType = context.getInputType();\n\n if (!locationType) {\n return;\n }\n\n const type = getNamedType(locationType);\n\n if (!isLeafType(type)) {\n const typeStr = inspect(locationType);\n context.reportError(\n new GraphQLError(\n `Expected value of type \"${typeStr}\", found ${print(node)}.`,\n node,\n ),\n );\n return;\n } // Scalars and Enums determine if a literal value is valid via parseLiteral(),\n // which may throw or return an invalid value to indicate failure.\n\n try {\n const parseResult = type.parseLiteral(\n node,\n undefined,\n /* variables */\n );\n\n if (parseResult === undefined) {\n const typeStr = inspect(locationType);\n context.reportError(\n new GraphQLError(\n `Expected value of type \"${typeStr}\", found ${print(node)}.`,\n node,\n ),\n );\n }\n } catch (error) {\n const typeStr = inspect(locationType);\n\n if (error instanceof GraphQLError) {\n context.reportError(error);\n } else {\n context.reportError(\n new GraphQLError(\n `Expected value of type \"${typeStr}\", found ${print(node)}; ` +\n error.message,\n node,\n undefined,\n undefined,\n undefined,\n error,\n ),\n );\n }\n }\n}\n","import { GraphQLError } from '../../error/GraphQLError.mjs';\nimport { print } from '../../language/printer.mjs';\nimport { isInputType } from '../../type/definition.mjs';\nimport { typeFromAST } from '../../utilities/typeFromAST.mjs';\n\n/**\n * Variables are input types\n *\n * A GraphQL operation is only valid if all the variables it defines are of\n * input types (scalar, enum, or input object).\n *\n * See https://spec.graphql.org/draft/#sec-Variables-Are-Input-Types\n */\nexport function VariablesAreInputTypesRule(context) {\n return {\n VariableDefinition(node) {\n const type = typeFromAST(context.getSchema(), node.type);\n\n if (type !== undefined && !isInputType(type)) {\n const variableName = node.variable.name.value;\n const typeName = print(node.type);\n context.reportError(\n new GraphQLError(\n `Variable \"$${variableName}\" cannot be non-input type \"${typeName}\".`,\n node.type,\n ),\n );\n }\n },\n };\n}\n","import { inspect } from '../../jsutils/inspect.mjs';\nimport { GraphQLError } from '../../error/GraphQLError.mjs';\nimport { Kind } from '../../language/kinds.mjs';\nimport { isNonNullType } from '../../type/definition.mjs';\nimport { isTypeSubTypeOf } from '../../utilities/typeComparators.mjs';\nimport { typeFromAST } from '../../utilities/typeFromAST.mjs';\n\n/**\n * Variables in allowed position\n *\n * Variable usages must be compatible with the arguments they are passed to.\n *\n * See https://spec.graphql.org/draft/#sec-All-Variable-Usages-are-Allowed\n */\nexport function VariablesInAllowedPositionRule(context) {\n let varDefMap = Object.create(null);\n return {\n OperationDefinition: {\n enter() {\n varDefMap = Object.create(null);\n },\n\n leave(operation) {\n const usages = context.getRecursiveVariableUsages(operation);\n\n for (const { node, type, defaultValue } of usages) {\n const varName = node.name.value;\n const varDef = varDefMap[varName];\n\n if (varDef && type) {\n // A var type is allowed if it is the same or more strict (e.g. is\n // a subtype of) than the expected type. It can be more strict if\n // the variable type is non-null when the expected type is nullable.\n // If both are list types, the variable item type can be more strict\n // than the expected item type (contravariant).\n const schema = context.getSchema();\n const varType = typeFromAST(schema, varDef.type);\n\n if (\n varType &&\n !allowedVariableUsage(\n schema,\n varType,\n varDef.defaultValue,\n type,\n defaultValue,\n )\n ) {\n const varTypeStr = inspect(varType);\n const typeStr = inspect(type);\n context.reportError(\n new GraphQLError(\n `Variable \"$${varName}\" of type \"${varTypeStr}\" used in position expecting type \"${typeStr}\".`,\n [varDef, node],\n ),\n );\n }\n }\n }\n },\n },\n\n VariableDefinition(node) {\n varDefMap[node.variable.name.value] = node;\n },\n };\n}\n/**\n * Returns true if the variable is allowed in the location it was found,\n * which includes considering if default values exist for either the variable\n * or the location at which it is located.\n */\n\nfunction allowedVariableUsage(\n schema,\n varType,\n varDefaultValue,\n locationType,\n locationDefaultValue,\n) {\n if (isNonNullType(locationType) && !isNonNullType(varType)) {\n const hasNonNullVariableDefaultValue =\n varDefaultValue != null && varDefaultValue.kind !== Kind.NULL;\n const hasLocationDefaultValue = locationDefaultValue !== undefined;\n\n if (!hasNonNullVariableDefaultValue && !hasLocationDefaultValue) {\n return false;\n }\n\n const nullableLocationType = locationType.ofType;\n return isTypeSubTypeOf(schema, varType, nullableLocationType);\n }\n\n return isTypeSubTypeOf(schema, varType, locationType);\n}\n","// Spec Section: \"Executable Definitions\"\nimport { ExecutableDefinitionsRule } from './rules/ExecutableDefinitionsRule.mjs'; // Spec Section: \"Field Selections on Objects, Interfaces, and Unions Types\"\n\nimport { FieldsOnCorrectTypeRule } from './rules/FieldsOnCorrectTypeRule.mjs'; // Spec Section: \"Fragments on Composite Types\"\n\nimport { FragmentsOnCompositeTypesRule } from './rules/FragmentsOnCompositeTypesRule.mjs'; // Spec Section: \"Argument Names\"\n\nimport {\n KnownArgumentNamesOnDirectivesRule,\n KnownArgumentNamesRule,\n} from './rules/KnownArgumentNamesRule.mjs'; // Spec Section: \"Directives Are Defined\"\n\nimport { KnownDirectivesRule } from './rules/KnownDirectivesRule.mjs'; // Spec Section: \"Fragment spread target defined\"\n\nimport { KnownFragmentNamesRule } from './rules/KnownFragmentNamesRule.mjs'; // Spec Section: \"Fragment Spread Type Existence\"\n\nimport { KnownTypeNamesRule } from './rules/KnownTypeNamesRule.mjs'; // Spec Section: \"Lone Anonymous Operation\"\n\nimport { LoneAnonymousOperationRule } from './rules/LoneAnonymousOperationRule.mjs'; // SDL-specific validation rules\n\nimport { LoneSchemaDefinitionRule } from './rules/LoneSchemaDefinitionRule.mjs'; // Spec Section: \"Fragments must not form cycles\"\n\nimport { NoFragmentCyclesRule } from './rules/NoFragmentCyclesRule.mjs'; // Spec Section: \"All Variable Used Defined\"\n\nimport { NoUndefinedVariablesRule } from './rules/NoUndefinedVariablesRule.mjs'; // Spec Section: \"Fragments must be used\"\n\nimport { NoUnusedFragmentsRule } from './rules/NoUnusedFragmentsRule.mjs'; // Spec Section: \"All Variables Used\"\n\nimport { NoUnusedVariablesRule } from './rules/NoUnusedVariablesRule.mjs'; // Spec Section: \"Field Selection Merging\"\n\nimport { OverlappingFieldsCanBeMergedRule } from './rules/OverlappingFieldsCanBeMergedRule.mjs'; // Spec Section: \"Fragment spread is possible\"\n\nimport { PossibleFragmentSpreadsRule } from './rules/PossibleFragmentSpreadsRule.mjs';\nimport { PossibleTypeExtensionsRule } from './rules/PossibleTypeExtensionsRule.mjs'; // Spec Section: \"Argument Optionality\"\n\nimport {\n ProvidedRequiredArgumentsOnDirectivesRule,\n ProvidedRequiredArgumentsRule,\n} from './rules/ProvidedRequiredArgumentsRule.mjs'; // Spec Section: \"Leaf Field Selections\"\n\nimport { ScalarLeafsRule } from './rules/ScalarLeafsRule.mjs'; // Spec Section: \"Subscriptions with Single Root Field\"\n\nimport { SingleFieldSubscriptionsRule } from './rules/SingleFieldSubscriptionsRule.mjs';\nimport { UniqueArgumentDefinitionNamesRule } from './rules/UniqueArgumentDefinitionNamesRule.mjs'; // Spec Section: \"Argument Uniqueness\"\n\nimport { UniqueArgumentNamesRule } from './rules/UniqueArgumentNamesRule.mjs';\nimport { UniqueDirectiveNamesRule } from './rules/UniqueDirectiveNamesRule.mjs'; // Spec Section: \"Directives Are Unique Per Location\"\n\nimport { UniqueDirectivesPerLocationRule } from './rules/UniqueDirectivesPerLocationRule.mjs';\nimport { UniqueEnumValueNamesRule } from './rules/UniqueEnumValueNamesRule.mjs';\nimport { UniqueFieldDefinitionNamesRule } from './rules/UniqueFieldDefinitionNamesRule.mjs'; // Spec Section: \"Fragment Name Uniqueness\"\n\nimport { UniqueFragmentNamesRule } from './rules/UniqueFragmentNamesRule.mjs'; // Spec Section: \"Input Object Field Uniqueness\"\n\nimport { UniqueInputFieldNamesRule } from './rules/UniqueInputFieldNamesRule.mjs'; // Spec Section: \"Operation Name Uniqueness\"\n\nimport { UniqueOperationNamesRule } from './rules/UniqueOperationNamesRule.mjs';\nimport { UniqueOperationTypesRule } from './rules/UniqueOperationTypesRule.mjs';\nimport { UniqueTypeNamesRule } from './rules/UniqueTypeNamesRule.mjs'; // Spec Section: \"Variable Uniqueness\"\n\nimport { UniqueVariableNamesRule } from './rules/UniqueVariableNamesRule.mjs'; // Spec Section: \"Value Type Correctness\"\n\nimport { ValuesOfCorrectTypeRule } from './rules/ValuesOfCorrectTypeRule.mjs'; // Spec Section: \"Variables are Input Types\"\n\nimport { VariablesAreInputTypesRule } from './rules/VariablesAreInputTypesRule.mjs'; // Spec Section: \"All Variable Usages Are Allowed\"\n\nimport { VariablesInAllowedPositionRule } from './rules/VariablesInAllowedPositionRule.mjs';\n\n/**\n * This set includes all validation rules defined by the GraphQL spec.\n *\n * The order of the rules in this list has been adjusted to lead to the\n * most clear output when encountering multiple validation errors.\n */\nexport const specifiedRules = Object.freeze([\n ExecutableDefinitionsRule,\n UniqueOperationNamesRule,\n LoneAnonymousOperationRule,\n SingleFieldSubscriptionsRule,\n KnownTypeNamesRule,\n FragmentsOnCompositeTypesRule,\n VariablesAreInputTypesRule,\n ScalarLeafsRule,\n FieldsOnCorrectTypeRule,\n UniqueFragmentNamesRule,\n KnownFragmentNamesRule,\n NoUnusedFragmentsRule,\n PossibleFragmentSpreadsRule,\n NoFragmentCyclesRule,\n UniqueVariableNamesRule,\n NoUndefinedVariablesRule,\n NoUnusedVariablesRule,\n KnownDirectivesRule,\n UniqueDirectivesPerLocationRule,\n KnownArgumentNamesRule,\n UniqueArgumentNamesRule,\n ValuesOfCorrectTypeRule,\n ProvidedRequiredArgumentsRule,\n VariablesInAllowedPositionRule,\n OverlappingFieldsCanBeMergedRule,\n UniqueInputFieldNamesRule,\n]);\n/**\n * @internal\n */\n\nexport const specifiedSDLRules = Object.freeze([\n LoneSchemaDefinitionRule,\n UniqueOperationTypesRule,\n UniqueTypeNamesRule,\n UniqueEnumValueNamesRule,\n UniqueFieldDefinitionNamesRule,\n UniqueArgumentDefinitionNamesRule,\n UniqueDirectiveNamesRule,\n KnownTypeNamesRule,\n KnownDirectivesRule,\n UniqueDirectivesPerLocationRule,\n PossibleTypeExtensionsRule,\n KnownArgumentNamesOnDirectivesRule,\n UniqueArgumentNamesRule,\n UniqueInputFieldNamesRule,\n ProvidedRequiredArgumentsOnDirectivesRule,\n]);\n","import { Kind } from '../language/kinds.mjs';\nimport { visit } from '../language/visitor.mjs';\nimport { TypeInfo, visitWithTypeInfo } from '../utilities/TypeInfo.mjs';\n\n/**\n * An instance of this class is passed as the \"this\" context to all validators,\n * allowing access to commonly useful contextual information from within a\n * validation rule.\n */\nexport class ASTValidationContext {\n constructor(ast, onError) {\n this._ast = ast;\n this._fragments = undefined;\n this._fragmentSpreads = new Map();\n this._recursivelyReferencedFragments = new Map();\n this._onError = onError;\n }\n\n get [Symbol.toStringTag]() {\n return 'ASTValidationContext';\n }\n\n reportError(error) {\n this._onError(error);\n }\n\n getDocument() {\n return this._ast;\n }\n\n getFragment(name) {\n let fragments;\n\n if (this._fragments) {\n fragments = this._fragments;\n } else {\n fragments = Object.create(null);\n\n for (const defNode of this.getDocument().definitions) {\n if (defNode.kind === Kind.FRAGMENT_DEFINITION) {\n fragments[defNode.name.value] = defNode;\n }\n }\n\n this._fragments = fragments;\n }\n\n return fragments[name];\n }\n\n getFragmentSpreads(node) {\n let spreads = this._fragmentSpreads.get(node);\n\n if (!spreads) {\n spreads = [];\n const setsToVisit = [node];\n let set;\n\n while ((set = setsToVisit.pop())) {\n for (const selection of set.selections) {\n if (selection.kind === Kind.FRAGMENT_SPREAD) {\n spreads.push(selection);\n } else if (selection.selectionSet) {\n setsToVisit.push(selection.selectionSet);\n }\n }\n }\n\n this._fragmentSpreads.set(node, spreads);\n }\n\n return spreads;\n }\n\n getRecursivelyReferencedFragments(operation) {\n let fragments = this._recursivelyReferencedFragments.get(operation);\n\n if (!fragments) {\n fragments = [];\n const collectedNames = Object.create(null);\n const nodesToVisit = [operation.selectionSet];\n let node;\n\n while ((node = nodesToVisit.pop())) {\n for (const spread of this.getFragmentSpreads(node)) {\n const fragName = spread.name.value;\n\n if (collectedNames[fragName] !== true) {\n collectedNames[fragName] = true;\n const fragment = this.getFragment(fragName);\n\n if (fragment) {\n fragments.push(fragment);\n nodesToVisit.push(fragment.selectionSet);\n }\n }\n }\n }\n\n this._recursivelyReferencedFragments.set(operation, fragments);\n }\n\n return fragments;\n }\n}\nexport class SDLValidationContext extends ASTValidationContext {\n constructor(ast, schema, onError) {\n super(ast, onError);\n this._schema = schema;\n }\n\n get [Symbol.toStringTag]() {\n return 'SDLValidationContext';\n }\n\n getSchema() {\n return this._schema;\n }\n}\nexport class ValidationContext extends ASTValidationContext {\n constructor(schema, ast, typeInfo, onError) {\n super(ast, onError);\n this._schema = schema;\n this._typeInfo = typeInfo;\n this._variableUsages = new Map();\n this._recursiveVariableUsages = new Map();\n }\n\n get [Symbol.toStringTag]() {\n return 'ValidationContext';\n }\n\n getSchema() {\n return this._schema;\n }\n\n getVariableUsages(node) {\n let usages = this._variableUsages.get(node);\n\n if (!usages) {\n const newUsages = [];\n const typeInfo = new TypeInfo(this._schema);\n visit(\n node,\n visitWithTypeInfo(typeInfo, {\n VariableDefinition: () => false,\n\n Variable(variable) {\n newUsages.push({\n node: variable,\n type: typeInfo.getInputType(),\n defaultValue: typeInfo.getDefaultValue(),\n });\n },\n }),\n );\n usages = newUsages;\n\n this._variableUsages.set(node, usages);\n }\n\n return usages;\n }\n\n getRecursiveVariableUsages(operation) {\n let usages = this._recursiveVariableUsages.get(operation);\n\n if (!usages) {\n usages = this.getVariableUsages(operation);\n\n for (const frag of this.getRecursivelyReferencedFragments(operation)) {\n usages = usages.concat(this.getVariableUsages(frag));\n }\n\n this._recursiveVariableUsages.set(operation, usages);\n }\n\n return usages;\n }\n\n getType() {\n return this._typeInfo.getType();\n }\n\n getParentType() {\n return this._typeInfo.getParentType();\n }\n\n getInputType() {\n return this._typeInfo.getInputType();\n }\n\n getParentInputType() {\n return this._typeInfo.getParentInputType();\n }\n\n getFieldDef() {\n return this._typeInfo.getFieldDef();\n }\n\n getDirective() {\n return this._typeInfo.getDirective();\n }\n\n getArgument() {\n return this._typeInfo.getArgument();\n }\n\n getEnumValue() {\n return this._typeInfo.getEnumValue();\n }\n}\n","import { devAssert } from '../jsutils/devAssert.mjs';\nimport { GraphQLError } from '../error/GraphQLError.mjs';\nimport { visit, visitInParallel } from '../language/visitor.mjs';\nimport { assertValidSchema } from '../type/validate.mjs';\nimport { TypeInfo, visitWithTypeInfo } from '../utilities/TypeInfo.mjs';\nimport { specifiedRules, specifiedSDLRules } from './specifiedRules.mjs';\nimport {\n SDLValidationContext,\n ValidationContext,\n} from './ValidationContext.mjs';\n/**\n * Implements the \"Validation\" section of the spec.\n *\n * Validation runs synchronously, returning an array of encountered errors, or\n * an empty array if no errors were encountered and the document is valid.\n *\n * A list of specific validation rules may be provided. If not provided, the\n * default list of rules defined by the GraphQL specification will be used.\n *\n * Each validation rules is a function which returns a visitor\n * (see the language/visitor API). Visitor methods are expected to return\n * GraphQLErrors, or Arrays of GraphQLErrors when invalid.\n *\n * Validate will stop validation after a `maxErrors` limit has been reached.\n * Attackers can send pathologically invalid queries to induce a DoS attack,\n * so by default `maxErrors` set to 100 errors.\n *\n * Optionally a custom TypeInfo instance may be provided. If not provided, one\n * will be created from the provided schema.\n */\n\nexport function validate(\n schema,\n documentAST,\n rules = specifiedRules,\n options,\n /** @deprecated will be removed in 17.0.0 */\n typeInfo = new TypeInfo(schema),\n) {\n var _options$maxErrors;\n\n const maxErrors =\n (_options$maxErrors =\n options === null || options === void 0 ? void 0 : options.maxErrors) !==\n null && _options$maxErrors !== void 0\n ? _options$maxErrors\n : 100;\n documentAST || devAssert(false, 'Must provide document.'); // If the schema used for validation is invalid, throw an error.\n\n assertValidSchema(schema);\n const abortObj = Object.freeze({});\n const errors = [];\n const context = new ValidationContext(\n schema,\n documentAST,\n typeInfo,\n (error) => {\n if (errors.length >= maxErrors) {\n errors.push(\n new GraphQLError(\n 'Too many validation errors, error limit reached. Validation aborted.',\n ),\n ); // eslint-disable-next-line @typescript-eslint/no-throw-literal\n\n throw abortObj;\n }\n\n errors.push(error);\n },\n ); // This uses a specialized visitor which runs multiple visitors in parallel,\n // while maintaining the visitor skip and break API.\n\n const visitor = visitInParallel(rules.map((rule) => rule(context))); // Visit the whole document with each instance of all provided rules.\n\n try {\n visit(documentAST, visitWithTypeInfo(typeInfo, visitor));\n } catch (e) {\n if (e !== abortObj) {\n throw e;\n }\n }\n\n return errors;\n}\n/**\n * @internal\n */\n\nexport function validateSDL(\n documentAST,\n schemaToExtend,\n rules = specifiedSDLRules,\n) {\n const errors = [];\n const context = new SDLValidationContext(\n documentAST,\n schemaToExtend,\n (error) => {\n errors.push(error);\n },\n );\n const visitors = rules.map((rule) => rule(context));\n visit(documentAST, visitInParallel(visitors));\n return errors;\n}\n/**\n * Utility function which asserts a SDL document is valid by throwing an error\n * if it is invalid.\n *\n * @internal\n */\n\nexport function assertValidSDL(documentAST) {\n const errors = validateSDL(documentAST);\n\n if (errors.length !== 0) {\n throw new Error(errors.map((error) => error.message).join('\\n\\n'));\n }\n}\n/**\n * Utility function which asserts a SDL document is valid by throwing an error\n * if it is invalid.\n *\n * @internal\n */\n\nexport function assertValidSDLExtension(documentAST, schema) {\n const errors = validateSDL(documentAST, schema);\n\n if (errors.length !== 0) {\n throw new Error(errors.map((error) => error.message).join('\\n\\n'));\n }\n}\n","/**\n * Memoizes the provided three-argument function.\n */\nexport function memoize3(fn) {\n let cache0;\n return function memoized(a1, a2, a3) {\n if (cache0 === undefined) {\n cache0 = new WeakMap();\n }\n\n let cache1 = cache0.get(a1);\n\n if (cache1 === undefined) {\n cache1 = new WeakMap();\n cache0.set(a1, cache1);\n }\n\n let cache2 = cache1.get(a2);\n\n if (cache2 === undefined) {\n cache2 = new WeakMap();\n cache1.set(a2, cache2);\n }\n\n let fnResult = cache2.get(a3);\n\n if (fnResult === undefined) {\n fnResult = fn(a1, a2, a3);\n cache2.set(a3, fnResult);\n }\n\n return fnResult;\n };\n}\n","/**\n * This function transforms a JS object `ObjMap>` into\n * a `Promise>`\n *\n * This is akin to bluebird's `Promise.props`, but implemented only using\n * `Promise.all` so it will work with any implementation of ES6 promises.\n */\nexport function promiseForObject(object) {\n return Promise.all(Object.values(object)).then((resolvedValues) => {\n const resolvedObject = Object.create(null);\n\n for (const [i, key] of Object.keys(object).entries()) {\n resolvedObject[key] = resolvedValues[i];\n }\n\n return resolvedObject;\n });\n}\n","import { isPromise } from './isPromise.mjs';\n\n/**\n * Similar to Array.prototype.reduce(), however the reducing callback may return\n * a Promise, in which case reduction will continue after each promise resolves.\n *\n * If the callback does not return a Promise, then this function will also not\n * return a Promise.\n */\nexport function promiseReduce(values, callbackFn, initialValue) {\n let accumulator = initialValue;\n\n for (const value of values) {\n accumulator = isPromise(accumulator)\n ? accumulator.then((resolved) => callbackFn(resolved, value))\n : callbackFn(accumulator, value);\n }\n\n return accumulator;\n}\n","import { inspect } from './inspect.mjs';\n/**\n * Sometimes a non-error is thrown, wrap it as an Error instance to ensure a consistent Error interface.\n */\n\nexport function toError(thrownValue) {\n return thrownValue instanceof Error\n ? thrownValue\n : new NonErrorThrown(thrownValue);\n}\n\nclass NonErrorThrown extends Error {\n constructor(thrownValue) {\n super('Unexpected error value: ' + inspect(thrownValue));\n this.name = 'NonErrorThrown';\n this.thrownValue = thrownValue;\n }\n}\n","import { toError } from '../jsutils/toError.mjs';\nimport { GraphQLError } from './GraphQLError.mjs';\n/**\n * Given an arbitrary value, presumably thrown while attempting to execute a\n * GraphQL operation, produce a new GraphQLError aware of the location in the\n * document responsible for the original Error.\n */\n\nexport function locatedError(rawOriginalError, nodes, path) {\n var _nodes;\n\n const originalError = toError(rawOriginalError); // Note: this uses a brand-check to support GraphQL errors originating from other contexts.\n\n if (isLocatedGraphQLError(originalError)) {\n return originalError;\n }\n\n return new GraphQLError(\n originalError.message,\n (_nodes = originalError.nodes) !== null && _nodes !== void 0\n ? _nodes\n : nodes,\n originalError.source,\n originalError.positions,\n path,\n originalError,\n );\n}\n\nfunction isLocatedGraphQLError(error) {\n return Array.isArray(error.path);\n}\n","import { devAssert } from '../jsutils/devAssert.mjs';\nimport { inspect } from '../jsutils/inspect.mjs';\nimport { invariant } from '../jsutils/invariant.mjs';\nimport { isIterableObject } from '../jsutils/isIterableObject.mjs';\nimport { isObjectLike } from '../jsutils/isObjectLike.mjs';\nimport { isPromise } from '../jsutils/isPromise.mjs';\nimport { memoize3 } from '../jsutils/memoize3.mjs';\nimport { addPath, pathToArray } from '../jsutils/Path.mjs';\nimport { promiseForObject } from '../jsutils/promiseForObject.mjs';\nimport { promiseReduce } from '../jsutils/promiseReduce.mjs';\nimport { GraphQLError } from '../error/GraphQLError.mjs';\nimport { locatedError } from '../error/locatedError.mjs';\nimport { OperationTypeNode } from '../language/ast.mjs';\nimport { Kind } from '../language/kinds.mjs';\nimport {\n isAbstractType,\n isLeafType,\n isListType,\n isNonNullType,\n isObjectType,\n} from '../type/definition.mjs';\nimport {\n SchemaMetaFieldDef,\n TypeMetaFieldDef,\n TypeNameMetaFieldDef,\n} from '../type/introspection.mjs';\nimport { assertValidSchema } from '../type/validate.mjs';\nimport {\n collectFields,\n collectSubfields as _collectSubfields,\n} from './collectFields.mjs';\nimport { getArgumentValues, getVariableValues } from './values.mjs';\n/**\n * A memoized collection of relevant subfields with regard to the return\n * type. Memoizing ensures the subfields are not repeatedly calculated, which\n * saves overhead when resolving lists of values.\n */\n\nconst collectSubfields = memoize3((exeContext, returnType, fieldNodes) =>\n _collectSubfields(\n exeContext.schema,\n exeContext.fragments,\n exeContext.variableValues,\n returnType,\n fieldNodes,\n ),\n);\n/**\n * Terminology\n *\n * \"Definitions\" are the generic name for top-level statements in the document.\n * Examples of this include:\n * 1) Operations (such as a query)\n * 2) Fragments\n *\n * \"Operations\" are a generic name for requests in the document.\n * Examples of this include:\n * 1) query,\n * 2) mutation\n *\n * \"Selections\" are the definitions that can appear legally and at\n * single level of the query. These include:\n * 1) field references e.g `a`\n * 2) fragment \"spreads\" e.g. `...c`\n * 3) inline fragment \"spreads\" e.g. `...on Type { a }`\n */\n\n/**\n * Data that must be available at all points during query execution.\n *\n * Namely, schema of the type system that is currently executing,\n * and the fragments defined in the query document\n */\n\n/**\n * Implements the \"Executing requests\" section of the GraphQL specification.\n *\n * Returns either a synchronous ExecutionResult (if all encountered resolvers\n * are synchronous), or a Promise of an ExecutionResult that will eventually be\n * resolved and never rejected.\n *\n * If the arguments to this function do not result in a legal execution context,\n * a GraphQLError will be thrown immediately explaining the invalid input.\n */\nexport function execute(args) {\n // Temporary for v15 to v16 migration. Remove in v17\n arguments.length < 2 ||\n devAssert(\n false,\n 'graphql@16 dropped long-deprecated support for positional arguments, please pass an object instead.',\n );\n const { schema, document, variableValues, rootValue } = args; // If arguments are missing or incorrect, throw an error.\n\n assertValidExecutionArguments(schema, document, variableValues); // If a valid execution context cannot be created due to incorrect arguments,\n // a \"Response\" with only errors is returned.\n\n const exeContext = buildExecutionContext(args); // Return early errors if execution context failed.\n\n if (!('schema' in exeContext)) {\n return {\n errors: exeContext,\n };\n } // Return a Promise that will eventually resolve to the data described by\n // The \"Response\" section of the GraphQL specification.\n //\n // If errors are encountered while executing a GraphQL field, only that\n // field and its descendants will be omitted, and sibling fields will still\n // be executed. An execution which encounters errors will still result in a\n // resolved Promise.\n //\n // Errors from sub-fields of a NonNull type may propagate to the top level,\n // at which point we still log the error and null the parent field, which\n // in this case is the entire response.\n\n try {\n const { operation } = exeContext;\n const result = executeOperation(exeContext, operation, rootValue);\n\n if (isPromise(result)) {\n return result.then(\n (data) => buildResponse(data, exeContext.errors),\n (error) => {\n exeContext.errors.push(error);\n return buildResponse(null, exeContext.errors);\n },\n );\n }\n\n return buildResponse(result, exeContext.errors);\n } catch (error) {\n exeContext.errors.push(error);\n return buildResponse(null, exeContext.errors);\n }\n}\n/**\n * Also implements the \"Executing requests\" section of the GraphQL specification.\n * However, it guarantees to complete synchronously (or throw an error) assuming\n * that all field resolvers are also synchronous.\n */\n\nexport function executeSync(args) {\n const result = execute(args); // Assert that the execution was synchronous.\n\n if (isPromise(result)) {\n throw new Error('GraphQL execution failed to complete synchronously.');\n }\n\n return result;\n}\n/**\n * Given a completed execution context and data, build the `{ errors, data }`\n * response defined by the \"Response\" section of the GraphQL specification.\n */\n\nfunction buildResponse(data, errors) {\n return errors.length === 0\n ? {\n data,\n }\n : {\n errors,\n data,\n };\n}\n/**\n * Essential assertions before executing to provide developer feedback for\n * improper use of the GraphQL library.\n *\n * @internal\n */\n\nexport function assertValidExecutionArguments(\n schema,\n document,\n rawVariableValues,\n) {\n document || devAssert(false, 'Must provide document.'); // If the schema used for execution is invalid, throw an error.\n\n assertValidSchema(schema); // Variables, if provided, must be an object.\n\n rawVariableValues == null ||\n isObjectLike(rawVariableValues) ||\n devAssert(\n false,\n 'Variables must be provided as an Object where each property is a variable value. Perhaps look to see if an unparsed JSON string was provided.',\n );\n}\n/**\n * Constructs a ExecutionContext object from the arguments passed to\n * execute, which we will pass throughout the other execution methods.\n *\n * Throws a GraphQLError if a valid execution context cannot be created.\n *\n * @internal\n */\n\nexport function buildExecutionContext(args) {\n var _definition$name, _operation$variableDe;\n\n const {\n schema,\n document,\n rootValue,\n contextValue,\n variableValues: rawVariableValues,\n operationName,\n fieldResolver,\n typeResolver,\n subscribeFieldResolver,\n } = args;\n let operation;\n const fragments = Object.create(null);\n\n for (const definition of document.definitions) {\n switch (definition.kind) {\n case Kind.OPERATION_DEFINITION:\n if (operationName == null) {\n if (operation !== undefined) {\n return [\n new GraphQLError(\n 'Must provide operation name if query contains multiple operations.',\n ),\n ];\n }\n\n operation = definition;\n } else if (\n ((_definition$name = definition.name) === null ||\n _definition$name === void 0\n ? void 0\n : _definition$name.value) === operationName\n ) {\n operation = definition;\n }\n\n break;\n\n case Kind.FRAGMENT_DEFINITION:\n fragments[definition.name.value] = definition;\n break;\n\n default: // ignore non-executable definitions\n }\n }\n\n if (!operation) {\n if (operationName != null) {\n return [new GraphQLError(`Unknown operation named \"${operationName}\".`)];\n }\n\n return [new GraphQLError('Must provide an operation.')];\n } // FIXME: https://github.com/graphql/graphql-js/issues/2203\n\n /* c8 ignore next */\n\n const variableDefinitions =\n (_operation$variableDe = operation.variableDefinitions) !== null &&\n _operation$variableDe !== void 0\n ? _operation$variableDe\n : [];\n const coercedVariableValues = getVariableValues(\n schema,\n variableDefinitions,\n rawVariableValues !== null && rawVariableValues !== void 0\n ? rawVariableValues\n : {},\n {\n maxErrors: 50,\n },\n );\n\n if (coercedVariableValues.errors) {\n return coercedVariableValues.errors;\n }\n\n return {\n schema,\n fragments,\n rootValue,\n contextValue,\n operation,\n variableValues: coercedVariableValues.coerced,\n fieldResolver:\n fieldResolver !== null && fieldResolver !== void 0\n ? fieldResolver\n : defaultFieldResolver,\n typeResolver:\n typeResolver !== null && typeResolver !== void 0\n ? typeResolver\n : defaultTypeResolver,\n subscribeFieldResolver:\n subscribeFieldResolver !== null && subscribeFieldResolver !== void 0\n ? subscribeFieldResolver\n : defaultFieldResolver,\n errors: [],\n };\n}\n/**\n * Implements the \"Executing operations\" section of the spec.\n */\n\nfunction executeOperation(exeContext, operation, rootValue) {\n const rootType = exeContext.schema.getRootType(operation.operation);\n\n if (rootType == null) {\n throw new GraphQLError(\n `Schema is not configured to execute ${operation.operation} operation.`,\n operation,\n );\n }\n\n const rootFields = collectFields(\n exeContext.schema,\n exeContext.fragments,\n exeContext.variableValues,\n rootType,\n operation.selectionSet,\n );\n const path = undefined;\n\n switch (operation.operation) {\n case OperationTypeNode.QUERY:\n return executeFields(exeContext, rootType, rootValue, path, rootFields);\n\n case OperationTypeNode.MUTATION:\n return executeFieldsSerially(\n exeContext,\n rootType,\n rootValue,\n path,\n rootFields,\n );\n\n case OperationTypeNode.SUBSCRIPTION:\n // TODO: deprecate `subscribe` and move all logic here\n // Temporary solution until we finish merging execute and subscribe together\n return executeFields(exeContext, rootType, rootValue, path, rootFields);\n }\n}\n/**\n * Implements the \"Executing selection sets\" section of the spec\n * for fields that must be executed serially.\n */\n\nfunction executeFieldsSerially(\n exeContext,\n parentType,\n sourceValue,\n path,\n fields,\n) {\n return promiseReduce(\n fields.entries(),\n (results, [responseName, fieldNodes]) => {\n const fieldPath = addPath(path, responseName, parentType.name);\n const result = executeField(\n exeContext,\n parentType,\n sourceValue,\n fieldNodes,\n fieldPath,\n );\n\n if (result === undefined) {\n return results;\n }\n\n if (isPromise(result)) {\n return result.then((resolvedResult) => {\n results[responseName] = resolvedResult;\n return results;\n });\n }\n\n results[responseName] = result;\n return results;\n },\n Object.create(null),\n );\n}\n/**\n * Implements the \"Executing selection sets\" section of the spec\n * for fields that may be executed in parallel.\n */\n\nfunction executeFields(exeContext, parentType, sourceValue, path, fields) {\n const results = Object.create(null);\n let containsPromise = false;\n\n for (const [responseName, fieldNodes] of fields.entries()) {\n const fieldPath = addPath(path, responseName, parentType.name);\n const result = executeField(\n exeContext,\n parentType,\n sourceValue,\n fieldNodes,\n fieldPath,\n );\n\n if (result !== undefined) {\n results[responseName] = result;\n\n if (isPromise(result)) {\n containsPromise = true;\n }\n }\n } // If there are no promises, we can just return the object\n\n if (!containsPromise) {\n return results;\n } // Otherwise, results is a map from field name to the result of resolving that\n // field, which is possibly a promise. Return a promise that will return this\n // same map, but with any promises replaced with the values they resolved to.\n\n return promiseForObject(results);\n}\n/**\n * Implements the \"Executing fields\" section of the spec\n * In particular, this function figures out the value that the field returns by\n * calling its resolve function, then calls completeValue to complete promises,\n * serialize scalars, or execute the sub-selection-set for objects.\n */\n\nfunction executeField(exeContext, parentType, source, fieldNodes, path) {\n var _fieldDef$resolve;\n\n const fieldDef = getFieldDef(exeContext.schema, parentType, fieldNodes[0]);\n\n if (!fieldDef) {\n return;\n }\n\n const returnType = fieldDef.type;\n const resolveFn =\n (_fieldDef$resolve = fieldDef.resolve) !== null &&\n _fieldDef$resolve !== void 0\n ? _fieldDef$resolve\n : exeContext.fieldResolver;\n const info = buildResolveInfo(\n exeContext,\n fieldDef,\n fieldNodes,\n parentType,\n path,\n ); // Get the resolve function, regardless of if its result is normal or abrupt (error).\n\n try {\n // Build a JS object of arguments from the field.arguments AST, using the\n // variables scope to fulfill any variable references.\n // TODO: find a way to memoize, in case this field is within a List type.\n const args = getArgumentValues(\n fieldDef,\n fieldNodes[0],\n exeContext.variableValues,\n ); // The resolve function's optional third argument is a context value that\n // is provided to every resolve function within an execution. It is commonly\n // used to represent an authenticated user, or request-specific caches.\n\n const contextValue = exeContext.contextValue;\n const result = resolveFn(source, args, contextValue, info);\n let completed;\n\n if (isPromise(result)) {\n completed = result.then((resolved) =>\n completeValue(exeContext, returnType, fieldNodes, info, path, resolved),\n );\n } else {\n completed = completeValue(\n exeContext,\n returnType,\n fieldNodes,\n info,\n path,\n result,\n );\n }\n\n if (isPromise(completed)) {\n // Note: we don't rely on a `catch` method, but we do expect \"thenable\"\n // to take a second callback for the error case.\n return completed.then(undefined, (rawError) => {\n const error = locatedError(rawError, fieldNodes, pathToArray(path));\n return handleFieldError(error, returnType, exeContext);\n });\n }\n\n return completed;\n } catch (rawError) {\n const error = locatedError(rawError, fieldNodes, pathToArray(path));\n return handleFieldError(error, returnType, exeContext);\n }\n}\n/**\n * @internal\n */\n\nexport function buildResolveInfo(\n exeContext,\n fieldDef,\n fieldNodes,\n parentType,\n path,\n) {\n // The resolve function's optional fourth argument is a collection of\n // information about the current execution state.\n return {\n fieldName: fieldDef.name,\n fieldNodes,\n returnType: fieldDef.type,\n parentType,\n path,\n schema: exeContext.schema,\n fragments: exeContext.fragments,\n rootValue: exeContext.rootValue,\n operation: exeContext.operation,\n variableValues: exeContext.variableValues,\n };\n}\n\nfunction handleFieldError(error, returnType, exeContext) {\n // If the field type is non-nullable, then it is resolved without any\n // protection from errors, however it still properly locates the error.\n if (isNonNullType(returnType)) {\n throw error;\n } // Otherwise, error protection is applied, logging the error and resolving\n // a null value for this field if one is encountered.\n\n exeContext.errors.push(error);\n return null;\n}\n/**\n * Implements the instructions for completeValue as defined in the\n * \"Value Completion\" section of the spec.\n *\n * If the field type is Non-Null, then this recursively completes the value\n * for the inner type. It throws a field error if that completion returns null,\n * as per the \"Nullability\" section of the spec.\n *\n * If the field type is a List, then this recursively completes the value\n * for the inner type on each item in the list.\n *\n * If the field type is a Scalar or Enum, ensures the completed value is a legal\n * value of the type by calling the `serialize` method of GraphQL type\n * definition.\n *\n * If the field is an abstract type, determine the runtime type of the value\n * and then complete based on that type\n *\n * Otherwise, the field type expects a sub-selection set, and will complete the\n * value by executing all sub-selections.\n */\n\nfunction completeValue(exeContext, returnType, fieldNodes, info, path, result) {\n // If result is an Error, throw a located error.\n if (result instanceof Error) {\n throw result;\n } // If field type is NonNull, complete for inner type, and throw field error\n // if result is null.\n\n if (isNonNullType(returnType)) {\n const completed = completeValue(\n exeContext,\n returnType.ofType,\n fieldNodes,\n info,\n path,\n result,\n );\n\n if (completed === null) {\n throw new Error(\n `Cannot return null for non-nullable field ${info.parentType.name}.${info.fieldName}.`,\n );\n }\n\n return completed;\n } // If result value is null or undefined then return null.\n\n if (result == null) {\n return null;\n } // If field type is List, complete each item in the list with the inner type\n\n if (isListType(returnType)) {\n return completeListValue(\n exeContext,\n returnType,\n fieldNodes,\n info,\n path,\n result,\n );\n } // If field type is a leaf type, Scalar or Enum, serialize to a valid value,\n // returning null if serialization is not possible.\n\n if (isLeafType(returnType)) {\n return completeLeafValue(returnType, result);\n } // If field type is an abstract type, Interface or Union, determine the\n // runtime Object type and complete for that type.\n\n if (isAbstractType(returnType)) {\n return completeAbstractValue(\n exeContext,\n returnType,\n fieldNodes,\n info,\n path,\n result,\n );\n } // If field type is Object, execute and complete all sub-selections.\n\n if (isObjectType(returnType)) {\n return completeObjectValue(\n exeContext,\n returnType,\n fieldNodes,\n info,\n path,\n result,\n );\n }\n /* c8 ignore next 6 */\n // Not reachable, all possible output types have been considered.\n\n false ||\n invariant(\n false,\n 'Cannot complete value of unexpected output type: ' + inspect(returnType),\n );\n}\n/**\n * Complete a list value by completing each item in the list with the\n * inner type\n */\n\nfunction completeListValue(\n exeContext,\n returnType,\n fieldNodes,\n info,\n path,\n result,\n) {\n if (!isIterableObject(result)) {\n throw new GraphQLError(\n `Expected Iterable, but did not find one for field \"${info.parentType.name}.${info.fieldName}\".`,\n );\n } // This is specified as a simple map, however we're optimizing the path\n // where the list contains no Promises by avoiding creating another Promise.\n\n const itemType = returnType.ofType;\n let containsPromise = false;\n const completedResults = Array.from(result, (item, index) => {\n // No need to modify the info object containing the path,\n // since from here on it is not ever accessed by resolver functions.\n const itemPath = addPath(path, index, undefined);\n\n try {\n let completedItem;\n\n if (isPromise(item)) {\n completedItem = item.then((resolved) =>\n completeValue(\n exeContext,\n itemType,\n fieldNodes,\n info,\n itemPath,\n resolved,\n ),\n );\n } else {\n completedItem = completeValue(\n exeContext,\n itemType,\n fieldNodes,\n info,\n itemPath,\n item,\n );\n }\n\n if (isPromise(completedItem)) {\n containsPromise = true; // Note: we don't rely on a `catch` method, but we do expect \"thenable\"\n // to take a second callback for the error case.\n\n return completedItem.then(undefined, (rawError) => {\n const error = locatedError(\n rawError,\n fieldNodes,\n pathToArray(itemPath),\n );\n return handleFieldError(error, itemType, exeContext);\n });\n }\n\n return completedItem;\n } catch (rawError) {\n const error = locatedError(rawError, fieldNodes, pathToArray(itemPath));\n return handleFieldError(error, itemType, exeContext);\n }\n });\n return containsPromise ? Promise.all(completedResults) : completedResults;\n}\n/**\n * Complete a Scalar or Enum by serializing to a valid value, returning\n * null if serialization is not possible.\n */\n\nfunction completeLeafValue(returnType, result) {\n const serializedResult = returnType.serialize(result);\n\n if (serializedResult == null) {\n throw new Error(\n `Expected \\`${inspect(returnType)}.serialize(${inspect(result)})\\` to ` +\n `return non-nullable value, returned: ${inspect(serializedResult)}`,\n );\n }\n\n return serializedResult;\n}\n/**\n * Complete a value of an abstract type by determining the runtime object type\n * of that value, then complete the value for that type.\n */\n\nfunction completeAbstractValue(\n exeContext,\n returnType,\n fieldNodes,\n info,\n path,\n result,\n) {\n var _returnType$resolveTy;\n\n const resolveTypeFn =\n (_returnType$resolveTy = returnType.resolveType) !== null &&\n _returnType$resolveTy !== void 0\n ? _returnType$resolveTy\n : exeContext.typeResolver;\n const contextValue = exeContext.contextValue;\n const runtimeType = resolveTypeFn(result, contextValue, info, returnType);\n\n if (isPromise(runtimeType)) {\n return runtimeType.then((resolvedRuntimeType) =>\n completeObjectValue(\n exeContext,\n ensureValidRuntimeType(\n resolvedRuntimeType,\n exeContext,\n returnType,\n fieldNodes,\n info,\n result,\n ),\n fieldNodes,\n info,\n path,\n result,\n ),\n );\n }\n\n return completeObjectValue(\n exeContext,\n ensureValidRuntimeType(\n runtimeType,\n exeContext,\n returnType,\n fieldNodes,\n info,\n result,\n ),\n fieldNodes,\n info,\n path,\n result,\n );\n}\n\nfunction ensureValidRuntimeType(\n runtimeTypeName,\n exeContext,\n returnType,\n fieldNodes,\n info,\n result,\n) {\n if (runtimeTypeName == null) {\n throw new GraphQLError(\n `Abstract type \"${returnType.name}\" must resolve to an Object type at runtime for field \"${info.parentType.name}.${info.fieldName}\". Either the \"${returnType.name}\" type should provide a \"resolveType\" function or each possible type should provide an \"isTypeOf\" function.`,\n fieldNodes,\n );\n } // releases before 16.0.0 supported returning `GraphQLObjectType` from `resolveType`\n // TODO: remove in 17.0.0 release\n\n if (isObjectType(runtimeTypeName)) {\n throw new GraphQLError(\n 'Support for returning GraphQLObjectType from resolveType was removed in graphql-js@16.0.0 please return type name instead.',\n );\n }\n\n if (typeof runtimeTypeName !== 'string') {\n throw new GraphQLError(\n `Abstract type \"${returnType.name}\" must resolve to an Object type at runtime for field \"${info.parentType.name}.${info.fieldName}\" with ` +\n `value ${inspect(result)}, received \"${inspect(runtimeTypeName)}\".`,\n );\n }\n\n const runtimeType = exeContext.schema.getType(runtimeTypeName);\n\n if (runtimeType == null) {\n throw new GraphQLError(\n `Abstract type \"${returnType.name}\" was resolved to a type \"${runtimeTypeName}\" that does not exist inside the schema.`,\n fieldNodes,\n );\n }\n\n if (!isObjectType(runtimeType)) {\n throw new GraphQLError(\n `Abstract type \"${returnType.name}\" was resolved to a non-object type \"${runtimeTypeName}\".`,\n fieldNodes,\n );\n }\n\n if (!exeContext.schema.isSubType(returnType, runtimeType)) {\n throw new GraphQLError(\n `Runtime Object type \"${runtimeType.name}\" is not a possible type for \"${returnType.name}\".`,\n fieldNodes,\n );\n }\n\n return runtimeType;\n}\n/**\n * Complete an Object value by executing all sub-selections.\n */\n\nfunction completeObjectValue(\n exeContext,\n returnType,\n fieldNodes,\n info,\n path,\n result,\n) {\n // Collect sub-fields to execute to complete this value.\n const subFieldNodes = collectSubfields(exeContext, returnType, fieldNodes); // If there is an isTypeOf predicate function, call it with the\n // current result. If isTypeOf returns false, then raise an error rather\n // than continuing execution.\n\n if (returnType.isTypeOf) {\n const isTypeOf = returnType.isTypeOf(result, exeContext.contextValue, info);\n\n if (isPromise(isTypeOf)) {\n return isTypeOf.then((resolvedIsTypeOf) => {\n if (!resolvedIsTypeOf) {\n throw invalidReturnTypeError(returnType, result, fieldNodes);\n }\n\n return executeFields(\n exeContext,\n returnType,\n result,\n path,\n subFieldNodes,\n );\n });\n }\n\n if (!isTypeOf) {\n throw invalidReturnTypeError(returnType, result, fieldNodes);\n }\n }\n\n return executeFields(exeContext, returnType, result, path, subFieldNodes);\n}\n\nfunction invalidReturnTypeError(returnType, result, fieldNodes) {\n return new GraphQLError(\n `Expected value of type \"${returnType.name}\" but got: ${inspect(result)}.`,\n fieldNodes,\n );\n}\n/**\n * If a resolveType function is not given, then a default resolve behavior is\n * used which attempts two strategies:\n *\n * First, See if the provided value has a `__typename` field defined, if so, use\n * that value as name of the resolved type.\n *\n * Otherwise, test each possible type for the abstract type by calling\n * isTypeOf for the object being coerced, returning the first type that matches.\n */\n\nexport const defaultTypeResolver = function (\n value,\n contextValue,\n info,\n abstractType,\n) {\n // First, look for `__typename`.\n if (isObjectLike(value) && typeof value.__typename === 'string') {\n return value.__typename;\n } // Otherwise, test each possible type.\n\n const possibleTypes = info.schema.getPossibleTypes(abstractType);\n const promisedIsTypeOfResults = [];\n\n for (let i = 0; i < possibleTypes.length; i++) {\n const type = possibleTypes[i];\n\n if (type.isTypeOf) {\n const isTypeOfResult = type.isTypeOf(value, contextValue, info);\n\n if (isPromise(isTypeOfResult)) {\n promisedIsTypeOfResults[i] = isTypeOfResult;\n } else if (isTypeOfResult) {\n return type.name;\n }\n }\n }\n\n if (promisedIsTypeOfResults.length) {\n return Promise.all(promisedIsTypeOfResults).then((isTypeOfResults) => {\n for (let i = 0; i < isTypeOfResults.length; i++) {\n if (isTypeOfResults[i]) {\n return possibleTypes[i].name;\n }\n }\n });\n }\n};\n/**\n * If a resolve function is not given, then a default resolve behavior is used\n * which takes the property of the source object of the same name as the field\n * and returns it as the result, or if it's a function, returns the result\n * of calling that function while passing along args and context value.\n */\n\nexport const defaultFieldResolver = function (\n source,\n args,\n contextValue,\n info,\n) {\n // ensure source is a value for which property access is acceptable.\n if (isObjectLike(source) || typeof source === 'function') {\n const property = source[info.fieldName];\n\n if (typeof property === 'function') {\n return source[info.fieldName](args, contextValue, info);\n }\n\n return property;\n }\n};\n/**\n * This method looks up the field on the given type definition.\n * It has special casing for the three introspection fields,\n * __schema, __type and __typename. __typename is special because\n * it can always be queried as a field, even in situations where no\n * other fields are allowed, like on a Union. __schema and __type\n * could get automatically added to the query type, but that would\n * require mutating type definitions, which would cause issues.\n *\n * @internal\n */\n\nexport function getFieldDef(schema, parentType, fieldNode) {\n const fieldName = fieldNode.name.value;\n\n if (\n fieldName === SchemaMetaFieldDef.name &&\n schema.getQueryType() === parentType\n ) {\n return SchemaMetaFieldDef;\n } else if (\n fieldName === TypeMetaFieldDef.name &&\n schema.getQueryType() === parentType\n ) {\n return TypeMetaFieldDef;\n } else if (fieldName === TypeNameMetaFieldDef.name) {\n return TypeNameMetaFieldDef;\n }\n\n return parentType.getFields()[fieldName];\n}\n","import { devAssert } from './jsutils/devAssert.mjs';\nimport { isPromise } from './jsutils/isPromise.mjs';\nimport { parse } from './language/parser.mjs';\nimport { validateSchema } from './type/validate.mjs';\nimport { validate } from './validation/validate.mjs';\nimport { execute } from './execution/execute.mjs';\n/**\n * This is the primary entry point function for fulfilling GraphQL operations\n * by parsing, validating, and executing a GraphQL document along side a\n * GraphQL schema.\n *\n * More sophisticated GraphQL servers, such as those which persist queries,\n * may wish to separate the validation and execution phases to a static time\n * tooling step, and a server runtime step.\n *\n * Accepts either an object with named arguments, or individual arguments:\n *\n * schema:\n * The GraphQL type system to use when validating and executing a query.\n * source:\n * A GraphQL language formatted string representing the requested operation.\n * rootValue:\n * The value provided as the first argument to resolver functions on the top\n * level type (e.g. the query object type).\n * contextValue:\n * The context value is provided as an argument to resolver functions after\n * field arguments. It is used to pass shared information useful at any point\n * during executing this query, for example the currently logged in user and\n * connections to databases or other services.\n * variableValues:\n * A mapping of variable name to runtime value to use for all variables\n * defined in the requestString.\n * operationName:\n * The name of the operation to use if requestString contains multiple\n * possible operations. Can be omitted if requestString contains only\n * one operation.\n * fieldResolver:\n * A resolver function to use when one is not provided by the schema.\n * If not provided, the default field resolver is used (which looks for a\n * value or method on the source value with the field's name).\n * typeResolver:\n * A type resolver function to use when none is provided by the schema.\n * If not provided, the default type resolver is used (which looks for a\n * `__typename` field or alternatively calls the `isTypeOf` method).\n */\n\nexport function graphql(args) {\n // Always return a Promise for a consistent API.\n return new Promise((resolve) => resolve(graphqlImpl(args)));\n}\n/**\n * The graphqlSync function also fulfills GraphQL operations by parsing,\n * validating, and executing a GraphQL document along side a GraphQL schema.\n * However, it guarantees to complete synchronously (or throw an error) assuming\n * that all field resolvers are also synchronous.\n */\n\nexport function graphqlSync(args) {\n const result = graphqlImpl(args); // Assert that the execution was synchronous.\n\n if (isPromise(result)) {\n throw new Error('GraphQL execution failed to complete synchronously.');\n }\n\n return result;\n}\n\nfunction graphqlImpl(args) {\n // Temporary for v15 to v16 migration. Remove in v17\n arguments.length < 2 ||\n devAssert(\n false,\n 'graphql@16 dropped long-deprecated support for positional arguments, please pass an object instead.',\n );\n const {\n schema,\n source,\n rootValue,\n contextValue,\n variableValues,\n operationName,\n fieldResolver,\n typeResolver,\n } = args; // Validate Schema\n\n const schemaValidationErrors = validateSchema(schema);\n\n if (schemaValidationErrors.length > 0) {\n return {\n errors: schemaValidationErrors,\n };\n } // Parse\n\n let document;\n\n try {\n document = parse(source);\n } catch (syntaxError) {\n return {\n errors: [syntaxError],\n };\n } // Validate\n\n const validationErrors = validate(schema, document);\n\n if (validationErrors.length > 0) {\n return {\n errors: validationErrors,\n };\n } // Execute\n\n return execute({\n schema,\n document,\n rootValue,\n contextValue,\n variableValues,\n operationName,\n fieldResolver,\n typeResolver,\n });\n}\n","/**\n * Returns true if the provided object implements the AsyncIterator protocol via\n * implementing a `Symbol.asyncIterator` method.\n */\nexport function isAsyncIterable(maybeAsyncIterable) {\n return (\n typeof (maybeAsyncIterable === null || maybeAsyncIterable === void 0\n ? void 0\n : maybeAsyncIterable[Symbol.asyncIterator]) === 'function'\n );\n}\n","/**\n * Given an AsyncIterable and a callback function, return an AsyncIterator\n * which produces values mapped via calling the callback function.\n */\nexport function mapAsyncIterator(iterable, callback) {\n const iterator = iterable[Symbol.asyncIterator]();\n\n async function mapResult(result) {\n if (result.done) {\n return result;\n }\n\n try {\n return {\n value: await callback(result.value),\n done: false,\n };\n } catch (error) {\n /* c8 ignore start */\n // FIXME: add test case\n if (typeof iterator.return === 'function') {\n try {\n await iterator.return();\n } catch (_e) {\n /* ignore error */\n }\n }\n\n throw error;\n /* c8 ignore stop */\n }\n }\n\n return {\n async next() {\n return mapResult(await iterator.next());\n },\n\n async return() {\n // If iterator.return() does not exist, then type R must be undefined.\n return typeof iterator.return === 'function'\n ? mapResult(await iterator.return())\n : {\n value: undefined,\n done: true,\n };\n },\n\n async throw(error) {\n if (typeof iterator.throw === 'function') {\n return mapResult(await iterator.throw(error));\n }\n\n throw error;\n },\n\n [Symbol.asyncIterator]() {\n return this;\n },\n };\n}\n","import { devAssert } from '../jsutils/devAssert.mjs';\nimport { inspect } from '../jsutils/inspect.mjs';\nimport { isAsyncIterable } from '../jsutils/isAsyncIterable.mjs';\nimport { addPath, pathToArray } from '../jsutils/Path.mjs';\nimport { GraphQLError } from '../error/GraphQLError.mjs';\nimport { locatedError } from '../error/locatedError.mjs';\nimport { collectFields } from './collectFields.mjs';\nimport {\n assertValidExecutionArguments,\n buildExecutionContext,\n buildResolveInfo,\n execute,\n getFieldDef,\n} from './execute.mjs';\nimport { mapAsyncIterator } from './mapAsyncIterator.mjs';\nimport { getArgumentValues } from './values.mjs';\n/**\n * Implements the \"Subscribe\" algorithm described in the GraphQL specification.\n *\n * Returns a Promise which resolves to either an AsyncIterator (if successful)\n * or an ExecutionResult (error). The promise will be rejected if the schema or\n * other arguments to this function are invalid, or if the resolved event stream\n * is not an async iterable.\n *\n * If the client-provided arguments to this function do not result in a\n * compliant subscription, a GraphQL Response (ExecutionResult) with\n * descriptive errors and no data will be returned.\n *\n * If the source stream could not be created due to faulty subscription\n * resolver logic or underlying systems, the promise will resolve to a single\n * ExecutionResult containing `errors` and no `data`.\n *\n * If the operation succeeded, the promise resolves to an AsyncIterator, which\n * yields a stream of ExecutionResults representing the response stream.\n *\n * Accepts either an object with named arguments, or individual arguments.\n */\n\nexport async function subscribe(args) {\n // Temporary for v15 to v16 migration. Remove in v17\n arguments.length < 2 ||\n devAssert(\n false,\n 'graphql@16 dropped long-deprecated support for positional arguments, please pass an object instead.',\n );\n const {\n schema,\n document,\n rootValue,\n contextValue,\n variableValues,\n operationName,\n fieldResolver,\n subscribeFieldResolver,\n } = args;\n const resultOrStream = await createSourceEventStream(\n schema,\n document,\n rootValue,\n contextValue,\n variableValues,\n operationName,\n subscribeFieldResolver,\n );\n\n if (!isAsyncIterable(resultOrStream)) {\n return resultOrStream;\n } // For each payload yielded from a subscription, map it over the normal\n // GraphQL `execute` function, with `payload` as the rootValue.\n // This implements the \"MapSourceToResponseEvent\" algorithm described in\n // the GraphQL specification. The `execute` function provides the\n // \"ExecuteSubscriptionEvent\" algorithm, as it is nearly identical to the\n // \"ExecuteQuery\" algorithm, for which `execute` is also used.\n\n const mapSourceToResponse = (payload) =>\n execute({\n schema,\n document,\n rootValue: payload,\n contextValue,\n variableValues,\n operationName,\n fieldResolver,\n }); // Map every source value to a ExecutionResult value as described above.\n\n return mapAsyncIterator(resultOrStream, mapSourceToResponse);\n}\n/**\n * Implements the \"CreateSourceEventStream\" algorithm described in the\n * GraphQL specification, resolving the subscription source event stream.\n *\n * Returns a Promise which resolves to either an AsyncIterable (if successful)\n * or an ExecutionResult (error). The promise will be rejected if the schema or\n * other arguments to this function are invalid, or if the resolved event stream\n * is not an async iterable.\n *\n * If the client-provided arguments to this function do not result in a\n * compliant subscription, a GraphQL Response (ExecutionResult) with\n * descriptive errors and no data will be returned.\n *\n * If the the source stream could not be created due to faulty subscription\n * resolver logic or underlying systems, the promise will resolve to a single\n * ExecutionResult containing `errors` and no `data`.\n *\n * If the operation succeeded, the promise resolves to the AsyncIterable for the\n * event stream returned by the resolver.\n *\n * A Source Event Stream represents a sequence of events, each of which triggers\n * a GraphQL execution for that event.\n *\n * This may be useful when hosting the stateful subscription service in a\n * different process or machine than the stateless GraphQL execution engine,\n * or otherwise separating these two steps. For more on this, see the\n * \"Supporting Subscriptions at Scale\" information in the GraphQL specification.\n */\n\nexport async function createSourceEventStream(\n schema,\n document,\n rootValue,\n contextValue,\n variableValues,\n operationName,\n subscribeFieldResolver,\n) {\n // If arguments are missing or incorrectly typed, this is an internal\n // developer mistake which should throw an early error.\n assertValidExecutionArguments(schema, document, variableValues); // If a valid execution context cannot be created due to incorrect arguments,\n // a \"Response\" with only errors is returned.\n\n const exeContext = buildExecutionContext({\n schema,\n document,\n rootValue,\n contextValue,\n variableValues,\n operationName,\n subscribeFieldResolver,\n }); // Return early errors if execution context failed.\n\n if (!('schema' in exeContext)) {\n return {\n errors: exeContext,\n };\n }\n\n try {\n const eventStream = await executeSubscription(exeContext); // Assert field returned an event stream, otherwise yield an error.\n\n if (!isAsyncIterable(eventStream)) {\n throw new Error(\n 'Subscription field must return Async Iterable. ' +\n `Received: ${inspect(eventStream)}.`,\n );\n }\n\n return eventStream;\n } catch (error) {\n // If it GraphQLError, report it as an ExecutionResult, containing only errors and no data.\n // Otherwise treat the error as a system-class error and re-throw it.\n if (error instanceof GraphQLError) {\n return {\n errors: [error],\n };\n }\n\n throw error;\n }\n}\n\nasync function executeSubscription(exeContext) {\n const { schema, fragments, operation, variableValues, rootValue } =\n exeContext;\n const rootType = schema.getSubscriptionType();\n\n if (rootType == null) {\n throw new GraphQLError(\n 'Schema is not configured to execute subscription operation.',\n operation,\n );\n }\n\n const rootFields = collectFields(\n schema,\n fragments,\n variableValues,\n rootType,\n operation.selectionSet,\n );\n const [responseName, fieldNodes] = [...rootFields.entries()][0];\n const fieldDef = getFieldDef(schema, rootType, fieldNodes[0]);\n\n if (!fieldDef) {\n const fieldName = fieldNodes[0].name.value;\n throw new GraphQLError(\n `The subscription field \"${fieldName}\" is not defined.`,\n fieldNodes,\n );\n }\n\n const path = addPath(undefined, responseName, rootType.name);\n const info = buildResolveInfo(\n exeContext,\n fieldDef,\n fieldNodes,\n rootType,\n path,\n );\n\n try {\n var _fieldDef$subscribe;\n\n // Implements the \"ResolveFieldEventStream\" algorithm from GraphQL specification.\n // It differs from \"ResolveFieldValue\" due to providing a different `resolveFn`.\n // Build a JS object of arguments from the field.arguments AST, using the\n // variables scope to fulfill any variable references.\n const args = getArgumentValues(fieldDef, fieldNodes[0], variableValues); // The resolve function's optional third argument is a context value that\n // is provided to every resolve function within an execution. It is commonly\n // used to represent an authenticated user, or request-specific caches.\n\n const contextValue = exeContext.contextValue; // Call the `subscribe()` resolver or the default resolver to produce an\n // AsyncIterable yielding raw payloads.\n\n const resolveFn =\n (_fieldDef$subscribe = fieldDef.subscribe) !== null &&\n _fieldDef$subscribe !== void 0\n ? _fieldDef$subscribe\n : exeContext.subscribeFieldResolver;\n const eventStream = await resolveFn(rootValue, args, contextValue, info);\n\n if (eventStream instanceof Error) {\n throw eventStream;\n }\n\n return eventStream;\n } catch (error) {\n throw locatedError(error, fieldNodes, pathToArray(path));\n }\n}\n","import { invariant } from '../../../jsutils/invariant.mjs';\nimport { GraphQLError } from '../../../error/GraphQLError.mjs';\nimport { getNamedType, isInputObjectType } from '../../../type/definition.mjs';\n\n/**\n * No deprecated\n *\n * A GraphQL document is only valid if all selected fields and all used enum values have not been\n * deprecated.\n *\n * Note: This rule is optional and is not part of the Validation section of the GraphQL\n * Specification. The main purpose of this rule is detection of deprecated usages and not\n * necessarily to forbid their use when querying a service.\n */\nexport function NoDeprecatedCustomRule(context) {\n return {\n Field(node) {\n const fieldDef = context.getFieldDef();\n const deprecationReason =\n fieldDef === null || fieldDef === void 0\n ? void 0\n : fieldDef.deprecationReason;\n\n if (fieldDef && deprecationReason != null) {\n const parentType = context.getParentType();\n parentType != null || invariant(false);\n context.reportError(\n new GraphQLError(\n `The field ${parentType.name}.${fieldDef.name} is deprecated. ${deprecationReason}`,\n node,\n ),\n );\n }\n },\n\n Argument(node) {\n const argDef = context.getArgument();\n const deprecationReason =\n argDef === null || argDef === void 0\n ? void 0\n : argDef.deprecationReason;\n\n if (argDef && deprecationReason != null) {\n const directiveDef = context.getDirective();\n\n if (directiveDef != null) {\n context.reportError(\n new GraphQLError(\n `Directive \"@${directiveDef.name}\" argument \"${argDef.name}\" is deprecated. ${deprecationReason}`,\n node,\n ),\n );\n } else {\n const parentType = context.getParentType();\n const fieldDef = context.getFieldDef();\n (parentType != null && fieldDef != null) || invariant(false);\n context.reportError(\n new GraphQLError(\n `Field \"${parentType.name}.${fieldDef.name}\" argument \"${argDef.name}\" is deprecated. ${deprecationReason}`,\n node,\n ),\n );\n }\n }\n },\n\n ObjectField(node) {\n const inputObjectDef = getNamedType(context.getParentInputType());\n\n if (isInputObjectType(inputObjectDef)) {\n const inputFieldDef = inputObjectDef.getFields()[node.name.value];\n const deprecationReason =\n inputFieldDef === null || inputFieldDef === void 0\n ? void 0\n : inputFieldDef.deprecationReason;\n\n if (deprecationReason != null) {\n context.reportError(\n new GraphQLError(\n `The input field ${inputObjectDef.name}.${inputFieldDef.name} is deprecated. ${deprecationReason}`,\n node,\n ),\n );\n }\n }\n },\n\n EnumValue(node) {\n const enumValueDef = context.getEnumValue();\n const deprecationReason =\n enumValueDef === null || enumValueDef === void 0\n ? void 0\n : enumValueDef.deprecationReason;\n\n if (enumValueDef && deprecationReason != null) {\n const enumTypeDef = getNamedType(context.getInputType());\n enumTypeDef != null || invariant(false);\n context.reportError(\n new GraphQLError(\n `The enum value \"${enumTypeDef.name}.${enumValueDef.name}\" is deprecated. ${deprecationReason}`,\n node,\n ),\n );\n }\n },\n };\n}\n","import { GraphQLError } from '../../../error/GraphQLError.mjs';\nimport { getNamedType } from '../../../type/definition.mjs';\nimport { isIntrospectionType } from '../../../type/introspection.mjs';\n\n/**\n * Prohibit introspection queries\n *\n * A GraphQL document is only valid if all fields selected are not fields that\n * return an introspection type.\n *\n * Note: This rule is optional and is not part of the Validation section of the\n * GraphQL Specification. This rule effectively disables introspection, which\n * does not reflect best practices and should only be done if absolutely necessary.\n */\nexport function NoSchemaIntrospectionCustomRule(context) {\n return {\n Field(node) {\n const type = getNamedType(context.getType());\n\n if (type && isIntrospectionType(type)) {\n context.reportError(\n new GraphQLError(\n `GraphQL introspection has been disabled, but the requested query contained the field \"${node.name.value}\".`,\n node,\n ),\n );\n }\n },\n };\n}\n","/**\n * Produce the GraphQL query recommended for a full schema introspection.\n * Accepts optional IntrospectionOptions.\n */\nexport function getIntrospectionQuery(options) {\n const optionsWithDefault = {\n descriptions: true,\n specifiedByUrl: false,\n directiveIsRepeatable: false,\n schemaDescription: false,\n inputValueDeprecation: false,\n ...options,\n };\n const descriptions = optionsWithDefault.descriptions ? 'description' : '';\n const specifiedByUrl = optionsWithDefault.specifiedByUrl\n ? 'specifiedByURL'\n : '';\n const directiveIsRepeatable = optionsWithDefault.directiveIsRepeatable\n ? 'isRepeatable'\n : '';\n const schemaDescription = optionsWithDefault.schemaDescription\n ? descriptions\n : '';\n\n function inputDeprecation(str) {\n return optionsWithDefault.inputValueDeprecation ? str : '';\n }\n\n return `\n query IntrospectionQuery {\n __schema {\n ${schemaDescription}\n queryType { name }\n mutationType { name }\n subscriptionType { name }\n types {\n ...FullType\n }\n directives {\n name\n ${descriptions}\n ${directiveIsRepeatable}\n locations\n args${inputDeprecation('(includeDeprecated: true)')} {\n ...InputValue\n }\n }\n }\n }\n\n fragment FullType on __Type {\n kind\n name\n ${descriptions}\n ${specifiedByUrl}\n fields(includeDeprecated: true) {\n name\n ${descriptions}\n args${inputDeprecation('(includeDeprecated: true)')} {\n ...InputValue\n }\n type {\n ...TypeRef\n }\n isDeprecated\n deprecationReason\n }\n inputFields${inputDeprecation('(includeDeprecated: true)')} {\n ...InputValue\n }\n interfaces {\n ...TypeRef\n }\n enumValues(includeDeprecated: true) {\n name\n ${descriptions}\n isDeprecated\n deprecationReason\n }\n possibleTypes {\n ...TypeRef\n }\n }\n\n fragment InputValue on __InputValue {\n name\n ${descriptions}\n type { ...TypeRef }\n defaultValue\n ${inputDeprecation('isDeprecated')}\n ${inputDeprecation('deprecationReason')}\n }\n\n fragment TypeRef on __Type {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n }\n }\n }\n }\n }\n }\n }\n }\n `;\n}\n","import { Kind } from '../language/kinds.mjs';\n/**\n * Returns an operation AST given a document AST and optionally an operation\n * name. If a name is not provided, an operation is only returned if only one is\n * provided in the document.\n */\n\nexport function getOperationAST(documentAST, operationName) {\n let operation = null;\n\n for (const definition of documentAST.definitions) {\n if (definition.kind === Kind.OPERATION_DEFINITION) {\n var _definition$name;\n\n if (operationName == null) {\n // If no operation name was provided, only return an Operation if there\n // is one defined in the document. Upon encountering the second, return\n // null.\n if (operation) {\n return null;\n }\n\n operation = definition;\n } else if (\n ((_definition$name = definition.name) === null ||\n _definition$name === void 0\n ? void 0\n : _definition$name.value) === operationName\n ) {\n return definition;\n }\n }\n }\n\n return operation;\n}\n","import { GraphQLError } from '../error/GraphQLError.mjs';\n\n/**\n * Extracts the root type of the operation from the schema.\n *\n * @deprecated Please use `GraphQLSchema.getRootType` instead. Will be removed in v17\n */\nexport function getOperationRootType(schema, operation) {\n if (operation.operation === 'query') {\n const queryType = schema.getQueryType();\n\n if (!queryType) {\n throw new GraphQLError(\n 'Schema does not define the required query root type.',\n operation,\n );\n }\n\n return queryType;\n }\n\n if (operation.operation === 'mutation') {\n const mutationType = schema.getMutationType();\n\n if (!mutationType) {\n throw new GraphQLError(\n 'Schema is not configured for mutations.',\n operation,\n );\n }\n\n return mutationType;\n }\n\n if (operation.operation === 'subscription') {\n const subscriptionType = schema.getSubscriptionType();\n\n if (!subscriptionType) {\n throw new GraphQLError(\n 'Schema is not configured for subscriptions.',\n operation,\n );\n }\n\n return subscriptionType;\n }\n\n throw new GraphQLError(\n 'Can only have query, mutation and subscription operations.',\n operation,\n );\n}\n","import { invariant } from '../jsutils/invariant.mjs';\nimport { parse } from '../language/parser.mjs';\nimport { executeSync } from '../execution/execute.mjs';\nimport { getIntrospectionQuery } from './getIntrospectionQuery.mjs';\n/**\n * Build an IntrospectionQuery from a GraphQLSchema\n *\n * IntrospectionQuery is useful for utilities that care about type and field\n * relationships, but do not need to traverse through those relationships.\n *\n * This is the inverse of buildClientSchema. The primary use case is outside\n * of the server context, for instance when doing schema comparisons.\n */\n\nexport function introspectionFromSchema(schema, options) {\n const optionsWithDefaults = {\n specifiedByUrl: true,\n directiveIsRepeatable: true,\n schemaDescription: true,\n inputValueDeprecation: true,\n ...options,\n };\n const document = parse(getIntrospectionQuery(optionsWithDefaults));\n const result = executeSync({\n schema,\n document,\n });\n (!result.errors && result.data) || invariant(false);\n return result.data;\n}\n","import { devAssert } from '../jsutils/devAssert.mjs';\nimport { inspect } from '../jsutils/inspect.mjs';\nimport { isObjectLike } from '../jsutils/isObjectLike.mjs';\nimport { keyValMap } from '../jsutils/keyValMap.mjs';\nimport { parseValue } from '../language/parser.mjs';\nimport {\n assertInterfaceType,\n assertNullableType,\n assertObjectType,\n GraphQLEnumType,\n GraphQLInputObjectType,\n GraphQLInterfaceType,\n GraphQLList,\n GraphQLNonNull,\n GraphQLObjectType,\n GraphQLScalarType,\n GraphQLUnionType,\n isInputType,\n isOutputType,\n} from '../type/definition.mjs';\nimport { GraphQLDirective } from '../type/directives.mjs';\nimport { introspectionTypes, TypeKind } from '../type/introspection.mjs';\nimport { specifiedScalarTypes } from '../type/scalars.mjs';\nimport { GraphQLSchema } from '../type/schema.mjs';\nimport { valueFromAST } from './valueFromAST.mjs';\n/**\n * Build a GraphQLSchema for use by client tools.\n *\n * Given the result of a client running the introspection query, creates and\n * returns a GraphQLSchema instance which can be then used with all graphql-js\n * tools, but cannot be used to execute a query, as introspection does not\n * represent the \"resolver\", \"parse\" or \"serialize\" functions or any other\n * server-internal mechanisms.\n *\n * This function expects a complete introspection result. Don't forget to check\n * the \"errors\" field of a server response before calling this function.\n */\n\nexport function buildClientSchema(introspection, options) {\n (isObjectLike(introspection) && isObjectLike(introspection.__schema)) ||\n devAssert(\n false,\n `Invalid or incomplete introspection result. Ensure that you are passing \"data\" property of introspection response and no \"errors\" was returned alongside: ${inspect(\n introspection,\n )}.`,\n ); // Get the schema from the introspection result.\n\n const schemaIntrospection = introspection.__schema; // Iterate through all types, getting the type definition for each.\n\n const typeMap = keyValMap(\n schemaIntrospection.types,\n (typeIntrospection) => typeIntrospection.name,\n (typeIntrospection) => buildType(typeIntrospection),\n ); // Include standard types only if they are used.\n\n for (const stdType of [...specifiedScalarTypes, ...introspectionTypes]) {\n if (typeMap[stdType.name]) {\n typeMap[stdType.name] = stdType;\n }\n } // Get the root Query, Mutation, and Subscription types.\n\n const queryType = schemaIntrospection.queryType\n ? getObjectType(schemaIntrospection.queryType)\n : null;\n const mutationType = schemaIntrospection.mutationType\n ? getObjectType(schemaIntrospection.mutationType)\n : null;\n const subscriptionType = schemaIntrospection.subscriptionType\n ? getObjectType(schemaIntrospection.subscriptionType)\n : null; // Get the directives supported by Introspection, assuming empty-set if\n // directives were not queried for.\n\n const directives = schemaIntrospection.directives\n ? schemaIntrospection.directives.map(buildDirective)\n : []; // Then produce and return a Schema with these types.\n\n return new GraphQLSchema({\n description: schemaIntrospection.description,\n query: queryType,\n mutation: mutationType,\n subscription: subscriptionType,\n types: Object.values(typeMap),\n directives,\n assumeValid:\n options === null || options === void 0 ? void 0 : options.assumeValid,\n }); // Given a type reference in introspection, return the GraphQLType instance.\n // preferring cached instances before building new instances.\n\n function getType(typeRef) {\n if (typeRef.kind === TypeKind.LIST) {\n const itemRef = typeRef.ofType;\n\n if (!itemRef) {\n throw new Error('Decorated type deeper than introspection query.');\n }\n\n return new GraphQLList(getType(itemRef));\n }\n\n if (typeRef.kind === TypeKind.NON_NULL) {\n const nullableRef = typeRef.ofType;\n\n if (!nullableRef) {\n throw new Error('Decorated type deeper than introspection query.');\n }\n\n const nullableType = getType(nullableRef);\n return new GraphQLNonNull(assertNullableType(nullableType));\n }\n\n return getNamedType(typeRef);\n }\n\n function getNamedType(typeRef) {\n const typeName = typeRef.name;\n\n if (!typeName) {\n throw new Error(`Unknown type reference: ${inspect(typeRef)}.`);\n }\n\n const type = typeMap[typeName];\n\n if (!type) {\n throw new Error(\n `Invalid or incomplete schema, unknown type: ${typeName}. Ensure that a full introspection query is used in order to build a client schema.`,\n );\n }\n\n return type;\n }\n\n function getObjectType(typeRef) {\n return assertObjectType(getNamedType(typeRef));\n }\n\n function getInterfaceType(typeRef) {\n return assertInterfaceType(getNamedType(typeRef));\n } // Given a type's introspection result, construct the correct\n // GraphQLType instance.\n\n function buildType(type) {\n // eslint-disable-next-line @typescript-eslint/prefer-optional-chain\n if (type != null && type.name != null && type.kind != null) {\n // FIXME: Properly type IntrospectionType, it's a breaking change so fix in v17\n // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check\n switch (type.kind) {\n case TypeKind.SCALAR:\n return buildScalarDef(type);\n\n case TypeKind.OBJECT:\n return buildObjectDef(type);\n\n case TypeKind.INTERFACE:\n return buildInterfaceDef(type);\n\n case TypeKind.UNION:\n return buildUnionDef(type);\n\n case TypeKind.ENUM:\n return buildEnumDef(type);\n\n case TypeKind.INPUT_OBJECT:\n return buildInputObjectDef(type);\n }\n }\n\n const typeStr = inspect(type);\n throw new Error(\n `Invalid or incomplete introspection result. Ensure that a full introspection query is used in order to build a client schema: ${typeStr}.`,\n );\n }\n\n function buildScalarDef(scalarIntrospection) {\n return new GraphQLScalarType({\n name: scalarIntrospection.name,\n description: scalarIntrospection.description,\n specifiedByURL: scalarIntrospection.specifiedByURL,\n });\n }\n\n function buildImplementationsList(implementingIntrospection) {\n // TODO: Temporary workaround until GraphQL ecosystem will fully support\n // 'interfaces' on interface types.\n if (\n implementingIntrospection.interfaces === null &&\n implementingIntrospection.kind === TypeKind.INTERFACE\n ) {\n return [];\n }\n\n if (!implementingIntrospection.interfaces) {\n const implementingIntrospectionStr = inspect(implementingIntrospection);\n throw new Error(\n `Introspection result missing interfaces: ${implementingIntrospectionStr}.`,\n );\n }\n\n return implementingIntrospection.interfaces.map(getInterfaceType);\n }\n\n function buildObjectDef(objectIntrospection) {\n return new GraphQLObjectType({\n name: objectIntrospection.name,\n description: objectIntrospection.description,\n interfaces: () => buildImplementationsList(objectIntrospection),\n fields: () => buildFieldDefMap(objectIntrospection),\n });\n }\n\n function buildInterfaceDef(interfaceIntrospection) {\n return new GraphQLInterfaceType({\n name: interfaceIntrospection.name,\n description: interfaceIntrospection.description,\n interfaces: () => buildImplementationsList(interfaceIntrospection),\n fields: () => buildFieldDefMap(interfaceIntrospection),\n });\n }\n\n function buildUnionDef(unionIntrospection) {\n if (!unionIntrospection.possibleTypes) {\n const unionIntrospectionStr = inspect(unionIntrospection);\n throw new Error(\n `Introspection result missing possibleTypes: ${unionIntrospectionStr}.`,\n );\n }\n\n return new GraphQLUnionType({\n name: unionIntrospection.name,\n description: unionIntrospection.description,\n types: () => unionIntrospection.possibleTypes.map(getObjectType),\n });\n }\n\n function buildEnumDef(enumIntrospection) {\n if (!enumIntrospection.enumValues) {\n const enumIntrospectionStr = inspect(enumIntrospection);\n throw new Error(\n `Introspection result missing enumValues: ${enumIntrospectionStr}.`,\n );\n }\n\n return new GraphQLEnumType({\n name: enumIntrospection.name,\n description: enumIntrospection.description,\n values: keyValMap(\n enumIntrospection.enumValues,\n (valueIntrospection) => valueIntrospection.name,\n (valueIntrospection) => ({\n description: valueIntrospection.description,\n deprecationReason: valueIntrospection.deprecationReason,\n }),\n ),\n });\n }\n\n function buildInputObjectDef(inputObjectIntrospection) {\n if (!inputObjectIntrospection.inputFields) {\n const inputObjectIntrospectionStr = inspect(inputObjectIntrospection);\n throw new Error(\n `Introspection result missing inputFields: ${inputObjectIntrospectionStr}.`,\n );\n }\n\n return new GraphQLInputObjectType({\n name: inputObjectIntrospection.name,\n description: inputObjectIntrospection.description,\n fields: () => buildInputValueDefMap(inputObjectIntrospection.inputFields),\n });\n }\n\n function buildFieldDefMap(typeIntrospection) {\n if (!typeIntrospection.fields) {\n throw new Error(\n `Introspection result missing fields: ${inspect(typeIntrospection)}.`,\n );\n }\n\n return keyValMap(\n typeIntrospection.fields,\n (fieldIntrospection) => fieldIntrospection.name,\n buildField,\n );\n }\n\n function buildField(fieldIntrospection) {\n const type = getType(fieldIntrospection.type);\n\n if (!isOutputType(type)) {\n const typeStr = inspect(type);\n throw new Error(\n `Introspection must provide output type for fields, but received: ${typeStr}.`,\n );\n }\n\n if (!fieldIntrospection.args) {\n const fieldIntrospectionStr = inspect(fieldIntrospection);\n throw new Error(\n `Introspection result missing field args: ${fieldIntrospectionStr}.`,\n );\n }\n\n return {\n description: fieldIntrospection.description,\n deprecationReason: fieldIntrospection.deprecationReason,\n type,\n args: buildInputValueDefMap(fieldIntrospection.args),\n };\n }\n\n function buildInputValueDefMap(inputValueIntrospections) {\n return keyValMap(\n inputValueIntrospections,\n (inputValue) => inputValue.name,\n buildInputValue,\n );\n }\n\n function buildInputValue(inputValueIntrospection) {\n const type = getType(inputValueIntrospection.type);\n\n if (!isInputType(type)) {\n const typeStr = inspect(type);\n throw new Error(\n `Introspection must provide input type for arguments, but received: ${typeStr}.`,\n );\n }\n\n const defaultValue =\n inputValueIntrospection.defaultValue != null\n ? valueFromAST(parseValue(inputValueIntrospection.defaultValue), type)\n : undefined;\n return {\n description: inputValueIntrospection.description,\n type,\n defaultValue,\n deprecationReason: inputValueIntrospection.deprecationReason,\n };\n }\n\n function buildDirective(directiveIntrospection) {\n if (!directiveIntrospection.args) {\n const directiveIntrospectionStr = inspect(directiveIntrospection);\n throw new Error(\n `Introspection result missing directive args: ${directiveIntrospectionStr}.`,\n );\n }\n\n if (!directiveIntrospection.locations) {\n const directiveIntrospectionStr = inspect(directiveIntrospection);\n throw new Error(\n `Introspection result missing directive locations: ${directiveIntrospectionStr}.`,\n );\n }\n\n return new GraphQLDirective({\n name: directiveIntrospection.name,\n description: directiveIntrospection.description,\n isRepeatable: directiveIntrospection.isRepeatable,\n locations: directiveIntrospection.locations.slice(),\n args: buildInputValueDefMap(directiveIntrospection.args),\n });\n }\n}\n","import { devAssert } from '../jsutils/devAssert.mjs';\nimport { inspect } from '../jsutils/inspect.mjs';\nimport { invariant } from '../jsutils/invariant.mjs';\nimport { keyMap } from '../jsutils/keyMap.mjs';\nimport { mapValue } from '../jsutils/mapValue.mjs';\nimport { Kind } from '../language/kinds.mjs';\nimport {\n isTypeDefinitionNode,\n isTypeExtensionNode,\n} from '../language/predicates.mjs';\nimport {\n GraphQLEnumType,\n GraphQLInputObjectType,\n GraphQLInterfaceType,\n GraphQLList,\n GraphQLNonNull,\n GraphQLObjectType,\n GraphQLScalarType,\n GraphQLUnionType,\n isEnumType,\n isInputObjectType,\n isInterfaceType,\n isListType,\n isNonNullType,\n isObjectType,\n isScalarType,\n isUnionType,\n} from '../type/definition.mjs';\nimport {\n GraphQLDeprecatedDirective,\n GraphQLDirective,\n GraphQLSpecifiedByDirective,\n} from '../type/directives.mjs';\nimport {\n introspectionTypes,\n isIntrospectionType,\n} from '../type/introspection.mjs';\nimport {\n isSpecifiedScalarType,\n specifiedScalarTypes,\n} from '../type/scalars.mjs';\nimport { assertSchema, GraphQLSchema } from '../type/schema.mjs';\nimport { assertValidSDLExtension } from '../validation/validate.mjs';\nimport { getDirectiveValues } from '../execution/values.mjs';\nimport { valueFromAST } from './valueFromAST.mjs';\n\n/**\n * Produces a new schema given an existing schema and a document which may\n * contain GraphQL type extensions and definitions. The original schema will\n * remain unaltered.\n *\n * Because a schema represents a graph of references, a schema cannot be\n * extended without effectively making an entire copy. We do not know until it's\n * too late if subgraphs remain unchanged.\n *\n * This algorithm copies the provided schema, applying extensions while\n * producing the copy. The original schema remains unaltered.\n */\nexport function extendSchema(schema, documentAST, options) {\n assertSchema(schema);\n (documentAST != null && documentAST.kind === Kind.DOCUMENT) ||\n devAssert(false, 'Must provide valid Document AST.');\n\n if (\n (options === null || options === void 0 ? void 0 : options.assumeValid) !==\n true &&\n (options === null || options === void 0\n ? void 0\n : options.assumeValidSDL) !== true\n ) {\n assertValidSDLExtension(documentAST, schema);\n }\n\n const schemaConfig = schema.toConfig();\n const extendedConfig = extendSchemaImpl(schemaConfig, documentAST, options);\n return schemaConfig === extendedConfig\n ? schema\n : new GraphQLSchema(extendedConfig);\n}\n/**\n * @internal\n */\n\nexport function extendSchemaImpl(schemaConfig, documentAST, options) {\n var _schemaDef, _schemaDef$descriptio, _schemaDef2, _options$assumeValid;\n\n // Collect the type definitions and extensions found in the document.\n const typeDefs = [];\n const typeExtensionsMap = Object.create(null); // New directives and types are separate because a directives and types can\n // have the same name. For example, a type named \"skip\".\n\n const directiveDefs = [];\n let schemaDef; // Schema extensions are collected which may add additional operation types.\n\n const schemaExtensions = [];\n\n for (const def of documentAST.definitions) {\n if (def.kind === Kind.SCHEMA_DEFINITION) {\n schemaDef = def;\n } else if (def.kind === Kind.SCHEMA_EXTENSION) {\n schemaExtensions.push(def);\n } else if (isTypeDefinitionNode(def)) {\n typeDefs.push(def);\n } else if (isTypeExtensionNode(def)) {\n const extendedTypeName = def.name.value;\n const existingTypeExtensions = typeExtensionsMap[extendedTypeName];\n typeExtensionsMap[extendedTypeName] = existingTypeExtensions\n ? existingTypeExtensions.concat([def])\n : [def];\n } else if (def.kind === Kind.DIRECTIVE_DEFINITION) {\n directiveDefs.push(def);\n }\n } // If this document contains no new types, extensions, or directives then\n // return the same unmodified GraphQLSchema instance.\n\n if (\n Object.keys(typeExtensionsMap).length === 0 &&\n typeDefs.length === 0 &&\n directiveDefs.length === 0 &&\n schemaExtensions.length === 0 &&\n schemaDef == null\n ) {\n return schemaConfig;\n }\n\n const typeMap = Object.create(null);\n\n for (const existingType of schemaConfig.types) {\n typeMap[existingType.name] = extendNamedType(existingType);\n }\n\n for (const typeNode of typeDefs) {\n var _stdTypeMap$name;\n\n const name = typeNode.name.value;\n typeMap[name] =\n (_stdTypeMap$name = stdTypeMap[name]) !== null &&\n _stdTypeMap$name !== void 0\n ? _stdTypeMap$name\n : buildType(typeNode);\n }\n\n const operationTypes = {\n // Get the extended root operation types.\n query: schemaConfig.query && replaceNamedType(schemaConfig.query),\n mutation: schemaConfig.mutation && replaceNamedType(schemaConfig.mutation),\n subscription:\n schemaConfig.subscription && replaceNamedType(schemaConfig.subscription),\n // Then, incorporate schema definition and all schema extensions.\n ...(schemaDef && getOperationTypes([schemaDef])),\n ...getOperationTypes(schemaExtensions),\n }; // Then produce and return a Schema config with these types.\n\n return {\n description:\n (_schemaDef = schemaDef) === null || _schemaDef === void 0\n ? void 0\n : (_schemaDef$descriptio = _schemaDef.description) === null ||\n _schemaDef$descriptio === void 0\n ? void 0\n : _schemaDef$descriptio.value,\n ...operationTypes,\n types: Object.values(typeMap),\n directives: [\n ...schemaConfig.directives.map(replaceDirective),\n ...directiveDefs.map(buildDirective),\n ],\n extensions: Object.create(null),\n astNode:\n (_schemaDef2 = schemaDef) !== null && _schemaDef2 !== void 0\n ? _schemaDef2\n : schemaConfig.astNode,\n extensionASTNodes: schemaConfig.extensionASTNodes.concat(schemaExtensions),\n assumeValid:\n (_options$assumeValid =\n options === null || options === void 0\n ? void 0\n : options.assumeValid) !== null && _options$assumeValid !== void 0\n ? _options$assumeValid\n : false,\n }; // Below are functions used for producing this schema that have closed over\n // this scope and have access to the schema, cache, and newly defined types.\n\n function replaceType(type) {\n if (isListType(type)) {\n // @ts-expect-error\n return new GraphQLList(replaceType(type.ofType));\n }\n\n if (isNonNullType(type)) {\n // @ts-expect-error\n return new GraphQLNonNull(replaceType(type.ofType));\n } // @ts-expect-error FIXME\n\n return replaceNamedType(type);\n }\n\n function replaceNamedType(type) {\n // Note: While this could make early assertions to get the correctly\n // typed values, that would throw immediately while type system\n // validation with validateSchema() will produce more actionable results.\n return typeMap[type.name];\n }\n\n function replaceDirective(directive) {\n const config = directive.toConfig();\n return new GraphQLDirective({\n ...config,\n args: mapValue(config.args, extendArg),\n });\n }\n\n function extendNamedType(type) {\n if (isIntrospectionType(type) || isSpecifiedScalarType(type)) {\n // Builtin types are not extended.\n return type;\n }\n\n if (isScalarType(type)) {\n return extendScalarType(type);\n }\n\n if (isObjectType(type)) {\n return extendObjectType(type);\n }\n\n if (isInterfaceType(type)) {\n return extendInterfaceType(type);\n }\n\n if (isUnionType(type)) {\n return extendUnionType(type);\n }\n\n if (isEnumType(type)) {\n return extendEnumType(type);\n }\n\n if (isInputObjectType(type)) {\n return extendInputObjectType(type);\n }\n /* c8 ignore next 3 */\n // Not reachable, all possible type definition nodes have been considered.\n\n false || invariant(false, 'Unexpected type: ' + inspect(type));\n }\n\n function extendInputObjectType(type) {\n var _typeExtensionsMap$co;\n\n const config = type.toConfig();\n const extensions =\n (_typeExtensionsMap$co = typeExtensionsMap[config.name]) !== null &&\n _typeExtensionsMap$co !== void 0\n ? _typeExtensionsMap$co\n : [];\n return new GraphQLInputObjectType({\n ...config,\n fields: () => ({\n ...mapValue(config.fields, (field) => ({\n ...field,\n type: replaceType(field.type),\n })),\n ...buildInputFieldMap(extensions),\n }),\n extensionASTNodes: config.extensionASTNodes.concat(extensions),\n });\n }\n\n function extendEnumType(type) {\n var _typeExtensionsMap$ty;\n\n const config = type.toConfig();\n const extensions =\n (_typeExtensionsMap$ty = typeExtensionsMap[type.name]) !== null &&\n _typeExtensionsMap$ty !== void 0\n ? _typeExtensionsMap$ty\n : [];\n return new GraphQLEnumType({\n ...config,\n values: { ...config.values, ...buildEnumValueMap(extensions) },\n extensionASTNodes: config.extensionASTNodes.concat(extensions),\n });\n }\n\n function extendScalarType(type) {\n var _typeExtensionsMap$co2;\n\n const config = type.toConfig();\n const extensions =\n (_typeExtensionsMap$co2 = typeExtensionsMap[config.name]) !== null &&\n _typeExtensionsMap$co2 !== void 0\n ? _typeExtensionsMap$co2\n : [];\n let specifiedByURL = config.specifiedByURL;\n\n for (const extensionNode of extensions) {\n var _getSpecifiedByURL;\n\n specifiedByURL =\n (_getSpecifiedByURL = getSpecifiedByURL(extensionNode)) !== null &&\n _getSpecifiedByURL !== void 0\n ? _getSpecifiedByURL\n : specifiedByURL;\n }\n\n return new GraphQLScalarType({\n ...config,\n specifiedByURL,\n extensionASTNodes: config.extensionASTNodes.concat(extensions),\n });\n }\n\n function extendObjectType(type) {\n var _typeExtensionsMap$co3;\n\n const config = type.toConfig();\n const extensions =\n (_typeExtensionsMap$co3 = typeExtensionsMap[config.name]) !== null &&\n _typeExtensionsMap$co3 !== void 0\n ? _typeExtensionsMap$co3\n : [];\n return new GraphQLObjectType({\n ...config,\n interfaces: () => [\n ...type.getInterfaces().map(replaceNamedType),\n ...buildInterfaces(extensions),\n ],\n fields: () => ({\n ...mapValue(config.fields, extendField),\n ...buildFieldMap(extensions),\n }),\n extensionASTNodes: config.extensionASTNodes.concat(extensions),\n });\n }\n\n function extendInterfaceType(type) {\n var _typeExtensionsMap$co4;\n\n const config = type.toConfig();\n const extensions =\n (_typeExtensionsMap$co4 = typeExtensionsMap[config.name]) !== null &&\n _typeExtensionsMap$co4 !== void 0\n ? _typeExtensionsMap$co4\n : [];\n return new GraphQLInterfaceType({\n ...config,\n interfaces: () => [\n ...type.getInterfaces().map(replaceNamedType),\n ...buildInterfaces(extensions),\n ],\n fields: () => ({\n ...mapValue(config.fields, extendField),\n ...buildFieldMap(extensions),\n }),\n extensionASTNodes: config.extensionASTNodes.concat(extensions),\n });\n }\n\n function extendUnionType(type) {\n var _typeExtensionsMap$co5;\n\n const config = type.toConfig();\n const extensions =\n (_typeExtensionsMap$co5 = typeExtensionsMap[config.name]) !== null &&\n _typeExtensionsMap$co5 !== void 0\n ? _typeExtensionsMap$co5\n : [];\n return new GraphQLUnionType({\n ...config,\n types: () => [\n ...type.getTypes().map(replaceNamedType),\n ...buildUnionTypes(extensions),\n ],\n extensionASTNodes: config.extensionASTNodes.concat(extensions),\n });\n }\n\n function extendField(field) {\n return {\n ...field,\n type: replaceType(field.type),\n args: field.args && mapValue(field.args, extendArg),\n };\n }\n\n function extendArg(arg) {\n return { ...arg, type: replaceType(arg.type) };\n }\n\n function getOperationTypes(nodes) {\n const opTypes = {};\n\n for (const node of nodes) {\n var _node$operationTypes;\n\n // FIXME: https://github.com/graphql/graphql-js/issues/2203\n const operationTypesNodes =\n /* c8 ignore next */\n (_node$operationTypes = node.operationTypes) !== null &&\n _node$operationTypes !== void 0\n ? _node$operationTypes\n : [];\n\n for (const operationType of operationTypesNodes) {\n // Note: While this could make early assertions to get the correctly\n // typed values below, that would throw immediately while type system\n // validation with validateSchema() will produce more actionable results.\n // @ts-expect-error\n opTypes[operationType.operation] = getNamedType(operationType.type);\n }\n }\n\n return opTypes;\n }\n\n function getNamedType(node) {\n var _stdTypeMap$name2;\n\n const name = node.name.value;\n const type =\n (_stdTypeMap$name2 = stdTypeMap[name]) !== null &&\n _stdTypeMap$name2 !== void 0\n ? _stdTypeMap$name2\n : typeMap[name];\n\n if (type === undefined) {\n throw new Error(`Unknown type: \"${name}\".`);\n }\n\n return type;\n }\n\n function getWrappedType(node) {\n if (node.kind === Kind.LIST_TYPE) {\n return new GraphQLList(getWrappedType(node.type));\n }\n\n if (node.kind === Kind.NON_NULL_TYPE) {\n return new GraphQLNonNull(getWrappedType(node.type));\n }\n\n return getNamedType(node);\n }\n\n function buildDirective(node) {\n var _node$description;\n\n return new GraphQLDirective({\n name: node.name.value,\n description:\n (_node$description = node.description) === null ||\n _node$description === void 0\n ? void 0\n : _node$description.value,\n // @ts-expect-error\n locations: node.locations.map(({ value }) => value),\n isRepeatable: node.repeatable,\n args: buildArgumentMap(node.arguments),\n astNode: node,\n });\n }\n\n function buildFieldMap(nodes) {\n const fieldConfigMap = Object.create(null);\n\n for (const node of nodes) {\n var _node$fields;\n\n // FIXME: https://github.com/graphql/graphql-js/issues/2203\n const nodeFields =\n /* c8 ignore next */\n (_node$fields = node.fields) !== null && _node$fields !== void 0\n ? _node$fields\n : [];\n\n for (const field of nodeFields) {\n var _field$description;\n\n fieldConfigMap[field.name.value] = {\n // Note: While this could make assertions to get the correctly typed\n // value, that would throw immediately while type system validation\n // with validateSchema() will produce more actionable results.\n type: getWrappedType(field.type),\n description:\n (_field$description = field.description) === null ||\n _field$description === void 0\n ? void 0\n : _field$description.value,\n args: buildArgumentMap(field.arguments),\n deprecationReason: getDeprecationReason(field),\n astNode: field,\n };\n }\n }\n\n return fieldConfigMap;\n }\n\n function buildArgumentMap(args) {\n // FIXME: https://github.com/graphql/graphql-js/issues/2203\n const argsNodes =\n /* c8 ignore next */\n args !== null && args !== void 0 ? args : [];\n const argConfigMap = Object.create(null);\n\n for (const arg of argsNodes) {\n var _arg$description;\n\n // Note: While this could make assertions to get the correctly typed\n // value, that would throw immediately while type system validation\n // with validateSchema() will produce more actionable results.\n const type = getWrappedType(arg.type);\n argConfigMap[arg.name.value] = {\n type,\n description:\n (_arg$description = arg.description) === null ||\n _arg$description === void 0\n ? void 0\n : _arg$description.value,\n defaultValue: valueFromAST(arg.defaultValue, type),\n deprecationReason: getDeprecationReason(arg),\n astNode: arg,\n };\n }\n\n return argConfigMap;\n }\n\n function buildInputFieldMap(nodes) {\n const inputFieldMap = Object.create(null);\n\n for (const node of nodes) {\n var _node$fields2;\n\n // FIXME: https://github.com/graphql/graphql-js/issues/2203\n const fieldsNodes =\n /* c8 ignore next */\n (_node$fields2 = node.fields) !== null && _node$fields2 !== void 0\n ? _node$fields2\n : [];\n\n for (const field of fieldsNodes) {\n var _field$description2;\n\n // Note: While this could make assertions to get the correctly typed\n // value, that would throw immediately while type system validation\n // with validateSchema() will produce more actionable results.\n const type = getWrappedType(field.type);\n inputFieldMap[field.name.value] = {\n type,\n description:\n (_field$description2 = field.description) === null ||\n _field$description2 === void 0\n ? void 0\n : _field$description2.value,\n defaultValue: valueFromAST(field.defaultValue, type),\n deprecationReason: getDeprecationReason(field),\n astNode: field,\n };\n }\n }\n\n return inputFieldMap;\n }\n\n function buildEnumValueMap(nodes) {\n const enumValueMap = Object.create(null);\n\n for (const node of nodes) {\n var _node$values;\n\n // FIXME: https://github.com/graphql/graphql-js/issues/2203\n const valuesNodes =\n /* c8 ignore next */\n (_node$values = node.values) !== null && _node$values !== void 0\n ? _node$values\n : [];\n\n for (const value of valuesNodes) {\n var _value$description;\n\n enumValueMap[value.name.value] = {\n description:\n (_value$description = value.description) === null ||\n _value$description === void 0\n ? void 0\n : _value$description.value,\n deprecationReason: getDeprecationReason(value),\n astNode: value,\n };\n }\n }\n\n return enumValueMap;\n }\n\n function buildInterfaces(nodes) {\n // Note: While this could make assertions to get the correctly typed\n // values below, that would throw immediately while type system\n // validation with validateSchema() will produce more actionable results.\n // @ts-expect-error\n return nodes.flatMap(\n // FIXME: https://github.com/graphql/graphql-js/issues/2203\n (node) => {\n var _node$interfaces$map, _node$interfaces;\n\n return (\n /* c8 ignore next */\n (_node$interfaces$map =\n (_node$interfaces = node.interfaces) === null ||\n _node$interfaces === void 0\n ? void 0\n : _node$interfaces.map(getNamedType)) !== null &&\n _node$interfaces$map !== void 0\n ? _node$interfaces$map\n : []\n );\n },\n );\n }\n\n function buildUnionTypes(nodes) {\n // Note: While this could make assertions to get the correctly typed\n // values below, that would throw immediately while type system\n // validation with validateSchema() will produce more actionable results.\n // @ts-expect-error\n return nodes.flatMap(\n // FIXME: https://github.com/graphql/graphql-js/issues/2203\n (node) => {\n var _node$types$map, _node$types;\n\n return (\n /* c8 ignore next */\n (_node$types$map =\n (_node$types = node.types) === null || _node$types === void 0\n ? void 0\n : _node$types.map(getNamedType)) !== null &&\n _node$types$map !== void 0\n ? _node$types$map\n : []\n );\n },\n );\n }\n\n function buildType(astNode) {\n var _typeExtensionsMap$na;\n\n const name = astNode.name.value;\n const extensionASTNodes =\n (_typeExtensionsMap$na = typeExtensionsMap[name]) !== null &&\n _typeExtensionsMap$na !== void 0\n ? _typeExtensionsMap$na\n : [];\n\n switch (astNode.kind) {\n case Kind.OBJECT_TYPE_DEFINITION: {\n var _astNode$description;\n\n const allNodes = [astNode, ...extensionASTNodes];\n return new GraphQLObjectType({\n name,\n description:\n (_astNode$description = astNode.description) === null ||\n _astNode$description === void 0\n ? void 0\n : _astNode$description.value,\n interfaces: () => buildInterfaces(allNodes),\n fields: () => buildFieldMap(allNodes),\n astNode,\n extensionASTNodes,\n });\n }\n\n case Kind.INTERFACE_TYPE_DEFINITION: {\n var _astNode$description2;\n\n const allNodes = [astNode, ...extensionASTNodes];\n return new GraphQLInterfaceType({\n name,\n description:\n (_astNode$description2 = astNode.description) === null ||\n _astNode$description2 === void 0\n ? void 0\n : _astNode$description2.value,\n interfaces: () => buildInterfaces(allNodes),\n fields: () => buildFieldMap(allNodes),\n astNode,\n extensionASTNodes,\n });\n }\n\n case Kind.ENUM_TYPE_DEFINITION: {\n var _astNode$description3;\n\n const allNodes = [astNode, ...extensionASTNodes];\n return new GraphQLEnumType({\n name,\n description:\n (_astNode$description3 = astNode.description) === null ||\n _astNode$description3 === void 0\n ? void 0\n : _astNode$description3.value,\n values: buildEnumValueMap(allNodes),\n astNode,\n extensionASTNodes,\n });\n }\n\n case Kind.UNION_TYPE_DEFINITION: {\n var _astNode$description4;\n\n const allNodes = [astNode, ...extensionASTNodes];\n return new GraphQLUnionType({\n name,\n description:\n (_astNode$description4 = astNode.description) === null ||\n _astNode$description4 === void 0\n ? void 0\n : _astNode$description4.value,\n types: () => buildUnionTypes(allNodes),\n astNode,\n extensionASTNodes,\n });\n }\n\n case Kind.SCALAR_TYPE_DEFINITION: {\n var _astNode$description5;\n\n return new GraphQLScalarType({\n name,\n description:\n (_astNode$description5 = astNode.description) === null ||\n _astNode$description5 === void 0\n ? void 0\n : _astNode$description5.value,\n specifiedByURL: getSpecifiedByURL(astNode),\n astNode,\n extensionASTNodes,\n });\n }\n\n case Kind.INPUT_OBJECT_TYPE_DEFINITION: {\n var _astNode$description6;\n\n const allNodes = [astNode, ...extensionASTNodes];\n return new GraphQLInputObjectType({\n name,\n description:\n (_astNode$description6 = astNode.description) === null ||\n _astNode$description6 === void 0\n ? void 0\n : _astNode$description6.value,\n fields: () => buildInputFieldMap(allNodes),\n astNode,\n extensionASTNodes,\n });\n }\n }\n }\n}\nconst stdTypeMap = keyMap(\n [...specifiedScalarTypes, ...introspectionTypes],\n (type) => type.name,\n);\n/**\n * Given a field or enum value node, returns the string value for the\n * deprecation reason.\n */\n\nfunction getDeprecationReason(node) {\n const deprecated = getDirectiveValues(GraphQLDeprecatedDirective, node); // @ts-expect-error validated by `getDirectiveValues`\n\n return deprecated === null || deprecated === void 0\n ? void 0\n : deprecated.reason;\n}\n/**\n * Given a scalar node, returns the string value for the specifiedByURL.\n */\n\nfunction getSpecifiedByURL(node) {\n const specifiedBy = getDirectiveValues(GraphQLSpecifiedByDirective, node); // @ts-expect-error validated by `getDirectiveValues`\n\n return specifiedBy === null || specifiedBy === void 0\n ? void 0\n : specifiedBy.url;\n}\n","import { devAssert } from '../jsutils/devAssert.mjs';\nimport { Kind } from '../language/kinds.mjs';\nimport { parse } from '../language/parser.mjs';\nimport { specifiedDirectives } from '../type/directives.mjs';\nimport { GraphQLSchema } from '../type/schema.mjs';\nimport { assertValidSDL } from '../validation/validate.mjs';\nimport { extendSchemaImpl } from './extendSchema.mjs';\n\n/**\n * This takes the ast of a schema document produced by the parse function in\n * src/language/parser.js.\n *\n * If no schema definition is provided, then it will look for types named Query,\n * Mutation and Subscription.\n *\n * Given that AST it constructs a GraphQLSchema. The resulting schema\n * has no resolve methods, so execution will use default resolvers.\n */\nexport function buildASTSchema(documentAST, options) {\n (documentAST != null && documentAST.kind === Kind.DOCUMENT) ||\n devAssert(false, 'Must provide valid Document AST.');\n\n if (\n (options === null || options === void 0 ? void 0 : options.assumeValid) !==\n true &&\n (options === null || options === void 0\n ? void 0\n : options.assumeValidSDL) !== true\n ) {\n assertValidSDL(documentAST);\n }\n\n const emptySchemaConfig = {\n description: undefined,\n types: [],\n directives: [],\n extensions: Object.create(null),\n extensionASTNodes: [],\n assumeValid: false,\n };\n const config = extendSchemaImpl(emptySchemaConfig, documentAST, options);\n\n if (config.astNode == null) {\n for (const type of config.types) {\n switch (type.name) {\n // Note: While this could make early assertions to get the correctly\n // typed values below, that would throw immediately while type system\n // validation with validateSchema() will produce more actionable results.\n case 'Query':\n // @ts-expect-error validated in `validateSchema`\n config.query = type;\n break;\n\n case 'Mutation':\n // @ts-expect-error validated in `validateSchema`\n config.mutation = type;\n break;\n\n case 'Subscription':\n // @ts-expect-error validated in `validateSchema`\n config.subscription = type;\n break;\n }\n }\n }\n\n const directives = [\n ...config.directives, // If specified directives were not explicitly declared, add them.\n ...specifiedDirectives.filter((stdDirective) =>\n config.directives.every(\n (directive) => directive.name !== stdDirective.name,\n ),\n ),\n ];\n return new GraphQLSchema({ ...config, directives });\n}\n/**\n * A helper function to build a GraphQLSchema directly from a source\n * document.\n */\n\nexport function buildSchema(source, options) {\n const document = parse(source, {\n noLocation:\n options === null || options === void 0 ? void 0 : options.noLocation,\n allowLegacyFragmentVariables:\n options === null || options === void 0\n ? void 0\n : options.allowLegacyFragmentVariables,\n });\n return buildASTSchema(document, {\n assumeValidSDL:\n options === null || options === void 0 ? void 0 : options.assumeValidSDL,\n assumeValid:\n options === null || options === void 0 ? void 0 : options.assumeValid,\n });\n}\n","import { inspect } from '../jsutils/inspect.mjs';\nimport { invariant } from '../jsutils/invariant.mjs';\nimport { keyValMap } from '../jsutils/keyValMap.mjs';\nimport { naturalCompare } from '../jsutils/naturalCompare.mjs';\nimport {\n GraphQLEnumType,\n GraphQLInputObjectType,\n GraphQLInterfaceType,\n GraphQLList,\n GraphQLNonNull,\n GraphQLObjectType,\n GraphQLUnionType,\n isEnumType,\n isInputObjectType,\n isInterfaceType,\n isListType,\n isNonNullType,\n isObjectType,\n isScalarType,\n isUnionType,\n} from '../type/definition.mjs';\nimport { GraphQLDirective } from '../type/directives.mjs';\nimport { isIntrospectionType } from '../type/introspection.mjs';\nimport { GraphQLSchema } from '../type/schema.mjs';\n/**\n * Sort GraphQLSchema.\n *\n * This function returns a sorted copy of the given GraphQLSchema.\n */\n\nexport function lexicographicSortSchema(schema) {\n const schemaConfig = schema.toConfig();\n const typeMap = keyValMap(\n sortByName(schemaConfig.types),\n (type) => type.name,\n sortNamedType,\n );\n return new GraphQLSchema({\n ...schemaConfig,\n types: Object.values(typeMap),\n directives: sortByName(schemaConfig.directives).map(sortDirective),\n query: replaceMaybeType(schemaConfig.query),\n mutation: replaceMaybeType(schemaConfig.mutation),\n subscription: replaceMaybeType(schemaConfig.subscription),\n });\n\n function replaceType(type) {\n if (isListType(type)) {\n // @ts-expect-error\n return new GraphQLList(replaceType(type.ofType));\n } else if (isNonNullType(type)) {\n // @ts-expect-error\n return new GraphQLNonNull(replaceType(type.ofType));\n } // @ts-expect-error FIXME: TS Conversion\n\n return replaceNamedType(type);\n }\n\n function replaceNamedType(type) {\n return typeMap[type.name];\n }\n\n function replaceMaybeType(maybeType) {\n return maybeType && replaceNamedType(maybeType);\n }\n\n function sortDirective(directive) {\n const config = directive.toConfig();\n return new GraphQLDirective({\n ...config,\n locations: sortBy(config.locations, (x) => x),\n args: sortArgs(config.args),\n });\n }\n\n function sortArgs(args) {\n return sortObjMap(args, (arg) => ({ ...arg, type: replaceType(arg.type) }));\n }\n\n function sortFields(fieldsMap) {\n return sortObjMap(fieldsMap, (field) => ({\n ...field,\n type: replaceType(field.type),\n args: field.args && sortArgs(field.args),\n }));\n }\n\n function sortInputFields(fieldsMap) {\n return sortObjMap(fieldsMap, (field) => ({\n ...field,\n type: replaceType(field.type),\n }));\n }\n\n function sortTypes(array) {\n return sortByName(array).map(replaceNamedType);\n }\n\n function sortNamedType(type) {\n if (isScalarType(type) || isIntrospectionType(type)) {\n return type;\n }\n\n if (isObjectType(type)) {\n const config = type.toConfig();\n return new GraphQLObjectType({\n ...config,\n interfaces: () => sortTypes(config.interfaces),\n fields: () => sortFields(config.fields),\n });\n }\n\n if (isInterfaceType(type)) {\n const config = type.toConfig();\n return new GraphQLInterfaceType({\n ...config,\n interfaces: () => sortTypes(config.interfaces),\n fields: () => sortFields(config.fields),\n });\n }\n\n if (isUnionType(type)) {\n const config = type.toConfig();\n return new GraphQLUnionType({\n ...config,\n types: () => sortTypes(config.types),\n });\n }\n\n if (isEnumType(type)) {\n const config = type.toConfig();\n return new GraphQLEnumType({\n ...config,\n values: sortObjMap(config.values, (value) => value),\n });\n }\n\n if (isInputObjectType(type)) {\n const config = type.toConfig();\n return new GraphQLInputObjectType({\n ...config,\n fields: () => sortInputFields(config.fields),\n });\n }\n /* c8 ignore next 3 */\n // Not reachable, all possible types have been considered.\n\n false || invariant(false, 'Unexpected type: ' + inspect(type));\n }\n}\n\nfunction sortObjMap(map, sortValueFn) {\n const sortedMap = Object.create(null);\n\n for (const key of Object.keys(map).sort(naturalCompare)) {\n sortedMap[key] = sortValueFn(map[key]);\n }\n\n return sortedMap;\n}\n\nfunction sortByName(array) {\n return sortBy(array, (obj) => obj.name);\n}\n\nfunction sortBy(array, mapToKey) {\n return array.slice().sort((obj1, obj2) => {\n const key1 = mapToKey(obj1);\n const key2 = mapToKey(obj2);\n return naturalCompare(key1, key2);\n });\n}\n","import { inspect } from '../jsutils/inspect.mjs';\nimport { invariant } from '../jsutils/invariant.mjs';\nimport { isPrintableAsBlockString } from '../language/blockString.mjs';\nimport { Kind } from '../language/kinds.mjs';\nimport { print } from '../language/printer.mjs';\nimport {\n isEnumType,\n isInputObjectType,\n isInterfaceType,\n isObjectType,\n isScalarType,\n isUnionType,\n} from '../type/definition.mjs';\nimport {\n DEFAULT_DEPRECATION_REASON,\n isSpecifiedDirective,\n} from '../type/directives.mjs';\nimport { isIntrospectionType } from '../type/introspection.mjs';\nimport { isSpecifiedScalarType } from '../type/scalars.mjs';\nimport { astFromValue } from './astFromValue.mjs';\nexport function printSchema(schema) {\n return printFilteredSchema(\n schema,\n (n) => !isSpecifiedDirective(n),\n isDefinedType,\n );\n}\nexport function printIntrospectionSchema(schema) {\n return printFilteredSchema(schema, isSpecifiedDirective, isIntrospectionType);\n}\n\nfunction isDefinedType(type) {\n return !isSpecifiedScalarType(type) && !isIntrospectionType(type);\n}\n\nfunction printFilteredSchema(schema, directiveFilter, typeFilter) {\n const directives = schema.getDirectives().filter(directiveFilter);\n const types = Object.values(schema.getTypeMap()).filter(typeFilter);\n return [\n printSchemaDefinition(schema),\n ...directives.map((directive) => printDirective(directive)),\n ...types.map((type) => printType(type)),\n ]\n .filter(Boolean)\n .join('\\n\\n');\n}\n\nfunction printSchemaDefinition(schema) {\n if (schema.description == null && isSchemaOfCommonNames(schema)) {\n return;\n }\n\n const operationTypes = [];\n const queryType = schema.getQueryType();\n\n if (queryType) {\n operationTypes.push(` query: ${queryType.name}`);\n }\n\n const mutationType = schema.getMutationType();\n\n if (mutationType) {\n operationTypes.push(` mutation: ${mutationType.name}`);\n }\n\n const subscriptionType = schema.getSubscriptionType();\n\n if (subscriptionType) {\n operationTypes.push(` subscription: ${subscriptionType.name}`);\n }\n\n return printDescription(schema) + `schema {\\n${operationTypes.join('\\n')}\\n}`;\n}\n/**\n * GraphQL schema define root types for each type of operation. These types are\n * the same as any other type and can be named in any manner, however there is\n * a common naming convention:\n *\n * ```graphql\n * schema {\n * query: Query\n * mutation: Mutation\n * subscription: Subscription\n * }\n * ```\n *\n * When using this naming convention, the schema description can be omitted.\n */\n\nfunction isSchemaOfCommonNames(schema) {\n const queryType = schema.getQueryType();\n\n if (queryType && queryType.name !== 'Query') {\n return false;\n }\n\n const mutationType = schema.getMutationType();\n\n if (mutationType && mutationType.name !== 'Mutation') {\n return false;\n }\n\n const subscriptionType = schema.getSubscriptionType();\n\n if (subscriptionType && subscriptionType.name !== 'Subscription') {\n return false;\n }\n\n return true;\n}\n\nexport function printType(type) {\n if (isScalarType(type)) {\n return printScalar(type);\n }\n\n if (isObjectType(type)) {\n return printObject(type);\n }\n\n if (isInterfaceType(type)) {\n return printInterface(type);\n }\n\n if (isUnionType(type)) {\n return printUnion(type);\n }\n\n if (isEnumType(type)) {\n return printEnum(type);\n }\n\n if (isInputObjectType(type)) {\n return printInputObject(type);\n }\n /* c8 ignore next 3 */\n // Not reachable, all possible types have been considered.\n\n false || invariant(false, 'Unexpected type: ' + inspect(type));\n}\n\nfunction printScalar(type) {\n return (\n printDescription(type) + `scalar ${type.name}` + printSpecifiedByURL(type)\n );\n}\n\nfunction printImplementedInterfaces(type) {\n const interfaces = type.getInterfaces();\n return interfaces.length\n ? ' implements ' + interfaces.map((i) => i.name).join(' & ')\n : '';\n}\n\nfunction printObject(type) {\n return (\n printDescription(type) +\n `type ${type.name}` +\n printImplementedInterfaces(type) +\n printFields(type)\n );\n}\n\nfunction printInterface(type) {\n return (\n printDescription(type) +\n `interface ${type.name}` +\n printImplementedInterfaces(type) +\n printFields(type)\n );\n}\n\nfunction printUnion(type) {\n const types = type.getTypes();\n const possibleTypes = types.length ? ' = ' + types.join(' | ') : '';\n return printDescription(type) + 'union ' + type.name + possibleTypes;\n}\n\nfunction printEnum(type) {\n const values = type\n .getValues()\n .map(\n (value, i) =>\n printDescription(value, ' ', !i) +\n ' ' +\n value.name +\n printDeprecated(value.deprecationReason),\n );\n return printDescription(type) + `enum ${type.name}` + printBlock(values);\n}\n\nfunction printInputObject(type) {\n const fields = Object.values(type.getFields()).map(\n (f, i) => printDescription(f, ' ', !i) + ' ' + printInputValue(f),\n );\n return printDescription(type) + `input ${type.name}` + printBlock(fields);\n}\n\nfunction printFields(type) {\n const fields = Object.values(type.getFields()).map(\n (f, i) =>\n printDescription(f, ' ', !i) +\n ' ' +\n f.name +\n printArgs(f.args, ' ') +\n ': ' +\n String(f.type) +\n printDeprecated(f.deprecationReason),\n );\n return printBlock(fields);\n}\n\nfunction printBlock(items) {\n return items.length !== 0 ? ' {\\n' + items.join('\\n') + '\\n}' : '';\n}\n\nfunction printArgs(args, indentation = '') {\n if (args.length === 0) {\n return '';\n } // If every arg does not have a description, print them on one line.\n\n if (args.every((arg) => !arg.description)) {\n return '(' + args.map(printInputValue).join(', ') + ')';\n }\n\n return (\n '(\\n' +\n args\n .map(\n (arg, i) =>\n printDescription(arg, ' ' + indentation, !i) +\n ' ' +\n indentation +\n printInputValue(arg),\n )\n .join('\\n') +\n '\\n' +\n indentation +\n ')'\n );\n}\n\nfunction printInputValue(arg) {\n const defaultAST = astFromValue(arg.defaultValue, arg.type);\n let argDecl = arg.name + ': ' + String(arg.type);\n\n if (defaultAST) {\n argDecl += ` = ${print(defaultAST)}`;\n }\n\n return argDecl + printDeprecated(arg.deprecationReason);\n}\n\nfunction printDirective(directive) {\n return (\n printDescription(directive) +\n 'directive @' +\n directive.name +\n printArgs(directive.args) +\n (directive.isRepeatable ? ' repeatable' : '') +\n ' on ' +\n directive.locations.join(' | ')\n );\n}\n\nfunction printDeprecated(reason) {\n if (reason == null) {\n return '';\n }\n\n if (reason !== DEFAULT_DEPRECATION_REASON) {\n const astValue = print({\n kind: Kind.STRING,\n value: reason,\n });\n return ` @deprecated(reason: ${astValue})`;\n }\n\n return ' @deprecated';\n}\n\nfunction printSpecifiedByURL(scalar) {\n if (scalar.specifiedByURL == null) {\n return '';\n }\n\n const astValue = print({\n kind: Kind.STRING,\n value: scalar.specifiedByURL,\n });\n return ` @specifiedBy(url: ${astValue})`;\n}\n\nfunction printDescription(def, indentation = '', firstInBlock = true) {\n const { description } = def;\n\n if (description == null) {\n return '';\n }\n\n const blockString = print({\n kind: Kind.STRING,\n value: description,\n block: isPrintableAsBlockString(description),\n });\n const prefix =\n indentation && !firstInBlock ? '\\n' + indentation : indentation;\n return prefix + blockString.replace(/\\n/g, '\\n' + indentation) + '\\n';\n}\n","import { Kind } from '../language/kinds.mjs';\n/**\n * Provided a collection of ASTs, presumably each from different files,\n * concatenate the ASTs together into batched AST, useful for validating many\n * GraphQL source files which together represent one conceptual application.\n */\n\nexport function concatAST(documents) {\n const definitions = [];\n\n for (const doc of documents) {\n definitions.push(...doc.definitions);\n }\n\n return {\n kind: Kind.DOCUMENT,\n definitions,\n };\n}\n","import { Kind } from '../language/kinds.mjs';\nimport { visit } from '../language/visitor.mjs';\n/**\n * separateOperations accepts a single AST document which may contain many\n * operations and fragments and returns a collection of AST documents each of\n * which contains a single operation as well the fragment definitions it\n * refers to.\n */\n\nexport function separateOperations(documentAST) {\n const operations = [];\n const depGraph = Object.create(null); // Populate metadata and build a dependency graph.\n\n for (const definitionNode of documentAST.definitions) {\n switch (definitionNode.kind) {\n case Kind.OPERATION_DEFINITION:\n operations.push(definitionNode);\n break;\n\n case Kind.FRAGMENT_DEFINITION:\n depGraph[definitionNode.name.value] = collectDependencies(\n definitionNode.selectionSet,\n );\n break;\n\n default: // ignore non-executable definitions\n }\n } // For each operation, produce a new synthesized AST which includes only what\n // is necessary for completing that operation.\n\n const separatedDocumentASTs = Object.create(null);\n\n for (const operation of operations) {\n const dependencies = new Set();\n\n for (const fragmentName of collectDependencies(operation.selectionSet)) {\n collectTransitiveDependencies(dependencies, depGraph, fragmentName);\n } // Provides the empty string for anonymous operations.\n\n const operationName = operation.name ? operation.name.value : ''; // The list of definition nodes to be included for this operation, sorted\n // to retain the same order as the original document.\n\n separatedDocumentASTs[operationName] = {\n kind: Kind.DOCUMENT,\n definitions: documentAST.definitions.filter(\n (node) =>\n node === operation ||\n (node.kind === Kind.FRAGMENT_DEFINITION &&\n dependencies.has(node.name.value)),\n ),\n };\n }\n\n return separatedDocumentASTs;\n}\n\n// From a dependency graph, collects a list of transitive dependencies by\n// recursing through a dependency graph.\nfunction collectTransitiveDependencies(collected, depGraph, fromName) {\n if (!collected.has(fromName)) {\n collected.add(fromName);\n const immediateDeps = depGraph[fromName];\n\n if (immediateDeps !== undefined) {\n for (const toName of immediateDeps) {\n collectTransitiveDependencies(collected, depGraph, toName);\n }\n }\n }\n}\n\nfunction collectDependencies(selectionSet) {\n const dependencies = [];\n visit(selectionSet, {\n FragmentSpread(node) {\n dependencies.push(node.name.value);\n },\n });\n return dependencies;\n}\n","import { printBlockString } from '../language/blockString.mjs';\nimport { isPunctuatorTokenKind, Lexer } from '../language/lexer.mjs';\nimport { isSource, Source } from '../language/source.mjs';\nimport { TokenKind } from '../language/tokenKind.mjs';\n/**\n * Strips characters that are not significant to the validity or execution\n * of a GraphQL document:\n * - UnicodeBOM\n * - WhiteSpace\n * - LineTerminator\n * - Comment\n * - Comma\n * - BlockString indentation\n *\n * Note: It is required to have a delimiter character between neighboring\n * non-punctuator tokens and this function always uses single space as delimiter.\n *\n * It is guaranteed that both input and output documents if parsed would result\n * in the exact same AST except for nodes location.\n *\n * Warning: It is guaranteed that this function will always produce stable results.\n * However, it's not guaranteed that it will stay the same between different\n * releases due to bugfixes or changes in the GraphQL specification.\n *\n * Query example:\n *\n * ```graphql\n * query SomeQuery($foo: String!, $bar: String) {\n * someField(foo: $foo, bar: $bar) {\n * a\n * b {\n * c\n * d\n * }\n * }\n * }\n * ```\n *\n * Becomes:\n *\n * ```graphql\n * query SomeQuery($foo:String!$bar:String){someField(foo:$foo bar:$bar){a b{c d}}}\n * ```\n *\n * SDL example:\n *\n * ```graphql\n * \"\"\"\n * Type description\n * \"\"\"\n * type Foo {\n * \"\"\"\n * Field description\n * \"\"\"\n * bar: String\n * }\n * ```\n *\n * Becomes:\n *\n * ```graphql\n * \"\"\"Type description\"\"\" type Foo{\"\"\"Field description\"\"\" bar:String}\n * ```\n */\n\nexport function stripIgnoredCharacters(source) {\n const sourceObj = isSource(source) ? source : new Source(source);\n const body = sourceObj.body;\n const lexer = new Lexer(sourceObj);\n let strippedBody = '';\n let wasLastAddedTokenNonPunctuator = false;\n\n while (lexer.advance().kind !== TokenKind.EOF) {\n const currentToken = lexer.token;\n const tokenKind = currentToken.kind;\n /**\n * Every two non-punctuator tokens should have space between them.\n * Also prevent case of non-punctuator token following by spread resulting\n * in invalid token (e.g. `1...` is invalid Float token).\n */\n\n const isNonPunctuator = !isPunctuatorTokenKind(currentToken.kind);\n\n if (wasLastAddedTokenNonPunctuator) {\n if (isNonPunctuator || currentToken.kind === TokenKind.SPREAD) {\n strippedBody += ' ';\n }\n }\n\n const tokenBody = body.slice(currentToken.start, currentToken.end);\n\n if (tokenKind === TokenKind.BLOCK_STRING) {\n strippedBody += printBlockString(currentToken.value, {\n minimize: true,\n });\n } else {\n strippedBody += tokenBody;\n }\n\n wasLastAddedTokenNonPunctuator = isNonPunctuator;\n }\n\n return strippedBody;\n}\n","import { devAssert } from '../jsutils/devAssert.mjs';\nimport { GraphQLError } from '../error/GraphQLError.mjs';\nimport { assertName } from '../type/assertName.mjs';\n/* c8 ignore start */\n\n/**\n * Upholds the spec rules about naming.\n * @deprecated Please use `assertName` instead. Will be removed in v17\n */\n\nexport function assertValidName(name) {\n const error = isValidNameError(name);\n\n if (error) {\n throw error;\n }\n\n return name;\n}\n/**\n * Returns an Error if a name is invalid.\n * @deprecated Please use `assertName` instead. Will be removed in v17\n */\n\nexport function isValidNameError(name) {\n typeof name === 'string' || devAssert(false, 'Expected name to be a string.');\n\n if (name.startsWith('__')) {\n return new GraphQLError(\n `Name \"${name}\" must not begin with \"__\", which is reserved by GraphQL introspection.`,\n );\n }\n\n try {\n assertName(name);\n } catch (error) {\n return error;\n }\n}\n/* c8 ignore stop */\n","import { inspect } from '../jsutils/inspect.mjs';\nimport { invariant } from '../jsutils/invariant.mjs';\nimport { keyMap } from '../jsutils/keyMap.mjs';\nimport { print } from '../language/printer.mjs';\nimport {\n isEnumType,\n isInputObjectType,\n isInterfaceType,\n isListType,\n isNamedType,\n isNonNullType,\n isObjectType,\n isRequiredArgument,\n isRequiredInputField,\n isScalarType,\n isUnionType,\n} from '../type/definition.mjs';\nimport { isSpecifiedScalarType } from '../type/scalars.mjs';\nimport { astFromValue } from './astFromValue.mjs';\nimport { sortValueNode } from './sortValueNode.mjs';\nexport let BreakingChangeType;\n\n(function (BreakingChangeType) {\n BreakingChangeType['TYPE_REMOVED'] = 'TYPE_REMOVED';\n BreakingChangeType['TYPE_CHANGED_KIND'] = 'TYPE_CHANGED_KIND';\n BreakingChangeType['TYPE_REMOVED_FROM_UNION'] = 'TYPE_REMOVED_FROM_UNION';\n BreakingChangeType['VALUE_REMOVED_FROM_ENUM'] = 'VALUE_REMOVED_FROM_ENUM';\n BreakingChangeType['REQUIRED_INPUT_FIELD_ADDED'] =\n 'REQUIRED_INPUT_FIELD_ADDED';\n BreakingChangeType['IMPLEMENTED_INTERFACE_REMOVED'] =\n 'IMPLEMENTED_INTERFACE_REMOVED';\n BreakingChangeType['FIELD_REMOVED'] = 'FIELD_REMOVED';\n BreakingChangeType['FIELD_CHANGED_KIND'] = 'FIELD_CHANGED_KIND';\n BreakingChangeType['REQUIRED_ARG_ADDED'] = 'REQUIRED_ARG_ADDED';\n BreakingChangeType['ARG_REMOVED'] = 'ARG_REMOVED';\n BreakingChangeType['ARG_CHANGED_KIND'] = 'ARG_CHANGED_KIND';\n BreakingChangeType['DIRECTIVE_REMOVED'] = 'DIRECTIVE_REMOVED';\n BreakingChangeType['DIRECTIVE_ARG_REMOVED'] = 'DIRECTIVE_ARG_REMOVED';\n BreakingChangeType['REQUIRED_DIRECTIVE_ARG_ADDED'] =\n 'REQUIRED_DIRECTIVE_ARG_ADDED';\n BreakingChangeType['DIRECTIVE_REPEATABLE_REMOVED'] =\n 'DIRECTIVE_REPEATABLE_REMOVED';\n BreakingChangeType['DIRECTIVE_LOCATION_REMOVED'] =\n 'DIRECTIVE_LOCATION_REMOVED';\n})(BreakingChangeType || (BreakingChangeType = {}));\n\nexport let DangerousChangeType;\n\n(function (DangerousChangeType) {\n DangerousChangeType['VALUE_ADDED_TO_ENUM'] = 'VALUE_ADDED_TO_ENUM';\n DangerousChangeType['TYPE_ADDED_TO_UNION'] = 'TYPE_ADDED_TO_UNION';\n DangerousChangeType['OPTIONAL_INPUT_FIELD_ADDED'] =\n 'OPTIONAL_INPUT_FIELD_ADDED';\n DangerousChangeType['OPTIONAL_ARG_ADDED'] = 'OPTIONAL_ARG_ADDED';\n DangerousChangeType['IMPLEMENTED_INTERFACE_ADDED'] =\n 'IMPLEMENTED_INTERFACE_ADDED';\n DangerousChangeType['ARG_DEFAULT_VALUE_CHANGE'] = 'ARG_DEFAULT_VALUE_CHANGE';\n})(DangerousChangeType || (DangerousChangeType = {}));\n\n/**\n * Given two schemas, returns an Array containing descriptions of all the types\n * of breaking changes covered by the other functions down below.\n */\nexport function findBreakingChanges(oldSchema, newSchema) {\n // @ts-expect-error\n return findSchemaChanges(oldSchema, newSchema).filter(\n (change) => change.type in BreakingChangeType,\n );\n}\n/**\n * Given two schemas, returns an Array containing descriptions of all the types\n * of potentially dangerous changes covered by the other functions down below.\n */\n\nexport function findDangerousChanges(oldSchema, newSchema) {\n // @ts-expect-error\n return findSchemaChanges(oldSchema, newSchema).filter(\n (change) => change.type in DangerousChangeType,\n );\n}\n\nfunction findSchemaChanges(oldSchema, newSchema) {\n return [\n ...findTypeChanges(oldSchema, newSchema),\n ...findDirectiveChanges(oldSchema, newSchema),\n ];\n}\n\nfunction findDirectiveChanges(oldSchema, newSchema) {\n const schemaChanges = [];\n const directivesDiff = diff(\n oldSchema.getDirectives(),\n newSchema.getDirectives(),\n );\n\n for (const oldDirective of directivesDiff.removed) {\n schemaChanges.push({\n type: BreakingChangeType.DIRECTIVE_REMOVED,\n description: `${oldDirective.name} was removed.`,\n });\n }\n\n for (const [oldDirective, newDirective] of directivesDiff.persisted) {\n const argsDiff = diff(oldDirective.args, newDirective.args);\n\n for (const newArg of argsDiff.added) {\n if (isRequiredArgument(newArg)) {\n schemaChanges.push({\n type: BreakingChangeType.REQUIRED_DIRECTIVE_ARG_ADDED,\n description: `A required arg ${newArg.name} on directive ${oldDirective.name} was added.`,\n });\n }\n }\n\n for (const oldArg of argsDiff.removed) {\n schemaChanges.push({\n type: BreakingChangeType.DIRECTIVE_ARG_REMOVED,\n description: `${oldArg.name} was removed from ${oldDirective.name}.`,\n });\n }\n\n if (oldDirective.isRepeatable && !newDirective.isRepeatable) {\n schemaChanges.push({\n type: BreakingChangeType.DIRECTIVE_REPEATABLE_REMOVED,\n description: `Repeatable flag was removed from ${oldDirective.name}.`,\n });\n }\n\n for (const location of oldDirective.locations) {\n if (!newDirective.locations.includes(location)) {\n schemaChanges.push({\n type: BreakingChangeType.DIRECTIVE_LOCATION_REMOVED,\n description: `${location} was removed from ${oldDirective.name}.`,\n });\n }\n }\n }\n\n return schemaChanges;\n}\n\nfunction findTypeChanges(oldSchema, newSchema) {\n const schemaChanges = [];\n const typesDiff = diff(\n Object.values(oldSchema.getTypeMap()),\n Object.values(newSchema.getTypeMap()),\n );\n\n for (const oldType of typesDiff.removed) {\n schemaChanges.push({\n type: BreakingChangeType.TYPE_REMOVED,\n description: isSpecifiedScalarType(oldType)\n ? `Standard scalar ${oldType.name} was removed because it is not referenced anymore.`\n : `${oldType.name} was removed.`,\n });\n }\n\n for (const [oldType, newType] of typesDiff.persisted) {\n if (isEnumType(oldType) && isEnumType(newType)) {\n schemaChanges.push(...findEnumTypeChanges(oldType, newType));\n } else if (isUnionType(oldType) && isUnionType(newType)) {\n schemaChanges.push(...findUnionTypeChanges(oldType, newType));\n } else if (isInputObjectType(oldType) && isInputObjectType(newType)) {\n schemaChanges.push(...findInputObjectTypeChanges(oldType, newType));\n } else if (isObjectType(oldType) && isObjectType(newType)) {\n schemaChanges.push(\n ...findFieldChanges(oldType, newType),\n ...findImplementedInterfacesChanges(oldType, newType),\n );\n } else if (isInterfaceType(oldType) && isInterfaceType(newType)) {\n schemaChanges.push(\n ...findFieldChanges(oldType, newType),\n ...findImplementedInterfacesChanges(oldType, newType),\n );\n } else if (oldType.constructor !== newType.constructor) {\n schemaChanges.push({\n type: BreakingChangeType.TYPE_CHANGED_KIND,\n description:\n `${oldType.name} changed from ` +\n `${typeKindName(oldType)} to ${typeKindName(newType)}.`,\n });\n }\n }\n\n return schemaChanges;\n}\n\nfunction findInputObjectTypeChanges(oldType, newType) {\n const schemaChanges = [];\n const fieldsDiff = diff(\n Object.values(oldType.getFields()),\n Object.values(newType.getFields()),\n );\n\n for (const newField of fieldsDiff.added) {\n if (isRequiredInputField(newField)) {\n schemaChanges.push({\n type: BreakingChangeType.REQUIRED_INPUT_FIELD_ADDED,\n description: `A required field ${newField.name} on input type ${oldType.name} was added.`,\n });\n } else {\n schemaChanges.push({\n type: DangerousChangeType.OPTIONAL_INPUT_FIELD_ADDED,\n description: `An optional field ${newField.name} on input type ${oldType.name} was added.`,\n });\n }\n }\n\n for (const oldField of fieldsDiff.removed) {\n schemaChanges.push({\n type: BreakingChangeType.FIELD_REMOVED,\n description: `${oldType.name}.${oldField.name} was removed.`,\n });\n }\n\n for (const [oldField, newField] of fieldsDiff.persisted) {\n const isSafe = isChangeSafeForInputObjectFieldOrFieldArg(\n oldField.type,\n newField.type,\n );\n\n if (!isSafe) {\n schemaChanges.push({\n type: BreakingChangeType.FIELD_CHANGED_KIND,\n description:\n `${oldType.name}.${oldField.name} changed type from ` +\n `${String(oldField.type)} to ${String(newField.type)}.`,\n });\n }\n }\n\n return schemaChanges;\n}\n\nfunction findUnionTypeChanges(oldType, newType) {\n const schemaChanges = [];\n const possibleTypesDiff = diff(oldType.getTypes(), newType.getTypes());\n\n for (const newPossibleType of possibleTypesDiff.added) {\n schemaChanges.push({\n type: DangerousChangeType.TYPE_ADDED_TO_UNION,\n description: `${newPossibleType.name} was added to union type ${oldType.name}.`,\n });\n }\n\n for (const oldPossibleType of possibleTypesDiff.removed) {\n schemaChanges.push({\n type: BreakingChangeType.TYPE_REMOVED_FROM_UNION,\n description: `${oldPossibleType.name} was removed from union type ${oldType.name}.`,\n });\n }\n\n return schemaChanges;\n}\n\nfunction findEnumTypeChanges(oldType, newType) {\n const schemaChanges = [];\n const valuesDiff = diff(oldType.getValues(), newType.getValues());\n\n for (const newValue of valuesDiff.added) {\n schemaChanges.push({\n type: DangerousChangeType.VALUE_ADDED_TO_ENUM,\n description: `${newValue.name} was added to enum type ${oldType.name}.`,\n });\n }\n\n for (const oldValue of valuesDiff.removed) {\n schemaChanges.push({\n type: BreakingChangeType.VALUE_REMOVED_FROM_ENUM,\n description: `${oldValue.name} was removed from enum type ${oldType.name}.`,\n });\n }\n\n return schemaChanges;\n}\n\nfunction findImplementedInterfacesChanges(oldType, newType) {\n const schemaChanges = [];\n const interfacesDiff = diff(oldType.getInterfaces(), newType.getInterfaces());\n\n for (const newInterface of interfacesDiff.added) {\n schemaChanges.push({\n type: DangerousChangeType.IMPLEMENTED_INTERFACE_ADDED,\n description: `${newInterface.name} added to interfaces implemented by ${oldType.name}.`,\n });\n }\n\n for (const oldInterface of interfacesDiff.removed) {\n schemaChanges.push({\n type: BreakingChangeType.IMPLEMENTED_INTERFACE_REMOVED,\n description: `${oldType.name} no longer implements interface ${oldInterface.name}.`,\n });\n }\n\n return schemaChanges;\n}\n\nfunction findFieldChanges(oldType, newType) {\n const schemaChanges = [];\n const fieldsDiff = diff(\n Object.values(oldType.getFields()),\n Object.values(newType.getFields()),\n );\n\n for (const oldField of fieldsDiff.removed) {\n schemaChanges.push({\n type: BreakingChangeType.FIELD_REMOVED,\n description: `${oldType.name}.${oldField.name} was removed.`,\n });\n }\n\n for (const [oldField, newField] of fieldsDiff.persisted) {\n schemaChanges.push(...findArgChanges(oldType, oldField, newField));\n const isSafe = isChangeSafeForObjectOrInterfaceField(\n oldField.type,\n newField.type,\n );\n\n if (!isSafe) {\n schemaChanges.push({\n type: BreakingChangeType.FIELD_CHANGED_KIND,\n description:\n `${oldType.name}.${oldField.name} changed type from ` +\n `${String(oldField.type)} to ${String(newField.type)}.`,\n });\n }\n }\n\n return schemaChanges;\n}\n\nfunction findArgChanges(oldType, oldField, newField) {\n const schemaChanges = [];\n const argsDiff = diff(oldField.args, newField.args);\n\n for (const oldArg of argsDiff.removed) {\n schemaChanges.push({\n type: BreakingChangeType.ARG_REMOVED,\n description: `${oldType.name}.${oldField.name} arg ${oldArg.name} was removed.`,\n });\n }\n\n for (const [oldArg, newArg] of argsDiff.persisted) {\n const isSafe = isChangeSafeForInputObjectFieldOrFieldArg(\n oldArg.type,\n newArg.type,\n );\n\n if (!isSafe) {\n schemaChanges.push({\n type: BreakingChangeType.ARG_CHANGED_KIND,\n description:\n `${oldType.name}.${oldField.name} arg ${oldArg.name} has changed type from ` +\n `${String(oldArg.type)} to ${String(newArg.type)}.`,\n });\n } else if (oldArg.defaultValue !== undefined) {\n if (newArg.defaultValue === undefined) {\n schemaChanges.push({\n type: DangerousChangeType.ARG_DEFAULT_VALUE_CHANGE,\n description: `${oldType.name}.${oldField.name} arg ${oldArg.name} defaultValue was removed.`,\n });\n } else {\n // Since we looking only for client's observable changes we should\n // compare default values in the same representation as they are\n // represented inside introspection.\n const oldValueStr = stringifyValue(oldArg.defaultValue, oldArg.type);\n const newValueStr = stringifyValue(newArg.defaultValue, newArg.type);\n\n if (oldValueStr !== newValueStr) {\n schemaChanges.push({\n type: DangerousChangeType.ARG_DEFAULT_VALUE_CHANGE,\n description: `${oldType.name}.${oldField.name} arg ${oldArg.name} has changed defaultValue from ${oldValueStr} to ${newValueStr}.`,\n });\n }\n }\n }\n }\n\n for (const newArg of argsDiff.added) {\n if (isRequiredArgument(newArg)) {\n schemaChanges.push({\n type: BreakingChangeType.REQUIRED_ARG_ADDED,\n description: `A required arg ${newArg.name} on ${oldType.name}.${oldField.name} was added.`,\n });\n } else {\n schemaChanges.push({\n type: DangerousChangeType.OPTIONAL_ARG_ADDED,\n description: `An optional arg ${newArg.name} on ${oldType.name}.${oldField.name} was added.`,\n });\n }\n }\n\n return schemaChanges;\n}\n\nfunction isChangeSafeForObjectOrInterfaceField(oldType, newType) {\n if (isListType(oldType)) {\n return (\n // if they're both lists, make sure the underlying types are compatible\n (isListType(newType) &&\n isChangeSafeForObjectOrInterfaceField(\n oldType.ofType,\n newType.ofType,\n )) || // moving from nullable to non-null of the same underlying type is safe\n (isNonNullType(newType) &&\n isChangeSafeForObjectOrInterfaceField(oldType, newType.ofType))\n );\n }\n\n if (isNonNullType(oldType)) {\n // if they're both non-null, make sure the underlying types are compatible\n return (\n isNonNullType(newType) &&\n isChangeSafeForObjectOrInterfaceField(oldType.ofType, newType.ofType)\n );\n }\n\n return (\n // if they're both named types, see if their names are equivalent\n (isNamedType(newType) && oldType.name === newType.name) || // moving from nullable to non-null of the same underlying type is safe\n (isNonNullType(newType) &&\n isChangeSafeForObjectOrInterfaceField(oldType, newType.ofType))\n );\n}\n\nfunction isChangeSafeForInputObjectFieldOrFieldArg(oldType, newType) {\n if (isListType(oldType)) {\n // if they're both lists, make sure the underlying types are compatible\n return (\n isListType(newType) &&\n isChangeSafeForInputObjectFieldOrFieldArg(oldType.ofType, newType.ofType)\n );\n }\n\n if (isNonNullType(oldType)) {\n return (\n // if they're both non-null, make sure the underlying types are\n // compatible\n (isNonNullType(newType) &&\n isChangeSafeForInputObjectFieldOrFieldArg(\n oldType.ofType,\n newType.ofType,\n )) || // moving from non-null to nullable of the same underlying type is safe\n (!isNonNullType(newType) &&\n isChangeSafeForInputObjectFieldOrFieldArg(oldType.ofType, newType))\n );\n } // if they're both named types, see if their names are equivalent\n\n return isNamedType(newType) && oldType.name === newType.name;\n}\n\nfunction typeKindName(type) {\n if (isScalarType(type)) {\n return 'a Scalar type';\n }\n\n if (isObjectType(type)) {\n return 'an Object type';\n }\n\n if (isInterfaceType(type)) {\n return 'an Interface type';\n }\n\n if (isUnionType(type)) {\n return 'a Union type';\n }\n\n if (isEnumType(type)) {\n return 'an Enum type';\n }\n\n if (isInputObjectType(type)) {\n return 'an Input type';\n }\n /* c8 ignore next 3 */\n // Not reachable, all possible types have been considered.\n\n false || invariant(false, 'Unexpected type: ' + inspect(type));\n}\n\nfunction stringifyValue(value, type) {\n const ast = astFromValue(value, type);\n ast != null || invariant(false);\n return print(sortValueNode(ast));\n}\n\nfunction diff(oldArray, newArray) {\n const added = [];\n const removed = [];\n const persisted = [];\n const oldMap = keyMap(oldArray, ({ name }) => name);\n const newMap = keyMap(newArray, ({ name }) => name);\n\n for (const oldItem of oldArray) {\n const newItem = newMap[oldItem.name];\n\n if (newItem === undefined) {\n removed.push(oldItem);\n } else {\n persisted.push([oldItem, newItem]);\n }\n }\n\n for (const newItem of newArray) {\n if (oldMap[newItem.name] === undefined) {\n added.push(newItem);\n }\n }\n\n return {\n added,\n persisted,\n removed,\n };\n}\n","/**\n * GraphQL.js provides a reference implementation for the GraphQL specification\n * but is also a useful utility for operating on GraphQL files and building\n * sophisticated tools.\n *\n * This primary module exports a general purpose function for fulfilling all\n * steps of the GraphQL specification in a single operation, but also includes\n * utilities for every part of the GraphQL specification:\n *\n * - Parsing the GraphQL language.\n * - Building a GraphQL type schema.\n * - Validating a GraphQL request against a type schema.\n * - Executing a GraphQL request against a type schema.\n *\n * This also includes utility functions for operating on GraphQL types and\n * GraphQL documents to facilitate building tools.\n *\n * You may also import from each sub-directory directly. For example, the\n * following two import statements are equivalent:\n *\n * ```ts\n * import { parse } from 'graphql';\n * import { parse } from 'graphql/language';\n * ```\n *\n * @packageDocumentation\n */\n// The GraphQL.js version info.\nexport { version, versionInfo } from './version.mjs'; // The primary entry point into fulfilling a GraphQL request.\n\nexport { graphql, graphqlSync } from './graphql.mjs'; // Create and operate on GraphQL type definitions and schema.\n\nexport {\n resolveObjMapThunk,\n resolveReadonlyArrayThunk, // Definitions\n GraphQLSchema,\n GraphQLDirective,\n GraphQLScalarType,\n GraphQLObjectType,\n GraphQLInterfaceType,\n GraphQLUnionType,\n GraphQLEnumType,\n GraphQLInputObjectType,\n GraphQLList,\n GraphQLNonNull, // Standard GraphQL Scalars\n specifiedScalarTypes,\n GraphQLInt,\n GraphQLFloat,\n GraphQLString,\n GraphQLBoolean,\n GraphQLID, // Int boundaries constants\n GRAPHQL_MAX_INT,\n GRAPHQL_MIN_INT, // Built-in Directives defined by the Spec\n specifiedDirectives,\n GraphQLIncludeDirective,\n GraphQLSkipDirective,\n GraphQLDeprecatedDirective,\n GraphQLSpecifiedByDirective, // \"Enum\" of Type Kinds\n TypeKind, // Constant Deprecation Reason\n DEFAULT_DEPRECATION_REASON, // GraphQL Types for introspection.\n introspectionTypes,\n __Schema,\n __Directive,\n __DirectiveLocation,\n __Type,\n __Field,\n __InputValue,\n __EnumValue,\n __TypeKind, // Meta-field definitions.\n SchemaMetaFieldDef,\n TypeMetaFieldDef,\n TypeNameMetaFieldDef, // Predicates\n isSchema,\n isDirective,\n isType,\n isScalarType,\n isObjectType,\n isInterfaceType,\n isUnionType,\n isEnumType,\n isInputObjectType,\n isListType,\n isNonNullType,\n isInputType,\n isOutputType,\n isLeafType,\n isCompositeType,\n isAbstractType,\n isWrappingType,\n isNullableType,\n isNamedType,\n isRequiredArgument,\n isRequiredInputField,\n isSpecifiedScalarType,\n isIntrospectionType,\n isSpecifiedDirective, // Assertions\n assertSchema,\n assertDirective,\n assertType,\n assertScalarType,\n assertObjectType,\n assertInterfaceType,\n assertUnionType,\n assertEnumType,\n assertInputObjectType,\n assertListType,\n assertNonNullType,\n assertInputType,\n assertOutputType,\n assertLeafType,\n assertCompositeType,\n assertAbstractType,\n assertWrappingType,\n assertNullableType,\n assertNamedType, // Un-modifiers\n getNullableType,\n getNamedType, // Validate GraphQL schema.\n validateSchema,\n assertValidSchema, // Upholds the spec rules about naming.\n assertName,\n assertEnumValueName,\n} from './type/index.mjs';\n// Parse and operate on GraphQL language source files.\nexport {\n Token,\n Source,\n Location,\n OperationTypeNode,\n getLocation, // Print source location.\n printLocation,\n printSourceLocation, // Lex\n Lexer,\n TokenKind, // Parse\n parse,\n parseValue,\n parseConstValue,\n parseType, // Print\n print, // Visit\n visit,\n visitInParallel,\n getVisitFn,\n getEnterLeaveForKind,\n BREAK,\n Kind,\n DirectiveLocation, // Predicates\n isDefinitionNode,\n isExecutableDefinitionNode,\n isSelectionNode,\n isValueNode,\n isConstValueNode,\n isTypeNode,\n isTypeSystemDefinitionNode,\n isTypeDefinitionNode,\n isTypeSystemExtensionNode,\n isTypeExtensionNode,\n} from './language/index.mjs';\n// Execute GraphQL queries.\nexport {\n execute,\n executeSync,\n defaultFieldResolver,\n defaultTypeResolver,\n responsePathAsArray,\n getVariableValues,\n getDirectiveValues,\n subscribe,\n createSourceEventStream,\n} from './execution/index.mjs';\n// Validate GraphQL documents.\nexport {\n validate,\n ValidationContext, // All validation rules in the GraphQL Specification.\n specifiedRules, // Individual validation rules.\n ExecutableDefinitionsRule,\n FieldsOnCorrectTypeRule,\n FragmentsOnCompositeTypesRule,\n KnownArgumentNamesRule,\n KnownDirectivesRule,\n KnownFragmentNamesRule,\n KnownTypeNamesRule,\n LoneAnonymousOperationRule,\n NoFragmentCyclesRule,\n NoUndefinedVariablesRule,\n NoUnusedFragmentsRule,\n NoUnusedVariablesRule,\n OverlappingFieldsCanBeMergedRule,\n PossibleFragmentSpreadsRule,\n ProvidedRequiredArgumentsRule,\n ScalarLeafsRule,\n SingleFieldSubscriptionsRule,\n UniqueArgumentNamesRule,\n UniqueDirectivesPerLocationRule,\n UniqueFragmentNamesRule,\n UniqueInputFieldNamesRule,\n UniqueOperationNamesRule,\n UniqueVariableNamesRule,\n ValuesOfCorrectTypeRule,\n VariablesAreInputTypesRule,\n VariablesInAllowedPositionRule, // SDL-specific validation rules\n LoneSchemaDefinitionRule,\n UniqueOperationTypesRule,\n UniqueTypeNamesRule,\n UniqueEnumValueNamesRule,\n UniqueFieldDefinitionNamesRule,\n UniqueArgumentDefinitionNamesRule,\n UniqueDirectiveNamesRule,\n PossibleTypeExtensionsRule, // Custom validation rules\n NoDeprecatedCustomRule,\n NoSchemaIntrospectionCustomRule,\n} from './validation/index.mjs';\n// Create, format, and print GraphQL errors.\nexport {\n GraphQLError,\n syntaxError,\n locatedError,\n printError,\n formatError,\n} from './error/index.mjs';\n// Utilities for operating on GraphQL type schema and parsed sources.\nexport {\n // Produce the GraphQL query recommended for a full schema introspection.\n // Accepts optional IntrospectionOptions.\n getIntrospectionQuery, // Gets the target Operation from a Document.\n getOperationAST, // Gets the Type for the target Operation AST.\n getOperationRootType, // Convert a GraphQLSchema to an IntrospectionQuery.\n introspectionFromSchema, // Build a GraphQLSchema from an introspection result.\n buildClientSchema, // Build a GraphQLSchema from a parsed GraphQL Schema language AST.\n buildASTSchema, // Build a GraphQLSchema from a GraphQL schema language document.\n buildSchema, // Extends an existing GraphQLSchema from a parsed GraphQL Schema language AST.\n extendSchema, // Sort a GraphQLSchema.\n lexicographicSortSchema, // Print a GraphQLSchema to GraphQL Schema language.\n printSchema, // Print a GraphQLType to GraphQL Schema language.\n printType, // Prints the built-in introspection schema in the Schema Language format.\n printIntrospectionSchema, // Create a GraphQLType from a GraphQL language AST.\n typeFromAST, // Create a JavaScript value from a GraphQL language AST with a Type.\n valueFromAST, // Create a JavaScript value from a GraphQL language AST without a Type.\n valueFromASTUntyped, // Create a GraphQL language AST from a JavaScript value.\n astFromValue, // A helper to use within recursive-descent visitors which need to be aware of the GraphQL type system.\n TypeInfo,\n visitWithTypeInfo, // Coerces a JavaScript value to a GraphQL type, or produces errors.\n coerceInputValue, // Concatenates multiple AST together.\n concatAST, // Separates an AST into an AST per Operation.\n separateOperations, // Strips characters that are not significant to the validity or execution of a GraphQL document.\n stripIgnoredCharacters, // Comparators for types\n isEqualType,\n isTypeSubTypeOf,\n doTypesOverlap, // Asserts a string is a valid GraphQL name.\n assertValidName, // Determine if a string is a valid GraphQL name.\n isValidNameError, // Compares two GraphQLSchemas and detects breaking changes.\n BreakingChangeType,\n DangerousChangeType,\n findBreakingChanges,\n findDangerousChanges,\n} from './utilities/index.mjs';\n","Object.defineProperty(exports, \"__esModule\", { value: true });\nexports.introspect = exports.batchIntrospect = void 0;\nconst graphql_1 = require(\"graphql\");\nfunction batchIntrospect(sdl, queries) {\n let schema;\n try {\n schema = (0, graphql_1.buildSchema)(sdl);\n }\n catch (e) {\n return Array(queries.length).fill({\n errors: [e],\n });\n }\n if (!schema) {\n return Array(queries.length).fill({\n errors: [new Error(`couldn't build schema from SDL`)],\n });\n }\n return queries.map((query) => introspectOne(schema, query));\n}\nexports.batchIntrospect = batchIntrospect;\nfunction introspect(sdl, query) {\n let schema;\n try {\n schema = (0, graphql_1.buildSchema)(sdl);\n }\n catch (e) {\n return {\n errors: [e],\n };\n }\n if (!schema) {\n return {\n errors: [new graphql_1.GraphQLError(\"couldn't build schema from SDL\")],\n };\n }\n return introspectOne(schema, query);\n}\nexports.introspect = introspect;\nconst introspectOne = (schema, query) => {\n const { data, errors } = (0, graphql_1.graphqlSync)({ schema, source: query });\n if (errors) {\n return { data, errors: [...errors] };\n }\n else {\n return { data, errors: [] };\n }\n};\n//# sourceMappingURL=introspection.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nconst graphql_1 = require(\"graphql\");\nexports.default = {\n test(value) {\n return value && value.kind === 'QueryPlan';\n },\n serialize(queryPlan, config, indentation, depth, refs, printer) {\n return ('QueryPlan {' +\n printNodes(queryPlan.node ? [queryPlan.node] : undefined, config, indentation, depth, refs, printer) +\n '}');\n },\n};\nfunction printNode(node, config, indentation, depth, refs, printer) {\n let result = '';\n const indentationNext = indentation + config.indent;\n switch (node.kind) {\n case 'Fetch':\n result +=\n `Fetch(service: \"${node.serviceName}\")` +\n ' {' +\n config.spacingOuter +\n (node.requires\n ? printer({ kind: graphql_1.Kind.SELECTION_SET, selections: node.requires }, config, indentationNext, depth, refs, printer) +\n ' =>' +\n config.spacingOuter\n : '') +\n printer(flattenEntitiesField((0, graphql_1.parse)(node.operation)), config, indentationNext, depth, refs, printer) +\n config.spacingOuter +\n indentation +\n '}';\n break;\n case 'Flatten':\n result += `Flatten(path: \"${node.path.join('.')}\")`;\n break;\n default:\n result += node.kind;\n }\n const nodes = 'nodes' in node ? node.nodes : 'node' in node ? [node.node] : [];\n if (nodes.length > 0) {\n result +=\n ' {' + printNodes(nodes, config, indentation, depth, refs, printer) + '}';\n }\n return result;\n}\nfunction printNodes(nodes, config, indentation, depth, refs, printer) {\n let result = '';\n if (nodes && nodes.length > 0) {\n result += config.spacingOuter;\n const indentationNext = indentation + config.indent;\n for (let i = 0; i < nodes.length; i++) {\n const node = nodes[i];\n if (!node)\n continue;\n result +=\n indentationNext +\n printNode(node, config, indentationNext, depth, refs, printer);\n if (i < nodes.length - 1) {\n result += ',' + config.spacingInner;\n }\n else if (!config.min) {\n result += ',';\n }\n }\n result += config.spacingOuter + indentation;\n }\n return result;\n}\nfunction flattenEntitiesField(node) {\n return (0, graphql_1.visit)(node, {\n OperationDefinition: ({ operation, selectionSet }) => {\n const firstSelection = selectionSet.selections[0];\n if (operation === 'query' &&\n firstSelection.kind === graphql_1.Kind.FIELD &&\n firstSelection.name.value === '_entities') {\n return firstSelection.selectionSet;\n }\n return selectionSet;\n },\n });\n}\n//# sourceMappingURL=queryPlanSerializer.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.remapInlineFragmentNodes = void 0;\nconst graphql_1 = require(\"graphql\");\nexports.default = {\n test(value) {\n return value && typeof value.kind === 'string';\n },\n serialize(value, config, indentation, _depth, _refs, _printer) {\n const lines = (0, graphql_1.print)(remapInlineFragmentNodes(value)).trim().split('\\n');\n if (lines.length === 0) {\n return '';\n }\n else if (lines.length === 1) {\n return lines[0];\n }\n return lines.map(line => {\n const indentationLength = getIndentationLength(line);\n const dedentedLine = line.slice(indentationLength);\n const indentationDepth = indentationLength / 2;\n return indentation + config.indent.repeat(indentationDepth) + dedentedLine;\n }).join(config.spacingOuter);\n },\n};\nfunction getIndentationLength(line) {\n const result = /^( {2})+/.exec(line);\n return result === null ? 0 : result[0].length;\n}\nfunction remapInlineFragmentNodes(node) {\n return (0, graphql_1.visit)(node, {\n InlineFragment: (fragmentNode) => {\n if (fragmentNode.selectionSet)\n return fragmentNode;\n return {\n kind: graphql_1.Kind.INLINE_FRAGMENT,\n typeCondition: fragmentNode.typeCondition\n ? {\n kind: graphql_1.Kind.NAMED_TYPE,\n name: {\n kind: graphql_1.Kind.NAME,\n value: fragmentNode.typeCondition,\n },\n }\n : undefined,\n selectionSet: {\n kind: graphql_1.Kind.SELECTION_SET,\n selections: remapSelections(fragmentNode.selections),\n },\n };\n },\n });\n}\nexports.remapInlineFragmentNodes = remapInlineFragmentNodes;\nfunction remapSelections(selections) {\n return selections.map((selection) => {\n switch (selection.kind) {\n case 'Field':\n return {\n kind: graphql_1.Kind.FIELD,\n name: {\n kind: graphql_1.Kind.NAME,\n value: selection.name,\n },\n selectionSet: {\n kind: graphql_1.Kind.SELECTION_SET,\n selections: remapSelections(selection.selections || []),\n },\n };\n case 'InlineFragment':\n return {\n kind: graphql_1.Kind.INLINE_FRAGMENT,\n selectionSet: {\n kind: graphql_1.Kind.SELECTION_SET,\n selections: remapSelections(selection.selections || []),\n },\n typeCondition: selection.typeCondition\n ? {\n kind: graphql_1.Kind.NAMED_TYPE,\n name: {\n kind: graphql_1.Kind.NAME,\n value: selection.typeCondition,\n },\n }\n : undefined,\n };\n }\n });\n}\n//# sourceMappingURL=astSerializer.js.map","\"use strict\";\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.astSerializer = exports.queryPlanSerializer = void 0;\nvar queryPlanSerializer_1 = require(\"./queryPlanSerializer\");\nObject.defineProperty(exports, \"queryPlanSerializer\", { enumerable: true, get: function () { return __importDefault(queryPlanSerializer_1).default; } });\nvar astSerializer_1 = require(\"./astSerializer\");\nObject.defineProperty(exports, \"astSerializer\", { enumerable: true, get: function () { return __importDefault(astSerializer_1).default; } });\n//# sourceMappingURL=index.js.map","'use strict';\n\nconst ANSI_BACKGROUND_OFFSET = 10;\n\nconst wrapAnsi256 = (offset = 0) => code => `\\u001B[${38 + offset};5;${code}m`;\n\nconst wrapAnsi16m = (offset = 0) => (red, green, blue) => `\\u001B[${38 + offset};2;${red};${green};${blue}m`;\n\nfunction assembleStyles() {\n\tconst codes = new Map();\n\tconst styles = {\n\t\tmodifier: {\n\t\t\treset: [0, 0],\n\t\t\t// 21 isn't widely supported and 22 does the same thing\n\t\t\tbold: [1, 22],\n\t\t\tdim: [2, 22],\n\t\t\titalic: [3, 23],\n\t\t\tunderline: [4, 24],\n\t\t\toverline: [53, 55],\n\t\t\tinverse: [7, 27],\n\t\t\thidden: [8, 28],\n\t\t\tstrikethrough: [9, 29]\n\t\t},\n\t\tcolor: {\n\t\t\tblack: [30, 39],\n\t\t\tred: [31, 39],\n\t\t\tgreen: [32, 39],\n\t\t\tyellow: [33, 39],\n\t\t\tblue: [34, 39],\n\t\t\tmagenta: [35, 39],\n\t\t\tcyan: [36, 39],\n\t\t\twhite: [37, 39],\n\n\t\t\t// Bright color\n\t\t\tblackBright: [90, 39],\n\t\t\tredBright: [91, 39],\n\t\t\tgreenBright: [92, 39],\n\t\t\tyellowBright: [93, 39],\n\t\t\tblueBright: [94, 39],\n\t\t\tmagentaBright: [95, 39],\n\t\t\tcyanBright: [96, 39],\n\t\t\twhiteBright: [97, 39]\n\t\t},\n\t\tbgColor: {\n\t\t\tbgBlack: [40, 49],\n\t\t\tbgRed: [41, 49],\n\t\t\tbgGreen: [42, 49],\n\t\t\tbgYellow: [43, 49],\n\t\t\tbgBlue: [44, 49],\n\t\t\tbgMagenta: [45, 49],\n\t\t\tbgCyan: [46, 49],\n\t\t\tbgWhite: [47, 49],\n\n\t\t\t// Bright color\n\t\t\tbgBlackBright: [100, 49],\n\t\t\tbgRedBright: [101, 49],\n\t\t\tbgGreenBright: [102, 49],\n\t\t\tbgYellowBright: [103, 49],\n\t\t\tbgBlueBright: [104, 49],\n\t\t\tbgMagentaBright: [105, 49],\n\t\t\tbgCyanBright: [106, 49],\n\t\t\tbgWhiteBright: [107, 49]\n\t\t}\n\t};\n\n\t// Alias bright black as gray (and grey)\n\tstyles.color.gray = styles.color.blackBright;\n\tstyles.bgColor.bgGray = styles.bgColor.bgBlackBright;\n\tstyles.color.grey = styles.color.blackBright;\n\tstyles.bgColor.bgGrey = styles.bgColor.bgBlackBright;\n\n\tfor (const [groupName, group] of Object.entries(styles)) {\n\t\tfor (const [styleName, style] of Object.entries(group)) {\n\t\t\tstyles[styleName] = {\n\t\t\t\topen: `\\u001B[${style[0]}m`,\n\t\t\t\tclose: `\\u001B[${style[1]}m`\n\t\t\t};\n\n\t\t\tgroup[styleName] = styles[styleName];\n\n\t\t\tcodes.set(style[0], style[1]);\n\t\t}\n\n\t\tObject.defineProperty(styles, groupName, {\n\t\t\tvalue: group,\n\t\t\tenumerable: false\n\t\t});\n\t}\n\n\tObject.defineProperty(styles, 'codes', {\n\t\tvalue: codes,\n\t\tenumerable: false\n\t});\n\n\tstyles.color.close = '\\u001B[39m';\n\tstyles.bgColor.close = '\\u001B[49m';\n\n\tstyles.color.ansi256 = wrapAnsi256();\n\tstyles.color.ansi16m = wrapAnsi16m();\n\tstyles.bgColor.ansi256 = wrapAnsi256(ANSI_BACKGROUND_OFFSET);\n\tstyles.bgColor.ansi16m = wrapAnsi16m(ANSI_BACKGROUND_OFFSET);\n\n\t// From https://github.com/Qix-/color-convert/blob/3f0e0d4e92e235796ccb17f6e85c72094a651f49/conversions.js\n\tObject.defineProperties(styles, {\n\t\trgbToAnsi256: {\n\t\t\tvalue: (red, green, blue) => {\n\t\t\t\t// We use the extended greyscale palette here, with the exception of\n\t\t\t\t// black and white. normal palette only has 4 greyscale shades.\n\t\t\t\tif (red === green && green === blue) {\n\t\t\t\t\tif (red < 8) {\n\t\t\t\t\t\treturn 16;\n\t\t\t\t\t}\n\n\t\t\t\t\tif (red > 248) {\n\t\t\t\t\t\treturn 231;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn Math.round(((red - 8) / 247) * 24) + 232;\n\t\t\t\t}\n\n\t\t\t\treturn 16 +\n\t\t\t\t\t(36 * Math.round(red / 255 * 5)) +\n\t\t\t\t\t(6 * Math.round(green / 255 * 5)) +\n\t\t\t\t\tMath.round(blue / 255 * 5);\n\t\t\t},\n\t\t\tenumerable: false\n\t\t},\n\t\thexToRgb: {\n\t\t\tvalue: hex => {\n\t\t\t\tconst matches = /(?[a-f\\d]{6}|[a-f\\d]{3})/i.exec(hex.toString(16));\n\t\t\t\tif (!matches) {\n\t\t\t\t\treturn [0, 0, 0];\n\t\t\t\t}\n\n\t\t\t\tlet {colorString} = matches.groups;\n\n\t\t\t\tif (colorString.length === 3) {\n\t\t\t\t\tcolorString = colorString.split('').map(character => character + character).join('');\n\t\t\t\t}\n\n\t\t\t\tconst integer = Number.parseInt(colorString, 16);\n\n\t\t\t\treturn [\n\t\t\t\t\t(integer >> 16) & 0xFF,\n\t\t\t\t\t(integer >> 8) & 0xFF,\n\t\t\t\t\tinteger & 0xFF\n\t\t\t\t];\n\t\t\t},\n\t\t\tenumerable: false\n\t\t},\n\t\thexToAnsi256: {\n\t\t\tvalue: hex => styles.rgbToAnsi256(...styles.hexToRgb(hex)),\n\t\t\tenumerable: false\n\t\t}\n\t});\n\n\treturn styles;\n}\n\n// Make the export immutable\nObject.defineProperty(module, 'exports', {\n\tenumerable: true,\n\tget: assembleStyles\n});\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\nexports.printIteratorEntries = printIteratorEntries;\nexports.printIteratorValues = printIteratorValues;\nexports.printListItems = printListItems;\nexports.printObjectProperties = printObjectProperties;\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n */\nconst getKeysOfEnumerableProperties = (object, compareKeys) => {\n const keys = Object.keys(object).sort(compareKeys);\n\n if (Object.getOwnPropertySymbols) {\n Object.getOwnPropertySymbols(object).forEach(symbol => {\n if (Object.getOwnPropertyDescriptor(object, symbol).enumerable) {\n keys.push(symbol);\n }\n });\n }\n\n return keys;\n};\n/**\n * Return entries (for example, of a map)\n * with spacing, indentation, and comma\n * without surrounding punctuation (for example, braces)\n */\n\nfunction printIteratorEntries(\n iterator,\n config,\n indentation,\n depth,\n refs,\n printer, // Too bad, so sad that separator for ECMAScript Map has been ' => '\n // What a distracting diff if you change a data structure to/from\n // ECMAScript Object or Immutable.Map/OrderedMap which use the default.\n separator = ': '\n) {\n let result = '';\n let current = iterator.next();\n\n if (!current.done) {\n result += config.spacingOuter;\n const indentationNext = indentation + config.indent;\n\n while (!current.done) {\n const name = printer(\n current.value[0],\n config,\n indentationNext,\n depth,\n refs\n );\n const value = printer(\n current.value[1],\n config,\n indentationNext,\n depth,\n refs\n );\n result += indentationNext + name + separator + value;\n current = iterator.next();\n\n if (!current.done) {\n result += ',' + config.spacingInner;\n } else if (!config.min) {\n result += ',';\n }\n }\n\n result += config.spacingOuter + indentation;\n }\n\n return result;\n}\n/**\n * Return values (for example, of a set)\n * with spacing, indentation, and comma\n * without surrounding punctuation (braces or brackets)\n */\n\nfunction printIteratorValues(\n iterator,\n config,\n indentation,\n depth,\n refs,\n printer\n) {\n let result = '';\n let current = iterator.next();\n\n if (!current.done) {\n result += config.spacingOuter;\n const indentationNext = indentation + config.indent;\n\n while (!current.done) {\n result +=\n indentationNext +\n printer(current.value, config, indentationNext, depth, refs);\n current = iterator.next();\n\n if (!current.done) {\n result += ',' + config.spacingInner;\n } else if (!config.min) {\n result += ',';\n }\n }\n\n result += config.spacingOuter + indentation;\n }\n\n return result;\n}\n/**\n * Return items (for example, of an array)\n * with spacing, indentation, and comma\n * without surrounding punctuation (for example, brackets)\n **/\n\nfunction printListItems(list, config, indentation, depth, refs, printer) {\n let result = '';\n\n if (list.length) {\n result += config.spacingOuter;\n const indentationNext = indentation + config.indent;\n\n for (let i = 0; i < list.length; i++) {\n result += indentationNext;\n\n if (i in list) {\n result += printer(list[i], config, indentationNext, depth, refs);\n }\n\n if (i < list.length - 1) {\n result += ',' + config.spacingInner;\n } else if (!config.min) {\n result += ',';\n }\n }\n\n result += config.spacingOuter + indentation;\n }\n\n return result;\n}\n/**\n * Return properties of an object\n * with spacing, indentation, and comma\n * without surrounding punctuation (for example, braces)\n */\n\nfunction printObjectProperties(val, config, indentation, depth, refs, printer) {\n let result = '';\n const keys = getKeysOfEnumerableProperties(val, config.compareKeys);\n\n if (keys.length) {\n result += config.spacingOuter;\n const indentationNext = indentation + config.indent;\n\n for (let i = 0; i < keys.length; i++) {\n const key = keys[i];\n const name = printer(key, config, indentationNext, depth, refs);\n const value = printer(val[key], config, indentationNext, depth, refs);\n result += indentationNext + name + ': ' + value;\n\n if (i < keys.length - 1) {\n result += ',' + config.spacingInner;\n } else if (!config.min) {\n result += ',';\n }\n }\n\n result += config.spacingOuter + indentation;\n }\n\n return result;\n}\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\nexports.test = exports.serialize = exports.default = void 0;\n\nvar _collections = require('../collections');\n\nvar global = (function () {\n if (typeof globalThis !== 'undefined') {\n return globalThis;\n } else if (typeof global !== 'undefined') {\n return global;\n } else if (typeof self !== 'undefined') {\n return self;\n } else if (typeof window !== 'undefined') {\n return window;\n } else {\n return Function('return this')();\n }\n})();\n\nvar Symbol = global['jest-symbol-do-not-touch'] || global.Symbol;\nconst asymmetricMatcher =\n typeof Symbol === 'function' && Symbol.for\n ? Symbol.for('jest.asymmetricMatcher')\n : 0x1357a5;\nconst SPACE = ' ';\n\nconst serialize = (val, config, indentation, depth, refs, printer) => {\n const stringedValue = val.toString();\n\n if (\n stringedValue === 'ArrayContaining' ||\n stringedValue === 'ArrayNotContaining'\n ) {\n if (++depth > config.maxDepth) {\n return '[' + stringedValue + ']';\n }\n\n return (\n stringedValue +\n SPACE +\n '[' +\n (0, _collections.printListItems)(\n val.sample,\n config,\n indentation,\n depth,\n refs,\n printer\n ) +\n ']'\n );\n }\n\n if (\n stringedValue === 'ObjectContaining' ||\n stringedValue === 'ObjectNotContaining'\n ) {\n if (++depth > config.maxDepth) {\n return '[' + stringedValue + ']';\n }\n\n return (\n stringedValue +\n SPACE +\n '{' +\n (0, _collections.printObjectProperties)(\n val.sample,\n config,\n indentation,\n depth,\n refs,\n printer\n ) +\n '}'\n );\n }\n\n if (\n stringedValue === 'StringMatching' ||\n stringedValue === 'StringNotMatching'\n ) {\n return (\n stringedValue +\n SPACE +\n printer(val.sample, config, indentation, depth, refs)\n );\n }\n\n if (\n stringedValue === 'StringContaining' ||\n stringedValue === 'StringNotContaining'\n ) {\n return (\n stringedValue +\n SPACE +\n printer(val.sample, config, indentation, depth, refs)\n );\n }\n\n return val.toAsymmetricMatcher();\n};\n\nexports.serialize = serialize;\n\nconst test = val => val && val.$$typeof === asymmetricMatcher;\n\nexports.test = test;\nconst plugin = {\n serialize,\n test\n};\nvar _default = plugin;\nexports.default = _default;\n","'use strict';\n\nmodule.exports = ({onlyFirst = false} = {}) => {\n\tconst pattern = [\n\t\t'[\\\\u001B\\\\u009B][[\\\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\\\d\\\\/#&.:=?%@~_]+)*|[a-zA-Z\\\\d]+(?:;[-a-zA-Z\\\\d\\\\/#&.:=?%@~_]*)*)?\\\\u0007)',\n\t\t'(?:(?:\\\\d{1,4}(?:;\\\\d{0,4})*)?[\\\\dA-PR-TZcf-ntqry=><~]))'\n\t].join('|');\n\n\treturn new RegExp(pattern, onlyFirst ? undefined : 'g');\n};\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\nexports.test = exports.serialize = exports.default = void 0;\n\nvar _ansiRegex = _interopRequireDefault(require('ansi-regex'));\n\nvar _ansiStyles = _interopRequireDefault(require('ansi-styles'));\n\nfunction _interopRequireDefault(obj) {\n return obj && obj.__esModule ? obj : {default: obj};\n}\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\nconst toHumanReadableAnsi = text =>\n text.replace((0, _ansiRegex.default)(), match => {\n switch (match) {\n case _ansiStyles.default.red.close:\n case _ansiStyles.default.green.close:\n case _ansiStyles.default.cyan.close:\n case _ansiStyles.default.gray.close:\n case _ansiStyles.default.white.close:\n case _ansiStyles.default.yellow.close:\n case _ansiStyles.default.bgRed.close:\n case _ansiStyles.default.bgGreen.close:\n case _ansiStyles.default.bgYellow.close:\n case _ansiStyles.default.inverse.close:\n case _ansiStyles.default.dim.close:\n case _ansiStyles.default.bold.close:\n case _ansiStyles.default.reset.open:\n case _ansiStyles.default.reset.close:\n return '';\n\n case _ansiStyles.default.red.open:\n return '';\n\n case _ansiStyles.default.green.open:\n return '';\n\n case _ansiStyles.default.cyan.open:\n return '';\n\n case _ansiStyles.default.gray.open:\n return '';\n\n case _ansiStyles.default.white.open:\n return '';\n\n case _ansiStyles.default.yellow.open:\n return '';\n\n case _ansiStyles.default.bgRed.open:\n return '';\n\n case _ansiStyles.default.bgGreen.open:\n return '';\n\n case _ansiStyles.default.bgYellow.open:\n return '';\n\n case _ansiStyles.default.inverse.open:\n return '';\n\n case _ansiStyles.default.dim.open:\n return '';\n\n case _ansiStyles.default.bold.open:\n return '';\n\n default:\n return '';\n }\n });\n\nconst test = val =>\n typeof val === 'string' && !!val.match((0, _ansiRegex.default)());\n\nexports.test = test;\n\nconst serialize = (val, config, indentation, depth, refs, printer) =>\n printer(toHumanReadableAnsi(val), config, indentation, depth, refs);\n\nexports.serialize = serialize;\nconst plugin = {\n serialize,\n test\n};\nvar _default = plugin;\nexports.default = _default;\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\nexports.test = exports.serialize = exports.default = void 0;\n\nvar _collections = require('../collections');\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n/* eslint-disable local/ban-types-eventually */\nconst SPACE = ' ';\nconst OBJECT_NAMES = ['DOMStringMap', 'NamedNodeMap'];\nconst ARRAY_REGEXP = /^(HTML\\w*Collection|NodeList)$/;\n\nconst testName = name =>\n OBJECT_NAMES.indexOf(name) !== -1 || ARRAY_REGEXP.test(name);\n\nconst test = val =>\n val &&\n val.constructor &&\n !!val.constructor.name &&\n testName(val.constructor.name);\n\nexports.test = test;\n\nconst isNamedNodeMap = collection =>\n collection.constructor.name === 'NamedNodeMap';\n\nconst serialize = (collection, config, indentation, depth, refs, printer) => {\n const name = collection.constructor.name;\n\n if (++depth > config.maxDepth) {\n return '[' + name + ']';\n }\n\n return (\n (config.min ? '' : name + SPACE) +\n (OBJECT_NAMES.indexOf(name) !== -1\n ? '{' +\n (0, _collections.printObjectProperties)(\n isNamedNodeMap(collection)\n ? Array.from(collection).reduce((props, attribute) => {\n props[attribute.name] = attribute.value;\n return props;\n }, {})\n : {...collection},\n config,\n indentation,\n depth,\n refs,\n printer\n ) +\n '}'\n : '[' +\n (0, _collections.printListItems)(\n Array.from(collection),\n config,\n indentation,\n depth,\n refs,\n printer\n ) +\n ']')\n );\n};\n\nexports.serialize = serialize;\nconst plugin = {\n serialize,\n test\n};\nvar _default = plugin;\nexports.default = _default;\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\nexports.default = escapeHTML;\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\nfunction escapeHTML(str) {\n return str.replace(//g, '>');\n}\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\nexports.printText =\n exports.printProps =\n exports.printElementAsLeaf =\n exports.printElement =\n exports.printComment =\n exports.printChildren =\n void 0;\n\nvar _escapeHTML = _interopRequireDefault(require('./escapeHTML'));\n\nfunction _interopRequireDefault(obj) {\n return obj && obj.__esModule ? obj : {default: obj};\n}\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n// Return empty string if keys is empty.\nconst printProps = (keys, props, config, indentation, depth, refs, printer) => {\n const indentationNext = indentation + config.indent;\n const colors = config.colors;\n return keys\n .map(key => {\n const value = props[key];\n let printed = printer(value, config, indentationNext, depth, refs);\n\n if (typeof value !== 'string') {\n if (printed.indexOf('\\n') !== -1) {\n printed =\n config.spacingOuter +\n indentationNext +\n printed +\n config.spacingOuter +\n indentation;\n }\n\n printed = '{' + printed + '}';\n }\n\n return (\n config.spacingInner +\n indentation +\n colors.prop.open +\n key +\n colors.prop.close +\n '=' +\n colors.value.open +\n printed +\n colors.value.close\n );\n })\n .join('');\n}; // Return empty string if children is empty.\n\nexports.printProps = printProps;\n\nconst printChildren = (children, config, indentation, depth, refs, printer) =>\n children\n .map(\n child =>\n config.spacingOuter +\n indentation +\n (typeof child === 'string'\n ? printText(child, config)\n : printer(child, config, indentation, depth, refs))\n )\n .join('');\n\nexports.printChildren = printChildren;\n\nconst printText = (text, config) => {\n const contentColor = config.colors.content;\n return (\n contentColor.open + (0, _escapeHTML.default)(text) + contentColor.close\n );\n};\n\nexports.printText = printText;\n\nconst printComment = (comment, config) => {\n const commentColor = config.colors.comment;\n return (\n commentColor.open +\n '' +\n commentColor.close\n );\n}; // Separate the functions to format props, children, and element,\n// so a plugin could override a particular function, if needed.\n// Too bad, so sad: the traditional (but unnecessary) space\n// in a self-closing tagColor requires a second test of printedProps.\n\nexports.printComment = printComment;\n\nconst printElement = (\n type,\n printedProps,\n printedChildren,\n config,\n indentation\n) => {\n const tagColor = config.colors.tag;\n return (\n tagColor.open +\n '<' +\n type +\n (printedProps &&\n tagColor.close +\n printedProps +\n config.spacingOuter +\n indentation +\n tagColor.open) +\n (printedChildren\n ? '>' +\n tagColor.close +\n printedChildren +\n config.spacingOuter +\n indentation +\n tagColor.open +\n '' +\n tagColor.close\n );\n};\n\nexports.printElement = printElement;\n\nconst printElementAsLeaf = (type, config) => {\n const tagColor = config.colors.tag;\n return (\n tagColor.open +\n '<' +\n type +\n tagColor.close +\n ' …' +\n tagColor.open +\n ' />' +\n tagColor.close\n );\n};\n\nexports.printElementAsLeaf = printElementAsLeaf;\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\nexports.test = exports.serialize = exports.default = void 0;\n\nvar _markup = require('./lib/markup');\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\nconst ELEMENT_NODE = 1;\nconst TEXT_NODE = 3;\nconst COMMENT_NODE = 8;\nconst FRAGMENT_NODE = 11;\nconst ELEMENT_REGEXP = /^((HTML|SVG)\\w*)?Element$/;\n\nconst testHasAttribute = val => {\n try {\n return typeof val.hasAttribute === 'function' && val.hasAttribute('is');\n } catch {\n return false;\n }\n};\n\nconst testNode = val => {\n const constructorName = val.constructor.name;\n const {nodeType, tagName} = val;\n const isCustomElement =\n (typeof tagName === 'string' && tagName.includes('-')) ||\n testHasAttribute(val);\n return (\n (nodeType === ELEMENT_NODE &&\n (ELEMENT_REGEXP.test(constructorName) || isCustomElement)) ||\n (nodeType === TEXT_NODE && constructorName === 'Text') ||\n (nodeType === COMMENT_NODE && constructorName === 'Comment') ||\n (nodeType === FRAGMENT_NODE && constructorName === 'DocumentFragment')\n );\n};\n\nconst test = val => {\n var _val$constructor;\n\n return (\n (val === null || val === void 0\n ? void 0\n : (_val$constructor = val.constructor) === null ||\n _val$constructor === void 0\n ? void 0\n : _val$constructor.name) && testNode(val)\n );\n};\n\nexports.test = test;\n\nfunction nodeIsText(node) {\n return node.nodeType === TEXT_NODE;\n}\n\nfunction nodeIsComment(node) {\n return node.nodeType === COMMENT_NODE;\n}\n\nfunction nodeIsFragment(node) {\n return node.nodeType === FRAGMENT_NODE;\n}\n\nconst serialize = (node, config, indentation, depth, refs, printer) => {\n if (nodeIsText(node)) {\n return (0, _markup.printText)(node.data, config);\n }\n\n if (nodeIsComment(node)) {\n return (0, _markup.printComment)(node.data, config);\n }\n\n const type = nodeIsFragment(node)\n ? `DocumentFragment`\n : node.tagName.toLowerCase();\n\n if (++depth > config.maxDepth) {\n return (0, _markup.printElementAsLeaf)(type, config);\n }\n\n return (0, _markup.printElement)(\n type,\n (0, _markup.printProps)(\n nodeIsFragment(node)\n ? []\n : Array.from(node.attributes)\n .map(attr => attr.name)\n .sort(),\n nodeIsFragment(node)\n ? {}\n : Array.from(node.attributes).reduce((props, attribute) => {\n props[attribute.name] = attribute.value;\n return props;\n }, {}),\n config,\n indentation + config.indent,\n depth,\n refs,\n printer\n ),\n (0, _markup.printChildren)(\n Array.prototype.slice.call(node.childNodes || node.children),\n config,\n indentation + config.indent,\n depth,\n refs,\n printer\n ),\n config,\n indentation\n );\n};\n\nexports.serialize = serialize;\nconst plugin = {\n serialize,\n test\n};\nvar _default = plugin;\nexports.default = _default;\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\nexports.test = exports.serialize = exports.default = void 0;\n\nvar _collections = require('../collections');\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n// SENTINEL constants are from https://github.com/facebook/immutable-js\nconst IS_ITERABLE_SENTINEL = '@@__IMMUTABLE_ITERABLE__@@';\nconst IS_LIST_SENTINEL = '@@__IMMUTABLE_LIST__@@';\nconst IS_KEYED_SENTINEL = '@@__IMMUTABLE_KEYED__@@';\nconst IS_MAP_SENTINEL = '@@__IMMUTABLE_MAP__@@';\nconst IS_ORDERED_SENTINEL = '@@__IMMUTABLE_ORDERED__@@';\nconst IS_RECORD_SENTINEL = '@@__IMMUTABLE_RECORD__@@'; // immutable v4\n\nconst IS_SEQ_SENTINEL = '@@__IMMUTABLE_SEQ__@@';\nconst IS_SET_SENTINEL = '@@__IMMUTABLE_SET__@@';\nconst IS_STACK_SENTINEL = '@@__IMMUTABLE_STACK__@@';\n\nconst getImmutableName = name => 'Immutable.' + name;\n\nconst printAsLeaf = name => '[' + name + ']';\n\nconst SPACE = ' ';\nconst LAZY = '…'; // Seq is lazy if it calls a method like filter\n\nconst printImmutableEntries = (\n val,\n config,\n indentation,\n depth,\n refs,\n printer,\n type\n) =>\n ++depth > config.maxDepth\n ? printAsLeaf(getImmutableName(type))\n : getImmutableName(type) +\n SPACE +\n '{' +\n (0, _collections.printIteratorEntries)(\n val.entries(),\n config,\n indentation,\n depth,\n refs,\n printer\n ) +\n '}'; // Record has an entries method because it is a collection in immutable v3.\n// Return an iterator for Immutable Record from version v3 or v4.\n\nfunction getRecordEntries(val) {\n let i = 0;\n return {\n next() {\n if (i < val._keys.length) {\n const key = val._keys[i++];\n return {\n done: false,\n value: [key, val.get(key)]\n };\n }\n\n return {\n done: true,\n value: undefined\n };\n }\n };\n}\n\nconst printImmutableRecord = (\n val,\n config,\n indentation,\n depth,\n refs,\n printer\n) => {\n // _name property is defined only for an Immutable Record instance\n // which was constructed with a second optional descriptive name arg\n const name = getImmutableName(val._name || 'Record');\n return ++depth > config.maxDepth\n ? printAsLeaf(name)\n : name +\n SPACE +\n '{' +\n (0, _collections.printIteratorEntries)(\n getRecordEntries(val),\n config,\n indentation,\n depth,\n refs,\n printer\n ) +\n '}';\n};\n\nconst printImmutableSeq = (val, config, indentation, depth, refs, printer) => {\n const name = getImmutableName('Seq');\n\n if (++depth > config.maxDepth) {\n return printAsLeaf(name);\n }\n\n if (val[IS_KEYED_SENTINEL]) {\n return (\n name +\n SPACE +\n '{' + // from Immutable collection of entries or from ECMAScript object\n (val._iter || val._object\n ? (0, _collections.printIteratorEntries)(\n val.entries(),\n config,\n indentation,\n depth,\n refs,\n printer\n )\n : LAZY) +\n '}'\n );\n }\n\n return (\n name +\n SPACE +\n '[' +\n (val._iter || // from Immutable collection of values\n val._array || // from ECMAScript array\n val._collection || // from ECMAScript collection in immutable v4\n val._iterable // from ECMAScript collection in immutable v3\n ? (0, _collections.printIteratorValues)(\n val.values(),\n config,\n indentation,\n depth,\n refs,\n printer\n )\n : LAZY) +\n ']'\n );\n};\n\nconst printImmutableValues = (\n val,\n config,\n indentation,\n depth,\n refs,\n printer,\n type\n) =>\n ++depth > config.maxDepth\n ? printAsLeaf(getImmutableName(type))\n : getImmutableName(type) +\n SPACE +\n '[' +\n (0, _collections.printIteratorValues)(\n val.values(),\n config,\n indentation,\n depth,\n refs,\n printer\n ) +\n ']';\n\nconst serialize = (val, config, indentation, depth, refs, printer) => {\n if (val[IS_MAP_SENTINEL]) {\n return printImmutableEntries(\n val,\n config,\n indentation,\n depth,\n refs,\n printer,\n val[IS_ORDERED_SENTINEL] ? 'OrderedMap' : 'Map'\n );\n }\n\n if (val[IS_LIST_SENTINEL]) {\n return printImmutableValues(\n val,\n config,\n indentation,\n depth,\n refs,\n printer,\n 'List'\n );\n }\n\n if (val[IS_SET_SENTINEL]) {\n return printImmutableValues(\n val,\n config,\n indentation,\n depth,\n refs,\n printer,\n val[IS_ORDERED_SENTINEL] ? 'OrderedSet' : 'Set'\n );\n }\n\n if (val[IS_STACK_SENTINEL]) {\n return printImmutableValues(\n val,\n config,\n indentation,\n depth,\n refs,\n printer,\n 'Stack'\n );\n }\n\n if (val[IS_SEQ_SENTINEL]) {\n return printImmutableSeq(val, config, indentation, depth, refs, printer);\n } // For compatibility with immutable v3 and v4, let record be the default.\n\n return printImmutableRecord(val, config, indentation, depth, refs, printer);\n}; // Explicitly comparing sentinel properties to true avoids false positive\n// when mock identity-obj-proxy returns the key as the value for any key.\n\nexports.serialize = serialize;\n\nconst test = val =>\n val &&\n (val[IS_ITERABLE_SENTINEL] === true || val[IS_RECORD_SENTINEL] === true);\n\nexports.test = test;\nconst plugin = {\n serialize,\n test\n};\nvar _default = plugin;\nexports.default = _default;\n","/** @license React v17.0.2\n * react-is.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n'use strict';var b=60103,c=60106,d=60107,e=60108,f=60114,g=60109,h=60110,k=60112,l=60113,m=60120,n=60115,p=60116,q=60121,r=60122,u=60117,v=60129,w=60131;\nif(\"function\"===typeof Symbol&&Symbol.for){var x=Symbol.for;b=x(\"react.element\");c=x(\"react.portal\");d=x(\"react.fragment\");e=x(\"react.strict_mode\");f=x(\"react.profiler\");g=x(\"react.provider\");h=x(\"react.context\");k=x(\"react.forward_ref\");l=x(\"react.suspense\");m=x(\"react.suspense_list\");n=x(\"react.memo\");p=x(\"react.lazy\");q=x(\"react.block\");r=x(\"react.server.block\");u=x(\"react.fundamental\");v=x(\"react.debug_trace_mode\");w=x(\"react.legacy_hidden\")}\nfunction y(a){if(\"object\"===typeof a&&null!==a){var t=a.$$typeof;switch(t){case b:switch(a=a.type,a){case d:case f:case e:case l:case m:return a;default:switch(a=a&&a.$$typeof,a){case h:case k:case p:case n:case g:return a;default:return t}}case c:return t}}}var z=g,A=b,B=k,C=d,D=p,E=n,F=c,G=f,H=e,I=l;exports.ContextConsumer=h;exports.ContextProvider=z;exports.Element=A;exports.ForwardRef=B;exports.Fragment=C;exports.Lazy=D;exports.Memo=E;exports.Portal=F;exports.Profiler=G;exports.StrictMode=H;\nexports.Suspense=I;exports.isAsyncMode=function(){return!1};exports.isConcurrentMode=function(){return!1};exports.isContextConsumer=function(a){return y(a)===h};exports.isContextProvider=function(a){return y(a)===g};exports.isElement=function(a){return\"object\"===typeof a&&null!==a&&a.$$typeof===b};exports.isForwardRef=function(a){return y(a)===k};exports.isFragment=function(a){return y(a)===d};exports.isLazy=function(a){return y(a)===p};exports.isMemo=function(a){return y(a)===n};\nexports.isPortal=function(a){return y(a)===c};exports.isProfiler=function(a){return y(a)===f};exports.isStrictMode=function(a){return y(a)===e};exports.isSuspense=function(a){return y(a)===l};exports.isValidElementType=function(a){return\"string\"===typeof a||\"function\"===typeof a||a===d||a===f||a===v||a===e||a===l||a===m||a===w||\"object\"===typeof a&&null!==a&&(a.$$typeof===p||a.$$typeof===n||a.$$typeof===g||a.$$typeof===h||a.$$typeof===k||a.$$typeof===u||a.$$typeof===q||a[0]===r)?!0:!1};\nexports.typeOf=y;\n","/** @license React v17.0.2\n * react-is.development.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nif (process.env.NODE_ENV !== \"production\") {\n (function() {\n'use strict';\n\n// ATTENTION\n// When adding new symbols to this file,\n// Please consider also adding to 'react-devtools-shared/src/backend/ReactSymbols'\n// The Symbol used to tag the ReactElement-like types. If there is no native Symbol\n// nor polyfill, then a plain number is used for performance.\nvar REACT_ELEMENT_TYPE = 0xeac7;\nvar REACT_PORTAL_TYPE = 0xeaca;\nvar REACT_FRAGMENT_TYPE = 0xeacb;\nvar REACT_STRICT_MODE_TYPE = 0xeacc;\nvar REACT_PROFILER_TYPE = 0xead2;\nvar REACT_PROVIDER_TYPE = 0xeacd;\nvar REACT_CONTEXT_TYPE = 0xeace;\nvar REACT_FORWARD_REF_TYPE = 0xead0;\nvar REACT_SUSPENSE_TYPE = 0xead1;\nvar REACT_SUSPENSE_LIST_TYPE = 0xead8;\nvar REACT_MEMO_TYPE = 0xead3;\nvar REACT_LAZY_TYPE = 0xead4;\nvar REACT_BLOCK_TYPE = 0xead9;\nvar REACT_SERVER_BLOCK_TYPE = 0xeada;\nvar REACT_FUNDAMENTAL_TYPE = 0xead5;\nvar REACT_SCOPE_TYPE = 0xead7;\nvar REACT_OPAQUE_ID_TYPE = 0xeae0;\nvar REACT_DEBUG_TRACING_MODE_TYPE = 0xeae1;\nvar REACT_OFFSCREEN_TYPE = 0xeae2;\nvar REACT_LEGACY_HIDDEN_TYPE = 0xeae3;\n\nif (typeof Symbol === 'function' && Symbol.for) {\n var symbolFor = Symbol.for;\n REACT_ELEMENT_TYPE = symbolFor('react.element');\n REACT_PORTAL_TYPE = symbolFor('react.portal');\n REACT_FRAGMENT_TYPE = symbolFor('react.fragment');\n REACT_STRICT_MODE_TYPE = symbolFor('react.strict_mode');\n REACT_PROFILER_TYPE = symbolFor('react.profiler');\n REACT_PROVIDER_TYPE = symbolFor('react.provider');\n REACT_CONTEXT_TYPE = symbolFor('react.context');\n REACT_FORWARD_REF_TYPE = symbolFor('react.forward_ref');\n REACT_SUSPENSE_TYPE = symbolFor('react.suspense');\n REACT_SUSPENSE_LIST_TYPE = symbolFor('react.suspense_list');\n REACT_MEMO_TYPE = symbolFor('react.memo');\n REACT_LAZY_TYPE = symbolFor('react.lazy');\n REACT_BLOCK_TYPE = symbolFor('react.block');\n REACT_SERVER_BLOCK_TYPE = symbolFor('react.server.block');\n REACT_FUNDAMENTAL_TYPE = symbolFor('react.fundamental');\n REACT_SCOPE_TYPE = symbolFor('react.scope');\n REACT_OPAQUE_ID_TYPE = symbolFor('react.opaque.id');\n REACT_DEBUG_TRACING_MODE_TYPE = symbolFor('react.debug_trace_mode');\n REACT_OFFSCREEN_TYPE = symbolFor('react.offscreen');\n REACT_LEGACY_HIDDEN_TYPE = symbolFor('react.legacy_hidden');\n}\n\n// Filter certain DOM attributes (e.g. src, href) if their values are empty strings.\n\nvar enableScopeAPI = false; // Experimental Create Event Handle API.\n\nfunction isValidElementType(type) {\n if (typeof type === 'string' || typeof type === 'function') {\n return true;\n } // Note: typeof might be other than 'symbol' or 'number' (e.g. if it's a polyfill).\n\n\n if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || type === REACT_DEBUG_TRACING_MODE_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || type === REACT_LEGACY_HIDDEN_TYPE || enableScopeAPI ) {\n return true;\n }\n\n if (typeof type === 'object' && type !== null) {\n if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_BLOCK_TYPE || type[0] === REACT_SERVER_BLOCK_TYPE) {\n return true;\n }\n }\n\n return false;\n}\n\nfunction typeOf(object) {\n if (typeof object === 'object' && object !== null) {\n var $$typeof = object.$$typeof;\n\n switch ($$typeof) {\n case REACT_ELEMENT_TYPE:\n var type = object.type;\n\n switch (type) {\n case REACT_FRAGMENT_TYPE:\n case REACT_PROFILER_TYPE:\n case REACT_STRICT_MODE_TYPE:\n case REACT_SUSPENSE_TYPE:\n case REACT_SUSPENSE_LIST_TYPE:\n return type;\n\n default:\n var $$typeofType = type && type.$$typeof;\n\n switch ($$typeofType) {\n case REACT_CONTEXT_TYPE:\n case REACT_FORWARD_REF_TYPE:\n case REACT_LAZY_TYPE:\n case REACT_MEMO_TYPE:\n case REACT_PROVIDER_TYPE:\n return $$typeofType;\n\n default:\n return $$typeof;\n }\n\n }\n\n case REACT_PORTAL_TYPE:\n return $$typeof;\n }\n }\n\n return undefined;\n}\nvar ContextConsumer = REACT_CONTEXT_TYPE;\nvar ContextProvider = REACT_PROVIDER_TYPE;\nvar Element = REACT_ELEMENT_TYPE;\nvar ForwardRef = REACT_FORWARD_REF_TYPE;\nvar Fragment = REACT_FRAGMENT_TYPE;\nvar Lazy = REACT_LAZY_TYPE;\nvar Memo = REACT_MEMO_TYPE;\nvar Portal = REACT_PORTAL_TYPE;\nvar Profiler = REACT_PROFILER_TYPE;\nvar StrictMode = REACT_STRICT_MODE_TYPE;\nvar Suspense = REACT_SUSPENSE_TYPE;\nvar hasWarnedAboutDeprecatedIsAsyncMode = false;\nvar hasWarnedAboutDeprecatedIsConcurrentMode = false; // AsyncMode should be deprecated\n\nfunction isAsyncMode(object) {\n {\n if (!hasWarnedAboutDeprecatedIsAsyncMode) {\n hasWarnedAboutDeprecatedIsAsyncMode = true; // Using console['warn'] to evade Babel and ESLint\n\n console['warn']('The ReactIs.isAsyncMode() alias has been deprecated, ' + 'and will be removed in React 18+.');\n }\n }\n\n return false;\n}\nfunction isConcurrentMode(object) {\n {\n if (!hasWarnedAboutDeprecatedIsConcurrentMode) {\n hasWarnedAboutDeprecatedIsConcurrentMode = true; // Using console['warn'] to evade Babel and ESLint\n\n console['warn']('The ReactIs.isConcurrentMode() alias has been deprecated, ' + 'and will be removed in React 18+.');\n }\n }\n\n return false;\n}\nfunction isContextConsumer(object) {\n return typeOf(object) === REACT_CONTEXT_TYPE;\n}\nfunction isContextProvider(object) {\n return typeOf(object) === REACT_PROVIDER_TYPE;\n}\nfunction isElement(object) {\n return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;\n}\nfunction isForwardRef(object) {\n return typeOf(object) === REACT_FORWARD_REF_TYPE;\n}\nfunction isFragment(object) {\n return typeOf(object) === REACT_FRAGMENT_TYPE;\n}\nfunction isLazy(object) {\n return typeOf(object) === REACT_LAZY_TYPE;\n}\nfunction isMemo(object) {\n return typeOf(object) === REACT_MEMO_TYPE;\n}\nfunction isPortal(object) {\n return typeOf(object) === REACT_PORTAL_TYPE;\n}\nfunction isProfiler(object) {\n return typeOf(object) === REACT_PROFILER_TYPE;\n}\nfunction isStrictMode(object) {\n return typeOf(object) === REACT_STRICT_MODE_TYPE;\n}\nfunction isSuspense(object) {\n return typeOf(object) === REACT_SUSPENSE_TYPE;\n}\n\nexports.ContextConsumer = ContextConsumer;\nexports.ContextProvider = ContextProvider;\nexports.Element = Element;\nexports.ForwardRef = ForwardRef;\nexports.Fragment = Fragment;\nexports.Lazy = Lazy;\nexports.Memo = Memo;\nexports.Portal = Portal;\nexports.Profiler = Profiler;\nexports.StrictMode = StrictMode;\nexports.Suspense = Suspense;\nexports.isAsyncMode = isAsyncMode;\nexports.isConcurrentMode = isConcurrentMode;\nexports.isContextConsumer = isContextConsumer;\nexports.isContextProvider = isContextProvider;\nexports.isElement = isElement;\nexports.isForwardRef = isForwardRef;\nexports.isFragment = isFragment;\nexports.isLazy = isLazy;\nexports.isMemo = isMemo;\nexports.isPortal = isPortal;\nexports.isProfiler = isProfiler;\nexports.isStrictMode = isStrictMode;\nexports.isSuspense = isSuspense;\nexports.isValidElementType = isValidElementType;\nexports.typeOf = typeOf;\n })();\n}\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-is.production.min.js');\n} else {\n module.exports = require('./cjs/react-is.development.js');\n}\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\nexports.test = exports.serialize = exports.default = void 0;\n\nvar ReactIs = _interopRequireWildcard(require('react-is'));\n\nvar _markup = require('./lib/markup');\n\nfunction _getRequireWildcardCache(nodeInterop) {\n if (typeof WeakMap !== 'function') return null;\n var cacheBabelInterop = new WeakMap();\n var cacheNodeInterop = new WeakMap();\n return (_getRequireWildcardCache = function (nodeInterop) {\n return nodeInterop ? cacheNodeInterop : cacheBabelInterop;\n })(nodeInterop);\n}\n\nfunction _interopRequireWildcard(obj, nodeInterop) {\n if (!nodeInterop && obj && obj.__esModule) {\n return obj;\n }\n if (obj === null || (typeof obj !== 'object' && typeof obj !== 'function')) {\n return {default: obj};\n }\n var cache = _getRequireWildcardCache(nodeInterop);\n if (cache && cache.has(obj)) {\n return cache.get(obj);\n }\n var newObj = {};\n var hasPropertyDescriptor =\n Object.defineProperty && Object.getOwnPropertyDescriptor;\n for (var key in obj) {\n if (key !== 'default' && Object.prototype.hasOwnProperty.call(obj, key)) {\n var desc = hasPropertyDescriptor\n ? Object.getOwnPropertyDescriptor(obj, key)\n : null;\n if (desc && (desc.get || desc.set)) {\n Object.defineProperty(newObj, key, desc);\n } else {\n newObj[key] = obj[key];\n }\n }\n }\n newObj.default = obj;\n if (cache) {\n cache.set(obj, newObj);\n }\n return newObj;\n}\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n// Given element.props.children, or subtree during recursive traversal,\n// return flattened array of children.\nconst getChildren = (arg, children = []) => {\n if (Array.isArray(arg)) {\n arg.forEach(item => {\n getChildren(item, children);\n });\n } else if (arg != null && arg !== false) {\n children.push(arg);\n }\n\n return children;\n};\n\nconst getType = element => {\n const type = element.type;\n\n if (typeof type === 'string') {\n return type;\n }\n\n if (typeof type === 'function') {\n return type.displayName || type.name || 'Unknown';\n }\n\n if (ReactIs.isFragment(element)) {\n return 'React.Fragment';\n }\n\n if (ReactIs.isSuspense(element)) {\n return 'React.Suspense';\n }\n\n if (typeof type === 'object' && type !== null) {\n if (ReactIs.isContextProvider(element)) {\n return 'Context.Provider';\n }\n\n if (ReactIs.isContextConsumer(element)) {\n return 'Context.Consumer';\n }\n\n if (ReactIs.isForwardRef(element)) {\n if (type.displayName) {\n return type.displayName;\n }\n\n const functionName = type.render.displayName || type.render.name || '';\n return functionName !== ''\n ? 'ForwardRef(' + functionName + ')'\n : 'ForwardRef';\n }\n\n if (ReactIs.isMemo(element)) {\n const functionName =\n type.displayName || type.type.displayName || type.type.name || '';\n return functionName !== '' ? 'Memo(' + functionName + ')' : 'Memo';\n }\n }\n\n return 'UNDEFINED';\n};\n\nconst getPropKeys = element => {\n const {props} = element;\n return Object.keys(props)\n .filter(key => key !== 'children' && props[key] !== undefined)\n .sort();\n};\n\nconst serialize = (element, config, indentation, depth, refs, printer) =>\n ++depth > config.maxDepth\n ? (0, _markup.printElementAsLeaf)(getType(element), config)\n : (0, _markup.printElement)(\n getType(element),\n (0, _markup.printProps)(\n getPropKeys(element),\n element.props,\n config,\n indentation + config.indent,\n depth,\n refs,\n printer\n ),\n (0, _markup.printChildren)(\n getChildren(element.props.children),\n config,\n indentation + config.indent,\n depth,\n refs,\n printer\n ),\n config,\n indentation\n );\n\nexports.serialize = serialize;\n\nconst test = val => val != null && ReactIs.isElement(val);\n\nexports.test = test;\nconst plugin = {\n serialize,\n test\n};\nvar _default = plugin;\nexports.default = _default;\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\nexports.test = exports.serialize = exports.default = void 0;\n\nvar _markup = require('./lib/markup');\n\nvar global = (function () {\n if (typeof globalThis !== 'undefined') {\n return globalThis;\n } else if (typeof global !== 'undefined') {\n return global;\n } else if (typeof self !== 'undefined') {\n return self;\n } else if (typeof window !== 'undefined') {\n return window;\n } else {\n return Function('return this')();\n }\n})();\n\nvar Symbol = global['jest-symbol-do-not-touch'] || global.Symbol;\nconst testSymbol =\n typeof Symbol === 'function' && Symbol.for\n ? Symbol.for('react.test.json')\n : 0xea71357;\n\nconst getPropKeys = object => {\n const {props} = object;\n return props\n ? Object.keys(props)\n .filter(key => props[key] !== undefined)\n .sort()\n : [];\n};\n\nconst serialize = (object, config, indentation, depth, refs, printer) =>\n ++depth > config.maxDepth\n ? (0, _markup.printElementAsLeaf)(object.type, config)\n : (0, _markup.printElement)(\n object.type,\n object.props\n ? (0, _markup.printProps)(\n getPropKeys(object),\n object.props,\n config,\n indentation + config.indent,\n depth,\n refs,\n printer\n )\n : '',\n object.children\n ? (0, _markup.printChildren)(\n object.children,\n config,\n indentation + config.indent,\n depth,\n refs,\n printer\n )\n : '',\n config,\n indentation\n );\n\nexports.serialize = serialize;\n\nconst test = val => val && val.$$typeof === testSymbol;\n\nexports.test = test;\nconst plugin = {\n serialize,\n test\n};\nvar _default = plugin;\nexports.default = _default;\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\nexports.default = exports.DEFAULT_OPTIONS = void 0;\nexports.format = format;\nexports.plugins = void 0;\n\nvar _ansiStyles = _interopRequireDefault(require('ansi-styles'));\n\nvar _collections = require('./collections');\n\nvar _AsymmetricMatcher = _interopRequireDefault(\n require('./plugins/AsymmetricMatcher')\n);\n\nvar _ConvertAnsi = _interopRequireDefault(require('./plugins/ConvertAnsi'));\n\nvar _DOMCollection = _interopRequireDefault(require('./plugins/DOMCollection'));\n\nvar _DOMElement = _interopRequireDefault(require('./plugins/DOMElement'));\n\nvar _Immutable = _interopRequireDefault(require('./plugins/Immutable'));\n\nvar _ReactElement = _interopRequireDefault(require('./plugins/ReactElement'));\n\nvar _ReactTestComponent = _interopRequireDefault(\n require('./plugins/ReactTestComponent')\n);\n\nfunction _interopRequireDefault(obj) {\n return obj && obj.__esModule ? obj : {default: obj};\n}\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n/* eslint-disable local/ban-types-eventually */\nconst toString = Object.prototype.toString;\nconst toISOString = Date.prototype.toISOString;\nconst errorToString = Error.prototype.toString;\nconst regExpToString = RegExp.prototype.toString;\n/**\n * Explicitly comparing typeof constructor to function avoids undefined as name\n * when mock identity-obj-proxy returns the key as the value for any key.\n */\n\nconst getConstructorName = val =>\n (typeof val.constructor === 'function' && val.constructor.name) || 'Object';\n/* global window */\n\n/** Is val is equal to global window object? Works even if it does not exist :) */\n\nconst isWindow = val => typeof window !== 'undefined' && val === window;\n\nconst SYMBOL_REGEXP = /^Symbol\\((.*)\\)(.*)$/;\nconst NEWLINE_REGEXP = /\\n/gi;\n\nclass PrettyFormatPluginError extends Error {\n constructor(message, stack) {\n super(message);\n this.stack = stack;\n this.name = this.constructor.name;\n }\n}\n\nfunction isToStringedArrayType(toStringed) {\n return (\n toStringed === '[object Array]' ||\n toStringed === '[object ArrayBuffer]' ||\n toStringed === '[object DataView]' ||\n toStringed === '[object Float32Array]' ||\n toStringed === '[object Float64Array]' ||\n toStringed === '[object Int8Array]' ||\n toStringed === '[object Int16Array]' ||\n toStringed === '[object Int32Array]' ||\n toStringed === '[object Uint8Array]' ||\n toStringed === '[object Uint8ClampedArray]' ||\n toStringed === '[object Uint16Array]' ||\n toStringed === '[object Uint32Array]'\n );\n}\n\nfunction printNumber(val) {\n return Object.is(val, -0) ? '-0' : String(val);\n}\n\nfunction printBigInt(val) {\n return String(`${val}n`);\n}\n\nfunction printFunction(val, printFunctionName) {\n if (!printFunctionName) {\n return '[Function]';\n }\n\n return '[Function ' + (val.name || 'anonymous') + ']';\n}\n\nfunction printSymbol(val) {\n return String(val).replace(SYMBOL_REGEXP, 'Symbol($1)');\n}\n\nfunction printError(val) {\n return '[' + errorToString.call(val) + ']';\n}\n/**\n * The first port of call for printing an object, handles most of the\n * data-types in JS.\n */\n\nfunction printBasicValue(val, printFunctionName, escapeRegex, escapeString) {\n if (val === true || val === false) {\n return '' + val;\n }\n\n if (val === undefined) {\n return 'undefined';\n }\n\n if (val === null) {\n return 'null';\n }\n\n const typeOf = typeof val;\n\n if (typeOf === 'number') {\n return printNumber(val);\n }\n\n if (typeOf === 'bigint') {\n return printBigInt(val);\n }\n\n if (typeOf === 'string') {\n if (escapeString) {\n return '\"' + val.replace(/\"|\\\\/g, '\\\\$&') + '\"';\n }\n\n return '\"' + val + '\"';\n }\n\n if (typeOf === 'function') {\n return printFunction(val, printFunctionName);\n }\n\n if (typeOf === 'symbol') {\n return printSymbol(val);\n }\n\n const toStringed = toString.call(val);\n\n if (toStringed === '[object WeakMap]') {\n return 'WeakMap {}';\n }\n\n if (toStringed === '[object WeakSet]') {\n return 'WeakSet {}';\n }\n\n if (\n toStringed === '[object Function]' ||\n toStringed === '[object GeneratorFunction]'\n ) {\n return printFunction(val, printFunctionName);\n }\n\n if (toStringed === '[object Symbol]') {\n return printSymbol(val);\n }\n\n if (toStringed === '[object Date]') {\n return isNaN(+val) ? 'Date { NaN }' : toISOString.call(val);\n }\n\n if (toStringed === '[object Error]') {\n return printError(val);\n }\n\n if (toStringed === '[object RegExp]') {\n if (escapeRegex) {\n // https://github.com/benjamingr/RegExp.escape/blob/main/polyfill.js\n return regExpToString.call(val).replace(/[\\\\^$*+?.()|[\\]{}]/g, '\\\\$&');\n }\n\n return regExpToString.call(val);\n }\n\n if (val instanceof Error) {\n return printError(val);\n }\n\n return null;\n}\n/**\n * Handles more complex objects ( such as objects with circular references.\n * maps and sets etc )\n */\n\nfunction printComplexValue(\n val,\n config,\n indentation,\n depth,\n refs,\n hasCalledToJSON\n) {\n if (refs.indexOf(val) !== -1) {\n return '[Circular]';\n }\n\n refs = refs.slice();\n refs.push(val);\n const hitMaxDepth = ++depth > config.maxDepth;\n const min = config.min;\n\n if (\n config.callToJSON &&\n !hitMaxDepth &&\n val.toJSON &&\n typeof val.toJSON === 'function' &&\n !hasCalledToJSON\n ) {\n return printer(val.toJSON(), config, indentation, depth, refs, true);\n }\n\n const toStringed = toString.call(val);\n\n if (toStringed === '[object Arguments]') {\n return hitMaxDepth\n ? '[Arguments]'\n : (min ? '' : 'Arguments ') +\n '[' +\n (0, _collections.printListItems)(\n val,\n config,\n indentation,\n depth,\n refs,\n printer\n ) +\n ']';\n }\n\n if (isToStringedArrayType(toStringed)) {\n return hitMaxDepth\n ? '[' + val.constructor.name + ']'\n : (min\n ? ''\n : !config.printBasicPrototype && val.constructor.name === 'Array'\n ? ''\n : val.constructor.name + ' ') +\n '[' +\n (0, _collections.printListItems)(\n val,\n config,\n indentation,\n depth,\n refs,\n printer\n ) +\n ']';\n }\n\n if (toStringed === '[object Map]') {\n return hitMaxDepth\n ? '[Map]'\n : 'Map {' +\n (0, _collections.printIteratorEntries)(\n val.entries(),\n config,\n indentation,\n depth,\n refs,\n printer,\n ' => '\n ) +\n '}';\n }\n\n if (toStringed === '[object Set]') {\n return hitMaxDepth\n ? '[Set]'\n : 'Set {' +\n (0, _collections.printIteratorValues)(\n val.values(),\n config,\n indentation,\n depth,\n refs,\n printer\n ) +\n '}';\n } // Avoid failure to serialize global window object in jsdom test environment.\n // For example, not even relevant if window is prop of React element.\n\n return hitMaxDepth || isWindow(val)\n ? '[' + getConstructorName(val) + ']'\n : (min\n ? ''\n : !config.printBasicPrototype && getConstructorName(val) === 'Object'\n ? ''\n : getConstructorName(val) + ' ') +\n '{' +\n (0, _collections.printObjectProperties)(\n val,\n config,\n indentation,\n depth,\n refs,\n printer\n ) +\n '}';\n}\n\nfunction isNewPlugin(plugin) {\n return plugin.serialize != null;\n}\n\nfunction printPlugin(plugin, val, config, indentation, depth, refs) {\n let printed;\n\n try {\n printed = isNewPlugin(plugin)\n ? plugin.serialize(val, config, indentation, depth, refs, printer)\n : plugin.print(\n val,\n valChild => printer(valChild, config, indentation, depth, refs),\n str => {\n const indentationNext = indentation + config.indent;\n return (\n indentationNext +\n str.replace(NEWLINE_REGEXP, '\\n' + indentationNext)\n );\n },\n {\n edgeSpacing: config.spacingOuter,\n min: config.min,\n spacing: config.spacingInner\n },\n config.colors\n );\n } catch (error) {\n throw new PrettyFormatPluginError(error.message, error.stack);\n }\n\n if (typeof printed !== 'string') {\n throw new Error(\n `pretty-format: Plugin must return type \"string\" but instead returned \"${typeof printed}\".`\n );\n }\n\n return printed;\n}\n\nfunction findPlugin(plugins, val) {\n for (let p = 0; p < plugins.length; p++) {\n try {\n if (plugins[p].test(val)) {\n return plugins[p];\n }\n } catch (error) {\n throw new PrettyFormatPluginError(error.message, error.stack);\n }\n }\n\n return null;\n}\n\nfunction printer(val, config, indentation, depth, refs, hasCalledToJSON) {\n const plugin = findPlugin(config.plugins, val);\n\n if (plugin !== null) {\n return printPlugin(plugin, val, config, indentation, depth, refs);\n }\n\n const basicResult = printBasicValue(\n val,\n config.printFunctionName,\n config.escapeRegex,\n config.escapeString\n );\n\n if (basicResult !== null) {\n return basicResult;\n }\n\n return printComplexValue(\n val,\n config,\n indentation,\n depth,\n refs,\n hasCalledToJSON\n );\n}\n\nconst DEFAULT_THEME = {\n comment: 'gray',\n content: 'reset',\n prop: 'yellow',\n tag: 'cyan',\n value: 'green'\n};\nconst DEFAULT_THEME_KEYS = Object.keys(DEFAULT_THEME);\nconst DEFAULT_OPTIONS = {\n callToJSON: true,\n compareKeys: undefined,\n escapeRegex: false,\n escapeString: true,\n highlight: false,\n indent: 2,\n maxDepth: Infinity,\n min: false,\n plugins: [],\n printBasicPrototype: true,\n printFunctionName: true,\n theme: DEFAULT_THEME\n};\nexports.DEFAULT_OPTIONS = DEFAULT_OPTIONS;\n\nfunction validateOptions(options) {\n Object.keys(options).forEach(key => {\n if (!DEFAULT_OPTIONS.hasOwnProperty(key)) {\n throw new Error(`pretty-format: Unknown option \"${key}\".`);\n }\n });\n\n if (options.min && options.indent !== undefined && options.indent !== 0) {\n throw new Error(\n 'pretty-format: Options \"min\" and \"indent\" cannot be used together.'\n );\n }\n\n if (options.theme !== undefined) {\n if (options.theme === null) {\n throw new Error(`pretty-format: Option \"theme\" must not be null.`);\n }\n\n if (typeof options.theme !== 'object') {\n throw new Error(\n `pretty-format: Option \"theme\" must be of type \"object\" but instead received \"${typeof options.theme}\".`\n );\n }\n }\n}\n\nconst getColorsHighlight = options =>\n DEFAULT_THEME_KEYS.reduce((colors, key) => {\n const value =\n options.theme && options.theme[key] !== undefined\n ? options.theme[key]\n : DEFAULT_THEME[key];\n const color = value && _ansiStyles.default[value];\n\n if (\n color &&\n typeof color.close === 'string' &&\n typeof color.open === 'string'\n ) {\n colors[key] = color;\n } else {\n throw new Error(\n `pretty-format: Option \"theme\" has a key \"${key}\" whose value \"${value}\" is undefined in ansi-styles.`\n );\n }\n\n return colors;\n }, Object.create(null));\n\nconst getColorsEmpty = () =>\n DEFAULT_THEME_KEYS.reduce((colors, key) => {\n colors[key] = {\n close: '',\n open: ''\n };\n return colors;\n }, Object.create(null));\n\nconst getPrintFunctionName = options =>\n options && options.printFunctionName !== undefined\n ? options.printFunctionName\n : DEFAULT_OPTIONS.printFunctionName;\n\nconst getEscapeRegex = options =>\n options && options.escapeRegex !== undefined\n ? options.escapeRegex\n : DEFAULT_OPTIONS.escapeRegex;\n\nconst getEscapeString = options =>\n options && options.escapeString !== undefined\n ? options.escapeString\n : DEFAULT_OPTIONS.escapeString;\n\nconst getConfig = options => {\n var _options$printBasicPr;\n\n return {\n callToJSON:\n options && options.callToJSON !== undefined\n ? options.callToJSON\n : DEFAULT_OPTIONS.callToJSON,\n colors:\n options && options.highlight\n ? getColorsHighlight(options)\n : getColorsEmpty(),\n compareKeys:\n options && typeof options.compareKeys === 'function'\n ? options.compareKeys\n : DEFAULT_OPTIONS.compareKeys,\n escapeRegex: getEscapeRegex(options),\n escapeString: getEscapeString(options),\n indent:\n options && options.min\n ? ''\n : createIndent(\n options && options.indent !== undefined\n ? options.indent\n : DEFAULT_OPTIONS.indent\n ),\n maxDepth:\n options && options.maxDepth !== undefined\n ? options.maxDepth\n : DEFAULT_OPTIONS.maxDepth,\n min:\n options && options.min !== undefined ? options.min : DEFAULT_OPTIONS.min,\n plugins:\n options && options.plugins !== undefined\n ? options.plugins\n : DEFAULT_OPTIONS.plugins,\n printBasicPrototype:\n (_options$printBasicPr =\n options === null || options === void 0\n ? void 0\n : options.printBasicPrototype) !== null &&\n _options$printBasicPr !== void 0\n ? _options$printBasicPr\n : true,\n printFunctionName: getPrintFunctionName(options),\n spacingInner: options && options.min ? ' ' : '\\n',\n spacingOuter: options && options.min ? '' : '\\n'\n };\n};\n\nfunction createIndent(indent) {\n return new Array(indent + 1).join(' ');\n}\n/**\n * Returns a presentation string of your `val` object\n * @param val any potential JavaScript object\n * @param options Custom settings\n */\n\nfunction format(val, options) {\n if (options) {\n validateOptions(options);\n\n if (options.plugins) {\n const plugin = findPlugin(options.plugins, val);\n\n if (plugin !== null) {\n return printPlugin(plugin, val, getConfig(options), '', 0, []);\n }\n }\n }\n\n const basicResult = printBasicValue(\n val,\n getPrintFunctionName(options),\n getEscapeRegex(options),\n getEscapeString(options)\n );\n\n if (basicResult !== null) {\n return basicResult;\n }\n\n return printComplexValue(val, getConfig(options), '', 0, []);\n}\n\nconst plugins = {\n AsymmetricMatcher: _AsymmetricMatcher.default,\n ConvertAnsi: _ConvertAnsi.default,\n DOMCollection: _DOMCollection.default,\n DOMElement: _DOMElement.default,\n Immutable: _Immutable.default,\n ReactElement: _ReactElement.default,\n ReactTestComponent: _ReactTestComponent.default\n};\nexports.plugins = plugins;\nvar _default = format;\nexports.default = _default;\n","\"use strict\";\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.prettyFormatQueryPlan = void 0;\nconst pretty_format_1 = __importDefault(require(\"pretty-format\"));\nconst snapshotSerializers_1 = require(\"./snapshotSerializers\");\nfunction prettyFormatQueryPlan(queryPlan) {\n return (0, pretty_format_1.default)(queryPlan, {\n plugins: [snapshotSerializers_1.queryPlanSerializer, snapshotSerializers_1.astSerializer],\n });\n}\nexports.prettyFormatQueryPlan = prettyFormatQueryPlan;\n//# sourceMappingURL=prettyFormatQueryPlan.js.map","\"use strict\";\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.trimSelectionNodes = exports.getResponseName = exports.serializeQueryPlan = void 0;\nconst graphql_1 = require(\"graphql\");\nconst pretty_format_1 = __importDefault(require(\"pretty-format\"));\nconst snapshotSerializers_1 = require(\"./snapshotSerializers\");\nfunction serializeQueryPlan(queryPlan) {\n return (0, pretty_format_1.default)(queryPlan, {\n plugins: [snapshotSerializers_1.queryPlanSerializer, snapshotSerializers_1.astSerializer],\n });\n}\nexports.serializeQueryPlan = serializeQueryPlan;\nfunction getResponseName(node) {\n return node.alias ? node.alias : node.name;\n}\nexports.getResponseName = getResponseName;\nconst trimSelectionNodes = (selections) => {\n const remapped = [];\n selections.forEach((selection) => {\n var _a;\n if (selection.kind === graphql_1.Kind.FIELD) {\n remapped.push({\n kind: graphql_1.Kind.FIELD,\n name: selection.name.value,\n selections: selection.selectionSet &&\n (0, exports.trimSelectionNodes)(selection.selectionSet.selections),\n });\n }\n if (selection.kind === graphql_1.Kind.INLINE_FRAGMENT) {\n remapped.push({\n kind: graphql_1.Kind.INLINE_FRAGMENT,\n typeCondition: (_a = selection.typeCondition) === null || _a === void 0 ? void 0 : _a.name.value,\n selections: (0, exports.trimSelectionNodes)(selection.selectionSet.selections),\n });\n }\n });\n return remapped;\n};\nexports.trimSelectionNodes = trimSelectionNodes;\n//# sourceMappingURL=QueryPlan.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.isStrictSubtype = exports.isSubtype = exports.isDirectSubtype = exports.sameType = exports.DEFAULT_SUBTYPING_RULES = exports.ALL_SUBTYPING_RULES = void 0;\nconst definitions_1 = require(\"./definitions\");\nexports.ALL_SUBTYPING_RULES = [\n 'direct',\n 'nonNullable_downgrade',\n 'list_upgrade',\n 'list_propagation',\n 'nonNullable_propagation'\n];\nexports.DEFAULT_SUBTYPING_RULES = exports.ALL_SUBTYPING_RULES.filter(r => r !== \"list_upgrade\");\nfunction sameType(t1, t2) {\n if (t1.kind !== t2.kind) {\n return false;\n }\n switch (t1.kind) {\n case 'ListType':\n return sameType(t1.ofType, t2.ofType);\n case 'NonNullType':\n return sameType(t1.ofType, t2.ofType);\n default:\n return t1.name === t2.name;\n }\n}\nexports.sameType = sameType;\nfunction isDirectSubtype(type, maybeSubType, unionMembershipTester = (u, m) => u.hasTypeMember(m), implementsInterfaceTester = (m, i) => m.implementsInterface(i)) {\n if ((0, definitions_1.isUnionType)(type)) {\n return (0, definitions_1.isObjectType)(maybeSubType) && unionMembershipTester(type, maybeSubType);\n }\n return implementsInterfaceTester(maybeSubType, type);\n}\nexports.isDirectSubtype = isDirectSubtype;\nfunction isSubtype(type, maybeSubType, allowedRules = exports.DEFAULT_SUBTYPING_RULES, unionMembershipTester = (u, m) => u.hasTypeMember(m), implementsInterfaceTester = (m, i) => m.implementsInterface(i)) {\n return sameType(type, maybeSubType) || isStrictSubtype(type, maybeSubType, allowedRules, unionMembershipTester, implementsInterfaceTester);\n}\nexports.isSubtype = isSubtype;\nfunction isStrictSubtype(type, maybeSubType, allowedRules = exports.DEFAULT_SUBTYPING_RULES, unionMembershipTester = (u, m) => u.hasTypeMember(m), implementsInterfaceTester = (m, i) => m.implementsInterface(i)) {\n switch (maybeSubType.kind) {\n case 'ListType':\n return allowedRules.includes('list_propagation')\n && (0, definitions_1.isListType)(type)\n && isSubtype(type.ofType, maybeSubType.ofType, allowedRules, unionMembershipTester, implementsInterfaceTester);\n case 'NonNullType':\n if ((0, definitions_1.isNonNullType)(type)) {\n return allowedRules.includes('nonNullable_propagation')\n && isSubtype(type.ofType, maybeSubType.ofType, allowedRules, unionMembershipTester, implementsInterfaceTester);\n }\n return allowedRules.includes('nonNullable_downgrade')\n && isSubtype(type, maybeSubType.ofType, allowedRules, unionMembershipTester, implementsInterfaceTester);\n case 'ObjectType':\n case 'InterfaceType':\n if ((0, definitions_1.isListType)(type)) {\n return allowedRules.includes('list_upgrade')\n && isSubtype(type.ofType, maybeSubType, allowedRules, unionMembershipTester, implementsInterfaceTester);\n }\n return allowedRules.includes('direct')\n && ((0, definitions_1.isInterfaceType)(type) || (0, definitions_1.isUnionType)(type))\n && isDirectSubtype(type, maybeSubType, unionMembershipTester, implementsInterfaceTester);\n default:\n return (0, definitions_1.isListType)(type)\n && allowedRules.includes('list_upgrade')\n && isSubtype(type.ofType, maybeSubType, allowedRules, unionMembershipTester, implementsInterfaceTester);\n }\n}\nexports.isStrictSubtype = isStrictSubtype;\n//# sourceMappingURL=types.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.err = exports.GraphQLErrorExt = void 0;\nconst graphql_1 = require(\"graphql\");\nclass GraphQLErrorExt extends graphql_1.GraphQLError {\n constructor(code, message, props) {\n super(message, props === null || props === void 0 ? void 0 : props.nodes, props === null || props === void 0 ? void 0 : props.source, props === null || props === void 0 ? void 0 : props.positions, props === null || props === void 0 ? void 0 : props.path, props === null || props === void 0 ? void 0 : props.originalError, props === null || props === void 0 ? void 0 : props.extensions);\n this.code = code;\n if (props)\n for (const prop in props) {\n if (!GraphQLErrorExt.BASE_PROPS.has(prop)) {\n this[prop] = props[prop];\n }\n }\n this.name = code;\n }\n throw() { throw this; }\n toString() {\n let output = `[${this.code}] ${(0, graphql_1.printError)(this)}`;\n const causes = this.causes;\n if (causes && causes.length) {\n output += '\\ncaused by:';\n for (const cause of this.causes || []) {\n if (!cause)\n continue;\n output += '\\n\\n - ';\n output += cause.toString().split('\\n').join('\\n ');\n }\n }\n return output;\n }\n}\nexports.GraphQLErrorExt = GraphQLErrorExt;\nGraphQLErrorExt.BASE_PROPS = new Set('nodes source positions path originalError extensions'.split(' '));\nfunction err(code, props) {\n const message = typeof props === 'string' ? props : props.message;\n const error = new GraphQLErrorExt(code, message, typeof props === 'string' ? undefined : props);\n return error;\n}\nexports.err = err;\nexports.default = err;\n//# sourceMappingURL=error.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Cell = exports.ROLLBACK = exports.Core = exports.ErrCheckFailed = exports.ErrEvalStackEmpty = exports.ErrNoData = void 0;\nconst error_1 = require(\"./error\");\nconst ErrNoData = (causes) => (0, error_1.err)('NoData', {\n message: 'no data',\n causes\n});\nexports.ErrNoData = ErrNoData;\nconst ErrEvalStackEmpty = () => (0, error_1.err)('EvalStackEmpty', {\n code: 'EvalStackEmpty',\n message: 'this method must only be called from an evaluator, during evaluation. no evaluation is ongoing.'\n});\nexports.ErrEvalStackEmpty = ErrEvalStackEmpty;\nconst ErrCheckFailed = (causes) => (0, error_1.err)('CheckFailed', {\n message: 'one or more checks failed',\n causes\n});\nexports.ErrCheckFailed = ErrCheckFailed;\nclass Core {\n constructor(data) {\n this._cells = new WeakMap;\n this._stack = [];\n this._traceStack = [];\n this._data = data;\n }\n get data() { return this._data; }\n get(fn) {\n var _a;\n const cell = this.getCell(fn);\n this.evaluate(cell, fn);\n if (!cell.result) {\n throw (0, exports.ErrNoData)();\n }\n if (cell.result.data === undefined) {\n if (((_a = cell.result.errors) === null || _a === void 0 ? void 0 : _a.length) === 1)\n throw cell.result.errors[0];\n throw (0, exports.ErrNoData)(cell.result.errors);\n }\n return cell.result.data;\n }\n try(fn) {\n var _a;\n const cell = this.getCell(fn);\n this.evaluate(cell, fn);\n return (_a = cell.result) === null || _a === void 0 ? void 0 : _a.data;\n }\n getResult(fn) {\n const cell = this.getCell(fn);\n let result = { errors: [] };\n this.trace(() => {\n var _a;\n this.evaluate(cell, fn);\n result.data = (_a = cell.result) === null || _a === void 0 ? void 0 : _a.data;\n }, (event, _fn, cellResult) => {\n if (event === 'end' && cellResult && cellResult.errors)\n result.errors = result.errors.concat(cellResult.errors);\n });\n return result;\n }\n check(...fns) {\n let errors = [];\n this.trace(() => {\n for (const fn of fns)\n this.try(fn);\n }, (event, _fn, cellResult) => {\n if (event === 'end' && cellResult && cellResult.errors)\n errors = errors.concat(cellResult.errors);\n });\n if (!errors.length)\n return this;\n throw (0, exports.ErrCheckFailed)(errors);\n }\n update(update) {\n this._data = update(this.data);\n }\n pure(...passIfChanged) {\n const { currentCell } = this;\n currentCell.pure(...passIfChanged);\n }\n report(...errors) {\n const { currentCell } = this;\n for (const error of errors)\n currentCell.report(error);\n }\n get currentCell() {\n const top = this._stack[this._stack.length - 1];\n if (!top)\n throw (0, exports.ErrEvalStackEmpty)();\n return top;\n }\n get currentTracer() {\n return this._traceStack[this._traceStack.length - 1];\n }\n trace(block, onEvent) {\n this._traceStack.push(onEvent);\n try {\n block();\n }\n finally {\n this._traceStack.pop();\n }\n }\n evaluate(cell, fn) {\n const tracer = this.currentTracer;\n this._stack.push(cell);\n try {\n try {\n if (tracer)\n tracer('begin', fn, cell.result);\n cell.evaluate(this, fn);\n }\n finally {\n if (tracer)\n tracer('end', fn, cell.result);\n }\n }\n finally {\n this._stack.pop();\n }\n }\n getCell(fn) {\n const existing = this._cells.get(fn);\n if (existing)\n return existing;\n const created = new Cell;\n this._cells.set(fn, created);\n return created;\n }\n}\nexports.Core = Core;\nexports.default = Core;\nexports.ROLLBACK = Object.freeze({ ROLLBACK: true });\nclass Cell {\n constructor() {\n this.status = 'empty';\n this.result = undefined;\n this._pendingResult = undefined;\n this._guards = [];\n this._nextGuard = 0;\n }\n pure(...changed) {\n const index = this._nextGuard++;\n const existing = this._guards[index];\n try {\n if (!existing)\n return;\n if (existing.length !== changed.length)\n return;\n let i = existing.length;\n while (i-- > 0) {\n if (existing[i] !== changed[i])\n return;\n }\n throw exports.ROLLBACK;\n }\n finally {\n this._guards[index] = changed;\n }\n }\n report(error) {\n var _a;\n const pending = this._pendingResult;\n if (!pending)\n throw new Error('cell is not being evaluated');\n pending.errors = (_a = pending.errors) !== null && _a !== void 0 ? _a : [];\n pending.errors.push(error);\n }\n evaluate(core, fn) {\n const pending = {};\n this._pendingResult = pending;\n const lastStatus = this.status;\n this.status = 'run';\n this._nextGuard = 0;\n let rollback = false;\n try {\n pending.data = fn.call(core, core);\n }\n catch (err) {\n if (err === exports.ROLLBACK) {\n rollback = true;\n }\n else {\n this.report(err);\n }\n }\n finally {\n this._nextGuard = 0;\n if (!rollback) {\n this.result = pending;\n this.status = 'ready';\n }\n else {\n this.status = lastStatus;\n }\n this._pendingResult = undefined;\n }\n }\n}\nexports.Cell = Cell;\n//# sourceMappingURL=core.js.map","\"use strict\";\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Version = exports.ErrVersionParse = void 0;\nconst error_1 = __importDefault(require(\"./error\"));\nconst ErrVersionParse = (input) => (0, error_1.default)('VersionParse', {\n message: `expected a version specifier like \"v9.8\", got \"${input}\"`,\n input,\n});\nexports.ErrVersionParse = ErrVersionParse;\nclass Version {\n constructor(major, minor) {\n this.major = major;\n this.minor = minor;\n }\n static parse(input) {\n const match = input.match(this.VERSION_RE);\n if (!match)\n throw (0, exports.ErrVersionParse)(input);\n return new this(+match[1], +match[2]);\n }\n satisfies(required) {\n const { major, minor } = this;\n const { major: rMajor, minor: rMinor } = required;\n return rMajor == major && (major == 0\n ? rMinor == minor\n : rMinor <= minor);\n }\n get series() {\n const { major } = this;\n return major > 0 ? `${major}.x` : String(this);\n }\n toString() {\n return `v${this.major}.${this.minor}`;\n }\n equals(other) {\n return this.major === other.major && this.minor === other.minor;\n }\n}\nexports.Version = Version;\nVersion.VERSION_RE = /^v(\\d+)\\.(\\d+)$/;\nexports.default = Version;\n//# sourceMappingURL=version.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.ErrNoVersion = exports.ErrNoName = exports.ErrNoPath = void 0;\nconst url_1 = require(\"url\");\nconst version_1 = require(\"./version\");\nconst error_1 = require(\"./error\");\nconst ErrNoPath = (url, node) => (0, error_1.err)('NoPath', {\n message: `feature url does not have a path: ${url}`,\n url,\n nodes: node ? [node] : undefined\n});\nexports.ErrNoPath = ErrNoPath;\nconst ErrNoName = (url, node) => (0, error_1.err)('NoName', {\n message: `feature url does not specify a name: ${url}`,\n url,\n nodes: node ? [node] : undefined\n});\nexports.ErrNoName = ErrNoName;\nconst ErrNoVersion = (url, node) => (0, error_1.err)('NoVersion', {\n message: `feature url does not specify a version: ${url}`,\n url,\n nodes: node ? [node] : undefined\n});\nexports.ErrNoVersion = ErrNoVersion;\nclass FeatureUrl {\n constructor(identity, name, version, element) {\n this.identity = identity;\n this.name = name;\n this.version = version;\n this.element = element;\n }\n static parse(input, node) {\n const url = new url_1.URL(input);\n if (!url.pathname || url.pathname === '/')\n throw (0, exports.ErrNoPath)(url, node);\n const path = url.pathname.split('/');\n const verStr = path.pop();\n if (!verStr)\n throw (0, exports.ErrNoVersion)(url, node);\n const version = version_1.Version.parse(verStr);\n const name = path[path.length - 1];\n if (!name)\n throw (0, exports.ErrNoName)(url, node);\n const element = url.hash ? url.hash.slice(1) : undefined;\n url.hash = '';\n url.search = '';\n url.password = '';\n url.username = '';\n url.pathname = path.join('/');\n return new FeatureUrl(url.toString(), name, version, element);\n }\n static decode(node) {\n return this.parse(node.value, node);\n }\n satisfies(requested) {\n return requested.identity === this.identity &&\n this.version.satisfies(requested.version);\n }\n equals(other) {\n return this.identity === other.identity &&\n this.version.equals(other.version);\n }\n get url() {\n return this.element ?\n `${this.identity}/${this.version}#${this.element}`\n : `${this.identity}/${this.version}`;\n }\n get isDirective() {\n var _a;\n return (_a = this.element) === null || _a === void 0 ? void 0 : _a.startsWith('@');\n }\n get elementName() {\n var _a;\n return this.isDirective ? (_a = this.element) === null || _a === void 0 ? void 0 : _a.slice(1) : this.element;\n }\n get base() {\n if (!this.element)\n return this;\n return new FeatureUrl(this.identity, this.name, this.version);\n }\n toString() {\n return this.url;\n }\n}\nexports.default = FeatureUrl;\n//# sourceMappingURL=feature-url.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.getPrefix = void 0;\nfunction getPrefix(name, sep = '__') {\n const idx = name.indexOf(sep);\n if (idx === -1)\n return [null, name];\n return [name.substr(0, idx), name.substr(idx + sep.length)];\n}\nexports.getPrefix = getPrefix;\n//# sourceMappingURL=names.js.map","\"use strict\";\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Features = exports.Feature = void 0;\nconst error_1 = require(\"./error\");\nconst feature_url_1 = __importDefault(require(\"./feature-url\"));\nconst names_1 = require(\"./names\");\nconst ErrTooManyFeatureVersions = (features) => (0, error_1.err)('TooManyFeatureVersions', {\n message: `too many versions of ${features[0].url.identity} at v${features[0].url.version.series}`,\n features,\n major: features[0].url.version.major,\n nodes: features.map(f => f.directive),\n});\nclass Feature {\n constructor(url, name, directive, purpose) {\n this.url = url;\n this.name = name;\n this.directive = directive;\n this.purpose = purpose;\n }\n canonicalName(docName) {\n const [prefix, base] = (0, names_1.getPrefix)(docName);\n if (prefix) {\n if (prefix !== this.name)\n return null;\n return `${this.url.name}__${base}`;\n }\n if (base !== this.name)\n return null;\n return this.url.name;\n }\n}\nexports.Feature = Feature;\nclass Features {\n constructor() {\n this.features = new Map;\n }\n add(feature) {\n const majors = this.findOrCreateIdentity(feature.url.identity);\n const { series } = feature.url.version;\n const existing = majors.get(series);\n if (existing != null) {\n existing.push(feature);\n return;\n }\n majors.set(series, [feature]);\n }\n find(feature, exact = false) {\n var _a, _b;\n feature = typeof feature === 'string' ? feature_url_1.default.parse(feature) : feature;\n const documentFeature = (_b = (_a = this.features.get(feature.identity)) === null || _a === void 0 ? void 0 : _a.get(feature.version.series)) === null || _b === void 0 ? void 0 : _b[0];\n if ((exact && (documentFeature === null || documentFeature === void 0 ? void 0 : documentFeature.url.equals(feature))) ||\n (!exact && (documentFeature === null || documentFeature === void 0 ? void 0 : documentFeature.url.satisfies(feature))))\n return documentFeature;\n return null;\n }\n documentName(feature, exact = false) {\n var _a;\n feature = typeof feature === 'string' ? feature_url_1.default.parse(feature) : feature;\n const found = this.find(feature, exact);\n if (!found)\n return null;\n const element = feature.isDirective ? (_a = feature.element) === null || _a === void 0 ? void 0 : _a.slice(1) : feature.element;\n if (!element || feature.isDirective && (element === found.url.name))\n return found.name;\n return found.name + '__' + element;\n }\n *[Symbol.iterator]() {\n for (const majors of this.features.values()) {\n for (const features of majors.values()) {\n yield* features;\n }\n }\n }\n validate() {\n const errors = [];\n for (const [_, majors] of this.features) {\n for (const [_, features] of majors) {\n if (features.length <= 1)\n continue;\n errors.push(ErrTooManyFeatureVersions(features));\n }\n }\n return errors;\n }\n findOrCreateIdentity(identity) {\n const existing = this.features.get(identity);\n if (existing)\n return existing;\n const created = new Map();\n this.features.set(identity, created);\n return created;\n }\n}\nexports.Features = Features;\nexports.default = Features;\n//# sourceMappingURL=features.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.hasDirectives = exports.hasName = exports.isAst = exports.isEmpty = exports.isNonEmpty = exports.asString = exports.isAsString = exports.isTemplate = void 0;\nconst knownTemplates = new WeakSet;\nconst isTemplate = (args) => knownTemplates.has(args) || !!(Array.isArray(args[0]) &&\n args[0].every(x => typeof x === 'string') &&\n args[0].length === args.length &&\n knownTemplates.add(args[0]));\nexports.isTemplate = isTemplate;\nconst isAsString = (args) => (0, exports.isTemplate)(args) || (args.length === 1 && typeof args[0] === 'string');\nexports.isAsString = isAsString;\nfunction asString(input) {\n return (!(0, exports.isAsString)(input)\n ? undefined\n :\n (0, exports.isTemplate)(input)\n ? String.raw(...input)\n : input[0]);\n}\nexports.asString = asString;\nfunction isNonEmpty(input) {\n return !isEmpty(input);\n}\nexports.isNonEmpty = isNonEmpty;\nfunction isEmpty(input) {\n return !input.length;\n}\nexports.isEmpty = isEmpty;\nconst graphql_1 = require(\"graphql\");\nfunction isAst(obj, ...kinds) {\n return kinds.indexOf(obj === null || obj === void 0 ? void 0 : obj.kind) !== -1;\n}\nexports.isAst = isAst;\nconst hasName = (node) => isAst(node === null || node === void 0 ? void 0 : node.name, graphql_1.Kind.NAME);\nexports.hasName = hasName;\nconst hasDirectives = (node) => Array.isArray(node === null || node === void 0 ? void 0 : node.directives);\nexports.hasDirectives = hasDirectives;\n//# sourceMappingURL=is.js.map","\"use strict\";\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n}) : function(o, v) {\n o[\"default\"] = v;\n});\nvar __importStar = (this && this.__importStar) || function (mod) {\n if (mod && mod.__esModule) return mod;\n var result = {};\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n __setModuleDefault(result, mod);\n return result;\n};\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.names = exports.features = exports.schema = exports.CoreSchema = exports.ErrOverlappingNames = exports.ErrBadFeature = exports.ErrNoCore = exports.ErrNoSchema = exports.ErrExtraSchema = void 0;\nconst graphql_1 = require(\"graphql\");\nconst values_1 = require(\"graphql/execution/values\");\nconst core_1 = __importDefault(require(\"./core\"));\nconst error_1 = require(\"./error\");\nconst feature_url_1 = __importDefault(require(\"./feature-url\"));\nconst features_1 = __importStar(require(\"./features\"));\nconst is_1 = require(\"./is\");\nconst names_1 = require(\"./names\");\nconst ErrExtraSchema = (def) => (0, error_1.err)('ExtraSchema', {\n message: 'extra schema definition ignored',\n schemaDefinition: def,\n nodes: [def]\n});\nexports.ErrExtraSchema = ErrExtraSchema;\nconst ErrNoSchema = () => (0, error_1.err)('NoSchema', 'no schema definitions found');\nexports.ErrNoSchema = ErrNoSchema;\nconst ErrNoCore = (causes) => (0, error_1.err)('NoCore', {\n message: 'no core feature found',\n causes\n});\nexports.ErrNoCore = ErrNoCore;\nconst ErrBadFeature = (node, ...causes) => (0, error_1.err)('BadFeature', {\n message: 'bad core feature request',\n directive: node,\n nodes: [node],\n causes\n});\nexports.ErrBadFeature = ErrBadFeature;\nconst ErrOverlappingNames = (name, features) => (0, error_1.err)('OverlappingNames', {\n message: `the name \"${name}\" is defined by multiple features`,\n name,\n features,\n nodes: features.map(f => f.directive)\n});\nexports.ErrOverlappingNames = ErrOverlappingNames;\nclass CoreSchema extends core_1.default {\n static graphql(parts, ...replacements) {\n return CoreSchema.fromSource(new graphql_1.Source(String.raw.call(null, parts, ...replacements), '(inline graphql)'));\n }\n static fromSource(source) {\n return new CoreSchema((0, graphql_1.parse)(source));\n }\n check(...fns) {\n if (!fns.length)\n fns = [features, names];\n return super.check(...fns);\n }\n get document() { return this.data; }\n get schema() { return this.get(schema); }\n get features() { return this.get(features); }\n get names() { return this.get(names); }\n *read(directive, node) {\n var _a;\n const url = directive instanceof feature_url_1.default ? directive\n : typeof directive === 'string' ? feature_url_1.default.parse(directive)\n : feature_url_1.default.parse((_a = directive.extensions) === null || _a === void 0 ? void 0 : _a.specifiedBy);\n const name = this.features.documentName(url);\n const feature = this.features.find(url);\n const match = url.isDirective\n ? (dir) => dir.name.value === name\n : (dir) => this.featureFor(dir) === feature;\n if (!(0, is_1.hasDirectives)(node))\n return;\n if (!feature)\n return;\n for (const d of node.directives) {\n if (match(d)) {\n const data = directive instanceof graphql_1.GraphQLDirective\n ? (0, values_1.getArgumentValues)(directive, d)\n : undefined;\n const item = {\n node,\n directive: d,\n feature,\n canonicalName: '@' + (feature === null || feature === void 0 ? void 0 : feature.canonicalName(d.name.value)),\n };\n if (data != null)\n item.data = data;\n yield item;\n }\n }\n }\n featureFor(node) {\n if (!(0, is_1.hasName)(node))\n return;\n const [prefix] = (0, names_1.getPrefix)(node.name.value);\n if (prefix || (0, is_1.isAst)(node, graphql_1.Kind.DIRECTIVE, graphql_1.Kind.DIRECTIVE_DEFINITION)) {\n return this.names.get(prefix !== null && prefix !== void 0 ? prefix : node.name.value);\n }\n return;\n }\n}\nexports.CoreSchema = CoreSchema;\nexports.default = CoreSchema;\nfunction schema() {\n let schema = null;\n for (const def of this.document.definitions) {\n if (def.kind === 'SchemaDefinition') {\n if (!schema)\n schema = def;\n else\n this.report((0, exports.ErrExtraSchema)(def));\n }\n }\n if (!schema) {\n throw (0, exports.ErrNoSchema)();\n }\n return schema;\n}\nexports.schema = schema;\nfunction isCoreArgs(maybeCoreArgs) {\n return (typeof maybeCoreArgs === \"object\" &&\n maybeCoreArgs != null &&\n \"feature\" in maybeCoreArgs);\n}\nfunction features() {\n var _a, _b, _c, _d;\n const schema = this.schema;\n this.pure(...(_a = schema.directives) !== null && _a !== void 0 ? _a : []);\n const noCoreErrors = [];\n let coreFeature = null;\n const features = new features_1.default;\n for (const d of schema.directives || []) {\n if (!coreFeature) {\n try {\n const coreArgs = (0, values_1.getArgumentValues)($core, d);\n if (isCoreArgs(coreArgs)) {\n if (CORE_VERSIONS.has(coreArgs.feature) &&\n d.name.value === ((_b = coreArgs.as) !== null && _b !== void 0 ? _b : \"core\")) {\n const url = feature_url_1.default.parse(coreArgs.feature);\n coreFeature = new features_1.Feature(url, (_c = coreArgs.as) !== null && _c !== void 0 ? _c : url.name, d);\n }\n }\n else {\n throw new Error(\"Invalid arguments provided to core feature.\");\n }\n }\n catch (err) {\n noCoreErrors.push(err);\n }\n }\n if (coreFeature && d.name.value === coreFeature.name) {\n try {\n const coreArgs = (0, values_1.getArgumentValues)($core, d);\n if (isCoreArgs(coreArgs)) {\n const url = feature_url_1.default.parse(coreArgs.feature);\n features.add(new features_1.Feature(url, (_d = coreArgs.as) !== null && _d !== void 0 ? _d : url.name, d, coreArgs.for));\n }\n else {\n throw new Error(\"Invalid arguments provided to core feature.\");\n }\n }\n catch (err) {\n this.report((0, exports.ErrBadFeature)(d, err));\n }\n }\n }\n if (!coreFeature)\n throw (0, exports.ErrNoCore)(noCoreErrors);\n this.report(...features.validate());\n return features;\n}\nexports.features = features;\nfunction names() {\n var _a;\n const { features } = this;\n this.pure(features);\n const names = new Map;\n for (const feature of features) {\n if (!names.has(feature.name))\n names.set(feature.name, []);\n (_a = names.get(feature.name)) === null || _a === void 0 ? void 0 : _a.push(feature);\n }\n const output = new Map;\n for (const [name, features] of names) {\n if (features.length > 1) {\n this.report((0, exports.ErrOverlappingNames)(name, features));\n continue;\n }\n output.set(name, features[0]);\n }\n return output;\n}\nexports.names = names;\nconst CORE_VERSIONS = new Set([\n 'https://specs.apollo.dev/core/v0.1',\n 'https://specs.apollo.dev/core/v0.2',\n]);\nconst Purpose = new graphql_1.GraphQLEnumType({\n name: 'core__Purpose',\n values: {\n SECURITY: {},\n EXECUTION: {},\n },\n});\nconst $core = new graphql_1.GraphQLDirective({\n name: \"core\",\n args: {\n feature: { type: new graphql_1.GraphQLNonNull(graphql_1.GraphQLString) },\n as: { type: graphql_1.GraphQLString },\n for: { type: Purpose },\n },\n locations: [graphql_1.DirectiveLocation.SCHEMA],\n isRepeatable: true,\n});\n//# sourceMappingURL=schema.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.isAnyError = void 0;\nconst ERROR_CODES = new Set([\n \"NoData\",\n \"EvalStackEmpty\",\n \"CheckFailed\",\n \"NoPath\",\n \"NoName\",\n \"NoVersion\",\n \"ExtraSchema\",\n \"NoSchema\",\n \"NoCore\",\n \"BadFeature\",\n \"OverlappingNames\",\n \"VersionParse\",\n]);\nfunction isAnyError(o) {\n return ERROR_CODES.has(o === null || o === void 0 ? void 0 : o.code);\n}\nexports.isAnyError = isAnyError;\n//# sourceMappingURL=errors.js.map","\"use strict\";\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.err = exports.Core = exports.Features = exports.Feature = exports.Version = void 0;\n__exportStar(require(\"./schema\"), exports);\nvar version_1 = require(\"./version\");\nObject.defineProperty(exports, \"Version\", { enumerable: true, get: function () { return version_1.Version; } });\nvar features_1 = require(\"./features\");\nObject.defineProperty(exports, \"Feature\", { enumerable: true, get: function () { return features_1.Feature; } });\nObject.defineProperty(exports, \"Features\", { enumerable: true, get: function () { return features_1.Features; } });\nvar core_1 = require(\"./core\");\nObject.defineProperty(exports, \"Core\", { enumerable: true, get: function () { return core_1.Core; } });\nvar error_1 = require(\"./error\");\nObject.defineProperty(exports, \"err\", { enumerable: true, get: function () { return error_1.err; } });\n__exportStar(require(\"./errors\"), exports);\n//# sourceMappingURL=index.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.joinStrings = exports.validateStringContainsBoolean = exports.copyWitNewLength = exports.MapWithCachedArrays = exports.setValues = exports.mapEntries = exports.mapKeys = exports.mapValues = exports.firstOf = exports.arrayEquals = exports.OrderedMap = exports.MultiMap = exports.assertUnreachable = exports.assert = void 0;\nfunction assert(condition, message) {\n if (!condition) {\n throw new Error(typeof message === 'string' ? message : message());\n }\n}\nexports.assert = assert;\nfunction assertUnreachable(_) {\n throw new Error(\"Didn't expect to get here\");\n}\nexports.assertUnreachable = assertUnreachable;\nclass MultiMap extends Map {\n add(key, value) {\n const values = this.get(key);\n if (values) {\n values.push(value);\n }\n else {\n this.set(key, [value]);\n }\n return this;\n }\n}\nexports.MultiMap = MultiMap;\nclass OrderedMap {\n constructor(compareFn = OrderedMap.defaultCompareFn) {\n this._keys = [];\n this._values = new Map();\n this._compareFn = compareFn;\n }\n static defaultCompareFn(a, b) {\n if (a < b) {\n return -1;\n }\n else if (b < a) {\n return 1;\n }\n return 0;\n }\n add(key, value) {\n if (!this._values.has(key)) {\n this.insertKeyInOrder(key);\n }\n this._values.set(key, value);\n }\n get(key) {\n return this._values.get(key);\n }\n has(key) {\n return this._values.has(key);\n }\n get size() {\n return this._keys.length;\n }\n keys() {\n return this._keys;\n }\n values() {\n return this._keys.map(key => {\n const v = this._values.get(key);\n assert(v, 'value for known key not found in OrderedMap');\n return v;\n });\n }\n insertKeyInOrder(key) {\n let lower = 0;\n let upper = this._keys.length - 1;\n while (lower <= upper) {\n const middle = Math.floor((upper + lower) / 2);\n if (this._compareFn(this._keys[middle], key) < 0) {\n lower = middle + 1;\n }\n else {\n upper = middle - 1;\n }\n }\n this._keys = this._keys.slice(0, lower).concat(key).concat(this._keys.slice(lower));\n }\n *[Symbol.iterator]() {\n for (let i = 0; i < this._keys.length; i += 1) {\n const v = this._values.get(this._keys[i]);\n assert(v, 'value for known key not found in OrderedMap');\n yield v;\n }\n }\n}\nexports.OrderedMap = OrderedMap;\nfunction arrayEquals(a, b, equalFct) {\n if (a === b) {\n return true;\n }\n if (a.length !== b.length) {\n return false;\n }\n for (let i = 0; i < a.length; ++i) {\n const eltEqual = equalFct ? equalFct(a[i], b[i]) : a[i] === b[i];\n if (!eltEqual) {\n return false;\n }\n }\n return true;\n}\nexports.arrayEquals = arrayEquals;\nfunction firstOf(iterable) {\n const res = iterable[Symbol.iterator]().next();\n return res.done ? undefined : res.value;\n}\nexports.firstOf = firstOf;\nfunction mapValues(map) {\n const array = new Array(map.size);\n let i = 0;\n for (const v of map.values()) {\n array[i++] = v;\n }\n return array;\n}\nexports.mapValues = mapValues;\nfunction mapKeys(map) {\n const array = new Array(map.size);\n let i = 0;\n for (const k of map.keys()) {\n array[i++] = k;\n }\n return array;\n}\nexports.mapKeys = mapKeys;\nfunction mapEntries(map) {\n const array = new Array(map.size);\n let i = 0;\n for (const entry of map.entries()) {\n array[i++] = entry;\n }\n return array;\n}\nexports.mapEntries = mapEntries;\nfunction setValues(set) {\n const array = new Array(set.size);\n let i = 0;\n for (const v of set.values()) {\n array[i++] = v;\n }\n return array;\n}\nexports.setValues = setValues;\nclass MapWithCachedArrays {\n constructor() {\n this.map = new Map();\n }\n clearCaches() {\n this.cachedKeys = undefined;\n this.cachedValues = undefined;\n }\n get size() {\n return this.map.size;\n }\n has(key) {\n return this.map.has(key);\n }\n get(key) {\n return this.map.get(key);\n }\n set(key, value) {\n this.map.set(key, value);\n this.clearCaches();\n return this;\n }\n delete(key) {\n const deleted = this.map.delete(key);\n if (deleted) {\n this.clearCaches();\n }\n return deleted;\n }\n clear() {\n this.map.clear();\n this.clearCaches();\n }\n keys() {\n if (!this.cachedKeys) {\n this.cachedKeys = mapKeys(this.map);\n }\n return this.cachedKeys;\n }\n values() {\n if (!this.cachedValues) {\n this.cachedValues = mapValues(this.map);\n }\n return this.cachedValues;\n }\n}\nexports.MapWithCachedArrays = MapWithCachedArrays;\nfunction copyWitNewLength(arr, newLength) {\n assert(newLength >= arr.length, () => `${newLength} < ${arr.length}`);\n const copy = new Array(newLength);\n for (let i = 0; i < arr.length; i++) {\n copy[i] = arr[i];\n }\n return copy;\n}\nexports.copyWitNewLength = copyWitNewLength;\nfunction validateStringContainsBoolean(str) {\n if (!str) {\n return false;\n }\n switch (str.toLocaleLowerCase()) {\n case \"true\":\n case \"yes\":\n case \"1\":\n return true;\n case \"false\":\n case \"no\":\n case \"0\":\n return false;\n default:\n return undefined;\n }\n}\nexports.validateStringContainsBoolean = validateStringContainsBoolean;\nfunction joinStrings(toJoin, sep = ', ', firstSep, lastSep = ' and ') {\n if (toJoin.length == 0) {\n return '';\n }\n const first = toJoin[0];\n if (toJoin.length == 1) {\n return first;\n }\n const last = toJoin[toJoin.length - 1];\n if (toJoin.length == 2) {\n return first + (firstSep ? firstSep : lastSep) + last;\n }\n return first + (firstSep ? firstSep : sep) + toJoin.slice(1, toJoin.length - 1) + lastSep + last;\n}\nexports.joinStrings = joinStrings;\n//# sourceMappingURL=utils.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.removeFeatureElements = exports.CORE_VERSIONS = exports.FeatureUrl = exports.FeatureVersion = exports.FeatureDefinitions = exports.CoreSpecDefinition = exports.isCoreSpecDirectiveApplication = exports.FeatureDefinition = exports.corePurposes = exports.ErrCoreCheckFailed = exports.coreIdentity = void 0;\nconst graphql_1 = require(\"graphql\");\nconst url_1 = require(\"url\");\nconst definitions_1 = require(\"./definitions\");\nconst types_1 = require(\"./types\");\nconst core_schema_1 = require(\"@apollo/core-schema\");\nconst utils_1 = require(\"./utils\");\nexports.coreIdentity = 'https://specs.apollo.dev/core';\nconst ErrCoreCheckFailed = (causes) => (0, core_schema_1.err)('CheckFailed', {\n message: 'one or more checks failed',\n causes\n});\nexports.ErrCoreCheckFailed = ErrCoreCheckFailed;\nfunction buildError(message) {\n return new Error(message);\n}\nexports.corePurposes = [\n 'SECURITY',\n 'EXECUTION',\n];\nfunction purposesDescription(purpose) {\n switch (purpose) {\n case 'SECURITY': return \"`SECURITY` features provide metadata necessary to securely resolve fields.\";\n case 'EXECUTION': return \"`EXECUTION` features provide metadata necessary for operation execution.\";\n }\n}\nclass FeatureDefinition {\n constructor(url) {\n this.url = typeof url === 'string' ? FeatureUrl.parse(url) : url;\n }\n get identity() {\n return this.url.identity;\n }\n get version() {\n return this.url.version;\n }\n isSpecType(type) {\n const nameInSchema = this.nameInSchema(type.schema());\n return nameInSchema !== undefined && type.name.startsWith(`${nameInSchema}__`);\n }\n isSpecDirective(directive) {\n const nameInSchema = this.nameInSchema(directive.schema());\n return nameInSchema != undefined && (directive.name === nameInSchema || directive.name.startsWith(`${nameInSchema}__`));\n }\n nameInSchema(schema) {\n const feature = this.featureInSchema(schema);\n return feature === null || feature === void 0 ? void 0 : feature.nameInSchema;\n }\n elementNameInSchema(schema, elementName) {\n const nameInSchema = this.nameInSchema(schema);\n return nameInSchema\n ? (elementName === nameInSchema ? nameInSchema : `${nameInSchema}__${elementName}`)\n : undefined;\n }\n rootDirective(schema) {\n const name = this.nameInSchema(schema);\n return name ? schema.directive(name) : undefined;\n }\n directive(schema, elementName) {\n const name = this.elementNameInSchema(schema, elementName);\n return name ? schema.directive(name) : undefined;\n }\n type(schema, elementName) {\n const name = this.elementNameInSchema(schema, elementName);\n return name ? schema.type(name) : undefined;\n }\n addRootDirective(schema) {\n return schema.addDirectiveDefinition(this.nameInSchema(schema));\n }\n addDirective(schema, name) {\n return schema.addDirectiveDefinition(this.elementNameInSchema(schema, name));\n }\n addScalarType(schema, name) {\n return schema.addType(new definitions_1.ScalarType(this.elementNameInSchema(schema, name)));\n }\n addEnumType(schema, name) {\n return schema.addType(new definitions_1.EnumType(this.elementNameInSchema(schema, name)));\n }\n featureInSchema(schema) {\n const features = schema.coreFeatures;\n if (!features) {\n throw buildError(`Schema is not a core schema (add @core first)`);\n }\n return features.getByIdentity(this.identity);\n }\n toString() {\n return `${this.identity}/${this.version}`;\n }\n}\nexports.FeatureDefinition = FeatureDefinition;\nfunction isCoreSpecDirectiveApplication(directive) {\n var _a;\n const definition = directive.definition;\n if (!definition) {\n return false;\n }\n const featureArg = definition.argument('feature');\n if (!featureArg || !(0, types_1.sameType)(featureArg.type, new definitions_1.NonNullType(directive.schema().stringType()))) {\n return false;\n }\n const asArg = definition.argument('as');\n if (asArg && !(0, types_1.sameType)(asArg.type, directive.schema().stringType())) {\n return false;\n }\n if (!definition.repeatable || definition.locations.length !== 1 || definition.locations[0] !== graphql_1.DirectiveLocation.SCHEMA) {\n return false;\n }\n const args = directive.arguments();\n try {\n const url = FeatureUrl.parse(args.feature);\n return url.identity === exports.coreIdentity && directive.name === ((_a = args.as) !== null && _a !== void 0 ? _a : 'core');\n }\n catch (err) {\n return false;\n }\n}\nexports.isCoreSpecDirectiveApplication = isCoreSpecDirectiveApplication;\nclass CoreSpecDefinition extends FeatureDefinition {\n constructor(version) {\n super(new FeatureUrl(exports.coreIdentity, 'core', version));\n }\n addElementsToSchema(_) {\n }\n addToSchema(schema, as) {\n const existing = schema.coreFeatures;\n if (existing) {\n if (existing.coreItself.url.identity === this.identity) {\n return;\n }\n else {\n throw buildError(`Cannot add feature ${this} to the schema, it already uses ${existing.coreItself.url}`);\n }\n }\n const nameInSchema = as !== null && as !== void 0 ? as : this.url.name;\n const core = schema.addDirectiveDefinition(nameInSchema).addLocations(graphql_1.DirectiveLocation.SCHEMA);\n core.repeatable = true;\n core.addArgument('feature', new definitions_1.NonNullType(schema.stringType()));\n core.addArgument('as', schema.stringType());\n if (this.supportPurposes()) {\n const purposeEnum = schema.addType(new definitions_1.EnumType(`${nameInSchema}__Purpose`));\n for (const purpose of exports.corePurposes) {\n purposeEnum.addValue(purpose).description = purposesDescription(purpose);\n }\n core.addArgument('for', purposeEnum);\n }\n const args = { feature: this.toString() };\n if (as) {\n args.as = as;\n }\n schema.schemaDefinition.applyDirective(nameInSchema, args);\n }\n supportPurposes() {\n return this.version.strictlyGreaterThan(new FeatureVersion(0, 1));\n }\n extractFeature(schema) {\n const features = schema.coreFeatures;\n if (!features) {\n throw buildError(`Schema is not a core schema (add @core first)`);\n }\n if (!features.coreItself.url.version.equals(this.version)) {\n throw buildError(`Cannot use this version of @core (${this.version}), the schema uses version ${features.coreItself.url.version}`);\n }\n return features.coreItself;\n }\n coreDirective(schema) {\n const feature = this.extractFeature(schema);\n const directive = schema.directive(feature.nameInSchema);\n return directive;\n }\n coreVersion(schema) {\n const feature = this.extractFeature(schema);\n return feature.url.version;\n }\n applyFeatureToSchema(schema, feature, as, purpose) {\n const coreDirective = this.coreDirective(schema);\n const args = {\n feature: feature.toString(),\n as,\n };\n if (this.supportPurposes() && purpose) {\n args.for = purpose;\n }\n schema.schemaDefinition.applyDirective(coreDirective, args);\n feature.addElementsToSchema(schema);\n }\n}\nexports.CoreSpecDefinition = CoreSpecDefinition;\nclass FeatureDefinitions {\n constructor(identity) {\n this.identity = identity;\n this._definitions = [];\n }\n add(definition) {\n if (definition.identity !== this.identity) {\n throw buildError(`Cannot add definition for ${definition} to the versions of definitions for ${this.identity}`);\n }\n if (this._definitions.find(def => definition.version.equals(def.version))) {\n return this;\n }\n this._definitions.push(definition);\n this._definitions.sort((def1, def2) => -def1.version.compareTo(def2.version));\n return this;\n }\n find(requested) {\n return this._definitions.find(def => def.version.satisfies(requested));\n }\n versions() {\n return this._definitions.map(def => def.version);\n }\n latest() {\n (0, utils_1.assert)(this._definitions.length > 0, 'Trying to get latest when no definitions exist');\n return this._definitions[0];\n }\n}\nexports.FeatureDefinitions = FeatureDefinitions;\nclass FeatureVersion {\n constructor(major, minor) {\n this.major = major;\n this.minor = minor;\n }\n static parse(input) {\n const match = input.match(this.VERSION_RE);\n if (!match) {\n throw new graphql_1.GraphQLError(`Expected a version string (of the form v1.2), got ${input}`);\n }\n return new this(+match[1], +match[2]);\n }\n satisfies(required) {\n const { major, minor } = this;\n const { major: rMajor, minor: rMinor } = required;\n return rMajor == major && (major == 0\n ? rMinor == minor\n : rMinor <= minor);\n }\n get series() {\n const { major } = this;\n return major > 0 ? `${major}.x` : String(this);\n }\n compareTo(other) {\n if (this.major > other.major) {\n return 1;\n }\n if (this.major < other.major) {\n return -1;\n }\n if (this.minor > other.minor) {\n return 1;\n }\n if (this.minor < other.minor) {\n return -1;\n }\n return 0;\n }\n strictlyGreaterThan(version) {\n return this.compareTo(version) > 0;\n }\n toString() {\n return `v${this.major}.${this.minor}`;\n }\n equals(other) {\n return this.major === other.major && this.minor === other.minor;\n }\n}\nexports.FeatureVersion = FeatureVersion;\nFeatureVersion.VERSION_RE = /^v(\\d+)\\.(\\d+)$/;\nclass FeatureUrl {\n constructor(identity, name, version, element) {\n this.identity = identity;\n this.name = name;\n this.version = version;\n this.element = element;\n }\n static parse(input, node) {\n const url = new url_1.URL(input);\n if (!url.pathname || url.pathname === '/') {\n throw new graphql_1.GraphQLError(`Missing path in feature url '${url}'`, node);\n }\n const path = url.pathname.split('/');\n const verStr = path.pop();\n if (!verStr) {\n throw new graphql_1.GraphQLError(`Missing version component in feature url '${url}'`, node);\n }\n const version = FeatureVersion.parse(verStr);\n const name = path[path.length - 1];\n if (!name) {\n throw new graphql_1.GraphQLError(`Missing feature name component in feature url '${url}'`, node);\n }\n const element = url.hash ? url.hash.slice(1) : undefined;\n url.hash = '';\n url.search = '';\n url.password = '';\n url.username = '';\n url.pathname = path.join('/');\n return new FeatureUrl(url.toString(), name, version, element);\n }\n static decode(node) {\n return this.parse(node.value, node);\n }\n satisfies(requested) {\n return requested.identity === this.identity &&\n this.version.satisfies(requested.version);\n }\n equals(other) {\n return this.identity === other.identity &&\n this.version.equals(other.version);\n }\n get url() {\n return this.element ?\n `${this.identity}/${this.version}#${this.element}`\n : `${this.identity}/${this.version}`;\n }\n get isDirective() {\n var _a;\n return (_a = this.element) === null || _a === void 0 ? void 0 : _a.startsWith('@');\n }\n get elementName() {\n var _a;\n return this.isDirective ? (_a = this.element) === null || _a === void 0 ? void 0 : _a.slice(1) : this.element;\n }\n get base() {\n if (!this.element)\n return this;\n return new FeatureUrl(this.identity, this.name, this.version);\n }\n toString() {\n return this.url;\n }\n}\nexports.FeatureUrl = FeatureUrl;\nexports.CORE_VERSIONS = new FeatureDefinitions(exports.coreIdentity)\n .add(new CoreSpecDefinition(new FeatureVersion(0, 1)))\n .add(new CoreSpecDefinition(new FeatureVersion(0, 2)));\nfunction removeFeatureElements(schema, feature) {\n const featureDirectives = schema.directives().filter(d => feature.isFeatureDefinition(d));\n featureDirectives.forEach(d => d.remove().forEach(application => application.remove()));\n const featureTypes = schema.types().filter(t => feature.isFeatureDefinition(t));\n featureTypes.forEach(type => {\n const references = type.remove();\n if (references.length > 0) {\n throw new graphql_1.GraphQLError(`Cannot remove elements of feature ${feature} as feature type ${type} is referenced by elements: ${references.join(', ')}`, references.map(r => r.sourceAST).filter(n => n !== undefined));\n }\n });\n}\nexports.removeFeatureElements = removeFeatureElements;\n//# sourceMappingURL=coreSpec.js.map","'use strict';\nmodule.exports = (function()\n{\n function _min(d0, d1, d2, bx, ay)\n {\n return d0 < d1 || d2 < d1\n ? d0 > d2\n ? d2 + 1\n : d0 + 1\n : bx === ay\n ? d1\n : d1 + 1;\n }\n\n return function(a, b)\n {\n if (a === b) {\n return 0;\n }\n\n if (a.length > b.length) {\n var tmp = a;\n a = b;\n b = tmp;\n }\n\n var la = a.length;\n var lb = b.length;\n\n while (la > 0 && (a.charCodeAt(la - 1) === b.charCodeAt(lb - 1))) {\n la--;\n lb--;\n }\n\n var offset = 0;\n\n while (offset < la && (a.charCodeAt(offset) === b.charCodeAt(offset))) {\n offset++;\n }\n\n la -= offset;\n lb -= offset;\n\n if (la === 0 || lb < 3) {\n return lb;\n }\n\n var x = 0;\n var y;\n var d0;\n var d1;\n var d2;\n var d3;\n var dd;\n var dy;\n var ay;\n var bx0;\n var bx1;\n var bx2;\n var bx3;\n\n var vector = [];\n\n for (y = 0; y < la; y++) {\n vector.push(y + 1);\n vector.push(a.charCodeAt(offset + y));\n }\n\n var len = vector.length - 1;\n\n for (; x < lb - 3;) {\n bx0 = b.charCodeAt(offset + (d0 = x));\n bx1 = b.charCodeAt(offset + (d1 = x + 1));\n bx2 = b.charCodeAt(offset + (d2 = x + 2));\n bx3 = b.charCodeAt(offset + (d3 = x + 3));\n dd = (x += 4);\n for (y = 0; y < len; y += 2) {\n dy = vector[y];\n ay = vector[y + 1];\n d0 = _min(dy, d0, d1, bx0, ay);\n d1 = _min(d0, d1, d2, bx1, ay);\n d2 = _min(d1, d2, d3, bx2, ay);\n dd = _min(d2, d3, dd, bx3, ay);\n vector[y] = dd;\n d3 = d2;\n d2 = d1;\n d1 = d0;\n d0 = dy;\n }\n }\n\n for (; x < lb;) {\n bx0 = b.charCodeAt(offset + (d0 = x));\n dd = ++x;\n for (y = 0; y < len; y += 2) {\n dy = vector[y];\n vector[y] = dd = _min(dy, d0, dd, bx0, vector[y + 1]);\n d0 = dy;\n }\n }\n\n return dd;\n };\n})();\n\n","\"use strict\";\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.didYouMean = exports.suggestionList = void 0;\nconst js_levenshtein_1 = __importDefault(require(\"js-levenshtein\"));\nconst utils_1 = require(\"./utils\");\nfunction suggestionList(input, options) {\n const optionsByDistance = new Map();\n const threshold = Math.floor(input.length * 0.4) + 1;\n const inputLowerCase = input.toLowerCase();\n for (const option of options) {\n const distance = inputLowerCase === option.toLowerCase()\n ? 1\n : (0, js_levenshtein_1.default)(input, option);\n if (distance <= threshold) {\n optionsByDistance.set(option, distance);\n }\n }\n return (0, utils_1.mapKeys)(optionsByDistance).sort((a, b) => {\n const distanceDiff = optionsByDistance.get(a) - optionsByDistance.get(b);\n return distanceDiff !== 0 ? distanceDiff : a.localeCompare(b);\n });\n}\nexports.suggestionList = suggestionList;\nconst MAX_SUGGESTIONS = 5;\nfunction didYouMean(suggestions) {\n const message = ' Did you mean ';\n const quotedSuggestions = suggestions.map((x) => `\"${x}\"`);\n switch (suggestions.length) {\n case 0:\n return '';\n case 1:\n return message + quotedSuggestions[0] + '?';\n case 2:\n return message + quotedSuggestions[0] + ' or ' + quotedSuggestions[1] + '?';\n }\n const selected = quotedSuggestions.slice(0, MAX_SUGGESTIONS);\n const lastItem = selected.pop();\n return message + selected.join(', ') + ', or ' + lastItem + '?';\n}\nexports.didYouMean = didYouMean;\n//# sourceMappingURL=suggestions.js.map","// shim for using process in browser\n// based off https://github.com/defunctzombie/node-process/blob/master/browser.js\n\nfunction defaultSetTimout() {\n throw new Error('setTimeout has not been defined');\n}\nfunction defaultClearTimeout () {\n throw new Error('clearTimeout has not been defined');\n}\nvar cachedSetTimeout = defaultSetTimout;\nvar cachedClearTimeout = defaultClearTimeout;\nif (typeof global.setTimeout === 'function') {\n cachedSetTimeout = setTimeout;\n}\nif (typeof global.clearTimeout === 'function') {\n cachedClearTimeout = clearTimeout;\n}\n\nfunction runTimeout(fun) {\n if (cachedSetTimeout === setTimeout) {\n //normal enviroments in sane situations\n return setTimeout(fun, 0);\n }\n // if setTimeout wasn't available but was latter defined\n if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {\n cachedSetTimeout = setTimeout;\n return setTimeout(fun, 0);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedSetTimeout(fun, 0);\n } catch(e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedSetTimeout.call(null, fun, 0);\n } catch(e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error\n return cachedSetTimeout.call(this, fun, 0);\n }\n }\n\n\n}\nfunction runClearTimeout(marker) {\n if (cachedClearTimeout === clearTimeout) {\n //normal enviroments in sane situations\n return clearTimeout(marker);\n }\n // if clearTimeout wasn't available but was latter defined\n if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {\n cachedClearTimeout = clearTimeout;\n return clearTimeout(marker);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedClearTimeout(marker);\n } catch (e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedClearTimeout.call(null, marker);\n } catch (e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.\n // Some versions of I.E. have different rules for clearTimeout vs setTimeout\n return cachedClearTimeout.call(this, marker);\n }\n }\n\n\n\n}\nvar queue = [];\nvar draining = false;\nvar currentQueue;\nvar queueIndex = -1;\n\nfunction cleanUpNextTick() {\n if (!draining || !currentQueue) {\n return;\n }\n draining = false;\n if (currentQueue.length) {\n queue = currentQueue.concat(queue);\n } else {\n queueIndex = -1;\n }\n if (queue.length) {\n drainQueue();\n }\n}\n\nfunction drainQueue() {\n if (draining) {\n return;\n }\n var timeout = runTimeout(cleanUpNextTick);\n draining = true;\n\n var len = queue.length;\n while(len) {\n currentQueue = queue;\n queue = [];\n while (++queueIndex < len) {\n if (currentQueue) {\n currentQueue[queueIndex].run();\n }\n }\n queueIndex = -1;\n len = queue.length;\n }\n currentQueue = null;\n draining = false;\n runClearTimeout(timeout);\n}\nfunction nextTick(fun) {\n var args = new Array(arguments.length - 1);\n if (arguments.length > 1) {\n for (var i = 1; i < arguments.length; i++) {\n args[i - 1] = arguments[i];\n }\n }\n queue.push(new Item(fun, args));\n if (queue.length === 1 && !draining) {\n runTimeout(drainQueue);\n }\n}\n// v8 likes predictible objects\nfunction Item(fun, array) {\n this.fun = fun;\n this.array = array;\n}\nItem.prototype.run = function () {\n this.fun.apply(null, this.array);\n};\nvar title = 'browser';\nvar platform = 'browser';\nvar browser = true;\nvar env = {};\nvar argv = [];\nvar version = ''; // empty string to avoid regexp issues\nvar versions = {};\nvar release = {};\nvar config = {};\n\nfunction noop() {}\n\nvar on = noop;\nvar addListener = noop;\nvar once = noop;\nvar off = noop;\nvar removeListener = noop;\nvar removeAllListeners = noop;\nvar emit = noop;\n\nfunction binding(name) {\n throw new Error('process.binding is not supported');\n}\n\nfunction cwd () { return '/' }\nfunction chdir (dir) {\n throw new Error('process.chdir is not supported');\n}function umask() { return 0; }\n\n// from https://github.com/kumavis/browser-process-hrtime/blob/master/index.js\nvar performance = global.performance || {};\nvar performanceNow =\n performance.now ||\n performance.mozNow ||\n performance.msNow ||\n performance.oNow ||\n performance.webkitNow ||\n function(){ return (new Date()).getTime() };\n\n// generate timestamp or delta\n// see http://nodejs.org/api/process.html#process_process_hrtime\nfunction hrtime(previousTimestamp){\n var clocktime = performanceNow.call(performance)*1e-3;\n var seconds = Math.floor(clocktime);\n var nanoseconds = Math.floor((clocktime%1)*1e9);\n if (previousTimestamp) {\n seconds = seconds - previousTimestamp[0];\n nanoseconds = nanoseconds - previousTimestamp[1];\n if (nanoseconds<0) {\n seconds--;\n nanoseconds += 1e9;\n }\n }\n return [seconds,nanoseconds]\n}\n\nvar startTime = new Date();\nfunction uptime() {\n var currentTime = new Date();\n var dif = currentTime - startTime;\n return dif / 1000;\n}\n\nvar browser$1 = {\n nextTick: nextTick,\n title: title,\n browser: browser,\n env: env,\n argv: argv,\n version: version,\n versions: versions,\n on: on,\n addListener: addListener,\n once: once,\n off: off,\n removeListener: removeListener,\n removeAllListeners: removeAllListeners,\n emit: emit,\n binding: binding,\n cwd: cwd,\n chdir: chdir,\n umask: umask,\n hrtime: hrtime,\n platform: platform,\n release: release,\n config: config,\n uptime: uptime\n};\n\nexport default browser$1;\nexport { addListener, argv, binding, browser, chdir, config, cwd, emit, env, hrtime, nextTick, off, on, once, platform, release, removeAllListeners, removeListener, title, umask, uptime, version, versions };\n","\nvar inherits;\nif (typeof Object.create === 'function'){\n inherits = function inherits(ctor, superCtor) {\n // implementation from standard node.js 'util' module\n ctor.super_ = superCtor\n ctor.prototype = Object.create(superCtor.prototype, {\n constructor: {\n value: ctor,\n enumerable: false,\n writable: true,\n configurable: true\n }\n });\n };\n} else {\n inherits = function inherits(ctor, superCtor) {\n ctor.super_ = superCtor\n var TempCtor = function () {}\n TempCtor.prototype = superCtor.prototype\n ctor.prototype = new TempCtor()\n ctor.prototype.constructor = ctor\n }\n}\nexport default inherits;\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\nimport process from 'process';\nvar formatRegExp = /%[sdj%]/g;\nexport function format(f) {\n if (!isString(f)) {\n var objects = [];\n for (var i = 0; i < arguments.length; i++) {\n objects.push(inspect(arguments[i]));\n }\n return objects.join(' ');\n }\n\n var i = 1;\n var args = arguments;\n var len = args.length;\n var str = String(f).replace(formatRegExp, function(x) {\n if (x === '%%') return '%';\n if (i >= len) return x;\n switch (x) {\n case '%s': return String(args[i++]);\n case '%d': return Number(args[i++]);\n case '%j':\n try {\n return JSON.stringify(args[i++]);\n } catch (_) {\n return '[Circular]';\n }\n default:\n return x;\n }\n });\n for (var x = args[i]; i < len; x = args[++i]) {\n if (isNull(x) || !isObject(x)) {\n str += ' ' + x;\n } else {\n str += ' ' + inspect(x);\n }\n }\n return str;\n};\n\n\n// Mark that a method should not be used.\n// Returns a modified function which warns once by default.\n// If --no-deprecation is set, then it is a no-op.\nexport function deprecate(fn, msg) {\n // Allow for deprecating things in the process of starting up.\n if (isUndefined(global.process)) {\n return function() {\n return deprecate(fn, msg).apply(this, arguments);\n };\n }\n\n if (process.noDeprecation === true) {\n return fn;\n }\n\n var warned = false;\n function deprecated() {\n if (!warned) {\n if (process.throwDeprecation) {\n throw new Error(msg);\n } else if (process.traceDeprecation) {\n console.trace(msg);\n } else {\n console.error(msg);\n }\n warned = true;\n }\n return fn.apply(this, arguments);\n }\n\n return deprecated;\n};\n\n\nvar debugs = {};\nvar debugEnviron;\nexport function debuglog(set) {\n if (isUndefined(debugEnviron))\n debugEnviron = process.env.NODE_DEBUG || '';\n set = set.toUpperCase();\n if (!debugs[set]) {\n if (new RegExp('\\\\b' + set + '\\\\b', 'i').test(debugEnviron)) {\n var pid = 0;\n debugs[set] = function() {\n var msg = format.apply(null, arguments);\n console.error('%s %d: %s', set, pid, msg);\n };\n } else {\n debugs[set] = function() {};\n }\n }\n return debugs[set];\n};\n\n\n/**\n * Echos the value of a value. Trys to print the value out\n * in the best way possible given the different types.\n *\n * @param {Object} obj The object to print out.\n * @param {Object} opts Optional options object that alters the output.\n */\n/* legacy: obj, showHidden, depth, colors*/\nexport function inspect(obj, opts) {\n // default options\n var ctx = {\n seen: [],\n stylize: stylizeNoColor\n };\n // legacy...\n if (arguments.length >= 3) ctx.depth = arguments[2];\n if (arguments.length >= 4) ctx.colors = arguments[3];\n if (isBoolean(opts)) {\n // legacy...\n ctx.showHidden = opts;\n } else if (opts) {\n // got an \"options\" object\n _extend(ctx, opts);\n }\n // set default options\n if (isUndefined(ctx.showHidden)) ctx.showHidden = false;\n if (isUndefined(ctx.depth)) ctx.depth = 2;\n if (isUndefined(ctx.colors)) ctx.colors = false;\n if (isUndefined(ctx.customInspect)) ctx.customInspect = true;\n if (ctx.colors) ctx.stylize = stylizeWithColor;\n return formatValue(ctx, obj, ctx.depth);\n}\n\n// http://en.wikipedia.org/wiki/ANSI_escape_code#graphics\ninspect.colors = {\n 'bold' : [1, 22],\n 'italic' : [3, 23],\n 'underline' : [4, 24],\n 'inverse' : [7, 27],\n 'white' : [37, 39],\n 'grey' : [90, 39],\n 'black' : [30, 39],\n 'blue' : [34, 39],\n 'cyan' : [36, 39],\n 'green' : [32, 39],\n 'magenta' : [35, 39],\n 'red' : [31, 39],\n 'yellow' : [33, 39]\n};\n\n// Don't use 'blue' not visible on cmd.exe\ninspect.styles = {\n 'special': 'cyan',\n 'number': 'yellow',\n 'boolean': 'yellow',\n 'undefined': 'grey',\n 'null': 'bold',\n 'string': 'green',\n 'date': 'magenta',\n // \"name\": intentionally not styling\n 'regexp': 'red'\n};\n\n\nfunction stylizeWithColor(str, styleType) {\n var style = inspect.styles[styleType];\n\n if (style) {\n return '\\u001b[' + inspect.colors[style][0] + 'm' + str +\n '\\u001b[' + inspect.colors[style][1] + 'm';\n } else {\n return str;\n }\n}\n\n\nfunction stylizeNoColor(str, styleType) {\n return str;\n}\n\n\nfunction arrayToHash(array) {\n var hash = {};\n\n array.forEach(function(val, idx) {\n hash[val] = true;\n });\n\n return hash;\n}\n\n\nfunction formatValue(ctx, value, recurseTimes) {\n // Provide a hook for user-specified inspect functions.\n // Check that value is an object with an inspect function on it\n if (ctx.customInspect &&\n value &&\n isFunction(value.inspect) &&\n // Filter out the util module, it's inspect function is special\n value.inspect !== inspect &&\n // Also filter out any prototype objects using the circular check.\n !(value.constructor && value.constructor.prototype === value)) {\n var ret = value.inspect(recurseTimes, ctx);\n if (!isString(ret)) {\n ret = formatValue(ctx, ret, recurseTimes);\n }\n return ret;\n }\n\n // Primitive types cannot have properties\n var primitive = formatPrimitive(ctx, value);\n if (primitive) {\n return primitive;\n }\n\n // Look up the keys of the object.\n var keys = Object.keys(value);\n var visibleKeys = arrayToHash(keys);\n\n if (ctx.showHidden) {\n keys = Object.getOwnPropertyNames(value);\n }\n\n // IE doesn't make error fields non-enumerable\n // http://msdn.microsoft.com/en-us/library/ie/dww52sbt(v=vs.94).aspx\n if (isError(value)\n && (keys.indexOf('message') >= 0 || keys.indexOf('description') >= 0)) {\n return formatError(value);\n }\n\n // Some type of object without properties can be shortcutted.\n if (keys.length === 0) {\n if (isFunction(value)) {\n var name = value.name ? ': ' + value.name : '';\n return ctx.stylize('[Function' + name + ']', 'special');\n }\n if (isRegExp(value)) {\n return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n }\n if (isDate(value)) {\n return ctx.stylize(Date.prototype.toString.call(value), 'date');\n }\n if (isError(value)) {\n return formatError(value);\n }\n }\n\n var base = '', array = false, braces = ['{', '}'];\n\n // Make Array say that they are Array\n if (isArray(value)) {\n array = true;\n braces = ['[', ']'];\n }\n\n // Make functions say that they are functions\n if (isFunction(value)) {\n var n = value.name ? ': ' + value.name : '';\n base = ' [Function' + n + ']';\n }\n\n // Make RegExps say that they are RegExps\n if (isRegExp(value)) {\n base = ' ' + RegExp.prototype.toString.call(value);\n }\n\n // Make dates with properties first say the date\n if (isDate(value)) {\n base = ' ' + Date.prototype.toUTCString.call(value);\n }\n\n // Make error with message first say the error\n if (isError(value)) {\n base = ' ' + formatError(value);\n }\n\n if (keys.length === 0 && (!array || value.length == 0)) {\n return braces[0] + base + braces[1];\n }\n\n if (recurseTimes < 0) {\n if (isRegExp(value)) {\n return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n } else {\n return ctx.stylize('[Object]', 'special');\n }\n }\n\n ctx.seen.push(value);\n\n var output;\n if (array) {\n output = formatArray(ctx, value, recurseTimes, visibleKeys, keys);\n } else {\n output = keys.map(function(key) {\n return formatProperty(ctx, value, recurseTimes, visibleKeys, key, array);\n });\n }\n\n ctx.seen.pop();\n\n return reduceToSingleString(output, base, braces);\n}\n\n\nfunction formatPrimitive(ctx, value) {\n if (isUndefined(value))\n return ctx.stylize('undefined', 'undefined');\n if (isString(value)) {\n var simple = '\\'' + JSON.stringify(value).replace(/^\"|\"$/g, '')\n .replace(/'/g, \"\\\\'\")\n .replace(/\\\\\"/g, '\"') + '\\'';\n return ctx.stylize(simple, 'string');\n }\n if (isNumber(value))\n return ctx.stylize('' + value, 'number');\n if (isBoolean(value))\n return ctx.stylize('' + value, 'boolean');\n // For some reason typeof null is \"object\", so special case here.\n if (isNull(value))\n return ctx.stylize('null', 'null');\n}\n\n\nfunction formatError(value) {\n return '[' + Error.prototype.toString.call(value) + ']';\n}\n\n\nfunction formatArray(ctx, value, recurseTimes, visibleKeys, keys) {\n var output = [];\n for (var i = 0, l = value.length; i < l; ++i) {\n if (hasOwnProperty(value, String(i))) {\n output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,\n String(i), true));\n } else {\n output.push('');\n }\n }\n keys.forEach(function(key) {\n if (!key.match(/^\\d+$/)) {\n output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,\n key, true));\n }\n });\n return output;\n}\n\n\nfunction formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) {\n var name, str, desc;\n desc = Object.getOwnPropertyDescriptor(value, key) || { value: value[key] };\n if (desc.get) {\n if (desc.set) {\n str = ctx.stylize('[Getter/Setter]', 'special');\n } else {\n str = ctx.stylize('[Getter]', 'special');\n }\n } else {\n if (desc.set) {\n str = ctx.stylize('[Setter]', 'special');\n }\n }\n if (!hasOwnProperty(visibleKeys, key)) {\n name = '[' + key + ']';\n }\n if (!str) {\n if (ctx.seen.indexOf(desc.value) < 0) {\n if (isNull(recurseTimes)) {\n str = formatValue(ctx, desc.value, null);\n } else {\n str = formatValue(ctx, desc.value, recurseTimes - 1);\n }\n if (str.indexOf('\\n') > -1) {\n if (array) {\n str = str.split('\\n').map(function(line) {\n return ' ' + line;\n }).join('\\n').substr(2);\n } else {\n str = '\\n' + str.split('\\n').map(function(line) {\n return ' ' + line;\n }).join('\\n');\n }\n }\n } else {\n str = ctx.stylize('[Circular]', 'special');\n }\n }\n if (isUndefined(name)) {\n if (array && key.match(/^\\d+$/)) {\n return str;\n }\n name = JSON.stringify('' + key);\n if (name.match(/^\"([a-zA-Z_][a-zA-Z_0-9]*)\"$/)) {\n name = name.substr(1, name.length - 2);\n name = ctx.stylize(name, 'name');\n } else {\n name = name.replace(/'/g, \"\\\\'\")\n .replace(/\\\\\"/g, '\"')\n .replace(/(^\"|\"$)/g, \"'\");\n name = ctx.stylize(name, 'string');\n }\n }\n\n return name + ': ' + str;\n}\n\n\nfunction reduceToSingleString(output, base, braces) {\n var numLinesEst = 0;\n var length = output.reduce(function(prev, cur) {\n numLinesEst++;\n if (cur.indexOf('\\n') >= 0) numLinesEst++;\n return prev + cur.replace(/\\u001b\\[\\d\\d?m/g, '').length + 1;\n }, 0);\n\n if (length > 60) {\n return braces[0] +\n (base === '' ? '' : base + '\\n ') +\n ' ' +\n output.join(',\\n ') +\n ' ' +\n braces[1];\n }\n\n return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1];\n}\n\n\n// NOTE: These type checking functions intentionally don't use `instanceof`\n// because it is fragile and can be easily faked with `Object.create()`.\nexport function isArray(ar) {\n return Array.isArray(ar);\n}\n\nexport function isBoolean(arg) {\n return typeof arg === 'boolean';\n}\n\nexport function isNull(arg) {\n return arg === null;\n}\n\nexport function isNullOrUndefined(arg) {\n return arg == null;\n}\n\nexport function isNumber(arg) {\n return typeof arg === 'number';\n}\n\nexport function isString(arg) {\n return typeof arg === 'string';\n}\n\nexport function isSymbol(arg) {\n return typeof arg === 'symbol';\n}\n\nexport function isUndefined(arg) {\n return arg === void 0;\n}\n\nexport function isRegExp(re) {\n return isObject(re) && objectToString(re) === '[object RegExp]';\n}\n\nexport function isObject(arg) {\n return typeof arg === 'object' && arg !== null;\n}\n\nexport function isDate(d) {\n return isObject(d) && objectToString(d) === '[object Date]';\n}\n\nexport function isError(e) {\n return isObject(e) &&\n (objectToString(e) === '[object Error]' || e instanceof Error);\n}\n\nexport function isFunction(arg) {\n return typeof arg === 'function';\n}\n\nexport function isPrimitive(arg) {\n return arg === null ||\n typeof arg === 'boolean' ||\n typeof arg === 'number' ||\n typeof arg === 'string' ||\n typeof arg === 'symbol' || // ES6 symbol\n typeof arg === 'undefined';\n}\n\nexport function isBuffer(maybeBuf) {\n return Buffer.isBuffer(maybeBuf);\n}\n\nfunction objectToString(o) {\n return Object.prototype.toString.call(o);\n}\n\n\nfunction pad(n) {\n return n < 10 ? '0' + n.toString(10) : n.toString(10);\n}\n\n\nvar months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep',\n 'Oct', 'Nov', 'Dec'];\n\n// 26 Feb 16:19:34\nfunction timestamp() {\n var d = new Date();\n var time = [pad(d.getHours()),\n pad(d.getMinutes()),\n pad(d.getSeconds())].join(':');\n return [d.getDate(), months[d.getMonth()], time].join(' ');\n}\n\n\n// log is just a thin wrapper to console.log that prepends a timestamp\nexport function log() {\n console.log('%s - %s', timestamp(), format.apply(null, arguments));\n}\n\n\n/**\n * Inherit the prototype methods from one constructor into another.\n *\n * The Function.prototype.inherits from lang.js rewritten as a standalone\n * function (not on Function.prototype). NOTE: If this file is to be loaded\n * during bootstrapping this function needs to be rewritten using some native\n * functions as prototype setup using normal JavaScript does not work as\n * expected during bootstrapping (see mirror.js in r114903).\n *\n * @param {function} ctor Constructor function which needs to inherit the\n * prototype.\n * @param {function} superCtor Constructor function to inherit prototype from.\n */\nimport inherits from './inherits';\nexport {inherits}\n\nexport function _extend(origin, add) {\n // Don't do anything if add isn't an object\n if (!add || !isObject(add)) return origin;\n\n var keys = Object.keys(add);\n var i = keys.length;\n while (i--) {\n origin[keys[i]] = add[keys[i]];\n }\n return origin;\n};\n\nfunction hasOwnProperty(obj, prop) {\n return Object.prototype.hasOwnProperty.call(obj, prop);\n}\n\nexport default {\n inherits: inherits,\n _extend: _extend,\n log: log,\n isBuffer: isBuffer,\n isPrimitive: isPrimitive,\n isFunction: isFunction,\n isError: isError,\n isDate: isDate,\n isObject: isObject,\n isRegExp: isRegExp,\n isUndefined: isUndefined,\n isSymbol: isSymbol,\n isString: isString,\n isNumber: isNumber,\n isNullOrUndefined: isNullOrUndefined,\n isNull: isNull,\n isBoolean: isBoolean,\n isArray: isArray,\n inspect: inspect,\n deprecate: deprecate,\n format: format,\n debuglog: debuglog\n}\n","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.variablesInValue = exports.argumentsFromAST = exports.valueFromAST = exports.isValidValue = exports.valueToAST = exports.valueNodeToConstValueNode = exports.withDefaultValues = exports.argumentsEquals = exports.valueEquals = exports.valueToString = void 0;\nconst definitions_1 = require(\"./definitions\");\nconst graphql_1 = require(\"graphql\");\nconst suggestions_1 = require(\"./suggestions\");\nconst util_1 = require(\"util\");\nconst types_1 = require(\"./types\");\nconst utils_1 = require(\"./utils\");\nconst MAX_INT = 2147483647;\nconst MIN_INT = -2147483648;\nfunction valueToString(v, expectedType) {\n if (v === undefined || v === null) {\n if (expectedType && (0, definitions_1.isNonNullType)(expectedType)) {\n throw buildError(`Invalid undefined/null value for non-null type ${expectedType}`);\n }\n return \"null\";\n }\n if (expectedType && (0, definitions_1.isNonNullType)(expectedType)) {\n expectedType = expectedType.ofType;\n }\n if (expectedType && (0, definitions_1.isCustomScalarType)(expectedType)) {\n expectedType = undefined;\n }\n if ((0, definitions_1.isVariable)(v)) {\n return v.toString();\n }\n if (Array.isArray(v)) {\n let elementsType = undefined;\n if (expectedType) {\n if (!(0, definitions_1.isListType)(expectedType)) {\n throw buildError(`Invalid list value for non-list type ${expectedType}`);\n }\n elementsType = expectedType.ofType;\n }\n return '[' + v.map(e => valueToString(e, elementsType)).join(', ') + ']';\n }\n if (typeof v === 'object') {\n if (expectedType && !(0, definitions_1.isInputObjectType)(expectedType)) {\n throw buildError(`Invalid object value for non-input-object type ${expectedType} (isCustomScalar? ${(0, definitions_1.isCustomScalarType)(expectedType)})`);\n }\n return '{' + Object.keys(v).map(k => {\n var _a;\n const valueType = expectedType ? (_a = expectedType.field(k)) === null || _a === void 0 ? void 0 : _a.type : undefined;\n return `${k}: ${valueToString(v[k], valueType)}`;\n }).join(', ') + '}';\n }\n if (typeof v === 'string') {\n if (expectedType) {\n if ((0, definitions_1.isEnumType)(expectedType)) {\n return v;\n }\n if (expectedType === expectedType.schema().idType() && integerStringRegExp.test(v)) {\n return v;\n }\n }\n return JSON.stringify(v);\n }\n return String(v);\n}\nexports.valueToString = valueToString;\nfunction valueEquals(a, b) {\n if (a === b) {\n return true;\n }\n if (Array.isArray(a)) {\n return Array.isArray(b) && arrayValueEquals(a, b);\n }\n if (typeof a === 'object') {\n return typeof b === 'object' && objectEquals(a, b);\n }\n return a === b;\n}\nexports.valueEquals = valueEquals;\nfunction arrayValueEquals(a, b) {\n if (a.length !== b.length) {\n return false;\n }\n for (let i = 0; i < a.length; ++i) {\n if (!valueEquals(a[i], b[i])) {\n return false;\n }\n }\n return true;\n}\nfunction objectEquals(a, b) {\n const keys1 = Object.keys(a);\n const keys2 = Object.keys(b);\n if (keys1.length != keys2.length) {\n return false;\n }\n for (const key of keys1) {\n const v1 = a[key];\n const v2 = b[key];\n if (v2 === undefined) {\n return v1 === undefined && b.hasOwnProperty(key);\n }\n if (!valueEquals(v1, v2)) {\n return false;\n }\n }\n return true;\n}\nfunction argumentsEquals(args1, args2) {\n if (args1 === args2) {\n return true;\n }\n return objectEquals(args1, args2);\n}\nexports.argumentsEquals = argumentsEquals;\nfunction buildError(message) {\n return new Error(message);\n}\nfunction applyDefaultValues(value, type) {\n if ((0, definitions_1.isVariable)(value)) {\n return value;\n }\n if (value === null) {\n if ((0, definitions_1.isNonNullType)(type)) {\n throw new graphql_1.GraphQLError(`Invalid null value for non-null type ${type} while computing default values`);\n }\n return null;\n }\n if ((0, definitions_1.isNonNullType)(type)) {\n return applyDefaultValues(value, type.ofType);\n }\n if ((0, definitions_1.isListType)(type)) {\n if (Array.isArray(value)) {\n return value.map(v => applyDefaultValues(v, type.ofType));\n }\n else {\n return applyDefaultValues(value, type.ofType);\n }\n }\n if ((0, definitions_1.isInputObjectType)(type)) {\n if (typeof value !== 'object') {\n throw new graphql_1.GraphQLError(`Expected value for type ${type} to be an object, but is ${typeof value}.`);\n }\n const updated = Object.create(null);\n for (const field of type.fields()) {\n if (!field.type) {\n throw buildError(`Cannot compute default value for field ${field.name} of ${type} as the field type is undefined`);\n }\n const fieldValue = value[field.name];\n if (fieldValue === undefined) {\n if (field.defaultValue !== undefined) {\n updated[field.name] = applyDefaultValues(field.defaultValue, field.type);\n }\n else if ((0, definitions_1.isNonNullType)(field.type)) {\n throw new graphql_1.GraphQLError(`Field \"${field.name}\" of required type ${type} was not provided.`);\n }\n }\n else {\n updated[field.name] = applyDefaultValues(fieldValue, field.type);\n }\n }\n for (const fieldName of Object.keys(value)) {\n if (!type.field(fieldName)) {\n const suggestions = (0, suggestions_1.suggestionList)(fieldName, type.fields().map(f => f.name));\n throw new graphql_1.GraphQLError(`Field \"${fieldName}\" is not defined by type \"${type}\".` + (0, suggestions_1.didYouMean)(suggestions));\n }\n }\n return updated;\n }\n return value;\n}\nfunction withDefaultValues(value, argument) {\n if (!argument.type) {\n throw buildError(`Cannot compute default value for argument ${argument} as the type is undefined`);\n }\n if (value === undefined) {\n if (argument.defaultValue) {\n return applyDefaultValues(argument.defaultValue, argument.type);\n }\n }\n return applyDefaultValues(value, argument.type);\n}\nexports.withDefaultValues = withDefaultValues;\nconst integerStringRegExp = /^-?(?:0|[1-9][0-9]*)$/;\nfunction objectFieldNodeToConst(field) {\n return { ...field, value: valueNodeToConstValueNode(field.value) };\n}\nfunction valueNodeToConstValueNode(value) {\n if (value.kind === graphql_1.Kind.NULL\n || value.kind === graphql_1.Kind.INT\n || value.kind === graphql_1.Kind.FLOAT\n || value.kind === graphql_1.Kind.STRING\n || value.kind === graphql_1.Kind.BOOLEAN\n || value.kind === graphql_1.Kind.ENUM) {\n return value;\n }\n if (value.kind === graphql_1.Kind.LIST) {\n const constValues = value.values.map(v => valueNodeToConstValueNode(v));\n return { ...value, values: constValues };\n }\n if (value.kind === graphql_1.Kind.OBJECT) {\n const constFields = value.fields.map(f => objectFieldNodeToConst(f));\n return { ...value, fields: constFields };\n }\n if (value.kind === graphql_1.Kind.VARIABLE) {\n throw new Error('Unexpected VariableNode in const AST');\n }\n (0, utils_1.assertUnreachable)(value);\n}\nexports.valueNodeToConstValueNode = valueNodeToConstValueNode;\nfunction valueToAST(value, type) {\n if (value === undefined) {\n return undefined;\n }\n if ((0, definitions_1.isNonNullType)(type)) {\n const astValue = valueToAST(value, type.ofType);\n if ((astValue === null || astValue === void 0 ? void 0 : astValue.kind) === graphql_1.Kind.NULL) {\n throw buildError(`Invalid null value ${valueToString(value)} for non-null type ${type}`);\n }\n return astValue;\n }\n if (value === null) {\n return { kind: graphql_1.Kind.NULL };\n }\n if ((0, definitions_1.isVariable)(value)) {\n return { kind: graphql_1.Kind.VARIABLE, name: { kind: graphql_1.Kind.NAME, value: value.name } };\n }\n if ((0, definitions_1.isCustomScalarType)(type)) {\n return valueToASTUntyped(value);\n }\n if ((0, definitions_1.isListType)(type)) {\n const itemType = type.ofType;\n const items = Array.from(value);\n if (items != null) {\n const valuesNodes = [];\n for (const item of items) {\n const itemNode = valueToAST(item, itemType);\n if (itemNode != null) {\n valuesNodes.push(itemNode);\n }\n }\n return { kind: graphql_1.Kind.LIST, values: valuesNodes };\n }\n return valueToAST(value, itemType);\n }\n if ((0, definitions_1.isInputObjectType)(type)) {\n if (typeof value !== 'object') {\n throw buildError(`Invalid non-objet value for input type ${type}, cannot be converted to AST: ${(0, util_1.inspect)(value, true, 10, true)}`);\n }\n const fieldNodes = [];\n for (const field of type.fields()) {\n if (!field.type) {\n throw buildError(`Cannot convert value ${valueToString(value)} as field ${field} has no type set`);\n }\n const fieldValue = valueToAST(value[field.name], field.type);\n if (fieldValue) {\n fieldNodes.push({\n kind: graphql_1.Kind.OBJECT_FIELD,\n name: { kind: graphql_1.Kind.NAME, value: field.name },\n value: fieldValue,\n });\n }\n }\n return { kind: graphql_1.Kind.OBJECT, fields: fieldNodes };\n }\n if (typeof value === 'boolean') {\n return { kind: graphql_1.Kind.BOOLEAN, value: value };\n }\n if (typeof value === 'number' && isFinite(value)) {\n const stringNum = String(value);\n return integerStringRegExp.test(stringNum)\n ? { kind: graphql_1.Kind.INT, value: stringNum }\n : { kind: graphql_1.Kind.FLOAT, value: stringNum };\n }\n if (typeof value === 'string') {\n if ((0, definitions_1.isEnumType)(type)) {\n return { kind: graphql_1.Kind.ENUM, value: value };\n }\n if (type === type.schema().idType() && integerStringRegExp.test(value)) {\n return { kind: graphql_1.Kind.INT, value: value };\n }\n return {\n kind: graphql_1.Kind.STRING,\n value: value,\n };\n }\n throw buildError(`Invalid value for type ${type}, cannot be converted to AST: ${(0, util_1.inspect)(value)}`);\n}\nexports.valueToAST = valueToAST;\nfunction valueToASTUntyped(value) {\n if (value === undefined) {\n return undefined;\n }\n if (value === null) {\n return { kind: graphql_1.Kind.NULL };\n }\n if ((0, definitions_1.isVariable)(value)) {\n return { kind: graphql_1.Kind.VARIABLE, name: { kind: graphql_1.Kind.NAME, value: value.name } };\n }\n if (Array.isArray(value)) {\n const valuesNodes = [];\n for (const item of value) {\n const itemNode = valueToASTUntyped(item);\n if (itemNode !== undefined) {\n valuesNodes.push(itemNode);\n }\n }\n return { kind: graphql_1.Kind.LIST, values: valuesNodes };\n }\n if (typeof value === 'object') {\n const fieldNodes = [];\n for (const key of Object.keys(value)) {\n const fieldValue = valueToASTUntyped(value[key]);\n if (fieldValue) {\n fieldNodes.push({\n kind: graphql_1.Kind.OBJECT_FIELD,\n name: { kind: graphql_1.Kind.NAME, value: key },\n value: fieldValue,\n });\n }\n }\n return { kind: graphql_1.Kind.OBJECT, fields: fieldNodes };\n }\n if (typeof value === 'boolean') {\n return { kind: graphql_1.Kind.BOOLEAN, value: value };\n }\n if (typeof value === 'number' && isFinite(value)) {\n const stringNum = String(value);\n return integerStringRegExp.test(stringNum)\n ? { kind: graphql_1.Kind.INT, value: stringNum }\n : { kind: graphql_1.Kind.FLOAT, value: stringNum };\n }\n if (typeof value === 'string') {\n return { kind: graphql_1.Kind.STRING, value: value };\n }\n throw buildError(`Invalid value, cannot be converted to AST: ${(0, util_1.inspect)(value, true, 10, true)}`);\n}\nfunction isValidVariable(variable, locationType, locationDefault) {\n const variableType = variable.type;\n if ((0, definitions_1.isNonNullType)(locationType) && !(0, definitions_1.isNonNullType)(variableType)) {\n const hasVariableDefault = variable.defaultValue !== undefined && variable.defaultValue !== null;\n const hasLocationDefault = locationDefault !== undefined;\n if (!hasVariableDefault && !hasLocationDefault) {\n return false;\n }\n return areTypesCompatible(variableType, locationType.ofType);\n }\n return areTypesCompatible(variableType, locationType);\n}\nfunction areTypesCompatible(variableType, locationType) {\n if ((0, definitions_1.isNonNullType)(locationType)) {\n if (!(0, definitions_1.isNonNullType)(variableType)) {\n return false;\n }\n return areTypesCompatible(variableType.ofType, locationType.ofType);\n }\n if ((0, definitions_1.isNonNullType)(variableType)) {\n return areTypesCompatible(variableType.ofType, locationType);\n }\n if ((0, definitions_1.isListType)(locationType)) {\n if (!(0, definitions_1.isListType)(variableType)) {\n return false;\n }\n return areTypesCompatible(variableType.ofType, locationType.ofType);\n }\n return !(0, definitions_1.isListType)(variableType) && (0, types_1.sameType)(variableType, locationType);\n}\nfunction isValidValue(value, argument, variableDefinitions) {\n return isValidValueApplication(value, argument.type, argument.defaultValue, variableDefinitions);\n}\nexports.isValidValue = isValidValue;\nfunction isValidValueApplication(value, locationType, locationDefault, variableDefinitions) {\n if ((0, definitions_1.isVariable)(value)) {\n const definition = variableDefinitions.definition(value);\n return !!definition && isValidVariable(definition, locationType, locationDefault);\n }\n if ((0, definitions_1.isNonNullType)(locationType)) {\n return value !== null && isValidValueApplication(value, locationType.ofType, undefined, variableDefinitions);\n }\n if (value === null || value === undefined) {\n return true;\n }\n if ((0, definitions_1.isCustomScalarType)(locationType)) {\n return true;\n }\n if ((0, definitions_1.isListType)(locationType)) {\n const itemType = locationType.ofType;\n if (Array.isArray(value)) {\n return value.every(item => isValidValueApplication(item, itemType, undefined, variableDefinitions));\n }\n return isValidValueApplication(value, itemType, locationDefault, variableDefinitions);\n }\n if ((0, definitions_1.isInputObjectType)(locationType)) {\n if (typeof value !== 'object') {\n return false;\n }\n const isValid = locationType.fields().every(field => isValidValueApplication(value[field.name], field.type, undefined, variableDefinitions));\n return isValid;\n }\n const schema = locationType.schema();\n if (typeof value === 'boolean') {\n return locationType === schema.booleanType();\n }\n if (typeof value === 'number' && isFinite(value)) {\n const stringNum = String(value);\n if (locationType === schema.intType() || locationType === schema.idType()) {\n return integerStringRegExp.test(stringNum);\n }\n return locationType === schema.floatType();\n }\n if (typeof value === 'string') {\n if ((0, definitions_1.isEnumType)(locationType)) {\n return locationType.value(value) !== undefined;\n }\n return (0, definitions_1.isScalarType)(locationType)\n && locationType !== schema.booleanType()\n && locationType !== schema.intType()\n && locationType !== schema.floatType();\n }\n return false;\n}\nfunction valueFromAST(node, expectedType) {\n if (node.kind === graphql_1.Kind.NULL) {\n if ((0, definitions_1.isNonNullType)(expectedType)) {\n throw new graphql_1.GraphQLError(`Invalid null value for non-null type \"${expectedType}\"`);\n }\n return null;\n }\n if (node.kind === graphql_1.Kind.VARIABLE) {\n return new definitions_1.Variable(node.name.value);\n }\n if ((0, definitions_1.isNonNullType)(expectedType)) {\n expectedType = expectedType.ofType;\n }\n if ((0, definitions_1.isListType)(expectedType)) {\n const baseType = expectedType.ofType;\n if (node.kind === graphql_1.Kind.LIST) {\n return node.values.map(v => valueFromAST(v, baseType));\n }\n return [valueFromAST(node, baseType)];\n }\n if ((0, definitions_1.isIntType)(expectedType)) {\n if (node.kind !== graphql_1.Kind.INT) {\n throw new graphql_1.GraphQLError(`Int cannot represent non-integer value ${(0, graphql_1.print)(node)}.`);\n }\n const i = parseInt(node.value, 10);\n if (i > MAX_INT || i < MIN_INT) {\n throw new graphql_1.GraphQLError(`Int cannot represent non 32-bit signed integer value ${i}.`);\n }\n return i;\n }\n if ((0, definitions_1.isFloatType)(expectedType)) {\n let parsed;\n if (node.kind === graphql_1.Kind.INT) {\n parsed = parseInt(node.value, 10);\n }\n else if (node.kind === graphql_1.Kind.FLOAT) {\n parsed = parseFloat(node.value);\n }\n else {\n throw new graphql_1.GraphQLError(`Float can only represent integer or float value, but got a ${node.kind}.`);\n }\n if (!isFinite(parsed)) {\n throw new graphql_1.GraphQLError(`Float cannot represent non numeric value ${parsed}.`);\n }\n return parsed;\n }\n if ((0, definitions_1.isBooleanType)(expectedType)) {\n if (node.kind !== graphql_1.Kind.BOOLEAN) {\n throw new graphql_1.GraphQLError(`Boolean cannot represent a non boolean value ${(0, graphql_1.print)(node)}.`);\n }\n return node.value;\n }\n if ((0, definitions_1.isStringType)(expectedType)) {\n if (node.kind !== graphql_1.Kind.STRING) {\n throw new graphql_1.GraphQLError(`String cannot represent non string value ${(0, graphql_1.print)(node)}.`);\n }\n return node.value;\n }\n if ((0, definitions_1.isIDType)(expectedType)) {\n if (node.kind !== graphql_1.Kind.STRING && node.kind !== graphql_1.Kind.INT) {\n throw new graphql_1.GraphQLError(`ID cannot represent value ${(0, graphql_1.print)(node)}.`);\n }\n return node.value;\n }\n if ((0, definitions_1.isScalarType)(expectedType)) {\n return valueFromASTUntyped(node);\n }\n if ((0, definitions_1.isInputObjectType)(expectedType)) {\n if (node.kind !== graphql_1.Kind.OBJECT) {\n throw new graphql_1.GraphQLError(`Input Object Type ${expectedType} cannot represent non-object value ${(0, graphql_1.print)(node)}.`);\n }\n const obj = Object.create(null);\n for (const f of node.fields) {\n const name = f.name.value;\n const field = expectedType.field(name);\n if (!field) {\n throw new graphql_1.GraphQLError(`Unknown field \"${name}\" found in value for Input Object Type \"${expectedType}\".`);\n }\n obj[name] = valueFromAST(f.value, field.type);\n }\n return obj;\n }\n if ((0, definitions_1.isEnumType)(expectedType)) {\n if (node.kind !== graphql_1.Kind.STRING && node.kind !== graphql_1.Kind.ENUM) {\n throw new graphql_1.GraphQLError(`Enum Type ${expectedType} cannot represent value ${(0, graphql_1.print)(node)}.`);\n }\n if (!expectedType.value(node.value)) {\n throw new graphql_1.GraphQLError(`Enum Type ${expectedType} has no value ${node.value}.`);\n }\n return node.value;\n }\n (0, utils_1.assert)(false, () => `Unexpected input type ${expectedType} of kind ${expectedType.kind}.`);\n}\nexports.valueFromAST = valueFromAST;\nfunction valueFromASTUntyped(node) {\n switch (node.kind) {\n case graphql_1.Kind.NULL:\n return null;\n case graphql_1.Kind.INT:\n return parseInt(node.value, 10);\n case graphql_1.Kind.FLOAT:\n return parseFloat(node.value);\n case graphql_1.Kind.STRING:\n case graphql_1.Kind.ENUM:\n case graphql_1.Kind.BOOLEAN:\n return node.value;\n case graphql_1.Kind.LIST:\n return node.values.map(valueFromASTUntyped);\n case graphql_1.Kind.OBJECT:\n const obj = Object.create(null);\n node.fields.forEach(f => obj[f.name.value] = valueFromASTUntyped(f.value));\n return obj;\n case graphql_1.Kind.VARIABLE:\n return new definitions_1.Variable(node.name.value);\n }\n}\nfunction argumentsFromAST(context, args, argsDefiner) {\n var _a;\n const values = Object.create(null);\n if (args) {\n for (const argNode of args) {\n const name = argNode.name.value;\n const expectedType = (_a = argsDefiner.argument(name)) === null || _a === void 0 ? void 0 : _a.type;\n if (!expectedType) {\n throw new graphql_1.GraphQLError(`Unknown argument \"${name}\" found in value: ${context} has no argument named \"${name}\"`);\n }\n try {\n values[name] = valueFromAST(argNode.value, expectedType);\n }\n catch (e) {\n if (e instanceof graphql_1.GraphQLError) {\n throw new graphql_1.GraphQLError(`Invalid value for argument ${name}: ${e.message}`);\n }\n throw e;\n }\n }\n }\n return values;\n}\nexports.argumentsFromAST = argumentsFromAST;\nfunction variablesInValue(value) {\n const variables = [];\n collectVariables(value, variables);\n return variables;\n}\nexports.variablesInValue = variablesInValue;\nfunction collectVariables(value, variables) {\n if ((0, definitions_1.isVariable)(value)) {\n if (!variables.some(v => v.name === value.name)) {\n variables.push(value);\n }\n return;\n }\n if (!value) {\n return;\n }\n if (Array.isArray(value)) {\n value.forEach(v => collectVariables(v, variables));\n }\n if (typeof value === 'object') {\n Object.keys(value).forEach(k => collectVariables(value[k], variables));\n }\n}\n//# sourceMappingURL=values.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.removeInaccessibleElements = exports.INACCESSIBLE_VERSIONS = exports.InaccessibleSpecDefinition = exports.inaccessibleIdentity = void 0;\nconst coreSpec_1 = require(\"./coreSpec\");\nconst definitions_1 = require(\"./definitions\");\nconst graphql_1 = require(\"graphql\");\nexports.inaccessibleIdentity = 'https://specs.apollo.dev/inaccessible';\nclass InaccessibleSpecDefinition extends coreSpec_1.FeatureDefinition {\n constructor(version) {\n super(new coreSpec_1.FeatureUrl(exports.inaccessibleIdentity, 'inaccessible', version));\n }\n addElementsToSchema(schema) {\n this.addDirective(schema, 'inaccessible').addLocations(graphql_1.DirectiveLocation.FIELD_DEFINITION, graphql_1.DirectiveLocation.OBJECT, graphql_1.DirectiveLocation.INTERFACE, graphql_1.DirectiveLocation.UNION);\n }\n inaccessibleDirective(schema) {\n return this.directive(schema, 'inaccessible');\n }\n}\nexports.InaccessibleSpecDefinition = InaccessibleSpecDefinition;\nexports.INACCESSIBLE_VERSIONS = new coreSpec_1.FeatureDefinitions(exports.inaccessibleIdentity)\n .add(new InaccessibleSpecDefinition(new coreSpec_1.FeatureVersion(0, 1)));\nfunction removeInaccessibleElements(schema) {\n const coreFeatures = schema.coreFeatures;\n if (!coreFeatures) {\n return;\n }\n const inaccessibleFeature = coreFeatures.getByIdentity(exports.inaccessibleIdentity);\n if (!inaccessibleFeature) {\n return;\n }\n const inaccessibleSpec = exports.INACCESSIBLE_VERSIONS.find(inaccessibleFeature.url.version);\n if (!inaccessibleSpec) {\n throw new graphql_1.GraphQLError(`Cannot remove inaccessible elements: the schema uses unsupported inaccessible spec version ${inaccessibleFeature.url.version} (supported versions: ${exports.INACCESSIBLE_VERSIONS.versions().join(', ')})`);\n }\n const inaccessibleDirective = inaccessibleSpec.inaccessibleDirective(schema);\n if (!inaccessibleDirective) {\n throw new graphql_1.GraphQLError(`Invalid schema: declares ${inaccessibleSpec.url} spec but does not define a @inaccessible directive`);\n }\n for (const type of schema.types()) {\n if (!(0, definitions_1.isCompositeType)(type)) {\n continue;\n }\n if (type.hasAppliedDirective(inaccessibleDirective)) {\n const references = type.remove();\n for (const reference of references) {\n if (reference.kind === 'FieldDefinition') {\n if (!reference.hasAppliedDirective(inaccessibleDirective)) {\n throw new graphql_1.GraphQLError(`Field ${reference.coordinate} returns an @inaccessible type without being marked @inaccessible itself.`, reference.sourceAST);\n }\n }\n }\n }\n else if ((0, definitions_1.isObjectType)(type) || (0, definitions_1.isInterfaceType)(type)) {\n const toRemove = type.fields().filter(f => f.hasAppliedDirective(inaccessibleDirective));\n toRemove.forEach(f => f.remove());\n }\n }\n}\nexports.removeInaccessibleElements = removeInaccessibleElements;\n//# sourceMappingURL=inaccessibleSpec.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.printDirectiveDefinition = exports.printTypeDefinitionAndExtensions = exports.printType = exports.printSchema = exports.orderPrintedDefinitions = exports.defaultPrintOptions = void 0;\nconst utils_1 = require(\"./utils\");\nconst values_1 = require(\"./values\");\nexports.defaultPrintOptions = {\n indentString: \" \",\n definitionsOrder: ['schema', 'directives', 'types'],\n rootTypesOrder: ['query', 'mutation', 'subscription'],\n mergeTypesAndExtensions: false,\n showAllBuiltIns: false,\n showNonGraphQLBuiltIns: false,\n noDescriptions: false,\n};\nfunction orderPrintedDefinitions(options) {\n return {\n ...options,\n typeCompareFn: (t1, t2) => t1.name.localeCompare(t2.name),\n directiveCompareFn: (t1, t2) => t1.name.localeCompare(t2.name),\n };\n}\nexports.orderPrintedDefinitions = orderPrintedDefinitions;\nfunction isDefinitionOrderValid(options) {\n return options.definitionsOrder.length === 3\n && options.definitionsOrder.indexOf('schema') >= 0\n && options.definitionsOrder.indexOf('types') >= 0\n && options.definitionsOrder.indexOf('directives') >= 0;\n}\nfunction validateOptions(options) {\n if (!isDefinitionOrderValid(options)) {\n throw new Error(`'definitionsOrder' should be a 3-element array containing 'schema', 'types' and 'directives' in the desired order (got: [${options.definitionsOrder.join(', ')}])`);\n }\n}\nfunction printSchema(schema, options = exports.defaultPrintOptions) {\n validateOptions(options);\n let directives = options.showAllBuiltIns ? schema.allDirectives() : schema.directives(options.showNonGraphQLBuiltIns);\n if (options.directiveCompareFn) {\n directives = directives.concat().sort(options.directiveCompareFn);\n }\n let types = options.showAllBuiltIns ? schema.allTypes() : schema.types(undefined, options.showNonGraphQLBuiltIns);\n if (options.typeCompareFn) {\n types = types.concat().sort(options.typeCompareFn);\n }\n const definitions = new Array(3);\n definitions[options.definitionsOrder.indexOf('schema')] = printSchemaDefinitionAndExtensions(schema.schemaDefinition, options);\n definitions[options.definitionsOrder.indexOf('directives')] = directives.map(directive => printDirectiveDefinition(directive, options));\n definitions[options.definitionsOrder.indexOf('types')] = types.flatMap(type => printTypeDefinitionAndExtensions(type, options));\n return definitions.flat().join('\\n\\n');\n}\nexports.printSchema = printSchema;\nfunction definitionAndExtensions(element, options) {\n return options.mergeTypesAndExtensions ? [undefined] : [null, ...element.extensions()];\n}\nfunction printSchemaDefinitionAndExtensions(schemaDefinition, options) {\n if (isSchemaOfCommonNames(schemaDefinition)) {\n return [];\n }\n return printDefinitionAndExtensions(schemaDefinition, options, printSchemaDefinitionOrExtension);\n}\nfunction printDefinitionAndExtensions(t, options, printer) {\n return definitionAndExtensions(t, options)\n .map(ext => printer(t, options, ext))\n .filter(v => v !== undefined);\n}\nfunction printIsExtension(extension) {\n return extension ? 'extend ' : '';\n}\nfunction forExtension(ts, extension) {\n if (extension === undefined) {\n return ts;\n }\n return ts.filter(r => { var _a; return ((_a = r.ofExtension()) !== null && _a !== void 0 ? _a : null) === extension; });\n}\nfunction orderRoots(roots, options) {\n return roots.concat().sort((r1, r2) => options.rootTypesOrder.indexOf(r1.rootKind) - options.rootTypesOrder.indexOf(r2.rootKind));\n}\nfunction printSchemaDefinitionOrExtension(schemaDefinition, options, extension) {\n const roots = forExtension(schemaDefinition.roots(), extension);\n const directives = forExtension(schemaDefinition.appliedDirectives, extension);\n if (!roots.length && !directives.length) {\n return undefined;\n }\n const rootEntries = orderRoots(roots, options).map((rootType) => `${options.indentString}${rootType.rootKind}: ${rootType.type}`);\n return printDescription(schemaDefinition, options)\n + printIsExtension(extension)\n + 'schema'\n + printAppliedDirectives(directives, options, true)\n + (directives.length === 0 ? ' ' : '')\n + '{\\n' + rootEntries.join('\\n') + '\\n}';\n}\nfunction isSchemaOfCommonNames(schema) {\n return schema.appliedDirectives.length === 0 && !schema.description && schema.roots().every(r => r.isDefaultRootName());\n}\nfunction printType(type, options = exports.defaultPrintOptions) {\n const definitionAndExtensions = printTypeDefinitionAndExtensions(type, options);\n (0, utils_1.assert)(definitionAndExtensions.length == 1, `Type ${type} is built from more than 1 definition or extension`);\n return definitionAndExtensions[0];\n}\nexports.printType = printType;\nfunction printTypeDefinitionAndExtensions(type, options = exports.defaultPrintOptions) {\n switch (type.kind) {\n case 'ScalarType': return printDefinitionAndExtensions(type, options, printScalarDefinitionOrExtension);\n case 'ObjectType': return printDefinitionAndExtensions(type, options, (t, options, ext) => printFieldBasedTypeDefinitionOrExtension('type', t, options, ext));\n case 'InterfaceType': return printDefinitionAndExtensions(type, options, (t, options, ext) => printFieldBasedTypeDefinitionOrExtension('interface', t, options, ext));\n case 'UnionType': return printDefinitionAndExtensions(type, options, printUnionDefinitionOrExtension);\n case 'EnumType': return printDefinitionAndExtensions(type, options, printEnumDefinitionOrExtension);\n case 'InputObjectType': return printDefinitionAndExtensions(type, options, printInputDefinitionOrExtension);\n }\n}\nexports.printTypeDefinitionAndExtensions = printTypeDefinitionAndExtensions;\nfunction printDirectiveDefinition(directive, options) {\n const locations = directive.locations.join(' | ');\n return `${printDescription(directive, options)}directive ${directive}${printArgs(directive.arguments(), options)}${directive.repeatable ? ' repeatable' : ''} on ${locations}`;\n}\nexports.printDirectiveDefinition = printDirectiveDefinition;\nfunction printAppliedDirectives(appliedDirectives, options, onNewLines = false, endWithNewLine = onNewLines) {\n if (appliedDirectives.length == 0) {\n return \"\";\n }\n const joinStr = onNewLines ? '\\n' + options.indentString : ' ';\n const directives = appliedDirectives.map(d => d.toString()).join(joinStr);\n return onNewLines ? '\\n' + options.indentString + directives + (endWithNewLine ? '\\n' : '') : ' ' + directives;\n}\nfunction printDescription(element, options, indentation = '', firstInBlock = true) {\n if (element.description === undefined || options.noDescriptions) {\n return '';\n }\n const preferMultipleLines = element.description.length > 70;\n const blockString = printBlockString(element.description, '', preferMultipleLines);\n const prefix = indentation && !firstInBlock ? '\\n' + indentation : indentation;\n return prefix + blockString.replace(/\\n/g, '\\n' + indentation) + '\\n';\n}\nfunction printScalarDefinitionOrExtension(type, options, extension) {\n const directives = forExtension(type.appliedDirectives, extension);\n if (extension && !directives.length) {\n return undefined;\n }\n return `${printDescription(type, options)}${printIsExtension(extension)}scalar ${type.name}${printAppliedDirectives(directives, options, true, false)}`;\n}\nfunction printImplementedInterfaces(implementations) {\n return implementations.length\n ? ' implements ' + implementations.map(i => i.interface.name).join(' & ')\n : '';\n}\nfunction printFieldBasedTypeDefinitionOrExtension(kind, type, options, extension) {\n const directives = forExtension(type.appliedDirectives, extension);\n const interfaces = forExtension(type.interfaceImplementations(), extension);\n const fields = forExtension(type.fields(options.showNonGraphQLBuiltIns), extension);\n if (!directives.length && !interfaces.length && !fields.length) {\n return undefined;\n }\n return printDescription(type, options)\n + printIsExtension(extension)\n + kind + ' ' + type\n + printImplementedInterfaces(interfaces)\n + printAppliedDirectives(directives, options, true, fields.length > 0)\n + (directives.length === 0 ? ' ' : '')\n + printFields(fields, options);\n}\nfunction printUnionDefinitionOrExtension(type, options, extension) {\n const directives = forExtension(type.appliedDirectives, extension);\n const members = forExtension(type.members(), extension);\n if (!directives.length && !members.length) {\n return undefined;\n }\n const possibleTypes = members.length ? ' = ' + members.map(m => m.type).join(' | ') : '';\n return printDescription(type, options)\n + printIsExtension(extension)\n + 'union ' + type\n + printAppliedDirectives(directives, options, true, members.length > 0)\n + possibleTypes;\n}\nfunction printEnumDefinitionOrExtension(type, options, extension) {\n const directives = forExtension(type.appliedDirectives, extension);\n const values = forExtension(type.values, extension);\n if (!directives.length && !values.length) {\n return undefined;\n }\n const vals = values.map((v, i) => printDescription(v, options, options.indentString, !i)\n + options.indentString\n + v\n + printAppliedDirectives(v.appliedDirectives, options));\n return printDescription(type, options)\n + printIsExtension(extension)\n + 'enum ' + type\n + printAppliedDirectives(directives, options, true, vals.length > 0)\n + (directives.length === 0 ? ' ' : '')\n + printBlock(vals);\n}\nfunction printInputDefinitionOrExtension(type, options, extension) {\n const directives = forExtension(type.appliedDirectives, extension);\n const fields = forExtension(type.fields(), extension);\n if (!directives.length && !fields.length) {\n return undefined;\n }\n return printDescription(type, options)\n + printIsExtension(extension)\n + 'input ' + type\n + printAppliedDirectives(directives, options, true, fields.length > 0)\n + (directives.length === 0 ? ' ' : '')\n + printFields(fields, options);\n}\nfunction printFields(fields, options) {\n return printBlock(fields.map((f, i) => printDescription(f, options, options.indentString, !i)\n + options.indentString\n + printField(f, options)\n + printAppliedDirectives(f.appliedDirectives, options)));\n}\nfunction printField(field, options) {\n const args = field.kind == 'FieldDefinition' ? printArgs(field.arguments(), options, options.indentString) : '';\n const defaultValue = field.kind === 'InputFieldDefinition' && field.defaultValue !== undefined\n ? ' = ' + (0, values_1.valueToString)(field.defaultValue, field.type)\n : '';\n return `${field.name}${args}: ${field.type}${defaultValue}`;\n}\nfunction printArgs(args, options, indentation = '') {\n if (args.length === 0) {\n return '';\n }\n if (args.every(arg => !arg.description)) {\n return '(' + args.map(arg => printArg(arg, options)).join(', ') + ')';\n }\n const formattedArgs = args\n .map((arg, i) => printDescription(arg, options, ' ' + indentation, !i) + ' ' + indentation + printArg(arg, options))\n .join('\\n');\n return `(\\n${formattedArgs}\\n${indentation})`;\n}\nfunction printArg(arg, options) {\n return `${arg}${printAppliedDirectives(arg.appliedDirectives, options)}`;\n}\nfunction printBlock(items) {\n return items.length !== 0 ? '{\\n' + items.join('\\n') + '\\n}' : '';\n}\nfunction printBlockString(value, indentation = '', preferMultipleLines = false) {\n const isSingleLine = value.indexOf('\\n') === -1;\n const hasLeadingSpace = value[0] === ' ' || value[0] === '\\t';\n const hasTrailingQuote = value[value.length - 1] === '\"';\n const hasTrailingSlash = value[value.length - 1] === '\\\\';\n const printAsMultipleLines = !isSingleLine ||\n hasTrailingQuote ||\n hasTrailingSlash ||\n preferMultipleLines;\n let result = '';\n if (printAsMultipleLines && !(isSingleLine && hasLeadingSpace)) {\n result += '\\n' + indentation;\n }\n result += indentation ? value.replace(/\\n/g, '\\n' + indentation) : value;\n if (printAsMultipleLines) {\n result += '\\n';\n }\n return '\"\"\"' + result.replace(/\"\"\"/g, '\\\\\"\"\"') + '\"\"\"';\n}\n//# sourceMappingURL=print.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.addIntrospectionFields = exports.isIntrospectionName = exports.introspectionFieldNames = void 0;\nconst graphql_1 = require(\"graphql\");\nconst definitions_1 = require(\"./definitions\");\nexports.introspectionFieldNames = ['__schema', '__type'];\nfunction isIntrospectionName(name) {\n return name.startsWith('__');\n}\nexports.isIntrospectionName = isIntrospectionName;\nfunction addIntrospectionFields(schema) {\n if (schema.type('__Schema')) {\n return;\n }\n const typeKindEnum = schema.addType(new definitions_1.EnumType('__TypeKind', true));\n typeKindEnum.addValue('SCALAR');\n typeKindEnum.addValue('OBJECT');\n typeKindEnum.addValue('INTERFACE');\n typeKindEnum.addValue('UNION');\n typeKindEnum.addValue('ENUM');\n typeKindEnum.addValue('INPUT_OBJECT');\n typeKindEnum.addValue('LIST');\n typeKindEnum.addValue('NON_NULL');\n const inputValueType = schema.addType(new definitions_1.ObjectType('__InputValue', true));\n const fieldType = schema.addType(new definitions_1.ObjectType('__Field', true));\n const typeType = schema.addType(new definitions_1.ObjectType('__Type', true));\n const enumValueType = schema.addType(new definitions_1.ObjectType('__EnumValue', true));\n typeType.addField('kind', new definitions_1.NonNullType(typeKindEnum));\n typeType.addField('name', schema.stringType());\n typeType.addField('description', schema.stringType());\n typeType.addField('fields', new definitions_1.ListType(new definitions_1.NonNullType(fieldType)))\n .addArgument('includeDeprecated', schema.booleanType(), false);\n typeType.addField('interfaces', new definitions_1.ListType(new definitions_1.NonNullType(typeType)));\n typeType.addField('possibleTypes', new definitions_1.ListType(new definitions_1.NonNullType(typeType)));\n typeType.addField('enumValues', new definitions_1.ListType(new definitions_1.NonNullType(enumValueType)))\n .addArgument('includeDeprecated', schema.booleanType(), false);\n typeType.addField('inputFields', new definitions_1.ListType(new definitions_1.NonNullType(inputValueType)));\n typeType.addField('ofType', typeType);\n typeType.addField('specifiedByURL', schema.stringType());\n fieldType.addField('name', new definitions_1.NonNullType(schema.stringType()));\n fieldType.addField('description', schema.stringType());\n fieldType.addField('args', new definitions_1.NonNullType(new definitions_1.ListType(new definitions_1.NonNullType(inputValueType))));\n fieldType.addField('type', new definitions_1.NonNullType(typeType));\n fieldType.addField('isDeprecated', new definitions_1.NonNullType(schema.booleanType()));\n fieldType.addField('deprecationReason', schema.stringType());\n inputValueType.addField('name', new definitions_1.NonNullType(schema.stringType()));\n inputValueType.addField('description', schema.stringType());\n inputValueType.addField('type', new definitions_1.NonNullType(typeType));\n inputValueType.addField('defaultValue', schema.stringType());\n enumValueType.addField('name', new definitions_1.NonNullType(schema.stringType()));\n enumValueType.addField('description', schema.stringType());\n enumValueType.addField('isDeprecated', new definitions_1.NonNullType(schema.booleanType()));\n enumValueType.addField('deprecationReason', schema.stringType());\n const directiveLocationEnum = schema.addType(new definitions_1.EnumType('__DirectiveLocation', true));\n for (const location of Object.values(graphql_1.DirectiveLocation)) {\n directiveLocationEnum.addValue(location);\n }\n const directiveType = schema.addType(new definitions_1.ObjectType('__Directive', true));\n directiveType.addField('name', new definitions_1.NonNullType(schema.stringType()));\n directiveType.addField('description', schema.stringType());\n directiveType.addField('locations', new definitions_1.NonNullType(new definitions_1.ListType(new definitions_1.NonNullType(directiveLocationEnum))));\n directiveType.addField('args', new definitions_1.NonNullType(new definitions_1.ListType(new definitions_1.NonNullType(inputValueType))));\n directiveType.addField('isRepeatable', new definitions_1.NonNullType(schema.booleanType()));\n const schemaType = schema.addType(new definitions_1.ObjectType('__Schema', true));\n schemaType.addField('description', schema.stringType());\n schemaType.addField('types', new definitions_1.NonNullType(new definitions_1.ListType(new definitions_1.NonNullType(typeType))));\n schemaType.addField('queryType', new definitions_1.NonNullType(typeType));\n schemaType.addField('mutationType', new definitions_1.NonNullType(typeType));\n schemaType.addField('subscriptionType', new definitions_1.NonNullType(typeType));\n schemaType.addField('directives', new definitions_1.NonNullType(new definitions_1.ListType(new definitions_1.NonNullType(directiveType))));\n let queryRoot = schema.schemaDefinition.rootType('query');\n if (!queryRoot) {\n queryRoot = schema.addType(new definitions_1.ObjectType('Query'));\n schema.schemaDefinition.setRoot('query', queryRoot);\n }\n queryRoot.addField(new definitions_1.FieldDefinition('__schema', true), new definitions_1.NonNullType(schemaType));\n queryRoot.addField(new definitions_1.FieldDefinition('__type', true), typeType)\n .addArgument('name', new definitions_1.NonNullType(schema.stringType()));\n}\nexports.addIntrospectionFields = addIntrospectionFields;\n//# sourceMappingURL=introspection.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.validateSchema = void 0;\nconst definitions_1 = require(\"./definitions\");\nconst graphql_1 = require(\"graphql\");\nconst values_1 = require(\"./values\");\nconst introspection_1 = require(\"./introspection\");\nconst types_1 = require(\"./types\");\nfunction validateSchema(schema) {\n return new Validator(schema).validate();\n}\nexports.validateSchema = validateSchema;\nclass InputObjectCircularRefsValidator {\n constructor(onError) {\n this.onError = onError;\n this.visitedTypes = new Set();\n this.fieldPath = [];\n this.fieldPathIndexByTypeName = new Map();\n }\n detectCycles(type) {\n if (this.visitedTypes.has(type.name)) {\n return;\n }\n this.visitedTypes.add(type.name);\n this.fieldPathIndexByTypeName.set(type.name, this.fieldPath.length);\n for (const field of type.fields()) {\n if ((0, definitions_1.isNonNullType)(field.type) && (0, definitions_1.isInputObjectType)(field.type.ofType)) {\n const fieldType = field.type.ofType;\n const cycleIndex = this.fieldPathIndexByTypeName.get(fieldType.name);\n this.fieldPath.push(field);\n if (cycleIndex === undefined) {\n this.detectCycles(fieldType);\n }\n else {\n const cyclePath = this.fieldPath.slice(cycleIndex);\n const pathStr = cyclePath.map((fieldObj) => fieldObj.name).join('.');\n this.onError(new graphql_1.GraphQLError(`Cannot reference Input Object \"${fieldType.name}\" within itself through a series of non-null fields: \"${pathStr}\".`, (0, definitions_1.sourceASTs)(...cyclePath)));\n }\n this.fieldPath.pop();\n }\n }\n this.fieldPathIndexByTypeName.delete(type.name);\n }\n}\nclass Validator {\n constructor(schema) {\n this.schema = schema;\n this.emptyVariables = new definitions_1.VariableDefinitions();\n this.hasMissingTypes = false;\n this.errors = [];\n }\n validate() {\n for (const type of this.schema.types()) {\n this.validateName(type);\n switch (type.kind) {\n case 'ObjectType':\n case 'InterfaceType':\n this.validateObjectOrInterfaceType(type);\n break;\n case 'InputObjectType':\n this.validateInputObjectType(type);\n break;\n case 'UnionType':\n this.validateUnionType(type);\n break;\n case 'EnumType':\n this.validateEnumType(type);\n break;\n }\n }\n for (const directive of this.schema.allDirectives()) {\n this.validateName(directive);\n for (const arg of directive.arguments()) {\n this.validateArg(arg);\n }\n for (const application of directive.applications()) {\n this.validateDirectiveApplication(directive, application);\n }\n }\n if (!this.hasMissingTypes) {\n const refsValidator = new InputObjectCircularRefsValidator(e => this.errors.push(e));\n for (const type of this.schema.types()) {\n switch (type.kind) {\n case 'ObjectType':\n case 'InterfaceType':\n this.validateImplementedInterfaces(type);\n break;\n case 'InputObjectType':\n refsValidator.detectCycles(type);\n break;\n }\n }\n }\n return this.errors;\n }\n validateHasType(elt) {\n if (!elt.type) {\n this.errors.push(new graphql_1.GraphQLError(`Element ${elt.coordinate} does not have a type set`, elt.sourceAST));\n this.hasMissingTypes = false;\n }\n }\n validateName(elt) {\n if ((0, introspection_1.isIntrospectionName)(elt.name)) {\n return;\n }\n const error = (0, graphql_1.isValidNameError)(elt.name);\n if (error) {\n this.errors.push(elt.sourceAST ? new graphql_1.GraphQLError(error.message, elt.sourceAST) : error);\n }\n }\n validateObjectOrInterfaceType(type) {\n if (!type.hasFields(true)) {\n this.errors.push(new graphql_1.GraphQLError(`Type ${type.name} must define one or more fields.`, type.sourceAST));\n }\n for (const field of type.fields()) {\n this.validateName(field);\n this.validateHasType(field);\n for (const arg of field.arguments()) {\n this.validateArg(arg);\n }\n }\n }\n validateImplementedInterfaces(type) {\n if (type.implementsInterface(type.name)) {\n this.errors.push(new graphql_1.GraphQLError(`Type ${type} cannot implement itself because it would create a circular reference.`, (0, definitions_1.sourceASTs)(type, type.interfaceImplementation(type.name))));\n }\n for (const itf of type.interfaces()) {\n for (const itfField of itf.fields()) {\n const field = type.field(itfField.name);\n if (!field) {\n this.errors.push(new graphql_1.GraphQLError(`Interface field ${itfField.coordinate} expected but ${type} does not provide it.`, (0, definitions_1.sourceASTs)(itfField, type)));\n continue;\n }\n this.validateHasType(itfField);\n if (!(0, types_1.isSubtype)(itfField.type, field.type)) {\n this.errors.push(new graphql_1.GraphQLError(`Interface field ${itfField.coordinate} expects type ${itfField.type} but ${field.coordinate} of type ${field.type} is not a proper subtype.`, (0, definitions_1.sourceASTs)(itfField, field)));\n }\n for (const itfArg of itfField.arguments()) {\n const arg = field.argument(itfArg.name);\n if (!arg) {\n this.errors.push(new graphql_1.GraphQLError(`Interface field argument ${itfArg.coordinate} expected but ${field.coordinate} does not provide it.`, (0, definitions_1.sourceASTs)(itfArg, field)));\n continue;\n }\n this.validateHasType(itfArg);\n if (!(0, types_1.sameType)(itfArg.type, arg.type)) {\n this.errors.push(new graphql_1.GraphQLError(`Interface field argument ${itfArg.coordinate} expects type ${itfArg.type} but ${arg.coordinate} is type ${arg.type}.`, (0, definitions_1.sourceASTs)(itfArg, arg)));\n }\n }\n for (const arg of field.arguments()) {\n if (itfField.argument(arg.name)) {\n continue;\n }\n if (arg.isRequired()) {\n this.errors.push(new graphql_1.GraphQLError(`Field ${field.coordinate} includes required argument ${arg.name} that is missing from the Interface field ${itfField.coordinate}.`, (0, definitions_1.sourceASTs)(arg, itfField)));\n }\n }\n }\n for (const itfOfItf of itf.interfaces()) {\n if (!type.implementsInterface(itfOfItf)) {\n if (itfOfItf === type) {\n this.errors.push(new graphql_1.GraphQLError(`Type ${type} cannot implement ${itf} because it would create a circular reference.`, (0, definitions_1.sourceASTs)(type, itf)));\n }\n else {\n this.errors.push(new graphql_1.GraphQLError(`Type ${type} must implement ${itfOfItf} because it is implemented by ${itf}.`, (0, definitions_1.sourceASTs)(type, itf, itfOfItf)));\n }\n }\n }\n }\n }\n validateInputObjectType(type) {\n if (!type.hasFields()) {\n this.errors.push(new graphql_1.GraphQLError(`Input Object type ${type.name} must define one or more fields.`, type.sourceAST));\n }\n for (const field of type.fields()) {\n this.validateName(field);\n this.validateHasType(field);\n if (field.isRequired() && field.isDeprecated()) {\n this.errors.push(new graphql_1.GraphQLError(`Required input field ${field.coordinate} cannot be deprecated.`, (0, definitions_1.sourceASTs)(field.appliedDirectivesOf('deprecated')[0], field)));\n }\n }\n }\n validateArg(arg) {\n this.validateName(arg);\n this.validateHasType(arg);\n if (arg.isRequired() && arg.isDeprecated()) {\n this.errors.push(new graphql_1.GraphQLError(`Required argument ${arg.coordinate} cannot be deprecated.`, (0, definitions_1.sourceASTs)(arg.appliedDirectivesOf('deprecated')[0], arg)));\n }\n }\n validateUnionType(type) {\n if (type.membersCount() === 0) {\n this.errors.push(new graphql_1.GraphQLError(`Union type ${type.coordinate} must define one or more member types.`, type.sourceAST));\n }\n }\n validateEnumType(type) {\n if (type.values.length === 0) {\n this.errors.push(new graphql_1.GraphQLError(`Enum type ${type.coordinate} must define one or more values.`, type.sourceAST));\n }\n for (const value of type.values) {\n this.validateName(value);\n if (value.name === 'true' || value.name === 'false' || value.name === 'null') {\n this.errors.push(new graphql_1.GraphQLError(`Enum type ${type.coordinate} cannot include value: ${value}.`, value.sourceAST));\n }\n }\n }\n validateDirectiveApplication(definition, application) {\n for (const argument of definition.arguments()) {\n const value = application.arguments()[argument.name];\n if (!value) {\n continue;\n }\n if (!(0, values_1.isValidValue)(value, argument, this.emptyVariables)) {\n const parent = application.parent;\n const parentDesc = parent instanceof definitions_1.NamedSchemaElement\n ? parent.coordinate\n : 'schema';\n this.errors.push(new graphql_1.GraphQLError(`Invalid value for \"${argument.coordinate}\" of type \"${argument.type}\" in application of \"${definition.coordinate}\" to \"${parentDesc}\".`, (0, definitions_1.sourceASTs)(application, argument)));\n }\n }\n }\n}\n//# sourceMappingURL=validate.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.ObjectType = exports.InterfaceImplementation = exports.ScalarType = exports.SchemaDefinition = exports.RootType = exports.Schema = exports.CoreFeatures = exports.CoreFeature = exports.BuiltIns = exports.NamedSchemaElementWithType = exports.NamedSchemaElement = exports.SchemaElement = exports.Extension = exports.sourceASTs = exports.DirectiveTargetElement = exports.isLeafType = exports.typeFromAST = exports.typeToAST = exports.executableDirectiveLocations = exports.runtimeTypesIntersects = exports.possibleRuntimeTypes = exports.isCompositeType = exports.isAbstractType = exports.isNullableType = exports.baseType = exports.isInputType = exports.isOutputType = exports.isInputObjectType = exports.isUnionType = exports.isEnumType = exports.isInterfaceType = exports.isObjectType = exports.isIDType = exports.isBooleanType = exports.isFloatType = exports.isStringType = exports.isIntType = exports.isCustomScalarType = exports.isScalarType = exports.isNonNullType = exports.isListType = exports.isWrapperType = exports.isNamedType = exports.defaultRootName = exports.allSchemaRootKinds = exports.typenameFieldName = exports.printErrors = exports.printGraphQLErrorsOrRethrow = exports.errorCauses = exports.ErrGraphQLValidationFailed = void 0;\nexports.newNamedType = exports.graphQLBuiltIns = exports.variableDefinitionFromAST = exports.variableDefinitionsFromAST = exports.VariableDefinitions = exports.VariableDefinition = exports.variablesInArguments = exports.isVariable = exports.containsVariable = exports.mergeVariables = exports.Variable = exports.Directive = exports.DirectiveDefinition = exports.EnumValue = exports.ArgumentDefinition = exports.InputFieldDefinition = exports.FieldDefinition = exports.NonNullType = exports.ListType = exports.InputObjectType = exports.EnumType = exports.UnionType = exports.UnionMember = exports.InterfaceType = void 0;\nconst graphql_1 = require(\"graphql\");\nconst coreSpec_1 = require(\"./coreSpec\");\nconst utils_1 = require(\"./utils\");\nconst values_1 = require(\"./values\");\nconst inaccessibleSpec_1 = require(\"./inaccessibleSpec\");\nconst print_1 = require(\"./print\");\nconst types_1 = require(\"./types\");\nconst introspection_1 = require(\"./introspection\");\nconst core_schema_1 = require(\"@apollo/core-schema\");\nconst error_1 = require(\"@apollo/core-schema/dist/error\");\nconst validate_1 = require(\"graphql/validation/validate\");\nconst specifiedRules_1 = require(\"graphql/validation/specifiedRules\");\nconst validate_2 = require(\"./validate\");\nconst validationErrorCode = 'GraphQLValidationFailed';\nconst ErrGraphQLValidationFailed = (causes) => (0, core_schema_1.err)(validationErrorCode, {\n message: 'The schema is not a valid GraphQL schema',\n causes\n});\nexports.ErrGraphQLValidationFailed = ErrGraphQLValidationFailed;\nfunction errorCauses(e) {\n if (e instanceof error_1.GraphQLErrorExt) {\n if (e.code === validationErrorCode) {\n return (e.causes);\n }\n return [e];\n }\n if (e instanceof graphql_1.GraphQLError) {\n return [e];\n }\n return undefined;\n}\nexports.errorCauses = errorCauses;\nfunction printGraphQLErrorsOrRethrow(e) {\n const causes = errorCauses(e);\n if (!causes) {\n throw e;\n }\n return causes.map(e => (0, graphql_1.printError)(e)).join('\\n\\n');\n}\nexports.printGraphQLErrorsOrRethrow = printGraphQLErrorsOrRethrow;\nfunction printErrors(errors) {\n return errors.map(e => (0, graphql_1.printError)(e)).join('\\n\\n');\n}\nexports.printErrors = printErrors;\nexports.typenameFieldName = '__typename';\nexports.allSchemaRootKinds = ['query', 'mutation', 'subscription'];\nfunction defaultRootName(rootKind) {\n return rootKind.charAt(0).toUpperCase() + rootKind.slice(1);\n}\nexports.defaultRootName = defaultRootName;\nfunction checkDefaultSchemaRoot(type) {\n if (type.kind !== 'ObjectType') {\n return undefined;\n }\n switch (type.name) {\n case 'Query': return 'query';\n case 'Mutation': return 'mutation';\n case 'Subscription': return 'subscription';\n default: return undefined;\n }\n}\nfunction isNamedType(type) {\n return type instanceof BaseNamedType;\n}\nexports.isNamedType = isNamedType;\nfunction isWrapperType(type) {\n return isListType(type) || isNonNullType(type);\n}\nexports.isWrapperType = isWrapperType;\nfunction isListType(type) {\n return type.kind == 'ListType';\n}\nexports.isListType = isListType;\nfunction isNonNullType(type) {\n return type.kind == 'NonNullType';\n}\nexports.isNonNullType = isNonNullType;\nfunction isScalarType(type) {\n return type.kind == 'ScalarType';\n}\nexports.isScalarType = isScalarType;\nfunction isCustomScalarType(type) {\n return isScalarType(type) && !exports.graphQLBuiltIns.defaultGraphQLBuiltInTypes.includes(type.name);\n}\nexports.isCustomScalarType = isCustomScalarType;\nfunction isIntType(type) {\n return type === type.schema().intType();\n}\nexports.isIntType = isIntType;\nfunction isStringType(type) {\n return type === type.schema().stringType();\n}\nexports.isStringType = isStringType;\nfunction isFloatType(type) {\n return type === type.schema().floatType();\n}\nexports.isFloatType = isFloatType;\nfunction isBooleanType(type) {\n return type === type.schema().booleanType();\n}\nexports.isBooleanType = isBooleanType;\nfunction isIDType(type) {\n return type === type.schema().idType();\n}\nexports.isIDType = isIDType;\nfunction isObjectType(type) {\n return type.kind == 'ObjectType';\n}\nexports.isObjectType = isObjectType;\nfunction isInterfaceType(type) {\n return type.kind == 'InterfaceType';\n}\nexports.isInterfaceType = isInterfaceType;\nfunction isEnumType(type) {\n return type.kind == 'EnumType';\n}\nexports.isEnumType = isEnumType;\nfunction isUnionType(type) {\n return type.kind == 'UnionType';\n}\nexports.isUnionType = isUnionType;\nfunction isInputObjectType(type) {\n return type.kind == 'InputObjectType';\n}\nexports.isInputObjectType = isInputObjectType;\nfunction isOutputType(type) {\n switch (baseType(type).kind) {\n case 'ScalarType':\n case 'ObjectType':\n case 'UnionType':\n case 'EnumType':\n case 'InterfaceType':\n return true;\n default:\n return false;\n }\n}\nexports.isOutputType = isOutputType;\nfunction isInputType(type) {\n switch (baseType(type).kind) {\n case 'ScalarType':\n case 'EnumType':\n case 'InputObjectType':\n return true;\n default:\n return false;\n }\n}\nexports.isInputType = isInputType;\nfunction baseType(type) {\n return isWrapperType(type) ? type.baseType() : type;\n}\nexports.baseType = baseType;\nfunction isNullableType(type) {\n return !isNonNullType(type);\n}\nexports.isNullableType = isNullableType;\nfunction isAbstractType(type) {\n return isInterfaceType(type) || isUnionType(type);\n}\nexports.isAbstractType = isAbstractType;\nfunction isCompositeType(type) {\n return isObjectType(type) || isInterfaceType(type) || isUnionType(type);\n}\nexports.isCompositeType = isCompositeType;\nfunction possibleRuntimeTypes(type) {\n switch (type.kind) {\n case 'InterfaceType': return type.possibleRuntimeTypes();\n case 'UnionType': return type.types();\n case 'ObjectType': return [type];\n }\n}\nexports.possibleRuntimeTypes = possibleRuntimeTypes;\nfunction runtimeTypesIntersects(t1, t2) {\n const rt1 = possibleRuntimeTypes(t1);\n const rt2 = possibleRuntimeTypes(t2);\n for (const obj1 of rt1) {\n if (rt2.some(obj2 => obj1.name === obj2.name)) {\n return true;\n }\n }\n return false;\n}\nexports.runtimeTypesIntersects = runtimeTypesIntersects;\nexports.executableDirectiveLocations = [\n graphql_1.DirectiveLocation.QUERY,\n graphql_1.DirectiveLocation.MUTATION,\n graphql_1.DirectiveLocation.SUBSCRIPTION,\n graphql_1.DirectiveLocation.FIELD,\n graphql_1.DirectiveLocation.FRAGMENT_DEFINITION,\n graphql_1.DirectiveLocation.FRAGMENT_SPREAD,\n graphql_1.DirectiveLocation.INLINE_FRAGMENT,\n graphql_1.DirectiveLocation.VARIABLE_DEFINITION,\n];\nfunction typeToAST(type) {\n switch (type.kind) {\n case 'ListType':\n return {\n kind: graphql_1.Kind.LIST_TYPE,\n type: typeToAST(type.ofType)\n };\n case 'NonNullType':\n return {\n kind: graphql_1.Kind.NON_NULL_TYPE,\n type: typeToAST(type.ofType)\n };\n default:\n return {\n kind: graphql_1.Kind.NAMED_TYPE,\n name: { kind: graphql_1.Kind.NAME, value: type.name }\n };\n }\n}\nexports.typeToAST = typeToAST;\nfunction typeFromAST(schema, node) {\n switch (node.kind) {\n case graphql_1.Kind.LIST_TYPE:\n return new ListType(typeFromAST(schema, node.type));\n case graphql_1.Kind.NON_NULL_TYPE:\n return new NonNullType(typeFromAST(schema, node.type));\n default:\n const type = schema.type(node.name.value);\n if (!type) {\n throw new graphql_1.GraphQLError(`Unknown type \"${node.name.value}\"`, node);\n }\n return type;\n }\n}\nexports.typeFromAST = typeFromAST;\nfunction isLeafType(type) {\n return isScalarType(type) || isEnumType(type);\n}\nexports.isLeafType = isLeafType;\nclass DirectiveTargetElement {\n constructor(_schema) {\n this._schema = _schema;\n this.appliedDirectives = [];\n }\n schema() {\n return this._schema;\n }\n appliedDirectivesOf(nameOrDefinition) {\n const directiveName = typeof nameOrDefinition === 'string' ? nameOrDefinition : nameOrDefinition.name;\n return this.appliedDirectives.filter(d => d.name == directiveName);\n }\n hasAppliedDirective(nameOrDefinition) {\n const directiveName = typeof nameOrDefinition === 'string' ? nameOrDefinition : nameOrDefinition.name;\n return this.appliedDirectives.some(d => d.name == directiveName);\n }\n applyDirective(defOrDirective, args) {\n let toAdd;\n if (defOrDirective instanceof Directive) {\n if (defOrDirective.schema() != this.schema()) {\n throw new Error(`Cannot add directive ${defOrDirective} to ${this} as it is attached to another schema`);\n }\n toAdd = defOrDirective;\n if (args) {\n toAdd.setArguments(args);\n }\n }\n else {\n toAdd = new Directive(defOrDirective.name, args !== null && args !== void 0 ? args : Object.create(null));\n }\n Element.prototype['setParent'].call(toAdd, this);\n this.appliedDirectives.push(toAdd);\n return toAdd;\n }\n appliedDirectivesToDirectiveNodes() {\n if (this.appliedDirectives.length == 0) {\n return undefined;\n }\n return this.appliedDirectives.map(directive => {\n return {\n kind: graphql_1.Kind.DIRECTIVE,\n name: {\n kind: graphql_1.Kind.NAME,\n value: directive.name,\n },\n arguments: directive.argumentsToAST()\n };\n });\n }\n appliedDirectivesToString() {\n return this.appliedDirectives.length == 0\n ? ''\n : ' ' + this.appliedDirectives.join(' ');\n }\n variablesInAppliedDirectives() {\n return this.appliedDirectives.reduce((acc, d) => mergeVariables(acc, variablesInArguments(d.arguments())), []);\n }\n}\nexports.DirectiveTargetElement = DirectiveTargetElement;\nfunction sourceASTs(...elts) {\n return elts.map(elt => elt === null || elt === void 0 ? void 0 : elt.sourceAST).filter(elt => elt !== undefined);\n}\nexports.sourceASTs = sourceASTs;\nclass Element {\n schema() {\n const schema = this.schemaInternal();\n (0, utils_1.assert)(schema, 'requested schema does not exist. Probably because the element is unattached');\n return schema;\n }\n schemaInternal() {\n if (!this._parent) {\n return undefined;\n }\n else if (this._parent instanceof Schema) {\n return this._parent;\n }\n else if (this._parent instanceof SchemaElement) {\n return this._parent.schemaInternal();\n }\n else if (this._parent instanceof DirectiveTargetElement) {\n return this._parent.schema();\n }\n (0, utils_1.assert)(false, 'unreachable code. parent is of unknown type');\n }\n get parent() {\n (0, utils_1.assert)(this._parent, 'trying to access non-existent parent');\n return this._parent;\n }\n isAttached() {\n return !!this._parent;\n }\n setParent(parent) {\n (0, utils_1.assert)(!this._parent, \"Cannot set parent of an already attached element\");\n this._parent = parent;\n this.onAttached();\n }\n onAttached() {\n }\n checkUpdate() {\n if (!this.isAttached()) {\n throw error(`Cannot modify detached element ${this}`);\n }\n }\n}\nclass Extension {\n get extendedElement() {\n return this._extendedElement;\n }\n setExtendedElement(element) {\n (0, utils_1.assert)(!this._extendedElement, \"Cannot attached already attached extension\");\n this._extendedElement = element;\n }\n}\nexports.Extension = Extension;\nclass SchemaElement extends Element {\n constructor() {\n super(...arguments);\n this._appliedDirectives = [];\n }\n get appliedDirectives() {\n return this._appliedDirectives;\n }\n appliedDirectivesOf(nameOrDefinition) {\n const directiveName = typeof nameOrDefinition === 'string' ? nameOrDefinition : nameOrDefinition.name;\n return this._appliedDirectives.filter(d => d.name == directiveName);\n }\n hasAppliedDirective(nameOrDefinition) {\n return (typeof nameOrDefinition === 'string'\n ? this.appliedDirectivesOf(nameOrDefinition)\n : this.appliedDirectivesOf(nameOrDefinition)).length !== 0;\n }\n applyDirective(nameOrDefOrDirective, args) {\n let toAdd;\n if (nameOrDefOrDirective instanceof Directive) {\n this.checkUpdate(nameOrDefOrDirective);\n toAdd = nameOrDefOrDirective;\n if (args) {\n toAdd.setArguments(args);\n }\n }\n else {\n let name;\n if (typeof nameOrDefOrDirective === 'string') {\n this.checkUpdate();\n const def = this.schema().directive(nameOrDefOrDirective);\n if (!def) {\n throw new graphql_1.GraphQLError(`Cannot apply unknown directive \"@${nameOrDefOrDirective}\"`);\n }\n name = nameOrDefOrDirective;\n }\n else {\n this.checkUpdate(nameOrDefOrDirective);\n name = nameOrDefOrDirective.name;\n }\n toAdd = new Directive(name, args !== null && args !== void 0 ? args : Object.create(null));\n Element.prototype['setParent'].call(toAdd, this);\n }\n this._appliedDirectives.push(toAdd);\n DirectiveDefinition.prototype['addReferencer'].call(toAdd.definition, toAdd);\n this.onModification();\n return toAdd;\n }\n removeAppliedDirectives() {\n const applied = this._appliedDirectives.concat();\n applied.forEach(d => d.remove());\n }\n onModification() {\n const schema = this.schemaInternal();\n if (schema) {\n Schema.prototype['onModification'].call(schema);\n }\n }\n isElementBuiltIn() {\n return false;\n }\n removeTypeReferenceInternal(type) {\n this.removeTypeReference(type);\n }\n checkRemoval() {\n if (this.isElementBuiltIn() && !Schema.prototype['canModifyBuiltIn'].call(this.schema())) {\n throw error(`Cannot modify built-in ${this}`);\n }\n }\n checkUpdate(addedElement) {\n super.checkUpdate();\n if (!Schema.prototype['canModifyBuiltIn'].call(this.schema())) {\n let thisElement = this;\n while (thisElement && thisElement instanceof SchemaElement) {\n if (thisElement.isElementBuiltIn()) {\n throw error(`Cannot modify built-in (or part of built-in) ${this}`);\n }\n thisElement = thisElement.parent;\n }\n }\n if (addedElement && addedElement.isAttached()) {\n const thatSchema = addedElement.schema();\n if (thatSchema && thatSchema != this.schema()) {\n throw error(`Cannot add element ${addedElement} to ${this} as it is attached to another schema`);\n }\n }\n }\n}\nexports.SchemaElement = SchemaElement;\nclass NamedSchemaElement extends SchemaElement {\n constructor(name) {\n super();\n this._name = name;\n }\n get name() {\n return this._name;\n }\n}\nexports.NamedSchemaElement = NamedSchemaElement;\nclass BaseNamedType extends NamedSchemaElement {\n constructor(name, isBuiltIn = false) {\n super(name);\n this.isBuiltIn = isBuiltIn;\n this._referencers = new Set();\n this._extensions = new Set();\n }\n addReferencer(referencer) {\n this._referencers.add(referencer);\n }\n removeReferencer(referencer) {\n this._referencers.delete(referencer);\n }\n get coordinate() {\n return this.name;\n }\n *allChildElements() {\n }\n extensions() {\n return this._extensions;\n }\n newExtension() {\n return this.addExtension(new Extension());\n }\n addExtension(extension) {\n this.checkUpdate();\n if (this._extensions.has(extension)) {\n return extension;\n }\n if (extension.extendedElement) {\n throw error(`Cannot add extension to type ${this}: it is already added to another type`);\n }\n this._extensions.add(extension);\n Extension.prototype['setExtendedElement'].call(extension, this);\n this.onModification();\n return extension;\n }\n isIntrospectionType() {\n return (0, introspection_1.isIntrospectionName)(this.name);\n }\n hasExtensionElements() {\n return this._extensions.size > 0;\n }\n hasNonExtensionElements() {\n return this._appliedDirectives.some(d => d.ofExtension() === undefined) || this.hasNonExtensionInnerElements();\n }\n isElementBuiltIn() {\n return this.isBuiltIn;\n }\n rename(newName) {\n this.checkUpdate();\n const oldName = this._name;\n this._name = newName;\n Schema.prototype['renameTypeInternal'].call(this._parent, oldName, newName);\n this.onModification();\n }\n remove() {\n if (!this._parent) {\n return [];\n }\n this.checkRemoval();\n this.onModification();\n this.removeInnerElements();\n Schema.prototype['removeTypeInternal'].call(this._parent, this);\n this.removeAppliedDirectives();\n this.sourceAST = undefined;\n const toReturn = (0, utils_1.setValues)(this._referencers).map(r => {\n SchemaElement.prototype['removeTypeReferenceInternal'].call(r, this);\n return r;\n });\n this._referencers.clear();\n this._parent = undefined;\n return toReturn;\n }\n removeRecursive() {\n this.remove().forEach(ref => this.removeReferenceRecursive(ref));\n }\n referencers() {\n return (0, utils_1.setValues)(this._referencers);\n }\n isReferenced() {\n return this._referencers.size > 0;\n }\n toString() {\n return this.name;\n }\n}\nclass NamedSchemaElementWithType extends NamedSchemaElement {\n get type() {\n return this._type;\n }\n set type(type) {\n if (type) {\n this.checkUpdate(type);\n }\n else {\n this.checkRemoval();\n }\n if (this._type) {\n removeReferenceToType(this, this._type);\n }\n this._type = type;\n if (type) {\n addReferenceToType(this, type);\n }\n }\n removeTypeReference(type) {\n (0, utils_1.assert)(this._type && baseType(this._type) === type, () => `Cannot remove reference to type ${type} on ${this} as its type is ${this._type}`);\n this._type = undefined;\n }\n}\nexports.NamedSchemaElementWithType = NamedSchemaElementWithType;\nfunction error(message) {\n return new graphql_1.GraphQLError(message);\n}\nclass BaseExtensionMember extends Element {\n ofExtension() {\n return this._extension;\n }\n setOfExtension(extension) {\n var _a;\n this.checkUpdate();\n if (extension && !((_a = this._parent) === null || _a === void 0 ? void 0 : _a.extensions().has(extension))) {\n throw error(`Cannot set object as part of the provided extension: it is not an extension of parent ${this.parent}`);\n }\n this._extension = extension;\n }\n remove() {\n this.removeInner();\n Schema.prototype['onModification'].call(this.schema());\n this._extension = undefined;\n this._parent = undefined;\n }\n}\nfunction sortedMemberNames(u) {\n return u.members().map(m => m.type.name).sort((n1, n2) => n1.localeCompare(n2));\n}\nclass BuiltIns {\n constructor() {\n this.defaultGraphQLBuiltInTypes = ['Int', 'Float', 'String', 'Boolean', 'ID'];\n this.defaultGraphQLBuiltInDirectives = ['include', 'skip', 'deprecated', 'specifiedBy'];\n }\n addBuiltInTypes(schema) {\n this.defaultGraphQLBuiltInTypes.forEach(t => this.addBuiltInScalar(schema, t));\n }\n addBuiltInDirectives(schema) {\n for (const name of ['include', 'skip']) {\n this.addBuiltInDirective(schema, name)\n .addLocations(graphql_1.DirectiveLocation.FIELD, graphql_1.DirectiveLocation.FRAGMENT_SPREAD, graphql_1.DirectiveLocation.INLINE_FRAGMENT)\n .addArgument('if', new NonNullType(schema.booleanType()));\n }\n this.addBuiltInDirective(schema, 'deprecated')\n .addLocations(graphql_1.DirectiveLocation.FIELD_DEFINITION, graphql_1.DirectiveLocation.ENUM_VALUE, graphql_1.DirectiveLocation.ARGUMENT_DEFINITION, graphql_1.DirectiveLocation.INPUT_FIELD_DEFINITION).addArgument('reason', schema.stringType(), 'No longer supported');\n this.addBuiltInDirective(schema, 'specifiedBy')\n .addLocations(graphql_1.DirectiveLocation.SCALAR)\n .addArgument('url', new NonNullType(schema.stringType()));\n }\n isGraphQLBuiltIn(element) {\n if ((0, introspection_1.isIntrospectionName)(element.name)) {\n return true;\n }\n if (element instanceof FieldDefinition) {\n return false;\n }\n else if (element instanceof DirectiveDefinition) {\n return this.defaultGraphQLBuiltInDirectives.includes(element.name);\n }\n else {\n return this.defaultGraphQLBuiltInTypes.includes(element.name);\n }\n }\n prepareValidation(_) {\n }\n onValidation(schema, unvalidatedDirectives) {\n const errors = [];\n for (const type of schema.builtInTypes(undefined, true)) {\n const maybeRedefined = schema.type(type.name);\n if (!maybeRedefined.isBuiltIn) {\n this.ensureSameTypeStructure(type, maybeRedefined, errors);\n }\n }\n for (const directive of schema.builtInDirectives(true)) {\n if (unvalidatedDirectives && unvalidatedDirectives.includes(directive.name)) {\n continue;\n }\n const maybeRedefined = schema.directive(directive.name);\n if (!maybeRedefined.isBuiltIn) {\n this.ensureSameDirectiveStructure(directive, maybeRedefined, errors);\n }\n }\n return errors;\n }\n validationRules() {\n return specifiedRules_1.specifiedSDLRules;\n }\n maybeUpdateSubgraphDocument(_, document) {\n return document;\n }\n ensureSameDirectiveStructure(builtIn, manuallyDefined, errors) {\n this.ensureSameArguments(builtIn, manuallyDefined, `directive ${builtIn}`, errors);\n if (!builtIn.repeatable && manuallyDefined.repeatable) {\n errors.push(error(`Invalid redefinition of built-in directive ${builtIn}: ${builtIn} should${builtIn.repeatable ? \"\" : \" not\"} be repeatable`));\n }\n if (!manuallyDefined.locations.every(loc => builtIn.locations.includes(loc))) {\n errors.push(error(`Invalid redefinition of built-in directive ${builtIn}: ${builtIn} should have locations ${builtIn.locations.join(', ')}, but found (non-subset) ${manuallyDefined.locations.join(', ')}`));\n }\n }\n ensureSameArguments(builtIn, manuallyDefined, what, errors) {\n const expectedArguments = builtIn.arguments();\n const foundArguments = manuallyDefined.arguments();\n if (expectedArguments.length !== foundArguments.length) {\n errors.push(error(`Invalid redefinition of built-in ${what}: should have ${expectedArguments.length} arguments but ${foundArguments.length} found in redefinition`));\n return;\n }\n for (const expectedArgument of expectedArguments) {\n const foundArgument = manuallyDefined.argument(expectedArgument.name);\n const expectedType = expectedArgument.type;\n let actualType = foundArgument.type;\n if (isNonNullType(actualType) && !isNonNullType(expectedType)) {\n actualType = actualType.ofType;\n }\n if (!(0, types_1.sameType)(expectedType, actualType)) {\n errors.push(error(`Invalid redefinition of built-in ${what}: ${expectedArgument.coordinate} should have type ${expectedArgument.type} but found type ${foundArgument.type}`));\n }\n else if (!isNonNullType(actualType) && !(0, values_1.valueEquals)(expectedArgument.defaultValue, foundArgument.defaultValue)) {\n errors.push(error(`Invalid redefinition of built-in ${what}: ${expectedArgument.coordinate} should have default value ${(0, values_1.valueToString)(expectedArgument.defaultValue)} but found default value ${(0, values_1.valueToString)(foundArgument.defaultValue)}`));\n }\n }\n }\n ensureSameTypeStructure(builtIn, manuallyDefined, errors) {\n if (builtIn.kind !== manuallyDefined.kind) {\n errors.push(error(`Invalid redefinition of built-in type ${builtIn}: ${builtIn} should be a ${builtIn.kind} type but redefined as a ${manuallyDefined.kind}`));\n return;\n }\n switch (builtIn.kind) {\n case 'ScalarType':\n return;\n case 'ObjectType':\n const redefinedObject = manuallyDefined;\n for (const builtInField of builtIn.fields()) {\n const redefinedField = redefinedObject.field(builtInField.name);\n if (!redefinedField) {\n errors.push(error(`Invalid redefinition of built-in type ${builtIn}: redefinition is missing field ${builtInField}`));\n return;\n }\n let rType = redefinedField.type;\n if (!isNonNullType(builtInField.type) && isNonNullType(rType)) {\n rType = rType.ofType;\n }\n if (!(0, types_1.sameType)(builtInField.type, rType)) {\n errors.push(error(`Invalid redefinition of field ${builtInField} of built-in type ${builtIn}: should have type ${builtInField.type} but redefined with type ${redefinedField.type}`));\n return;\n }\n this.ensureSameArguments(builtInField, redefinedField, `field ${builtInField.coordinate}`, errors);\n }\n break;\n case 'UnionType':\n const redefinedUnion = manuallyDefined;\n const builtInMembers = sortedMemberNames(builtIn);\n const redefinedMembers = sortedMemberNames(redefinedUnion);\n if (!(0, utils_1.arrayEquals)(builtInMembers, redefinedMembers)) {\n errors.push(error(`Invalid redefinition of built-in type ${builtIn}: redefinition has members [${redefinedMembers}] but should have members [${builtInMembers}]`));\n }\n break;\n default:\n errors.push(error(`Invalid redefinition of built-in type ${builtIn}: cannot redefine ${builtIn.kind} built-in types`));\n }\n }\n addBuiltInScalar(schema, name) {\n return schema.addType(new ScalarType(name, true));\n }\n addBuiltInObject(schema, name) {\n return schema.addType(new ObjectType(name, true));\n }\n addBuiltInUnion(schema, name) {\n return schema.addType(new UnionType(name, true));\n }\n addBuiltInDirective(schema, name) {\n return schema.addDirectiveDefinition(new DirectiveDefinition(name, true));\n }\n addBuiltInField(parentType, name, type) {\n return parentType.addField(new FieldDefinition(name, true), type);\n }\n getTypedDirective(schema, name) {\n const directive = schema.directive(name);\n if (!directive) {\n throw new Error(`The provided schema has not be built with the ${name} directive built-in`);\n }\n return directive;\n }\n includeDirective(schema) {\n return this.getTypedDirective(schema, 'include');\n }\n skipDirective(schema) {\n return this.getTypedDirective(schema, 'skip');\n }\n deprecatedDirective(schema) {\n return this.getTypedDirective(schema, 'deprecated');\n }\n specifiedByDirective(schema) {\n return this.getTypedDirective(schema, 'specifiedBy');\n }\n}\nexports.BuiltIns = BuiltIns;\nclass CoreFeature {\n constructor(url, nameInSchema, directive, purpose) {\n this.url = url;\n this.nameInSchema = nameInSchema;\n this.directive = directive;\n this.purpose = purpose;\n }\n isFeatureDefinition(element) {\n return element.name.startsWith(this.nameInSchema + '__')\n || (element.kind === 'DirectiveDefinition' && element.name === this.nameInSchema);\n }\n}\nexports.CoreFeature = CoreFeature;\nclass CoreFeatures {\n constructor(coreItself) {\n this.coreItself = coreItself;\n this.byAlias = new Map();\n this.byIdentity = new Map();\n this.add(coreItself);\n const coreDef = coreSpec_1.CORE_VERSIONS.find(coreItself.url.version);\n if (!coreDef) {\n throw error(`Schema uses unknown version ${coreItself.url.version} of the core spec (known versions: ${coreSpec_1.CORE_VERSIONS.versions().join(', ')})`);\n }\n this.coreDefinition = coreDef;\n }\n getByIdentity(identity) {\n return this.byIdentity.get(identity);\n }\n allFeatures() {\n return this.byIdentity.values();\n }\n removeFeature(featureIdentity) {\n const feature = this.byIdentity.get(featureIdentity);\n if (feature) {\n this.byIdentity.delete(featureIdentity);\n this.byAlias.delete(feature.nameInSchema);\n }\n }\n maybeAddFeature(directive) {\n var _a, _b;\n if (((_a = directive.definition) === null || _a === void 0 ? void 0 : _a.name) !== this.coreItself.nameInSchema) {\n return undefined;\n }\n const args = directive.arguments();\n const url = coreSpec_1.FeatureUrl.parse(args.feature);\n const existing = this.byIdentity.get(url.identity);\n if (existing) {\n throw error(`Duplicate inclusion of feature ${url.identity}`);\n }\n const feature = new CoreFeature(url, (_b = args.as) !== null && _b !== void 0 ? _b : url.name, directive, args.for);\n this.add(feature);\n return feature;\n }\n add(feature) {\n this.byAlias.set(feature.nameInSchema, feature);\n this.byIdentity.set(feature.url.identity, feature);\n }\n}\nexports.CoreFeatures = CoreFeatures;\nconst toASTPrintOptions = { ...print_1.defaultPrintOptions, showNonGraphQLBuiltIns: true };\nclass Schema {\n constructor(builtIns = exports.graphQLBuiltIns) {\n this.builtIns = builtIns;\n this._builtInTypes = new utils_1.MapWithCachedArrays();\n this._types = new utils_1.MapWithCachedArrays();\n this._builtInDirectives = new utils_1.MapWithCachedArrays();\n this._directives = new utils_1.MapWithCachedArrays();\n this.isConstructed = false;\n this.isValidated = false;\n this._schemaDefinition = new SchemaDefinition();\n Element.prototype['setParent'].call(this._schemaDefinition, this);\n builtIns.addBuiltInTypes(this);\n builtIns.addBuiltInDirectives(this);\n this.isConstructed = true;\n }\n canModifyBuiltIn() {\n return !this.isConstructed;\n }\n runWithBuiltInModificationAllowed(fct) {\n const wasConstructed = this.isConstructed;\n this.isConstructed = false;\n fct();\n this.isConstructed = wasConstructed;\n }\n renameTypeInternal(oldName, newName) {\n this._types.set(newName, this._types.get(oldName));\n this._types.delete(oldName);\n }\n removeTypeInternal(type) {\n this._types.delete(type.name);\n }\n removeDirectiveInternal(definition) {\n this._directives.delete(definition.name);\n }\n markAsCoreSchema(coreItself) {\n this._coreFeatures = new CoreFeatures(coreItself);\n }\n unmarkAsCoreSchema() {\n this._coreFeatures = undefined;\n }\n onModification() {\n if (this.isConstructed) {\n this.invalidate();\n this.cachedDocument = undefined;\n this.apiSchema = undefined;\n }\n }\n forceSetCachedDocument(document, addNonGraphQLBuiltIns = true) {\n this.cachedDocument = addNonGraphQLBuiltIns\n ? this.builtIns.maybeUpdateSubgraphDocument(this, document)\n : document;\n }\n isCoreSchema() {\n return this.coreFeatures !== undefined;\n }\n get coreFeatures() {\n return this._coreFeatures;\n }\n toAST() {\n if (!this.cachedDocument) {\n this.forceSetCachedDocument((0, graphql_1.parse)((0, print_1.printSchema)(this, toASTPrintOptions), { noLocation: true }), false);\n }\n return this.cachedDocument;\n }\n toAPISchema() {\n if (!this.apiSchema) {\n this.validate();\n const apiSchema = this.clone();\n (0, inaccessibleSpec_1.removeInaccessibleElements)(apiSchema);\n const coreFeatures = apiSchema.coreFeatures;\n if (coreFeatures) {\n for (const coreFeature of coreFeatures.allFeatures()) {\n (0, coreSpec_1.removeFeatureElements)(apiSchema, coreFeature);\n }\n }\n (0, utils_1.assert)(!apiSchema.isCoreSchema(), \"The API schema shouldn't be a core schema\");\n apiSchema.validate();\n this.apiSchema = apiSchema;\n }\n return this.apiSchema;\n }\n toGraphQLJSSchema(isSubgraph = false) {\n if (!isSubgraph) {\n return (0, graphql_1.buildASTSchema)(this.toAST());\n }\n const ast = (0, graphql_1.parse)((0, print_1.printSchema)(this, { ...toASTPrintOptions, mergeTypesAndExtensions: true }), { noLocation: true });\n return (0, graphql_1.buildASTSchema)(ast);\n }\n get schemaDefinition() {\n return this._schemaDefinition;\n }\n types(kind, includeNonGraphQLBuiltIns = false) {\n const allKinds = this._types.values();\n const forKind = (kind ? allKinds.filter(t => t.kind === kind) : allKinds);\n return includeNonGraphQLBuiltIns\n ? this.builtInTypes(kind).filter(t => !exports.graphQLBuiltIns.isGraphQLBuiltIn(t)).concat(forKind)\n : forKind;\n }\n builtInTypes(kind, includeShadowed = false) {\n const allBuiltIns = this._builtInTypes.values();\n const forKind = (kind ? allBuiltIns.filter(t => t.kind === kind) : allBuiltIns);\n return includeShadowed\n ? forKind\n : forKind.filter(t => !this.isShadowedBuiltInType(t));\n }\n isShadowedBuiltInType(type) {\n return type.isBuiltIn && this._types.has(type.name);\n }\n allTypes(kind) {\n return this.builtInTypes(kind).concat(this.types(kind));\n }\n type(name) {\n const type = this._types.get(name);\n return type ? type : this._builtInTypes.get(name);\n }\n typeOfKind(name, kind) {\n const type = this.type(name);\n return type && type.kind === kind ? type : undefined;\n }\n intType() {\n return this._builtInTypes.get('Int');\n }\n floatType() {\n return this._builtInTypes.get('Float');\n }\n stringType() {\n return this._builtInTypes.get('String');\n }\n booleanType() {\n return this._builtInTypes.get('Boolean');\n }\n idType() {\n return this._builtInTypes.get('ID');\n }\n addType(type) {\n const existing = this.type(type.name);\n if (existing && !existing.isBuiltIn) {\n throw error(`Type ${type} already exists in this schema`);\n }\n if (type.isAttached()) {\n if (type.parent == this) {\n return type;\n }\n throw error(`Cannot add type ${type} to this schema; it is already attached to another schema`);\n }\n if (type.isBuiltIn) {\n if (!this.isConstructed) {\n this._builtInTypes.set(type.name, type);\n }\n else {\n throw error(`Cannot add built-in ${type} to this schema (built-ins can only be added at schema construction time)`);\n }\n }\n else {\n this._types.set(type.name, type);\n }\n Element.prototype['setParent'].call(type, this);\n const defaultSchemaRoot = checkDefaultSchemaRoot(type);\n if (defaultSchemaRoot && !this.schemaDefinition.root(defaultSchemaRoot)) {\n this.schemaDefinition.setRoot(defaultSchemaRoot, type);\n }\n this.onModification();\n return type;\n }\n directives(includeNonGraphQLBuiltIns = false) {\n return includeNonGraphQLBuiltIns\n ? this.builtInDirectives().filter(d => !exports.graphQLBuiltIns.isGraphQLBuiltIn(d)).concat(this._directives.values())\n : this._directives.values();\n }\n builtInDirectives(includeShadowed = false) {\n return includeShadowed\n ? this._builtInDirectives.values()\n : this._builtInDirectives.values().filter(d => !this.isShadowedBuiltInDirective(d));\n }\n allDirectives() {\n return this.builtInDirectives().concat(this.directives());\n }\n isShadowedBuiltInDirective(directive) {\n return directive.isBuiltIn && this._directives.has(directive.name);\n }\n directive(name) {\n const directive = this._directives.get(name);\n return directive ? directive : this._builtInDirectives.get(name);\n }\n *allNamedSchemaElement() {\n for (const type of this.types()) {\n yield type;\n yield* type.allChildElements();\n }\n for (const directive of this.directives()) {\n yield directive;\n yield* directive.arguments();\n }\n }\n *allSchemaElement() {\n yield this._schemaDefinition;\n yield* this.allNamedSchemaElement();\n }\n addDirectiveDefinition(directiveOrName) {\n const definition = typeof directiveOrName === 'string' ? new DirectiveDefinition(directiveOrName) : directiveOrName;\n const existing = this.directive(definition.name);\n if (existing && !existing.isBuiltIn) {\n throw error(`Directive ${definition} already exists in this schema`);\n }\n if (definition.isAttached()) {\n if (definition.parent == this) {\n return definition;\n }\n throw error(`Cannot add directive ${definition} to this schema; it is already attached to another schema`);\n }\n if (definition.isBuiltIn) {\n if (!this.isConstructed) {\n this._builtInDirectives.set(definition.name, definition);\n }\n else {\n throw error(`Cannot add built-in ${definition} to this schema (built-ins can only be added at schema construction time)`);\n }\n }\n else {\n this._directives.set(definition.name, definition);\n }\n Element.prototype['setParent'].call(definition, this);\n this.onModification();\n return definition;\n }\n invalidate() {\n this.isValidated = false;\n }\n validate() {\n if (this.isValidated) {\n return;\n }\n this.runWithBuiltInModificationAllowed(() => {\n this.builtIns.prepareValidation(this);\n (0, introspection_1.addIntrospectionFields)(this);\n });\n let errors = (0, validate_1.validateSDL)(this.toAST(), undefined, this.builtIns.validationRules());\n errors = errors.concat((0, validate_2.validateSchema)(this));\n if (errors.length === 0) {\n this.runWithBuiltInModificationAllowed(() => {\n errors = this.builtIns.onValidation(this);\n });\n }\n if (errors.length > 0) {\n throw (0, exports.ErrGraphQLValidationFailed)(errors);\n }\n this.isValidated = true;\n }\n clone(builtIns) {\n const cloned = new Schema(builtIns !== null && builtIns !== void 0 ? builtIns : this.builtIns);\n copy(this, cloned);\n if (this.isValidated) {\n cloned.validate();\n }\n return cloned;\n }\n}\nexports.Schema = Schema;\nclass RootType extends BaseExtensionMember {\n constructor(rootKind, type) {\n super();\n this.rootKind = rootKind;\n this.type = type;\n }\n isDefaultRootName() {\n return defaultRootName(this.rootKind) == this.type.name;\n }\n removeInner() {\n SchemaDefinition.prototype['removeRootType'].call(this._parent, this);\n }\n}\nexports.RootType = RootType;\nclass SchemaDefinition extends SchemaElement {\n constructor() {\n super(...arguments);\n this.kind = 'SchemaDefinition';\n this._roots = new utils_1.MapWithCachedArrays();\n this._extensions = new Set();\n }\n roots() {\n return this._roots.values();\n }\n applyDirective(nameOrDefOrDirective, args) {\n var _a;\n const applied = super.applyDirective(nameOrDefOrDirective, args);\n const schema = this.schema();\n const coreFeatures = schema.coreFeatures;\n if ((0, coreSpec_1.isCoreSpecDirectiveApplication)(applied)) {\n if (coreFeatures) {\n throw error(`Invalid duplicate application of the @core feature`);\n }\n const schemaDirective = applied;\n const args = schemaDirective.arguments();\n const url = coreSpec_1.FeatureUrl.parse(args.feature);\n const core = new CoreFeature(url, (_a = args.as) !== null && _a !== void 0 ? _a : 'core', schemaDirective, args.for);\n Schema.prototype['markAsCoreSchema'].call(schema, core);\n }\n else if (coreFeatures) {\n CoreFeatures.prototype['maybeAddFeature'].call(coreFeatures, applied);\n }\n this.onModification();\n return applied;\n }\n root(rootKind) {\n return this._roots.get(rootKind);\n }\n rootType(rootKind) {\n var _a;\n return (_a = this.root(rootKind)) === null || _a === void 0 ? void 0 : _a.type;\n }\n setRoot(rootKind, nameOrType) {\n let toSet;\n if (typeof nameOrType === 'string') {\n this.checkUpdate();\n const obj = this.schema().type(nameOrType);\n if (!obj) {\n throw new graphql_1.GraphQLError(`Cannot set schema ${rootKind} root to unknown type ${nameOrType}`);\n }\n else if (obj.kind != 'ObjectType') {\n throw new graphql_1.GraphQLError(`${defaultRootName(rootKind)} root type must be an Object type${rootKind === 'query' ? '' : ' if provided'}, it cannot be set to ${nameOrType} (an ${obj.kind}).`);\n }\n toSet = new RootType(rootKind, obj);\n }\n else {\n this.checkUpdate(nameOrType);\n toSet = new RootType(rootKind, nameOrType);\n }\n const prevRoot = this._roots.get(rootKind);\n if (prevRoot) {\n removeReferenceToType(this, prevRoot.type);\n }\n this._roots.set(rootKind, toSet);\n Element.prototype['setParent'].call(toSet, this);\n addReferenceToType(this, toSet.type);\n this.onModification();\n return toSet;\n }\n extensions() {\n return this._extensions;\n }\n newExtension() {\n return this.addExtension(new Extension());\n }\n addExtension(extension) {\n this.checkUpdate();\n if (this._extensions.has(extension)) {\n return extension;\n }\n if (extension.extendedElement) {\n throw error(`Cannot add extension to this schema: extension is already added to another schema`);\n }\n this._extensions.add(extension);\n Extension.prototype['setExtendedElement'].call(extension, this);\n this.onModification();\n return extension;\n }\n removeRootType(rootType) {\n this._roots.delete(rootType.rootKind);\n removeReferenceToType(this, rootType.type);\n }\n removeTypeReference(toRemove) {\n for (const rootType of this.roots()) {\n if (rootType.type == toRemove) {\n this._roots.delete(rootType.rootKind);\n }\n }\n }\n toString() {\n return `schema[${this._roots.keys().join(', ')}]`;\n }\n}\nexports.SchemaDefinition = SchemaDefinition;\nclass ScalarType extends BaseNamedType {\n constructor() {\n super(...arguments);\n this.kind = 'ScalarType';\n }\n removeTypeReference(type) {\n (0, utils_1.assert)(false, `Scalar type ${this} can't reference other types; shouldn't be asked to remove reference to ${type}`);\n }\n hasNonExtensionInnerElements() {\n return false;\n }\n removeInnerElements() {\n }\n removeReferenceRecursive(ref) {\n ref.remove();\n }\n}\nexports.ScalarType = ScalarType;\nclass InterfaceImplementation extends BaseExtensionMember {\n constructor(itf) {\n super();\n this.interface = itf;\n }\n removeInner() {\n FieldBasedType.prototype['removeInterfaceImplementation'].call(this._parent, this.interface);\n }\n toString() {\n return `'implements ${this.interface}'`;\n }\n}\nexports.InterfaceImplementation = InterfaceImplementation;\nclass FieldBasedType extends BaseNamedType {\n constructor() {\n super(...arguments);\n this._interfaceImplementations = new utils_1.MapWithCachedArrays();\n this._fields = new utils_1.MapWithCachedArrays();\n }\n onAttached() {\n Schema.prototype['runWithBuiltInModificationAllowed'].call(this.schema(), () => {\n this.addField(new FieldDefinition(exports.typenameFieldName, true), new NonNullType(this.schema().stringType()));\n });\n }\n removeFieldInternal(field) {\n this._fields.delete(field.name);\n this._cachedNonBuiltInFields = undefined;\n }\n interfaceImplementations() {\n return this._interfaceImplementations.values();\n }\n interfaceImplementation(type) {\n return this._interfaceImplementations.get(typeof type === 'string' ? type : type.name);\n }\n interfaces() {\n return this.interfaceImplementations().map(impl => impl.interface);\n }\n implementsInterface(type) {\n return this._interfaceImplementations.has(typeof type === 'string' ? type : type.name);\n }\n addImplementedInterface(nameOrItfOrItfImpl) {\n let toAdd;\n if (nameOrItfOrItfImpl instanceof InterfaceImplementation) {\n this.checkUpdate(nameOrItfOrItfImpl);\n toAdd = nameOrItfOrItfImpl;\n }\n else {\n let itf;\n if (typeof nameOrItfOrItfImpl === 'string') {\n this.checkUpdate();\n const maybeItf = this.schema().type(nameOrItfOrItfImpl);\n if (!maybeItf) {\n throw new graphql_1.GraphQLError(`Cannot implement unknown type ${nameOrItfOrItfImpl}`);\n }\n else if (maybeItf.kind != 'InterfaceType') {\n throw new graphql_1.GraphQLError(`Cannot implement non-interface type ${nameOrItfOrItfImpl} (of type ${maybeItf.kind})`);\n }\n itf = maybeItf;\n }\n else {\n itf = nameOrItfOrItfImpl;\n }\n toAdd = new InterfaceImplementation(itf);\n }\n const existing = this._interfaceImplementations.get(toAdd.interface.name);\n if (!existing) {\n this._interfaceImplementations.set(toAdd.interface.name, toAdd);\n addReferenceToType(this, toAdd.interface);\n Element.prototype['setParent'].call(toAdd, this);\n this.onModification();\n return toAdd;\n }\n else {\n return existing;\n }\n }\n fields(includeNonGraphQLBuiltIns = false) {\n if (includeNonGraphQLBuiltIns) {\n return this.allFields().filter(f => !exports.graphQLBuiltIns.isGraphQLBuiltIn(f));\n }\n if (!this._cachedNonBuiltInFields) {\n this._cachedNonBuiltInFields = this._fields.values().filter(f => !f.isBuiltIn);\n }\n return this._cachedNonBuiltInFields;\n }\n hasFields(includeNonGraphQLBuiltIns = false) {\n return this.fields(includeNonGraphQLBuiltIns).length > 0;\n }\n builtInFields() {\n return this.allFields().filter(f => f.isBuiltIn);\n }\n allFields() {\n return this._fields.values();\n }\n field(name) {\n return this._fields.get(name);\n }\n typenameField() {\n return this.field(exports.typenameFieldName);\n }\n addField(nameOrField, type) {\n let toAdd;\n if (typeof nameOrField === 'string') {\n this.checkUpdate();\n toAdd = new FieldDefinition(nameOrField);\n }\n else {\n this.checkUpdate(nameOrField);\n toAdd = nameOrField;\n }\n if (this.field(toAdd.name)) {\n throw error(`Field ${toAdd.name} already exists on ${this}`);\n }\n if (type && !isOutputType(type)) {\n throw error(`Invalid input type ${type} for field ${toAdd.name}: object and interface field types should be output types.`);\n }\n this._fields.set(toAdd.name, toAdd);\n this._cachedNonBuiltInFields = undefined;\n Element.prototype['setParent'].call(toAdd, this);\n if (type) {\n toAdd.type = type;\n }\n this.onModification();\n return toAdd;\n }\n *allChildElements() {\n for (const field of this._fields.values()) {\n yield field;\n yield* field.arguments();\n }\n }\n removeInterfaceImplementation(itf) {\n this._interfaceImplementations.delete(itf.name);\n removeReferenceToType(this, itf);\n }\n removeTypeReference(type) {\n this._interfaceImplementations.delete(type.name);\n }\n removeInnerElements() {\n for (const interfaceImpl of this.interfaceImplementations()) {\n interfaceImpl.remove();\n }\n for (const field of this.allFields()) {\n if (field.isBuiltIn) {\n FieldDefinition.prototype['removeParent'].call(field);\n }\n else {\n field.remove();\n }\n }\n }\n hasNonExtensionInnerElements() {\n return this.interfaceImplementations().some(itf => itf.ofExtension() === undefined)\n || this.fields().some(f => f.ofExtension() === undefined);\n }\n}\nclass ObjectType extends FieldBasedType {\n constructor() {\n super(...arguments);\n this.kind = 'ObjectType';\n }\n isRootType() {\n const schema = this.schema();\n return schema.schemaDefinition.roots().some(rt => rt.type == this);\n }\n isQueryRootType() {\n var _a;\n const schema = this.schema();\n return ((_a = schema.schemaDefinition.root('query')) === null || _a === void 0 ? void 0 : _a.type) === this;\n }\n removeReferenceRecursive(ref) {\n switch (ref.kind) {\n case 'FieldDefinition':\n ref.removeRecursive();\n break;\n case 'UnionType':\n if (ref.membersCount() === 0) {\n ref.removeRecursive();\n }\n break;\n }\n }\n}\nexports.ObjectType = ObjectType;\nclass InterfaceType extends FieldBasedType {\n constructor() {\n super(...arguments);\n this.kind = 'InterfaceType';\n }\n allImplementations() {\n return (0, utils_1.setValues)(this._referencers).filter(ref => ref.kind === 'ObjectType' || ref.kind === 'InterfaceType');\n }\n possibleRuntimeTypes() {\n return this.allImplementations().filter(impl => impl.kind === 'ObjectType');\n }\n isPossibleRuntimeType(type) {\n const typeName = typeof type === 'string' ? type : type.name;\n return this.possibleRuntimeTypes().some(t => t.name == typeName);\n }\n removeReferenceRecursive(ref) {\n if (ref.kind === 'FieldDefinition') {\n ref.removeRecursive();\n }\n }\n}\nexports.InterfaceType = InterfaceType;\nclass UnionMember extends BaseExtensionMember {\n constructor(type) {\n super();\n this.type = type;\n }\n removeInner() {\n UnionType.prototype['removeMember'].call(this._parent, this.type);\n }\n}\nexports.UnionMember = UnionMember;\nclass UnionType extends BaseNamedType {\n constructor() {\n super(...arguments);\n this.kind = 'UnionType';\n this._members = new utils_1.MapWithCachedArrays();\n }\n onAttached() {\n Schema.prototype['runWithBuiltInModificationAllowed'].call(this.schema(), () => {\n this._typenameField = new FieldDefinition(exports.typenameFieldName, true);\n Element.prototype['setParent'].call(this._typenameField, this);\n this._typenameField.type = new NonNullType(this.schema().stringType());\n });\n }\n types() {\n return this.members().map(m => m.type);\n }\n members() {\n return this._members.values();\n }\n membersCount() {\n return this._members.size;\n }\n hasTypeMember(type) {\n return this._members.has(typeof type === 'string' ? type : type.name);\n }\n addType(nameOrTypeOrMember) {\n let toAdd;\n if (nameOrTypeOrMember instanceof UnionMember) {\n this.checkUpdate(nameOrTypeOrMember);\n toAdd = nameOrTypeOrMember;\n }\n else {\n let obj;\n if (typeof nameOrTypeOrMember === 'string') {\n this.checkUpdate();\n const maybeObj = this.schema().type(nameOrTypeOrMember);\n if (!maybeObj) {\n throw new graphql_1.GraphQLError(`Cannot add unknown type ${nameOrTypeOrMember} as member of union type ${this.name}`);\n }\n else if (maybeObj.kind != 'ObjectType') {\n throw new graphql_1.GraphQLError(`Cannot add non-object type ${nameOrTypeOrMember} (of type ${maybeObj.kind}) as member of union type ${this.name}`);\n }\n obj = maybeObj;\n }\n else {\n this.checkUpdate(nameOrTypeOrMember);\n obj = nameOrTypeOrMember;\n }\n toAdd = new UnionMember(obj);\n }\n const existing = this._members.get(toAdd.type.name);\n if (!existing) {\n this._members.set(toAdd.type.name, toAdd);\n Element.prototype['setParent'].call(toAdd, this);\n addReferenceToType(this, toAdd.type);\n this.onModification();\n return toAdd;\n }\n else {\n return existing;\n }\n }\n clearTypes() {\n for (const type of this.types()) {\n this.removeMember(type);\n }\n this.onModification();\n }\n field(name) {\n if (name === exports.typenameFieldName && this._typenameField) {\n return this._typenameField;\n }\n return undefined;\n }\n typenameField() {\n return this._typenameField;\n }\n removeMember(type) {\n this._members.delete(type.name);\n removeReferenceToType(this, type);\n }\n removeTypeReference(type) {\n this._members.delete(type.name);\n }\n removeInnerElements() {\n for (const member of this.members()) {\n member.remove();\n }\n }\n hasNonExtensionInnerElements() {\n return this.members().some(m => m.ofExtension() === undefined);\n }\n removeReferenceRecursive(ref) {\n ref.removeRecursive();\n }\n}\nexports.UnionType = UnionType;\nclass EnumType extends BaseNamedType {\n constructor() {\n super(...arguments);\n this.kind = 'EnumType';\n this._values = [];\n }\n get values() {\n return this._values;\n }\n value(name) {\n return this._values.find(v => v.name == name);\n }\n addValue(nameOrValue) {\n let toAdd;\n if (typeof nameOrValue === 'string') {\n this.checkUpdate();\n toAdd = new EnumValue(nameOrValue);\n }\n else {\n this.checkUpdate(nameOrValue);\n toAdd = nameOrValue;\n }\n const existing = this.value(toAdd.name);\n if (!existing) {\n this._values.push(toAdd);\n Element.prototype['setParent'].call(toAdd, this);\n this.onModification();\n return toAdd;\n }\n else {\n return existing;\n }\n }\n removeTypeReference(type) {\n (0, utils_1.assert)(false, `Eum type ${this} can't reference other types; shouldn't be asked to remove reference to ${type}`);\n }\n removeValueInternal(value) {\n const index = this._values.indexOf(value);\n if (index >= 0) {\n this._values.splice(index, 1);\n }\n }\n removeInnerElements() {\n this._values.splice(0, this._values.length);\n }\n hasNonExtensionInnerElements() {\n return this._values.some(v => v.ofExtension() === undefined);\n }\n removeReferenceRecursive(ref) {\n ref.removeRecursive();\n }\n}\nexports.EnumType = EnumType;\nclass InputObjectType extends BaseNamedType {\n constructor() {\n super(...arguments);\n this.kind = 'InputObjectType';\n this._fields = new Map();\n }\n fields() {\n if (!this._cachedFieldsArray) {\n this._cachedFieldsArray = (0, utils_1.mapValues)(this._fields);\n }\n return this._cachedFieldsArray;\n }\n field(name) {\n return this._fields.get(name);\n }\n addField(nameOrField, type) {\n const toAdd = typeof nameOrField === 'string' ? new InputFieldDefinition(nameOrField) : nameOrField;\n this.checkUpdate(toAdd);\n if (this.field(toAdd.name)) {\n throw error(`Field ${toAdd.name} already exists on ${this}`);\n }\n if (type && !isInputType(type)) {\n throw error(`Invalid output type ${type} for field ${toAdd.name}: input field types should be input types.`);\n }\n this._fields.set(toAdd.name, toAdd);\n this._cachedFieldsArray = undefined;\n Element.prototype['setParent'].call(toAdd, this);\n if (typeof nameOrField === 'string' && type) {\n toAdd.type = type;\n }\n this.onModification();\n return toAdd;\n }\n hasFields() {\n return this._fields.size > 0;\n }\n *allChildElements() {\n yield* this._fields.values();\n }\n removeTypeReference(type) {\n (0, utils_1.assert)(false, `Input Object type ${this} can't reference other types; shouldn't be asked to remove reference to ${type}`);\n }\n removeInnerElements() {\n for (const field of this.fields()) {\n field.remove();\n }\n }\n removeFieldInternal(field) {\n this._fields.delete(field.name);\n this._cachedFieldsArray = undefined;\n }\n hasNonExtensionInnerElements() {\n return this.fields().some(f => f.ofExtension() === undefined);\n }\n removeReferenceRecursive(ref) {\n if (ref.kind === 'ArgumentDefinition') {\n ref.parent().removeRecursive();\n }\n else {\n ref.removeRecursive();\n }\n }\n}\nexports.InputObjectType = InputObjectType;\nclass BaseWrapperType {\n constructor(_type) {\n this._type = _type;\n (0, utils_1.assert)(this._type, 'Cannot wrap an undefined/null type');\n }\n schema() {\n return this.baseType().schema();\n }\n isAttached() {\n return this.baseType().isAttached();\n }\n get ofType() {\n return this._type;\n }\n baseType() {\n return baseType(this._type);\n }\n}\nclass ListType extends BaseWrapperType {\n constructor(type) {\n super(type);\n this.kind = 'ListType';\n }\n toString() {\n return `[${this.ofType}]`;\n }\n}\nexports.ListType = ListType;\nclass NonNullType extends BaseWrapperType {\n constructor(type) {\n super(type);\n this.kind = 'NonNullType';\n }\n toString() {\n return `${this.ofType}!`;\n }\n}\nexports.NonNullType = NonNullType;\nclass FieldDefinition extends NamedSchemaElementWithType {\n constructor(name, isBuiltIn = false) {\n super(name);\n this.isBuiltIn = isBuiltIn;\n this.kind = 'FieldDefinition';\n this._args = new utils_1.MapWithCachedArrays();\n }\n isElementBuiltIn() {\n return this.isBuiltIn;\n }\n get coordinate() {\n const parent = this._parent;\n return `${parent == undefined ? '' : parent.coordinate}.${this.name}`;\n }\n hasArguments() {\n return this._args.size > 0;\n }\n arguments() {\n return this._args.values();\n }\n argument(name) {\n return this._args.get(name);\n }\n addArgument(nameOrArg, type, defaultValue) {\n let toAdd;\n if (typeof nameOrArg === 'string') {\n this.checkUpdate();\n toAdd = new ArgumentDefinition(nameOrArg);\n toAdd.defaultValue = defaultValue;\n }\n else {\n this.checkUpdate(nameOrArg);\n toAdd = nameOrArg;\n }\n const existing = this.argument(toAdd.name);\n if (existing) {\n if (type && existing.type && !(0, types_1.sameType)(type, existing.type)) {\n throw error(`Argument ${toAdd.name} already exists on field ${this.name} with a different type (${existing.type})`);\n }\n if (defaultValue && (!existing.defaultValue || !(0, values_1.valueEquals)(defaultValue, existing.defaultValue))) {\n throw error(`Argument ${toAdd.name} already exists on field ${this.name} with a different default value (${(0, values_1.valueToString)(existing.defaultValue)})`);\n }\n return existing;\n }\n if (type && !isInputType(type)) {\n throw error(`Invalid output type ${type} for argument ${toAdd.name} of ${this}: arguments should be input types.`);\n }\n this._args.set(toAdd.name, toAdd);\n Element.prototype['setParent'].call(toAdd, this);\n if (typeof nameOrArg === 'string') {\n toAdd.type = type;\n }\n this.onModification();\n return toAdd;\n }\n ofExtension() {\n return this._extension;\n }\n setOfExtension(extension) {\n var _a;\n this.checkUpdate();\n if (extension && !((_a = this._parent) === null || _a === void 0 ? void 0 : _a.extensions().has(extension))) {\n throw error(`Cannot mark field ${this.name} as part of the provided extension: it is not an extension of field parent type ${this.parent}`);\n }\n this._extension = extension;\n this.onModification();\n }\n isIntrospectionField() {\n return (0, introspection_1.isIntrospectionName)(this.name);\n }\n isSchemaIntrospectionField() {\n return introspection_1.introspectionFieldNames.includes(this.name);\n }\n removeArgumentInternal(name) {\n this._args.delete(name);\n }\n removeParent() {\n this._parent = undefined;\n }\n isDeprecated() {\n return this.hasAppliedDirective('deprecated');\n }\n remove() {\n if (!this._parent) {\n return [];\n }\n this.onModification();\n this.removeAppliedDirectives();\n this.type = undefined;\n this._extension = undefined;\n for (const arg of this.arguments()) {\n arg.remove();\n }\n FieldBasedType.prototype['removeFieldInternal'].call(this._parent, this);\n this._parent = undefined;\n return [];\n }\n removeRecursive() {\n const parent = this._parent;\n this.remove();\n if (parent && !isUnionType(parent) && parent.fields().length === 0) {\n parent.removeRecursive();\n }\n }\n toString() {\n const args = this._args.size == 0\n ? \"\"\n : '(' + this.arguments().map(arg => arg.toString()).join(', ') + ')';\n return `${this.name}${args}: ${this.type}`;\n }\n}\nexports.FieldDefinition = FieldDefinition;\nclass InputFieldDefinition extends NamedSchemaElementWithType {\n constructor() {\n super(...arguments);\n this.kind = 'InputFieldDefinition';\n }\n get coordinate() {\n const parent = this._parent;\n return `${parent == undefined ? '' : parent.coordinate}.${this.name}`;\n }\n isRequired() {\n return isNonNullType(this.type) && this.defaultValue === undefined;\n }\n ofExtension() {\n return this._extension;\n }\n setOfExtension(extension) {\n var _a;\n this.checkUpdate();\n if (extension && !((_a = this._parent) === null || _a === void 0 ? void 0 : _a.extensions().has(extension))) {\n throw error(`Cannot mark field ${this.name} as part of the provided extension: it is not an extension of field parent type ${this.parent}`);\n }\n this._extension = extension;\n this.onModification();\n }\n isDeprecated() {\n return this.hasAppliedDirective('deprecated');\n }\n remove() {\n if (!this._parent) {\n return [];\n }\n this.onModification();\n InputObjectType.prototype['removeFieldInternal'].call(this._parent, this);\n this._parent = undefined;\n this.type = undefined;\n return [];\n }\n removeRecursive() {\n const parent = this._parent;\n this.remove();\n if (parent && parent.fields().length === 0) {\n parent.removeRecursive();\n }\n }\n toString() {\n const defaultStr = this.defaultValue === undefined ? \"\" : ` = ${(0, values_1.valueToString)(this.defaultValue, this.type)}`;\n return `${this.name}: ${this.type}${defaultStr}`;\n }\n}\nexports.InputFieldDefinition = InputFieldDefinition;\nclass ArgumentDefinition extends NamedSchemaElementWithType {\n constructor(name) {\n super(name);\n this.kind = 'ArgumentDefinition';\n }\n get coordinate() {\n const parent = this._parent;\n return `${parent == undefined ? '' : parent.coordinate}(${this.name}:)`;\n }\n isRequired() {\n return isNonNullType(this.type) && this.defaultValue === undefined;\n }\n isDeprecated() {\n return this.hasAppliedDirective('deprecated');\n }\n remove() {\n if (!this._parent) {\n return [];\n }\n this.onModification();\n if (this._parent instanceof FieldDefinition) {\n FieldDefinition.prototype['removeArgumentInternal'].call(this._parent, this.name);\n }\n else {\n DirectiveDefinition.prototype['removeArgumentInternal'].call(this._parent, this.name);\n }\n this._parent = undefined;\n this.type = undefined;\n this.defaultValue = undefined;\n return [];\n }\n toString() {\n const defaultStr = this.defaultValue === undefined ? \"\" : ` = ${(0, values_1.valueToString)(this.defaultValue, this.type)}`;\n return `${this.name}: ${this.type}${defaultStr}`;\n }\n}\nexports.ArgumentDefinition = ArgumentDefinition;\nclass EnumValue extends NamedSchemaElement {\n constructor() {\n super(...arguments);\n this.kind = 'EnumValue';\n }\n get coordinate() {\n const parent = this._parent;\n return `${parent == undefined ? '' : parent.coordinate}.${this.name}`;\n }\n ofExtension() {\n return this._extension;\n }\n setOfExtension(extension) {\n var _a;\n this.checkUpdate();\n if (extension && !((_a = this._parent) === null || _a === void 0 ? void 0 : _a.extensions().has(extension))) {\n throw error(`Cannot mark field ${this.name} as part of the provided extension: it is not an extension of field parent type ${this.parent}`);\n }\n this._extension = extension;\n this.onModification();\n }\n isDeprecated() {\n return this.hasAppliedDirective('deprecated');\n }\n remove() {\n if (!this._parent) {\n return [];\n }\n this.onModification();\n EnumType.prototype['removeValueInternal'].call(this._parent, this);\n this._parent = undefined;\n return [];\n }\n removeTypeReference(type) {\n (0, utils_1.assert)(false, `Enum value ${this} can't reference other types; shouldn't be asked to remove reference to ${type}`);\n }\n toString() {\n return `${this.name}`;\n }\n}\nexports.EnumValue = EnumValue;\nclass DirectiveDefinition extends NamedSchemaElement {\n constructor(name, isBuiltIn = false) {\n super(name);\n this.isBuiltIn = isBuiltIn;\n this.kind = 'DirectiveDefinition';\n this._args = new utils_1.MapWithCachedArrays();\n this.repeatable = false;\n this._locations = [];\n this._referencers = new Set();\n }\n get coordinate() {\n return `@${this.name}`;\n }\n arguments() {\n return this._args.values();\n }\n argument(name) {\n return this._args.get(name);\n }\n addArgument(nameOrArg, type, defaultValue) {\n let toAdd;\n if (typeof nameOrArg === 'string') {\n this.checkUpdate();\n toAdd = new ArgumentDefinition(nameOrArg);\n toAdd.defaultValue = defaultValue;\n }\n else {\n this.checkUpdate(nameOrArg);\n toAdd = nameOrArg;\n }\n if (this.argument(toAdd.name)) {\n throw error(`Argument ${toAdd.name} already exists on field ${this.name}`);\n }\n this._args.set(toAdd.name, toAdd);\n Element.prototype['setParent'].call(toAdd, this);\n if (typeof nameOrArg === 'string') {\n toAdd.type = type;\n }\n this.onModification();\n return toAdd;\n }\n removeArgumentInternal(name) {\n this._args.delete(name);\n }\n get locations() {\n return this._locations;\n }\n addLocations(...locations) {\n let modified = false;\n for (const location of locations) {\n if (!this._locations.includes(location)) {\n this._locations.push(location);\n modified = true;\n }\n }\n if (modified) {\n this.onModification();\n }\n return this;\n }\n addAllLocations() {\n return this.addLocations(...Object.values(graphql_1.DirectiveLocation));\n }\n addAllTypeLocations() {\n return this.addLocations(graphql_1.DirectiveLocation.SCALAR, graphql_1.DirectiveLocation.OBJECT, graphql_1.DirectiveLocation.INTERFACE, graphql_1.DirectiveLocation.UNION, graphql_1.DirectiveLocation.ENUM, graphql_1.DirectiveLocation.INPUT_OBJECT);\n }\n removeLocations(...locations) {\n let modified = false;\n for (const location of locations) {\n const index = this._locations.indexOf(location);\n if (index >= 0) {\n this._locations.splice(index, 1);\n modified = true;\n }\n }\n if (modified) {\n this.onModification();\n }\n return this;\n }\n applications() {\n return (0, utils_1.setValues)(this._referencers);\n }\n addReferencer(referencer) {\n (0, utils_1.assert)(referencer, 'Referencer should exists');\n this._referencers.add(referencer);\n }\n removeReferencer(referencer) {\n this._referencers.delete(referencer);\n }\n removeTypeReference(type) {\n (0, utils_1.assert)(false, `Directive definition ${this} can't reference other types (it's arguments can); shouldn't be asked to remove reference to ${type}`);\n }\n remove() {\n if (!this._parent) {\n return [];\n }\n this.onModification();\n Schema.prototype['removeDirectiveInternal'].call(this._parent, this);\n this._parent = undefined;\n (0, utils_1.assert)(this._appliedDirectives.length === 0, \"Directive definition should not have directive applied to it\");\n for (const arg of this.arguments()) {\n arg.remove();\n }\n const toReturn = (0, utils_1.setValues)(this._referencers);\n this._referencers.clear();\n return toReturn;\n }\n removeRecursive() {\n this.remove().forEach(ref => ref.remove());\n }\n toString() {\n return `@${this.name}`;\n }\n}\nexports.DirectiveDefinition = DirectiveDefinition;\nclass Directive extends Element {\n constructor(name, _args) {\n super();\n this.name = name;\n this._args = _args;\n }\n schema() {\n return this.parent.schema();\n }\n get definition() {\n const doc = this.schema();\n return doc.directive(this.name);\n }\n arguments(includeDefaultValues = false) {\n if (!includeDefaultValues) {\n return this._args;\n }\n const definition = this.definition;\n if (!definition) {\n throw error(`Cannot include default values for arguments: cannot find directive definition for ${this.name}`);\n }\n const updated = Object.create(null);\n for (const argDef of definition.arguments()) {\n updated[argDef.name] = (0, values_1.withDefaultValues)(this._args[argDef.name], argDef);\n }\n return updated;\n }\n onModification() {\n if (this.isAttachedToSchemaElement()) {\n Schema.prototype['onModification'].call(this.schema());\n }\n }\n isAttachedToSchemaElement() {\n return this.isAttached();\n }\n setArguments(args) {\n this._args = args;\n this.onModification();\n }\n argumentType(name) {\n var _a, _b;\n return (_b = (_a = this.definition) === null || _a === void 0 ? void 0 : _a.argument(name)) === null || _b === void 0 ? void 0 : _b.type;\n }\n matchArguments(expectedArgs) {\n const entries = Object.entries(this._args);\n if (entries.length !== Object.keys(expectedArgs).length) {\n return false;\n }\n for (const [key, val] of entries) {\n if (!(key in expectedArgs)) {\n return false;\n }\n const expectedVal = expectedArgs[key];\n if (!(0, values_1.valueEquals)(expectedVal, val)) {\n return false;\n }\n }\n return true;\n }\n ofExtension() {\n return this._extension;\n }\n setOfExtension(extension) {\n this.checkUpdate();\n if (extension) {\n const parent = this.parent;\n if (parent instanceof SchemaDefinition || parent instanceof BaseNamedType) {\n if (!parent.extensions().has(extension)) {\n throw error(`Cannot mark directive ${this.name} as part of the provided extension: it is not an extension of parent ${parent}`);\n }\n }\n else {\n throw error(`Can only mark directive parts of extensions when directly apply to type or schema definition.`);\n }\n }\n this._extension = extension;\n this.onModification();\n }\n argumentsToAST() {\n const entries = Object.entries(this._args);\n if (entries.length === 0) {\n return undefined;\n }\n const definition = this.definition;\n (0, utils_1.assert)(definition, () => `Cannot convert arguments of detached directive ${this}`);\n return entries.map(([n, v]) => {\n return {\n kind: graphql_1.Kind.ARGUMENT,\n name: { kind: graphql_1.Kind.NAME, value: n },\n value: (0, values_1.valueToAST)(v, definition.argument(n).type),\n };\n });\n }\n remove() {\n if (!this._parent) {\n return false;\n }\n this.onModification();\n const coreFeatures = this.schema().coreFeatures;\n if (coreFeatures && this.name === coreFeatures.coreItself.nameInSchema) {\n const url = coreSpec_1.FeatureUrl.parse(this._args['feature']);\n if (url.identity === coreFeatures.coreItself.url.identity) {\n Schema.prototype['unmarkAsCoreSchema'].call(this.schema());\n for (const d of this.schema().schemaDefinition.appliedDirectivesOf(coreFeatures.coreItself.nameInSchema)) {\n d.removeInternal();\n }\n return true;\n }\n else {\n CoreFeatures.prototype['removeFeature'].call(coreFeatures, url.identity);\n }\n }\n return this.removeInternal();\n }\n removeInternal() {\n if (!this._parent) {\n return false;\n }\n const definition = this.definition;\n if (definition && this.isAttachedToSchemaElement()) {\n DirectiveDefinition.prototype['removeReferencer'].call(definition, this);\n }\n const parentDirectives = this._parent.appliedDirectives;\n const index = parentDirectives.indexOf(this);\n (0, utils_1.assert)(index >= 0, () => `Directive ${this} lists ${this._parent} as parent, but that parent doesn't list it as applied directive`);\n parentDirectives.splice(index, 1);\n this._parent = undefined;\n this._extension = undefined;\n return true;\n }\n toString() {\n const entries = Object.entries(this._args).filter(([_, v]) => v !== undefined);\n const args = entries.length == 0 ? '' : '(' + entries.map(([n, v]) => `${n}: ${(0, values_1.valueToString)(v, this.argumentType(n))}`).join(', ') + ')';\n return `@${this.name}${args}`;\n }\n}\nexports.Directive = Directive;\nclass Variable {\n constructor(name) {\n this.name = name;\n }\n toVariableNode() {\n return {\n kind: graphql_1.Kind.VARIABLE,\n name: { kind: graphql_1.Kind.NAME, value: this.name },\n };\n }\n toString() {\n return '$' + this.name;\n }\n}\nexports.Variable = Variable;\nfunction mergeVariables(v1s, v2s) {\n if (v1s.length == 0) {\n return v2s;\n }\n if (v2s.length == 0) {\n return v1s;\n }\n const res = v1s.concat();\n for (const v of v2s) {\n if (!containsVariable(v1s, v)) {\n res.push(v);\n }\n }\n return res;\n}\nexports.mergeVariables = mergeVariables;\nfunction containsVariable(variables, toCheck) {\n return variables.some(v => v.name == toCheck.name);\n}\nexports.containsVariable = containsVariable;\nfunction isVariable(v) {\n return v instanceof Variable;\n}\nexports.isVariable = isVariable;\nfunction variablesInArguments(args) {\n let variables = [];\n for (const value of Object.values(args)) {\n variables = mergeVariables(variables, (0, values_1.variablesInValue)(value));\n }\n return variables;\n}\nexports.variablesInArguments = variablesInArguments;\nclass VariableDefinition extends DirectiveTargetElement {\n constructor(schema, variable, type, defaultValue) {\n super(schema);\n this.variable = variable;\n this.type = type;\n this.defaultValue = defaultValue;\n }\n toVariableDefinitionNode() {\n const ast = (0, values_1.valueToAST)(this.defaultValue, this.type);\n return {\n kind: graphql_1.Kind.VARIABLE_DEFINITION,\n variable: this.variable.toVariableNode(),\n type: typeToAST(this.type),\n defaultValue: (ast !== undefined) ? (0, values_1.valueNodeToConstValueNode)(ast) : undefined,\n directives: this.appliedDirectivesToDirectiveNodes(),\n };\n }\n toString() {\n let base = this.variable + ': ' + this.type;\n if (this.defaultValue) {\n base = base + ' = ' + (0, values_1.valueToString)(this.defaultValue, this.type);\n }\n return base + this.appliedDirectivesToString();\n }\n}\nexports.VariableDefinition = VariableDefinition;\nclass VariableDefinitions {\n constructor() {\n this._definitions = new utils_1.MapWithCachedArrays();\n }\n add(definition) {\n if (this._definitions.has(definition.variable.name)) {\n return false;\n }\n this._definitions.set(definition.variable.name, definition);\n return true;\n }\n addAll(definitions) {\n for (const definition of definitions._definitions.values()) {\n this.add(definition);\n }\n }\n definition(variable) {\n const varName = typeof variable === 'string' ? variable : variable.name;\n return this._definitions.get(varName);\n }\n isEmpty() {\n return this._definitions.size === 0;\n }\n definitions() {\n return this._definitions.values();\n }\n filter(variables) {\n if (variables.length === 0) {\n return new VariableDefinitions();\n }\n const newDefs = new VariableDefinitions();\n for (const variable of variables) {\n const def = this.definition(variable);\n if (!def) {\n throw new Error(`Cannot find variable ${variable} in definitions ${this}`);\n }\n newDefs.add(def);\n }\n return newDefs;\n }\n toVariableDefinitionNodes() {\n if (this._definitions.size === 0) {\n return undefined;\n }\n return this.definitions().map(def => def.toVariableDefinitionNode());\n }\n toString() {\n return '(' + this.definitions().join(', ') + ')';\n }\n}\nexports.VariableDefinitions = VariableDefinitions;\nfunction variableDefinitionsFromAST(schema, definitionNodes) {\n const definitions = new VariableDefinitions();\n for (const definitionNode of definitionNodes) {\n if (!definitions.add(variableDefinitionFromAST(schema, definitionNode))) {\n const name = definitionNode.variable.name.value;\n throw new graphql_1.GraphQLError(`Duplicate definition for variable ${name}`, definitionNodes.filter(n => n.variable.name.value === name));\n }\n }\n return definitions;\n}\nexports.variableDefinitionsFromAST = variableDefinitionsFromAST;\nfunction variableDefinitionFromAST(schema, definitionNode) {\n const variable = new Variable(definitionNode.variable.name.value);\n const type = typeFromAST(schema, definitionNode.type);\n if (!isInputType(type)) {\n throw new graphql_1.GraphQLError(`Invalid type \"${type}\" for variable $${variable}: not an input type`, definitionNode.type);\n }\n const def = new VariableDefinition(schema, variable, type, definitionNode.defaultValue ? (0, values_1.valueFromAST)(definitionNode.defaultValue, type) : undefined);\n return def;\n}\nexports.variableDefinitionFromAST = variableDefinitionFromAST;\nexports.graphQLBuiltIns = new BuiltIns();\nfunction addReferenceToType(referencer, type) {\n switch (type.kind) {\n case 'ListType':\n addReferenceToType(referencer, type.baseType());\n break;\n case 'NonNullType':\n addReferenceToType(referencer, type.baseType());\n break;\n default:\n BaseNamedType.prototype['addReferencer'].call(type, referencer);\n break;\n }\n}\nfunction removeReferenceToType(referencer, type) {\n switch (type.kind) {\n case 'ListType':\n removeReferenceToType(referencer, type.baseType());\n break;\n case 'NonNullType':\n removeReferenceToType(referencer, type.baseType());\n break;\n default:\n BaseNamedType.prototype['removeReferencer'].call(type, referencer);\n break;\n }\n}\nfunction newNamedType(kind, name) {\n switch (kind) {\n case 'ScalarType':\n return new ScalarType(name);\n case 'ObjectType':\n return new ObjectType(name);\n case 'InterfaceType':\n return new InterfaceType(name);\n case 'UnionType':\n return new UnionType(name);\n case 'EnumType':\n return new EnumType(name);\n case 'InputObjectType':\n return new InputObjectType(name);\n default:\n (0, utils_1.assert)(false, `Unhandled kind ${kind} for type ${name}`);\n }\n}\nexports.newNamedType = newNamedType;\nfunction* typesToCopy(source, dest) {\n var _a;\n for (const type of source.builtInTypes()) {\n if (!type.isIntrospectionType() && !((_a = dest.type(type.name)) === null || _a === void 0 ? void 0 : _a.isBuiltIn)) {\n yield type;\n }\n }\n yield* source.types();\n}\nfunction* directivesToCopy(source, dest) {\n var _a;\n for (const directive of source.builtInDirectives()) {\n if (!((_a = dest.directive(directive.name)) === null || _a === void 0 ? void 0 : _a.isBuiltIn)) {\n yield directive;\n }\n }\n yield* source.directives();\n}\nfunction copy(source, dest) {\n for (const type of typesToCopy(source, dest)) {\n dest.addType(newNamedType(type.kind, type.name));\n }\n for (const directive of directivesToCopy(source, dest)) {\n copyDirectiveDefinitionInner(directive, dest.addDirectiveDefinition(directive.name));\n }\n copySchemaDefinitionInner(source.schemaDefinition, dest.schemaDefinition);\n for (const type of typesToCopy(source, dest)) {\n copyNamedTypeInner(type, dest.type(type.name));\n }\n}\nfunction copyExtensions(source, dest) {\n const extensionMap = new Map();\n for (const sourceExtension of source.extensions()) {\n const destExtension = new Extension();\n dest.addExtension(destExtension);\n extensionMap.set(sourceExtension, destExtension);\n }\n return extensionMap;\n}\nfunction copyOfExtension(extensionsMap, source, dest) {\n const toCopy = source.ofExtension();\n if (toCopy) {\n dest.setOfExtension(extensionsMap.get(toCopy));\n }\n}\nfunction copySchemaDefinitionInner(source, dest) {\n const extensionsMap = copyExtensions(source, dest);\n for (const rootType of source.roots()) {\n copyOfExtension(extensionsMap, rootType, dest.setRoot(rootType.rootKind, rootType.type.name));\n }\n for (const directive of source.appliedDirectives) {\n copyOfExtension(extensionsMap, directive, dest.applyDirective(directive.name, { ...directive.arguments() }));\n }\n dest.description = source.description;\n dest.sourceAST = source.sourceAST;\n}\nfunction copyNamedTypeInner(source, dest) {\n const extensionsMap = copyExtensions(source, dest);\n for (const directive of source.appliedDirectives) {\n copyOfExtension(extensionsMap, directive, dest.applyDirective(directive.name, { ...directive.arguments() }));\n }\n dest.description = source.description;\n dest.sourceAST = source.sourceAST;\n switch (source.kind) {\n case 'ObjectType':\n case 'InterfaceType':\n const destFieldBasedType = dest;\n for (const sourceField of source.fields()) {\n const destField = destFieldBasedType.addField(new FieldDefinition(sourceField.name));\n copyOfExtension(extensionsMap, sourceField, destField);\n copyFieldDefinitionInner(sourceField, destField);\n }\n for (const sourceImpl of source.interfaceImplementations()) {\n const destImpl = destFieldBasedType.addImplementedInterface(sourceImpl.interface.name);\n copyOfExtension(extensionsMap, sourceImpl, destImpl);\n }\n break;\n case 'UnionType':\n const destUnionType = dest;\n for (const sourceType of source.members()) {\n const destType = destUnionType.addType(sourceType.type.name);\n copyOfExtension(extensionsMap, sourceType, destType);\n }\n break;\n case 'EnumType':\n const destEnumType = dest;\n for (const sourceValue of source.values) {\n const destValue = destEnumType.addValue(sourceValue.name);\n destValue.description = sourceValue.description;\n copyOfExtension(extensionsMap, sourceValue, destValue);\n copyAppliedDirectives(sourceValue, destValue);\n }\n break;\n case 'InputObjectType':\n const destInputType = dest;\n for (const sourceField of source.fields()) {\n const destField = destInputType.addField(new InputFieldDefinition(sourceField.name));\n copyOfExtension(extensionsMap, sourceField, destField);\n copyInputFieldDefinitionInner(sourceField, destField);\n }\n }\n}\nfunction copyAppliedDirectives(source, dest) {\n for (const directive of source.appliedDirectives) {\n dest.applyDirective(directive.name, { ...directive.arguments() });\n }\n}\nfunction copyFieldDefinitionInner(source, dest) {\n const type = copyWrapperTypeOrTypeRef(source.type, dest.schema());\n dest.type = type;\n for (const arg of source.arguments()) {\n const argType = copyWrapperTypeOrTypeRef(arg.type, dest.schema());\n copyArgumentDefinitionInner(arg, dest.addArgument(arg.name, argType));\n }\n copyAppliedDirectives(source, dest);\n dest.description = source.description;\n dest.sourceAST = source.sourceAST;\n}\nfunction copyInputFieldDefinitionInner(source, dest) {\n const type = copyWrapperTypeOrTypeRef(source.type, dest.schema());\n dest.type = type;\n dest.defaultValue = source.defaultValue;\n copyAppliedDirectives(source, dest);\n dest.description = source.description;\n dest.sourceAST = source.sourceAST;\n}\nfunction copyWrapperTypeOrTypeRef(source, destParent) {\n if (!source) {\n return undefined;\n }\n switch (source.kind) {\n case 'ListType':\n return new ListType(copyWrapperTypeOrTypeRef(source.ofType, destParent));\n case 'NonNullType':\n return new NonNullType(copyWrapperTypeOrTypeRef(source.ofType, destParent));\n default:\n return destParent.type(source.name);\n }\n}\nfunction copyArgumentDefinitionInner(source, dest) {\n const type = copyWrapperTypeOrTypeRef(source.type, dest.schema());\n dest.type = type;\n dest.defaultValue = source.defaultValue;\n copyAppliedDirectives(source, dest);\n dest.description = source.description;\n dest.sourceAST = source.sourceAST;\n}\nfunction copyDirectiveDefinitionInner(source, dest) {\n for (const arg of source.arguments()) {\n const type = copyWrapperTypeOrTypeRef(arg.type, dest.schema());\n copyArgumentDefinitionInner(arg, dest.addArgument(arg.name, type));\n }\n dest.repeatable = source.repeatable;\n dest.addLocations(...source.locations);\n dest.sourceAST = source.sourceAST;\n dest.description = source.description;\n}\n//# sourceMappingURL=definitions.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.builtTypeReference = exports.buildSchemaFromAST = exports.buildSchema = void 0;\nconst graphql_1 = require(\"graphql\");\nconst definitions_1 = require(\"./definitions\");\nfunction buildValue(value) {\n return value ? (0, graphql_1.valueFromASTUntyped)(value) : undefined;\n}\nfunction buildSchema(source, builtIns = definitions_1.graphQLBuiltIns, validate = true) {\n return buildSchemaFromAST((0, graphql_1.parse)(source), builtIns, validate);\n}\nexports.buildSchema = buildSchema;\nfunction buildSchemaFromAST(documentNode, builtIns = definitions_1.graphQLBuiltIns, validate = true) {\n const schema = new definitions_1.Schema(builtIns);\n const directiveDefinitionNodes = buildNamedTypeAndDirectivesShallow(documentNode, schema);\n for (const directiveDefinitionNode of directiveDefinitionNodes) {\n buildDirectiveDefinitionInner(directiveDefinitionNode, schema.directive(directiveDefinitionNode.name.value));\n }\n for (const definitionNode of documentNode.definitions) {\n switch (definitionNode.kind) {\n case 'OperationDefinition':\n case 'FragmentDefinition':\n throw new graphql_1.GraphQLError(\"Invalid executable definition found while building schema\", definitionNode);\n case 'SchemaDefinition':\n buildSchemaDefinitionInner(definitionNode, schema.schemaDefinition);\n break;\n case 'SchemaExtension':\n buildSchemaDefinitionInner(definitionNode, schema.schemaDefinition, schema.schemaDefinition.newExtension());\n break;\n case 'ScalarTypeDefinition':\n case 'ObjectTypeDefinition':\n case 'InterfaceTypeDefinition':\n case 'UnionTypeDefinition':\n case 'EnumTypeDefinition':\n case 'InputObjectTypeDefinition':\n buildNamedTypeInner(definitionNode, schema.type(definitionNode.name.value));\n break;\n case 'ScalarTypeExtension':\n case 'ObjectTypeExtension':\n case 'InterfaceTypeExtension':\n case 'UnionTypeExtension':\n case 'EnumTypeExtension':\n case 'InputObjectTypeExtension':\n const toExtend = schema.type(definitionNode.name.value);\n const extension = toExtend.newExtension();\n extension.sourceAST = definitionNode;\n buildNamedTypeInner(definitionNode, toExtend, extension);\n break;\n }\n }\n definitions_1.Schema.prototype['forceSetCachedDocument'].call(schema, documentNode);\n if (validate) {\n schema.validate();\n }\n return schema;\n}\nexports.buildSchemaFromAST = buildSchemaFromAST;\nfunction buildNamedTypeAndDirectivesShallow(documentNode, schema) {\n const directiveDefinitionNodes = [];\n for (const definitionNode of documentNode.definitions) {\n switch (definitionNode.kind) {\n case 'ScalarTypeDefinition':\n case 'ObjectTypeDefinition':\n case 'InterfaceTypeDefinition':\n case 'UnionTypeDefinition':\n case 'EnumTypeDefinition':\n case 'InputObjectTypeDefinition':\n case 'ScalarTypeExtension':\n case 'ObjectTypeExtension':\n case 'InterfaceTypeExtension':\n case 'UnionTypeExtension':\n case 'EnumTypeExtension':\n case 'InputObjectTypeExtension':\n const existing = schema.type(definitionNode.name.value);\n if (!existing || existing.isBuiltIn) {\n schema.addType((0, definitions_1.newNamedType)(withoutTrailingDefinition(definitionNode.kind), definitionNode.name.value));\n }\n break;\n case 'DirectiveDefinition':\n directiveDefinitionNodes.push(definitionNode);\n schema.addDirectiveDefinition(definitionNode.name.value);\n break;\n }\n }\n return directiveDefinitionNodes;\n}\nfunction withoutTrailingDefinition(str) {\n const endString = str.endsWith('Definition') ? 'Definition' : 'Extension';\n return str.slice(0, str.length - endString.length);\n}\nfunction getReferencedType(node, schema) {\n const type = schema.type(node.name.value);\n if (!type) {\n throw new graphql_1.GraphQLError(`Unknown type ${node.name.value}`, node);\n }\n return type;\n}\nfunction withNodeAttachedToError(operation, node) {\n try {\n operation();\n }\n catch (e) {\n if (e instanceof graphql_1.GraphQLError) {\n const allNodes = e.nodes ? [node, ...e.nodes] : node;\n throw new graphql_1.GraphQLError(e.message, allNodes, e.source, e.positions, e.path, e, e.extensions);\n }\n else {\n throw e;\n }\n }\n}\nfunction buildSchemaDefinitionInner(schemaNode, schemaDefinition, extension) {\n var _a, _b;\n for (const opTypeNode of (_a = schemaNode.operationTypes) !== null && _a !== void 0 ? _a : []) {\n withNodeAttachedToError(() => schemaDefinition.setRoot(opTypeNode.operation, opTypeNode.type.name.value).setOfExtension(extension), opTypeNode);\n }\n schemaDefinition.sourceAST = schemaNode;\n schemaDefinition.description = 'description' in schemaNode ? (_b = schemaNode.description) === null || _b === void 0 ? void 0 : _b.value : undefined;\n buildAppliedDirectives(schemaNode, schemaDefinition, extension);\n}\nfunction buildAppliedDirectives(elementNode, element, extension) {\n var _a;\n for (const directive of (_a = elementNode.directives) !== null && _a !== void 0 ? _a : []) {\n withNodeAttachedToError(() => {\n const d = element.applyDirective(directive.name.value, buildArgs(directive));\n d.setOfExtension(extension);\n d.sourceAST = directive;\n }, directive);\n }\n}\nfunction buildArgs(argumentsNode) {\n var _a;\n const args = Object.create(null);\n for (const argNode of (_a = argumentsNode.arguments) !== null && _a !== void 0 ? _a : []) {\n args[argNode.name.value] = buildValue(argNode.value);\n }\n return args;\n}\nfunction buildNamedTypeInner(definitionNode, type, extension) {\n var _a, _b, _c, _d, _e, _f, _g;\n switch (definitionNode.kind) {\n case 'ObjectTypeDefinition':\n case 'ObjectTypeExtension':\n case 'InterfaceTypeDefinition':\n case 'InterfaceTypeExtension':\n const fieldBasedType = type;\n for (const fieldNode of (_a = definitionNode.fields) !== null && _a !== void 0 ? _a : []) {\n const field = fieldBasedType.addField(fieldNode.name.value);\n field.setOfExtension(extension);\n buildFieldDefinitionInner(fieldNode, field);\n }\n for (const itfNode of (_b = definitionNode.interfaces) !== null && _b !== void 0 ? _b : []) {\n withNodeAttachedToError(() => {\n const itfName = itfNode.name.value;\n if (fieldBasedType.implementsInterface(itfName)) {\n throw new graphql_1.GraphQLError(`Type ${type} can only implement ${itfName} once.`);\n }\n fieldBasedType.addImplementedInterface(itfName).setOfExtension(extension);\n }, itfNode);\n }\n break;\n case 'UnionTypeDefinition':\n case 'UnionTypeExtension':\n const unionType = type;\n for (const namedType of (_c = definitionNode.types) !== null && _c !== void 0 ? _c : []) {\n withNodeAttachedToError(() => {\n const name = namedType.name.value;\n if (unionType.hasTypeMember(name)) {\n throw new graphql_1.GraphQLError(`Union type ${unionType} can only include type ${name} once.`);\n }\n unionType.addType(name).setOfExtension(extension);\n }, namedType);\n }\n break;\n case 'EnumTypeDefinition':\n case 'EnumTypeExtension':\n const enumType = type;\n for (const enumVal of (_d = definitionNode.values) !== null && _d !== void 0 ? _d : []) {\n const v = enumType.addValue(enumVal.name.value);\n v.description = (_e = enumVal.description) === null || _e === void 0 ? void 0 : _e.value;\n v.setOfExtension(extension);\n buildAppliedDirectives(enumVal, v);\n }\n break;\n case 'InputObjectTypeDefinition':\n case 'InputObjectTypeExtension':\n const inputObjectType = type;\n for (const fieldNode of (_f = definitionNode.fields) !== null && _f !== void 0 ? _f : []) {\n const field = inputObjectType.addField(fieldNode.name.value);\n field.setOfExtension(extension);\n buildInputFieldDefinitionInner(fieldNode, field);\n }\n break;\n }\n buildAppliedDirectives(definitionNode, type, extension);\n type.description = (_g = definitionNode.description) === null || _g === void 0 ? void 0 : _g.value;\n type.sourceAST = definitionNode;\n}\nfunction buildFieldDefinitionInner(fieldNode, field) {\n var _a, _b;\n const type = buildTypeReferenceFromAST(fieldNode.type, field.schema());\n field.type = ensureOutputType(type, field.coordinate, fieldNode);\n for (const inputValueDef of (_a = fieldNode.arguments) !== null && _a !== void 0 ? _a : []) {\n buildArgumentDefinitionInner(inputValueDef, field.addArgument(inputValueDef.name.value));\n }\n buildAppliedDirectives(fieldNode, field);\n field.description = (_b = fieldNode.description) === null || _b === void 0 ? void 0 : _b.value;\n field.sourceAST = fieldNode;\n}\nfunction ensureOutputType(type, what, node) {\n if ((0, definitions_1.isOutputType)(type)) {\n return type;\n }\n else {\n throw new graphql_1.GraphQLError(`The type of ${what} must be Output Type but got: ${type}, a ${type.kind}.`, node);\n }\n}\nfunction ensureInputType(type, what, node) {\n if ((0, definitions_1.isInputType)(type)) {\n return type;\n }\n else {\n throw new graphql_1.GraphQLError(`The type of ${what} must be Input Type but got: ${type}, a ${type.kind}.`, node);\n }\n}\nfunction builtTypeReference(encodedType, schema) {\n return buildTypeReferenceFromAST((0, graphql_1.parseType)(encodedType), schema);\n}\nexports.builtTypeReference = builtTypeReference;\nfunction buildTypeReferenceFromAST(typeNode, schema) {\n switch (typeNode.kind) {\n case graphql_1.Kind.LIST_TYPE:\n return new definitions_1.ListType(buildTypeReferenceFromAST(typeNode.type, schema));\n case graphql_1.Kind.NON_NULL_TYPE:\n const wrapped = buildTypeReferenceFromAST(typeNode.type, schema);\n if (wrapped.kind == graphql_1.Kind.NON_NULL_TYPE) {\n throw new graphql_1.GraphQLError(`Cannot apply the non-null operator (!) twice to the same type`, typeNode);\n }\n return new definitions_1.NonNullType(wrapped);\n default:\n return getReferencedType(typeNode, schema);\n }\n}\nfunction buildArgumentDefinitionInner(inputNode, arg) {\n var _a;\n const type = buildTypeReferenceFromAST(inputNode.type, arg.schema());\n arg.type = ensureInputType(type, arg.coordinate, inputNode);\n arg.defaultValue = buildValue(inputNode.defaultValue);\n buildAppliedDirectives(inputNode, arg);\n arg.description = (_a = inputNode.description) === null || _a === void 0 ? void 0 : _a.value;\n arg.sourceAST = inputNode;\n}\nfunction buildInputFieldDefinitionInner(fieldNode, field) {\n var _a;\n const type = buildTypeReferenceFromAST(fieldNode.type, field.schema());\n field.type = ensureInputType(type, field.coordinate, fieldNode);\n field.defaultValue = buildValue(fieldNode.defaultValue);\n buildAppliedDirectives(fieldNode, field);\n field.description = (_a = fieldNode.description) === null || _a === void 0 ? void 0 : _a.value;\n field.sourceAST = fieldNode;\n}\nfunction buildDirectiveDefinitionInner(directiveNode, directive) {\n var _a, _b;\n for (const inputValueDef of (_a = directiveNode.arguments) !== null && _a !== void 0 ? _a : []) {\n buildArgumentDefinitionInner(inputValueDef, directive.addArgument(inputValueDef.name.value));\n }\n directive.repeatable = directiveNode.repeatable;\n const locations = directiveNode.locations.map(({ value }) => value);\n directive.addLocations(...locations);\n directive.description = (_b = directiveNode.description) === null || _b === void 0 ? void 0 : _b.value;\n directive.sourceAST = directiveNode;\n}\n//# sourceMappingURL=buildSchema.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.KnownTypeNamesInFederationRule = void 0;\nconst graphql_1 = require(\"graphql\");\nconst federation_1 = require(\"../federation\");\nconst suggestions_1 = require(\"../suggestions\");\nfunction KnownTypeNamesInFederationRule(context) {\n const schema = context.getSchema();\n const existingTypesMap = schema ? schema.getTypeMap() : Object.create(null);\n const definedTypes = Object.create(null);\n for (const def of context.getDocument().definitions) {\n if ((0, graphql_1.isTypeDefinitionNode)(def) || (0, graphql_1.isTypeExtensionNode)(def)) {\n definedTypes[def.name.value] = true;\n }\n }\n const typeNames = Object.keys(existingTypesMap).concat(Object.keys(definedTypes));\n return {\n NamedType(node, _1, parent, _2, ancestors) {\n var _a;\n const typeName = node.name.value;\n if (!existingTypesMap[typeName] && !definedTypes[typeName]) {\n const definitionNode = (_a = ancestors[2]) !== null && _a !== void 0 ? _a : parent;\n const isSDL = definitionNode != null && isSDLNode(definitionNode);\n if (isSDL && isStandardTypeName(typeName)) {\n return;\n }\n const suggestedTypes = (0, suggestions_1.suggestionList)(typeName, isSDL ? standardTypeNames.concat(typeNames) : typeNames);\n context.reportError(new graphql_1.GraphQLError(`Unknown type \"${typeName}\".` + (0, suggestions_1.didYouMean)(suggestedTypes), node));\n }\n },\n };\n}\nexports.KnownTypeNamesInFederationRule = KnownTypeNamesInFederationRule;\nconst standardTypeNames = [...graphql_1.specifiedScalarTypes, ...graphql_1.introspectionTypes].map((type) => type.name);\nfunction isStandardTypeName(typeName) {\n return standardTypeNames.indexOf(typeName) !== -1 || (0, federation_1.isFederationTypeName)(typeName);\n}\nfunction isSDLNode(value) {\n return (!Array.isArray(value) &&\n ((0, graphql_1.isTypeSystemDefinitionNode)(value) || (0, graphql_1.isTypeSystemExtensionNode)(value)));\n}\n//# sourceMappingURL=KnownTypeNamesInFederationRule.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.operationToDocument = exports.parseSelectionSet = exports.parseOperation = exports.operationFromDocument = exports.FragmentSelection = exports.FieldSelection = exports.selectionSetOfPath = exports.selectionOfElement = exports.selectionSetOfElement = exports.SelectionSet = exports.NamedFragments = exports.NamedFragmentDefinition = exports.selectionSetOf = exports.Operation = exports.sameOperationPaths = exports.FragmentElement = exports.Field = void 0;\nconst graphql_1 = require(\"graphql\");\nconst definitions_1 = require(\"./definitions\");\nconst utils_1 = require(\"./utils\");\nconst values_1 = require(\"./values\");\nfunction validate(condition, message, sourceAST) {\n if (!condition) {\n throw new graphql_1.GraphQLError(message(), sourceAST);\n }\n}\nfunction haveSameDirectives(op1, op2) {\n if (op1.appliedDirectives.length != op2.appliedDirectives.length) {\n return false;\n }\n for (const thisDirective of op1.appliedDirectives) {\n if (!op2.appliedDirectives.some(thatDirective => thisDirective.name === thatDirective.name && (0, values_1.argumentsEquals)(thisDirective.arguments(), thatDirective.arguments()))) {\n return false;\n }\n }\n return true;\n}\nclass AbstractOperationElement extends definitions_1.DirectiveTargetElement {\n constructor(schema, variablesInElement) {\n super(schema);\n this.variablesInElement = variablesInElement;\n }\n variables() {\n return (0, definitions_1.mergeVariables)(this.variablesInElement, this.variablesInAppliedDirectives());\n }\n}\nclass Field extends AbstractOperationElement {\n constructor(definition, args = Object.create(null), variableDefinitions = new definitions_1.VariableDefinitions(), alias) {\n super(definition.schema(), (0, definitions_1.variablesInArguments)(args));\n this.definition = definition;\n this.args = args;\n this.variableDefinitions = variableDefinitions;\n this.alias = alias;\n this.kind = 'Field';\n this.validate();\n }\n get name() {\n return this.definition.name;\n }\n responseName() {\n return this.alias ? this.alias : this.name;\n }\n get parentType() {\n return this.definition.parent;\n }\n withUpdatedDefinition(newDefinition) {\n const newField = new Field(newDefinition, this.args, this.variableDefinitions, this.alias);\n for (const directive of this.appliedDirectives) {\n newField.applyDirective(directive.definition, directive.arguments());\n }\n return newField;\n }\n appliesTo(type) {\n const definition = type.field(this.name);\n return !!definition && this.selects(definition);\n }\n selects(definition, assumeValid = false) {\n if (definition == this.definition) {\n return true;\n }\n if (this.name !== definition.name) {\n return false;\n }\n for (const argDef of definition.arguments()) {\n const appliedValue = this.args[argDef.name];\n if (appliedValue === undefined) {\n if (argDef.defaultValue === undefined && !(0, definitions_1.isNullableType)(argDef.type)) {\n return false;\n }\n }\n else {\n if (!assumeValid && !(0, values_1.isValidValue)(appliedValue, argDef, this.variableDefinitions)) {\n return false;\n }\n }\n }\n if (!assumeValid) {\n for (const [name, value] of Object.entries(this.args)) {\n if (value !== null && definition.argument(name) === undefined) {\n return false;\n }\n }\n }\n return true;\n }\n validate() {\n validate(this.name === this.definition.name, () => `Field name \"${this.name}\" cannot select field \"${this.definition.coordinate}: name mismatch\"`);\n for (const argDef of this.definition.arguments()) {\n const appliedValue = this.args[argDef.name];\n if (appliedValue === undefined) {\n validate(argDef.defaultValue !== undefined || (0, definitions_1.isNullableType)(argDef.type), () => `Missing mandatory value \"${argDef.name}\" in field selection \"${this}\"`);\n }\n else {\n validate((0, values_1.isValidValue)(appliedValue, argDef, this.variableDefinitions), () => `Invalid value ${(0, values_1.valueToString)(appliedValue)} for argument \"${argDef.coordinate}\" of type ${argDef.type}`);\n }\n }\n for (const [name, value] of Object.entries(this.args)) {\n validate(value === null || this.definition.argument(name) !== undefined, () => `Unknown argument \"${name}\" in field application of \"${this.name}\"`);\n }\n }\n updateForAddingTo(selectionSet) {\n const selectionParent = selectionSet.parentType;\n const fieldParent = this.definition.parent;\n if (selectionParent.name !== fieldParent.name) {\n if (this.name === definitions_1.typenameFieldName) {\n return this.withUpdatedDefinition(selectionParent.typenameField());\n }\n validate(!(0, definitions_1.isUnionType)(selectionParent)\n && (((0, definitions_1.isInterfaceType)(fieldParent) && fieldParent.allImplementations().some(i => i.name == selectionParent.name))\n || ((0, definitions_1.isObjectType)(fieldParent) && fieldParent.name == selectionParent.name)), () => `Cannot add selection of field \"${this.definition.coordinate}\" to selection set of parent type \"${selectionSet.parentType}\"`);\n const fieldDef = selectionParent.field(this.name);\n validate(fieldDef, () => `Cannot add selection of field \"${this.definition.coordinate}\" to selection set of parent type \"${selectionParent} (that does not declare that type)\"`);\n return this.withUpdatedDefinition(fieldDef);\n }\n return this;\n }\n equals(that) {\n if (this === that) {\n return true;\n }\n return that.kind === 'Field'\n && this.name === that.name\n && this.alias === that.alias\n && (0, values_1.argumentsEquals)(this.args, that.args)\n && haveSameDirectives(this, that);\n }\n toString() {\n const alias = this.alias ? this.alias + ': ' : '';\n const entries = Object.entries(this.args);\n const args = entries.length == 0\n ? ''\n : '(' + entries.map(([n, v]) => { var _a; return `${n}: ${(0, values_1.valueToString)(v, (_a = this.definition.argument(n)) === null || _a === void 0 ? void 0 : _a.type)}`; }).join(', ') + ')';\n return alias + this.name + args + this.appliedDirectivesToString();\n }\n}\nexports.Field = Field;\nclass FragmentElement extends AbstractOperationElement {\n constructor(sourceType, typeCondition) {\n super(sourceType.schema(), []);\n this.sourceType = sourceType;\n this.kind = 'FragmentElement';\n this.typeCondition = typeCondition !== undefined && typeof typeCondition === 'string'\n ? this.schema().type(typeCondition)\n : typeCondition;\n }\n get parentType() {\n return this.sourceType;\n }\n withUpdatedSourceType(newSourceType) {\n const newFragment = new FragmentElement(newSourceType, this.typeCondition);\n for (const directive of this.appliedDirectives) {\n newFragment.applyDirective(directive.definition, directive.arguments());\n }\n return newFragment;\n }\n updateForAddingTo(selectionSet) {\n const selectionParent = selectionSet.parentType;\n const fragmentParent = this.parentType;\n const typeCondition = this.typeCondition;\n if (selectionParent != fragmentParent) {\n validate(!typeCondition || (0, definitions_1.runtimeTypesIntersects)(selectionParent, typeCondition), () => `Cannot add fragment of parent type \"${this.parentType}\" to selection set of parent type \"${selectionSet.parentType}\"`);\n return this.withUpdatedSourceType(selectionParent);\n }\n return this;\n }\n equals(that) {\n var _a, _b;\n if (this === that) {\n return true;\n }\n return that.kind === 'FragmentElement'\n && ((_a = this.typeCondition) === null || _a === void 0 ? void 0 : _a.name) === ((_b = that.typeCondition) === null || _b === void 0 ? void 0 : _b.name)\n && haveSameDirectives(this, that);\n }\n toString() {\n return '...' + (this.typeCondition ? ' on ' + this.typeCondition : '') + this.appliedDirectivesToString();\n }\n}\nexports.FragmentElement = FragmentElement;\nfunction sameOperationPaths(p1, p2) {\n if (p1 === p2) {\n return true;\n }\n if (p1.length !== p2.length) {\n return false;\n }\n for (let i = 0; i < p1.length; i++) {\n if (!p1[i].equals(p2[i])) {\n return false;\n }\n }\n return true;\n}\nexports.sameOperationPaths = sameOperationPaths;\nclass Operation {\n constructor(rootKind, selectionSet, variableDefinitions, name) {\n this.rootKind = rootKind;\n this.selectionSet = selectionSet;\n this.variableDefinitions = variableDefinitions;\n this.name = name;\n }\n optimize(fragments, minUsagesToOptimize = 2) {\n if (!fragments) {\n return this;\n }\n let optimizedSelection = this.selectionSet.optimize(fragments);\n if (optimizedSelection === this.selectionSet) {\n return this;\n }\n if (minUsagesToOptimize > 1) {\n const usages = new Map();\n optimizedSelection.collectUsedFragmentNames(usages);\n for (const fragment of fragments.names()) {\n if (!usages.has(fragment)) {\n usages.set(fragment, 0);\n }\n }\n const toDeoptimize = (0, utils_1.mapEntries)(usages).filter(([_, count]) => count < minUsagesToOptimize).map(([name]) => name);\n optimizedSelection = optimizedSelection.expandFragments(toDeoptimize);\n }\n return new Operation(this.rootKind, optimizedSelection, this.variableDefinitions, this.name);\n }\n expandAllFragments() {\n const expandedSelections = this.selectionSet.expandFragments();\n if (expandedSelections === this.selectionSet) {\n return this;\n }\n return new Operation(this.rootKind, expandedSelections, this.variableDefinitions, this.name);\n }\n toString(expandFragments = false, prettyPrint = true) {\n return this.selectionSet.toOperationString(this.rootKind, this.variableDefinitions, this.name, expandFragments, prettyPrint);\n }\n}\nexports.Operation = Operation;\nfunction addDirectiveNodesToElement(directiveNodes, element) {\n if (!directiveNodes) {\n return;\n }\n const schema = element.schema();\n for (const node of directiveNodes) {\n const directiveDef = schema.directive(node.name.value);\n validate(directiveDef, () => `Unknown directive \"@${node.name.value}\" in selection`);\n element.applyDirective(directiveDef, (0, values_1.argumentsFromAST)(directiveDef.coordinate, node.arguments, directiveDef));\n }\n}\nfunction selectionSetOf(parentType, selection) {\n const selectionSet = new SelectionSet(parentType);\n selectionSet.add(selection);\n return selectionSet;\n}\nexports.selectionSetOf = selectionSetOf;\nclass NamedFragmentDefinition extends definitions_1.DirectiveTargetElement {\n constructor(schema, name, typeCondition, selectionSet) {\n super(schema);\n this.name = name;\n this.typeCondition = typeCondition;\n this.selectionSet = selectionSet;\n }\n variables() {\n return (0, definitions_1.mergeVariables)(this.variablesInAppliedDirectives(), this.selectionSet.usedVariables());\n }\n collectUsedFragmentNames(collector) {\n this.selectionSet.collectUsedFragmentNames(collector);\n }\n toFragmentDefinitionNode() {\n return {\n kind: graphql_1.Kind.FRAGMENT_DEFINITION,\n name: {\n kind: graphql_1.Kind.NAME,\n value: this.name\n },\n typeCondition: {\n kind: graphql_1.Kind.NAMED_TYPE,\n name: {\n kind: graphql_1.Kind.NAME,\n value: this.typeCondition.name\n }\n },\n selectionSet: this.selectionSet.toSelectionSetNode()\n };\n }\n toString(indent) {\n return (indent !== null && indent !== void 0 ? indent : '') + `fragment ${this.name} on ${this.typeCondition}${this.appliedDirectivesToString()} ${this.selectionSet.toString(false, true, indent)}`;\n }\n}\nexports.NamedFragmentDefinition = NamedFragmentDefinition;\nclass NamedFragments {\n constructor() {\n this.fragments = new utils_1.MapWithCachedArrays();\n }\n isEmpty() {\n return this.fragments.size === 0;\n }\n variables() {\n let variables = [];\n for (const fragment of this.fragments.values()) {\n variables = (0, definitions_1.mergeVariables)(variables, fragment.variables());\n }\n return variables;\n }\n names() {\n return this.fragments.keys();\n }\n add(fragment) {\n if (this.fragments.has(fragment.name)) {\n throw new graphql_1.GraphQLError(`Duplicate fragment name '${fragment}'`);\n }\n this.fragments.set(fragment.name, fragment);\n }\n addIfNotExist(fragment) {\n if (!this.fragments.has(fragment.name)) {\n this.fragments.set(fragment.name, fragment);\n }\n }\n onType(type) {\n return this.fragments.values().filter(f => f.typeCondition.name === type.name);\n }\n without(names) {\n if (!names.some(n => this.fragments.has(n))) {\n return this;\n }\n const newFragments = new NamedFragments();\n for (const fragment of this.fragments.values()) {\n if (!names.includes(fragment.name)) {\n const updatedSelection = fragment.selectionSet.expandFragments(names, false);\n const newFragment = updatedSelection === fragment.selectionSet\n ? fragment\n : new NamedFragmentDefinition(fragment.schema(), fragment.name, fragment.typeCondition, updatedSelection);\n newFragments.add(newFragment);\n }\n }\n return newFragments;\n }\n get(name) {\n return this.fragments.get(name);\n }\n definitions() {\n return this.fragments.values();\n }\n validate() {\n for (const fragment of this.fragments.values()) {\n fragment.selectionSet.validate();\n }\n }\n toFragmentDefinitionNodes() {\n return this.definitions().map(f => f.toFragmentDefinitionNode());\n }\n toString(indent) {\n return this.definitions().map(f => f.toString(indent)).join('\\n\\n');\n }\n}\nexports.NamedFragments = NamedFragments;\nclass SelectionSet {\n constructor(parentType, fragments) {\n this.parentType = parentType;\n this.fragments = fragments;\n this._selections = new utils_1.MultiMap();\n this._selectionCount = 0;\n validate(!(0, definitions_1.isLeafType)(parentType), () => `Cannot have selection on non-leaf type ${parentType}`);\n }\n selections(reversedOrder = false) {\n if (!this._cachedSelections) {\n const selections = new Array(this._selectionCount);\n let idx = 0;\n for (const byResponseName of this._selections.values()) {\n for (const selection of byResponseName) {\n selections[idx++] = selection;\n }\n }\n this._cachedSelections = selections;\n }\n (0, utils_1.assert)(this._cachedSelections, 'Cache should have been populated');\n if (reversedOrder) {\n const reversed = new Array(this._selectionCount);\n for (let i = 0; i < this._selectionCount; i++) {\n reversed[i] = this._cachedSelections[this._selectionCount - i - 1];\n }\n return reversed;\n }\n return this._cachedSelections;\n }\n usedVariables() {\n let variables = [];\n for (const byResponseName of this._selections.values()) {\n for (const selection of byResponseName) {\n variables = (0, definitions_1.mergeVariables)(variables, selection.usedVariables());\n }\n }\n if (this.fragments) {\n variables = (0, definitions_1.mergeVariables)(variables, this.fragments.variables());\n }\n return variables;\n }\n collectUsedFragmentNames(collector) {\n if (!this.fragments) {\n return;\n }\n for (const byResponseName of this._selections.values()) {\n for (const selection of byResponseName) {\n selection.collectUsedFragmentNames(collector);\n }\n }\n }\n optimize(fragments) {\n if (!fragments || fragments.isEmpty()) {\n return this;\n }\n if (this.fragments && this.fragments.definitions().some(def => fragments.get(def.name))) {\n return this;\n }\n const optimized = new SelectionSet(this.parentType, fragments);\n for (const selection of this.selections()) {\n optimized.add(selection.optimize(fragments));\n }\n return optimized;\n }\n expandFragments(names, updateSelectionSetFragments = true) {\n var _a;\n if (!this.fragments) {\n return this;\n }\n if (names && names.length === 0) {\n return this;\n }\n const newFragments = updateSelectionSetFragments\n ? (names ? (_a = this.fragments) === null || _a === void 0 ? void 0 : _a.without(names) : undefined)\n : this.fragments;\n const withExpanded = new SelectionSet(this.parentType, newFragments);\n for (const selection of this.selections()) {\n withExpanded.add(selection.expandFragments(names, updateSelectionSetFragments));\n }\n return withExpanded;\n }\n mergeIn(selectionSet) {\n for (const selection of selectionSet.selections()) {\n this.add(selection);\n }\n }\n addAll(selections) {\n selections.forEach(s => this.add(s));\n return this;\n }\n add(selection) {\n const toAdd = selection.updateForAddingTo(this);\n const key = toAdd.key();\n const existing = this._selections.get(key);\n if (existing) {\n for (const existingSelection of existing) {\n if (existingSelection.kind === toAdd.kind && haveSameDirectives(existingSelection.element(), toAdd.element())) {\n if (toAdd.selectionSet) {\n existingSelection.selectionSet.mergeIn(toAdd.selectionSet);\n }\n return existingSelection;\n }\n }\n }\n this._selections.add(key, toAdd);\n ++this._selectionCount;\n this._cachedSelections = undefined;\n return selection;\n }\n addPath(path) {\n let previousSelections = this;\n let currentSelections = this;\n for (const element of path) {\n validate(currentSelections, () => `Cannot apply selection ${element} to non-selectable parent type \"${previousSelections.parentType}\"`);\n const mergedSelection = currentSelections.add(selectionOfElement(element));\n previousSelections = currentSelections;\n currentSelections = mergedSelection.selectionSet;\n }\n }\n addSelectionSetNode(node, variableDefinitions, fieldAccessor = (type, name) => type.field(name)) {\n if (!node) {\n return;\n }\n for (const selectionNode of node.selections) {\n this.addSelectionNode(selectionNode, variableDefinitions, fieldAccessor);\n }\n }\n addSelectionNode(node, variableDefinitions, fieldAccessor = (type, name) => type.field(name)) {\n this.add(this.nodeToSelection(node, variableDefinitions, fieldAccessor));\n }\n nodeToSelection(node, variableDefinitions, fieldAccessor) {\n var _a, _b;\n let selection;\n switch (node.kind) {\n case graphql_1.Kind.FIELD:\n const definition = fieldAccessor(this.parentType, node.name.value);\n validate(definition, () => `Cannot query field \"${node.name.value}\" on type \"${this.parentType}\".`, this.parentType.sourceAST);\n const type = (0, definitions_1.baseType)(definition.type);\n selection = new FieldSelection(new Field(definition, (0, values_1.argumentsFromAST)(definition.coordinate, node.arguments, definition), variableDefinitions, (_a = node.alias) === null || _a === void 0 ? void 0 : _a.value), (0, definitions_1.isLeafType)(type) ? undefined : new SelectionSet(type, this.fragments));\n if (node.selectionSet) {\n validate(selection.selectionSet, () => `Unexpected selection set on leaf field \"${selection.element()}\"`, selection.element().definition.sourceAST);\n selection.selectionSet.addSelectionSetNode(node.selectionSet, variableDefinitions, fieldAccessor);\n }\n break;\n case graphql_1.Kind.INLINE_FRAGMENT:\n const element = new FragmentElement(this.parentType, (_b = node.typeCondition) === null || _b === void 0 ? void 0 : _b.name.value);\n selection = new InlineFragmentSelection(element, new SelectionSet(element.typeCondition ? element.typeCondition : element.parentType, this.fragments));\n selection.selectionSet.addSelectionSetNode(node.selectionSet, variableDefinitions, fieldAccessor);\n break;\n case graphql_1.Kind.FRAGMENT_SPREAD:\n const fragmentName = node.name.value;\n validate(this.fragments, () => `Cannot find fragment name \"${fragmentName}\" (no fragments were provided)`);\n selection = new FragmentSpreadSelection(this.parentType, this.fragments, fragmentName);\n break;\n }\n addDirectiveNodesToElement(node.directives, selection.element());\n return selection;\n }\n equals(that) {\n if (this === that) {\n return true;\n }\n if (this._selections.size !== that._selections.size) {\n return false;\n }\n for (const [key, thisSelections] of this._selections) {\n const thatSelections = that._selections.get(key);\n if (!thatSelections\n || thisSelections.length !== thatSelections.length\n || !thisSelections.every(thisSelection => thatSelections.some(thatSelection => thisSelection.equals(thatSelection)))) {\n return false;\n }\n }\n return true;\n }\n contains(that) {\n if (this._selections.size < that._selections.size) {\n return false;\n }\n for (const [key, thatSelections] of that._selections) {\n const thisSelections = this._selections.get(key);\n if (!thisSelections\n || (thisSelections.length < thatSelections.length\n || !thatSelections.every(thatSelection => thisSelections.some(thisSelection => thisSelection.contains(thatSelection))))) {\n return false;\n }\n }\n return true;\n }\n validate() {\n validate(!this.isEmpty(), () => `Invalid empty selection set`);\n for (const selection of this.selections()) {\n selection.validate();\n const selectionFragments = selection.namedFragments();\n (0, utils_1.assert)(!selectionFragments || selectionFragments === this.fragments, () => `Selection fragments (${selectionFragments}) for ${selection} does not match selection set one (${this.fragments})`);\n }\n }\n isEmpty() {\n return this._selections.size === 0;\n }\n toSelectionSetNode() {\n if (this.isEmpty()) {\n return {\n kind: graphql_1.Kind.SELECTION_SET,\n selections: [{\n kind: graphql_1.Kind.FIELD,\n name: {\n kind: graphql_1.Kind.NAME,\n value: '...',\n },\n }]\n };\n }\n return {\n kind: graphql_1.Kind.SELECTION_SET,\n selections: Array.from(this.selectionsInPrintOrder(), s => s.toSelectionNode())\n };\n }\n selectionsInPrintOrder() {\n const typenameSelection = this._selections.get(definitions_1.typenameFieldName);\n if (typenameSelection) {\n return typenameSelection.concat(this.selections().filter(s => s.kind != 'FieldSelection' || s.field.name !== definitions_1.typenameFieldName));\n }\n else {\n return this.selections();\n }\n }\n toOperationPaths() {\n return this.toOperationPathsInternal([]);\n }\n toOperationPathsInternal(parentPaths) {\n return this.selections().flatMap((selection) => {\n const updatedPaths = parentPaths.map(path => path.concat(selection.element()));\n return selection.selectionSet\n ? selection.selectionSet.toOperationPathsInternal(updatedPaths)\n : updatedPaths;\n });\n }\n clone() {\n const cloned = new SelectionSet(this.parentType);\n for (const selection of this.selections()) {\n cloned.add(selection.clone());\n }\n return cloned;\n }\n toOperationString(rootKind, variableDefinitions, operationName, expandFragments = false, prettyPrint = true) {\n const indent = prettyPrint ? '' : undefined;\n const fragmentsDefinitions = !expandFragments && this.fragments && !this.fragments.isEmpty()\n ? this.fragments.toString(indent) + \"\\n\\n\"\n : \"\";\n if (rootKind == \"query\" && !operationName && variableDefinitions.isEmpty()) {\n return fragmentsDefinitions + this.toString(expandFragments, true, indent);\n }\n const nameAndVariables = operationName\n ? \" \" + (operationName + (variableDefinitions.isEmpty() ? \"\" : variableDefinitions.toString()))\n : (variableDefinitions.isEmpty() ? \"\" : \" \" + variableDefinitions.toString());\n return fragmentsDefinitions + rootKind + nameAndVariables + \" \" + this.toString(expandFragments, true, indent);\n }\n toString(expandFragments = true, includeExternalBrackets = true, indent) {\n if (indent === undefined) {\n const selectionsToString = this.selections().map(s => s.toString(expandFragments)).join(' ');\n return includeExternalBrackets ? '{ ' + selectionsToString + ' }' : selectionsToString;\n }\n else {\n const selectionIndent = includeExternalBrackets ? indent + \" \" : indent;\n const selectionsToString = this.selections().map(s => s.toString(expandFragments, selectionIndent)).join('\\n');\n return includeExternalBrackets\n ? '{\\n' + selectionsToString + '\\n' + indent + '}'\n : selectionsToString;\n }\n }\n}\nexports.SelectionSet = SelectionSet;\nfunction selectionSetOfElement(element, subSelection) {\n const selectionSet = new SelectionSet(element.parentType);\n selectionSet.add(selectionOfElement(element, subSelection));\n return selectionSet;\n}\nexports.selectionSetOfElement = selectionSetOfElement;\nfunction selectionOfElement(element, subSelection) {\n return element.kind === 'Field' ? new FieldSelection(element, subSelection) : new InlineFragmentSelection(element, subSelection);\n}\nexports.selectionOfElement = selectionOfElement;\nfunction selectionSetOfPath(path, onPathEnd) {\n validate(path.length > 0, () => `Cannot create a selection set from an empty path`);\n const last = selectionSetOfElement(path[path.length - 1]);\n let current = last;\n for (let i = path.length - 2; i >= 0; i--) {\n current = selectionSetOfElement(path[i], current);\n }\n if (onPathEnd) {\n onPathEnd(last.selections()[0].selectionSet);\n }\n return current;\n}\nexports.selectionSetOfPath = selectionSetOfPath;\nclass FieldSelection {\n constructor(field, initialSelectionSet) {\n this.field = field;\n this.kind = 'FieldSelection';\n const type = (0, definitions_1.baseType)(field.definition.type);\n this.selectionSet = (0, definitions_1.isLeafType)(type) ? undefined : (initialSelectionSet ? initialSelectionSet : new SelectionSet(type));\n }\n key() {\n return this.element().responseName();\n }\n element() {\n return this.field;\n }\n usedVariables() {\n var _a, _b;\n return (0, definitions_1.mergeVariables)(this.element().variables(), (_b = (_a = this.selectionSet) === null || _a === void 0 ? void 0 : _a.usedVariables()) !== null && _b !== void 0 ? _b : []);\n }\n collectUsedFragmentNames(collector) {\n if (this.selectionSet) {\n this.selectionSet.collectUsedFragmentNames(collector);\n }\n }\n optimize(fragments) {\n const optimizedSelection = this.selectionSet ? this.selectionSet.optimize(fragments) : undefined;\n return this.selectionSet === optimizedSelection\n ? this\n : new FieldSelection(this.field, optimizedSelection);\n }\n expandFragments(names, updateSelectionSetFragments = true) {\n const expandedSelection = this.selectionSet ? this.selectionSet.expandFragments(names, updateSelectionSetFragments) : undefined;\n return this.selectionSet === expandedSelection\n ? this\n : new FieldSelection(this.field, expandedSelection);\n }\n fieldArgumentsToAST() {\n const entries = Object.entries(this.field.args);\n if (entries.length === 0) {\n return undefined;\n }\n return entries.map(([n, v]) => {\n return {\n kind: graphql_1.Kind.ARGUMENT,\n name: { kind: graphql_1.Kind.NAME, value: n },\n value: (0, values_1.valueToAST)(v, this.field.definition.argument(n).type),\n };\n });\n }\n validate() {\n var _a;\n validate(!(this.selectionSet && this.selectionSet.isEmpty()), () => `Invalid empty selection set for field \"${this.field.definition.coordinate}\" of non-leaf type ${this.field.definition.type}`, this.field.definition.sourceAST);\n (_a = this.selectionSet) === null || _a === void 0 ? void 0 : _a.validate();\n }\n updateForAddingTo(selectionSet) {\n const updatedField = this.field.updateForAddingTo(selectionSet);\n return this.field === updatedField ? this : new FieldSelection(updatedField, this.selectionSet);\n }\n toSelectionNode() {\n var _a;\n const alias = this.field.alias ? { kind: graphql_1.Kind.NAME, value: this.field.alias, } : undefined;\n return {\n kind: graphql_1.Kind.FIELD,\n name: {\n kind: graphql_1.Kind.NAME,\n value: this.field.name,\n },\n alias,\n arguments: this.fieldArgumentsToAST(),\n directives: this.element().appliedDirectivesToDirectiveNodes(),\n selectionSet: (_a = this.selectionSet) === null || _a === void 0 ? void 0 : _a.toSelectionSetNode()\n };\n }\n equals(that) {\n if (this === that) {\n return true;\n }\n if (!(that instanceof FieldSelection) || !this.field.equals(that.field)) {\n return false;\n }\n if (!this.selectionSet) {\n return !that.selectionSet;\n }\n return !!that.selectionSet && this.selectionSet.equals(that.selectionSet);\n }\n contains(that) {\n if (!(that instanceof FieldSelection) || !this.field.equals(that.field)) {\n return false;\n }\n if (!that.selectionSet) {\n return true;\n }\n return !!this.selectionSet && this.selectionSet.contains(that.selectionSet);\n }\n namedFragments() {\n var _a;\n return (_a = this.selectionSet) === null || _a === void 0 ? void 0 : _a.fragments;\n }\n clone() {\n if (!this.selectionSet) {\n return this;\n }\n return new FieldSelection(this.field, this.selectionSet.clone());\n }\n toString(expandFragments = true, indent) {\n return (indent !== null && indent !== void 0 ? indent : '') + this.field + (this.selectionSet ? ' ' + this.selectionSet.toString(expandFragments, true, indent) : '');\n }\n}\nexports.FieldSelection = FieldSelection;\nclass FragmentSelection {\n constructor() {\n this.kind = 'FragmentSelection';\n }\n usedVariables() {\n return (0, definitions_1.mergeVariables)(this.element().variables(), this.selectionSet.usedVariables());\n }\n updateForAddingTo(selectionSet) {\n const updatedFragment = this.element().updateForAddingTo(selectionSet);\n return this.element() === updatedFragment ? this : new InlineFragmentSelection(updatedFragment, this.selectionSet);\n }\n equals(that) {\n if (this === that) {\n return true;\n }\n return (that instanceof FragmentSelection)\n && this.element().equals(that.element())\n && this.selectionSet.equals(that.selectionSet);\n }\n contains(that) {\n return (that instanceof FragmentSelection)\n && this.element().equals(that.element())\n && this.selectionSet.contains(that.selectionSet);\n }\n clone() {\n return new InlineFragmentSelection(this.element(), this.selectionSet.clone());\n }\n}\nexports.FragmentSelection = FragmentSelection;\nclass InlineFragmentSelection extends FragmentSelection {\n constructor(fragmentElement, initialSelectionSet) {\n super();\n this.fragmentElement = fragmentElement;\n this._selectionSet = initialSelectionSet\n ? initialSelectionSet\n : new SelectionSet(fragmentElement.typeCondition ? fragmentElement.typeCondition : fragmentElement.parentType);\n }\n key() {\n var _a, _b;\n return (_b = (_a = this.element().typeCondition) === null || _a === void 0 ? void 0 : _a.name) !== null && _b !== void 0 ? _b : '';\n }\n validate() {\n validate(!this.selectionSet.isEmpty(), () => `Invalid empty selection set for fragment \"${this.element()}\"`);\n this.selectionSet.validate();\n }\n get selectionSet() {\n return this._selectionSet;\n }\n namedFragments() {\n return this.selectionSet.fragments;\n }\n element() {\n return this.fragmentElement;\n }\n toSelectionNode() {\n const typeCondition = this.element().typeCondition;\n return {\n kind: graphql_1.Kind.INLINE_FRAGMENT,\n typeCondition: typeCondition\n ? {\n kind: graphql_1.Kind.NAMED_TYPE,\n name: {\n kind: graphql_1.Kind.NAME,\n value: typeCondition.name,\n },\n }\n : undefined,\n directives: this.element().appliedDirectivesToDirectiveNodes(),\n selectionSet: this.selectionSet.toSelectionSetNode()\n };\n }\n optimize(fragments) {\n const optimizedSelection = this.selectionSet.optimize(fragments);\n const typeCondition = this.element().typeCondition;\n if (typeCondition) {\n for (const candidate of fragments.onType(typeCondition)) {\n if (candidate.selectionSet.equals(optimizedSelection)) {\n fragments.addIfNotExist(candidate);\n return new FragmentSpreadSelection(this.element().parentType, fragments, candidate.name);\n }\n }\n }\n return this.selectionSet === optimizedSelection\n ? this\n : new InlineFragmentSelection(this.fragmentElement, optimizedSelection);\n }\n expandFragments(names, updateSelectionSetFragments = true) {\n const expandedSelection = this.selectionSet.expandFragments(names, updateSelectionSetFragments);\n return this.selectionSet === expandedSelection\n ? this\n : new InlineFragmentSelection(this.element(), expandedSelection);\n }\n collectUsedFragmentNames(collector) {\n this.selectionSet.collectUsedFragmentNames(collector);\n }\n toString(expandFragments = true, indent) {\n return (indent !== null && indent !== void 0 ? indent : '') + this.fragmentElement + ' ' + this.selectionSet.toString(expandFragments, true, indent);\n }\n}\nclass FragmentSpreadSelection extends FragmentSelection {\n constructor(sourceType, fragments, fragmentName) {\n super();\n this.fragments = fragments;\n const fragmentDefinition = fragments.get(fragmentName);\n validate(fragmentDefinition, () => `Unknown fragment \"...${fragmentName}\"`);\n this.namedFragment = fragmentDefinition;\n this._element = new FragmentElement(sourceType, fragmentDefinition.typeCondition);\n for (const directive of fragmentDefinition.appliedDirectives) {\n this._element.applyDirective(directive.definition, directive.arguments());\n }\n }\n key() {\n return '...' + this.namedFragment.name;\n }\n element() {\n return this._element;\n }\n namedFragments() {\n return this.fragments;\n }\n get selectionSet() {\n return this.namedFragment.selectionSet;\n }\n validate() {\n }\n toSelectionNode() {\n const spreadDirectives = this.spreadDirectives();\n const directiveNodes = spreadDirectives.length === 0\n ? undefined\n : spreadDirectives.map(directive => {\n return {\n kind: graphql_1.Kind.DIRECTIVE,\n name: {\n kind: graphql_1.Kind.NAME,\n value: directive.name,\n },\n arguments: directive.argumentsToAST()\n };\n });\n return {\n kind: graphql_1.Kind.FRAGMENT_SPREAD,\n name: { kind: graphql_1.Kind.NAME, value: this.namedFragment.name },\n directives: directiveNodes,\n };\n }\n optimize(_) {\n return this;\n }\n expandFragments(names, updateSelectionSetFragments = true) {\n if (names && !names.includes(this.namedFragment.name)) {\n return this;\n }\n return new InlineFragmentSelection(this._element, this.selectionSet.expandFragments(names, updateSelectionSetFragments));\n }\n collectUsedFragmentNames(collector) {\n this.selectionSet.collectUsedFragmentNames(collector);\n const usageCount = collector.get(this.namedFragment.name);\n collector.set(this.namedFragment.name, usageCount === undefined ? 1 : usageCount + 1);\n }\n spreadDirectives() {\n return this._element.appliedDirectives.slice(this.namedFragment.appliedDirectives.length);\n }\n toString(expandFragments = true, indent) {\n if (expandFragments) {\n return (indent !== null && indent !== void 0 ? indent : '') + this._element + ' ' + this.selectionSet.toString(true, true, indent);\n }\n else {\n const directives = this.spreadDirectives();\n const directiveString = directives.length == 0 ? '' : ' ' + directives.join(' ');\n return (indent !== null && indent !== void 0 ? indent : '') + '...' + this.namedFragment.name + directiveString;\n }\n }\n}\nfunction operationFromDocument(schema, document, operationName) {\n let operation;\n const fragments = new NamedFragments();\n document.definitions.forEach(definition => {\n switch (definition.kind) {\n case graphql_1.Kind.OPERATION_DEFINITION:\n validate(!operation || operationName, () => 'Must provide operation name if query contains multiple operations.');\n if (!operationName || (definition.name && definition.name.value === operationName)) {\n operation = definition;\n }\n break;\n case graphql_1.Kind.FRAGMENT_DEFINITION:\n const name = definition.name.value;\n const typeName = definition.typeCondition.name.value;\n const typeCondition = schema.type(typeName);\n if (!typeCondition) {\n throw new graphql_1.GraphQLError(`Unknown type \"${typeName}\" for fragment \"${name}\"`, definition);\n }\n if (!(0, definitions_1.isCompositeType)(typeCondition)) {\n throw new graphql_1.GraphQLError(`Invalid fragment \"${name}\" on non-composite type \"${typeName}\"`, definition);\n }\n const fragment = new NamedFragmentDefinition(schema, name, typeCondition, new SelectionSet(typeCondition, fragments));\n addDirectiveNodesToElement(definition.directives, fragment);\n fragments.add(fragment);\n break;\n }\n });\n validate(operation, () => operationName ? `Unknown operation named \"${operationName}\"` : 'No operation found in provided document.');\n const variableDefinitions = operation.variableDefinitions\n ? (0, definitions_1.variableDefinitionsFromAST)(schema, operation.variableDefinitions)\n : new definitions_1.VariableDefinitions();\n document.definitions.forEach(definition => {\n switch (definition.kind) {\n case graphql_1.Kind.FRAGMENT_DEFINITION:\n const fragment = fragments.get(definition.name.value);\n fragment.selectionSet.addSelectionSetNode(definition.selectionSet, variableDefinitions);\n break;\n }\n });\n fragments.validate();\n return operationFromAST(schema, operation, fragments);\n}\nexports.operationFromDocument = operationFromDocument;\nfunction operationFromAST(schema, operation, fragments) {\n var _a;\n const rootType = schema.schemaDefinition.root(operation.operation);\n validate(rootType, () => `The schema has no \"${operation.operation}\" root type defined`);\n const variableDefinitions = operation.variableDefinitions ? (0, definitions_1.variableDefinitionsFromAST)(schema, operation.variableDefinitions) : new definitions_1.VariableDefinitions();\n return new Operation(operation.operation, parseSelectionSet(rootType.type, operation.selectionSet, variableDefinitions, fragments), variableDefinitions, (_a = operation.name) === null || _a === void 0 ? void 0 : _a.value);\n}\nfunction parseOperation(schema, operation, operationName) {\n return operationFromDocument(schema, (0, graphql_1.parse)(operation), operationName);\n}\nexports.parseOperation = parseOperation;\nfunction parseSelectionSet(parentType, source, variableDefinitions = new definitions_1.VariableDefinitions(), fragments, fieldAccessor = (type, name) => type.field(name)) {\n const node = typeof source === 'string'\n ? parseOperationAST(source.trim().startsWith('{') ? source : `{${source}}`).selectionSet\n : source;\n const selectionSet = new SelectionSet(parentType, fragments);\n selectionSet.addSelectionSetNode(node, variableDefinitions, fieldAccessor);\n selectionSet.validate();\n return selectionSet;\n}\nexports.parseSelectionSet = parseSelectionSet;\nfunction parseOperationAST(source) {\n const parsed = (0, graphql_1.parse)(source);\n validate(parsed.definitions.length === 1, () => 'Selections should contain a single definitions, found ' + parsed.definitions.length);\n const def = parsed.definitions[0];\n validate(def.kind === graphql_1.Kind.OPERATION_DEFINITION, () => 'Expected an operation definition but got a ' + def.kind);\n return def;\n}\nfunction operationToDocument(operation) {\n var _a;\n const operationAST = {\n kind: graphql_1.Kind.OPERATION_DEFINITION,\n operation: operation.rootKind,\n selectionSet: operation.selectionSet.toSelectionSetNode(),\n variableDefinitions: operation.variableDefinitions.toVariableDefinitionNodes(),\n };\n const fragmentASTs = operation.selectionSet.fragments\n ? (_a = operation.selectionSet.fragments) === null || _a === void 0 ? void 0 : _a.toFragmentDefinitionNodes()\n : [];\n return {\n kind: graphql_1.Kind.DOCUMENT,\n definitions: [operationAST].concat(fragmentASTs),\n };\n}\nexports.operationToDocument = operationToDocument;\n//# sourceMappingURL=operations.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.REMOVED_ERRORS = exports.ERRORS = exports.ERROR_CATEGORIES = exports.errorCodeDef = exports.errorCode = void 0;\nconst graphql_1 = require(\"graphql\");\nconst utils_1 = require(\"./utils\");\nconst FED1_CODE = '0.x';\nconst makeCodeDefinition = (code, description, metadata = DEFAULT_METADATA) => ({\n code,\n description,\n metadata,\n err: ({ message, nodes, source, positions, path, originalError, extensions, }) => new graphql_1.GraphQLError(message, nodes, source, positions, path, originalError, {\n ...extensions,\n code,\n }),\n});\nconst DEFAULT_METADATA = { addedIn: '2.0.0' };\nconst makeErrorCodeCategory = (extractCode, makeDescription, metadata = DEFAULT_METADATA) => ({\n createCode: (element) => {\n return makeCodeDefinition(extractCode(element), makeDescription(element), metadata);\n },\n get: (element) => {\n const def = codeDefByCode[extractCode(element)];\n (0, utils_1.assert)(def, `Unexpected element: ${element}`);\n return def;\n }\n});\nconst makeFederationDirectiveErrorCodeCategory = (codeSuffix, makeDescription, metadata = DEFAULT_METADATA) => makeErrorCodeCategory((directive) => `${directive.toLocaleUpperCase()}_${codeSuffix}`, makeDescription, metadata);\nfunction errorCode(e) {\n if (!('code' in e.extensions)) {\n return undefined;\n }\n return e.extensions.code;\n}\nexports.errorCode = errorCode;\nfunction errorCodeDef(e) {\n const code = typeof e === 'string' ? e : errorCode(e);\n return code ? codeDefByCode[code] : undefined;\n}\nexports.errorCodeDef = errorCodeDef;\nconst INVALID_GRAPHQL = makeCodeDefinition('INVALID_GRAPHQL', 'A schema is invalid GraphQL: it violates one of the rule of the specification.');\nconst TAG_DEFINITION_INVALID = makeCodeDefinition('TAG_DIRECTIVE_DEFINITION_INVALID', 'The @tag directive has an invalid defintion in the schema.', { addedIn: FED1_CODE });\nconst FIELDS_HAS_ARGS = makeFederationDirectiveErrorCodeCategory('FIELDS_HAS_ARGS', (directive) => `The \\`fields\\` argument of a \\`@${directive}\\` directive includes a field defined with arguments (which is not currently supported).`);\nconst KEY_FIELDS_HAS_ARGS = FIELDS_HAS_ARGS.createCode('key');\nconst PROVIDES_FIELDS_HAS_ARGS = FIELDS_HAS_ARGS.createCode('provides');\nconst REQUIRES_FIELDS_HAS_ARGS = FIELDS_HAS_ARGS.createCode('requires');\nconst DIRECTIVE_FIELDS_MISSING_EXTERNAL = makeFederationDirectiveErrorCodeCategory('FIELDS_MISSING_EXTERNAL', (directive) => `The \\`fields\\` argument of a \\`@${directive}\\` directive includes a field that is not marked as \\`@external\\`.`, { addedIn: FED1_CODE });\nconst PROVIDES_MISSING_EXTERNAL = DIRECTIVE_FIELDS_MISSING_EXTERNAL.createCode('provides');\nconst REQUIRES_MISSING_EXTERNAL = DIRECTIVE_FIELDS_MISSING_EXTERNAL.createCode('requires');\nconst DIRECTIVE_UNSUPPORTED_ON_INTERFACE = makeFederationDirectiveErrorCodeCategory('UNSUPPORTED_ON_INTERFACE', (directive) => `A \\`@${directive}\\` directive is used on an interface, which is not (yet) supported.`);\nconst KEY_UNSUPPORTED_ON_INTERFACE = DIRECTIVE_UNSUPPORTED_ON_INTERFACE.createCode('key');\nconst PROVIDES_UNSUPPORTED_ON_INTERFACE = DIRECTIVE_UNSUPPORTED_ON_INTERFACE.createCode('provides');\nconst REQUIRES_UNSUPPORTED_ON_INTERFACE = DIRECTIVE_UNSUPPORTED_ON_INTERFACE.createCode('requires');\nconst EXTERNAL_UNUSED = makeCodeDefinition('EXTERNAL_UNUSED', 'An `@external` field is not being used by any instance of `@key`, `@requires`, `@provides` or to satisfy an interface implememtation.', { addedIn: FED1_CODE });\nconst PROVIDES_ON_NON_OBJECT_FIELD = makeCodeDefinition('PROVIDES_ON_NON_OBJECT_FIELD', 'A `@provides` directive is used to mark a field whose base type is not an object type.');\nconst DIRECTIVE_INVALID_FIELDS_TYPE = makeFederationDirectiveErrorCodeCategory('INVALID_FIELDS_TYPE', (directive) => `The value passed to the \\`fields\\` argument of a \\`@${directive}\\` directive is not a string.`);\nconst KEY_INVALID_FIELDS_TYPE = DIRECTIVE_INVALID_FIELDS_TYPE.createCode('key');\nconst PROVIDES_INVALID_FIELDS_TYPE = DIRECTIVE_INVALID_FIELDS_TYPE.createCode('provides');\nconst REQUIRES_INVALID_FIELDS_TYPE = DIRECTIVE_INVALID_FIELDS_TYPE.createCode('requires');\nconst DIRECTIVE_INVALID_FIELDS = makeFederationDirectiveErrorCodeCategory('INVALID_FIELDS', (directive) => `The \\`fields\\` argument of a \\`@${directive}\\` directive is invalid (it has invalid syntax, includes unknown fields, ...).`);\nconst KEY_INVALID_FIELDS = DIRECTIVE_INVALID_FIELDS.createCode('key');\nconst PROVIDES_INVALID_FIELDS = DIRECTIVE_INVALID_FIELDS.createCode('provides');\nconst REQUIRES_INVALID_FIELDS = DIRECTIVE_INVALID_FIELDS.createCode('requires');\nconst KEY_FIELDS_SELECT_INVALID_TYPE = makeCodeDefinition('KEY_FIELDS_SELECT_INVALID_TYPE', 'The `fields` argument of `@key` directive includes a field whose type is a list, interface, or union type. Fields of these types cannot be part of a `@key`', { addedIn: FED1_CODE });\nconst ROOT_TYPE_USED = makeErrorCodeCategory((kind) => `ROOT_${kind.toLocaleUpperCase()}_USED`, (kind) => `A subgraph's schema defines a type with the name \\`${kind}\\`, while also specifying a _different_ type name as the root query object. This is not allowed.`, { addedIn: FED1_CODE });\nconst ROOT_QUERY_USED = ROOT_TYPE_USED.createCode('query');\nconst ROOT_MUTATION_USED = ROOT_TYPE_USED.createCode('mutation');\nconst ROOT_SUBSCRIPTION_USED = ROOT_TYPE_USED.createCode('subscription');\nconst INVALID_SUBGRAPH_NAME = makeCodeDefinition('INVALID_SUBGRAPH_NAME', 'A subgraph name is invalid (subgraph names cannot be a single underscore (\"_\")).');\nconst NO_QUERIES = makeCodeDefinition('NO_QUERIES', 'None of the composed subgraphs expose any query.');\nconst INTERFACE_FIELD_NO_IMPLEM = makeCodeDefinition('INTERFACE_FIELD_NO_IMPLEM', 'After subgraph merging, an implemenation is missing a field of one of the interface it implements (which can happen for valid subgraphs).');\nconst TYPE_KIND_MISMATCH = makeCodeDefinition('TYPE_KIND_MISMATCH', 'A type has the same name in different subgraphs, but a different kind. For instance, one definition is an object type but another is an interface.', { ...DEFAULT_METADATA, replaces: ['VALUE_TYPE_KIND_MISMATCH', 'EXTENSION_OF_WRONG_KIND', 'ENUM_MISMATCH_TYPE'] });\nconst EXTERNAL_TYPE_MISMATCH = makeCodeDefinition('EXTERNAL_TYPE_MISMATCH', 'An `@external` field has a type that is incompatible with the declaration(s) of that field in other subgraphs.', { addedIn: FED1_CODE });\nconst EXTERNAL_ARGUMENT_MISSING = makeCodeDefinition('EXTERNAL_ARGUMENT_MISSING', 'An `@external` field is missing some arguments present in the declaration(s) of that field in other subgraphs.');\nconst EXTERNAL_ARGUMENT_TYPE_MISMATCH = makeCodeDefinition('EXTERNAL_ARGUMENT_TYPE_MISMATCH', 'An `@external` field declares an argument with a type that is incompatible with the corresponding argument in the declaration(s) of that field in other subgtaphs.');\nconst EXTERNAL_ARGUMENT_DEFAULT_MISMATCH = makeCodeDefinition('EXTERNAL_ARGUMENT_DEFAULT_MISMATCH', 'An `@external` field declares an argument with a default that is incompatible with the corresponding argument in the declaration(s) of that field in other subgtaphs.');\nconst FIELD_TYPE_MISMATCH = makeCodeDefinition('FIELD_TYPE_MISMATCH', 'A field has a type that is incompatible with other declarations of that field in other subgraphs.', { ...DEFAULT_METADATA, replaces: ['VALUE_TYPE_FIELD_TYPE_MISMATCH'] });\nconst ARGUMENT_TYPE_MISMATCH = makeCodeDefinition('FIELD_ARGUMENT_TYPE_MISMATCH', 'An argument (of a field/directive) has a type that is incompatible with that of other declarations of that same argument in other subgraphs.', { ...DEFAULT_METADATA, replaces: ['VALUE_TYPE_INPUT_VALUE_MISMATCH'] });\nconst INPUT_FIELD_DEFAULT_MISMATCH = makeCodeDefinition('INPUT_FIELD_DEFAULT_MISMATCH', 'An input field has a default value that is incompatible with other declarations of that field in other subgraphs.');\nconst ARGUMENT_DEFAULT_MISMATCH = makeCodeDefinition('FIELD_ARGUMENT_DEFAULT_MISMATCH', 'An argument (of a field/directive) has a default value that is incompatible with that of other declarations of that same argument in other subgraphs.');\nconst EXTENSION_WITH_NO_BASE = makeCodeDefinition('EXTENSION_WITH_NO_BASE', 'A subgraph is attempting to `extend` a type that is not originally defined in any known subgraph.', { addedIn: FED1_CODE });\nconst EXTERNAL_MISSING_ON_BASE = makeCodeDefinition('EXTERNAL_MISSING_ON_BASE', 'A field is marked as `@external` in a subgraph but with no non-external declaration in any other subgraph.', { addedIn: FED1_CODE });\nconst INTERFACE_FIELD_IMPLEM_TYPE_MISMATCH = makeCodeDefinition('INTERFACE_FIELD_IMPLEM_TYPE_MISMATCH', 'For an interface field, some of its concrete implementations have @external or @requires and there is difference in those implementations return type (which is currently not supported; see https://github.com/apollographql/federation/issues/1257)');\nconst SATISFIABILITY_ERROR = makeCodeDefinition('SATISFIABILITY_ERROR', 'Subgraphs can be merged, but the resulting supergraph API would have queries that cannot be satisfied by those subgraphs.');\nexports.ERROR_CATEGORIES = {\n DIRECTIVE_FIELDS_MISSING_EXTERNAL,\n DIRECTIVE_UNSUPPORTED_ON_INTERFACE,\n DIRECTIVE_INVALID_FIELDS_TYPE,\n DIRECTIVE_INVALID_FIELDS,\n FIELDS_HAS_ARGS,\n ROOT_TYPE_USED,\n};\nexports.ERRORS = {\n INVALID_GRAPHQL,\n TAG_DEFINITION_INVALID,\n KEY_FIELDS_HAS_ARGS,\n PROVIDES_FIELDS_HAS_ARGS,\n REQUIRES_FIELDS_HAS_ARGS,\n PROVIDES_MISSING_EXTERNAL,\n REQUIRES_MISSING_EXTERNAL,\n KEY_UNSUPPORTED_ON_INTERFACE,\n PROVIDES_UNSUPPORTED_ON_INTERFACE,\n REQUIRES_UNSUPPORTED_ON_INTERFACE,\n EXTERNAL_UNUSED,\n PROVIDES_ON_NON_OBJECT_FIELD,\n KEY_INVALID_FIELDS_TYPE,\n PROVIDES_INVALID_FIELDS_TYPE,\n REQUIRES_INVALID_FIELDS_TYPE,\n KEY_INVALID_FIELDS,\n PROVIDES_INVALID_FIELDS,\n REQUIRES_INVALID_FIELDS,\n KEY_FIELDS_SELECT_INVALID_TYPE,\n ROOT_QUERY_USED,\n ROOT_MUTATION_USED,\n ROOT_SUBSCRIPTION_USED,\n INVALID_SUBGRAPH_NAME,\n NO_QUERIES,\n INTERFACE_FIELD_NO_IMPLEM,\n TYPE_KIND_MISMATCH,\n EXTERNAL_TYPE_MISMATCH,\n EXTERNAL_ARGUMENT_MISSING,\n EXTERNAL_ARGUMENT_TYPE_MISMATCH,\n EXTERNAL_ARGUMENT_DEFAULT_MISMATCH,\n FIELD_TYPE_MISMATCH,\n ARGUMENT_TYPE_MISMATCH,\n INPUT_FIELD_DEFAULT_MISMATCH,\n ARGUMENT_DEFAULT_MISMATCH,\n EXTENSION_WITH_NO_BASE,\n EXTERNAL_MISSING_ON_BASE,\n INTERFACE_FIELD_IMPLEM_TYPE_MISMATCH,\n SATISFIABILITY_ERROR,\n};\nconst codeDefByCode = Object.values(exports.ERRORS).reduce((obj, codeDef) => { obj[codeDef.code] = codeDef; return obj; }, {});\nexports.REMOVED_ERRORS = [\n ['KEY_FIELDS_MISSING_ON_BASE', 'Keys can now use any field from any other subgraph.'],\n ['KEY_FIELDS_MISSING_EXTERNAL', 'Using `@external` for key fields is now decouraged, unless the field is truly meant to be external.'],\n ['KEY_MISSING_ON_BASE', 'Each subgraph is now free to declare a key only if it needs it.'],\n ['MULTIPLE_KEYS_ON_EXTENSION', 'Every subgraph can have multiple keys, as necessary.'],\n ['KEY_NOT_SPECIFIED', 'Each subgraph can declare key independently of any other subgraph.'],\n ['EXTERNAL_USED_ON_BASE', 'As there is not type ownership anymore, there is also no particular limitation as to where a field can be external.'],\n ['PROVIDES_NOT_ON_ENTITY', '@provides can now be used on any type.'],\n ['REQUIRES_FIELDS_MISSING_ON_BASE', 'Fields in @requires can now be from any subgraph.'],\n ['REQUIRES_USED_ON_BASE', 'As there is not type ownership anymore, there is also no particular limitation as to which subgraph can use a @requires.'],\n ['DUPLICATE_SCALAR_DEFINITION', 'As duplicate scalar definitions is invalid GraphQL, this will now be an error with code `INVALID_GRAPHQL`'],\n ['DUPLICATE_ENUM_DEFINITION', 'As duplicate enum definitions is invalid GraphQL, this will now be an error with code `INVALID_GRAPHQL`'],\n ['DUPLICATE_ENUM_VALUE', 'As duplicate enum values is invalid GraphQL, this will now be an error with code `INVALID_GRAPHQL`'],\n ['ENUM_MISMATCH', 'Subgraph definitions for an enum are now merged by composition'],\n ['VALUE_TYPE_NO_ENTITY', 'There is no strong different between entity and value types in the model (they are just usage pattern) and a type can have keys in one subgraph but not another.'],\n ['VALUE_TYPE_UNION_TYPES_MISMATCH', 'Subgraph definitions for an union are now merged by composition'],\n ['PROVIDES_FIELDS_SELECT_INVALID_TYPE', '@provides can now be used on field of interface, union and list types'],\n ['RESERVED_FIELD_USED', 'This error was previously not correctly enforced: the _service and _entities, if present, were overriden; this is still the case'],\n];\n//# sourceMappingURL=error.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.TAG_VERSIONS = exports.TagSpecDefinition = exports.tagLocations = exports.tagIdentity = void 0;\nconst graphql_1 = require(\"graphql\");\nconst coreSpec_1 = require(\"./coreSpec\");\nconst definitions_1 = require(\"./definitions\");\nconst error_1 = require(\"./error\");\nconst types_1 = require(\"./types\");\nconst utils_1 = require(\"./utils\");\nexports.tagIdentity = 'https://specs.apollo.dev/tag';\nexports.tagLocations = [\n graphql_1.DirectiveLocation.FIELD_DEFINITION,\n graphql_1.DirectiveLocation.OBJECT,\n graphql_1.DirectiveLocation.INTERFACE,\n graphql_1.DirectiveLocation.UNION,\n];\nconst printedTagDefinition = 'directive @tag(name: String!) repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION';\nclass TagSpecDefinition extends coreSpec_1.FeatureDefinition {\n constructor(version) {\n super(new coreSpec_1.FeatureUrl(exports.tagIdentity, 'tag', version));\n }\n addElementsToSchema(schema) {\n const directive = this.addDirective(schema, 'tag').addLocations(...exports.tagLocations);\n directive.addArgument(\"name\", new definitions_1.NonNullType(schema.stringType()));\n }\n tagDirective(schema) {\n return this.directive(schema, 'tag');\n }\n checkCompatibleDirective(definition) {\n (0, utils_1.assert)(definition.name === 'tag', () => `This method should not have been called on directive named ${definition.name}`);\n const hasUnknownArguments = Object.keys(definition.arguments()).length > 1;\n const nameArg = definition.argument('name');\n const hasValidNameArg = nameArg && (0, types_1.sameType)(nameArg.type, new definitions_1.NonNullType(definition.schema().stringType()));\n const hasValidLocations = definition.locations.every(loc => exports.tagLocations.includes(loc));\n if (hasUnknownArguments || !hasValidNameArg || !hasValidLocations) {\n return error_1.ERRORS.TAG_DEFINITION_INVALID.err({\n message: `Found invalid @tag directive definition. Please ensure the directive definition in your schema's definitions matches the following:\\n\\t${printedTagDefinition}`,\n });\n }\n return undefined;\n }\n}\nexports.TagSpecDefinition = TagSpecDefinition;\nexports.TAG_VERSIONS = new coreSpec_1.FeatureDefinitions(exports.tagIdentity)\n .add(new TagSpecDefinition(new coreSpec_1.FeatureVersion(0, 1)));\n//# sourceMappingURL=tagSpec.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.ExternalTester = exports.addSubgraphToError = exports.addSubgraphToASTNode = exports.Subgraph = exports.Subgraphs = exports.subgraphsFromServiceList = exports.parseFieldSetArgument = exports.buildSubgraph = exports.isEntityType = exports.isFederationDirective = exports.isFederationField = exports.isFederationTypeName = exports.isFederationType = exports.isFederationSubgraphSchema = exports.federationBuiltIns = exports.FederationBuiltIns = exports.FEDERATION_RESERVED_SUBGRAPH_NAME = exports.entitiesFieldName = exports.serviceFieldName = exports.tagDirectiveName = exports.providesDirectiveName = exports.requiresDirectiveName = exports.externalDirectiveName = exports.extendsDirectiveName = exports.keyDirectiveName = exports.fieldSetTypeName = exports.anyTypeName = exports.serviceTypeName = exports.entityTypeName = void 0;\nconst definitions_1 = require(\"./definitions\");\nconst utils_1 = require(\"./utils\");\nconst specifiedRules_1 = require(\"graphql/validation/specifiedRules\");\nconst graphql_1 = require(\"graphql\");\nconst print_1 = require(\"./print\");\nconst KnownTypeNamesInFederationRule_1 = require(\"./validation/KnownTypeNamesInFederationRule\");\nconst buildSchema_1 = require(\"./buildSchema\");\nconst operations_1 = require(\"./operations\");\nconst tagSpec_1 = require(\"./tagSpec\");\nconst error_1 = require(\"./error\");\nexports.entityTypeName = '_Entity';\nexports.serviceTypeName = '_Service';\nexports.anyTypeName = '_Any';\nexports.fieldSetTypeName = '_FieldSet';\nexports.keyDirectiveName = 'key';\nexports.extendsDirectiveName = 'extends';\nexports.externalDirectiveName = 'external';\nexports.requiresDirectiveName = 'requires';\nexports.providesDirectiveName = 'provides';\nexports.tagDirectiveName = 'tag';\nexports.serviceFieldName = '_service';\nexports.entitiesFieldName = '_entities';\nconst tagSpec = tagSpec_1.TAG_VERSIONS.latest();\nexports.FEDERATION_RESERVED_SUBGRAPH_NAME = '_';\nconst FEDERATION_TYPES = [\n exports.entityTypeName,\n exports.serviceTypeName,\n exports.anyTypeName,\n exports.fieldSetTypeName\n];\nconst FEDERATION_DIRECTIVES = [\n exports.keyDirectiveName,\n exports.extendsDirectiveName,\n exports.externalDirectiveName,\n exports.requiresDirectiveName,\n exports.providesDirectiveName,\n exports.tagDirectiveName\n];\nconst FEDERATION_ROOT_FIELDS = [\n exports.serviceFieldName,\n exports.entitiesFieldName\n];\nconst FEDERATION_OMITTED_VALIDATION_RULES = [\n graphql_1.PossibleTypeExtensionsRule,\n graphql_1.KnownTypeNamesRule\n];\nconst FEDERATION_SPECIFIC_VALIDATION_RULES = [\n KnownTypeNamesInFederationRule_1.KnownTypeNamesInFederationRule\n];\nconst FEDERATION_VALIDATION_RULES = specifiedRules_1.specifiedSDLRules.filter(rule => !FEDERATION_OMITTED_VALIDATION_RULES.includes(rule)).concat(FEDERATION_SPECIFIC_VALIDATION_RULES);\nfunction validateFieldSetSelections(directiveName, selectionSet, hasExternalInParents, externalTester, externalFieldCoordinatesCollector, allowOnNonExternalLeafFields) {\n for (const selection of selectionSet.selections()) {\n if (selection.kind === 'FieldSelection') {\n const field = selection.element().definition;\n const isExternal = externalTester.isExternal(field);\n if (isExternal) {\n externalFieldCoordinatesCollector.push(field.coordinate);\n }\n if (field.hasArguments()) {\n throw error_1.ERROR_CATEGORIES.FIELDS_HAS_ARGS.get(directiveName).err({\n message: `field ${field.coordinate} cannot be included because it has arguments (fields with argument are not allowed in @${directiveName})`,\n nodes: field.sourceAST\n });\n }\n const mustBeExternal = !selection.selectionSet && !allowOnNonExternalLeafFields && !hasExternalInParents;\n if (!isExternal && mustBeExternal) {\n const errorCode = error_1.ERROR_CATEGORIES.DIRECTIVE_FIELDS_MISSING_EXTERNAL.get(directiveName);\n if (externalTester.isFakeExternal(field)) {\n throw errorCode.err({\n message: `field \"${field.coordinate}\" should not be part of a @${directiveName} since it is already \"effectively\" provided by this subgraph `\n + `(while it is marked @${exports.externalDirectiveName}, it is a @${exports.keyDirectiveName} field of an extension type, which are not internally considered external for historical/backward compatibility reasons)`,\n nodes: field.sourceAST\n });\n }\n else {\n throw errorCode.err({\n message: `field \"${field.coordinate}\" should not be part of a @${directiveName} since it is already provided by this subgraph (it is not marked @${exports.externalDirectiveName})`,\n nodes: field.sourceAST\n });\n }\n }\n if (selection.selectionSet) {\n let newHasExternalInParents = hasExternalInParents || isExternal;\n const parentType = field.parent;\n if (!newHasExternalInParents && (0, definitions_1.isInterfaceType)(parentType)) {\n for (const implem of parentType.possibleRuntimeTypes()) {\n const fieldInImplem = implem.field(field.name);\n if (fieldInImplem && externalTester.isExternal(fieldInImplem)) {\n newHasExternalInParents = true;\n break;\n }\n }\n }\n validateFieldSetSelections(directiveName, selection.selectionSet, newHasExternalInParents, externalTester, externalFieldCoordinatesCollector, allowOnNonExternalLeafFields);\n }\n }\n else {\n validateFieldSetSelections(directiveName, selection.selectionSet, hasExternalInParents, externalTester, externalFieldCoordinatesCollector, allowOnNonExternalLeafFields);\n }\n }\n}\nfunction validateFieldSet(type, directive, externalTester, externalFieldCoordinatesCollector, allowOnNonExternalLeafFields, onFields) {\n var _a;\n try {\n const fieldAcessor = onFields\n ? (type, fieldName) => {\n const field = type.field(fieldName);\n if (field) {\n onFields(field);\n }\n return field;\n }\n : undefined;\n const selectionSet = parseFieldSetArgument(type, directive, fieldAcessor);\n try {\n validateFieldSetSelections(directive.name, selectionSet, false, externalTester, externalFieldCoordinatesCollector, allowOnNonExternalLeafFields);\n return undefined;\n }\n catch (e) {\n if (!(e instanceof graphql_1.GraphQLError)) {\n throw e;\n }\n const nodes = (0, definitions_1.sourceASTs)(directive);\n if (e.nodes) {\n nodes.push(...e.nodes);\n }\n const codeDef = (_a = (0, error_1.errorCodeDef)(e)) !== null && _a !== void 0 ? _a : error_1.ERROR_CATEGORIES.DIRECTIVE_INVALID_FIELDS.get(directive.name);\n return codeDef.err({\n message: `${fieldSetErrorDescriptor(directive)}: ${e.message.trim()}`,\n nodes,\n originalError: e,\n });\n }\n }\n catch (e) {\n if (e instanceof graphql_1.GraphQLError) {\n return e;\n }\n else {\n throw e;\n }\n }\n}\nfunction fieldSetErrorDescriptor(directive) {\n return `On ${fieldSetTargetDescription(directive)}, for ${directiveStrUsingASTIfPossible(directive)}`;\n}\nfunction directiveStrUsingASTIfPossible(directive) {\n return directive.sourceAST ? (0, graphql_1.print)(directive.sourceAST) : directive.toString();\n}\nfunction fieldSetTargetDescription(directive) {\n var _a;\n const targetKind = directive.parent instanceof definitions_1.FieldDefinition ? \"field\" : \"type\";\n return `${targetKind} \"${(_a = directive.parent) === null || _a === void 0 ? void 0 : _a.coordinate}\"`;\n}\nfunction validateAllFieldSet(definition, targetTypeExtractor, errorCollector, externalTester, externalFieldCoordinatesCollector, isOnParentType, allowOnNonExternalLeafFields, onFields) {\n for (const application of definition.applications()) {\n const elt = application.parent;\n const type = targetTypeExtractor(elt);\n const parentType = isOnParentType ? type : elt.parent;\n if ((0, definitions_1.isInterfaceType)(parentType)) {\n const code = error_1.ERROR_CATEGORIES.DIRECTIVE_UNSUPPORTED_ON_INTERFACE.get(definition.name);\n errorCollector.push(code.err({\n message: isOnParentType\n ? `Cannot use ${definition.coordinate} on interface \"${parentType.coordinate}\": ${definition.coordinate} is not yet supported on interfaces`\n : `Cannot use ${definition.coordinate} on ${fieldSetTargetDescription(application)} of parent type \"${parentType}\": ${definition.coordinate} is not yet supported within interfaces`,\n nodes: (0, definitions_1.sourceASTs)(application).concat(isOnParentType ? [] : (0, definitions_1.sourceASTs)(type)),\n }));\n }\n const error = validateFieldSet(type, application, externalTester, externalFieldCoordinatesCollector, allowOnNonExternalLeafFields, onFields);\n if (error) {\n errorCollector.push(error);\n }\n }\n}\nfunction validateAllExternalFieldsUsed(schema, externalTester, allExternalFieldsUsedInFederationDirectivesCoordinates, errorCollector) {\n for (const type of schema.types()) {\n if (!(0, definitions_1.isObjectType)(type) && !(0, definitions_1.isInterfaceType)(type)) {\n continue;\n }\n for (const field of type.fields()) {\n if (!externalTester.isExternal(field) || allExternalFieldsUsedInFederationDirectivesCoordinates.includes(field.coordinate)) {\n continue;\n }\n if (!isFieldSatisfyingInterface(field)) {\n errorCollector.push(error_1.ERRORS.EXTERNAL_UNUSED.err({\n message: `Field \"${field.coordinate}\" is marked @external but is not used in any federation directive (@key, @provides, @requires) or to satisfy an interface;`\n + ' the field declaration has no use and should be removed (or the field should not be @external).',\n nodes: field.sourceAST,\n }));\n }\n }\n }\n}\nfunction isFieldSatisfyingInterface(field) {\n return field.parent.interfaces().some(itf => itf.field(field.name));\n}\nfunction validateInterfaceRuntimeImplementationFieldsTypes(itf, externalTester, errorCollector) {\n const runtimeTypes = itf.possibleRuntimeTypes();\n for (const field of itf.fields()) {\n const withExternalOrRequires = [];\n const typeToImplems = new utils_1.MultiMap();\n const nodes = [];\n for (const type of runtimeTypes) {\n const implemField = type.field(field.name);\n if (!implemField)\n continue;\n if (implemField.sourceAST) {\n nodes.push(implemField.sourceAST);\n }\n if (externalTester.isExternal(implemField) || implemField.hasAppliedDirective(exports.requiresDirectiveName)) {\n withExternalOrRequires.push(implemField);\n }\n const returnType = implemField.type;\n typeToImplems.add(returnType.toString(), implemField);\n }\n if (withExternalOrRequires.length > 0 && typeToImplems.size > 1) {\n const typeToImplemsArray = [...typeToImplems.entries()];\n errorCollector.push(error_1.ERRORS.INTERFACE_FIELD_IMPLEM_TYPE_MISMATCH.err({\n message: `Some of the runtime implementations of interface field \"${field.coordinate}\" are marked @external or have a @require (${withExternalOrRequires.map(printFieldCoordinate)}) so all the implementations should use the same type (a current limitation of federation; see https://github.com/apollographql/federation/issues/1257), but ${formatFieldsToReturnType(typeToImplemsArray[0])} while ${(0, utils_1.joinStrings)(typeToImplemsArray.slice(1).map(formatFieldsToReturnType), ' and ')}.`,\n nodes\n }));\n }\n }\n}\nconst printFieldCoordinate = (f) => `\"${f.coordinate}\"`;\nfunction formatFieldsToReturnType([type, implems]) {\n return `${(0, utils_1.joinStrings)(implems.map(printFieldCoordinate))} ${implems.length == 1 ? 'has' : 'have'} type \"${type}\"`;\n}\nclass FederationBuiltIns extends definitions_1.BuiltIns {\n addBuiltInTypes(schema) {\n super.addBuiltInTypes(schema);\n this.addBuiltInUnion(schema, exports.entityTypeName);\n this.addBuiltInObject(schema, exports.serviceTypeName).addField('sdl', schema.stringType());\n this.addBuiltInScalar(schema, exports.anyTypeName);\n this.addBuiltInScalar(schema, exports.fieldSetTypeName);\n }\n addBuiltInDirectives(schema) {\n super.addBuiltInDirectives(schema);\n const fieldSetType = new definitions_1.NonNullType(schema.type(exports.fieldSetTypeName));\n const keyDirective = this.addBuiltInDirective(schema, exports.keyDirectiveName)\n .addLocations(graphql_1.DirectiveLocation.OBJECT, graphql_1.DirectiveLocation.INTERFACE);\n keyDirective.repeatable = true;\n keyDirective.addArgument('fields', fieldSetType);\n this.addBuiltInDirective(schema, exports.extendsDirectiveName)\n .addLocations(graphql_1.DirectiveLocation.OBJECT, graphql_1.DirectiveLocation.INTERFACE);\n this.addBuiltInDirective(schema, exports.externalDirectiveName)\n .addLocations(graphql_1.DirectiveLocation.OBJECT, graphql_1.DirectiveLocation.FIELD_DEFINITION);\n for (const name of [exports.requiresDirectiveName, exports.providesDirectiveName]) {\n this.addBuiltInDirective(schema, name)\n .addLocations(graphql_1.DirectiveLocation.FIELD_DEFINITION)\n .addArgument('fields', fieldSetType);\n }\n const directive = this.addBuiltInDirective(schema, 'tag').addLocations(...tagSpec_1.tagLocations);\n directive.addArgument(\"name\", new definitions_1.NonNullType(schema.stringType()));\n }\n prepareValidation(schema) {\n super.prepareValidation(schema);\n let entityType = schema.type(exports.entityTypeName);\n if (!entityType.isBuiltIn) {\n if (entityType.membersCount() === 0) {\n entityType.remove();\n }\n entityType = schema.builtInTypes('UnionType', true).find(u => u.name === exports.entityTypeName);\n }\n entityType.clearTypes();\n for (const objectType of schema.types(\"ObjectType\")) {\n if (isEntityType(objectType)) {\n entityType.addType(objectType);\n }\n }\n const hasEntities = entityType.membersCount() > 0;\n if (!hasEntities) {\n entityType.remove();\n }\n const queryRoot = schema.schemaDefinition.root(\"query\");\n const queryType = queryRoot ? queryRoot.type : schema.addType(new definitions_1.ObjectType(\"Query\"));\n const entityField = queryType.field(exports.entitiesFieldName);\n if (hasEntities) {\n const anyType = schema.type(exports.anyTypeName);\n (0, utils_1.assert)(anyType, `The schema should have the _Any type`);\n const entityFieldType = new definitions_1.NonNullType(new definitions_1.ListType(entityType));\n if (!entityField) {\n this.addBuiltInField(queryType, exports.entitiesFieldName, entityFieldType)\n .addArgument('representations', new definitions_1.NonNullType(new definitions_1.ListType(new definitions_1.NonNullType(anyType))));\n }\n else if (!entityField.type) {\n entityField.type = entityType;\n }\n }\n else if (entityField) {\n entityField.remove();\n }\n if (!queryType.field(exports.serviceFieldName)) {\n this.addBuiltInField(queryType, exports.serviceFieldName, schema.type(exports.serviceTypeName));\n }\n }\n onValidation(schema) {\n var _a;\n const errors = super.onValidation(schema, [exports.tagDirectiveName]);\n for (const k of definitions_1.allSchemaRootKinds) {\n const type = (_a = schema.schemaDefinition.root(k)) === null || _a === void 0 ? void 0 : _a.type;\n const defaultName = (0, definitions_1.defaultRootName)(k);\n if (type && type.name !== defaultName) {\n const existing = schema.type(defaultName);\n if (existing) {\n errors.push(error_1.ERROR_CATEGORIES.ROOT_TYPE_USED.get(k).err({\n message: `The schema has a type named \"${defaultName}\" but it is not set as the ${k} root type (\"${type.name}\" is instead): `\n + 'this is not supported by federation. '\n + 'If a root type does not use its default name, there should be no other type with that default name.',\n nodes: (0, definitions_1.sourceASTs)(type, existing),\n }));\n }\n type.rename(defaultName);\n }\n }\n const externalTester = new ExternalTester(schema);\n const externalFieldsInFedDirectivesCoordinates = [];\n const keyDirective = this.keyDirective(schema);\n validateAllFieldSet(keyDirective, type => type, errors, externalTester, externalFieldsInFedDirectivesCoordinates, true, true, field => {\n if ((0, definitions_1.isListType)(field.type) || (0, definitions_1.isUnionType)(field.type) || (0, definitions_1.isInterfaceType)(field.type)) {\n let kind = field.type.kind;\n kind = kind.slice(0, kind.length - 'Type'.length);\n throw error_1.ERRORS.KEY_FIELDS_SELECT_INVALID_TYPE.err({\n message: `field \"${field.coordinate}\" is a ${kind} type which is not allowed in @key`\n });\n }\n });\n validateAllFieldSet(this.requiresDirective(schema), field => field.parent, errors, externalTester, externalFieldsInFedDirectivesCoordinates, false, false);\n validateAllFieldSet(this.providesDirective(schema), field => {\n if (externalTester.isExternal(field)) {\n throw new graphql_1.GraphQLError(`Cannot have both @provides and @external on field \"${field.coordinate}\"`, field.sourceAST);\n }\n const type = (0, definitions_1.baseType)(field.type);\n if (!(0, definitions_1.isCompositeType)(type)) {\n throw error_1.ERRORS.PROVIDES_ON_NON_OBJECT_FIELD.err({\n message: `Invalid @provides directive on field \"${field.coordinate}\": field has type \"${field.type}\" which is not a Composite Type`,\n nodes: field.sourceAST,\n });\n }\n return type;\n }, errors, externalTester, externalFieldsInFedDirectivesCoordinates, false, false);\n validateAllExternalFieldsUsed(schema, externalTester, externalFieldsInFedDirectivesCoordinates, errors);\n const tagDirective = this.tagDirective(schema);\n if (!tagDirective.isBuiltIn) {\n const error = tagSpec.checkCompatibleDirective(tagDirective);\n if (error) {\n errors.push(error);\n }\n }\n for (const itf of schema.types('InterfaceType')) {\n validateInterfaceRuntimeImplementationFieldsTypes(itf, externalTester, errors);\n }\n return errors;\n }\n validationRules() {\n return FEDERATION_VALIDATION_RULES;\n }\n keyDirective(schema) {\n return this.getTypedDirective(schema, exports.keyDirectiveName);\n }\n extendsDirective(schema) {\n return this.getTypedDirective(schema, exports.extendsDirectiveName);\n }\n externalDirective(schema) {\n return this.getTypedDirective(schema, exports.externalDirectiveName);\n }\n requiresDirective(schema) {\n return this.getTypedDirective(schema, exports.requiresDirectiveName);\n }\n providesDirective(schema) {\n return this.getTypedDirective(schema, exports.providesDirectiveName);\n }\n tagDirective(schema) {\n return this.getTypedDirective(schema, exports.tagDirectiveName);\n }\n maybeUpdateSubgraphDocument(schema, document) {\n document = super.maybeUpdateSubgraphDocument(schema, document);\n const definitions = document.definitions.concat();\n for (const directiveName of FEDERATION_DIRECTIVES) {\n const directive = schema.directive(directiveName);\n (0, utils_1.assert)(directive, 'This method should only have been called on a schema with federation built-ins');\n if (directive.isBuiltIn) {\n definitions.push((0, graphql_1.parse)((0, print_1.printDirectiveDefinition)(directive, print_1.defaultPrintOptions)).definitions[0]);\n }\n }\n return {\n kind: graphql_1.Kind.DOCUMENT,\n loc: document.loc,\n definitions\n };\n }\n}\nexports.FederationBuiltIns = FederationBuiltIns;\nexports.federationBuiltIns = new FederationBuiltIns();\nfunction isFederationSubgraphSchema(schema) {\n return schema.builtIns instanceof FederationBuiltIns;\n}\nexports.isFederationSubgraphSchema = isFederationSubgraphSchema;\nfunction isFederationType(type) {\n return isFederationTypeName(type.name);\n}\nexports.isFederationType = isFederationType;\nfunction isFederationTypeName(typeName) {\n return FEDERATION_TYPES.includes(typeName);\n}\nexports.isFederationTypeName = isFederationTypeName;\nfunction isFederationField(field) {\n var _a;\n if (field.parent === ((_a = field.schema().schemaDefinition.root(\"query\")) === null || _a === void 0 ? void 0 : _a.type)) {\n return FEDERATION_ROOT_FIELDS.includes(field.name);\n }\n return false;\n}\nexports.isFederationField = isFederationField;\nfunction isFederationDirective(directive) {\n return FEDERATION_DIRECTIVES.includes(directive.name);\n}\nexports.isFederationDirective = isFederationDirective;\nfunction isEntityType(type) {\n return type.kind == \"ObjectType\" && type.hasAppliedDirective(exports.keyDirectiveName);\n}\nexports.isEntityType = isEntityType;\nfunction buildSubgraph(name, source) {\n try {\n return typeof source === 'string'\n ? (0, buildSchema_1.buildSchema)(new graphql_1.Source(source, name), exports.federationBuiltIns)\n : (0, buildSchema_1.buildSchemaFromAST)(source, exports.federationBuiltIns);\n }\n catch (e) {\n if (e instanceof graphql_1.GraphQLError) {\n throw addSubgraphToError(e, name, error_1.ERRORS.INVALID_GRAPHQL);\n }\n else {\n throw e;\n }\n }\n}\nexports.buildSubgraph = buildSubgraph;\nfunction parseFieldSetArgument(parentType, directive, fieldAccessor = (type, name) => type.field(name)) {\n var _a;\n try {\n const selectionSet = (0, operations_1.parseSelectionSet)(parentType, validateFieldSetValue(directive), new definitions_1.VariableDefinitions(), undefined, fieldAccessor);\n selectionSet.validate();\n return selectionSet;\n }\n catch (e) {\n if (!(e instanceof graphql_1.GraphQLError)) {\n throw e;\n }\n const nodes = (0, definitions_1.sourceASTs)(directive);\n if (e.nodes) {\n nodes.push(...e.nodes);\n }\n let msg = e.message.trim();\n if (msg.startsWith('Cannot query field')) {\n if (msg.endsWith('.')) {\n msg = msg.slice(0, msg.length - 1);\n }\n if (directive.name === exports.keyDirectiveName) {\n msg = msg + ' (the field should be either be added to this subgraph or, if it should not be resolved by this subgraph, you need to add it to this subgraph with @external).';\n }\n else {\n msg = msg + ' (if the field is defined in another subgraph, you need to add it to this subgraph with @external).';\n }\n }\n const codeDef = (_a = (0, error_1.errorCodeDef)(e)) !== null && _a !== void 0 ? _a : error_1.ERROR_CATEGORIES.DIRECTIVE_INVALID_FIELDS.get(directive.name);\n throw codeDef.err({\n message: `${fieldSetErrorDescriptor(directive)}: ${msg}`,\n nodes,\n originalError: e,\n });\n }\n}\nexports.parseFieldSetArgument = parseFieldSetArgument;\nfunction validateFieldSetValue(directive) {\n var _a;\n const fields = directive.arguments().fields;\n const nodes = directive.sourceAST;\n if (typeof fields !== 'string') {\n throw error_1.ERROR_CATEGORIES.DIRECTIVE_INVALID_FIELDS_TYPE.get(directive.name).err({\n message: `Invalid value for argument \"${directive.definition.argument('fields').name}\": must be a string.`,\n nodes,\n });\n }\n if (nodes && nodes.kind === 'Directive') {\n for (const argNode of (_a = nodes.arguments) !== null && _a !== void 0 ? _a : []) {\n if (argNode.name.value === 'fields') {\n if (argNode.value.kind !== 'StringValue') {\n throw error_1.ERROR_CATEGORIES.DIRECTIVE_INVALID_FIELDS_TYPE.get(directive.name).err({\n message: `Invalid value for argument \"${directive.definition.argument('fields').name}\": must be a string.`,\n nodes,\n });\n }\n break;\n }\n }\n }\n return fields;\n}\nfunction subgraphsFromServiceList(serviceList) {\n var _a;\n let errors = [];\n const subgraphs = new Subgraphs();\n for (const service of serviceList) {\n try {\n subgraphs.add(service.name, (_a = service.url) !== null && _a !== void 0 ? _a : '', service.typeDefs);\n }\n catch (e) {\n const causes = (0, definitions_1.errorCauses)(e);\n if (causes) {\n errors = errors.concat(causes);\n }\n else {\n throw e;\n }\n }\n }\n return errors.length === 0 ? subgraphs : errors;\n}\nexports.subgraphsFromServiceList = subgraphsFromServiceList;\nclass Subgraphs {\n constructor() {\n this.subgraphs = new utils_1.OrderedMap();\n }\n add(subgraphOrName, url, schema) {\n const toAdd = typeof subgraphOrName === 'string'\n ? new Subgraph(subgraphOrName, url, schema instanceof definitions_1.Schema ? schema : buildSubgraph(subgraphOrName, schema))\n : subgraphOrName;\n if (toAdd.name === exports.FEDERATION_RESERVED_SUBGRAPH_NAME) {\n throw error_1.ERRORS.INVALID_SUBGRAPH_NAME.err({ message: `Invalid name ${exports.FEDERATION_RESERVED_SUBGRAPH_NAME} for a subgraph: this name is reserved` });\n }\n if (this.subgraphs.has(toAdd.name)) {\n throw new Error(`A subgraph named ${toAdd.name} already exists` + (toAdd.url ? ` (with url '${toAdd.url}')` : ''));\n }\n this.subgraphs.add(toAdd.name, toAdd);\n return toAdd;\n }\n get(name) {\n return this.subgraphs.get(name);\n }\n size() {\n return this.subgraphs.size;\n }\n names() {\n return this.subgraphs.keys();\n }\n values() {\n return this.subgraphs.values();\n }\n *[Symbol.iterator]() {\n for (const subgraph of this.subgraphs) {\n yield subgraph;\n }\n }\n toString() {\n return '[' + this.subgraphs.keys().join(', ') + ']';\n }\n}\nexports.Subgraphs = Subgraphs;\nclass Subgraph {\n constructor(name, url, schema, validateSchema = true) {\n this.name = name;\n this.url = url;\n this.schema = schema;\n if (validateSchema) {\n schema.validate();\n }\n }\n toString() {\n return `${this.name} (${this.url})`;\n }\n}\nexports.Subgraph = Subgraph;\nfunction addSubgraphToASTNode(node, subgraph) {\n return {\n ...node,\n subgraph\n };\n}\nexports.addSubgraphToASTNode = addSubgraphToASTNode;\nfunction addSubgraphToError(e, subgraphName, errorCode) {\n const updatedCauses = (0, definitions_1.errorCauses)(e).map(cause => {\n var _a;\n const message = `[${subgraphName}] ${cause.message}`;\n const nodes = cause.nodes\n ? cause.nodes.map(node => addSubgraphToASTNode(node, subgraphName))\n : undefined;\n const code = (_a = (0, error_1.errorCodeDef)(cause)) !== null && _a !== void 0 ? _a : errorCode;\n if (code) {\n return code.err({\n message,\n nodes,\n source: cause.source,\n positions: cause.positions,\n path: cause.path,\n originalError: cause.originalError,\n extensions: cause.extensions,\n });\n }\n else {\n return new graphql_1.GraphQLError(message, nodes, cause.source, cause.positions, cause.path, cause.originalError, cause.extensions);\n }\n });\n return (0, definitions_1.ErrGraphQLValidationFailed)(updatedCauses);\n}\nexports.addSubgraphToError = addSubgraphToError;\nclass ExternalTester {\n constructor(schema) {\n this.schema = schema;\n this.fakeExternalFields = new Set();\n this.collectFakeExternals();\n }\n collectFakeExternals() {\n const keyDirective = exports.federationBuiltIns.keyDirective(this.schema);\n if (!keyDirective) {\n return;\n }\n for (const key of keyDirective.applications()) {\n const parent = key.parent;\n if (!(key.ofExtension() || parent.hasAppliedDirective(exports.extendsDirectiveName))) {\n continue;\n }\n try {\n parseFieldSetArgument(parent, key, (parentType, fieldName) => {\n const field = parentType.field(fieldName);\n if (field && field.hasAppliedDirective(exports.externalDirectiveName)) {\n this.fakeExternalFields.add(field.coordinate);\n }\n return field;\n });\n }\n catch (e) {\n }\n }\n }\n isExternal(field) {\n return field.hasAppliedDirective(exports.externalDirectiveName) && !this.isFakeExternal(field);\n }\n isFakeExternal(field) {\n return this.fakeExternalFields.has(field.coordinate);\n }\n selectsAnyExternalField(selectionSet) {\n for (const selection of selectionSet.selections()) {\n if (selection.kind === 'FieldSelection' && this.isExternal(selection.element().definition)) {\n return true;\n }\n if (selection.selectionSet) {\n if (this.selectsAnyExternalField(selection.selectionSet)) {\n return true;\n }\n }\n }\n return false;\n }\n}\nexports.ExternalTester = ExternalTester;\n//# sourceMappingURL=federation.js.map","'use strict'\r\n\r\nmodule.exports = {\r\n\t\"aliceblue\": [240, 248, 255],\r\n\t\"antiquewhite\": [250, 235, 215],\r\n\t\"aqua\": [0, 255, 255],\r\n\t\"aquamarine\": [127, 255, 212],\r\n\t\"azure\": [240, 255, 255],\r\n\t\"beige\": [245, 245, 220],\r\n\t\"bisque\": [255, 228, 196],\r\n\t\"black\": [0, 0, 0],\r\n\t\"blanchedalmond\": [255, 235, 205],\r\n\t\"blue\": [0, 0, 255],\r\n\t\"blueviolet\": [138, 43, 226],\r\n\t\"brown\": [165, 42, 42],\r\n\t\"burlywood\": [222, 184, 135],\r\n\t\"cadetblue\": [95, 158, 160],\r\n\t\"chartreuse\": [127, 255, 0],\r\n\t\"chocolate\": [210, 105, 30],\r\n\t\"coral\": [255, 127, 80],\r\n\t\"cornflowerblue\": [100, 149, 237],\r\n\t\"cornsilk\": [255, 248, 220],\r\n\t\"crimson\": [220, 20, 60],\r\n\t\"cyan\": [0, 255, 255],\r\n\t\"darkblue\": [0, 0, 139],\r\n\t\"darkcyan\": [0, 139, 139],\r\n\t\"darkgoldenrod\": [184, 134, 11],\r\n\t\"darkgray\": [169, 169, 169],\r\n\t\"darkgreen\": [0, 100, 0],\r\n\t\"darkgrey\": [169, 169, 169],\r\n\t\"darkkhaki\": [189, 183, 107],\r\n\t\"darkmagenta\": [139, 0, 139],\r\n\t\"darkolivegreen\": [85, 107, 47],\r\n\t\"darkorange\": [255, 140, 0],\r\n\t\"darkorchid\": [153, 50, 204],\r\n\t\"darkred\": [139, 0, 0],\r\n\t\"darksalmon\": [233, 150, 122],\r\n\t\"darkseagreen\": [143, 188, 143],\r\n\t\"darkslateblue\": [72, 61, 139],\r\n\t\"darkslategray\": [47, 79, 79],\r\n\t\"darkslategrey\": [47, 79, 79],\r\n\t\"darkturquoise\": [0, 206, 209],\r\n\t\"darkviolet\": [148, 0, 211],\r\n\t\"deeppink\": [255, 20, 147],\r\n\t\"deepskyblue\": [0, 191, 255],\r\n\t\"dimgray\": [105, 105, 105],\r\n\t\"dimgrey\": [105, 105, 105],\r\n\t\"dodgerblue\": [30, 144, 255],\r\n\t\"firebrick\": [178, 34, 34],\r\n\t\"floralwhite\": [255, 250, 240],\r\n\t\"forestgreen\": [34, 139, 34],\r\n\t\"fuchsia\": [255, 0, 255],\r\n\t\"gainsboro\": [220, 220, 220],\r\n\t\"ghostwhite\": [248, 248, 255],\r\n\t\"gold\": [255, 215, 0],\r\n\t\"goldenrod\": [218, 165, 32],\r\n\t\"gray\": [128, 128, 128],\r\n\t\"green\": [0, 128, 0],\r\n\t\"greenyellow\": [173, 255, 47],\r\n\t\"grey\": [128, 128, 128],\r\n\t\"honeydew\": [240, 255, 240],\r\n\t\"hotpink\": [255, 105, 180],\r\n\t\"indianred\": [205, 92, 92],\r\n\t\"indigo\": [75, 0, 130],\r\n\t\"ivory\": [255, 255, 240],\r\n\t\"khaki\": [240, 230, 140],\r\n\t\"lavender\": [230, 230, 250],\r\n\t\"lavenderblush\": [255, 240, 245],\r\n\t\"lawngreen\": [124, 252, 0],\r\n\t\"lemonchiffon\": [255, 250, 205],\r\n\t\"lightblue\": [173, 216, 230],\r\n\t\"lightcoral\": [240, 128, 128],\r\n\t\"lightcyan\": [224, 255, 255],\r\n\t\"lightgoldenrodyellow\": [250, 250, 210],\r\n\t\"lightgray\": [211, 211, 211],\r\n\t\"lightgreen\": [144, 238, 144],\r\n\t\"lightgrey\": [211, 211, 211],\r\n\t\"lightpink\": [255, 182, 193],\r\n\t\"lightsalmon\": [255, 160, 122],\r\n\t\"lightseagreen\": [32, 178, 170],\r\n\t\"lightskyblue\": [135, 206, 250],\r\n\t\"lightslategray\": [119, 136, 153],\r\n\t\"lightslategrey\": [119, 136, 153],\r\n\t\"lightsteelblue\": [176, 196, 222],\r\n\t\"lightyellow\": [255, 255, 224],\r\n\t\"lime\": [0, 255, 0],\r\n\t\"limegreen\": [50, 205, 50],\r\n\t\"linen\": [250, 240, 230],\r\n\t\"magenta\": [255, 0, 255],\r\n\t\"maroon\": [128, 0, 0],\r\n\t\"mediumaquamarine\": [102, 205, 170],\r\n\t\"mediumblue\": [0, 0, 205],\r\n\t\"mediumorchid\": [186, 85, 211],\r\n\t\"mediumpurple\": [147, 112, 219],\r\n\t\"mediumseagreen\": [60, 179, 113],\r\n\t\"mediumslateblue\": [123, 104, 238],\r\n\t\"mediumspringgreen\": [0, 250, 154],\r\n\t\"mediumturquoise\": [72, 209, 204],\r\n\t\"mediumvioletred\": [199, 21, 133],\r\n\t\"midnightblue\": [25, 25, 112],\r\n\t\"mintcream\": [245, 255, 250],\r\n\t\"mistyrose\": [255, 228, 225],\r\n\t\"moccasin\": [255, 228, 181],\r\n\t\"navajowhite\": [255, 222, 173],\r\n\t\"navy\": [0, 0, 128],\r\n\t\"oldlace\": [253, 245, 230],\r\n\t\"olive\": [128, 128, 0],\r\n\t\"olivedrab\": [107, 142, 35],\r\n\t\"orange\": [255, 165, 0],\r\n\t\"orangered\": [255, 69, 0],\r\n\t\"orchid\": [218, 112, 214],\r\n\t\"palegoldenrod\": [238, 232, 170],\r\n\t\"palegreen\": [152, 251, 152],\r\n\t\"paleturquoise\": [175, 238, 238],\r\n\t\"palevioletred\": [219, 112, 147],\r\n\t\"papayawhip\": [255, 239, 213],\r\n\t\"peachpuff\": [255, 218, 185],\r\n\t\"peru\": [205, 133, 63],\r\n\t\"pink\": [255, 192, 203],\r\n\t\"plum\": [221, 160, 221],\r\n\t\"powderblue\": [176, 224, 230],\r\n\t\"purple\": [128, 0, 128],\r\n\t\"rebeccapurple\": [102, 51, 153],\r\n\t\"red\": [255, 0, 0],\r\n\t\"rosybrown\": [188, 143, 143],\r\n\t\"royalblue\": [65, 105, 225],\r\n\t\"saddlebrown\": [139, 69, 19],\r\n\t\"salmon\": [250, 128, 114],\r\n\t\"sandybrown\": [244, 164, 96],\r\n\t\"seagreen\": [46, 139, 87],\r\n\t\"seashell\": [255, 245, 238],\r\n\t\"sienna\": [160, 82, 45],\r\n\t\"silver\": [192, 192, 192],\r\n\t\"skyblue\": [135, 206, 235],\r\n\t\"slateblue\": [106, 90, 205],\r\n\t\"slategray\": [112, 128, 144],\r\n\t\"slategrey\": [112, 128, 144],\r\n\t\"snow\": [255, 250, 250],\r\n\t\"springgreen\": [0, 255, 127],\r\n\t\"steelblue\": [70, 130, 180],\r\n\t\"tan\": [210, 180, 140],\r\n\t\"teal\": [0, 128, 128],\r\n\t\"thistle\": [216, 191, 216],\r\n\t\"tomato\": [255, 99, 71],\r\n\t\"turquoise\": [64, 224, 208],\r\n\t\"violet\": [238, 130, 238],\r\n\t\"wheat\": [245, 222, 179],\r\n\t\"white\": [255, 255, 255],\r\n\t\"whitesmoke\": [245, 245, 245],\r\n\t\"yellow\": [255, 255, 0],\r\n\t\"yellowgreen\": [154, 205, 50]\r\n};\r\n","/* MIT license */\n/* eslint-disable no-mixed-operators */\nconst cssKeywords = require('color-name');\n\n// NOTE: conversions should only return primitive values (i.e. arrays, or\n// values that give correct `typeof` results).\n// do not use box values types (i.e. Number(), String(), etc.)\n\nconst reverseKeywords = {};\nfor (const key of Object.keys(cssKeywords)) {\n\treverseKeywords[cssKeywords[key]] = key;\n}\n\nconst convert = {\n\trgb: {channels: 3, labels: 'rgb'},\n\thsl: {channels: 3, labels: 'hsl'},\n\thsv: {channels: 3, labels: 'hsv'},\n\thwb: {channels: 3, labels: 'hwb'},\n\tcmyk: {channels: 4, labels: 'cmyk'},\n\txyz: {channels: 3, labels: 'xyz'},\n\tlab: {channels: 3, labels: 'lab'},\n\tlch: {channels: 3, labels: 'lch'},\n\thex: {channels: 1, labels: ['hex']},\n\tkeyword: {channels: 1, labels: ['keyword']},\n\tansi16: {channels: 1, labels: ['ansi16']},\n\tansi256: {channels: 1, labels: ['ansi256']},\n\thcg: {channels: 3, labels: ['h', 'c', 'g']},\n\tapple: {channels: 3, labels: ['r16', 'g16', 'b16']},\n\tgray: {channels: 1, labels: ['gray']}\n};\n\nmodule.exports = convert;\n\n// Hide .channels and .labels properties\nfor (const model of Object.keys(convert)) {\n\tif (!('channels' in convert[model])) {\n\t\tthrow new Error('missing channels property: ' + model);\n\t}\n\n\tif (!('labels' in convert[model])) {\n\t\tthrow new Error('missing channel labels property: ' + model);\n\t}\n\n\tif (convert[model].labels.length !== convert[model].channels) {\n\t\tthrow new Error('channel and label counts mismatch: ' + model);\n\t}\n\n\tconst {channels, labels} = convert[model];\n\tdelete convert[model].channels;\n\tdelete convert[model].labels;\n\tObject.defineProperty(convert[model], 'channels', {value: channels});\n\tObject.defineProperty(convert[model], 'labels', {value: labels});\n}\n\nconvert.rgb.hsl = function (rgb) {\n\tconst r = rgb[0] / 255;\n\tconst g = rgb[1] / 255;\n\tconst b = rgb[2] / 255;\n\tconst min = Math.min(r, g, b);\n\tconst max = Math.max(r, g, b);\n\tconst delta = max - min;\n\tlet h;\n\tlet s;\n\n\tif (max === min) {\n\t\th = 0;\n\t} else if (r === max) {\n\t\th = (g - b) / delta;\n\t} else if (g === max) {\n\t\th = 2 + (b - r) / delta;\n\t} else if (b === max) {\n\t\th = 4 + (r - g) / delta;\n\t}\n\n\th = Math.min(h * 60, 360);\n\n\tif (h < 0) {\n\t\th += 360;\n\t}\n\n\tconst l = (min + max) / 2;\n\n\tif (max === min) {\n\t\ts = 0;\n\t} else if (l <= 0.5) {\n\t\ts = delta / (max + min);\n\t} else {\n\t\ts = delta / (2 - max - min);\n\t}\n\n\treturn [h, s * 100, l * 100];\n};\n\nconvert.rgb.hsv = function (rgb) {\n\tlet rdif;\n\tlet gdif;\n\tlet bdif;\n\tlet h;\n\tlet s;\n\n\tconst r = rgb[0] / 255;\n\tconst g = rgb[1] / 255;\n\tconst b = rgb[2] / 255;\n\tconst v = Math.max(r, g, b);\n\tconst diff = v - Math.min(r, g, b);\n\tconst diffc = function (c) {\n\t\treturn (v - c) / 6 / diff + 1 / 2;\n\t};\n\n\tif (diff === 0) {\n\t\th = 0;\n\t\ts = 0;\n\t} else {\n\t\ts = diff / v;\n\t\trdif = diffc(r);\n\t\tgdif = diffc(g);\n\t\tbdif = diffc(b);\n\n\t\tif (r === v) {\n\t\t\th = bdif - gdif;\n\t\t} else if (g === v) {\n\t\t\th = (1 / 3) + rdif - bdif;\n\t\t} else if (b === v) {\n\t\t\th = (2 / 3) + gdif - rdif;\n\t\t}\n\n\t\tif (h < 0) {\n\t\t\th += 1;\n\t\t} else if (h > 1) {\n\t\t\th -= 1;\n\t\t}\n\t}\n\n\treturn [\n\t\th * 360,\n\t\ts * 100,\n\t\tv * 100\n\t];\n};\n\nconvert.rgb.hwb = function (rgb) {\n\tconst r = rgb[0];\n\tconst g = rgb[1];\n\tlet b = rgb[2];\n\tconst h = convert.rgb.hsl(rgb)[0];\n\tconst w = 1 / 255 * Math.min(r, Math.min(g, b));\n\n\tb = 1 - 1 / 255 * Math.max(r, Math.max(g, b));\n\n\treturn [h, w * 100, b * 100];\n};\n\nconvert.rgb.cmyk = function (rgb) {\n\tconst r = rgb[0] / 255;\n\tconst g = rgb[1] / 255;\n\tconst b = rgb[2] / 255;\n\n\tconst k = Math.min(1 - r, 1 - g, 1 - b);\n\tconst c = (1 - r - k) / (1 - k) || 0;\n\tconst m = (1 - g - k) / (1 - k) || 0;\n\tconst y = (1 - b - k) / (1 - k) || 0;\n\n\treturn [c * 100, m * 100, y * 100, k * 100];\n};\n\nfunction comparativeDistance(x, y) {\n\t/*\n\t\tSee https://en.m.wikipedia.org/wiki/Euclidean_distance#Squared_Euclidean_distance\n\t*/\n\treturn (\n\t\t((x[0] - y[0]) ** 2) +\n\t\t((x[1] - y[1]) ** 2) +\n\t\t((x[2] - y[2]) ** 2)\n\t);\n}\n\nconvert.rgb.keyword = function (rgb) {\n\tconst reversed = reverseKeywords[rgb];\n\tif (reversed) {\n\t\treturn reversed;\n\t}\n\n\tlet currentClosestDistance = Infinity;\n\tlet currentClosestKeyword;\n\n\tfor (const keyword of Object.keys(cssKeywords)) {\n\t\tconst value = cssKeywords[keyword];\n\n\t\t// Compute comparative distance\n\t\tconst distance = comparativeDistance(rgb, value);\n\n\t\t// Check if its less, if so set as closest\n\t\tif (distance < currentClosestDistance) {\n\t\t\tcurrentClosestDistance = distance;\n\t\t\tcurrentClosestKeyword = keyword;\n\t\t}\n\t}\n\n\treturn currentClosestKeyword;\n};\n\nconvert.keyword.rgb = function (keyword) {\n\treturn cssKeywords[keyword];\n};\n\nconvert.rgb.xyz = function (rgb) {\n\tlet r = rgb[0] / 255;\n\tlet g = rgb[1] / 255;\n\tlet b = rgb[2] / 255;\n\n\t// Assume sRGB\n\tr = r > 0.04045 ? (((r + 0.055) / 1.055) ** 2.4) : (r / 12.92);\n\tg = g > 0.04045 ? (((g + 0.055) / 1.055) ** 2.4) : (g / 12.92);\n\tb = b > 0.04045 ? (((b + 0.055) / 1.055) ** 2.4) : (b / 12.92);\n\n\tconst x = (r * 0.4124) + (g * 0.3576) + (b * 0.1805);\n\tconst y = (r * 0.2126) + (g * 0.7152) + (b * 0.0722);\n\tconst z = (r * 0.0193) + (g * 0.1192) + (b * 0.9505);\n\n\treturn [x * 100, y * 100, z * 100];\n};\n\nconvert.rgb.lab = function (rgb) {\n\tconst xyz = convert.rgb.xyz(rgb);\n\tlet x = xyz[0];\n\tlet y = xyz[1];\n\tlet z = xyz[2];\n\n\tx /= 95.047;\n\ty /= 100;\n\tz /= 108.883;\n\n\tx = x > 0.008856 ? (x ** (1 / 3)) : (7.787 * x) + (16 / 116);\n\ty = y > 0.008856 ? (y ** (1 / 3)) : (7.787 * y) + (16 / 116);\n\tz = z > 0.008856 ? (z ** (1 / 3)) : (7.787 * z) + (16 / 116);\n\n\tconst l = (116 * y) - 16;\n\tconst a = 500 * (x - y);\n\tconst b = 200 * (y - z);\n\n\treturn [l, a, b];\n};\n\nconvert.hsl.rgb = function (hsl) {\n\tconst h = hsl[0] / 360;\n\tconst s = hsl[1] / 100;\n\tconst l = hsl[2] / 100;\n\tlet t2;\n\tlet t3;\n\tlet val;\n\n\tif (s === 0) {\n\t\tval = l * 255;\n\t\treturn [val, val, val];\n\t}\n\n\tif (l < 0.5) {\n\t\tt2 = l * (1 + s);\n\t} else {\n\t\tt2 = l + s - l * s;\n\t}\n\n\tconst t1 = 2 * l - t2;\n\n\tconst rgb = [0, 0, 0];\n\tfor (let i = 0; i < 3; i++) {\n\t\tt3 = h + 1 / 3 * -(i - 1);\n\t\tif (t3 < 0) {\n\t\t\tt3++;\n\t\t}\n\n\t\tif (t3 > 1) {\n\t\t\tt3--;\n\t\t}\n\n\t\tif (6 * t3 < 1) {\n\t\t\tval = t1 + (t2 - t1) * 6 * t3;\n\t\t} else if (2 * t3 < 1) {\n\t\t\tval = t2;\n\t\t} else if (3 * t3 < 2) {\n\t\t\tval = t1 + (t2 - t1) * (2 / 3 - t3) * 6;\n\t\t} else {\n\t\t\tval = t1;\n\t\t}\n\n\t\trgb[i] = val * 255;\n\t}\n\n\treturn rgb;\n};\n\nconvert.hsl.hsv = function (hsl) {\n\tconst h = hsl[0];\n\tlet s = hsl[1] / 100;\n\tlet l = hsl[2] / 100;\n\tlet smin = s;\n\tconst lmin = Math.max(l, 0.01);\n\n\tl *= 2;\n\ts *= (l <= 1) ? l : 2 - l;\n\tsmin *= lmin <= 1 ? lmin : 2 - lmin;\n\tconst v = (l + s) / 2;\n\tconst sv = l === 0 ? (2 * smin) / (lmin + smin) : (2 * s) / (l + s);\n\n\treturn [h, sv * 100, v * 100];\n};\n\nconvert.hsv.rgb = function (hsv) {\n\tconst h = hsv[0] / 60;\n\tconst s = hsv[1] / 100;\n\tlet v = hsv[2] / 100;\n\tconst hi = Math.floor(h) % 6;\n\n\tconst f = h - Math.floor(h);\n\tconst p = 255 * v * (1 - s);\n\tconst q = 255 * v * (1 - (s * f));\n\tconst t = 255 * v * (1 - (s * (1 - f)));\n\tv *= 255;\n\n\tswitch (hi) {\n\t\tcase 0:\n\t\t\treturn [v, t, p];\n\t\tcase 1:\n\t\t\treturn [q, v, p];\n\t\tcase 2:\n\t\t\treturn [p, v, t];\n\t\tcase 3:\n\t\t\treturn [p, q, v];\n\t\tcase 4:\n\t\t\treturn [t, p, v];\n\t\tcase 5:\n\t\t\treturn [v, p, q];\n\t}\n};\n\nconvert.hsv.hsl = function (hsv) {\n\tconst h = hsv[0];\n\tconst s = hsv[1] / 100;\n\tconst v = hsv[2] / 100;\n\tconst vmin = Math.max(v, 0.01);\n\tlet sl;\n\tlet l;\n\n\tl = (2 - s) * v;\n\tconst lmin = (2 - s) * vmin;\n\tsl = s * vmin;\n\tsl /= (lmin <= 1) ? lmin : 2 - lmin;\n\tsl = sl || 0;\n\tl /= 2;\n\n\treturn [h, sl * 100, l * 100];\n};\n\n// http://dev.w3.org/csswg/css-color/#hwb-to-rgb\nconvert.hwb.rgb = function (hwb) {\n\tconst h = hwb[0] / 360;\n\tlet wh = hwb[1] / 100;\n\tlet bl = hwb[2] / 100;\n\tconst ratio = wh + bl;\n\tlet f;\n\n\t// Wh + bl cant be > 1\n\tif (ratio > 1) {\n\t\twh /= ratio;\n\t\tbl /= ratio;\n\t}\n\n\tconst i = Math.floor(6 * h);\n\tconst v = 1 - bl;\n\tf = 6 * h - i;\n\n\tif ((i & 0x01) !== 0) {\n\t\tf = 1 - f;\n\t}\n\n\tconst n = wh + f * (v - wh); // Linear interpolation\n\n\tlet r;\n\tlet g;\n\tlet b;\n\t/* eslint-disable max-statements-per-line,no-multi-spaces */\n\tswitch (i) {\n\t\tdefault:\n\t\tcase 6:\n\t\tcase 0: r = v; g = n; b = wh; break;\n\t\tcase 1: r = n; g = v; b = wh; break;\n\t\tcase 2: r = wh; g = v; b = n; break;\n\t\tcase 3: r = wh; g = n; b = v; break;\n\t\tcase 4: r = n; g = wh; b = v; break;\n\t\tcase 5: r = v; g = wh; b = n; break;\n\t}\n\t/* eslint-enable max-statements-per-line,no-multi-spaces */\n\n\treturn [r * 255, g * 255, b * 255];\n};\n\nconvert.cmyk.rgb = function (cmyk) {\n\tconst c = cmyk[0] / 100;\n\tconst m = cmyk[1] / 100;\n\tconst y = cmyk[2] / 100;\n\tconst k = cmyk[3] / 100;\n\n\tconst r = 1 - Math.min(1, c * (1 - k) + k);\n\tconst g = 1 - Math.min(1, m * (1 - k) + k);\n\tconst b = 1 - Math.min(1, y * (1 - k) + k);\n\n\treturn [r * 255, g * 255, b * 255];\n};\n\nconvert.xyz.rgb = function (xyz) {\n\tconst x = xyz[0] / 100;\n\tconst y = xyz[1] / 100;\n\tconst z = xyz[2] / 100;\n\tlet r;\n\tlet g;\n\tlet b;\n\n\tr = (x * 3.2406) + (y * -1.5372) + (z * -0.4986);\n\tg = (x * -0.9689) + (y * 1.8758) + (z * 0.0415);\n\tb = (x * 0.0557) + (y * -0.2040) + (z * 1.0570);\n\n\t// Assume sRGB\n\tr = r > 0.0031308\n\t\t? ((1.055 * (r ** (1.0 / 2.4))) - 0.055)\n\t\t: r * 12.92;\n\n\tg = g > 0.0031308\n\t\t? ((1.055 * (g ** (1.0 / 2.4))) - 0.055)\n\t\t: g * 12.92;\n\n\tb = b > 0.0031308\n\t\t? ((1.055 * (b ** (1.0 / 2.4))) - 0.055)\n\t\t: b * 12.92;\n\n\tr = Math.min(Math.max(0, r), 1);\n\tg = Math.min(Math.max(0, g), 1);\n\tb = Math.min(Math.max(0, b), 1);\n\n\treturn [r * 255, g * 255, b * 255];\n};\n\nconvert.xyz.lab = function (xyz) {\n\tlet x = xyz[0];\n\tlet y = xyz[1];\n\tlet z = xyz[2];\n\n\tx /= 95.047;\n\ty /= 100;\n\tz /= 108.883;\n\n\tx = x > 0.008856 ? (x ** (1 / 3)) : (7.787 * x) + (16 / 116);\n\ty = y > 0.008856 ? (y ** (1 / 3)) : (7.787 * y) + (16 / 116);\n\tz = z > 0.008856 ? (z ** (1 / 3)) : (7.787 * z) + (16 / 116);\n\n\tconst l = (116 * y) - 16;\n\tconst a = 500 * (x - y);\n\tconst b = 200 * (y - z);\n\n\treturn [l, a, b];\n};\n\nconvert.lab.xyz = function (lab) {\n\tconst l = lab[0];\n\tconst a = lab[1];\n\tconst b = lab[2];\n\tlet x;\n\tlet y;\n\tlet z;\n\n\ty = (l + 16) / 116;\n\tx = a / 500 + y;\n\tz = y - b / 200;\n\n\tconst y2 = y ** 3;\n\tconst x2 = x ** 3;\n\tconst z2 = z ** 3;\n\ty = y2 > 0.008856 ? y2 : (y - 16 / 116) / 7.787;\n\tx = x2 > 0.008856 ? x2 : (x - 16 / 116) / 7.787;\n\tz = z2 > 0.008856 ? z2 : (z - 16 / 116) / 7.787;\n\n\tx *= 95.047;\n\ty *= 100;\n\tz *= 108.883;\n\n\treturn [x, y, z];\n};\n\nconvert.lab.lch = function (lab) {\n\tconst l = lab[0];\n\tconst a = lab[1];\n\tconst b = lab[2];\n\tlet h;\n\n\tconst hr = Math.atan2(b, a);\n\th = hr * 360 / 2 / Math.PI;\n\n\tif (h < 0) {\n\t\th += 360;\n\t}\n\n\tconst c = Math.sqrt(a * a + b * b);\n\n\treturn [l, c, h];\n};\n\nconvert.lch.lab = function (lch) {\n\tconst l = lch[0];\n\tconst c = lch[1];\n\tconst h = lch[2];\n\n\tconst hr = h / 360 * 2 * Math.PI;\n\tconst a = c * Math.cos(hr);\n\tconst b = c * Math.sin(hr);\n\n\treturn [l, a, b];\n};\n\nconvert.rgb.ansi16 = function (args, saturation = null) {\n\tconst [r, g, b] = args;\n\tlet value = saturation === null ? convert.rgb.hsv(args)[2] : saturation; // Hsv -> ansi16 optimization\n\n\tvalue = Math.round(value / 50);\n\n\tif (value === 0) {\n\t\treturn 30;\n\t}\n\n\tlet ansi = 30\n\t\t+ ((Math.round(b / 255) << 2)\n\t\t| (Math.round(g / 255) << 1)\n\t\t| Math.round(r / 255));\n\n\tif (value === 2) {\n\t\tansi += 60;\n\t}\n\n\treturn ansi;\n};\n\nconvert.hsv.ansi16 = function (args) {\n\t// Optimization here; we already know the value and don't need to get\n\t// it converted for us.\n\treturn convert.rgb.ansi16(convert.hsv.rgb(args), args[2]);\n};\n\nconvert.rgb.ansi256 = function (args) {\n\tconst r = args[0];\n\tconst g = args[1];\n\tconst b = args[2];\n\n\t// We use the extended greyscale palette here, with the exception of\n\t// black and white. normal palette only has 4 greyscale shades.\n\tif (r === g && g === b) {\n\t\tif (r < 8) {\n\t\t\treturn 16;\n\t\t}\n\n\t\tif (r > 248) {\n\t\t\treturn 231;\n\t\t}\n\n\t\treturn Math.round(((r - 8) / 247) * 24) + 232;\n\t}\n\n\tconst ansi = 16\n\t\t+ (36 * Math.round(r / 255 * 5))\n\t\t+ (6 * Math.round(g / 255 * 5))\n\t\t+ Math.round(b / 255 * 5);\n\n\treturn ansi;\n};\n\nconvert.ansi16.rgb = function (args) {\n\tlet color = args % 10;\n\n\t// Handle greyscale\n\tif (color === 0 || color === 7) {\n\t\tif (args > 50) {\n\t\t\tcolor += 3.5;\n\t\t}\n\n\t\tcolor = color / 10.5 * 255;\n\n\t\treturn [color, color, color];\n\t}\n\n\tconst mult = (~~(args > 50) + 1) * 0.5;\n\tconst r = ((color & 1) * mult) * 255;\n\tconst g = (((color >> 1) & 1) * mult) * 255;\n\tconst b = (((color >> 2) & 1) * mult) * 255;\n\n\treturn [r, g, b];\n};\n\nconvert.ansi256.rgb = function (args) {\n\t// Handle greyscale\n\tif (args >= 232) {\n\t\tconst c = (args - 232) * 10 + 8;\n\t\treturn [c, c, c];\n\t}\n\n\targs -= 16;\n\n\tlet rem;\n\tconst r = Math.floor(args / 36) / 5 * 255;\n\tconst g = Math.floor((rem = args % 36) / 6) / 5 * 255;\n\tconst b = (rem % 6) / 5 * 255;\n\n\treturn [r, g, b];\n};\n\nconvert.rgb.hex = function (args) {\n\tconst integer = ((Math.round(args[0]) & 0xFF) << 16)\n\t\t+ ((Math.round(args[1]) & 0xFF) << 8)\n\t\t+ (Math.round(args[2]) & 0xFF);\n\n\tconst string = integer.toString(16).toUpperCase();\n\treturn '000000'.substring(string.length) + string;\n};\n\nconvert.hex.rgb = function (args) {\n\tconst match = args.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i);\n\tif (!match) {\n\t\treturn [0, 0, 0];\n\t}\n\n\tlet colorString = match[0];\n\n\tif (match[0].length === 3) {\n\t\tcolorString = colorString.split('').map(char => {\n\t\t\treturn char + char;\n\t\t}).join('');\n\t}\n\n\tconst integer = parseInt(colorString, 16);\n\tconst r = (integer >> 16) & 0xFF;\n\tconst g = (integer >> 8) & 0xFF;\n\tconst b = integer & 0xFF;\n\n\treturn [r, g, b];\n};\n\nconvert.rgb.hcg = function (rgb) {\n\tconst r = rgb[0] / 255;\n\tconst g = rgb[1] / 255;\n\tconst b = rgb[2] / 255;\n\tconst max = Math.max(Math.max(r, g), b);\n\tconst min = Math.min(Math.min(r, g), b);\n\tconst chroma = (max - min);\n\tlet grayscale;\n\tlet hue;\n\n\tif (chroma < 1) {\n\t\tgrayscale = min / (1 - chroma);\n\t} else {\n\t\tgrayscale = 0;\n\t}\n\n\tif (chroma <= 0) {\n\t\thue = 0;\n\t} else\n\tif (max === r) {\n\t\thue = ((g - b) / chroma) % 6;\n\t} else\n\tif (max === g) {\n\t\thue = 2 + (b - r) / chroma;\n\t} else {\n\t\thue = 4 + (r - g) / chroma;\n\t}\n\n\thue /= 6;\n\thue %= 1;\n\n\treturn [hue * 360, chroma * 100, grayscale * 100];\n};\n\nconvert.hsl.hcg = function (hsl) {\n\tconst s = hsl[1] / 100;\n\tconst l = hsl[2] / 100;\n\n\tconst c = l < 0.5 ? (2.0 * s * l) : (2.0 * s * (1.0 - l));\n\n\tlet f = 0;\n\tif (c < 1.0) {\n\t\tf = (l - 0.5 * c) / (1.0 - c);\n\t}\n\n\treturn [hsl[0], c * 100, f * 100];\n};\n\nconvert.hsv.hcg = function (hsv) {\n\tconst s = hsv[1] / 100;\n\tconst v = hsv[2] / 100;\n\n\tconst c = s * v;\n\tlet f = 0;\n\n\tif (c < 1.0) {\n\t\tf = (v - c) / (1 - c);\n\t}\n\n\treturn [hsv[0], c * 100, f * 100];\n};\n\nconvert.hcg.rgb = function (hcg) {\n\tconst h = hcg[0] / 360;\n\tconst c = hcg[1] / 100;\n\tconst g = hcg[2] / 100;\n\n\tif (c === 0.0) {\n\t\treturn [g * 255, g * 255, g * 255];\n\t}\n\n\tconst pure = [0, 0, 0];\n\tconst hi = (h % 1) * 6;\n\tconst v = hi % 1;\n\tconst w = 1 - v;\n\tlet mg = 0;\n\n\t/* eslint-disable max-statements-per-line */\n\tswitch (Math.floor(hi)) {\n\t\tcase 0:\n\t\t\tpure[0] = 1; pure[1] = v; pure[2] = 0; break;\n\t\tcase 1:\n\t\t\tpure[0] = w; pure[1] = 1; pure[2] = 0; break;\n\t\tcase 2:\n\t\t\tpure[0] = 0; pure[1] = 1; pure[2] = v; break;\n\t\tcase 3:\n\t\t\tpure[0] = 0; pure[1] = w; pure[2] = 1; break;\n\t\tcase 4:\n\t\t\tpure[0] = v; pure[1] = 0; pure[2] = 1; break;\n\t\tdefault:\n\t\t\tpure[0] = 1; pure[1] = 0; pure[2] = w;\n\t}\n\t/* eslint-enable max-statements-per-line */\n\n\tmg = (1.0 - c) * g;\n\n\treturn [\n\t\t(c * pure[0] + mg) * 255,\n\t\t(c * pure[1] + mg) * 255,\n\t\t(c * pure[2] + mg) * 255\n\t];\n};\n\nconvert.hcg.hsv = function (hcg) {\n\tconst c = hcg[1] / 100;\n\tconst g = hcg[2] / 100;\n\n\tconst v = c + g * (1.0 - c);\n\tlet f = 0;\n\n\tif (v > 0.0) {\n\t\tf = c / v;\n\t}\n\n\treturn [hcg[0], f * 100, v * 100];\n};\n\nconvert.hcg.hsl = function (hcg) {\n\tconst c = hcg[1] / 100;\n\tconst g = hcg[2] / 100;\n\n\tconst l = g * (1.0 - c) + 0.5 * c;\n\tlet s = 0;\n\n\tif (l > 0.0 && l < 0.5) {\n\t\ts = c / (2 * l);\n\t} else\n\tif (l >= 0.5 && l < 1.0) {\n\t\ts = c / (2 * (1 - l));\n\t}\n\n\treturn [hcg[0], s * 100, l * 100];\n};\n\nconvert.hcg.hwb = function (hcg) {\n\tconst c = hcg[1] / 100;\n\tconst g = hcg[2] / 100;\n\tconst v = c + g * (1.0 - c);\n\treturn [hcg[0], (v - c) * 100, (1 - v) * 100];\n};\n\nconvert.hwb.hcg = function (hwb) {\n\tconst w = hwb[1] / 100;\n\tconst b = hwb[2] / 100;\n\tconst v = 1 - b;\n\tconst c = v - w;\n\tlet g = 0;\n\n\tif (c < 1) {\n\t\tg = (v - c) / (1 - c);\n\t}\n\n\treturn [hwb[0], c * 100, g * 100];\n};\n\nconvert.apple.rgb = function (apple) {\n\treturn [(apple[0] / 65535) * 255, (apple[1] / 65535) * 255, (apple[2] / 65535) * 255];\n};\n\nconvert.rgb.apple = function (rgb) {\n\treturn [(rgb[0] / 255) * 65535, (rgb[1] / 255) * 65535, (rgb[2] / 255) * 65535];\n};\n\nconvert.gray.rgb = function (args) {\n\treturn [args[0] / 100 * 255, args[0] / 100 * 255, args[0] / 100 * 255];\n};\n\nconvert.gray.hsl = function (args) {\n\treturn [0, 0, args[0]];\n};\n\nconvert.gray.hsv = convert.gray.hsl;\n\nconvert.gray.hwb = function (gray) {\n\treturn [0, 100, gray[0]];\n};\n\nconvert.gray.cmyk = function (gray) {\n\treturn [0, 0, 0, gray[0]];\n};\n\nconvert.gray.lab = function (gray) {\n\treturn [gray[0], 0, 0];\n};\n\nconvert.gray.hex = function (gray) {\n\tconst val = Math.round(gray[0] / 100 * 255) & 0xFF;\n\tconst integer = (val << 16) + (val << 8) + val;\n\n\tconst string = integer.toString(16).toUpperCase();\n\treturn '000000'.substring(string.length) + string;\n};\n\nconvert.rgb.gray = function (rgb) {\n\tconst val = (rgb[0] + rgb[1] + rgb[2]) / 3;\n\treturn [val / 255 * 100];\n};\n","const conversions = require('./conversions');\n\n/*\n\tThis function routes a model to all other models.\n\n\tall functions that are routed have a property `.conversion` attached\n\tto the returned synthetic function. This property is an array\n\tof strings, each with the steps in between the 'from' and 'to'\n\tcolor models (inclusive).\n\n\tconversions that are not possible simply are not included.\n*/\n\nfunction buildGraph() {\n\tconst graph = {};\n\t// https://jsperf.com/object-keys-vs-for-in-with-closure/3\n\tconst models = Object.keys(conversions);\n\n\tfor (let len = models.length, i = 0; i < len; i++) {\n\t\tgraph[models[i]] = {\n\t\t\t// http://jsperf.com/1-vs-infinity\n\t\t\t// micro-opt, but this is simple.\n\t\t\tdistance: -1,\n\t\t\tparent: null\n\t\t};\n\t}\n\n\treturn graph;\n}\n\n// https://en.wikipedia.org/wiki/Breadth-first_search\nfunction deriveBFS(fromModel) {\n\tconst graph = buildGraph();\n\tconst queue = [fromModel]; // Unshift -> queue -> pop\n\n\tgraph[fromModel].distance = 0;\n\n\twhile (queue.length) {\n\t\tconst current = queue.pop();\n\t\tconst adjacents = Object.keys(conversions[current]);\n\n\t\tfor (let len = adjacents.length, i = 0; i < len; i++) {\n\t\t\tconst adjacent = adjacents[i];\n\t\t\tconst node = graph[adjacent];\n\n\t\t\tif (node.distance === -1) {\n\t\t\t\tnode.distance = graph[current].distance + 1;\n\t\t\t\tnode.parent = current;\n\t\t\t\tqueue.unshift(adjacent);\n\t\t\t}\n\t\t}\n\t}\n\n\treturn graph;\n}\n\nfunction link(from, to) {\n\treturn function (args) {\n\t\treturn to(from(args));\n\t};\n}\n\nfunction wrapConversion(toModel, graph) {\n\tconst path = [graph[toModel].parent, toModel];\n\tlet fn = conversions[graph[toModel].parent][toModel];\n\n\tlet cur = graph[toModel].parent;\n\twhile (graph[cur].parent) {\n\t\tpath.unshift(graph[cur].parent);\n\t\tfn = link(conversions[graph[cur].parent][cur], fn);\n\t\tcur = graph[cur].parent;\n\t}\n\n\tfn.conversion = path;\n\treturn fn;\n}\n\nmodule.exports = function (fromModel) {\n\tconst graph = deriveBFS(fromModel);\n\tconst conversion = {};\n\n\tconst models = Object.keys(graph);\n\tfor (let len = models.length, i = 0; i < len; i++) {\n\t\tconst toModel = models[i];\n\t\tconst node = graph[toModel];\n\n\t\tif (node.parent === null) {\n\t\t\t// No possible conversion, or this node is the source model.\n\t\t\tcontinue;\n\t\t}\n\n\t\tconversion[toModel] = wrapConversion(toModel, graph);\n\t}\n\n\treturn conversion;\n};\n\n","const conversions = require('./conversions');\nconst route = require('./route');\n\nconst convert = {};\n\nconst models = Object.keys(conversions);\n\nfunction wrapRaw(fn) {\n\tconst wrappedFn = function (...args) {\n\t\tconst arg0 = args[0];\n\t\tif (arg0 === undefined || arg0 === null) {\n\t\t\treturn arg0;\n\t\t}\n\n\t\tif (arg0.length > 1) {\n\t\t\targs = arg0;\n\t\t}\n\n\t\treturn fn(args);\n\t};\n\n\t// Preserve .conversion property if there is one\n\tif ('conversion' in fn) {\n\t\twrappedFn.conversion = fn.conversion;\n\t}\n\n\treturn wrappedFn;\n}\n\nfunction wrapRounded(fn) {\n\tconst wrappedFn = function (...args) {\n\t\tconst arg0 = args[0];\n\n\t\tif (arg0 === undefined || arg0 === null) {\n\t\t\treturn arg0;\n\t\t}\n\n\t\tif (arg0.length > 1) {\n\t\t\targs = arg0;\n\t\t}\n\n\t\tconst result = fn(args);\n\n\t\t// We're assuming the result is an array here.\n\t\t// see notice in conversions.js; don't use box types\n\t\t// in conversion functions.\n\t\tif (typeof result === 'object') {\n\t\t\tfor (let len = result.length, i = 0; i < len; i++) {\n\t\t\t\tresult[i] = Math.round(result[i]);\n\t\t\t}\n\t\t}\n\n\t\treturn result;\n\t};\n\n\t// Preserve .conversion property if there is one\n\tif ('conversion' in fn) {\n\t\twrappedFn.conversion = fn.conversion;\n\t}\n\n\treturn wrappedFn;\n}\n\nmodels.forEach(fromModel => {\n\tconvert[fromModel] = {};\n\n\tObject.defineProperty(convert[fromModel], 'channels', {value: conversions[fromModel].channels});\n\tObject.defineProperty(convert[fromModel], 'labels', {value: conversions[fromModel].labels});\n\n\tconst routes = route(fromModel);\n\tconst routeModels = Object.keys(routes);\n\n\trouteModels.forEach(toModel => {\n\t\tconst fn = routes[toModel];\n\n\t\tconvert[fromModel][toModel] = wrapRounded(fn);\n\t\tconvert[fromModel][toModel].raw = wrapRaw(fn);\n\t});\n});\n\nmodule.exports = convert;\n","'use strict';\n\nconst wrapAnsi16 = (fn, offset) => (...args) => {\n\tconst code = fn(...args);\n\treturn `\\u001B[${code + offset}m`;\n};\n\nconst wrapAnsi256 = (fn, offset) => (...args) => {\n\tconst code = fn(...args);\n\treturn `\\u001B[${38 + offset};5;${code}m`;\n};\n\nconst wrapAnsi16m = (fn, offset) => (...args) => {\n\tconst rgb = fn(...args);\n\treturn `\\u001B[${38 + offset};2;${rgb[0]};${rgb[1]};${rgb[2]}m`;\n};\n\nconst ansi2ansi = n => n;\nconst rgb2rgb = (r, g, b) => [r, g, b];\n\nconst setLazyProperty = (object, property, get) => {\n\tObject.defineProperty(object, property, {\n\t\tget: () => {\n\t\t\tconst value = get();\n\n\t\t\tObject.defineProperty(object, property, {\n\t\t\t\tvalue,\n\t\t\t\tenumerable: true,\n\t\t\t\tconfigurable: true\n\t\t\t});\n\n\t\t\treturn value;\n\t\t},\n\t\tenumerable: true,\n\t\tconfigurable: true\n\t});\n};\n\n/** @type {typeof import('color-convert')} */\nlet colorConvert;\nconst makeDynamicStyles = (wrap, targetSpace, identity, isBackground) => {\n\tif (colorConvert === undefined) {\n\t\tcolorConvert = require('color-convert');\n\t}\n\n\tconst offset = isBackground ? 10 : 0;\n\tconst styles = {};\n\n\tfor (const [sourceSpace, suite] of Object.entries(colorConvert)) {\n\t\tconst name = sourceSpace === 'ansi16' ? 'ansi' : sourceSpace;\n\t\tif (sourceSpace === targetSpace) {\n\t\t\tstyles[name] = wrap(identity, offset);\n\t\t} else if (typeof suite === 'object') {\n\t\t\tstyles[name] = wrap(suite[targetSpace], offset);\n\t\t}\n\t}\n\n\treturn styles;\n};\n\nfunction assembleStyles() {\n\tconst codes = new Map();\n\tconst styles = {\n\t\tmodifier: {\n\t\t\treset: [0, 0],\n\t\t\t// 21 isn't widely supported and 22 does the same thing\n\t\t\tbold: [1, 22],\n\t\t\tdim: [2, 22],\n\t\t\titalic: [3, 23],\n\t\t\tunderline: [4, 24],\n\t\t\tinverse: [7, 27],\n\t\t\thidden: [8, 28],\n\t\t\tstrikethrough: [9, 29]\n\t\t},\n\t\tcolor: {\n\t\t\tblack: [30, 39],\n\t\t\tred: [31, 39],\n\t\t\tgreen: [32, 39],\n\t\t\tyellow: [33, 39],\n\t\t\tblue: [34, 39],\n\t\t\tmagenta: [35, 39],\n\t\t\tcyan: [36, 39],\n\t\t\twhite: [37, 39],\n\n\t\t\t// Bright color\n\t\t\tblackBright: [90, 39],\n\t\t\tredBright: [91, 39],\n\t\t\tgreenBright: [92, 39],\n\t\t\tyellowBright: [93, 39],\n\t\t\tblueBright: [94, 39],\n\t\t\tmagentaBright: [95, 39],\n\t\t\tcyanBright: [96, 39],\n\t\t\twhiteBright: [97, 39]\n\t\t},\n\t\tbgColor: {\n\t\t\tbgBlack: [40, 49],\n\t\t\tbgRed: [41, 49],\n\t\t\tbgGreen: [42, 49],\n\t\t\tbgYellow: [43, 49],\n\t\t\tbgBlue: [44, 49],\n\t\t\tbgMagenta: [45, 49],\n\t\t\tbgCyan: [46, 49],\n\t\t\tbgWhite: [47, 49],\n\n\t\t\t// Bright color\n\t\t\tbgBlackBright: [100, 49],\n\t\t\tbgRedBright: [101, 49],\n\t\t\tbgGreenBright: [102, 49],\n\t\t\tbgYellowBright: [103, 49],\n\t\t\tbgBlueBright: [104, 49],\n\t\t\tbgMagentaBright: [105, 49],\n\t\t\tbgCyanBright: [106, 49],\n\t\t\tbgWhiteBright: [107, 49]\n\t\t}\n\t};\n\n\t// Alias bright black as gray (and grey)\n\tstyles.color.gray = styles.color.blackBright;\n\tstyles.bgColor.bgGray = styles.bgColor.bgBlackBright;\n\tstyles.color.grey = styles.color.blackBright;\n\tstyles.bgColor.bgGrey = styles.bgColor.bgBlackBright;\n\n\tfor (const [groupName, group] of Object.entries(styles)) {\n\t\tfor (const [styleName, style] of Object.entries(group)) {\n\t\t\tstyles[styleName] = {\n\t\t\t\topen: `\\u001B[${style[0]}m`,\n\t\t\t\tclose: `\\u001B[${style[1]}m`\n\t\t\t};\n\n\t\t\tgroup[styleName] = styles[styleName];\n\n\t\t\tcodes.set(style[0], style[1]);\n\t\t}\n\n\t\tObject.defineProperty(styles, groupName, {\n\t\t\tvalue: group,\n\t\t\tenumerable: false\n\t\t});\n\t}\n\n\tObject.defineProperty(styles, 'codes', {\n\t\tvalue: codes,\n\t\tenumerable: false\n\t});\n\n\tstyles.color.close = '\\u001B[39m';\n\tstyles.bgColor.close = '\\u001B[49m';\n\n\tsetLazyProperty(styles.color, 'ansi', () => makeDynamicStyles(wrapAnsi16, 'ansi16', ansi2ansi, false));\n\tsetLazyProperty(styles.color, 'ansi256', () => makeDynamicStyles(wrapAnsi256, 'ansi256', ansi2ansi, false));\n\tsetLazyProperty(styles.color, 'ansi16m', () => makeDynamicStyles(wrapAnsi16m, 'rgb', rgb2rgb, false));\n\tsetLazyProperty(styles.bgColor, 'ansi', () => makeDynamicStyles(wrapAnsi16, 'ansi16', ansi2ansi, true));\n\tsetLazyProperty(styles.bgColor, 'ansi256', () => makeDynamicStyles(wrapAnsi256, 'ansi256', ansi2ansi, true));\n\tsetLazyProperty(styles.bgColor, 'ansi16m', () => makeDynamicStyles(wrapAnsi16m, 'rgb', rgb2rgb, true));\n\n\treturn styles;\n}\n\n// Make the export immutable\nObject.defineProperty(module, 'exports', {\n\tenumerable: true,\n\tget: assembleStyles\n});\n","/*\nThe MIT License (MIT)\n\nCopyright (c) 2016 CoderPuppy\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n*/\nvar _endianness;\nexport function endianness() {\n if (typeof _endianness === 'undefined') {\n var a = new ArrayBuffer(2);\n var b = new Uint8Array(a);\n var c = new Uint16Array(a);\n b[0] = 1;\n b[1] = 2;\n if (c[0] === 258) {\n _endianness = 'BE';\n } else if (c[0] === 513){\n _endianness = 'LE';\n } else {\n throw new Error('unable to figure out endianess');\n }\n }\n return _endianness;\n}\n\nexport function hostname() {\n if (typeof global.location !== 'undefined') {\n return global.location.hostname\n } else return '';\n}\n\nexport function loadavg() {\n return [];\n}\n\nexport function uptime() {\n return 0;\n}\n\nexport function freemem() {\n return Number.MAX_VALUE;\n}\n\nexport function totalmem() {\n return Number.MAX_VALUE;\n}\n\nexport function cpus() {\n return [];\n}\n\nexport function type() {\n return 'Browser';\n}\n\nexport function release () {\n if (typeof global.navigator !== 'undefined') {\n return global.navigator.appVersion;\n }\n return '';\n}\n\nexport function networkInterfaces(){}\nexport function getNetworkInterfaces(){}\n\nexport function arch() {\n return 'javascript';\n}\n\nexport function platform() {\n return 'browser';\n}\n\nexport function tmpDir() {\n return '/tmp';\n}\nexport var tmpdir = tmpDir;\n\nexport var EOL = '\\n';\nexport default {\n EOL: EOL,\n tmpdir: tmpdir,\n tmpDir: tmpDir,\n networkInterfaces:networkInterfaces,\n getNetworkInterfaces: getNetworkInterfaces,\n release: release,\n type: type,\n cpus: cpus,\n totalmem: totalmem,\n freemem: freemem,\n uptime: uptime,\n loadavg: loadavg,\n hostname: hostname,\n endianness: endianness,\n}\n","// MIT lisence\n// from https://github.com/substack/tty-browserify/blob/1ba769a6429d242f36226538835b4034bf6b7886/index.js\n\nexport function isatty() {\n return false;\n}\n\nexport function ReadStream() {\n throw new Error('tty.ReadStream is not implemented');\n}\n\nexport function WriteStream() {\n throw new Error('tty.ReadStream is not implemented');\n}\n\nexport default {\n isatty: isatty,\n ReadStream: ReadStream,\n WriteStream: WriteStream\n}\n","'use strict';\n\nmodule.exports = (flag, argv = process.argv) => {\n\tconst prefix = flag.startsWith('-') ? '' : (flag.length === 1 ? '-' : '--');\n\tconst position = argv.indexOf(prefix + flag);\n\tconst terminatorPosition = argv.indexOf('--');\n\treturn position !== -1 && (terminatorPosition === -1 || position < terminatorPosition);\n};\n","'use strict';\nconst os = require('os');\nconst tty = require('tty');\nconst hasFlag = require('has-flag');\n\nconst {env} = process;\n\nlet forceColor;\nif (hasFlag('no-color') ||\n\thasFlag('no-colors') ||\n\thasFlag('color=false') ||\n\thasFlag('color=never')) {\n\tforceColor = 0;\n} else if (hasFlag('color') ||\n\thasFlag('colors') ||\n\thasFlag('color=true') ||\n\thasFlag('color=always')) {\n\tforceColor = 1;\n}\n\nif ('FORCE_COLOR' in env) {\n\tif (env.FORCE_COLOR === 'true') {\n\t\tforceColor = 1;\n\t} else if (env.FORCE_COLOR === 'false') {\n\t\tforceColor = 0;\n\t} else {\n\t\tforceColor = env.FORCE_COLOR.length === 0 ? 1 : Math.min(parseInt(env.FORCE_COLOR, 10), 3);\n\t}\n}\n\nfunction translateLevel(level) {\n\tif (level === 0) {\n\t\treturn false;\n\t}\n\n\treturn {\n\t\tlevel,\n\t\thasBasic: true,\n\t\thas256: level >= 2,\n\t\thas16m: level >= 3\n\t};\n}\n\nfunction supportsColor(haveStream, streamIsTTY) {\n\tif (forceColor === 0) {\n\t\treturn 0;\n\t}\n\n\tif (hasFlag('color=16m') ||\n\t\thasFlag('color=full') ||\n\t\thasFlag('color=truecolor')) {\n\t\treturn 3;\n\t}\n\n\tif (hasFlag('color=256')) {\n\t\treturn 2;\n\t}\n\n\tif (haveStream && !streamIsTTY && forceColor === undefined) {\n\t\treturn 0;\n\t}\n\n\tconst min = forceColor || 0;\n\n\tif (env.TERM === 'dumb') {\n\t\treturn min;\n\t}\n\n\tif (process.platform === 'win32') {\n\t\t// Windows 10 build 10586 is the first Windows release that supports 256 colors.\n\t\t// Windows 10 build 14931 is the first release that supports 16m/TrueColor.\n\t\tconst osRelease = os.release().split('.');\n\t\tif (\n\t\t\tNumber(osRelease[0]) >= 10 &&\n\t\t\tNumber(osRelease[2]) >= 10586\n\t\t) {\n\t\t\treturn Number(osRelease[2]) >= 14931 ? 3 : 2;\n\t\t}\n\n\t\treturn 1;\n\t}\n\n\tif ('CI' in env) {\n\t\tif (['TRAVIS', 'CIRCLECI', 'APPVEYOR', 'GITLAB_CI', 'GITHUB_ACTIONS', 'BUILDKITE'].some(sign => sign in env) || env.CI_NAME === 'codeship') {\n\t\t\treturn 1;\n\t\t}\n\n\t\treturn min;\n\t}\n\n\tif ('TEAMCITY_VERSION' in env) {\n\t\treturn /^(9\\.(0*[1-9]\\d*)\\.|\\d{2,}\\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;\n\t}\n\n\tif (env.COLORTERM === 'truecolor') {\n\t\treturn 3;\n\t}\n\n\tif ('TERM_PROGRAM' in env) {\n\t\tconst version = parseInt((env.TERM_PROGRAM_VERSION || '').split('.')[0], 10);\n\n\t\tswitch (env.TERM_PROGRAM) {\n\t\t\tcase 'iTerm.app':\n\t\t\t\treturn version >= 3 ? 3 : 2;\n\t\t\tcase 'Apple_Terminal':\n\t\t\t\treturn 2;\n\t\t\t// No default\n\t\t}\n\t}\n\n\tif (/-256(color)?$/i.test(env.TERM)) {\n\t\treturn 2;\n\t}\n\n\tif (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {\n\t\treturn 1;\n\t}\n\n\tif ('COLORTERM' in env) {\n\t\treturn 1;\n\t}\n\n\treturn min;\n}\n\nfunction getSupportLevel(stream) {\n\tconst level = supportsColor(stream, stream && stream.isTTY);\n\treturn translateLevel(level);\n}\n\nmodule.exports = {\n\tsupportsColor: getSupportLevel,\n\tstdout: translateLevel(supportsColor(true, tty.isatty(1))),\n\tstderr: translateLevel(supportsColor(true, tty.isatty(2)))\n};\n","'use strict';\n\nconst stringReplaceAll = (string, substring, replacer) => {\n\tlet index = string.indexOf(substring);\n\tif (index === -1) {\n\t\treturn string;\n\t}\n\n\tconst substringLength = substring.length;\n\tlet endIndex = 0;\n\tlet returnValue = '';\n\tdo {\n\t\treturnValue += string.substr(endIndex, index - endIndex) + substring + replacer;\n\t\tendIndex = index + substringLength;\n\t\tindex = string.indexOf(substring, endIndex);\n\t} while (index !== -1);\n\n\treturnValue += string.substr(endIndex);\n\treturn returnValue;\n};\n\nconst stringEncaseCRLFWithFirstIndex = (string, prefix, postfix, index) => {\n\tlet endIndex = 0;\n\tlet returnValue = '';\n\tdo {\n\t\tconst gotCR = string[index - 1] === '\\r';\n\t\treturnValue += string.substr(endIndex, (gotCR ? index - 1 : index) - endIndex) + prefix + (gotCR ? '\\r\\n' : '\\n') + postfix;\n\t\tendIndex = index + 1;\n\t\tindex = string.indexOf('\\n', endIndex);\n\t} while (index !== -1);\n\n\treturnValue += string.substr(endIndex);\n\treturn returnValue;\n};\n\nmodule.exports = {\n\tstringReplaceAll,\n\tstringEncaseCRLFWithFirstIndex\n};\n","'use strict';\nconst TEMPLATE_REGEX = /(?:\\\\(u(?:[a-f\\d]{4}|\\{[a-f\\d]{1,6}\\})|x[a-f\\d]{2}|.))|(?:\\{(~)?(\\w+(?:\\([^)]*\\))?(?:\\.\\w+(?:\\([^)]*\\))?)*)(?:[ \\t]|(?=\\r?\\n)))|(\\})|((?:.|[\\r\\n\\f])+?)/gi;\nconst STYLE_REGEX = /(?:^|\\.)(\\w+)(?:\\(([^)]*)\\))?/g;\nconst STRING_REGEX = /^(['\"])((?:\\\\.|(?!\\1)[^\\\\])*)\\1$/;\nconst ESCAPE_REGEX = /\\\\(u(?:[a-f\\d]{4}|{[a-f\\d]{1,6}})|x[a-f\\d]{2}|.)|([^\\\\])/gi;\n\nconst ESCAPES = new Map([\n\t['n', '\\n'],\n\t['r', '\\r'],\n\t['t', '\\t'],\n\t['b', '\\b'],\n\t['f', '\\f'],\n\t['v', '\\v'],\n\t['0', '\\0'],\n\t['\\\\', '\\\\'],\n\t['e', '\\u001B'],\n\t['a', '\\u0007']\n]);\n\nfunction unescape(c) {\n\tconst u = c[0] === 'u';\n\tconst bracket = c[1] === '{';\n\n\tif ((u && !bracket && c.length === 5) || (c[0] === 'x' && c.length === 3)) {\n\t\treturn String.fromCharCode(parseInt(c.slice(1), 16));\n\t}\n\n\tif (u && bracket) {\n\t\treturn String.fromCodePoint(parseInt(c.slice(2, -1), 16));\n\t}\n\n\treturn ESCAPES.get(c) || c;\n}\n\nfunction parseArguments(name, arguments_) {\n\tconst results = [];\n\tconst chunks = arguments_.trim().split(/\\s*,\\s*/g);\n\tlet matches;\n\n\tfor (const chunk of chunks) {\n\t\tconst number = Number(chunk);\n\t\tif (!Number.isNaN(number)) {\n\t\t\tresults.push(number);\n\t\t} else if ((matches = chunk.match(STRING_REGEX))) {\n\t\t\tresults.push(matches[2].replace(ESCAPE_REGEX, (m, escape, character) => escape ? unescape(escape) : character));\n\t\t} else {\n\t\t\tthrow new Error(`Invalid Chalk template style argument: ${chunk} (in style '${name}')`);\n\t\t}\n\t}\n\n\treturn results;\n}\n\nfunction parseStyle(style) {\n\tSTYLE_REGEX.lastIndex = 0;\n\n\tconst results = [];\n\tlet matches;\n\n\twhile ((matches = STYLE_REGEX.exec(style)) !== null) {\n\t\tconst name = matches[1];\n\n\t\tif (matches[2]) {\n\t\t\tconst args = parseArguments(name, matches[2]);\n\t\t\tresults.push([name].concat(args));\n\t\t} else {\n\t\t\tresults.push([name]);\n\t\t}\n\t}\n\n\treturn results;\n}\n\nfunction buildStyle(chalk, styles) {\n\tconst enabled = {};\n\n\tfor (const layer of styles) {\n\t\tfor (const style of layer.styles) {\n\t\t\tenabled[style[0]] = layer.inverse ? null : style.slice(1);\n\t\t}\n\t}\n\n\tlet current = chalk;\n\tfor (const [styleName, styles] of Object.entries(enabled)) {\n\t\tif (!Array.isArray(styles)) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tif (!(styleName in current)) {\n\t\t\tthrow new Error(`Unknown Chalk style: ${styleName}`);\n\t\t}\n\n\t\tcurrent = styles.length > 0 ? current[styleName](...styles) : current[styleName];\n\t}\n\n\treturn current;\n}\n\nmodule.exports = (chalk, temporary) => {\n\tconst styles = [];\n\tconst chunks = [];\n\tlet chunk = [];\n\n\t// eslint-disable-next-line max-params\n\ttemporary.replace(TEMPLATE_REGEX, (m, escapeCharacter, inverse, style, close, character) => {\n\t\tif (escapeCharacter) {\n\t\t\tchunk.push(unescape(escapeCharacter));\n\t\t} else if (style) {\n\t\t\tconst string = chunk.join('');\n\t\t\tchunk = [];\n\t\t\tchunks.push(styles.length === 0 ? string : buildStyle(chalk, styles)(string));\n\t\t\tstyles.push({inverse, styles: parseStyle(style)});\n\t\t} else if (close) {\n\t\t\tif (styles.length === 0) {\n\t\t\t\tthrow new Error('Found extraneous } in Chalk template literal');\n\t\t\t}\n\n\t\t\tchunks.push(buildStyle(chalk, styles)(chunk.join('')));\n\t\t\tchunk = [];\n\t\t\tstyles.pop();\n\t\t} else {\n\t\t\tchunk.push(character);\n\t\t}\n\t});\n\n\tchunks.push(chunk.join(''));\n\n\tif (styles.length > 0) {\n\t\tconst errMessage = `Chalk template literal is missing ${styles.length} closing bracket${styles.length === 1 ? '' : 's'} (\\`}\\`)`;\n\t\tthrow new Error(errMessage);\n\t}\n\n\treturn chunks.join('');\n};\n","'use strict';\nconst ansiStyles = require('ansi-styles');\nconst {stdout: stdoutColor, stderr: stderrColor} = require('supports-color');\nconst {\n\tstringReplaceAll,\n\tstringEncaseCRLFWithFirstIndex\n} = require('./util');\n\nconst {isArray} = Array;\n\n// `supportsColor.level` → `ansiStyles.color[name]` mapping\nconst levelMapping = [\n\t'ansi',\n\t'ansi',\n\t'ansi256',\n\t'ansi16m'\n];\n\nconst styles = Object.create(null);\n\nconst applyOptions = (object, options = {}) => {\n\tif (options.level && !(Number.isInteger(options.level) && options.level >= 0 && options.level <= 3)) {\n\t\tthrow new Error('The `level` option should be an integer from 0 to 3');\n\t}\n\n\t// Detect level if not set manually\n\tconst colorLevel = stdoutColor ? stdoutColor.level : 0;\n\tobject.level = options.level === undefined ? colorLevel : options.level;\n};\n\nclass ChalkClass {\n\tconstructor(options) {\n\t\t// eslint-disable-next-line no-constructor-return\n\t\treturn chalkFactory(options);\n\t}\n}\n\nconst chalkFactory = options => {\n\tconst chalk = {};\n\tapplyOptions(chalk, options);\n\n\tchalk.template = (...arguments_) => chalkTag(chalk.template, ...arguments_);\n\n\tObject.setPrototypeOf(chalk, Chalk.prototype);\n\tObject.setPrototypeOf(chalk.template, chalk);\n\n\tchalk.template.constructor = () => {\n\t\tthrow new Error('`chalk.constructor()` is deprecated. Use `new chalk.Instance()` instead.');\n\t};\n\n\tchalk.template.Instance = ChalkClass;\n\n\treturn chalk.template;\n};\n\nfunction Chalk(options) {\n\treturn chalkFactory(options);\n}\n\nfor (const [styleName, style] of Object.entries(ansiStyles)) {\n\tstyles[styleName] = {\n\t\tget() {\n\t\t\tconst builder = createBuilder(this, createStyler(style.open, style.close, this._styler), this._isEmpty);\n\t\t\tObject.defineProperty(this, styleName, {value: builder});\n\t\t\treturn builder;\n\t\t}\n\t};\n}\n\nstyles.visible = {\n\tget() {\n\t\tconst builder = createBuilder(this, this._styler, true);\n\t\tObject.defineProperty(this, 'visible', {value: builder});\n\t\treturn builder;\n\t}\n};\n\nconst usedModels = ['rgb', 'hex', 'keyword', 'hsl', 'hsv', 'hwb', 'ansi', 'ansi256'];\n\nfor (const model of usedModels) {\n\tstyles[model] = {\n\t\tget() {\n\t\t\tconst {level} = this;\n\t\t\treturn function (...arguments_) {\n\t\t\t\tconst styler = createStyler(ansiStyles.color[levelMapping[level]][model](...arguments_), ansiStyles.color.close, this._styler);\n\t\t\t\treturn createBuilder(this, styler, this._isEmpty);\n\t\t\t};\n\t\t}\n\t};\n}\n\nfor (const model of usedModels) {\n\tconst bgModel = 'bg' + model[0].toUpperCase() + model.slice(1);\n\tstyles[bgModel] = {\n\t\tget() {\n\t\t\tconst {level} = this;\n\t\t\treturn function (...arguments_) {\n\t\t\t\tconst styler = createStyler(ansiStyles.bgColor[levelMapping[level]][model](...arguments_), ansiStyles.bgColor.close, this._styler);\n\t\t\t\treturn createBuilder(this, styler, this._isEmpty);\n\t\t\t};\n\t\t}\n\t};\n}\n\nconst proto = Object.defineProperties(() => {}, {\n\t...styles,\n\tlevel: {\n\t\tenumerable: true,\n\t\tget() {\n\t\t\treturn this._generator.level;\n\t\t},\n\t\tset(level) {\n\t\t\tthis._generator.level = level;\n\t\t}\n\t}\n});\n\nconst createStyler = (open, close, parent) => {\n\tlet openAll;\n\tlet closeAll;\n\tif (parent === undefined) {\n\t\topenAll = open;\n\t\tcloseAll = close;\n\t} else {\n\t\topenAll = parent.openAll + open;\n\t\tcloseAll = close + parent.closeAll;\n\t}\n\n\treturn {\n\t\topen,\n\t\tclose,\n\t\topenAll,\n\t\tcloseAll,\n\t\tparent\n\t};\n};\n\nconst createBuilder = (self, _styler, _isEmpty) => {\n\tconst builder = (...arguments_) => {\n\t\tif (isArray(arguments_[0]) && isArray(arguments_[0].raw)) {\n\t\t\t// Called as a template literal, for example: chalk.red`2 + 3 = {bold ${2+3}}`\n\t\t\treturn applyStyle(builder, chalkTag(builder, ...arguments_));\n\t\t}\n\n\t\t// Single argument is hot path, implicit coercion is faster than anything\n\t\t// eslint-disable-next-line no-implicit-coercion\n\t\treturn applyStyle(builder, (arguments_.length === 1) ? ('' + arguments_[0]) : arguments_.join(' '));\n\t};\n\n\t// We alter the prototype because we must return a function, but there is\n\t// no way to create a function with a different prototype\n\tObject.setPrototypeOf(builder, proto);\n\n\tbuilder._generator = self;\n\tbuilder._styler = _styler;\n\tbuilder._isEmpty = _isEmpty;\n\n\treturn builder;\n};\n\nconst applyStyle = (self, string) => {\n\tif (self.level <= 0 || !string) {\n\t\treturn self._isEmpty ? '' : string;\n\t}\n\n\tlet styler = self._styler;\n\n\tif (styler === undefined) {\n\t\treturn string;\n\t}\n\n\tconst {openAll, closeAll} = styler;\n\tif (string.indexOf('\\u001B') !== -1) {\n\t\twhile (styler !== undefined) {\n\t\t\t// Replace any instances already present with a re-opening code\n\t\t\t// otherwise only the part of the string until said closing code\n\t\t\t// will be colored, and the rest will simply be 'plain'.\n\t\t\tstring = stringReplaceAll(string, styler.close, styler.open);\n\n\t\t\tstyler = styler.parent;\n\t\t}\n\t}\n\n\t// We can move both next actions out of loop, because remaining actions in loop won't have\n\t// any/visible effect on parts we add here. Close the styling before a linebreak and reopen\n\t// after next line to fix a bleed issue on macOS: https://github.com/chalk/chalk/pull/92\n\tconst lfIndex = string.indexOf('\\n');\n\tif (lfIndex !== -1) {\n\t\tstring = stringEncaseCRLFWithFirstIndex(string, closeAll, openAll, lfIndex);\n\t}\n\n\treturn openAll + string + closeAll;\n};\n\nlet template;\nconst chalkTag = (chalk, ...strings) => {\n\tconst [firstString] = strings;\n\n\tif (!isArray(firstString) || !isArray(firstString.raw)) {\n\t\t// If chalk() was called by itself or with a string,\n\t\t// return the string itself as a string.\n\t\treturn strings.join(' ');\n\t}\n\n\tconst arguments_ = strings.slice(1);\n\tconst parts = [firstString.raw[0]];\n\n\tfor (let i = 1; i < firstString.length; i++) {\n\t\tparts.push(\n\t\t\tString(arguments_[i - 1]).replace(/[{}\\\\]/g, '\\\\$&'),\n\t\t\tString(firstString.raw[i])\n\t\t);\n\t}\n\n\tif (template === undefined) {\n\t\ttemplate = require('./templates');\n\t}\n\n\treturn template(chalk, parts.join(''));\n};\n\nObject.defineProperties(Chalk.prototype, styles);\n\nconst chalk = Chalk(); // eslint-disable-line new-cap\nchalk.supportsColor = stdoutColor;\nchalk.stderr = Chalk({level: stderrColor ? stderrColor.level : 0}); // eslint-disable-line new-cap\nchalk.stderr.supportsColor = stderrColor;\n\nmodule.exports = chalk;\n","function noop(){}\n\nexport default global.console ? global.console : {\n log: noop,\n info: noop,\n warn: noop,\n error: noop,\n dir: noop,\n assert: noop,\n time: noop,\n timeEnd: noop,\n trace: noop\n};\n","\"use strict\";\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.DebugLogger = exports.newDebugLogger = void 0;\nconst chalk_1 = __importDefault(require(\"chalk\"));\nconst utils_1 = require(\"./utils\");\nfunction indentString(indentLevel) {\n let str = \"\";\n for (let i = 0; i < indentLevel; i++) {\n str += chalk_1.default.blackBright(\"⎸ \");\n }\n return str;\n}\nfunction isEnabled(name) {\n const v = process.env.APOLLO_FEDERATION_DEBUG;\n const bool = (0, utils_1.validateStringContainsBoolean)(v);\n if (bool !== undefined) {\n return bool;\n }\n const enabledNames = v.split(',').map(n => n.trim());\n return enabledNames.includes(name);\n}\nlet currentIndentLevel = 0;\nlet currentIndentation = '';\nlet maxLoggerNameLength = 0;\nconst createdLoggers = [];\nfunction newDebugLogger(name) {\n const enabled = isEnabled(name);\n const created = new DebugLogger(name, enabled);\n if (enabled) {\n global.console = require('console');\n createdLoggers.push(created);\n maxLoggerNameLength = Math.max(maxLoggerNameLength, name.length);\n for (const logger of createdLoggers) {\n DebugLogger.prototype['updateHeader'].call(logger, maxLoggerNameLength);\n }\n }\n return created;\n}\nexports.newDebugLogger = newDebugLogger;\nfunction increaseIndentation() {\n currentIndentLevel++;\n currentIndentation = indentString(currentIndentLevel);\n}\nfunction decreaseIndentation() {\n if (currentIndentLevel > 0) {\n currentIndentLevel--;\n currentIndentation = indentString(currentIndentLevel);\n }\n}\nclass DebugLogger {\n constructor(name, enabled) {\n this.name = name;\n this.enabled = enabled;\n this.header = chalk_1.default.blackBright(`[${name}] `);\n }\n updateHeader(maxLength) {\n let padding = \"\";\n if (maxLength > this.name.length) {\n const toPad = maxLength - this.name.length;\n for (let i = 0; i < toPad; i++) {\n padding += \" \";\n }\n }\n this.header = chalk_1.default.blackBright('[' + padding + this.name + '] ');\n }\n doLog(str) {\n const indent = this.header + currentIndentation;\n const withIndentedNewlines = str.replace(/\\n/g, '\\n' + indent + ' ');\n console.log(indent + withIndentedNewlines);\n }\n log(message, prefix = chalk_1.default.yellow('• ')) {\n if (!this.enabled)\n return this;\n if (typeof message !== 'string') {\n message = message();\n }\n this.doLog(prefix + message);\n return this;\n }\n groupedValues(values, printFn, initialMessage) {\n if (!this.enabled)\n return this;\n this.group(initialMessage);\n for (const value of values) {\n this.doLog('- ' + printFn(value));\n }\n return this.groupEnd();\n }\n groupedEntries(map, keyPrintFn, valuePrintFn) {\n if (!this.enabled)\n return this;\n this.group();\n for (const [k, v] of map.entries()) {\n this.doLog('- ' + keyPrintFn(k) + ': ' + valuePrintFn(v));\n }\n return this.groupEnd();\n }\n group(openingMessage) {\n if (this.enabled) {\n if (openingMessage) {\n this.log(openingMessage, chalk_1.default.blue('‣ '));\n }\n increaseIndentation();\n }\n return this;\n }\n groupEnd(closingMessage) {\n if (!this.enabled) {\n return this;\n }\n decreaseIndentation();\n if (closingMessage) {\n this.log(closingMessage, chalk_1.default.green('⇒ '));\n }\n return this;\n }\n}\nexports.DebugLogger = DebugLogger;\n//# sourceMappingURL=debug.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.JOIN_VERSIONS = exports.JoinSpecDefinition = exports.joinIdentity = void 0;\nconst graphql_1 = require(\"graphql\");\nconst coreSpec_1 = require(\"./coreSpec\");\nconst definitions_1 = require(\"./definitions\");\nconst utils_1 = require(\"./utils\");\nexports.joinIdentity = 'https://specs.apollo.dev/join';\nfunction sanitizeGraphQLName(name) {\n const alphaNumericUnderscoreOnly = name.replace(/[\\W]/g, '_');\n const noNumericFirstChar = alphaNumericUnderscoreOnly.match(/^\\d/)\n ? '_' + alphaNumericUnderscoreOnly\n : alphaNumericUnderscoreOnly;\n const noUnderscoreNumericEnding = noNumericFirstChar.match(/_\\d+$/)\n ? noNumericFirstChar + '_'\n : noNumericFirstChar;\n const toUpper = noUnderscoreNumericEnding.toLocaleUpperCase();\n return toUpper;\n}\nclass JoinSpecDefinition extends coreSpec_1.FeatureDefinition {\n constructor(version) {\n super(new coreSpec_1.FeatureUrl(exports.joinIdentity, 'join', version));\n }\n isV01() {\n return this.version.equals(new coreSpec_1.FeatureVersion(0, 1));\n }\n addElementsToSchema(schema) {\n const joinGraph = this.addDirective(schema, 'graph').addLocations(graphql_1.DirectiveLocation.ENUM_VALUE);\n joinGraph.addArgument('name', new definitions_1.NonNullType(schema.stringType()));\n joinGraph.addArgument('url', new definitions_1.NonNullType(schema.stringType()));\n const graphEnum = this.addEnumType(schema, 'Graph');\n const joinFieldSet = this.addScalarType(schema, 'FieldSet');\n const joinType = this.addDirective(schema, 'type').addLocations(graphql_1.DirectiveLocation.OBJECT, graphql_1.DirectiveLocation.INTERFACE, graphql_1.DirectiveLocation.UNION, graphql_1.DirectiveLocation.ENUM, graphql_1.DirectiveLocation.INPUT_OBJECT, graphql_1.DirectiveLocation.SCALAR);\n if (!this.isV01()) {\n joinType.repeatable = true;\n }\n joinType.addArgument('graph', new definitions_1.NonNullType(graphEnum));\n joinType.addArgument('key', joinFieldSet);\n if (!this.isV01()) {\n joinType.addArgument('extension', new definitions_1.NonNullType(schema.booleanType()), false);\n }\n const joinField = this.addDirective(schema, 'field').addLocations(graphql_1.DirectiveLocation.FIELD_DEFINITION, graphql_1.DirectiveLocation.INPUT_FIELD_DEFINITION);\n joinField.repeatable = true;\n joinField.addArgument('graph', new definitions_1.NonNullType(graphEnum));\n joinField.addArgument('requires', joinFieldSet);\n joinField.addArgument('provides', joinFieldSet);\n if (!this.isV01()) {\n joinField.addArgument('type', schema.stringType());\n joinField.addArgument('external', schema.booleanType());\n }\n if (!this.isV01()) {\n const joinImplements = this.addDirective(schema, 'implements').addLocations(graphql_1.DirectiveLocation.OBJECT, graphql_1.DirectiveLocation.INTERFACE);\n joinImplements.repeatable = true;\n joinImplements.addArgument('graph', new definitions_1.NonNullType(graphEnum));\n joinImplements.addArgument('interface', new definitions_1.NonNullType(schema.stringType()));\n }\n if (this.isV01()) {\n const joinOwner = this.addDirective(schema, 'owner').addLocations(graphql_1.DirectiveLocation.OBJECT);\n joinOwner.addArgument('graph', new definitions_1.NonNullType(graphEnum));\n }\n }\n populateGraphEnum(schema, subgraphs) {\n const sanitizedNameToSubgraphs = new utils_1.MultiMap();\n for (const subgraph of subgraphs) {\n const sanitized = sanitizeGraphQLName(subgraph.name);\n sanitizedNameToSubgraphs.add(sanitized, subgraph);\n }\n const subgraphToEnumName = new Map();\n for (const [sanitizedName, subgraphsForName] of sanitizedNameToSubgraphs) {\n if (subgraphsForName.length === 1) {\n subgraphToEnumName.set(subgraphsForName[0].name, sanitizedName);\n }\n else {\n for (const [index, subgraph] of subgraphsForName.entries()) {\n subgraphToEnumName.set(subgraph.name, `${sanitizedName}_${index + 1}`);\n }\n }\n }\n const graphEnum = this.graphEnum(schema);\n const graphDirective = this.graphDirective(schema);\n for (const subgraph of subgraphs) {\n const enumValue = graphEnum.addValue(subgraphToEnumName.get(subgraph.name));\n enumValue.applyDirective(graphDirective, { name: subgraph.name, url: subgraph.url });\n }\n return subgraphToEnumName;\n }\n fieldSetScalar(schema) {\n return this.type(schema, 'FieldSet');\n }\n graphEnum(schema) {\n return this.type(schema, 'Graph');\n }\n graphDirective(schema) {\n return this.directive(schema, 'graph');\n }\n typeDirective(schema) {\n return this.directive(schema, 'type');\n }\n implementsDirective(schema) {\n return this.directive(schema, 'implements');\n }\n fieldDirective(schema) {\n return this.directive(schema, 'field');\n }\n ownerDirective(schema) {\n return this.directive(schema, 'owner');\n }\n}\nexports.JoinSpecDefinition = JoinSpecDefinition;\nexports.JOIN_VERSIONS = new coreSpec_1.FeatureDefinitions(exports.joinIdentity)\n .add(new JoinSpecDefinition(new coreSpec_1.FeatureVersion(0, 1)))\n .add(new JoinSpecDefinition(new coreSpec_1.FeatureVersion(0, 2)));\n//# sourceMappingURL=joinSpec.js.map","export default {};\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// resolves . and .. elements in a path array with directory names there\n// must be no slashes, empty elements, or device names (c:\\) in the array\n// (so also no leading and trailing slashes - it does not distinguish\n// relative and absolute paths)\nfunction normalizeArray(parts, allowAboveRoot) {\n // if the path tries to go above the root, `up` ends up > 0\n var up = 0;\n for (var i = parts.length - 1; i >= 0; i--) {\n var last = parts[i];\n if (last === '.') {\n parts.splice(i, 1);\n } else if (last === '..') {\n parts.splice(i, 1);\n up++;\n } else if (up) {\n parts.splice(i, 1);\n up--;\n }\n }\n\n // if the path is allowed to go above the root, restore leading ..s\n if (allowAboveRoot) {\n for (; up--; up) {\n parts.unshift('..');\n }\n }\n\n return parts;\n}\n\n// Split a filename into [root, dir, basename, ext], unix version\n// 'root' is just a slash, or nothing.\nvar splitPathRe =\n /^(\\/?|)([\\s\\S]*?)((?:\\.{1,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$/;\nvar splitPath = function(filename) {\n return splitPathRe.exec(filename).slice(1);\n};\n\n// path.resolve([from ...], to)\n// posix version\nexport function resolve() {\n var resolvedPath = '',\n resolvedAbsolute = false;\n\n for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {\n var path = (i >= 0) ? arguments[i] : '/';\n\n // Skip empty and invalid entries\n if (typeof path !== 'string') {\n throw new TypeError('Arguments to path.resolve must be strings');\n } else if (!path) {\n continue;\n }\n\n resolvedPath = path + '/' + resolvedPath;\n resolvedAbsolute = path.charAt(0) === '/';\n }\n\n // At this point the path should be resolved to a full absolute path, but\n // handle relative paths to be safe (might happen when process.cwd() fails)\n\n // Normalize the path\n resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {\n return !!p;\n }), !resolvedAbsolute).join('/');\n\n return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';\n};\n\n// path.normalize(path)\n// posix version\nexport function normalize(path) {\n var isPathAbsolute = isAbsolute(path),\n trailingSlash = substr(path, -1) === '/';\n\n // Normalize the path\n path = normalizeArray(filter(path.split('/'), function(p) {\n return !!p;\n }), !isPathAbsolute).join('/');\n\n if (!path && !isPathAbsolute) {\n path = '.';\n }\n if (path && trailingSlash) {\n path += '/';\n }\n\n return (isPathAbsolute ? '/' : '') + path;\n};\n\n// posix version\nexport function isAbsolute(path) {\n return path.charAt(0) === '/';\n}\n\n// posix version\nexport function join() {\n var paths = Array.prototype.slice.call(arguments, 0);\n return normalize(filter(paths, function(p, index) {\n if (typeof p !== 'string') {\n throw new TypeError('Arguments to path.join must be strings');\n }\n return p;\n }).join('/'));\n}\n\n\n// path.relative(from, to)\n// posix version\nexport function relative(from, to) {\n from = resolve(from).substr(1);\n to = resolve(to).substr(1);\n\n function trim(arr) {\n var start = 0;\n for (; start < arr.length; start++) {\n if (arr[start] !== '') break;\n }\n\n var end = arr.length - 1;\n for (; end >= 0; end--) {\n if (arr[end] !== '') break;\n }\n\n if (start > end) return [];\n return arr.slice(start, end - start + 1);\n }\n\n var fromParts = trim(from.split('/'));\n var toParts = trim(to.split('/'));\n\n var length = Math.min(fromParts.length, toParts.length);\n var samePartsLength = length;\n for (var i = 0; i < length; i++) {\n if (fromParts[i] !== toParts[i]) {\n samePartsLength = i;\n break;\n }\n }\n\n var outputParts = [];\n for (var i = samePartsLength; i < fromParts.length; i++) {\n outputParts.push('..');\n }\n\n outputParts = outputParts.concat(toParts.slice(samePartsLength));\n\n return outputParts.join('/');\n}\n\nexport var sep = '/';\nexport var delimiter = ':';\n\nexport function dirname(path) {\n var result = splitPath(path),\n root = result[0],\n dir = result[1];\n\n if (!root && !dir) {\n // No dirname whatsoever\n return '.';\n }\n\n if (dir) {\n // It has a dirname, strip trailing slash\n dir = dir.substr(0, dir.length - 1);\n }\n\n return root + dir;\n}\n\nexport function basename(path, ext) {\n var f = splitPath(path)[2];\n // TODO: make this comparison case-insensitive on windows?\n if (ext && f.substr(-1 * ext.length) === ext) {\n f = f.substr(0, f.length - ext.length);\n }\n return f;\n}\n\n\nexport function extname(path) {\n return splitPath(path)[3];\n}\nexport default {\n extname: extname,\n basename: basename,\n dirname: dirname,\n sep: sep,\n delimiter: delimiter,\n relative: relative,\n join: join,\n isAbsolute: isAbsolute,\n normalize: normalize,\n resolve: resolve\n};\nfunction filter (xs, f) {\n if (xs.filter) return xs.filter(f);\n var res = [];\n for (var i = 0; i < xs.length; i++) {\n if (f(xs[i], i, xs)) res.push(xs[i]);\n }\n return res;\n}\n\n// String.prototype.substr - negative index don't work in IE8\nvar substr = 'ab'.substr(-1) === 'b' ?\n function (str, start, len) { return str.substr(start, len) } :\n function (str, start, len) {\n if (start < 0) start = str.length + start;\n return str.substr(start, len);\n }\n;\n","\"use strict\";\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.extractSubgraphsFromSupergraph = exports.extractSubgraphsNamesAndUrlsFromSupergraph = void 0;\nconst definitions_1 = require(\"./definitions\");\nconst federation_1 = require(\"./federation\");\nconst coreSpec_1 = require(\"./coreSpec\");\nconst federation_2 = require(\"./federation\");\nconst utils_1 = require(\"./utils\");\nconst supergraphs_1 = require(\"./supergraphs\");\nconst buildSchema_1 = require(\"./buildSchema\");\nconst graphql_1 = require(\"graphql\");\nconst operations_1 = require(\"./operations\");\nconst types_1 = require(\"./types\");\nconst print_1 = require(\"./print\");\nconst fs_1 = __importDefault(require(\"fs\"));\nconst path_1 = __importDefault(require(\"path\"));\nconst utils_2 = require(\"./utils\");\nfunction filteredTypes(supergraph, joinSpec, coreSpec) {\n return supergraph.types().filter(t => !joinSpec.isSpecType(t) && !coreSpec.isSpecType(t));\n}\nfunction extractSubgraphsNamesAndUrlsFromSupergraph(supergraph) {\n const [_, joinSpec] = (0, supergraphs_1.validateSupergraph)(supergraph);\n const [subgraphs] = collectEmptySubgraphs(supergraph, joinSpec);\n return subgraphs.values().map(subgraph => { return { name: subgraph.name, url: subgraph.url }; });\n}\nexports.extractSubgraphsNamesAndUrlsFromSupergraph = extractSubgraphsNamesAndUrlsFromSupergraph;\nfunction collectEmptySubgraphs(supergraph, joinSpec) {\n const subgraphs = new federation_2.Subgraphs();\n const graphDirective = joinSpec.graphDirective(supergraph);\n const graphEnum = joinSpec.graphEnum(supergraph);\n const graphEnumNameToSubgraphName = new Map();\n for (const value of graphEnum.values) {\n const graphApplications = value.appliedDirectivesOf(graphDirective);\n if (!graphApplications.length) {\n throw new Error(`Value ${value} of join__Graph enum has no @join__graph directive`);\n }\n const info = graphApplications[0].arguments();\n const subgraph = new federation_2.Subgraph(info.name, info.url, new definitions_1.Schema(federation_1.federationBuiltIns), false);\n subgraphs.add(subgraph);\n graphEnumNameToSubgraphName.set(value.name, info.name);\n }\n return [subgraphs, graphEnumNameToSubgraphName];\n}\nfunction extractSubgraphsFromSupergraph(supergraph) {\n const [coreFeatures, joinSpec] = (0, supergraphs_1.validateSupergraph)(supergraph);\n const isFed1 = joinSpec.version.equals(new coreSpec_1.FeatureVersion(0, 1));\n const [subgraphs, graphEnumNameToSubgraphName] = collectEmptySubgraphs(supergraph, joinSpec);\n const typeDirective = joinSpec.typeDirective(supergraph);\n const implementsDirective = joinSpec.implementsDirective(supergraph);\n for (const type of filteredTypes(supergraph, joinSpec, coreFeatures.coreDefinition)) {\n const typeApplications = type.appliedDirectivesOf(typeDirective);\n if (!typeApplications.length) {\n subgraphs.values().map(sg => sg.schema).forEach(schema => schema.addType((0, definitions_1.newNamedType)(type.kind, type.name)));\n }\n else {\n for (const application of typeApplications) {\n const args = application.arguments();\n const subgraphName = graphEnumNameToSubgraphName.get(args.graph);\n const schema = subgraphs.get(subgraphName).schema;\n let subgraphType = schema.type(type.name);\n if (!subgraphType) {\n subgraphType = schema.addType((0, definitions_1.newNamedType)(type.kind, type.name));\n }\n if (args.key) {\n const directive = subgraphType.applyDirective('key', { 'fields': args.key });\n if (args.extension) {\n directive.setOfExtension(subgraphType.newExtension());\n }\n }\n }\n }\n }\n const ownerDirective = joinSpec.ownerDirective(supergraph);\n const fieldDirective = joinSpec.fieldDirective(supergraph);\n for (const type of filteredTypes(supergraph, joinSpec, coreFeatures.coreDefinition)) {\n switch (type.kind) {\n case 'ObjectType':\n case 'InterfaceType':\n const addedInterfaces = [];\n const implementsApplications = implementsDirective ? type.appliedDirectivesOf(implementsDirective) : [];\n for (const application of implementsApplications) {\n const args = application.arguments();\n const subgraph = subgraphs.get(graphEnumNameToSubgraphName.get(args.graph));\n const schema = subgraph.schema;\n schema.type(type.name).addImplementedInterface(args.interface);\n addedInterfaces.push(args.interface);\n }\n for (const implementations of type.interfaceImplementations()) {\n const name = implementations.interface.name;\n if (!addedInterfaces.includes(name)) {\n for (const subgraph of subgraphs) {\n const subgraphType = subgraph.schema.type(type.name);\n const subgraphItf = subgraph.schema.type(name);\n if (subgraphType && subgraphItf) {\n subgraphType.addImplementedInterface(name);\n }\n }\n }\n }\n case 'InputObjectType':\n for (const field of type.fields()) {\n const fieldApplications = field.appliedDirectivesOf(fieldDirective);\n if (!fieldApplications.length) {\n const ownerApplications = ownerDirective ? type.appliedDirectivesOf(ownerDirective) : [];\n if (!ownerApplications.length) {\n const fieldBaseType = (0, definitions_1.baseType)(field.type);\n for (const subgraph of subgraphs) {\n if (subgraph.schema.type(fieldBaseType.name)) {\n addSubgraphField(field, subgraph);\n }\n }\n }\n else {\n (0, utils_1.assert)(ownerApplications.length == 1, () => `Found multiple join__owner directives on type ${type}`);\n const subgraph = subgraphs.get(graphEnumNameToSubgraphName.get(ownerApplications[0].arguments().graph));\n const subgraphField = addSubgraphField(field, subgraph);\n (0, utils_1.assert)(subgraphField, () => `Found join__owner directive on ${type} but no corresponding join__type`);\n }\n }\n else {\n for (const application of fieldApplications) {\n const args = application.arguments();\n const subgraph = subgraphs.get(graphEnumNameToSubgraphName.get(args.graph));\n const subgraphField = addSubgraphField(field, subgraph, args.type);\n (0, utils_1.assert)(subgraphField, () => `Found join__field directive for graph ${subgraph.name} on field ${field.coordinate} but no corresponding join__type on ${type}`);\n if (args.requires) {\n subgraphField.applyDirective('requires', { 'fields': args.requires });\n }\n if (args.provides) {\n subgraphField.applyDirective('provides', { 'fields': args.provides });\n }\n if (args.external) {\n subgraphField.applyDirective('external');\n }\n }\n }\n }\n break;\n case 'EnumType':\n for (const subgraph of subgraphs) {\n const subgraphEnum = subgraph.schema.type(type.name);\n if (!subgraphEnum) {\n continue;\n }\n (0, utils_1.assert)((0, definitions_1.isEnumType)(subgraphEnum), () => `${subgraphEnum} should be an enum but found a ${subgraphEnum.kind}`);\n for (const value of type.values) {\n subgraphEnum.addValue(value.name);\n }\n }\n break;\n case 'UnionType':\n for (const subgraph of subgraphs) {\n const subgraphUnion = subgraph.schema.type(type.name);\n if (!subgraphUnion) {\n continue;\n }\n (0, utils_1.assert)((0, definitions_1.isUnionType)(subgraphUnion), () => `${subgraphUnion} should be an enum but found a ${subgraphUnion.kind}`);\n for (const memberType of type.types()) {\n const subgraphType = subgraph.schema.type(memberType.name);\n if (subgraphType) {\n subgraphUnion.addType(subgraphType);\n }\n }\n }\n break;\n }\n }\n for (const subgraph of subgraphs) {\n if (isFed1) {\n addExternalFields(subgraph, supergraph, isFed1);\n }\n removeNeedlessProvides(subgraph);\n for (const type of subgraph.schema.types()) {\n switch (type.kind) {\n case 'ObjectType':\n case 'InterfaceType':\n case 'InputObjectType':\n if (!type.hasFields()) {\n type.removeRecursive();\n }\n break;\n case 'UnionType':\n if (type.membersCount() === 0) {\n type.remove();\n }\n break;\n }\n }\n }\n if (isFed1) {\n for (const subgraph of subgraphs) {\n for (const itf of subgraph.schema.types('InterfaceType')) {\n const implementations = itf.possibleRuntimeTypes();\n for (const field of itf.fields()) {\n if (!implementations.every(implem => implem.field(field.name))) {\n field.remove();\n }\n }\n if (!itf.hasFields()) {\n itf.remove();\n }\n }\n }\n }\n for (const subgraph of subgraphs) {\n try {\n subgraph.schema.validate();\n }\n catch (e) {\n if (isFed1) {\n const msg = `Error extracting subgraph ${subgraph.name} from the supergraph: this might due to errors in subgraphs that were mistakenly ignored by federation 0.x versions but are rejected by federation 2.\\n`\n + 'Please try composing your subgraphs with federation 2: this should help precisely pinpoint the errors and generate a correct federation 2 supergraph.';\n throw new Error(`${msg}.\\n\\nDetails:\\n${errorToString(e, subgraph.name)}`);\n }\n else {\n const msg = `Unexpected error extracting subgraph ${subgraph.name} from the supergraph: this is either a bug, or the supergraph has been corrupted.`;\n const dumpMsg = maybeDumpSubgraphSchema(subgraph);\n throw new Error(`${msg}.\\n\\nDetails:\\n${errorToString(e, subgraph.name)}\\n\\n${dumpMsg}`);\n }\n }\n }\n return subgraphs;\n}\nexports.extractSubgraphsFromSupergraph = extractSubgraphsFromSupergraph;\nconst DEBUG_SUBGRAPHS_ENV_VARIABLE_NAME = 'APOLLO_FEDERATION_DEBUG_SUBGRAPHS';\nfunction maybeDumpSubgraphSchema(subgraph) {\n const shouldDump = !!(0, utils_2.validateStringContainsBoolean)(process.env[DEBUG_SUBGRAPHS_ENV_VARIABLE_NAME]);\n if (!shouldDump) {\n return `Re-run with environment variable '${DEBUG_SUBGRAPHS_ENV_VARIABLE_NAME}' set to 'true' to extract the invalid subgraph`;\n }\n try {\n const filename = `extracted-subgraph-${subgraph.name}-${Date.now()}.graphql`;\n const file = path_1.default.resolve(filename);\n if (fs_1.default.existsSync(file)) {\n throw new Error(`candidate file ${filename} already existed`);\n }\n fs_1.default.writeFileSync(file, (0, print_1.printSchema)(subgraph.schema));\n return `The (invalid) extracted subgraph has been written in: ${file}.`;\n }\n catch (e2) {\n return `Was not able to print generated subgraph because: ${errorToString(e2, subgraph.name)}`;\n }\n}\nfunction errorToString(e, subgraphName) {\n return e instanceof graphql_1.GraphQLError ? (0, federation_1.addSubgraphToError)(e, subgraphName).toString() : String(e);\n}\nfunction addSubgraphField(supergraphField, subgraph, encodedType) {\n if (supergraphField instanceof definitions_1.FieldDefinition) {\n return addSubgraphObjectOrInterfaceField(supergraphField, subgraph, encodedType);\n }\n else {\n return addSubgraphInputField(supergraphField, subgraph, encodedType);\n }\n}\nfunction addSubgraphObjectOrInterfaceField(supergraphField, subgraph, encodedType) {\n const subgraphType = subgraph.schema.type(supergraphField.parent.name);\n if (subgraphType) {\n const copiedType = encodedType\n ? decodeType(encodedType, subgraph.schema, subgraph.name)\n : copyType(supergraphField.type, subgraph.schema, subgraph.name);\n const field = subgraphType.addField(supergraphField.name, copiedType);\n for (const arg of supergraphField.arguments()) {\n field.addArgument(arg.name, copyType(arg.type, subgraph.schema, subgraph.name), arg.defaultValue);\n }\n return field;\n }\n else {\n return undefined;\n }\n}\nfunction addSubgraphInputField(supergraphField, subgraph, encodedType) {\n const subgraphType = subgraph.schema.type(supergraphField.parent.name);\n if (subgraphType) {\n const copiedType = encodedType\n ? decodeType(encodedType, subgraph.schema, subgraph.name)\n : copyType(supergraphField.type, subgraph.schema, subgraph.name);\n return subgraphType.addField(supergraphField.name, copiedType);\n }\n else {\n return undefined;\n }\n}\nfunction decodeType(encodedType, subgraph, subgraphName) {\n try {\n return (0, buildSchema_1.builtTypeReference)(encodedType, subgraph);\n }\n catch (e) {\n (0, utils_1.assert)(false, () => `Cannot parse type \"${encodedType}\" in subgraph ${subgraphName}: ${e}`);\n }\n}\nfunction copyType(type, subgraph, subgraphName) {\n switch (type.kind) {\n case 'ListType':\n return new definitions_1.ListType(copyType(type.ofType, subgraph, subgraphName));\n case 'NonNullType':\n return new definitions_1.NonNullType(copyType(type.ofType, subgraph, subgraphName));\n default:\n const subgraphType = subgraph.type(type.name);\n (0, utils_1.assert)(subgraphType, () => `Cannot find type ${type.name} in subgraph ${subgraphName}`);\n return subgraphType;\n }\n}\nfunction addExternalFields(subgraph, supergraph, isFed1) {\n for (const type of subgraph.schema.types()) {\n if (!(0, definitions_1.isObjectType)(type) && !(0, definitions_1.isInterfaceType)(type)) {\n continue;\n }\n for (const keyApplication of type.appliedDirectivesOf(federation_1.federationBuiltIns.keyDirective(subgraph.schema))) {\n const forceNonExternal = isFed1 || !!keyApplication.ofExtension();\n addExternalFieldsFromDirectiveFieldSet(subgraph, type, keyApplication, supergraph, forceNonExternal);\n }\n for (const field of type.fields()) {\n for (const requiresApplication of field.appliedDirectivesOf(federation_1.federationBuiltIns.requiresDirective(subgraph.schema))) {\n addExternalFieldsFromDirectiveFieldSet(subgraph, type, requiresApplication, supergraph);\n }\n const fieldBaseType = (0, definitions_1.baseType)(field.type);\n for (const providesApplication of field.appliedDirectivesOf(federation_1.federationBuiltIns.providesDirective(subgraph.schema))) {\n (0, utils_1.assert)((0, definitions_1.isObjectType)(fieldBaseType) || (0, definitions_1.isInterfaceType)(fieldBaseType), () => `Found @provides on field ${field.coordinate} whose type ${field.type} (${fieldBaseType.kind}) is not an object or interface `);\n addExternalFieldsFromDirectiveFieldSet(subgraph, fieldBaseType, providesApplication, supergraph);\n }\n }\n addExternalFieldsFromInterface(type);\n }\n}\nfunction addExternalFieldsFromDirectiveFieldSet(subgraph, parentType, directive, supergraph, forceNonExternal = false) {\n const external = federation_1.federationBuiltIns.externalDirective(subgraph.schema);\n const accessor = function (type, fieldName) {\n const field = type.field(fieldName);\n if (field) {\n if (forceNonExternal && field.hasAppliedDirective(external)) {\n field.appliedDirectivesOf(external).forEach(d => d.remove());\n }\n return field;\n }\n (0, utils_1.assert)(!(0, definitions_1.isUnionType)(type), () => `Shouldn't select field ${fieldName} from union type ${type}`);\n const supergraphType = supergraph.type(type.name);\n const supergraphField = supergraphType.field(fieldName);\n (0, utils_1.assert)(supergraphField, () => `No field named ${fieldName} found on type ${type.name} in the supergraph`);\n const created = addSubgraphObjectOrInterfaceField(supergraphField, subgraph);\n if (!forceNonExternal) {\n created.applyDirective(external);\n }\n return created;\n };\n (0, federation_1.parseFieldSetArgument)(parentType, directive, accessor);\n}\nfunction addExternalFieldsFromInterface(type) {\n for (const itf of type.interfaces()) {\n for (const field of itf.fields()) {\n const typeField = type.field(field.name);\n if (!typeField) {\n copyFieldAsExternal(field, type);\n }\n else if (typeField.hasAppliedDirective(federation_1.externalDirectiveName)) {\n maybeUpdateFieldForInterface(typeField, field);\n }\n }\n }\n}\nfunction copyFieldAsExternal(field, type) {\n const newField = type.addField(field.name, field.type);\n for (const arg of field.arguments()) {\n newField.addArgument(arg.name, arg.type, arg.defaultValue);\n }\n newField.applyDirective(federation_1.externalDirectiveName);\n}\nfunction maybeUpdateFieldForInterface(toModify, itfField) {\n if (!(0, types_1.isSubtype)(itfField.type, toModify.type)) {\n (0, utils_1.assert)((0, types_1.isSubtype)(toModify.type, itfField.type), () => `For ${toModify.coordinate}, expected ${itfField.type} and ${toModify.type} to be in a subtyping relationship`);\n toModify.type = itfField.type;\n }\n}\nfunction removeNeedlessProvides(subgraph) {\n for (const type of subgraph.schema.types()) {\n if (!(0, definitions_1.isObjectType)(type) && !(0, definitions_1.isInterfaceType)(type)) {\n continue;\n }\n const providesDirective = federation_1.federationBuiltIns.providesDirective(subgraph.schema);\n for (const field of type.fields()) {\n const fieldBaseType = (0, definitions_1.baseType)(field.type);\n for (const providesApplication of field.appliedDirectivesOf(providesDirective)) {\n const selection = (0, federation_1.parseFieldSetArgument)(fieldBaseType, providesApplication);\n if (selectsNonExternalLeafField(selection)) {\n providesApplication.remove();\n const updated = withoutNonExternalLeafFields(selection);\n if (!updated.isEmpty()) {\n field.applyDirective(providesDirective, { fields: updated.toString(true, false) });\n }\n }\n }\n }\n }\n}\nfunction isExternalOrHasExternalImplementations(field) {\n if (field.hasAppliedDirective(federation_1.externalDirectiveName)) {\n return true;\n }\n const parentType = field.parent;\n if ((0, definitions_1.isInterfaceType)(parentType)) {\n for (const implem of parentType.possibleRuntimeTypes()) {\n const fieldInImplem = implem.field(field.name);\n if (fieldInImplem && fieldInImplem.hasAppliedDirective(federation_1.externalDirectiveName)) {\n return true;\n }\n }\n }\n return false;\n}\nfunction selectsNonExternalLeafField(selection) {\n return selection.selections().some(s => {\n if (s.kind === 'FieldSelection') {\n if (isExternalOrHasExternalImplementations(s.field.definition)) {\n return false;\n }\n return !s.selectionSet || selectsNonExternalLeafField(s.selectionSet);\n }\n else {\n return selectsNonExternalLeafField(s.selectionSet);\n }\n });\n}\nfunction withoutNonExternalLeafFields(selectionSet) {\n const newSelectionSet = new operations_1.SelectionSet(selectionSet.parentType);\n for (const selection of selectionSet.selections()) {\n if (selection.kind === 'FieldSelection') {\n if (isExternalOrHasExternalImplementations(selection.field.definition)) {\n newSelectionSet.add(selection);\n continue;\n }\n }\n if (selection.selectionSet) {\n const updated = withoutNonExternalLeafFields(selection.selectionSet);\n if (!updated.isEmpty()) {\n newSelectionSet.add((0, operations_1.selectionOfElement)(selection.element(), updated));\n }\n }\n }\n return newSelectionSet;\n}\n//# sourceMappingURL=extractSubgraphsFromSupergraph.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.isFed1Supergraph = exports.validateSupergraph = exports.buildSupergraphSchema = exports.ErrForUnsupported = exports.ErrUnsupportedFeature = void 0;\nconst graphql_1 = require(\"graphql\");\nconst core_schema_1 = require(\"@apollo/core-schema\");\nconst coreSpec_1 = require(\"./coreSpec\");\nconst definitions_1 = require(\"./definitions\");\nconst joinSpec_1 = require(\"./joinSpec\");\nconst buildSchema_1 = require(\"./buildSchema\");\nconst extractSubgraphsFromSupergraph_1 = require(\"./extractSubgraphsFromSupergraph\");\nconst SUPPORTED_FEATURES = new Set([\n 'https://specs.apollo.dev/core/v0.1',\n 'https://specs.apollo.dev/core/v0.2',\n 'https://specs.apollo.dev/join/v0.1',\n 'https://specs.apollo.dev/join/v0.2',\n 'https://specs.apollo.dev/tag/v0.1',\n 'https://specs.apollo.dev/inaccessible/v0.1',\n]);\nfunction ErrUnsupportedFeature(feature) {\n return (0, core_schema_1.err)('UnsupportedFeature', {\n message: `feature ${feature.url} is for: ${feature.purpose} but is unsupported`,\n feature,\n nodes: feature.directive.sourceAST,\n });\n}\nexports.ErrUnsupportedFeature = ErrUnsupportedFeature;\nfunction ErrForUnsupported(core, ...features) {\n return (0, core_schema_1.err)('ForUnsupported', {\n message: `the \\`for:\\` argument is unsupported by version ${core.url.version} ` +\n `of the core spec. Please upgrade to at least @core v0.2 (https://specs.apollo.dev/core/v0.2).`,\n features,\n nodes: [core.directive.sourceAST, ...features.map(f => f.directive.sourceAST)].filter(n => !!n)\n });\n}\nexports.ErrForUnsupported = ErrForUnsupported;\nconst coreVersionZeroDotOneUrl = coreSpec_1.FeatureUrl.parse('https://specs.apollo.dev/core/v0.1');\nfunction buildSupergraphSchema(supergraphSdl) {\n const schema = typeof supergraphSdl === 'string'\n ? (0, buildSchema_1.buildSchema)(supergraphSdl, definitions_1.graphQLBuiltIns, false)\n : (0, buildSchema_1.buildSchemaFromAST)(supergraphSdl, definitions_1.graphQLBuiltIns, false);\n const [coreFeatures] = validateSupergraph(schema);\n checkFeatureSupport(coreFeatures);\n schema.validate();\n return [schema, (0, extractSubgraphsFromSupergraph_1.extractSubgraphsNamesAndUrlsFromSupergraph)(schema)];\n}\nexports.buildSupergraphSchema = buildSupergraphSchema;\nfunction checkFeatureSupport(coreFeatures) {\n const errors = [];\n if (coreFeatures.coreItself.url.equals(coreVersionZeroDotOneUrl)) {\n const purposefulFeatures = [...coreFeatures.allFeatures()].filter(f => f.purpose);\n if (purposefulFeatures.length > 0) {\n errors.push(ErrForUnsupported(coreFeatures.coreItself, ...purposefulFeatures));\n }\n }\n for (const feature of coreFeatures.allFeatures()) {\n if (feature.url.equals(coreVersionZeroDotOneUrl) || feature.purpose === 'EXECUTION' || feature.purpose === 'SECURITY') {\n if (!SUPPORTED_FEATURES.has(feature.url.base.toString())) {\n errors.push(ErrUnsupportedFeature(feature));\n }\n }\n }\n if (errors.length > 0) {\n throw (0, coreSpec_1.ErrCoreCheckFailed)(errors);\n }\n}\nfunction validateSupergraph(supergraph) {\n const coreFeatures = supergraph.coreFeatures;\n if (!coreFeatures) {\n throw new graphql_1.GraphQLError(\"Invalid supergraph: must be a core schema\");\n }\n const joinFeature = coreFeatures.getByIdentity(joinSpec_1.joinIdentity);\n if (!joinFeature) {\n throw new graphql_1.GraphQLError(\"Invalid supergraph: must use the join spec\");\n }\n const joinSpec = joinSpec_1.JOIN_VERSIONS.find(joinFeature.url.version);\n if (!joinSpec) {\n throw new graphql_1.GraphQLError(`Invalid supergraph: uses unsupported join spec version ${joinFeature.url.version} (supported versions: ${joinSpec_1.JOIN_VERSIONS.versions().join(', ')})`);\n }\n return [coreFeatures, joinSpec];\n}\nexports.validateSupergraph = validateSupergraph;\nfunction isFed1Supergraph(supergraph) {\n return validateSupergraph(supergraph)[1].version.equals(new coreSpec_1.FeatureVersion(0, 1));\n}\nexports.isFed1Supergraph = isFed1Supergraph;\n//# sourceMappingURL=supergraphs.js.map","\"use strict\";\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\n__exportStar(require(\"./definitions\"), exports);\n__exportStar(require(\"./buildSchema\"), exports);\n__exportStar(require(\"./print\"), exports);\n__exportStar(require(\"./values\"), exports);\n__exportStar(require(\"./federation\"), exports);\n__exportStar(require(\"./types\"), exports);\n__exportStar(require(\"./operations\"), exports);\n__exportStar(require(\"./utils\"), exports);\n__exportStar(require(\"./debug\"), exports);\n__exportStar(require(\"./coreSpec\"), exports);\n__exportStar(require(\"./joinSpec\"), exports);\n__exportStar(require(\"./tagSpec\"), exports);\n__exportStar(require(\"./supergraphs\"), exports);\n__exportStar(require(\"./extractSubgraphsFromSupergraph\"), exports);\n__exportStar(require(\"./error\"), exports);\n//# sourceMappingURL=index.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.subgraphEnteringTransition = exports.SubgraphEnteringTransition = exports.DownCast = exports.FieldCollection = exports.RootTypeResolution = exports.KeyResolution = void 0;\nclass KeyResolution {\n constructor() {\n this.kind = 'KeyResolution';\n this.collectOperationElements = false;\n }\n toString() {\n return 'key()';\n }\n}\nexports.KeyResolution = KeyResolution;\nclass RootTypeResolution {\n constructor(rootKind) {\n this.rootKind = rootKind;\n this.kind = 'RootTypeResolution';\n this.collectOperationElements = false;\n }\n toString() {\n return this.rootKind + '()';\n }\n}\nexports.RootTypeResolution = RootTypeResolution;\nclass FieldCollection {\n constructor(definition, isPartOfProvide = false) {\n this.definition = definition;\n this.isPartOfProvide = isPartOfProvide;\n this.kind = 'FieldCollection';\n this.collectOperationElements = true;\n }\n toString() {\n return this.definition.name;\n }\n}\nexports.FieldCollection = FieldCollection;\nclass DownCast {\n constructor(sourceType, castedType) {\n this.sourceType = sourceType;\n this.castedType = castedType;\n this.kind = 'DownCast';\n this.collectOperationElements = true;\n }\n toString() {\n return '... on ' + this.castedType.name;\n }\n}\nexports.DownCast = DownCast;\nclass SubgraphEnteringTransition {\n constructor() {\n this.kind = 'SubgraphEnteringTransition';\n this.collectOperationElements = false;\n }\n toString() {\n return '∅';\n }\n}\nexports.SubgraphEnteringTransition = SubgraphEnteringTransition;\nexports.subgraphEnteringTransition = new SubgraphEnteringTransition();\n//# sourceMappingURL=transition.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.isStructuralFieldSubtype = exports.isStructuralInputSubType = void 0;\nconst federation_internals_1 = require(\"@apollo/federation-internals\");\nfunction typeComparison(t1, t2, typeTest, test) {\n if (typeTest(t1)) {\n return typeTest(t2) ? test(t1, t2) : false;\n }\n return typeTest(t2) ? false : undefined;\n}\nfunction isSubset(set, maybeSubset) {\n return maybeSubset.every(v => set.includes(v));\n}\nfunction isAccessible(element) {\n return element.hasAppliedDirective('inaccessible');\n}\nfunction accessibleEnumValues(enumType) {\n return enumType\n .values\n .filter(v => isAccessible(v))\n .map(v => v.name);\n}\nfunction isEnumInputSubtype(enumType, maybeSubType) {\n if (enumType.name != maybeSubType.name) {\n return false;\n }\n return isSubset(accessibleEnumValues(maybeSubType), accessibleEnumValues(enumType));\n}\nfunction isObjectInputSubtype(objectInputType, maybeSubType) {\n if (objectInputType.name != maybeSubType.name) {\n return false;\n }\n return maybeSubType.fields()\n .filter(isAccessible)\n .every(subtypeField => {\n const field = objectInputType.field(subtypeField.name);\n return field && isAccessible(field) ? isStructuralInputSubType(field.type, subtypeField.type) : false;\n });\n}\nfunction isStructuralInputSubType(inputType, maybeSubType) {\n if ((0, federation_internals_1.isNonNullType)(inputType)) {\n return (0, federation_internals_1.isNonNullType)(maybeSubType) ? isStructuralInputSubType(inputType.ofType, maybeSubType.ofType) : false;\n }\n if ((0, federation_internals_1.isNonNullType)(maybeSubType)) {\n return isStructuralInputSubType(inputType, maybeSubType.ofType);\n }\n let c = typeComparison(inputType, maybeSubType, federation_internals_1.isListType, (l1, l2) => isStructuralInputSubType(l1.ofType, l2.ofType));\n if (c != undefined) {\n return c;\n }\n c = typeComparison(inputType, maybeSubType, federation_internals_1.isScalarType, (l1, l2) => l1.name == l2.name);\n if (c != undefined) {\n return c;\n }\n c = typeComparison(inputType, maybeSubType, federation_internals_1.isEnumType, (l1, l2) => isEnumInputSubtype(l1, l2));\n if (c != undefined) {\n return c;\n }\n c = typeComparison(inputType, maybeSubType, federation_internals_1.isInputObjectType, (l1, l2) => isObjectInputSubtype(l1, l2));\n return c !== null && c !== void 0 ? c : false;\n}\nexports.isStructuralInputSubType = isStructuralInputSubType;\nfunction getArg(field, argName) {\n const arg = field.argument(argName);\n return arg && isAccessible(arg) ? arg : undefined;\n}\nfunction isStructuralFieldSubtype(fieldDef, maybeSubType, allowedRules = federation_internals_1.DEFAULT_SUBTYPING_RULES, unionMembershipTester = (u, m) => u.hasTypeMember(m), implementsInterfaceTester = (m, i) => m.implementsInterface(i)) {\n if (fieldDef.name !== maybeSubType.name) {\n return false;\n }\n if (!(0, federation_internals_1.isSubtype)(maybeSubType.type, fieldDef.type, allowedRules, unionMembershipTester, implementsInterfaceTester)) {\n return false;\n }\n for (const argDef of maybeSubType.arguments().filter(isAccessible)) {\n const providedArgDef = getArg(fieldDef, argDef.name);\n if (!providedArgDef || !isStructuralInputSubType(providedArgDef.type, argDef.type)) {\n return false;\n }\n }\n return true;\n}\nexports.isStructuralFieldSubtype = isStructuralFieldSubtype;\n//# sourceMappingURL=structuralSubtyping.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.simpleTraversal = exports.buildFederatedQueryGraph = exports.buildSupergraphAPIQueryGraph = exports.buildQueryGraph = exports.QueryGraphState = exports.QueryGraph = exports.Edge = exports.isRootVertex = exports.RootVertex = exports.Vertex = exports.isFederatedGraphRootType = exports.federatedGraphRootTypeName = void 0;\nconst federation_internals_1 = require(\"@apollo/federation-internals\");\nconst util_1 = require(\"util\");\nconst transition_1 = require(\"./transition\");\nconst structuralSubtyping_1 = require(\"./structuralSubtyping\");\nconst FEDERATED_GRAPH_ROOT_SOURCE = federation_internals_1.FEDERATION_RESERVED_SUBGRAPH_NAME;\nconst FEDERATED_GRAPH_ROOT_SCHEMA = new federation_internals_1.Schema();\nfunction federatedGraphRootTypeName(rootKind) {\n return `[${rootKind}]`;\n}\nexports.federatedGraphRootTypeName = federatedGraphRootTypeName;\nfunction isFederatedGraphRootType(type) {\n return type.name.startsWith('[') && type.name.endsWith(']');\n}\nexports.isFederatedGraphRootType = isFederatedGraphRootType;\nclass Vertex {\n constructor(index, type, source) {\n this.index = index;\n this.type = type;\n this.source = source;\n }\n toString() {\n return `${this.type}(${this.source})`;\n }\n}\nexports.Vertex = Vertex;\nclass RootVertex extends Vertex {\n constructor(rootKind, index, type, source) {\n super(index, type, source);\n this.rootKind = rootKind;\n }\n toString() {\n return super.toString() + '*';\n }\n}\nexports.RootVertex = RootVertex;\nfunction toRootVertex(vertex, rootKind) {\n return new RootVertex(rootKind, vertex.index, vertex.type, vertex.source);\n}\nfunction isRootVertex(vertex) {\n return vertex instanceof RootVertex;\n}\nexports.isRootVertex = isRootVertex;\nclass Edge {\n constructor(index, head, tail, transition, conditions) {\n this.index = index;\n this.head = head;\n this.tail = tail;\n this.transition = transition;\n this._conditions = conditions;\n }\n get conditions() {\n return this._conditions;\n }\n isEdgeForField(name) {\n return this.transition.kind === 'FieldCollection' && this.transition.definition.name === name;\n }\n matchesSupergraphTransition(supergraph, otherTransition) {\n const transition = this.transition;\n switch (transition.kind) {\n case 'FieldCollection':\n if (otherTransition.kind === 'FieldCollection') {\n return (0, structuralSubtyping_1.isStructuralFieldSubtype)(transition.definition, otherTransition.definition, federation_internals_1.ALL_SUBTYPING_RULES, (union, maybeMember) => supergraph.type(union.name).hasTypeMember(maybeMember.name), (maybeImplementer, itf) => supergraph.type(maybeImplementer.name).implementsInterface(itf));\n }\n else {\n return false;\n }\n case 'DownCast':\n return otherTransition.kind === 'DownCast' && transition.castedType.name === otherTransition.castedType.name;\n default:\n return transition.kind === otherTransition.kind;\n }\n }\n label() {\n if (this.transition instanceof transition_1.SubgraphEnteringTransition && !this._conditions) {\n return \"\";\n }\n return this._conditions ? `${this._conditions} ⊢ ${this.transition}` : this.transition.toString();\n }\n withNewHead(newHead) {\n return new Edge(this.index, newHead, this.tail, this.transition, this._conditions);\n }\n addToConditions(newConditions) {\n if (!this._conditions) {\n this._conditions = new federation_internals_1.SelectionSet(this.head.type);\n }\n this._conditions.mergeIn(newConditions);\n }\n toString() {\n return `${this.head} -> ${this.tail} (${this.label()})`;\n }\n}\nexports.Edge = Edge;\nclass QueryGraph {\n constructor(name, vertices, adjacencies, typesToVertices, rootVertices, sources) {\n this.name = name;\n this.vertices = vertices;\n this.adjacencies = adjacencies;\n this.typesToVertices = typesToVertices;\n this.rootVertices = rootVertices;\n this.sources = sources;\n this.externalTesters = new Map();\n }\n verticesCount() {\n return this.vertices.length;\n }\n edgesCount() {\n return this.adjacencies.reduce((acc, v) => acc + v.length, 0);\n }\n rootKinds() {\n return this.rootVertices.keys();\n }\n roots() {\n return this.rootVertices.values();\n }\n root(kind) {\n return this.rootVertices.get(kind);\n }\n outEdges(vertex) {\n return this.adjacencies[vertex.index];\n }\n outEdge(vertex, edgeIndex) {\n return this.adjacencies[vertex.index][edgeIndex];\n }\n isTerminal(vertex) {\n return this.outEdges(vertex).length == 0;\n }\n verticesForType(typeName) {\n const indexes = this.typesToVertices.get(typeName);\n return indexes == undefined ? [] : indexes.map(i => this.vertices[i]);\n }\n externalTester(source) {\n let tester = this.externalTesters.get(source);\n if (!tester) {\n const schema = this.sources.get(source);\n (0, federation_internals_1.assert)(schema, () => `Unknown source: ${source}`);\n tester = new federation_internals_1.ExternalTester(schema);\n }\n return tester;\n }\n}\nexports.QueryGraph = QueryGraph;\nclass QueryGraphState {\n constructor(graph) {\n this.graph = graph;\n this.verticesStates = new Array(graph.verticesCount());\n this.adjacenciesStates = new Array(graph.verticesCount());\n }\n setVertexState(vertex, state) {\n this.verticesStates[vertex.index] = state;\n }\n removeVertexState(vertex) {\n this.verticesStates[vertex.index] = undefined;\n }\n getVertexState(vertex) {\n return this.verticesStates[vertex.index];\n }\n setEdgeState(edge, state) {\n if (!this.adjacenciesStates[edge.head.index]) {\n this.adjacenciesStates[edge.head.index] = new Array(this.graph.outEdges(edge.head).length);\n }\n this.adjacenciesStates[edge.head.index][edge.index] = state;\n }\n removeEdgeState(edge) {\n this.adjacenciesStates[edge.head.index][edge.index] = undefined;\n }\n getEdgeState(edge) {\n const forEdge = this.adjacenciesStates[edge.head.index];\n return forEdge ? forEdge[edge.index] : undefined;\n }\n toDebugString(vertexMapper, edgeMapper) {\n const vs = this.verticesStates.map((state, idx) => ` ${idx}: ${!state ? \"\" : vertexMapper(state)}`).join(\"\\n\");\n const es = this.adjacenciesStates.map((adj, vIdx) => adj.map((state, eIdx) => ` ${vIdx}[${eIdx}]: ${!state ? \"\" : edgeMapper(state)}`).join(\"\\n\")).join(\"\\n\");\n return `vertices = {${vs}\\n}, edges = {${es}\\n}`;\n }\n}\nexports.QueryGraphState = QueryGraphState;\nfunction buildQueryGraph(name, schema) {\n return buildGraphInternal(name, schema, false);\n}\nexports.buildQueryGraph = buildQueryGraph;\nfunction buildGraphInternal(name, schema, addAdditionalAbstractTypeEdges, supergraphSchema) {\n const builder = new GraphBuilderFromSchema(name, schema, supergraphSchema);\n for (const rootType of schema.schemaDefinition.roots()) {\n builder.addRecursivelyFromRoot(rootType.rootKind, rootType.type);\n }\n if (addAdditionalAbstractTypeEdges) {\n builder.addAdditionalAbstractTypeEdges();\n }\n return builder.build();\n}\nfunction buildSupergraphAPIQueryGraph(supergraph) {\n return buildQueryGraph(\"supergraph\", supergraph);\n}\nexports.buildSupergraphAPIQueryGraph = buildSupergraphAPIQueryGraph;\nfunction buildFederatedQueryGraph(supergraph, forQueryPlanning) {\n const subgraphs = (0, federation_internals_1.extractSubgraphsFromSupergraph)(supergraph);\n const graphs = [];\n for (const subgraph of subgraphs) {\n graphs.push(buildGraphInternal(subgraph.name, subgraph.schema, forQueryPlanning, supergraph));\n }\n return federateSubgraphs(graphs);\n}\nexports.buildFederatedQueryGraph = buildFederatedQueryGraph;\nfunction federatedProperties(subgraphs) {\n let vertices = 0;\n const rootKinds = new Set();\n const schemas = [];\n for (const subgraph of subgraphs) {\n vertices += subgraph.verticesCount();\n subgraph.rootKinds().forEach(k => rootKinds.add(k));\n (0, federation_internals_1.assert)(subgraph.sources.size === 1, () => `Subgraphs should only have one sources, got ${subgraph.sources.size} ([${(0, federation_internals_1.mapKeys)(subgraph.sources).join(', ')}])`);\n schemas.push((0, federation_internals_1.firstOf)(subgraph.sources.values()));\n }\n return [vertices + rootKinds.size, rootKinds, schemas];\n}\nfunction federateSubgraphs(subgraphs) {\n const [verticesCount, rootKinds, schemas] = federatedProperties(subgraphs);\n const builder = new GraphBuilder(verticesCount);\n rootKinds.forEach(k => builder.createRootVertex(k, new federation_internals_1.ObjectType(federatedGraphRootTypeName(k)), FEDERATED_GRAPH_ROOT_SOURCE, FEDERATED_GRAPH_ROOT_SCHEMA));\n const copyPointers = new Array(subgraphs.length);\n for (const [i, subgraph] of subgraphs.entries()) {\n copyPointers[i] = builder.copyGraph(subgraph);\n }\n for (const [i, subgraph] of subgraphs.entries()) {\n const copyPointer = copyPointers[i];\n for (const rootKind of subgraph.rootKinds()) {\n const rootVertex = copyPointer.copiedVertex(subgraph.root(rootKind));\n builder.addEdge(builder.root(rootKind), rootVertex, transition_1.subgraphEnteringTransition);\n for (const [j, otherSubgraph] of subgraphs.entries()) {\n if (i === j) {\n continue;\n }\n const otherRootVertex = otherSubgraph.root(rootKind);\n if (otherRootVertex) {\n const otherCopyPointer = copyPointers[j];\n builder.addEdge(rootVertex, otherCopyPointer.copiedVertex(otherRootVertex), new transition_1.RootTypeResolution(rootKind));\n }\n }\n }\n }\n for (const [i, subgraph] of subgraphs.entries()) {\n const subgraphSchema = schemas[i];\n const keyDirective = federation_internals_1.federationBuiltIns.keyDirective(subgraphSchema);\n const requireDirective = federation_internals_1.federationBuiltIns.requiresDirective(subgraphSchema);\n simpleTraversal(subgraph, v => {\n const type = v.type;\n for (const keyApplication of type.appliedDirectivesOf(keyDirective)) {\n (0, federation_internals_1.assert)((0, federation_internals_1.isInterfaceType)(type) || (0, federation_internals_1.isObjectType)(type), () => `Invalid \"@key\" application on non Object || Interface type \"${type}\"`);\n const conditions = (0, federation_internals_1.parseFieldSetArgument)(type, keyApplication);\n for (const [j, otherSubgraph] of subgraphs.entries()) {\n if (i == j) {\n continue;\n }\n const otherVertices = otherSubgraph.verticesForType(type.name);\n if (otherVertices.length == 0) {\n continue;\n }\n (0, federation_internals_1.assert)(otherVertices.length == 1, () => `Subgraph ${j} should have a single vertex for type ${type.name} but got ${otherVertices.length}: ${(0, util_1.inspect)(otherVertices)}`);\n const head = copyPointers[j].copiedVertex(otherVertices[0]);\n const tail = copyPointers[i].copiedVertex(v);\n builder.addEdge(head, tail, new transition_1.KeyResolution(), conditions);\n }\n }\n }, e => {\n if (e.transition.kind === 'FieldCollection') {\n const type = e.head.type;\n const field = e.transition.definition;\n (0, federation_internals_1.assert)((0, federation_internals_1.isCompositeType)(type), () => `Non composite type \"${type}\" should not have field collection edge ${e}`);\n for (const requiresApplication of field.appliedDirectivesOf(requireDirective)) {\n const conditions = (0, federation_internals_1.parseFieldSetArgument)(type, requiresApplication);\n const head = copyPointers[i].copiedVertex(e.head);\n const copiedEdge = builder.edge(head, e.index);\n copiedEdge.addToConditions(conditions);\n }\n }\n return true;\n });\n }\n for (const [i, subgraph] of subgraphs.entries()) {\n const subgraphSchema = schemas[i];\n const providesDirective = federation_internals_1.federationBuiltIns.providesDirective(subgraphSchema);\n simpleTraversal(subgraph, _ => undefined, e => {\n if (e.transition.kind === 'FieldCollection') {\n const type = e.head.type;\n const field = e.transition.definition;\n (0, federation_internals_1.assert)((0, federation_internals_1.isCompositeType)(type), () => `Non composite type \"${type}\" should not have field collection edge ${e}`);\n for (const providesApplication of field.appliedDirectivesOf(providesDirective)) {\n const fieldType = (0, federation_internals_1.baseType)(field.type);\n (0, federation_internals_1.assert)((0, federation_internals_1.isCompositeType)(fieldType), () => `Invalid @provide on field \"${field}\" whose type \"${fieldType}\" is not a composite type`);\n const provided = (0, federation_internals_1.parseFieldSetArgument)(fieldType, providesApplication);\n const head = copyPointers[i].copiedVertex(e.head);\n const tail = copyPointers[i].copiedVertex(e.tail);\n const copiedEdge = builder.edge(head, e.index);\n const copiedTail = builder.makeCopy(tail);\n builder.updateEdgeTail(copiedEdge, copiedTail);\n addProvidesEdges(subgraphSchema, builder, copiedTail, provided);\n }\n }\n return true;\n });\n }\n return builder.build(FEDERATED_GRAPH_ROOT_SOURCE);\n}\nfunction addProvidesEdges(schema, builder, from, provided) {\n const stack = [[from, provided]];\n const source = from.source;\n while (stack.length > 0) {\n const [v, selectionSet] = stack.pop();\n for (const selection of selectionSet.selections(true)) {\n const element = selection.element();\n if (element.kind == 'Field') {\n const fieldDef = element.definition;\n const existingEdge = builder.edges(v).find(e => e.transition.kind === 'FieldCollection' && e.transition.definition.name === fieldDef.name);\n if (existingEdge) {\n if (selection.selectionSet) {\n const copiedTail = builder.makeCopy(existingEdge.tail);\n builder.updateEdgeTail(existingEdge, copiedTail);\n stack.push([copiedTail, selection.selectionSet]);\n }\n }\n else {\n const fieldType = (0, federation_internals_1.baseType)(fieldDef.type);\n const existingTail = builder.verticesForType(fieldType.name).find(v => v.source === source);\n const newTail = existingTail ? existingTail : builder.createNewVertex(fieldType, v.source, schema);\n if (selection.selectionSet) {\n const copiedTail = existingTail ? builder.makeCopy(existingTail) : newTail;\n builder.addEdge(v, copiedTail, new transition_1.FieldCollection(fieldDef, true));\n stack.push([copiedTail, selection.selectionSet]);\n }\n else {\n builder.addEdge(v, newTail, new transition_1.FieldCollection(fieldDef, true));\n }\n }\n }\n else {\n const typeCondition = element.typeCondition;\n if (typeCondition) {\n const existingEdge = builder.edges(v).find(e => e.transition.kind === 'DownCast' && e.transition.castedType.name === typeCondition.name);\n (0, federation_internals_1.assert)(existingEdge, () => `Shouldn't have ${selection} with no corresponding edge on ${v}`);\n const copiedTail = builder.makeCopy(existingEdge.tail);\n builder.updateEdgeTail(existingEdge, copiedTail);\n stack.push([copiedTail, selection.selectionSet]);\n }\n else {\n stack.push([v, selection.selectionSet]);\n }\n }\n }\n }\n}\nclass GraphBuilder {\n constructor(verticesCount) {\n this.nextIndex = 0;\n this.typesToVertices = new federation_internals_1.MultiMap();\n this.rootVertices = new federation_internals_1.MapWithCachedArrays();\n this.sources = new Map();\n this.vertices = verticesCount ? new Array(verticesCount) : [];\n this.adjacencies = verticesCount ? new Array(verticesCount) : [];\n }\n verticesForType(typeName) {\n const indexes = this.typesToVertices.get(typeName);\n return indexes == undefined ? [] : indexes.map(i => this.vertices[i]);\n }\n root(kind) {\n return this.rootVertices.get(kind);\n }\n addEdge(head, tail, transition, conditions) {\n const edges = this.adjacencies[head.index];\n const edge = new Edge(edges.length, head, tail, transition, conditions);\n edges.push(edge);\n }\n createNewVertex(type, source, schema, index) {\n if (!index) {\n index = this.nextIndex++;\n }\n const vertex = new Vertex(index, type, source);\n const previous = this.vertices[index];\n (0, federation_internals_1.assert)(!previous, () => `Overriding existing vertex ${previous} with ${vertex}`);\n this.vertices[index] = vertex;\n this.typesToVertices.add(type.name, index);\n this.adjacencies[index] = [];\n if (!this.sources.has(source)) {\n this.sources.set(source, schema);\n }\n return vertex;\n }\n createRootVertex(kind, type, source, schema) {\n const vertex = this.createNewVertex(type, source, schema);\n (0, federation_internals_1.assert)(!this.rootVertices.has(kind), () => `Root vertex for ${kind} (${this.rootVertices.get(kind)}) already exists: cannot replace by ${vertex}`);\n this.setAsRoot(kind, vertex.index);\n }\n setAsRoot(kind, index) {\n const vertex = this.vertices[index];\n (0, federation_internals_1.assert)(vertex, () => `Cannot set non-existing vertex at index ${index} as root ${kind}`);\n const rootVertex = toRootVertex(vertex, kind);\n this.vertices[vertex.index] = rootVertex;\n this.rootVertices.set(kind, rootVertex);\n const rootEdges = this.adjacencies[vertex.index];\n for (let i = 0; i < rootEdges.length; i++) {\n rootEdges[i] = rootEdges[i].withNewHead(rootVertex);\n }\n }\n copyGraph(graph) {\n const offset = this.nextIndex;\n simpleTraversal(graph, v => {\n this.getOrCopyVertex(v, offset, graph);\n }, e => {\n const newHead = this.getOrCopyVertex(e.head, offset, graph);\n const newTail = this.getOrCopyVertex(e.tail, offset, graph);\n this.addEdge(newHead, newTail, e.transition, e.conditions);\n return true;\n });\n this.nextIndex += graph.verticesCount();\n const that = this;\n return {\n copiedVertex(original) {\n const vertex = that.vertices[original.index + offset];\n (0, federation_internals_1.assert)(vertex, () => `Vertex ${original} has no copy for offset ${offset}`);\n return vertex;\n }\n };\n }\n vertex(index) {\n return this.vertices[index];\n }\n edge(head, index) {\n return this.adjacencies[head.index][index];\n }\n edges(head) {\n return this.adjacencies[head.index];\n }\n makeCopy(vertex) {\n const newVertex = this.createNewVertex(vertex.type, vertex.source, this.sources.get(vertex.source));\n for (const edge of this.adjacencies[vertex.index]) {\n this.addEdge(newVertex, edge.tail, edge.transition, edge.conditions);\n }\n return newVertex;\n }\n updateEdgeTail(edge, newTail) {\n const newEdge = new Edge(edge.index, edge.head, newTail, edge.transition, edge.conditions);\n this.adjacencies[edge.head.index][edge.index] = newEdge;\n return newEdge;\n }\n getOrCopyVertex(toCopy, indexOffset, graph) {\n const index = toCopy.index + indexOffset;\n let v = this.vertices[index];\n if (!v) {\n v = this.createNewVertex(toCopy.type, toCopy.source, graph.sources.get(toCopy.source), index);\n }\n return v;\n }\n build(name) {\n return new QueryGraph(name, this.vertices, this.adjacencies, this.typesToVertices, this.rootVertices, this.sources);\n }\n}\nclass GraphBuilderFromSchema extends GraphBuilder {\n constructor(name, schema, supergraphSchema) {\n super();\n this.name = name;\n this.schema = schema;\n this.supergraphSchema = supergraphSchema;\n this.isFederatedSubgraph = (0, federation_internals_1.isFederationSubgraphSchema)(schema);\n (0, federation_internals_1.assert)(!this.isFederatedSubgraph || supergraphSchema, `Missing supergraph schema for building the federated subgraph graph`);\n this.forceTypeExplosion = supergraphSchema !== undefined && (0, federation_internals_1.isFed1Supergraph)(supergraphSchema);\n }\n addRecursivelyFromRoot(kind, root) {\n this.setAsRoot(kind, this.addTypeRecursively(root).index);\n }\n addTypeRecursively(type) {\n const namedType = (0, federation_internals_1.baseType)(type);\n const existing = this.verticesForType(namedType.name);\n if (existing.length > 0) {\n (0, federation_internals_1.assert)(existing.length == 1, () => `Only one vertex should have been created for type ${namedType.name}, got ${existing.length}: ${(0, util_1.inspect)(this)}`);\n return existing[0];\n }\n const vertex = this.createNewVertex(namedType, this.name, this.schema);\n if ((0, federation_internals_1.isObjectType)(namedType)) {\n this.addObjectTypeEdges(namedType, vertex);\n }\n else if ((0, federation_internals_1.isInterfaceType)(namedType)) {\n if (this.isFederatedSubgraph && !this.forceTypeExplosion) {\n this.maybeAddInterfaceFieldsEdges(namedType, vertex);\n }\n this.addAbstractTypeEdges(namedType, vertex);\n }\n else if ((0, federation_internals_1.isUnionType)(namedType)) {\n this.addEdgeForField(namedType.typenameField(), vertex);\n this.addAbstractTypeEdges(namedType, vertex);\n }\n return vertex;\n }\n addObjectTypeEdges(type, head) {\n for (const field of type.allFields()) {\n if (field.isSchemaIntrospectionField() || field.hasAppliedDirective(federation_internals_1.externalDirectiveName)) {\n continue;\n }\n this.addEdgeForField(field, head);\n }\n }\n addEdgeForField(field, head) {\n const tail = this.addTypeRecursively(field.type);\n this.addEdge(head, tail, new transition_1.FieldCollection(field));\n }\n isDirectlyProvidedByType(type, fieldName) {\n const field = type.field(fieldName);\n return field && !field.hasAppliedDirective(federation_internals_1.externalDirectiveName) && !field.hasAppliedDirective(federation_internals_1.requiresDirectiveName);\n }\n maybeAddInterfaceFieldsEdges(type, head) {\n (0, federation_internals_1.assert)(this.supergraphSchema, 'Missing supergraph schema when building a subgraph');\n const supergraphType = this.supergraphSchema.type(type.name);\n if (!supergraphType) {\n return;\n }\n const supergraphRuntimeTypes = supergraphType.possibleRuntimeTypes().map(t => t.name);\n const localRuntimeTypes = supergraphRuntimeTypes.map(t => this.schema.type(t)).filter(t => t !== undefined);\n for (const field of type.allFields()) {\n if (field.hasAppliedDirective(federation_internals_1.externalDirectiveName) || localRuntimeTypes.some(t => !this.isDirectlyProvidedByType(t, field.name))) {\n continue;\n }\n this.addEdgeForField(field, head);\n }\n }\n addAbstractTypeEdges(type, head) {\n const implementations = (0, federation_internals_1.isInterfaceType)(type) ? type.possibleRuntimeTypes() : type.types();\n for (const implementationType of implementations) {\n const tail = this.addTypeRecursively(implementationType);\n this.addEdge(head, tail, new transition_1.DownCast(type, implementationType));\n }\n }\n addAdditionalAbstractTypeEdges() {\n const abstractTypesWithTheirRuntimeTypes = [];\n for (const type of this.schema.types()) {\n if ((0, federation_internals_1.isAbstractType)(type)) {\n abstractTypesWithTheirRuntimeTypes.push([type, (0, federation_internals_1.possibleRuntimeTypes)(type)]);\n }\n }\n for (let i = 0; i < abstractTypesWithTheirRuntimeTypes.length - 1; i++) {\n const [t1, t1Runtimes] = abstractTypesWithTheirRuntimeTypes[i];\n const t1Vertex = this.addTypeRecursively(t1);\n for (let j = i; j < abstractTypesWithTheirRuntimeTypes.length; j++) {\n const [t2, t2Runtimes] = abstractTypesWithTheirRuntimeTypes[j];\n if ((0, federation_internals_1.isInterfaceType)(t1) && (0, federation_internals_1.isInterfaceType)(t2) && (t1.implementsInterface(t2) || t2.implementsInterface(t1))) {\n continue;\n }\n const intersecting = t1Runtimes.filter(o1 => t2Runtimes.includes(o1));\n if (intersecting.length >= 2) {\n const t2Vertex = this.addTypeRecursively(t2);\n this.addEdge(t1Vertex, t2Vertex, new transition_1.DownCast(t1, t2));\n this.addEdge(t2Vertex, t1Vertex, new transition_1.DownCast(t2, t1));\n }\n }\n }\n }\n build() {\n return super.build(this.name);\n }\n}\nfunction simpleTraversal(graph, onVertex, onEdges) {\n const marked = new Array(graph.verticesCount());\n const stack = [];\n const maybeAdd = function (vertex) {\n if (!marked[vertex.index]) {\n stack.push(vertex);\n marked[vertex.index] = true;\n }\n };\n graph.roots().forEach(maybeAdd);\n while (stack.length > 0) {\n const vertex = stack.pop();\n onVertex(vertex);\n for (const edge of graph.outEdges(vertex)) {\n const shouldTraverse = onEdges(edge);\n if (shouldTraverse) {\n maybeAdd(edge.tail);\n }\n }\n }\n}\nexports.simpleTraversal = simpleTraversal;\n//# sourceMappingURL=querygraph.js.map","'use strict';\n\nvar toStr = Object.prototype.toString;\n\nmodule.exports = function isArguments(value) {\n\tvar str = toStr.call(value);\n\tvar isArgs = str === '[object Arguments]';\n\tif (!isArgs) {\n\t\tisArgs = str !== '[object Array]' &&\n\t\t\tvalue !== null &&\n\t\t\ttypeof value === 'object' &&\n\t\t\ttypeof value.length === 'number' &&\n\t\t\tvalue.length >= 0 &&\n\t\t\ttoStr.call(value.callee) === '[object Function]';\n\t}\n\treturn isArgs;\n};\n","'use strict';\n\nvar keysShim;\nif (!Object.keys) {\n\t// modified from https://github.com/es-shims/es5-shim\n\tvar has = Object.prototype.hasOwnProperty;\n\tvar toStr = Object.prototype.toString;\n\tvar isArgs = require('./isArguments'); // eslint-disable-line global-require\n\tvar isEnumerable = Object.prototype.propertyIsEnumerable;\n\tvar hasDontEnumBug = !isEnumerable.call({ toString: null }, 'toString');\n\tvar hasProtoEnumBug = isEnumerable.call(function () {}, 'prototype');\n\tvar dontEnums = [\n\t\t'toString',\n\t\t'toLocaleString',\n\t\t'valueOf',\n\t\t'hasOwnProperty',\n\t\t'isPrototypeOf',\n\t\t'propertyIsEnumerable',\n\t\t'constructor'\n\t];\n\tvar equalsConstructorPrototype = function (o) {\n\t\tvar ctor = o.constructor;\n\t\treturn ctor && ctor.prototype === o;\n\t};\n\tvar excludedKeys = {\n\t\t$applicationCache: true,\n\t\t$console: true,\n\t\t$external: true,\n\t\t$frame: true,\n\t\t$frameElement: true,\n\t\t$frames: true,\n\t\t$innerHeight: true,\n\t\t$innerWidth: true,\n\t\t$onmozfullscreenchange: true,\n\t\t$onmozfullscreenerror: true,\n\t\t$outerHeight: true,\n\t\t$outerWidth: true,\n\t\t$pageXOffset: true,\n\t\t$pageYOffset: true,\n\t\t$parent: true,\n\t\t$scrollLeft: true,\n\t\t$scrollTop: true,\n\t\t$scrollX: true,\n\t\t$scrollY: true,\n\t\t$self: true,\n\t\t$webkitIndexedDB: true,\n\t\t$webkitStorageInfo: true,\n\t\t$window: true\n\t};\n\tvar hasAutomationEqualityBug = (function () {\n\t\t/* global window */\n\t\tif (typeof window === 'undefined') { return false; }\n\t\tfor (var k in window) {\n\t\t\ttry {\n\t\t\t\tif (!excludedKeys['$' + k] && has.call(window, k) && window[k] !== null && typeof window[k] === 'object') {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tequalsConstructorPrototype(window[k]);\n\t\t\t\t\t} catch (e) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} catch (e) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t\treturn false;\n\t}());\n\tvar equalsConstructorPrototypeIfNotBuggy = function (o) {\n\t\t/* global window */\n\t\tif (typeof window === 'undefined' || !hasAutomationEqualityBug) {\n\t\t\treturn equalsConstructorPrototype(o);\n\t\t}\n\t\ttry {\n\t\t\treturn equalsConstructorPrototype(o);\n\t\t} catch (e) {\n\t\t\treturn false;\n\t\t}\n\t};\n\n\tkeysShim = function keys(object) {\n\t\tvar isObject = object !== null && typeof object === 'object';\n\t\tvar isFunction = toStr.call(object) === '[object Function]';\n\t\tvar isArguments = isArgs(object);\n\t\tvar isString = isObject && toStr.call(object) === '[object String]';\n\t\tvar theKeys = [];\n\n\t\tif (!isObject && !isFunction && !isArguments) {\n\t\t\tthrow new TypeError('Object.keys called on a non-object');\n\t\t}\n\n\t\tvar skipProto = hasProtoEnumBug && isFunction;\n\t\tif (isString && object.length > 0 && !has.call(object, 0)) {\n\t\t\tfor (var i = 0; i < object.length; ++i) {\n\t\t\t\ttheKeys.push(String(i));\n\t\t\t}\n\t\t}\n\n\t\tif (isArguments && object.length > 0) {\n\t\t\tfor (var j = 0; j < object.length; ++j) {\n\t\t\t\ttheKeys.push(String(j));\n\t\t\t}\n\t\t} else {\n\t\t\tfor (var name in object) {\n\t\t\t\tif (!(skipProto && name === 'prototype') && has.call(object, name)) {\n\t\t\t\t\ttheKeys.push(String(name));\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif (hasDontEnumBug) {\n\t\t\tvar skipConstructor = equalsConstructorPrototypeIfNotBuggy(object);\n\n\t\t\tfor (var k = 0; k < dontEnums.length; ++k) {\n\t\t\t\tif (!(skipConstructor && dontEnums[k] === 'constructor') && has.call(object, dontEnums[k])) {\n\t\t\t\t\ttheKeys.push(dontEnums[k]);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn theKeys;\n\t};\n}\nmodule.exports = keysShim;\n","'use strict';\n\nvar slice = Array.prototype.slice;\nvar isArgs = require('./isArguments');\n\nvar origKeys = Object.keys;\nvar keysShim = origKeys ? function keys(o) { return origKeys(o); } : require('./implementation');\n\nvar originalKeys = Object.keys;\n\nkeysShim.shim = function shimObjectKeys() {\n\tif (Object.keys) {\n\t\tvar keysWorksWithArguments = (function () {\n\t\t\t// Safari 5.0 bug\n\t\t\tvar args = Object.keys(arguments);\n\t\t\treturn args && args.length === arguments.length;\n\t\t}(1, 2));\n\t\tif (!keysWorksWithArguments) {\n\t\t\tObject.keys = function keys(object) { // eslint-disable-line func-name-matching\n\t\t\t\tif (isArgs(object)) {\n\t\t\t\t\treturn originalKeys(slice.call(object));\n\t\t\t\t}\n\t\t\t\treturn originalKeys(object);\n\t\t\t};\n\t\t}\n\t} else {\n\t\tObject.keys = keysShim;\n\t}\n\treturn Object.keys || keysShim;\n};\n\nmodule.exports = keysShim;\n","'use strict';\n\n/* eslint complexity: [2, 18], max-statements: [2, 33] */\nmodule.exports = function hasSymbols() {\n\tif (typeof Symbol !== 'function' || typeof Object.getOwnPropertySymbols !== 'function') { return false; }\n\tif (typeof Symbol.iterator === 'symbol') { return true; }\n\n\tvar obj = {};\n\tvar sym = Symbol('test');\n\tvar symObj = Object(sym);\n\tif (typeof sym === 'string') { return false; }\n\n\tif (Object.prototype.toString.call(sym) !== '[object Symbol]') { return false; }\n\tif (Object.prototype.toString.call(symObj) !== '[object Symbol]') { return false; }\n\n\t// temp disabled per https://github.com/ljharb/object.assign/issues/17\n\t// if (sym instanceof Symbol) { return false; }\n\t// temp disabled per https://github.com/WebReflection/get-own-property-symbols/issues/4\n\t// if (!(symObj instanceof Symbol)) { return false; }\n\n\t// if (typeof Symbol.prototype.toString !== 'function') { return false; }\n\t// if (String(sym) !== Symbol.prototype.toString.call(sym)) { return false; }\n\n\tvar symVal = 42;\n\tobj[sym] = symVal;\n\tfor (sym in obj) { return false; } // eslint-disable-line no-restricted-syntax, no-unreachable-loop\n\tif (typeof Object.keys === 'function' && Object.keys(obj).length !== 0) { return false; }\n\n\tif (typeof Object.getOwnPropertyNames === 'function' && Object.getOwnPropertyNames(obj).length !== 0) { return false; }\n\n\tvar syms = Object.getOwnPropertySymbols(obj);\n\tif (syms.length !== 1 || syms[0] !== sym) { return false; }\n\n\tif (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; }\n\n\tif (typeof Object.getOwnPropertyDescriptor === 'function') {\n\t\tvar descriptor = Object.getOwnPropertyDescriptor(obj, sym);\n\t\tif (descriptor.value !== symVal || descriptor.enumerable !== true) { return false; }\n\t}\n\n\treturn true;\n};\n","'use strict';\n\nvar hasSymbols = require('has-symbols/shams');\n\nmodule.exports = function hasToStringTagShams() {\n\treturn hasSymbols() && !!Symbol.toStringTag;\n};\n","'use strict';\n\nvar origSymbol = typeof Symbol !== 'undefined' && Symbol;\nvar hasSymbolSham = require('./shams');\n\nmodule.exports = function hasNativeSymbols() {\n\tif (typeof origSymbol !== 'function') { return false; }\n\tif (typeof Symbol !== 'function') { return false; }\n\tif (typeof origSymbol('foo') !== 'symbol') { return false; }\n\tif (typeof Symbol('bar') !== 'symbol') { return false; }\n\n\treturn hasSymbolSham();\n};\n","'use strict';\n\n/* eslint no-invalid-this: 1 */\n\nvar ERROR_MESSAGE = 'Function.prototype.bind called on incompatible ';\nvar slice = Array.prototype.slice;\nvar toStr = Object.prototype.toString;\nvar funcType = '[object Function]';\n\nmodule.exports = function bind(that) {\n var target = this;\n if (typeof target !== 'function' || toStr.call(target) !== funcType) {\n throw new TypeError(ERROR_MESSAGE + target);\n }\n var args = slice.call(arguments, 1);\n\n var bound;\n var binder = function () {\n if (this instanceof bound) {\n var result = target.apply(\n this,\n args.concat(slice.call(arguments))\n );\n if (Object(result) === result) {\n return result;\n }\n return this;\n } else {\n return target.apply(\n that,\n args.concat(slice.call(arguments))\n );\n }\n };\n\n var boundLength = Math.max(0, target.length - args.length);\n var boundArgs = [];\n for (var i = 0; i < boundLength; i++) {\n boundArgs.push('$' + i);\n }\n\n bound = Function('binder', 'return function (' + boundArgs.join(',') + '){ return binder.apply(this,arguments); }')(binder);\n\n if (target.prototype) {\n var Empty = function Empty() {};\n Empty.prototype = target.prototype;\n bound.prototype = new Empty();\n Empty.prototype = null;\n }\n\n return bound;\n};\n","'use strict';\n\nvar implementation = require('./implementation');\n\nmodule.exports = Function.prototype.bind || implementation;\n","'use strict';\n\nvar bind = require('function-bind');\n\nmodule.exports = bind.call(Function.call, Object.prototype.hasOwnProperty);\n","'use strict';\n\nvar undefined;\n\nvar $SyntaxError = SyntaxError;\nvar $Function = Function;\nvar $TypeError = TypeError;\n\n// eslint-disable-next-line consistent-return\nvar getEvalledConstructor = function (expressionSyntax) {\n\ttry {\n\t\treturn $Function('\"use strict\"; return (' + expressionSyntax + ').constructor;')();\n\t} catch (e) {}\n};\n\nvar $gOPD = Object.getOwnPropertyDescriptor;\nif ($gOPD) {\n\ttry {\n\t\t$gOPD({}, '');\n\t} catch (e) {\n\t\t$gOPD = null; // this is IE 8, which has a broken gOPD\n\t}\n}\n\nvar throwTypeError = function () {\n\tthrow new $TypeError();\n};\nvar ThrowTypeError = $gOPD\n\t? (function () {\n\t\ttry {\n\t\t\t// eslint-disable-next-line no-unused-expressions, no-caller, no-restricted-properties\n\t\t\targuments.callee; // IE 8 does not throw here\n\t\t\treturn throwTypeError;\n\t\t} catch (calleeThrows) {\n\t\t\ttry {\n\t\t\t\t// IE 8 throws on Object.getOwnPropertyDescriptor(arguments, '')\n\t\t\t\treturn $gOPD(arguments, 'callee').get;\n\t\t\t} catch (gOPDthrows) {\n\t\t\t\treturn throwTypeError;\n\t\t\t}\n\t\t}\n\t}())\n\t: throwTypeError;\n\nvar hasSymbols = require('has-symbols')();\n\nvar getProto = Object.getPrototypeOf || function (x) { return x.__proto__; }; // eslint-disable-line no-proto\n\nvar needsEval = {};\n\nvar TypedArray = typeof Uint8Array === 'undefined' ? undefined : getProto(Uint8Array);\n\nvar INTRINSICS = {\n\t'%AggregateError%': typeof AggregateError === 'undefined' ? undefined : AggregateError,\n\t'%Array%': Array,\n\t'%ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer,\n\t'%ArrayIteratorPrototype%': hasSymbols ? getProto([][Symbol.iterator]()) : undefined,\n\t'%AsyncFromSyncIteratorPrototype%': undefined,\n\t'%AsyncFunction%': needsEval,\n\t'%AsyncGenerator%': needsEval,\n\t'%AsyncGeneratorFunction%': needsEval,\n\t'%AsyncIteratorPrototype%': needsEval,\n\t'%Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics,\n\t'%BigInt%': typeof BigInt === 'undefined' ? undefined : BigInt,\n\t'%Boolean%': Boolean,\n\t'%DataView%': typeof DataView === 'undefined' ? undefined : DataView,\n\t'%Date%': Date,\n\t'%decodeURI%': decodeURI,\n\t'%decodeURIComponent%': decodeURIComponent,\n\t'%encodeURI%': encodeURI,\n\t'%encodeURIComponent%': encodeURIComponent,\n\t'%Error%': Error,\n\t'%eval%': eval, // eslint-disable-line no-eval\n\t'%EvalError%': EvalError,\n\t'%Float32Array%': typeof Float32Array === 'undefined' ? undefined : Float32Array,\n\t'%Float64Array%': typeof Float64Array === 'undefined' ? undefined : Float64Array,\n\t'%FinalizationRegistry%': typeof FinalizationRegistry === 'undefined' ? undefined : FinalizationRegistry,\n\t'%Function%': $Function,\n\t'%GeneratorFunction%': needsEval,\n\t'%Int8Array%': typeof Int8Array === 'undefined' ? undefined : Int8Array,\n\t'%Int16Array%': typeof Int16Array === 'undefined' ? undefined : Int16Array,\n\t'%Int32Array%': typeof Int32Array === 'undefined' ? undefined : Int32Array,\n\t'%isFinite%': isFinite,\n\t'%isNaN%': isNaN,\n\t'%IteratorPrototype%': hasSymbols ? getProto(getProto([][Symbol.iterator]())) : undefined,\n\t'%JSON%': typeof JSON === 'object' ? JSON : undefined,\n\t'%Map%': typeof Map === 'undefined' ? undefined : Map,\n\t'%MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols ? undefined : getProto(new Map()[Symbol.iterator]()),\n\t'%Math%': Math,\n\t'%Number%': Number,\n\t'%Object%': Object,\n\t'%parseFloat%': parseFloat,\n\t'%parseInt%': parseInt,\n\t'%Promise%': typeof Promise === 'undefined' ? undefined : Promise,\n\t'%Proxy%': typeof Proxy === 'undefined' ? undefined : Proxy,\n\t'%RangeError%': RangeError,\n\t'%ReferenceError%': ReferenceError,\n\t'%Reflect%': typeof Reflect === 'undefined' ? undefined : Reflect,\n\t'%RegExp%': RegExp,\n\t'%Set%': typeof Set === 'undefined' ? undefined : Set,\n\t'%SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols ? undefined : getProto(new Set()[Symbol.iterator]()),\n\t'%SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer,\n\t'%String%': String,\n\t'%StringIteratorPrototype%': hasSymbols ? getProto(''[Symbol.iterator]()) : undefined,\n\t'%Symbol%': hasSymbols ? Symbol : undefined,\n\t'%SyntaxError%': $SyntaxError,\n\t'%ThrowTypeError%': ThrowTypeError,\n\t'%TypedArray%': TypedArray,\n\t'%TypeError%': $TypeError,\n\t'%Uint8Array%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array,\n\t'%Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray,\n\t'%Uint16Array%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array,\n\t'%Uint32Array%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array,\n\t'%URIError%': URIError,\n\t'%WeakMap%': typeof WeakMap === 'undefined' ? undefined : WeakMap,\n\t'%WeakRef%': typeof WeakRef === 'undefined' ? undefined : WeakRef,\n\t'%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet\n};\n\nvar doEval = function doEval(name) {\n\tvar value;\n\tif (name === '%AsyncFunction%') {\n\t\tvalue = getEvalledConstructor('async function () {}');\n\t} else if (name === '%GeneratorFunction%') {\n\t\tvalue = getEvalledConstructor('function* () {}');\n\t} else if (name === '%AsyncGeneratorFunction%') {\n\t\tvalue = getEvalledConstructor('async function* () {}');\n\t} else if (name === '%AsyncGenerator%') {\n\t\tvar fn = doEval('%AsyncGeneratorFunction%');\n\t\tif (fn) {\n\t\t\tvalue = fn.prototype;\n\t\t}\n\t} else if (name === '%AsyncIteratorPrototype%') {\n\t\tvar gen = doEval('%AsyncGenerator%');\n\t\tif (gen) {\n\t\t\tvalue = getProto(gen.prototype);\n\t\t}\n\t}\n\n\tINTRINSICS[name] = value;\n\n\treturn value;\n};\n\nvar LEGACY_ALIASES = {\n\t'%ArrayBufferPrototype%': ['ArrayBuffer', 'prototype'],\n\t'%ArrayPrototype%': ['Array', 'prototype'],\n\t'%ArrayProto_entries%': ['Array', 'prototype', 'entries'],\n\t'%ArrayProto_forEach%': ['Array', 'prototype', 'forEach'],\n\t'%ArrayProto_keys%': ['Array', 'prototype', 'keys'],\n\t'%ArrayProto_values%': ['Array', 'prototype', 'values'],\n\t'%AsyncFunctionPrototype%': ['AsyncFunction', 'prototype'],\n\t'%AsyncGenerator%': ['AsyncGeneratorFunction', 'prototype'],\n\t'%AsyncGeneratorPrototype%': ['AsyncGeneratorFunction', 'prototype', 'prototype'],\n\t'%BooleanPrototype%': ['Boolean', 'prototype'],\n\t'%DataViewPrototype%': ['DataView', 'prototype'],\n\t'%DatePrototype%': ['Date', 'prototype'],\n\t'%ErrorPrototype%': ['Error', 'prototype'],\n\t'%EvalErrorPrototype%': ['EvalError', 'prototype'],\n\t'%Float32ArrayPrototype%': ['Float32Array', 'prototype'],\n\t'%Float64ArrayPrototype%': ['Float64Array', 'prototype'],\n\t'%FunctionPrototype%': ['Function', 'prototype'],\n\t'%Generator%': ['GeneratorFunction', 'prototype'],\n\t'%GeneratorPrototype%': ['GeneratorFunction', 'prototype', 'prototype'],\n\t'%Int8ArrayPrototype%': ['Int8Array', 'prototype'],\n\t'%Int16ArrayPrototype%': ['Int16Array', 'prototype'],\n\t'%Int32ArrayPrototype%': ['Int32Array', 'prototype'],\n\t'%JSONParse%': ['JSON', 'parse'],\n\t'%JSONStringify%': ['JSON', 'stringify'],\n\t'%MapPrototype%': ['Map', 'prototype'],\n\t'%NumberPrototype%': ['Number', 'prototype'],\n\t'%ObjectPrototype%': ['Object', 'prototype'],\n\t'%ObjProto_toString%': ['Object', 'prototype', 'toString'],\n\t'%ObjProto_valueOf%': ['Object', 'prototype', 'valueOf'],\n\t'%PromisePrototype%': ['Promise', 'prototype'],\n\t'%PromiseProto_then%': ['Promise', 'prototype', 'then'],\n\t'%Promise_all%': ['Promise', 'all'],\n\t'%Promise_reject%': ['Promise', 'reject'],\n\t'%Promise_resolve%': ['Promise', 'resolve'],\n\t'%RangeErrorPrototype%': ['RangeError', 'prototype'],\n\t'%ReferenceErrorPrototype%': ['ReferenceError', 'prototype'],\n\t'%RegExpPrototype%': ['RegExp', 'prototype'],\n\t'%SetPrototype%': ['Set', 'prototype'],\n\t'%SharedArrayBufferPrototype%': ['SharedArrayBuffer', 'prototype'],\n\t'%StringPrototype%': ['String', 'prototype'],\n\t'%SymbolPrototype%': ['Symbol', 'prototype'],\n\t'%SyntaxErrorPrototype%': ['SyntaxError', 'prototype'],\n\t'%TypedArrayPrototype%': ['TypedArray', 'prototype'],\n\t'%TypeErrorPrototype%': ['TypeError', 'prototype'],\n\t'%Uint8ArrayPrototype%': ['Uint8Array', 'prototype'],\n\t'%Uint8ClampedArrayPrototype%': ['Uint8ClampedArray', 'prototype'],\n\t'%Uint16ArrayPrototype%': ['Uint16Array', 'prototype'],\n\t'%Uint32ArrayPrototype%': ['Uint32Array', 'prototype'],\n\t'%URIErrorPrototype%': ['URIError', 'prototype'],\n\t'%WeakMapPrototype%': ['WeakMap', 'prototype'],\n\t'%WeakSetPrototype%': ['WeakSet', 'prototype']\n};\n\nvar bind = require('function-bind');\nvar hasOwn = require('has');\nvar $concat = bind.call(Function.call, Array.prototype.concat);\nvar $spliceApply = bind.call(Function.apply, Array.prototype.splice);\nvar $replace = bind.call(Function.call, String.prototype.replace);\nvar $strSlice = bind.call(Function.call, String.prototype.slice);\n\n/* adapted from https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js#L6735-L6744 */\nvar rePropName = /[^%.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\\\]|\\\\.)*?)\\2)\\]|(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|%$))/g;\nvar reEscapeChar = /\\\\(\\\\)?/g; /** Used to match backslashes in property paths. */\nvar stringToPath = function stringToPath(string) {\n\tvar first = $strSlice(string, 0, 1);\n\tvar last = $strSlice(string, -1);\n\tif (first === '%' && last !== '%') {\n\t\tthrow new $SyntaxError('invalid intrinsic syntax, expected closing `%`');\n\t} else if (last === '%' && first !== '%') {\n\t\tthrow new $SyntaxError('invalid intrinsic syntax, expected opening `%`');\n\t}\n\tvar result = [];\n\t$replace(string, rePropName, function (match, number, quote, subString) {\n\t\tresult[result.length] = quote ? $replace(subString, reEscapeChar, '$1') : number || match;\n\t});\n\treturn result;\n};\n/* end adaptation */\n\nvar getBaseIntrinsic = function getBaseIntrinsic(name, allowMissing) {\n\tvar intrinsicName = name;\n\tvar alias;\n\tif (hasOwn(LEGACY_ALIASES, intrinsicName)) {\n\t\talias = LEGACY_ALIASES[intrinsicName];\n\t\tintrinsicName = '%' + alias[0] + '%';\n\t}\n\n\tif (hasOwn(INTRINSICS, intrinsicName)) {\n\t\tvar value = INTRINSICS[intrinsicName];\n\t\tif (value === needsEval) {\n\t\t\tvalue = doEval(intrinsicName);\n\t\t}\n\t\tif (typeof value === 'undefined' && !allowMissing) {\n\t\t\tthrow new $TypeError('intrinsic ' + name + ' exists, but is not available. Please file an issue!');\n\t\t}\n\n\t\treturn {\n\t\t\talias: alias,\n\t\t\tname: intrinsicName,\n\t\t\tvalue: value\n\t\t};\n\t}\n\n\tthrow new $SyntaxError('intrinsic ' + name + ' does not exist!');\n};\n\nmodule.exports = function GetIntrinsic(name, allowMissing) {\n\tif (typeof name !== 'string' || name.length === 0) {\n\t\tthrow new $TypeError('intrinsic name must be a non-empty string');\n\t}\n\tif (arguments.length > 1 && typeof allowMissing !== 'boolean') {\n\t\tthrow new $TypeError('\"allowMissing\" argument must be a boolean');\n\t}\n\n\tvar parts = stringToPath(name);\n\tvar intrinsicBaseName = parts.length > 0 ? parts[0] : '';\n\n\tvar intrinsic = getBaseIntrinsic('%' + intrinsicBaseName + '%', allowMissing);\n\tvar intrinsicRealName = intrinsic.name;\n\tvar value = intrinsic.value;\n\tvar skipFurtherCaching = false;\n\n\tvar alias = intrinsic.alias;\n\tif (alias) {\n\t\tintrinsicBaseName = alias[0];\n\t\t$spliceApply(parts, $concat([0, 1], alias));\n\t}\n\n\tfor (var i = 1, isOwn = true; i < parts.length; i += 1) {\n\t\tvar part = parts[i];\n\t\tvar first = $strSlice(part, 0, 1);\n\t\tvar last = $strSlice(part, -1);\n\t\tif (\n\t\t\t(\n\t\t\t\t(first === '\"' || first === \"'\" || first === '`')\n\t\t\t\t|| (last === '\"' || last === \"'\" || last === '`')\n\t\t\t)\n\t\t\t&& first !== last\n\t\t) {\n\t\t\tthrow new $SyntaxError('property names with quotes must have matching quotes');\n\t\t}\n\t\tif (part === 'constructor' || !isOwn) {\n\t\t\tskipFurtherCaching = true;\n\t\t}\n\n\t\tintrinsicBaseName += '.' + part;\n\t\tintrinsicRealName = '%' + intrinsicBaseName + '%';\n\n\t\tif (hasOwn(INTRINSICS, intrinsicRealName)) {\n\t\t\tvalue = INTRINSICS[intrinsicRealName];\n\t\t} else if (value != null) {\n\t\t\tif (!(part in value)) {\n\t\t\t\tif (!allowMissing) {\n\t\t\t\t\tthrow new $TypeError('base intrinsic for ' + name + ' exists, but the property is not available.');\n\t\t\t\t}\n\t\t\t\treturn void undefined;\n\t\t\t}\n\t\t\tif ($gOPD && (i + 1) >= parts.length) {\n\t\t\t\tvar desc = $gOPD(value, part);\n\t\t\t\tisOwn = !!desc;\n\n\t\t\t\t// By convention, when a data property is converted to an accessor\n\t\t\t\t// property to emulate a data property that does not suffer from\n\t\t\t\t// the override mistake, that accessor's getter is marked with\n\t\t\t\t// an `originalValue` property. Here, when we detect this, we\n\t\t\t\t// uphold the illusion by pretending to see that original data\n\t\t\t\t// property, i.e., returning the value rather than the getter\n\t\t\t\t// itself.\n\t\t\t\tif (isOwn && 'get' in desc && !('originalValue' in desc.get)) {\n\t\t\t\t\tvalue = desc.get;\n\t\t\t\t} else {\n\t\t\t\t\tvalue = value[part];\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tisOwn = hasOwn(value, part);\n\t\t\t\tvalue = value[part];\n\t\t\t}\n\n\t\t\tif (isOwn && !skipFurtherCaching) {\n\t\t\t\tINTRINSICS[intrinsicRealName] = value;\n\t\t\t}\n\t\t}\n\t}\n\treturn value;\n};\n","'use strict';\n\nvar bind = require('function-bind');\nvar GetIntrinsic = require('get-intrinsic');\n\nvar $apply = GetIntrinsic('%Function.prototype.apply%');\nvar $call = GetIntrinsic('%Function.prototype.call%');\nvar $reflectApply = GetIntrinsic('%Reflect.apply%', true) || bind.call($call, $apply);\n\nvar $gOPD = GetIntrinsic('%Object.getOwnPropertyDescriptor%', true);\nvar $defineProperty = GetIntrinsic('%Object.defineProperty%', true);\nvar $max = GetIntrinsic('%Math.max%');\n\nif ($defineProperty) {\n\ttry {\n\t\t$defineProperty({}, 'a', { value: 1 });\n\t} catch (e) {\n\t\t// IE 8 has a broken defineProperty\n\t\t$defineProperty = null;\n\t}\n}\n\nmodule.exports = function callBind(originalFunction) {\n\tvar func = $reflectApply(bind, $call, arguments);\n\tif ($gOPD && $defineProperty) {\n\t\tvar desc = $gOPD(func, 'length');\n\t\tif (desc.configurable) {\n\t\t\t// original length, plus the receiver, minus any additional arguments (after the receiver)\n\t\t\t$defineProperty(\n\t\t\t\tfunc,\n\t\t\t\t'length',\n\t\t\t\t{ value: 1 + $max(0, originalFunction.length - (arguments.length - 1)) }\n\t\t\t);\n\t\t}\n\t}\n\treturn func;\n};\n\nvar applyBind = function applyBind() {\n\treturn $reflectApply(bind, $apply, arguments);\n};\n\nif ($defineProperty) {\n\t$defineProperty(module.exports, 'apply', { value: applyBind });\n} else {\n\tmodule.exports.apply = applyBind;\n}\n","'use strict';\n\nvar GetIntrinsic = require('get-intrinsic');\n\nvar callBind = require('./');\n\nvar $indexOf = callBind(GetIntrinsic('String.prototype.indexOf'));\n\nmodule.exports = function callBoundIntrinsic(name, allowMissing) {\n\tvar intrinsic = GetIntrinsic(name, !!allowMissing);\n\tif (typeof intrinsic === 'function' && $indexOf(name, '.prototype.') > -1) {\n\t\treturn callBind(intrinsic);\n\t}\n\treturn intrinsic;\n};\n","'use strict';\n\nvar hasToStringTag = require('has-tostringtag/shams')();\nvar callBound = require('call-bind/callBound');\n\nvar $toString = callBound('Object.prototype.toString');\n\nvar isStandardArguments = function isArguments(value) {\n\tif (hasToStringTag && value && typeof value === 'object' && Symbol.toStringTag in value) {\n\t\treturn false;\n\t}\n\treturn $toString(value) === '[object Arguments]';\n};\n\nvar isLegacyArguments = function isArguments(value) {\n\tif (isStandardArguments(value)) {\n\t\treturn true;\n\t}\n\treturn value !== null &&\n\t\ttypeof value === 'object' &&\n\t\ttypeof value.length === 'number' &&\n\t\tvalue.length >= 0 &&\n\t\t$toString(value) !== '[object Array]' &&\n\t\t$toString(value.callee) === '[object Function]';\n};\n\nvar supportsStandardArguments = (function () {\n\treturn isStandardArguments(arguments);\n}());\n\nisStandardArguments.isLegacyArguments = isLegacyArguments; // for tests\n\nmodule.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;\n","'use strict';\n\nvar keys = require('object-keys');\nvar hasSymbols = typeof Symbol === 'function' && typeof Symbol('foo') === 'symbol';\n\nvar toStr = Object.prototype.toString;\nvar concat = Array.prototype.concat;\nvar origDefineProperty = Object.defineProperty;\n\nvar isFunction = function (fn) {\n\treturn typeof fn === 'function' && toStr.call(fn) === '[object Function]';\n};\n\nvar arePropertyDescriptorsSupported = function () {\n\tvar obj = {};\n\ttry {\n\t\torigDefineProperty(obj, 'x', { enumerable: false, value: obj });\n\t\t// eslint-disable-next-line no-unused-vars, no-restricted-syntax\n\t\tfor (var _ in obj) { // jscs:ignore disallowUnusedVariables\n\t\t\treturn false;\n\t\t}\n\t\treturn obj.x === obj;\n\t} catch (e) { /* this is IE 8. */\n\t\treturn false;\n\t}\n};\nvar supportsDescriptors = origDefineProperty && arePropertyDescriptorsSupported();\n\nvar defineProperty = function (object, name, value, predicate) {\n\tif (name in object && (!isFunction(predicate) || !predicate())) {\n\t\treturn;\n\t}\n\tif (supportsDescriptors) {\n\t\torigDefineProperty(object, name, {\n\t\t\tconfigurable: true,\n\t\t\tenumerable: false,\n\t\t\tvalue: value,\n\t\t\twritable: true\n\t\t});\n\t} else {\n\t\tobject[name] = value;\n\t}\n};\n\nvar defineProperties = function (object, map) {\n\tvar predicates = arguments.length > 2 ? arguments[2] : {};\n\tvar props = keys(map);\n\tif (hasSymbols) {\n\t\tprops = concat.call(props, Object.getOwnPropertySymbols(map));\n\t}\n\tfor (var i = 0; i < props.length; i += 1) {\n\t\tdefineProperty(object, props[i], map[props[i]], predicates[props[i]]);\n\t}\n};\n\ndefineProperties.supportsDescriptors = !!supportsDescriptors;\n\nmodule.exports = defineProperties;\n","'use strict';\n\nvar numberIsNaN = function (value) {\n\treturn value !== value;\n};\n\nmodule.exports = function is(a, b) {\n\tif (a === 0 && b === 0) {\n\t\treturn 1 / a === 1 / b;\n\t}\n\tif (a === b) {\n\t\treturn true;\n\t}\n\tif (numberIsNaN(a) && numberIsNaN(b)) {\n\t\treturn true;\n\t}\n\treturn false;\n};\n\n","'use strict';\n\nvar implementation = require('./implementation');\n\nmodule.exports = function getPolyfill() {\n\treturn typeof Object.is === 'function' ? Object.is : implementation;\n};\n","'use strict';\n\nvar getPolyfill = require('./polyfill');\nvar define = require('define-properties');\n\nmodule.exports = function shimObjectIs() {\n\tvar polyfill = getPolyfill();\n\tdefine(Object, { is: polyfill }, {\n\t\tis: function testObjectIs() {\n\t\t\treturn Object.is !== polyfill;\n\t\t}\n\t});\n\treturn polyfill;\n};\n","'use strict';\n\nvar define = require('define-properties');\nvar callBind = require('call-bind');\n\nvar implementation = require('./implementation');\nvar getPolyfill = require('./polyfill');\nvar shim = require('./shim');\n\nvar polyfill = callBind(getPolyfill(), Object);\n\ndefine(polyfill, {\n\tgetPolyfill: getPolyfill,\n\timplementation: implementation,\n\tshim: shim\n});\n\nmodule.exports = polyfill;\n","'use strict';\n\nvar callBound = require('call-bind/callBound');\nvar hasToStringTag = require('has-tostringtag/shams')();\nvar has;\nvar $exec;\nvar isRegexMarker;\nvar badStringifier;\n\nif (hasToStringTag) {\n\thas = callBound('Object.prototype.hasOwnProperty');\n\t$exec = callBound('RegExp.prototype.exec');\n\tisRegexMarker = {};\n\n\tvar throwRegexMarker = function () {\n\t\tthrow isRegexMarker;\n\t};\n\tbadStringifier = {\n\t\ttoString: throwRegexMarker,\n\t\tvalueOf: throwRegexMarker\n\t};\n\n\tif (typeof Symbol.toPrimitive === 'symbol') {\n\t\tbadStringifier[Symbol.toPrimitive] = throwRegexMarker;\n\t}\n}\n\nvar $toString = callBound('Object.prototype.toString');\nvar gOPD = Object.getOwnPropertyDescriptor;\nvar regexClass = '[object RegExp]';\n\nmodule.exports = hasToStringTag\n\t// eslint-disable-next-line consistent-return\n\t? function isRegex(value) {\n\t\tif (!value || typeof value !== 'object') {\n\t\t\treturn false;\n\t\t}\n\n\t\tvar descriptor = gOPD(value, 'lastIndex');\n\t\tvar hasLastIndexDataProperty = descriptor && has(descriptor, 'value');\n\t\tif (!hasLastIndexDataProperty) {\n\t\t\treturn false;\n\t\t}\n\n\t\ttry {\n\t\t\t$exec(value, badStringifier);\n\t\t} catch (e) {\n\t\t\treturn e === isRegexMarker;\n\t\t}\n\t}\n\t: function isRegex(value) {\n\t\t// In older browsers, typeof regex incorrectly returns 'function'\n\t\tif (!value || (typeof value !== 'object' && typeof value !== 'function')) {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn $toString(value) === regexClass;\n\t};\n","'use strict';\n\nvar $Object = Object;\nvar $TypeError = TypeError;\n\nmodule.exports = function flags() {\n\tif (this != null && this !== $Object(this)) {\n\t\tthrow new $TypeError('RegExp.prototype.flags getter called on non-object');\n\t}\n\tvar result = '';\n\tif (this.global) {\n\t\tresult += 'g';\n\t}\n\tif (this.ignoreCase) {\n\t\tresult += 'i';\n\t}\n\tif (this.multiline) {\n\t\tresult += 'm';\n\t}\n\tif (this.dotAll) {\n\t\tresult += 's';\n\t}\n\tif (this.unicode) {\n\t\tresult += 'u';\n\t}\n\tif (this.sticky) {\n\t\tresult += 'y';\n\t}\n\treturn result;\n};\n","'use strict';\n\nvar implementation = require('./implementation');\n\nvar supportsDescriptors = require('define-properties').supportsDescriptors;\nvar $gOPD = Object.getOwnPropertyDescriptor;\nvar $TypeError = TypeError;\n\nmodule.exports = function getPolyfill() {\n\tif (!supportsDescriptors) {\n\t\tthrow new $TypeError('RegExp.prototype.flags requires a true ES5 environment that supports property descriptors');\n\t}\n\tif ((/a/mig).flags === 'gim') {\n\t\tvar descriptor = $gOPD(RegExp.prototype, 'flags');\n\t\tif (descriptor && typeof descriptor.get === 'function' && typeof (/a/).dotAll === 'boolean') {\n\t\t\treturn descriptor.get;\n\t\t}\n\t}\n\treturn implementation;\n};\n","'use strict';\n\nvar supportsDescriptors = require('define-properties').supportsDescriptors;\nvar getPolyfill = require('./polyfill');\nvar gOPD = Object.getOwnPropertyDescriptor;\nvar defineProperty = Object.defineProperty;\nvar TypeErr = TypeError;\nvar getProto = Object.getPrototypeOf;\nvar regex = /a/;\n\nmodule.exports = function shimFlags() {\n\tif (!supportsDescriptors || !getProto) {\n\t\tthrow new TypeErr('RegExp.prototype.flags requires a true ES5 environment that supports property descriptors');\n\t}\n\tvar polyfill = getPolyfill();\n\tvar proto = getProto(regex);\n\tvar descriptor = gOPD(proto, 'flags');\n\tif (!descriptor || descriptor.get !== polyfill) {\n\t\tdefineProperty(proto, 'flags', {\n\t\t\tconfigurable: true,\n\t\t\tenumerable: false,\n\t\t\tget: polyfill\n\t\t});\n\t}\n\treturn polyfill;\n};\n","'use strict';\n\nvar define = require('define-properties');\nvar callBind = require('call-bind');\n\nvar implementation = require('./implementation');\nvar getPolyfill = require('./polyfill');\nvar shim = require('./shim');\n\nvar flagsBound = callBind(implementation);\n\ndefine(flagsBound, {\n\tgetPolyfill: getPolyfill,\n\timplementation: implementation,\n\tshim: shim\n});\n\nmodule.exports = flagsBound;\n","var toString = {}.toString;\n\nmodule.exports = Array.isArray || function (arr) {\n return toString.call(arr) == '[object Array]';\n};\n","'use strict';\n\nvar getDay = Date.prototype.getDay;\nvar tryDateObject = function tryDateGetDayCall(value) {\n\ttry {\n\t\tgetDay.call(value);\n\t\treturn true;\n\t} catch (e) {\n\t\treturn false;\n\t}\n};\n\nvar toStr = Object.prototype.toString;\nvar dateClass = '[object Date]';\nvar hasToStringTag = require('has-tostringtag/shams')();\n\nmodule.exports = function isDateObject(value) {\n\tif (typeof value !== 'object' || value === null) {\n\t\treturn false;\n\t}\n\treturn hasToStringTag ? tryDateObject(value) : toStr.call(value) === dateClass;\n};\n","'use strict';\n\nvar strValue = String.prototype.valueOf;\nvar tryStringObject = function tryStringObject(value) {\n\ttry {\n\t\tstrValue.call(value);\n\t\treturn true;\n\t} catch (e) {\n\t\treturn false;\n\t}\n};\nvar toStr = Object.prototype.toString;\nvar strClass = '[object String]';\nvar hasToStringTag = require('has-tostringtag/shams')();\n\nmodule.exports = function isString(value) {\n\tif (typeof value === 'string') {\n\t\treturn true;\n\t}\n\tif (typeof value !== 'object') {\n\t\treturn false;\n\t}\n\treturn hasToStringTag ? tryStringObject(value) : toStr.call(value) === strClass;\n};\n","'use strict';\n\nvar numToStr = Number.prototype.toString;\nvar tryNumberObject = function tryNumberObject(value) {\n\ttry {\n\t\tnumToStr.call(value);\n\t\treturn true;\n\t} catch (e) {\n\t\treturn false;\n\t}\n};\nvar toStr = Object.prototype.toString;\nvar numClass = '[object Number]';\nvar hasToStringTag = require('has-tostringtag/shams')();\n\nmodule.exports = function isNumberObject(value) {\n\tif (typeof value === 'number') {\n\t\treturn true;\n\t}\n\tif (typeof value !== 'object') {\n\t\treturn false;\n\t}\n\treturn hasToStringTag ? tryNumberObject(value) : toStr.call(value) === numClass;\n};\n","'use strict';\n\nvar callBound = require('call-bind/callBound');\nvar $boolToStr = callBound('Boolean.prototype.toString');\nvar $toString = callBound('Object.prototype.toString');\n\nvar tryBooleanObject = function booleanBrandCheck(value) {\n\ttry {\n\t\t$boolToStr(value);\n\t\treturn true;\n\t} catch (e) {\n\t\treturn false;\n\t}\n};\nvar boolClass = '[object Boolean]';\nvar hasToStringTag = require('has-tostringtag/shams')();\n\nmodule.exports = function isBoolean(value) {\n\tif (typeof value === 'boolean') {\n\t\treturn true;\n\t}\n\tif (value === null || typeof value !== 'object') {\n\t\treturn false;\n\t}\n\treturn hasToStringTag && Symbol.toStringTag in value ? tryBooleanObject(value) : $toString(value) === boolClass;\n};\n","'use strict';\n\nvar toStr = Object.prototype.toString;\nvar hasSymbols = require('has-symbols')();\n\nif (hasSymbols) {\n\tvar symToStr = Symbol.prototype.toString;\n\tvar symStringRegex = /^Symbol\\(.*\\)$/;\n\tvar isSymbolObject = function isRealSymbolObject(value) {\n\t\tif (typeof value.valueOf() !== 'symbol') {\n\t\t\treturn false;\n\t\t}\n\t\treturn symStringRegex.test(symToStr.call(value));\n\t};\n\n\tmodule.exports = function isSymbol(value) {\n\t\tif (typeof value === 'symbol') {\n\t\t\treturn true;\n\t\t}\n\t\tif (toStr.call(value) !== '[object Symbol]') {\n\t\t\treturn false;\n\t\t}\n\t\ttry {\n\t\t\treturn isSymbolObject(value);\n\t\t} catch (e) {\n\t\t\treturn false;\n\t\t}\n\t};\n} else {\n\n\tmodule.exports = function isSymbol(value) {\n\t\t// this environment does not support Symbols.\n\t\treturn false && value;\n\t};\n}\n","'use strict';\n\nvar $BigInt = global.BigInt;\n\nmodule.exports = function hasNativeBigInts() {\n\treturn typeof $BigInt === 'function'\n\t\t&& typeof BigInt === 'function'\n\t\t&& typeof $BigInt(42) === 'bigint' // eslint-disable-line no-magic-numbers\n\t\t&& typeof BigInt(42) === 'bigint'; // eslint-disable-line no-magic-numbers\n};\n","'use strict';\n\nvar hasBigInts = require('has-bigints')();\n\nif (hasBigInts) {\n\tvar bigIntValueOf = BigInt.prototype.valueOf;\n\tvar tryBigInt = function tryBigIntObject(value) {\n\t\ttry {\n\t\t\tbigIntValueOf.call(value);\n\t\t\treturn true;\n\t\t} catch (e) {\n\t\t}\n\t\treturn false;\n\t};\n\n\tmodule.exports = function isBigInt(value) {\n\t\tif (\n\t\t\tvalue === null\n\t\t\t|| typeof value === 'undefined'\n\t\t\t|| typeof value === 'boolean'\n\t\t\t|| typeof value === 'string'\n\t\t\t|| typeof value === 'number'\n\t\t\t|| typeof value === 'symbol'\n\t\t\t|| typeof value === 'function'\n\t\t) {\n\t\t\treturn false;\n\t\t}\n\t\tif (typeof value === 'bigint') {\n\t\t\treturn true;\n\t\t}\n\n\t\treturn tryBigInt(value);\n\t};\n} else {\n\tmodule.exports = function isBigInt(value) {\n\t\treturn false && value;\n\t};\n}\n","'use strict';\n\nvar isString = require('is-string');\nvar isNumber = require('is-number-object');\nvar isBoolean = require('is-boolean-object');\nvar isSymbol = require('is-symbol');\nvar isBigInt = require('is-bigint');\n\n// eslint-disable-next-line consistent-return\nmodule.exports = function whichBoxedPrimitive(value) {\n\t// eslint-disable-next-line eqeqeq\n\tif (value == null || (typeof value !== 'object' && typeof value !== 'function')) {\n\t\treturn null;\n\t}\n\tif (isString(value)) {\n\t\treturn 'String';\n\t}\n\tif (isNumber(value)) {\n\t\treturn 'Number';\n\t}\n\tif (isBoolean(value)) {\n\t\treturn 'Boolean';\n\t}\n\tif (isSymbol(value)) {\n\t\treturn 'Symbol';\n\t}\n\tif (isBigInt(value)) {\n\t\treturn 'BigInt';\n\t}\n};\n","'use strict';\n\nvar $Map = typeof Map === 'function' && Map.prototype ? Map : null;\nvar $Set = typeof Set === 'function' && Set.prototype ? Set : null;\n\nvar exported;\n\nif (!$Map) {\n\t// eslint-disable-next-line no-unused-vars\n\texported = function isMap(x) {\n\t\t// `Map` is not present in this environment.\n\t\treturn false;\n\t};\n}\n\nvar $mapHas = $Map ? Map.prototype.has : null;\nvar $setHas = $Set ? Set.prototype.has : null;\nif (!exported && !$mapHas) {\n\t// eslint-disable-next-line no-unused-vars\n\texported = function isMap(x) {\n\t\t// `Map` does not have a `has` method\n\t\treturn false;\n\t};\n}\n\nmodule.exports = exported || function isMap(x) {\n\tif (!x || typeof x !== 'object') {\n\t\treturn false;\n\t}\n\ttry {\n\t\t$mapHas.call(x);\n\t\tif ($setHas) {\n\t\t\ttry {\n\t\t\t\t$setHas.call(x);\n\t\t\t} catch (e) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t\treturn x instanceof $Map; // core-js workaround, pre-v2.5.0\n\t} catch (e) {}\n\treturn false;\n};\n","'use strict';\n\nvar $Map = typeof Map === 'function' && Map.prototype ? Map : null;\nvar $Set = typeof Set === 'function' && Set.prototype ? Set : null;\n\nvar exported;\n\nif (!$Set) {\n\t// eslint-disable-next-line no-unused-vars\n\texported = function isSet(x) {\n\t\t// `Set` is not present in this environment.\n\t\treturn false;\n\t};\n}\n\nvar $mapHas = $Map ? Map.prototype.has : null;\nvar $setHas = $Set ? Set.prototype.has : null;\nif (!exported && !$setHas) {\n\t// eslint-disable-next-line no-unused-vars\n\texported = function isSet(x) {\n\t\t// `Set` does not have a `has` method\n\t\treturn false;\n\t};\n}\n\nmodule.exports = exported || function isSet(x) {\n\tif (!x || typeof x !== 'object') {\n\t\treturn false;\n\t}\n\ttry {\n\t\t$setHas.call(x);\n\t\tif ($mapHas) {\n\t\t\ttry {\n\t\t\t\t$mapHas.call(x);\n\t\t\t} catch (e) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t\treturn x instanceof $Set; // core-js workaround, pre-v2.5.0\n\t} catch (e) {}\n\treturn false;\n};\n","'use strict';\n\nvar $WeakMap = typeof WeakMap === 'function' && WeakMap.prototype ? WeakMap : null;\nvar $WeakSet = typeof WeakSet === 'function' && WeakSet.prototype ? WeakSet : null;\n\nvar exported;\n\nif (!$WeakMap) {\n\t// eslint-disable-next-line no-unused-vars\n\texported = function isWeakMap(x) {\n\t\t// `WeakMap` is not present in this environment.\n\t\treturn false;\n\t};\n}\n\nvar $mapHas = $WeakMap ? $WeakMap.prototype.has : null;\nvar $setHas = $WeakSet ? $WeakSet.prototype.has : null;\nif (!exported && !$mapHas) {\n\t// eslint-disable-next-line no-unused-vars\n\texported = function isWeakMap(x) {\n\t\t// `WeakMap` does not have a `has` method\n\t\treturn false;\n\t};\n}\n\nmodule.exports = exported || function isWeakMap(x) {\n\tif (!x || typeof x !== 'object') {\n\t\treturn false;\n\t}\n\ttry {\n\t\t$mapHas.call(x, $mapHas);\n\t\tif ($setHas) {\n\t\t\ttry {\n\t\t\t\t$setHas.call(x, $setHas);\n\t\t\t} catch (e) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t\treturn x instanceof $WeakMap; // core-js workaround, pre-v3\n\t} catch (e) {}\n\treturn false;\n};\n","'use strict';\n\nvar GetIntrinsic = require('get-intrinsic');\nvar callBound = require('call-bind/callBound');\n\nvar $WeakSet = GetIntrinsic('%WeakSet%', true);\n\nvar $setHas = callBound('WeakSet.prototype.has', true);\n\nif ($setHas) {\n\tvar $mapHas = callBound('WeakMap.prototype.has', true);\n\n\tmodule.exports = function isWeakSet(x) {\n\t\tif (!x || typeof x !== 'object') {\n\t\t\treturn false;\n\t\t}\n\t\ttry {\n\t\t\t$setHas(x, $setHas);\n\t\t\tif ($mapHas) {\n\t\t\t\ttry {\n\t\t\t\t\t$mapHas(x, $mapHas);\n\t\t\t\t} catch (e) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn x instanceof $WeakSet; // core-js workaround, pre-v3\n\t\t} catch (e) {}\n\t\treturn false;\n\t};\n} else {\n\t// eslint-disable-next-line no-unused-vars\n\tmodule.exports = function isWeakSet(x) {\n\t\t// `WeakSet` does not exist, or does not have a `has` method\n\t\treturn false;\n\t};\n}\n","'use strict';\n\nvar isMap = require('is-map');\nvar isSet = require('is-set');\nvar isWeakMap = require('is-weakmap');\nvar isWeakSet = require('is-weakset');\n\nmodule.exports = function whichCollection(value) {\n\tif (value && typeof value === 'object') {\n\t\tif (isMap(value)) {\n\t\t\treturn 'Map';\n\t\t}\n\t\tif (isSet(value)) {\n\t\t\treturn 'Set';\n\t\t}\n\t\tif (isWeakMap(value)) {\n\t\t\treturn 'WeakMap';\n\t\t}\n\t\tif (isWeakSet(value)) {\n\t\t\treturn 'WeakSet';\n\t\t}\n\t}\n\treturn false;\n};\n","'use strict';\n\n// this should only run in node >= 13.2, so it\n// does not need any of the intense fallbacks that old node/browsers do\n\nvar $iterator = Symbol.iterator;\nmodule.exports = function getIterator(iterable) {\n\t// alternatively, `iterable[$iterator]?.()`\n\tif (iterable != null && typeof iterable[$iterator] !== 'undefined') {\n\t\treturn iterable[$iterator]();\n\t}\n};\n","module.exports = require('util').inspect;\n","var hasMap = typeof Map === 'function' && Map.prototype;\nvar mapSizeDescriptor = Object.getOwnPropertyDescriptor && hasMap ? Object.getOwnPropertyDescriptor(Map.prototype, 'size') : null;\nvar mapSize = hasMap && mapSizeDescriptor && typeof mapSizeDescriptor.get === 'function' ? mapSizeDescriptor.get : null;\nvar mapForEach = hasMap && Map.prototype.forEach;\nvar hasSet = typeof Set === 'function' && Set.prototype;\nvar setSizeDescriptor = Object.getOwnPropertyDescriptor && hasSet ? Object.getOwnPropertyDescriptor(Set.prototype, 'size') : null;\nvar setSize = hasSet && setSizeDescriptor && typeof setSizeDescriptor.get === 'function' ? setSizeDescriptor.get : null;\nvar setForEach = hasSet && Set.prototype.forEach;\nvar hasWeakMap = typeof WeakMap === 'function' && WeakMap.prototype;\nvar weakMapHas = hasWeakMap ? WeakMap.prototype.has : null;\nvar hasWeakSet = typeof WeakSet === 'function' && WeakSet.prototype;\nvar weakSetHas = hasWeakSet ? WeakSet.prototype.has : null;\nvar hasWeakRef = typeof WeakRef === 'function' && WeakRef.prototype;\nvar weakRefDeref = hasWeakRef ? WeakRef.prototype.deref : null;\nvar booleanValueOf = Boolean.prototype.valueOf;\nvar objectToString = Object.prototype.toString;\nvar functionToString = Function.prototype.toString;\nvar $match = String.prototype.match;\nvar $slice = String.prototype.slice;\nvar $replace = String.prototype.replace;\nvar $toUpperCase = String.prototype.toUpperCase;\nvar $toLowerCase = String.prototype.toLowerCase;\nvar $test = RegExp.prototype.test;\nvar $concat = Array.prototype.concat;\nvar $join = Array.prototype.join;\nvar $arrSlice = Array.prototype.slice;\nvar $floor = Math.floor;\nvar bigIntValueOf = typeof BigInt === 'function' ? BigInt.prototype.valueOf : null;\nvar gOPS = Object.getOwnPropertySymbols;\nvar symToString = typeof Symbol === 'function' && typeof Symbol.iterator === 'symbol' ? Symbol.prototype.toString : null;\nvar hasShammedSymbols = typeof Symbol === 'function' && typeof Symbol.iterator === 'object';\n// ie, `has-tostringtag/shams\nvar toStringTag = typeof Symbol === 'function' && Symbol.toStringTag && (typeof Symbol.toStringTag === hasShammedSymbols ? 'object' : 'symbol')\n ? Symbol.toStringTag\n : null;\nvar isEnumerable = Object.prototype.propertyIsEnumerable;\n\nvar gPO = (typeof Reflect === 'function' ? Reflect.getPrototypeOf : Object.getPrototypeOf) || (\n [].__proto__ === Array.prototype // eslint-disable-line no-proto\n ? function (O) {\n return O.__proto__; // eslint-disable-line no-proto\n }\n : null\n);\n\nfunction addNumericSeparator(num, str) {\n if (\n num === Infinity\n || num === -Infinity\n || num !== num\n || (num && num > -1000 && num < 1000)\n || $test.call(/e/, str)\n ) {\n return str;\n }\n var sepRegex = /[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;\n if (typeof num === 'number') {\n var int = num < 0 ? -$floor(-num) : $floor(num); // trunc(num)\n if (int !== num) {\n var intStr = String(int);\n var dec = $slice.call(str, intStr.length + 1);\n return $replace.call(intStr, sepRegex, '$&_') + '.' + $replace.call($replace.call(dec, /([0-9]{3})/g, '$&_'), /_$/, '');\n }\n }\n return $replace.call(str, sepRegex, '$&_');\n}\n\nvar inspectCustom = require('./util.inspect').custom;\nvar inspectSymbol = inspectCustom && isSymbol(inspectCustom) ? inspectCustom : null;\n\nmodule.exports = function inspect_(obj, options, depth, seen) {\n var opts = options || {};\n\n if (has(opts, 'quoteStyle') && (opts.quoteStyle !== 'single' && opts.quoteStyle !== 'double')) {\n throw new TypeError('option \"quoteStyle\" must be \"single\" or \"double\"');\n }\n if (\n has(opts, 'maxStringLength') && (typeof opts.maxStringLength === 'number'\n ? opts.maxStringLength < 0 && opts.maxStringLength !== Infinity\n : opts.maxStringLength !== null\n )\n ) {\n throw new TypeError('option \"maxStringLength\", if provided, must be a positive integer, Infinity, or `null`');\n }\n var customInspect = has(opts, 'customInspect') ? opts.customInspect : true;\n if (typeof customInspect !== 'boolean' && customInspect !== 'symbol') {\n throw new TypeError('option \"customInspect\", if provided, must be `true`, `false`, or `\\'symbol\\'`');\n }\n\n if (\n has(opts, 'indent')\n && opts.indent !== null\n && opts.indent !== '\\t'\n && !(parseInt(opts.indent, 10) === opts.indent && opts.indent > 0)\n ) {\n throw new TypeError('option \"indent\" must be \"\\\\t\", an integer > 0, or `null`');\n }\n if (has(opts, 'numericSeparator') && typeof opts.numericSeparator !== 'boolean') {\n throw new TypeError('option \"numericSeparator\", if provided, must be `true` or `false`');\n }\n var numericSeparator = opts.numericSeparator;\n\n if (typeof obj === 'undefined') {\n return 'undefined';\n }\n if (obj === null) {\n return 'null';\n }\n if (typeof obj === 'boolean') {\n return obj ? 'true' : 'false';\n }\n\n if (typeof obj === 'string') {\n return inspectString(obj, opts);\n }\n if (typeof obj === 'number') {\n if (obj === 0) {\n return Infinity / obj > 0 ? '0' : '-0';\n }\n var str = String(obj);\n return numericSeparator ? addNumericSeparator(obj, str) : str;\n }\n if (typeof obj === 'bigint') {\n var bigIntStr = String(obj) + 'n';\n return numericSeparator ? addNumericSeparator(obj, bigIntStr) : bigIntStr;\n }\n\n var maxDepth = typeof opts.depth === 'undefined' ? 5 : opts.depth;\n if (typeof depth === 'undefined') { depth = 0; }\n if (depth >= maxDepth && maxDepth > 0 && typeof obj === 'object') {\n return isArray(obj) ? '[Array]' : '[Object]';\n }\n\n var indent = getIndent(opts, depth);\n\n if (typeof seen === 'undefined') {\n seen = [];\n } else if (indexOf(seen, obj) >= 0) {\n return '[Circular]';\n }\n\n function inspect(value, from, noIndent) {\n if (from) {\n seen = $arrSlice.call(seen);\n seen.push(from);\n }\n if (noIndent) {\n var newOpts = {\n depth: opts.depth\n };\n if (has(opts, 'quoteStyle')) {\n newOpts.quoteStyle = opts.quoteStyle;\n }\n return inspect_(value, newOpts, depth + 1, seen);\n }\n return inspect_(value, opts, depth + 1, seen);\n }\n\n if (typeof obj === 'function') {\n var name = nameOf(obj);\n var keys = arrObjKeys(obj, inspect);\n return '[Function' + (name ? ': ' + name : ' (anonymous)') + ']' + (keys.length > 0 ? ' { ' + $join.call(keys, ', ') + ' }' : '');\n }\n if (isSymbol(obj)) {\n var symString = hasShammedSymbols ? $replace.call(String(obj), /^(Symbol\\(.*\\))_[^)]*$/, '$1') : symToString.call(obj);\n return typeof obj === 'object' && !hasShammedSymbols ? markBoxed(symString) : symString;\n }\n if (isElement(obj)) {\n var s = '<' + $toLowerCase.call(String(obj.nodeName));\n var attrs = obj.attributes || [];\n for (var i = 0; i < attrs.length; i++) {\n s += ' ' + attrs[i].name + '=' + wrapQuotes(quote(attrs[i].value), 'double', opts);\n }\n s += '>';\n if (obj.childNodes && obj.childNodes.length) { s += '...'; }\n s += '';\n return s;\n }\n if (isArray(obj)) {\n if (obj.length === 0) { return '[]'; }\n var xs = arrObjKeys(obj, inspect);\n if (indent && !singleLineValues(xs)) {\n return '[' + indentedJoin(xs, indent) + ']';\n }\n return '[ ' + $join.call(xs, ', ') + ' ]';\n }\n if (isError(obj)) {\n var parts = arrObjKeys(obj, inspect);\n if ('cause' in obj && !isEnumerable.call(obj, 'cause')) {\n return '{ [' + String(obj) + '] ' + $join.call($concat.call('[cause]: ' + inspect(obj.cause), parts), ', ') + ' }';\n }\n if (parts.length === 0) { return '[' + String(obj) + ']'; }\n return '{ [' + String(obj) + '] ' + $join.call(parts, ', ') + ' }';\n }\n if (typeof obj === 'object' && customInspect) {\n if (inspectSymbol && typeof obj[inspectSymbol] === 'function') {\n return obj[inspectSymbol]();\n } else if (customInspect !== 'symbol' && typeof obj.inspect === 'function') {\n return obj.inspect();\n }\n }\n if (isMap(obj)) {\n var mapParts = [];\n mapForEach.call(obj, function (value, key) {\n mapParts.push(inspect(key, obj, true) + ' => ' + inspect(value, obj));\n });\n return collectionOf('Map', mapSize.call(obj), mapParts, indent);\n }\n if (isSet(obj)) {\n var setParts = [];\n setForEach.call(obj, function (value) {\n setParts.push(inspect(value, obj));\n });\n return collectionOf('Set', setSize.call(obj), setParts, indent);\n }\n if (isWeakMap(obj)) {\n return weakCollectionOf('WeakMap');\n }\n if (isWeakSet(obj)) {\n return weakCollectionOf('WeakSet');\n }\n if (isWeakRef(obj)) {\n return weakCollectionOf('WeakRef');\n }\n if (isNumber(obj)) {\n return markBoxed(inspect(Number(obj)));\n }\n if (isBigInt(obj)) {\n return markBoxed(inspect(bigIntValueOf.call(obj)));\n }\n if (isBoolean(obj)) {\n return markBoxed(booleanValueOf.call(obj));\n }\n if (isString(obj)) {\n return markBoxed(inspect(String(obj)));\n }\n if (!isDate(obj) && !isRegExp(obj)) {\n var ys = arrObjKeys(obj, inspect);\n var isPlainObject = gPO ? gPO(obj) === Object.prototype : obj instanceof Object || obj.constructor === Object;\n var protoTag = obj instanceof Object ? '' : 'null prototype';\n var stringTag = !isPlainObject && toStringTag && Object(obj) === obj && toStringTag in obj ? $slice.call(toStr(obj), 8, -1) : protoTag ? 'Object' : '';\n var constructorTag = isPlainObject || typeof obj.constructor !== 'function' ? '' : obj.constructor.name ? obj.constructor.name + ' ' : '';\n var tag = constructorTag + (stringTag || protoTag ? '[' + $join.call($concat.call([], stringTag || [], protoTag || []), ': ') + '] ' : '');\n if (ys.length === 0) { return tag + '{}'; }\n if (indent) {\n return tag + '{' + indentedJoin(ys, indent) + '}';\n }\n return tag + '{ ' + $join.call(ys, ', ') + ' }';\n }\n return String(obj);\n};\n\nfunction wrapQuotes(s, defaultStyle, opts) {\n var quoteChar = (opts.quoteStyle || defaultStyle) === 'double' ? '\"' : \"'\";\n return quoteChar + s + quoteChar;\n}\n\nfunction quote(s) {\n return $replace.call(String(s), /\"/g, '"');\n}\n\nfunction isArray(obj) { return toStr(obj) === '[object Array]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }\nfunction isDate(obj) { return toStr(obj) === '[object Date]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }\nfunction isRegExp(obj) { return toStr(obj) === '[object RegExp]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }\nfunction isError(obj) { return toStr(obj) === '[object Error]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }\nfunction isString(obj) { return toStr(obj) === '[object String]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }\nfunction isNumber(obj) { return toStr(obj) === '[object Number]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }\nfunction isBoolean(obj) { return toStr(obj) === '[object Boolean]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }\n\n// Symbol and BigInt do have Symbol.toStringTag by spec, so that can't be used to eliminate false positives\nfunction isSymbol(obj) {\n if (hasShammedSymbols) {\n return obj && typeof obj === 'object' && obj instanceof Symbol;\n }\n if (typeof obj === 'symbol') {\n return true;\n }\n if (!obj || typeof obj !== 'object' || !symToString) {\n return false;\n }\n try {\n symToString.call(obj);\n return true;\n } catch (e) {}\n return false;\n}\n\nfunction isBigInt(obj) {\n if (!obj || typeof obj !== 'object' || !bigIntValueOf) {\n return false;\n }\n try {\n bigIntValueOf.call(obj);\n return true;\n } catch (e) {}\n return false;\n}\n\nvar hasOwn = Object.prototype.hasOwnProperty || function (key) { return key in this; };\nfunction has(obj, key) {\n return hasOwn.call(obj, key);\n}\n\nfunction toStr(obj) {\n return objectToString.call(obj);\n}\n\nfunction nameOf(f) {\n if (f.name) { return f.name; }\n var m = $match.call(functionToString.call(f), /^function\\s*([\\w$]+)/);\n if (m) { return m[1]; }\n return null;\n}\n\nfunction indexOf(xs, x) {\n if (xs.indexOf) { return xs.indexOf(x); }\n for (var i = 0, l = xs.length; i < l; i++) {\n if (xs[i] === x) { return i; }\n }\n return -1;\n}\n\nfunction isMap(x) {\n if (!mapSize || !x || typeof x !== 'object') {\n return false;\n }\n try {\n mapSize.call(x);\n try {\n setSize.call(x);\n } catch (s) {\n return true;\n }\n return x instanceof Map; // core-js workaround, pre-v2.5.0\n } catch (e) {}\n return false;\n}\n\nfunction isWeakMap(x) {\n if (!weakMapHas || !x || typeof x !== 'object') {\n return false;\n }\n try {\n weakMapHas.call(x, weakMapHas);\n try {\n weakSetHas.call(x, weakSetHas);\n } catch (s) {\n return true;\n }\n return x instanceof WeakMap; // core-js workaround, pre-v2.5.0\n } catch (e) {}\n return false;\n}\n\nfunction isWeakRef(x) {\n if (!weakRefDeref || !x || typeof x !== 'object') {\n return false;\n }\n try {\n weakRefDeref.call(x);\n return true;\n } catch (e) {}\n return false;\n}\n\nfunction isSet(x) {\n if (!setSize || !x || typeof x !== 'object') {\n return false;\n }\n try {\n setSize.call(x);\n try {\n mapSize.call(x);\n } catch (m) {\n return true;\n }\n return x instanceof Set; // core-js workaround, pre-v2.5.0\n } catch (e) {}\n return false;\n}\n\nfunction isWeakSet(x) {\n if (!weakSetHas || !x || typeof x !== 'object') {\n return false;\n }\n try {\n weakSetHas.call(x, weakSetHas);\n try {\n weakMapHas.call(x, weakMapHas);\n } catch (s) {\n return true;\n }\n return x instanceof WeakSet; // core-js workaround, pre-v2.5.0\n } catch (e) {}\n return false;\n}\n\nfunction isElement(x) {\n if (!x || typeof x !== 'object') { return false; }\n if (typeof HTMLElement !== 'undefined' && x instanceof HTMLElement) {\n return true;\n }\n return typeof x.nodeName === 'string' && typeof x.getAttribute === 'function';\n}\n\nfunction inspectString(str, opts) {\n if (str.length > opts.maxStringLength) {\n var remaining = str.length - opts.maxStringLength;\n var trailer = '... ' + remaining + ' more character' + (remaining > 1 ? 's' : '');\n return inspectString($slice.call(str, 0, opts.maxStringLength), opts) + trailer;\n }\n // eslint-disable-next-line no-control-regex\n var s = $replace.call($replace.call(str, /(['\\\\])/g, '\\\\$1'), /[\\x00-\\x1f]/g, lowbyte);\n return wrapQuotes(s, 'single', opts);\n}\n\nfunction lowbyte(c) {\n var n = c.charCodeAt(0);\n var x = {\n 8: 'b',\n 9: 't',\n 10: 'n',\n 12: 'f',\n 13: 'r'\n }[n];\n if (x) { return '\\\\' + x; }\n return '\\\\x' + (n < 0x10 ? '0' : '') + $toUpperCase.call(n.toString(16));\n}\n\nfunction markBoxed(str) {\n return 'Object(' + str + ')';\n}\n\nfunction weakCollectionOf(type) {\n return type + ' { ? }';\n}\n\nfunction collectionOf(type, size, entries, indent) {\n var joinedEntries = indent ? indentedJoin(entries, indent) : $join.call(entries, ', ');\n return type + ' (' + size + ') {' + joinedEntries + '}';\n}\n\nfunction singleLineValues(xs) {\n for (var i = 0; i < xs.length; i++) {\n if (indexOf(xs[i], '\\n') >= 0) {\n return false;\n }\n }\n return true;\n}\n\nfunction getIndent(opts, depth) {\n var baseIndent;\n if (opts.indent === '\\t') {\n baseIndent = '\\t';\n } else if (typeof opts.indent === 'number' && opts.indent > 0) {\n baseIndent = $join.call(Array(opts.indent + 1), ' ');\n } else {\n return null;\n }\n return {\n base: baseIndent,\n prev: $join.call(Array(depth + 1), baseIndent)\n };\n}\n\nfunction indentedJoin(xs, indent) {\n if (xs.length === 0) { return ''; }\n var lineJoiner = '\\n' + indent.prev + indent.base;\n return lineJoiner + $join.call(xs, ',' + lineJoiner) + '\\n' + indent.prev;\n}\n\nfunction arrObjKeys(obj, inspect) {\n var isArr = isArray(obj);\n var xs = [];\n if (isArr) {\n xs.length = obj.length;\n for (var i = 0; i < obj.length; i++) {\n xs[i] = has(obj, i) ? inspect(obj[i], obj) : '';\n }\n }\n var syms = typeof gOPS === 'function' ? gOPS(obj) : [];\n var symMap;\n if (hasShammedSymbols) {\n symMap = {};\n for (var k = 0; k < syms.length; k++) {\n symMap['$' + syms[k]] = syms[k];\n }\n }\n\n for (var key in obj) { // eslint-disable-line no-restricted-syntax\n if (!has(obj, key)) { continue; } // eslint-disable-line no-restricted-syntax, no-continue\n if (isArr && String(Number(key)) === key && key < obj.length) { continue; } // eslint-disable-line no-restricted-syntax, no-continue\n if (hasShammedSymbols && symMap['$' + key] instanceof Symbol) {\n // this is to prevent shammed Symbols, which are stored as strings, from being included in the string key section\n continue; // eslint-disable-line no-restricted-syntax, no-continue\n } else if ($test.call(/[^\\w$]/, key)) {\n xs.push(inspect(key, obj) + ': ' + inspect(obj[key], obj));\n } else {\n xs.push(key + ': ' + inspect(obj[key], obj));\n }\n }\n if (typeof gOPS === 'function') {\n for (var j = 0; j < syms.length; j++) {\n if (isEnumerable.call(obj, syms[j])) {\n xs.push('[' + inspect(syms[j]) + ']: ' + inspect(obj[syms[j]], obj));\n }\n }\n }\n return xs;\n}\n","'use strict';\n\nvar GetIntrinsic = require('get-intrinsic');\nvar callBound = require('call-bind/callBound');\nvar inspect = require('object-inspect');\n\nvar $TypeError = GetIntrinsic('%TypeError%');\nvar $WeakMap = GetIntrinsic('%WeakMap%', true);\nvar $Map = GetIntrinsic('%Map%', true);\n\nvar $weakMapGet = callBound('WeakMap.prototype.get', true);\nvar $weakMapSet = callBound('WeakMap.prototype.set', true);\nvar $weakMapHas = callBound('WeakMap.prototype.has', true);\nvar $mapGet = callBound('Map.prototype.get', true);\nvar $mapSet = callBound('Map.prototype.set', true);\nvar $mapHas = callBound('Map.prototype.has', true);\n\n/*\n * This function traverses the list returning the node corresponding to the\n * given key.\n *\n * That node is also moved to the head of the list, so that if it's accessed\n * again we don't need to traverse the whole list. By doing so, all the recently\n * used nodes can be accessed relatively quickly.\n */\nvar listGetNode = function (list, key) { // eslint-disable-line consistent-return\n\tfor (var prev = list, curr; (curr = prev.next) !== null; prev = curr) {\n\t\tif (curr.key === key) {\n\t\t\tprev.next = curr.next;\n\t\t\tcurr.next = list.next;\n\t\t\tlist.next = curr; // eslint-disable-line no-param-reassign\n\t\t\treturn curr;\n\t\t}\n\t}\n};\n\nvar listGet = function (objects, key) {\n\tvar node = listGetNode(objects, key);\n\treturn node && node.value;\n};\nvar listSet = function (objects, key, value) {\n\tvar node = listGetNode(objects, key);\n\tif (node) {\n\t\tnode.value = value;\n\t} else {\n\t\t// Prepend the new node to the beginning of the list\n\t\tobjects.next = { // eslint-disable-line no-param-reassign\n\t\t\tkey: key,\n\t\t\tnext: objects.next,\n\t\t\tvalue: value\n\t\t};\n\t}\n};\nvar listHas = function (objects, key) {\n\treturn !!listGetNode(objects, key);\n};\n\nmodule.exports = function getSideChannel() {\n\tvar $wm;\n\tvar $m;\n\tvar $o;\n\tvar channel = {\n\t\tassert: function (key) {\n\t\t\tif (!channel.has(key)) {\n\t\t\t\tthrow new $TypeError('Side channel does not contain ' + inspect(key));\n\t\t\t}\n\t\t},\n\t\tget: function (key) { // eslint-disable-line consistent-return\n\t\t\tif ($WeakMap && key && (typeof key === 'object' || typeof key === 'function')) {\n\t\t\t\tif ($wm) {\n\t\t\t\t\treturn $weakMapGet($wm, key);\n\t\t\t\t}\n\t\t\t} else if ($Map) {\n\t\t\t\tif ($m) {\n\t\t\t\t\treturn $mapGet($m, key);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif ($o) { // eslint-disable-line no-lonely-if\n\t\t\t\t\treturn listGet($o, key);\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\thas: function (key) {\n\t\t\tif ($WeakMap && key && (typeof key === 'object' || typeof key === 'function')) {\n\t\t\t\tif ($wm) {\n\t\t\t\t\treturn $weakMapHas($wm, key);\n\t\t\t\t}\n\t\t\t} else if ($Map) {\n\t\t\t\tif ($m) {\n\t\t\t\t\treturn $mapHas($m, key);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif ($o) { // eslint-disable-line no-lonely-if\n\t\t\t\t\treturn listHas($o, key);\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\t\tset: function (key, value) {\n\t\t\tif ($WeakMap && key && (typeof key === 'object' || typeof key === 'function')) {\n\t\t\t\tif (!$wm) {\n\t\t\t\t\t$wm = new $WeakMap();\n\t\t\t\t}\n\t\t\t\t$weakMapSet($wm, key, value);\n\t\t\t} else if ($Map) {\n\t\t\t\tif (!$m) {\n\t\t\t\t\t$m = new $Map();\n\t\t\t\t}\n\t\t\t\t$mapSet($m, key, value);\n\t\t\t} else {\n\t\t\t\tif (!$o) {\n\t\t\t\t\t/*\n\t\t\t\t\t * Initialize the linked list as an empty node, so that we don't have\n\t\t\t\t\t * to special-case handling of the first node: we can always refer to\n\t\t\t\t\t * it as (previous node).next, instead of something like (list).head\n\t\t\t\t\t */\n\t\t\t\t\t$o = { key: {}, next: null };\n\t\t\t\t}\n\t\t\t\tlistSet($o, key, value);\n\t\t\t}\n\t\t}\n\t};\n\treturn channel;\n};\n","\nvar hasOwn = Object.prototype.hasOwnProperty;\nvar toString = Object.prototype.toString;\n\nmodule.exports = function forEach (obj, fn, ctx) {\n if (toString.call(fn) !== '[object Function]') {\n throw new TypeError('iterator must be a function');\n }\n var l = obj.length;\n if (l === +l) {\n for (var i = 0; i < l; i++) {\n fn.call(ctx, obj[i], i, obj);\n }\n } else {\n for (var k in obj) {\n if (hasOwn.call(obj, k)) {\n fn.call(ctx, obj[k], k, obj);\n }\n }\n }\n};\n\n","'use strict';\n\nvar possibleNames = [\n\t'BigInt64Array',\n\t'BigUint64Array',\n\t'Float32Array',\n\t'Float64Array',\n\t'Int16Array',\n\t'Int32Array',\n\t'Int8Array',\n\t'Uint16Array',\n\t'Uint32Array',\n\t'Uint8Array',\n\t'Uint8ClampedArray'\n];\n\nvar g = typeof globalThis === 'undefined' ? global : globalThis;\n\nmodule.exports = function availableTypedArrays() {\n\tvar out = [];\n\tfor (var i = 0; i < possibleNames.length; i++) {\n\t\tif (typeof g[possibleNames[i]] === 'function') {\n\t\t\tout[out.length] = possibleNames[i];\n\t\t}\n\t}\n\treturn out;\n};\n","'use strict';\n\nvar GetIntrinsic = require('get-intrinsic');\n\nvar $gOPD = GetIntrinsic('%Object.getOwnPropertyDescriptor%', true);\nif ($gOPD) {\n\ttry {\n\t\t$gOPD([], 'length');\n\t} catch (e) {\n\t\t// IE 8 has a broken gOPD\n\t\t$gOPD = null;\n\t}\n}\n\nmodule.exports = $gOPD;\n","'use strict';\n\nvar forEach = require('foreach');\nvar availableTypedArrays = require('available-typed-arrays');\nvar callBound = require('call-bind/callBound');\n\nvar $toString = callBound('Object.prototype.toString');\nvar hasToStringTag = require('has-tostringtag/shams')();\n\nvar g = typeof globalThis === 'undefined' ? global : globalThis;\nvar typedArrays = availableTypedArrays();\n\nvar $indexOf = callBound('Array.prototype.indexOf', true) || function indexOf(array, value) {\n\tfor (var i = 0; i < array.length; i += 1) {\n\t\tif (array[i] === value) {\n\t\t\treturn i;\n\t\t}\n\t}\n\treturn -1;\n};\nvar $slice = callBound('String.prototype.slice');\nvar toStrTags = {};\nvar gOPD = require('es-abstract/helpers/getOwnPropertyDescriptor');\nvar getPrototypeOf = Object.getPrototypeOf; // require('getprototypeof');\nif (hasToStringTag && gOPD && getPrototypeOf) {\n\tforEach(typedArrays, function (typedArray) {\n\t\tvar arr = new g[typedArray]();\n\t\tif (Symbol.toStringTag in arr) {\n\t\t\tvar proto = getPrototypeOf(arr);\n\t\t\tvar descriptor = gOPD(proto, Symbol.toStringTag);\n\t\t\tif (!descriptor) {\n\t\t\t\tvar superProto = getPrototypeOf(proto);\n\t\t\t\tdescriptor = gOPD(superProto, Symbol.toStringTag);\n\t\t\t}\n\t\t\ttoStrTags[typedArray] = descriptor.get;\n\t\t}\n\t});\n}\n\nvar tryTypedArrays = function tryAllTypedArrays(value) {\n\tvar anyTrue = false;\n\tforEach(toStrTags, function (getter, typedArray) {\n\t\tif (!anyTrue) {\n\t\t\ttry {\n\t\t\t\tanyTrue = getter.call(value) === typedArray;\n\t\t\t} catch (e) { /**/ }\n\t\t}\n\t});\n\treturn anyTrue;\n};\n\nmodule.exports = function isTypedArray(value) {\n\tif (!value || typeof value !== 'object') { return false; }\n\tif (!hasToStringTag || !(Symbol.toStringTag in value)) {\n\t\tvar tag = $slice($toString(value), 8, -1);\n\t\treturn $indexOf(typedArrays, tag) > -1;\n\t}\n\tif (!gOPD) { return false; }\n\treturn tryTypedArrays(value);\n};\n","'use strict';\n\nvar forEach = require('foreach');\nvar availableTypedArrays = require('available-typed-arrays');\nvar callBound = require('call-bind/callBound');\n\nvar $toString = callBound('Object.prototype.toString');\nvar hasToStringTag = require('has-tostringtag/shams')();\n\nvar g = typeof globalThis === 'undefined' ? global : globalThis;\nvar typedArrays = availableTypedArrays();\n\nvar $slice = callBound('String.prototype.slice');\nvar toStrTags = {};\nvar gOPD = require('es-abstract/helpers/getOwnPropertyDescriptor');\nvar getPrototypeOf = Object.getPrototypeOf; // require('getprototypeof');\nif (hasToStringTag && gOPD && getPrototypeOf) {\n\tforEach(typedArrays, function (typedArray) {\n\t\tif (typeof g[typedArray] === 'function') {\n\t\t\tvar arr = new g[typedArray]();\n\t\t\tif (Symbol.toStringTag in arr) {\n\t\t\t\tvar proto = getPrototypeOf(arr);\n\t\t\t\tvar descriptor = gOPD(proto, Symbol.toStringTag);\n\t\t\t\tif (!descriptor) {\n\t\t\t\t\tvar superProto = getPrototypeOf(proto);\n\t\t\t\t\tdescriptor = gOPD(superProto, Symbol.toStringTag);\n\t\t\t\t}\n\t\t\t\ttoStrTags[typedArray] = descriptor.get;\n\t\t\t}\n\t\t}\n\t});\n}\n\nvar tryTypedArrays = function tryAllTypedArrays(value) {\n\tvar foundName = false;\n\tforEach(toStrTags, function (getter, typedArray) {\n\t\tif (!foundName) {\n\t\t\ttry {\n\t\t\t\tvar name = getter.call(value);\n\t\t\t\tif (name === typedArray) {\n\t\t\t\t\tfoundName = name;\n\t\t\t\t}\n\t\t\t} catch (e) {}\n\t\t}\n\t});\n\treturn foundName;\n};\n\nvar isTypedArray = require('is-typed-array');\n\nmodule.exports = function whichTypedArray(value) {\n\tif (!isTypedArray(value)) { return false; }\n\tif (!hasToStringTag || !(Symbol.toStringTag in value)) { return $slice($toString(value), 8, -1); }\n\treturn tryTypedArrays(value);\n};\n","'use strict';\n\n// modified from https://github.com/es-shims/es6-shim\nvar keys = require('object-keys');\nvar canBeObject = function (obj) {\n\treturn typeof obj !== 'undefined' && obj !== null;\n};\nvar hasSymbols = require('has-symbols/shams')();\nvar callBound = require('call-bind/callBound');\nvar toObject = Object;\nvar $push = callBound('Array.prototype.push');\nvar $propIsEnumerable = callBound('Object.prototype.propertyIsEnumerable');\nvar originalGetSymbols = hasSymbols ? Object.getOwnPropertySymbols : null;\n\n// eslint-disable-next-line no-unused-vars\nmodule.exports = function assign(target, source1) {\n\tif (!canBeObject(target)) { throw new TypeError('target must be an object'); }\n\tvar objTarget = toObject(target);\n\tvar s, source, i, props, syms, value, key;\n\tfor (s = 1; s < arguments.length; ++s) {\n\t\tsource = toObject(arguments[s]);\n\t\tprops = keys(source);\n\t\tvar getSymbols = hasSymbols && (Object.getOwnPropertySymbols || originalGetSymbols);\n\t\tif (getSymbols) {\n\t\t\tsyms = getSymbols(source);\n\t\t\tfor (i = 0; i < syms.length; ++i) {\n\t\t\t\tkey = syms[i];\n\t\t\t\tif ($propIsEnumerable(source, key)) {\n\t\t\t\t\t$push(props, key);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tfor (i = 0; i < props.length; ++i) {\n\t\t\tkey = props[i];\n\t\t\tvalue = source[key];\n\t\t\tif ($propIsEnumerable(source, key)) {\n\t\t\t\tobjTarget[key] = value;\n\t\t\t}\n\t\t}\n\t}\n\treturn objTarget;\n};\n","'use strict';\n\nvar implementation = require('./implementation');\n\nvar lacksProperEnumerationOrder = function () {\n\tif (!Object.assign) {\n\t\treturn false;\n\t}\n\t/*\n\t * v8, specifically in node 4.x, has a bug with incorrect property enumeration order\n\t * note: this does not detect the bug unless there's 20 characters\n\t */\n\tvar str = 'abcdefghijklmnopqrst';\n\tvar letters = str.split('');\n\tvar map = {};\n\tfor (var i = 0; i < letters.length; ++i) {\n\t\tmap[letters[i]] = letters[i];\n\t}\n\tvar obj = Object.assign({}, map);\n\tvar actual = '';\n\tfor (var k in obj) {\n\t\tactual += k;\n\t}\n\treturn str !== actual;\n};\n\nvar assignHasPendingExceptions = function () {\n\tif (!Object.assign || !Object.preventExtensions) {\n\t\treturn false;\n\t}\n\t/*\n\t * Firefox 37 still has \"pending exception\" logic in its Object.assign implementation,\n\t * which is 72% slower than our shim, and Firefox 40's native implementation.\n\t */\n\tvar thrower = Object.preventExtensions({ 1: 2 });\n\ttry {\n\t\tObject.assign(thrower, 'xy');\n\t} catch (e) {\n\t\treturn thrower[1] === 'y';\n\t}\n\treturn false;\n};\n\nmodule.exports = function getPolyfill() {\n\tif (!Object.assign) {\n\t\treturn implementation;\n\t}\n\tif (lacksProperEnumerationOrder()) {\n\t\treturn implementation;\n\t}\n\tif (assignHasPendingExceptions()) {\n\t\treturn implementation;\n\t}\n\treturn Object.assign;\n};\n","'use strict';\n\nvar define = require('define-properties');\nvar getPolyfill = require('./polyfill');\n\nmodule.exports = function shimAssign() {\n\tvar polyfill = getPolyfill();\n\tdefine(\n\t\tObject,\n\t\t{ assign: polyfill },\n\t\t{ assign: function () { return Object.assign !== polyfill; } }\n\t);\n\treturn polyfill;\n};\n","'use strict';\n\nvar defineProperties = require('define-properties');\nvar callBind = require('call-bind');\n\nvar implementation = require('./implementation');\nvar getPolyfill = require('./polyfill');\nvar shim = require('./shim');\n\nvar polyfill = callBind.apply(getPolyfill());\n// eslint-disable-next-line no-unused-vars\nvar bound = function assign(target, source1) {\n\treturn polyfill(Object, arguments);\n};\n\ndefineProperties(bound, {\n\tgetPolyfill: getPolyfill,\n\timplementation: implementation,\n\tshim: shim\n});\n\nmodule.exports = bound;\n","'use strict';\n\nvar objectKeys = require('object-keys');\nvar isArguments = require('is-arguments');\nvar is = require('object-is');\nvar isRegex = require('is-regex');\nvar flags = require('regexp.prototype.flags');\nvar isArray = require('isarray');\nvar isDate = require('is-date-object');\nvar whichBoxedPrimitive = require('which-boxed-primitive');\nvar GetIntrinsic = require('get-intrinsic');\nvar callBound = require('call-bind/callBound');\nvar whichCollection = require('which-collection');\nvar getIterator = require('es-get-iterator');\nvar getSideChannel = require('side-channel');\nvar whichTypedArray = require('which-typed-array');\nvar assign = require('object.assign');\n\nvar $getTime = callBound('Date.prototype.getTime');\nvar gPO = Object.getPrototypeOf;\nvar $objToString = callBound('Object.prototype.toString');\n\nvar $Set = GetIntrinsic('%Set%', true);\nvar $mapHas = callBound('Map.prototype.has', true);\nvar $mapGet = callBound('Map.prototype.get', true);\nvar $mapSize = callBound('Map.prototype.size', true);\nvar $setAdd = callBound('Set.prototype.add', true);\nvar $setDelete = callBound('Set.prototype.delete', true);\nvar $setHas = callBound('Set.prototype.has', true);\nvar $setSize = callBound('Set.prototype.size', true);\n\n// taken from https://github.com/browserify/commonjs-assert/blob/bba838e9ba9e28edf3127ce6974624208502f6bc/internal/util/comparisons.js#L401-L414\nfunction setHasEqualElement(set, val1, opts, channel) {\n var i = getIterator(set);\n var result;\n while ((result = i.next()) && !result.done) {\n if (internalDeepEqual(val1, result.value, opts, channel)) { // eslint-disable-line no-use-before-define\n // Remove the matching element to make sure we do not check that again.\n $setDelete(set, result.value);\n return true;\n }\n }\n\n return false;\n}\n\n// taken from https://github.com/browserify/commonjs-assert/blob/bba838e9ba9e28edf3127ce6974624208502f6bc/internal/util/comparisons.js#L416-L439\nfunction findLooseMatchingPrimitives(prim) {\n if (typeof prim === 'undefined') {\n return null;\n }\n if (typeof prim === 'object') { // Only pass in null as object!\n return void 0;\n }\n if (typeof prim === 'symbol') {\n return false;\n }\n if (typeof prim === 'string' || typeof prim === 'number') {\n // Loose equal entries exist only if the string is possible to convert to a regular number and not NaN.\n return +prim === +prim; // eslint-disable-line no-implicit-coercion\n }\n return true;\n}\n\n// taken from https://github.com/browserify/commonjs-assert/blob/bba838e9ba9e28edf3127ce6974624208502f6bc/internal/util/comparisons.js#L449-L460\nfunction mapMightHaveLoosePrim(a, b, prim, item, opts, channel) {\n var altValue = findLooseMatchingPrimitives(prim);\n if (altValue != null) {\n return altValue;\n }\n var curB = $mapGet(b, altValue);\n var looseOpts = assign({}, opts, { strict: false });\n if (\n (typeof curB === 'undefined' && !$mapHas(b, altValue))\n // eslint-disable-next-line no-use-before-define\n || !internalDeepEqual(item, curB, looseOpts, channel)\n ) {\n return false;\n }\n // eslint-disable-next-line no-use-before-define\n return !$mapHas(a, altValue) && internalDeepEqual(item, curB, looseOpts, channel);\n}\n\n// taken from https://github.com/browserify/commonjs-assert/blob/bba838e9ba9e28edf3127ce6974624208502f6bc/internal/util/comparisons.js#L441-L447\nfunction setMightHaveLoosePrim(a, b, prim) {\n var altValue = findLooseMatchingPrimitives(prim);\n if (altValue != null) {\n return altValue;\n }\n\n return $setHas(b, altValue) && !$setHas(a, altValue);\n}\n\n// taken from https://github.com/browserify/commonjs-assert/blob/bba838e9ba9e28edf3127ce6974624208502f6bc/internal/util/comparisons.js#L518-L533\nfunction mapHasEqualEntry(set, map, key1, item1, opts, channel) {\n var i = getIterator(set);\n var result;\n var key2;\n while ((result = i.next()) && !result.done) {\n key2 = result.value;\n if (\n // eslint-disable-next-line no-use-before-define\n internalDeepEqual(key1, key2, opts, channel)\n // eslint-disable-next-line no-use-before-define\n && internalDeepEqual(item1, $mapGet(map, key2), opts, channel)\n ) {\n $setDelete(set, key2);\n return true;\n }\n }\n\n return false;\n}\n\nfunction internalDeepEqual(actual, expected, options, channel) {\n var opts = options || {};\n\n // 7.1. All identical values are equivalent, as determined by ===.\n if (opts.strict ? is(actual, expected) : actual === expected) {\n return true;\n }\n\n var actualBoxed = whichBoxedPrimitive(actual);\n var expectedBoxed = whichBoxedPrimitive(expected);\n if (actualBoxed !== expectedBoxed) {\n return false;\n }\n\n // 7.3. Other pairs that do not both pass typeof value == 'object', equivalence is determined by ==.\n if (!actual || !expected || (typeof actual !== 'object' && typeof expected !== 'object')) {\n return opts.strict ? is(actual, expected) : actual == expected; // eslint-disable-line eqeqeq\n }\n\n /*\n * 7.4. For all other Object pairs, including Array objects, equivalence is\n * determined by having the same number of owned properties (as verified\n * with Object.prototype.hasOwnProperty.call), the same set of keys\n * (although not necessarily the same order), equivalent values for every\n * corresponding key, and an identical 'prototype' property. Note: this\n * accounts for both named and indexed properties on Arrays.\n */\n // see https://github.com/nodejs/node/commit/d3aafd02efd3a403d646a3044adcf14e63a88d32 for memos/channel inspiration\n\n var hasActual = channel.has(actual);\n var hasExpected = channel.has(expected);\n var sentinel;\n if (hasActual && hasExpected) {\n if (channel.get(actual) === channel.get(expected)) {\n return true;\n }\n } else {\n sentinel = {};\n }\n if (!hasActual) { channel.set(actual, sentinel); }\n if (!hasExpected) { channel.set(expected, sentinel); }\n\n // eslint-disable-next-line no-use-before-define\n return objEquiv(actual, expected, opts, channel);\n}\n\nfunction isBuffer(x) {\n if (!x || typeof x !== 'object' || typeof x.length !== 'number') {\n return false;\n }\n if (typeof x.copy !== 'function' || typeof x.slice !== 'function') {\n return false;\n }\n if (x.length > 0 && typeof x[0] !== 'number') {\n return false;\n }\n\n return !!(x.constructor && x.constructor.isBuffer && x.constructor.isBuffer(x));\n}\n\nfunction setEquiv(a, b, opts, channel) {\n if ($setSize(a) !== $setSize(b)) {\n return false;\n }\n var iA = getIterator(a);\n var iB = getIterator(b);\n var resultA;\n var resultB;\n var set;\n while ((resultA = iA.next()) && !resultA.done) {\n if (resultA.value && typeof resultA.value === 'object') {\n if (!set) { set = new $Set(); }\n $setAdd(set, resultA.value);\n } else if (!$setHas(b, resultA.value)) {\n if (opts.strict) { return false; }\n if (!setMightHaveLoosePrim(a, b, resultA.value)) {\n return false;\n }\n if (!set) { set = new $Set(); }\n $setAdd(set, resultA.value);\n }\n }\n if (set) {\n while ((resultB = iB.next()) && !resultB.done) {\n // We have to check if a primitive value is already matching and only if it's not, go hunting for it.\n if (resultB.value && typeof resultB.value === 'object') {\n if (!setHasEqualElement(set, resultB.value, opts.strict, channel)) {\n return false;\n }\n } else if (\n !opts.strict\n && !$setHas(a, resultB.value)\n && !setHasEqualElement(set, resultB.value, opts.strict, channel)\n ) {\n return false;\n }\n }\n return $setSize(set) === 0;\n }\n return true;\n}\n\nfunction mapEquiv(a, b, opts, channel) {\n if ($mapSize(a) !== $mapSize(b)) {\n return false;\n }\n var iA = getIterator(a);\n var iB = getIterator(b);\n var resultA;\n var resultB;\n var set;\n var key;\n var item1;\n var item2;\n while ((resultA = iA.next()) && !resultA.done) {\n key = resultA.value[0];\n item1 = resultA.value[1];\n if (key && typeof key === 'object') {\n if (!set) { set = new $Set(); }\n $setAdd(set, key);\n } else {\n item2 = $mapGet(b, key);\n if ((typeof item2 === 'undefined' && !$mapHas(b, key)) || !internalDeepEqual(item1, item2, opts, channel)) {\n if (opts.strict) {\n return false;\n }\n if (!mapMightHaveLoosePrim(a, b, key, item1, opts, channel)) {\n return false;\n }\n if (!set) { set = new $Set(); }\n $setAdd(set, key);\n }\n }\n }\n\n if (set) {\n while ((resultB = iB.next()) && !resultB.done) {\n key = resultB.value[0];\n item2 = resultB.value[1];\n if (key && typeof key === 'object') {\n if (!mapHasEqualEntry(set, a, key, item2, opts, channel)) {\n return false;\n }\n } else if (\n !opts.strict\n && (!a.has(key) || !internalDeepEqual($mapGet(a, key), item2, opts, channel))\n && !mapHasEqualEntry(set, a, key, item2, assign({}, opts, { strict: false }), channel)\n ) {\n return false;\n }\n }\n return $setSize(set) === 0;\n }\n return true;\n}\n\nfunction objEquiv(a, b, opts, channel) {\n /* eslint max-statements: [2, 100], max-lines-per-function: [2, 120], max-depth: [2, 5] */\n var i, key;\n\n if (typeof a !== typeof b) { return false; }\n if (a == null || b == null) { return false; }\n\n if ($objToString(a) !== $objToString(b)) { return false; }\n\n if (isArguments(a) !== isArguments(b)) { return false; }\n\n var aIsArray = isArray(a);\n var bIsArray = isArray(b);\n if (aIsArray !== bIsArray) { return false; }\n\n // TODO: replace when a cross-realm brand check is available\n var aIsError = a instanceof Error;\n var bIsError = b instanceof Error;\n if (aIsError !== bIsError) { return false; }\n if (aIsError || bIsError) {\n if (a.name !== b.name || a.message !== b.message) { return false; }\n }\n\n var aIsRegex = isRegex(a);\n var bIsRegex = isRegex(b);\n if (aIsRegex !== bIsRegex) { return false; }\n if ((aIsRegex || bIsRegex) && (a.source !== b.source || flags(a) !== flags(b))) {\n return false;\n }\n\n var aIsDate = isDate(a);\n var bIsDate = isDate(b);\n if (aIsDate !== bIsDate) { return false; }\n if (aIsDate || bIsDate) { // && would work too, because both are true or both false here\n if ($getTime(a) !== $getTime(b)) { return false; }\n }\n if (opts.strict && gPO && gPO(a) !== gPO(b)) { return false; }\n\n if (whichTypedArray(a) !== whichTypedArray(b)) {\n return false;\n }\n\n var aIsBuffer = isBuffer(a);\n var bIsBuffer = isBuffer(b);\n if (aIsBuffer !== bIsBuffer) { return false; }\n if (aIsBuffer || bIsBuffer) { // && would work too, because both are true or both false here\n if (a.length !== b.length) { return false; }\n for (i = 0; i < a.length; i++) {\n if (a[i] !== b[i]) { return false; }\n }\n return true;\n }\n\n if (typeof a !== typeof b) { return false; }\n\n var ka = objectKeys(a);\n var kb = objectKeys(b);\n // having the same number of owned properties (keys incorporates hasOwnProperty)\n if (ka.length !== kb.length) { return false; }\n\n // the same set of keys (although not necessarily the same order),\n ka.sort();\n kb.sort();\n // ~~~cheap key test\n for (i = ka.length - 1; i >= 0; i--) {\n if (ka[i] != kb[i]) { return false; } // eslint-disable-line eqeqeq\n }\n\n // equivalent values for every corresponding key, and ~~~possibly expensive deep test\n for (i = ka.length - 1; i >= 0; i--) {\n key = ka[i];\n if (!internalDeepEqual(a[key], b[key], opts, channel)) { return false; }\n }\n\n var aCollection = whichCollection(a);\n var bCollection = whichCollection(b);\n if (aCollection !== bCollection) {\n return false;\n }\n if (aCollection === 'Set' || bCollection === 'Set') { // aCollection === bCollection\n return setEquiv(a, b, opts, channel);\n }\n if (aCollection === 'Map') { // aCollection === bCollection\n return mapEquiv(a, b, opts, channel);\n }\n\n return true;\n}\n\nmodule.exports = function deepEqual(a, b, opts) {\n return internalDeepEqual(a, b, opts, getSideChannel());\n};\n","\"use strict\";\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.emptyContext = exports.PathContext = exports.isPathContext = void 0;\nconst federation_internals_1 = require(\"@apollo/federation-internals\");\nconst deep_equal_1 = __importDefault(require(\"deep-equal\"));\nfunction isPathContext(v) {\n return v instanceof PathContext;\n}\nexports.isPathContext = isPathContext;\nfunction addExtractedDirective(operation, directiveName, addTo) {\n const applied = operation.appliedDirectivesOf(directiveName);\n if (applied.length > 0) {\n (0, federation_internals_1.assert)(applied.length === 1, () => `${directiveName} shouldn't be repeated on ${operation}`);\n const value = applied[0].arguments()['if'];\n addTo.push([directiveName, value]);\n }\n}\nclass PathContext {\n constructor(directives) {\n this.directives = directives;\n }\n isEmpty() {\n return this.directives.length === 0;\n }\n size() {\n return this.directives.length;\n }\n withContextOf(operation) {\n if (operation.appliedDirectives.length === 0) {\n return this;\n }\n const newDirectives = [];\n addExtractedDirective(operation, 'skip', newDirectives);\n addExtractedDirective(operation, 'include', newDirectives);\n return newDirectives.length === 0\n ? this\n : new PathContext(newDirectives.concat(this.directives));\n }\n equals(that) {\n return (0, deep_equal_1.default)(this.directives, that.directives);\n }\n toString() {\n return '[' + this.directives.map(([name, cond]) => `@${name}(if: ${cond})`).join(', ') + ']';\n }\n}\nexports.PathContext = PathContext;\nexports.emptyContext = new PathContext([]);\n//# sourceMappingURL=pathContext.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.traversePathTree = exports.isRootPathTree = exports.PathTree = void 0;\nconst federation_internals_1 = require(\"@apollo/federation-internals\");\nconst querygraph_1 = require(\"./querygraph\");\nconst pathContext_1 = require(\"./pathContext\");\nfunction opTriggerEquality(t1, t2) {\n if (t1 === t2) {\n return true;\n }\n if ((0, pathContext_1.isPathContext)(t1)) {\n return (0, pathContext_1.isPathContext)(t2) && t1.equals(t2);\n }\n if ((0, pathContext_1.isPathContext)(t2)) {\n return false;\n }\n return t1.equals(t2);\n}\nfunction findTriggerIdx(triggerEquality, forIndex, trigger) {\n for (let i = 0; i < forIndex.length; i++) {\n if (triggerEquality(forIndex[i][0], trigger)) {\n return i;\n }\n }\n return -1;\n}\nclass PathTree {\n constructor(graph, vertex, triggerEquality, childs) {\n this.graph = graph;\n this.vertex = vertex;\n this.triggerEquality = triggerEquality;\n this.childs = childs;\n }\n static create(graph, root, triggerEquality) {\n return new PathTree(graph, root, triggerEquality, []);\n }\n static createOp(graph, root) {\n return this.create(graph, root, opTriggerEquality);\n }\n static createFromOpPaths(graph, root, paths) {\n (0, federation_internals_1.assert)(paths.length > 0, `Should compute on empty paths`);\n return this.createFromPaths(graph, opTriggerEquality, root, paths.map(p => p[Symbol.iterator]()));\n }\n static createFromPaths(graph, triggerEquality, currentVertex, paths) {\n const maxEdges = graph.outEdges(currentVertex).length;\n const forEdgeIndex = new Array(maxEdges + 1);\n const newVertices = new Array(maxEdges);\n const order = new Array(maxEdges + 1);\n let currentOrder = 0;\n let totalChilds = 0;\n for (const path of paths) {\n const iterResult = path.next();\n if (iterResult.done) {\n continue;\n }\n const [edge, trigger, conditions] = iterResult.value;\n const idx = edge ? edge.index : maxEdges;\n if (edge) {\n newVertices[idx] = edge.tail;\n }\n const forIndex = forEdgeIndex[idx];\n if (forIndex) {\n const triggerIdx = findTriggerIdx(triggerEquality, forIndex, trigger);\n if (triggerIdx < 0) {\n forIndex.push([trigger, conditions, [path]]);\n totalChilds++;\n }\n else {\n const existing = forIndex[triggerIdx];\n const existingCond = existing[1];\n const mergedConditions = existingCond ? (conditions ? existingCond.mergeIfNotEqual(conditions) : existingCond) : conditions;\n const newPaths = existing[2];\n newPaths.push(path);\n forIndex[triggerIdx] = [trigger, mergedConditions, newPaths];\n }\n }\n else {\n order[currentOrder++] = idx;\n forEdgeIndex[idx] = [[trigger, conditions, [path]]];\n totalChilds++;\n }\n }\n const childs = new Array(totalChilds);\n let idx = 0;\n for (let i = 0; i < currentOrder; i++) {\n const edgeIndex = order[i];\n const index = (edgeIndex === maxEdges ? null : edgeIndex);\n const newVertex = index === null ? currentVertex : newVertices[edgeIndex];\n const values = forEdgeIndex[edgeIndex];\n for (const [trigger, conditions, subPaths] of values) {\n childs[idx++] = {\n index,\n trigger,\n conditions,\n tree: this.createFromPaths(graph, triggerEquality, newVertex, subPaths)\n };\n }\n }\n (0, federation_internals_1.assert)(idx === totalChilds, () => `Expected to have ${totalChilds} childs but only ${idx} added`);\n return new PathTree(graph, currentVertex, triggerEquality, childs);\n }\n static mergeAllOpTrees(graph, root, trees) {\n return this.mergeAllTreesInternal(graph, opTriggerEquality, root, trees);\n }\n static mergeAllTreesInternal(graph, triggerEquality, currentVertex, trees) {\n const maxEdges = graph.outEdges(currentVertex).length;\n const forEdgeIndex = new Array(maxEdges + 1);\n const newVertices = new Array(maxEdges);\n const order = new Array(maxEdges + 1);\n let currentOrder = 0;\n let totalChilds = 0;\n for (const tree of trees) {\n for (const child of tree.childs) {\n const idx = child.index === null ? maxEdges : child.index;\n if (!newVertices[idx]) {\n newVertices[idx] = child.tree.vertex;\n }\n const forIndex = forEdgeIndex[idx];\n if (forIndex) {\n const triggerIdx = findTriggerIdx(triggerEquality, forIndex, child.trigger);\n if (triggerIdx < 0) {\n forIndex.push([child.trigger, child.conditions, [child.tree]]);\n totalChilds++;\n }\n else {\n const existing = forIndex[triggerIdx];\n const existingCond = existing[1];\n const mergedConditions = existingCond ? (child.conditions ? existingCond.mergeIfNotEqual(child.conditions) : existingCond) : child.conditions;\n const newTrees = existing[2];\n newTrees.push(child.tree);\n forIndex[triggerIdx] = [child.trigger, mergedConditions, newTrees];\n }\n }\n else {\n order[currentOrder++] = idx;\n forEdgeIndex[idx] = [[child.trigger, child.conditions, [child.tree]]];\n totalChilds++;\n }\n }\n }\n const childs = new Array(totalChilds);\n let idx = 0;\n for (let i = 0; i < currentOrder; i++) {\n const edgeIndex = order[i];\n const index = (edgeIndex === maxEdges ? null : edgeIndex);\n const newVertex = index === null ? currentVertex : newVertices[edgeIndex];\n const values = forEdgeIndex[edgeIndex];\n for (const [trigger, conditions, subTrees] of values) {\n childs[idx++] = {\n index,\n trigger,\n conditions,\n tree: this.mergeAllTreesInternal(graph, triggerEquality, newVertex, subTrees)\n };\n }\n }\n (0, federation_internals_1.assert)(idx === totalChilds, () => `Expected to have ${totalChilds} childs but only ${idx} added`);\n return new PathTree(graph, currentVertex, triggerEquality, childs);\n }\n childCount() {\n return this.childs.length;\n }\n isLeaf() {\n return this.childCount() === 0;\n }\n *childElements(reverseOrder = false) {\n if (reverseOrder) {\n for (let i = this.childs.length - 1; i >= 0; i--) {\n yield this.element(i);\n }\n }\n else {\n for (let i = 0; i < this.childs.length; i++) {\n yield this.element(i);\n }\n }\n }\n element(i) {\n const child = this.childs[i];\n return [\n (child.index === null ? null : this.graph.outEdge(this.vertex, child.index)),\n child.trigger,\n child.conditions,\n child.tree\n ];\n }\n mergeChilds(c1, c2) {\n const cond1 = c1.conditions;\n const cond2 = c2.conditions;\n return {\n index: c1.index,\n trigger: c1.trigger,\n conditions: cond1 ? (cond2 ? cond1.mergeIfNotEqual(cond2) : cond1) : cond2,\n tree: c1.tree.merge(c2.tree)\n };\n }\n mergeIfNotEqual(other) {\n if (this.equalsSameRoot(other)) {\n return this;\n }\n return this.merge(other);\n }\n merge(other) {\n if (this === other) {\n return this;\n }\n (0, federation_internals_1.assert)(other.graph === this.graph, 'Cannot merge path tree build on another graph');\n (0, federation_internals_1.assert)(other.vertex.index === this.vertex.index, () => `Cannot merge path tree rooted at vertex ${other.vertex} into tree rooted at other vertex ${this.vertex}`);\n if (!other.childs.length) {\n return this;\n }\n if (!this.childs.length) {\n return other;\n }\n const mergeIndexes = new Array(other.childs.length);\n let countToAdd = 0;\n for (let i = 0; i < other.childs.length; i++) {\n const otherChild = other.childs[i];\n const idx = this.findIndex(otherChild.trigger, otherChild.index);\n mergeIndexes[i] = idx;\n if (idx < 0) {\n ++countToAdd;\n }\n }\n const thisSize = this.childs.length;\n const newSize = thisSize + countToAdd;\n const newChilds = (0, federation_internals_1.copyWitNewLength)(this.childs, newSize);\n let addIdx = thisSize;\n for (let i = 0; i < other.childs.length; i++) {\n const idx = mergeIndexes[i];\n if (idx < 0) {\n newChilds[addIdx++] = other.childs[i];\n }\n else {\n newChilds[idx] = this.mergeChilds(newChilds[idx], other.childs[i]);\n }\n }\n (0, federation_internals_1.assert)(addIdx === newSize, () => `Expected ${newSize} childs but only got ${addIdx}`);\n return new PathTree(this.graph, this.vertex, this.triggerEquality, newChilds);\n }\n equalsSameRoot(that) {\n if (this === that) {\n return true;\n }\n return (0, federation_internals_1.arrayEquals)(this.childs, that.childs, (c1, c2) => {\n return c1.index === c2.index\n && c1.trigger === c2.trigger\n && (c1.conditions ? (c2.conditions ? c1.conditions.equalsSameRoot(c2.conditions) : false) : !c2.conditions)\n && c1.tree.equalsSameRoot(c2.tree);\n });\n }\n concat(other) {\n (0, federation_internals_1.assert)(other.graph === this.graph, 'Cannot concat path tree build on another graph');\n (0, federation_internals_1.assert)(other.vertex.index === this.vertex.index, () => `Cannot concat path tree rooted at vertex ${other.vertex} into tree rooted at other vertex ${this.vertex}`);\n if (!other.childs.length) {\n return this;\n }\n if (!this.childs.length) {\n return other;\n }\n const newChilds = this.childs.concat(other.childs);\n return new PathTree(this.graph, this.vertex, this.triggerEquality, newChilds);\n }\n mergePath(path) {\n (0, federation_internals_1.assert)(path.graph === this.graph, 'Cannot merge path build on another graph');\n (0, federation_internals_1.assert)(path.root.index === this.vertex.index, () => `Cannot merge path rooted at vertex ${path.root} into tree rooted at other vertex ${this.vertex}`);\n return this.mergePathInternal(path[Symbol.iterator]());\n }\n childsFromPathElements(currentVertex, elements) {\n const iterResult = elements.next();\n if (iterResult.done) {\n return [];\n }\n const [edge, trigger, conditions] = iterResult.value;\n const edgeIndex = (edge ? edge.index : null);\n currentVertex = edge ? edge.tail : currentVertex;\n return [{\n index: edgeIndex,\n trigger: trigger,\n conditions: conditions,\n tree: new PathTree(this.graph, currentVertex, this.triggerEquality, this.childsFromPathElements(currentVertex, elements))\n }];\n }\n mergePathInternal(elements) {\n const iterResult = elements.next();\n if (iterResult.done) {\n return this;\n }\n const [edge, trigger, conditions] = iterResult.value;\n (0, federation_internals_1.assert)(!edge || edge.head.index === this.vertex.index, () => `Next element head of ${edge} is not equal to current tree vertex ${this.vertex}`);\n const edgeIndex = (edge ? edge.index : null);\n const idx = this.findIndex(trigger, edgeIndex);\n if (idx < 0) {\n const currentVertex = edge ? edge.tail : this.vertex;\n return new PathTree(this.graph, this.vertex, this.triggerEquality, this.childs.concat({\n index: edgeIndex,\n trigger: trigger,\n conditions: conditions,\n tree: new PathTree(this.graph, currentVertex, this.triggerEquality, this.childsFromPathElements(currentVertex, elements))\n }));\n }\n else {\n const newChilds = this.childs.concat();\n const existing = newChilds[idx];\n newChilds[idx] = {\n index: existing.index,\n trigger: existing.trigger,\n conditions: conditions ? (existing.conditions ? existing.conditions.merge(conditions) : conditions) : existing.conditions,\n tree: existing.tree.mergePathInternal(elements)\n };\n return new PathTree(this.graph, this.vertex, this.triggerEquality, newChilds);\n }\n }\n findIndex(trigger, edgeIndex) {\n for (let i = 0; i < this.childs.length; i++) {\n const child = this.childs[i];\n if (child.index === edgeIndex && this.triggerEquality(child.trigger, trigger)) {\n return i;\n }\n }\n return -1;\n }\n isAllInSameSubgraph() {\n return this.isAllInSameSubgraphInternal(this.vertex.source);\n }\n isAllInSameSubgraphInternal(target) {\n return this.vertex.source === target\n && this.childs.every(c => c.tree.isAllInSameSubgraphInternal(target));\n }\n toString(indent = \"\", includeConditions = false) {\n return this.toStringInternal(indent, includeConditions);\n }\n toStringInternal(indent, includeConditions) {\n if (this.isLeaf()) {\n return this.vertex.toString();\n }\n return this.vertex + ':\\n' +\n this.childs.map(child => indent\n + ` -> [${child.index}] `\n + (includeConditions && child.conditions ? `!! {\\n${indent + \" \"}${child.conditions.toString(indent + \" \", true)}\\n${indent} } ` : \"\")\n + `${child.trigger} = `\n + child.tree.toStringInternal(indent + \" \", includeConditions)).join('\\n');\n }\n}\nexports.PathTree = PathTree;\nfunction isRootPathTree(tree) {\n return (0, querygraph_1.isRootVertex)(tree.vertex);\n}\nexports.isRootPathTree = isRootPathTree;\nfunction traversePathTree(pathTree, onEdges) {\n for (const [edge, _, conditions, childTree] of pathTree.childElements()) {\n if (edge) {\n onEdges(edge);\n }\n if (conditions) {\n traversePathTree(conditions, onEdges);\n }\n traversePathTree(childTree, onEdges);\n }\n}\nexports.traversePathTree = traversePathTree;\n//# sourceMappingURL=pathTree.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.advanceSimultaneousPathsWithOperation = exports.advanceOptionsToString = exports.simultaneousPathsToString = exports.SimultaneousPathsWithLazyIndirectPaths = exports.getLocallySatisfiableKey = exports.addConditionExclusion = exports.sameExcludedEdges = exports.advancePathWithTransition = exports.isUnadvanceable = exports.Unadvanceables = exports.UnadvanceableReason = exports.unsatisfiedConditionsResolution = exports.noConditionsResolution = exports.UnsatisfiedConditionReason = exports.traversePath = exports.terminateWithNonRequestedTypenameField = exports.isRootPath = exports.GraphPath = void 0;\nconst federation_internals_1 = require(\"@apollo/federation-internals\");\nconst pathTree_1 = require(\"./pathTree\");\nconst querygraph_1 = require(\"./querygraph\");\nconst pathContext_1 = require(\"./pathContext\");\nconst debug = (0, federation_internals_1.newDebugLogger)('path');\nfunction updateRuntimeTypes(currentRuntimeTypes, edge) {\n var _a;\n if (!edge) {\n return currentRuntimeTypes;\n }\n switch (edge.transition.kind) {\n case 'FieldCollection':\n const field = edge.transition.definition;\n if (!(0, federation_internals_1.isCompositeType)((0, federation_internals_1.baseType)(field.type))) {\n return [];\n }\n const newRuntimeTypes = [];\n for (const parentType of currentRuntimeTypes) {\n const fieldType = (_a = parentType.field(field.name)) === null || _a === void 0 ? void 0 : _a.type;\n if (fieldType) {\n for (const type of (0, federation_internals_1.possibleRuntimeTypes)((0, federation_internals_1.baseType)(fieldType))) {\n if (!newRuntimeTypes.includes(type)) {\n newRuntimeTypes.push(type);\n }\n }\n }\n }\n return newRuntimeTypes;\n case 'DownCast':\n const castedType = edge.transition.castedType;\n const castedRuntimeTypes = (0, federation_internals_1.possibleRuntimeTypes)(castedType);\n return currentRuntimeTypes.filter(t => castedRuntimeTypes.includes(t));\n case 'KeyResolution':\n const currentType = edge.tail.type;\n return (0, federation_internals_1.possibleRuntimeTypes)(currentType);\n case 'RootTypeResolution':\n case 'SubgraphEnteringTransition':\n (0, federation_internals_1.assert)((0, federation_internals_1.isObjectType)(edge.tail.type), () => `Query edge should be between object type but got ${edge}`);\n return [edge.tail.type];\n }\n}\nfunction withReplacedLastElement(arr, newLast) {\n (0, federation_internals_1.assert)(arr.length > 0, 'Should not have been called on empty array');\n const newArr = new Array(arr.length);\n for (let i = 0; i < arr.length - 1; i++) {\n newArr[i] = arr[i];\n }\n newArr[arr.length - 1] = newLast;\n return newArr;\n}\nclass GraphPath {\n constructor(graph, root, tail, edgeTriggers, edgeIndexes, edgeConditions, subgraphEnteringEdgeIndex, subgraphEnteringEdge, subgraphEnteringEdgeCost, edgeToTail, runtimeTypesOfTail, runtimeTypesBeforeTailIfLastIsCast) {\n this.graph = graph;\n this.root = root;\n this.tail = tail;\n this.edgeTriggers = edgeTriggers;\n this.edgeIndexes = edgeIndexes;\n this.edgeConditions = edgeConditions;\n this.subgraphEnteringEdgeIndex = subgraphEnteringEdgeIndex;\n this.subgraphEnteringEdge = subgraphEnteringEdge;\n this.subgraphEnteringEdgeCost = subgraphEnteringEdgeCost;\n this.edgeToTail = edgeToTail;\n this.runtimeTypesOfTail = runtimeTypesOfTail;\n this.runtimeTypesBeforeTailIfLastIsCast = runtimeTypesBeforeTailIfLastIsCast;\n }\n static create(graph, root) {\n const runtimeTypes = (0, querygraph_1.isFederatedGraphRootType)(root.type) ? [] : (0, federation_internals_1.possibleRuntimeTypes)(root.type);\n return new GraphPath(graph, root, root, [], [], [], -1, undefined, -1, undefined, runtimeTypes);\n }\n static fromGraphRoot(graph, rootKind) {\n const root = graph.root(rootKind);\n return root ? this.create(graph, root) : undefined;\n }\n get size() {\n return this.edgeIndexes.length;\n }\n subgraphJumps() {\n let jumps = 0;\n let v = this.root;\n for (let i = 0; i < this.size; i++) {\n const edge = this.edgeAt(i, v);\n if (!edge) {\n continue;\n }\n if (edge.transition.kind === 'KeyResolution' || edge.transition.kind === 'RootTypeResolution') {\n ++jumps;\n }\n v = edge.tail;\n }\n return jumps;\n }\n [Symbol.iterator]() {\n const path = this;\n return {\n currentIndex: 0,\n currentVertex: this.root,\n next() {\n if (this.currentIndex >= path.size) {\n return { done: true, value: undefined };\n }\n const idx = this.currentIndex++;\n const edge = path.edgeAt(idx, this.currentVertex);\n if (edge) {\n this.currentVertex = edge.tail;\n }\n return { done: false, value: [edge, path.edgeTriggers[idx], path.edgeConditions[idx]] };\n }\n };\n }\n lastEdge() {\n return this.edgeToTail;\n }\n lastTrigger() {\n return this.edgeTriggers[this.size - 1];\n }\n tailPossibleRuntimeTypes() {\n return this.runtimeTypesOfTail;\n }\n add(trigger, edge, conditionsResolution) {\n var _a, _b, _c;\n (0, federation_internals_1.assert)(!edge || this.tail.index === edge.head.index, () => `Cannot add edge ${edge} to path ending at ${this.tail}`);\n (0, federation_internals_1.assert)(conditionsResolution.satisfied, 'Should add to a path if the conditions cannot be satisfied');\n (0, federation_internals_1.assert)(!edge || edge.conditions || !conditionsResolution.pathTree, () => `Shouldn't have conditions paths (got ${conditionsResolution.pathTree}) for edge without conditions (edge: ${edge})`);\n if (edge && edge.transition.kind === 'DownCast' && this.edgeToTail) {\n const previousOperation = this.lastTrigger();\n if (previousOperation instanceof federation_internals_1.FragmentElement && previousOperation.appliedDirectives.length === 0) {\n const runtimeTypesWithoutPreviousCast = updateRuntimeTypes(this.runtimeTypesBeforeTailIfLastIsCast, edge);\n if (runtimeTypesWithoutPreviousCast.length > 0\n && runtimeTypesWithoutPreviousCast.every(t => this.runtimeTypesOfTail.includes(t))) {\n const updatedEdge = this.graph.outEdges(this.edgeToTail.head).find(e => e.tail.type === edge.tail.type);\n if (updatedEdge) {\n debug.log(() => `Previous cast ${previousOperation} is made obsolete by new cast ${trigger}, removing from path.`);\n return new GraphPath(this.graph, this.root, updatedEdge.tail, withReplacedLastElement(this.edgeTriggers, trigger), withReplacedLastElement(this.edgeIndexes, updatedEdge.index), withReplacedLastElement(this.edgeConditions, (_a = conditionsResolution.pathTree) !== null && _a !== void 0 ? _a : null), this.subgraphEnteringEdgeIndex, this.subgraphEnteringEdge, this.subgraphEnteringEdgeCost, updatedEdge, runtimeTypesWithoutPreviousCast, this.runtimeTypesBeforeTailIfLastIsCast);\n }\n }\n }\n }\n let subgraphEnteringEdgeIndex = this.subgraphEnteringEdgeIndex;\n let subgraphEnteringEdge = this.subgraphEnteringEdge;\n let subgraphEnteringEdgeCost = this.subgraphEnteringEdgeCost;\n if (edge && edge.transition.kind === 'KeyResolution') {\n subgraphEnteringEdgeIndex = this.size;\n subgraphEnteringEdge = edge;\n subgraphEnteringEdgeCost = conditionsResolution.cost;\n }\n return new GraphPath(this.graph, this.root, edge ? edge.tail : this.tail, this.edgeTriggers.concat(trigger), this.edgeIndexes.concat((edge ? edge.index : null)), this.edgeConditions.concat((_b = conditionsResolution.pathTree) !== null && _b !== void 0 ? _b : null), subgraphEnteringEdgeIndex, subgraphEnteringEdge, subgraphEnteringEdgeCost, edge, updateRuntimeTypes(this.runtimeTypesOfTail, edge), ((_c = edge === null || edge === void 0 ? void 0 : edge.transition) === null || _c === void 0 ? void 0 : _c.kind) === 'DownCast' ? this.runtimeTypesOfTail : undefined);\n }\n concat(tailPath) {\n var _a, _b;\n (0, federation_internals_1.assert)(this.tail.index === tailPath.root.index, () => `Cannot concat ${tailPath} after ${this}`);\n if (tailPath.size === 0) {\n return this;\n }\n let prevRuntimeTypes = this.runtimeTypesBeforeTailIfLastIsCast;\n let runtimeTypes = this.runtimeTypesOfTail;\n for (const [edge] of tailPath) {\n prevRuntimeTypes = runtimeTypes;\n runtimeTypes = updateRuntimeTypes(runtimeTypes, edge);\n }\n return new GraphPath(this.graph, this.root, tailPath.tail, this.edgeTriggers.concat(tailPath.edgeTriggers), this.edgeIndexes.concat(tailPath.edgeIndexes), this.edgeConditions.concat(tailPath.edgeConditions), tailPath.subgraphEnteringEdge ? tailPath.subgraphEnteringEdgeIndex : this.subgraphEnteringEdgeIndex, tailPath.subgraphEnteringEdge ? tailPath.subgraphEnteringEdge : this.subgraphEnteringEdge, tailPath.subgraphEnteringEdge ? tailPath.subgraphEnteringEdgeCost : this.subgraphEnteringEdgeCost, tailPath.edgeToTail, runtimeTypes, ((_b = (_a = tailPath.edgeToTail) === null || _a === void 0 ? void 0 : _a.transition) === null || _b === void 0 ? void 0 : _b.kind) === 'DownCast' ? prevRuntimeTypes : undefined);\n }\n checkDirectPathFomPreviousSubgraphTo(typeName, triggerToEdge) {\n if (this.subgraphEnteringEdgeIndex < 0) {\n return undefined;\n }\n (0, federation_internals_1.assert)(this.subgraphEnteringEdge, 'Should have an entering edge since the index is >= 0');\n let prevSubgraphVertex = this.subgraphEnteringEdge.head;\n for (let i = this.subgraphEnteringEdgeIndex + 1; i < this.size; i++) {\n const triggerToMatch = this.edgeTriggers[i];\n const prevSubgraphMatchingEdge = triggerToEdge(this.graph, prevSubgraphVertex, triggerToMatch);\n if (prevSubgraphMatchingEdge === null) {\n continue;\n }\n if (!prevSubgraphMatchingEdge || prevSubgraphMatchingEdge.conditions) {\n return undefined;\n }\n prevSubgraphVertex = prevSubgraphMatchingEdge.tail;\n }\n return prevSubgraphVertex.type.name === typeName ? prevSubgraphVertex : undefined;\n }\n nextEdges() {\n return this.graph.outEdges(this.tail);\n }\n isTerminal() {\n return this.graph.isTerminal(this.tail);\n }\n isRootPath() {\n return (0, querygraph_1.isRootVertex)(this.root);\n }\n mapMainPath(mapper) {\n const result = new Array(this.size);\n let v = this.root;\n for (let i = 0; i < this.size; i++) {\n const edge = this.edgeAt(i, v);\n result[i] = mapper(edge, i);\n if (edge) {\n v = edge.tail;\n }\n }\n return result;\n }\n edgeAt(index, v) {\n const edgeIdx = this.edgeIndexes[index];\n return (edgeIdx !== null ? this.graph.outEdge(v, edgeIdx) : null);\n }\n reduceMainPath(reducer, initialValue) {\n let value = initialValue;\n let v = this.root;\n for (let i = 0; i < this.size; i++) {\n const edge = this.edgeAt(i, v);\n value = reducer(value, edge, i);\n if (edge) {\n v = edge.tail;\n }\n }\n return value;\n }\n hasJustCycled() {\n if (this.root.index == this.tail.index) {\n return true;\n }\n let v = this.root;\n for (let i = 0; i < this.size - 1; i++) {\n const edge = this.edgeAt(i, v);\n if (!edge) {\n continue;\n }\n v = edge.tail;\n if (v.index == this.tail.index) {\n return true;\n }\n }\n return false;\n }\n hasAnyEdgeConditions() {\n return this.edgeConditions.some(c => c !== null);\n }\n isOnTopLevelQueryRoot() {\n if (!(0, querygraph_1.isRootVertex)(this.root)) {\n return false;\n }\n let vertex = this.root;\n for (let i = 0; i < this.size; i++) {\n const edge = this.edgeAt(i, vertex);\n if (!edge) {\n continue;\n }\n if (edge.transition.kind === 'FieldCollection' || edge.tail.type.name !== \"Query\") {\n return false;\n }\n vertex = edge.tail;\n }\n return true;\n }\n truncateTrailingDowncasts() {\n let lastNonDowncastIdx = -1;\n let v = this.root;\n let lastNonDowncastVertex = v;\n let lastNonDowncastEdge;\n let runtimeTypes = (0, querygraph_1.isFederatedGraphRootType)(this.root.type) ? [] : (0, federation_internals_1.possibleRuntimeTypes)(this.root.type);\n let runtimeTypesAtLastNonDowncastEdge = runtimeTypes;\n for (let i = 0; i < this.size; i++) {\n const edge = this.edgeAt(i, v);\n runtimeTypes = updateRuntimeTypes(runtimeTypes, edge);\n if (edge) {\n v = edge.tail;\n if (edge.transition.kind !== 'DownCast') {\n lastNonDowncastIdx = i;\n lastNonDowncastVertex = v;\n lastNonDowncastEdge = edge;\n runtimeTypesAtLastNonDowncastEdge = runtimeTypes;\n }\n }\n }\n if (lastNonDowncastIdx < 0 || lastNonDowncastIdx === this.size - 1) {\n return this;\n }\n const newSize = lastNonDowncastIdx + 1;\n return new GraphPath(this.graph, this.root, lastNonDowncastVertex, this.edgeTriggers.slice(0, newSize), this.edgeIndexes.slice(0, newSize), this.edgeConditions.slice(0, newSize), this.subgraphEnteringEdgeIndex, this.subgraphEnteringEdge, this.subgraphEnteringEdgeCost, lastNonDowncastEdge, runtimeTypesAtLastNonDowncastEdge);\n }\n toString() {\n const isRoot = (0, querygraph_1.isRootVertex)(this.root);\n if (isRoot && this.size === 0) {\n return '_';\n }\n const pathStr = this.mapMainPath((edge, idx) => {\n if (edge) {\n if (isRoot && idx == 0) {\n return edge.tail.toString();\n }\n const label = edge.label();\n return ` -${label === \"\" ? \"\" : '-[' + label + ']-'}-> ${edge.tail}`;\n }\n return ` (${this.edgeTriggers[idx]}) `;\n }).join('');\n return `${isRoot ? '' : this.root}${pathStr} (types: [${this.runtimeTypesOfTail.join(', ')}])`;\n }\n}\nexports.GraphPath = GraphPath;\nfunction isRootPath(path) {\n return (0, querygraph_1.isRootVertex)(path.root);\n}\nexports.isRootPath = isRootPath;\nfunction terminateWithNonRequestedTypenameField(path) {\n path = path.truncateTrailingDowncasts();\n if (!(0, federation_internals_1.isCompositeType)(path.tail.type)) {\n return path;\n }\n const typenameField = new federation_internals_1.Field(path.tail.type.typenameField());\n const edge = edgeForField(path.graph, path.tail, typenameField);\n (0, federation_internals_1.assert)(edge, () => `We should have an edge from ${path.tail} for ${typenameField}`);\n return path.add(typenameField, edge, exports.noConditionsResolution);\n}\nexports.terminateWithNonRequestedTypenameField = terminateWithNonRequestedTypenameField;\nfunction traversePath(path, onEdges) {\n for (const [edge, _, conditions] of path) {\n if (conditions) {\n (0, pathTree_1.traversePathTree)(conditions, onEdges);\n }\n onEdges(edge);\n }\n}\nexports.traversePath = traversePath;\nvar UnsatisfiedConditionReason;\n(function (UnsatisfiedConditionReason) {\n UnsatisfiedConditionReason[UnsatisfiedConditionReason[\"NO_POST_REQUIRE_KEY\"] = 0] = \"NO_POST_REQUIRE_KEY\";\n})(UnsatisfiedConditionReason = exports.UnsatisfiedConditionReason || (exports.UnsatisfiedConditionReason = {}));\nexports.noConditionsResolution = { satisfied: true, cost: 0 };\nexports.unsatisfiedConditionsResolution = { satisfied: false, cost: -1 };\nvar UnadvanceableReason;\n(function (UnadvanceableReason) {\n UnadvanceableReason[UnadvanceableReason[\"UNSATISFIABLE_KEY_CONDITION\"] = 0] = \"UNSATISFIABLE_KEY_CONDITION\";\n UnadvanceableReason[UnadvanceableReason[\"UNSATISFIABLE_REQUIRES_CONDITION\"] = 1] = \"UNSATISFIABLE_REQUIRES_CONDITION\";\n UnadvanceableReason[UnadvanceableReason[\"NO_MATCHING_TRANSITION\"] = 2] = \"NO_MATCHING_TRANSITION\";\n UnadvanceableReason[UnadvanceableReason[\"UNREACHABLE_TYPE\"] = 3] = \"UNREACHABLE_TYPE\";\n UnadvanceableReason[UnadvanceableReason[\"IGNORED_INDIRECT_PATH\"] = 4] = \"IGNORED_INDIRECT_PATH\";\n})(UnadvanceableReason = exports.UnadvanceableReason || (exports.UnadvanceableReason = {}));\nclass Unadvanceables {\n constructor(reasons) {\n this.reasons = reasons;\n }\n}\nexports.Unadvanceables = Unadvanceables;\nfunction isUnadvanceable(result) {\n return result instanceof Unadvanceables;\n}\nexports.isUnadvanceable = isUnadvanceable;\nfunction createPathTransitionToEdgeFct(supergraph) {\n return (graph, vertex, transition) => {\n for (const edge of graph.outEdges(vertex)) {\n if (transition.collectOperationElements && edge.matchesSupergraphTransition(supergraph, transition)) {\n return edge;\n }\n }\n return undefined;\n };\n}\nfunction advancePathWithTransition(supergraph, subgraphPath, transition, targetType, conditionResolver) {\n if (transition.kind === 'DownCast') {\n const supergraphRuntimeTypes = (0, federation_internals_1.possibleRuntimeTypes)(targetType);\n const subgraphRuntimeTypes = subgraphPath.tailPossibleRuntimeTypes();\n const intersection = supergraphRuntimeTypes.filter(t1 => subgraphRuntimeTypes.some(t2 => t1.name === t2.name)).map(t => t.name);\n if (intersection.length === 0) {\n debug.log(() => `No intersection between casted type ${targetType} and the possible types in this subgraph`);\n return [];\n }\n }\n debug.group(() => `Trying to advance ${subgraphPath} for ${transition}`);\n debug.group('Direct options:');\n const directOptions = advancePathWithDirectTransition(supergraph, subgraphPath, transition, conditionResolver);\n let options;\n const deadEnds = [];\n if (isUnadvanceable(directOptions)) {\n options = [];\n debug.groupEnd(() => 'No direct options');\n deadEnds.push(...directOptions.reasons);\n }\n else {\n debug.groupEnd(() => advanceOptionsToString(directOptions));\n if (directOptions.length > 0 && (0, federation_internals_1.isLeafType)(targetType)) {\n debug.groupEnd(() => `reached leaf type ${targetType} so not trying indirect paths`);\n return directOptions;\n }\n options = directOptions;\n }\n debug.group(`Computing indirect paths:`);\n const pathTransitionToEdge = createPathTransitionToEdgeFct(supergraph);\n const pathsWithNonCollecting = advancePathWithNonCollectingAndTypePreservingTransitions(subgraphPath, pathContext_1.emptyContext, conditionResolver, [], [], t => t, pathTransitionToEdge);\n if (pathsWithNonCollecting.paths.length > 0) {\n debug.groupEnd(() => `${pathsWithNonCollecting.paths.length} indirect paths`);\n debug.group('Validating indirect options:');\n for (const nonCollectingPath of pathsWithNonCollecting.paths) {\n debug.group(() => `For indirect path ${nonCollectingPath}:`);\n const pathsWithTransition = advancePathWithDirectTransition(supergraph, nonCollectingPath, transition, conditionResolver);\n if (isUnadvanceable(pathsWithTransition)) {\n debug.groupEnd(() => `Cannot be advanced with ${transition}`);\n deadEnds.push(...pathsWithTransition.reasons);\n }\n else {\n debug.groupEnd(() => `Adding valid option: ${pathsWithTransition}`);\n options = options.concat(pathsWithTransition);\n }\n }\n debug.groupEnd();\n }\n else {\n debug.groupEnd('no indirect paths');\n }\n debug.groupEnd(() => options.length > 0 ? advanceOptionsToString(options) : `Cannot advance ${transition} for this path`);\n if (options.length > 0) {\n return options;\n }\n const allDeadEnds = deadEnds.concat(pathsWithNonCollecting.deadEnds.reasons);\n if (transition.kind === 'FieldCollection') {\n const typeName = transition.definition.parent.name;\n const fieldName = transition.definition.name;\n const subgraphsWithDeadEnd = new Set(allDeadEnds.map(e => e.destSubgraph));\n for (const [subgraph, schema] of subgraphPath.graph.sources.entries()) {\n if (subgraphsWithDeadEnd.has(subgraph)) {\n continue;\n }\n const type = schema.type(typeName);\n if (type && (0, federation_internals_1.isCompositeType)(type) && type.field(fieldName)) {\n (0, federation_internals_1.assert)(!type.hasAppliedDirective(federation_internals_1.keyDirectiveName), () => `Expected type ${type} in ${subgraph} to not have keys`);\n allDeadEnds.push({\n sourceSubgraph: subgraphPath.tail.source,\n destSubgraph: subgraph,\n reason: UnadvanceableReason.UNREACHABLE_TYPE,\n details: `cannot move to subgraph \"${subgraph}\", which has field \"${transition.definition.coordinate}\", because type \"${typeName}\" has no @key defined in subgraph \"${subgraph}\"`\n });\n }\n }\n }\n return new Unadvanceables(allDeadEnds);\n}\nexports.advancePathWithTransition = advancePathWithTransition;\nfunction isEdgeExcluded(edge, excluded) {\n return excluded.some(([vIdx, eIdx]) => edge.head.index === vIdx && edge.index === eIdx);\n}\nfunction sameExcludedEdges(ex1, ex2) {\n if (ex1 === ex2) {\n return true;\n }\n if (ex1.length !== ex2.length) {\n return false;\n }\n for (let i = 0; i < ex1.length; ++i) {\n if (ex1[i][0] !== ex2[i][0] || ex1[i][1] !== ex2[i][1]) {\n return false;\n }\n }\n return true;\n}\nexports.sameExcludedEdges = sameExcludedEdges;\nfunction addEdgeExclusion(excluded, newExclusion) {\n return excluded.concat([[newExclusion.head.index, newExclusion.index]]);\n}\nfunction isConditionExcluded(condition, excluded) {\n if (!condition) {\n return false;\n }\n return excluded.find(e => condition.equals(e)) !== undefined;\n}\nfunction addConditionExclusion(excluded, newExclusion) {\n return newExclusion ? excluded.concat(newExclusion) : excluded;\n}\nexports.addConditionExclusion = addConditionExclusion;\nfunction popMin(paths) {\n let minIdx = 0;\n let minSize = paths[0].size;\n for (let i = 1; i < paths.length; i++) {\n if (paths[i].size < minSize) {\n minSize = paths[i].size;\n minIdx = i;\n }\n }\n const min = paths[minIdx];\n paths.splice(minIdx, 1);\n return min;\n}\nfunction advancePathWithNonCollectingAndTypePreservingTransitions(path, context, conditionResolver, excludedEdges, excludedConditions, convertTransitionWithCondition, triggerToEdge) {\n var _a, _b;\n const isTopLevelPath = path.isOnTopLevelQueryRoot();\n const typeName = (0, querygraph_1.isFederatedGraphRootType)(path.tail.type) ? undefined : path.tail.type.name;\n const originalSource = path.tail.source;\n const bestPathBySource = new Map();\n const deadEnds = [];\n const toTry = [path];\n while (toTry.length > 0) {\n const toAdvance = popMin(toTry);\n const nextEdges = toAdvance.nextEdges().filter(e => !e.transition.collectOperationElements);\n if (nextEdges.length === 0) {\n debug.log(`Nothing to try for ${toAdvance}: it has no non-collecting outbound edges`);\n continue;\n }\n debug.group(() => `From ${toAdvance}:`);\n for (const edge of nextEdges) {\n debug.group(() => `Testing edge ${edge}`);\n if (isEdgeExcluded(edge, excludedEdges)) {\n debug.groupEnd(`Ignored: edge is excluded`);\n continue;\n }\n excludedEdges = addEdgeExclusion(excludedEdges, edge);\n if (isConditionExcluded(edge.conditions, excludedConditions)) {\n debug.groupEnd(`Ignored: edge condition is excluded`);\n continue;\n }\n const target = edge.tail;\n if (target.source === originalSource) {\n debug.groupEnd('Ignored: edge get us back to our original source');\n continue;\n }\n if (typeName && typeName != target.type.name) {\n debug.groupEnd('Ignored: edge does not get to our target type');\n continue;\n }\n if (isTopLevelPath && edge.transition.kind === 'RootTypeResolution') {\n debug.groupEnd(`Ignored: edge is a top-level \"RootTypeResolution\"`);\n continue;\n }\n const prevForSource = bestPathBySource.get(target.source);\n if (prevForSource === null) {\n debug.groupEnd(() => `Ignored: we've shown before than going to ${target.source} is not productive`);\n continue;\n }\n if (prevForSource\n && (prevForSource[0].size < toAdvance.size + 1\n || (prevForSource[0].size == toAdvance.size + 1 && prevForSource[1] <= 1))) {\n debug.groupEnd(`Ignored: a better path to the same subgraph already added`);\n continue;\n }\n debug.group(() => `Validating conditions ${edge.conditions}`);\n const conditionResolution = canSatisfyConditions(toAdvance, edge, conditionResolver, context, excludedEdges, excludedConditions);\n if (conditionResolution.satisfied) {\n debug.groupEnd('Condition satisfied');\n if (prevForSource && prevForSource[0].size === toAdvance.size + 1 && prevForSource[1] <= conditionResolution.cost) {\n debug.groupEnd('Ignored: a better path to the same subgraph already added');\n continue;\n }\n const subgraphEnteringEdge = toAdvance.subgraphEnteringEdge;\n if (subgraphEnteringEdge && edge.transition.kind === 'KeyResolution' && subgraphEnteringEdge.tail.type.name !== typeName) {\n const prevSubgraphVertex = toAdvance.checkDirectPathFomPreviousSubgraphTo(edge.tail.type.name, triggerToEdge);\n const backToPreviousSubgraph = subgraphEnteringEdge.head.source === edge.tail.source;\n const maxCost = toAdvance.subgraphEnteringEdgeCost + (backToPreviousSubgraph ? 0 : conditionResolution.cost);\n if (prevSubgraphVertex\n && (backToPreviousSubgraph\n || hasValidDirectKeyEdge(toAdvance.graph, prevSubgraphVertex, edge.tail.source, conditionResolver, maxCost) != undefined)) {\n debug.groupEnd(() => `Ignored: edge correspond to a detour by subgraph ${edge.head.source} from subgraph ${subgraphEnteringEdge.head.source}: `\n + `we have a direct path from ${subgraphEnteringEdge.head.type} to ${edge.tail.type} in ${subgraphEnteringEdge.head.source}`\n + (backToPreviousSubgraph ? '.' : ` and can move to ${edge.tail.source} from there`));\n bestPathBySource.set(edge.tail.source, null);\n deadEnds.push({\n sourceSubgraph: toAdvance.tail.source,\n destSubgraph: edge.tail.source,\n reason: UnadvanceableReason.IGNORED_INDIRECT_PATH,\n details: `ignoring moving to subgraph \"${edge.tail.source}\" using @key(fields: \"${(_a = edge.conditions) === null || _a === void 0 ? void 0 : _a.toString(true, false)}\") of \"${edge.head.type}\" because there is a more direct path in ${edge.tail.source} that avoids ${toAdvance.tail.source} altogether.\"`\n });\n continue;\n }\n }\n const updatedPath = toAdvance.add(convertTransitionWithCondition(edge.transition, context), edge, conditionResolution);\n debug.log(() => `Using edge, advance path: ${updatedPath}`);\n bestPathBySource.set(target.source, [updatedPath, conditionResolution.cost]);\n if (edge.transition.kind === 'KeyResolution') {\n toTry.push(updatedPath);\n }\n }\n else {\n debug.groupEnd('Condition unsatisfiable');\n deadEnds.push({\n sourceSubgraph: toAdvance.tail.source,\n destSubgraph: edge.tail.source,\n reason: UnadvanceableReason.UNSATISFIABLE_KEY_CONDITION,\n details: `cannot move to subgraph \"${edge.tail.source}\" using @key(fields: \"${(_b = edge.conditions) === null || _b === void 0 ? void 0 : _b.toString(true, false)}\") of \"${edge.head.type}\", the key field(s) cannot be resolved from subgraph \"${toAdvance.tail.source}\"`\n });\n }\n debug.groupEnd();\n }\n debug.groupEnd();\n }\n return {\n paths: (0, federation_internals_1.mapValues)(bestPathBySource).filter(p => p !== null).map(b => b[0]),\n deadEnds: new Unadvanceables(deadEnds)\n };\n}\nfunction hasValidDirectKeyEdge(graph, from, to, conditionResolver, maxCost) {\n for (const edge of graph.outEdges(from)) {\n if (edge.transition.kind !== 'KeyResolution' || edge.tail.source !== to) {\n continue;\n }\n const resolution = conditionResolver(edge, pathContext_1.emptyContext, [], []);\n if (!resolution.satisfied) {\n continue;\n }\n if (resolution.cost <= maxCost) {\n return true;\n }\n }\n return false;\n}\nfunction advancePathWithDirectTransition(supergraph, path, transition, conditionResolver) {\n const options = [];\n const deadEnds = [];\n for (const edge of path.nextEdges()) {\n if (!transition.collectOperationElements || !edge.matchesSupergraphTransition(supergraph, transition)) {\n continue;\n }\n const conditionResolution = canSatisfyConditions(path, edge, conditionResolver, pathContext_1.emptyContext, [], []);\n if (conditionResolution.satisfied) {\n options.push(path.add(transition, edge, conditionResolution));\n }\n else {\n (0, federation_internals_1.assert)(transition.kind === 'FieldCollection', () => `Shouldn't have conditions on direct transition ${transition}`);\n const field = transition.definition;\n const parentTypeInSubgraph = path.graph.sources.get(edge.head.source).type(field.parent.name);\n const details = conditionResolution.unsatisfiedConditionReason === UnsatisfiedConditionReason.NO_POST_REQUIRE_KEY\n ? `@require condition on field \"${field.coordinate}\" can be satisfied but missing usable key on \"${parentTypeInSubgraph}\" in subgraph \"${edge.head.source}\" to resume query`\n : `cannot satisfy @require conditions on field \"${field.coordinate}\"${warnOnKeyFieldsMarkedExternal(parentTypeInSubgraph)}`;\n deadEnds.push({\n sourceSubgraph: edge.head.source,\n destSubgraph: edge.head.source,\n reason: UnadvanceableReason.UNSATISFIABLE_REQUIRES_CONDITION,\n details\n });\n }\n }\n if (options.length > 0) {\n return options;\n }\n else if (deadEnds.length > 0) {\n return new Unadvanceables(deadEnds);\n }\n else {\n let details;\n const subgraph = path.tail.source;\n if (transition.kind === 'FieldCollection') {\n const schema = path.graph.sources.get(subgraph);\n const typeInSubgraph = schema.type(path.tail.type.name);\n const fieldInSubgraph = typeInSubgraph && (0, federation_internals_1.isCompositeType)(typeInSubgraph)\n ? typeInSubgraph.field(transition.definition.name)\n : undefined;\n if (fieldInSubgraph) {\n (0, federation_internals_1.assert)(fieldInSubgraph.hasAppliedDirective('external'), () => `${fieldInSubgraph.coordinate} in ${subgraph} is not external but there is no corresponding edge (edges from ${path} = [${path.nextEdges().join(', ')}])`);\n details = `field \"${transition.definition.coordinate}\" is not resolvable because marked @external`;\n }\n else {\n details = `cannot find field \"${transition.definition.coordinate}\"`;\n }\n }\n else {\n (0, federation_internals_1.assert)(transition.kind === 'DownCast', () => `Unhandled direct transition ${transition} of kind ${transition.kind}`);\n details = `cannot find type \"${transition.castedType}\"`;\n }\n return new Unadvanceables([{\n sourceSubgraph: subgraph,\n destSubgraph: subgraph,\n reason: UnadvanceableReason.NO_MATCHING_TRANSITION,\n details\n }]);\n }\n}\nfunction warnOnKeyFieldsMarkedExternal(type) {\n const keyDirective = federation_internals_1.federationBuiltIns.keyDirective(type.schema());\n const keys = type.appliedDirectivesOf(keyDirective);\n if (keys.length === 0) {\n return \"\";\n }\n const keyFieldMarkedExternal = [];\n for (const key of keys) {\n const fieldSet = (0, federation_internals_1.parseFieldSetArgument)(type, key);\n for (const selection of fieldSet.selections()) {\n if (selection.kind === 'FieldSelection' && selection.field.definition.hasAppliedDirective(federation_internals_1.externalDirectiveName)) {\n const fieldName = selection.field.name;\n if (!keyFieldMarkedExternal.includes(fieldName)) {\n keyFieldMarkedExternal.push(fieldName);\n }\n }\n }\n }\n if (keyFieldMarkedExternal.length === 0) {\n return \"\";\n }\n const printedFields = keyFieldMarkedExternal.map(f => `\"${f}\"`).join(', ');\n const fieldWithPlural = keyFieldMarkedExternal.length === 1 ? 'field' : 'fields';\n return ` (please ensure that this is not due to key ${fieldWithPlural} ${printedFields} being accidentally marked @external)`;\n}\nfunction getLocallySatisfiableKey(graph, typeVertex) {\n const type = typeVertex.type;\n const externalTester = graph.externalTester(typeVertex.source);\n const keyDirective = federation_internals_1.federationBuiltIns.keyDirective(type.schema());\n for (const key of type.appliedDirectivesOf(keyDirective)) {\n const selection = (0, federation_internals_1.parseFieldSetArgument)(type, key);\n if (!externalTester.selectsAnyExternalField(selection)) {\n return selection;\n }\n }\n return undefined;\n}\nexports.getLocallySatisfiableKey = getLocallySatisfiableKey;\nfunction canSatisfyConditions(path, edge, conditionResolver, context, excludedEdges, excludedConditions) {\n const conditions = edge.conditions;\n if (!conditions) {\n return exports.noConditionsResolution;\n }\n const resolution = conditionResolver(edge, context, excludedEdges, excludedConditions);\n if (!resolution.satisfied) {\n return exports.unsatisfiedConditionsResolution;\n }\n const pathTree = resolution.pathTree;\n const lastEdge = path.lastEdge();\n if (edge.transition.kind === 'FieldCollection'\n && lastEdge !== null\n && (lastEdge === null || lastEdge === void 0 ? void 0 : lastEdge.transition.kind) !== 'KeyResolution'\n && (!pathTree || pathTree.isAllInSameSubgraph())) {\n const postRequireKeyCondition = getLocallySatisfiableKey(path.graph, edge.head);\n if (!postRequireKeyCondition) {\n return { ...exports.unsatisfiedConditionsResolution, unsatisfiedConditionReason: UnsatisfiedConditionReason.NO_POST_REQUIRE_KEY };\n }\n }\n return resolution;\n}\nfunction isTerminalOperation(operation) {\n return operation.kind === 'Field' && (0, federation_internals_1.isLeafType)((0, federation_internals_1.baseType)(operation.definition.type));\n}\nclass SimultaneousPathsWithLazyIndirectPaths {\n constructor(paths, context, conditionResolver, excludedNonCollectingEdges = [], excludedConditionsOnNonCollectingEdges = []) {\n this.paths = paths;\n this.context = context;\n this.conditionResolver = conditionResolver;\n this.excludedNonCollectingEdges = excludedNonCollectingEdges;\n this.excludedConditionsOnNonCollectingEdges = excludedConditionsOnNonCollectingEdges;\n this.lazilyComputedIndirectPaths = new Array(paths.length);\n }\n indirectOptions(updatedContext, pathIdx) {\n if (updatedContext !== this.context) {\n return this.computeIndirectPaths(pathIdx);\n }\n if (!this.lazilyComputedIndirectPaths[pathIdx]) {\n this.lazilyComputedIndirectPaths[pathIdx] = this.computeIndirectPaths(pathIdx);\n }\n return this.lazilyComputedIndirectPaths[pathIdx];\n }\n computeIndirectPaths(idx) {\n return advancePathWithNonCollectingAndTypePreservingTransitions(this.paths[idx], this.context, this.conditionResolver, this.excludedNonCollectingEdges, this.excludedConditionsOnNonCollectingEdges, (_t, context) => context, opPathTriggerToEdge);\n }\n toString() {\n return simultaneousPathsToString(this.paths);\n }\n}\nexports.SimultaneousPathsWithLazyIndirectPaths = SimultaneousPathsWithLazyIndirectPaths;\nfunction simultaneousPathsToString(simultaneousPaths, indentOnNewLine = \"\") {\n const paths = Array.isArray(simultaneousPaths) ? simultaneousPaths : simultaneousPaths.paths;\n if (paths.length === 0) {\n return '';\n }\n if (paths.length === 1) {\n return paths[0].toString();\n }\n return `{\\n${indentOnNewLine} ` + paths.join(`\\n${indentOnNewLine} `) + `\\n${indentOnNewLine}}`;\n}\nexports.simultaneousPathsToString = simultaneousPathsToString;\nfunction advanceOptionsToString(options) {\n if (!options) {\n return '';\n }\n if (options.length === 0) {\n return '';\n }\n if (options.length === 1) {\n return '[' + options[0] + ']';\n }\n return '[\\n ' + options.map(opt => Array.isArray(opt) ? simultaneousPathsToString(opt, \" \") : opt.toString()).join('\\n ') + '\\n]';\n}\nexports.advanceOptionsToString = advanceOptionsToString;\nfunction advanceSimultaneousPathsWithOperation(supergraphSchema, subgraphSimultaneousPaths, operation) {\n debug.group(() => `Trying to advance ${simultaneousPathsToString(subgraphSimultaneousPaths)} for ${operation}`);\n const updatedContext = subgraphSimultaneousPaths.context.withContextOf(operation);\n const optionsForEachPath = [];\n for (const [i, path] of subgraphSimultaneousPaths.paths.entries()) {\n debug.group(() => `Computing options for ${path}`);\n debug.group(() => `Direct options`);\n let options = advanceWithOperation(supergraphSchema, path, operation, updatedContext, subgraphSimultaneousPaths.conditionResolver);\n debug.groupEnd(() => advanceOptionsToString(options));\n if (options && (options.length === 0 || isTerminalOperation(operation) || operation.kind === 'FragmentElement')) {\n debug.groupEnd(() => `Final options for ${path}: ${advanceOptionsToString(options)}`);\n if (options.length > 0) {\n optionsForEachPath.push(options);\n }\n continue;\n }\n options = options !== null && options !== void 0 ? options : [];\n debug.group(`Computing indirect paths:`);\n const pathsWithNonCollecting = subgraphSimultaneousPaths.indirectOptions(updatedContext, i);\n debug.groupEnd(() => pathsWithNonCollecting.paths.length == 0 ? `no indirect paths` : `${pathsWithNonCollecting.paths.length} indirect paths`);\n if (pathsWithNonCollecting.paths.length > 0) {\n debug.group('Validating indirect options:');\n for (const pathWithNonCollecting of pathsWithNonCollecting.paths) {\n debug.group(() => `For indirect path ${pathWithNonCollecting}:`);\n const pathWithOperation = advanceWithOperation(supergraphSchema, pathWithNonCollecting, operation, updatedContext, subgraphSimultaneousPaths.conditionResolver);\n if (!pathWithOperation) {\n debug.groupEnd(() => `Ignoring: cannot be advanced with ${operation}`);\n continue;\n }\n debug.groupEnd(() => `Adding valid option: ${pathWithOperation}`);\n (0, federation_internals_1.assert)(pathWithOperation.length > 0, () => `Unexpected empty options after non-collecting path ${pathWithNonCollecting} for ${operation}`);\n options = options.concat(pathWithOperation);\n }\n debug.groupEnd();\n }\n if (options.length === 0) {\n debug.groupEnd();\n debug.groupEnd(() => `No valid options for ${operation}, aborting operation ${operation}`);\n return undefined;\n }\n else {\n debug.groupEnd(() => advanceOptionsToString(options));\n optionsForEachPath.push(options);\n }\n }\n const allOptions = flatCartesianProduct(optionsForEachPath);\n debug.groupEnd(() => advanceOptionsToString(allOptions));\n return createLazyOptions(allOptions, subgraphSimultaneousPaths, updatedContext);\n}\nexports.advanceSimultaneousPathsWithOperation = advanceSimultaneousPathsWithOperation;\nfunction createLazyOptions(options, origin, context) {\n return options.map(option => new SimultaneousPathsWithLazyIndirectPaths(option, context, origin.conditionResolver, origin.excludedNonCollectingEdges, origin.excludedConditionsOnNonCollectingEdges));\n}\nfunction opPathTriggerToEdge(graph, vertex, trigger) {\n if (trigger instanceof pathContext_1.PathContext) {\n return undefined;\n }\n if (trigger.kind === 'Field') {\n return edgeForField(graph, vertex, trigger);\n }\n else {\n return trigger.typeCondition ? edgeForTypeCast(graph, vertex, trigger.typeCondition.name) : null;\n }\n}\nfunction flatCartesianProduct(arr) {\n const size = arr.length;\n if (size === 0) {\n return [];\n }\n const eltIndexes = new Array(size);\n let totalCombinations = 1;\n for (let i = 0; i < size; ++i) {\n const eltSize = arr[i].length;\n if (!eltSize) {\n totalCombinations = 0;\n break;\n }\n eltIndexes[i] = 0;\n totalCombinations *= eltSize;\n }\n const product = new Array(totalCombinations);\n for (let i = 0; i < totalCombinations; ++i) {\n let itemSize = 0;\n for (let j = 0; j < size; ++j) {\n itemSize += arr[j][eltIndexes[j]].length;\n }\n const item = new Array(itemSize);\n let k = 0;\n for (let j = 0; j < size; ++j) {\n for (const v of arr[j][eltIndexes[j]]) {\n item[k++] = v;\n }\n }\n product[i] = item;\n for (let idx = 0; idx < size; ++idx) {\n if (eltIndexes[idx] == arr[idx].length - 1) {\n eltIndexes[idx] = 0;\n }\n else {\n eltIndexes[idx] += 1;\n break;\n }\n }\n }\n return product;\n}\nfunction anImplementationHasAProvides(fieldName, itf) {\n for (const implem of itf.possibleRuntimeTypes()) {\n const field = implem.field(fieldName);\n if (field && field.hasAppliedDirective(federation_internals_1.providesDirectiveName)) {\n return true;\n }\n }\n return false;\n}\nfunction isProvidedEdge(edge) {\n return edge.transition.kind === 'FieldCollection' && edge.transition.isPartOfProvide;\n}\nfunction advanceWithOperation(supergraphSchema, path, operation, context, conditionResolver) {\n debug.group(() => `Trying to advance ${path} directly with ${operation}`);\n const currentType = path.tail.type;\n if ((0, querygraph_1.isFederatedGraphRootType)(currentType)) {\n debug.groupEnd('Cannot advance federated graph root with direct operations');\n return undefined;\n }\n if (operation.kind === 'Field') {\n const field = operation.definition;\n switch (currentType.kind) {\n case 'ObjectType':\n const edge = nextEdgeForField(path, operation);\n if (!edge) {\n debug.groupEnd(() => `No edge for field ${field} on object type ${currentType}`);\n return undefined;\n }\n const fieldOptions = addFieldEdge(path, operation, edge, conditionResolver, context);\n debug.groupEnd(() => fieldOptions\n ? `Collected field ${field} on object type ${currentType}`\n : `Cannot satisfy @requires on field ${field} for object type ${currentType}`);\n return fieldOptions;\n case 'InterfaceType':\n const itfEdge = nextEdgeForField(path, operation);\n let itfOptions = undefined;\n if (itfEdge) {\n itfOptions = addFieldEdge(path, operation, itfEdge, conditionResolver, context);\n (0, federation_internals_1.assert)(itfOptions, () => `Interface edge ${itfEdge} shouldn't have conditions`);\n if (field.name === federation_internals_1.typenameFieldName || (!isProvidedEdge(itfEdge) && !anImplementationHasAProvides(field.name, currentType))) {\n debug.groupEnd(() => `Collecting field ${field} on interface ${currentType} without type-exploding`);\n return itfOptions;\n }\n else {\n debug.log(() => `Collecting field ${field} on interface ${currentType} as 1st option`);\n }\n }\n const implementations = path.tailPossibleRuntimeTypes();\n debug.log(() => itfOptions\n ? `No direct edge: type exploding interface ${currentType} into possible runtime types [${implementations.join(', ')}]`\n : `Type exploding interface ${currentType} into possible runtime types [${implementations.join(', ')}] as 2nd option`);\n const optionsByImplems = [];\n for (const implemType of implementations) {\n const castOp = new federation_internals_1.FragmentElement(currentType, implemType.name);\n debug.group(() => `Handling implementation ${implemType}`);\n const implemOptions = advanceSimultaneousPathsWithOperation(supergraphSchema, new SimultaneousPathsWithLazyIndirectPaths([path], context, conditionResolver), castOp);\n if (!implemOptions) {\n debug.groupEnd();\n debug.groupEnd(() => `Cannot collect field ${field} from ${implemType}: stopping with options ${advanceOptionsToString(itfOptions)}`);\n return itfOptions;\n }\n if (implemOptions.length === 0) {\n debug.groupEnd(() => `Cannot ever get ${implemType} from this branch, ignoring it`);\n continue;\n }\n let withField = [];\n debug.log(() => `Trying to collect ${field} from options ${advanceOptionsToString(implemOptions)}`);\n for (const optPaths of implemOptions) {\n debug.group(() => `For ${simultaneousPathsToString(optPaths)}`);\n const withFieldOptions = advanceSimultaneousPathsWithOperation(supergraphSchema, optPaths, operation);\n if (!withFieldOptions) {\n debug.groupEnd(() => `Cannot collect ${field}`);\n continue;\n }\n (0, federation_internals_1.assert)(withFieldOptions.length > 0, () => `Unexpected unsatisfiable path after ${optPaths} for ${operation}`);\n debug.groupEnd(() => `Collected field ${field}: adding ${advanceOptionsToString(withFieldOptions)}`);\n withField = withField.concat(withFieldOptions.map(opt => opt.paths));\n }\n if (withField.length === 0) {\n debug.groupEnd();\n debug.groupEnd(() => `Cannot collect field ${field} from ${implemType}: stopping with options ${advanceOptionsToString(itfOptions)}`);\n return itfOptions;\n }\n debug.groupEnd(() => `Collected field ${field} from ${implemType}`);\n optionsByImplems.push(withField);\n }\n const implemOptions = flatCartesianProduct(optionsByImplems);\n const allOptions = itfOptions ? itfOptions.concat(implemOptions) : implemOptions;\n debug.groupEnd(() => `With type-exploded options: ${advanceOptionsToString(allOptions)}`);\n return allOptions;\n case 'UnionType':\n (0, federation_internals_1.assert)(field.name === federation_internals_1.typenameFieldName, () => `Invalid field selection ${operation} for union type ${currentType}`);\n const typenameEdge = nextEdgeForField(path, operation);\n (0, federation_internals_1.assert)(typenameEdge, `Should always have an edge for __typename edge on an union`);\n debug.groupEnd(() => `Trivial collection of __typename for union ${currentType}`);\n return addFieldEdge(path, operation, typenameEdge, conditionResolver, context);\n default:\n (0, federation_internals_1.assert)(false, `Unexpected ${currentType.kind} type ${currentType} from ${path.tail} given operation ${operation}`);\n }\n }\n else {\n (0, federation_internals_1.assert)(operation.kind === 'FragmentElement', () => \"Unhandled operation kind: \" + operation.kind);\n if (!operation.typeCondition || currentType.name === operation.typeCondition.name) {\n debug.groupEnd(() => `No edge to take for condition ${operation} from current type ${currentType}`);\n const updatedPath = operation.appliedDirectives.length > 0\n ? path.add(operation, null, exports.noConditionsResolution)\n : path;\n return [[updatedPath]];\n }\n const typeName = operation.typeCondition.name;\n switch (currentType.kind) {\n case 'InterfaceType':\n case 'UnionType':\n const edge = nextEdgeForTypeCast(path, typeName);\n if (edge) {\n (0, federation_internals_1.assert)(!edge.conditions, \"TypeCast collecting edges shouldn't have conditions\");\n debug.groupEnd(() => `Using type-casting edge for ${typeName} from current type ${currentType}`);\n return [[path.add(operation, edge, exports.noConditionsResolution)]];\n }\n const parentTypes = path.tailPossibleRuntimeTypes();\n const castedTypes = (0, federation_internals_1.possibleRuntimeTypes)(supergraphSchema.type(typeName));\n const intersection = parentTypes.filter(t1 => castedTypes.some(t2 => t1.name === t2.name)).map(t => t.name);\n debug.log(() => `Trying to type-explode into intersection between ${currentType} and ${typeName} = [${intersection}]`);\n const optionsByImplems = [];\n for (const tName of intersection) {\n debug.group(() => `Trying ${tName}`);\n const castOp = new federation_internals_1.FragmentElement(currentType, tName);\n const implemOptions = advanceSimultaneousPathsWithOperation(supergraphSchema, new SimultaneousPathsWithLazyIndirectPaths([path], context, conditionResolver), castOp);\n if (!implemOptions) {\n debug.groupEnd();\n debug.groupEnd(() => `Cannot advance into ${tName} from ${currentType}: no options for ${operation}.`);\n return undefined;\n }\n if (implemOptions.length === 0) {\n debug.groupEnd(() => `Cannot ever get ${tName} from this branch, ignoring it`);\n continue;\n }\n debug.groupEnd(() => `Advanced into ${tName} from ${currentType}: ${advanceOptionsToString(implemOptions)}`);\n optionsByImplems.push(implemOptions.map(opt => opt.paths));\n }\n const allCastOptions = flatCartesianProduct(optionsByImplems);\n debug.groupEnd(() => `Type-exploded options: ${advanceOptionsToString(allCastOptions)}`);\n return allCastOptions;\n case 'ObjectType':\n const conditionType = supergraphSchema.type(typeName);\n if ((0, federation_internals_1.isAbstractType)(conditionType) && (0, federation_internals_1.possibleRuntimeTypes)(conditionType).some(t => t.name == currentType.name)) {\n debug.groupEnd(() => `${typeName} is a super-type of current type ${currentType}: no edge to take`);\n const updatedPath = operation.appliedDirectives.length > 0\n ? path.add(operation, null, exports.noConditionsResolution)\n : path;\n return [[updatedPath]];\n }\n debug.groupEnd(() => `Cannot ever get ${typeName} from current type ${currentType}: returning empty branch`);\n return [];\n default:\n (0, federation_internals_1.assert)(false, `Unexpected ${currentType.kind} type ${currentType} from ${path.tail} given operation ${operation}`);\n }\n }\n}\nfunction addFieldEdge(path, fieldOperation, edge, conditionResolver, context) {\n const conditionResolution = canSatisfyConditions(path, edge, conditionResolver, context, [], []);\n return conditionResolution.satisfied ? [[path.add(fieldOperation, edge, conditionResolution)]] : undefined;\n}\nfunction nextEdgeForField(path, field) {\n return edgeForField(path.graph, path.tail, field);\n}\nfunction edgeForField(graph, vertex, field) {\n const candidates = graph.outEdges(vertex).filter(e => e.transition.kind === 'FieldCollection' && field.selects(e.transition.definition, true));\n (0, federation_internals_1.assert)(candidates.length <= 1, () => `Vertex ${vertex} has multiple edges matching ${field} (${candidates})`);\n return candidates.length === 0 ? undefined : candidates[0];\n}\nfunction nextEdgeForTypeCast(path, typeName) {\n return edgeForTypeCast(path.graph, path.tail, typeName);\n}\nfunction edgeForTypeCast(graph, vertex, typeName) {\n const candidates = graph.outEdges(vertex).filter(e => e.transition.kind === 'DownCast' && typeName === e.transition.castedType.name);\n (0, federation_internals_1.assert)(candidates.length <= 1, () => `Vertex ${vertex} has multiple edges matching ${typeName} (${candidates})`);\n return candidates.length === 0 ? undefined : candidates[0];\n}\n//# sourceMappingURL=graphPath.js.map","\"use strict\";var t;Object.defineProperty(exports,\"__esModule\",{value:!0}),exports.attribute=void 0,(t=exports.attribute||(exports.attribute={})).Damping=\"Damping\",t.K=\"K\",t.URL=\"URL\",t._background=\"_background\",t.area=\"area\",t.arrowhead=\"arrowhead\",t.arrowsize=\"arrowsize\",t.arrowtail=\"arrowtail\",t.bb=\"bb\",t.bgcolor=\"bgcolor\",t.center=\"center\",t.charset=\"charset\",t.clusterrank=\"clusterrank\",t.color=\"color\",t.colorscheme=\"colorscheme\",t.comment=\"comment\",t.compound=\"compound\",t.concentrate=\"concentrate\",t.constraint=\"constraint\",t.decorate=\"decorate\",t.defaultdist=\"defaultdist\",t.dim=\"dim\",t.dimen=\"dimen\",t.dir=\"dir\",t.diredgeconstraints=\"diredgeconstraints\",t.distortion=\"distortion\",t.dpi=\"dpi\",t.edgeURL=\"edgeURL\",t.edgehref=\"edgehref\",t.edgetarget=\"edgetarget\",t.edgetooltip=\"edgetooltip\",t.epsilon=\"epsilon\",t.esep=\"esep\",t.fillcolor=\"fillcolor\",t.fixedsize=\"fixedsize\",t.fontcolor=\"fontcolor\",t.fontname=\"fontname\",t.fontnames=\"fontnames\",t.fontpath=\"fontpath\",t.fontsize=\"fontsize\",t.forcelabels=\"forcelabels\",t.gradientangle=\"gradientangle\",t.group=\"group\",t.headURL=\"headURL\",t.head_lp=\"head_lp\",t.headclip=\"headclip\",t.headhref=\"headhref\",t.headlabel=\"headlabel\",t.headport=\"headport\",t.headtarget=\"headtarget\",t.headtooltip=\"headtooltip\",t.height=\"height\",t.href=\"href\",t.id=\"id\",t.image=\"image\",t.imagepath=\"imagepath\",t.imagepos=\"imagepos\",t.imagescale=\"imagescale\",t.inputscale=\"inputscale\",t.label=\"label\",t.labelURL=\"labelURL\",t.label_scheme=\"label_scheme\",t.labelangle=\"labelangle\",t.labeldistance=\"labeldistance\",t.labelfloat=\"labelfloat\",t.labelfontcolor=\"labelfontcolor\",t.labelfontname=\"labelfontname\",t.labelfontsize=\"labelfontsize\",t.labelhref=\"labelhref\",t.labeljust=\"labeljust\",t.labelloc=\"labelloc\",t.labeltarget=\"labeltarget\",t.labeltooltip=\"labeltooltip\",t.landscape=\"landscape\",t.layer=\"layer\",t.layerlistsep=\"layerlistsep\",t.layers=\"layers\",t.layerselect=\"layerselect\",t.layersep=\"layersep\",t.layout=\"layout\",t.len=\"len\",t.levels=\"levels\",t.levelsgap=\"levelsgap\",t.lhead=\"lhead\",t.lheight=\"lheight\",t.lp=\"lp\",t.ltail=\"ltail\",t.lwidth=\"lwidth\",t.margin=\"margin\",t.maxiter=\"maxiter\",t.mclimit=\"mclimit\",t.mindist=\"mindist\",t.minlen=\"minlen\",t.mode=\"mode\",t.model=\"model\",t.mosek=\"mosek\",t.newrank=\"newrank\",t.nodesep=\"nodesep\",t.nojustify=\"nojustify\",t.normalize=\"normalize\",t.notranslate=\"notranslate\",t.nslimit=\"nslimit\",t.nslimit1=\"nslimit1\",t.ordering=\"ordering\",t.orientation=\"orientation\",t.outputorder=\"outputorder\",t.overlap=\"overlap\",t.overlap_scaling=\"overlap_scaling\",t.overlap_shrink=\"overlap_shrink\",t.pack=\"pack\",t.packmode=\"packmode\",t.pad=\"pad\",t.page=\"page\",t.pagedir=\"pagedir\",t.pencolor=\"pencolor\",t.penwidth=\"penwidth\",t.peripheries=\"peripheries\",t.pin=\"pin\",t.pos=\"pos\",t.quadtree=\"quadtree\",t.quantum=\"quantum\",t.rank=\"rank\",t.rankdir=\"rankdir\",t.ranksep=\"ranksep\",t.ratio=\"ratio\",t.rects=\"rects\",t.regular=\"regular\",t.remincross=\"remincross\",t.repulsiveforce=\"repulsiveforce\",t.resolution=\"resolution\",t.root=\"root\",t.rotate=\"rotate\",t.rotation=\"rotation\",t.samehead=\"samehead\",t.sametail=\"sametail\",t.samplepoints=\"samplepoints\",t.scale=\"scale\",t.searchsize=\"searchsize\",t.sep=\"sep\",t.shape=\"shape\",t.shapefile=\"shapefile\",t.showboxes=\"showboxes\",t.sides=\"sides\",t.size=\"size\",t.skew=\"skew\",t.smoothing=\"smoothing\",t.sortv=\"sortv\",t.splines=\"splines\",t.start=\"start\",t.style=\"style\",t.stylesheet=\"stylesheet\",t.tailURL=\"tailURL\",t.tail_lp=\"tail_lp\",t.tailclip=\"tailclip\",t.tailhref=\"tailhref\",t.taillabel=\"taillabel\",t.tailport=\"tailport\",t.tailtarget=\"tailtarget\",t.tailtooltip=\"tailtooltip\",t.target=\"target\",t.tooltip=\"tooltip\",t.truecolor=\"truecolor\",t.vertices=\"vertices\",t.viewport=\"viewport\",t.voro_margin=\"voro_margin\",t.weight=\"weight\",t.width=\"width\",t.xdotversion=\"xdotversion\",t.xlabel=\"xlabel\",t.xlp=\"xlp\",t.z=\"z\",exports.Compass=void 0,function(t){t.n=\"n\",t.ne=\"ne\",t.e=\"e\",t.se=\"se\",t.s=\"s\",t.sw=\"sw\",t.w=\"w\",t.nw=\"nw\",t.c=\"c\";var e=[t.n,t.ne,t.e,t.se,t.s,t.sw,t.w,t.nw,t.c];t.is=function(t){return e.includes(t)}}(exports.Compass||(exports.Compass={}));\n/*! *****************************************************************************\nCopyright (c) Microsoft Corporation.\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n***************************************************************************** */\nvar e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r])})(t,r)};function r(t,r){if(\"function\"!=typeof r&&null!==r)throw new TypeError(\"Class extends value \"+String(r)+\" is not a constructor or null\");function n(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(n.prototype=r.prototype,new n)}var n=function(){return(n=Object.assign||function(t){for(var e,r=1,n=arguments.length;r$/ms.test(i))?o=i:n=!0}return e||r?o:n?O(o.replace(/\\n/g,\"\\\\n\").replace(/\"/g,'\\\\\"')):o}function G(t){return function(e){var r=e[0],n=e[1];return N(r,\" = \",T(n),t)}}var K=G(\";\"),B=G(\",\");function W(t){return 0===t.size?\"\":R(\"[\",L(R.apply(void 0,o([U(t.comment)],t.values.map(B)))),\"]\")}function $(t){if(D(t))return T(t.id);if(p(t)){var e=t.id,r=t.port,n=t.compass;return C(T(e),void 0!==r?T(r):void 0,void 0!==n?T(n):void 0)}}var F=function(){function t(){}return t.prototype.renderNode=function(t){var e=U(t.comment),r=$(t),n=t.attributes.size>0?S(W(t.attributes)):void 0,o=N(r,n,\";\");return R(e,o)},t.prototype.renderEdge=function(t){var e,r=U(t.comment),n=(e=q(this.root)?\" -- \":\" -> \",t.targets.map((function(t){return c(t)?$(t):(e=t,\"{\"+A.apply(void 0,e.map($))+\"}\");var e})).filter((function(t){return\"string\"==typeof t})).join(e)),o=t.attributes.size>0?S(W(t.attributes)):void 0,i=N(n,o,\";\");return R(r,i)},t.prototype.renderCluster=function(t){var e=M(t),r=void 0!==t.id?T(t.id):void 0,n=t.values.map(K),i=Object.entries(t.attributes).filter((function(t){return t[1].size>0})).map((function(t){var e=t[0],r=t[1];return N(e,\" \",W(r),\";\")})),a=t.nodes.map(this.renderNode.bind(this)),s=t.subgraphs.map(this.renderSubgraph.bind(this)),u=t.edges.map(this.renderEdge.bind(this)),l=R.apply(void 0,o(o(o(o(o([],n),i),a),s),u));return R(A(e,r,\"{\"),l.length>0?L(l):void 0,\"}\")},t.prototype.renderRootCluster=function(t){var e=U(t.comment),r=this.renderCluster(t);return R(e,A(t.strict?\"strict\":void 0,r))},t.prototype.renderSubgraph=function(t){var e=U(t.comment),r=this.renderCluster(t);return R(e,r)},t.prototype.render=function(t){return D(t)?this.renderNode(t):function(t){return t instanceof h}(t)?this.renderEdge(t):function(t){return t instanceof u}(t)?W(t):P(t)?this.renderSubgraph(t):function(t){return t instanceof y}(t)?(this.root=t,this.renderRootCluster(t)):T(t)},t}();exports.Attributes=u,exports.AttributesBase=s,exports.Cluster=g,exports.Digraph=m,exports.DotObject=a,exports.Edge=h,exports.Graph=v,exports.GraphvizObject=i,exports.Node=l,exports.RootCluster=y,exports.Subgraph=b,exports.digraph=j,exports.graph=x,exports.strict=_,exports.toDot=function(t){return(new F).render(t)};\n","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.pickHighlights = exports.groupToDot = exports.toDot = void 0;\nconst querygraph_1 = require(\"./querygraph\");\nconst ts_graphviz_1 = require(\"ts-graphviz\");\nconst graphPath_1 = require(\"./graphPath\");\nfunction setDefaultGraphAttributes(_) {\n}\nfunction toDot(graph, config) {\n const vizGraph = (0, ts_graphviz_1.digraph)(graph.name);\n setDefaultGraphAttributes(vizGraph);\n addToVizGraphAndHighlight(graph, vizGraph, config);\n return (0, ts_graphviz_1.toDot)(vizGraph);\n}\nexports.toDot = toDot;\nfunction groupToDot(name, graphs, configs = new Map()) {\n const vizGraph = (0, ts_graphviz_1.digraph)(name);\n setDefaultGraphAttributes(vizGraph);\n for (const [group, graph] of graphs.entries()) {\n const cluster = vizGraph.createSubgraph(`cluster_${group}`, {\n [ts_graphviz_1.attribute.label]: `${group}`,\n [ts_graphviz_1.attribute.style]: \"filled\",\n [ts_graphviz_1.attribute.color]: \"grey95\"\n });\n addToVizGraphAndHighlight(graph, cluster, configs.get(group));\n }\n return (0, ts_graphviz_1.toDot)(vizGraph);\n}\nexports.groupToDot = groupToDot;\nfunction addToVizGraphAndHighlight(graph, vizGraph, config) {\n const state = addToVizGraph(graph, vizGraph, config === null || config === void 0 ? void 0 : config.noTerminal);\n highlightPaths(state, config === null || config === void 0 ? void 0 : config.highlightedPaths);\n}\nconst colors = [\n 'blue',\n 'darkgreen',\n 'red',\n 'yellow',\n 'orange',\n 'lightseagreen'\n];\nfunction pickHighlights(paths, excluded = []) {\n const usableColors = colors.filter(c => !excluded.includes(c));\n return paths.map((path, i) => { return { path, color: usableColors[i % usableColors.length] }; });\n}\nexports.pickHighlights = pickHighlights;\nfunction addToVizGraph(graph, vizGraph, noTerminal = false) {\n const vizSubGraphs = new Map();\n for (const source of graph.sources.keys()) {\n if (source != graph.name) {\n vizSubGraphs.set(source, vizGraph.createSubgraph(`cluster_${source}`, {\n [ts_graphviz_1.attribute.label]: `Subgraph \"${source}\"`,\n [ts_graphviz_1.attribute.color]: \"black\",\n [ts_graphviz_1.attribute.style]: \"\"\n }));\n }\n }\n const getNode = function (vertex) {\n const existingNode = state.getVertexState(vertex);\n if (existingNode) {\n return existingNode;\n }\n let newNode;\n if (vertex.source == graph.name) {\n newNode = vizGraph.createNode(vertex.type.name);\n }\n else {\n const vizSubGraph = vizSubGraphs.get(vertex.source);\n newNode = vizSubGraph.createNode(`${vertex.type.name}@${vertex.source}`);\n }\n state.setVertexState(vertex, newNode);\n return newNode;\n };\n const pickGraphForEdge = function (head, tail) {\n if (head.source == tail.source && head.source != graph.name) {\n return vizSubGraphs.get(head.source);\n }\n return vizGraph;\n };\n const state = new querygraph_1.QueryGraphState(graph);\n const onEdge = function (edge) {\n const head = edge.head;\n const tail = edge.tail;\n if (noTerminal && graph.isTerminal(tail)) {\n return false;\n }\n const headNode = getNode(head);\n const tailNode = getNode(tail);\n const attributes = {\n [ts_graphviz_1.attribute.label]: edge.label(),\n };\n state.setEdgeState(edge, pickGraphForEdge(head, tail).createEdge([headNode, tailNode], attributes));\n return true;\n };\n (0, querygraph_1.simpleTraversal)(graph, _ => undefined, onEdge);\n return state;\n}\nfunction highlightPaths(state, toHighlights) {\n toHighlights === null || toHighlights === void 0 ? void 0 : toHighlights.forEach(h => highlightPath(state, h));\n}\nfunction highlightPath(state, toHighlight) {\n (0, graphPath_1.traversePath)(toHighlight.path, e => {\n var _a, _b, _c;\n for (const vAttrs of [(_a = state.getVertexState(e.head)) === null || _a === void 0 ? void 0 : _a.attributes, (_b = state.getVertexState(e.tail)) === null || _b === void 0 ? void 0 : _b.attributes]) {\n vAttrs === null || vAttrs === void 0 ? void 0 : vAttrs.set(ts_graphviz_1.attribute.color, toHighlight.color);\n vAttrs === null || vAttrs === void 0 ? void 0 : vAttrs.set(ts_graphviz_1.attribute.fontcolor, toHighlight.color);\n }\n const eAttrs = (_c = state.getEdgeState(e)) === null || _c === void 0 ? void 0 : _c.attributes;\n eAttrs === null || eAttrs === void 0 ? void 0 : eAttrs.set(ts_graphviz_1.attribute.color, toHighlight.color);\n eAttrs === null || eAttrs === void 0 ? void 0 : eAttrs.set(ts_graphviz_1.attribute.fontcolor, toHighlight.color);\n });\n}\n//# sourceMappingURL=graphviz.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.cachingConditionResolver = void 0;\nconst federation_internals_1 = require(\"@apollo/federation-internals\");\nconst graphPath_1 = require(\"./graphPath\");\nconst querygraph_1 = require(\"./querygraph\");\nfunction cachingConditionResolver(graph, resolver) {\n const cache = new querygraph_1.QueryGraphState(graph);\n return (edge, context, excludedEdges, excludedConditions) => {\n (0, federation_internals_1.assert)(edge.conditions, 'Should not have been called for edge without conditions');\n if (!context.isEmpty() || excludedConditions.length > 0) {\n return resolver(edge, context, excludedEdges, excludedConditions);\n }\n const cachedResolutionAndExcludedEdges = cache.getEdgeState(edge);\n if (cachedResolutionAndExcludedEdges) {\n const [cachedResolution, forExcludedEdges] = cachedResolutionAndExcludedEdges;\n return (0, graphPath_1.sameExcludedEdges)(forExcludedEdges, excludedEdges)\n ? cachedResolution\n : resolver(edge, context, excludedEdges, excludedConditions);\n }\n else {\n const resolution = resolver(edge, context, excludedEdges, excludedConditions);\n cache.setEdgeState(edge, [resolution, excludedEdges]);\n return resolution;\n }\n };\n}\nexports.cachingConditionResolver = cachingConditionResolver;\n//# sourceMappingURL=conditionsCaching.js.map","\"use strict\";\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\n__exportStar(require(\"./querygraph\"), exports);\n__exportStar(require(\"./graphPath\"), exports);\n__exportStar(require(\"./pathTree\"), exports);\n__exportStar(require(\"./graphviz\"), exports);\n__exportStar(require(\"./structuralSubtyping\"), exports);\n__exportStar(require(\"./transition\"), exports);\n__exportStar(require(\"./pathContext\"), exports);\n__exportStar(require(\"./conditionsCaching\"), exports);\n//# sourceMappingURL=index.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.computeQueryPlan = exports.MAX_COMPUTED_PLANS = void 0;\nconst federation_internals_1 = require(\"@apollo/federation-internals\");\nconst query_graphs_1 = require(\"@apollo/query-graphs\");\nconst graphql_1 = require(\"graphql\");\nconst QueryPlan_1 = require(\"./QueryPlan\");\nconst debug = (0, federation_internals_1.newDebugLogger)('plan');\nexports.MAX_COMPUTED_PLANS = 10000;\nfunction mapOptionsToSelections(selectionSet, options) {\n return selectionSet.selections(true).map(node => [node, options]);\n}\nclass QueryPlanningTaversal {\n constructor(supergraphSchema, subgraphs, selectionSet, variableDefinitions, startVertex, rootKind, costFunction, initialContext, excludedEdges = [], excludedConditions = []) {\n this.supergraphSchema = supergraphSchema;\n this.subgraphs = subgraphs;\n this.variableDefinitions = variableDefinitions;\n this.startVertex = startVertex;\n this.rootKind = rootKind;\n this.costFunction = costFunction;\n this.closedBranches = [];\n this.isTopLevel = (0, query_graphs_1.isRootVertex)(startVertex);\n this.conditionResolver = (0, query_graphs_1.cachingConditionResolver)(subgraphs, (edge, context, excludedEdges, excludedConditions) => this.resolveConditionPlan(edge, context, excludedEdges, excludedConditions));\n const initialPath = query_graphs_1.GraphPath.create(subgraphs, startVertex);\n const initialOptions = [new query_graphs_1.SimultaneousPathsWithLazyIndirectPaths([initialPath], initialContext, this.conditionResolver, excludedEdges, excludedConditions)];\n this.stack = mapOptionsToSelections(selectionSet, initialOptions);\n }\n debugStack() {\n if (this.isTopLevel && debug.enabled) {\n debug.group('Query planning open branches:');\n for (const [selection, options] of this.stack) {\n debug.groupedValues(options, opt => `${(0, query_graphs_1.simultaneousPathsToString)(opt)}`, `${selection}:`);\n }\n debug.groupEnd();\n }\n }\n findBestPlan() {\n while (this.stack.length > 0) {\n this.debugStack();\n const [selection, options] = this.stack.pop();\n this.handleOpenBranch(selection, options);\n }\n this.computeBestPlanFromClosedBranches();\n return this.bestPlan;\n }\n handleOpenBranch(selection, options) {\n const operation = selection.element();\n let newOptions = [];\n for (const option of options) {\n const followupForOption = (0, query_graphs_1.advanceSimultaneousPathsWithOperation)(this.supergraphSchema, option, operation);\n if (!followupForOption) {\n continue;\n }\n if (followupForOption.length === 0) {\n if (operation.kind === 'FragmentElement') {\n this.closedBranches.push([option.paths.map(p => (0, query_graphs_1.terminateWithNonRequestedTypenameField)(p))]);\n }\n return;\n }\n newOptions = newOptions.concat(followupForOption);\n }\n if (newOptions.length === 0) {\n if (this.isTopLevel) {\n debug.log(`No valid options to advance ${selection} from ${(0, query_graphs_1.advanceOptionsToString)(options)}`);\n throw new Error(`Was not able to find any options for ${selection}: This shouldn't have happened.`);\n }\n else {\n this.stack.splice(0, this.stack.length);\n this.closedBranches.splice(0, this.closedBranches.length);\n return;\n }\n }\n if (selection.selectionSet) {\n for (const branch of mapOptionsToSelections(selection.selectionSet, newOptions)) {\n this.stack.push(branch);\n }\n }\n else {\n const updated = this.maybeEliminateStrictlyMoreCostlyPaths(newOptions);\n this.closedBranches.push(updated);\n }\n }\n maybeEliminateStrictlyMoreCostlyPaths(options) {\n if (options.length === 1) {\n return [options[0].paths];\n }\n const singlePathOptions = options.filter(opt => opt.paths.length === 1);\n if (singlePathOptions.length === 0) {\n return options.map(opt => opt.paths);\n }\n let minJumps = Number.MAX_SAFE_INTEGER;\n let withMinJumps = [];\n for (const option of singlePathOptions) {\n const jumps = option.paths[0].subgraphJumps();\n if (jumps < minJumps) {\n minJumps = jumps;\n withMinJumps = [option.paths];\n }\n else if (jumps === minJumps) {\n withMinJumps.push(option.paths);\n }\n }\n for (const option of singlePathOptions.filter(opt => opt.paths.length > 1)) {\n const jumps = option.paths.reduce((acc, p) => Math.min(acc, p.subgraphJumps()), Number.MAX_SAFE_INTEGER);\n if (jumps <= minJumps) {\n withMinJumps.push(option.paths);\n }\n }\n return withMinJumps;\n }\n newDependencyGraph() {\n return FetchDependencyGraph.create(this.subgraphs);\n }\n reorderFirstBranch() {\n const firstBranch = this.closedBranches[0];\n let i = 1;\n while (i < this.closedBranches.length && this.closedBranches[i].length > firstBranch.length) {\n i++;\n }\n this.closedBranches[0] = this.closedBranches[i - 1];\n this.closedBranches[i - 1] = firstBranch;\n }\n computeBestPlanFromClosedBranches() {\n if (this.closedBranches.length === 0) {\n return;\n }\n this.closedBranches.sort((b1, b2) => b1.length > b2.length ? -1 : (b1.length < b2.length ? 1 : 0));\n let planCount = possiblePlans(this.closedBranches);\n debug.log(() => `Query has ${planCount} possible plans`);\n let firstBranch = this.closedBranches[0];\n while (planCount > exports.MAX_COMPUTED_PLANS && firstBranch.length > 1) {\n const prevSize = firstBranch.length;\n firstBranch.pop();\n planCount -= planCount / prevSize;\n this.reorderFirstBranch();\n firstBranch = this.closedBranches[0];\n debug.log(() => `Reduced plans to consider to ${planCount} plans`);\n }\n debug.log(() => `All branches:${this.closedBranches.map((opts, i) => `\\n${i}:${opts.map((opt => `\\n - ${(0, query_graphs_1.simultaneousPathsToString)(opt)}`))}`)}`);\n let idxFirstOfLengthOne = 0;\n while (idxFirstOfLengthOne < this.closedBranches.length && this.closedBranches[idxFirstOfLengthOne].length > 1) {\n idxFirstOfLengthOne++;\n }\n let initialTree;\n let initialDependencyGraph;\n if (idxFirstOfLengthOne === this.closedBranches.length) {\n initialTree = query_graphs_1.PathTree.createOp(this.subgraphs, this.startVertex);\n initialDependencyGraph = this.newDependencyGraph();\n }\n else {\n initialTree = query_graphs_1.PathTree.createFromOpPaths(this.subgraphs, this.startVertex, this.closedBranches.slice(idxFirstOfLengthOne).flat(2));\n initialDependencyGraph = this.updatedDependencyGraph(this.newDependencyGraph(), initialTree);\n if (idxFirstOfLengthOne === 0) {\n this.onNewPlan(initialDependencyGraph, initialTree);\n return;\n }\n }\n const otherTrees = this.closedBranches.slice(0, idxFirstOfLengthOne).map(b => b.map(opt => query_graphs_1.PathTree.createFromOpPaths(this.subgraphs, this.startVertex, opt)));\n this.generateAllPlans(initialDependencyGraph, initialTree, otherTrees);\n }\n generateAllPlans(initialDependencyGraph, initialTree, others) {\n const eltIndexes = new Array(others.length);\n let totalCombinations = 1;\n for (let i = 0; i < others.length; ++i) {\n const eltSize = others[i].length;\n (0, federation_internals_1.assert)(eltSize, \"Got empty option: this shouldn't have happened\");\n if (!eltSize) {\n totalCombinations = 0;\n break;\n }\n eltIndexes[i] = 0;\n totalCombinations *= eltSize;\n }\n for (let i = 0; i < totalCombinations; ++i) {\n const dependencyGraph = initialDependencyGraph.clone();\n let tree = initialTree;\n for (let j = 0; j < others.length; ++j) {\n const t = others[j][eltIndexes[j]];\n this.updatedDependencyGraph(dependencyGraph, t);\n tree = tree.merge(t);\n }\n this.onNewPlan(dependencyGraph, tree);\n for (let idx = 0; idx < others.length; ++idx) {\n if (eltIndexes[idx] == others[idx].length - 1) {\n eltIndexes[idx] = 0;\n }\n else {\n eltIndexes[idx] += 1;\n break;\n }\n }\n }\n }\n cost(dependencyGraph) {\n return this.costFunction.finalize(dependencyGraph.process(this.costFunction), true);\n }\n updatedDependencyGraph(dependencyGraph, tree) {\n return (0, query_graphs_1.isRootPathTree)(tree)\n ? computeRootFetchGroups(dependencyGraph, tree, this.rootKind)\n : computeNonRootFetchGroups(dependencyGraph, tree, this.rootKind);\n }\n resolveConditionPlan(edge, context, excludedEdges, excludedConditions) {\n const bestPlan = new QueryPlanningTaversal(this.supergraphSchema, this.subgraphs, edge.conditions, this.variableDefinitions, edge.head, 'query', this.costFunction, context, excludedEdges, (0, query_graphs_1.addConditionExclusion)(excludedConditions, edge.conditions)).findBestPlan();\n return bestPlan ? { satisfied: true, cost: bestPlan[2], pathTree: bestPlan[1] } : query_graphs_1.unsatisfiedConditionsResolution;\n }\n onNewPlan(dependencyGraph, tree) {\n const cost = this.cost(dependencyGraph);\n if (!this.bestPlan || cost < this.bestPlan[2]) {\n debug.log(() => this.bestPlan ? `Found better with cost ${cost} (previous had cost ${this.bestPlan[2]}): ${tree}` : `Computed plan with cost ${cost}: ${tree}`);\n this.bestPlan = [dependencyGraph, tree, cost];\n }\n else {\n debug.log(() => `Ignoring plan with cost ${cost} (a better plan with cost ${this.bestPlan[2]} exists): ${tree}`);\n }\n }\n}\nfunction possiblePlans(closedBranches) {\n let totalCombinations = 1;\n for (let i = 0; i < closedBranches.length; ++i) {\n const eltSize = closedBranches[i].length;\n if (!eltSize) {\n totalCombinations = 0;\n break;\n }\n totalCombinations *= eltSize;\n }\n return totalCombinations;\n}\nfunction sum(arr) {\n return arr.reduce((a, b) => a + b, 0);\n}\nconst fetchCost = 10000;\nconst pipeliningCost = 100;\nconst sameLevelFetchCost = 100;\nfunction selectionCost(selection, depth = 1) {\n return selection ? selection.selections().reduce((prev, curr) => prev + depth + selectionCost(curr.selectionSet, depth + 1), 0) : 0;\n}\nconst defaultCostFunction = {\n onFetchGroup: (group) => selectionCost(group.selection),\n reduceParallel: (values) => values,\n reduceSequence: (values) => values.reduceRight((acc, value, idx) => {\n const valueArray = Array.isArray(value) ? value : [value];\n return acc + ((idx + 1) * pipeliningCost) * (fetchCost * valueArray.length) * (Math.max(...valueArray) + (valueArray.length - 1) * sameLevelFetchCost);\n }, 0),\n finalize: (roots, rootsAreParallel) => roots.length === 0 ? 0 : (rootsAreParallel ? (Math.max(...roots) + (roots.length - 1) * sameLevelFetchCost) : sum(roots))\n};\nfunction isIntrospectionSelection(selection) {\n return selection.kind == 'FieldSelection' && selection.element().definition.isIntrospectionField();\n}\nfunction withoutIntrospection(operation) {\n if (!operation.selectionSet.selections().some(isIntrospectionSelection)) {\n return operation;\n }\n const newSelections = operation.selectionSet.selections().filter(s => !isIntrospectionSelection(s));\n return new federation_internals_1.Operation(operation.rootKind, new federation_internals_1.SelectionSet(operation.selectionSet.parentType).addAll(newSelections), operation.variableDefinitions, operation.name);\n}\nfunction computeQueryPlan(supergraphSchema, federatedQueryGraph, operation) {\n if (operation.rootKind === 'subscription') {\n throw new graphql_1.GraphQLError('Query planning does not support subscriptions for now.', [(0, graphql_1.parse)(operation.toString())]);\n }\n operation = operation.expandAllFragments();\n operation = withoutIntrospection(operation);\n debug.group(() => `Computing plan for\\n${operation}`);\n if (operation.selectionSet.isEmpty()) {\n debug.groupEnd('Empty plan');\n return { kind: 'QueryPlan' };\n }\n const root = federatedQueryGraph.root(operation.rootKind);\n (0, federation_internals_1.assert)(root, () => `Shouldn't have a ${operation.rootKind} operation if the subgraphs don't have a ${operation.rootKind} root`);\n const processor = fetchGroupToPlanProcessor(operation.variableDefinitions, operation.selectionSet.fragments);\n if (operation.rootKind === 'mutation') {\n const dependencyGraphs = computeRootSerialDependencyGraph(supergraphSchema, operation, federatedQueryGraph, root);\n const rootNode = processor.finalize(dependencyGraphs.flatMap(g => g.process(processor)), false);\n debug.groupEnd('Mutation plan computed');\n return { kind: 'QueryPlan', node: rootNode };\n }\n else {\n const dependencyGraph = computeRootParallelDependencyGraph(supergraphSchema, operation, federatedQueryGraph, root);\n const rootNode = processor.finalize(dependencyGraph.process(processor), true);\n debug.groupEnd('Query plan computed');\n return { kind: 'QueryPlan', node: rootNode };\n }\n}\nexports.computeQueryPlan = computeQueryPlan;\nfunction computeRootParallelDependencyGraph(supergraphSchema, operation, federatedQueryGraph, root) {\n return computeRootParallelBestPlan(supergraphSchema, operation.selectionSet, operation.variableDefinitions, federatedQueryGraph, root)[0];\n}\nfunction computeRootParallelBestPlan(supergraphSchema, selection, variables, federatedQueryGraph, root) {\n const planningTraversal = new QueryPlanningTaversal(supergraphSchema, federatedQueryGraph, selection, variables, root, root.rootKind, defaultCostFunction, query_graphs_1.emptyContext);\n const plan = planningTraversal.findBestPlan();\n return plan !== null && plan !== void 0 ? plan : createEmptyPlan(federatedQueryGraph, root);\n}\nfunction createEmptyPlan(federatedQueryGraph, root) {\n return [\n FetchDependencyGraph.create(federatedQueryGraph),\n query_graphs_1.PathTree.createOp(federatedQueryGraph, root),\n 0\n ];\n}\nfunction onlyRootSubgraph(graph) {\n const subgraphs = graph.rootSubgraphs();\n (0, federation_internals_1.assert)(subgraphs.length === 1, () => `${graph} should have only one root, but has [${graph.rootSubgraphs()}]`);\n return subgraphs[0];\n}\nfunction computeRootSerialDependencyGraph(supergraphSchema, operation, federatedQueryGraph, root) {\n const splittedRoots = splitTopLevelFields(operation.selectionSet);\n const graphs = [];\n let [prevDepGraph, prevPaths] = computeRootParallelBestPlan(supergraphSchema, splittedRoots[0], operation.variableDefinitions, federatedQueryGraph, root);\n let prevSubgraph = onlyRootSubgraph(prevDepGraph);\n for (let i = 1; i < splittedRoots.length; i++) {\n const [newDepGraph, newPaths] = computeRootParallelBestPlan(supergraphSchema, splittedRoots[i], operation.variableDefinitions, federatedQueryGraph, root);\n const newSubgraph = onlyRootSubgraph(newDepGraph);\n if (prevSubgraph === newSubgraph) {\n prevPaths = prevPaths.concat(newPaths);\n prevDepGraph = computeRootFetchGroups(FetchDependencyGraph.create(federatedQueryGraph), prevPaths, root.rootKind);\n }\n else {\n graphs.push(prevDepGraph);\n [prevDepGraph, prevPaths, prevSubgraph] = [newDepGraph, newPaths, newSubgraph];\n }\n }\n graphs.push(prevDepGraph);\n return graphs;\n}\nfunction splitTopLevelFields(selectionSet) {\n return selectionSet.selections().flatMap(selection => {\n if (selection.kind === 'FieldSelection') {\n return [(0, federation_internals_1.selectionSetOf)(selectionSet.parentType, selection)];\n }\n else {\n return splitTopLevelFields(selection.selectionSet).map(s => (0, federation_internals_1.selectionSetOfElement)(selection.element(), s));\n }\n });\n}\nfunction fetchGroupToPlanProcessor(variableDefinitions, fragments) {\n return {\n onFetchGroup: (group) => group.toPlanNode(variableDefinitions, fragments),\n reduceParallel: (values) => flatWrap('Parallel', values),\n reduceSequence: (values) => flatWrap('Sequence', values),\n finalize: (roots, rootsAreParallel) => roots.length == 0 ? undefined : flatWrap(rootsAreParallel ? 'Parallel' : 'Sequence', roots)\n };\n}\nfunction addToResponsePath(path, responseName, type) {\n path = path.concat(responseName);\n while (!(0, federation_internals_1.isNamedType)(type)) {\n if ((0, federation_internals_1.isListType)(type)) {\n path.push('@');\n }\n type = type.ofType;\n }\n return path;\n}\nclass LazySelectionSet {\n constructor(_computed, _toCloneOnWrite) {\n this._computed = _computed;\n this._toCloneOnWrite = _toCloneOnWrite;\n (0, federation_internals_1.assert)(_computed || _toCloneOnWrite, 'Should have one of the argument');\n }\n forRead() {\n return this._computed ? this._computed : this._toCloneOnWrite;\n }\n forWrite() {\n if (!this._computed) {\n this._computed = this._toCloneOnWrite.clone();\n }\n return this._computed;\n }\n clone() {\n if (this._computed) {\n return new LazySelectionSet(undefined, this._computed);\n }\n else {\n return this;\n }\n }\n toString() {\n return this.forRead().toString();\n }\n}\nclass FetchGroup {\n constructor(dependencyGraph, index, subgraphName, rootKind, parentType, isEntityFetch, _selection, _inputs, mergeAt) {\n this.dependencyGraph = dependencyGraph;\n this.index = index;\n this.subgraphName = subgraphName;\n this.rootKind = rootKind;\n this.parentType = parentType;\n this.isEntityFetch = isEntityFetch;\n this._selection = _selection;\n this._inputs = _inputs;\n this.mergeAt = mergeAt;\n }\n static create(dependencyGraph, index, subgraphName, rootKind, parentType, isEntityFetch, mergeAt) {\n return new FetchGroup(dependencyGraph, index, subgraphName, rootKind, parentType, isEntityFetch, new LazySelectionSet(new federation_internals_1.SelectionSet(parentType)), isEntityFetch ? new LazySelectionSet(new federation_internals_1.SelectionSet(parentType)) : undefined, mergeAt);\n }\n clone(newDependencyGraph) {\n var _a;\n return new FetchGroup(newDependencyGraph, this.index, this.subgraphName, this.rootKind, this.parentType, this.isEntityFetch, this._selection.clone(), (_a = this._inputs) === null || _a === void 0 ? void 0 : _a.clone(), this.mergeAt);\n }\n get isTopLevel() {\n return !this.mergeAt;\n }\n get selection() {\n return this._selection.forRead();\n }\n get inputs() {\n var _a;\n return (_a = this._inputs) === null || _a === void 0 ? void 0 : _a.forRead();\n }\n clonedInputs() {\n var _a;\n return (_a = this._inputs) === null || _a === void 0 ? void 0 : _a.clone();\n }\n addDependencyOn(groups) {\n this.dependencyGraph.addDependency(this, groups);\n }\n removeDependencyOn(groups) {\n this.dependencyGraph.removeDependency(this, groups);\n }\n addInputs(selection) {\n (0, federation_internals_1.assert)(this._inputs, \"Shouldn't try to add inputs to a root fetch group\");\n if (selection instanceof federation_internals_1.SelectionSet) {\n this._inputs.forWrite().mergeIn(selection);\n }\n else {\n this._inputs.forWrite().add(selection);\n }\n }\n addSelection(path) {\n this._selection.forWrite().addPath(path);\n }\n addSelections(selection) {\n this._selection.forWrite().mergeIn(selection);\n }\n mergeIn(toMerge, mergePath) {\n (0, federation_internals_1.assert)(!toMerge.isTopLevel, () => `Shouldn't merge top level group ${toMerge} into ${this}`);\n const selectionSet = (0, federation_internals_1.selectionSetOfPath)(mergePath, (endOfPathSet) => {\n (0, federation_internals_1.assert)(endOfPathSet, () => `Merge path ${mergePath} ends on a non-selectable type`);\n for (const typeCastSel of toMerge.selection.selections()) {\n (0, federation_internals_1.assert)(typeCastSel instanceof federation_internals_1.FragmentSelection, () => `Unexpected field selection ${typeCastSel} at top-level of ${toMerge} selection.`);\n const entityType = typeCastSel.element().typeCondition;\n (0, federation_internals_1.assert)(entityType, () => `Unexpected fragment _without_ condition at start of ${toMerge}`);\n if ((0, federation_internals_1.sameType)(endOfPathSet.parentType, entityType)) {\n endOfPathSet.mergeIn(typeCastSel.selectionSet);\n }\n else {\n endOfPathSet.add(typeCastSel);\n }\n }\n });\n this._selection.forWrite().mergeIn(selectionSet);\n this.dependencyGraph.onMergedIn(this, toMerge);\n }\n toPlanNode(variableDefinitions, fragments) {\n var _a;\n addTypenameFieldForAbstractTypes(this.selection);\n this.selection.validate();\n const inputs = (_a = this._inputs) === null || _a === void 0 ? void 0 : _a.forRead();\n if (inputs) {\n inputs.validate();\n }\n const inputNodes = inputs ? inputs.toSelectionSetNode() : undefined;\n const operation = this.isEntityFetch\n ? operationForEntitiesFetch(this.dependencyGraph.subgraphSchemas.get(this.subgraphName), this.selection, variableDefinitions, fragments)\n : operationForQueryFetch(this.rootKind, this.selection, variableDefinitions, fragments);\n const fetchNode = {\n kind: 'Fetch',\n serviceName: this.subgraphName,\n requires: inputNodes ? (0, QueryPlan_1.trimSelectionNodes)(inputNodes.selections) : undefined,\n variableUsages: this.selection.usedVariables().map(v => v.name),\n operation: (0, graphql_1.stripIgnoredCharacters)((0, graphql_1.print)(operation)),\n };\n return this.isTopLevel\n ? fetchNode\n : {\n kind: 'Flatten',\n path: this.mergeAt,\n node: fetchNode,\n };\n }\n toString() {\n return this.isTopLevel\n ? `[${this.index}]${this.subgraphName}[${this._selection}]`\n : `[${this.index}]${this.subgraphName}@(${this.mergeAt})[${this._inputs} => ${this._selection}]`;\n }\n}\nfunction removeInPlace(value, array) {\n const idx = array.indexOf(value);\n if (idx >= 0) {\n array.splice(idx, 1);\n }\n}\nfunction sameMergeAt(m1, m2) {\n if (!m1) {\n return !m2;\n }\n if (!m2) {\n return false;\n }\n return (0, federation_internals_1.arrayEquals)(m1, m2);\n}\nclass FetchDependencyGraph {\n constructor(subgraphSchemas, federatedQueryGraph, rootGroups, groups, adjacencies, inEdges, pathsInParents) {\n this.subgraphSchemas = subgraphSchemas;\n this.federatedQueryGraph = federatedQueryGraph;\n this.rootGroups = rootGroups;\n this.groups = groups;\n this.adjacencies = adjacencies;\n this.inEdges = inEdges;\n this.pathsInParents = pathsInParents;\n this.isReduced = false;\n }\n static create(federatedQueryGraph) {\n return new FetchDependencyGraph(federatedQueryGraph.sources, federatedQueryGraph, new federation_internals_1.MapWithCachedArrays(), [], [], [], []);\n }\n clone() {\n const cloned = new FetchDependencyGraph(this.subgraphSchemas, this.federatedQueryGraph, new federation_internals_1.MapWithCachedArrays(), new Array(this.groups.length), this.adjacencies.map(a => a.concat()), this.inEdges.map(a => a.concat()), this.pathsInParents.concat());\n for (let i = 0; i < this.groups.length; i++) {\n cloned.groups[i] = this.groups[i].clone(cloned);\n }\n for (const group of this.rootGroups.values()) {\n cloned.rootGroups.set(group.subgraphName, cloned.groups[group.index]);\n }\n return cloned;\n }\n getOrCreateRootFetchGroup(subgraphName, rootKind, parentType) {\n let group = this.rootGroups.get(subgraphName);\n if (!group) {\n group = this.createRootFetchGroup(subgraphName, rootKind, parentType);\n this.rootGroups.set(subgraphName, group);\n }\n return group;\n }\n rootSubgraphs() {\n return this.rootGroups.keys();\n }\n createRootFetchGroup(subgraphName, rootKind, parentType) {\n const group = this.newFetchGroup(subgraphName, parentType, false, rootKind);\n this.rootGroups.set(subgraphName, group);\n return group;\n }\n newFetchGroup(subgraphName, parentType, isEntityFetch, rootKind, mergeAt, directParent, pathInParent) {\n this.onModification();\n const newGroup = FetchGroup.create(this, this.groups.length, subgraphName, rootKind, parentType, isEntityFetch, mergeAt);\n this.groups.push(newGroup);\n this.adjacencies.push([]);\n this.inEdges.push([]);\n if (directParent) {\n this.addEdge(directParent.index, newGroup.index, pathInParent);\n }\n return newGroup;\n }\n getOrCreateKeyFetchGroup(subgraphName, mergeAt, directParent, pathInParent, conditionsGroups) {\n for (const existing of this.dependents(directParent)) {\n if (existing.subgraphName === subgraphName\n && existing.mergeAt\n && sameMergeAt(existing.mergeAt, mergeAt)\n && !this.isDependedOn(existing, conditionsGroups)) {\n const existingPathInParent = this.pathInParent(existing);\n if (pathInParent && existingPathInParent && !(0, federation_internals_1.sameOperationPaths)(existingPathInParent, pathInParent)) {\n this.pathsInParents[existing.index] = undefined;\n }\n return existing;\n }\n }\n const entityType = this.subgraphSchemas.get(subgraphName).type(federation_internals_1.entityTypeName);\n return this.newFetchGroup(subgraphName, entityType, true, 'query', mergeAt, directParent, pathInParent);\n }\n newRootTypeFetchGroup(subgraphName, rootKind, parentType, mergeAt, directParent, pathInParent) {\n return this.newFetchGroup(subgraphName, parentType, false, rootKind, mergeAt, directParent, pathInParent);\n }\n isDependedOn(toCheck, conditions) {\n const stack = conditions.concat();\n while (stack.length > 0) {\n const group = stack.pop();\n if (toCheck.index === group.index) {\n return true;\n }\n stack.push(...this.dependencies(group));\n }\n return false;\n }\n newKeyFetchGroup(subgraphName, mergeAt) {\n const entityType = this.subgraphSchemas.get(subgraphName).type(federation_internals_1.entityTypeName);\n return this.newFetchGroup(subgraphName, entityType, true, 'query', mergeAt);\n }\n addDependency(dependentGroup, dependentOn) {\n this.onModification();\n const groups = Array.isArray(dependentOn) ? dependentOn : [dependentOn];\n for (const group of groups) {\n this.addEdge(group.index, dependentGroup.index);\n }\n }\n removeDependency(dependentGroup, dependentOn) {\n this.onModification();\n const groups = Array.isArray(dependentOn) ? dependentOn : [dependentOn];\n for (const group of groups) {\n this.removeEdge(group.index, dependentGroup.index);\n }\n }\n pathInParent(group) {\n return this.pathsInParents[group.index];\n }\n addEdge(from, to, pathInFrom) {\n if (!this.adjacencies[from].includes(to)) {\n this.adjacencies[from].push(to);\n this.inEdges[to].push(from);\n const parentsCount = this.inEdges[to].length;\n if (pathInFrom && parentsCount === 1) {\n this.pathsInParents[to] = pathInFrom;\n }\n else if (parentsCount > 1) {\n this.pathsInParents[to] = undefined;\n }\n }\n }\n removeEdge(from, to) {\n if (this.adjacencies[from].includes(to)) {\n removeInPlace(to, this.adjacencies[from]);\n removeInPlace(from, this.inEdges[to]);\n this.pathsInParents[to] = undefined;\n }\n }\n onMergedIn(mergedInto, merged) {\n (0, federation_internals_1.assert)(!merged.isTopLevel, \"Shouldn't remove top level groups\");\n this.onModification();\n this.relocateDependentsOnMergedIn(mergedInto, merged.index);\n this.removeInternal(merged.index);\n }\n relocateDependentsOnMergedIn(mergedInto, mergedIndex) {\n for (const dependentIdx of this.adjacencies[mergedIndex]) {\n this.addEdge(mergedInto.index, dependentIdx);\n const idxInIns = this.inEdges[dependentIdx].indexOf(mergedIndex);\n if (idxInIns >= 0) {\n this.inEdges[dependentIdx].splice(idxInIns, 1);\n }\n }\n }\n remove(group) {\n this.onModification();\n const dependents = this.dependents(group);\n const dependencies = this.dependencies(group);\n (0, federation_internals_1.assert)(dependents.length === 0, () => `Cannot remove group ${group} with dependents [${dependents}]`);\n (0, federation_internals_1.assert)(dependencies.length <= 1, () => `Cannot remove group ${group} with more/less than one dependency: [${dependencies}]`);\n this.removeInternal(group.index);\n }\n removeInternal(mergedIndex) {\n for (const dependedIdx of this.inEdges[mergedIndex]) {\n const idxInAdj = this.adjacencies[dependedIdx].indexOf(mergedIndex);\n this.adjacencies[dependedIdx].splice(idxInAdj, 1);\n }\n this.groups.splice(mergedIndex, 1);\n this.adjacencies.splice(mergedIndex, 1);\n this.inEdges.splice(mergedIndex, 1);\n this.groups.forEach(g => {\n if (g.index > mergedIndex) {\n --g.index;\n }\n });\n this.adjacencies.forEach(adj => {\n adj.forEach((v, i) => {\n if (v > mergedIndex) {\n adj[i] = v - 1;\n }\n });\n });\n this.inEdges.forEach(ins => {\n ins.forEach((v, i) => {\n if (v > mergedIndex) {\n ins[i] = v - 1;\n }\n });\n });\n }\n onModification() {\n this.isReduced = false;\n }\n reduce() {\n if (this.isReduced) {\n return;\n }\n for (const group of this.groups) {\n for (const adjacent of this.adjacencies[group.index]) {\n this.dfsRemoveRedundantEdges(group.index, adjacent);\n }\n }\n for (const group of this.rootGroups.values()) {\n this.removeEmptyGroups(group);\n }\n for (const group of this.rootGroups.values()) {\n this.mergeDependentFetchesForSameSubgraphAndPath(group);\n }\n this.isReduced = true;\n }\n removeEmptyGroups(group) {\n const dependents = this.dependents(group);\n if (group.selection.isEmpty()) {\n (0, federation_internals_1.assert)(dependents.length === 0, () => `Empty group ${group} has dependents: ${dependents}`);\n this.remove(group);\n }\n for (const g of dependents) {\n this.removeEmptyGroups(g);\n }\n }\n mergeDependentFetchesForSameSubgraphAndPath(group) {\n const dependents = this.dependents(group);\n if (dependents.length > 1) {\n for (const g1 of dependents) {\n for (const g2 of dependents) {\n if (g1.index !== g2.index\n && g1.subgraphName === g2.subgraphName\n && sameMergeAt(g1.mergeAt, g2.mergeAt)\n && this.dependencies(g1).length === 1\n && this.dependencies(g2).length === 1) {\n const merged = FetchGroup.create(this, g1.index, g1.subgraphName, g1.rootKind, g1.selection.parentType, g1.isEntityFetch, g1.mergeAt);\n this.pathsInParents[g1.index] = undefined;\n if (g1.inputs) {\n merged.addInputs(g1.inputs);\n }\n merged.addSelections(g1.selection);\n this.groups[merged.index] = merged;\n if (g2.inputs) {\n merged.addInputs(g2.inputs);\n }\n merged.addSelections(g2.selection);\n this.onMergedIn(merged, g2);\n this.mergeDependentFetchesForSameSubgraphAndPath(group);\n return;\n }\n }\n }\n }\n for (const g of dependents) {\n this.mergeDependentFetchesForSameSubgraphAndPath(g);\n }\n }\n dependencies(group) {\n return this.inEdges[group.index].map(i => this.groups[i]);\n }\n dependents(group) {\n return this.adjacencies[group.index].map(i => this.groups[i]);\n }\n dfsRemoveRedundantEdges(parentVertex, startVertex) {\n const parentAdjacencies = this.adjacencies[parentVertex];\n const stack = [...this.adjacencies[startVertex]];\n while (stack.length > 0) {\n const v = stack.pop();\n removeInPlace(v, parentAdjacencies);\n removeInPlace(parentVertex, this.inEdges[v]);\n stack.push(...this.adjacencies[v]);\n }\n }\n outGroups(group) {\n return this.adjacencies[group.index].map(i => this.groups[i]);\n }\n inGroups(group) {\n return this.inEdges[group.index].map(i => this.groups[i]);\n }\n processGroup(processor, group, isRootGroup) {\n const outGroups = this.outGroups(group);\n const processed = processor.onFetchGroup(group, isRootGroup);\n if (outGroups.length == 0) {\n return [processed, []];\n }\n const allOutGroupsHaveThisAsIn = outGroups.every(g => this.inGroups(g).length === 1);\n if (allOutGroupsHaveThisAsIn) {\n const nodes = [processed];\n let nextNodes = outGroups;\n let remainingNext = [];\n while (nextNodes.length > 0) {\n const [node, toHandle, remaining] = this.processParallelGroups(processor, nextNodes, remainingNext);\n nodes.push(node);\n const [canHandle, newRemaining] = this.mergeRemainings(remainingNext, remaining);\n remainingNext = newRemaining;\n nextNodes = canHandle.concat(toHandle);\n }\n return [processor.reduceSequence(nodes), remainingNext];\n }\n else {\n return [processed, outGroups.map(g => [g, this.inEdges[g.index].filter(e => e !== group.index)])];\n }\n }\n processParallelGroups(processor, groups, remaining) {\n const parallelNodes = [];\n let remainingNext = remaining;\n const toHandleNext = [];\n for (const group of groups) {\n const [node, remaining] = this.processGroup(processor, group, false);\n parallelNodes.push(node);\n const [canHandle, newRemaining] = this.mergeRemainings(remainingNext, remaining);\n toHandleNext.push(...canHandle);\n remainingNext = newRemaining;\n }\n return [\n processor.reduceParallel(parallelNodes),\n toHandleNext,\n remainingNext\n ];\n }\n mergeRemainings(r1, r2) {\n const unhandled = [];\n const toHandle = [];\n for (const [g, edges] of r1) {\n const newEdges = this.mergeRemaingsAndRemoveIfFound(g, edges, r2);\n if (newEdges.length == 0) {\n toHandle.push(g);\n }\n else {\n unhandled.push([g, newEdges]);\n }\n }\n unhandled.push(...r2);\n return [toHandle, unhandled];\n }\n mergeRemaingsAndRemoveIfFound(group, inEdges, otherGroups) {\n const idx = otherGroups.findIndex(g => g[0].index === group.index);\n if (idx < 0) {\n return inEdges;\n }\n else {\n const otherEdges = otherGroups[idx][1];\n otherGroups.splice(idx, 1);\n return inEdges.filter(e => otherEdges.includes(e));\n }\n }\n process(processor) {\n this.reduce();\n const rootNodes = this.rootGroups.values().map(rootGroup => {\n const [node, remaining] = this.processGroup(processor, rootGroup, true);\n (0, federation_internals_1.assert)(remaining.length == 0, `A root group should have no remaining groups unhandled`);\n return node;\n });\n return rootNodes;\n }\n dumpOnConsole() {\n console.log('Groups:');\n for (const group of this.groups) {\n console.log(` ${group}`);\n }\n console.log('Adjacencies:');\n for (const [i, adj] of this.adjacencies.entries()) {\n console.log(` ${i} => [${adj.join(', ')}]`);\n }\n console.log('In-Edges:');\n for (const [i, ins] of this.inEdges.entries()) {\n console.log(` ${i} => [${ins.join(', ')}]`);\n }\n }\n toString() {\n return this.rootGroups.values().map(g => this.toStringInternal(g, \"\")).join('\\n');\n }\n toStringInternal(group, indent) {\n const groupDependents = this.adjacencies[group.index];\n return [indent + group.subgraphName + ' <- ' + groupDependents.map(i => this.groups[i].subgraphName).join(', ')]\n .concat(groupDependents\n .flatMap(g => this.adjacencies[g].length == 0\n ? []\n : this.toStringInternal(this.groups[g], indent + \" \")))\n .join('\\n');\n }\n}\nfunction computeRootFetchGroups(dependencyGraph, pathTree, rootKind) {\n for (const [edge, _trigger, _conditions, child] of pathTree.childElements()) {\n (0, federation_internals_1.assert)(edge !== null, `The root edge should not be null`);\n const source = edge.tail.source;\n const rootType = edge.tail.type;\n const group = dependencyGraph.getOrCreateRootFetchGroup(source, rootKind, rootType);\n computeGroupsForTree(dependencyGraph, child, group);\n }\n return dependencyGraph;\n}\nfunction computeNonRootFetchGroups(dependencyGraph, pathTree, rootKind) {\n const source = pathTree.vertex.source;\n const rootType = pathTree.vertex.type;\n (0, federation_internals_1.assert)((0, federation_internals_1.isCompositeType)(rootType), () => `Should not have condition on non-selectable type ${rootType}`);\n const group = dependencyGraph.getOrCreateRootFetchGroup(source, rootKind, rootType);\n computeGroupsForTree(dependencyGraph, pathTree, group);\n return dependencyGraph;\n}\nfunction createNewFetchSelectionContext(type, selections, context) {\n const typeCast = new federation_internals_1.FragmentElement(type, type.name);\n let inputSelection = (0, federation_internals_1.selectionOfElement)(typeCast, selections);\n let path = [typeCast];\n if (context.isEmpty()) {\n return [inputSelection, path];\n }\n const schema = type.schema();\n const [name0, ifs0] = context.directives[0];\n typeCast.applyDirective(schema.directive(name0), { 'if': ifs0 });\n for (let i = 1; i < context.directives.length; i++) {\n const [name, ifs] = context.directives[i];\n const fragment = new federation_internals_1.FragmentElement(type, type.name);\n fragment.applyDirective(schema.directive(name), { 'if': ifs });\n inputSelection = (0, federation_internals_1.selectionOfElement)(fragment, (0, federation_internals_1.selectionSetOf)(type, inputSelection));\n path = [fragment].concat(path);\n }\n return [inputSelection, path];\n}\nfunction extractPathInParentForKeyFetch(type, path) {\n var _a;\n const lastElement = path[path.length - 1];\n return (lastElement && lastElement.kind === 'FragmentElement' && ((_a = lastElement.typeCondition) === null || _a === void 0 ? void 0 : _a.name) === type.name)\n ? path.slice(0, path.length - 1)\n : path;\n}\nfunction computeGroupsForTree(dependencyGraph, pathTree, startGroup, initialMergeAt = [], initialPath = []) {\n const stack = [[pathTree, startGroup, initialMergeAt, initialPath]];\n const createdGroups = [];\n while (stack.length > 0) {\n const [tree, group, mergeAt, path] = stack.pop();\n if (tree.isLeaf()) {\n group.addSelection(path);\n }\n else {\n for (const [edge, operation, conditions, child] of tree.childElements(true)) {\n if ((0, query_graphs_1.isPathContext)(operation)) {\n (0, federation_internals_1.assert)(edge !== null, () => `Unexpected 'null' edge with no trigger at ${path}`);\n (0, federation_internals_1.assert)(edge.head.source !== edge.tail.source, () => `Key/Query edge ${edge} should change the underlying subgraph`);\n if (edge.transition.kind === 'KeyResolution') {\n (0, federation_internals_1.assert)(conditions, () => `Key edge ${edge} should have some conditions paths`);\n const groupsForConditions = computeGroupsForTree(dependencyGraph, conditions, group, mergeAt, path);\n const type = edge.tail.type;\n const pathInParent = extractPathInParentForKeyFetch(type, path);\n const newGroup = dependencyGraph.getOrCreateKeyFetchGroup(edge.tail.source, mergeAt, group, pathInParent, groupsForConditions);\n createdGroups.push(newGroup);\n newGroup.addDependencyOn(groupsForConditions);\n const inputSelections = new federation_internals_1.SelectionSet(type);\n inputSelections.add(new federation_internals_1.FieldSelection(new federation_internals_1.Field(type.typenameField())));\n inputSelections.mergeIn(edge.conditions);\n const [inputs, newPath] = createNewFetchSelectionContext(type, inputSelections, operation);\n newGroup.addInputs(inputs);\n group.addSelection(path.concat(new federation_internals_1.Field(edge.head.type.typenameField())));\n stack.push([child, newGroup, mergeAt, newPath]);\n }\n else {\n (0, federation_internals_1.assert)(edge.transition.kind === 'RootTypeResolution', () => `Unexpected non-collecting edge ${edge}`);\n const rootKind = edge.transition.rootKind;\n (0, federation_internals_1.assert)(!conditions, () => `Root type resolution edge ${edge} should not have conditions`);\n (0, federation_internals_1.assert)((0, federation_internals_1.isObjectType)(edge.head.type) && (0, federation_internals_1.isObjectType)(edge.tail.type), () => `Expected an objects for the vertices of ${edge}`);\n const type = edge.tail.type;\n (0, federation_internals_1.assert)(type === type.schema().schemaDefinition.rootType(rootKind), () => `Expected ${type} to be the root ${rootKind} type, but that is ${type.schema().schemaDefinition.rootType(rootKind)}`);\n group.addSelection(path.concat(new federation_internals_1.Field(edge.head.type.typenameField())));\n const newGroup = dependencyGraph.newRootTypeFetchGroup(edge.tail.source, rootKind, type, mergeAt, group, path);\n const newPath = createNewFetchSelectionContext(type, undefined, operation)[1];\n stack.push([child, newGroup, mergeAt, newPath]);\n }\n }\n else if (edge === null) {\n const newPath = operation.appliedDirectives.length === 0 ? path : path.concat(operation);\n stack.push([child, group, mergeAt, newPath]);\n }\n else {\n (0, federation_internals_1.assert)(edge.head.source === edge.tail.source, () => `Collecting edge ${edge} for ${operation} should not change the underlying subgraph`);\n let updatedGroup = group;\n let updatedMergeAt = mergeAt;\n let updatedPath = path;\n if (conditions) {\n [updatedGroup, updatedMergeAt, updatedPath] = handleRequires(dependencyGraph, edge, conditions, group, mergeAt, path);\n }\n const newMergeAt = operation.kind === 'Field'\n ? addToResponsePath(updatedMergeAt, operation.responseName(), edge.transition.definition.type)\n : updatedMergeAt;\n stack.push([child, updatedGroup, newMergeAt, updatedPath.concat(operation)]);\n }\n }\n }\n }\n return createdGroups;\n}\nfunction addTypenameFieldForAbstractTypes(selectionSet) {\n for (const selection of selectionSet.selections()) {\n if (selection.kind == 'FieldSelection') {\n const fieldBaseType = (0, federation_internals_1.baseType)(selection.field.definition.type);\n if ((0, federation_internals_1.isAbstractType)(fieldBaseType)) {\n selection.selectionSet.add(new federation_internals_1.FieldSelection(new federation_internals_1.Field(fieldBaseType.typenameField())));\n }\n if (selection.selectionSet) {\n addTypenameFieldForAbstractTypes(selection.selectionSet);\n }\n }\n else {\n addTypenameFieldForAbstractTypes(selection.selectionSet);\n }\n }\n}\nfunction handleRequires(dependencyGraph, edge, requiresConditions, group, mergeAt, path) {\n const entityType = edge.head.type;\n if (!group.isTopLevel && path.length == 1 && path[0].kind === 'FragmentElement') {\n const originalInputs = group.clonedInputs();\n const newGroup = dependencyGraph.newKeyFetchGroup(group.subgraphName, group.mergeAt);\n newGroup.addInputs(originalInputs.forRead());\n const createdGroups = computeGroupsForTree(dependencyGraph, requiresConditions, newGroup, mergeAt, path);\n if (createdGroups.length == 0) {\n group.mergeIn(newGroup, path);\n return [group, mergeAt, path];\n }\n const newGroupIsUseless = newGroup.inputs.contains(newGroup.selection);\n const parents = dependencyGraph.dependencies(group);\n const pathInParent = dependencyGraph.pathInParent(group);\n const unmergedGroups = [];\n if (newGroupIsUseless) {\n for (const created of createdGroups) {\n if (pathInParent\n && created.subgraphName === parents[0].subgraphName\n && sameMergeAt(created.mergeAt, group.mergeAt)) {\n parents[0].mergeIn(created, pathInParent);\n }\n else {\n created.removeDependencyOn(newGroup);\n created.addDependencyOn(parents);\n unmergedGroups.push(created);\n }\n }\n dependencyGraph.remove(newGroup);\n }\n else {\n group.mergeIn(newGroup, path);\n for (const created of createdGroups) {\n if (pathInParent\n && created.subgraphName === parents[0].subgraphName\n && sameMergeAt(created.mergeAt, group.mergeAt)\n && originalInputs.forRead().contains(created.inputs)) {\n parents[0].mergeIn(created, pathInParent);\n }\n else {\n unmergedGroups.push(created);\n }\n }\n }\n if (unmergedGroups.length == 0) {\n group.addInputs(inputsForRequire(dependencyGraph.federatedQueryGraph, entityType, edge, false)[0]);\n return [group, mergeAt, path];\n }\n const postRequireGroup = dependencyGraph.newKeyFetchGroup(group.subgraphName, group.mergeAt);\n postRequireGroup.addDependencyOn(unmergedGroups);\n const [inputs, newPath] = inputsForRequire(dependencyGraph.federatedQueryGraph, entityType, edge);\n postRequireGroup.addInputs(inputs);\n return [postRequireGroup, mergeAt, newPath];\n }\n else {\n const createdGroups = computeGroupsForTree(dependencyGraph, requiresConditions, group, mergeAt, path);\n if (createdGroups.length == 0) {\n return [group, mergeAt, path];\n }\n const newGroup = dependencyGraph.newKeyFetchGroup(group.subgraphName, mergeAt);\n newGroup.addDependencyOn(createdGroups);\n const [inputs, newPath] = inputsForRequire(dependencyGraph.federatedQueryGraph, entityType, edge);\n newGroup.addInputs(inputs);\n return [newGroup, mergeAt, newPath];\n }\n}\nfunction inputsForRequire(graph, entityType, edge, includeKeyInputs = true) {\n const typeCast = new federation_internals_1.FragmentElement(entityType, entityType.name);\n const fullSelectionSet = new federation_internals_1.SelectionSet(entityType);\n fullSelectionSet.add(new federation_internals_1.FieldSelection(new federation_internals_1.Field(entityType.typenameField())));\n fullSelectionSet.mergeIn(edge.conditions);\n if (includeKeyInputs) {\n const keyCondition = (0, query_graphs_1.getLocallySatisfiableKey)(graph, edge.head);\n (0, federation_internals_1.assert)(keyCondition, () => `Due to @require, validation should have required a key to be present for ${edge}`);\n fullSelectionSet.mergeIn(keyCondition);\n }\n return [(0, federation_internals_1.selectionOfElement)(typeCast, fullSelectionSet), [typeCast]];\n}\nconst representationsVariable = new federation_internals_1.Variable('representations');\nfunction representationsVariableDefinition(schema) {\n const anyType = schema.type('_Any');\n (0, federation_internals_1.assert)(anyType, `Cannot find _Any type in schema`);\n const representationsType = new federation_internals_1.NonNullType(new federation_internals_1.ListType(new federation_internals_1.NonNullType(anyType)));\n return new federation_internals_1.VariableDefinition(schema, representationsVariable, representationsType);\n}\nfunction operationForEntitiesFetch(subgraphSchema, selectionSet, allVariableDefinitions, fragments) {\n const variableDefinitions = new federation_internals_1.VariableDefinitions();\n variableDefinitions.add(representationsVariableDefinition(subgraphSchema));\n variableDefinitions.addAll(allVariableDefinitions.filter(selectionSet.usedVariables()));\n const queryType = subgraphSchema.schemaDefinition.rootType('query');\n (0, federation_internals_1.assert)(queryType, `Subgraphs should always have a query root (they should at least provides _entities)`);\n const entities = queryType.field('_entities');\n (0, federation_internals_1.assert)(entities, `Subgraphs should always have the _entities field`);\n const entitiesCall = new federation_internals_1.SelectionSet(queryType);\n entitiesCall.add(new federation_internals_1.FieldSelection(new federation_internals_1.Field(entities, { 'representations': representationsVariable }, variableDefinitions), selectionSet));\n return (0, federation_internals_1.operationToDocument)(new federation_internals_1.Operation('query', entitiesCall, variableDefinitions).optimize(fragments));\n}\nfunction flatWrap(kind, nodes) {\n (0, federation_internals_1.assert)(nodes.length !== 0, 'programming error: should always be called with nodes');\n if (nodes.length === 1) {\n return nodes[0];\n }\n return {\n kind,\n nodes: nodes.flatMap(n => (n.kind === kind ? n.nodes : [n])),\n };\n}\nfunction operationForQueryFetch(rootKind, selectionSet, allVariableDefinitions, fragments) {\n const operation = new federation_internals_1.Operation(rootKind, selectionSet, allVariableDefinitions.filter(selectionSet.usedVariables())).optimize(fragments);\n return (0, federation_internals_1.operationToDocument)(operation);\n}\n//# sourceMappingURL=buildPlan.js.map","\"use strict\";\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.QueryPlanner = exports.prettyFormatQueryPlan = exports.astSerializer = exports.queryPlanSerializer = void 0;\nvar snapshotSerializers_1 = require(\"./snapshotSerializers\");\nObject.defineProperty(exports, \"queryPlanSerializer\", { enumerable: true, get: function () { return snapshotSerializers_1.queryPlanSerializer; } });\nObject.defineProperty(exports, \"astSerializer\", { enumerable: true, get: function () { return snapshotSerializers_1.astSerializer; } });\nvar prettyFormatQueryPlan_1 = require(\"./prettyFormatQueryPlan\");\nObject.defineProperty(exports, \"prettyFormatQueryPlan\", { enumerable: true, get: function () { return prettyFormatQueryPlan_1.prettyFormatQueryPlan; } });\n__exportStar(require(\"./QueryPlan\"), exports);\nconst query_graphs_1 = require(\"@apollo/query-graphs\");\nconst buildPlan_1 = require(\"./buildPlan\");\nclass QueryPlanner {\n constructor(supergraphSchema) {\n this.supergraphSchema = supergraphSchema;\n this.federatedQueryGraph = (0, query_graphs_1.buildFederatedQueryGraph)(supergraphSchema, true);\n }\n buildQueryPlan(operation) {\n if (operation.selectionSet.isEmpty()) {\n return { kind: 'QueryPlan' };\n }\n return (0, buildPlan_1.computeQueryPlan)(this.supergraphSchema, this.federatedQueryGraph, operation);\n }\n}\nexports.QueryPlanner = QueryPlanner;\n//# sourceMappingURL=index.js.map","Object.defineProperty(exports, \"__esModule\", { value: true });\nexports.plan = void 0;\nconst graphql_1 = require(\"graphql\");\nconst query_planner_1 = require(\"@apollo/query-planner\");\nconst federation_internals_1 = require(\"@apollo/federation-internals\");\nfunction plan(schemaString, operationString, operationName) {\n try {\n const composedSchema = (0, federation_internals_1.buildSchema)(schemaString);\n const operationDocument = (0, graphql_1.parse)(operationString);\n const operation = (0, federation_internals_1.operationFromDocument)(composedSchema, operationDocument, operationName);\n const planner = new query_planner_1.QueryPlanner(composedSchema);\n return { data: planner.buildQueryPlan(operation) };\n }\n catch (e) {\n return { errors: [e] };\n }\n}\nexports.plan = plan;\n//# sourceMappingURL=plan.js.map","Object.defineProperty(exports, \"__esModule\", { value: true });\nexports.plan = exports.batchIntrospect = exports.introspect = void 0;\nvar introspection_1 = require(\"./introspection\");\nObject.defineProperty(exports, \"introspect\", { enumerable: true, get: function () { return introspection_1.introspect; } });\nObject.defineProperty(exports, \"batchIntrospect\", { enumerable: true, get: function () { return introspection_1.batchIntrospect; } });\nvar plan_1 = require(\"./plan\");\nObject.defineProperty(exports, \"plan\", { enumerable: true, get: function () { return plan_1.plan; } });\n//# sourceMappingURL=index.js.map"],"names":["version","printError","formatError","isDigit","inspect","formatValue","formatArray","MAX_SUGGESTIONS","didYouMean","suggestionList","print","join","valueFromASTUntyped","integerStringRegExp","validateSchema","getFieldDef","isSDLNode","standardTypeNames","valueFromAST","hasOwnProperty","collectSubfields","validate","_collectSubfields","graphql","buildSchema","introspection","graphql_1","require$$0","this","require$$1","_collections","global","Symbol","SPACE","serialize","test","plugin","_default","_interopRequireDefault","_ansiStyles","escapeHTML_1","_markup","g","reactIsModule","getPropKeys","format","require$$2","require$$3","require$$4","require$$5","require$$6","require$$7","require$$8","toString","errorToString","__importDefault","prettyFormatQueryPlan_1","error","features_1","features","names","utils_1","platform","env","release","noop","uptime","isString","process","isBoolean","isFunction","isError","isRegExp","isDate","isArray","isNumber","isSymbol","objectToString","isBuffer","inherits","definitions_1","suggestions_1","util_1","types_1","values_1","require$$9","require$$10","require$$11","require$$12","buildSchema_1","KnownTypeNamesInFederationRule_1","federation_1","tagSpec","convert","conversions","route","colorConvert","hasFlag","stringReplaceAll","stringEncaseCRLFWithFirstIndex","extractSubgraphsFromSupergraph_1","coreSpec_1","require$$13","require$$14","federation_internals_1","toStr","isArguments","keysShim","has","isArgs","isEnumerable","implementation","slice","objectKeys","shams","hasSymbols","bind","undefined","$TypeError","$gOPD","getProto","hasOwn","$concat","$replace","GetIntrinsic","callBind","$indexOf","callBound","hasToStringTag","$toString","keys","supportsDescriptors","defineProperty","defineProperties","polyfill","getPolyfill","define","shim","gOPD","isRegex","isSymbolModule","bigIntValueOf","isBigintModule","isBigInt","whichBoxedPrimitive","$Map","$Set","exported","$mapHas","$setHas","isMap","isSet","$WeakMap","$WeakSet","isWeaksetModule","isWeakMap","isWeakSet","whichCollection","$slice","gPO","$mapGet","availableTypedArrays","forEach","typedArrays","toStrTags","getPrototypeOf","tryTypedArrays","isTypedArray","whichTypedArray","querygraph_1","graphPath_1","plan_1"],"mappings":"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AE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,MAAM;CACR,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,EAAE;CACJ,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,EAAE,SAAS;CACX,CAAC;;CC3KD;CACA;CACA;CACA;AACA;CACO,MAAM,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;CACvC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;AACA;CACO,SAAS,KAAK,CAAC,IAAI,EAAE,OAAO,EAAE,WAAW,GAAG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"} \ No newline at end of file diff --git a/router-bridge/bundled/url_polyfill.js b/router-bridge/bundled/url_polyfill.js deleted file mode 100644 index 7ca0dc559..000000000 --- a/router-bridge/bundled/url_polyfill.js +++ /dev/null @@ -1,51499 +0,0 @@ -var url_polyfill = (function () { - 'use strict'; - - var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; - - function getAugmentedNamespace(n) { - if (n.__esModule) return n; - var a = Object.defineProperty({}, '__esModule', {value: true}); - Object.keys(n).forEach(function (k) { - var d = Object.getOwnPropertyDescriptor(n, k); - Object.defineProperty(a, k, d.get ? d : { - enumerable: true, - get: function () { - return n[k]; - } - }); - }); - return a; - } - - var url_polyfill = {}; - - (function(l){function m(){}function k(a,c){a=void 0===a?"utf-8":a;c=void 0===c?{fatal:!1}:c;if(-1===r.indexOf(a.toLowerCase()))throw new RangeError("Failed to construct 'TextDecoder': The encoding label provided ('"+a+"') is invalid.");if(c.fatal)throw Error("Failed to construct 'TextDecoder': the 'fatal' option is unsupported.");}function t(a){return Buffer.from(a.buffer,a.byteOffset,a.byteLength).toString("utf-8")}function u(a){var c=URL.createObjectURL(new Blob([a],{type:"text/plain;charset=UTF-8"})); - try{var f=new XMLHttpRequest;f.open("GET",c,!1);f.send();return f.responseText}catch(e){return q(a)}finally{URL.revokeObjectURL(c);}}function q(a){for(var c=0,f=Math.min(65536,a.length+1),e=new Uint16Array(f),h=[],d=0;;){var b=c=f-1){h.push(String.fromCharCode.apply(null,e.subarray(0,d)));if(!b)return h.join("");a=a.subarray(c);d=c=0;}b=a[c++];if(0===(b&128))e[d++]=b;else if(192===(b&224)){var g=a[c++]&63;e[d++]=(b&31)<<6|g;}else if(224===(b&240)){g=a[c++]&63;var n=a[c++]&63;e[d++]= - (b&31)<<12|g<<6|n;}else if(240===(b&248)){g=a[c++]&63;n=a[c++]&63;var v=a[c++]&63;b=(b&7)<<18|g<<12|n<<6|v;65535>>10&1023|55296,b=56320|b&1023);e[d++]=b;}}}if(l.TextEncoder&&l.TextDecoder)return !1;var r=["utf-8","utf8","unicode-1-1-utf-8"];Object.defineProperty(m.prototype,"encoding",{value:"utf-8"});m.prototype.encode=function(a,c){c=void 0===c?{stream:!1}:c;if(c.stream)throw Error("Failed to encode: the 'stream' option is unsupported.");c=0;for(var f=a.length,e=0,h=Math.max(32, - f+(f>>>1)+7),d=new Uint8Array(h>>>3<<3);c=b){if(c=b)continue}e+4>d.length&&(h+=8,h*=1+c/a.length*2,h=h>>>3<<3,g=new Uint8Array(h),g.set(d),d=g);if(0===(b&4294967168))d[e++]=b;else {if(0===(b&4294965248))d[e++]=b>>>6&31|192;else if(0===(b&4294901760))d[e++]=b>>>12&15|224,d[e++]=b>>>6&63|128;else if(0===(b&4292870144))d[e++]=b>>>18&7|240,d[e++]=b>>>12& - 63|128,d[e++]=b>>>6&63|128;else continue;d[e++]=b&63|128;}}return d.slice?d.slice(0,e):d.subarray(0,e)};Object.defineProperty(k.prototype,"encoding",{value:"utf-8"});Object.defineProperty(k.prototype,"fatal",{value:!1});Object.defineProperty(k.prototype,"ignoreBOM",{value:!1});var p=q;"function"===typeof Buffer&&Buffer.from?p=t:"function"===typeof Blob&&"function"===typeof URL&&"function"===typeof URL.createObjectURL&&(p=u);k.prototype.decode=function(a,c){c=void 0===c?{stream:!1}:c;if(c.stream)throw Error("Failed to decode: the 'stream' option is unsupported."); - a=a instanceof Uint8Array?a:a.buffer instanceof ArrayBuffer?new Uint8Array(a.buffer):new Uint8Array(a);return p(a)};l.TextEncoder=m;l.TextDecoder=k;})("undefined"!==typeof window?window:"undefined"!==typeof commonjsGlobal?commonjsGlobal:commonjsGlobal); - - var whatwgUrl = {}; - - var webidl2jsWrapper = {}; - - var URL$3 = {}; - - var lib = {}; - - (function (exports) { - - function makeException(ErrorType, message, options) { - if (options.globals) { - ErrorType = options.globals[ErrorType.name]; - } - return new ErrorType(`${options.context ? options.context : "Value"} ${message}.`); - } - - function toNumber(value, options) { - if (typeof value === "bigint") { - throw makeException(TypeError, "is a BigInt which cannot be converted to a number", options); - } - if (!options.globals) { - return Number(value); - } - return options.globals.Number(value); - } - - // Round x to the nearest integer, choosing the even integer if it lies halfway between two. - function evenRound(x) { - // There are four cases for numbers with fractional part being .5: - // - // case | x | floor(x) | round(x) | expected | x <> 0 | x % 1 | x & 1 | example - // 1 | 2n + 0.5 | 2n | 2n + 1 | 2n | > | 0.5 | 0 | 0.5 -> 0 - // 2 | 2n + 1.5 | 2n + 1 | 2n + 2 | 2n + 2 | > | 0.5 | 1 | 1.5 -> 2 - // 3 | -2n - 0.5 | -2n - 1 | -2n | -2n | < | -0.5 | 0 | -0.5 -> 0 - // 4 | -2n - 1.5 | -2n - 2 | -2n - 1 | -2n - 2 | < | -0.5 | 1 | -1.5 -> -2 - // (where n is a non-negative integer) - // - // Branch here for cases 1 and 4 - if ((x > 0 && (x % 1) === +0.5 && (x & 1) === 0) || - (x < 0 && (x % 1) === -0.5 && (x & 1) === 1)) { - return censorNegativeZero(Math.floor(x)); - } - - return censorNegativeZero(Math.round(x)); - } - - function integerPart(n) { - return censorNegativeZero(Math.trunc(n)); - } - - function sign(x) { - return x < 0 ? -1 : 1; - } - - function modulo(x, y) { - // https://tc39.github.io/ecma262/#eqn-modulo - // Note that http://stackoverflow.com/a/4467559/3191 does NOT work for large modulos - const signMightNotMatch = x % y; - if (sign(y) !== sign(signMightNotMatch)) { - return signMightNotMatch + y; - } - return signMightNotMatch; - } - - function censorNegativeZero(x) { - return x === 0 ? 0 : x; - } - - function createIntegerConversion(bitLength, { unsigned }) { - let lowerBound, upperBound; - if (unsigned) { - lowerBound = 0; - upperBound = 2 ** bitLength - 1; - } else { - lowerBound = -(2 ** (bitLength - 1)); - upperBound = 2 ** (bitLength - 1) - 1; - } - - const twoToTheBitLength = 2 ** bitLength; - const twoToOneLessThanTheBitLength = 2 ** (bitLength - 1); - - return (value, options = {}) => { - let x = toNumber(value, options); - x = censorNegativeZero(x); - - if (options.enforceRange) { - if (!Number.isFinite(x)) { - throw makeException(TypeError, "is not a finite number", options); - } - - x = integerPart(x); - - if (x < lowerBound || x > upperBound) { - throw makeException( - TypeError, - `is outside the accepted range of ${lowerBound} to ${upperBound}, inclusive`, - options - ); - } - - return x; - } - - if (!Number.isNaN(x) && options.clamp) { - x = Math.min(Math.max(x, lowerBound), upperBound); - x = evenRound(x); - return x; - } - - if (!Number.isFinite(x) || x === 0) { - return 0; - } - x = integerPart(x); - - // Math.pow(2, 64) is not accurately representable in JavaScript, so try to avoid these per-spec operations if - // possible. Hopefully it's an optimization for the non-64-bitLength cases too. - if (x >= lowerBound && x <= upperBound) { - return x; - } - - // These will not work great for bitLength of 64, but oh well. See the README for more details. - x = modulo(x, twoToTheBitLength); - if (!unsigned && x >= twoToOneLessThanTheBitLength) { - return x - twoToTheBitLength; - } - return x; - }; - } - - function createLongLongConversion(bitLength, { unsigned }) { - const upperBound = Number.MAX_SAFE_INTEGER; - const lowerBound = unsigned ? 0 : Number.MIN_SAFE_INTEGER; - const asBigIntN = unsigned ? BigInt.asUintN : BigInt.asIntN; - - return (value, options = {}) => { - let x = toNumber(value, options); - x = censorNegativeZero(x); - - if (options.enforceRange) { - if (!Number.isFinite(x)) { - throw makeException(TypeError, "is not a finite number", options); - } - - x = integerPart(x); - - if (x < lowerBound || x > upperBound) { - throw makeException( - TypeError, - `is outside the accepted range of ${lowerBound} to ${upperBound}, inclusive`, - options - ); - } - - return x; - } - - if (!Number.isNaN(x) && options.clamp) { - x = Math.min(Math.max(x, lowerBound), upperBound); - x = evenRound(x); - return x; - } - - if (!Number.isFinite(x) || x === 0) { - return 0; - } - - let xBigInt = BigInt(integerPart(x)); - xBigInt = asBigIntN(bitLength, xBigInt); - return Number(xBigInt); - }; - } - - exports.any = value => { - return value; - }; - - exports.undefined = () => { - return undefined; - }; - - exports.boolean = value => { - return Boolean(value); - }; - - exports.byte = createIntegerConversion(8, { unsigned: false }); - exports.octet = createIntegerConversion(8, { unsigned: true }); - - exports.short = createIntegerConversion(16, { unsigned: false }); - exports["unsigned short"] = createIntegerConversion(16, { unsigned: true }); - - exports.long = createIntegerConversion(32, { unsigned: false }); - exports["unsigned long"] = createIntegerConversion(32, { unsigned: true }); - - exports["long long"] = createLongLongConversion(64, { unsigned: false }); - exports["unsigned long long"] = createLongLongConversion(64, { unsigned: true }); - - exports.double = (value, options = {}) => { - const x = toNumber(value, options); - - if (!Number.isFinite(x)) { - throw makeException(TypeError, "is not a finite floating-point value", options); - } - - return x; - }; - - exports["unrestricted double"] = (value, options = {}) => { - const x = toNumber(value, options); - - return x; - }; - - exports.float = (value, options = {}) => { - const x = toNumber(value, options); - - if (!Number.isFinite(x)) { - throw makeException(TypeError, "is not a finite floating-point value", options); - } - - if (Object.is(x, -0)) { - return x; - } - - const y = Math.fround(x); - - if (!Number.isFinite(y)) { - throw makeException(TypeError, "is outside the range of a single-precision floating-point value", options); - } - - return y; - }; - - exports["unrestricted float"] = (value, options = {}) => { - const x = toNumber(value, options); - - if (isNaN(x)) { - return x; - } - - if (Object.is(x, -0)) { - return x; - } - - return Math.fround(x); - }; - - exports.DOMString = (value, options = {}) => { - if (options.treatNullAsEmptyString && value === null) { - return ""; - } - - if (typeof value === "symbol") { - throw makeException(TypeError, "is a symbol, which cannot be converted to a string", options); - } - - const StringCtor = options.globals ? options.globals.String : String; - return StringCtor(value); - }; - - exports.ByteString = (value, options = {}) => { - const x = exports.DOMString(value, options); - let c; - for (let i = 0; (c = x.codePointAt(i)) !== undefined; ++i) { - if (c > 255) { - throw makeException(TypeError, "is not a valid ByteString", options); - } - } - - return x; - }; - - exports.USVString = (value, options = {}) => { - const S = exports.DOMString(value, options); - const n = S.length; - const U = []; - for (let i = 0; i < n; ++i) { - const c = S.charCodeAt(i); - if (c < 0xD800 || c > 0xDFFF) { - U.push(String.fromCodePoint(c)); - } else if (0xDC00 <= c && c <= 0xDFFF) { - U.push(String.fromCodePoint(0xFFFD)); - } else if (i === n - 1) { - U.push(String.fromCodePoint(0xFFFD)); - } else { - const d = S.charCodeAt(i + 1); - if (0xDC00 <= d && d <= 0xDFFF) { - const a = c & 0x3FF; - const b = d & 0x3FF; - U.push(String.fromCodePoint((2 << 15) + ((2 << 9) * a) + b)); - ++i; - } else { - U.push(String.fromCodePoint(0xFFFD)); - } - } - } - - return U.join(""); - }; - - exports.object = (value, options = {}) => { - if (value === null || (typeof value !== "object" && typeof value !== "function")) { - throw makeException(TypeError, "is not an object", options); - } - - return value; - }; - - const abByteLengthGetter = - Object.getOwnPropertyDescriptor(ArrayBuffer.prototype, "byteLength").get; - const sabByteLengthGetter = - typeof SharedArrayBuffer === "function" ? - Object.getOwnPropertyDescriptor(SharedArrayBuffer.prototype, "byteLength").get : - null; - - function isNonSharedArrayBuffer(value) { - try { - // This will throw on SharedArrayBuffers, but not detached ArrayBuffers. - // (The spec says it should throw, but the spec conflicts with implementations: https://github.com/tc39/ecma262/issues/678) - abByteLengthGetter.call(value); - - return true; - } catch { - return false; - } - } - - function isSharedArrayBuffer(value) { - try { - sabByteLengthGetter.call(value); - return true; - } catch { - return false; - } - } - - function isArrayBufferDetached(value) { - try { - // eslint-disable-next-line no-new - new Uint8Array(value); - return false; - } catch { - return true; - } - } - - exports.ArrayBuffer = (value, options = {}) => { - if (!isNonSharedArrayBuffer(value)) { - if (options.allowShared && !isSharedArrayBuffer(value)) { - throw makeException(TypeError, "is not an ArrayBuffer or SharedArrayBuffer", options); - } - throw makeException(TypeError, "is not an ArrayBuffer", options); - } - if (isArrayBufferDetached(value)) { - throw makeException(TypeError, "is a detached ArrayBuffer", options); - } - - return value; - }; - - const dvByteLengthGetter = - Object.getOwnPropertyDescriptor(DataView.prototype, "byteLength").get; - exports.DataView = (value, options = {}) => { - try { - dvByteLengthGetter.call(value); - } catch (e) { - throw makeException(TypeError, "is not a DataView", options); - } - - if (!options.allowShared && isSharedArrayBuffer(value.buffer)) { - throw makeException(TypeError, "is backed by a SharedArrayBuffer, which is not allowed", options); - } - if (isArrayBufferDetached(value.buffer)) { - throw makeException(TypeError, "is backed by a detached ArrayBuffer", options); - } - - return value; - }; - - // Returns the unforgeable `TypedArray` constructor name or `undefined`, - // if the `this` value isn't a valid `TypedArray` object. - // - // https://tc39.es/ecma262/#sec-get-%typedarray%.prototype-@@tostringtag - const typedArrayNameGetter = Object.getOwnPropertyDescriptor( - Object.getPrototypeOf(Uint8Array).prototype, - Symbol.toStringTag - ).get; - [ - Int8Array, - Int16Array, - Int32Array, - Uint8Array, - Uint16Array, - Uint32Array, - Uint8ClampedArray, - Float32Array, - Float64Array - ].forEach(func => { - const { name } = func; - const article = /^[AEIOU]/u.test(name) ? "an" : "a"; - exports[name] = (value, options = {}) => { - if (!ArrayBuffer.isView(value) || typedArrayNameGetter.call(value) !== name) { - throw makeException(TypeError, `is not ${article} ${name} object`, options); - } - if (!options.allowShared && isSharedArrayBuffer(value.buffer)) { - throw makeException(TypeError, "is a view on a SharedArrayBuffer, which is not allowed", options); - } - if (isArrayBufferDetached(value.buffer)) { - throw makeException(TypeError, "is a view on a detached ArrayBuffer", options); - } - - return value; - }; - }); - - // Common definitions - - exports.ArrayBufferView = (value, options = {}) => { - if (!ArrayBuffer.isView(value)) { - throw makeException(TypeError, "is not a view on an ArrayBuffer or SharedArrayBuffer", options); - } - - if (!options.allowShared && isSharedArrayBuffer(value.buffer)) { - throw makeException(TypeError, "is a view on a SharedArrayBuffer, which is not allowed", options); - } - - if (isArrayBufferDetached(value.buffer)) { - throw makeException(TypeError, "is a view on a detached ArrayBuffer", options); - } - return value; - }; - - exports.BufferSource = (value, options = {}) => { - if (ArrayBuffer.isView(value)) { - if (!options.allowShared && isSharedArrayBuffer(value.buffer)) { - throw makeException(TypeError, "is a view on a SharedArrayBuffer, which is not allowed", options); - } - - if (isArrayBufferDetached(value.buffer)) { - throw makeException(TypeError, "is a view on a detached ArrayBuffer", options); - } - return value; - } - - if (!options.allowShared && !isNonSharedArrayBuffer(value)) { - throw makeException(TypeError, "is not an ArrayBuffer or a view on one", options); - } - if (options.allowShared && !isSharedArrayBuffer(value) && !isNonSharedArrayBuffer(value)) { - throw makeException(TypeError, "is not an ArrayBuffer, SharedArrayBuffer, or a view on one", options); - } - if (isArrayBufferDetached(value)) { - throw makeException(TypeError, "is a detached ArrayBuffer", options); - } - - return value; - }; - - exports.DOMTimeStamp = exports["unsigned long long"]; - }(lib)); - - var utils$1 = {exports: {}}; - - (function (module, exports) { - - // Returns "Type(value) is Object" in ES terminology. - function isObject(value) { - return (typeof value === "object" && value !== null) || typeof value === "function"; - } - - const hasOwn = Function.prototype.call.bind(Object.prototype.hasOwnProperty); - - // Like `Object.assign`, but using `[[GetOwnProperty]]` and `[[DefineOwnProperty]]` - // instead of `[[Get]]` and `[[Set]]` and only allowing objects - function define(target, source) { - for (const key of Reflect.ownKeys(source)) { - const descriptor = Reflect.getOwnPropertyDescriptor(source, key); - if (descriptor && !Reflect.defineProperty(target, key, descriptor)) { - throw new TypeError(`Cannot redefine property: ${String(key)}`); - } - } - } - - function newObjectInRealm(globalObject, object) { - const ctorRegistry = initCtorRegistry(globalObject); - return Object.defineProperties( - Object.create(ctorRegistry["%Object.prototype%"]), - Object.getOwnPropertyDescriptors(object) - ); - } - - const wrapperSymbol = Symbol("wrapper"); - const implSymbol = Symbol("impl"); - const sameObjectCaches = Symbol("SameObject caches"); - const ctorRegistrySymbol = Symbol.for("[webidl2js] constructor registry"); - - const AsyncIteratorPrototype = Object.getPrototypeOf(Object.getPrototypeOf(async function* () {}).prototype); - - function initCtorRegistry(globalObject) { - if (hasOwn(globalObject, ctorRegistrySymbol)) { - return globalObject[ctorRegistrySymbol]; - } - - const ctorRegistry = Object.create(null); - - // In addition to registering all the WebIDL2JS-generated types in the constructor registry, - // we also register a few intrinsics that we make use of in generated code, since they are not - // easy to grab from the globalObject variable. - ctorRegistry["%Object.prototype%"] = globalObject.Object.prototype; - ctorRegistry["%IteratorPrototype%"] = Object.getPrototypeOf( - Object.getPrototypeOf(new globalObject.Array()[Symbol.iterator]()) - ); - - try { - ctorRegistry["%AsyncIteratorPrototype%"] = Object.getPrototypeOf( - Object.getPrototypeOf( - globalObject.eval("(async function* () {})").prototype - ) - ); - } catch { - ctorRegistry["%AsyncIteratorPrototype%"] = AsyncIteratorPrototype; - } - - globalObject[ctorRegistrySymbol] = ctorRegistry; - return ctorRegistry; - } - - function getSameObject(wrapper, prop, creator) { - if (!wrapper[sameObjectCaches]) { - wrapper[sameObjectCaches] = Object.create(null); - } - - if (prop in wrapper[sameObjectCaches]) { - return wrapper[sameObjectCaches][prop]; - } - - wrapper[sameObjectCaches][prop] = creator(); - return wrapper[sameObjectCaches][prop]; - } - - function wrapperForImpl(impl) { - return impl ? impl[wrapperSymbol] : null; - } - - function implForWrapper(wrapper) { - return wrapper ? wrapper[implSymbol] : null; - } - - function tryWrapperForImpl(impl) { - const wrapper = wrapperForImpl(impl); - return wrapper ? wrapper : impl; - } - - function tryImplForWrapper(wrapper) { - const impl = implForWrapper(wrapper); - return impl ? impl : wrapper; - } - - const iterInternalSymbol = Symbol("internal"); - - function isArrayIndexPropName(P) { - if (typeof P !== "string") { - return false; - } - const i = P >>> 0; - if (i === 2 ** 32 - 1) { - return false; - } - const s = `${i}`; - if (P !== s) { - return false; - } - return true; - } - - const byteLengthGetter = - Object.getOwnPropertyDescriptor(ArrayBuffer.prototype, "byteLength").get; - function isArrayBuffer(value) { - try { - byteLengthGetter.call(value); - return true; - } catch (e) { - return false; - } - } - - function iteratorResult([key, value], kind) { - let result; - switch (kind) { - case "key": - result = key; - break; - case "value": - result = value; - break; - case "key+value": - result = [key, value]; - break; - } - return { value: result, done: false }; - } - - const supportsPropertyIndex = Symbol("supports property index"); - const supportedPropertyIndices = Symbol("supported property indices"); - const supportsPropertyName = Symbol("supports property name"); - const supportedPropertyNames = Symbol("supported property names"); - const indexedGet = Symbol("indexed property get"); - const indexedSetNew = Symbol("indexed property set new"); - const indexedSetExisting = Symbol("indexed property set existing"); - const namedGet = Symbol("named property get"); - const namedSetNew = Symbol("named property set new"); - const namedSetExisting = Symbol("named property set existing"); - const namedDelete = Symbol("named property delete"); - - const asyncIteratorNext = Symbol("async iterator get the next iteration result"); - const asyncIteratorReturn = Symbol("async iterator return steps"); - const asyncIteratorInit = Symbol("async iterator initialization steps"); - const asyncIteratorEOI = Symbol("async iterator end of iteration"); - - module.exports = { - isObject, - hasOwn, - define, - newObjectInRealm, - wrapperSymbol, - implSymbol, - getSameObject, - ctorRegistrySymbol, - initCtorRegistry, - wrapperForImpl, - implForWrapper, - tryWrapperForImpl, - tryImplForWrapper, - iterInternalSymbol, - isArrayBuffer, - isArrayIndexPropName, - supportsPropertyIndex, - supportedPropertyIndices, - supportsPropertyName, - supportedPropertyNames, - indexedGet, - indexedSetNew, - indexedSetExisting, - namedGet, - namedSetNew, - namedSetExisting, - namedDelete, - asyncIteratorNext, - asyncIteratorReturn, - asyncIteratorInit, - asyncIteratorEOI, - iteratorResult - }; - }(utils$1)); - - var URLImpl = {}; - - var urlStateMachine$1 = {exports: {}}; - - /*! https://mths.be/punycode v1.4.1 by @mathias */ - - - /** Highest positive signed 32-bit float value */ - var maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1 - - /** Bootstring parameters */ - var base = 36; - var tMin = 1; - var tMax = 26; - var skew = 38; - var damp = 700; - var initialBias = 72; - var initialN = 128; // 0x80 - var delimiter = '-'; // '\x2D' - - /** Regular expressions */ - var regexPunycode = /^xn--/; - var regexNonASCII = /[^\x20-\x7E]/; // unprintable ASCII chars + non-ASCII chars - var regexSeparators = /[\x2E\u3002\uFF0E\uFF61]/g; // RFC 3490 separators - - /** Error messages */ - var errors = { - 'overflow': 'Overflow: input needs wider integers to process', - 'not-basic': 'Illegal input >= 0x80 (not a basic code point)', - 'invalid-input': 'Invalid input' - }; - - /** Convenience shortcuts */ - var baseMinusTMin = base - tMin; - var floor = Math.floor; - var stringFromCharCode = String.fromCharCode; - - /*--------------------------------------------------------------------------*/ - - /** - * A generic error utility function. - * @private - * @param {String} type The error type. - * @returns {Error} Throws a `RangeError` with the applicable error message. - */ - function error(type) { - throw new RangeError(errors[type]); - } - - /** - * A generic `Array#map` utility function. - * @private - * @param {Array} array The array to iterate over. - * @param {Function} callback The function that gets called for every array - * item. - * @returns {Array} A new array of values returned by the callback function. - */ - function map(array, fn) { - var length = array.length; - var result = []; - while (length--) { - result[length] = fn(array[length]); - } - return result; - } - - /** - * A simple `Array#map`-like wrapper to work with domain name strings or email - * addresses. - * @private - * @param {String} domain The domain name or email address. - * @param {Function} callback The function that gets called for every - * character. - * @returns {Array} A new string of characters returned by the callback - * function. - */ - function mapDomain(string, fn) { - var parts = string.split('@'); - var result = ''; - if (parts.length > 1) { - // In email addresses, only the domain name should be punycoded. Leave - // the local part (i.e. everything up to `@`) intact. - result = parts[0] + '@'; - string = parts[1]; - } - // Avoid `split(regex)` for IE8 compatibility. See #17. - string = string.replace(regexSeparators, '\x2E'); - var labels = string.split('.'); - var encoded = map(labels, fn).join('.'); - return result + encoded; - } - - /** - * Creates an array containing the numeric code points of each Unicode - * character in the string. While JavaScript uses UCS-2 internally, - * this function will convert a pair of surrogate halves (each of which - * UCS-2 exposes as separate characters) into a single code point, - * matching UTF-16. - * @see `punycode.ucs2.encode` - * @see - * @memberOf punycode.ucs2 - * @name decode - * @param {String} string The Unicode input string (UCS-2). - * @returns {Array} The new array of code points. - */ - function ucs2decode(string) { - var output = [], - counter = 0, - length = string.length, - value, - extra; - while (counter < length) { - value = string.charCodeAt(counter++); - if (value >= 0xD800 && value <= 0xDBFF && counter < length) { - // high surrogate, and there is a next character - extra = string.charCodeAt(counter++); - if ((extra & 0xFC00) == 0xDC00) { // low surrogate - output.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000); - } else { - // unmatched surrogate; only append this code unit, in case the next - // code unit is the high surrogate of a surrogate pair - output.push(value); - counter--; - } - } else { - output.push(value); - } - } - return output; - } - - /** - * Creates a string based on an array of numeric code points. - * @see `punycode.ucs2.decode` - * @memberOf punycode.ucs2 - * @name encode - * @param {Array} codePoints The array of numeric code points. - * @returns {String} The new Unicode string (UCS-2). - */ - function ucs2encode(array) { - return map(array, function(value) { - var output = ''; - if (value > 0xFFFF) { - value -= 0x10000; - output += stringFromCharCode(value >>> 10 & 0x3FF | 0xD800); - value = 0xDC00 | value & 0x3FF; - } - output += stringFromCharCode(value); - return output; - }).join(''); - } - - /** - * Converts a basic code point into a digit/integer. - * @see `digitToBasic()` - * @private - * @param {Number} codePoint The basic numeric code point value. - * @returns {Number} The numeric value of a basic code point (for use in - * representing integers) in the range `0` to `base - 1`, or `base` if - * the code point does not represent a value. - */ - function basicToDigit(codePoint) { - if (codePoint - 48 < 10) { - return codePoint - 22; - } - if (codePoint - 65 < 26) { - return codePoint - 65; - } - if (codePoint - 97 < 26) { - return codePoint - 97; - } - return base; - } - - /** - * Converts a digit/integer into a basic code point. - * @see `basicToDigit()` - * @private - * @param {Number} digit The numeric value of a basic code point. - * @returns {Number} The basic code point whose value (when used for - * representing integers) is `digit`, which needs to be in the range - * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is - * used; else, the lowercase form is used. The behavior is undefined - * if `flag` is non-zero and `digit` has no uppercase form. - */ - function digitToBasic(digit, flag) { - // 0..25 map to ASCII a..z or A..Z - // 26..35 map to ASCII 0..9 - return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5); - } - - /** - * Bias adaptation function as per section 3.4 of RFC 3492. - * https://tools.ietf.org/html/rfc3492#section-3.4 - * @private - */ - function adapt(delta, numPoints, firstTime) { - var k = 0; - delta = firstTime ? floor(delta / damp) : delta >> 1; - delta += floor(delta / numPoints); - for ( /* no initialization */ ; delta > baseMinusTMin * tMax >> 1; k += base) { - delta = floor(delta / baseMinusTMin); - } - return floor(k + (baseMinusTMin + 1) * delta / (delta + skew)); - } - - /** - * Converts a Punycode string of ASCII-only symbols to a string of Unicode - * symbols. - * @memberOf punycode - * @param {String} input The Punycode string of ASCII-only symbols. - * @returns {String} The resulting string of Unicode symbols. - */ - function decode(input) { - // Don't use UCS-2 - var output = [], - inputLength = input.length, - out, - i = 0, - n = initialN, - bias = initialBias, - basic, - j, - index, - oldi, - w, - k, - digit, - t, - /** Cached calculation results */ - baseMinusT; - - // Handle the basic code points: let `basic` be the number of input code - // points before the last delimiter, or `0` if there is none, then copy - // the first basic code points to the output. - - basic = input.lastIndexOf(delimiter); - if (basic < 0) { - basic = 0; - } - - for (j = 0; j < basic; ++j) { - // if it's not a basic code point - if (input.charCodeAt(j) >= 0x80) { - error('not-basic'); - } - output.push(input.charCodeAt(j)); - } - - // Main decoding loop: start just after the last delimiter if any basic code - // points were copied; start at the beginning otherwise. - - for (index = basic > 0 ? basic + 1 : 0; index < inputLength; /* no final expression */ ) { - - // `index` is the index of the next character to be consumed. - // Decode a generalized variable-length integer into `delta`, - // which gets added to `i`. The overflow checking is easier - // if we increase `i` as we go, then subtract off its starting - // value at the end to obtain `delta`. - for (oldi = i, w = 1, k = base; /* no condition */ ; k += base) { - - if (index >= inputLength) { - error('invalid-input'); - } - - digit = basicToDigit(input.charCodeAt(index++)); - - if (digit >= base || digit > floor((maxInt - i) / w)) { - error('overflow'); - } - - i += digit * w; - t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias); - - if (digit < t) { - break; - } - - baseMinusT = base - t; - if (w > floor(maxInt / baseMinusT)) { - error('overflow'); - } - - w *= baseMinusT; - - } - - out = output.length + 1; - bias = adapt(i - oldi, out, oldi == 0); - - // `i` was supposed to wrap around from `out` to `0`, - // incrementing `n` each time, so we'll fix that now: - if (floor(i / out) > maxInt - n) { - error('overflow'); - } - - n += floor(i / out); - i %= out; - - // Insert `n` at position `i` of the output - output.splice(i++, 0, n); - - } - - return ucs2encode(output); - } - - /** - * Converts a string of Unicode symbols (e.g. a domain name label) to a - * Punycode string of ASCII-only symbols. - * @memberOf punycode - * @param {String} input The string of Unicode symbols. - * @returns {String} The resulting Punycode string of ASCII-only symbols. - */ - function encode(input) { - var n, - delta, - handledCPCount, - basicLength, - bias, - j, - m, - q, - k, - t, - currentValue, - output = [], - /** `inputLength` will hold the number of code points in `input`. */ - inputLength, - /** Cached calculation results */ - handledCPCountPlusOne, - baseMinusT, - qMinusT; - - // Convert the input in UCS-2 to Unicode - input = ucs2decode(input); - - // Cache the length - inputLength = input.length; - - // Initialize the state - n = initialN; - delta = 0; - bias = initialBias; - - // Handle the basic code points - for (j = 0; j < inputLength; ++j) { - currentValue = input[j]; - if (currentValue < 0x80) { - output.push(stringFromCharCode(currentValue)); - } - } - - handledCPCount = basicLength = output.length; - - // `handledCPCount` is the number of code points that have been handled; - // `basicLength` is the number of basic code points. - - // Finish the basic string - if it is not empty - with a delimiter - if (basicLength) { - output.push(delimiter); - } - - // Main encoding loop: - while (handledCPCount < inputLength) { - - // All non-basic code points < n have been handled already. Find the next - // larger one: - for (m = maxInt, j = 0; j < inputLength; ++j) { - currentValue = input[j]; - if (currentValue >= n && currentValue < m) { - m = currentValue; - } - } - - // Increase `delta` enough to advance the decoder's state to , - // but guard against overflow - handledCPCountPlusOne = handledCPCount + 1; - if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) { - error('overflow'); - } - - delta += (m - n) * handledCPCountPlusOne; - n = m; - - for (j = 0; j < inputLength; ++j) { - currentValue = input[j]; - - if (currentValue < n && ++delta > maxInt) { - error('overflow'); - } - - if (currentValue == n) { - // Represent delta as a generalized variable-length integer - for (q = delta, k = base; /* no condition */ ; k += base) { - t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias); - if (q < t) { - break; - } - qMinusT = q - t; - baseMinusT = base - t; - output.push( - stringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0)) - ); - q = floor(qMinusT / baseMinusT); - } - - output.push(stringFromCharCode(digitToBasic(q, 0))); - bias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength); - delta = 0; - ++handledCPCount; - } - } - - ++delta; - ++n; - - } - return output.join(''); - } - - /** - * Converts a Punycode string representing a domain name or an email address - * to Unicode. Only the Punycoded parts of the input will be converted, i.e. - * it doesn't matter if you call it on a string that has already been - * converted to Unicode. - * @memberOf punycode - * @param {String} input The Punycoded domain name or email address to - * convert to Unicode. - * @returns {String} The Unicode representation of the given Punycode - * string. - */ - function toUnicode$1(input) { - return mapDomain(input, function(string) { - return regexPunycode.test(string) ? - decode(string.slice(4).toLowerCase()) : - string; - }); - } - - /** - * Converts a Unicode string representing a domain name or an email address to - * Punycode. Only the non-ASCII parts of the domain name will be converted, - * i.e. it doesn't matter if you call it with a domain that's already in - * ASCII. - * @memberOf punycode - * @param {String} input The domain name or email address to convert, as a - * Unicode string. - * @returns {String} The Punycode representation of the given domain name or - * email address. - */ - function toASCII$1(input) { - return mapDomain(input, function(string) { - return regexNonASCII.test(string) ? - 'xn--' + encode(string) : - string; - }); - } - var version = '1.4.1'; - /** - * An object of methods to convert from JavaScript's internal character - * representation (UCS-2) to Unicode code points, and back. - * @see - * @memberOf punycode - * @type Object - */ - - var ucs2 = { - decode: ucs2decode, - encode: ucs2encode - }; - var punycode$1 = { - version: version, - ucs2: ucs2, - toASCII: toASCII$1, - toUnicode: toUnicode$1, - encode: encode, - decode: decode - }; - - var punycode$2 = /*#__PURE__*/Object.freeze({ - __proto__: null, - decode: decode, - encode: encode, - toUnicode: toUnicode$1, - toASCII: toASCII$1, - version: version, - ucs2: ucs2, - 'default': punycode$1 - }); - - var require$$0 = /*@__PURE__*/getAugmentedNamespace(punycode$2); - - const combiningMarks = /[\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0898-\u089F\u08CA-\u08E1\u08E3-\u0903\u093A-\u093C\u093E-\u094F\u0951-\u0957\u0962\u0963\u0981-\u0983\u09BC\u09BE-\u09C4\u09C7\u09C8\u09CB-\u09CD\u09D7\u09E2\u09E3\u09FE\u0A01-\u0A03\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81-\u0A83\u0ABC\u0ABE-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01-\u0B03\u0B3C\u0B3E-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B55-\u0B57\u0B62\u0B63\u0B82\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD7\u0C00-\u0C04\u0C3C\u0C3E-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81-\u0C83\u0CBC\u0CBE-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CE2\u0CE3\u0D00-\u0D03\u0D3B\u0D3C\u0D3E-\u0D44\u0D46-\u0D48\u0D4A-\u0D4D\u0D57\u0D62\u0D63\u0D81-\u0D83\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DF2\u0DF3\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECD\u0F18\u0F19\u0F35\u0F37\u0F39\u0F3E\u0F3F\u0F71-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102B-\u103E\u1056-\u1059\u105E-\u1060\u1062-\u1064\u1067-\u106D\u1071-\u1074\u1082-\u108D\u108F\u109A-\u109D\u135D-\u135F\u1712-\u1715\u1732-\u1734\u1752\u1753\u1772\u1773\u17B4-\u17D3\u17DD\u180B-\u180D\u180F\u1885\u1886\u18A9\u1920-\u192B\u1930-\u193B\u1A17-\u1A1B\u1A55-\u1A5E\u1A60-\u1A7C\u1A7F\u1AB0-\u1ACE\u1B00-\u1B04\u1B34-\u1B44\u1B6B-\u1B73\u1B80-\u1B82\u1BA1-\u1BAD\u1BE6-\u1BF3\u1C24-\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE8\u1CED\u1CF4\u1CF7-\u1CF9\u1DC0-\u1DFF\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302F\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA823-\uA827\uA82C\uA880\uA881\uA8B4-\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA953\uA980-\uA983\uA9B3-\uA9C0\uA9E5\uAA29-\uAA36\uAA43\uAA4C\uAA4D\uAA7B-\uAA7D\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEB-\uAAEF\uAAF5\uAAF6\uABE3-\uABEA\uABEC\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\u{101FD}\u{102E0}\u{10376}-\u{1037A}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10D24}-\u{10D27}\u{10EAB}\u{10EAC}\u{10F46}-\u{10F50}\u{10F82}-\u{10F85}\u{11000}-\u{11002}\u{11038}-\u{11046}\u{11070}\u{11073}\u{11074}\u{1107F}-\u{11082}\u{110B0}-\u{110BA}\u{110C2}\u{11100}-\u{11102}\u{11127}-\u{11134}\u{11145}\u{11146}\u{11173}\u{11180}-\u{11182}\u{111B3}-\u{111C0}\u{111C9}-\u{111CC}\u{111CE}\u{111CF}\u{1122C}-\u{11237}\u{1123E}\u{112DF}-\u{112EA}\u{11300}-\u{11303}\u{1133B}\u{1133C}\u{1133E}-\u{11344}\u{11347}\u{11348}\u{1134B}-\u{1134D}\u{11357}\u{11362}\u{11363}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{11435}-\u{11446}\u{1145E}\u{114B0}-\u{114C3}\u{115AF}-\u{115B5}\u{115B8}-\u{115C0}\u{115DC}\u{115DD}\u{11630}-\u{11640}\u{116AB}-\u{116B7}\u{1171D}-\u{1172B}\u{1182C}-\u{1183A}\u{11930}-\u{11935}\u{11937}\u{11938}\u{1193B}-\u{1193E}\u{11940}\u{11942}\u{11943}\u{119D1}-\u{119D7}\u{119DA}-\u{119E0}\u{119E4}\u{11A01}-\u{11A0A}\u{11A33}-\u{11A39}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A5B}\u{11A8A}-\u{11A99}\u{11C2F}-\u{11C36}\u{11C38}-\u{11C3F}\u{11C92}-\u{11CA7}\u{11CA9}-\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D8A}-\u{11D8E}\u{11D90}\u{11D91}\u{11D93}-\u{11D97}\u{11EF3}-\u{11EF6}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F51}-\u{16F87}\u{16F8F}-\u{16F92}\u{16FE4}\u{16FF0}\u{16FF1}\u{1BC9D}\u{1BC9E}\u{1CF00}-\u{1CF2D}\u{1CF30}-\u{1CF46}\u{1D165}-\u{1D169}\u{1D16D}-\u{1D172}\u{1D17B}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D242}-\u{1D244}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E130}-\u{1E136}\u{1E2AE}\u{1E2EC}-\u{1E2EF}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94A}\u{E0100}-\u{E01EF}]/u; - const combiningClassVirama = /[\u094D\u09CD\u0A4D\u0ACD\u0B4D\u0BCD\u0C4D\u0CCD\u0D3B\u0D3C\u0D4D\u0DCA\u0E3A\u0EBA\u0F84\u1039\u103A\u1714\u1734\u17D2\u1A60\u1B44\u1BAA\u1BAB\u1BF2\u1BF3\u2D7F\uA806\uA8C4\uA953\uA9C0\uAAF6\uABED\u{10A3F}\u{11046}\u{1107F}\u{110B9}\u{11133}\u{11134}\u{111C0}\u{11235}\u{112EA}\u{1134D}\u{11442}\u{114C2}\u{115BF}\u{1163F}\u{116B6}\u{1172B}\u{11839}\u{119E0}\u{11A34}\u{11A47}\u{11A99}\u{11C3F}\u{11D44}\u{11D45}\u{11D97}]/u; - const validZWNJ = /[\u0620\u0626\u0628\u062A-\u062E\u0633-\u063F\u0641-\u0647\u0649\u064A\u066E\u066F\u0678-\u0687\u069A-\u06BF\u06C1\u06C2\u06CC\u06CE\u06D0\u06D1\u06FA-\u06FC\u06FF\u0712-\u0714\u071A-\u071D\u071F-\u0727\u0729\u072B\u072D\u072E\u074E-\u0758\u075C-\u076A\u076D-\u0770\u0772\u0775-\u0777\u077A-\u077F\u07CA-\u07EA\u0841-\u0845\u0848\u084A-\u0853\u0855\u0860\u0862-\u0865\u0868\u08A0-\u08A9\u08AF\u08B0\u08B3\u08B4\u08B6-\u08B8\u08BA-\u08BD\u1807\u1820-\u1878\u1887-\u18A8\u18AA\uA840-\uA872\u{10AC0}-\u{10AC4}\u{10ACD}\u{10AD3}-\u{10ADC}\u{10ADE}-\u{10AE0}\u{10AEB}-\u{10AEE}\u{10B80}\u{10B82}\u{10B86}-\u{10B88}\u{10B8A}\u{10B8B}\u{10B8D}\u{10B90}\u{10BAD}\u{10BAE}\u{10D00}-\u{10D21}\u{10D23}\u{10F30}-\u{10F32}\u{10F34}-\u{10F44}\u{10F51}-\u{10F53}\u{1E900}-\u{1E943}][\xAD\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u061C\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u070F\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u08D3-\u08E1\u08E3-\u0902\u093A\u093C\u0941-\u0948\u094D\u0951-\u0957\u0962\u0963\u0981\u09BC\u09C1-\u09C4\u09CD\u09E2\u09E3\u09FE\u0A01\u0A02\u0A3C\u0A41\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81\u0A82\u0ABC\u0AC1-\u0AC5\u0AC7\u0AC8\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01\u0B3C\u0B3F\u0B41-\u0B44\u0B4D\u0B56\u0B62\u0B63\u0B82\u0BC0\u0BCD\u0C00\u0C04\u0C3E-\u0C40\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81\u0CBC\u0CBF\u0CC6\u0CCC\u0CCD\u0CE2\u0CE3\u0D00\u0D01\u0D3B\u0D3C\u0D41-\u0D44\u0D4D\u0D62\u0D63\u0DCA\u0DD2-\u0DD4\u0DD6\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECD\u0F18\u0F19\u0F35\u0F37\u0F39\u0F71-\u0F7E\u0F80-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102D-\u1030\u1032-\u1037\u1039\u103A\u103D\u103E\u1058\u1059\u105E-\u1060\u1071-\u1074\u1082\u1085\u1086\u108D\u109D\u135D-\u135F\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17B4\u17B5\u17B7-\u17BD\u17C6\u17C9-\u17D3\u17DD\u180B-\u180D\u1885\u1886\u18A9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193B\u1A17\u1A18\u1A1B\u1A56\u1A58-\u1A5E\u1A60\u1A62\u1A65-\u1A6C\u1A73-\u1A7C\u1A7F\u1AB0-\u1ABE\u1B00-\u1B03\u1B34\u1B36-\u1B3A\u1B3C\u1B42\u1B6B-\u1B73\u1B80\u1B81\u1BA2-\u1BA5\u1BA8\u1BA9\u1BAB-\u1BAD\u1BE6\u1BE8\u1BE9\u1BED\u1BEF-\u1BF1\u1C2C-\u1C33\u1C36\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE0\u1CE2-\u1CE8\u1CED\u1CF4\u1CF8\u1CF9\u1DC0-\u1DF9\u1DFB-\u1DFF\u200B\u200E\u200F\u202A-\u202E\u2060-\u2064\u206A-\u206F\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302D\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA825\uA826\uA8C4\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA951\uA980-\uA982\uA9B3\uA9B6-\uA9B9\uA9BC\uA9BD\uA9E5\uAA29-\uAA2E\uAA31\uAA32\uAA35\uAA36\uAA43\uAA4C\uAA7C\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEC\uAAED\uAAF6\uABE5\uABE8\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\uFEFF\uFFF9-\uFFFB\u{101FD}\u{102E0}\u{10376}-\u{1037A}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10D24}-\u{10D27}\u{10F46}-\u{10F50}\u{11001}\u{11038}-\u{11046}\u{1107F}-\u{11081}\u{110B3}-\u{110B6}\u{110B9}\u{110BA}\u{11100}-\u{11102}\u{11127}-\u{1112B}\u{1112D}-\u{11134}\u{11173}\u{11180}\u{11181}\u{111B6}-\u{111BE}\u{111C9}-\u{111CC}\u{1122F}-\u{11231}\u{11234}\u{11236}\u{11237}\u{1123E}\u{112DF}\u{112E3}-\u{112EA}\u{11300}\u{11301}\u{1133B}\u{1133C}\u{11340}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{11438}-\u{1143F}\u{11442}-\u{11444}\u{11446}\u{1145E}\u{114B3}-\u{114B8}\u{114BA}\u{114BF}\u{114C0}\u{114C2}\u{114C3}\u{115B2}-\u{115B5}\u{115BC}\u{115BD}\u{115BF}\u{115C0}\u{115DC}\u{115DD}\u{11633}-\u{1163A}\u{1163D}\u{1163F}\u{11640}\u{116AB}\u{116AD}\u{116B0}-\u{116B5}\u{116B7}\u{1171D}-\u{1171F}\u{11722}-\u{11725}\u{11727}-\u{1172B}\u{1182F}-\u{11837}\u{11839}\u{1183A}\u{119D4}-\u{119D7}\u{119DA}\u{119DB}\u{119E0}\u{11A01}-\u{11A0A}\u{11A33}-\u{11A38}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A56}\u{11A59}-\u{11A5B}\u{11A8A}-\u{11A96}\u{11A98}\u{11A99}\u{11C30}-\u{11C36}\u{11C38}-\u{11C3D}\u{11C3F}\u{11C92}-\u{11CA7}\u{11CAA}-\u{11CB0}\u{11CB2}\u{11CB3}\u{11CB5}\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D90}\u{11D91}\u{11D95}\u{11D97}\u{11EF3}\u{11EF4}\u{13430}-\u{13438}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F8F}-\u{16F92}\u{1BC9D}\u{1BC9E}\u{1BCA0}-\u{1BCA3}\u{1D167}-\u{1D169}\u{1D173}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D242}-\u{1D244}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E130}-\u{1E136}\u{1E2EC}-\u{1E2EF}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94B}\u{E0001}\u{E0020}-\u{E007F}\u{E0100}-\u{E01EF}]*\u200C[\xAD\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u061C\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u070F\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u08D3-\u08E1\u08E3-\u0902\u093A\u093C\u0941-\u0948\u094D\u0951-\u0957\u0962\u0963\u0981\u09BC\u09C1-\u09C4\u09CD\u09E2\u09E3\u09FE\u0A01\u0A02\u0A3C\u0A41\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81\u0A82\u0ABC\u0AC1-\u0AC5\u0AC7\u0AC8\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01\u0B3C\u0B3F\u0B41-\u0B44\u0B4D\u0B56\u0B62\u0B63\u0B82\u0BC0\u0BCD\u0C00\u0C04\u0C3E-\u0C40\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81\u0CBC\u0CBF\u0CC6\u0CCC\u0CCD\u0CE2\u0CE3\u0D00\u0D01\u0D3B\u0D3C\u0D41-\u0D44\u0D4D\u0D62\u0D63\u0DCA\u0DD2-\u0DD4\u0DD6\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECD\u0F18\u0F19\u0F35\u0F37\u0F39\u0F71-\u0F7E\u0F80-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102D-\u1030\u1032-\u1037\u1039\u103A\u103D\u103E\u1058\u1059\u105E-\u1060\u1071-\u1074\u1082\u1085\u1086\u108D\u109D\u135D-\u135F\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17B4\u17B5\u17B7-\u17BD\u17C6\u17C9-\u17D3\u17DD\u180B-\u180D\u1885\u1886\u18A9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193B\u1A17\u1A18\u1A1B\u1A56\u1A58-\u1A5E\u1A60\u1A62\u1A65-\u1A6C\u1A73-\u1A7C\u1A7F\u1AB0-\u1ABE\u1B00-\u1B03\u1B34\u1B36-\u1B3A\u1B3C\u1B42\u1B6B-\u1B73\u1B80\u1B81\u1BA2-\u1BA5\u1BA8\u1BA9\u1BAB-\u1BAD\u1BE6\u1BE8\u1BE9\u1BED\u1BEF-\u1BF1\u1C2C-\u1C33\u1C36\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE0\u1CE2-\u1CE8\u1CED\u1CF4\u1CF8\u1CF9\u1DC0-\u1DF9\u1DFB-\u1DFF\u200B\u200E\u200F\u202A-\u202E\u2060-\u2064\u206A-\u206F\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302D\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA825\uA826\uA8C4\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA951\uA980-\uA982\uA9B3\uA9B6-\uA9B9\uA9BC\uA9BD\uA9E5\uAA29-\uAA2E\uAA31\uAA32\uAA35\uAA36\uAA43\uAA4C\uAA7C\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEC\uAAED\uAAF6\uABE5\uABE8\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\uFEFF\uFFF9-\uFFFB\u{101FD}\u{102E0}\u{10376}-\u{1037A}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10D24}-\u{10D27}\u{10F46}-\u{10F50}\u{11001}\u{11038}-\u{11046}\u{1107F}-\u{11081}\u{110B3}-\u{110B6}\u{110B9}\u{110BA}\u{11100}-\u{11102}\u{11127}-\u{1112B}\u{1112D}-\u{11134}\u{11173}\u{11180}\u{11181}\u{111B6}-\u{111BE}\u{111C9}-\u{111CC}\u{1122F}-\u{11231}\u{11234}\u{11236}\u{11237}\u{1123E}\u{112DF}\u{112E3}-\u{112EA}\u{11300}\u{11301}\u{1133B}\u{1133C}\u{11340}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{11438}-\u{1143F}\u{11442}-\u{11444}\u{11446}\u{1145E}\u{114B3}-\u{114B8}\u{114BA}\u{114BF}\u{114C0}\u{114C2}\u{114C3}\u{115B2}-\u{115B5}\u{115BC}\u{115BD}\u{115BF}\u{115C0}\u{115DC}\u{115DD}\u{11633}-\u{1163A}\u{1163D}\u{1163F}\u{11640}\u{116AB}\u{116AD}\u{116B0}-\u{116B5}\u{116B7}\u{1171D}-\u{1171F}\u{11722}-\u{11725}\u{11727}-\u{1172B}\u{1182F}-\u{11837}\u{11839}\u{1183A}\u{119D4}-\u{119D7}\u{119DA}\u{119DB}\u{119E0}\u{11A01}-\u{11A0A}\u{11A33}-\u{11A38}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A56}\u{11A59}-\u{11A5B}\u{11A8A}-\u{11A96}\u{11A98}\u{11A99}\u{11C30}-\u{11C36}\u{11C38}-\u{11C3D}\u{11C3F}\u{11C92}-\u{11CA7}\u{11CAA}-\u{11CB0}\u{11CB2}\u{11CB3}\u{11CB5}\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D90}\u{11D91}\u{11D95}\u{11D97}\u{11EF3}\u{11EF4}\u{13430}-\u{13438}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F8F}-\u{16F92}\u{1BC9D}\u{1BC9E}\u{1BCA0}-\u{1BCA3}\u{1D167}-\u{1D169}\u{1D173}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D242}-\u{1D244}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E130}-\u{1E136}\u{1E2EC}-\u{1E2EF}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94B}\u{E0001}\u{E0020}-\u{E007F}\u{E0100}-\u{E01EF}]*[\u0620\u0622-\u063F\u0641-\u064A\u066E\u066F\u0671-\u0673\u0675-\u06D3\u06D5\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u077F\u07CA-\u07EA\u0840-\u0855\u0860\u0862-\u0865\u0867-\u086A\u08A0-\u08AC\u08AE-\u08B4\u08B6-\u08BD\u1807\u1820-\u1878\u1887-\u18A8\u18AA\uA840-\uA871\u{10AC0}-\u{10AC5}\u{10AC7}\u{10AC9}\u{10ACA}\u{10ACE}-\u{10AD6}\u{10AD8}-\u{10AE1}\u{10AE4}\u{10AEB}-\u{10AEF}\u{10B80}-\u{10B91}\u{10BA9}-\u{10BAE}\u{10D01}-\u{10D23}\u{10F30}-\u{10F44}\u{10F51}-\u{10F54}\u{1E900}-\u{1E943}]/u; - const bidiDomain = /[\u05BE\u05C0\u05C3\u05C6\u05D0-\u05EA\u05EF-\u05F4\u0600-\u0605\u0608\u060B\u060D\u061B-\u064A\u0660-\u0669\u066B-\u066F\u0671-\u06D5\u06DD\u06E5\u06E6\u06EE\u06EF\u06FA-\u070D\u070F\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07C0-\u07EA\u07F4\u07F5\u07FA\u07FE-\u0815\u081A\u0824\u0828\u0830-\u083E\u0840-\u0858\u085E\u0860-\u086A\u0870-\u088E\u0890\u0891\u08A0-\u08C9\u08E2\u200F\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBC2\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFC\uFE70-\uFE74\uFE76-\uFEFC\u{10800}-\u{10805}\u{10808}\u{1080A}-\u{10835}\u{10837}\u{10838}\u{1083C}\u{1083F}-\u{10855}\u{10857}-\u{1089E}\u{108A7}-\u{108AF}\u{108E0}-\u{108F2}\u{108F4}\u{108F5}\u{108FB}-\u{1091B}\u{10920}-\u{10939}\u{1093F}\u{10980}-\u{109B7}\u{109BC}-\u{109CF}\u{109D2}-\u{10A00}\u{10A10}-\u{10A13}\u{10A15}-\u{10A17}\u{10A19}-\u{10A35}\u{10A40}-\u{10A48}\u{10A50}-\u{10A58}\u{10A60}-\u{10A9F}\u{10AC0}-\u{10AE4}\u{10AEB}-\u{10AF6}\u{10B00}-\u{10B35}\u{10B40}-\u{10B55}\u{10B58}-\u{10B72}\u{10B78}-\u{10B91}\u{10B99}-\u{10B9C}\u{10BA9}-\u{10BAF}\u{10C00}-\u{10C48}\u{10C80}-\u{10CB2}\u{10CC0}-\u{10CF2}\u{10CFA}-\u{10D23}\u{10D30}-\u{10D39}\u{10E60}-\u{10E7E}\u{10E80}-\u{10EA9}\u{10EAD}\u{10EB0}\u{10EB1}\u{10F00}-\u{10F27}\u{10F30}-\u{10F45}\u{10F51}-\u{10F59}\u{10F70}-\u{10F81}\u{10F86}-\u{10F89}\u{10FB0}-\u{10FCB}\u{10FE0}-\u{10FF6}\u{1E800}-\u{1E8C4}\u{1E8C7}-\u{1E8CF}\u{1E900}-\u{1E943}\u{1E94B}\u{1E950}-\u{1E959}\u{1E95E}\u{1E95F}\u{1EC71}-\u{1ECB4}\u{1ED01}-\u{1ED3D}\u{1EE00}-\u{1EE03}\u{1EE05}-\u{1EE1F}\u{1EE21}\u{1EE22}\u{1EE24}\u{1EE27}\u{1EE29}-\u{1EE32}\u{1EE34}-\u{1EE37}\u{1EE39}\u{1EE3B}\u{1EE42}\u{1EE47}\u{1EE49}\u{1EE4B}\u{1EE4D}-\u{1EE4F}\u{1EE51}\u{1EE52}\u{1EE54}\u{1EE57}\u{1EE59}\u{1EE5B}\u{1EE5D}\u{1EE5F}\u{1EE61}\u{1EE62}\u{1EE64}\u{1EE67}-\u{1EE6A}\u{1EE6C}-\u{1EE72}\u{1EE74}-\u{1EE77}\u{1EE79}-\u{1EE7C}\u{1EE7E}\u{1EE80}-\u{1EE89}\u{1EE8B}-\u{1EE9B}\u{1EEA1}-\u{1EEA3}\u{1EEA5}-\u{1EEA9}\u{1EEAB}-\u{1EEBB}]/u; - const bidiS1LTR = /[A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02B8\u02BB-\u02C1\u02D0\u02D1\u02E0-\u02E4\u02EE\u0370-\u0373\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0482\u048A-\u052F\u0531-\u0556\u0559-\u0589\u0903-\u0939\u093B\u093D-\u0940\u0949-\u094C\u094E-\u0950\u0958-\u0961\u0964-\u0980\u0982\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD-\u09C0\u09C7\u09C8\u09CB\u09CC\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E1\u09E6-\u09F1\u09F4-\u09FA\u09FC\u09FD\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3E-\u0A40\u0A59-\u0A5C\u0A5E\u0A66-\u0A6F\u0A72-\u0A74\u0A76\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD-\u0AC0\u0AC9\u0ACB\u0ACC\u0AD0\u0AE0\u0AE1\u0AE6-\u0AF0\u0AF9\u0B02\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B3E\u0B40\u0B47\u0B48\u0B4B\u0B4C\u0B57\u0B5C\u0B5D\u0B5F-\u0B61\u0B66-\u0B77\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE\u0BBF\u0BC1\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCC\u0BD0\u0BD7\u0BE6-\u0BF2\u0C01-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C41-\u0C44\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C66-\u0C6F\u0C77\u0C7F\u0C80\u0C82-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD-\u0CC4\u0CC6-\u0CC8\u0CCA\u0CCB\u0CD5\u0CD6\u0CDD\u0CDE\u0CE0\u0CE1\u0CE6-\u0CEF\u0CF1\u0CF2\u0D02-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D-\u0D40\u0D46-\u0D48\u0D4A-\u0D4C\u0D4E\u0D4F\u0D54-\u0D61\u0D66-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCF-\u0DD1\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2-\u0DF4\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E4F-\u0E5B\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00-\u0F17\u0F1A-\u0F34\u0F36\u0F38\u0F3E-\u0F47\u0F49-\u0F6C\u0F7F\u0F85\u0F88-\u0F8C\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE-\u0FDA\u1000-\u102C\u1031\u1038\u103B\u103C\u103F-\u1057\u105A-\u105D\u1061-\u1070\u1075-\u1081\u1083\u1084\u1087-\u108C\u108E-\u109C\u109E-\u10C5\u10C7\u10CD\u10D0-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1360-\u137C\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u167F\u1681-\u169A\u16A0-\u16F8\u1700-\u1711\u1715\u171F-\u1731\u1734-\u1736\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17B6\u17BE-\u17C5\u17C7\u17C8\u17D4-\u17DA\u17DC\u17E0-\u17E9\u1810-\u1819\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1923-\u1926\u1929-\u192B\u1930\u1931\u1933-\u1938\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u1A00-\u1A16\u1A19\u1A1A\u1A1E-\u1A55\u1A57\u1A61\u1A63\u1A64\u1A6D-\u1A72\u1A80-\u1A89\u1A90-\u1A99\u1AA0-\u1AAD\u1B04-\u1B33\u1B35\u1B3B\u1B3D-\u1B41\u1B43-\u1B4C\u1B50-\u1B6A\u1B74-\u1B7E\u1B82-\u1BA1\u1BA6\u1BA7\u1BAA\u1BAE-\u1BE5\u1BE7\u1BEA-\u1BEC\u1BEE\u1BF2\u1BF3\u1BFC-\u1C2B\u1C34\u1C35\u1C3B-\u1C49\u1C4D-\u1C88\u1C90-\u1CBA\u1CBD-\u1CC7\u1CD3\u1CE1\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5-\u1CF7\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u200E\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u214F\u2160-\u2188\u2336-\u237A\u2395\u249C-\u24E9\u26AC\u2800-\u28FF\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D70\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u3005-\u3007\u3021-\u3029\u302E\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u3190-\u31BF\u31F0-\u321C\u3220-\u324F\u3260-\u327B\u327F-\u32B0\u32C0-\u32CB\u32D0-\u3376\u337B-\u33DD\u33E0-\u33FE\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA60C\uA610-\uA62B\uA640-\uA66E\uA680-\uA69D\uA6A0-\uA6EF\uA6F2-\uA6F7\uA722-\uA787\uA789-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA824\uA827\uA830-\uA837\uA840-\uA873\uA880-\uA8C3\uA8CE-\uA8D9\uA8F2-\uA8FE\uA900-\uA925\uA92E-\uA946\uA952\uA953\uA95F-\uA97C\uA983-\uA9B2\uA9B4\uA9B5\uA9BA\uA9BB\uA9BE-\uA9CD\uA9CF-\uA9D9\uA9DE-\uA9E4\uA9E6-\uA9FE\uAA00-\uAA28\uAA2F\uAA30\uAA33\uAA34\uAA40-\uAA42\uAA44-\uAA4B\uAA4D\uAA50-\uAA59\uAA5C-\uAA7B\uAA7D-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAAEB\uAAEE-\uAAF5\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB69\uAB70-\uABE4\uABE6\uABE7\uABE9-\uABEC\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uD800-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC\u{10000}-\u{1000B}\u{1000D}-\u{10026}\u{10028}-\u{1003A}\u{1003C}\u{1003D}\u{1003F}-\u{1004D}\u{10050}-\u{1005D}\u{10080}-\u{100FA}\u{10100}\u{10102}\u{10107}-\u{10133}\u{10137}-\u{1013F}\u{1018D}\u{1018E}\u{101D0}-\u{101FC}\u{10280}-\u{1029C}\u{102A0}-\u{102D0}\u{10300}-\u{10323}\u{1032D}-\u{1034A}\u{10350}-\u{10375}\u{10380}-\u{1039D}\u{1039F}-\u{103C3}\u{103C8}-\u{103D5}\u{10400}-\u{1049D}\u{104A0}-\u{104A9}\u{104B0}-\u{104D3}\u{104D8}-\u{104FB}\u{10500}-\u{10527}\u{10530}-\u{10563}\u{1056F}-\u{1057A}\u{1057C}-\u{1058A}\u{1058C}-\u{10592}\u{10594}\u{10595}\u{10597}-\u{105A1}\u{105A3}-\u{105B1}\u{105B3}-\u{105B9}\u{105BB}\u{105BC}\u{10600}-\u{10736}\u{10740}-\u{10755}\u{10760}-\u{10767}\u{10780}-\u{10785}\u{10787}-\u{107B0}\u{107B2}-\u{107BA}\u{11000}\u{11002}-\u{11037}\u{11047}-\u{1104D}\u{11066}-\u{1106F}\u{11071}\u{11072}\u{11075}\u{11082}-\u{110B2}\u{110B7}\u{110B8}\u{110BB}-\u{110C1}\u{110CD}\u{110D0}-\u{110E8}\u{110F0}-\u{110F9}\u{11103}-\u{11126}\u{1112C}\u{11136}-\u{11147}\u{11150}-\u{11172}\u{11174}-\u{11176}\u{11182}-\u{111B5}\u{111BF}-\u{111C8}\u{111CD}\u{111CE}\u{111D0}-\u{111DF}\u{111E1}-\u{111F4}\u{11200}-\u{11211}\u{11213}-\u{1122E}\u{11232}\u{11233}\u{11235}\u{11238}-\u{1123D}\u{11280}-\u{11286}\u{11288}\u{1128A}-\u{1128D}\u{1128F}-\u{1129D}\u{1129F}-\u{112A9}\u{112B0}-\u{112DE}\u{112E0}-\u{112E2}\u{112F0}-\u{112F9}\u{11302}\u{11303}\u{11305}-\u{1130C}\u{1130F}\u{11310}\u{11313}-\u{11328}\u{1132A}-\u{11330}\u{11332}\u{11333}\u{11335}-\u{11339}\u{1133D}-\u{1133F}\u{11341}-\u{11344}\u{11347}\u{11348}\u{1134B}-\u{1134D}\u{11350}\u{11357}\u{1135D}-\u{11363}\u{11400}-\u{11437}\u{11440}\u{11441}\u{11445}\u{11447}-\u{1145B}\u{1145D}\u{1145F}-\u{11461}\u{11480}-\u{114B2}\u{114B9}\u{114BB}-\u{114BE}\u{114C1}\u{114C4}-\u{114C7}\u{114D0}-\u{114D9}\u{11580}-\u{115B1}\u{115B8}-\u{115BB}\u{115BE}\u{115C1}-\u{115DB}\u{11600}-\u{11632}\u{1163B}\u{1163C}\u{1163E}\u{11641}-\u{11644}\u{11650}-\u{11659}\u{11680}-\u{116AA}\u{116AC}\u{116AE}\u{116AF}\u{116B6}\u{116B8}\u{116B9}\u{116C0}-\u{116C9}\u{11700}-\u{1171A}\u{11720}\u{11721}\u{11726}\u{11730}-\u{11746}\u{11800}-\u{1182E}\u{11838}\u{1183B}\u{118A0}-\u{118F2}\u{118FF}-\u{11906}\u{11909}\u{1190C}-\u{11913}\u{11915}\u{11916}\u{11918}-\u{11935}\u{11937}\u{11938}\u{1193D}\u{1193F}-\u{11942}\u{11944}-\u{11946}\u{11950}-\u{11959}\u{119A0}-\u{119A7}\u{119AA}-\u{119D3}\u{119DC}-\u{119DF}\u{119E1}-\u{119E4}\u{11A00}\u{11A07}\u{11A08}\u{11A0B}-\u{11A32}\u{11A39}\u{11A3A}\u{11A3F}-\u{11A46}\u{11A50}\u{11A57}\u{11A58}\u{11A5C}-\u{11A89}\u{11A97}\u{11A9A}-\u{11AA2}\u{11AB0}-\u{11AF8}\u{11C00}-\u{11C08}\u{11C0A}-\u{11C2F}\u{11C3E}-\u{11C45}\u{11C50}-\u{11C6C}\u{11C70}-\u{11C8F}\u{11CA9}\u{11CB1}\u{11CB4}\u{11D00}-\u{11D06}\u{11D08}\u{11D09}\u{11D0B}-\u{11D30}\u{11D46}\u{11D50}-\u{11D59}\u{11D60}-\u{11D65}\u{11D67}\u{11D68}\u{11D6A}-\u{11D8E}\u{11D93}\u{11D94}\u{11D96}\u{11D98}\u{11DA0}-\u{11DA9}\u{11EE0}-\u{11EF2}\u{11EF5}-\u{11EF8}\u{11FB0}\u{11FC0}-\u{11FD4}\u{11FFF}-\u{12399}\u{12400}-\u{1246E}\u{12470}-\u{12474}\u{12480}-\u{12543}\u{12F90}-\u{12FF2}\u{13000}-\u{1342E}\u{13430}-\u{13438}\u{14400}-\u{14646}\u{16800}-\u{16A38}\u{16A40}-\u{16A5E}\u{16A60}-\u{16A69}\u{16A6E}-\u{16ABE}\u{16AC0}-\u{16AC9}\u{16AD0}-\u{16AED}\u{16AF5}\u{16B00}-\u{16B2F}\u{16B37}-\u{16B45}\u{16B50}-\u{16B59}\u{16B5B}-\u{16B61}\u{16B63}-\u{16B77}\u{16B7D}-\u{16B8F}\u{16E40}-\u{16E9A}\u{16F00}-\u{16F4A}\u{16F50}-\u{16F87}\u{16F93}-\u{16F9F}\u{16FE0}\u{16FE1}\u{16FE3}\u{16FF0}\u{16FF1}\u{17000}-\u{187F7}\u{18800}-\u{18CD5}\u{18D00}-\u{18D08}\u{1AFF0}-\u{1AFF3}\u{1AFF5}-\u{1AFFB}\u{1AFFD}\u{1AFFE}\u{1B000}-\u{1B122}\u{1B150}-\u{1B152}\u{1B164}-\u{1B167}\u{1B170}-\u{1B2FB}\u{1BC00}-\u{1BC6A}\u{1BC70}-\u{1BC7C}\u{1BC80}-\u{1BC88}\u{1BC90}-\u{1BC99}\u{1BC9C}\u{1BC9F}\u{1CF50}-\u{1CFC3}\u{1D000}-\u{1D0F5}\u{1D100}-\u{1D126}\u{1D129}-\u{1D166}\u{1D16A}-\u{1D172}\u{1D183}\u{1D184}\u{1D18C}-\u{1D1A9}\u{1D1AE}-\u{1D1E8}\u{1D2E0}-\u{1D2F3}\u{1D360}-\u{1D378}\u{1D400}-\u{1D454}\u{1D456}-\u{1D49C}\u{1D49E}\u{1D49F}\u{1D4A2}\u{1D4A5}\u{1D4A6}\u{1D4A9}-\u{1D4AC}\u{1D4AE}-\u{1D4B9}\u{1D4BB}\u{1D4BD}-\u{1D4C3}\u{1D4C5}-\u{1D505}\u{1D507}-\u{1D50A}\u{1D50D}-\u{1D514}\u{1D516}-\u{1D51C}\u{1D51E}-\u{1D539}\u{1D53B}-\u{1D53E}\u{1D540}-\u{1D544}\u{1D546}\u{1D54A}-\u{1D550}\u{1D552}-\u{1D6A5}\u{1D6A8}-\u{1D6DA}\u{1D6DC}-\u{1D714}\u{1D716}-\u{1D74E}\u{1D750}-\u{1D788}\u{1D78A}-\u{1D7C2}\u{1D7C4}-\u{1D7CB}\u{1D800}-\u{1D9FF}\u{1DA37}-\u{1DA3A}\u{1DA6D}-\u{1DA74}\u{1DA76}-\u{1DA83}\u{1DA85}-\u{1DA8B}\u{1DF00}-\u{1DF1E}\u{1E100}-\u{1E12C}\u{1E137}-\u{1E13D}\u{1E140}-\u{1E149}\u{1E14E}\u{1E14F}\u{1E290}-\u{1E2AD}\u{1E2C0}-\u{1E2EB}\u{1E2F0}-\u{1E2F9}\u{1E7E0}-\u{1E7E6}\u{1E7E8}-\u{1E7EB}\u{1E7ED}\u{1E7EE}\u{1E7F0}-\u{1E7FE}\u{1F110}-\u{1F12E}\u{1F130}-\u{1F169}\u{1F170}-\u{1F1AC}\u{1F1E6}-\u{1F202}\u{1F210}-\u{1F23B}\u{1F240}-\u{1F248}\u{1F250}\u{1F251}\u{20000}-\u{2A6DF}\u{2A700}-\u{2B738}\u{2B740}-\u{2B81D}\u{2B820}-\u{2CEA1}\u{2CEB0}-\u{2EBE0}\u{2F800}-\u{2FA1D}\u{30000}-\u{3134A}\u{F0000}-\u{FFFFD}\u{100000}-\u{10FFFD}]/u; - const bidiS1RTL = /[\u05BE\u05C0\u05C3\u05C6\u05D0-\u05EA\u05EF-\u05F4\u0608\u060B\u060D\u061B-\u064A\u066D-\u066F\u0671-\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u070D\u070F\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07C0-\u07EA\u07F4\u07F5\u07FA\u07FE-\u0815\u081A\u0824\u0828\u0830-\u083E\u0840-\u0858\u085E\u0860-\u086A\u0870-\u088E\u08A0-\u08C9\u200F\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBC2\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFC\uFE70-\uFE74\uFE76-\uFEFC\u{10800}-\u{10805}\u{10808}\u{1080A}-\u{10835}\u{10837}\u{10838}\u{1083C}\u{1083F}-\u{10855}\u{10857}-\u{1089E}\u{108A7}-\u{108AF}\u{108E0}-\u{108F2}\u{108F4}\u{108F5}\u{108FB}-\u{1091B}\u{10920}-\u{10939}\u{1093F}\u{10980}-\u{109B7}\u{109BC}-\u{109CF}\u{109D2}-\u{10A00}\u{10A10}-\u{10A13}\u{10A15}-\u{10A17}\u{10A19}-\u{10A35}\u{10A40}-\u{10A48}\u{10A50}-\u{10A58}\u{10A60}-\u{10A9F}\u{10AC0}-\u{10AE4}\u{10AEB}-\u{10AF6}\u{10B00}-\u{10B35}\u{10B40}-\u{10B55}\u{10B58}-\u{10B72}\u{10B78}-\u{10B91}\u{10B99}-\u{10B9C}\u{10BA9}-\u{10BAF}\u{10C00}-\u{10C48}\u{10C80}-\u{10CB2}\u{10CC0}-\u{10CF2}\u{10CFA}-\u{10D23}\u{10E80}-\u{10EA9}\u{10EAD}\u{10EB0}\u{10EB1}\u{10F00}-\u{10F27}\u{10F30}-\u{10F45}\u{10F51}-\u{10F59}\u{10F70}-\u{10F81}\u{10F86}-\u{10F89}\u{10FB0}-\u{10FCB}\u{10FE0}-\u{10FF6}\u{1E800}-\u{1E8C4}\u{1E8C7}-\u{1E8CF}\u{1E900}-\u{1E943}\u{1E94B}\u{1E950}-\u{1E959}\u{1E95E}\u{1E95F}\u{1EC71}-\u{1ECB4}\u{1ED01}-\u{1ED3D}\u{1EE00}-\u{1EE03}\u{1EE05}-\u{1EE1F}\u{1EE21}\u{1EE22}\u{1EE24}\u{1EE27}\u{1EE29}-\u{1EE32}\u{1EE34}-\u{1EE37}\u{1EE39}\u{1EE3B}\u{1EE42}\u{1EE47}\u{1EE49}\u{1EE4B}\u{1EE4D}-\u{1EE4F}\u{1EE51}\u{1EE52}\u{1EE54}\u{1EE57}\u{1EE59}\u{1EE5B}\u{1EE5D}\u{1EE5F}\u{1EE61}\u{1EE62}\u{1EE64}\u{1EE67}-\u{1EE6A}\u{1EE6C}-\u{1EE72}\u{1EE74}-\u{1EE77}\u{1EE79}-\u{1EE7C}\u{1EE7E}\u{1EE80}-\u{1EE89}\u{1EE8B}-\u{1EE9B}\u{1EEA1}-\u{1EEA3}\u{1EEA5}-\u{1EEA9}\u{1EEAB}-\u{1EEBB}]/u; - const bidiS2 = /^[\0-\x08\x0E-\x1B!-@\[-`\{-\x84\x86-\xA9\xAB-\xB4\xB6-\xB9\xBB-\xBF\xD7\xF7\u02B9\u02BA\u02C2-\u02CF\u02D2-\u02DF\u02E5-\u02ED\u02EF-\u036F\u0374\u0375\u037E\u0384\u0385\u0387\u03F6\u0483-\u0489\u058A\u058D-\u058F\u0591-\u05C7\u05D0-\u05EA\u05EF-\u05F4\u0600-\u070D\u070F-\u074A\u074D-\u07B1\u07C0-\u07FA\u07FD-\u082D\u0830-\u083E\u0840-\u085B\u085E\u0860-\u086A\u0870-\u088E\u0890\u0891\u0898-\u0902\u093A\u093C\u0941-\u0948\u094D\u0951-\u0957\u0962\u0963\u0981\u09BC\u09C1-\u09C4\u09CD\u09E2\u09E3\u09F2\u09F3\u09FB\u09FE\u0A01\u0A02\u0A3C\u0A41\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81\u0A82\u0ABC\u0AC1-\u0AC5\u0AC7\u0AC8\u0ACD\u0AE2\u0AE3\u0AF1\u0AFA-\u0AFF\u0B01\u0B3C\u0B3F\u0B41-\u0B44\u0B4D\u0B55\u0B56\u0B62\u0B63\u0B82\u0BC0\u0BCD\u0BF3-\u0BFA\u0C00\u0C04\u0C3C\u0C3E-\u0C40\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C78-\u0C7E\u0C81\u0CBC\u0CCC\u0CCD\u0CE2\u0CE3\u0D00\u0D01\u0D3B\u0D3C\u0D41-\u0D44\u0D4D\u0D62\u0D63\u0D81\u0DCA\u0DD2-\u0DD4\u0DD6\u0E31\u0E34-\u0E3A\u0E3F\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECD\u0F18\u0F19\u0F35\u0F37\u0F39-\u0F3D\u0F71-\u0F7E\u0F80-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102D-\u1030\u1032-\u1037\u1039\u103A\u103D\u103E\u1058\u1059\u105E-\u1060\u1071-\u1074\u1082\u1085\u1086\u108D\u109D\u135D-\u135F\u1390-\u1399\u1400\u169B\u169C\u1712-\u1714\u1732\u1733\u1752\u1753\u1772\u1773\u17B4\u17B5\u17B7-\u17BD\u17C6\u17C9-\u17D3\u17DB\u17DD\u17F0-\u17F9\u1800-\u180F\u1885\u1886\u18A9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193B\u1940\u1944\u1945\u19DE-\u19FF\u1A17\u1A18\u1A1B\u1A56\u1A58-\u1A5E\u1A60\u1A62\u1A65-\u1A6C\u1A73-\u1A7C\u1A7F\u1AB0-\u1ACE\u1B00-\u1B03\u1B34\u1B36-\u1B3A\u1B3C\u1B42\u1B6B-\u1B73\u1B80\u1B81\u1BA2-\u1BA5\u1BA8\u1BA9\u1BAB-\u1BAD\u1BE6\u1BE8\u1BE9\u1BED\u1BEF-\u1BF1\u1C2C-\u1C33\u1C36\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE0\u1CE2-\u1CE8\u1CED\u1CF4\u1CF8\u1CF9\u1DC0-\u1DFF\u1FBD\u1FBF-\u1FC1\u1FCD-\u1FCF\u1FDD-\u1FDF\u1FED-\u1FEF\u1FFD\u1FFE\u200B-\u200D\u200F-\u2027\u202F-\u205E\u2060-\u2064\u206A-\u2070\u2074-\u207E\u2080-\u208E\u20A0-\u20C0\u20D0-\u20F0\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u2150-\u215F\u2189-\u218B\u2190-\u2335\u237B-\u2394\u2396-\u2426\u2440-\u244A\u2460-\u249B\u24EA-\u26AB\u26AD-\u27FF\u2900-\u2B73\u2B76-\u2B95\u2B97-\u2BFF\u2CE5-\u2CEA\u2CEF-\u2CF1\u2CF9-\u2CFF\u2D7F\u2DE0-\u2E5D\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3001-\u3004\u3008-\u3020\u302A-\u302D\u3030\u3036\u3037\u303D-\u303F\u3099-\u309C\u30A0\u30FB\u31C0-\u31E3\u321D\u321E\u3250-\u325F\u327C-\u327E\u32B1-\u32BF\u32CC-\u32CF\u3377-\u337A\u33DE\u33DF\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA60D-\uA60F\uA66F-\uA67F\uA69E\uA69F\uA6F0\uA6F1\uA700-\uA721\uA788\uA802\uA806\uA80B\uA825\uA826\uA828-\uA82C\uA838\uA839\uA874-\uA877\uA8C4\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA951\uA980-\uA982\uA9B3\uA9B6-\uA9B9\uA9BC\uA9BD\uA9E5\uAA29-\uAA2E\uAA31\uAA32\uAA35\uAA36\uAA43\uAA4C\uAA7C\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEC\uAAED\uAAF6\uAB6A\uAB6B\uABE5\uABE8\uABED\uFB1D-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBC2\uFBD3-\uFD8F\uFD92-\uFDC7\uFDCF\uFDF0-\uFE19\uFE20-\uFE52\uFE54-\uFE66\uFE68-\uFE6B\uFE70-\uFE74\uFE76-\uFEFC\uFEFF\uFF01-\uFF20\uFF3B-\uFF40\uFF5B-\uFF65\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFF9-\uFFFD\u{10101}\u{10140}-\u{1018C}\u{10190}-\u{1019C}\u{101A0}\u{101FD}\u{102E0}-\u{102FB}\u{10376}-\u{1037A}\u{10800}-\u{10805}\u{10808}\u{1080A}-\u{10835}\u{10837}\u{10838}\u{1083C}\u{1083F}-\u{10855}\u{10857}-\u{1089E}\u{108A7}-\u{108AF}\u{108E0}-\u{108F2}\u{108F4}\u{108F5}\u{108FB}-\u{1091B}\u{1091F}-\u{10939}\u{1093F}\u{10980}-\u{109B7}\u{109BC}-\u{109CF}\u{109D2}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A13}\u{10A15}-\u{10A17}\u{10A19}-\u{10A35}\u{10A38}-\u{10A3A}\u{10A3F}-\u{10A48}\u{10A50}-\u{10A58}\u{10A60}-\u{10A9F}\u{10AC0}-\u{10AE6}\u{10AEB}-\u{10AF6}\u{10B00}-\u{10B35}\u{10B39}-\u{10B55}\u{10B58}-\u{10B72}\u{10B78}-\u{10B91}\u{10B99}-\u{10B9C}\u{10BA9}-\u{10BAF}\u{10C00}-\u{10C48}\u{10C80}-\u{10CB2}\u{10CC0}-\u{10CF2}\u{10CFA}-\u{10D27}\u{10D30}-\u{10D39}\u{10E60}-\u{10E7E}\u{10E80}-\u{10EA9}\u{10EAB}-\u{10EAD}\u{10EB0}\u{10EB1}\u{10F00}-\u{10F27}\u{10F30}-\u{10F59}\u{10F70}-\u{10F89}\u{10FB0}-\u{10FCB}\u{10FE0}-\u{10FF6}\u{11001}\u{11038}-\u{11046}\u{11052}-\u{11065}\u{11070}\u{11073}\u{11074}\u{1107F}-\u{11081}\u{110B3}-\u{110B6}\u{110B9}\u{110BA}\u{110C2}\u{11100}-\u{11102}\u{11127}-\u{1112B}\u{1112D}-\u{11134}\u{11173}\u{11180}\u{11181}\u{111B6}-\u{111BE}\u{111C9}-\u{111CC}\u{111CF}\u{1122F}-\u{11231}\u{11234}\u{11236}\u{11237}\u{1123E}\u{112DF}\u{112E3}-\u{112EA}\u{11300}\u{11301}\u{1133B}\u{1133C}\u{11340}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{11438}-\u{1143F}\u{11442}-\u{11444}\u{11446}\u{1145E}\u{114B3}-\u{114B8}\u{114BA}\u{114BF}\u{114C0}\u{114C2}\u{114C3}\u{115B2}-\u{115B5}\u{115BC}\u{115BD}\u{115BF}\u{115C0}\u{115DC}\u{115DD}\u{11633}-\u{1163A}\u{1163D}\u{1163F}\u{11640}\u{11660}-\u{1166C}\u{116AB}\u{116AD}\u{116B0}-\u{116B5}\u{116B7}\u{1171D}-\u{1171F}\u{11722}-\u{11725}\u{11727}-\u{1172B}\u{1182F}-\u{11837}\u{11839}\u{1183A}\u{1193B}\u{1193C}\u{1193E}\u{11943}\u{119D4}-\u{119D7}\u{119DA}\u{119DB}\u{119E0}\u{11A01}-\u{11A06}\u{11A09}\u{11A0A}\u{11A33}-\u{11A38}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A56}\u{11A59}-\u{11A5B}\u{11A8A}-\u{11A96}\u{11A98}\u{11A99}\u{11C30}-\u{11C36}\u{11C38}-\u{11C3D}\u{11C92}-\u{11CA7}\u{11CAA}-\u{11CB0}\u{11CB2}\u{11CB3}\u{11CB5}\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D90}\u{11D91}\u{11D95}\u{11D97}\u{11EF3}\u{11EF4}\u{11FD5}-\u{11FF1}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F8F}-\u{16F92}\u{16FE2}\u{16FE4}\u{1BC9D}\u{1BC9E}\u{1BCA0}-\u{1BCA3}\u{1CF00}-\u{1CF2D}\u{1CF30}-\u{1CF46}\u{1D167}-\u{1D169}\u{1D173}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D1E9}\u{1D1EA}\u{1D200}-\u{1D245}\u{1D300}-\u{1D356}\u{1D6DB}\u{1D715}\u{1D74F}\u{1D789}\u{1D7C3}\u{1D7CE}-\u{1D7FF}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E130}-\u{1E136}\u{1E2AE}\u{1E2EC}-\u{1E2EF}\u{1E2FF}\u{1E800}-\u{1E8C4}\u{1E8C7}-\u{1E8D6}\u{1E900}-\u{1E94B}\u{1E950}-\u{1E959}\u{1E95E}\u{1E95F}\u{1EC71}-\u{1ECB4}\u{1ED01}-\u{1ED3D}\u{1EE00}-\u{1EE03}\u{1EE05}-\u{1EE1F}\u{1EE21}\u{1EE22}\u{1EE24}\u{1EE27}\u{1EE29}-\u{1EE32}\u{1EE34}-\u{1EE37}\u{1EE39}\u{1EE3B}\u{1EE42}\u{1EE47}\u{1EE49}\u{1EE4B}\u{1EE4D}-\u{1EE4F}\u{1EE51}\u{1EE52}\u{1EE54}\u{1EE57}\u{1EE59}\u{1EE5B}\u{1EE5D}\u{1EE5F}\u{1EE61}\u{1EE62}\u{1EE64}\u{1EE67}-\u{1EE6A}\u{1EE6C}-\u{1EE72}\u{1EE74}-\u{1EE77}\u{1EE79}-\u{1EE7C}\u{1EE7E}\u{1EE80}-\u{1EE89}\u{1EE8B}-\u{1EE9B}\u{1EEA1}-\u{1EEA3}\u{1EEA5}-\u{1EEA9}\u{1EEAB}-\u{1EEBB}\u{1EEF0}\u{1EEF1}\u{1F000}-\u{1F02B}\u{1F030}-\u{1F093}\u{1F0A0}-\u{1F0AE}\u{1F0B1}-\u{1F0BF}\u{1F0C1}-\u{1F0CF}\u{1F0D1}-\u{1F0F5}\u{1F100}-\u{1F10F}\u{1F12F}\u{1F16A}-\u{1F16F}\u{1F1AD}\u{1F260}-\u{1F265}\u{1F300}-\u{1F6D7}\u{1F6DD}-\u{1F6EC}\u{1F6F0}-\u{1F6FC}\u{1F700}-\u{1F773}\u{1F780}-\u{1F7D8}\u{1F7E0}-\u{1F7EB}\u{1F7F0}\u{1F800}-\u{1F80B}\u{1F810}-\u{1F847}\u{1F850}-\u{1F859}\u{1F860}-\u{1F887}\u{1F890}-\u{1F8AD}\u{1F8B0}\u{1F8B1}\u{1F900}-\u{1FA53}\u{1FA60}-\u{1FA6D}\u{1FA70}-\u{1FA74}\u{1FA78}-\u{1FA7C}\u{1FA80}-\u{1FA86}\u{1FA90}-\u{1FAAC}\u{1FAB0}-\u{1FABA}\u{1FAC0}-\u{1FAC5}\u{1FAD0}-\u{1FAD9}\u{1FAE0}-\u{1FAE7}\u{1FAF0}-\u{1FAF6}\u{1FB00}-\u{1FB92}\u{1FB94}-\u{1FBCA}\u{1FBF0}-\u{1FBF9}\u{E0001}\u{E0020}-\u{E007F}\u{E0100}-\u{E01EF}]*$/u; - const bidiS3 = /[0-9\xB2\xB3\xB9\u05BE\u05C0\u05C3\u05C6\u05D0-\u05EA\u05EF-\u05F4\u0600-\u0605\u0608\u060B\u060D\u061B-\u064A\u0660-\u0669\u066B-\u066F\u0671-\u06D5\u06DD\u06E5\u06E6\u06EE-\u070D\u070F\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07C0-\u07EA\u07F4\u07F5\u07FA\u07FE-\u0815\u081A\u0824\u0828\u0830-\u083E\u0840-\u0858\u085E\u0860-\u086A\u0870-\u088E\u0890\u0891\u08A0-\u08C9\u08E2\u200F\u2070\u2074-\u2079\u2080-\u2089\u2488-\u249B\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBC2\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFC\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\u{102E1}-\u{102FB}\u{10800}-\u{10805}\u{10808}\u{1080A}-\u{10835}\u{10837}\u{10838}\u{1083C}\u{1083F}-\u{10855}\u{10857}-\u{1089E}\u{108A7}-\u{108AF}\u{108E0}-\u{108F2}\u{108F4}\u{108F5}\u{108FB}-\u{1091B}\u{10920}-\u{10939}\u{1093F}\u{10980}-\u{109B7}\u{109BC}-\u{109CF}\u{109D2}-\u{10A00}\u{10A10}-\u{10A13}\u{10A15}-\u{10A17}\u{10A19}-\u{10A35}\u{10A40}-\u{10A48}\u{10A50}-\u{10A58}\u{10A60}-\u{10A9F}\u{10AC0}-\u{10AE4}\u{10AEB}-\u{10AF6}\u{10B00}-\u{10B35}\u{10B40}-\u{10B55}\u{10B58}-\u{10B72}\u{10B78}-\u{10B91}\u{10B99}-\u{10B9C}\u{10BA9}-\u{10BAF}\u{10C00}-\u{10C48}\u{10C80}-\u{10CB2}\u{10CC0}-\u{10CF2}\u{10CFA}-\u{10D23}\u{10D30}-\u{10D39}\u{10E60}-\u{10E7E}\u{10E80}-\u{10EA9}\u{10EAD}\u{10EB0}\u{10EB1}\u{10F00}-\u{10F27}\u{10F30}-\u{10F45}\u{10F51}-\u{10F59}\u{10F70}-\u{10F81}\u{10F86}-\u{10F89}\u{10FB0}-\u{10FCB}\u{10FE0}-\u{10FF6}\u{1D7CE}-\u{1D7FF}\u{1E800}-\u{1E8C4}\u{1E8C7}-\u{1E8CF}\u{1E900}-\u{1E943}\u{1E94B}\u{1E950}-\u{1E959}\u{1E95E}\u{1E95F}\u{1EC71}-\u{1ECB4}\u{1ED01}-\u{1ED3D}\u{1EE00}-\u{1EE03}\u{1EE05}-\u{1EE1F}\u{1EE21}\u{1EE22}\u{1EE24}\u{1EE27}\u{1EE29}-\u{1EE32}\u{1EE34}-\u{1EE37}\u{1EE39}\u{1EE3B}\u{1EE42}\u{1EE47}\u{1EE49}\u{1EE4B}\u{1EE4D}-\u{1EE4F}\u{1EE51}\u{1EE52}\u{1EE54}\u{1EE57}\u{1EE59}\u{1EE5B}\u{1EE5D}\u{1EE5F}\u{1EE61}\u{1EE62}\u{1EE64}\u{1EE67}-\u{1EE6A}\u{1EE6C}-\u{1EE72}\u{1EE74}-\u{1EE77}\u{1EE79}-\u{1EE7C}\u{1EE7E}\u{1EE80}-\u{1EE89}\u{1EE8B}-\u{1EE9B}\u{1EEA1}-\u{1EEA3}\u{1EEA5}-\u{1EEA9}\u{1EEAB}-\u{1EEBB}\u{1F100}-\u{1F10A}\u{1FBF0}-\u{1FBF9}][\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0898-\u089F\u08CA-\u08E1\u08E3-\u0902\u093A\u093C\u0941-\u0948\u094D\u0951-\u0957\u0962\u0963\u0981\u09BC\u09C1-\u09C4\u09CD\u09E2\u09E3\u09FE\u0A01\u0A02\u0A3C\u0A41\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81\u0A82\u0ABC\u0AC1-\u0AC5\u0AC7\u0AC8\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01\u0B3C\u0B3F\u0B41-\u0B44\u0B4D\u0B55\u0B56\u0B62\u0B63\u0B82\u0BC0\u0BCD\u0C00\u0C04\u0C3C\u0C3E-\u0C40\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81\u0CBC\u0CCC\u0CCD\u0CE2\u0CE3\u0D00\u0D01\u0D3B\u0D3C\u0D41-\u0D44\u0D4D\u0D62\u0D63\u0D81\u0DCA\u0DD2-\u0DD4\u0DD6\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECD\u0F18\u0F19\u0F35\u0F37\u0F39\u0F71-\u0F7E\u0F80-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102D-\u1030\u1032-\u1037\u1039\u103A\u103D\u103E\u1058\u1059\u105E-\u1060\u1071-\u1074\u1082\u1085\u1086\u108D\u109D\u135D-\u135F\u1712-\u1714\u1732\u1733\u1752\u1753\u1772\u1773\u17B4\u17B5\u17B7-\u17BD\u17C6\u17C9-\u17D3\u17DD\u180B-\u180D\u180F\u1885\u1886\u18A9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193B\u1A17\u1A18\u1A1B\u1A56\u1A58-\u1A5E\u1A60\u1A62\u1A65-\u1A6C\u1A73-\u1A7C\u1A7F\u1AB0-\u1ACE\u1B00-\u1B03\u1B34\u1B36-\u1B3A\u1B3C\u1B42\u1B6B-\u1B73\u1B80\u1B81\u1BA2-\u1BA5\u1BA8\u1BA9\u1BAB-\u1BAD\u1BE6\u1BE8\u1BE9\u1BED\u1BEF-\u1BF1\u1C2C-\u1C33\u1C36\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE0\u1CE2-\u1CE8\u1CED\u1CF4\u1CF8\u1CF9\u1DC0-\u1DFF\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302D\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA825\uA826\uA82C\uA8C4\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA951\uA980-\uA982\uA9B3\uA9B6-\uA9B9\uA9BC\uA9BD\uA9E5\uAA29-\uAA2E\uAA31\uAA32\uAA35\uAA36\uAA43\uAA4C\uAA7C\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEC\uAAED\uAAF6\uABE5\uABE8\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\u{101FD}\u{102E0}\u{10376}-\u{1037A}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10D24}-\u{10D27}\u{10EAB}\u{10EAC}\u{10F46}-\u{10F50}\u{10F82}-\u{10F85}\u{11001}\u{11038}-\u{11046}\u{11070}\u{11073}\u{11074}\u{1107F}-\u{11081}\u{110B3}-\u{110B6}\u{110B9}\u{110BA}\u{110C2}\u{11100}-\u{11102}\u{11127}-\u{1112B}\u{1112D}-\u{11134}\u{11173}\u{11180}\u{11181}\u{111B6}-\u{111BE}\u{111C9}-\u{111CC}\u{111CF}\u{1122F}-\u{11231}\u{11234}\u{11236}\u{11237}\u{1123E}\u{112DF}\u{112E3}-\u{112EA}\u{11300}\u{11301}\u{1133B}\u{1133C}\u{11340}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{11438}-\u{1143F}\u{11442}-\u{11444}\u{11446}\u{1145E}\u{114B3}-\u{114B8}\u{114BA}\u{114BF}\u{114C0}\u{114C2}\u{114C3}\u{115B2}-\u{115B5}\u{115BC}\u{115BD}\u{115BF}\u{115C0}\u{115DC}\u{115DD}\u{11633}-\u{1163A}\u{1163D}\u{1163F}\u{11640}\u{116AB}\u{116AD}\u{116B0}-\u{116B5}\u{116B7}\u{1171D}-\u{1171F}\u{11722}-\u{11725}\u{11727}-\u{1172B}\u{1182F}-\u{11837}\u{11839}\u{1183A}\u{1193B}\u{1193C}\u{1193E}\u{11943}\u{119D4}-\u{119D7}\u{119DA}\u{119DB}\u{119E0}\u{11A01}-\u{11A06}\u{11A09}\u{11A0A}\u{11A33}-\u{11A38}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A56}\u{11A59}-\u{11A5B}\u{11A8A}-\u{11A96}\u{11A98}\u{11A99}\u{11C30}-\u{11C36}\u{11C38}-\u{11C3D}\u{11C92}-\u{11CA7}\u{11CAA}-\u{11CB0}\u{11CB2}\u{11CB3}\u{11CB5}\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D90}\u{11D91}\u{11D95}\u{11D97}\u{11EF3}\u{11EF4}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F8F}-\u{16F92}\u{16FE4}\u{1BC9D}\u{1BC9E}\u{1CF00}-\u{1CF2D}\u{1CF30}-\u{1CF46}\u{1D167}-\u{1D169}\u{1D17B}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D242}-\u{1D244}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E130}-\u{1E136}\u{1E2AE}\u{1E2EC}-\u{1E2EF}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94A}\u{E0100}-\u{E01EF}]*$/u; - const bidiS4EN = /[0-9\xB2\xB3\xB9\u06F0-\u06F9\u2070\u2074-\u2079\u2080-\u2089\u2488-\u249B\uFF10-\uFF19\u{102E1}-\u{102FB}\u{1D7CE}-\u{1D7FF}\u{1F100}-\u{1F10A}\u{1FBF0}-\u{1FBF9}]/u; - const bidiS4AN = /[\u0600-\u0605\u0660-\u0669\u066B\u066C\u06DD\u0890\u0891\u08E2\u{10D30}-\u{10D39}\u{10E60}-\u{10E7E}]/u; - const bidiS5 = /^[\0-\x08\x0E-\x1B!-\x84\x86-\u0377\u037A-\u037F\u0384-\u038A\u038C\u038E-\u03A1\u03A3-\u052F\u0531-\u0556\u0559-\u058A\u058D-\u058F\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0606\u0607\u0609\u060A\u060C\u060E-\u061A\u064B-\u065F\u066A\u0670\u06D6-\u06DC\u06DE-\u06E4\u06E7-\u06ED\u06F0-\u06F9\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07F6-\u07F9\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0898-\u089F\u08CA-\u08E1\u08E3-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09FE\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A76\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AF1\u0AF9-\u0AFF\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B55-\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B77\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BFA\u0C00-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3C-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58-\u0C5A\u0C5D\u0C60-\u0C63\u0C66-\u0C6F\u0C77-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDD\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1\u0CF2\u0D00-\u0D0C\u0D0E-\u0D10\u0D12-\u0D44\u0D46-\u0D48\u0D4A-\u0D4F\u0D54-\u0D63\u0D66-\u0D7F\u0D81-\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2-\u0DF4\u0E01-\u0E3A\u0E3F-\u0E5B\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECD\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00-\u0F47\u0F49-\u0F6C\u0F71-\u0F97\u0F99-\u0FBC\u0FBE-\u0FCC\u0FCE-\u0FDA\u1000-\u10C5\u10C7\u10CD\u10D0-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u137C\u1380-\u1399\u13A0-\u13F5\u13F8-\u13FD\u1400-\u167F\u1681-\u169C\u16A0-\u16F8\u1700-\u1715\u171F-\u1736\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17DD\u17E0-\u17E9\u17F0-\u17F9\u1800-\u1819\u1820-\u1878\u1880-\u18AA\u18B0-\u18F5\u1900-\u191E\u1920-\u192B\u1930-\u193B\u1940\u1944-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u19DE-\u1A1B\u1A1E-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA0-\u1AAD\u1AB0-\u1ACE\u1B00-\u1B4C\u1B50-\u1B7E\u1B80-\u1BF3\u1BFC-\u1C37\u1C3B-\u1C49\u1C4D-\u1C88\u1C90-\u1CBA\u1CBD-\u1CC7\u1CD0-\u1CFA\u1D00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FC4\u1FC6-\u1FD3\u1FD6-\u1FDB\u1FDD-\u1FEF\u1FF2-\u1FF4\u1FF6-\u1FFE\u200B-\u200E\u2010-\u2027\u202F-\u205E\u2060-\u2064\u206A-\u2071\u2074-\u208E\u2090-\u209C\u20A0-\u20C0\u20D0-\u20F0\u2100-\u218B\u2190-\u2426\u2440-\u244A\u2460-\u2B73\u2B76-\u2B95\u2B97-\u2CF3\u2CF9-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D70\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2E5D\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3001-\u303F\u3041-\u3096\u3099-\u30FF\u3105-\u312F\u3131-\u318E\u3190-\u31E3\u31F0-\u321E\u3220-\uA48C\uA490-\uA4C6\uA4D0-\uA62B\uA640-\uA6F7\uA700-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA82C\uA830-\uA839\uA840-\uA877\uA880-\uA8C5\uA8CE-\uA8D9\uA8E0-\uA953\uA95F-\uA97C\uA980-\uA9CD\uA9CF-\uA9D9\uA9DE-\uA9FE\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA5C-\uAAC2\uAADB-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB6B\uAB70-\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uD800-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1E\uFB29\uFD3E-\uFD4F\uFDCF\uFDFD-\uFE19\uFE20-\uFE52\uFE54-\uFE66\uFE68-\uFE6B\uFEFF\uFF01-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFF9-\uFFFD\u{10000}-\u{1000B}\u{1000D}-\u{10026}\u{10028}-\u{1003A}\u{1003C}\u{1003D}\u{1003F}-\u{1004D}\u{10050}-\u{1005D}\u{10080}-\u{100FA}\u{10100}-\u{10102}\u{10107}-\u{10133}\u{10137}-\u{1018E}\u{10190}-\u{1019C}\u{101A0}\u{101D0}-\u{101FD}\u{10280}-\u{1029C}\u{102A0}-\u{102D0}\u{102E0}-\u{102FB}\u{10300}-\u{10323}\u{1032D}-\u{1034A}\u{10350}-\u{1037A}\u{10380}-\u{1039D}\u{1039F}-\u{103C3}\u{103C8}-\u{103D5}\u{10400}-\u{1049D}\u{104A0}-\u{104A9}\u{104B0}-\u{104D3}\u{104D8}-\u{104FB}\u{10500}-\u{10527}\u{10530}-\u{10563}\u{1056F}-\u{1057A}\u{1057C}-\u{1058A}\u{1058C}-\u{10592}\u{10594}\u{10595}\u{10597}-\u{105A1}\u{105A3}-\u{105B1}\u{105B3}-\u{105B9}\u{105BB}\u{105BC}\u{10600}-\u{10736}\u{10740}-\u{10755}\u{10760}-\u{10767}\u{10780}-\u{10785}\u{10787}-\u{107B0}\u{107B2}-\u{107BA}\u{1091F}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10B39}-\u{10B3F}\u{10D24}-\u{10D27}\u{10EAB}\u{10EAC}\u{10F46}-\u{10F50}\u{10F82}-\u{10F85}\u{11000}-\u{1104D}\u{11052}-\u{11075}\u{1107F}-\u{110C2}\u{110CD}\u{110D0}-\u{110E8}\u{110F0}-\u{110F9}\u{11100}-\u{11134}\u{11136}-\u{11147}\u{11150}-\u{11176}\u{11180}-\u{111DF}\u{111E1}-\u{111F4}\u{11200}-\u{11211}\u{11213}-\u{1123E}\u{11280}-\u{11286}\u{11288}\u{1128A}-\u{1128D}\u{1128F}-\u{1129D}\u{1129F}-\u{112A9}\u{112B0}-\u{112EA}\u{112F0}-\u{112F9}\u{11300}-\u{11303}\u{11305}-\u{1130C}\u{1130F}\u{11310}\u{11313}-\u{11328}\u{1132A}-\u{11330}\u{11332}\u{11333}\u{11335}-\u{11339}\u{1133B}-\u{11344}\u{11347}\u{11348}\u{1134B}-\u{1134D}\u{11350}\u{11357}\u{1135D}-\u{11363}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{11400}-\u{1145B}\u{1145D}-\u{11461}\u{11480}-\u{114C7}\u{114D0}-\u{114D9}\u{11580}-\u{115B5}\u{115B8}-\u{115DD}\u{11600}-\u{11644}\u{11650}-\u{11659}\u{11660}-\u{1166C}\u{11680}-\u{116B9}\u{116C0}-\u{116C9}\u{11700}-\u{1171A}\u{1171D}-\u{1172B}\u{11730}-\u{11746}\u{11800}-\u{1183B}\u{118A0}-\u{118F2}\u{118FF}-\u{11906}\u{11909}\u{1190C}-\u{11913}\u{11915}\u{11916}\u{11918}-\u{11935}\u{11937}\u{11938}\u{1193B}-\u{11946}\u{11950}-\u{11959}\u{119A0}-\u{119A7}\u{119AA}-\u{119D7}\u{119DA}-\u{119E4}\u{11A00}-\u{11A47}\u{11A50}-\u{11AA2}\u{11AB0}-\u{11AF8}\u{11C00}-\u{11C08}\u{11C0A}-\u{11C36}\u{11C38}-\u{11C45}\u{11C50}-\u{11C6C}\u{11C70}-\u{11C8F}\u{11C92}-\u{11CA7}\u{11CA9}-\u{11CB6}\u{11D00}-\u{11D06}\u{11D08}\u{11D09}\u{11D0B}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D47}\u{11D50}-\u{11D59}\u{11D60}-\u{11D65}\u{11D67}\u{11D68}\u{11D6A}-\u{11D8E}\u{11D90}\u{11D91}\u{11D93}-\u{11D98}\u{11DA0}-\u{11DA9}\u{11EE0}-\u{11EF8}\u{11FB0}\u{11FC0}-\u{11FF1}\u{11FFF}-\u{12399}\u{12400}-\u{1246E}\u{12470}-\u{12474}\u{12480}-\u{12543}\u{12F90}-\u{12FF2}\u{13000}-\u{1342E}\u{13430}-\u{13438}\u{14400}-\u{14646}\u{16800}-\u{16A38}\u{16A40}-\u{16A5E}\u{16A60}-\u{16A69}\u{16A6E}-\u{16ABE}\u{16AC0}-\u{16AC9}\u{16AD0}-\u{16AED}\u{16AF0}-\u{16AF5}\u{16B00}-\u{16B45}\u{16B50}-\u{16B59}\u{16B5B}-\u{16B61}\u{16B63}-\u{16B77}\u{16B7D}-\u{16B8F}\u{16E40}-\u{16E9A}\u{16F00}-\u{16F4A}\u{16F4F}-\u{16F87}\u{16F8F}-\u{16F9F}\u{16FE0}-\u{16FE4}\u{16FF0}\u{16FF1}\u{17000}-\u{187F7}\u{18800}-\u{18CD5}\u{18D00}-\u{18D08}\u{1AFF0}-\u{1AFF3}\u{1AFF5}-\u{1AFFB}\u{1AFFD}\u{1AFFE}\u{1B000}-\u{1B122}\u{1B150}-\u{1B152}\u{1B164}-\u{1B167}\u{1B170}-\u{1B2FB}\u{1BC00}-\u{1BC6A}\u{1BC70}-\u{1BC7C}\u{1BC80}-\u{1BC88}\u{1BC90}-\u{1BC99}\u{1BC9C}-\u{1BCA3}\u{1CF00}-\u{1CF2D}\u{1CF30}-\u{1CF46}\u{1CF50}-\u{1CFC3}\u{1D000}-\u{1D0F5}\u{1D100}-\u{1D126}\u{1D129}-\u{1D1EA}\u{1D200}-\u{1D245}\u{1D2E0}-\u{1D2F3}\u{1D300}-\u{1D356}\u{1D360}-\u{1D378}\u{1D400}-\u{1D454}\u{1D456}-\u{1D49C}\u{1D49E}\u{1D49F}\u{1D4A2}\u{1D4A5}\u{1D4A6}\u{1D4A9}-\u{1D4AC}\u{1D4AE}-\u{1D4B9}\u{1D4BB}\u{1D4BD}-\u{1D4C3}\u{1D4C5}-\u{1D505}\u{1D507}-\u{1D50A}\u{1D50D}-\u{1D514}\u{1D516}-\u{1D51C}\u{1D51E}-\u{1D539}\u{1D53B}-\u{1D53E}\u{1D540}-\u{1D544}\u{1D546}\u{1D54A}-\u{1D550}\u{1D552}-\u{1D6A5}\u{1D6A8}-\u{1D7CB}\u{1D7CE}-\u{1DA8B}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1DF00}-\u{1DF1E}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E100}-\u{1E12C}\u{1E130}-\u{1E13D}\u{1E140}-\u{1E149}\u{1E14E}\u{1E14F}\u{1E290}-\u{1E2AE}\u{1E2C0}-\u{1E2F9}\u{1E2FF}\u{1E7E0}-\u{1E7E6}\u{1E7E8}-\u{1E7EB}\u{1E7ED}\u{1E7EE}\u{1E7F0}-\u{1E7FE}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94A}\u{1EEF0}\u{1EEF1}\u{1F000}-\u{1F02B}\u{1F030}-\u{1F093}\u{1F0A0}-\u{1F0AE}\u{1F0B1}-\u{1F0BF}\u{1F0C1}-\u{1F0CF}\u{1F0D1}-\u{1F0F5}\u{1F100}-\u{1F1AD}\u{1F1E6}-\u{1F202}\u{1F210}-\u{1F23B}\u{1F240}-\u{1F248}\u{1F250}\u{1F251}\u{1F260}-\u{1F265}\u{1F300}-\u{1F6D7}\u{1F6DD}-\u{1F6EC}\u{1F6F0}-\u{1F6FC}\u{1F700}-\u{1F773}\u{1F780}-\u{1F7D8}\u{1F7E0}-\u{1F7EB}\u{1F7F0}\u{1F800}-\u{1F80B}\u{1F810}-\u{1F847}\u{1F850}-\u{1F859}\u{1F860}-\u{1F887}\u{1F890}-\u{1F8AD}\u{1F8B0}\u{1F8B1}\u{1F900}-\u{1FA53}\u{1FA60}-\u{1FA6D}\u{1FA70}-\u{1FA74}\u{1FA78}-\u{1FA7C}\u{1FA80}-\u{1FA86}\u{1FA90}-\u{1FAAC}\u{1FAB0}-\u{1FABA}\u{1FAC0}-\u{1FAC5}\u{1FAD0}-\u{1FAD9}\u{1FAE0}-\u{1FAE7}\u{1FAF0}-\u{1FAF6}\u{1FB00}-\u{1FB92}\u{1FB94}-\u{1FBCA}\u{1FBF0}-\u{1FBF9}\u{20000}-\u{2A6DF}\u{2A700}-\u{2B738}\u{2B740}-\u{2B81D}\u{2B820}-\u{2CEA1}\u{2CEB0}-\u{2EBE0}\u{2F800}-\u{2FA1D}\u{30000}-\u{3134A}\u{E0001}\u{E0020}-\u{E007F}\u{E0100}-\u{E01EF}\u{F0000}-\u{FFFFD}\u{100000}-\u{10FFFD}]*$/u; - const bidiS6 = /[0-9A-Za-z\xAA\xB2\xB3\xB5\xB9\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02B8\u02BB-\u02C1\u02D0\u02D1\u02E0-\u02E4\u02EE\u0370-\u0373\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0482\u048A-\u052F\u0531-\u0556\u0559-\u0589\u06F0-\u06F9\u0903-\u0939\u093B\u093D-\u0940\u0949-\u094C\u094E-\u0950\u0958-\u0961\u0964-\u0980\u0982\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD-\u09C0\u09C7\u09C8\u09CB\u09CC\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E1\u09E6-\u09F1\u09F4-\u09FA\u09FC\u09FD\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3E-\u0A40\u0A59-\u0A5C\u0A5E\u0A66-\u0A6F\u0A72-\u0A74\u0A76\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD-\u0AC0\u0AC9\u0ACB\u0ACC\u0AD0\u0AE0\u0AE1\u0AE6-\u0AF0\u0AF9\u0B02\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B3E\u0B40\u0B47\u0B48\u0B4B\u0B4C\u0B57\u0B5C\u0B5D\u0B5F-\u0B61\u0B66-\u0B77\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE\u0BBF\u0BC1\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCC\u0BD0\u0BD7\u0BE6-\u0BF2\u0C01-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C41-\u0C44\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C66-\u0C6F\u0C77\u0C7F\u0C80\u0C82-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD-\u0CC4\u0CC6-\u0CC8\u0CCA\u0CCB\u0CD5\u0CD6\u0CDD\u0CDE\u0CE0\u0CE1\u0CE6-\u0CEF\u0CF1\u0CF2\u0D02-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D-\u0D40\u0D46-\u0D48\u0D4A-\u0D4C\u0D4E\u0D4F\u0D54-\u0D61\u0D66-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCF-\u0DD1\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2-\u0DF4\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E4F-\u0E5B\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00-\u0F17\u0F1A-\u0F34\u0F36\u0F38\u0F3E-\u0F47\u0F49-\u0F6C\u0F7F\u0F85\u0F88-\u0F8C\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE-\u0FDA\u1000-\u102C\u1031\u1038\u103B\u103C\u103F-\u1057\u105A-\u105D\u1061-\u1070\u1075-\u1081\u1083\u1084\u1087-\u108C\u108E-\u109C\u109E-\u10C5\u10C7\u10CD\u10D0-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1360-\u137C\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u167F\u1681-\u169A\u16A0-\u16F8\u1700-\u1711\u1715\u171F-\u1731\u1734-\u1736\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17B6\u17BE-\u17C5\u17C7\u17C8\u17D4-\u17DA\u17DC\u17E0-\u17E9\u1810-\u1819\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1923-\u1926\u1929-\u192B\u1930\u1931\u1933-\u1938\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u1A00-\u1A16\u1A19\u1A1A\u1A1E-\u1A55\u1A57\u1A61\u1A63\u1A64\u1A6D-\u1A72\u1A80-\u1A89\u1A90-\u1A99\u1AA0-\u1AAD\u1B04-\u1B33\u1B35\u1B3B\u1B3D-\u1B41\u1B43-\u1B4C\u1B50-\u1B6A\u1B74-\u1B7E\u1B82-\u1BA1\u1BA6\u1BA7\u1BAA\u1BAE-\u1BE5\u1BE7\u1BEA-\u1BEC\u1BEE\u1BF2\u1BF3\u1BFC-\u1C2B\u1C34\u1C35\u1C3B-\u1C49\u1C4D-\u1C88\u1C90-\u1CBA\u1CBD-\u1CC7\u1CD3\u1CE1\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5-\u1CF7\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u200E\u2070\u2071\u2074-\u2079\u207F-\u2089\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u214F\u2160-\u2188\u2336-\u237A\u2395\u2488-\u24E9\u26AC\u2800-\u28FF\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D70\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u3005-\u3007\u3021-\u3029\u302E\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u3190-\u31BF\u31F0-\u321C\u3220-\u324F\u3260-\u327B\u327F-\u32B0\u32C0-\u32CB\u32D0-\u3376\u337B-\u33DD\u33E0-\u33FE\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA60C\uA610-\uA62B\uA640-\uA66E\uA680-\uA69D\uA6A0-\uA6EF\uA6F2-\uA6F7\uA722-\uA787\uA789-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA824\uA827\uA830-\uA837\uA840-\uA873\uA880-\uA8C3\uA8CE-\uA8D9\uA8F2-\uA8FE\uA900-\uA925\uA92E-\uA946\uA952\uA953\uA95F-\uA97C\uA983-\uA9B2\uA9B4\uA9B5\uA9BA\uA9BB\uA9BE-\uA9CD\uA9CF-\uA9D9\uA9DE-\uA9E4\uA9E6-\uA9FE\uAA00-\uAA28\uAA2F\uAA30\uAA33\uAA34\uAA40-\uAA42\uAA44-\uAA4B\uAA4D\uAA50-\uAA59\uAA5C-\uAA7B\uAA7D-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAAEB\uAAEE-\uAAF5\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB69\uAB70-\uABE4\uABE6\uABE7\uABE9-\uABEC\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uD800-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFF10-\uFF19\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC\u{10000}-\u{1000B}\u{1000D}-\u{10026}\u{10028}-\u{1003A}\u{1003C}\u{1003D}\u{1003F}-\u{1004D}\u{10050}-\u{1005D}\u{10080}-\u{100FA}\u{10100}\u{10102}\u{10107}-\u{10133}\u{10137}-\u{1013F}\u{1018D}\u{1018E}\u{101D0}-\u{101FC}\u{10280}-\u{1029C}\u{102A0}-\u{102D0}\u{102E1}-\u{102FB}\u{10300}-\u{10323}\u{1032D}-\u{1034A}\u{10350}-\u{10375}\u{10380}-\u{1039D}\u{1039F}-\u{103C3}\u{103C8}-\u{103D5}\u{10400}-\u{1049D}\u{104A0}-\u{104A9}\u{104B0}-\u{104D3}\u{104D8}-\u{104FB}\u{10500}-\u{10527}\u{10530}-\u{10563}\u{1056F}-\u{1057A}\u{1057C}-\u{1058A}\u{1058C}-\u{10592}\u{10594}\u{10595}\u{10597}-\u{105A1}\u{105A3}-\u{105B1}\u{105B3}-\u{105B9}\u{105BB}\u{105BC}\u{10600}-\u{10736}\u{10740}-\u{10755}\u{10760}-\u{10767}\u{10780}-\u{10785}\u{10787}-\u{107B0}\u{107B2}-\u{107BA}\u{11000}\u{11002}-\u{11037}\u{11047}-\u{1104D}\u{11066}-\u{1106F}\u{11071}\u{11072}\u{11075}\u{11082}-\u{110B2}\u{110B7}\u{110B8}\u{110BB}-\u{110C1}\u{110CD}\u{110D0}-\u{110E8}\u{110F0}-\u{110F9}\u{11103}-\u{11126}\u{1112C}\u{11136}-\u{11147}\u{11150}-\u{11172}\u{11174}-\u{11176}\u{11182}-\u{111B5}\u{111BF}-\u{111C8}\u{111CD}\u{111CE}\u{111D0}-\u{111DF}\u{111E1}-\u{111F4}\u{11200}-\u{11211}\u{11213}-\u{1122E}\u{11232}\u{11233}\u{11235}\u{11238}-\u{1123D}\u{11280}-\u{11286}\u{11288}\u{1128A}-\u{1128D}\u{1128F}-\u{1129D}\u{1129F}-\u{112A9}\u{112B0}-\u{112DE}\u{112E0}-\u{112E2}\u{112F0}-\u{112F9}\u{11302}\u{11303}\u{11305}-\u{1130C}\u{1130F}\u{11310}\u{11313}-\u{11328}\u{1132A}-\u{11330}\u{11332}\u{11333}\u{11335}-\u{11339}\u{1133D}-\u{1133F}\u{11341}-\u{11344}\u{11347}\u{11348}\u{1134B}-\u{1134D}\u{11350}\u{11357}\u{1135D}-\u{11363}\u{11400}-\u{11437}\u{11440}\u{11441}\u{11445}\u{11447}-\u{1145B}\u{1145D}\u{1145F}-\u{11461}\u{11480}-\u{114B2}\u{114B9}\u{114BB}-\u{114BE}\u{114C1}\u{114C4}-\u{114C7}\u{114D0}-\u{114D9}\u{11580}-\u{115B1}\u{115B8}-\u{115BB}\u{115BE}\u{115C1}-\u{115DB}\u{11600}-\u{11632}\u{1163B}\u{1163C}\u{1163E}\u{11641}-\u{11644}\u{11650}-\u{11659}\u{11680}-\u{116AA}\u{116AC}\u{116AE}\u{116AF}\u{116B6}\u{116B8}\u{116B9}\u{116C0}-\u{116C9}\u{11700}-\u{1171A}\u{11720}\u{11721}\u{11726}\u{11730}-\u{11746}\u{11800}-\u{1182E}\u{11838}\u{1183B}\u{118A0}-\u{118F2}\u{118FF}-\u{11906}\u{11909}\u{1190C}-\u{11913}\u{11915}\u{11916}\u{11918}-\u{11935}\u{11937}\u{11938}\u{1193D}\u{1193F}-\u{11942}\u{11944}-\u{11946}\u{11950}-\u{11959}\u{119A0}-\u{119A7}\u{119AA}-\u{119D3}\u{119DC}-\u{119DF}\u{119E1}-\u{119E4}\u{11A00}\u{11A07}\u{11A08}\u{11A0B}-\u{11A32}\u{11A39}\u{11A3A}\u{11A3F}-\u{11A46}\u{11A50}\u{11A57}\u{11A58}\u{11A5C}-\u{11A89}\u{11A97}\u{11A9A}-\u{11AA2}\u{11AB0}-\u{11AF8}\u{11C00}-\u{11C08}\u{11C0A}-\u{11C2F}\u{11C3E}-\u{11C45}\u{11C50}-\u{11C6C}\u{11C70}-\u{11C8F}\u{11CA9}\u{11CB1}\u{11CB4}\u{11D00}-\u{11D06}\u{11D08}\u{11D09}\u{11D0B}-\u{11D30}\u{11D46}\u{11D50}-\u{11D59}\u{11D60}-\u{11D65}\u{11D67}\u{11D68}\u{11D6A}-\u{11D8E}\u{11D93}\u{11D94}\u{11D96}\u{11D98}\u{11DA0}-\u{11DA9}\u{11EE0}-\u{11EF2}\u{11EF5}-\u{11EF8}\u{11FB0}\u{11FC0}-\u{11FD4}\u{11FFF}-\u{12399}\u{12400}-\u{1246E}\u{12470}-\u{12474}\u{12480}-\u{12543}\u{12F90}-\u{12FF2}\u{13000}-\u{1342E}\u{13430}-\u{13438}\u{14400}-\u{14646}\u{16800}-\u{16A38}\u{16A40}-\u{16A5E}\u{16A60}-\u{16A69}\u{16A6E}-\u{16ABE}\u{16AC0}-\u{16AC9}\u{16AD0}-\u{16AED}\u{16AF5}\u{16B00}-\u{16B2F}\u{16B37}-\u{16B45}\u{16B50}-\u{16B59}\u{16B5B}-\u{16B61}\u{16B63}-\u{16B77}\u{16B7D}-\u{16B8F}\u{16E40}-\u{16E9A}\u{16F00}-\u{16F4A}\u{16F50}-\u{16F87}\u{16F93}-\u{16F9F}\u{16FE0}\u{16FE1}\u{16FE3}\u{16FF0}\u{16FF1}\u{17000}-\u{187F7}\u{18800}-\u{18CD5}\u{18D00}-\u{18D08}\u{1AFF0}-\u{1AFF3}\u{1AFF5}-\u{1AFFB}\u{1AFFD}\u{1AFFE}\u{1B000}-\u{1B122}\u{1B150}-\u{1B152}\u{1B164}-\u{1B167}\u{1B170}-\u{1B2FB}\u{1BC00}-\u{1BC6A}\u{1BC70}-\u{1BC7C}\u{1BC80}-\u{1BC88}\u{1BC90}-\u{1BC99}\u{1BC9C}\u{1BC9F}\u{1CF50}-\u{1CFC3}\u{1D000}-\u{1D0F5}\u{1D100}-\u{1D126}\u{1D129}-\u{1D166}\u{1D16A}-\u{1D172}\u{1D183}\u{1D184}\u{1D18C}-\u{1D1A9}\u{1D1AE}-\u{1D1E8}\u{1D2E0}-\u{1D2F3}\u{1D360}-\u{1D378}\u{1D400}-\u{1D454}\u{1D456}-\u{1D49C}\u{1D49E}\u{1D49F}\u{1D4A2}\u{1D4A5}\u{1D4A6}\u{1D4A9}-\u{1D4AC}\u{1D4AE}-\u{1D4B9}\u{1D4BB}\u{1D4BD}-\u{1D4C3}\u{1D4C5}-\u{1D505}\u{1D507}-\u{1D50A}\u{1D50D}-\u{1D514}\u{1D516}-\u{1D51C}\u{1D51E}-\u{1D539}\u{1D53B}-\u{1D53E}\u{1D540}-\u{1D544}\u{1D546}\u{1D54A}-\u{1D550}\u{1D552}-\u{1D6A5}\u{1D6A8}-\u{1D6DA}\u{1D6DC}-\u{1D714}\u{1D716}-\u{1D74E}\u{1D750}-\u{1D788}\u{1D78A}-\u{1D7C2}\u{1D7C4}-\u{1D7CB}\u{1D7CE}-\u{1D9FF}\u{1DA37}-\u{1DA3A}\u{1DA6D}-\u{1DA74}\u{1DA76}-\u{1DA83}\u{1DA85}-\u{1DA8B}\u{1DF00}-\u{1DF1E}\u{1E100}-\u{1E12C}\u{1E137}-\u{1E13D}\u{1E140}-\u{1E149}\u{1E14E}\u{1E14F}\u{1E290}-\u{1E2AD}\u{1E2C0}-\u{1E2EB}\u{1E2F0}-\u{1E2F9}\u{1E7E0}-\u{1E7E6}\u{1E7E8}-\u{1E7EB}\u{1E7ED}\u{1E7EE}\u{1E7F0}-\u{1E7FE}\u{1F100}-\u{1F10A}\u{1F110}-\u{1F12E}\u{1F130}-\u{1F169}\u{1F170}-\u{1F1AC}\u{1F1E6}-\u{1F202}\u{1F210}-\u{1F23B}\u{1F240}-\u{1F248}\u{1F250}\u{1F251}\u{1FBF0}-\u{1FBF9}\u{20000}-\u{2A6DF}\u{2A700}-\u{2B738}\u{2B740}-\u{2B81D}\u{2B820}-\u{2CEA1}\u{2CEB0}-\u{2EBE0}\u{2F800}-\u{2FA1D}\u{30000}-\u{3134A}\u{F0000}-\u{FFFFD}\u{100000}-\u{10FFFD}][\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0898-\u089F\u08CA-\u08E1\u08E3-\u0902\u093A\u093C\u0941-\u0948\u094D\u0951-\u0957\u0962\u0963\u0981\u09BC\u09C1-\u09C4\u09CD\u09E2\u09E3\u09FE\u0A01\u0A02\u0A3C\u0A41\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81\u0A82\u0ABC\u0AC1-\u0AC5\u0AC7\u0AC8\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01\u0B3C\u0B3F\u0B41-\u0B44\u0B4D\u0B55\u0B56\u0B62\u0B63\u0B82\u0BC0\u0BCD\u0C00\u0C04\u0C3C\u0C3E-\u0C40\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81\u0CBC\u0CCC\u0CCD\u0CE2\u0CE3\u0D00\u0D01\u0D3B\u0D3C\u0D41-\u0D44\u0D4D\u0D62\u0D63\u0D81\u0DCA\u0DD2-\u0DD4\u0DD6\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECD\u0F18\u0F19\u0F35\u0F37\u0F39\u0F71-\u0F7E\u0F80-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102D-\u1030\u1032-\u1037\u1039\u103A\u103D\u103E\u1058\u1059\u105E-\u1060\u1071-\u1074\u1082\u1085\u1086\u108D\u109D\u135D-\u135F\u1712-\u1714\u1732\u1733\u1752\u1753\u1772\u1773\u17B4\u17B5\u17B7-\u17BD\u17C6\u17C9-\u17D3\u17DD\u180B-\u180D\u180F\u1885\u1886\u18A9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193B\u1A17\u1A18\u1A1B\u1A56\u1A58-\u1A5E\u1A60\u1A62\u1A65-\u1A6C\u1A73-\u1A7C\u1A7F\u1AB0-\u1ACE\u1B00-\u1B03\u1B34\u1B36-\u1B3A\u1B3C\u1B42\u1B6B-\u1B73\u1B80\u1B81\u1BA2-\u1BA5\u1BA8\u1BA9\u1BAB-\u1BAD\u1BE6\u1BE8\u1BE9\u1BED\u1BEF-\u1BF1\u1C2C-\u1C33\u1C36\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE0\u1CE2-\u1CE8\u1CED\u1CF4\u1CF8\u1CF9\u1DC0-\u1DFF\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302D\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA825\uA826\uA82C\uA8C4\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA951\uA980-\uA982\uA9B3\uA9B6-\uA9B9\uA9BC\uA9BD\uA9E5\uAA29-\uAA2E\uAA31\uAA32\uAA35\uAA36\uAA43\uAA4C\uAA7C\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEC\uAAED\uAAF6\uABE5\uABE8\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\u{101FD}\u{102E0}\u{10376}-\u{1037A}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10D24}-\u{10D27}\u{10EAB}\u{10EAC}\u{10F46}-\u{10F50}\u{10F82}-\u{10F85}\u{11001}\u{11038}-\u{11046}\u{11070}\u{11073}\u{11074}\u{1107F}-\u{11081}\u{110B3}-\u{110B6}\u{110B9}\u{110BA}\u{110C2}\u{11100}-\u{11102}\u{11127}-\u{1112B}\u{1112D}-\u{11134}\u{11173}\u{11180}\u{11181}\u{111B6}-\u{111BE}\u{111C9}-\u{111CC}\u{111CF}\u{1122F}-\u{11231}\u{11234}\u{11236}\u{11237}\u{1123E}\u{112DF}\u{112E3}-\u{112EA}\u{11300}\u{11301}\u{1133B}\u{1133C}\u{11340}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{11438}-\u{1143F}\u{11442}-\u{11444}\u{11446}\u{1145E}\u{114B3}-\u{114B8}\u{114BA}\u{114BF}\u{114C0}\u{114C2}\u{114C3}\u{115B2}-\u{115B5}\u{115BC}\u{115BD}\u{115BF}\u{115C0}\u{115DC}\u{115DD}\u{11633}-\u{1163A}\u{1163D}\u{1163F}\u{11640}\u{116AB}\u{116AD}\u{116B0}-\u{116B5}\u{116B7}\u{1171D}-\u{1171F}\u{11722}-\u{11725}\u{11727}-\u{1172B}\u{1182F}-\u{11837}\u{11839}\u{1183A}\u{1193B}\u{1193C}\u{1193E}\u{11943}\u{119D4}-\u{119D7}\u{119DA}\u{119DB}\u{119E0}\u{11A01}-\u{11A06}\u{11A09}\u{11A0A}\u{11A33}-\u{11A38}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A56}\u{11A59}-\u{11A5B}\u{11A8A}-\u{11A96}\u{11A98}\u{11A99}\u{11C30}-\u{11C36}\u{11C38}-\u{11C3D}\u{11C92}-\u{11CA7}\u{11CAA}-\u{11CB0}\u{11CB2}\u{11CB3}\u{11CB5}\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D90}\u{11D91}\u{11D95}\u{11D97}\u{11EF3}\u{11EF4}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F8F}-\u{16F92}\u{16FE4}\u{1BC9D}\u{1BC9E}\u{1CF00}-\u{1CF2D}\u{1CF30}-\u{1CF46}\u{1D167}-\u{1D169}\u{1D17B}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D242}-\u{1D244}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E130}-\u{1E136}\u{1E2AE}\u{1E2EC}-\u{1E2EF}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94A}\u{E0100}-\u{E01EF}]*$/u; - - var regexes$1 = { - combiningMarks, - combiningClassVirama, - validZWNJ, - bidiDomain, - bidiS1LTR, - bidiS1RTL, - bidiS2, - bidiS3, - bidiS4EN, - bidiS4AN, - bidiS5, - bidiS6 - }; - - var require$$2 = [ - [ - [ - 0, - 44 - ], - 4 - ], - [ - [ - 45, - 46 - ], - 2 - ], - [ - 47, - 4 - ], - [ - [ - 48, - 57 - ], - 2 - ], - [ - [ - 58, - 64 - ], - 4 - ], - [ - 65, - 1, - "a" - ], - [ - 66, - 1, - "b" - ], - [ - 67, - 1, - "c" - ], - [ - 68, - 1, - "d" - ], - [ - 69, - 1, - "e" - ], - [ - 70, - 1, - "f" - ], - [ - 71, - 1, - "g" - ], - [ - 72, - 1, - "h" - ], - [ - 73, - 1, - "i" - ], - [ - 74, - 1, - "j" - ], - [ - 75, - 1, - "k" - ], - [ - 76, - 1, - "l" - ], - [ - 77, - 1, - "m" - ], - [ - 78, - 1, - "n" - ], - [ - 79, - 1, - "o" - ], - [ - 80, - 1, - "p" - ], - [ - 81, - 1, - "q" - ], - [ - 82, - 1, - "r" - ], - [ - 83, - 1, - "s" - ], - [ - 84, - 1, - "t" - ], - [ - 85, - 1, - "u" - ], - [ - 86, - 1, - "v" - ], - [ - 87, - 1, - "w" - ], - [ - 88, - 1, - "x" - ], - [ - 89, - 1, - "y" - ], - [ - 90, - 1, - "z" - ], - [ - [ - 91, - 96 - ], - 4 - ], - [ - [ - 97, - 122 - ], - 2 - ], - [ - [ - 123, - 127 - ], - 4 - ], - [ - [ - 128, - 159 - ], - 3 - ], - [ - 160, - 5, - " " - ], - [ - [ - 161, - 167 - ], - 2 - ], - [ - 168, - 5, - " ̈" - ], - [ - 169, - 2 - ], - [ - 170, - 1, - "a" - ], - [ - [ - 171, - 172 - ], - 2 - ], - [ - 173, - 7 - ], - [ - 174, - 2 - ], - [ - 175, - 5, - " ̄" - ], - [ - [ - 176, - 177 - ], - 2 - ], - [ - 178, - 1, - "2" - ], - [ - 179, - 1, - "3" - ], - [ - 180, - 5, - " ́" - ], - [ - 181, - 1, - "μ" - ], - [ - 182, - 2 - ], - [ - 183, - 2 - ], - [ - 184, - 5, - " ̧" - ], - [ - 185, - 1, - "1" - ], - [ - 186, - 1, - "o" - ], - [ - 187, - 2 - ], - [ - 188, - 1, - "1⁄4" - ], - [ - 189, - 1, - "1⁄2" - ], - [ - 190, - 1, - "3⁄4" - ], - [ - 191, - 2 - ], - [ - 192, - 1, - "à" - ], - [ - 193, - 1, - "á" - ], - [ - 194, - 1, - "â" - ], - [ - 195, - 1, - "ã" - ], - [ - 196, - 1, - "ä" - ], - [ - 197, - 1, - "å" - ], - [ - 198, - 1, - "æ" - ], - [ - 199, - 1, - "ç" - ], - [ - 200, - 1, - "è" - ], - [ - 201, - 1, - "é" - ], - [ - 202, - 1, - "ê" - ], - [ - 203, - 1, - "ë" - ], - [ - 204, - 1, - "ì" - ], - [ - 205, - 1, - "í" - ], - [ - 206, - 1, - "î" - ], - [ - 207, - 1, - "ï" - ], - [ - 208, - 1, - "ð" - ], - [ - 209, - 1, - "ñ" - ], - [ - 210, - 1, - "ò" - ], - [ - 211, - 1, - "ó" - ], - [ - 212, - 1, - "ô" - ], - [ - 213, - 1, - "õ" - ], - [ - 214, - 1, - "ö" - ], - [ - 215, - 2 - ], - [ - 216, - 1, - "ø" - ], - [ - 217, - 1, - "ù" - ], - [ - 218, - 1, - "ú" - ], - [ - 219, - 1, - "û" - ], - [ - 220, - 1, - "ü" - ], - [ - 221, - 1, - "ý" - ], - [ - 222, - 1, - "þ" - ], - [ - 223, - 6, - "ss" - ], - [ - [ - 224, - 246 - ], - 2 - ], - [ - 247, - 2 - ], - [ - [ - 248, - 255 - ], - 2 - ], - [ - 256, - 1, - "ā" - ], - [ - 257, - 2 - ], - [ - 258, - 1, - "ă" - ], - [ - 259, - 2 - ], - [ - 260, - 1, - "ą" - ], - [ - 261, - 2 - ], - [ - 262, - 1, - "ć" - ], - [ - 263, - 2 - ], - [ - 264, - 1, - "ĉ" - ], - [ - 265, - 2 - ], - [ - 266, - 1, - "ċ" - ], - [ - 267, - 2 - ], - [ - 268, - 1, - "č" - ], - [ - 269, - 2 - ], - [ - 270, - 1, - "ď" - ], - [ - 271, - 2 - ], - [ - 272, - 1, - "đ" - ], - [ - 273, - 2 - ], - [ - 274, - 1, - "ē" - ], - [ - 275, - 2 - ], - [ - 276, - 1, - "ĕ" - ], - [ - 277, - 2 - ], - [ - 278, - 1, - "ė" - ], - [ - 279, - 2 - ], - [ - 280, - 1, - "ę" - ], - [ - 281, - 2 - ], - [ - 282, - 1, - "ě" - ], - [ - 283, - 2 - ], - [ - 284, - 1, - "ĝ" - ], - [ - 285, - 2 - ], - [ - 286, - 1, - "ğ" - ], - [ - 287, - 2 - ], - [ - 288, - 1, - "ġ" - ], - [ - 289, - 2 - ], - [ - 290, - 1, - "ģ" - ], - [ - 291, - 2 - ], - [ - 292, - 1, - "ĥ" - ], - [ - 293, - 2 - ], - [ - 294, - 1, - "ħ" - ], - [ - 295, - 2 - ], - [ - 296, - 1, - "ĩ" - ], - [ - 297, - 2 - ], - [ - 298, - 1, - "ī" - ], - [ - 299, - 2 - ], - [ - 300, - 1, - "ĭ" - ], - [ - 301, - 2 - ], - [ - 302, - 1, - "į" - ], - [ - 303, - 2 - ], - [ - 304, - 1, - "i̇" - ], - [ - 305, - 2 - ], - [ - [ - 306, - 307 - ], - 1, - "ij" - ], - [ - 308, - 1, - "ĵ" - ], - [ - 309, - 2 - ], - [ - 310, - 1, - "ķ" - ], - [ - [ - 311, - 312 - ], - 2 - ], - [ - 313, - 1, - "ĺ" - ], - [ - 314, - 2 - ], - [ - 315, - 1, - "ļ" - ], - [ - 316, - 2 - ], - [ - 317, - 1, - "ľ" - ], - [ - 318, - 2 - ], - [ - [ - 319, - 320 - ], - 1, - "l·" - ], - [ - 321, - 1, - "ł" - ], - [ - 322, - 2 - ], - [ - 323, - 1, - "ń" - ], - [ - 324, - 2 - ], - [ - 325, - 1, - "ņ" - ], - [ - 326, - 2 - ], - [ - 327, - 1, - "ň" - ], - [ - 328, - 2 - ], - [ - 329, - 1, - "ʼn" - ], - [ - 330, - 1, - "ŋ" - ], - [ - 331, - 2 - ], - [ - 332, - 1, - "ō" - ], - [ - 333, - 2 - ], - [ - 334, - 1, - "ŏ" - ], - [ - 335, - 2 - ], - [ - 336, - 1, - "ő" - ], - [ - 337, - 2 - ], - [ - 338, - 1, - "œ" - ], - [ - 339, - 2 - ], - [ - 340, - 1, - "ŕ" - ], - [ - 341, - 2 - ], - [ - 342, - 1, - "ŗ" - ], - [ - 343, - 2 - ], - [ - 344, - 1, - "ř" - ], - [ - 345, - 2 - ], - [ - 346, - 1, - "ś" - ], - [ - 347, - 2 - ], - [ - 348, - 1, - "ŝ" - ], - [ - 349, - 2 - ], - [ - 350, - 1, - "ş" - ], - [ - 351, - 2 - ], - [ - 352, - 1, - "š" - ], - [ - 353, - 2 - ], - [ - 354, - 1, - "ţ" - ], - [ - 355, - 2 - ], - [ - 356, - 1, - "ť" - ], - [ - 357, - 2 - ], - [ - 358, - 1, - "ŧ" - ], - [ - 359, - 2 - ], - [ - 360, - 1, - "ũ" - ], - [ - 361, - 2 - ], - [ - 362, - 1, - "ū" - ], - [ - 363, - 2 - ], - [ - 364, - 1, - "ŭ" - ], - [ - 365, - 2 - ], - [ - 366, - 1, - "ů" - ], - [ - 367, - 2 - ], - [ - 368, - 1, - "ű" - ], - [ - 369, - 2 - ], - [ - 370, - 1, - "ų" - ], - [ - 371, - 2 - ], - [ - 372, - 1, - "ŵ" - ], - [ - 373, - 2 - ], - [ - 374, - 1, - "ŷ" - ], - [ - 375, - 2 - ], - [ - 376, - 1, - "ÿ" - ], - [ - 377, - 1, - "ź" - ], - [ - 378, - 2 - ], - [ - 379, - 1, - "ż" - ], - [ - 380, - 2 - ], - [ - 381, - 1, - "ž" - ], - [ - 382, - 2 - ], - [ - 383, - 1, - "s" - ], - [ - 384, - 2 - ], - [ - 385, - 1, - "ɓ" - ], - [ - 386, - 1, - "ƃ" - ], - [ - 387, - 2 - ], - [ - 388, - 1, - "ƅ" - ], - [ - 389, - 2 - ], - [ - 390, - 1, - "ɔ" - ], - [ - 391, - 1, - "ƈ" - ], - [ - 392, - 2 - ], - [ - 393, - 1, - "ɖ" - ], - [ - 394, - 1, - "ɗ" - ], - [ - 395, - 1, - "ƌ" - ], - [ - [ - 396, - 397 - ], - 2 - ], - [ - 398, - 1, - "ǝ" - ], - [ - 399, - 1, - "ə" - ], - [ - 400, - 1, - "ɛ" - ], - [ - 401, - 1, - "ƒ" - ], - [ - 402, - 2 - ], - [ - 403, - 1, - "ɠ" - ], - [ - 404, - 1, - "ɣ" - ], - [ - 405, - 2 - ], - [ - 406, - 1, - "ɩ" - ], - [ - 407, - 1, - "ɨ" - ], - [ - 408, - 1, - "ƙ" - ], - [ - [ - 409, - 411 - ], - 2 - ], - [ - 412, - 1, - "ɯ" - ], - [ - 413, - 1, - "ɲ" - ], - [ - 414, - 2 - ], - [ - 415, - 1, - "ɵ" - ], - [ - 416, - 1, - "ơ" - ], - [ - 417, - 2 - ], - [ - 418, - 1, - "ƣ" - ], - [ - 419, - 2 - ], - [ - 420, - 1, - "ƥ" - ], - [ - 421, - 2 - ], - [ - 422, - 1, - "ʀ" - ], - [ - 423, - 1, - "ƨ" - ], - [ - 424, - 2 - ], - [ - 425, - 1, - "ʃ" - ], - [ - [ - 426, - 427 - ], - 2 - ], - [ - 428, - 1, - "ƭ" - ], - [ - 429, - 2 - ], - [ - 430, - 1, - "ʈ" - ], - [ - 431, - 1, - "ư" - ], - [ - 432, - 2 - ], - [ - 433, - 1, - "ʊ" - ], - [ - 434, - 1, - "ʋ" - ], - [ - 435, - 1, - "ƴ" - ], - [ - 436, - 2 - ], - [ - 437, - 1, - "ƶ" - ], - [ - 438, - 2 - ], - [ - 439, - 1, - "ʒ" - ], - [ - 440, - 1, - "ƹ" - ], - [ - [ - 441, - 443 - ], - 2 - ], - [ - 444, - 1, - "ƽ" - ], - [ - [ - 445, - 451 - ], - 2 - ], - [ - [ - 452, - 454 - ], - 1, - "dž" - ], - [ - [ - 455, - 457 - ], - 1, - "lj" - ], - [ - [ - 458, - 460 - ], - 1, - "nj" - ], - [ - 461, - 1, - "ǎ" - ], - [ - 462, - 2 - ], - [ - 463, - 1, - "ǐ" - ], - [ - 464, - 2 - ], - [ - 465, - 1, - "ǒ" - ], - [ - 466, - 2 - ], - [ - 467, - 1, - "ǔ" - ], - [ - 468, - 2 - ], - [ - 469, - 1, - "ǖ" - ], - [ - 470, - 2 - ], - [ - 471, - 1, - "ǘ" - ], - [ - 472, - 2 - ], - [ - 473, - 1, - "ǚ" - ], - [ - 474, - 2 - ], - [ - 475, - 1, - "ǜ" - ], - [ - [ - 476, - 477 - ], - 2 - ], - [ - 478, - 1, - "ǟ" - ], - [ - 479, - 2 - ], - [ - 480, - 1, - "ǡ" - ], - [ - 481, - 2 - ], - [ - 482, - 1, - "ǣ" - ], - [ - 483, - 2 - ], - [ - 484, - 1, - "ǥ" - ], - [ - 485, - 2 - ], - [ - 486, - 1, - "ǧ" - ], - [ - 487, - 2 - ], - [ - 488, - 1, - "ǩ" - ], - [ - 489, - 2 - ], - [ - 490, - 1, - "ǫ" - ], - [ - 491, - 2 - ], - [ - 492, - 1, - "ǭ" - ], - [ - 493, - 2 - ], - [ - 494, - 1, - "ǯ" - ], - [ - [ - 495, - 496 - ], - 2 - ], - [ - [ - 497, - 499 - ], - 1, - "dz" - ], - [ - 500, - 1, - "ǵ" - ], - [ - 501, - 2 - ], - [ - 502, - 1, - "ƕ" - ], - [ - 503, - 1, - "ƿ" - ], - [ - 504, - 1, - "ǹ" - ], - [ - 505, - 2 - ], - [ - 506, - 1, - "ǻ" - ], - [ - 507, - 2 - ], - [ - 508, - 1, - "ǽ" - ], - [ - 509, - 2 - ], - [ - 510, - 1, - "ǿ" - ], - [ - 511, - 2 - ], - [ - 512, - 1, - "ȁ" - ], - [ - 513, - 2 - ], - [ - 514, - 1, - "ȃ" - ], - [ - 515, - 2 - ], - [ - 516, - 1, - "ȅ" - ], - [ - 517, - 2 - ], - [ - 518, - 1, - "ȇ" - ], - [ - 519, - 2 - ], - [ - 520, - 1, - "ȉ" - ], - [ - 521, - 2 - ], - [ - 522, - 1, - "ȋ" - ], - [ - 523, - 2 - ], - [ - 524, - 1, - "ȍ" - ], - [ - 525, - 2 - ], - [ - 526, - 1, - "ȏ" - ], - [ - 527, - 2 - ], - [ - 528, - 1, - "ȑ" - ], - [ - 529, - 2 - ], - [ - 530, - 1, - "ȓ" - ], - [ - 531, - 2 - ], - [ - 532, - 1, - "ȕ" - ], - [ - 533, - 2 - ], - [ - 534, - 1, - "ȗ" - ], - [ - 535, - 2 - ], - [ - 536, - 1, - "ș" - ], - [ - 537, - 2 - ], - [ - 538, - 1, - "ț" - ], - [ - 539, - 2 - ], - [ - 540, - 1, - "ȝ" - ], - [ - 541, - 2 - ], - [ - 542, - 1, - "ȟ" - ], - [ - 543, - 2 - ], - [ - 544, - 1, - "ƞ" - ], - [ - 545, - 2 - ], - [ - 546, - 1, - "ȣ" - ], - [ - 547, - 2 - ], - [ - 548, - 1, - "ȥ" - ], - [ - 549, - 2 - ], - [ - 550, - 1, - "ȧ" - ], - [ - 551, - 2 - ], - [ - 552, - 1, - "ȩ" - ], - [ - 553, - 2 - ], - [ - 554, - 1, - "ȫ" - ], - [ - 555, - 2 - ], - [ - 556, - 1, - "ȭ" - ], - [ - 557, - 2 - ], - [ - 558, - 1, - "ȯ" - ], - [ - 559, - 2 - ], - [ - 560, - 1, - "ȱ" - ], - [ - 561, - 2 - ], - [ - 562, - 1, - "ȳ" - ], - [ - 563, - 2 - ], - [ - [ - 564, - 566 - ], - 2 - ], - [ - [ - 567, - 569 - ], - 2 - ], - [ - 570, - 1, - "ⱥ" - ], - [ - 571, - 1, - "ȼ" - ], - [ - 572, - 2 - ], - [ - 573, - 1, - "ƚ" - ], - [ - 574, - 1, - "ⱦ" - ], - [ - [ - 575, - 576 - ], - 2 - ], - [ - 577, - 1, - "ɂ" - ], - [ - 578, - 2 - ], - [ - 579, - 1, - "ƀ" - ], - [ - 580, - 1, - "ʉ" - ], - [ - 581, - 1, - "ʌ" - ], - [ - 582, - 1, - "ɇ" - ], - [ - 583, - 2 - ], - [ - 584, - 1, - "ɉ" - ], - [ - 585, - 2 - ], - [ - 586, - 1, - "ɋ" - ], - [ - 587, - 2 - ], - [ - 588, - 1, - "ɍ" - ], - [ - 589, - 2 - ], - [ - 590, - 1, - "ɏ" - ], - [ - 591, - 2 - ], - [ - [ - 592, - 680 - ], - 2 - ], - [ - [ - 681, - 685 - ], - 2 - ], - [ - [ - 686, - 687 - ], - 2 - ], - [ - 688, - 1, - "h" - ], - [ - 689, - 1, - "ɦ" - ], - [ - 690, - 1, - "j" - ], - [ - 691, - 1, - "r" - ], - [ - 692, - 1, - "ɹ" - ], - [ - 693, - 1, - "ɻ" - ], - [ - 694, - 1, - "ʁ" - ], - [ - 695, - 1, - "w" - ], - [ - 696, - 1, - "y" - ], - [ - [ - 697, - 705 - ], - 2 - ], - [ - [ - 706, - 709 - ], - 2 - ], - [ - [ - 710, - 721 - ], - 2 - ], - [ - [ - 722, - 727 - ], - 2 - ], - [ - 728, - 5, - " ̆" - ], - [ - 729, - 5, - " ̇" - ], - [ - 730, - 5, - " ̊" - ], - [ - 731, - 5, - " ̨" - ], - [ - 732, - 5, - " ̃" - ], - [ - 733, - 5, - " ̋" - ], - [ - 734, - 2 - ], - [ - 735, - 2 - ], - [ - 736, - 1, - "ɣ" - ], - [ - 737, - 1, - "l" - ], - [ - 738, - 1, - "s" - ], - [ - 739, - 1, - "x" - ], - [ - 740, - 1, - "ʕ" - ], - [ - [ - 741, - 745 - ], - 2 - ], - [ - [ - 746, - 747 - ], - 2 - ], - [ - 748, - 2 - ], - [ - 749, - 2 - ], - [ - 750, - 2 - ], - [ - [ - 751, - 767 - ], - 2 - ], - [ - [ - 768, - 831 - ], - 2 - ], - [ - 832, - 1, - "̀" - ], - [ - 833, - 1, - "́" - ], - [ - 834, - 2 - ], - [ - 835, - 1, - "̓" - ], - [ - 836, - 1, - "̈́" - ], - [ - 837, - 1, - "ι" - ], - [ - [ - 838, - 846 - ], - 2 - ], - [ - 847, - 7 - ], - [ - [ - 848, - 855 - ], - 2 - ], - [ - [ - 856, - 860 - ], - 2 - ], - [ - [ - 861, - 863 - ], - 2 - ], - [ - [ - 864, - 865 - ], - 2 - ], - [ - 866, - 2 - ], - [ - [ - 867, - 879 - ], - 2 - ], - [ - 880, - 1, - "ͱ" - ], - [ - 881, - 2 - ], - [ - 882, - 1, - "ͳ" - ], - [ - 883, - 2 - ], - [ - 884, - 1, - "ʹ" - ], - [ - 885, - 2 - ], - [ - 886, - 1, - "ͷ" - ], - [ - 887, - 2 - ], - [ - [ - 888, - 889 - ], - 3 - ], - [ - 890, - 5, - " ι" - ], - [ - [ - 891, - 893 - ], - 2 - ], - [ - 894, - 5, - ";" - ], - [ - 895, - 1, - "ϳ" - ], - [ - [ - 896, - 899 - ], - 3 - ], - [ - 900, - 5, - " ́" - ], - [ - 901, - 5, - " ̈́" - ], - [ - 902, - 1, - "ά" - ], - [ - 903, - 1, - "·" - ], - [ - 904, - 1, - "έ" - ], - [ - 905, - 1, - "ή" - ], - [ - 906, - 1, - "ί" - ], - [ - 907, - 3 - ], - [ - 908, - 1, - "ό" - ], - [ - 909, - 3 - ], - [ - 910, - 1, - "ύ" - ], - [ - 911, - 1, - "ώ" - ], - [ - 912, - 2 - ], - [ - 913, - 1, - "α" - ], - [ - 914, - 1, - "β" - ], - [ - 915, - 1, - "γ" - ], - [ - 916, - 1, - "δ" - ], - [ - 917, - 1, - "ε" - ], - [ - 918, - 1, - "ζ" - ], - [ - 919, - 1, - "η" - ], - [ - 920, - 1, - "θ" - ], - [ - 921, - 1, - "ι" - ], - [ - 922, - 1, - "κ" - ], - [ - 923, - 1, - "λ" - ], - [ - 924, - 1, - "μ" - ], - [ - 925, - 1, - "ν" - ], - [ - 926, - 1, - "ξ" - ], - [ - 927, - 1, - "ο" - ], - [ - 928, - 1, - "π" - ], - [ - 929, - 1, - "ρ" - ], - [ - 930, - 3 - ], - [ - 931, - 1, - "σ" - ], - [ - 932, - 1, - "τ" - ], - [ - 933, - 1, - "υ" - ], - [ - 934, - 1, - "φ" - ], - [ - 935, - 1, - "χ" - ], - [ - 936, - 1, - "ψ" - ], - [ - 937, - 1, - "ω" - ], - [ - 938, - 1, - "ϊ" - ], - [ - 939, - 1, - "ϋ" - ], - [ - [ - 940, - 961 - ], - 2 - ], - [ - 962, - 6, - "σ" - ], - [ - [ - 963, - 974 - ], - 2 - ], - [ - 975, - 1, - "ϗ" - ], - [ - 976, - 1, - "β" - ], - [ - 977, - 1, - "θ" - ], - [ - 978, - 1, - "υ" - ], - [ - 979, - 1, - "ύ" - ], - [ - 980, - 1, - "ϋ" - ], - [ - 981, - 1, - "φ" - ], - [ - 982, - 1, - "π" - ], - [ - 983, - 2 - ], - [ - 984, - 1, - "ϙ" - ], - [ - 985, - 2 - ], - [ - 986, - 1, - "ϛ" - ], - [ - 987, - 2 - ], - [ - 988, - 1, - "ϝ" - ], - [ - 989, - 2 - ], - [ - 990, - 1, - "ϟ" - ], - [ - 991, - 2 - ], - [ - 992, - 1, - "ϡ" - ], - [ - 993, - 2 - ], - [ - 994, - 1, - "ϣ" - ], - [ - 995, - 2 - ], - [ - 996, - 1, - "ϥ" - ], - [ - 997, - 2 - ], - [ - 998, - 1, - "ϧ" - ], - [ - 999, - 2 - ], - [ - 1000, - 1, - "ϩ" - ], - [ - 1001, - 2 - ], - [ - 1002, - 1, - "ϫ" - ], - [ - 1003, - 2 - ], - [ - 1004, - 1, - "ϭ" - ], - [ - 1005, - 2 - ], - [ - 1006, - 1, - "ϯ" - ], - [ - 1007, - 2 - ], - [ - 1008, - 1, - "κ" - ], - [ - 1009, - 1, - "ρ" - ], - [ - 1010, - 1, - "σ" - ], - [ - 1011, - 2 - ], - [ - 1012, - 1, - "θ" - ], - [ - 1013, - 1, - "ε" - ], - [ - 1014, - 2 - ], - [ - 1015, - 1, - "ϸ" - ], - [ - 1016, - 2 - ], - [ - 1017, - 1, - "σ" - ], - [ - 1018, - 1, - "ϻ" - ], - [ - 1019, - 2 - ], - [ - 1020, - 2 - ], - [ - 1021, - 1, - "ͻ" - ], - [ - 1022, - 1, - "ͼ" - ], - [ - 1023, - 1, - "ͽ" - ], - [ - 1024, - 1, - "ѐ" - ], - [ - 1025, - 1, - "ё" - ], - [ - 1026, - 1, - "ђ" - ], - [ - 1027, - 1, - "ѓ" - ], - [ - 1028, - 1, - "є" - ], - [ - 1029, - 1, - "ѕ" - ], - [ - 1030, - 1, - "і" - ], - [ - 1031, - 1, - "ї" - ], - [ - 1032, - 1, - "ј" - ], - [ - 1033, - 1, - "љ" - ], - [ - 1034, - 1, - "њ" - ], - [ - 1035, - 1, - "ћ" - ], - [ - 1036, - 1, - "ќ" - ], - [ - 1037, - 1, - "ѝ" - ], - [ - 1038, - 1, - "ў" - ], - [ - 1039, - 1, - "џ" - ], - [ - 1040, - 1, - "а" - ], - [ - 1041, - 1, - "б" - ], - [ - 1042, - 1, - "в" - ], - [ - 1043, - 1, - "г" - ], - [ - 1044, - 1, - "д" - ], - [ - 1045, - 1, - "е" - ], - [ - 1046, - 1, - "ж" - ], - [ - 1047, - 1, - "з" - ], - [ - 1048, - 1, - "и" - ], - [ - 1049, - 1, - "й" - ], - [ - 1050, - 1, - "к" - ], - [ - 1051, - 1, - "л" - ], - [ - 1052, - 1, - "м" - ], - [ - 1053, - 1, - "н" - ], - [ - 1054, - 1, - "о" - ], - [ - 1055, - 1, - "п" - ], - [ - 1056, - 1, - "р" - ], - [ - 1057, - 1, - "с" - ], - [ - 1058, - 1, - "т" - ], - [ - 1059, - 1, - "у" - ], - [ - 1060, - 1, - "ф" - ], - [ - 1061, - 1, - "х" - ], - [ - 1062, - 1, - "ц" - ], - [ - 1063, - 1, - "ч" - ], - [ - 1064, - 1, - "ш" - ], - [ - 1065, - 1, - "щ" - ], - [ - 1066, - 1, - "ъ" - ], - [ - 1067, - 1, - "ы" - ], - [ - 1068, - 1, - "ь" - ], - [ - 1069, - 1, - "э" - ], - [ - 1070, - 1, - "ю" - ], - [ - 1071, - 1, - "я" - ], - [ - [ - 1072, - 1103 - ], - 2 - ], - [ - 1104, - 2 - ], - [ - [ - 1105, - 1116 - ], - 2 - ], - [ - 1117, - 2 - ], - [ - [ - 1118, - 1119 - ], - 2 - ], - [ - 1120, - 1, - "ѡ" - ], - [ - 1121, - 2 - ], - [ - 1122, - 1, - "ѣ" - ], - [ - 1123, - 2 - ], - [ - 1124, - 1, - "ѥ" - ], - [ - 1125, - 2 - ], - [ - 1126, - 1, - "ѧ" - ], - [ - 1127, - 2 - ], - [ - 1128, - 1, - "ѩ" - ], - [ - 1129, - 2 - ], - [ - 1130, - 1, - "ѫ" - ], - [ - 1131, - 2 - ], - [ - 1132, - 1, - "ѭ" - ], - [ - 1133, - 2 - ], - [ - 1134, - 1, - "ѯ" - ], - [ - 1135, - 2 - ], - [ - 1136, - 1, - "ѱ" - ], - [ - 1137, - 2 - ], - [ - 1138, - 1, - "ѳ" - ], - [ - 1139, - 2 - ], - [ - 1140, - 1, - "ѵ" - ], - [ - 1141, - 2 - ], - [ - 1142, - 1, - "ѷ" - ], - [ - 1143, - 2 - ], - [ - 1144, - 1, - "ѹ" - ], - [ - 1145, - 2 - ], - [ - 1146, - 1, - "ѻ" - ], - [ - 1147, - 2 - ], - [ - 1148, - 1, - "ѽ" - ], - [ - 1149, - 2 - ], - [ - 1150, - 1, - "ѿ" - ], - [ - 1151, - 2 - ], - [ - 1152, - 1, - "ҁ" - ], - [ - 1153, - 2 - ], - [ - 1154, - 2 - ], - [ - [ - 1155, - 1158 - ], - 2 - ], - [ - 1159, - 2 - ], - [ - [ - 1160, - 1161 - ], - 2 - ], - [ - 1162, - 1, - "ҋ" - ], - [ - 1163, - 2 - ], - [ - 1164, - 1, - "ҍ" - ], - [ - 1165, - 2 - ], - [ - 1166, - 1, - "ҏ" - ], - [ - 1167, - 2 - ], - [ - 1168, - 1, - "ґ" - ], - [ - 1169, - 2 - ], - [ - 1170, - 1, - "ғ" - ], - [ - 1171, - 2 - ], - [ - 1172, - 1, - "ҕ" - ], - [ - 1173, - 2 - ], - [ - 1174, - 1, - "җ" - ], - [ - 1175, - 2 - ], - [ - 1176, - 1, - "ҙ" - ], - [ - 1177, - 2 - ], - [ - 1178, - 1, - "қ" - ], - [ - 1179, - 2 - ], - [ - 1180, - 1, - "ҝ" - ], - [ - 1181, - 2 - ], - [ - 1182, - 1, - "ҟ" - ], - [ - 1183, - 2 - ], - [ - 1184, - 1, - "ҡ" - ], - [ - 1185, - 2 - ], - [ - 1186, - 1, - "ң" - ], - [ - 1187, - 2 - ], - [ - 1188, - 1, - "ҥ" - ], - [ - 1189, - 2 - ], - [ - 1190, - 1, - "ҧ" - ], - [ - 1191, - 2 - ], - [ - 1192, - 1, - "ҩ" - ], - [ - 1193, - 2 - ], - [ - 1194, - 1, - "ҫ" - ], - [ - 1195, - 2 - ], - [ - 1196, - 1, - "ҭ" - ], - [ - 1197, - 2 - ], - [ - 1198, - 1, - "ү" - ], - [ - 1199, - 2 - ], - [ - 1200, - 1, - "ұ" - ], - [ - 1201, - 2 - ], - [ - 1202, - 1, - "ҳ" - ], - [ - 1203, - 2 - ], - [ - 1204, - 1, - "ҵ" - ], - [ - 1205, - 2 - ], - [ - 1206, - 1, - "ҷ" - ], - [ - 1207, - 2 - ], - [ - 1208, - 1, - "ҹ" - ], - [ - 1209, - 2 - ], - [ - 1210, - 1, - "һ" - ], - [ - 1211, - 2 - ], - [ - 1212, - 1, - "ҽ" - ], - [ - 1213, - 2 - ], - [ - 1214, - 1, - "ҿ" - ], - [ - 1215, - 2 - ], - [ - 1216, - 3 - ], - [ - 1217, - 1, - "ӂ" - ], - [ - 1218, - 2 - ], - [ - 1219, - 1, - "ӄ" - ], - [ - 1220, - 2 - ], - [ - 1221, - 1, - "ӆ" - ], - [ - 1222, - 2 - ], - [ - 1223, - 1, - "ӈ" - ], - [ - 1224, - 2 - ], - [ - 1225, - 1, - "ӊ" - ], - [ - 1226, - 2 - ], - [ - 1227, - 1, - "ӌ" - ], - [ - 1228, - 2 - ], - [ - 1229, - 1, - "ӎ" - ], - [ - 1230, - 2 - ], - [ - 1231, - 2 - ], - [ - 1232, - 1, - "ӑ" - ], - [ - 1233, - 2 - ], - [ - 1234, - 1, - "ӓ" - ], - [ - 1235, - 2 - ], - [ - 1236, - 1, - "ӕ" - ], - [ - 1237, - 2 - ], - [ - 1238, - 1, - "ӗ" - ], - [ - 1239, - 2 - ], - [ - 1240, - 1, - "ә" - ], - [ - 1241, - 2 - ], - [ - 1242, - 1, - "ӛ" - ], - [ - 1243, - 2 - ], - [ - 1244, - 1, - "ӝ" - ], - [ - 1245, - 2 - ], - [ - 1246, - 1, - "ӟ" - ], - [ - 1247, - 2 - ], - [ - 1248, - 1, - "ӡ" - ], - [ - 1249, - 2 - ], - [ - 1250, - 1, - "ӣ" - ], - [ - 1251, - 2 - ], - [ - 1252, - 1, - "ӥ" - ], - [ - 1253, - 2 - ], - [ - 1254, - 1, - "ӧ" - ], - [ - 1255, - 2 - ], - [ - 1256, - 1, - "ө" - ], - [ - 1257, - 2 - ], - [ - 1258, - 1, - "ӫ" - ], - [ - 1259, - 2 - ], - [ - 1260, - 1, - "ӭ" - ], - [ - 1261, - 2 - ], - [ - 1262, - 1, - "ӯ" - ], - [ - 1263, - 2 - ], - [ - 1264, - 1, - "ӱ" - ], - [ - 1265, - 2 - ], - [ - 1266, - 1, - "ӳ" - ], - [ - 1267, - 2 - ], - [ - 1268, - 1, - "ӵ" - ], - [ - 1269, - 2 - ], - [ - 1270, - 1, - "ӷ" - ], - [ - 1271, - 2 - ], - [ - 1272, - 1, - "ӹ" - ], - [ - 1273, - 2 - ], - [ - 1274, - 1, - "ӻ" - ], - [ - 1275, - 2 - ], - [ - 1276, - 1, - "ӽ" - ], - [ - 1277, - 2 - ], - [ - 1278, - 1, - "ӿ" - ], - [ - 1279, - 2 - ], - [ - 1280, - 1, - "ԁ" - ], - [ - 1281, - 2 - ], - [ - 1282, - 1, - "ԃ" - ], - [ - 1283, - 2 - ], - [ - 1284, - 1, - "ԅ" - ], - [ - 1285, - 2 - ], - [ - 1286, - 1, - "ԇ" - ], - [ - 1287, - 2 - ], - [ - 1288, - 1, - "ԉ" - ], - [ - 1289, - 2 - ], - [ - 1290, - 1, - "ԋ" - ], - [ - 1291, - 2 - ], - [ - 1292, - 1, - "ԍ" - ], - [ - 1293, - 2 - ], - [ - 1294, - 1, - "ԏ" - ], - [ - 1295, - 2 - ], - [ - 1296, - 1, - "ԑ" - ], - [ - 1297, - 2 - ], - [ - 1298, - 1, - "ԓ" - ], - [ - 1299, - 2 - ], - [ - 1300, - 1, - "ԕ" - ], - [ - 1301, - 2 - ], - [ - 1302, - 1, - "ԗ" - ], - [ - 1303, - 2 - ], - [ - 1304, - 1, - "ԙ" - ], - [ - 1305, - 2 - ], - [ - 1306, - 1, - "ԛ" - ], - [ - 1307, - 2 - ], - [ - 1308, - 1, - "ԝ" - ], - [ - 1309, - 2 - ], - [ - 1310, - 1, - "ԟ" - ], - [ - 1311, - 2 - ], - [ - 1312, - 1, - "ԡ" - ], - [ - 1313, - 2 - ], - [ - 1314, - 1, - "ԣ" - ], - [ - 1315, - 2 - ], - [ - 1316, - 1, - "ԥ" - ], - [ - 1317, - 2 - ], - [ - 1318, - 1, - "ԧ" - ], - [ - 1319, - 2 - ], - [ - 1320, - 1, - "ԩ" - ], - [ - 1321, - 2 - ], - [ - 1322, - 1, - "ԫ" - ], - [ - 1323, - 2 - ], - [ - 1324, - 1, - "ԭ" - ], - [ - 1325, - 2 - ], - [ - 1326, - 1, - "ԯ" - ], - [ - 1327, - 2 - ], - [ - 1328, - 3 - ], - [ - 1329, - 1, - "ա" - ], - [ - 1330, - 1, - "բ" - ], - [ - 1331, - 1, - "գ" - ], - [ - 1332, - 1, - "դ" - ], - [ - 1333, - 1, - "ե" - ], - [ - 1334, - 1, - "զ" - ], - [ - 1335, - 1, - "է" - ], - [ - 1336, - 1, - "ը" - ], - [ - 1337, - 1, - "թ" - ], - [ - 1338, - 1, - "ժ" - ], - [ - 1339, - 1, - "ի" - ], - [ - 1340, - 1, - "լ" - ], - [ - 1341, - 1, - "խ" - ], - [ - 1342, - 1, - "ծ" - ], - [ - 1343, - 1, - "կ" - ], - [ - 1344, - 1, - "հ" - ], - [ - 1345, - 1, - "ձ" - ], - [ - 1346, - 1, - "ղ" - ], - [ - 1347, - 1, - "ճ" - ], - [ - 1348, - 1, - "մ" - ], - [ - 1349, - 1, - "յ" - ], - [ - 1350, - 1, - "ն" - ], - [ - 1351, - 1, - "շ" - ], - [ - 1352, - 1, - "ո" - ], - [ - 1353, - 1, - "չ" - ], - [ - 1354, - 1, - "պ" - ], - [ - 1355, - 1, - "ջ" - ], - [ - 1356, - 1, - "ռ" - ], - [ - 1357, - 1, - "ս" - ], - [ - 1358, - 1, - "վ" - ], - [ - 1359, - 1, - "տ" - ], - [ - 1360, - 1, - "ր" - ], - [ - 1361, - 1, - "ց" - ], - [ - 1362, - 1, - "ւ" - ], - [ - 1363, - 1, - "փ" - ], - [ - 1364, - 1, - "ք" - ], - [ - 1365, - 1, - "օ" - ], - [ - 1366, - 1, - "ֆ" - ], - [ - [ - 1367, - 1368 - ], - 3 - ], - [ - 1369, - 2 - ], - [ - [ - 1370, - 1375 - ], - 2 - ], - [ - 1376, - 2 - ], - [ - [ - 1377, - 1414 - ], - 2 - ], - [ - 1415, - 1, - "եւ" - ], - [ - 1416, - 2 - ], - [ - 1417, - 2 - ], - [ - 1418, - 2 - ], - [ - [ - 1419, - 1420 - ], - 3 - ], - [ - [ - 1421, - 1422 - ], - 2 - ], - [ - 1423, - 2 - ], - [ - 1424, - 3 - ], - [ - [ - 1425, - 1441 - ], - 2 - ], - [ - 1442, - 2 - ], - [ - [ - 1443, - 1455 - ], - 2 - ], - [ - [ - 1456, - 1465 - ], - 2 - ], - [ - 1466, - 2 - ], - [ - [ - 1467, - 1469 - ], - 2 - ], - [ - 1470, - 2 - ], - [ - 1471, - 2 - ], - [ - 1472, - 2 - ], - [ - [ - 1473, - 1474 - ], - 2 - ], - [ - 1475, - 2 - ], - [ - 1476, - 2 - ], - [ - 1477, - 2 - ], - [ - 1478, - 2 - ], - [ - 1479, - 2 - ], - [ - [ - 1480, - 1487 - ], - 3 - ], - [ - [ - 1488, - 1514 - ], - 2 - ], - [ - [ - 1515, - 1518 - ], - 3 - ], - [ - 1519, - 2 - ], - [ - [ - 1520, - 1524 - ], - 2 - ], - [ - [ - 1525, - 1535 - ], - 3 - ], - [ - [ - 1536, - 1539 - ], - 3 - ], - [ - 1540, - 3 - ], - [ - 1541, - 3 - ], - [ - [ - 1542, - 1546 - ], - 2 - ], - [ - 1547, - 2 - ], - [ - 1548, - 2 - ], - [ - [ - 1549, - 1551 - ], - 2 - ], - [ - [ - 1552, - 1557 - ], - 2 - ], - [ - [ - 1558, - 1562 - ], - 2 - ], - [ - 1563, - 2 - ], - [ - 1564, - 3 - ], - [ - 1565, - 2 - ], - [ - 1566, - 2 - ], - [ - 1567, - 2 - ], - [ - 1568, - 2 - ], - [ - [ - 1569, - 1594 - ], - 2 - ], - [ - [ - 1595, - 1599 - ], - 2 - ], - [ - 1600, - 2 - ], - [ - [ - 1601, - 1618 - ], - 2 - ], - [ - [ - 1619, - 1621 - ], - 2 - ], - [ - [ - 1622, - 1624 - ], - 2 - ], - [ - [ - 1625, - 1630 - ], - 2 - ], - [ - 1631, - 2 - ], - [ - [ - 1632, - 1641 - ], - 2 - ], - [ - [ - 1642, - 1645 - ], - 2 - ], - [ - [ - 1646, - 1647 - ], - 2 - ], - [ - [ - 1648, - 1652 - ], - 2 - ], - [ - 1653, - 1, - "اٴ" - ], - [ - 1654, - 1, - "وٴ" - ], - [ - 1655, - 1, - "ۇٴ" - ], - [ - 1656, - 1, - "يٴ" - ], - [ - [ - 1657, - 1719 - ], - 2 - ], - [ - [ - 1720, - 1721 - ], - 2 - ], - [ - [ - 1722, - 1726 - ], - 2 - ], - [ - 1727, - 2 - ], - [ - [ - 1728, - 1742 - ], - 2 - ], - [ - 1743, - 2 - ], - [ - [ - 1744, - 1747 - ], - 2 - ], - [ - 1748, - 2 - ], - [ - [ - 1749, - 1756 - ], - 2 - ], - [ - 1757, - 3 - ], - [ - 1758, - 2 - ], - [ - [ - 1759, - 1768 - ], - 2 - ], - [ - 1769, - 2 - ], - [ - [ - 1770, - 1773 - ], - 2 - ], - [ - [ - 1774, - 1775 - ], - 2 - ], - [ - [ - 1776, - 1785 - ], - 2 - ], - [ - [ - 1786, - 1790 - ], - 2 - ], - [ - 1791, - 2 - ], - [ - [ - 1792, - 1805 - ], - 2 - ], - [ - 1806, - 3 - ], - [ - 1807, - 3 - ], - [ - [ - 1808, - 1836 - ], - 2 - ], - [ - [ - 1837, - 1839 - ], - 2 - ], - [ - [ - 1840, - 1866 - ], - 2 - ], - [ - [ - 1867, - 1868 - ], - 3 - ], - [ - [ - 1869, - 1871 - ], - 2 - ], - [ - [ - 1872, - 1901 - ], - 2 - ], - [ - [ - 1902, - 1919 - ], - 2 - ], - [ - [ - 1920, - 1968 - ], - 2 - ], - [ - 1969, - 2 - ], - [ - [ - 1970, - 1983 - ], - 3 - ], - [ - [ - 1984, - 2037 - ], - 2 - ], - [ - [ - 2038, - 2042 - ], - 2 - ], - [ - [ - 2043, - 2044 - ], - 3 - ], - [ - 2045, - 2 - ], - [ - [ - 2046, - 2047 - ], - 2 - ], - [ - [ - 2048, - 2093 - ], - 2 - ], - [ - [ - 2094, - 2095 - ], - 3 - ], - [ - [ - 2096, - 2110 - ], - 2 - ], - [ - 2111, - 3 - ], - [ - [ - 2112, - 2139 - ], - 2 - ], - [ - [ - 2140, - 2141 - ], - 3 - ], - [ - 2142, - 2 - ], - [ - 2143, - 3 - ], - [ - [ - 2144, - 2154 - ], - 2 - ], - [ - [ - 2155, - 2159 - ], - 3 - ], - [ - [ - 2160, - 2183 - ], - 2 - ], - [ - 2184, - 2 - ], - [ - [ - 2185, - 2190 - ], - 2 - ], - [ - 2191, - 3 - ], - [ - [ - 2192, - 2193 - ], - 3 - ], - [ - [ - 2194, - 2199 - ], - 3 - ], - [ - [ - 2200, - 2207 - ], - 2 - ], - [ - 2208, - 2 - ], - [ - 2209, - 2 - ], - [ - [ - 2210, - 2220 - ], - 2 - ], - [ - [ - 2221, - 2226 - ], - 2 - ], - [ - [ - 2227, - 2228 - ], - 2 - ], - [ - 2229, - 2 - ], - [ - [ - 2230, - 2237 - ], - 2 - ], - [ - [ - 2238, - 2247 - ], - 2 - ], - [ - [ - 2248, - 2258 - ], - 2 - ], - [ - 2259, - 2 - ], - [ - [ - 2260, - 2273 - ], - 2 - ], - [ - 2274, - 3 - ], - [ - 2275, - 2 - ], - [ - [ - 2276, - 2302 - ], - 2 - ], - [ - 2303, - 2 - ], - [ - 2304, - 2 - ], - [ - [ - 2305, - 2307 - ], - 2 - ], - [ - 2308, - 2 - ], - [ - [ - 2309, - 2361 - ], - 2 - ], - [ - [ - 2362, - 2363 - ], - 2 - ], - [ - [ - 2364, - 2381 - ], - 2 - ], - [ - 2382, - 2 - ], - [ - 2383, - 2 - ], - [ - [ - 2384, - 2388 - ], - 2 - ], - [ - 2389, - 2 - ], - [ - [ - 2390, - 2391 - ], - 2 - ], - [ - 2392, - 1, - "क़" - ], - [ - 2393, - 1, - "ख़" - ], - [ - 2394, - 1, - "ग़" - ], - [ - 2395, - 1, - "ज़" - ], - [ - 2396, - 1, - "ड़" - ], - [ - 2397, - 1, - "ढ़" - ], - [ - 2398, - 1, - "फ़" - ], - [ - 2399, - 1, - "य़" - ], - [ - [ - 2400, - 2403 - ], - 2 - ], - [ - [ - 2404, - 2405 - ], - 2 - ], - [ - [ - 2406, - 2415 - ], - 2 - ], - [ - 2416, - 2 - ], - [ - [ - 2417, - 2418 - ], - 2 - ], - [ - [ - 2419, - 2423 - ], - 2 - ], - [ - 2424, - 2 - ], - [ - [ - 2425, - 2426 - ], - 2 - ], - [ - [ - 2427, - 2428 - ], - 2 - ], - [ - 2429, - 2 - ], - [ - [ - 2430, - 2431 - ], - 2 - ], - [ - 2432, - 2 - ], - [ - [ - 2433, - 2435 - ], - 2 - ], - [ - 2436, - 3 - ], - [ - [ - 2437, - 2444 - ], - 2 - ], - [ - [ - 2445, - 2446 - ], - 3 - ], - [ - [ - 2447, - 2448 - ], - 2 - ], - [ - [ - 2449, - 2450 - ], - 3 - ], - [ - [ - 2451, - 2472 - ], - 2 - ], - [ - 2473, - 3 - ], - [ - [ - 2474, - 2480 - ], - 2 - ], - [ - 2481, - 3 - ], - [ - 2482, - 2 - ], - [ - [ - 2483, - 2485 - ], - 3 - ], - [ - [ - 2486, - 2489 - ], - 2 - ], - [ - [ - 2490, - 2491 - ], - 3 - ], - [ - 2492, - 2 - ], - [ - 2493, - 2 - ], - [ - [ - 2494, - 2500 - ], - 2 - ], - [ - [ - 2501, - 2502 - ], - 3 - ], - [ - [ - 2503, - 2504 - ], - 2 - ], - [ - [ - 2505, - 2506 - ], - 3 - ], - [ - [ - 2507, - 2509 - ], - 2 - ], - [ - 2510, - 2 - ], - [ - [ - 2511, - 2518 - ], - 3 - ], - [ - 2519, - 2 - ], - [ - [ - 2520, - 2523 - ], - 3 - ], - [ - 2524, - 1, - "ড়" - ], - [ - 2525, - 1, - "ঢ়" - ], - [ - 2526, - 3 - ], - [ - 2527, - 1, - "য়" - ], - [ - [ - 2528, - 2531 - ], - 2 - ], - [ - [ - 2532, - 2533 - ], - 3 - ], - [ - [ - 2534, - 2545 - ], - 2 - ], - [ - [ - 2546, - 2554 - ], - 2 - ], - [ - 2555, - 2 - ], - [ - 2556, - 2 - ], - [ - 2557, - 2 - ], - [ - 2558, - 2 - ], - [ - [ - 2559, - 2560 - ], - 3 - ], - [ - 2561, - 2 - ], - [ - 2562, - 2 - ], - [ - 2563, - 2 - ], - [ - 2564, - 3 - ], - [ - [ - 2565, - 2570 - ], - 2 - ], - [ - [ - 2571, - 2574 - ], - 3 - ], - [ - [ - 2575, - 2576 - ], - 2 - ], - [ - [ - 2577, - 2578 - ], - 3 - ], - [ - [ - 2579, - 2600 - ], - 2 - ], - [ - 2601, - 3 - ], - [ - [ - 2602, - 2608 - ], - 2 - ], - [ - 2609, - 3 - ], - [ - 2610, - 2 - ], - [ - 2611, - 1, - "ਲ਼" - ], - [ - 2612, - 3 - ], - [ - 2613, - 2 - ], - [ - 2614, - 1, - "ਸ਼" - ], - [ - 2615, - 3 - ], - [ - [ - 2616, - 2617 - ], - 2 - ], - [ - [ - 2618, - 2619 - ], - 3 - ], - [ - 2620, - 2 - ], - [ - 2621, - 3 - ], - [ - [ - 2622, - 2626 - ], - 2 - ], - [ - [ - 2627, - 2630 - ], - 3 - ], - [ - [ - 2631, - 2632 - ], - 2 - ], - [ - [ - 2633, - 2634 - ], - 3 - ], - [ - [ - 2635, - 2637 - ], - 2 - ], - [ - [ - 2638, - 2640 - ], - 3 - ], - [ - 2641, - 2 - ], - [ - [ - 2642, - 2648 - ], - 3 - ], - [ - 2649, - 1, - "ਖ਼" - ], - [ - 2650, - 1, - "ਗ਼" - ], - [ - 2651, - 1, - "ਜ਼" - ], - [ - 2652, - 2 - ], - [ - 2653, - 3 - ], - [ - 2654, - 1, - "ਫ਼" - ], - [ - [ - 2655, - 2661 - ], - 3 - ], - [ - [ - 2662, - 2676 - ], - 2 - ], - [ - 2677, - 2 - ], - [ - 2678, - 2 - ], - [ - [ - 2679, - 2688 - ], - 3 - ], - [ - [ - 2689, - 2691 - ], - 2 - ], - [ - 2692, - 3 - ], - [ - [ - 2693, - 2699 - ], - 2 - ], - [ - 2700, - 2 - ], - [ - 2701, - 2 - ], - [ - 2702, - 3 - ], - [ - [ - 2703, - 2705 - ], - 2 - ], - [ - 2706, - 3 - ], - [ - [ - 2707, - 2728 - ], - 2 - ], - [ - 2729, - 3 - ], - [ - [ - 2730, - 2736 - ], - 2 - ], - [ - 2737, - 3 - ], - [ - [ - 2738, - 2739 - ], - 2 - ], - [ - 2740, - 3 - ], - [ - [ - 2741, - 2745 - ], - 2 - ], - [ - [ - 2746, - 2747 - ], - 3 - ], - [ - [ - 2748, - 2757 - ], - 2 - ], - [ - 2758, - 3 - ], - [ - [ - 2759, - 2761 - ], - 2 - ], - [ - 2762, - 3 - ], - [ - [ - 2763, - 2765 - ], - 2 - ], - [ - [ - 2766, - 2767 - ], - 3 - ], - [ - 2768, - 2 - ], - [ - [ - 2769, - 2783 - ], - 3 - ], - [ - 2784, - 2 - ], - [ - [ - 2785, - 2787 - ], - 2 - ], - [ - [ - 2788, - 2789 - ], - 3 - ], - [ - [ - 2790, - 2799 - ], - 2 - ], - [ - 2800, - 2 - ], - [ - 2801, - 2 - ], - [ - [ - 2802, - 2808 - ], - 3 - ], - [ - 2809, - 2 - ], - [ - [ - 2810, - 2815 - ], - 2 - ], - [ - 2816, - 3 - ], - [ - [ - 2817, - 2819 - ], - 2 - ], - [ - 2820, - 3 - ], - [ - [ - 2821, - 2828 - ], - 2 - ], - [ - [ - 2829, - 2830 - ], - 3 - ], - [ - [ - 2831, - 2832 - ], - 2 - ], - [ - [ - 2833, - 2834 - ], - 3 - ], - [ - [ - 2835, - 2856 - ], - 2 - ], - [ - 2857, - 3 - ], - [ - [ - 2858, - 2864 - ], - 2 - ], - [ - 2865, - 3 - ], - [ - [ - 2866, - 2867 - ], - 2 - ], - [ - 2868, - 3 - ], - [ - 2869, - 2 - ], - [ - [ - 2870, - 2873 - ], - 2 - ], - [ - [ - 2874, - 2875 - ], - 3 - ], - [ - [ - 2876, - 2883 - ], - 2 - ], - [ - 2884, - 2 - ], - [ - [ - 2885, - 2886 - ], - 3 - ], - [ - [ - 2887, - 2888 - ], - 2 - ], - [ - [ - 2889, - 2890 - ], - 3 - ], - [ - [ - 2891, - 2893 - ], - 2 - ], - [ - [ - 2894, - 2900 - ], - 3 - ], - [ - 2901, - 2 - ], - [ - [ - 2902, - 2903 - ], - 2 - ], - [ - [ - 2904, - 2907 - ], - 3 - ], - [ - 2908, - 1, - "ଡ଼" - ], - [ - 2909, - 1, - "ଢ଼" - ], - [ - 2910, - 3 - ], - [ - [ - 2911, - 2913 - ], - 2 - ], - [ - [ - 2914, - 2915 - ], - 2 - ], - [ - [ - 2916, - 2917 - ], - 3 - ], - [ - [ - 2918, - 2927 - ], - 2 - ], - [ - 2928, - 2 - ], - [ - 2929, - 2 - ], - [ - [ - 2930, - 2935 - ], - 2 - ], - [ - [ - 2936, - 2945 - ], - 3 - ], - [ - [ - 2946, - 2947 - ], - 2 - ], - [ - 2948, - 3 - ], - [ - [ - 2949, - 2954 - ], - 2 - ], - [ - [ - 2955, - 2957 - ], - 3 - ], - [ - [ - 2958, - 2960 - ], - 2 - ], - [ - 2961, - 3 - ], - [ - [ - 2962, - 2965 - ], - 2 - ], - [ - [ - 2966, - 2968 - ], - 3 - ], - [ - [ - 2969, - 2970 - ], - 2 - ], - [ - 2971, - 3 - ], - [ - 2972, - 2 - ], - [ - 2973, - 3 - ], - [ - [ - 2974, - 2975 - ], - 2 - ], - [ - [ - 2976, - 2978 - ], - 3 - ], - [ - [ - 2979, - 2980 - ], - 2 - ], - [ - [ - 2981, - 2983 - ], - 3 - ], - [ - [ - 2984, - 2986 - ], - 2 - ], - [ - [ - 2987, - 2989 - ], - 3 - ], - [ - [ - 2990, - 2997 - ], - 2 - ], - [ - 2998, - 2 - ], - [ - [ - 2999, - 3001 - ], - 2 - ], - [ - [ - 3002, - 3005 - ], - 3 - ], - [ - [ - 3006, - 3010 - ], - 2 - ], - [ - [ - 3011, - 3013 - ], - 3 - ], - [ - [ - 3014, - 3016 - ], - 2 - ], - [ - 3017, - 3 - ], - [ - [ - 3018, - 3021 - ], - 2 - ], - [ - [ - 3022, - 3023 - ], - 3 - ], - [ - 3024, - 2 - ], - [ - [ - 3025, - 3030 - ], - 3 - ], - [ - 3031, - 2 - ], - [ - [ - 3032, - 3045 - ], - 3 - ], - [ - 3046, - 2 - ], - [ - [ - 3047, - 3055 - ], - 2 - ], - [ - [ - 3056, - 3058 - ], - 2 - ], - [ - [ - 3059, - 3066 - ], - 2 - ], - [ - [ - 3067, - 3071 - ], - 3 - ], - [ - 3072, - 2 - ], - [ - [ - 3073, - 3075 - ], - 2 - ], - [ - 3076, - 2 - ], - [ - [ - 3077, - 3084 - ], - 2 - ], - [ - 3085, - 3 - ], - [ - [ - 3086, - 3088 - ], - 2 - ], - [ - 3089, - 3 - ], - [ - [ - 3090, - 3112 - ], - 2 - ], - [ - 3113, - 3 - ], - [ - [ - 3114, - 3123 - ], - 2 - ], - [ - 3124, - 2 - ], - [ - [ - 3125, - 3129 - ], - 2 - ], - [ - [ - 3130, - 3131 - ], - 3 - ], - [ - 3132, - 2 - ], - [ - 3133, - 2 - ], - [ - [ - 3134, - 3140 - ], - 2 - ], - [ - 3141, - 3 - ], - [ - [ - 3142, - 3144 - ], - 2 - ], - [ - 3145, - 3 - ], - [ - [ - 3146, - 3149 - ], - 2 - ], - [ - [ - 3150, - 3156 - ], - 3 - ], - [ - [ - 3157, - 3158 - ], - 2 - ], - [ - 3159, - 3 - ], - [ - [ - 3160, - 3161 - ], - 2 - ], - [ - 3162, - 2 - ], - [ - [ - 3163, - 3164 - ], - 3 - ], - [ - 3165, - 2 - ], - [ - [ - 3166, - 3167 - ], - 3 - ], - [ - [ - 3168, - 3169 - ], - 2 - ], - [ - [ - 3170, - 3171 - ], - 2 - ], - [ - [ - 3172, - 3173 - ], - 3 - ], - [ - [ - 3174, - 3183 - ], - 2 - ], - [ - [ - 3184, - 3190 - ], - 3 - ], - [ - 3191, - 2 - ], - [ - [ - 3192, - 3199 - ], - 2 - ], - [ - 3200, - 2 - ], - [ - 3201, - 2 - ], - [ - [ - 3202, - 3203 - ], - 2 - ], - [ - 3204, - 2 - ], - [ - [ - 3205, - 3212 - ], - 2 - ], - [ - 3213, - 3 - ], - [ - [ - 3214, - 3216 - ], - 2 - ], - [ - 3217, - 3 - ], - [ - [ - 3218, - 3240 - ], - 2 - ], - [ - 3241, - 3 - ], - [ - [ - 3242, - 3251 - ], - 2 - ], - [ - 3252, - 3 - ], - [ - [ - 3253, - 3257 - ], - 2 - ], - [ - [ - 3258, - 3259 - ], - 3 - ], - [ - [ - 3260, - 3261 - ], - 2 - ], - [ - [ - 3262, - 3268 - ], - 2 - ], - [ - 3269, - 3 - ], - [ - [ - 3270, - 3272 - ], - 2 - ], - [ - 3273, - 3 - ], - [ - [ - 3274, - 3277 - ], - 2 - ], - [ - [ - 3278, - 3284 - ], - 3 - ], - [ - [ - 3285, - 3286 - ], - 2 - ], - [ - [ - 3287, - 3292 - ], - 3 - ], - [ - 3293, - 2 - ], - [ - 3294, - 2 - ], - [ - 3295, - 3 - ], - [ - [ - 3296, - 3297 - ], - 2 - ], - [ - [ - 3298, - 3299 - ], - 2 - ], - [ - [ - 3300, - 3301 - ], - 3 - ], - [ - [ - 3302, - 3311 - ], - 2 - ], - [ - 3312, - 3 - ], - [ - [ - 3313, - 3314 - ], - 2 - ], - [ - [ - 3315, - 3327 - ], - 3 - ], - [ - 3328, - 2 - ], - [ - 3329, - 2 - ], - [ - [ - 3330, - 3331 - ], - 2 - ], - [ - 3332, - 2 - ], - [ - [ - 3333, - 3340 - ], - 2 - ], - [ - 3341, - 3 - ], - [ - [ - 3342, - 3344 - ], - 2 - ], - [ - 3345, - 3 - ], - [ - [ - 3346, - 3368 - ], - 2 - ], - [ - 3369, - 2 - ], - [ - [ - 3370, - 3385 - ], - 2 - ], - [ - 3386, - 2 - ], - [ - [ - 3387, - 3388 - ], - 2 - ], - [ - 3389, - 2 - ], - [ - [ - 3390, - 3395 - ], - 2 - ], - [ - 3396, - 2 - ], - [ - 3397, - 3 - ], - [ - [ - 3398, - 3400 - ], - 2 - ], - [ - 3401, - 3 - ], - [ - [ - 3402, - 3405 - ], - 2 - ], - [ - 3406, - 2 - ], - [ - 3407, - 2 - ], - [ - [ - 3408, - 3411 - ], - 3 - ], - [ - [ - 3412, - 3414 - ], - 2 - ], - [ - 3415, - 2 - ], - [ - [ - 3416, - 3422 - ], - 2 - ], - [ - 3423, - 2 - ], - [ - [ - 3424, - 3425 - ], - 2 - ], - [ - [ - 3426, - 3427 - ], - 2 - ], - [ - [ - 3428, - 3429 - ], - 3 - ], - [ - [ - 3430, - 3439 - ], - 2 - ], - [ - [ - 3440, - 3445 - ], - 2 - ], - [ - [ - 3446, - 3448 - ], - 2 - ], - [ - 3449, - 2 - ], - [ - [ - 3450, - 3455 - ], - 2 - ], - [ - 3456, - 3 - ], - [ - 3457, - 2 - ], - [ - [ - 3458, - 3459 - ], - 2 - ], - [ - 3460, - 3 - ], - [ - [ - 3461, - 3478 - ], - 2 - ], - [ - [ - 3479, - 3481 - ], - 3 - ], - [ - [ - 3482, - 3505 - ], - 2 - ], - [ - 3506, - 3 - ], - [ - [ - 3507, - 3515 - ], - 2 - ], - [ - 3516, - 3 - ], - [ - 3517, - 2 - ], - [ - [ - 3518, - 3519 - ], - 3 - ], - [ - [ - 3520, - 3526 - ], - 2 - ], - [ - [ - 3527, - 3529 - ], - 3 - ], - [ - 3530, - 2 - ], - [ - [ - 3531, - 3534 - ], - 3 - ], - [ - [ - 3535, - 3540 - ], - 2 - ], - [ - 3541, - 3 - ], - [ - 3542, - 2 - ], - [ - 3543, - 3 - ], - [ - [ - 3544, - 3551 - ], - 2 - ], - [ - [ - 3552, - 3557 - ], - 3 - ], - [ - [ - 3558, - 3567 - ], - 2 - ], - [ - [ - 3568, - 3569 - ], - 3 - ], - [ - [ - 3570, - 3571 - ], - 2 - ], - [ - 3572, - 2 - ], - [ - [ - 3573, - 3584 - ], - 3 - ], - [ - [ - 3585, - 3634 - ], - 2 - ], - [ - 3635, - 1, - "ํา" - ], - [ - [ - 3636, - 3642 - ], - 2 - ], - [ - [ - 3643, - 3646 - ], - 3 - ], - [ - 3647, - 2 - ], - [ - [ - 3648, - 3662 - ], - 2 - ], - [ - 3663, - 2 - ], - [ - [ - 3664, - 3673 - ], - 2 - ], - [ - [ - 3674, - 3675 - ], - 2 - ], - [ - [ - 3676, - 3712 - ], - 3 - ], - [ - [ - 3713, - 3714 - ], - 2 - ], - [ - 3715, - 3 - ], - [ - 3716, - 2 - ], - [ - 3717, - 3 - ], - [ - 3718, - 2 - ], - [ - [ - 3719, - 3720 - ], - 2 - ], - [ - 3721, - 2 - ], - [ - 3722, - 2 - ], - [ - 3723, - 3 - ], - [ - 3724, - 2 - ], - [ - 3725, - 2 - ], - [ - [ - 3726, - 3731 - ], - 2 - ], - [ - [ - 3732, - 3735 - ], - 2 - ], - [ - 3736, - 2 - ], - [ - [ - 3737, - 3743 - ], - 2 - ], - [ - 3744, - 2 - ], - [ - [ - 3745, - 3747 - ], - 2 - ], - [ - 3748, - 3 - ], - [ - 3749, - 2 - ], - [ - 3750, - 3 - ], - [ - 3751, - 2 - ], - [ - [ - 3752, - 3753 - ], - 2 - ], - [ - [ - 3754, - 3755 - ], - 2 - ], - [ - 3756, - 2 - ], - [ - [ - 3757, - 3762 - ], - 2 - ], - [ - 3763, - 1, - "ໍາ" - ], - [ - [ - 3764, - 3769 - ], - 2 - ], - [ - 3770, - 2 - ], - [ - [ - 3771, - 3773 - ], - 2 - ], - [ - [ - 3774, - 3775 - ], - 3 - ], - [ - [ - 3776, - 3780 - ], - 2 - ], - [ - 3781, - 3 - ], - [ - 3782, - 2 - ], - [ - 3783, - 3 - ], - [ - [ - 3784, - 3789 - ], - 2 - ], - [ - [ - 3790, - 3791 - ], - 3 - ], - [ - [ - 3792, - 3801 - ], - 2 - ], - [ - [ - 3802, - 3803 - ], - 3 - ], - [ - 3804, - 1, - "ຫນ" - ], - [ - 3805, - 1, - "ຫມ" - ], - [ - [ - 3806, - 3807 - ], - 2 - ], - [ - [ - 3808, - 3839 - ], - 3 - ], - [ - 3840, - 2 - ], - [ - [ - 3841, - 3850 - ], - 2 - ], - [ - 3851, - 2 - ], - [ - 3852, - 1, - "་" - ], - [ - [ - 3853, - 3863 - ], - 2 - ], - [ - [ - 3864, - 3865 - ], - 2 - ], - [ - [ - 3866, - 3871 - ], - 2 - ], - [ - [ - 3872, - 3881 - ], - 2 - ], - [ - [ - 3882, - 3892 - ], - 2 - ], - [ - 3893, - 2 - ], - [ - 3894, - 2 - ], - [ - 3895, - 2 - ], - [ - 3896, - 2 - ], - [ - 3897, - 2 - ], - [ - [ - 3898, - 3901 - ], - 2 - ], - [ - [ - 3902, - 3906 - ], - 2 - ], - [ - 3907, - 1, - "གྷ" - ], - [ - [ - 3908, - 3911 - ], - 2 - ], - [ - 3912, - 3 - ], - [ - [ - 3913, - 3916 - ], - 2 - ], - [ - 3917, - 1, - "ཌྷ" - ], - [ - [ - 3918, - 3921 - ], - 2 - ], - [ - 3922, - 1, - "དྷ" - ], - [ - [ - 3923, - 3926 - ], - 2 - ], - [ - 3927, - 1, - "བྷ" - ], - [ - [ - 3928, - 3931 - ], - 2 - ], - [ - 3932, - 1, - "ཛྷ" - ], - [ - [ - 3933, - 3944 - ], - 2 - ], - [ - 3945, - 1, - "ཀྵ" - ], - [ - 3946, - 2 - ], - [ - [ - 3947, - 3948 - ], - 2 - ], - [ - [ - 3949, - 3952 - ], - 3 - ], - [ - [ - 3953, - 3954 - ], - 2 - ], - [ - 3955, - 1, - "ཱི" - ], - [ - 3956, - 2 - ], - [ - 3957, - 1, - "ཱུ" - ], - [ - 3958, - 1, - "ྲྀ" - ], - [ - 3959, - 1, - "ྲཱྀ" - ], - [ - 3960, - 1, - "ླྀ" - ], - [ - 3961, - 1, - "ླཱྀ" - ], - [ - [ - 3962, - 3968 - ], - 2 - ], - [ - 3969, - 1, - "ཱྀ" - ], - [ - [ - 3970, - 3972 - ], - 2 - ], - [ - 3973, - 2 - ], - [ - [ - 3974, - 3979 - ], - 2 - ], - [ - [ - 3980, - 3983 - ], - 2 - ], - [ - [ - 3984, - 3986 - ], - 2 - ], - [ - 3987, - 1, - "ྒྷ" - ], - [ - [ - 3988, - 3989 - ], - 2 - ], - [ - 3990, - 2 - ], - [ - 3991, - 2 - ], - [ - 3992, - 3 - ], - [ - [ - 3993, - 3996 - ], - 2 - ], - [ - 3997, - 1, - "ྜྷ" - ], - [ - [ - 3998, - 4001 - ], - 2 - ], - [ - 4002, - 1, - "ྡྷ" - ], - [ - [ - 4003, - 4006 - ], - 2 - ], - [ - 4007, - 1, - "ྦྷ" - ], - [ - [ - 4008, - 4011 - ], - 2 - ], - [ - 4012, - 1, - "ྫྷ" - ], - [ - 4013, - 2 - ], - [ - [ - 4014, - 4016 - ], - 2 - ], - [ - [ - 4017, - 4023 - ], - 2 - ], - [ - 4024, - 2 - ], - [ - 4025, - 1, - "ྐྵ" - ], - [ - [ - 4026, - 4028 - ], - 2 - ], - [ - 4029, - 3 - ], - [ - [ - 4030, - 4037 - ], - 2 - ], - [ - 4038, - 2 - ], - [ - [ - 4039, - 4044 - ], - 2 - ], - [ - 4045, - 3 - ], - [ - 4046, - 2 - ], - [ - 4047, - 2 - ], - [ - [ - 4048, - 4049 - ], - 2 - ], - [ - [ - 4050, - 4052 - ], - 2 - ], - [ - [ - 4053, - 4056 - ], - 2 - ], - [ - [ - 4057, - 4058 - ], - 2 - ], - [ - [ - 4059, - 4095 - ], - 3 - ], - [ - [ - 4096, - 4129 - ], - 2 - ], - [ - 4130, - 2 - ], - [ - [ - 4131, - 4135 - ], - 2 - ], - [ - 4136, - 2 - ], - [ - [ - 4137, - 4138 - ], - 2 - ], - [ - 4139, - 2 - ], - [ - [ - 4140, - 4146 - ], - 2 - ], - [ - [ - 4147, - 4149 - ], - 2 - ], - [ - [ - 4150, - 4153 - ], - 2 - ], - [ - [ - 4154, - 4159 - ], - 2 - ], - [ - [ - 4160, - 4169 - ], - 2 - ], - [ - [ - 4170, - 4175 - ], - 2 - ], - [ - [ - 4176, - 4185 - ], - 2 - ], - [ - [ - 4186, - 4249 - ], - 2 - ], - [ - [ - 4250, - 4253 - ], - 2 - ], - [ - [ - 4254, - 4255 - ], - 2 - ], - [ - [ - 4256, - 4293 - ], - 3 - ], - [ - 4294, - 3 - ], - [ - 4295, - 1, - "ⴧ" - ], - [ - [ - 4296, - 4300 - ], - 3 - ], - [ - 4301, - 1, - "ⴭ" - ], - [ - [ - 4302, - 4303 - ], - 3 - ], - [ - [ - 4304, - 4342 - ], - 2 - ], - [ - [ - 4343, - 4344 - ], - 2 - ], - [ - [ - 4345, - 4346 - ], - 2 - ], - [ - 4347, - 2 - ], - [ - 4348, - 1, - "ნ" - ], - [ - [ - 4349, - 4351 - ], - 2 - ], - [ - [ - 4352, - 4441 - ], - 2 - ], - [ - [ - 4442, - 4446 - ], - 2 - ], - [ - [ - 4447, - 4448 - ], - 3 - ], - [ - [ - 4449, - 4514 - ], - 2 - ], - [ - [ - 4515, - 4519 - ], - 2 - ], - [ - [ - 4520, - 4601 - ], - 2 - ], - [ - [ - 4602, - 4607 - ], - 2 - ], - [ - [ - 4608, - 4614 - ], - 2 - ], - [ - 4615, - 2 - ], - [ - [ - 4616, - 4678 - ], - 2 - ], - [ - 4679, - 2 - ], - [ - 4680, - 2 - ], - [ - 4681, - 3 - ], - [ - [ - 4682, - 4685 - ], - 2 - ], - [ - [ - 4686, - 4687 - ], - 3 - ], - [ - [ - 4688, - 4694 - ], - 2 - ], - [ - 4695, - 3 - ], - [ - 4696, - 2 - ], - [ - 4697, - 3 - ], - [ - [ - 4698, - 4701 - ], - 2 - ], - [ - [ - 4702, - 4703 - ], - 3 - ], - [ - [ - 4704, - 4742 - ], - 2 - ], - [ - 4743, - 2 - ], - [ - 4744, - 2 - ], - [ - 4745, - 3 - ], - [ - [ - 4746, - 4749 - ], - 2 - ], - [ - [ - 4750, - 4751 - ], - 3 - ], - [ - [ - 4752, - 4782 - ], - 2 - ], - [ - 4783, - 2 - ], - [ - 4784, - 2 - ], - [ - 4785, - 3 - ], - [ - [ - 4786, - 4789 - ], - 2 - ], - [ - [ - 4790, - 4791 - ], - 3 - ], - [ - [ - 4792, - 4798 - ], - 2 - ], - [ - 4799, - 3 - ], - [ - 4800, - 2 - ], - [ - 4801, - 3 - ], - [ - [ - 4802, - 4805 - ], - 2 - ], - [ - [ - 4806, - 4807 - ], - 3 - ], - [ - [ - 4808, - 4814 - ], - 2 - ], - [ - 4815, - 2 - ], - [ - [ - 4816, - 4822 - ], - 2 - ], - [ - 4823, - 3 - ], - [ - [ - 4824, - 4846 - ], - 2 - ], - [ - 4847, - 2 - ], - [ - [ - 4848, - 4878 - ], - 2 - ], - [ - 4879, - 2 - ], - [ - 4880, - 2 - ], - [ - 4881, - 3 - ], - [ - [ - 4882, - 4885 - ], - 2 - ], - [ - [ - 4886, - 4887 - ], - 3 - ], - [ - [ - 4888, - 4894 - ], - 2 - ], - [ - 4895, - 2 - ], - [ - [ - 4896, - 4934 - ], - 2 - ], - [ - 4935, - 2 - ], - [ - [ - 4936, - 4954 - ], - 2 - ], - [ - [ - 4955, - 4956 - ], - 3 - ], - [ - [ - 4957, - 4958 - ], - 2 - ], - [ - 4959, - 2 - ], - [ - 4960, - 2 - ], - [ - [ - 4961, - 4988 - ], - 2 - ], - [ - [ - 4989, - 4991 - ], - 3 - ], - [ - [ - 4992, - 5007 - ], - 2 - ], - [ - [ - 5008, - 5017 - ], - 2 - ], - [ - [ - 5018, - 5023 - ], - 3 - ], - [ - [ - 5024, - 5108 - ], - 2 - ], - [ - 5109, - 2 - ], - [ - [ - 5110, - 5111 - ], - 3 - ], - [ - 5112, - 1, - "Ᏸ" - ], - [ - 5113, - 1, - "Ᏹ" - ], - [ - 5114, - 1, - "Ᏺ" - ], - [ - 5115, - 1, - "Ᏻ" - ], - [ - 5116, - 1, - "Ᏼ" - ], - [ - 5117, - 1, - "Ᏽ" - ], - [ - [ - 5118, - 5119 - ], - 3 - ], - [ - 5120, - 2 - ], - [ - [ - 5121, - 5740 - ], - 2 - ], - [ - [ - 5741, - 5742 - ], - 2 - ], - [ - [ - 5743, - 5750 - ], - 2 - ], - [ - [ - 5751, - 5759 - ], - 2 - ], - [ - 5760, - 3 - ], - [ - [ - 5761, - 5786 - ], - 2 - ], - [ - [ - 5787, - 5788 - ], - 2 - ], - [ - [ - 5789, - 5791 - ], - 3 - ], - [ - [ - 5792, - 5866 - ], - 2 - ], - [ - [ - 5867, - 5872 - ], - 2 - ], - [ - [ - 5873, - 5880 - ], - 2 - ], - [ - [ - 5881, - 5887 - ], - 3 - ], - [ - [ - 5888, - 5900 - ], - 2 - ], - [ - 5901, - 2 - ], - [ - [ - 5902, - 5908 - ], - 2 - ], - [ - 5909, - 2 - ], - [ - [ - 5910, - 5918 - ], - 3 - ], - [ - 5919, - 2 - ], - [ - [ - 5920, - 5940 - ], - 2 - ], - [ - [ - 5941, - 5942 - ], - 2 - ], - [ - [ - 5943, - 5951 - ], - 3 - ], - [ - [ - 5952, - 5971 - ], - 2 - ], - [ - [ - 5972, - 5983 - ], - 3 - ], - [ - [ - 5984, - 5996 - ], - 2 - ], - [ - 5997, - 3 - ], - [ - [ - 5998, - 6000 - ], - 2 - ], - [ - 6001, - 3 - ], - [ - [ - 6002, - 6003 - ], - 2 - ], - [ - [ - 6004, - 6015 - ], - 3 - ], - [ - [ - 6016, - 6067 - ], - 2 - ], - [ - [ - 6068, - 6069 - ], - 3 - ], - [ - [ - 6070, - 6099 - ], - 2 - ], - [ - [ - 6100, - 6102 - ], - 2 - ], - [ - 6103, - 2 - ], - [ - [ - 6104, - 6107 - ], - 2 - ], - [ - 6108, - 2 - ], - [ - 6109, - 2 - ], - [ - [ - 6110, - 6111 - ], - 3 - ], - [ - [ - 6112, - 6121 - ], - 2 - ], - [ - [ - 6122, - 6127 - ], - 3 - ], - [ - [ - 6128, - 6137 - ], - 2 - ], - [ - [ - 6138, - 6143 - ], - 3 - ], - [ - [ - 6144, - 6149 - ], - 2 - ], - [ - 6150, - 3 - ], - [ - [ - 6151, - 6154 - ], - 2 - ], - [ - [ - 6155, - 6157 - ], - 7 - ], - [ - 6158, - 3 - ], - [ - 6159, - 7 - ], - [ - [ - 6160, - 6169 - ], - 2 - ], - [ - [ - 6170, - 6175 - ], - 3 - ], - [ - [ - 6176, - 6263 - ], - 2 - ], - [ - 6264, - 2 - ], - [ - [ - 6265, - 6271 - ], - 3 - ], - [ - [ - 6272, - 6313 - ], - 2 - ], - [ - 6314, - 2 - ], - [ - [ - 6315, - 6319 - ], - 3 - ], - [ - [ - 6320, - 6389 - ], - 2 - ], - [ - [ - 6390, - 6399 - ], - 3 - ], - [ - [ - 6400, - 6428 - ], - 2 - ], - [ - [ - 6429, - 6430 - ], - 2 - ], - [ - 6431, - 3 - ], - [ - [ - 6432, - 6443 - ], - 2 - ], - [ - [ - 6444, - 6447 - ], - 3 - ], - [ - [ - 6448, - 6459 - ], - 2 - ], - [ - [ - 6460, - 6463 - ], - 3 - ], - [ - 6464, - 2 - ], - [ - [ - 6465, - 6467 - ], - 3 - ], - [ - [ - 6468, - 6469 - ], - 2 - ], - [ - [ - 6470, - 6509 - ], - 2 - ], - [ - [ - 6510, - 6511 - ], - 3 - ], - [ - [ - 6512, - 6516 - ], - 2 - ], - [ - [ - 6517, - 6527 - ], - 3 - ], - [ - [ - 6528, - 6569 - ], - 2 - ], - [ - [ - 6570, - 6571 - ], - 2 - ], - [ - [ - 6572, - 6575 - ], - 3 - ], - [ - [ - 6576, - 6601 - ], - 2 - ], - [ - [ - 6602, - 6607 - ], - 3 - ], - [ - [ - 6608, - 6617 - ], - 2 - ], - [ - 6618, - 2 - ], - [ - [ - 6619, - 6621 - ], - 3 - ], - [ - [ - 6622, - 6623 - ], - 2 - ], - [ - [ - 6624, - 6655 - ], - 2 - ], - [ - [ - 6656, - 6683 - ], - 2 - ], - [ - [ - 6684, - 6685 - ], - 3 - ], - [ - [ - 6686, - 6687 - ], - 2 - ], - [ - [ - 6688, - 6750 - ], - 2 - ], - [ - 6751, - 3 - ], - [ - [ - 6752, - 6780 - ], - 2 - ], - [ - [ - 6781, - 6782 - ], - 3 - ], - [ - [ - 6783, - 6793 - ], - 2 - ], - [ - [ - 6794, - 6799 - ], - 3 - ], - [ - [ - 6800, - 6809 - ], - 2 - ], - [ - [ - 6810, - 6815 - ], - 3 - ], - [ - [ - 6816, - 6822 - ], - 2 - ], - [ - 6823, - 2 - ], - [ - [ - 6824, - 6829 - ], - 2 - ], - [ - [ - 6830, - 6831 - ], - 3 - ], - [ - [ - 6832, - 6845 - ], - 2 - ], - [ - 6846, - 2 - ], - [ - [ - 6847, - 6848 - ], - 2 - ], - [ - [ - 6849, - 6862 - ], - 2 - ], - [ - [ - 6863, - 6911 - ], - 3 - ], - [ - [ - 6912, - 6987 - ], - 2 - ], - [ - 6988, - 2 - ], - [ - [ - 6989, - 6991 - ], - 3 - ], - [ - [ - 6992, - 7001 - ], - 2 - ], - [ - [ - 7002, - 7018 - ], - 2 - ], - [ - [ - 7019, - 7027 - ], - 2 - ], - [ - [ - 7028, - 7036 - ], - 2 - ], - [ - [ - 7037, - 7038 - ], - 2 - ], - [ - 7039, - 3 - ], - [ - [ - 7040, - 7082 - ], - 2 - ], - [ - [ - 7083, - 7085 - ], - 2 - ], - [ - [ - 7086, - 7097 - ], - 2 - ], - [ - [ - 7098, - 7103 - ], - 2 - ], - [ - [ - 7104, - 7155 - ], - 2 - ], - [ - [ - 7156, - 7163 - ], - 3 - ], - [ - [ - 7164, - 7167 - ], - 2 - ], - [ - [ - 7168, - 7223 - ], - 2 - ], - [ - [ - 7224, - 7226 - ], - 3 - ], - [ - [ - 7227, - 7231 - ], - 2 - ], - [ - [ - 7232, - 7241 - ], - 2 - ], - [ - [ - 7242, - 7244 - ], - 3 - ], - [ - [ - 7245, - 7293 - ], - 2 - ], - [ - [ - 7294, - 7295 - ], - 2 - ], - [ - 7296, - 1, - "в" - ], - [ - 7297, - 1, - "д" - ], - [ - 7298, - 1, - "о" - ], - [ - 7299, - 1, - "с" - ], - [ - [ - 7300, - 7301 - ], - 1, - "т" - ], - [ - 7302, - 1, - "ъ" - ], - [ - 7303, - 1, - "ѣ" - ], - [ - 7304, - 1, - "ꙋ" - ], - [ - [ - 7305, - 7311 - ], - 3 - ], - [ - 7312, - 1, - "ა" - ], - [ - 7313, - 1, - "ბ" - ], - [ - 7314, - 1, - "გ" - ], - [ - 7315, - 1, - "დ" - ], - [ - 7316, - 1, - "ე" - ], - [ - 7317, - 1, - "ვ" - ], - [ - 7318, - 1, - "ზ" - ], - [ - 7319, - 1, - "თ" - ], - [ - 7320, - 1, - "ი" - ], - [ - 7321, - 1, - "კ" - ], - [ - 7322, - 1, - "ლ" - ], - [ - 7323, - 1, - "მ" - ], - [ - 7324, - 1, - "ნ" - ], - [ - 7325, - 1, - "ო" - ], - [ - 7326, - 1, - "პ" - ], - [ - 7327, - 1, - "ჟ" - ], - [ - 7328, - 1, - "რ" - ], - [ - 7329, - 1, - "ს" - ], - [ - 7330, - 1, - "ტ" - ], - [ - 7331, - 1, - "უ" - ], - [ - 7332, - 1, - "ფ" - ], - [ - 7333, - 1, - "ქ" - ], - [ - 7334, - 1, - "ღ" - ], - [ - 7335, - 1, - "ყ" - ], - [ - 7336, - 1, - "შ" - ], - [ - 7337, - 1, - "ჩ" - ], - [ - 7338, - 1, - "ც" - ], - [ - 7339, - 1, - "ძ" - ], - [ - 7340, - 1, - "წ" - ], - [ - 7341, - 1, - "ჭ" - ], - [ - 7342, - 1, - "ხ" - ], - [ - 7343, - 1, - "ჯ" - ], - [ - 7344, - 1, - "ჰ" - ], - [ - 7345, - 1, - "ჱ" - ], - [ - 7346, - 1, - "ჲ" - ], - [ - 7347, - 1, - "ჳ" - ], - [ - 7348, - 1, - "ჴ" - ], - [ - 7349, - 1, - "ჵ" - ], - [ - 7350, - 1, - "ჶ" - ], - [ - 7351, - 1, - "ჷ" - ], - [ - 7352, - 1, - "ჸ" - ], - [ - 7353, - 1, - "ჹ" - ], - [ - 7354, - 1, - "ჺ" - ], - [ - [ - 7355, - 7356 - ], - 3 - ], - [ - 7357, - 1, - "ჽ" - ], - [ - 7358, - 1, - "ჾ" - ], - [ - 7359, - 1, - "ჿ" - ], - [ - [ - 7360, - 7367 - ], - 2 - ], - [ - [ - 7368, - 7375 - ], - 3 - ], - [ - [ - 7376, - 7378 - ], - 2 - ], - [ - 7379, - 2 - ], - [ - [ - 7380, - 7410 - ], - 2 - ], - [ - [ - 7411, - 7414 - ], - 2 - ], - [ - 7415, - 2 - ], - [ - [ - 7416, - 7417 - ], - 2 - ], - [ - 7418, - 2 - ], - [ - [ - 7419, - 7423 - ], - 3 - ], - [ - [ - 7424, - 7467 - ], - 2 - ], - [ - 7468, - 1, - "a" - ], - [ - 7469, - 1, - "æ" - ], - [ - 7470, - 1, - "b" - ], - [ - 7471, - 2 - ], - [ - 7472, - 1, - "d" - ], - [ - 7473, - 1, - "e" - ], - [ - 7474, - 1, - "ǝ" - ], - [ - 7475, - 1, - "g" - ], - [ - 7476, - 1, - "h" - ], - [ - 7477, - 1, - "i" - ], - [ - 7478, - 1, - "j" - ], - [ - 7479, - 1, - "k" - ], - [ - 7480, - 1, - "l" - ], - [ - 7481, - 1, - "m" - ], - [ - 7482, - 1, - "n" - ], - [ - 7483, - 2 - ], - [ - 7484, - 1, - "o" - ], - [ - 7485, - 1, - "ȣ" - ], - [ - 7486, - 1, - "p" - ], - [ - 7487, - 1, - "r" - ], - [ - 7488, - 1, - "t" - ], - [ - 7489, - 1, - "u" - ], - [ - 7490, - 1, - "w" - ], - [ - 7491, - 1, - "a" - ], - [ - 7492, - 1, - "ɐ" - ], - [ - 7493, - 1, - "ɑ" - ], - [ - 7494, - 1, - "ᴂ" - ], - [ - 7495, - 1, - "b" - ], - [ - 7496, - 1, - "d" - ], - [ - 7497, - 1, - "e" - ], - [ - 7498, - 1, - "ə" - ], - [ - 7499, - 1, - "ɛ" - ], - [ - 7500, - 1, - "ɜ" - ], - [ - 7501, - 1, - "g" - ], - [ - 7502, - 2 - ], - [ - 7503, - 1, - "k" - ], - [ - 7504, - 1, - "m" - ], - [ - 7505, - 1, - "ŋ" - ], - [ - 7506, - 1, - "o" - ], - [ - 7507, - 1, - "ɔ" - ], - [ - 7508, - 1, - "ᴖ" - ], - [ - 7509, - 1, - "ᴗ" - ], - [ - 7510, - 1, - "p" - ], - [ - 7511, - 1, - "t" - ], - [ - 7512, - 1, - "u" - ], - [ - 7513, - 1, - "ᴝ" - ], - [ - 7514, - 1, - "ɯ" - ], - [ - 7515, - 1, - "v" - ], - [ - 7516, - 1, - "ᴥ" - ], - [ - 7517, - 1, - "β" - ], - [ - 7518, - 1, - "γ" - ], - [ - 7519, - 1, - "δ" - ], - [ - 7520, - 1, - "φ" - ], - [ - 7521, - 1, - "χ" - ], - [ - 7522, - 1, - "i" - ], - [ - 7523, - 1, - "r" - ], - [ - 7524, - 1, - "u" - ], - [ - 7525, - 1, - "v" - ], - [ - 7526, - 1, - "β" - ], - [ - 7527, - 1, - "γ" - ], - [ - 7528, - 1, - "ρ" - ], - [ - 7529, - 1, - "φ" - ], - [ - 7530, - 1, - "χ" - ], - [ - 7531, - 2 - ], - [ - [ - 7532, - 7543 - ], - 2 - ], - [ - 7544, - 1, - "н" - ], - [ - [ - 7545, - 7578 - ], - 2 - ], - [ - 7579, - 1, - "ɒ" - ], - [ - 7580, - 1, - "c" - ], - [ - 7581, - 1, - "ɕ" - ], - [ - 7582, - 1, - "ð" - ], - [ - 7583, - 1, - "ɜ" - ], - [ - 7584, - 1, - "f" - ], - [ - 7585, - 1, - "ɟ" - ], - [ - 7586, - 1, - "ɡ" - ], - [ - 7587, - 1, - "ɥ" - ], - [ - 7588, - 1, - "ɨ" - ], - [ - 7589, - 1, - "ɩ" - ], - [ - 7590, - 1, - "ɪ" - ], - [ - 7591, - 1, - "ᵻ" - ], - [ - 7592, - 1, - "ʝ" - ], - [ - 7593, - 1, - "ɭ" - ], - [ - 7594, - 1, - "ᶅ" - ], - [ - 7595, - 1, - "ʟ" - ], - [ - 7596, - 1, - "ɱ" - ], - [ - 7597, - 1, - "ɰ" - ], - [ - 7598, - 1, - "ɲ" - ], - [ - 7599, - 1, - "ɳ" - ], - [ - 7600, - 1, - "ɴ" - ], - [ - 7601, - 1, - "ɵ" - ], - [ - 7602, - 1, - "ɸ" - ], - [ - 7603, - 1, - "ʂ" - ], - [ - 7604, - 1, - "ʃ" - ], - [ - 7605, - 1, - "ƫ" - ], - [ - 7606, - 1, - "ʉ" - ], - [ - 7607, - 1, - "ʊ" - ], - [ - 7608, - 1, - "ᴜ" - ], - [ - 7609, - 1, - "ʋ" - ], - [ - 7610, - 1, - "ʌ" - ], - [ - 7611, - 1, - "z" - ], - [ - 7612, - 1, - "ʐ" - ], - [ - 7613, - 1, - "ʑ" - ], - [ - 7614, - 1, - "ʒ" - ], - [ - 7615, - 1, - "θ" - ], - [ - [ - 7616, - 7619 - ], - 2 - ], - [ - [ - 7620, - 7626 - ], - 2 - ], - [ - [ - 7627, - 7654 - ], - 2 - ], - [ - [ - 7655, - 7669 - ], - 2 - ], - [ - [ - 7670, - 7673 - ], - 2 - ], - [ - 7674, - 2 - ], - [ - 7675, - 2 - ], - [ - 7676, - 2 - ], - [ - 7677, - 2 - ], - [ - [ - 7678, - 7679 - ], - 2 - ], - [ - 7680, - 1, - "ḁ" - ], - [ - 7681, - 2 - ], - [ - 7682, - 1, - "ḃ" - ], - [ - 7683, - 2 - ], - [ - 7684, - 1, - "ḅ" - ], - [ - 7685, - 2 - ], - [ - 7686, - 1, - "ḇ" - ], - [ - 7687, - 2 - ], - [ - 7688, - 1, - "ḉ" - ], - [ - 7689, - 2 - ], - [ - 7690, - 1, - "ḋ" - ], - [ - 7691, - 2 - ], - [ - 7692, - 1, - "ḍ" - ], - [ - 7693, - 2 - ], - [ - 7694, - 1, - "ḏ" - ], - [ - 7695, - 2 - ], - [ - 7696, - 1, - "ḑ" - ], - [ - 7697, - 2 - ], - [ - 7698, - 1, - "ḓ" - ], - [ - 7699, - 2 - ], - [ - 7700, - 1, - "ḕ" - ], - [ - 7701, - 2 - ], - [ - 7702, - 1, - "ḗ" - ], - [ - 7703, - 2 - ], - [ - 7704, - 1, - "ḙ" - ], - [ - 7705, - 2 - ], - [ - 7706, - 1, - "ḛ" - ], - [ - 7707, - 2 - ], - [ - 7708, - 1, - "ḝ" - ], - [ - 7709, - 2 - ], - [ - 7710, - 1, - "ḟ" - ], - [ - 7711, - 2 - ], - [ - 7712, - 1, - "ḡ" - ], - [ - 7713, - 2 - ], - [ - 7714, - 1, - "ḣ" - ], - [ - 7715, - 2 - ], - [ - 7716, - 1, - "ḥ" - ], - [ - 7717, - 2 - ], - [ - 7718, - 1, - "ḧ" - ], - [ - 7719, - 2 - ], - [ - 7720, - 1, - "ḩ" - ], - [ - 7721, - 2 - ], - [ - 7722, - 1, - "ḫ" - ], - [ - 7723, - 2 - ], - [ - 7724, - 1, - "ḭ" - ], - [ - 7725, - 2 - ], - [ - 7726, - 1, - "ḯ" - ], - [ - 7727, - 2 - ], - [ - 7728, - 1, - "ḱ" - ], - [ - 7729, - 2 - ], - [ - 7730, - 1, - "ḳ" - ], - [ - 7731, - 2 - ], - [ - 7732, - 1, - "ḵ" - ], - [ - 7733, - 2 - ], - [ - 7734, - 1, - "ḷ" - ], - [ - 7735, - 2 - ], - [ - 7736, - 1, - "ḹ" - ], - [ - 7737, - 2 - ], - [ - 7738, - 1, - "ḻ" - ], - [ - 7739, - 2 - ], - [ - 7740, - 1, - "ḽ" - ], - [ - 7741, - 2 - ], - [ - 7742, - 1, - "ḿ" - ], - [ - 7743, - 2 - ], - [ - 7744, - 1, - "ṁ" - ], - [ - 7745, - 2 - ], - [ - 7746, - 1, - "ṃ" - ], - [ - 7747, - 2 - ], - [ - 7748, - 1, - "ṅ" - ], - [ - 7749, - 2 - ], - [ - 7750, - 1, - "ṇ" - ], - [ - 7751, - 2 - ], - [ - 7752, - 1, - "ṉ" - ], - [ - 7753, - 2 - ], - [ - 7754, - 1, - "ṋ" - ], - [ - 7755, - 2 - ], - [ - 7756, - 1, - "ṍ" - ], - [ - 7757, - 2 - ], - [ - 7758, - 1, - "ṏ" - ], - [ - 7759, - 2 - ], - [ - 7760, - 1, - "ṑ" - ], - [ - 7761, - 2 - ], - [ - 7762, - 1, - "ṓ" - ], - [ - 7763, - 2 - ], - [ - 7764, - 1, - "ṕ" - ], - [ - 7765, - 2 - ], - [ - 7766, - 1, - "ṗ" - ], - [ - 7767, - 2 - ], - [ - 7768, - 1, - "ṙ" - ], - [ - 7769, - 2 - ], - [ - 7770, - 1, - "ṛ" - ], - [ - 7771, - 2 - ], - [ - 7772, - 1, - "ṝ" - ], - [ - 7773, - 2 - ], - [ - 7774, - 1, - "ṟ" - ], - [ - 7775, - 2 - ], - [ - 7776, - 1, - "ṡ" - ], - [ - 7777, - 2 - ], - [ - 7778, - 1, - "ṣ" - ], - [ - 7779, - 2 - ], - [ - 7780, - 1, - "ṥ" - ], - [ - 7781, - 2 - ], - [ - 7782, - 1, - "ṧ" - ], - [ - 7783, - 2 - ], - [ - 7784, - 1, - "ṩ" - ], - [ - 7785, - 2 - ], - [ - 7786, - 1, - "ṫ" - ], - [ - 7787, - 2 - ], - [ - 7788, - 1, - "ṭ" - ], - [ - 7789, - 2 - ], - [ - 7790, - 1, - "ṯ" - ], - [ - 7791, - 2 - ], - [ - 7792, - 1, - "ṱ" - ], - [ - 7793, - 2 - ], - [ - 7794, - 1, - "ṳ" - ], - [ - 7795, - 2 - ], - [ - 7796, - 1, - "ṵ" - ], - [ - 7797, - 2 - ], - [ - 7798, - 1, - "ṷ" - ], - [ - 7799, - 2 - ], - [ - 7800, - 1, - "ṹ" - ], - [ - 7801, - 2 - ], - [ - 7802, - 1, - "ṻ" - ], - [ - 7803, - 2 - ], - [ - 7804, - 1, - "ṽ" - ], - [ - 7805, - 2 - ], - [ - 7806, - 1, - "ṿ" - ], - [ - 7807, - 2 - ], - [ - 7808, - 1, - "ẁ" - ], - [ - 7809, - 2 - ], - [ - 7810, - 1, - "ẃ" - ], - [ - 7811, - 2 - ], - [ - 7812, - 1, - "ẅ" - ], - [ - 7813, - 2 - ], - [ - 7814, - 1, - "ẇ" - ], - [ - 7815, - 2 - ], - [ - 7816, - 1, - "ẉ" - ], - [ - 7817, - 2 - ], - [ - 7818, - 1, - "ẋ" - ], - [ - 7819, - 2 - ], - [ - 7820, - 1, - "ẍ" - ], - [ - 7821, - 2 - ], - [ - 7822, - 1, - "ẏ" - ], - [ - 7823, - 2 - ], - [ - 7824, - 1, - "ẑ" - ], - [ - 7825, - 2 - ], - [ - 7826, - 1, - "ẓ" - ], - [ - 7827, - 2 - ], - [ - 7828, - 1, - "ẕ" - ], - [ - [ - 7829, - 7833 - ], - 2 - ], - [ - 7834, - 1, - "aʾ" - ], - [ - 7835, - 1, - "ṡ" - ], - [ - [ - 7836, - 7837 - ], - 2 - ], - [ - 7838, - 1, - "ss" - ], - [ - 7839, - 2 - ], - [ - 7840, - 1, - "ạ" - ], - [ - 7841, - 2 - ], - [ - 7842, - 1, - "ả" - ], - [ - 7843, - 2 - ], - [ - 7844, - 1, - "ấ" - ], - [ - 7845, - 2 - ], - [ - 7846, - 1, - "ầ" - ], - [ - 7847, - 2 - ], - [ - 7848, - 1, - "ẩ" - ], - [ - 7849, - 2 - ], - [ - 7850, - 1, - "ẫ" - ], - [ - 7851, - 2 - ], - [ - 7852, - 1, - "ậ" - ], - [ - 7853, - 2 - ], - [ - 7854, - 1, - "ắ" - ], - [ - 7855, - 2 - ], - [ - 7856, - 1, - "ằ" - ], - [ - 7857, - 2 - ], - [ - 7858, - 1, - "ẳ" - ], - [ - 7859, - 2 - ], - [ - 7860, - 1, - "ẵ" - ], - [ - 7861, - 2 - ], - [ - 7862, - 1, - "ặ" - ], - [ - 7863, - 2 - ], - [ - 7864, - 1, - "ẹ" - ], - [ - 7865, - 2 - ], - [ - 7866, - 1, - "ẻ" - ], - [ - 7867, - 2 - ], - [ - 7868, - 1, - "ẽ" - ], - [ - 7869, - 2 - ], - [ - 7870, - 1, - "ế" - ], - [ - 7871, - 2 - ], - [ - 7872, - 1, - "ề" - ], - [ - 7873, - 2 - ], - [ - 7874, - 1, - "ể" - ], - [ - 7875, - 2 - ], - [ - 7876, - 1, - "ễ" - ], - [ - 7877, - 2 - ], - [ - 7878, - 1, - "ệ" - ], - [ - 7879, - 2 - ], - [ - 7880, - 1, - "ỉ" - ], - [ - 7881, - 2 - ], - [ - 7882, - 1, - "ị" - ], - [ - 7883, - 2 - ], - [ - 7884, - 1, - "ọ" - ], - [ - 7885, - 2 - ], - [ - 7886, - 1, - "ỏ" - ], - [ - 7887, - 2 - ], - [ - 7888, - 1, - "ố" - ], - [ - 7889, - 2 - ], - [ - 7890, - 1, - "ồ" - ], - [ - 7891, - 2 - ], - [ - 7892, - 1, - "ổ" - ], - [ - 7893, - 2 - ], - [ - 7894, - 1, - "ỗ" - ], - [ - 7895, - 2 - ], - [ - 7896, - 1, - "ộ" - ], - [ - 7897, - 2 - ], - [ - 7898, - 1, - "ớ" - ], - [ - 7899, - 2 - ], - [ - 7900, - 1, - "ờ" - ], - [ - 7901, - 2 - ], - [ - 7902, - 1, - "ở" - ], - [ - 7903, - 2 - ], - [ - 7904, - 1, - "ỡ" - ], - [ - 7905, - 2 - ], - [ - 7906, - 1, - "ợ" - ], - [ - 7907, - 2 - ], - [ - 7908, - 1, - "ụ" - ], - [ - 7909, - 2 - ], - [ - 7910, - 1, - "ủ" - ], - [ - 7911, - 2 - ], - [ - 7912, - 1, - "ứ" - ], - [ - 7913, - 2 - ], - [ - 7914, - 1, - "ừ" - ], - [ - 7915, - 2 - ], - [ - 7916, - 1, - "ử" - ], - [ - 7917, - 2 - ], - [ - 7918, - 1, - "ữ" - ], - [ - 7919, - 2 - ], - [ - 7920, - 1, - "ự" - ], - [ - 7921, - 2 - ], - [ - 7922, - 1, - "ỳ" - ], - [ - 7923, - 2 - ], - [ - 7924, - 1, - "ỵ" - ], - [ - 7925, - 2 - ], - [ - 7926, - 1, - "ỷ" - ], - [ - 7927, - 2 - ], - [ - 7928, - 1, - "ỹ" - ], - [ - 7929, - 2 - ], - [ - 7930, - 1, - "ỻ" - ], - [ - 7931, - 2 - ], - [ - 7932, - 1, - "ỽ" - ], - [ - 7933, - 2 - ], - [ - 7934, - 1, - "ỿ" - ], - [ - 7935, - 2 - ], - [ - [ - 7936, - 7943 - ], - 2 - ], - [ - 7944, - 1, - "ἀ" - ], - [ - 7945, - 1, - "ἁ" - ], - [ - 7946, - 1, - "ἂ" - ], - [ - 7947, - 1, - "ἃ" - ], - [ - 7948, - 1, - "ἄ" - ], - [ - 7949, - 1, - "ἅ" - ], - [ - 7950, - 1, - "ἆ" - ], - [ - 7951, - 1, - "ἇ" - ], - [ - [ - 7952, - 7957 - ], - 2 - ], - [ - [ - 7958, - 7959 - ], - 3 - ], - [ - 7960, - 1, - "ἐ" - ], - [ - 7961, - 1, - "ἑ" - ], - [ - 7962, - 1, - "ἒ" - ], - [ - 7963, - 1, - "ἓ" - ], - [ - 7964, - 1, - "ἔ" - ], - [ - 7965, - 1, - "ἕ" - ], - [ - [ - 7966, - 7967 - ], - 3 - ], - [ - [ - 7968, - 7975 - ], - 2 - ], - [ - 7976, - 1, - "ἠ" - ], - [ - 7977, - 1, - "ἡ" - ], - [ - 7978, - 1, - "ἢ" - ], - [ - 7979, - 1, - "ἣ" - ], - [ - 7980, - 1, - "ἤ" - ], - [ - 7981, - 1, - "ἥ" - ], - [ - 7982, - 1, - "ἦ" - ], - [ - 7983, - 1, - "ἧ" - ], - [ - [ - 7984, - 7991 - ], - 2 - ], - [ - 7992, - 1, - "ἰ" - ], - [ - 7993, - 1, - "ἱ" - ], - [ - 7994, - 1, - "ἲ" - ], - [ - 7995, - 1, - "ἳ" - ], - [ - 7996, - 1, - "ἴ" - ], - [ - 7997, - 1, - "ἵ" - ], - [ - 7998, - 1, - "ἶ" - ], - [ - 7999, - 1, - "ἷ" - ], - [ - [ - 8000, - 8005 - ], - 2 - ], - [ - [ - 8006, - 8007 - ], - 3 - ], - [ - 8008, - 1, - "ὀ" - ], - [ - 8009, - 1, - "ὁ" - ], - [ - 8010, - 1, - "ὂ" - ], - [ - 8011, - 1, - "ὃ" - ], - [ - 8012, - 1, - "ὄ" - ], - [ - 8013, - 1, - "ὅ" - ], - [ - [ - 8014, - 8015 - ], - 3 - ], - [ - [ - 8016, - 8023 - ], - 2 - ], - [ - 8024, - 3 - ], - [ - 8025, - 1, - "ὑ" - ], - [ - 8026, - 3 - ], - [ - 8027, - 1, - "ὓ" - ], - [ - 8028, - 3 - ], - [ - 8029, - 1, - "ὕ" - ], - [ - 8030, - 3 - ], - [ - 8031, - 1, - "ὗ" - ], - [ - [ - 8032, - 8039 - ], - 2 - ], - [ - 8040, - 1, - "ὠ" - ], - [ - 8041, - 1, - "ὡ" - ], - [ - 8042, - 1, - "ὢ" - ], - [ - 8043, - 1, - "ὣ" - ], - [ - 8044, - 1, - "ὤ" - ], - [ - 8045, - 1, - "ὥ" - ], - [ - 8046, - 1, - "ὦ" - ], - [ - 8047, - 1, - "ὧ" - ], - [ - 8048, - 2 - ], - [ - 8049, - 1, - "ά" - ], - [ - 8050, - 2 - ], - [ - 8051, - 1, - "έ" - ], - [ - 8052, - 2 - ], - [ - 8053, - 1, - "ή" - ], - [ - 8054, - 2 - ], - [ - 8055, - 1, - "ί" - ], - [ - 8056, - 2 - ], - [ - 8057, - 1, - "ό" - ], - [ - 8058, - 2 - ], - [ - 8059, - 1, - "ύ" - ], - [ - 8060, - 2 - ], - [ - 8061, - 1, - "ώ" - ], - [ - [ - 8062, - 8063 - ], - 3 - ], - [ - 8064, - 1, - "ἀι" - ], - [ - 8065, - 1, - "ἁι" - ], - [ - 8066, - 1, - "ἂι" - ], - [ - 8067, - 1, - "ἃι" - ], - [ - 8068, - 1, - "ἄι" - ], - [ - 8069, - 1, - "ἅι" - ], - [ - 8070, - 1, - "ἆι" - ], - [ - 8071, - 1, - "ἇι" - ], - [ - 8072, - 1, - "ἀι" - ], - [ - 8073, - 1, - "ἁι" - ], - [ - 8074, - 1, - "ἂι" - ], - [ - 8075, - 1, - "ἃι" - ], - [ - 8076, - 1, - "ἄι" - ], - [ - 8077, - 1, - "ἅι" - ], - [ - 8078, - 1, - "ἆι" - ], - [ - 8079, - 1, - "ἇι" - ], - [ - 8080, - 1, - "ἠι" - ], - [ - 8081, - 1, - "ἡι" - ], - [ - 8082, - 1, - "ἢι" - ], - [ - 8083, - 1, - "ἣι" - ], - [ - 8084, - 1, - "ἤι" - ], - [ - 8085, - 1, - "ἥι" - ], - [ - 8086, - 1, - "ἦι" - ], - [ - 8087, - 1, - "ἧι" - ], - [ - 8088, - 1, - "ἠι" - ], - [ - 8089, - 1, - "ἡι" - ], - [ - 8090, - 1, - "ἢι" - ], - [ - 8091, - 1, - "ἣι" - ], - [ - 8092, - 1, - "ἤι" - ], - [ - 8093, - 1, - "ἥι" - ], - [ - 8094, - 1, - "ἦι" - ], - [ - 8095, - 1, - "ἧι" - ], - [ - 8096, - 1, - "ὠι" - ], - [ - 8097, - 1, - "ὡι" - ], - [ - 8098, - 1, - "ὢι" - ], - [ - 8099, - 1, - "ὣι" - ], - [ - 8100, - 1, - "ὤι" - ], - [ - 8101, - 1, - "ὥι" - ], - [ - 8102, - 1, - "ὦι" - ], - [ - 8103, - 1, - "ὧι" - ], - [ - 8104, - 1, - "ὠι" - ], - [ - 8105, - 1, - "ὡι" - ], - [ - 8106, - 1, - "ὢι" - ], - [ - 8107, - 1, - "ὣι" - ], - [ - 8108, - 1, - "ὤι" - ], - [ - 8109, - 1, - "ὥι" - ], - [ - 8110, - 1, - "ὦι" - ], - [ - 8111, - 1, - "ὧι" - ], - [ - [ - 8112, - 8113 - ], - 2 - ], - [ - 8114, - 1, - "ὰι" - ], - [ - 8115, - 1, - "αι" - ], - [ - 8116, - 1, - "άι" - ], - [ - 8117, - 3 - ], - [ - 8118, - 2 - ], - [ - 8119, - 1, - "ᾶι" - ], - [ - 8120, - 1, - "ᾰ" - ], - [ - 8121, - 1, - "ᾱ" - ], - [ - 8122, - 1, - "ὰ" - ], - [ - 8123, - 1, - "ά" - ], - [ - 8124, - 1, - "αι" - ], - [ - 8125, - 5, - " ̓" - ], - [ - 8126, - 1, - "ι" - ], - [ - 8127, - 5, - " ̓" - ], - [ - 8128, - 5, - " ͂" - ], - [ - 8129, - 5, - " ̈͂" - ], - [ - 8130, - 1, - "ὴι" - ], - [ - 8131, - 1, - "ηι" - ], - [ - 8132, - 1, - "ήι" - ], - [ - 8133, - 3 - ], - [ - 8134, - 2 - ], - [ - 8135, - 1, - "ῆι" - ], - [ - 8136, - 1, - "ὲ" - ], - [ - 8137, - 1, - "έ" - ], - [ - 8138, - 1, - "ὴ" - ], - [ - 8139, - 1, - "ή" - ], - [ - 8140, - 1, - "ηι" - ], - [ - 8141, - 5, - " ̓̀" - ], - [ - 8142, - 5, - " ̓́" - ], - [ - 8143, - 5, - " ̓͂" - ], - [ - [ - 8144, - 8146 - ], - 2 - ], - [ - 8147, - 1, - "ΐ" - ], - [ - [ - 8148, - 8149 - ], - 3 - ], - [ - [ - 8150, - 8151 - ], - 2 - ], - [ - 8152, - 1, - "ῐ" - ], - [ - 8153, - 1, - "ῑ" - ], - [ - 8154, - 1, - "ὶ" - ], - [ - 8155, - 1, - "ί" - ], - [ - 8156, - 3 - ], - [ - 8157, - 5, - " ̔̀" - ], - [ - 8158, - 5, - " ̔́" - ], - [ - 8159, - 5, - " ̔͂" - ], - [ - [ - 8160, - 8162 - ], - 2 - ], - [ - 8163, - 1, - "ΰ" - ], - [ - [ - 8164, - 8167 - ], - 2 - ], - [ - 8168, - 1, - "ῠ" - ], - [ - 8169, - 1, - "ῡ" - ], - [ - 8170, - 1, - "ὺ" - ], - [ - 8171, - 1, - "ύ" - ], - [ - 8172, - 1, - "ῥ" - ], - [ - 8173, - 5, - " ̈̀" - ], - [ - 8174, - 5, - " ̈́" - ], - [ - 8175, - 5, - "`" - ], - [ - [ - 8176, - 8177 - ], - 3 - ], - [ - 8178, - 1, - "ὼι" - ], - [ - 8179, - 1, - "ωι" - ], - [ - 8180, - 1, - "ώι" - ], - [ - 8181, - 3 - ], - [ - 8182, - 2 - ], - [ - 8183, - 1, - "ῶι" - ], - [ - 8184, - 1, - "ὸ" - ], - [ - 8185, - 1, - "ό" - ], - [ - 8186, - 1, - "ὼ" - ], - [ - 8187, - 1, - "ώ" - ], - [ - 8188, - 1, - "ωι" - ], - [ - 8189, - 5, - " ́" - ], - [ - 8190, - 5, - " ̔" - ], - [ - 8191, - 3 - ], - [ - [ - 8192, - 8202 - ], - 5, - " " - ], - [ - 8203, - 7 - ], - [ - [ - 8204, - 8205 - ], - 6, - "" - ], - [ - [ - 8206, - 8207 - ], - 3 - ], - [ - 8208, - 2 - ], - [ - 8209, - 1, - "‐" - ], - [ - [ - 8210, - 8214 - ], - 2 - ], - [ - 8215, - 5, - " ̳" - ], - [ - [ - 8216, - 8227 - ], - 2 - ], - [ - [ - 8228, - 8230 - ], - 3 - ], - [ - 8231, - 2 - ], - [ - [ - 8232, - 8238 - ], - 3 - ], - [ - 8239, - 5, - " " - ], - [ - [ - 8240, - 8242 - ], - 2 - ], - [ - 8243, - 1, - "′′" - ], - [ - 8244, - 1, - "′′′" - ], - [ - 8245, - 2 - ], - [ - 8246, - 1, - "‵‵" - ], - [ - 8247, - 1, - "‵‵‵" - ], - [ - [ - 8248, - 8251 - ], - 2 - ], - [ - 8252, - 5, - "!!" - ], - [ - 8253, - 2 - ], - [ - 8254, - 5, - " ̅" - ], - [ - [ - 8255, - 8262 - ], - 2 - ], - [ - 8263, - 5, - "??" - ], - [ - 8264, - 5, - "?!" - ], - [ - 8265, - 5, - "!?" - ], - [ - [ - 8266, - 8269 - ], - 2 - ], - [ - [ - 8270, - 8274 - ], - 2 - ], - [ - [ - 8275, - 8276 - ], - 2 - ], - [ - [ - 8277, - 8278 - ], - 2 - ], - [ - 8279, - 1, - "′′′′" - ], - [ - [ - 8280, - 8286 - ], - 2 - ], - [ - 8287, - 5, - " " - ], - [ - 8288, - 7 - ], - [ - [ - 8289, - 8291 - ], - 3 - ], - [ - 8292, - 7 - ], - [ - 8293, - 3 - ], - [ - [ - 8294, - 8297 - ], - 3 - ], - [ - [ - 8298, - 8303 - ], - 3 - ], - [ - 8304, - 1, - "0" - ], - [ - 8305, - 1, - "i" - ], - [ - [ - 8306, - 8307 - ], - 3 - ], - [ - 8308, - 1, - "4" - ], - [ - 8309, - 1, - "5" - ], - [ - 8310, - 1, - "6" - ], - [ - 8311, - 1, - "7" - ], - [ - 8312, - 1, - "8" - ], - [ - 8313, - 1, - "9" - ], - [ - 8314, - 5, - "+" - ], - [ - 8315, - 1, - "−" - ], - [ - 8316, - 5, - "=" - ], - [ - 8317, - 5, - "(" - ], - [ - 8318, - 5, - ")" - ], - [ - 8319, - 1, - "n" - ], - [ - 8320, - 1, - "0" - ], - [ - 8321, - 1, - "1" - ], - [ - 8322, - 1, - "2" - ], - [ - 8323, - 1, - "3" - ], - [ - 8324, - 1, - "4" - ], - [ - 8325, - 1, - "5" - ], - [ - 8326, - 1, - "6" - ], - [ - 8327, - 1, - "7" - ], - [ - 8328, - 1, - "8" - ], - [ - 8329, - 1, - "9" - ], - [ - 8330, - 5, - "+" - ], - [ - 8331, - 1, - "−" - ], - [ - 8332, - 5, - "=" - ], - [ - 8333, - 5, - "(" - ], - [ - 8334, - 5, - ")" - ], - [ - 8335, - 3 - ], - [ - 8336, - 1, - "a" - ], - [ - 8337, - 1, - "e" - ], - [ - 8338, - 1, - "o" - ], - [ - 8339, - 1, - "x" - ], - [ - 8340, - 1, - "ə" - ], - [ - 8341, - 1, - "h" - ], - [ - 8342, - 1, - "k" - ], - [ - 8343, - 1, - "l" - ], - [ - 8344, - 1, - "m" - ], - [ - 8345, - 1, - "n" - ], - [ - 8346, - 1, - "p" - ], - [ - 8347, - 1, - "s" - ], - [ - 8348, - 1, - "t" - ], - [ - [ - 8349, - 8351 - ], - 3 - ], - [ - [ - 8352, - 8359 - ], - 2 - ], - [ - 8360, - 1, - "rs" - ], - [ - [ - 8361, - 8362 - ], - 2 - ], - [ - 8363, - 2 - ], - [ - 8364, - 2 - ], - [ - [ - 8365, - 8367 - ], - 2 - ], - [ - [ - 8368, - 8369 - ], - 2 - ], - [ - [ - 8370, - 8373 - ], - 2 - ], - [ - [ - 8374, - 8376 - ], - 2 - ], - [ - 8377, - 2 - ], - [ - 8378, - 2 - ], - [ - [ - 8379, - 8381 - ], - 2 - ], - [ - 8382, - 2 - ], - [ - 8383, - 2 - ], - [ - 8384, - 2 - ], - [ - [ - 8385, - 8399 - ], - 3 - ], - [ - [ - 8400, - 8417 - ], - 2 - ], - [ - [ - 8418, - 8419 - ], - 2 - ], - [ - [ - 8420, - 8426 - ], - 2 - ], - [ - 8427, - 2 - ], - [ - [ - 8428, - 8431 - ], - 2 - ], - [ - 8432, - 2 - ], - [ - [ - 8433, - 8447 - ], - 3 - ], - [ - 8448, - 5, - "a/c" - ], - [ - 8449, - 5, - "a/s" - ], - [ - 8450, - 1, - "c" - ], - [ - 8451, - 1, - "°c" - ], - [ - 8452, - 2 - ], - [ - 8453, - 5, - "c/o" - ], - [ - 8454, - 5, - "c/u" - ], - [ - 8455, - 1, - "ɛ" - ], - [ - 8456, - 2 - ], - [ - 8457, - 1, - "°f" - ], - [ - 8458, - 1, - "g" - ], - [ - [ - 8459, - 8462 - ], - 1, - "h" - ], - [ - 8463, - 1, - "ħ" - ], - [ - [ - 8464, - 8465 - ], - 1, - "i" - ], - [ - [ - 8466, - 8467 - ], - 1, - "l" - ], - [ - 8468, - 2 - ], - [ - 8469, - 1, - "n" - ], - [ - 8470, - 1, - "no" - ], - [ - [ - 8471, - 8472 - ], - 2 - ], - [ - 8473, - 1, - "p" - ], - [ - 8474, - 1, - "q" - ], - [ - [ - 8475, - 8477 - ], - 1, - "r" - ], - [ - [ - 8478, - 8479 - ], - 2 - ], - [ - 8480, - 1, - "sm" - ], - [ - 8481, - 1, - "tel" - ], - [ - 8482, - 1, - "tm" - ], - [ - 8483, - 2 - ], - [ - 8484, - 1, - "z" - ], - [ - 8485, - 2 - ], - [ - 8486, - 1, - "ω" - ], - [ - 8487, - 2 - ], - [ - 8488, - 1, - "z" - ], - [ - 8489, - 2 - ], - [ - 8490, - 1, - "k" - ], - [ - 8491, - 1, - "å" - ], - [ - 8492, - 1, - "b" - ], - [ - 8493, - 1, - "c" - ], - [ - 8494, - 2 - ], - [ - [ - 8495, - 8496 - ], - 1, - "e" - ], - [ - 8497, - 1, - "f" - ], - [ - 8498, - 3 - ], - [ - 8499, - 1, - "m" - ], - [ - 8500, - 1, - "o" - ], - [ - 8501, - 1, - "א" - ], - [ - 8502, - 1, - "ב" - ], - [ - 8503, - 1, - "ג" - ], - [ - 8504, - 1, - "ד" - ], - [ - 8505, - 1, - "i" - ], - [ - 8506, - 2 - ], - [ - 8507, - 1, - "fax" - ], - [ - 8508, - 1, - "π" - ], - [ - [ - 8509, - 8510 - ], - 1, - "γ" - ], - [ - 8511, - 1, - "π" - ], - [ - 8512, - 1, - "∑" - ], - [ - [ - 8513, - 8516 - ], - 2 - ], - [ - [ - 8517, - 8518 - ], - 1, - "d" - ], - [ - 8519, - 1, - "e" - ], - [ - 8520, - 1, - "i" - ], - [ - 8521, - 1, - "j" - ], - [ - [ - 8522, - 8523 - ], - 2 - ], - [ - 8524, - 2 - ], - [ - 8525, - 2 - ], - [ - 8526, - 2 - ], - [ - 8527, - 2 - ], - [ - 8528, - 1, - "1⁄7" - ], - [ - 8529, - 1, - "1⁄9" - ], - [ - 8530, - 1, - "1⁄10" - ], - [ - 8531, - 1, - "1⁄3" - ], - [ - 8532, - 1, - "2⁄3" - ], - [ - 8533, - 1, - "1⁄5" - ], - [ - 8534, - 1, - "2⁄5" - ], - [ - 8535, - 1, - "3⁄5" - ], - [ - 8536, - 1, - "4⁄5" - ], - [ - 8537, - 1, - "1⁄6" - ], - [ - 8538, - 1, - "5⁄6" - ], - [ - 8539, - 1, - "1⁄8" - ], - [ - 8540, - 1, - "3⁄8" - ], - [ - 8541, - 1, - "5⁄8" - ], - [ - 8542, - 1, - "7⁄8" - ], - [ - 8543, - 1, - "1⁄" - ], - [ - 8544, - 1, - "i" - ], - [ - 8545, - 1, - "ii" - ], - [ - 8546, - 1, - "iii" - ], - [ - 8547, - 1, - "iv" - ], - [ - 8548, - 1, - "v" - ], - [ - 8549, - 1, - "vi" - ], - [ - 8550, - 1, - "vii" - ], - [ - 8551, - 1, - "viii" - ], - [ - 8552, - 1, - "ix" - ], - [ - 8553, - 1, - "x" - ], - [ - 8554, - 1, - "xi" - ], - [ - 8555, - 1, - "xii" - ], - [ - 8556, - 1, - "l" - ], - [ - 8557, - 1, - "c" - ], - [ - 8558, - 1, - "d" - ], - [ - 8559, - 1, - "m" - ], - [ - 8560, - 1, - "i" - ], - [ - 8561, - 1, - "ii" - ], - [ - 8562, - 1, - "iii" - ], - [ - 8563, - 1, - "iv" - ], - [ - 8564, - 1, - "v" - ], - [ - 8565, - 1, - "vi" - ], - [ - 8566, - 1, - "vii" - ], - [ - 8567, - 1, - "viii" - ], - [ - 8568, - 1, - "ix" - ], - [ - 8569, - 1, - "x" - ], - [ - 8570, - 1, - "xi" - ], - [ - 8571, - 1, - "xii" - ], - [ - 8572, - 1, - "l" - ], - [ - 8573, - 1, - "c" - ], - [ - 8574, - 1, - "d" - ], - [ - 8575, - 1, - "m" - ], - [ - [ - 8576, - 8578 - ], - 2 - ], - [ - 8579, - 3 - ], - [ - 8580, - 2 - ], - [ - [ - 8581, - 8584 - ], - 2 - ], - [ - 8585, - 1, - "0⁄3" - ], - [ - [ - 8586, - 8587 - ], - 2 - ], - [ - [ - 8588, - 8591 - ], - 3 - ], - [ - [ - 8592, - 8682 - ], - 2 - ], - [ - [ - 8683, - 8691 - ], - 2 - ], - [ - [ - 8692, - 8703 - ], - 2 - ], - [ - [ - 8704, - 8747 - ], - 2 - ], - [ - 8748, - 1, - "∫∫" - ], - [ - 8749, - 1, - "∫∫∫" - ], - [ - 8750, - 2 - ], - [ - 8751, - 1, - "∮∮" - ], - [ - 8752, - 1, - "∮∮∮" - ], - [ - [ - 8753, - 8799 - ], - 2 - ], - [ - 8800, - 4 - ], - [ - [ - 8801, - 8813 - ], - 2 - ], - [ - [ - 8814, - 8815 - ], - 4 - ], - [ - [ - 8816, - 8945 - ], - 2 - ], - [ - [ - 8946, - 8959 - ], - 2 - ], - [ - 8960, - 2 - ], - [ - 8961, - 2 - ], - [ - [ - 8962, - 9000 - ], - 2 - ], - [ - 9001, - 1, - "〈" - ], - [ - 9002, - 1, - "〉" - ], - [ - [ - 9003, - 9082 - ], - 2 - ], - [ - 9083, - 2 - ], - [ - 9084, - 2 - ], - [ - [ - 9085, - 9114 - ], - 2 - ], - [ - [ - 9115, - 9166 - ], - 2 - ], - [ - [ - 9167, - 9168 - ], - 2 - ], - [ - [ - 9169, - 9179 - ], - 2 - ], - [ - [ - 9180, - 9191 - ], - 2 - ], - [ - 9192, - 2 - ], - [ - [ - 9193, - 9203 - ], - 2 - ], - [ - [ - 9204, - 9210 - ], - 2 - ], - [ - [ - 9211, - 9214 - ], - 2 - ], - [ - 9215, - 2 - ], - [ - [ - 9216, - 9252 - ], - 2 - ], - [ - [ - 9253, - 9254 - ], - 2 - ], - [ - [ - 9255, - 9279 - ], - 3 - ], - [ - [ - 9280, - 9290 - ], - 2 - ], - [ - [ - 9291, - 9311 - ], - 3 - ], - [ - 9312, - 1, - "1" - ], - [ - 9313, - 1, - "2" - ], - [ - 9314, - 1, - "3" - ], - [ - 9315, - 1, - "4" - ], - [ - 9316, - 1, - "5" - ], - [ - 9317, - 1, - "6" - ], - [ - 9318, - 1, - "7" - ], - [ - 9319, - 1, - "8" - ], - [ - 9320, - 1, - "9" - ], - [ - 9321, - 1, - "10" - ], - [ - 9322, - 1, - "11" - ], - [ - 9323, - 1, - "12" - ], - [ - 9324, - 1, - "13" - ], - [ - 9325, - 1, - "14" - ], - [ - 9326, - 1, - "15" - ], - [ - 9327, - 1, - "16" - ], - [ - 9328, - 1, - "17" - ], - [ - 9329, - 1, - "18" - ], - [ - 9330, - 1, - "19" - ], - [ - 9331, - 1, - "20" - ], - [ - 9332, - 5, - "(1)" - ], - [ - 9333, - 5, - "(2)" - ], - [ - 9334, - 5, - "(3)" - ], - [ - 9335, - 5, - "(4)" - ], - [ - 9336, - 5, - "(5)" - ], - [ - 9337, - 5, - "(6)" - ], - [ - 9338, - 5, - "(7)" - ], - [ - 9339, - 5, - "(8)" - ], - [ - 9340, - 5, - "(9)" - ], - [ - 9341, - 5, - "(10)" - ], - [ - 9342, - 5, - "(11)" - ], - [ - 9343, - 5, - "(12)" - ], - [ - 9344, - 5, - "(13)" - ], - [ - 9345, - 5, - "(14)" - ], - [ - 9346, - 5, - "(15)" - ], - [ - 9347, - 5, - "(16)" - ], - [ - 9348, - 5, - "(17)" - ], - [ - 9349, - 5, - "(18)" - ], - [ - 9350, - 5, - "(19)" - ], - [ - 9351, - 5, - "(20)" - ], - [ - [ - 9352, - 9371 - ], - 3 - ], - [ - 9372, - 5, - "(a)" - ], - [ - 9373, - 5, - "(b)" - ], - [ - 9374, - 5, - "(c)" - ], - [ - 9375, - 5, - "(d)" - ], - [ - 9376, - 5, - "(e)" - ], - [ - 9377, - 5, - "(f)" - ], - [ - 9378, - 5, - "(g)" - ], - [ - 9379, - 5, - "(h)" - ], - [ - 9380, - 5, - "(i)" - ], - [ - 9381, - 5, - "(j)" - ], - [ - 9382, - 5, - "(k)" - ], - [ - 9383, - 5, - "(l)" - ], - [ - 9384, - 5, - "(m)" - ], - [ - 9385, - 5, - "(n)" - ], - [ - 9386, - 5, - "(o)" - ], - [ - 9387, - 5, - "(p)" - ], - [ - 9388, - 5, - "(q)" - ], - [ - 9389, - 5, - "(r)" - ], - [ - 9390, - 5, - "(s)" - ], - [ - 9391, - 5, - "(t)" - ], - [ - 9392, - 5, - "(u)" - ], - [ - 9393, - 5, - "(v)" - ], - [ - 9394, - 5, - "(w)" - ], - [ - 9395, - 5, - "(x)" - ], - [ - 9396, - 5, - "(y)" - ], - [ - 9397, - 5, - "(z)" - ], - [ - 9398, - 1, - "a" - ], - [ - 9399, - 1, - "b" - ], - [ - 9400, - 1, - "c" - ], - [ - 9401, - 1, - "d" - ], - [ - 9402, - 1, - "e" - ], - [ - 9403, - 1, - "f" - ], - [ - 9404, - 1, - "g" - ], - [ - 9405, - 1, - "h" - ], - [ - 9406, - 1, - "i" - ], - [ - 9407, - 1, - "j" - ], - [ - 9408, - 1, - "k" - ], - [ - 9409, - 1, - "l" - ], - [ - 9410, - 1, - "m" - ], - [ - 9411, - 1, - "n" - ], - [ - 9412, - 1, - "o" - ], - [ - 9413, - 1, - "p" - ], - [ - 9414, - 1, - "q" - ], - [ - 9415, - 1, - "r" - ], - [ - 9416, - 1, - "s" - ], - [ - 9417, - 1, - "t" - ], - [ - 9418, - 1, - "u" - ], - [ - 9419, - 1, - "v" - ], - [ - 9420, - 1, - "w" - ], - [ - 9421, - 1, - "x" - ], - [ - 9422, - 1, - "y" - ], - [ - 9423, - 1, - "z" - ], - [ - 9424, - 1, - "a" - ], - [ - 9425, - 1, - "b" - ], - [ - 9426, - 1, - "c" - ], - [ - 9427, - 1, - "d" - ], - [ - 9428, - 1, - "e" - ], - [ - 9429, - 1, - "f" - ], - [ - 9430, - 1, - "g" - ], - [ - 9431, - 1, - "h" - ], - [ - 9432, - 1, - "i" - ], - [ - 9433, - 1, - "j" - ], - [ - 9434, - 1, - "k" - ], - [ - 9435, - 1, - "l" - ], - [ - 9436, - 1, - "m" - ], - [ - 9437, - 1, - "n" - ], - [ - 9438, - 1, - "o" - ], - [ - 9439, - 1, - "p" - ], - [ - 9440, - 1, - "q" - ], - [ - 9441, - 1, - "r" - ], - [ - 9442, - 1, - "s" - ], - [ - 9443, - 1, - "t" - ], - [ - 9444, - 1, - "u" - ], - [ - 9445, - 1, - "v" - ], - [ - 9446, - 1, - "w" - ], - [ - 9447, - 1, - "x" - ], - [ - 9448, - 1, - "y" - ], - [ - 9449, - 1, - "z" - ], - [ - 9450, - 1, - "0" - ], - [ - [ - 9451, - 9470 - ], - 2 - ], - [ - 9471, - 2 - ], - [ - [ - 9472, - 9621 - ], - 2 - ], - [ - [ - 9622, - 9631 - ], - 2 - ], - [ - [ - 9632, - 9711 - ], - 2 - ], - [ - [ - 9712, - 9719 - ], - 2 - ], - [ - [ - 9720, - 9727 - ], - 2 - ], - [ - [ - 9728, - 9747 - ], - 2 - ], - [ - [ - 9748, - 9749 - ], - 2 - ], - [ - [ - 9750, - 9751 - ], - 2 - ], - [ - 9752, - 2 - ], - [ - 9753, - 2 - ], - [ - [ - 9754, - 9839 - ], - 2 - ], - [ - [ - 9840, - 9841 - ], - 2 - ], - [ - [ - 9842, - 9853 - ], - 2 - ], - [ - [ - 9854, - 9855 - ], - 2 - ], - [ - [ - 9856, - 9865 - ], - 2 - ], - [ - [ - 9866, - 9873 - ], - 2 - ], - [ - [ - 9874, - 9884 - ], - 2 - ], - [ - 9885, - 2 - ], - [ - [ - 9886, - 9887 - ], - 2 - ], - [ - [ - 9888, - 9889 - ], - 2 - ], - [ - [ - 9890, - 9905 - ], - 2 - ], - [ - 9906, - 2 - ], - [ - [ - 9907, - 9916 - ], - 2 - ], - [ - [ - 9917, - 9919 - ], - 2 - ], - [ - [ - 9920, - 9923 - ], - 2 - ], - [ - [ - 9924, - 9933 - ], - 2 - ], - [ - 9934, - 2 - ], - [ - [ - 9935, - 9953 - ], - 2 - ], - [ - 9954, - 2 - ], - [ - 9955, - 2 - ], - [ - [ - 9956, - 9959 - ], - 2 - ], - [ - [ - 9960, - 9983 - ], - 2 - ], - [ - 9984, - 2 - ], - [ - [ - 9985, - 9988 - ], - 2 - ], - [ - 9989, - 2 - ], - [ - [ - 9990, - 9993 - ], - 2 - ], - [ - [ - 9994, - 9995 - ], - 2 - ], - [ - [ - 9996, - 10023 - ], - 2 - ], - [ - 10024, - 2 - ], - [ - [ - 10025, - 10059 - ], - 2 - ], - [ - 10060, - 2 - ], - [ - 10061, - 2 - ], - [ - 10062, - 2 - ], - [ - [ - 10063, - 10066 - ], - 2 - ], - [ - [ - 10067, - 10069 - ], - 2 - ], - [ - 10070, - 2 - ], - [ - 10071, - 2 - ], - [ - [ - 10072, - 10078 - ], - 2 - ], - [ - [ - 10079, - 10080 - ], - 2 - ], - [ - [ - 10081, - 10087 - ], - 2 - ], - [ - [ - 10088, - 10101 - ], - 2 - ], - [ - [ - 10102, - 10132 - ], - 2 - ], - [ - [ - 10133, - 10135 - ], - 2 - ], - [ - [ - 10136, - 10159 - ], - 2 - ], - [ - 10160, - 2 - ], - [ - [ - 10161, - 10174 - ], - 2 - ], - [ - 10175, - 2 - ], - [ - [ - 10176, - 10182 - ], - 2 - ], - [ - [ - 10183, - 10186 - ], - 2 - ], - [ - 10187, - 2 - ], - [ - 10188, - 2 - ], - [ - 10189, - 2 - ], - [ - [ - 10190, - 10191 - ], - 2 - ], - [ - [ - 10192, - 10219 - ], - 2 - ], - [ - [ - 10220, - 10223 - ], - 2 - ], - [ - [ - 10224, - 10239 - ], - 2 - ], - [ - [ - 10240, - 10495 - ], - 2 - ], - [ - [ - 10496, - 10763 - ], - 2 - ], - [ - 10764, - 1, - "∫∫∫∫" - ], - [ - [ - 10765, - 10867 - ], - 2 - ], - [ - 10868, - 5, - "::=" - ], - [ - 10869, - 5, - "==" - ], - [ - 10870, - 5, - "===" - ], - [ - [ - 10871, - 10971 - ], - 2 - ], - [ - 10972, - 1, - "⫝̸" - ], - [ - [ - 10973, - 11007 - ], - 2 - ], - [ - [ - 11008, - 11021 - ], - 2 - ], - [ - [ - 11022, - 11027 - ], - 2 - ], - [ - [ - 11028, - 11034 - ], - 2 - ], - [ - [ - 11035, - 11039 - ], - 2 - ], - [ - [ - 11040, - 11043 - ], - 2 - ], - [ - [ - 11044, - 11084 - ], - 2 - ], - [ - [ - 11085, - 11087 - ], - 2 - ], - [ - [ - 11088, - 11092 - ], - 2 - ], - [ - [ - 11093, - 11097 - ], - 2 - ], - [ - [ - 11098, - 11123 - ], - 2 - ], - [ - [ - 11124, - 11125 - ], - 3 - ], - [ - [ - 11126, - 11157 - ], - 2 - ], - [ - 11158, - 3 - ], - [ - 11159, - 2 - ], - [ - [ - 11160, - 11193 - ], - 2 - ], - [ - [ - 11194, - 11196 - ], - 2 - ], - [ - [ - 11197, - 11208 - ], - 2 - ], - [ - 11209, - 2 - ], - [ - [ - 11210, - 11217 - ], - 2 - ], - [ - 11218, - 2 - ], - [ - [ - 11219, - 11243 - ], - 2 - ], - [ - [ - 11244, - 11247 - ], - 2 - ], - [ - [ - 11248, - 11262 - ], - 2 - ], - [ - 11263, - 2 - ], - [ - 11264, - 1, - "ⰰ" - ], - [ - 11265, - 1, - "ⰱ" - ], - [ - 11266, - 1, - "ⰲ" - ], - [ - 11267, - 1, - "ⰳ" - ], - [ - 11268, - 1, - "ⰴ" - ], - [ - 11269, - 1, - "ⰵ" - ], - [ - 11270, - 1, - "ⰶ" - ], - [ - 11271, - 1, - "ⰷ" - ], - [ - 11272, - 1, - "ⰸ" - ], - [ - 11273, - 1, - "ⰹ" - ], - [ - 11274, - 1, - "ⰺ" - ], - [ - 11275, - 1, - "ⰻ" - ], - [ - 11276, - 1, - "ⰼ" - ], - [ - 11277, - 1, - "ⰽ" - ], - [ - 11278, - 1, - "ⰾ" - ], - [ - 11279, - 1, - "ⰿ" - ], - [ - 11280, - 1, - "ⱀ" - ], - [ - 11281, - 1, - "ⱁ" - ], - [ - 11282, - 1, - "ⱂ" - ], - [ - 11283, - 1, - "ⱃ" - ], - [ - 11284, - 1, - "ⱄ" - ], - [ - 11285, - 1, - "ⱅ" - ], - [ - 11286, - 1, - "ⱆ" - ], - [ - 11287, - 1, - "ⱇ" - ], - [ - 11288, - 1, - "ⱈ" - ], - [ - 11289, - 1, - "ⱉ" - ], - [ - 11290, - 1, - "ⱊ" - ], - [ - 11291, - 1, - "ⱋ" - ], - [ - 11292, - 1, - "ⱌ" - ], - [ - 11293, - 1, - "ⱍ" - ], - [ - 11294, - 1, - "ⱎ" - ], - [ - 11295, - 1, - "ⱏ" - ], - [ - 11296, - 1, - "ⱐ" - ], - [ - 11297, - 1, - "ⱑ" - ], - [ - 11298, - 1, - "ⱒ" - ], - [ - 11299, - 1, - "ⱓ" - ], - [ - 11300, - 1, - "ⱔ" - ], - [ - 11301, - 1, - "ⱕ" - ], - [ - 11302, - 1, - "ⱖ" - ], - [ - 11303, - 1, - "ⱗ" - ], - [ - 11304, - 1, - "ⱘ" - ], - [ - 11305, - 1, - "ⱙ" - ], - [ - 11306, - 1, - "ⱚ" - ], - [ - 11307, - 1, - "ⱛ" - ], - [ - 11308, - 1, - "ⱜ" - ], - [ - 11309, - 1, - "ⱝ" - ], - [ - 11310, - 1, - "ⱞ" - ], - [ - 11311, - 1, - "ⱟ" - ], - [ - [ - 11312, - 11358 - ], - 2 - ], - [ - 11359, - 2 - ], - [ - 11360, - 1, - "ⱡ" - ], - [ - 11361, - 2 - ], - [ - 11362, - 1, - "ɫ" - ], - [ - 11363, - 1, - "ᵽ" - ], - [ - 11364, - 1, - "ɽ" - ], - [ - [ - 11365, - 11366 - ], - 2 - ], - [ - 11367, - 1, - "ⱨ" - ], - [ - 11368, - 2 - ], - [ - 11369, - 1, - "ⱪ" - ], - [ - 11370, - 2 - ], - [ - 11371, - 1, - "ⱬ" - ], - [ - 11372, - 2 - ], - [ - 11373, - 1, - "ɑ" - ], - [ - 11374, - 1, - "ɱ" - ], - [ - 11375, - 1, - "ɐ" - ], - [ - 11376, - 1, - "ɒ" - ], - [ - 11377, - 2 - ], - [ - 11378, - 1, - "ⱳ" - ], - [ - 11379, - 2 - ], - [ - 11380, - 2 - ], - [ - 11381, - 1, - "ⱶ" - ], - [ - [ - 11382, - 11383 - ], - 2 - ], - [ - [ - 11384, - 11387 - ], - 2 - ], - [ - 11388, - 1, - "j" - ], - [ - 11389, - 1, - "v" - ], - [ - 11390, - 1, - "ȿ" - ], - [ - 11391, - 1, - "ɀ" - ], - [ - 11392, - 1, - "ⲁ" - ], - [ - 11393, - 2 - ], - [ - 11394, - 1, - "ⲃ" - ], - [ - 11395, - 2 - ], - [ - 11396, - 1, - "ⲅ" - ], - [ - 11397, - 2 - ], - [ - 11398, - 1, - "ⲇ" - ], - [ - 11399, - 2 - ], - [ - 11400, - 1, - "ⲉ" - ], - [ - 11401, - 2 - ], - [ - 11402, - 1, - "ⲋ" - ], - [ - 11403, - 2 - ], - [ - 11404, - 1, - "ⲍ" - ], - [ - 11405, - 2 - ], - [ - 11406, - 1, - "ⲏ" - ], - [ - 11407, - 2 - ], - [ - 11408, - 1, - "ⲑ" - ], - [ - 11409, - 2 - ], - [ - 11410, - 1, - "ⲓ" - ], - [ - 11411, - 2 - ], - [ - 11412, - 1, - "ⲕ" - ], - [ - 11413, - 2 - ], - [ - 11414, - 1, - "ⲗ" - ], - [ - 11415, - 2 - ], - [ - 11416, - 1, - "ⲙ" - ], - [ - 11417, - 2 - ], - [ - 11418, - 1, - "ⲛ" - ], - [ - 11419, - 2 - ], - [ - 11420, - 1, - "ⲝ" - ], - [ - 11421, - 2 - ], - [ - 11422, - 1, - "ⲟ" - ], - [ - 11423, - 2 - ], - [ - 11424, - 1, - "ⲡ" - ], - [ - 11425, - 2 - ], - [ - 11426, - 1, - "ⲣ" - ], - [ - 11427, - 2 - ], - [ - 11428, - 1, - "ⲥ" - ], - [ - 11429, - 2 - ], - [ - 11430, - 1, - "ⲧ" - ], - [ - 11431, - 2 - ], - [ - 11432, - 1, - "ⲩ" - ], - [ - 11433, - 2 - ], - [ - 11434, - 1, - "ⲫ" - ], - [ - 11435, - 2 - ], - [ - 11436, - 1, - "ⲭ" - ], - [ - 11437, - 2 - ], - [ - 11438, - 1, - "ⲯ" - ], - [ - 11439, - 2 - ], - [ - 11440, - 1, - "ⲱ" - ], - [ - 11441, - 2 - ], - [ - 11442, - 1, - "ⲳ" - ], - [ - 11443, - 2 - ], - [ - 11444, - 1, - "ⲵ" - ], - [ - 11445, - 2 - ], - [ - 11446, - 1, - "ⲷ" - ], - [ - 11447, - 2 - ], - [ - 11448, - 1, - "ⲹ" - ], - [ - 11449, - 2 - ], - [ - 11450, - 1, - "ⲻ" - ], - [ - 11451, - 2 - ], - [ - 11452, - 1, - "ⲽ" - ], - [ - 11453, - 2 - ], - [ - 11454, - 1, - "ⲿ" - ], - [ - 11455, - 2 - ], - [ - 11456, - 1, - "ⳁ" - ], - [ - 11457, - 2 - ], - [ - 11458, - 1, - "ⳃ" - ], - [ - 11459, - 2 - ], - [ - 11460, - 1, - "ⳅ" - ], - [ - 11461, - 2 - ], - [ - 11462, - 1, - "ⳇ" - ], - [ - 11463, - 2 - ], - [ - 11464, - 1, - "ⳉ" - ], - [ - 11465, - 2 - ], - [ - 11466, - 1, - "ⳋ" - ], - [ - 11467, - 2 - ], - [ - 11468, - 1, - "ⳍ" - ], - [ - 11469, - 2 - ], - [ - 11470, - 1, - "ⳏ" - ], - [ - 11471, - 2 - ], - [ - 11472, - 1, - "ⳑ" - ], - [ - 11473, - 2 - ], - [ - 11474, - 1, - "ⳓ" - ], - [ - 11475, - 2 - ], - [ - 11476, - 1, - "ⳕ" - ], - [ - 11477, - 2 - ], - [ - 11478, - 1, - "ⳗ" - ], - [ - 11479, - 2 - ], - [ - 11480, - 1, - "ⳙ" - ], - [ - 11481, - 2 - ], - [ - 11482, - 1, - "ⳛ" - ], - [ - 11483, - 2 - ], - [ - 11484, - 1, - "ⳝ" - ], - [ - 11485, - 2 - ], - [ - 11486, - 1, - "ⳟ" - ], - [ - 11487, - 2 - ], - [ - 11488, - 1, - "ⳡ" - ], - [ - 11489, - 2 - ], - [ - 11490, - 1, - "ⳣ" - ], - [ - [ - 11491, - 11492 - ], - 2 - ], - [ - [ - 11493, - 11498 - ], - 2 - ], - [ - 11499, - 1, - "ⳬ" - ], - [ - 11500, - 2 - ], - [ - 11501, - 1, - "ⳮ" - ], - [ - [ - 11502, - 11505 - ], - 2 - ], - [ - 11506, - 1, - "ⳳ" - ], - [ - 11507, - 2 - ], - [ - [ - 11508, - 11512 - ], - 3 - ], - [ - [ - 11513, - 11519 - ], - 2 - ], - [ - [ - 11520, - 11557 - ], - 2 - ], - [ - 11558, - 3 - ], - [ - 11559, - 2 - ], - [ - [ - 11560, - 11564 - ], - 3 - ], - [ - 11565, - 2 - ], - [ - [ - 11566, - 11567 - ], - 3 - ], - [ - [ - 11568, - 11621 - ], - 2 - ], - [ - [ - 11622, - 11623 - ], - 2 - ], - [ - [ - 11624, - 11630 - ], - 3 - ], - [ - 11631, - 1, - "ⵡ" - ], - [ - 11632, - 2 - ], - [ - [ - 11633, - 11646 - ], - 3 - ], - [ - 11647, - 2 - ], - [ - [ - 11648, - 11670 - ], - 2 - ], - [ - [ - 11671, - 11679 - ], - 3 - ], - [ - [ - 11680, - 11686 - ], - 2 - ], - [ - 11687, - 3 - ], - [ - [ - 11688, - 11694 - ], - 2 - ], - [ - 11695, - 3 - ], - [ - [ - 11696, - 11702 - ], - 2 - ], - [ - 11703, - 3 - ], - [ - [ - 11704, - 11710 - ], - 2 - ], - [ - 11711, - 3 - ], - [ - [ - 11712, - 11718 - ], - 2 - ], - [ - 11719, - 3 - ], - [ - [ - 11720, - 11726 - ], - 2 - ], - [ - 11727, - 3 - ], - [ - [ - 11728, - 11734 - ], - 2 - ], - [ - 11735, - 3 - ], - [ - [ - 11736, - 11742 - ], - 2 - ], - [ - 11743, - 3 - ], - [ - [ - 11744, - 11775 - ], - 2 - ], - [ - [ - 11776, - 11799 - ], - 2 - ], - [ - [ - 11800, - 11803 - ], - 2 - ], - [ - [ - 11804, - 11805 - ], - 2 - ], - [ - [ - 11806, - 11822 - ], - 2 - ], - [ - 11823, - 2 - ], - [ - 11824, - 2 - ], - [ - 11825, - 2 - ], - [ - [ - 11826, - 11835 - ], - 2 - ], - [ - [ - 11836, - 11842 - ], - 2 - ], - [ - [ - 11843, - 11844 - ], - 2 - ], - [ - [ - 11845, - 11849 - ], - 2 - ], - [ - [ - 11850, - 11854 - ], - 2 - ], - [ - 11855, - 2 - ], - [ - [ - 11856, - 11858 - ], - 2 - ], - [ - [ - 11859, - 11869 - ], - 2 - ], - [ - [ - 11870, - 11903 - ], - 3 - ], - [ - [ - 11904, - 11929 - ], - 2 - ], - [ - 11930, - 3 - ], - [ - [ - 11931, - 11934 - ], - 2 - ], - [ - 11935, - 1, - "母" - ], - [ - [ - 11936, - 12018 - ], - 2 - ], - [ - 12019, - 1, - "龟" - ], - [ - [ - 12020, - 12031 - ], - 3 - ], - [ - 12032, - 1, - "一" - ], - [ - 12033, - 1, - "丨" - ], - [ - 12034, - 1, - "丶" - ], - [ - 12035, - 1, - "丿" - ], - [ - 12036, - 1, - "乙" - ], - [ - 12037, - 1, - "亅" - ], - [ - 12038, - 1, - "二" - ], - [ - 12039, - 1, - "亠" - ], - [ - 12040, - 1, - "人" - ], - [ - 12041, - 1, - "儿" - ], - [ - 12042, - 1, - "入" - ], - [ - 12043, - 1, - "八" - ], - [ - 12044, - 1, - "冂" - ], - [ - 12045, - 1, - "冖" - ], - [ - 12046, - 1, - "冫" - ], - [ - 12047, - 1, - "几" - ], - [ - 12048, - 1, - "凵" - ], - [ - 12049, - 1, - "刀" - ], - [ - 12050, - 1, - "力" - ], - [ - 12051, - 1, - "勹" - ], - [ - 12052, - 1, - "匕" - ], - [ - 12053, - 1, - "匚" - ], - [ - 12054, - 1, - "匸" - ], - [ - 12055, - 1, - "十" - ], - [ - 12056, - 1, - "卜" - ], - [ - 12057, - 1, - "卩" - ], - [ - 12058, - 1, - "厂" - ], - [ - 12059, - 1, - "厶" - ], - [ - 12060, - 1, - "又" - ], - [ - 12061, - 1, - "口" - ], - [ - 12062, - 1, - "囗" - ], - [ - 12063, - 1, - "土" - ], - [ - 12064, - 1, - "士" - ], - [ - 12065, - 1, - "夂" - ], - [ - 12066, - 1, - "夊" - ], - [ - 12067, - 1, - "夕" - ], - [ - 12068, - 1, - "大" - ], - [ - 12069, - 1, - "女" - ], - [ - 12070, - 1, - "子" - ], - [ - 12071, - 1, - "宀" - ], - [ - 12072, - 1, - "寸" - ], - [ - 12073, - 1, - "小" - ], - [ - 12074, - 1, - "尢" - ], - [ - 12075, - 1, - "尸" - ], - [ - 12076, - 1, - "屮" - ], - [ - 12077, - 1, - "山" - ], - [ - 12078, - 1, - "巛" - ], - [ - 12079, - 1, - "工" - ], - [ - 12080, - 1, - "己" - ], - [ - 12081, - 1, - "巾" - ], - [ - 12082, - 1, - "干" - ], - [ - 12083, - 1, - "幺" - ], - [ - 12084, - 1, - "广" - ], - [ - 12085, - 1, - "廴" - ], - [ - 12086, - 1, - "廾" - ], - [ - 12087, - 1, - "弋" - ], - [ - 12088, - 1, - "弓" - ], - [ - 12089, - 1, - "彐" - ], - [ - 12090, - 1, - "彡" - ], - [ - 12091, - 1, - "彳" - ], - [ - 12092, - 1, - "心" - ], - [ - 12093, - 1, - "戈" - ], - [ - 12094, - 1, - "戶" - ], - [ - 12095, - 1, - "手" - ], - [ - 12096, - 1, - "支" - ], - [ - 12097, - 1, - "攴" - ], - [ - 12098, - 1, - "文" - ], - [ - 12099, - 1, - "斗" - ], - [ - 12100, - 1, - "斤" - ], - [ - 12101, - 1, - "方" - ], - [ - 12102, - 1, - "无" - ], - [ - 12103, - 1, - "日" - ], - [ - 12104, - 1, - "曰" - ], - [ - 12105, - 1, - "月" - ], - [ - 12106, - 1, - "木" - ], - [ - 12107, - 1, - "欠" - ], - [ - 12108, - 1, - "止" - ], - [ - 12109, - 1, - "歹" - ], - [ - 12110, - 1, - "殳" - ], - [ - 12111, - 1, - "毋" - ], - [ - 12112, - 1, - "比" - ], - [ - 12113, - 1, - "毛" - ], - [ - 12114, - 1, - "氏" - ], - [ - 12115, - 1, - "气" - ], - [ - 12116, - 1, - "水" - ], - [ - 12117, - 1, - "火" - ], - [ - 12118, - 1, - "爪" - ], - [ - 12119, - 1, - "父" - ], - [ - 12120, - 1, - "爻" - ], - [ - 12121, - 1, - "爿" - ], - [ - 12122, - 1, - "片" - ], - [ - 12123, - 1, - "牙" - ], - [ - 12124, - 1, - "牛" - ], - [ - 12125, - 1, - "犬" - ], - [ - 12126, - 1, - "玄" - ], - [ - 12127, - 1, - "玉" - ], - [ - 12128, - 1, - "瓜" - ], - [ - 12129, - 1, - "瓦" - ], - [ - 12130, - 1, - "甘" - ], - [ - 12131, - 1, - "生" - ], - [ - 12132, - 1, - "用" - ], - [ - 12133, - 1, - "田" - ], - [ - 12134, - 1, - "疋" - ], - [ - 12135, - 1, - "疒" - ], - [ - 12136, - 1, - "癶" - ], - [ - 12137, - 1, - "白" - ], - [ - 12138, - 1, - "皮" - ], - [ - 12139, - 1, - "皿" - ], - [ - 12140, - 1, - "目" - ], - [ - 12141, - 1, - "矛" - ], - [ - 12142, - 1, - "矢" - ], - [ - 12143, - 1, - "石" - ], - [ - 12144, - 1, - "示" - ], - [ - 12145, - 1, - "禸" - ], - [ - 12146, - 1, - "禾" - ], - [ - 12147, - 1, - "穴" - ], - [ - 12148, - 1, - "立" - ], - [ - 12149, - 1, - "竹" - ], - [ - 12150, - 1, - "米" - ], - [ - 12151, - 1, - "糸" - ], - [ - 12152, - 1, - "缶" - ], - [ - 12153, - 1, - "网" - ], - [ - 12154, - 1, - "羊" - ], - [ - 12155, - 1, - "羽" - ], - [ - 12156, - 1, - "老" - ], - [ - 12157, - 1, - "而" - ], - [ - 12158, - 1, - "耒" - ], - [ - 12159, - 1, - "耳" - ], - [ - 12160, - 1, - "聿" - ], - [ - 12161, - 1, - "肉" - ], - [ - 12162, - 1, - "臣" - ], - [ - 12163, - 1, - "自" - ], - [ - 12164, - 1, - "至" - ], - [ - 12165, - 1, - "臼" - ], - [ - 12166, - 1, - "舌" - ], - [ - 12167, - 1, - "舛" - ], - [ - 12168, - 1, - "舟" - ], - [ - 12169, - 1, - "艮" - ], - [ - 12170, - 1, - "色" - ], - [ - 12171, - 1, - "艸" - ], - [ - 12172, - 1, - "虍" - ], - [ - 12173, - 1, - "虫" - ], - [ - 12174, - 1, - "血" - ], - [ - 12175, - 1, - "行" - ], - [ - 12176, - 1, - "衣" - ], - [ - 12177, - 1, - "襾" - ], - [ - 12178, - 1, - "見" - ], - [ - 12179, - 1, - "角" - ], - [ - 12180, - 1, - "言" - ], - [ - 12181, - 1, - "谷" - ], - [ - 12182, - 1, - "豆" - ], - [ - 12183, - 1, - "豕" - ], - [ - 12184, - 1, - "豸" - ], - [ - 12185, - 1, - "貝" - ], - [ - 12186, - 1, - "赤" - ], - [ - 12187, - 1, - "走" - ], - [ - 12188, - 1, - "足" - ], - [ - 12189, - 1, - "身" - ], - [ - 12190, - 1, - "車" - ], - [ - 12191, - 1, - "辛" - ], - [ - 12192, - 1, - "辰" - ], - [ - 12193, - 1, - "辵" - ], - [ - 12194, - 1, - "邑" - ], - [ - 12195, - 1, - "酉" - ], - [ - 12196, - 1, - "釆" - ], - [ - 12197, - 1, - "里" - ], - [ - 12198, - 1, - "金" - ], - [ - 12199, - 1, - "長" - ], - [ - 12200, - 1, - "門" - ], - [ - 12201, - 1, - "阜" - ], - [ - 12202, - 1, - "隶" - ], - [ - 12203, - 1, - "隹" - ], - [ - 12204, - 1, - "雨" - ], - [ - 12205, - 1, - "靑" - ], - [ - 12206, - 1, - "非" - ], - [ - 12207, - 1, - "面" - ], - [ - 12208, - 1, - "革" - ], - [ - 12209, - 1, - "韋" - ], - [ - 12210, - 1, - "韭" - ], - [ - 12211, - 1, - "音" - ], - [ - 12212, - 1, - "頁" - ], - [ - 12213, - 1, - "風" - ], - [ - 12214, - 1, - "飛" - ], - [ - 12215, - 1, - "食" - ], - [ - 12216, - 1, - "首" - ], - [ - 12217, - 1, - "香" - ], - [ - 12218, - 1, - "馬" - ], - [ - 12219, - 1, - "骨" - ], - [ - 12220, - 1, - "高" - ], - [ - 12221, - 1, - "髟" - ], - [ - 12222, - 1, - "鬥" - ], - [ - 12223, - 1, - "鬯" - ], - [ - 12224, - 1, - "鬲" - ], - [ - 12225, - 1, - "鬼" - ], - [ - 12226, - 1, - "魚" - ], - [ - 12227, - 1, - "鳥" - ], - [ - 12228, - 1, - "鹵" - ], - [ - 12229, - 1, - "鹿" - ], - [ - 12230, - 1, - "麥" - ], - [ - 12231, - 1, - "麻" - ], - [ - 12232, - 1, - "黃" - ], - [ - 12233, - 1, - "黍" - ], - [ - 12234, - 1, - "黑" - ], - [ - 12235, - 1, - "黹" - ], - [ - 12236, - 1, - "黽" - ], - [ - 12237, - 1, - "鼎" - ], - [ - 12238, - 1, - "鼓" - ], - [ - 12239, - 1, - "鼠" - ], - [ - 12240, - 1, - "鼻" - ], - [ - 12241, - 1, - "齊" - ], - [ - 12242, - 1, - "齒" - ], - [ - 12243, - 1, - "龍" - ], - [ - 12244, - 1, - "龜" - ], - [ - 12245, - 1, - "龠" - ], - [ - [ - 12246, - 12271 - ], - 3 - ], - [ - [ - 12272, - 12283 - ], - 3 - ], - [ - [ - 12284, - 12287 - ], - 3 - ], - [ - 12288, - 5, - " " - ], - [ - 12289, - 2 - ], - [ - 12290, - 1, - "." - ], - [ - [ - 12291, - 12292 - ], - 2 - ], - [ - [ - 12293, - 12295 - ], - 2 - ], - [ - [ - 12296, - 12329 - ], - 2 - ], - [ - [ - 12330, - 12333 - ], - 2 - ], - [ - [ - 12334, - 12341 - ], - 2 - ], - [ - 12342, - 1, - "〒" - ], - [ - 12343, - 2 - ], - [ - 12344, - 1, - "十" - ], - [ - 12345, - 1, - "卄" - ], - [ - 12346, - 1, - "卅" - ], - [ - 12347, - 2 - ], - [ - 12348, - 2 - ], - [ - 12349, - 2 - ], - [ - 12350, - 2 - ], - [ - 12351, - 2 - ], - [ - 12352, - 3 - ], - [ - [ - 12353, - 12436 - ], - 2 - ], - [ - [ - 12437, - 12438 - ], - 2 - ], - [ - [ - 12439, - 12440 - ], - 3 - ], - [ - [ - 12441, - 12442 - ], - 2 - ], - [ - 12443, - 5, - " ゙" - ], - [ - 12444, - 5, - " ゚" - ], - [ - [ - 12445, - 12446 - ], - 2 - ], - [ - 12447, - 1, - "より" - ], - [ - 12448, - 2 - ], - [ - [ - 12449, - 12542 - ], - 2 - ], - [ - 12543, - 1, - "コト" - ], - [ - [ - 12544, - 12548 - ], - 3 - ], - [ - [ - 12549, - 12588 - ], - 2 - ], - [ - 12589, - 2 - ], - [ - 12590, - 2 - ], - [ - 12591, - 2 - ], - [ - 12592, - 3 - ], - [ - 12593, - 1, - "ᄀ" - ], - [ - 12594, - 1, - "ᄁ" - ], - [ - 12595, - 1, - "ᆪ" - ], - [ - 12596, - 1, - "ᄂ" - ], - [ - 12597, - 1, - "ᆬ" - ], - [ - 12598, - 1, - "ᆭ" - ], - [ - 12599, - 1, - "ᄃ" - ], - [ - 12600, - 1, - "ᄄ" - ], - [ - 12601, - 1, - "ᄅ" - ], - [ - 12602, - 1, - "ᆰ" - ], - [ - 12603, - 1, - "ᆱ" - ], - [ - 12604, - 1, - "ᆲ" - ], - [ - 12605, - 1, - "ᆳ" - ], - [ - 12606, - 1, - "ᆴ" - ], - [ - 12607, - 1, - "ᆵ" - ], - [ - 12608, - 1, - "ᄚ" - ], - [ - 12609, - 1, - "ᄆ" - ], - [ - 12610, - 1, - "ᄇ" - ], - [ - 12611, - 1, - "ᄈ" - ], - [ - 12612, - 1, - "ᄡ" - ], - [ - 12613, - 1, - "ᄉ" - ], - [ - 12614, - 1, - "ᄊ" - ], - [ - 12615, - 1, - "ᄋ" - ], - [ - 12616, - 1, - "ᄌ" - ], - [ - 12617, - 1, - "ᄍ" - ], - [ - 12618, - 1, - "ᄎ" - ], - [ - 12619, - 1, - "ᄏ" - ], - [ - 12620, - 1, - "ᄐ" - ], - [ - 12621, - 1, - "ᄑ" - ], - [ - 12622, - 1, - "ᄒ" - ], - [ - 12623, - 1, - "ᅡ" - ], - [ - 12624, - 1, - "ᅢ" - ], - [ - 12625, - 1, - "ᅣ" - ], - [ - 12626, - 1, - "ᅤ" - ], - [ - 12627, - 1, - "ᅥ" - ], - [ - 12628, - 1, - "ᅦ" - ], - [ - 12629, - 1, - "ᅧ" - ], - [ - 12630, - 1, - "ᅨ" - ], - [ - 12631, - 1, - "ᅩ" - ], - [ - 12632, - 1, - "ᅪ" - ], - [ - 12633, - 1, - "ᅫ" - ], - [ - 12634, - 1, - "ᅬ" - ], - [ - 12635, - 1, - "ᅭ" - ], - [ - 12636, - 1, - "ᅮ" - ], - [ - 12637, - 1, - "ᅯ" - ], - [ - 12638, - 1, - "ᅰ" - ], - [ - 12639, - 1, - "ᅱ" - ], - [ - 12640, - 1, - "ᅲ" - ], - [ - 12641, - 1, - "ᅳ" - ], - [ - 12642, - 1, - "ᅴ" - ], - [ - 12643, - 1, - "ᅵ" - ], - [ - 12644, - 3 - ], - [ - 12645, - 1, - "ᄔ" - ], - [ - 12646, - 1, - "ᄕ" - ], - [ - 12647, - 1, - "ᇇ" - ], - [ - 12648, - 1, - "ᇈ" - ], - [ - 12649, - 1, - "ᇌ" - ], - [ - 12650, - 1, - "ᇎ" - ], - [ - 12651, - 1, - "ᇓ" - ], - [ - 12652, - 1, - "ᇗ" - ], - [ - 12653, - 1, - "ᇙ" - ], - [ - 12654, - 1, - "ᄜ" - ], - [ - 12655, - 1, - "ᇝ" - ], - [ - 12656, - 1, - "ᇟ" - ], - [ - 12657, - 1, - "ᄝ" - ], - [ - 12658, - 1, - "ᄞ" - ], - [ - 12659, - 1, - "ᄠ" - ], - [ - 12660, - 1, - "ᄢ" - ], - [ - 12661, - 1, - "ᄣ" - ], - [ - 12662, - 1, - "ᄧ" - ], - [ - 12663, - 1, - "ᄩ" - ], - [ - 12664, - 1, - "ᄫ" - ], - [ - 12665, - 1, - "ᄬ" - ], - [ - 12666, - 1, - "ᄭ" - ], - [ - 12667, - 1, - "ᄮ" - ], - [ - 12668, - 1, - "ᄯ" - ], - [ - 12669, - 1, - "ᄲ" - ], - [ - 12670, - 1, - "ᄶ" - ], - [ - 12671, - 1, - "ᅀ" - ], - [ - 12672, - 1, - "ᅇ" - ], - [ - 12673, - 1, - "ᅌ" - ], - [ - 12674, - 1, - "ᇱ" - ], - [ - 12675, - 1, - "ᇲ" - ], - [ - 12676, - 1, - "ᅗ" - ], - [ - 12677, - 1, - "ᅘ" - ], - [ - 12678, - 1, - "ᅙ" - ], - [ - 12679, - 1, - "ᆄ" - ], - [ - 12680, - 1, - "ᆅ" - ], - [ - 12681, - 1, - "ᆈ" - ], - [ - 12682, - 1, - "ᆑ" - ], - [ - 12683, - 1, - "ᆒ" - ], - [ - 12684, - 1, - "ᆔ" - ], - [ - 12685, - 1, - "ᆞ" - ], - [ - 12686, - 1, - "ᆡ" - ], - [ - 12687, - 3 - ], - [ - [ - 12688, - 12689 - ], - 2 - ], - [ - 12690, - 1, - "一" - ], - [ - 12691, - 1, - "二" - ], - [ - 12692, - 1, - "三" - ], - [ - 12693, - 1, - "四" - ], - [ - 12694, - 1, - "上" - ], - [ - 12695, - 1, - "中" - ], - [ - 12696, - 1, - "下" - ], - [ - 12697, - 1, - "甲" - ], - [ - 12698, - 1, - "乙" - ], - [ - 12699, - 1, - "丙" - ], - [ - 12700, - 1, - "丁" - ], - [ - 12701, - 1, - "天" - ], - [ - 12702, - 1, - "地" - ], - [ - 12703, - 1, - "人" - ], - [ - [ - 12704, - 12727 - ], - 2 - ], - [ - [ - 12728, - 12730 - ], - 2 - ], - [ - [ - 12731, - 12735 - ], - 2 - ], - [ - [ - 12736, - 12751 - ], - 2 - ], - [ - [ - 12752, - 12771 - ], - 2 - ], - [ - [ - 12772, - 12783 - ], - 3 - ], - [ - [ - 12784, - 12799 - ], - 2 - ], - [ - 12800, - 5, - "(ᄀ)" - ], - [ - 12801, - 5, - "(ᄂ)" - ], - [ - 12802, - 5, - "(ᄃ)" - ], - [ - 12803, - 5, - "(ᄅ)" - ], - [ - 12804, - 5, - "(ᄆ)" - ], - [ - 12805, - 5, - "(ᄇ)" - ], - [ - 12806, - 5, - "(ᄉ)" - ], - [ - 12807, - 5, - "(ᄋ)" - ], - [ - 12808, - 5, - "(ᄌ)" - ], - [ - 12809, - 5, - "(ᄎ)" - ], - [ - 12810, - 5, - "(ᄏ)" - ], - [ - 12811, - 5, - "(ᄐ)" - ], - [ - 12812, - 5, - "(ᄑ)" - ], - [ - 12813, - 5, - "(ᄒ)" - ], - [ - 12814, - 5, - "(가)" - ], - [ - 12815, - 5, - "(나)" - ], - [ - 12816, - 5, - "(다)" - ], - [ - 12817, - 5, - "(라)" - ], - [ - 12818, - 5, - "(마)" - ], - [ - 12819, - 5, - "(바)" - ], - [ - 12820, - 5, - "(사)" - ], - [ - 12821, - 5, - "(아)" - ], - [ - 12822, - 5, - "(자)" - ], - [ - 12823, - 5, - "(차)" - ], - [ - 12824, - 5, - "(카)" - ], - [ - 12825, - 5, - "(타)" - ], - [ - 12826, - 5, - "(파)" - ], - [ - 12827, - 5, - "(하)" - ], - [ - 12828, - 5, - "(주)" - ], - [ - 12829, - 5, - "(오전)" - ], - [ - 12830, - 5, - "(오후)" - ], - [ - 12831, - 3 - ], - [ - 12832, - 5, - "(一)" - ], - [ - 12833, - 5, - "(二)" - ], - [ - 12834, - 5, - "(三)" - ], - [ - 12835, - 5, - "(四)" - ], - [ - 12836, - 5, - "(五)" - ], - [ - 12837, - 5, - "(六)" - ], - [ - 12838, - 5, - "(七)" - ], - [ - 12839, - 5, - "(八)" - ], - [ - 12840, - 5, - "(九)" - ], - [ - 12841, - 5, - "(十)" - ], - [ - 12842, - 5, - "(月)" - ], - [ - 12843, - 5, - "(火)" - ], - [ - 12844, - 5, - "(水)" - ], - [ - 12845, - 5, - "(木)" - ], - [ - 12846, - 5, - "(金)" - ], - [ - 12847, - 5, - "(土)" - ], - [ - 12848, - 5, - "(日)" - ], - [ - 12849, - 5, - "(株)" - ], - [ - 12850, - 5, - "(有)" - ], - [ - 12851, - 5, - "(社)" - ], - [ - 12852, - 5, - "(名)" - ], - [ - 12853, - 5, - "(特)" - ], - [ - 12854, - 5, - "(財)" - ], - [ - 12855, - 5, - "(祝)" - ], - [ - 12856, - 5, - "(労)" - ], - [ - 12857, - 5, - "(代)" - ], - [ - 12858, - 5, - "(呼)" - ], - [ - 12859, - 5, - "(学)" - ], - [ - 12860, - 5, - "(監)" - ], - [ - 12861, - 5, - "(企)" - ], - [ - 12862, - 5, - "(資)" - ], - [ - 12863, - 5, - "(協)" - ], - [ - 12864, - 5, - "(祭)" - ], - [ - 12865, - 5, - "(休)" - ], - [ - 12866, - 5, - "(自)" - ], - [ - 12867, - 5, - "(至)" - ], - [ - 12868, - 1, - "問" - ], - [ - 12869, - 1, - "幼" - ], - [ - 12870, - 1, - "文" - ], - [ - 12871, - 1, - "箏" - ], - [ - [ - 12872, - 12879 - ], - 2 - ], - [ - 12880, - 1, - "pte" - ], - [ - 12881, - 1, - "21" - ], - [ - 12882, - 1, - "22" - ], - [ - 12883, - 1, - "23" - ], - [ - 12884, - 1, - "24" - ], - [ - 12885, - 1, - "25" - ], - [ - 12886, - 1, - "26" - ], - [ - 12887, - 1, - "27" - ], - [ - 12888, - 1, - "28" - ], - [ - 12889, - 1, - "29" - ], - [ - 12890, - 1, - "30" - ], - [ - 12891, - 1, - "31" - ], - [ - 12892, - 1, - "32" - ], - [ - 12893, - 1, - "33" - ], - [ - 12894, - 1, - "34" - ], - [ - 12895, - 1, - "35" - ], - [ - 12896, - 1, - "ᄀ" - ], - [ - 12897, - 1, - "ᄂ" - ], - [ - 12898, - 1, - "ᄃ" - ], - [ - 12899, - 1, - "ᄅ" - ], - [ - 12900, - 1, - "ᄆ" - ], - [ - 12901, - 1, - "ᄇ" - ], - [ - 12902, - 1, - "ᄉ" - ], - [ - 12903, - 1, - "ᄋ" - ], - [ - 12904, - 1, - "ᄌ" - ], - [ - 12905, - 1, - "ᄎ" - ], - [ - 12906, - 1, - "ᄏ" - ], - [ - 12907, - 1, - "ᄐ" - ], - [ - 12908, - 1, - "ᄑ" - ], - [ - 12909, - 1, - "ᄒ" - ], - [ - 12910, - 1, - "가" - ], - [ - 12911, - 1, - "나" - ], - [ - 12912, - 1, - "다" - ], - [ - 12913, - 1, - "라" - ], - [ - 12914, - 1, - "마" - ], - [ - 12915, - 1, - "바" - ], - [ - 12916, - 1, - "사" - ], - [ - 12917, - 1, - "아" - ], - [ - 12918, - 1, - "자" - ], - [ - 12919, - 1, - "차" - ], - [ - 12920, - 1, - "카" - ], - [ - 12921, - 1, - "타" - ], - [ - 12922, - 1, - "파" - ], - [ - 12923, - 1, - "하" - ], - [ - 12924, - 1, - "참고" - ], - [ - 12925, - 1, - "주의" - ], - [ - 12926, - 1, - "우" - ], - [ - 12927, - 2 - ], - [ - 12928, - 1, - "一" - ], - [ - 12929, - 1, - "二" - ], - [ - 12930, - 1, - "三" - ], - [ - 12931, - 1, - "四" - ], - [ - 12932, - 1, - "五" - ], - [ - 12933, - 1, - "六" - ], - [ - 12934, - 1, - "七" - ], - [ - 12935, - 1, - "八" - ], - [ - 12936, - 1, - "九" - ], - [ - 12937, - 1, - "十" - ], - [ - 12938, - 1, - "月" - ], - [ - 12939, - 1, - "火" - ], - [ - 12940, - 1, - "水" - ], - [ - 12941, - 1, - "木" - ], - [ - 12942, - 1, - "金" - ], - [ - 12943, - 1, - "土" - ], - [ - 12944, - 1, - "日" - ], - [ - 12945, - 1, - "株" - ], - [ - 12946, - 1, - "有" - ], - [ - 12947, - 1, - "社" - ], - [ - 12948, - 1, - "名" - ], - [ - 12949, - 1, - "特" - ], - [ - 12950, - 1, - "財" - ], - [ - 12951, - 1, - "祝" - ], - [ - 12952, - 1, - "労" - ], - [ - 12953, - 1, - "秘" - ], - [ - 12954, - 1, - "男" - ], - [ - 12955, - 1, - "女" - ], - [ - 12956, - 1, - "適" - ], - [ - 12957, - 1, - "優" - ], - [ - 12958, - 1, - "印" - ], - [ - 12959, - 1, - "注" - ], - [ - 12960, - 1, - "項" - ], - [ - 12961, - 1, - "休" - ], - [ - 12962, - 1, - "写" - ], - [ - 12963, - 1, - "正" - ], - [ - 12964, - 1, - "上" - ], - [ - 12965, - 1, - "中" - ], - [ - 12966, - 1, - "下" - ], - [ - 12967, - 1, - "左" - ], - [ - 12968, - 1, - "右" - ], - [ - 12969, - 1, - "医" - ], - [ - 12970, - 1, - "宗" - ], - [ - 12971, - 1, - "学" - ], - [ - 12972, - 1, - "監" - ], - [ - 12973, - 1, - "企" - ], - [ - 12974, - 1, - "資" - ], - [ - 12975, - 1, - "協" - ], - [ - 12976, - 1, - "夜" - ], - [ - 12977, - 1, - "36" - ], - [ - 12978, - 1, - "37" - ], - [ - 12979, - 1, - "38" - ], - [ - 12980, - 1, - "39" - ], - [ - 12981, - 1, - "40" - ], - [ - 12982, - 1, - "41" - ], - [ - 12983, - 1, - "42" - ], - [ - 12984, - 1, - "43" - ], - [ - 12985, - 1, - "44" - ], - [ - 12986, - 1, - "45" - ], - [ - 12987, - 1, - "46" - ], - [ - 12988, - 1, - "47" - ], - [ - 12989, - 1, - "48" - ], - [ - 12990, - 1, - "49" - ], - [ - 12991, - 1, - "50" - ], - [ - 12992, - 1, - "1月" - ], - [ - 12993, - 1, - "2月" - ], - [ - 12994, - 1, - "3月" - ], - [ - 12995, - 1, - "4月" - ], - [ - 12996, - 1, - "5月" - ], - [ - 12997, - 1, - "6月" - ], - [ - 12998, - 1, - "7月" - ], - [ - 12999, - 1, - "8月" - ], - [ - 13000, - 1, - "9月" - ], - [ - 13001, - 1, - "10月" - ], - [ - 13002, - 1, - "11月" - ], - [ - 13003, - 1, - "12月" - ], - [ - 13004, - 1, - "hg" - ], - [ - 13005, - 1, - "erg" - ], - [ - 13006, - 1, - "ev" - ], - [ - 13007, - 1, - "ltd" - ], - [ - 13008, - 1, - "ア" - ], - [ - 13009, - 1, - "イ" - ], - [ - 13010, - 1, - "ウ" - ], - [ - 13011, - 1, - "エ" - ], - [ - 13012, - 1, - "オ" - ], - [ - 13013, - 1, - "カ" - ], - [ - 13014, - 1, - "キ" - ], - [ - 13015, - 1, - "ク" - ], - [ - 13016, - 1, - "ケ" - ], - [ - 13017, - 1, - "コ" - ], - [ - 13018, - 1, - "サ" - ], - [ - 13019, - 1, - "シ" - ], - [ - 13020, - 1, - "ス" - ], - [ - 13021, - 1, - "セ" - ], - [ - 13022, - 1, - "ソ" - ], - [ - 13023, - 1, - "タ" - ], - [ - 13024, - 1, - "チ" - ], - [ - 13025, - 1, - "ツ" - ], - [ - 13026, - 1, - "テ" - ], - [ - 13027, - 1, - "ト" - ], - [ - 13028, - 1, - "ナ" - ], - [ - 13029, - 1, - "ニ" - ], - [ - 13030, - 1, - "ヌ" - ], - [ - 13031, - 1, - "ネ" - ], - [ - 13032, - 1, - "ノ" - ], - [ - 13033, - 1, - "ハ" - ], - [ - 13034, - 1, - "ヒ" - ], - [ - 13035, - 1, - "フ" - ], - [ - 13036, - 1, - "ヘ" - ], - [ - 13037, - 1, - "ホ" - ], - [ - 13038, - 1, - "マ" - ], - [ - 13039, - 1, - "ミ" - ], - [ - 13040, - 1, - "ム" - ], - [ - 13041, - 1, - "メ" - ], - [ - 13042, - 1, - "モ" - ], - [ - 13043, - 1, - "ヤ" - ], - [ - 13044, - 1, - "ユ" - ], - [ - 13045, - 1, - "ヨ" - ], - [ - 13046, - 1, - "ラ" - ], - [ - 13047, - 1, - "リ" - ], - [ - 13048, - 1, - "ル" - ], - [ - 13049, - 1, - "レ" - ], - [ - 13050, - 1, - "ロ" - ], - [ - 13051, - 1, - "ワ" - ], - [ - 13052, - 1, - "ヰ" - ], - [ - 13053, - 1, - "ヱ" - ], - [ - 13054, - 1, - "ヲ" - ], - [ - 13055, - 1, - "令和" - ], - [ - 13056, - 1, - "アパート" - ], - [ - 13057, - 1, - "アルファ" - ], - [ - 13058, - 1, - "アンペア" - ], - [ - 13059, - 1, - "アール" - ], - [ - 13060, - 1, - "イニング" - ], - [ - 13061, - 1, - "インチ" - ], - [ - 13062, - 1, - "ウォン" - ], - [ - 13063, - 1, - "エスクード" - ], - [ - 13064, - 1, - "エーカー" - ], - [ - 13065, - 1, - "オンス" - ], - [ - 13066, - 1, - "オーム" - ], - [ - 13067, - 1, - "カイリ" - ], - [ - 13068, - 1, - "カラット" - ], - [ - 13069, - 1, - "カロリー" - ], - [ - 13070, - 1, - "ガロン" - ], - [ - 13071, - 1, - "ガンマ" - ], - [ - 13072, - 1, - "ギガ" - ], - [ - 13073, - 1, - "ギニー" - ], - [ - 13074, - 1, - "キュリー" - ], - [ - 13075, - 1, - "ギルダー" - ], - [ - 13076, - 1, - "キロ" - ], - [ - 13077, - 1, - "キログラム" - ], - [ - 13078, - 1, - "キロメートル" - ], - [ - 13079, - 1, - "キロワット" - ], - [ - 13080, - 1, - "グラム" - ], - [ - 13081, - 1, - "グラムトン" - ], - [ - 13082, - 1, - "クルゼイロ" - ], - [ - 13083, - 1, - "クローネ" - ], - [ - 13084, - 1, - "ケース" - ], - [ - 13085, - 1, - "コルナ" - ], - [ - 13086, - 1, - "コーポ" - ], - [ - 13087, - 1, - "サイクル" - ], - [ - 13088, - 1, - "サンチーム" - ], - [ - 13089, - 1, - "シリング" - ], - [ - 13090, - 1, - "センチ" - ], - [ - 13091, - 1, - "セント" - ], - [ - 13092, - 1, - "ダース" - ], - [ - 13093, - 1, - "デシ" - ], - [ - 13094, - 1, - "ドル" - ], - [ - 13095, - 1, - "トン" - ], - [ - 13096, - 1, - "ナノ" - ], - [ - 13097, - 1, - "ノット" - ], - [ - 13098, - 1, - "ハイツ" - ], - [ - 13099, - 1, - "パーセント" - ], - [ - 13100, - 1, - "パーツ" - ], - [ - 13101, - 1, - "バーレル" - ], - [ - 13102, - 1, - "ピアストル" - ], - [ - 13103, - 1, - "ピクル" - ], - [ - 13104, - 1, - "ピコ" - ], - [ - 13105, - 1, - "ビル" - ], - [ - 13106, - 1, - "ファラッド" - ], - [ - 13107, - 1, - "フィート" - ], - [ - 13108, - 1, - "ブッシェル" - ], - [ - 13109, - 1, - "フラン" - ], - [ - 13110, - 1, - "ヘクタール" - ], - [ - 13111, - 1, - "ペソ" - ], - [ - 13112, - 1, - "ペニヒ" - ], - [ - 13113, - 1, - "ヘルツ" - ], - [ - 13114, - 1, - "ペンス" - ], - [ - 13115, - 1, - "ページ" - ], - [ - 13116, - 1, - "ベータ" - ], - [ - 13117, - 1, - "ポイント" - ], - [ - 13118, - 1, - "ボルト" - ], - [ - 13119, - 1, - "ホン" - ], - [ - 13120, - 1, - "ポンド" - ], - [ - 13121, - 1, - "ホール" - ], - [ - 13122, - 1, - "ホーン" - ], - [ - 13123, - 1, - "マイクロ" - ], - [ - 13124, - 1, - "マイル" - ], - [ - 13125, - 1, - "マッハ" - ], - [ - 13126, - 1, - "マルク" - ], - [ - 13127, - 1, - "マンション" - ], - [ - 13128, - 1, - "ミクロン" - ], - [ - 13129, - 1, - "ミリ" - ], - [ - 13130, - 1, - "ミリバール" - ], - [ - 13131, - 1, - "メガ" - ], - [ - 13132, - 1, - "メガトン" - ], - [ - 13133, - 1, - "メートル" - ], - [ - 13134, - 1, - "ヤード" - ], - [ - 13135, - 1, - "ヤール" - ], - [ - 13136, - 1, - "ユアン" - ], - [ - 13137, - 1, - "リットル" - ], - [ - 13138, - 1, - "リラ" - ], - [ - 13139, - 1, - "ルピー" - ], - [ - 13140, - 1, - "ルーブル" - ], - [ - 13141, - 1, - "レム" - ], - [ - 13142, - 1, - "レントゲン" - ], - [ - 13143, - 1, - "ワット" - ], - [ - 13144, - 1, - "0点" - ], - [ - 13145, - 1, - "1点" - ], - [ - 13146, - 1, - "2点" - ], - [ - 13147, - 1, - "3点" - ], - [ - 13148, - 1, - "4点" - ], - [ - 13149, - 1, - "5点" - ], - [ - 13150, - 1, - "6点" - ], - [ - 13151, - 1, - "7点" - ], - [ - 13152, - 1, - "8点" - ], - [ - 13153, - 1, - "9点" - ], - [ - 13154, - 1, - "10点" - ], - [ - 13155, - 1, - "11点" - ], - [ - 13156, - 1, - "12点" - ], - [ - 13157, - 1, - "13点" - ], - [ - 13158, - 1, - "14点" - ], - [ - 13159, - 1, - "15点" - ], - [ - 13160, - 1, - "16点" - ], - [ - 13161, - 1, - "17点" - ], - [ - 13162, - 1, - "18点" - ], - [ - 13163, - 1, - "19点" - ], - [ - 13164, - 1, - "20点" - ], - [ - 13165, - 1, - "21点" - ], - [ - 13166, - 1, - "22点" - ], - [ - 13167, - 1, - "23点" - ], - [ - 13168, - 1, - "24点" - ], - [ - 13169, - 1, - "hpa" - ], - [ - 13170, - 1, - "da" - ], - [ - 13171, - 1, - "au" - ], - [ - 13172, - 1, - "bar" - ], - [ - 13173, - 1, - "ov" - ], - [ - 13174, - 1, - "pc" - ], - [ - 13175, - 1, - "dm" - ], - [ - 13176, - 1, - "dm2" - ], - [ - 13177, - 1, - "dm3" - ], - [ - 13178, - 1, - "iu" - ], - [ - 13179, - 1, - "平成" - ], - [ - 13180, - 1, - "昭和" - ], - [ - 13181, - 1, - "大正" - ], - [ - 13182, - 1, - "明治" - ], - [ - 13183, - 1, - "株式会社" - ], - [ - 13184, - 1, - "pa" - ], - [ - 13185, - 1, - "na" - ], - [ - 13186, - 1, - "μa" - ], - [ - 13187, - 1, - "ma" - ], - [ - 13188, - 1, - "ka" - ], - [ - 13189, - 1, - "kb" - ], - [ - 13190, - 1, - "mb" - ], - [ - 13191, - 1, - "gb" - ], - [ - 13192, - 1, - "cal" - ], - [ - 13193, - 1, - "kcal" - ], - [ - 13194, - 1, - "pf" - ], - [ - 13195, - 1, - "nf" - ], - [ - 13196, - 1, - "μf" - ], - [ - 13197, - 1, - "μg" - ], - [ - 13198, - 1, - "mg" - ], - [ - 13199, - 1, - "kg" - ], - [ - 13200, - 1, - "hz" - ], - [ - 13201, - 1, - "khz" - ], - [ - 13202, - 1, - "mhz" - ], - [ - 13203, - 1, - "ghz" - ], - [ - 13204, - 1, - "thz" - ], - [ - 13205, - 1, - "μl" - ], - [ - 13206, - 1, - "ml" - ], - [ - 13207, - 1, - "dl" - ], - [ - 13208, - 1, - "kl" - ], - [ - 13209, - 1, - "fm" - ], - [ - 13210, - 1, - "nm" - ], - [ - 13211, - 1, - "μm" - ], - [ - 13212, - 1, - "mm" - ], - [ - 13213, - 1, - "cm" - ], - [ - 13214, - 1, - "km" - ], - [ - 13215, - 1, - "mm2" - ], - [ - 13216, - 1, - "cm2" - ], - [ - 13217, - 1, - "m2" - ], - [ - 13218, - 1, - "km2" - ], - [ - 13219, - 1, - "mm3" - ], - [ - 13220, - 1, - "cm3" - ], - [ - 13221, - 1, - "m3" - ], - [ - 13222, - 1, - "km3" - ], - [ - 13223, - 1, - "m∕s" - ], - [ - 13224, - 1, - "m∕s2" - ], - [ - 13225, - 1, - "pa" - ], - [ - 13226, - 1, - "kpa" - ], - [ - 13227, - 1, - "mpa" - ], - [ - 13228, - 1, - "gpa" - ], - [ - 13229, - 1, - "rad" - ], - [ - 13230, - 1, - "rad∕s" - ], - [ - 13231, - 1, - "rad∕s2" - ], - [ - 13232, - 1, - "ps" - ], - [ - 13233, - 1, - "ns" - ], - [ - 13234, - 1, - "μs" - ], - [ - 13235, - 1, - "ms" - ], - [ - 13236, - 1, - "pv" - ], - [ - 13237, - 1, - "nv" - ], - [ - 13238, - 1, - "μv" - ], - [ - 13239, - 1, - "mv" - ], - [ - 13240, - 1, - "kv" - ], - [ - 13241, - 1, - "mv" - ], - [ - 13242, - 1, - "pw" - ], - [ - 13243, - 1, - "nw" - ], - [ - 13244, - 1, - "μw" - ], - [ - 13245, - 1, - "mw" - ], - [ - 13246, - 1, - "kw" - ], - [ - 13247, - 1, - "mw" - ], - [ - 13248, - 1, - "kω" - ], - [ - 13249, - 1, - "mω" - ], - [ - 13250, - 3 - ], - [ - 13251, - 1, - "bq" - ], - [ - 13252, - 1, - "cc" - ], - [ - 13253, - 1, - "cd" - ], - [ - 13254, - 1, - "c∕kg" - ], - [ - 13255, - 3 - ], - [ - 13256, - 1, - "db" - ], - [ - 13257, - 1, - "gy" - ], - [ - 13258, - 1, - "ha" - ], - [ - 13259, - 1, - "hp" - ], - [ - 13260, - 1, - "in" - ], - [ - 13261, - 1, - "kk" - ], - [ - 13262, - 1, - "km" - ], - [ - 13263, - 1, - "kt" - ], - [ - 13264, - 1, - "lm" - ], - [ - 13265, - 1, - "ln" - ], - [ - 13266, - 1, - "log" - ], - [ - 13267, - 1, - "lx" - ], - [ - 13268, - 1, - "mb" - ], - [ - 13269, - 1, - "mil" - ], - [ - 13270, - 1, - "mol" - ], - [ - 13271, - 1, - "ph" - ], - [ - 13272, - 3 - ], - [ - 13273, - 1, - "ppm" - ], - [ - 13274, - 1, - "pr" - ], - [ - 13275, - 1, - "sr" - ], - [ - 13276, - 1, - "sv" - ], - [ - 13277, - 1, - "wb" - ], - [ - 13278, - 1, - "v∕m" - ], - [ - 13279, - 1, - "a∕m" - ], - [ - 13280, - 1, - "1日" - ], - [ - 13281, - 1, - "2日" - ], - [ - 13282, - 1, - "3日" - ], - [ - 13283, - 1, - "4日" - ], - [ - 13284, - 1, - "5日" - ], - [ - 13285, - 1, - "6日" - ], - [ - 13286, - 1, - "7日" - ], - [ - 13287, - 1, - "8日" - ], - [ - 13288, - 1, - "9日" - ], - [ - 13289, - 1, - "10日" - ], - [ - 13290, - 1, - "11日" - ], - [ - 13291, - 1, - "12日" - ], - [ - 13292, - 1, - "13日" - ], - [ - 13293, - 1, - "14日" - ], - [ - 13294, - 1, - "15日" - ], - [ - 13295, - 1, - "16日" - ], - [ - 13296, - 1, - "17日" - ], - [ - 13297, - 1, - "18日" - ], - [ - 13298, - 1, - "19日" - ], - [ - 13299, - 1, - "20日" - ], - [ - 13300, - 1, - "21日" - ], - [ - 13301, - 1, - "22日" - ], - [ - 13302, - 1, - "23日" - ], - [ - 13303, - 1, - "24日" - ], - [ - 13304, - 1, - "25日" - ], - [ - 13305, - 1, - "26日" - ], - [ - 13306, - 1, - "27日" - ], - [ - 13307, - 1, - "28日" - ], - [ - 13308, - 1, - "29日" - ], - [ - 13309, - 1, - "30日" - ], - [ - 13310, - 1, - "31日" - ], - [ - 13311, - 1, - "gal" - ], - [ - [ - 13312, - 19893 - ], - 2 - ], - [ - [ - 19894, - 19903 - ], - 2 - ], - [ - [ - 19904, - 19967 - ], - 2 - ], - [ - [ - 19968, - 40869 - ], - 2 - ], - [ - [ - 40870, - 40891 - ], - 2 - ], - [ - [ - 40892, - 40899 - ], - 2 - ], - [ - [ - 40900, - 40907 - ], - 2 - ], - [ - 40908, - 2 - ], - [ - [ - 40909, - 40917 - ], - 2 - ], - [ - [ - 40918, - 40938 - ], - 2 - ], - [ - [ - 40939, - 40943 - ], - 2 - ], - [ - [ - 40944, - 40956 - ], - 2 - ], - [ - [ - 40957, - 40959 - ], - 2 - ], - [ - [ - 40960, - 42124 - ], - 2 - ], - [ - [ - 42125, - 42127 - ], - 3 - ], - [ - [ - 42128, - 42145 - ], - 2 - ], - [ - [ - 42146, - 42147 - ], - 2 - ], - [ - [ - 42148, - 42163 - ], - 2 - ], - [ - 42164, - 2 - ], - [ - [ - 42165, - 42176 - ], - 2 - ], - [ - 42177, - 2 - ], - [ - [ - 42178, - 42180 - ], - 2 - ], - [ - 42181, - 2 - ], - [ - 42182, - 2 - ], - [ - [ - 42183, - 42191 - ], - 3 - ], - [ - [ - 42192, - 42237 - ], - 2 - ], - [ - [ - 42238, - 42239 - ], - 2 - ], - [ - [ - 42240, - 42508 - ], - 2 - ], - [ - [ - 42509, - 42511 - ], - 2 - ], - [ - [ - 42512, - 42539 - ], - 2 - ], - [ - [ - 42540, - 42559 - ], - 3 - ], - [ - 42560, - 1, - "ꙁ" - ], - [ - 42561, - 2 - ], - [ - 42562, - 1, - "ꙃ" - ], - [ - 42563, - 2 - ], - [ - 42564, - 1, - "ꙅ" - ], - [ - 42565, - 2 - ], - [ - 42566, - 1, - "ꙇ" - ], - [ - 42567, - 2 - ], - [ - 42568, - 1, - "ꙉ" - ], - [ - 42569, - 2 - ], - [ - 42570, - 1, - "ꙋ" - ], - [ - 42571, - 2 - ], - [ - 42572, - 1, - "ꙍ" - ], - [ - 42573, - 2 - ], - [ - 42574, - 1, - "ꙏ" - ], - [ - 42575, - 2 - ], - [ - 42576, - 1, - "ꙑ" - ], - [ - 42577, - 2 - ], - [ - 42578, - 1, - "ꙓ" - ], - [ - 42579, - 2 - ], - [ - 42580, - 1, - "ꙕ" - ], - [ - 42581, - 2 - ], - [ - 42582, - 1, - "ꙗ" - ], - [ - 42583, - 2 - ], - [ - 42584, - 1, - "ꙙ" - ], - [ - 42585, - 2 - ], - [ - 42586, - 1, - "ꙛ" - ], - [ - 42587, - 2 - ], - [ - 42588, - 1, - "ꙝ" - ], - [ - 42589, - 2 - ], - [ - 42590, - 1, - "ꙟ" - ], - [ - 42591, - 2 - ], - [ - 42592, - 1, - "ꙡ" - ], - [ - 42593, - 2 - ], - [ - 42594, - 1, - "ꙣ" - ], - [ - 42595, - 2 - ], - [ - 42596, - 1, - "ꙥ" - ], - [ - 42597, - 2 - ], - [ - 42598, - 1, - "ꙧ" - ], - [ - 42599, - 2 - ], - [ - 42600, - 1, - "ꙩ" - ], - [ - 42601, - 2 - ], - [ - 42602, - 1, - "ꙫ" - ], - [ - 42603, - 2 - ], - [ - 42604, - 1, - "ꙭ" - ], - [ - [ - 42605, - 42607 - ], - 2 - ], - [ - [ - 42608, - 42611 - ], - 2 - ], - [ - [ - 42612, - 42619 - ], - 2 - ], - [ - [ - 42620, - 42621 - ], - 2 - ], - [ - 42622, - 2 - ], - [ - 42623, - 2 - ], - [ - 42624, - 1, - "ꚁ" - ], - [ - 42625, - 2 - ], - [ - 42626, - 1, - "ꚃ" - ], - [ - 42627, - 2 - ], - [ - 42628, - 1, - "ꚅ" - ], - [ - 42629, - 2 - ], - [ - 42630, - 1, - "ꚇ" - ], - [ - 42631, - 2 - ], - [ - 42632, - 1, - "ꚉ" - ], - [ - 42633, - 2 - ], - [ - 42634, - 1, - "ꚋ" - ], - [ - 42635, - 2 - ], - [ - 42636, - 1, - "ꚍ" - ], - [ - 42637, - 2 - ], - [ - 42638, - 1, - "ꚏ" - ], - [ - 42639, - 2 - ], - [ - 42640, - 1, - "ꚑ" - ], - [ - 42641, - 2 - ], - [ - 42642, - 1, - "ꚓ" - ], - [ - 42643, - 2 - ], - [ - 42644, - 1, - "ꚕ" - ], - [ - 42645, - 2 - ], - [ - 42646, - 1, - "ꚗ" - ], - [ - 42647, - 2 - ], - [ - 42648, - 1, - "ꚙ" - ], - [ - 42649, - 2 - ], - [ - 42650, - 1, - "ꚛ" - ], - [ - 42651, - 2 - ], - [ - 42652, - 1, - "ъ" - ], - [ - 42653, - 1, - "ь" - ], - [ - 42654, - 2 - ], - [ - 42655, - 2 - ], - [ - [ - 42656, - 42725 - ], - 2 - ], - [ - [ - 42726, - 42735 - ], - 2 - ], - [ - [ - 42736, - 42737 - ], - 2 - ], - [ - [ - 42738, - 42743 - ], - 2 - ], - [ - [ - 42744, - 42751 - ], - 3 - ], - [ - [ - 42752, - 42774 - ], - 2 - ], - [ - [ - 42775, - 42778 - ], - 2 - ], - [ - [ - 42779, - 42783 - ], - 2 - ], - [ - [ - 42784, - 42785 - ], - 2 - ], - [ - 42786, - 1, - "ꜣ" - ], - [ - 42787, - 2 - ], - [ - 42788, - 1, - "ꜥ" - ], - [ - 42789, - 2 - ], - [ - 42790, - 1, - "ꜧ" - ], - [ - 42791, - 2 - ], - [ - 42792, - 1, - "ꜩ" - ], - [ - 42793, - 2 - ], - [ - 42794, - 1, - "ꜫ" - ], - [ - 42795, - 2 - ], - [ - 42796, - 1, - "ꜭ" - ], - [ - 42797, - 2 - ], - [ - 42798, - 1, - "ꜯ" - ], - [ - [ - 42799, - 42801 - ], - 2 - ], - [ - 42802, - 1, - "ꜳ" - ], - [ - 42803, - 2 - ], - [ - 42804, - 1, - "ꜵ" - ], - [ - 42805, - 2 - ], - [ - 42806, - 1, - "ꜷ" - ], - [ - 42807, - 2 - ], - [ - 42808, - 1, - "ꜹ" - ], - [ - 42809, - 2 - ], - [ - 42810, - 1, - "ꜻ" - ], - [ - 42811, - 2 - ], - [ - 42812, - 1, - "ꜽ" - ], - [ - 42813, - 2 - ], - [ - 42814, - 1, - "ꜿ" - ], - [ - 42815, - 2 - ], - [ - 42816, - 1, - "ꝁ" - ], - [ - 42817, - 2 - ], - [ - 42818, - 1, - "ꝃ" - ], - [ - 42819, - 2 - ], - [ - 42820, - 1, - "ꝅ" - ], - [ - 42821, - 2 - ], - [ - 42822, - 1, - "ꝇ" - ], - [ - 42823, - 2 - ], - [ - 42824, - 1, - "ꝉ" - ], - [ - 42825, - 2 - ], - [ - 42826, - 1, - "ꝋ" - ], - [ - 42827, - 2 - ], - [ - 42828, - 1, - "ꝍ" - ], - [ - 42829, - 2 - ], - [ - 42830, - 1, - "ꝏ" - ], - [ - 42831, - 2 - ], - [ - 42832, - 1, - "ꝑ" - ], - [ - 42833, - 2 - ], - [ - 42834, - 1, - "ꝓ" - ], - [ - 42835, - 2 - ], - [ - 42836, - 1, - "ꝕ" - ], - [ - 42837, - 2 - ], - [ - 42838, - 1, - "ꝗ" - ], - [ - 42839, - 2 - ], - [ - 42840, - 1, - "ꝙ" - ], - [ - 42841, - 2 - ], - [ - 42842, - 1, - "ꝛ" - ], - [ - 42843, - 2 - ], - [ - 42844, - 1, - "ꝝ" - ], - [ - 42845, - 2 - ], - [ - 42846, - 1, - "ꝟ" - ], - [ - 42847, - 2 - ], - [ - 42848, - 1, - "ꝡ" - ], - [ - 42849, - 2 - ], - [ - 42850, - 1, - "ꝣ" - ], - [ - 42851, - 2 - ], - [ - 42852, - 1, - "ꝥ" - ], - [ - 42853, - 2 - ], - [ - 42854, - 1, - "ꝧ" - ], - [ - 42855, - 2 - ], - [ - 42856, - 1, - "ꝩ" - ], - [ - 42857, - 2 - ], - [ - 42858, - 1, - "ꝫ" - ], - [ - 42859, - 2 - ], - [ - 42860, - 1, - "ꝭ" - ], - [ - 42861, - 2 - ], - [ - 42862, - 1, - "ꝯ" - ], - [ - 42863, - 2 - ], - [ - 42864, - 1, - "ꝯ" - ], - [ - [ - 42865, - 42872 - ], - 2 - ], - [ - 42873, - 1, - "ꝺ" - ], - [ - 42874, - 2 - ], - [ - 42875, - 1, - "ꝼ" - ], - [ - 42876, - 2 - ], - [ - 42877, - 1, - "ᵹ" - ], - [ - 42878, - 1, - "ꝿ" - ], - [ - 42879, - 2 - ], - [ - 42880, - 1, - "ꞁ" - ], - [ - 42881, - 2 - ], - [ - 42882, - 1, - "ꞃ" - ], - [ - 42883, - 2 - ], - [ - 42884, - 1, - "ꞅ" - ], - [ - 42885, - 2 - ], - [ - 42886, - 1, - "ꞇ" - ], - [ - [ - 42887, - 42888 - ], - 2 - ], - [ - [ - 42889, - 42890 - ], - 2 - ], - [ - 42891, - 1, - "ꞌ" - ], - [ - 42892, - 2 - ], - [ - 42893, - 1, - "ɥ" - ], - [ - 42894, - 2 - ], - [ - 42895, - 2 - ], - [ - 42896, - 1, - "ꞑ" - ], - [ - 42897, - 2 - ], - [ - 42898, - 1, - "ꞓ" - ], - [ - 42899, - 2 - ], - [ - [ - 42900, - 42901 - ], - 2 - ], - [ - 42902, - 1, - "ꞗ" - ], - [ - 42903, - 2 - ], - [ - 42904, - 1, - "ꞙ" - ], - [ - 42905, - 2 - ], - [ - 42906, - 1, - "ꞛ" - ], - [ - 42907, - 2 - ], - [ - 42908, - 1, - "ꞝ" - ], - [ - 42909, - 2 - ], - [ - 42910, - 1, - "ꞟ" - ], - [ - 42911, - 2 - ], - [ - 42912, - 1, - "ꞡ" - ], - [ - 42913, - 2 - ], - [ - 42914, - 1, - "ꞣ" - ], - [ - 42915, - 2 - ], - [ - 42916, - 1, - "ꞥ" - ], - [ - 42917, - 2 - ], - [ - 42918, - 1, - "ꞧ" - ], - [ - 42919, - 2 - ], - [ - 42920, - 1, - "ꞩ" - ], - [ - 42921, - 2 - ], - [ - 42922, - 1, - "ɦ" - ], - [ - 42923, - 1, - "ɜ" - ], - [ - 42924, - 1, - "ɡ" - ], - [ - 42925, - 1, - "ɬ" - ], - [ - 42926, - 1, - "ɪ" - ], - [ - 42927, - 2 - ], - [ - 42928, - 1, - "ʞ" - ], - [ - 42929, - 1, - "ʇ" - ], - [ - 42930, - 1, - "ʝ" - ], - [ - 42931, - 1, - "ꭓ" - ], - [ - 42932, - 1, - "ꞵ" - ], - [ - 42933, - 2 - ], - [ - 42934, - 1, - "ꞷ" - ], - [ - 42935, - 2 - ], - [ - 42936, - 1, - "ꞹ" - ], - [ - 42937, - 2 - ], - [ - 42938, - 1, - "ꞻ" - ], - [ - 42939, - 2 - ], - [ - 42940, - 1, - "ꞽ" - ], - [ - 42941, - 2 - ], - [ - 42942, - 1, - "ꞿ" - ], - [ - 42943, - 2 - ], - [ - 42944, - 1, - "ꟁ" - ], - [ - 42945, - 2 - ], - [ - 42946, - 1, - "ꟃ" - ], - [ - 42947, - 2 - ], - [ - 42948, - 1, - "ꞔ" - ], - [ - 42949, - 1, - "ʂ" - ], - [ - 42950, - 1, - "ᶎ" - ], - [ - 42951, - 1, - "ꟈ" - ], - [ - 42952, - 2 - ], - [ - 42953, - 1, - "ꟊ" - ], - [ - 42954, - 2 - ], - [ - [ - 42955, - 42959 - ], - 3 - ], - [ - 42960, - 1, - "ꟑ" - ], - [ - 42961, - 2 - ], - [ - 42962, - 3 - ], - [ - 42963, - 2 - ], - [ - 42964, - 3 - ], - [ - 42965, - 2 - ], - [ - 42966, - 1, - "ꟗ" - ], - [ - 42967, - 2 - ], - [ - 42968, - 1, - "ꟙ" - ], - [ - 42969, - 2 - ], - [ - [ - 42970, - 42993 - ], - 3 - ], - [ - 42994, - 1, - "c" - ], - [ - 42995, - 1, - "f" - ], - [ - 42996, - 1, - "q" - ], - [ - 42997, - 1, - "ꟶ" - ], - [ - 42998, - 2 - ], - [ - 42999, - 2 - ], - [ - 43000, - 1, - "ħ" - ], - [ - 43001, - 1, - "œ" - ], - [ - 43002, - 2 - ], - [ - [ - 43003, - 43007 - ], - 2 - ], - [ - [ - 43008, - 43047 - ], - 2 - ], - [ - [ - 43048, - 43051 - ], - 2 - ], - [ - 43052, - 2 - ], - [ - [ - 43053, - 43055 - ], - 3 - ], - [ - [ - 43056, - 43065 - ], - 2 - ], - [ - [ - 43066, - 43071 - ], - 3 - ], - [ - [ - 43072, - 43123 - ], - 2 - ], - [ - [ - 43124, - 43127 - ], - 2 - ], - [ - [ - 43128, - 43135 - ], - 3 - ], - [ - [ - 43136, - 43204 - ], - 2 - ], - [ - 43205, - 2 - ], - [ - [ - 43206, - 43213 - ], - 3 - ], - [ - [ - 43214, - 43215 - ], - 2 - ], - [ - [ - 43216, - 43225 - ], - 2 - ], - [ - [ - 43226, - 43231 - ], - 3 - ], - [ - [ - 43232, - 43255 - ], - 2 - ], - [ - [ - 43256, - 43258 - ], - 2 - ], - [ - 43259, - 2 - ], - [ - 43260, - 2 - ], - [ - 43261, - 2 - ], - [ - [ - 43262, - 43263 - ], - 2 - ], - [ - [ - 43264, - 43309 - ], - 2 - ], - [ - [ - 43310, - 43311 - ], - 2 - ], - [ - [ - 43312, - 43347 - ], - 2 - ], - [ - [ - 43348, - 43358 - ], - 3 - ], - [ - 43359, - 2 - ], - [ - [ - 43360, - 43388 - ], - 2 - ], - [ - [ - 43389, - 43391 - ], - 3 - ], - [ - [ - 43392, - 43456 - ], - 2 - ], - [ - [ - 43457, - 43469 - ], - 2 - ], - [ - 43470, - 3 - ], - [ - [ - 43471, - 43481 - ], - 2 - ], - [ - [ - 43482, - 43485 - ], - 3 - ], - [ - [ - 43486, - 43487 - ], - 2 - ], - [ - [ - 43488, - 43518 - ], - 2 - ], - [ - 43519, - 3 - ], - [ - [ - 43520, - 43574 - ], - 2 - ], - [ - [ - 43575, - 43583 - ], - 3 - ], - [ - [ - 43584, - 43597 - ], - 2 - ], - [ - [ - 43598, - 43599 - ], - 3 - ], - [ - [ - 43600, - 43609 - ], - 2 - ], - [ - [ - 43610, - 43611 - ], - 3 - ], - [ - [ - 43612, - 43615 - ], - 2 - ], - [ - [ - 43616, - 43638 - ], - 2 - ], - [ - [ - 43639, - 43641 - ], - 2 - ], - [ - [ - 43642, - 43643 - ], - 2 - ], - [ - [ - 43644, - 43647 - ], - 2 - ], - [ - [ - 43648, - 43714 - ], - 2 - ], - [ - [ - 43715, - 43738 - ], - 3 - ], - [ - [ - 43739, - 43741 - ], - 2 - ], - [ - [ - 43742, - 43743 - ], - 2 - ], - [ - [ - 43744, - 43759 - ], - 2 - ], - [ - [ - 43760, - 43761 - ], - 2 - ], - [ - [ - 43762, - 43766 - ], - 2 - ], - [ - [ - 43767, - 43776 - ], - 3 - ], - [ - [ - 43777, - 43782 - ], - 2 - ], - [ - [ - 43783, - 43784 - ], - 3 - ], - [ - [ - 43785, - 43790 - ], - 2 - ], - [ - [ - 43791, - 43792 - ], - 3 - ], - [ - [ - 43793, - 43798 - ], - 2 - ], - [ - [ - 43799, - 43807 - ], - 3 - ], - [ - [ - 43808, - 43814 - ], - 2 - ], - [ - 43815, - 3 - ], - [ - [ - 43816, - 43822 - ], - 2 - ], - [ - 43823, - 3 - ], - [ - [ - 43824, - 43866 - ], - 2 - ], - [ - 43867, - 2 - ], - [ - 43868, - 1, - "ꜧ" - ], - [ - 43869, - 1, - "ꬷ" - ], - [ - 43870, - 1, - "ɫ" - ], - [ - 43871, - 1, - "ꭒ" - ], - [ - [ - 43872, - 43875 - ], - 2 - ], - [ - [ - 43876, - 43877 - ], - 2 - ], - [ - [ - 43878, - 43879 - ], - 2 - ], - [ - 43880, - 2 - ], - [ - 43881, - 1, - "ʍ" - ], - [ - [ - 43882, - 43883 - ], - 2 - ], - [ - [ - 43884, - 43887 - ], - 3 - ], - [ - 43888, - 1, - "Ꭰ" - ], - [ - 43889, - 1, - "Ꭱ" - ], - [ - 43890, - 1, - "Ꭲ" - ], - [ - 43891, - 1, - "Ꭳ" - ], - [ - 43892, - 1, - "Ꭴ" - ], - [ - 43893, - 1, - "Ꭵ" - ], - [ - 43894, - 1, - "Ꭶ" - ], - [ - 43895, - 1, - "Ꭷ" - ], - [ - 43896, - 1, - "Ꭸ" - ], - [ - 43897, - 1, - "Ꭹ" - ], - [ - 43898, - 1, - "Ꭺ" - ], - [ - 43899, - 1, - "Ꭻ" - ], - [ - 43900, - 1, - "Ꭼ" - ], - [ - 43901, - 1, - "Ꭽ" - ], - [ - 43902, - 1, - "Ꭾ" - ], - [ - 43903, - 1, - "Ꭿ" - ], - [ - 43904, - 1, - "Ꮀ" - ], - [ - 43905, - 1, - "Ꮁ" - ], - [ - 43906, - 1, - "Ꮂ" - ], - [ - 43907, - 1, - "Ꮃ" - ], - [ - 43908, - 1, - "Ꮄ" - ], - [ - 43909, - 1, - "Ꮅ" - ], - [ - 43910, - 1, - "Ꮆ" - ], - [ - 43911, - 1, - "Ꮇ" - ], - [ - 43912, - 1, - "Ꮈ" - ], - [ - 43913, - 1, - "Ꮉ" - ], - [ - 43914, - 1, - "Ꮊ" - ], - [ - 43915, - 1, - "Ꮋ" - ], - [ - 43916, - 1, - "Ꮌ" - ], - [ - 43917, - 1, - "Ꮍ" - ], - [ - 43918, - 1, - "Ꮎ" - ], - [ - 43919, - 1, - "Ꮏ" - ], - [ - 43920, - 1, - "Ꮐ" - ], - [ - 43921, - 1, - "Ꮑ" - ], - [ - 43922, - 1, - "Ꮒ" - ], - [ - 43923, - 1, - "Ꮓ" - ], - [ - 43924, - 1, - "Ꮔ" - ], - [ - 43925, - 1, - "Ꮕ" - ], - [ - 43926, - 1, - "Ꮖ" - ], - [ - 43927, - 1, - "Ꮗ" - ], - [ - 43928, - 1, - "Ꮘ" - ], - [ - 43929, - 1, - "Ꮙ" - ], - [ - 43930, - 1, - "Ꮚ" - ], - [ - 43931, - 1, - "Ꮛ" - ], - [ - 43932, - 1, - "Ꮜ" - ], - [ - 43933, - 1, - "Ꮝ" - ], - [ - 43934, - 1, - "Ꮞ" - ], - [ - 43935, - 1, - "Ꮟ" - ], - [ - 43936, - 1, - "Ꮠ" - ], - [ - 43937, - 1, - "Ꮡ" - ], - [ - 43938, - 1, - "Ꮢ" - ], - [ - 43939, - 1, - "Ꮣ" - ], - [ - 43940, - 1, - "Ꮤ" - ], - [ - 43941, - 1, - "Ꮥ" - ], - [ - 43942, - 1, - "Ꮦ" - ], - [ - 43943, - 1, - "Ꮧ" - ], - [ - 43944, - 1, - "Ꮨ" - ], - [ - 43945, - 1, - "Ꮩ" - ], - [ - 43946, - 1, - "Ꮪ" - ], - [ - 43947, - 1, - "Ꮫ" - ], - [ - 43948, - 1, - "Ꮬ" - ], - [ - 43949, - 1, - "Ꮭ" - ], - [ - 43950, - 1, - "Ꮮ" - ], - [ - 43951, - 1, - "Ꮯ" - ], - [ - 43952, - 1, - "Ꮰ" - ], - [ - 43953, - 1, - "Ꮱ" - ], - [ - 43954, - 1, - "Ꮲ" - ], - [ - 43955, - 1, - "Ꮳ" - ], - [ - 43956, - 1, - "Ꮴ" - ], - [ - 43957, - 1, - "Ꮵ" - ], - [ - 43958, - 1, - "Ꮶ" - ], - [ - 43959, - 1, - "Ꮷ" - ], - [ - 43960, - 1, - "Ꮸ" - ], - [ - 43961, - 1, - "Ꮹ" - ], - [ - 43962, - 1, - "Ꮺ" - ], - [ - 43963, - 1, - "Ꮻ" - ], - [ - 43964, - 1, - "Ꮼ" - ], - [ - 43965, - 1, - "Ꮽ" - ], - [ - 43966, - 1, - "Ꮾ" - ], - [ - 43967, - 1, - "Ꮿ" - ], - [ - [ - 43968, - 44010 - ], - 2 - ], - [ - 44011, - 2 - ], - [ - [ - 44012, - 44013 - ], - 2 - ], - [ - [ - 44014, - 44015 - ], - 3 - ], - [ - [ - 44016, - 44025 - ], - 2 - ], - [ - [ - 44026, - 44031 - ], - 3 - ], - [ - [ - 44032, - 55203 - ], - 2 - ], - [ - [ - 55204, - 55215 - ], - 3 - ], - [ - [ - 55216, - 55238 - ], - 2 - ], - [ - [ - 55239, - 55242 - ], - 3 - ], - [ - [ - 55243, - 55291 - ], - 2 - ], - [ - [ - 55292, - 55295 - ], - 3 - ], - [ - [ - 55296, - 57343 - ], - 3 - ], - [ - [ - 57344, - 63743 - ], - 3 - ], - [ - 63744, - 1, - "豈" - ], - [ - 63745, - 1, - "更" - ], - [ - 63746, - 1, - "車" - ], - [ - 63747, - 1, - "賈" - ], - [ - 63748, - 1, - "滑" - ], - [ - 63749, - 1, - "串" - ], - [ - 63750, - 1, - "句" - ], - [ - [ - 63751, - 63752 - ], - 1, - "龜" - ], - [ - 63753, - 1, - "契" - ], - [ - 63754, - 1, - "金" - ], - [ - 63755, - 1, - "喇" - ], - [ - 63756, - 1, - "奈" - ], - [ - 63757, - 1, - "懶" - ], - [ - 63758, - 1, - "癩" - ], - [ - 63759, - 1, - "羅" - ], - [ - 63760, - 1, - "蘿" - ], - [ - 63761, - 1, - "螺" - ], - [ - 63762, - 1, - "裸" - ], - [ - 63763, - 1, - "邏" - ], - [ - 63764, - 1, - "樂" - ], - [ - 63765, - 1, - "洛" - ], - [ - 63766, - 1, - "烙" - ], - [ - 63767, - 1, - "珞" - ], - [ - 63768, - 1, - "落" - ], - [ - 63769, - 1, - "酪" - ], - [ - 63770, - 1, - "駱" - ], - [ - 63771, - 1, - "亂" - ], - [ - 63772, - 1, - "卵" - ], - [ - 63773, - 1, - "欄" - ], - [ - 63774, - 1, - "爛" - ], - [ - 63775, - 1, - "蘭" - ], - [ - 63776, - 1, - "鸞" - ], - [ - 63777, - 1, - "嵐" - ], - [ - 63778, - 1, - "濫" - ], - [ - 63779, - 1, - "藍" - ], - [ - 63780, - 1, - "襤" - ], - [ - 63781, - 1, - "拉" - ], - [ - 63782, - 1, - "臘" - ], - [ - 63783, - 1, - "蠟" - ], - [ - 63784, - 1, - "廊" - ], - [ - 63785, - 1, - "朗" - ], - [ - 63786, - 1, - "浪" - ], - [ - 63787, - 1, - "狼" - ], - [ - 63788, - 1, - "郎" - ], - [ - 63789, - 1, - "來" - ], - [ - 63790, - 1, - "冷" - ], - [ - 63791, - 1, - "勞" - ], - [ - 63792, - 1, - "擄" - ], - [ - 63793, - 1, - "櫓" - ], - [ - 63794, - 1, - "爐" - ], - [ - 63795, - 1, - "盧" - ], - [ - 63796, - 1, - "老" - ], - [ - 63797, - 1, - "蘆" - ], - [ - 63798, - 1, - "虜" - ], - [ - 63799, - 1, - "路" - ], - [ - 63800, - 1, - "露" - ], - [ - 63801, - 1, - "魯" - ], - [ - 63802, - 1, - "鷺" - ], - [ - 63803, - 1, - "碌" - ], - [ - 63804, - 1, - "祿" - ], - [ - 63805, - 1, - "綠" - ], - [ - 63806, - 1, - "菉" - ], - [ - 63807, - 1, - "錄" - ], - [ - 63808, - 1, - "鹿" - ], - [ - 63809, - 1, - "論" - ], - [ - 63810, - 1, - "壟" - ], - [ - 63811, - 1, - "弄" - ], - [ - 63812, - 1, - "籠" - ], - [ - 63813, - 1, - "聾" - ], - [ - 63814, - 1, - "牢" - ], - [ - 63815, - 1, - "磊" - ], - [ - 63816, - 1, - "賂" - ], - [ - 63817, - 1, - "雷" - ], - [ - 63818, - 1, - "壘" - ], - [ - 63819, - 1, - "屢" - ], - [ - 63820, - 1, - "樓" - ], - [ - 63821, - 1, - "淚" - ], - [ - 63822, - 1, - "漏" - ], - [ - 63823, - 1, - "累" - ], - [ - 63824, - 1, - "縷" - ], - [ - 63825, - 1, - "陋" - ], - [ - 63826, - 1, - "勒" - ], - [ - 63827, - 1, - "肋" - ], - [ - 63828, - 1, - "凜" - ], - [ - 63829, - 1, - "凌" - ], - [ - 63830, - 1, - "稜" - ], - [ - 63831, - 1, - "綾" - ], - [ - 63832, - 1, - "菱" - ], - [ - 63833, - 1, - "陵" - ], - [ - 63834, - 1, - "讀" - ], - [ - 63835, - 1, - "拏" - ], - [ - 63836, - 1, - "樂" - ], - [ - 63837, - 1, - "諾" - ], - [ - 63838, - 1, - "丹" - ], - [ - 63839, - 1, - "寧" - ], - [ - 63840, - 1, - "怒" - ], - [ - 63841, - 1, - "率" - ], - [ - 63842, - 1, - "異" - ], - [ - 63843, - 1, - "北" - ], - [ - 63844, - 1, - "磻" - ], - [ - 63845, - 1, - "便" - ], - [ - 63846, - 1, - "復" - ], - [ - 63847, - 1, - "不" - ], - [ - 63848, - 1, - "泌" - ], - [ - 63849, - 1, - "數" - ], - [ - 63850, - 1, - "索" - ], - [ - 63851, - 1, - "參" - ], - [ - 63852, - 1, - "塞" - ], - [ - 63853, - 1, - "省" - ], - [ - 63854, - 1, - "葉" - ], - [ - 63855, - 1, - "說" - ], - [ - 63856, - 1, - "殺" - ], - [ - 63857, - 1, - "辰" - ], - [ - 63858, - 1, - "沈" - ], - [ - 63859, - 1, - "拾" - ], - [ - 63860, - 1, - "若" - ], - [ - 63861, - 1, - "掠" - ], - [ - 63862, - 1, - "略" - ], - [ - 63863, - 1, - "亮" - ], - [ - 63864, - 1, - "兩" - ], - [ - 63865, - 1, - "凉" - ], - [ - 63866, - 1, - "梁" - ], - [ - 63867, - 1, - "糧" - ], - [ - 63868, - 1, - "良" - ], - [ - 63869, - 1, - "諒" - ], - [ - 63870, - 1, - "量" - ], - [ - 63871, - 1, - "勵" - ], - [ - 63872, - 1, - "呂" - ], - [ - 63873, - 1, - "女" - ], - [ - 63874, - 1, - "廬" - ], - [ - 63875, - 1, - "旅" - ], - [ - 63876, - 1, - "濾" - ], - [ - 63877, - 1, - "礪" - ], - [ - 63878, - 1, - "閭" - ], - [ - 63879, - 1, - "驪" - ], - [ - 63880, - 1, - "麗" - ], - [ - 63881, - 1, - "黎" - ], - [ - 63882, - 1, - "力" - ], - [ - 63883, - 1, - "曆" - ], - [ - 63884, - 1, - "歷" - ], - [ - 63885, - 1, - "轢" - ], - [ - 63886, - 1, - "年" - ], - [ - 63887, - 1, - "憐" - ], - [ - 63888, - 1, - "戀" - ], - [ - 63889, - 1, - "撚" - ], - [ - 63890, - 1, - "漣" - ], - [ - 63891, - 1, - "煉" - ], - [ - 63892, - 1, - "璉" - ], - [ - 63893, - 1, - "秊" - ], - [ - 63894, - 1, - "練" - ], - [ - 63895, - 1, - "聯" - ], - [ - 63896, - 1, - "輦" - ], - [ - 63897, - 1, - "蓮" - ], - [ - 63898, - 1, - "連" - ], - [ - 63899, - 1, - "鍊" - ], - [ - 63900, - 1, - "列" - ], - [ - 63901, - 1, - "劣" - ], - [ - 63902, - 1, - "咽" - ], - [ - 63903, - 1, - "烈" - ], - [ - 63904, - 1, - "裂" - ], - [ - 63905, - 1, - "說" - ], - [ - 63906, - 1, - "廉" - ], - [ - 63907, - 1, - "念" - ], - [ - 63908, - 1, - "捻" - ], - [ - 63909, - 1, - "殮" - ], - [ - 63910, - 1, - "簾" - ], - [ - 63911, - 1, - "獵" - ], - [ - 63912, - 1, - "令" - ], - [ - 63913, - 1, - "囹" - ], - [ - 63914, - 1, - "寧" - ], - [ - 63915, - 1, - "嶺" - ], - [ - 63916, - 1, - "怜" - ], - [ - 63917, - 1, - "玲" - ], - [ - 63918, - 1, - "瑩" - ], - [ - 63919, - 1, - "羚" - ], - [ - 63920, - 1, - "聆" - ], - [ - 63921, - 1, - "鈴" - ], - [ - 63922, - 1, - "零" - ], - [ - 63923, - 1, - "靈" - ], - [ - 63924, - 1, - "領" - ], - [ - 63925, - 1, - "例" - ], - [ - 63926, - 1, - "禮" - ], - [ - 63927, - 1, - "醴" - ], - [ - 63928, - 1, - "隸" - ], - [ - 63929, - 1, - "惡" - ], - [ - 63930, - 1, - "了" - ], - [ - 63931, - 1, - "僚" - ], - [ - 63932, - 1, - "寮" - ], - [ - 63933, - 1, - "尿" - ], - [ - 63934, - 1, - "料" - ], - [ - 63935, - 1, - "樂" - ], - [ - 63936, - 1, - "燎" - ], - [ - 63937, - 1, - "療" - ], - [ - 63938, - 1, - "蓼" - ], - [ - 63939, - 1, - "遼" - ], - [ - 63940, - 1, - "龍" - ], - [ - 63941, - 1, - "暈" - ], - [ - 63942, - 1, - "阮" - ], - [ - 63943, - 1, - "劉" - ], - [ - 63944, - 1, - "杻" - ], - [ - 63945, - 1, - "柳" - ], - [ - 63946, - 1, - "流" - ], - [ - 63947, - 1, - "溜" - ], - [ - 63948, - 1, - "琉" - ], - [ - 63949, - 1, - "留" - ], - [ - 63950, - 1, - "硫" - ], - [ - 63951, - 1, - "紐" - ], - [ - 63952, - 1, - "類" - ], - [ - 63953, - 1, - "六" - ], - [ - 63954, - 1, - "戮" - ], - [ - 63955, - 1, - "陸" - ], - [ - 63956, - 1, - "倫" - ], - [ - 63957, - 1, - "崙" - ], - [ - 63958, - 1, - "淪" - ], - [ - 63959, - 1, - "輪" - ], - [ - 63960, - 1, - "律" - ], - [ - 63961, - 1, - "慄" - ], - [ - 63962, - 1, - "栗" - ], - [ - 63963, - 1, - "率" - ], - [ - 63964, - 1, - "隆" - ], - [ - 63965, - 1, - "利" - ], - [ - 63966, - 1, - "吏" - ], - [ - 63967, - 1, - "履" - ], - [ - 63968, - 1, - "易" - ], - [ - 63969, - 1, - "李" - ], - [ - 63970, - 1, - "梨" - ], - [ - 63971, - 1, - "泥" - ], - [ - 63972, - 1, - "理" - ], - [ - 63973, - 1, - "痢" - ], - [ - 63974, - 1, - "罹" - ], - [ - 63975, - 1, - "裏" - ], - [ - 63976, - 1, - "裡" - ], - [ - 63977, - 1, - "里" - ], - [ - 63978, - 1, - "離" - ], - [ - 63979, - 1, - "匿" - ], - [ - 63980, - 1, - "溺" - ], - [ - 63981, - 1, - "吝" - ], - [ - 63982, - 1, - "燐" - ], - [ - 63983, - 1, - "璘" - ], - [ - 63984, - 1, - "藺" - ], - [ - 63985, - 1, - "隣" - ], - [ - 63986, - 1, - "鱗" - ], - [ - 63987, - 1, - "麟" - ], - [ - 63988, - 1, - "林" - ], - [ - 63989, - 1, - "淋" - ], - [ - 63990, - 1, - "臨" - ], - [ - 63991, - 1, - "立" - ], - [ - 63992, - 1, - "笠" - ], - [ - 63993, - 1, - "粒" - ], - [ - 63994, - 1, - "狀" - ], - [ - 63995, - 1, - "炙" - ], - [ - 63996, - 1, - "識" - ], - [ - 63997, - 1, - "什" - ], - [ - 63998, - 1, - "茶" - ], - [ - 63999, - 1, - "刺" - ], - [ - 64000, - 1, - "切" - ], - [ - 64001, - 1, - "度" - ], - [ - 64002, - 1, - "拓" - ], - [ - 64003, - 1, - "糖" - ], - [ - 64004, - 1, - "宅" - ], - [ - 64005, - 1, - "洞" - ], - [ - 64006, - 1, - "暴" - ], - [ - 64007, - 1, - "輻" - ], - [ - 64008, - 1, - "行" - ], - [ - 64009, - 1, - "降" - ], - [ - 64010, - 1, - "見" - ], - [ - 64011, - 1, - "廓" - ], - [ - 64012, - 1, - "兀" - ], - [ - 64013, - 1, - "嗀" - ], - [ - [ - 64014, - 64015 - ], - 2 - ], - [ - 64016, - 1, - "塚" - ], - [ - 64017, - 2 - ], - [ - 64018, - 1, - "晴" - ], - [ - [ - 64019, - 64020 - ], - 2 - ], - [ - 64021, - 1, - "凞" - ], - [ - 64022, - 1, - "猪" - ], - [ - 64023, - 1, - "益" - ], - [ - 64024, - 1, - "礼" - ], - [ - 64025, - 1, - "神" - ], - [ - 64026, - 1, - "祥" - ], - [ - 64027, - 1, - "福" - ], - [ - 64028, - 1, - "靖" - ], - [ - 64029, - 1, - "精" - ], - [ - 64030, - 1, - "羽" - ], - [ - 64031, - 2 - ], - [ - 64032, - 1, - "蘒" - ], - [ - 64033, - 2 - ], - [ - 64034, - 1, - "諸" - ], - [ - [ - 64035, - 64036 - ], - 2 - ], - [ - 64037, - 1, - "逸" - ], - [ - 64038, - 1, - "都" - ], - [ - [ - 64039, - 64041 - ], - 2 - ], - [ - 64042, - 1, - "飯" - ], - [ - 64043, - 1, - "飼" - ], - [ - 64044, - 1, - "館" - ], - [ - 64045, - 1, - "鶴" - ], - [ - 64046, - 1, - "郞" - ], - [ - 64047, - 1, - "隷" - ], - [ - 64048, - 1, - "侮" - ], - [ - 64049, - 1, - "僧" - ], - [ - 64050, - 1, - "免" - ], - [ - 64051, - 1, - "勉" - ], - [ - 64052, - 1, - "勤" - ], - [ - 64053, - 1, - "卑" - ], - [ - 64054, - 1, - "喝" - ], - [ - 64055, - 1, - "嘆" - ], - [ - 64056, - 1, - "器" - ], - [ - 64057, - 1, - "塀" - ], - [ - 64058, - 1, - "墨" - ], - [ - 64059, - 1, - "層" - ], - [ - 64060, - 1, - "屮" - ], - [ - 64061, - 1, - "悔" - ], - [ - 64062, - 1, - "慨" - ], - [ - 64063, - 1, - "憎" - ], - [ - 64064, - 1, - "懲" - ], - [ - 64065, - 1, - "敏" - ], - [ - 64066, - 1, - "既" - ], - [ - 64067, - 1, - "暑" - ], - [ - 64068, - 1, - "梅" - ], - [ - 64069, - 1, - "海" - ], - [ - 64070, - 1, - "渚" - ], - [ - 64071, - 1, - "漢" - ], - [ - 64072, - 1, - "煮" - ], - [ - 64073, - 1, - "爫" - ], - [ - 64074, - 1, - "琢" - ], - [ - 64075, - 1, - "碑" - ], - [ - 64076, - 1, - "社" - ], - [ - 64077, - 1, - "祉" - ], - [ - 64078, - 1, - "祈" - ], - [ - 64079, - 1, - "祐" - ], - [ - 64080, - 1, - "祖" - ], - [ - 64081, - 1, - "祝" - ], - [ - 64082, - 1, - "禍" - ], - [ - 64083, - 1, - "禎" - ], - [ - 64084, - 1, - "穀" - ], - [ - 64085, - 1, - "突" - ], - [ - 64086, - 1, - "節" - ], - [ - 64087, - 1, - "練" - ], - [ - 64088, - 1, - "縉" - ], - [ - 64089, - 1, - "繁" - ], - [ - 64090, - 1, - "署" - ], - [ - 64091, - 1, - "者" - ], - [ - 64092, - 1, - "臭" - ], - [ - [ - 64093, - 64094 - ], - 1, - "艹" - ], - [ - 64095, - 1, - "著" - ], - [ - 64096, - 1, - "褐" - ], - [ - 64097, - 1, - "視" - ], - [ - 64098, - 1, - "謁" - ], - [ - 64099, - 1, - "謹" - ], - [ - 64100, - 1, - "賓" - ], - [ - 64101, - 1, - "贈" - ], - [ - 64102, - 1, - "辶" - ], - [ - 64103, - 1, - "逸" - ], - [ - 64104, - 1, - "難" - ], - [ - 64105, - 1, - "響" - ], - [ - 64106, - 1, - "頻" - ], - [ - 64107, - 1, - "恵" - ], - [ - 64108, - 1, - "𤋮" - ], - [ - 64109, - 1, - "舘" - ], - [ - [ - 64110, - 64111 - ], - 3 - ], - [ - 64112, - 1, - "並" - ], - [ - 64113, - 1, - "况" - ], - [ - 64114, - 1, - "全" - ], - [ - 64115, - 1, - "侀" - ], - [ - 64116, - 1, - "充" - ], - [ - 64117, - 1, - "冀" - ], - [ - 64118, - 1, - "勇" - ], - [ - 64119, - 1, - "勺" - ], - [ - 64120, - 1, - "喝" - ], - [ - 64121, - 1, - "啕" - ], - [ - 64122, - 1, - "喙" - ], - [ - 64123, - 1, - "嗢" - ], - [ - 64124, - 1, - "塚" - ], - [ - 64125, - 1, - "墳" - ], - [ - 64126, - 1, - "奄" - ], - [ - 64127, - 1, - "奔" - ], - [ - 64128, - 1, - "婢" - ], - [ - 64129, - 1, - "嬨" - ], - [ - 64130, - 1, - "廒" - ], - [ - 64131, - 1, - "廙" - ], - [ - 64132, - 1, - "彩" - ], - [ - 64133, - 1, - "徭" - ], - [ - 64134, - 1, - "惘" - ], - [ - 64135, - 1, - "慎" - ], - [ - 64136, - 1, - "愈" - ], - [ - 64137, - 1, - "憎" - ], - [ - 64138, - 1, - "慠" - ], - [ - 64139, - 1, - "懲" - ], - [ - 64140, - 1, - "戴" - ], - [ - 64141, - 1, - "揄" - ], - [ - 64142, - 1, - "搜" - ], - [ - 64143, - 1, - "摒" - ], - [ - 64144, - 1, - "敖" - ], - [ - 64145, - 1, - "晴" - ], - [ - 64146, - 1, - "朗" - ], - [ - 64147, - 1, - "望" - ], - [ - 64148, - 1, - "杖" - ], - [ - 64149, - 1, - "歹" - ], - [ - 64150, - 1, - "殺" - ], - [ - 64151, - 1, - "流" - ], - [ - 64152, - 1, - "滛" - ], - [ - 64153, - 1, - "滋" - ], - [ - 64154, - 1, - "漢" - ], - [ - 64155, - 1, - "瀞" - ], - [ - 64156, - 1, - "煮" - ], - [ - 64157, - 1, - "瞧" - ], - [ - 64158, - 1, - "爵" - ], - [ - 64159, - 1, - "犯" - ], - [ - 64160, - 1, - "猪" - ], - [ - 64161, - 1, - "瑱" - ], - [ - 64162, - 1, - "甆" - ], - [ - 64163, - 1, - "画" - ], - [ - 64164, - 1, - "瘝" - ], - [ - 64165, - 1, - "瘟" - ], - [ - 64166, - 1, - "益" - ], - [ - 64167, - 1, - "盛" - ], - [ - 64168, - 1, - "直" - ], - [ - 64169, - 1, - "睊" - ], - [ - 64170, - 1, - "着" - ], - [ - 64171, - 1, - "磌" - ], - [ - 64172, - 1, - "窱" - ], - [ - 64173, - 1, - "節" - ], - [ - 64174, - 1, - "类" - ], - [ - 64175, - 1, - "絛" - ], - [ - 64176, - 1, - "練" - ], - [ - 64177, - 1, - "缾" - ], - [ - 64178, - 1, - "者" - ], - [ - 64179, - 1, - "荒" - ], - [ - 64180, - 1, - "華" - ], - [ - 64181, - 1, - "蝹" - ], - [ - 64182, - 1, - "襁" - ], - [ - 64183, - 1, - "覆" - ], - [ - 64184, - 1, - "視" - ], - [ - 64185, - 1, - "調" - ], - [ - 64186, - 1, - "諸" - ], - [ - 64187, - 1, - "請" - ], - [ - 64188, - 1, - "謁" - ], - [ - 64189, - 1, - "諾" - ], - [ - 64190, - 1, - "諭" - ], - [ - 64191, - 1, - "謹" - ], - [ - 64192, - 1, - "變" - ], - [ - 64193, - 1, - "贈" - ], - [ - 64194, - 1, - "輸" - ], - [ - 64195, - 1, - "遲" - ], - [ - 64196, - 1, - "醙" - ], - [ - 64197, - 1, - "鉶" - ], - [ - 64198, - 1, - "陼" - ], - [ - 64199, - 1, - "難" - ], - [ - 64200, - 1, - "靖" - ], - [ - 64201, - 1, - "韛" - ], - [ - 64202, - 1, - "響" - ], - [ - 64203, - 1, - "頋" - ], - [ - 64204, - 1, - "頻" - ], - [ - 64205, - 1, - "鬒" - ], - [ - 64206, - 1, - "龜" - ], - [ - 64207, - 1, - "𢡊" - ], - [ - 64208, - 1, - "𢡄" - ], - [ - 64209, - 1, - "𣏕" - ], - [ - 64210, - 1, - "㮝" - ], - [ - 64211, - 1, - "䀘" - ], - [ - 64212, - 1, - "䀹" - ], - [ - 64213, - 1, - "𥉉" - ], - [ - 64214, - 1, - "𥳐" - ], - [ - 64215, - 1, - "𧻓" - ], - [ - 64216, - 1, - "齃" - ], - [ - 64217, - 1, - "龎" - ], - [ - [ - 64218, - 64255 - ], - 3 - ], - [ - 64256, - 1, - "ff" - ], - [ - 64257, - 1, - "fi" - ], - [ - 64258, - 1, - "fl" - ], - [ - 64259, - 1, - "ffi" - ], - [ - 64260, - 1, - "ffl" - ], - [ - [ - 64261, - 64262 - ], - 1, - "st" - ], - [ - [ - 64263, - 64274 - ], - 3 - ], - [ - 64275, - 1, - "մն" - ], - [ - 64276, - 1, - "մե" - ], - [ - 64277, - 1, - "մի" - ], - [ - 64278, - 1, - "վն" - ], - [ - 64279, - 1, - "մխ" - ], - [ - [ - 64280, - 64284 - ], - 3 - ], - [ - 64285, - 1, - "יִ" - ], - [ - 64286, - 2 - ], - [ - 64287, - 1, - "ײַ" - ], - [ - 64288, - 1, - "ע" - ], - [ - 64289, - 1, - "א" - ], - [ - 64290, - 1, - "ד" - ], - [ - 64291, - 1, - "ה" - ], - [ - 64292, - 1, - "כ" - ], - [ - 64293, - 1, - "ל" - ], - [ - 64294, - 1, - "ם" - ], - [ - 64295, - 1, - "ר" - ], - [ - 64296, - 1, - "ת" - ], - [ - 64297, - 5, - "+" - ], - [ - 64298, - 1, - "שׁ" - ], - [ - 64299, - 1, - "שׂ" - ], - [ - 64300, - 1, - "שּׁ" - ], - [ - 64301, - 1, - "שּׂ" - ], - [ - 64302, - 1, - "אַ" - ], - [ - 64303, - 1, - "אָ" - ], - [ - 64304, - 1, - "אּ" - ], - [ - 64305, - 1, - "בּ" - ], - [ - 64306, - 1, - "גּ" - ], - [ - 64307, - 1, - "דּ" - ], - [ - 64308, - 1, - "הּ" - ], - [ - 64309, - 1, - "וּ" - ], - [ - 64310, - 1, - "זּ" - ], - [ - 64311, - 3 - ], - [ - 64312, - 1, - "טּ" - ], - [ - 64313, - 1, - "יּ" - ], - [ - 64314, - 1, - "ךּ" - ], - [ - 64315, - 1, - "כּ" - ], - [ - 64316, - 1, - "לּ" - ], - [ - 64317, - 3 - ], - [ - 64318, - 1, - "מּ" - ], - [ - 64319, - 3 - ], - [ - 64320, - 1, - "נּ" - ], - [ - 64321, - 1, - "סּ" - ], - [ - 64322, - 3 - ], - [ - 64323, - 1, - "ףּ" - ], - [ - 64324, - 1, - "פּ" - ], - [ - 64325, - 3 - ], - [ - 64326, - 1, - "צּ" - ], - [ - 64327, - 1, - "קּ" - ], - [ - 64328, - 1, - "רּ" - ], - [ - 64329, - 1, - "שּ" - ], - [ - 64330, - 1, - "תּ" - ], - [ - 64331, - 1, - "וֹ" - ], - [ - 64332, - 1, - "בֿ" - ], - [ - 64333, - 1, - "כֿ" - ], - [ - 64334, - 1, - "פֿ" - ], - [ - 64335, - 1, - "אל" - ], - [ - [ - 64336, - 64337 - ], - 1, - "ٱ" - ], - [ - [ - 64338, - 64341 - ], - 1, - "ٻ" - ], - [ - [ - 64342, - 64345 - ], - 1, - "پ" - ], - [ - [ - 64346, - 64349 - ], - 1, - "ڀ" - ], - [ - [ - 64350, - 64353 - ], - 1, - "ٺ" - ], - [ - [ - 64354, - 64357 - ], - 1, - "ٿ" - ], - [ - [ - 64358, - 64361 - ], - 1, - "ٹ" - ], - [ - [ - 64362, - 64365 - ], - 1, - "ڤ" - ], - [ - [ - 64366, - 64369 - ], - 1, - "ڦ" - ], - [ - [ - 64370, - 64373 - ], - 1, - "ڄ" - ], - [ - [ - 64374, - 64377 - ], - 1, - "ڃ" - ], - [ - [ - 64378, - 64381 - ], - 1, - "چ" - ], - [ - [ - 64382, - 64385 - ], - 1, - "ڇ" - ], - [ - [ - 64386, - 64387 - ], - 1, - "ڍ" - ], - [ - [ - 64388, - 64389 - ], - 1, - "ڌ" - ], - [ - [ - 64390, - 64391 - ], - 1, - "ڎ" - ], - [ - [ - 64392, - 64393 - ], - 1, - "ڈ" - ], - [ - [ - 64394, - 64395 - ], - 1, - "ژ" - ], - [ - [ - 64396, - 64397 - ], - 1, - "ڑ" - ], - [ - [ - 64398, - 64401 - ], - 1, - "ک" - ], - [ - [ - 64402, - 64405 - ], - 1, - "گ" - ], - [ - [ - 64406, - 64409 - ], - 1, - "ڳ" - ], - [ - [ - 64410, - 64413 - ], - 1, - "ڱ" - ], - [ - [ - 64414, - 64415 - ], - 1, - "ں" - ], - [ - [ - 64416, - 64419 - ], - 1, - "ڻ" - ], - [ - [ - 64420, - 64421 - ], - 1, - "ۀ" - ], - [ - [ - 64422, - 64425 - ], - 1, - "ہ" - ], - [ - [ - 64426, - 64429 - ], - 1, - "ھ" - ], - [ - [ - 64430, - 64431 - ], - 1, - "ے" - ], - [ - [ - 64432, - 64433 - ], - 1, - "ۓ" - ], - [ - [ - 64434, - 64449 - ], - 2 - ], - [ - 64450, - 2 - ], - [ - [ - 64451, - 64466 - ], - 3 - ], - [ - [ - 64467, - 64470 - ], - 1, - "ڭ" - ], - [ - [ - 64471, - 64472 - ], - 1, - "ۇ" - ], - [ - [ - 64473, - 64474 - ], - 1, - "ۆ" - ], - [ - [ - 64475, - 64476 - ], - 1, - "ۈ" - ], - [ - 64477, - 1, - "ۇٴ" - ], - [ - [ - 64478, - 64479 - ], - 1, - "ۋ" - ], - [ - [ - 64480, - 64481 - ], - 1, - "ۅ" - ], - [ - [ - 64482, - 64483 - ], - 1, - "ۉ" - ], - [ - [ - 64484, - 64487 - ], - 1, - "ې" - ], - [ - [ - 64488, - 64489 - ], - 1, - "ى" - ], - [ - [ - 64490, - 64491 - ], - 1, - "ئا" - ], - [ - [ - 64492, - 64493 - ], - 1, - "ئە" - ], - [ - [ - 64494, - 64495 - ], - 1, - "ئو" - ], - [ - [ - 64496, - 64497 - ], - 1, - "ئۇ" - ], - [ - [ - 64498, - 64499 - ], - 1, - "ئۆ" - ], - [ - [ - 64500, - 64501 - ], - 1, - "ئۈ" - ], - [ - [ - 64502, - 64504 - ], - 1, - "ئې" - ], - [ - [ - 64505, - 64507 - ], - 1, - "ئى" - ], - [ - [ - 64508, - 64511 - ], - 1, - "ی" - ], - [ - 64512, - 1, - "ئج" - ], - [ - 64513, - 1, - "ئح" - ], - [ - 64514, - 1, - "ئم" - ], - [ - 64515, - 1, - "ئى" - ], - [ - 64516, - 1, - "ئي" - ], - [ - 64517, - 1, - "بج" - ], - [ - 64518, - 1, - "بح" - ], - [ - 64519, - 1, - "بخ" - ], - [ - 64520, - 1, - "بم" - ], - [ - 64521, - 1, - "بى" - ], - [ - 64522, - 1, - "بي" - ], - [ - 64523, - 1, - "تج" - ], - [ - 64524, - 1, - "تح" - ], - [ - 64525, - 1, - "تخ" - ], - [ - 64526, - 1, - "تم" - ], - [ - 64527, - 1, - "تى" - ], - [ - 64528, - 1, - "تي" - ], - [ - 64529, - 1, - "ثج" - ], - [ - 64530, - 1, - "ثم" - ], - [ - 64531, - 1, - "ثى" - ], - [ - 64532, - 1, - "ثي" - ], - [ - 64533, - 1, - "جح" - ], - [ - 64534, - 1, - "جم" - ], - [ - 64535, - 1, - "حج" - ], - [ - 64536, - 1, - "حم" - ], - [ - 64537, - 1, - "خج" - ], - [ - 64538, - 1, - "خح" - ], - [ - 64539, - 1, - "خم" - ], - [ - 64540, - 1, - "سج" - ], - [ - 64541, - 1, - "سح" - ], - [ - 64542, - 1, - "سخ" - ], - [ - 64543, - 1, - "سم" - ], - [ - 64544, - 1, - "صح" - ], - [ - 64545, - 1, - "صم" - ], - [ - 64546, - 1, - "ضج" - ], - [ - 64547, - 1, - "ضح" - ], - [ - 64548, - 1, - "ضخ" - ], - [ - 64549, - 1, - "ضم" - ], - [ - 64550, - 1, - "طح" - ], - [ - 64551, - 1, - "طم" - ], - [ - 64552, - 1, - "ظم" - ], - [ - 64553, - 1, - "عج" - ], - [ - 64554, - 1, - "عم" - ], - [ - 64555, - 1, - "غج" - ], - [ - 64556, - 1, - "غم" - ], - [ - 64557, - 1, - "فج" - ], - [ - 64558, - 1, - "فح" - ], - [ - 64559, - 1, - "فخ" - ], - [ - 64560, - 1, - "فم" - ], - [ - 64561, - 1, - "فى" - ], - [ - 64562, - 1, - "في" - ], - [ - 64563, - 1, - "قح" - ], - [ - 64564, - 1, - "قم" - ], - [ - 64565, - 1, - "قى" - ], - [ - 64566, - 1, - "قي" - ], - [ - 64567, - 1, - "كا" - ], - [ - 64568, - 1, - "كج" - ], - [ - 64569, - 1, - "كح" - ], - [ - 64570, - 1, - "كخ" - ], - [ - 64571, - 1, - "كل" - ], - [ - 64572, - 1, - "كم" - ], - [ - 64573, - 1, - "كى" - ], - [ - 64574, - 1, - "كي" - ], - [ - 64575, - 1, - "لج" - ], - [ - 64576, - 1, - "لح" - ], - [ - 64577, - 1, - "لخ" - ], - [ - 64578, - 1, - "لم" - ], - [ - 64579, - 1, - "لى" - ], - [ - 64580, - 1, - "لي" - ], - [ - 64581, - 1, - "مج" - ], - [ - 64582, - 1, - "مح" - ], - [ - 64583, - 1, - "مخ" - ], - [ - 64584, - 1, - "مم" - ], - [ - 64585, - 1, - "مى" - ], - [ - 64586, - 1, - "مي" - ], - [ - 64587, - 1, - "نج" - ], - [ - 64588, - 1, - "نح" - ], - [ - 64589, - 1, - "نخ" - ], - [ - 64590, - 1, - "نم" - ], - [ - 64591, - 1, - "نى" - ], - [ - 64592, - 1, - "ني" - ], - [ - 64593, - 1, - "هج" - ], - [ - 64594, - 1, - "هم" - ], - [ - 64595, - 1, - "هى" - ], - [ - 64596, - 1, - "هي" - ], - [ - 64597, - 1, - "يج" - ], - [ - 64598, - 1, - "يح" - ], - [ - 64599, - 1, - "يخ" - ], - [ - 64600, - 1, - "يم" - ], - [ - 64601, - 1, - "يى" - ], - [ - 64602, - 1, - "يي" - ], - [ - 64603, - 1, - "ذٰ" - ], - [ - 64604, - 1, - "رٰ" - ], - [ - 64605, - 1, - "ىٰ" - ], - [ - 64606, - 5, - " ٌّ" - ], - [ - 64607, - 5, - " ٍّ" - ], - [ - 64608, - 5, - " َّ" - ], - [ - 64609, - 5, - " ُّ" - ], - [ - 64610, - 5, - " ِّ" - ], - [ - 64611, - 5, - " ّٰ" - ], - [ - 64612, - 1, - "ئر" - ], - [ - 64613, - 1, - "ئز" - ], - [ - 64614, - 1, - "ئم" - ], - [ - 64615, - 1, - "ئن" - ], - [ - 64616, - 1, - "ئى" - ], - [ - 64617, - 1, - "ئي" - ], - [ - 64618, - 1, - "بر" - ], - [ - 64619, - 1, - "بز" - ], - [ - 64620, - 1, - "بم" - ], - [ - 64621, - 1, - "بن" - ], - [ - 64622, - 1, - "بى" - ], - [ - 64623, - 1, - "بي" - ], - [ - 64624, - 1, - "تر" - ], - [ - 64625, - 1, - "تز" - ], - [ - 64626, - 1, - "تم" - ], - [ - 64627, - 1, - "تن" - ], - [ - 64628, - 1, - "تى" - ], - [ - 64629, - 1, - "تي" - ], - [ - 64630, - 1, - "ثر" - ], - [ - 64631, - 1, - "ثز" - ], - [ - 64632, - 1, - "ثم" - ], - [ - 64633, - 1, - "ثن" - ], - [ - 64634, - 1, - "ثى" - ], - [ - 64635, - 1, - "ثي" - ], - [ - 64636, - 1, - "فى" - ], - [ - 64637, - 1, - "في" - ], - [ - 64638, - 1, - "قى" - ], - [ - 64639, - 1, - "قي" - ], - [ - 64640, - 1, - "كا" - ], - [ - 64641, - 1, - "كل" - ], - [ - 64642, - 1, - "كم" - ], - [ - 64643, - 1, - "كى" - ], - [ - 64644, - 1, - "كي" - ], - [ - 64645, - 1, - "لم" - ], - [ - 64646, - 1, - "لى" - ], - [ - 64647, - 1, - "لي" - ], - [ - 64648, - 1, - "ما" - ], - [ - 64649, - 1, - "مم" - ], - [ - 64650, - 1, - "نر" - ], - [ - 64651, - 1, - "نز" - ], - [ - 64652, - 1, - "نم" - ], - [ - 64653, - 1, - "نن" - ], - [ - 64654, - 1, - "نى" - ], - [ - 64655, - 1, - "ني" - ], - [ - 64656, - 1, - "ىٰ" - ], - [ - 64657, - 1, - "ير" - ], - [ - 64658, - 1, - "يز" - ], - [ - 64659, - 1, - "يم" - ], - [ - 64660, - 1, - "ين" - ], - [ - 64661, - 1, - "يى" - ], - [ - 64662, - 1, - "يي" - ], - [ - 64663, - 1, - "ئج" - ], - [ - 64664, - 1, - "ئح" - ], - [ - 64665, - 1, - "ئخ" - ], - [ - 64666, - 1, - "ئم" - ], - [ - 64667, - 1, - "ئه" - ], - [ - 64668, - 1, - "بج" - ], - [ - 64669, - 1, - "بح" - ], - [ - 64670, - 1, - "بخ" - ], - [ - 64671, - 1, - "بم" - ], - [ - 64672, - 1, - "به" - ], - [ - 64673, - 1, - "تج" - ], - [ - 64674, - 1, - "تح" - ], - [ - 64675, - 1, - "تخ" - ], - [ - 64676, - 1, - "تم" - ], - [ - 64677, - 1, - "ته" - ], - [ - 64678, - 1, - "ثم" - ], - [ - 64679, - 1, - "جح" - ], - [ - 64680, - 1, - "جم" - ], - [ - 64681, - 1, - "حج" - ], - [ - 64682, - 1, - "حم" - ], - [ - 64683, - 1, - "خج" - ], - [ - 64684, - 1, - "خم" - ], - [ - 64685, - 1, - "سج" - ], - [ - 64686, - 1, - "سح" - ], - [ - 64687, - 1, - "سخ" - ], - [ - 64688, - 1, - "سم" - ], - [ - 64689, - 1, - "صح" - ], - [ - 64690, - 1, - "صخ" - ], - [ - 64691, - 1, - "صم" - ], - [ - 64692, - 1, - "ضج" - ], - [ - 64693, - 1, - "ضح" - ], - [ - 64694, - 1, - "ضخ" - ], - [ - 64695, - 1, - "ضم" - ], - [ - 64696, - 1, - "طح" - ], - [ - 64697, - 1, - "ظم" - ], - [ - 64698, - 1, - "عج" - ], - [ - 64699, - 1, - "عم" - ], - [ - 64700, - 1, - "غج" - ], - [ - 64701, - 1, - "غم" - ], - [ - 64702, - 1, - "فج" - ], - [ - 64703, - 1, - "فح" - ], - [ - 64704, - 1, - "فخ" - ], - [ - 64705, - 1, - "فم" - ], - [ - 64706, - 1, - "قح" - ], - [ - 64707, - 1, - "قم" - ], - [ - 64708, - 1, - "كج" - ], - [ - 64709, - 1, - "كح" - ], - [ - 64710, - 1, - "كخ" - ], - [ - 64711, - 1, - "كل" - ], - [ - 64712, - 1, - "كم" - ], - [ - 64713, - 1, - "لج" - ], - [ - 64714, - 1, - "لح" - ], - [ - 64715, - 1, - "لخ" - ], - [ - 64716, - 1, - "لم" - ], - [ - 64717, - 1, - "له" - ], - [ - 64718, - 1, - "مج" - ], - [ - 64719, - 1, - "مح" - ], - [ - 64720, - 1, - "مخ" - ], - [ - 64721, - 1, - "مم" - ], - [ - 64722, - 1, - "نج" - ], - [ - 64723, - 1, - "نح" - ], - [ - 64724, - 1, - "نخ" - ], - [ - 64725, - 1, - "نم" - ], - [ - 64726, - 1, - "نه" - ], - [ - 64727, - 1, - "هج" - ], - [ - 64728, - 1, - "هم" - ], - [ - 64729, - 1, - "هٰ" - ], - [ - 64730, - 1, - "يج" - ], - [ - 64731, - 1, - "يح" - ], - [ - 64732, - 1, - "يخ" - ], - [ - 64733, - 1, - "يم" - ], - [ - 64734, - 1, - "يه" - ], - [ - 64735, - 1, - "ئم" - ], - [ - 64736, - 1, - "ئه" - ], - [ - 64737, - 1, - "بم" - ], - [ - 64738, - 1, - "به" - ], - [ - 64739, - 1, - "تم" - ], - [ - 64740, - 1, - "ته" - ], - [ - 64741, - 1, - "ثم" - ], - [ - 64742, - 1, - "ثه" - ], - [ - 64743, - 1, - "سم" - ], - [ - 64744, - 1, - "سه" - ], - [ - 64745, - 1, - "شم" - ], - [ - 64746, - 1, - "شه" - ], - [ - 64747, - 1, - "كل" - ], - [ - 64748, - 1, - "كم" - ], - [ - 64749, - 1, - "لم" - ], - [ - 64750, - 1, - "نم" - ], - [ - 64751, - 1, - "نه" - ], - [ - 64752, - 1, - "يم" - ], - [ - 64753, - 1, - "يه" - ], - [ - 64754, - 1, - "ـَّ" - ], - [ - 64755, - 1, - "ـُّ" - ], - [ - 64756, - 1, - "ـِّ" - ], - [ - 64757, - 1, - "طى" - ], - [ - 64758, - 1, - "طي" - ], - [ - 64759, - 1, - "عى" - ], - [ - 64760, - 1, - "عي" - ], - [ - 64761, - 1, - "غى" - ], - [ - 64762, - 1, - "غي" - ], - [ - 64763, - 1, - "سى" - ], - [ - 64764, - 1, - "سي" - ], - [ - 64765, - 1, - "شى" - ], - [ - 64766, - 1, - "شي" - ], - [ - 64767, - 1, - "حى" - ], - [ - 64768, - 1, - "حي" - ], - [ - 64769, - 1, - "جى" - ], - [ - 64770, - 1, - "جي" - ], - [ - 64771, - 1, - "خى" - ], - [ - 64772, - 1, - "خي" - ], - [ - 64773, - 1, - "صى" - ], - [ - 64774, - 1, - "صي" - ], - [ - 64775, - 1, - "ضى" - ], - [ - 64776, - 1, - "ضي" - ], - [ - 64777, - 1, - "شج" - ], - [ - 64778, - 1, - "شح" - ], - [ - 64779, - 1, - "شخ" - ], - [ - 64780, - 1, - "شم" - ], - [ - 64781, - 1, - "شر" - ], - [ - 64782, - 1, - "سر" - ], - [ - 64783, - 1, - "صر" - ], - [ - 64784, - 1, - "ضر" - ], - [ - 64785, - 1, - "طى" - ], - [ - 64786, - 1, - "طي" - ], - [ - 64787, - 1, - "عى" - ], - [ - 64788, - 1, - "عي" - ], - [ - 64789, - 1, - "غى" - ], - [ - 64790, - 1, - "غي" - ], - [ - 64791, - 1, - "سى" - ], - [ - 64792, - 1, - "سي" - ], - [ - 64793, - 1, - "شى" - ], - [ - 64794, - 1, - "شي" - ], - [ - 64795, - 1, - "حى" - ], - [ - 64796, - 1, - "حي" - ], - [ - 64797, - 1, - "جى" - ], - [ - 64798, - 1, - "جي" - ], - [ - 64799, - 1, - "خى" - ], - [ - 64800, - 1, - "خي" - ], - [ - 64801, - 1, - "صى" - ], - [ - 64802, - 1, - "صي" - ], - [ - 64803, - 1, - "ضى" - ], - [ - 64804, - 1, - "ضي" - ], - [ - 64805, - 1, - "شج" - ], - [ - 64806, - 1, - "شح" - ], - [ - 64807, - 1, - "شخ" - ], - [ - 64808, - 1, - "شم" - ], - [ - 64809, - 1, - "شر" - ], - [ - 64810, - 1, - "سر" - ], - [ - 64811, - 1, - "صر" - ], - [ - 64812, - 1, - "ضر" - ], - [ - 64813, - 1, - "شج" - ], - [ - 64814, - 1, - "شح" - ], - [ - 64815, - 1, - "شخ" - ], - [ - 64816, - 1, - "شم" - ], - [ - 64817, - 1, - "سه" - ], - [ - 64818, - 1, - "شه" - ], - [ - 64819, - 1, - "طم" - ], - [ - 64820, - 1, - "سج" - ], - [ - 64821, - 1, - "سح" - ], - [ - 64822, - 1, - "سخ" - ], - [ - 64823, - 1, - "شج" - ], - [ - 64824, - 1, - "شح" - ], - [ - 64825, - 1, - "شخ" - ], - [ - 64826, - 1, - "طم" - ], - [ - 64827, - 1, - "ظم" - ], - [ - [ - 64828, - 64829 - ], - 1, - "اً" - ], - [ - [ - 64830, - 64831 - ], - 2 - ], - [ - [ - 64832, - 64847 - ], - 2 - ], - [ - 64848, - 1, - "تجم" - ], - [ - [ - 64849, - 64850 - ], - 1, - "تحج" - ], - [ - 64851, - 1, - "تحم" - ], - [ - 64852, - 1, - "تخم" - ], - [ - 64853, - 1, - "تمج" - ], - [ - 64854, - 1, - "تمح" - ], - [ - 64855, - 1, - "تمخ" - ], - [ - [ - 64856, - 64857 - ], - 1, - "جمح" - ], - [ - 64858, - 1, - "حمي" - ], - [ - 64859, - 1, - "حمى" - ], - [ - 64860, - 1, - "سحج" - ], - [ - 64861, - 1, - "سجح" - ], - [ - 64862, - 1, - "سجى" - ], - [ - [ - 64863, - 64864 - ], - 1, - "سمح" - ], - [ - 64865, - 1, - "سمج" - ], - [ - [ - 64866, - 64867 - ], - 1, - "سمم" - ], - [ - [ - 64868, - 64869 - ], - 1, - "صحح" - ], - [ - 64870, - 1, - "صمم" - ], - [ - [ - 64871, - 64872 - ], - 1, - "شحم" - ], - [ - 64873, - 1, - "شجي" - ], - [ - [ - 64874, - 64875 - ], - 1, - "شمخ" - ], - [ - [ - 64876, - 64877 - ], - 1, - "شمم" - ], - [ - 64878, - 1, - "ضحى" - ], - [ - [ - 64879, - 64880 - ], - 1, - "ضخم" - ], - [ - [ - 64881, - 64882 - ], - 1, - "طمح" - ], - [ - 64883, - 1, - "طمم" - ], - [ - 64884, - 1, - "طمي" - ], - [ - 64885, - 1, - "عجم" - ], - [ - [ - 64886, - 64887 - ], - 1, - "عمم" - ], - [ - 64888, - 1, - "عمى" - ], - [ - 64889, - 1, - "غمم" - ], - [ - 64890, - 1, - "غمي" - ], - [ - 64891, - 1, - "غمى" - ], - [ - [ - 64892, - 64893 - ], - 1, - "فخم" - ], - [ - 64894, - 1, - "قمح" - ], - [ - 64895, - 1, - "قمم" - ], - [ - 64896, - 1, - "لحم" - ], - [ - 64897, - 1, - "لحي" - ], - [ - 64898, - 1, - "لحى" - ], - [ - [ - 64899, - 64900 - ], - 1, - "لجج" - ], - [ - [ - 64901, - 64902 - ], - 1, - "لخم" - ], - [ - [ - 64903, - 64904 - ], - 1, - "لمح" - ], - [ - 64905, - 1, - "محج" - ], - [ - 64906, - 1, - "محم" - ], - [ - 64907, - 1, - "محي" - ], - [ - 64908, - 1, - "مجح" - ], - [ - 64909, - 1, - "مجم" - ], - [ - 64910, - 1, - "مخج" - ], - [ - 64911, - 1, - "مخم" - ], - [ - [ - 64912, - 64913 - ], - 3 - ], - [ - 64914, - 1, - "مجخ" - ], - [ - 64915, - 1, - "همج" - ], - [ - 64916, - 1, - "همم" - ], - [ - 64917, - 1, - "نحم" - ], - [ - 64918, - 1, - "نحى" - ], - [ - [ - 64919, - 64920 - ], - 1, - "نجم" - ], - [ - 64921, - 1, - "نجى" - ], - [ - 64922, - 1, - "نمي" - ], - [ - 64923, - 1, - "نمى" - ], - [ - [ - 64924, - 64925 - ], - 1, - "يمم" - ], - [ - 64926, - 1, - "بخي" - ], - [ - 64927, - 1, - "تجي" - ], - [ - 64928, - 1, - "تجى" - ], - [ - 64929, - 1, - "تخي" - ], - [ - 64930, - 1, - "تخى" - ], - [ - 64931, - 1, - "تمي" - ], - [ - 64932, - 1, - "تمى" - ], - [ - 64933, - 1, - "جمي" - ], - [ - 64934, - 1, - "جحى" - ], - [ - 64935, - 1, - "جمى" - ], - [ - 64936, - 1, - "سخى" - ], - [ - 64937, - 1, - "صحي" - ], - [ - 64938, - 1, - "شحي" - ], - [ - 64939, - 1, - "ضحي" - ], - [ - 64940, - 1, - "لجي" - ], - [ - 64941, - 1, - "لمي" - ], - [ - 64942, - 1, - "يحي" - ], - [ - 64943, - 1, - "يجي" - ], - [ - 64944, - 1, - "يمي" - ], - [ - 64945, - 1, - "ممي" - ], - [ - 64946, - 1, - "قمي" - ], - [ - 64947, - 1, - "نحي" - ], - [ - 64948, - 1, - "قمح" - ], - [ - 64949, - 1, - "لحم" - ], - [ - 64950, - 1, - "عمي" - ], - [ - 64951, - 1, - "كمي" - ], - [ - 64952, - 1, - "نجح" - ], - [ - 64953, - 1, - "مخي" - ], - [ - 64954, - 1, - "لجم" - ], - [ - 64955, - 1, - "كمم" - ], - [ - 64956, - 1, - "لجم" - ], - [ - 64957, - 1, - "نجح" - ], - [ - 64958, - 1, - "جحي" - ], - [ - 64959, - 1, - "حجي" - ], - [ - 64960, - 1, - "مجي" - ], - [ - 64961, - 1, - "فمي" - ], - [ - 64962, - 1, - "بحي" - ], - [ - 64963, - 1, - "كمم" - ], - [ - 64964, - 1, - "عجم" - ], - [ - 64965, - 1, - "صمم" - ], - [ - 64966, - 1, - "سخي" - ], - [ - 64967, - 1, - "نجي" - ], - [ - [ - 64968, - 64974 - ], - 3 - ], - [ - 64975, - 2 - ], - [ - [ - 64976, - 65007 - ], - 3 - ], - [ - 65008, - 1, - "صلے" - ], - [ - 65009, - 1, - "قلے" - ], - [ - 65010, - 1, - "الله" - ], - [ - 65011, - 1, - "اكبر" - ], - [ - 65012, - 1, - "محمد" - ], - [ - 65013, - 1, - "صلعم" - ], - [ - 65014, - 1, - "رسول" - ], - [ - 65015, - 1, - "عليه" - ], - [ - 65016, - 1, - "وسلم" - ], - [ - 65017, - 1, - "صلى" - ], - [ - 65018, - 5, - "صلى الله عليه وسلم" - ], - [ - 65019, - 5, - "جل جلاله" - ], - [ - 65020, - 1, - "ریال" - ], - [ - 65021, - 2 - ], - [ - [ - 65022, - 65023 - ], - 2 - ], - [ - [ - 65024, - 65039 - ], - 7 - ], - [ - 65040, - 5, - "," - ], - [ - 65041, - 1, - "、" - ], - [ - 65042, - 3 - ], - [ - 65043, - 5, - ":" - ], - [ - 65044, - 5, - ";" - ], - [ - 65045, - 5, - "!" - ], - [ - 65046, - 5, - "?" - ], - [ - 65047, - 1, - "〖" - ], - [ - 65048, - 1, - "〗" - ], - [ - 65049, - 3 - ], - [ - [ - 65050, - 65055 - ], - 3 - ], - [ - [ - 65056, - 65059 - ], - 2 - ], - [ - [ - 65060, - 65062 - ], - 2 - ], - [ - [ - 65063, - 65069 - ], - 2 - ], - [ - [ - 65070, - 65071 - ], - 2 - ], - [ - 65072, - 3 - ], - [ - 65073, - 1, - "—" - ], - [ - 65074, - 1, - "–" - ], - [ - [ - 65075, - 65076 - ], - 5, - "_" - ], - [ - 65077, - 5, - "(" - ], - [ - 65078, - 5, - ")" - ], - [ - 65079, - 5, - "{" - ], - [ - 65080, - 5, - "}" - ], - [ - 65081, - 1, - "〔" - ], - [ - 65082, - 1, - "〕" - ], - [ - 65083, - 1, - "【" - ], - [ - 65084, - 1, - "】" - ], - [ - 65085, - 1, - "《" - ], - [ - 65086, - 1, - "》" - ], - [ - 65087, - 1, - "〈" - ], - [ - 65088, - 1, - "〉" - ], - [ - 65089, - 1, - "「" - ], - [ - 65090, - 1, - "」" - ], - [ - 65091, - 1, - "『" - ], - [ - 65092, - 1, - "』" - ], - [ - [ - 65093, - 65094 - ], - 2 - ], - [ - 65095, - 5, - "[" - ], - [ - 65096, - 5, - "]" - ], - [ - [ - 65097, - 65100 - ], - 5, - " ̅" - ], - [ - [ - 65101, - 65103 - ], - 5, - "_" - ], - [ - 65104, - 5, - "," - ], - [ - 65105, - 1, - "、" - ], - [ - 65106, - 3 - ], - [ - 65107, - 3 - ], - [ - 65108, - 5, - ";" - ], - [ - 65109, - 5, - ":" - ], - [ - 65110, - 5, - "?" - ], - [ - 65111, - 5, - "!" - ], - [ - 65112, - 1, - "—" - ], - [ - 65113, - 5, - "(" - ], - [ - 65114, - 5, - ")" - ], - [ - 65115, - 5, - "{" - ], - [ - 65116, - 5, - "}" - ], - [ - 65117, - 1, - "〔" - ], - [ - 65118, - 1, - "〕" - ], - [ - 65119, - 5, - "#" - ], - [ - 65120, - 5, - "&" - ], - [ - 65121, - 5, - "*" - ], - [ - 65122, - 5, - "+" - ], - [ - 65123, - 1, - "-" - ], - [ - 65124, - 5, - "<" - ], - [ - 65125, - 5, - ">" - ], - [ - 65126, - 5, - "=" - ], - [ - 65127, - 3 - ], - [ - 65128, - 5, - "\\" - ], - [ - 65129, - 5, - "$" - ], - [ - 65130, - 5, - "%" - ], - [ - 65131, - 5, - "@" - ], - [ - [ - 65132, - 65135 - ], - 3 - ], - [ - 65136, - 5, - " ً" - ], - [ - 65137, - 1, - "ـً" - ], - [ - 65138, - 5, - " ٌ" - ], - [ - 65139, - 2 - ], - [ - 65140, - 5, - " ٍ" - ], - [ - 65141, - 3 - ], - [ - 65142, - 5, - " َ" - ], - [ - 65143, - 1, - "ـَ" - ], - [ - 65144, - 5, - " ُ" - ], - [ - 65145, - 1, - "ـُ" - ], - [ - 65146, - 5, - " ِ" - ], - [ - 65147, - 1, - "ـِ" - ], - [ - 65148, - 5, - " ّ" - ], - [ - 65149, - 1, - "ـّ" - ], - [ - 65150, - 5, - " ْ" - ], - [ - 65151, - 1, - "ـْ" - ], - [ - 65152, - 1, - "ء" - ], - [ - [ - 65153, - 65154 - ], - 1, - "آ" - ], - [ - [ - 65155, - 65156 - ], - 1, - "أ" - ], - [ - [ - 65157, - 65158 - ], - 1, - "ؤ" - ], - [ - [ - 65159, - 65160 - ], - 1, - "إ" - ], - [ - [ - 65161, - 65164 - ], - 1, - "ئ" - ], - [ - [ - 65165, - 65166 - ], - 1, - "ا" - ], - [ - [ - 65167, - 65170 - ], - 1, - "ب" - ], - [ - [ - 65171, - 65172 - ], - 1, - "ة" - ], - [ - [ - 65173, - 65176 - ], - 1, - "ت" - ], - [ - [ - 65177, - 65180 - ], - 1, - "ث" - ], - [ - [ - 65181, - 65184 - ], - 1, - "ج" - ], - [ - [ - 65185, - 65188 - ], - 1, - "ح" - ], - [ - [ - 65189, - 65192 - ], - 1, - "خ" - ], - [ - [ - 65193, - 65194 - ], - 1, - "د" - ], - [ - [ - 65195, - 65196 - ], - 1, - "ذ" - ], - [ - [ - 65197, - 65198 - ], - 1, - "ر" - ], - [ - [ - 65199, - 65200 - ], - 1, - "ز" - ], - [ - [ - 65201, - 65204 - ], - 1, - "س" - ], - [ - [ - 65205, - 65208 - ], - 1, - "ش" - ], - [ - [ - 65209, - 65212 - ], - 1, - "ص" - ], - [ - [ - 65213, - 65216 - ], - 1, - "ض" - ], - [ - [ - 65217, - 65220 - ], - 1, - "ط" - ], - [ - [ - 65221, - 65224 - ], - 1, - "ظ" - ], - [ - [ - 65225, - 65228 - ], - 1, - "ع" - ], - [ - [ - 65229, - 65232 - ], - 1, - "غ" - ], - [ - [ - 65233, - 65236 - ], - 1, - "ف" - ], - [ - [ - 65237, - 65240 - ], - 1, - "ق" - ], - [ - [ - 65241, - 65244 - ], - 1, - "ك" - ], - [ - [ - 65245, - 65248 - ], - 1, - "ل" - ], - [ - [ - 65249, - 65252 - ], - 1, - "م" - ], - [ - [ - 65253, - 65256 - ], - 1, - "ن" - ], - [ - [ - 65257, - 65260 - ], - 1, - "ه" - ], - [ - [ - 65261, - 65262 - ], - 1, - "و" - ], - [ - [ - 65263, - 65264 - ], - 1, - "ى" - ], - [ - [ - 65265, - 65268 - ], - 1, - "ي" - ], - [ - [ - 65269, - 65270 - ], - 1, - "لآ" - ], - [ - [ - 65271, - 65272 - ], - 1, - "لأ" - ], - [ - [ - 65273, - 65274 - ], - 1, - "لإ" - ], - [ - [ - 65275, - 65276 - ], - 1, - "لا" - ], - [ - [ - 65277, - 65278 - ], - 3 - ], - [ - 65279, - 7 - ], - [ - 65280, - 3 - ], - [ - 65281, - 5, - "!" - ], - [ - 65282, - 5, - "\"" - ], - [ - 65283, - 5, - "#" - ], - [ - 65284, - 5, - "$" - ], - [ - 65285, - 5, - "%" - ], - [ - 65286, - 5, - "&" - ], - [ - 65287, - 5, - "'" - ], - [ - 65288, - 5, - "(" - ], - [ - 65289, - 5, - ")" - ], - [ - 65290, - 5, - "*" - ], - [ - 65291, - 5, - "+" - ], - [ - 65292, - 5, - "," - ], - [ - 65293, - 1, - "-" - ], - [ - 65294, - 1, - "." - ], - [ - 65295, - 5, - "/" - ], - [ - 65296, - 1, - "0" - ], - [ - 65297, - 1, - "1" - ], - [ - 65298, - 1, - "2" - ], - [ - 65299, - 1, - "3" - ], - [ - 65300, - 1, - "4" - ], - [ - 65301, - 1, - "5" - ], - [ - 65302, - 1, - "6" - ], - [ - 65303, - 1, - "7" - ], - [ - 65304, - 1, - "8" - ], - [ - 65305, - 1, - "9" - ], - [ - 65306, - 5, - ":" - ], - [ - 65307, - 5, - ";" - ], - [ - 65308, - 5, - "<" - ], - [ - 65309, - 5, - "=" - ], - [ - 65310, - 5, - ">" - ], - [ - 65311, - 5, - "?" - ], - [ - 65312, - 5, - "@" - ], - [ - 65313, - 1, - "a" - ], - [ - 65314, - 1, - "b" - ], - [ - 65315, - 1, - "c" - ], - [ - 65316, - 1, - "d" - ], - [ - 65317, - 1, - "e" - ], - [ - 65318, - 1, - "f" - ], - [ - 65319, - 1, - "g" - ], - [ - 65320, - 1, - "h" - ], - [ - 65321, - 1, - "i" - ], - [ - 65322, - 1, - "j" - ], - [ - 65323, - 1, - "k" - ], - [ - 65324, - 1, - "l" - ], - [ - 65325, - 1, - "m" - ], - [ - 65326, - 1, - "n" - ], - [ - 65327, - 1, - "o" - ], - [ - 65328, - 1, - "p" - ], - [ - 65329, - 1, - "q" - ], - [ - 65330, - 1, - "r" - ], - [ - 65331, - 1, - "s" - ], - [ - 65332, - 1, - "t" - ], - [ - 65333, - 1, - "u" - ], - [ - 65334, - 1, - "v" - ], - [ - 65335, - 1, - "w" - ], - [ - 65336, - 1, - "x" - ], - [ - 65337, - 1, - "y" - ], - [ - 65338, - 1, - "z" - ], - [ - 65339, - 5, - "[" - ], - [ - 65340, - 5, - "\\" - ], - [ - 65341, - 5, - "]" - ], - [ - 65342, - 5, - "^" - ], - [ - 65343, - 5, - "_" - ], - [ - 65344, - 5, - "`" - ], - [ - 65345, - 1, - "a" - ], - [ - 65346, - 1, - "b" - ], - [ - 65347, - 1, - "c" - ], - [ - 65348, - 1, - "d" - ], - [ - 65349, - 1, - "e" - ], - [ - 65350, - 1, - "f" - ], - [ - 65351, - 1, - "g" - ], - [ - 65352, - 1, - "h" - ], - [ - 65353, - 1, - "i" - ], - [ - 65354, - 1, - "j" - ], - [ - 65355, - 1, - "k" - ], - [ - 65356, - 1, - "l" - ], - [ - 65357, - 1, - "m" - ], - [ - 65358, - 1, - "n" - ], - [ - 65359, - 1, - "o" - ], - [ - 65360, - 1, - "p" - ], - [ - 65361, - 1, - "q" - ], - [ - 65362, - 1, - "r" - ], - [ - 65363, - 1, - "s" - ], - [ - 65364, - 1, - "t" - ], - [ - 65365, - 1, - "u" - ], - [ - 65366, - 1, - "v" - ], - [ - 65367, - 1, - "w" - ], - [ - 65368, - 1, - "x" - ], - [ - 65369, - 1, - "y" - ], - [ - 65370, - 1, - "z" - ], - [ - 65371, - 5, - "{" - ], - [ - 65372, - 5, - "|" - ], - [ - 65373, - 5, - "}" - ], - [ - 65374, - 5, - "~" - ], - [ - 65375, - 1, - "⦅" - ], - [ - 65376, - 1, - "⦆" - ], - [ - 65377, - 1, - "." - ], - [ - 65378, - 1, - "「" - ], - [ - 65379, - 1, - "」" - ], - [ - 65380, - 1, - "、" - ], - [ - 65381, - 1, - "・" - ], - [ - 65382, - 1, - "ヲ" - ], - [ - 65383, - 1, - "ァ" - ], - [ - 65384, - 1, - "ィ" - ], - [ - 65385, - 1, - "ゥ" - ], - [ - 65386, - 1, - "ェ" - ], - [ - 65387, - 1, - "ォ" - ], - [ - 65388, - 1, - "ャ" - ], - [ - 65389, - 1, - "ュ" - ], - [ - 65390, - 1, - "ョ" - ], - [ - 65391, - 1, - "ッ" - ], - [ - 65392, - 1, - "ー" - ], - [ - 65393, - 1, - "ア" - ], - [ - 65394, - 1, - "イ" - ], - [ - 65395, - 1, - "ウ" - ], - [ - 65396, - 1, - "エ" - ], - [ - 65397, - 1, - "オ" - ], - [ - 65398, - 1, - "カ" - ], - [ - 65399, - 1, - "キ" - ], - [ - 65400, - 1, - "ク" - ], - [ - 65401, - 1, - "ケ" - ], - [ - 65402, - 1, - "コ" - ], - [ - 65403, - 1, - "サ" - ], - [ - 65404, - 1, - "シ" - ], - [ - 65405, - 1, - "ス" - ], - [ - 65406, - 1, - "セ" - ], - [ - 65407, - 1, - "ソ" - ], - [ - 65408, - 1, - "タ" - ], - [ - 65409, - 1, - "チ" - ], - [ - 65410, - 1, - "ツ" - ], - [ - 65411, - 1, - "テ" - ], - [ - 65412, - 1, - "ト" - ], - [ - 65413, - 1, - "ナ" - ], - [ - 65414, - 1, - "ニ" - ], - [ - 65415, - 1, - "ヌ" - ], - [ - 65416, - 1, - "ネ" - ], - [ - 65417, - 1, - "ノ" - ], - [ - 65418, - 1, - "ハ" - ], - [ - 65419, - 1, - "ヒ" - ], - [ - 65420, - 1, - "フ" - ], - [ - 65421, - 1, - "ヘ" - ], - [ - 65422, - 1, - "ホ" - ], - [ - 65423, - 1, - "マ" - ], - [ - 65424, - 1, - "ミ" - ], - [ - 65425, - 1, - "ム" - ], - [ - 65426, - 1, - "メ" - ], - [ - 65427, - 1, - "モ" - ], - [ - 65428, - 1, - "ヤ" - ], - [ - 65429, - 1, - "ユ" - ], - [ - 65430, - 1, - "ヨ" - ], - [ - 65431, - 1, - "ラ" - ], - [ - 65432, - 1, - "リ" - ], - [ - 65433, - 1, - "ル" - ], - [ - 65434, - 1, - "レ" - ], - [ - 65435, - 1, - "ロ" - ], - [ - 65436, - 1, - "ワ" - ], - [ - 65437, - 1, - "ン" - ], - [ - 65438, - 1, - "゙" - ], - [ - 65439, - 1, - "゚" - ], - [ - 65440, - 3 - ], - [ - 65441, - 1, - "ᄀ" - ], - [ - 65442, - 1, - "ᄁ" - ], - [ - 65443, - 1, - "ᆪ" - ], - [ - 65444, - 1, - "ᄂ" - ], - [ - 65445, - 1, - "ᆬ" - ], - [ - 65446, - 1, - "ᆭ" - ], - [ - 65447, - 1, - "ᄃ" - ], - [ - 65448, - 1, - "ᄄ" - ], - [ - 65449, - 1, - "ᄅ" - ], - [ - 65450, - 1, - "ᆰ" - ], - [ - 65451, - 1, - "ᆱ" - ], - [ - 65452, - 1, - "ᆲ" - ], - [ - 65453, - 1, - "ᆳ" - ], - [ - 65454, - 1, - "ᆴ" - ], - [ - 65455, - 1, - "ᆵ" - ], - [ - 65456, - 1, - "ᄚ" - ], - [ - 65457, - 1, - "ᄆ" - ], - [ - 65458, - 1, - "ᄇ" - ], - [ - 65459, - 1, - "ᄈ" - ], - [ - 65460, - 1, - "ᄡ" - ], - [ - 65461, - 1, - "ᄉ" - ], - [ - 65462, - 1, - "ᄊ" - ], - [ - 65463, - 1, - "ᄋ" - ], - [ - 65464, - 1, - "ᄌ" - ], - [ - 65465, - 1, - "ᄍ" - ], - [ - 65466, - 1, - "ᄎ" - ], - [ - 65467, - 1, - "ᄏ" - ], - [ - 65468, - 1, - "ᄐ" - ], - [ - 65469, - 1, - "ᄑ" - ], - [ - 65470, - 1, - "ᄒ" - ], - [ - [ - 65471, - 65473 - ], - 3 - ], - [ - 65474, - 1, - "ᅡ" - ], - [ - 65475, - 1, - "ᅢ" - ], - [ - 65476, - 1, - "ᅣ" - ], - [ - 65477, - 1, - "ᅤ" - ], - [ - 65478, - 1, - "ᅥ" - ], - [ - 65479, - 1, - "ᅦ" - ], - [ - [ - 65480, - 65481 - ], - 3 - ], - [ - 65482, - 1, - "ᅧ" - ], - [ - 65483, - 1, - "ᅨ" - ], - [ - 65484, - 1, - "ᅩ" - ], - [ - 65485, - 1, - "ᅪ" - ], - [ - 65486, - 1, - "ᅫ" - ], - [ - 65487, - 1, - "ᅬ" - ], - [ - [ - 65488, - 65489 - ], - 3 - ], - [ - 65490, - 1, - "ᅭ" - ], - [ - 65491, - 1, - "ᅮ" - ], - [ - 65492, - 1, - "ᅯ" - ], - [ - 65493, - 1, - "ᅰ" - ], - [ - 65494, - 1, - "ᅱ" - ], - [ - 65495, - 1, - "ᅲ" - ], - [ - [ - 65496, - 65497 - ], - 3 - ], - [ - 65498, - 1, - "ᅳ" - ], - [ - 65499, - 1, - "ᅴ" - ], - [ - 65500, - 1, - "ᅵ" - ], - [ - [ - 65501, - 65503 - ], - 3 - ], - [ - 65504, - 1, - "¢" - ], - [ - 65505, - 1, - "£" - ], - [ - 65506, - 1, - "¬" - ], - [ - 65507, - 5, - " ̄" - ], - [ - 65508, - 1, - "¦" - ], - [ - 65509, - 1, - "¥" - ], - [ - 65510, - 1, - "₩" - ], - [ - 65511, - 3 - ], - [ - 65512, - 1, - "│" - ], - [ - 65513, - 1, - "←" - ], - [ - 65514, - 1, - "↑" - ], - [ - 65515, - 1, - "→" - ], - [ - 65516, - 1, - "↓" - ], - [ - 65517, - 1, - "■" - ], - [ - 65518, - 1, - "○" - ], - [ - [ - 65519, - 65528 - ], - 3 - ], - [ - [ - 65529, - 65531 - ], - 3 - ], - [ - 65532, - 3 - ], - [ - 65533, - 3 - ], - [ - [ - 65534, - 65535 - ], - 3 - ], - [ - [ - 65536, - 65547 - ], - 2 - ], - [ - 65548, - 3 - ], - [ - [ - 65549, - 65574 - ], - 2 - ], - [ - 65575, - 3 - ], - [ - [ - 65576, - 65594 - ], - 2 - ], - [ - 65595, - 3 - ], - [ - [ - 65596, - 65597 - ], - 2 - ], - [ - 65598, - 3 - ], - [ - [ - 65599, - 65613 - ], - 2 - ], - [ - [ - 65614, - 65615 - ], - 3 - ], - [ - [ - 65616, - 65629 - ], - 2 - ], - [ - [ - 65630, - 65663 - ], - 3 - ], - [ - [ - 65664, - 65786 - ], - 2 - ], - [ - [ - 65787, - 65791 - ], - 3 - ], - [ - [ - 65792, - 65794 - ], - 2 - ], - [ - [ - 65795, - 65798 - ], - 3 - ], - [ - [ - 65799, - 65843 - ], - 2 - ], - [ - [ - 65844, - 65846 - ], - 3 - ], - [ - [ - 65847, - 65855 - ], - 2 - ], - [ - [ - 65856, - 65930 - ], - 2 - ], - [ - [ - 65931, - 65932 - ], - 2 - ], - [ - [ - 65933, - 65934 - ], - 2 - ], - [ - 65935, - 3 - ], - [ - [ - 65936, - 65947 - ], - 2 - ], - [ - 65948, - 2 - ], - [ - [ - 65949, - 65951 - ], - 3 - ], - [ - 65952, - 2 - ], - [ - [ - 65953, - 65999 - ], - 3 - ], - [ - [ - 66000, - 66044 - ], - 2 - ], - [ - 66045, - 2 - ], - [ - [ - 66046, - 66175 - ], - 3 - ], - [ - [ - 66176, - 66204 - ], - 2 - ], - [ - [ - 66205, - 66207 - ], - 3 - ], - [ - [ - 66208, - 66256 - ], - 2 - ], - [ - [ - 66257, - 66271 - ], - 3 - ], - [ - 66272, - 2 - ], - [ - [ - 66273, - 66299 - ], - 2 - ], - [ - [ - 66300, - 66303 - ], - 3 - ], - [ - [ - 66304, - 66334 - ], - 2 - ], - [ - 66335, - 2 - ], - [ - [ - 66336, - 66339 - ], - 2 - ], - [ - [ - 66340, - 66348 - ], - 3 - ], - [ - [ - 66349, - 66351 - ], - 2 - ], - [ - [ - 66352, - 66368 - ], - 2 - ], - [ - 66369, - 2 - ], - [ - [ - 66370, - 66377 - ], - 2 - ], - [ - 66378, - 2 - ], - [ - [ - 66379, - 66383 - ], - 3 - ], - [ - [ - 66384, - 66426 - ], - 2 - ], - [ - [ - 66427, - 66431 - ], - 3 - ], - [ - [ - 66432, - 66461 - ], - 2 - ], - [ - 66462, - 3 - ], - [ - 66463, - 2 - ], - [ - [ - 66464, - 66499 - ], - 2 - ], - [ - [ - 66500, - 66503 - ], - 3 - ], - [ - [ - 66504, - 66511 - ], - 2 - ], - [ - [ - 66512, - 66517 - ], - 2 - ], - [ - [ - 66518, - 66559 - ], - 3 - ], - [ - 66560, - 1, - "𐐨" - ], - [ - 66561, - 1, - "𐐩" - ], - [ - 66562, - 1, - "𐐪" - ], - [ - 66563, - 1, - "𐐫" - ], - [ - 66564, - 1, - "𐐬" - ], - [ - 66565, - 1, - "𐐭" - ], - [ - 66566, - 1, - "𐐮" - ], - [ - 66567, - 1, - "𐐯" - ], - [ - 66568, - 1, - "𐐰" - ], - [ - 66569, - 1, - "𐐱" - ], - [ - 66570, - 1, - "𐐲" - ], - [ - 66571, - 1, - "𐐳" - ], - [ - 66572, - 1, - "𐐴" - ], - [ - 66573, - 1, - "𐐵" - ], - [ - 66574, - 1, - "𐐶" - ], - [ - 66575, - 1, - "𐐷" - ], - [ - 66576, - 1, - "𐐸" - ], - [ - 66577, - 1, - "𐐹" - ], - [ - 66578, - 1, - "𐐺" - ], - [ - 66579, - 1, - "𐐻" - ], - [ - 66580, - 1, - "𐐼" - ], - [ - 66581, - 1, - "𐐽" - ], - [ - 66582, - 1, - "𐐾" - ], - [ - 66583, - 1, - "𐐿" - ], - [ - 66584, - 1, - "𐑀" - ], - [ - 66585, - 1, - "𐑁" - ], - [ - 66586, - 1, - "𐑂" - ], - [ - 66587, - 1, - "𐑃" - ], - [ - 66588, - 1, - "𐑄" - ], - [ - 66589, - 1, - "𐑅" - ], - [ - 66590, - 1, - "𐑆" - ], - [ - 66591, - 1, - "𐑇" - ], - [ - 66592, - 1, - "𐑈" - ], - [ - 66593, - 1, - "𐑉" - ], - [ - 66594, - 1, - "𐑊" - ], - [ - 66595, - 1, - "𐑋" - ], - [ - 66596, - 1, - "𐑌" - ], - [ - 66597, - 1, - "𐑍" - ], - [ - 66598, - 1, - "𐑎" - ], - [ - 66599, - 1, - "𐑏" - ], - [ - [ - 66600, - 66637 - ], - 2 - ], - [ - [ - 66638, - 66717 - ], - 2 - ], - [ - [ - 66718, - 66719 - ], - 3 - ], - [ - [ - 66720, - 66729 - ], - 2 - ], - [ - [ - 66730, - 66735 - ], - 3 - ], - [ - 66736, - 1, - "𐓘" - ], - [ - 66737, - 1, - "𐓙" - ], - [ - 66738, - 1, - "𐓚" - ], - [ - 66739, - 1, - "𐓛" - ], - [ - 66740, - 1, - "𐓜" - ], - [ - 66741, - 1, - "𐓝" - ], - [ - 66742, - 1, - "𐓞" - ], - [ - 66743, - 1, - "𐓟" - ], - [ - 66744, - 1, - "𐓠" - ], - [ - 66745, - 1, - "𐓡" - ], - [ - 66746, - 1, - "𐓢" - ], - [ - 66747, - 1, - "𐓣" - ], - [ - 66748, - 1, - "𐓤" - ], - [ - 66749, - 1, - "𐓥" - ], - [ - 66750, - 1, - "𐓦" - ], - [ - 66751, - 1, - "𐓧" - ], - [ - 66752, - 1, - "𐓨" - ], - [ - 66753, - 1, - "𐓩" - ], - [ - 66754, - 1, - "𐓪" - ], - [ - 66755, - 1, - "𐓫" - ], - [ - 66756, - 1, - "𐓬" - ], - [ - 66757, - 1, - "𐓭" - ], - [ - 66758, - 1, - "𐓮" - ], - [ - 66759, - 1, - "𐓯" - ], - [ - 66760, - 1, - "𐓰" - ], - [ - 66761, - 1, - "𐓱" - ], - [ - 66762, - 1, - "𐓲" - ], - [ - 66763, - 1, - "𐓳" - ], - [ - 66764, - 1, - "𐓴" - ], - [ - 66765, - 1, - "𐓵" - ], - [ - 66766, - 1, - "𐓶" - ], - [ - 66767, - 1, - "𐓷" - ], - [ - 66768, - 1, - "𐓸" - ], - [ - 66769, - 1, - "𐓹" - ], - [ - 66770, - 1, - "𐓺" - ], - [ - 66771, - 1, - "𐓻" - ], - [ - [ - 66772, - 66775 - ], - 3 - ], - [ - [ - 66776, - 66811 - ], - 2 - ], - [ - [ - 66812, - 66815 - ], - 3 - ], - [ - [ - 66816, - 66855 - ], - 2 - ], - [ - [ - 66856, - 66863 - ], - 3 - ], - [ - [ - 66864, - 66915 - ], - 2 - ], - [ - [ - 66916, - 66926 - ], - 3 - ], - [ - 66927, - 2 - ], - [ - 66928, - 1, - "𐖗" - ], - [ - 66929, - 1, - "𐖘" - ], - [ - 66930, - 1, - "𐖙" - ], - [ - 66931, - 1, - "𐖚" - ], - [ - 66932, - 1, - "𐖛" - ], - [ - 66933, - 1, - "𐖜" - ], - [ - 66934, - 1, - "𐖝" - ], - [ - 66935, - 1, - "𐖞" - ], - [ - 66936, - 1, - "𐖟" - ], - [ - 66937, - 1, - "𐖠" - ], - [ - 66938, - 1, - "𐖡" - ], - [ - 66939, - 3 - ], - [ - 66940, - 1, - "𐖣" - ], - [ - 66941, - 1, - "𐖤" - ], - [ - 66942, - 1, - "𐖥" - ], - [ - 66943, - 1, - "𐖦" - ], - [ - 66944, - 1, - "𐖧" - ], - [ - 66945, - 1, - "𐖨" - ], - [ - 66946, - 1, - "𐖩" - ], - [ - 66947, - 1, - "𐖪" - ], - [ - 66948, - 1, - "𐖫" - ], - [ - 66949, - 1, - "𐖬" - ], - [ - 66950, - 1, - "𐖭" - ], - [ - 66951, - 1, - "𐖮" - ], - [ - 66952, - 1, - "𐖯" - ], - [ - 66953, - 1, - "𐖰" - ], - [ - 66954, - 1, - "𐖱" - ], - [ - 66955, - 3 - ], - [ - 66956, - 1, - "𐖳" - ], - [ - 66957, - 1, - "𐖴" - ], - [ - 66958, - 1, - "𐖵" - ], - [ - 66959, - 1, - "𐖶" - ], - [ - 66960, - 1, - "𐖷" - ], - [ - 66961, - 1, - "𐖸" - ], - [ - 66962, - 1, - "𐖹" - ], - [ - 66963, - 3 - ], - [ - 66964, - 1, - "𐖻" - ], - [ - 66965, - 1, - "𐖼" - ], - [ - 66966, - 3 - ], - [ - [ - 66967, - 66977 - ], - 2 - ], - [ - 66978, - 3 - ], - [ - [ - 66979, - 66993 - ], - 2 - ], - [ - 66994, - 3 - ], - [ - [ - 66995, - 67001 - ], - 2 - ], - [ - 67002, - 3 - ], - [ - [ - 67003, - 67004 - ], - 2 - ], - [ - [ - 67005, - 67071 - ], - 3 - ], - [ - [ - 67072, - 67382 - ], - 2 - ], - [ - [ - 67383, - 67391 - ], - 3 - ], - [ - [ - 67392, - 67413 - ], - 2 - ], - [ - [ - 67414, - 67423 - ], - 3 - ], - [ - [ - 67424, - 67431 - ], - 2 - ], - [ - [ - 67432, - 67455 - ], - 3 - ], - [ - 67456, - 2 - ], - [ - 67457, - 1, - "ː" - ], - [ - 67458, - 1, - "ˑ" - ], - [ - 67459, - 1, - "æ" - ], - [ - 67460, - 1, - "ʙ" - ], - [ - 67461, - 1, - "ɓ" - ], - [ - 67462, - 3 - ], - [ - 67463, - 1, - "ʣ" - ], - [ - 67464, - 1, - "ꭦ" - ], - [ - 67465, - 1, - "ʥ" - ], - [ - 67466, - 1, - "ʤ" - ], - [ - 67467, - 1, - "ɖ" - ], - [ - 67468, - 1, - "ɗ" - ], - [ - 67469, - 1, - "ᶑ" - ], - [ - 67470, - 1, - "ɘ" - ], - [ - 67471, - 1, - "ɞ" - ], - [ - 67472, - 1, - "ʩ" - ], - [ - 67473, - 1, - "ɤ" - ], - [ - 67474, - 1, - "ɢ" - ], - [ - 67475, - 1, - "ɠ" - ], - [ - 67476, - 1, - "ʛ" - ], - [ - 67477, - 1, - "ħ" - ], - [ - 67478, - 1, - "ʜ" - ], - [ - 67479, - 1, - "ɧ" - ], - [ - 67480, - 1, - "ʄ" - ], - [ - 67481, - 1, - "ʪ" - ], - [ - 67482, - 1, - "ʫ" - ], - [ - 67483, - 1, - "ɬ" - ], - [ - 67484, - 1, - "𝼄" - ], - [ - 67485, - 1, - "ꞎ" - ], - [ - 67486, - 1, - "ɮ" - ], - [ - 67487, - 1, - "𝼅" - ], - [ - 67488, - 1, - "ʎ" - ], - [ - 67489, - 1, - "𝼆" - ], - [ - 67490, - 1, - "ø" - ], - [ - 67491, - 1, - "ɶ" - ], - [ - 67492, - 1, - "ɷ" - ], - [ - 67493, - 1, - "q" - ], - [ - 67494, - 1, - "ɺ" - ], - [ - 67495, - 1, - "𝼈" - ], - [ - 67496, - 1, - "ɽ" - ], - [ - 67497, - 1, - "ɾ" - ], - [ - 67498, - 1, - "ʀ" - ], - [ - 67499, - 1, - "ʨ" - ], - [ - 67500, - 1, - "ʦ" - ], - [ - 67501, - 1, - "ꭧ" - ], - [ - 67502, - 1, - "ʧ" - ], - [ - 67503, - 1, - "ʈ" - ], - [ - 67504, - 1, - "ⱱ" - ], - [ - 67505, - 3 - ], - [ - 67506, - 1, - "ʏ" - ], - [ - 67507, - 1, - "ʡ" - ], - [ - 67508, - 1, - "ʢ" - ], - [ - 67509, - 1, - "ʘ" - ], - [ - 67510, - 1, - "ǀ" - ], - [ - 67511, - 1, - "ǁ" - ], - [ - 67512, - 1, - "ǂ" - ], - [ - 67513, - 1, - "𝼊" - ], - [ - 67514, - 1, - "𝼞" - ], - [ - [ - 67515, - 67583 - ], - 3 - ], - [ - [ - 67584, - 67589 - ], - 2 - ], - [ - [ - 67590, - 67591 - ], - 3 - ], - [ - 67592, - 2 - ], - [ - 67593, - 3 - ], - [ - [ - 67594, - 67637 - ], - 2 - ], - [ - 67638, - 3 - ], - [ - [ - 67639, - 67640 - ], - 2 - ], - [ - [ - 67641, - 67643 - ], - 3 - ], - [ - 67644, - 2 - ], - [ - [ - 67645, - 67646 - ], - 3 - ], - [ - 67647, - 2 - ], - [ - [ - 67648, - 67669 - ], - 2 - ], - [ - 67670, - 3 - ], - [ - [ - 67671, - 67679 - ], - 2 - ], - [ - [ - 67680, - 67702 - ], - 2 - ], - [ - [ - 67703, - 67711 - ], - 2 - ], - [ - [ - 67712, - 67742 - ], - 2 - ], - [ - [ - 67743, - 67750 - ], - 3 - ], - [ - [ - 67751, - 67759 - ], - 2 - ], - [ - [ - 67760, - 67807 - ], - 3 - ], - [ - [ - 67808, - 67826 - ], - 2 - ], - [ - 67827, - 3 - ], - [ - [ - 67828, - 67829 - ], - 2 - ], - [ - [ - 67830, - 67834 - ], - 3 - ], - [ - [ - 67835, - 67839 - ], - 2 - ], - [ - [ - 67840, - 67861 - ], - 2 - ], - [ - [ - 67862, - 67865 - ], - 2 - ], - [ - [ - 67866, - 67867 - ], - 2 - ], - [ - [ - 67868, - 67870 - ], - 3 - ], - [ - 67871, - 2 - ], - [ - [ - 67872, - 67897 - ], - 2 - ], - [ - [ - 67898, - 67902 - ], - 3 - ], - [ - 67903, - 2 - ], - [ - [ - 67904, - 67967 - ], - 3 - ], - [ - [ - 67968, - 68023 - ], - 2 - ], - [ - [ - 68024, - 68027 - ], - 3 - ], - [ - [ - 68028, - 68029 - ], - 2 - ], - [ - [ - 68030, - 68031 - ], - 2 - ], - [ - [ - 68032, - 68047 - ], - 2 - ], - [ - [ - 68048, - 68049 - ], - 3 - ], - [ - [ - 68050, - 68095 - ], - 2 - ], - [ - [ - 68096, - 68099 - ], - 2 - ], - [ - 68100, - 3 - ], - [ - [ - 68101, - 68102 - ], - 2 - ], - [ - [ - 68103, - 68107 - ], - 3 - ], - [ - [ - 68108, - 68115 - ], - 2 - ], - [ - 68116, - 3 - ], - [ - [ - 68117, - 68119 - ], - 2 - ], - [ - 68120, - 3 - ], - [ - [ - 68121, - 68147 - ], - 2 - ], - [ - [ - 68148, - 68149 - ], - 2 - ], - [ - [ - 68150, - 68151 - ], - 3 - ], - [ - [ - 68152, - 68154 - ], - 2 - ], - [ - [ - 68155, - 68158 - ], - 3 - ], - [ - 68159, - 2 - ], - [ - [ - 68160, - 68167 - ], - 2 - ], - [ - 68168, - 2 - ], - [ - [ - 68169, - 68175 - ], - 3 - ], - [ - [ - 68176, - 68184 - ], - 2 - ], - [ - [ - 68185, - 68191 - ], - 3 - ], - [ - [ - 68192, - 68220 - ], - 2 - ], - [ - [ - 68221, - 68223 - ], - 2 - ], - [ - [ - 68224, - 68252 - ], - 2 - ], - [ - [ - 68253, - 68255 - ], - 2 - ], - [ - [ - 68256, - 68287 - ], - 3 - ], - [ - [ - 68288, - 68295 - ], - 2 - ], - [ - 68296, - 2 - ], - [ - [ - 68297, - 68326 - ], - 2 - ], - [ - [ - 68327, - 68330 - ], - 3 - ], - [ - [ - 68331, - 68342 - ], - 2 - ], - [ - [ - 68343, - 68351 - ], - 3 - ], - [ - [ - 68352, - 68405 - ], - 2 - ], - [ - [ - 68406, - 68408 - ], - 3 - ], - [ - [ - 68409, - 68415 - ], - 2 - ], - [ - [ - 68416, - 68437 - ], - 2 - ], - [ - [ - 68438, - 68439 - ], - 3 - ], - [ - [ - 68440, - 68447 - ], - 2 - ], - [ - [ - 68448, - 68466 - ], - 2 - ], - [ - [ - 68467, - 68471 - ], - 3 - ], - [ - [ - 68472, - 68479 - ], - 2 - ], - [ - [ - 68480, - 68497 - ], - 2 - ], - [ - [ - 68498, - 68504 - ], - 3 - ], - [ - [ - 68505, - 68508 - ], - 2 - ], - [ - [ - 68509, - 68520 - ], - 3 - ], - [ - [ - 68521, - 68527 - ], - 2 - ], - [ - [ - 68528, - 68607 - ], - 3 - ], - [ - [ - 68608, - 68680 - ], - 2 - ], - [ - [ - 68681, - 68735 - ], - 3 - ], - [ - 68736, - 1, - "𐳀" - ], - [ - 68737, - 1, - "𐳁" - ], - [ - 68738, - 1, - "𐳂" - ], - [ - 68739, - 1, - "𐳃" - ], - [ - 68740, - 1, - "𐳄" - ], - [ - 68741, - 1, - "𐳅" - ], - [ - 68742, - 1, - "𐳆" - ], - [ - 68743, - 1, - "𐳇" - ], - [ - 68744, - 1, - "𐳈" - ], - [ - 68745, - 1, - "𐳉" - ], - [ - 68746, - 1, - "𐳊" - ], - [ - 68747, - 1, - "𐳋" - ], - [ - 68748, - 1, - "𐳌" - ], - [ - 68749, - 1, - "𐳍" - ], - [ - 68750, - 1, - "𐳎" - ], - [ - 68751, - 1, - "𐳏" - ], - [ - 68752, - 1, - "𐳐" - ], - [ - 68753, - 1, - "𐳑" - ], - [ - 68754, - 1, - "𐳒" - ], - [ - 68755, - 1, - "𐳓" - ], - [ - 68756, - 1, - "𐳔" - ], - [ - 68757, - 1, - "𐳕" - ], - [ - 68758, - 1, - "𐳖" - ], - [ - 68759, - 1, - "𐳗" - ], - [ - 68760, - 1, - "𐳘" - ], - [ - 68761, - 1, - "𐳙" - ], - [ - 68762, - 1, - "𐳚" - ], - [ - 68763, - 1, - "𐳛" - ], - [ - 68764, - 1, - "𐳜" - ], - [ - 68765, - 1, - "𐳝" - ], - [ - 68766, - 1, - "𐳞" - ], - [ - 68767, - 1, - "𐳟" - ], - [ - 68768, - 1, - "𐳠" - ], - [ - 68769, - 1, - "𐳡" - ], - [ - 68770, - 1, - "𐳢" - ], - [ - 68771, - 1, - "𐳣" - ], - [ - 68772, - 1, - "𐳤" - ], - [ - 68773, - 1, - "𐳥" - ], - [ - 68774, - 1, - "𐳦" - ], - [ - 68775, - 1, - "𐳧" - ], - [ - 68776, - 1, - "𐳨" - ], - [ - 68777, - 1, - "𐳩" - ], - [ - 68778, - 1, - "𐳪" - ], - [ - 68779, - 1, - "𐳫" - ], - [ - 68780, - 1, - "𐳬" - ], - [ - 68781, - 1, - "𐳭" - ], - [ - 68782, - 1, - "𐳮" - ], - [ - 68783, - 1, - "𐳯" - ], - [ - 68784, - 1, - "𐳰" - ], - [ - 68785, - 1, - "𐳱" - ], - [ - 68786, - 1, - "𐳲" - ], - [ - [ - 68787, - 68799 - ], - 3 - ], - [ - [ - 68800, - 68850 - ], - 2 - ], - [ - [ - 68851, - 68857 - ], - 3 - ], - [ - [ - 68858, - 68863 - ], - 2 - ], - [ - [ - 68864, - 68903 - ], - 2 - ], - [ - [ - 68904, - 68911 - ], - 3 - ], - [ - [ - 68912, - 68921 - ], - 2 - ], - [ - [ - 68922, - 69215 - ], - 3 - ], - [ - [ - 69216, - 69246 - ], - 2 - ], - [ - 69247, - 3 - ], - [ - [ - 69248, - 69289 - ], - 2 - ], - [ - 69290, - 3 - ], - [ - [ - 69291, - 69292 - ], - 2 - ], - [ - 69293, - 2 - ], - [ - [ - 69294, - 69295 - ], - 3 - ], - [ - [ - 69296, - 69297 - ], - 2 - ], - [ - [ - 69298, - 69375 - ], - 3 - ], - [ - [ - 69376, - 69404 - ], - 2 - ], - [ - [ - 69405, - 69414 - ], - 2 - ], - [ - 69415, - 2 - ], - [ - [ - 69416, - 69423 - ], - 3 - ], - [ - [ - 69424, - 69456 - ], - 2 - ], - [ - [ - 69457, - 69465 - ], - 2 - ], - [ - [ - 69466, - 69487 - ], - 3 - ], - [ - [ - 69488, - 69509 - ], - 2 - ], - [ - [ - 69510, - 69513 - ], - 2 - ], - [ - [ - 69514, - 69551 - ], - 3 - ], - [ - [ - 69552, - 69572 - ], - 2 - ], - [ - [ - 69573, - 69579 - ], - 2 - ], - [ - [ - 69580, - 69599 - ], - 3 - ], - [ - [ - 69600, - 69622 - ], - 2 - ], - [ - [ - 69623, - 69631 - ], - 3 - ], - [ - [ - 69632, - 69702 - ], - 2 - ], - [ - [ - 69703, - 69709 - ], - 2 - ], - [ - [ - 69710, - 69713 - ], - 3 - ], - [ - [ - 69714, - 69733 - ], - 2 - ], - [ - [ - 69734, - 69743 - ], - 2 - ], - [ - [ - 69744, - 69749 - ], - 2 - ], - [ - [ - 69750, - 69758 - ], - 3 - ], - [ - 69759, - 2 - ], - [ - [ - 69760, - 69818 - ], - 2 - ], - [ - [ - 69819, - 69820 - ], - 2 - ], - [ - 69821, - 3 - ], - [ - [ - 69822, - 69825 - ], - 2 - ], - [ - 69826, - 2 - ], - [ - [ - 69827, - 69836 - ], - 3 - ], - [ - 69837, - 3 - ], - [ - [ - 69838, - 69839 - ], - 3 - ], - [ - [ - 69840, - 69864 - ], - 2 - ], - [ - [ - 69865, - 69871 - ], - 3 - ], - [ - [ - 69872, - 69881 - ], - 2 - ], - [ - [ - 69882, - 69887 - ], - 3 - ], - [ - [ - 69888, - 69940 - ], - 2 - ], - [ - 69941, - 3 - ], - [ - [ - 69942, - 69951 - ], - 2 - ], - [ - [ - 69952, - 69955 - ], - 2 - ], - [ - [ - 69956, - 69958 - ], - 2 - ], - [ - 69959, - 2 - ], - [ - [ - 69960, - 69967 - ], - 3 - ], - [ - [ - 69968, - 70003 - ], - 2 - ], - [ - [ - 70004, - 70005 - ], - 2 - ], - [ - 70006, - 2 - ], - [ - [ - 70007, - 70015 - ], - 3 - ], - [ - [ - 70016, - 70084 - ], - 2 - ], - [ - [ - 70085, - 70088 - ], - 2 - ], - [ - [ - 70089, - 70092 - ], - 2 - ], - [ - 70093, - 2 - ], - [ - [ - 70094, - 70095 - ], - 2 - ], - [ - [ - 70096, - 70105 - ], - 2 - ], - [ - 70106, - 2 - ], - [ - 70107, - 2 - ], - [ - 70108, - 2 - ], - [ - [ - 70109, - 70111 - ], - 2 - ], - [ - 70112, - 3 - ], - [ - [ - 70113, - 70132 - ], - 2 - ], - [ - [ - 70133, - 70143 - ], - 3 - ], - [ - [ - 70144, - 70161 - ], - 2 - ], - [ - 70162, - 3 - ], - [ - [ - 70163, - 70199 - ], - 2 - ], - [ - [ - 70200, - 70205 - ], - 2 - ], - [ - 70206, - 2 - ], - [ - [ - 70207, - 70271 - ], - 3 - ], - [ - [ - 70272, - 70278 - ], - 2 - ], - [ - 70279, - 3 - ], - [ - 70280, - 2 - ], - [ - 70281, - 3 - ], - [ - [ - 70282, - 70285 - ], - 2 - ], - [ - 70286, - 3 - ], - [ - [ - 70287, - 70301 - ], - 2 - ], - [ - 70302, - 3 - ], - [ - [ - 70303, - 70312 - ], - 2 - ], - [ - 70313, - 2 - ], - [ - [ - 70314, - 70319 - ], - 3 - ], - [ - [ - 70320, - 70378 - ], - 2 - ], - [ - [ - 70379, - 70383 - ], - 3 - ], - [ - [ - 70384, - 70393 - ], - 2 - ], - [ - [ - 70394, - 70399 - ], - 3 - ], - [ - 70400, - 2 - ], - [ - [ - 70401, - 70403 - ], - 2 - ], - [ - 70404, - 3 - ], - [ - [ - 70405, - 70412 - ], - 2 - ], - [ - [ - 70413, - 70414 - ], - 3 - ], - [ - [ - 70415, - 70416 - ], - 2 - ], - [ - [ - 70417, - 70418 - ], - 3 - ], - [ - [ - 70419, - 70440 - ], - 2 - ], - [ - 70441, - 3 - ], - [ - [ - 70442, - 70448 - ], - 2 - ], - [ - 70449, - 3 - ], - [ - [ - 70450, - 70451 - ], - 2 - ], - [ - 70452, - 3 - ], - [ - [ - 70453, - 70457 - ], - 2 - ], - [ - 70458, - 3 - ], - [ - 70459, - 2 - ], - [ - [ - 70460, - 70468 - ], - 2 - ], - [ - [ - 70469, - 70470 - ], - 3 - ], - [ - [ - 70471, - 70472 - ], - 2 - ], - [ - [ - 70473, - 70474 - ], - 3 - ], - [ - [ - 70475, - 70477 - ], - 2 - ], - [ - [ - 70478, - 70479 - ], - 3 - ], - [ - 70480, - 2 - ], - [ - [ - 70481, - 70486 - ], - 3 - ], - [ - 70487, - 2 - ], - [ - [ - 70488, - 70492 - ], - 3 - ], - [ - [ - 70493, - 70499 - ], - 2 - ], - [ - [ - 70500, - 70501 - ], - 3 - ], - [ - [ - 70502, - 70508 - ], - 2 - ], - [ - [ - 70509, - 70511 - ], - 3 - ], - [ - [ - 70512, - 70516 - ], - 2 - ], - [ - [ - 70517, - 70655 - ], - 3 - ], - [ - [ - 70656, - 70730 - ], - 2 - ], - [ - [ - 70731, - 70735 - ], - 2 - ], - [ - [ - 70736, - 70745 - ], - 2 - ], - [ - 70746, - 2 - ], - [ - 70747, - 2 - ], - [ - 70748, - 3 - ], - [ - 70749, - 2 - ], - [ - 70750, - 2 - ], - [ - 70751, - 2 - ], - [ - [ - 70752, - 70753 - ], - 2 - ], - [ - [ - 70754, - 70783 - ], - 3 - ], - [ - [ - 70784, - 70853 - ], - 2 - ], - [ - 70854, - 2 - ], - [ - 70855, - 2 - ], - [ - [ - 70856, - 70863 - ], - 3 - ], - [ - [ - 70864, - 70873 - ], - 2 - ], - [ - [ - 70874, - 71039 - ], - 3 - ], - [ - [ - 71040, - 71093 - ], - 2 - ], - [ - [ - 71094, - 71095 - ], - 3 - ], - [ - [ - 71096, - 71104 - ], - 2 - ], - [ - [ - 71105, - 71113 - ], - 2 - ], - [ - [ - 71114, - 71127 - ], - 2 - ], - [ - [ - 71128, - 71133 - ], - 2 - ], - [ - [ - 71134, - 71167 - ], - 3 - ], - [ - [ - 71168, - 71232 - ], - 2 - ], - [ - [ - 71233, - 71235 - ], - 2 - ], - [ - 71236, - 2 - ], - [ - [ - 71237, - 71247 - ], - 3 - ], - [ - [ - 71248, - 71257 - ], - 2 - ], - [ - [ - 71258, - 71263 - ], - 3 - ], - [ - [ - 71264, - 71276 - ], - 2 - ], - [ - [ - 71277, - 71295 - ], - 3 - ], - [ - [ - 71296, - 71351 - ], - 2 - ], - [ - 71352, - 2 - ], - [ - 71353, - 2 - ], - [ - [ - 71354, - 71359 - ], - 3 - ], - [ - [ - 71360, - 71369 - ], - 2 - ], - [ - [ - 71370, - 71423 - ], - 3 - ], - [ - [ - 71424, - 71449 - ], - 2 - ], - [ - 71450, - 2 - ], - [ - [ - 71451, - 71452 - ], - 3 - ], - [ - [ - 71453, - 71467 - ], - 2 - ], - [ - [ - 71468, - 71471 - ], - 3 - ], - [ - [ - 71472, - 71481 - ], - 2 - ], - [ - [ - 71482, - 71487 - ], - 2 - ], - [ - [ - 71488, - 71494 - ], - 2 - ], - [ - [ - 71495, - 71679 - ], - 3 - ], - [ - [ - 71680, - 71738 - ], - 2 - ], - [ - 71739, - 2 - ], - [ - [ - 71740, - 71839 - ], - 3 - ], - [ - 71840, - 1, - "𑣀" - ], - [ - 71841, - 1, - "𑣁" - ], - [ - 71842, - 1, - "𑣂" - ], - [ - 71843, - 1, - "𑣃" - ], - [ - 71844, - 1, - "𑣄" - ], - [ - 71845, - 1, - "𑣅" - ], - [ - 71846, - 1, - "𑣆" - ], - [ - 71847, - 1, - "𑣇" - ], - [ - 71848, - 1, - "𑣈" - ], - [ - 71849, - 1, - "𑣉" - ], - [ - 71850, - 1, - "𑣊" - ], - [ - 71851, - 1, - "𑣋" - ], - [ - 71852, - 1, - "𑣌" - ], - [ - 71853, - 1, - "𑣍" - ], - [ - 71854, - 1, - "𑣎" - ], - [ - 71855, - 1, - "𑣏" - ], - [ - 71856, - 1, - "𑣐" - ], - [ - 71857, - 1, - "𑣑" - ], - [ - 71858, - 1, - "𑣒" - ], - [ - 71859, - 1, - "𑣓" - ], - [ - 71860, - 1, - "𑣔" - ], - [ - 71861, - 1, - "𑣕" - ], - [ - 71862, - 1, - "𑣖" - ], - [ - 71863, - 1, - "𑣗" - ], - [ - 71864, - 1, - "𑣘" - ], - [ - 71865, - 1, - "𑣙" - ], - [ - 71866, - 1, - "𑣚" - ], - [ - 71867, - 1, - "𑣛" - ], - [ - 71868, - 1, - "𑣜" - ], - [ - 71869, - 1, - "𑣝" - ], - [ - 71870, - 1, - "𑣞" - ], - [ - 71871, - 1, - "𑣟" - ], - [ - [ - 71872, - 71913 - ], - 2 - ], - [ - [ - 71914, - 71922 - ], - 2 - ], - [ - [ - 71923, - 71934 - ], - 3 - ], - [ - 71935, - 2 - ], - [ - [ - 71936, - 71942 - ], - 2 - ], - [ - [ - 71943, - 71944 - ], - 3 - ], - [ - 71945, - 2 - ], - [ - [ - 71946, - 71947 - ], - 3 - ], - [ - [ - 71948, - 71955 - ], - 2 - ], - [ - 71956, - 3 - ], - [ - [ - 71957, - 71958 - ], - 2 - ], - [ - 71959, - 3 - ], - [ - [ - 71960, - 71989 - ], - 2 - ], - [ - 71990, - 3 - ], - [ - [ - 71991, - 71992 - ], - 2 - ], - [ - [ - 71993, - 71994 - ], - 3 - ], - [ - [ - 71995, - 72003 - ], - 2 - ], - [ - [ - 72004, - 72006 - ], - 2 - ], - [ - [ - 72007, - 72015 - ], - 3 - ], - [ - [ - 72016, - 72025 - ], - 2 - ], - [ - [ - 72026, - 72095 - ], - 3 - ], - [ - [ - 72096, - 72103 - ], - 2 - ], - [ - [ - 72104, - 72105 - ], - 3 - ], - [ - [ - 72106, - 72151 - ], - 2 - ], - [ - [ - 72152, - 72153 - ], - 3 - ], - [ - [ - 72154, - 72161 - ], - 2 - ], - [ - 72162, - 2 - ], - [ - [ - 72163, - 72164 - ], - 2 - ], - [ - [ - 72165, - 72191 - ], - 3 - ], - [ - [ - 72192, - 72254 - ], - 2 - ], - [ - [ - 72255, - 72262 - ], - 2 - ], - [ - 72263, - 2 - ], - [ - [ - 72264, - 72271 - ], - 3 - ], - [ - [ - 72272, - 72323 - ], - 2 - ], - [ - [ - 72324, - 72325 - ], - 2 - ], - [ - [ - 72326, - 72345 - ], - 2 - ], - [ - [ - 72346, - 72348 - ], - 2 - ], - [ - 72349, - 2 - ], - [ - [ - 72350, - 72354 - ], - 2 - ], - [ - [ - 72355, - 72367 - ], - 3 - ], - [ - [ - 72368, - 72383 - ], - 2 - ], - [ - [ - 72384, - 72440 - ], - 2 - ], - [ - [ - 72441, - 72703 - ], - 3 - ], - [ - [ - 72704, - 72712 - ], - 2 - ], - [ - 72713, - 3 - ], - [ - [ - 72714, - 72758 - ], - 2 - ], - [ - 72759, - 3 - ], - [ - [ - 72760, - 72768 - ], - 2 - ], - [ - [ - 72769, - 72773 - ], - 2 - ], - [ - [ - 72774, - 72783 - ], - 3 - ], - [ - [ - 72784, - 72793 - ], - 2 - ], - [ - [ - 72794, - 72812 - ], - 2 - ], - [ - [ - 72813, - 72815 - ], - 3 - ], - [ - [ - 72816, - 72817 - ], - 2 - ], - [ - [ - 72818, - 72847 - ], - 2 - ], - [ - [ - 72848, - 72849 - ], - 3 - ], - [ - [ - 72850, - 72871 - ], - 2 - ], - [ - 72872, - 3 - ], - [ - [ - 72873, - 72886 - ], - 2 - ], - [ - [ - 72887, - 72959 - ], - 3 - ], - [ - [ - 72960, - 72966 - ], - 2 - ], - [ - 72967, - 3 - ], - [ - [ - 72968, - 72969 - ], - 2 - ], - [ - 72970, - 3 - ], - [ - [ - 72971, - 73014 - ], - 2 - ], - [ - [ - 73015, - 73017 - ], - 3 - ], - [ - 73018, - 2 - ], - [ - 73019, - 3 - ], - [ - [ - 73020, - 73021 - ], - 2 - ], - [ - 73022, - 3 - ], - [ - [ - 73023, - 73031 - ], - 2 - ], - [ - [ - 73032, - 73039 - ], - 3 - ], - [ - [ - 73040, - 73049 - ], - 2 - ], - [ - [ - 73050, - 73055 - ], - 3 - ], - [ - [ - 73056, - 73061 - ], - 2 - ], - [ - 73062, - 3 - ], - [ - [ - 73063, - 73064 - ], - 2 - ], - [ - 73065, - 3 - ], - [ - [ - 73066, - 73102 - ], - 2 - ], - [ - 73103, - 3 - ], - [ - [ - 73104, - 73105 - ], - 2 - ], - [ - 73106, - 3 - ], - [ - [ - 73107, - 73112 - ], - 2 - ], - [ - [ - 73113, - 73119 - ], - 3 - ], - [ - [ - 73120, - 73129 - ], - 2 - ], - [ - [ - 73130, - 73439 - ], - 3 - ], - [ - [ - 73440, - 73462 - ], - 2 - ], - [ - [ - 73463, - 73464 - ], - 2 - ], - [ - [ - 73465, - 73647 - ], - 3 - ], - [ - 73648, - 2 - ], - [ - [ - 73649, - 73663 - ], - 3 - ], - [ - [ - 73664, - 73713 - ], - 2 - ], - [ - [ - 73714, - 73726 - ], - 3 - ], - [ - 73727, - 2 - ], - [ - [ - 73728, - 74606 - ], - 2 - ], - [ - [ - 74607, - 74648 - ], - 2 - ], - [ - 74649, - 2 - ], - [ - [ - 74650, - 74751 - ], - 3 - ], - [ - [ - 74752, - 74850 - ], - 2 - ], - [ - [ - 74851, - 74862 - ], - 2 - ], - [ - 74863, - 3 - ], - [ - [ - 74864, - 74867 - ], - 2 - ], - [ - 74868, - 2 - ], - [ - [ - 74869, - 74879 - ], - 3 - ], - [ - [ - 74880, - 75075 - ], - 2 - ], - [ - [ - 75076, - 77711 - ], - 3 - ], - [ - [ - 77712, - 77808 - ], - 2 - ], - [ - [ - 77809, - 77810 - ], - 2 - ], - [ - [ - 77811, - 77823 - ], - 3 - ], - [ - [ - 77824, - 78894 - ], - 2 - ], - [ - 78895, - 3 - ], - [ - [ - 78896, - 78904 - ], - 3 - ], - [ - [ - 78905, - 82943 - ], - 3 - ], - [ - [ - 82944, - 83526 - ], - 2 - ], - [ - [ - 83527, - 92159 - ], - 3 - ], - [ - [ - 92160, - 92728 - ], - 2 - ], - [ - [ - 92729, - 92735 - ], - 3 - ], - [ - [ - 92736, - 92766 - ], - 2 - ], - [ - 92767, - 3 - ], - [ - [ - 92768, - 92777 - ], - 2 - ], - [ - [ - 92778, - 92781 - ], - 3 - ], - [ - [ - 92782, - 92783 - ], - 2 - ], - [ - [ - 92784, - 92862 - ], - 2 - ], - [ - 92863, - 3 - ], - [ - [ - 92864, - 92873 - ], - 2 - ], - [ - [ - 92874, - 92879 - ], - 3 - ], - [ - [ - 92880, - 92909 - ], - 2 - ], - [ - [ - 92910, - 92911 - ], - 3 - ], - [ - [ - 92912, - 92916 - ], - 2 - ], - [ - 92917, - 2 - ], - [ - [ - 92918, - 92927 - ], - 3 - ], - [ - [ - 92928, - 92982 - ], - 2 - ], - [ - [ - 92983, - 92991 - ], - 2 - ], - [ - [ - 92992, - 92995 - ], - 2 - ], - [ - [ - 92996, - 92997 - ], - 2 - ], - [ - [ - 92998, - 93007 - ], - 3 - ], - [ - [ - 93008, - 93017 - ], - 2 - ], - [ - 93018, - 3 - ], - [ - [ - 93019, - 93025 - ], - 2 - ], - [ - 93026, - 3 - ], - [ - [ - 93027, - 93047 - ], - 2 - ], - [ - [ - 93048, - 93052 - ], - 3 - ], - [ - [ - 93053, - 93071 - ], - 2 - ], - [ - [ - 93072, - 93759 - ], - 3 - ], - [ - 93760, - 1, - "𖹠" - ], - [ - 93761, - 1, - "𖹡" - ], - [ - 93762, - 1, - "𖹢" - ], - [ - 93763, - 1, - "𖹣" - ], - [ - 93764, - 1, - "𖹤" - ], - [ - 93765, - 1, - "𖹥" - ], - [ - 93766, - 1, - "𖹦" - ], - [ - 93767, - 1, - "𖹧" - ], - [ - 93768, - 1, - "𖹨" - ], - [ - 93769, - 1, - "𖹩" - ], - [ - 93770, - 1, - "𖹪" - ], - [ - 93771, - 1, - "𖹫" - ], - [ - 93772, - 1, - "𖹬" - ], - [ - 93773, - 1, - "𖹭" - ], - [ - 93774, - 1, - "𖹮" - ], - [ - 93775, - 1, - "𖹯" - ], - [ - 93776, - 1, - "𖹰" - ], - [ - 93777, - 1, - "𖹱" - ], - [ - 93778, - 1, - "𖹲" - ], - [ - 93779, - 1, - "𖹳" - ], - [ - 93780, - 1, - "𖹴" - ], - [ - 93781, - 1, - "𖹵" - ], - [ - 93782, - 1, - "𖹶" - ], - [ - 93783, - 1, - "𖹷" - ], - [ - 93784, - 1, - "𖹸" - ], - [ - 93785, - 1, - "𖹹" - ], - [ - 93786, - 1, - "𖹺" - ], - [ - 93787, - 1, - "𖹻" - ], - [ - 93788, - 1, - "𖹼" - ], - [ - 93789, - 1, - "𖹽" - ], - [ - 93790, - 1, - "𖹾" - ], - [ - 93791, - 1, - "𖹿" - ], - [ - [ - 93792, - 93823 - ], - 2 - ], - [ - [ - 93824, - 93850 - ], - 2 - ], - [ - [ - 93851, - 93951 - ], - 3 - ], - [ - [ - 93952, - 94020 - ], - 2 - ], - [ - [ - 94021, - 94026 - ], - 2 - ], - [ - [ - 94027, - 94030 - ], - 3 - ], - [ - 94031, - 2 - ], - [ - [ - 94032, - 94078 - ], - 2 - ], - [ - [ - 94079, - 94087 - ], - 2 - ], - [ - [ - 94088, - 94094 - ], - 3 - ], - [ - [ - 94095, - 94111 - ], - 2 - ], - [ - [ - 94112, - 94175 - ], - 3 - ], - [ - 94176, - 2 - ], - [ - 94177, - 2 - ], - [ - 94178, - 2 - ], - [ - 94179, - 2 - ], - [ - 94180, - 2 - ], - [ - [ - 94181, - 94191 - ], - 3 - ], - [ - [ - 94192, - 94193 - ], - 2 - ], - [ - [ - 94194, - 94207 - ], - 3 - ], - [ - [ - 94208, - 100332 - ], - 2 - ], - [ - [ - 100333, - 100337 - ], - 2 - ], - [ - [ - 100338, - 100343 - ], - 2 - ], - [ - [ - 100344, - 100351 - ], - 3 - ], - [ - [ - 100352, - 101106 - ], - 2 - ], - [ - [ - 101107, - 101589 - ], - 2 - ], - [ - [ - 101590, - 101631 - ], - 3 - ], - [ - [ - 101632, - 101640 - ], - 2 - ], - [ - [ - 101641, - 110575 - ], - 3 - ], - [ - [ - 110576, - 110579 - ], - 2 - ], - [ - 110580, - 3 - ], - [ - [ - 110581, - 110587 - ], - 2 - ], - [ - 110588, - 3 - ], - [ - [ - 110589, - 110590 - ], - 2 - ], - [ - 110591, - 3 - ], - [ - [ - 110592, - 110593 - ], - 2 - ], - [ - [ - 110594, - 110878 - ], - 2 - ], - [ - [ - 110879, - 110882 - ], - 2 - ], - [ - [ - 110883, - 110927 - ], - 3 - ], - [ - [ - 110928, - 110930 - ], - 2 - ], - [ - [ - 110931, - 110947 - ], - 3 - ], - [ - [ - 110948, - 110951 - ], - 2 - ], - [ - [ - 110952, - 110959 - ], - 3 - ], - [ - [ - 110960, - 111355 - ], - 2 - ], - [ - [ - 111356, - 113663 - ], - 3 - ], - [ - [ - 113664, - 113770 - ], - 2 - ], - [ - [ - 113771, - 113775 - ], - 3 - ], - [ - [ - 113776, - 113788 - ], - 2 - ], - [ - [ - 113789, - 113791 - ], - 3 - ], - [ - [ - 113792, - 113800 - ], - 2 - ], - [ - [ - 113801, - 113807 - ], - 3 - ], - [ - [ - 113808, - 113817 - ], - 2 - ], - [ - [ - 113818, - 113819 - ], - 3 - ], - [ - 113820, - 2 - ], - [ - [ - 113821, - 113822 - ], - 2 - ], - [ - 113823, - 2 - ], - [ - [ - 113824, - 113827 - ], - 7 - ], - [ - [ - 113828, - 118527 - ], - 3 - ], - [ - [ - 118528, - 118573 - ], - 2 - ], - [ - [ - 118574, - 118575 - ], - 3 - ], - [ - [ - 118576, - 118598 - ], - 2 - ], - [ - [ - 118599, - 118607 - ], - 3 - ], - [ - [ - 118608, - 118723 - ], - 2 - ], - [ - [ - 118724, - 118783 - ], - 3 - ], - [ - [ - 118784, - 119029 - ], - 2 - ], - [ - [ - 119030, - 119039 - ], - 3 - ], - [ - [ - 119040, - 119078 - ], - 2 - ], - [ - [ - 119079, - 119080 - ], - 3 - ], - [ - 119081, - 2 - ], - [ - [ - 119082, - 119133 - ], - 2 - ], - [ - 119134, - 1, - "𝅗𝅥" - ], - [ - 119135, - 1, - "𝅘𝅥" - ], - [ - 119136, - 1, - "𝅘𝅥𝅮" - ], - [ - 119137, - 1, - "𝅘𝅥𝅯" - ], - [ - 119138, - 1, - "𝅘𝅥𝅰" - ], - [ - 119139, - 1, - "𝅘𝅥𝅱" - ], - [ - 119140, - 1, - "𝅘𝅥𝅲" - ], - [ - [ - 119141, - 119154 - ], - 2 - ], - [ - [ - 119155, - 119162 - ], - 3 - ], - [ - [ - 119163, - 119226 - ], - 2 - ], - [ - 119227, - 1, - "𝆹𝅥" - ], - [ - 119228, - 1, - "𝆺𝅥" - ], - [ - 119229, - 1, - "𝆹𝅥𝅮" - ], - [ - 119230, - 1, - "𝆺𝅥𝅮" - ], - [ - 119231, - 1, - "𝆹𝅥𝅯" - ], - [ - 119232, - 1, - "𝆺𝅥𝅯" - ], - [ - [ - 119233, - 119261 - ], - 2 - ], - [ - [ - 119262, - 119272 - ], - 2 - ], - [ - [ - 119273, - 119274 - ], - 2 - ], - [ - [ - 119275, - 119295 - ], - 3 - ], - [ - [ - 119296, - 119365 - ], - 2 - ], - [ - [ - 119366, - 119519 - ], - 3 - ], - [ - [ - 119520, - 119539 - ], - 2 - ], - [ - [ - 119540, - 119551 - ], - 3 - ], - [ - [ - 119552, - 119638 - ], - 2 - ], - [ - [ - 119639, - 119647 - ], - 3 - ], - [ - [ - 119648, - 119665 - ], - 2 - ], - [ - [ - 119666, - 119672 - ], - 2 - ], - [ - [ - 119673, - 119807 - ], - 3 - ], - [ - 119808, - 1, - "a" - ], - [ - 119809, - 1, - "b" - ], - [ - 119810, - 1, - "c" - ], - [ - 119811, - 1, - "d" - ], - [ - 119812, - 1, - "e" - ], - [ - 119813, - 1, - "f" - ], - [ - 119814, - 1, - "g" - ], - [ - 119815, - 1, - "h" - ], - [ - 119816, - 1, - "i" - ], - [ - 119817, - 1, - "j" - ], - [ - 119818, - 1, - "k" - ], - [ - 119819, - 1, - "l" - ], - [ - 119820, - 1, - "m" - ], - [ - 119821, - 1, - "n" - ], - [ - 119822, - 1, - "o" - ], - [ - 119823, - 1, - "p" - ], - [ - 119824, - 1, - "q" - ], - [ - 119825, - 1, - "r" - ], - [ - 119826, - 1, - "s" - ], - [ - 119827, - 1, - "t" - ], - [ - 119828, - 1, - "u" - ], - [ - 119829, - 1, - "v" - ], - [ - 119830, - 1, - "w" - ], - [ - 119831, - 1, - "x" - ], - [ - 119832, - 1, - "y" - ], - [ - 119833, - 1, - "z" - ], - [ - 119834, - 1, - "a" - ], - [ - 119835, - 1, - "b" - ], - [ - 119836, - 1, - "c" - ], - [ - 119837, - 1, - "d" - ], - [ - 119838, - 1, - "e" - ], - [ - 119839, - 1, - "f" - ], - [ - 119840, - 1, - "g" - ], - [ - 119841, - 1, - "h" - ], - [ - 119842, - 1, - "i" - ], - [ - 119843, - 1, - "j" - ], - [ - 119844, - 1, - "k" - ], - [ - 119845, - 1, - "l" - ], - [ - 119846, - 1, - "m" - ], - [ - 119847, - 1, - "n" - ], - [ - 119848, - 1, - "o" - ], - [ - 119849, - 1, - "p" - ], - [ - 119850, - 1, - "q" - ], - [ - 119851, - 1, - "r" - ], - [ - 119852, - 1, - "s" - ], - [ - 119853, - 1, - "t" - ], - [ - 119854, - 1, - "u" - ], - [ - 119855, - 1, - "v" - ], - [ - 119856, - 1, - "w" - ], - [ - 119857, - 1, - "x" - ], - [ - 119858, - 1, - "y" - ], - [ - 119859, - 1, - "z" - ], - [ - 119860, - 1, - "a" - ], - [ - 119861, - 1, - "b" - ], - [ - 119862, - 1, - "c" - ], - [ - 119863, - 1, - "d" - ], - [ - 119864, - 1, - "e" - ], - [ - 119865, - 1, - "f" - ], - [ - 119866, - 1, - "g" - ], - [ - 119867, - 1, - "h" - ], - [ - 119868, - 1, - "i" - ], - [ - 119869, - 1, - "j" - ], - [ - 119870, - 1, - "k" - ], - [ - 119871, - 1, - "l" - ], - [ - 119872, - 1, - "m" - ], - [ - 119873, - 1, - "n" - ], - [ - 119874, - 1, - "o" - ], - [ - 119875, - 1, - "p" - ], - [ - 119876, - 1, - "q" - ], - [ - 119877, - 1, - "r" - ], - [ - 119878, - 1, - "s" - ], - [ - 119879, - 1, - "t" - ], - [ - 119880, - 1, - "u" - ], - [ - 119881, - 1, - "v" - ], - [ - 119882, - 1, - "w" - ], - [ - 119883, - 1, - "x" - ], - [ - 119884, - 1, - "y" - ], - [ - 119885, - 1, - "z" - ], - [ - 119886, - 1, - "a" - ], - [ - 119887, - 1, - "b" - ], - [ - 119888, - 1, - "c" - ], - [ - 119889, - 1, - "d" - ], - [ - 119890, - 1, - "e" - ], - [ - 119891, - 1, - "f" - ], - [ - 119892, - 1, - "g" - ], - [ - 119893, - 3 - ], - [ - 119894, - 1, - "i" - ], - [ - 119895, - 1, - "j" - ], - [ - 119896, - 1, - "k" - ], - [ - 119897, - 1, - "l" - ], - [ - 119898, - 1, - "m" - ], - [ - 119899, - 1, - "n" - ], - [ - 119900, - 1, - "o" - ], - [ - 119901, - 1, - "p" - ], - [ - 119902, - 1, - "q" - ], - [ - 119903, - 1, - "r" - ], - [ - 119904, - 1, - "s" - ], - [ - 119905, - 1, - "t" - ], - [ - 119906, - 1, - "u" - ], - [ - 119907, - 1, - "v" - ], - [ - 119908, - 1, - "w" - ], - [ - 119909, - 1, - "x" - ], - [ - 119910, - 1, - "y" - ], - [ - 119911, - 1, - "z" - ], - [ - 119912, - 1, - "a" - ], - [ - 119913, - 1, - "b" - ], - [ - 119914, - 1, - "c" - ], - [ - 119915, - 1, - "d" - ], - [ - 119916, - 1, - "e" - ], - [ - 119917, - 1, - "f" - ], - [ - 119918, - 1, - "g" - ], - [ - 119919, - 1, - "h" - ], - [ - 119920, - 1, - "i" - ], - [ - 119921, - 1, - "j" - ], - [ - 119922, - 1, - "k" - ], - [ - 119923, - 1, - "l" - ], - [ - 119924, - 1, - "m" - ], - [ - 119925, - 1, - "n" - ], - [ - 119926, - 1, - "o" - ], - [ - 119927, - 1, - "p" - ], - [ - 119928, - 1, - "q" - ], - [ - 119929, - 1, - "r" - ], - [ - 119930, - 1, - "s" - ], - [ - 119931, - 1, - "t" - ], - [ - 119932, - 1, - "u" - ], - [ - 119933, - 1, - "v" - ], - [ - 119934, - 1, - "w" - ], - [ - 119935, - 1, - "x" - ], - [ - 119936, - 1, - "y" - ], - [ - 119937, - 1, - "z" - ], - [ - 119938, - 1, - "a" - ], - [ - 119939, - 1, - "b" - ], - [ - 119940, - 1, - "c" - ], - [ - 119941, - 1, - "d" - ], - [ - 119942, - 1, - "e" - ], - [ - 119943, - 1, - "f" - ], - [ - 119944, - 1, - "g" - ], - [ - 119945, - 1, - "h" - ], - [ - 119946, - 1, - "i" - ], - [ - 119947, - 1, - "j" - ], - [ - 119948, - 1, - "k" - ], - [ - 119949, - 1, - "l" - ], - [ - 119950, - 1, - "m" - ], - [ - 119951, - 1, - "n" - ], - [ - 119952, - 1, - "o" - ], - [ - 119953, - 1, - "p" - ], - [ - 119954, - 1, - "q" - ], - [ - 119955, - 1, - "r" - ], - [ - 119956, - 1, - "s" - ], - [ - 119957, - 1, - "t" - ], - [ - 119958, - 1, - "u" - ], - [ - 119959, - 1, - "v" - ], - [ - 119960, - 1, - "w" - ], - [ - 119961, - 1, - "x" - ], - [ - 119962, - 1, - "y" - ], - [ - 119963, - 1, - "z" - ], - [ - 119964, - 1, - "a" - ], - [ - 119965, - 3 - ], - [ - 119966, - 1, - "c" - ], - [ - 119967, - 1, - "d" - ], - [ - [ - 119968, - 119969 - ], - 3 - ], - [ - 119970, - 1, - "g" - ], - [ - [ - 119971, - 119972 - ], - 3 - ], - [ - 119973, - 1, - "j" - ], - [ - 119974, - 1, - "k" - ], - [ - [ - 119975, - 119976 - ], - 3 - ], - [ - 119977, - 1, - "n" - ], - [ - 119978, - 1, - "o" - ], - [ - 119979, - 1, - "p" - ], - [ - 119980, - 1, - "q" - ], - [ - 119981, - 3 - ], - [ - 119982, - 1, - "s" - ], - [ - 119983, - 1, - "t" - ], - [ - 119984, - 1, - "u" - ], - [ - 119985, - 1, - "v" - ], - [ - 119986, - 1, - "w" - ], - [ - 119987, - 1, - "x" - ], - [ - 119988, - 1, - "y" - ], - [ - 119989, - 1, - "z" - ], - [ - 119990, - 1, - "a" - ], - [ - 119991, - 1, - "b" - ], - [ - 119992, - 1, - "c" - ], - [ - 119993, - 1, - "d" - ], - [ - 119994, - 3 - ], - [ - 119995, - 1, - "f" - ], - [ - 119996, - 3 - ], - [ - 119997, - 1, - "h" - ], - [ - 119998, - 1, - "i" - ], - [ - 119999, - 1, - "j" - ], - [ - 120000, - 1, - "k" - ], - [ - 120001, - 1, - "l" - ], - [ - 120002, - 1, - "m" - ], - [ - 120003, - 1, - "n" - ], - [ - 120004, - 3 - ], - [ - 120005, - 1, - "p" - ], - [ - 120006, - 1, - "q" - ], - [ - 120007, - 1, - "r" - ], - [ - 120008, - 1, - "s" - ], - [ - 120009, - 1, - "t" - ], - [ - 120010, - 1, - "u" - ], - [ - 120011, - 1, - "v" - ], - [ - 120012, - 1, - "w" - ], - [ - 120013, - 1, - "x" - ], - [ - 120014, - 1, - "y" - ], - [ - 120015, - 1, - "z" - ], - [ - 120016, - 1, - "a" - ], - [ - 120017, - 1, - "b" - ], - [ - 120018, - 1, - "c" - ], - [ - 120019, - 1, - "d" - ], - [ - 120020, - 1, - "e" - ], - [ - 120021, - 1, - "f" - ], - [ - 120022, - 1, - "g" - ], - [ - 120023, - 1, - "h" - ], - [ - 120024, - 1, - "i" - ], - [ - 120025, - 1, - "j" - ], - [ - 120026, - 1, - "k" - ], - [ - 120027, - 1, - "l" - ], - [ - 120028, - 1, - "m" - ], - [ - 120029, - 1, - "n" - ], - [ - 120030, - 1, - "o" - ], - [ - 120031, - 1, - "p" - ], - [ - 120032, - 1, - "q" - ], - [ - 120033, - 1, - "r" - ], - [ - 120034, - 1, - "s" - ], - [ - 120035, - 1, - "t" - ], - [ - 120036, - 1, - "u" - ], - [ - 120037, - 1, - "v" - ], - [ - 120038, - 1, - "w" - ], - [ - 120039, - 1, - "x" - ], - [ - 120040, - 1, - "y" - ], - [ - 120041, - 1, - "z" - ], - [ - 120042, - 1, - "a" - ], - [ - 120043, - 1, - "b" - ], - [ - 120044, - 1, - "c" - ], - [ - 120045, - 1, - "d" - ], - [ - 120046, - 1, - "e" - ], - [ - 120047, - 1, - "f" - ], - [ - 120048, - 1, - "g" - ], - [ - 120049, - 1, - "h" - ], - [ - 120050, - 1, - "i" - ], - [ - 120051, - 1, - "j" - ], - [ - 120052, - 1, - "k" - ], - [ - 120053, - 1, - "l" - ], - [ - 120054, - 1, - "m" - ], - [ - 120055, - 1, - "n" - ], - [ - 120056, - 1, - "o" - ], - [ - 120057, - 1, - "p" - ], - [ - 120058, - 1, - "q" - ], - [ - 120059, - 1, - "r" - ], - [ - 120060, - 1, - "s" - ], - [ - 120061, - 1, - "t" - ], - [ - 120062, - 1, - "u" - ], - [ - 120063, - 1, - "v" - ], - [ - 120064, - 1, - "w" - ], - [ - 120065, - 1, - "x" - ], - [ - 120066, - 1, - "y" - ], - [ - 120067, - 1, - "z" - ], - [ - 120068, - 1, - "a" - ], - [ - 120069, - 1, - "b" - ], - [ - 120070, - 3 - ], - [ - 120071, - 1, - "d" - ], - [ - 120072, - 1, - "e" - ], - [ - 120073, - 1, - "f" - ], - [ - 120074, - 1, - "g" - ], - [ - [ - 120075, - 120076 - ], - 3 - ], - [ - 120077, - 1, - "j" - ], - [ - 120078, - 1, - "k" - ], - [ - 120079, - 1, - "l" - ], - [ - 120080, - 1, - "m" - ], - [ - 120081, - 1, - "n" - ], - [ - 120082, - 1, - "o" - ], - [ - 120083, - 1, - "p" - ], - [ - 120084, - 1, - "q" - ], - [ - 120085, - 3 - ], - [ - 120086, - 1, - "s" - ], - [ - 120087, - 1, - "t" - ], - [ - 120088, - 1, - "u" - ], - [ - 120089, - 1, - "v" - ], - [ - 120090, - 1, - "w" - ], - [ - 120091, - 1, - "x" - ], - [ - 120092, - 1, - "y" - ], - [ - 120093, - 3 - ], - [ - 120094, - 1, - "a" - ], - [ - 120095, - 1, - "b" - ], - [ - 120096, - 1, - "c" - ], - [ - 120097, - 1, - "d" - ], - [ - 120098, - 1, - "e" - ], - [ - 120099, - 1, - "f" - ], - [ - 120100, - 1, - "g" - ], - [ - 120101, - 1, - "h" - ], - [ - 120102, - 1, - "i" - ], - [ - 120103, - 1, - "j" - ], - [ - 120104, - 1, - "k" - ], - [ - 120105, - 1, - "l" - ], - [ - 120106, - 1, - "m" - ], - [ - 120107, - 1, - "n" - ], - [ - 120108, - 1, - "o" - ], - [ - 120109, - 1, - "p" - ], - [ - 120110, - 1, - "q" - ], - [ - 120111, - 1, - "r" - ], - [ - 120112, - 1, - "s" - ], - [ - 120113, - 1, - "t" - ], - [ - 120114, - 1, - "u" - ], - [ - 120115, - 1, - "v" - ], - [ - 120116, - 1, - "w" - ], - [ - 120117, - 1, - "x" - ], - [ - 120118, - 1, - "y" - ], - [ - 120119, - 1, - "z" - ], - [ - 120120, - 1, - "a" - ], - [ - 120121, - 1, - "b" - ], - [ - 120122, - 3 - ], - [ - 120123, - 1, - "d" - ], - [ - 120124, - 1, - "e" - ], - [ - 120125, - 1, - "f" - ], - [ - 120126, - 1, - "g" - ], - [ - 120127, - 3 - ], - [ - 120128, - 1, - "i" - ], - [ - 120129, - 1, - "j" - ], - [ - 120130, - 1, - "k" - ], - [ - 120131, - 1, - "l" - ], - [ - 120132, - 1, - "m" - ], - [ - 120133, - 3 - ], - [ - 120134, - 1, - "o" - ], - [ - [ - 120135, - 120137 - ], - 3 - ], - [ - 120138, - 1, - "s" - ], - [ - 120139, - 1, - "t" - ], - [ - 120140, - 1, - "u" - ], - [ - 120141, - 1, - "v" - ], - [ - 120142, - 1, - "w" - ], - [ - 120143, - 1, - "x" - ], - [ - 120144, - 1, - "y" - ], - [ - 120145, - 3 - ], - [ - 120146, - 1, - "a" - ], - [ - 120147, - 1, - "b" - ], - [ - 120148, - 1, - "c" - ], - [ - 120149, - 1, - "d" - ], - [ - 120150, - 1, - "e" - ], - [ - 120151, - 1, - "f" - ], - [ - 120152, - 1, - "g" - ], - [ - 120153, - 1, - "h" - ], - [ - 120154, - 1, - "i" - ], - [ - 120155, - 1, - "j" - ], - [ - 120156, - 1, - "k" - ], - [ - 120157, - 1, - "l" - ], - [ - 120158, - 1, - "m" - ], - [ - 120159, - 1, - "n" - ], - [ - 120160, - 1, - "o" - ], - [ - 120161, - 1, - "p" - ], - [ - 120162, - 1, - "q" - ], - [ - 120163, - 1, - "r" - ], - [ - 120164, - 1, - "s" - ], - [ - 120165, - 1, - "t" - ], - [ - 120166, - 1, - "u" - ], - [ - 120167, - 1, - "v" - ], - [ - 120168, - 1, - "w" - ], - [ - 120169, - 1, - "x" - ], - [ - 120170, - 1, - "y" - ], - [ - 120171, - 1, - "z" - ], - [ - 120172, - 1, - "a" - ], - [ - 120173, - 1, - "b" - ], - [ - 120174, - 1, - "c" - ], - [ - 120175, - 1, - "d" - ], - [ - 120176, - 1, - "e" - ], - [ - 120177, - 1, - "f" - ], - [ - 120178, - 1, - "g" - ], - [ - 120179, - 1, - "h" - ], - [ - 120180, - 1, - "i" - ], - [ - 120181, - 1, - "j" - ], - [ - 120182, - 1, - "k" - ], - [ - 120183, - 1, - "l" - ], - [ - 120184, - 1, - "m" - ], - [ - 120185, - 1, - "n" - ], - [ - 120186, - 1, - "o" - ], - [ - 120187, - 1, - "p" - ], - [ - 120188, - 1, - "q" - ], - [ - 120189, - 1, - "r" - ], - [ - 120190, - 1, - "s" - ], - [ - 120191, - 1, - "t" - ], - [ - 120192, - 1, - "u" - ], - [ - 120193, - 1, - "v" - ], - [ - 120194, - 1, - "w" - ], - [ - 120195, - 1, - "x" - ], - [ - 120196, - 1, - "y" - ], - [ - 120197, - 1, - "z" - ], - [ - 120198, - 1, - "a" - ], - [ - 120199, - 1, - "b" - ], - [ - 120200, - 1, - "c" - ], - [ - 120201, - 1, - "d" - ], - [ - 120202, - 1, - "e" - ], - [ - 120203, - 1, - "f" - ], - [ - 120204, - 1, - "g" - ], - [ - 120205, - 1, - "h" - ], - [ - 120206, - 1, - "i" - ], - [ - 120207, - 1, - "j" - ], - [ - 120208, - 1, - "k" - ], - [ - 120209, - 1, - "l" - ], - [ - 120210, - 1, - "m" - ], - [ - 120211, - 1, - "n" - ], - [ - 120212, - 1, - "o" - ], - [ - 120213, - 1, - "p" - ], - [ - 120214, - 1, - "q" - ], - [ - 120215, - 1, - "r" - ], - [ - 120216, - 1, - "s" - ], - [ - 120217, - 1, - "t" - ], - [ - 120218, - 1, - "u" - ], - [ - 120219, - 1, - "v" - ], - [ - 120220, - 1, - "w" - ], - [ - 120221, - 1, - "x" - ], - [ - 120222, - 1, - "y" - ], - [ - 120223, - 1, - "z" - ], - [ - 120224, - 1, - "a" - ], - [ - 120225, - 1, - "b" - ], - [ - 120226, - 1, - "c" - ], - [ - 120227, - 1, - "d" - ], - [ - 120228, - 1, - "e" - ], - [ - 120229, - 1, - "f" - ], - [ - 120230, - 1, - "g" - ], - [ - 120231, - 1, - "h" - ], - [ - 120232, - 1, - "i" - ], - [ - 120233, - 1, - "j" - ], - [ - 120234, - 1, - "k" - ], - [ - 120235, - 1, - "l" - ], - [ - 120236, - 1, - "m" - ], - [ - 120237, - 1, - "n" - ], - [ - 120238, - 1, - "o" - ], - [ - 120239, - 1, - "p" - ], - [ - 120240, - 1, - "q" - ], - [ - 120241, - 1, - "r" - ], - [ - 120242, - 1, - "s" - ], - [ - 120243, - 1, - "t" - ], - [ - 120244, - 1, - "u" - ], - [ - 120245, - 1, - "v" - ], - [ - 120246, - 1, - "w" - ], - [ - 120247, - 1, - "x" - ], - [ - 120248, - 1, - "y" - ], - [ - 120249, - 1, - "z" - ], - [ - 120250, - 1, - "a" - ], - [ - 120251, - 1, - "b" - ], - [ - 120252, - 1, - "c" - ], - [ - 120253, - 1, - "d" - ], - [ - 120254, - 1, - "e" - ], - [ - 120255, - 1, - "f" - ], - [ - 120256, - 1, - "g" - ], - [ - 120257, - 1, - "h" - ], - [ - 120258, - 1, - "i" - ], - [ - 120259, - 1, - "j" - ], - [ - 120260, - 1, - "k" - ], - [ - 120261, - 1, - "l" - ], - [ - 120262, - 1, - "m" - ], - [ - 120263, - 1, - "n" - ], - [ - 120264, - 1, - "o" - ], - [ - 120265, - 1, - "p" - ], - [ - 120266, - 1, - "q" - ], - [ - 120267, - 1, - "r" - ], - [ - 120268, - 1, - "s" - ], - [ - 120269, - 1, - "t" - ], - [ - 120270, - 1, - "u" - ], - [ - 120271, - 1, - "v" - ], - [ - 120272, - 1, - "w" - ], - [ - 120273, - 1, - "x" - ], - [ - 120274, - 1, - "y" - ], - [ - 120275, - 1, - "z" - ], - [ - 120276, - 1, - "a" - ], - [ - 120277, - 1, - "b" - ], - [ - 120278, - 1, - "c" - ], - [ - 120279, - 1, - "d" - ], - [ - 120280, - 1, - "e" - ], - [ - 120281, - 1, - "f" - ], - [ - 120282, - 1, - "g" - ], - [ - 120283, - 1, - "h" - ], - [ - 120284, - 1, - "i" - ], - [ - 120285, - 1, - "j" - ], - [ - 120286, - 1, - "k" - ], - [ - 120287, - 1, - "l" - ], - [ - 120288, - 1, - "m" - ], - [ - 120289, - 1, - "n" - ], - [ - 120290, - 1, - "o" - ], - [ - 120291, - 1, - "p" - ], - [ - 120292, - 1, - "q" - ], - [ - 120293, - 1, - "r" - ], - [ - 120294, - 1, - "s" - ], - [ - 120295, - 1, - "t" - ], - [ - 120296, - 1, - "u" - ], - [ - 120297, - 1, - "v" - ], - [ - 120298, - 1, - "w" - ], - [ - 120299, - 1, - "x" - ], - [ - 120300, - 1, - "y" - ], - [ - 120301, - 1, - "z" - ], - [ - 120302, - 1, - "a" - ], - [ - 120303, - 1, - "b" - ], - [ - 120304, - 1, - "c" - ], - [ - 120305, - 1, - "d" - ], - [ - 120306, - 1, - "e" - ], - [ - 120307, - 1, - "f" - ], - [ - 120308, - 1, - "g" - ], - [ - 120309, - 1, - "h" - ], - [ - 120310, - 1, - "i" - ], - [ - 120311, - 1, - "j" - ], - [ - 120312, - 1, - "k" - ], - [ - 120313, - 1, - "l" - ], - [ - 120314, - 1, - "m" - ], - [ - 120315, - 1, - "n" - ], - [ - 120316, - 1, - "o" - ], - [ - 120317, - 1, - "p" - ], - [ - 120318, - 1, - "q" - ], - [ - 120319, - 1, - "r" - ], - [ - 120320, - 1, - "s" - ], - [ - 120321, - 1, - "t" - ], - [ - 120322, - 1, - "u" - ], - [ - 120323, - 1, - "v" - ], - [ - 120324, - 1, - "w" - ], - [ - 120325, - 1, - "x" - ], - [ - 120326, - 1, - "y" - ], - [ - 120327, - 1, - "z" - ], - [ - 120328, - 1, - "a" - ], - [ - 120329, - 1, - "b" - ], - [ - 120330, - 1, - "c" - ], - [ - 120331, - 1, - "d" - ], - [ - 120332, - 1, - "e" - ], - [ - 120333, - 1, - "f" - ], - [ - 120334, - 1, - "g" - ], - [ - 120335, - 1, - "h" - ], - [ - 120336, - 1, - "i" - ], - [ - 120337, - 1, - "j" - ], - [ - 120338, - 1, - "k" - ], - [ - 120339, - 1, - "l" - ], - [ - 120340, - 1, - "m" - ], - [ - 120341, - 1, - "n" - ], - [ - 120342, - 1, - "o" - ], - [ - 120343, - 1, - "p" - ], - [ - 120344, - 1, - "q" - ], - [ - 120345, - 1, - "r" - ], - [ - 120346, - 1, - "s" - ], - [ - 120347, - 1, - "t" - ], - [ - 120348, - 1, - "u" - ], - [ - 120349, - 1, - "v" - ], - [ - 120350, - 1, - "w" - ], - [ - 120351, - 1, - "x" - ], - [ - 120352, - 1, - "y" - ], - [ - 120353, - 1, - "z" - ], - [ - 120354, - 1, - "a" - ], - [ - 120355, - 1, - "b" - ], - [ - 120356, - 1, - "c" - ], - [ - 120357, - 1, - "d" - ], - [ - 120358, - 1, - "e" - ], - [ - 120359, - 1, - "f" - ], - [ - 120360, - 1, - "g" - ], - [ - 120361, - 1, - "h" - ], - [ - 120362, - 1, - "i" - ], - [ - 120363, - 1, - "j" - ], - [ - 120364, - 1, - "k" - ], - [ - 120365, - 1, - "l" - ], - [ - 120366, - 1, - "m" - ], - [ - 120367, - 1, - "n" - ], - [ - 120368, - 1, - "o" - ], - [ - 120369, - 1, - "p" - ], - [ - 120370, - 1, - "q" - ], - [ - 120371, - 1, - "r" - ], - [ - 120372, - 1, - "s" - ], - [ - 120373, - 1, - "t" - ], - [ - 120374, - 1, - "u" - ], - [ - 120375, - 1, - "v" - ], - [ - 120376, - 1, - "w" - ], - [ - 120377, - 1, - "x" - ], - [ - 120378, - 1, - "y" - ], - [ - 120379, - 1, - "z" - ], - [ - 120380, - 1, - "a" - ], - [ - 120381, - 1, - "b" - ], - [ - 120382, - 1, - "c" - ], - [ - 120383, - 1, - "d" - ], - [ - 120384, - 1, - "e" - ], - [ - 120385, - 1, - "f" - ], - [ - 120386, - 1, - "g" - ], - [ - 120387, - 1, - "h" - ], - [ - 120388, - 1, - "i" - ], - [ - 120389, - 1, - "j" - ], - [ - 120390, - 1, - "k" - ], - [ - 120391, - 1, - "l" - ], - [ - 120392, - 1, - "m" - ], - [ - 120393, - 1, - "n" - ], - [ - 120394, - 1, - "o" - ], - [ - 120395, - 1, - "p" - ], - [ - 120396, - 1, - "q" - ], - [ - 120397, - 1, - "r" - ], - [ - 120398, - 1, - "s" - ], - [ - 120399, - 1, - "t" - ], - [ - 120400, - 1, - "u" - ], - [ - 120401, - 1, - "v" - ], - [ - 120402, - 1, - "w" - ], - [ - 120403, - 1, - "x" - ], - [ - 120404, - 1, - "y" - ], - [ - 120405, - 1, - "z" - ], - [ - 120406, - 1, - "a" - ], - [ - 120407, - 1, - "b" - ], - [ - 120408, - 1, - "c" - ], - [ - 120409, - 1, - "d" - ], - [ - 120410, - 1, - "e" - ], - [ - 120411, - 1, - "f" - ], - [ - 120412, - 1, - "g" - ], - [ - 120413, - 1, - "h" - ], - [ - 120414, - 1, - "i" - ], - [ - 120415, - 1, - "j" - ], - [ - 120416, - 1, - "k" - ], - [ - 120417, - 1, - "l" - ], - [ - 120418, - 1, - "m" - ], - [ - 120419, - 1, - "n" - ], - [ - 120420, - 1, - "o" - ], - [ - 120421, - 1, - "p" - ], - [ - 120422, - 1, - "q" - ], - [ - 120423, - 1, - "r" - ], - [ - 120424, - 1, - "s" - ], - [ - 120425, - 1, - "t" - ], - [ - 120426, - 1, - "u" - ], - [ - 120427, - 1, - "v" - ], - [ - 120428, - 1, - "w" - ], - [ - 120429, - 1, - "x" - ], - [ - 120430, - 1, - "y" - ], - [ - 120431, - 1, - "z" - ], - [ - 120432, - 1, - "a" - ], - [ - 120433, - 1, - "b" - ], - [ - 120434, - 1, - "c" - ], - [ - 120435, - 1, - "d" - ], - [ - 120436, - 1, - "e" - ], - [ - 120437, - 1, - "f" - ], - [ - 120438, - 1, - "g" - ], - [ - 120439, - 1, - "h" - ], - [ - 120440, - 1, - "i" - ], - [ - 120441, - 1, - "j" - ], - [ - 120442, - 1, - "k" - ], - [ - 120443, - 1, - "l" - ], - [ - 120444, - 1, - "m" - ], - [ - 120445, - 1, - "n" - ], - [ - 120446, - 1, - "o" - ], - [ - 120447, - 1, - "p" - ], - [ - 120448, - 1, - "q" - ], - [ - 120449, - 1, - "r" - ], - [ - 120450, - 1, - "s" - ], - [ - 120451, - 1, - "t" - ], - [ - 120452, - 1, - "u" - ], - [ - 120453, - 1, - "v" - ], - [ - 120454, - 1, - "w" - ], - [ - 120455, - 1, - "x" - ], - [ - 120456, - 1, - "y" - ], - [ - 120457, - 1, - "z" - ], - [ - 120458, - 1, - "a" - ], - [ - 120459, - 1, - "b" - ], - [ - 120460, - 1, - "c" - ], - [ - 120461, - 1, - "d" - ], - [ - 120462, - 1, - "e" - ], - [ - 120463, - 1, - "f" - ], - [ - 120464, - 1, - "g" - ], - [ - 120465, - 1, - "h" - ], - [ - 120466, - 1, - "i" - ], - [ - 120467, - 1, - "j" - ], - [ - 120468, - 1, - "k" - ], - [ - 120469, - 1, - "l" - ], - [ - 120470, - 1, - "m" - ], - [ - 120471, - 1, - "n" - ], - [ - 120472, - 1, - "o" - ], - [ - 120473, - 1, - "p" - ], - [ - 120474, - 1, - "q" - ], - [ - 120475, - 1, - "r" - ], - [ - 120476, - 1, - "s" - ], - [ - 120477, - 1, - "t" - ], - [ - 120478, - 1, - "u" - ], - [ - 120479, - 1, - "v" - ], - [ - 120480, - 1, - "w" - ], - [ - 120481, - 1, - "x" - ], - [ - 120482, - 1, - "y" - ], - [ - 120483, - 1, - "z" - ], - [ - 120484, - 1, - "ı" - ], - [ - 120485, - 1, - "ȷ" - ], - [ - [ - 120486, - 120487 - ], - 3 - ], - [ - 120488, - 1, - "α" - ], - [ - 120489, - 1, - "β" - ], - [ - 120490, - 1, - "γ" - ], - [ - 120491, - 1, - "δ" - ], - [ - 120492, - 1, - "ε" - ], - [ - 120493, - 1, - "ζ" - ], - [ - 120494, - 1, - "η" - ], - [ - 120495, - 1, - "θ" - ], - [ - 120496, - 1, - "ι" - ], - [ - 120497, - 1, - "κ" - ], - [ - 120498, - 1, - "λ" - ], - [ - 120499, - 1, - "μ" - ], - [ - 120500, - 1, - "ν" - ], - [ - 120501, - 1, - "ξ" - ], - [ - 120502, - 1, - "ο" - ], - [ - 120503, - 1, - "π" - ], - [ - 120504, - 1, - "ρ" - ], - [ - 120505, - 1, - "θ" - ], - [ - 120506, - 1, - "σ" - ], - [ - 120507, - 1, - "τ" - ], - [ - 120508, - 1, - "υ" - ], - [ - 120509, - 1, - "φ" - ], - [ - 120510, - 1, - "χ" - ], - [ - 120511, - 1, - "ψ" - ], - [ - 120512, - 1, - "ω" - ], - [ - 120513, - 1, - "∇" - ], - [ - 120514, - 1, - "α" - ], - [ - 120515, - 1, - "β" - ], - [ - 120516, - 1, - "γ" - ], - [ - 120517, - 1, - "δ" - ], - [ - 120518, - 1, - "ε" - ], - [ - 120519, - 1, - "ζ" - ], - [ - 120520, - 1, - "η" - ], - [ - 120521, - 1, - "θ" - ], - [ - 120522, - 1, - "ι" - ], - [ - 120523, - 1, - "κ" - ], - [ - 120524, - 1, - "λ" - ], - [ - 120525, - 1, - "μ" - ], - [ - 120526, - 1, - "ν" - ], - [ - 120527, - 1, - "ξ" - ], - [ - 120528, - 1, - "ο" - ], - [ - 120529, - 1, - "π" - ], - [ - 120530, - 1, - "ρ" - ], - [ - [ - 120531, - 120532 - ], - 1, - "σ" - ], - [ - 120533, - 1, - "τ" - ], - [ - 120534, - 1, - "υ" - ], - [ - 120535, - 1, - "φ" - ], - [ - 120536, - 1, - "χ" - ], - [ - 120537, - 1, - "ψ" - ], - [ - 120538, - 1, - "ω" - ], - [ - 120539, - 1, - "∂" - ], - [ - 120540, - 1, - "ε" - ], - [ - 120541, - 1, - "θ" - ], - [ - 120542, - 1, - "κ" - ], - [ - 120543, - 1, - "φ" - ], - [ - 120544, - 1, - "ρ" - ], - [ - 120545, - 1, - "π" - ], - [ - 120546, - 1, - "α" - ], - [ - 120547, - 1, - "β" - ], - [ - 120548, - 1, - "γ" - ], - [ - 120549, - 1, - "δ" - ], - [ - 120550, - 1, - "ε" - ], - [ - 120551, - 1, - "ζ" - ], - [ - 120552, - 1, - "η" - ], - [ - 120553, - 1, - "θ" - ], - [ - 120554, - 1, - "ι" - ], - [ - 120555, - 1, - "κ" - ], - [ - 120556, - 1, - "λ" - ], - [ - 120557, - 1, - "μ" - ], - [ - 120558, - 1, - "ν" - ], - [ - 120559, - 1, - "ξ" - ], - [ - 120560, - 1, - "ο" - ], - [ - 120561, - 1, - "π" - ], - [ - 120562, - 1, - "ρ" - ], - [ - 120563, - 1, - "θ" - ], - [ - 120564, - 1, - "σ" - ], - [ - 120565, - 1, - "τ" - ], - [ - 120566, - 1, - "υ" - ], - [ - 120567, - 1, - "φ" - ], - [ - 120568, - 1, - "χ" - ], - [ - 120569, - 1, - "ψ" - ], - [ - 120570, - 1, - "ω" - ], - [ - 120571, - 1, - "∇" - ], - [ - 120572, - 1, - "α" - ], - [ - 120573, - 1, - "β" - ], - [ - 120574, - 1, - "γ" - ], - [ - 120575, - 1, - "δ" - ], - [ - 120576, - 1, - "ε" - ], - [ - 120577, - 1, - "ζ" - ], - [ - 120578, - 1, - "η" - ], - [ - 120579, - 1, - "θ" - ], - [ - 120580, - 1, - "ι" - ], - [ - 120581, - 1, - "κ" - ], - [ - 120582, - 1, - "λ" - ], - [ - 120583, - 1, - "μ" - ], - [ - 120584, - 1, - "ν" - ], - [ - 120585, - 1, - "ξ" - ], - [ - 120586, - 1, - "ο" - ], - [ - 120587, - 1, - "π" - ], - [ - 120588, - 1, - "ρ" - ], - [ - [ - 120589, - 120590 - ], - 1, - "σ" - ], - [ - 120591, - 1, - "τ" - ], - [ - 120592, - 1, - "υ" - ], - [ - 120593, - 1, - "φ" - ], - [ - 120594, - 1, - "χ" - ], - [ - 120595, - 1, - "ψ" - ], - [ - 120596, - 1, - "ω" - ], - [ - 120597, - 1, - "∂" - ], - [ - 120598, - 1, - "ε" - ], - [ - 120599, - 1, - "θ" - ], - [ - 120600, - 1, - "κ" - ], - [ - 120601, - 1, - "φ" - ], - [ - 120602, - 1, - "ρ" - ], - [ - 120603, - 1, - "π" - ], - [ - 120604, - 1, - "α" - ], - [ - 120605, - 1, - "β" - ], - [ - 120606, - 1, - "γ" - ], - [ - 120607, - 1, - "δ" - ], - [ - 120608, - 1, - "ε" - ], - [ - 120609, - 1, - "ζ" - ], - [ - 120610, - 1, - "η" - ], - [ - 120611, - 1, - "θ" - ], - [ - 120612, - 1, - "ι" - ], - [ - 120613, - 1, - "κ" - ], - [ - 120614, - 1, - "λ" - ], - [ - 120615, - 1, - "μ" - ], - [ - 120616, - 1, - "ν" - ], - [ - 120617, - 1, - "ξ" - ], - [ - 120618, - 1, - "ο" - ], - [ - 120619, - 1, - "π" - ], - [ - 120620, - 1, - "ρ" - ], - [ - 120621, - 1, - "θ" - ], - [ - 120622, - 1, - "σ" - ], - [ - 120623, - 1, - "τ" - ], - [ - 120624, - 1, - "υ" - ], - [ - 120625, - 1, - "φ" - ], - [ - 120626, - 1, - "χ" - ], - [ - 120627, - 1, - "ψ" - ], - [ - 120628, - 1, - "ω" - ], - [ - 120629, - 1, - "∇" - ], - [ - 120630, - 1, - "α" - ], - [ - 120631, - 1, - "β" - ], - [ - 120632, - 1, - "γ" - ], - [ - 120633, - 1, - "δ" - ], - [ - 120634, - 1, - "ε" - ], - [ - 120635, - 1, - "ζ" - ], - [ - 120636, - 1, - "η" - ], - [ - 120637, - 1, - "θ" - ], - [ - 120638, - 1, - "ι" - ], - [ - 120639, - 1, - "κ" - ], - [ - 120640, - 1, - "λ" - ], - [ - 120641, - 1, - "μ" - ], - [ - 120642, - 1, - "ν" - ], - [ - 120643, - 1, - "ξ" - ], - [ - 120644, - 1, - "ο" - ], - [ - 120645, - 1, - "π" - ], - [ - 120646, - 1, - "ρ" - ], - [ - [ - 120647, - 120648 - ], - 1, - "σ" - ], - [ - 120649, - 1, - "τ" - ], - [ - 120650, - 1, - "υ" - ], - [ - 120651, - 1, - "φ" - ], - [ - 120652, - 1, - "χ" - ], - [ - 120653, - 1, - "ψ" - ], - [ - 120654, - 1, - "ω" - ], - [ - 120655, - 1, - "∂" - ], - [ - 120656, - 1, - "ε" - ], - [ - 120657, - 1, - "θ" - ], - [ - 120658, - 1, - "κ" - ], - [ - 120659, - 1, - "φ" - ], - [ - 120660, - 1, - "ρ" - ], - [ - 120661, - 1, - "π" - ], - [ - 120662, - 1, - "α" - ], - [ - 120663, - 1, - "β" - ], - [ - 120664, - 1, - "γ" - ], - [ - 120665, - 1, - "δ" - ], - [ - 120666, - 1, - "ε" - ], - [ - 120667, - 1, - "ζ" - ], - [ - 120668, - 1, - "η" - ], - [ - 120669, - 1, - "θ" - ], - [ - 120670, - 1, - "ι" - ], - [ - 120671, - 1, - "κ" - ], - [ - 120672, - 1, - "λ" - ], - [ - 120673, - 1, - "μ" - ], - [ - 120674, - 1, - "ν" - ], - [ - 120675, - 1, - "ξ" - ], - [ - 120676, - 1, - "ο" - ], - [ - 120677, - 1, - "π" - ], - [ - 120678, - 1, - "ρ" - ], - [ - 120679, - 1, - "θ" - ], - [ - 120680, - 1, - "σ" - ], - [ - 120681, - 1, - "τ" - ], - [ - 120682, - 1, - "υ" - ], - [ - 120683, - 1, - "φ" - ], - [ - 120684, - 1, - "χ" - ], - [ - 120685, - 1, - "ψ" - ], - [ - 120686, - 1, - "ω" - ], - [ - 120687, - 1, - "∇" - ], - [ - 120688, - 1, - "α" - ], - [ - 120689, - 1, - "β" - ], - [ - 120690, - 1, - "γ" - ], - [ - 120691, - 1, - "δ" - ], - [ - 120692, - 1, - "ε" - ], - [ - 120693, - 1, - "ζ" - ], - [ - 120694, - 1, - "η" - ], - [ - 120695, - 1, - "θ" - ], - [ - 120696, - 1, - "ι" - ], - [ - 120697, - 1, - "κ" - ], - [ - 120698, - 1, - "λ" - ], - [ - 120699, - 1, - "μ" - ], - [ - 120700, - 1, - "ν" - ], - [ - 120701, - 1, - "ξ" - ], - [ - 120702, - 1, - "ο" - ], - [ - 120703, - 1, - "π" - ], - [ - 120704, - 1, - "ρ" - ], - [ - [ - 120705, - 120706 - ], - 1, - "σ" - ], - [ - 120707, - 1, - "τ" - ], - [ - 120708, - 1, - "υ" - ], - [ - 120709, - 1, - "φ" - ], - [ - 120710, - 1, - "χ" - ], - [ - 120711, - 1, - "ψ" - ], - [ - 120712, - 1, - "ω" - ], - [ - 120713, - 1, - "∂" - ], - [ - 120714, - 1, - "ε" - ], - [ - 120715, - 1, - "θ" - ], - [ - 120716, - 1, - "κ" - ], - [ - 120717, - 1, - "φ" - ], - [ - 120718, - 1, - "ρ" - ], - [ - 120719, - 1, - "π" - ], - [ - 120720, - 1, - "α" - ], - [ - 120721, - 1, - "β" - ], - [ - 120722, - 1, - "γ" - ], - [ - 120723, - 1, - "δ" - ], - [ - 120724, - 1, - "ε" - ], - [ - 120725, - 1, - "ζ" - ], - [ - 120726, - 1, - "η" - ], - [ - 120727, - 1, - "θ" - ], - [ - 120728, - 1, - "ι" - ], - [ - 120729, - 1, - "κ" - ], - [ - 120730, - 1, - "λ" - ], - [ - 120731, - 1, - "μ" - ], - [ - 120732, - 1, - "ν" - ], - [ - 120733, - 1, - "ξ" - ], - [ - 120734, - 1, - "ο" - ], - [ - 120735, - 1, - "π" - ], - [ - 120736, - 1, - "ρ" - ], - [ - 120737, - 1, - "θ" - ], - [ - 120738, - 1, - "σ" - ], - [ - 120739, - 1, - "τ" - ], - [ - 120740, - 1, - "υ" - ], - [ - 120741, - 1, - "φ" - ], - [ - 120742, - 1, - "χ" - ], - [ - 120743, - 1, - "ψ" - ], - [ - 120744, - 1, - "ω" - ], - [ - 120745, - 1, - "∇" - ], - [ - 120746, - 1, - "α" - ], - [ - 120747, - 1, - "β" - ], - [ - 120748, - 1, - "γ" - ], - [ - 120749, - 1, - "δ" - ], - [ - 120750, - 1, - "ε" - ], - [ - 120751, - 1, - "ζ" - ], - [ - 120752, - 1, - "η" - ], - [ - 120753, - 1, - "θ" - ], - [ - 120754, - 1, - "ι" - ], - [ - 120755, - 1, - "κ" - ], - [ - 120756, - 1, - "λ" - ], - [ - 120757, - 1, - "μ" - ], - [ - 120758, - 1, - "ν" - ], - [ - 120759, - 1, - "ξ" - ], - [ - 120760, - 1, - "ο" - ], - [ - 120761, - 1, - "π" - ], - [ - 120762, - 1, - "ρ" - ], - [ - [ - 120763, - 120764 - ], - 1, - "σ" - ], - [ - 120765, - 1, - "τ" - ], - [ - 120766, - 1, - "υ" - ], - [ - 120767, - 1, - "φ" - ], - [ - 120768, - 1, - "χ" - ], - [ - 120769, - 1, - "ψ" - ], - [ - 120770, - 1, - "ω" - ], - [ - 120771, - 1, - "∂" - ], - [ - 120772, - 1, - "ε" - ], - [ - 120773, - 1, - "θ" - ], - [ - 120774, - 1, - "κ" - ], - [ - 120775, - 1, - "φ" - ], - [ - 120776, - 1, - "ρ" - ], - [ - 120777, - 1, - "π" - ], - [ - [ - 120778, - 120779 - ], - 1, - "ϝ" - ], - [ - [ - 120780, - 120781 - ], - 3 - ], - [ - 120782, - 1, - "0" - ], - [ - 120783, - 1, - "1" - ], - [ - 120784, - 1, - "2" - ], - [ - 120785, - 1, - "3" - ], - [ - 120786, - 1, - "4" - ], - [ - 120787, - 1, - "5" - ], - [ - 120788, - 1, - "6" - ], - [ - 120789, - 1, - "7" - ], - [ - 120790, - 1, - "8" - ], - [ - 120791, - 1, - "9" - ], - [ - 120792, - 1, - "0" - ], - [ - 120793, - 1, - "1" - ], - [ - 120794, - 1, - "2" - ], - [ - 120795, - 1, - "3" - ], - [ - 120796, - 1, - "4" - ], - [ - 120797, - 1, - "5" - ], - [ - 120798, - 1, - "6" - ], - [ - 120799, - 1, - "7" - ], - [ - 120800, - 1, - "8" - ], - [ - 120801, - 1, - "9" - ], - [ - 120802, - 1, - "0" - ], - [ - 120803, - 1, - "1" - ], - [ - 120804, - 1, - "2" - ], - [ - 120805, - 1, - "3" - ], - [ - 120806, - 1, - "4" - ], - [ - 120807, - 1, - "5" - ], - [ - 120808, - 1, - "6" - ], - [ - 120809, - 1, - "7" - ], - [ - 120810, - 1, - "8" - ], - [ - 120811, - 1, - "9" - ], - [ - 120812, - 1, - "0" - ], - [ - 120813, - 1, - "1" - ], - [ - 120814, - 1, - "2" - ], - [ - 120815, - 1, - "3" - ], - [ - 120816, - 1, - "4" - ], - [ - 120817, - 1, - "5" - ], - [ - 120818, - 1, - "6" - ], - [ - 120819, - 1, - "7" - ], - [ - 120820, - 1, - "8" - ], - [ - 120821, - 1, - "9" - ], - [ - 120822, - 1, - "0" - ], - [ - 120823, - 1, - "1" - ], - [ - 120824, - 1, - "2" - ], - [ - 120825, - 1, - "3" - ], - [ - 120826, - 1, - "4" - ], - [ - 120827, - 1, - "5" - ], - [ - 120828, - 1, - "6" - ], - [ - 120829, - 1, - "7" - ], - [ - 120830, - 1, - "8" - ], - [ - 120831, - 1, - "9" - ], - [ - [ - 120832, - 121343 - ], - 2 - ], - [ - [ - 121344, - 121398 - ], - 2 - ], - [ - [ - 121399, - 121402 - ], - 2 - ], - [ - [ - 121403, - 121452 - ], - 2 - ], - [ - [ - 121453, - 121460 - ], - 2 - ], - [ - 121461, - 2 - ], - [ - [ - 121462, - 121475 - ], - 2 - ], - [ - 121476, - 2 - ], - [ - [ - 121477, - 121483 - ], - 2 - ], - [ - [ - 121484, - 121498 - ], - 3 - ], - [ - [ - 121499, - 121503 - ], - 2 - ], - [ - 121504, - 3 - ], - [ - [ - 121505, - 121519 - ], - 2 - ], - [ - [ - 121520, - 122623 - ], - 3 - ], - [ - [ - 122624, - 122654 - ], - 2 - ], - [ - [ - 122655, - 122879 - ], - 3 - ], - [ - [ - 122880, - 122886 - ], - 2 - ], - [ - 122887, - 3 - ], - [ - [ - 122888, - 122904 - ], - 2 - ], - [ - [ - 122905, - 122906 - ], - 3 - ], - [ - [ - 122907, - 122913 - ], - 2 - ], - [ - 122914, - 3 - ], - [ - [ - 122915, - 122916 - ], - 2 - ], - [ - 122917, - 3 - ], - [ - [ - 122918, - 122922 - ], - 2 - ], - [ - [ - 122923, - 123135 - ], - 3 - ], - [ - [ - 123136, - 123180 - ], - 2 - ], - [ - [ - 123181, - 123183 - ], - 3 - ], - [ - [ - 123184, - 123197 - ], - 2 - ], - [ - [ - 123198, - 123199 - ], - 3 - ], - [ - [ - 123200, - 123209 - ], - 2 - ], - [ - [ - 123210, - 123213 - ], - 3 - ], - [ - 123214, - 2 - ], - [ - 123215, - 2 - ], - [ - [ - 123216, - 123535 - ], - 3 - ], - [ - [ - 123536, - 123566 - ], - 2 - ], - [ - [ - 123567, - 123583 - ], - 3 - ], - [ - [ - 123584, - 123641 - ], - 2 - ], - [ - [ - 123642, - 123646 - ], - 3 - ], - [ - 123647, - 2 - ], - [ - [ - 123648, - 124895 - ], - 3 - ], - [ - [ - 124896, - 124902 - ], - 2 - ], - [ - 124903, - 3 - ], - [ - [ - 124904, - 124907 - ], - 2 - ], - [ - 124908, - 3 - ], - [ - [ - 124909, - 124910 - ], - 2 - ], - [ - 124911, - 3 - ], - [ - [ - 124912, - 124926 - ], - 2 - ], - [ - 124927, - 3 - ], - [ - [ - 124928, - 125124 - ], - 2 - ], - [ - [ - 125125, - 125126 - ], - 3 - ], - [ - [ - 125127, - 125135 - ], - 2 - ], - [ - [ - 125136, - 125142 - ], - 2 - ], - [ - [ - 125143, - 125183 - ], - 3 - ], - [ - 125184, - 1, - "𞤢" - ], - [ - 125185, - 1, - "𞤣" - ], - [ - 125186, - 1, - "𞤤" - ], - [ - 125187, - 1, - "𞤥" - ], - [ - 125188, - 1, - "𞤦" - ], - [ - 125189, - 1, - "𞤧" - ], - [ - 125190, - 1, - "𞤨" - ], - [ - 125191, - 1, - "𞤩" - ], - [ - 125192, - 1, - "𞤪" - ], - [ - 125193, - 1, - "𞤫" - ], - [ - 125194, - 1, - "𞤬" - ], - [ - 125195, - 1, - "𞤭" - ], - [ - 125196, - 1, - "𞤮" - ], - [ - 125197, - 1, - "𞤯" - ], - [ - 125198, - 1, - "𞤰" - ], - [ - 125199, - 1, - "𞤱" - ], - [ - 125200, - 1, - "𞤲" - ], - [ - 125201, - 1, - "𞤳" - ], - [ - 125202, - 1, - "𞤴" - ], - [ - 125203, - 1, - "𞤵" - ], - [ - 125204, - 1, - "𞤶" - ], - [ - 125205, - 1, - "𞤷" - ], - [ - 125206, - 1, - "𞤸" - ], - [ - 125207, - 1, - "𞤹" - ], - [ - 125208, - 1, - "𞤺" - ], - [ - 125209, - 1, - "𞤻" - ], - [ - 125210, - 1, - "𞤼" - ], - [ - 125211, - 1, - "𞤽" - ], - [ - 125212, - 1, - "𞤾" - ], - [ - 125213, - 1, - "𞤿" - ], - [ - 125214, - 1, - "𞥀" - ], - [ - 125215, - 1, - "𞥁" - ], - [ - 125216, - 1, - "𞥂" - ], - [ - 125217, - 1, - "𞥃" - ], - [ - [ - 125218, - 125258 - ], - 2 - ], - [ - 125259, - 2 - ], - [ - [ - 125260, - 125263 - ], - 3 - ], - [ - [ - 125264, - 125273 - ], - 2 - ], - [ - [ - 125274, - 125277 - ], - 3 - ], - [ - [ - 125278, - 125279 - ], - 2 - ], - [ - [ - 125280, - 126064 - ], - 3 - ], - [ - [ - 126065, - 126132 - ], - 2 - ], - [ - [ - 126133, - 126208 - ], - 3 - ], - [ - [ - 126209, - 126269 - ], - 2 - ], - [ - [ - 126270, - 126463 - ], - 3 - ], - [ - 126464, - 1, - "ا" - ], - [ - 126465, - 1, - "ب" - ], - [ - 126466, - 1, - "ج" - ], - [ - 126467, - 1, - "د" - ], - [ - 126468, - 3 - ], - [ - 126469, - 1, - "و" - ], - [ - 126470, - 1, - "ز" - ], - [ - 126471, - 1, - "ح" - ], - [ - 126472, - 1, - "ط" - ], - [ - 126473, - 1, - "ي" - ], - [ - 126474, - 1, - "ك" - ], - [ - 126475, - 1, - "ل" - ], - [ - 126476, - 1, - "م" - ], - [ - 126477, - 1, - "ن" - ], - [ - 126478, - 1, - "س" - ], - [ - 126479, - 1, - "ع" - ], - [ - 126480, - 1, - "ف" - ], - [ - 126481, - 1, - "ص" - ], - [ - 126482, - 1, - "ق" - ], - [ - 126483, - 1, - "ر" - ], - [ - 126484, - 1, - "ش" - ], - [ - 126485, - 1, - "ت" - ], - [ - 126486, - 1, - "ث" - ], - [ - 126487, - 1, - "خ" - ], - [ - 126488, - 1, - "ذ" - ], - [ - 126489, - 1, - "ض" - ], - [ - 126490, - 1, - "ظ" - ], - [ - 126491, - 1, - "غ" - ], - [ - 126492, - 1, - "ٮ" - ], - [ - 126493, - 1, - "ں" - ], - [ - 126494, - 1, - "ڡ" - ], - [ - 126495, - 1, - "ٯ" - ], - [ - 126496, - 3 - ], - [ - 126497, - 1, - "ب" - ], - [ - 126498, - 1, - "ج" - ], - [ - 126499, - 3 - ], - [ - 126500, - 1, - "ه" - ], - [ - [ - 126501, - 126502 - ], - 3 - ], - [ - 126503, - 1, - "ح" - ], - [ - 126504, - 3 - ], - [ - 126505, - 1, - "ي" - ], - [ - 126506, - 1, - "ك" - ], - [ - 126507, - 1, - "ل" - ], - [ - 126508, - 1, - "م" - ], - [ - 126509, - 1, - "ن" - ], - [ - 126510, - 1, - "س" - ], - [ - 126511, - 1, - "ع" - ], - [ - 126512, - 1, - "ف" - ], - [ - 126513, - 1, - "ص" - ], - [ - 126514, - 1, - "ق" - ], - [ - 126515, - 3 - ], - [ - 126516, - 1, - "ش" - ], - [ - 126517, - 1, - "ت" - ], - [ - 126518, - 1, - "ث" - ], - [ - 126519, - 1, - "خ" - ], - [ - 126520, - 3 - ], - [ - 126521, - 1, - "ض" - ], - [ - 126522, - 3 - ], - [ - 126523, - 1, - "غ" - ], - [ - [ - 126524, - 126529 - ], - 3 - ], - [ - 126530, - 1, - "ج" - ], - [ - [ - 126531, - 126534 - ], - 3 - ], - [ - 126535, - 1, - "ح" - ], - [ - 126536, - 3 - ], - [ - 126537, - 1, - "ي" - ], - [ - 126538, - 3 - ], - [ - 126539, - 1, - "ل" - ], - [ - 126540, - 3 - ], - [ - 126541, - 1, - "ن" - ], - [ - 126542, - 1, - "س" - ], - [ - 126543, - 1, - "ع" - ], - [ - 126544, - 3 - ], - [ - 126545, - 1, - "ص" - ], - [ - 126546, - 1, - "ق" - ], - [ - 126547, - 3 - ], - [ - 126548, - 1, - "ش" - ], - [ - [ - 126549, - 126550 - ], - 3 - ], - [ - 126551, - 1, - "خ" - ], - [ - 126552, - 3 - ], - [ - 126553, - 1, - "ض" - ], - [ - 126554, - 3 - ], - [ - 126555, - 1, - "غ" - ], - [ - 126556, - 3 - ], - [ - 126557, - 1, - "ں" - ], - [ - 126558, - 3 - ], - [ - 126559, - 1, - "ٯ" - ], - [ - 126560, - 3 - ], - [ - 126561, - 1, - "ب" - ], - [ - 126562, - 1, - "ج" - ], - [ - 126563, - 3 - ], - [ - 126564, - 1, - "ه" - ], - [ - [ - 126565, - 126566 - ], - 3 - ], - [ - 126567, - 1, - "ح" - ], - [ - 126568, - 1, - "ط" - ], - [ - 126569, - 1, - "ي" - ], - [ - 126570, - 1, - "ك" - ], - [ - 126571, - 3 - ], - [ - 126572, - 1, - "م" - ], - [ - 126573, - 1, - "ن" - ], - [ - 126574, - 1, - "س" - ], - [ - 126575, - 1, - "ع" - ], - [ - 126576, - 1, - "ف" - ], - [ - 126577, - 1, - "ص" - ], - [ - 126578, - 1, - "ق" - ], - [ - 126579, - 3 - ], - [ - 126580, - 1, - "ش" - ], - [ - 126581, - 1, - "ت" - ], - [ - 126582, - 1, - "ث" - ], - [ - 126583, - 1, - "خ" - ], - [ - 126584, - 3 - ], - [ - 126585, - 1, - "ض" - ], - [ - 126586, - 1, - "ظ" - ], - [ - 126587, - 1, - "غ" - ], - [ - 126588, - 1, - "ٮ" - ], - [ - 126589, - 3 - ], - [ - 126590, - 1, - "ڡ" - ], - [ - 126591, - 3 - ], - [ - 126592, - 1, - "ا" - ], - [ - 126593, - 1, - "ب" - ], - [ - 126594, - 1, - "ج" - ], - [ - 126595, - 1, - "د" - ], - [ - 126596, - 1, - "ه" - ], - [ - 126597, - 1, - "و" - ], - [ - 126598, - 1, - "ز" - ], - [ - 126599, - 1, - "ح" - ], - [ - 126600, - 1, - "ط" - ], - [ - 126601, - 1, - "ي" - ], - [ - 126602, - 3 - ], - [ - 126603, - 1, - "ل" - ], - [ - 126604, - 1, - "م" - ], - [ - 126605, - 1, - "ن" - ], - [ - 126606, - 1, - "س" - ], - [ - 126607, - 1, - "ع" - ], - [ - 126608, - 1, - "ف" - ], - [ - 126609, - 1, - "ص" - ], - [ - 126610, - 1, - "ق" - ], - [ - 126611, - 1, - "ر" - ], - [ - 126612, - 1, - "ش" - ], - [ - 126613, - 1, - "ت" - ], - [ - 126614, - 1, - "ث" - ], - [ - 126615, - 1, - "خ" - ], - [ - 126616, - 1, - "ذ" - ], - [ - 126617, - 1, - "ض" - ], - [ - 126618, - 1, - "ظ" - ], - [ - 126619, - 1, - "غ" - ], - [ - [ - 126620, - 126624 - ], - 3 - ], - [ - 126625, - 1, - "ب" - ], - [ - 126626, - 1, - "ج" - ], - [ - 126627, - 1, - "د" - ], - [ - 126628, - 3 - ], - [ - 126629, - 1, - "و" - ], - [ - 126630, - 1, - "ز" - ], - [ - 126631, - 1, - "ح" - ], - [ - 126632, - 1, - "ط" - ], - [ - 126633, - 1, - "ي" - ], - [ - 126634, - 3 - ], - [ - 126635, - 1, - "ل" - ], - [ - 126636, - 1, - "م" - ], - [ - 126637, - 1, - "ن" - ], - [ - 126638, - 1, - "س" - ], - [ - 126639, - 1, - "ع" - ], - [ - 126640, - 1, - "ف" - ], - [ - 126641, - 1, - "ص" - ], - [ - 126642, - 1, - "ق" - ], - [ - 126643, - 1, - "ر" - ], - [ - 126644, - 1, - "ش" - ], - [ - 126645, - 1, - "ت" - ], - [ - 126646, - 1, - "ث" - ], - [ - 126647, - 1, - "خ" - ], - [ - 126648, - 1, - "ذ" - ], - [ - 126649, - 1, - "ض" - ], - [ - 126650, - 1, - "ظ" - ], - [ - 126651, - 1, - "غ" - ], - [ - [ - 126652, - 126703 - ], - 3 - ], - [ - [ - 126704, - 126705 - ], - 2 - ], - [ - [ - 126706, - 126975 - ], - 3 - ], - [ - [ - 126976, - 127019 - ], - 2 - ], - [ - [ - 127020, - 127023 - ], - 3 - ], - [ - [ - 127024, - 127123 - ], - 2 - ], - [ - [ - 127124, - 127135 - ], - 3 - ], - [ - [ - 127136, - 127150 - ], - 2 - ], - [ - [ - 127151, - 127152 - ], - 3 - ], - [ - [ - 127153, - 127166 - ], - 2 - ], - [ - 127167, - 2 - ], - [ - 127168, - 3 - ], - [ - [ - 127169, - 127183 - ], - 2 - ], - [ - 127184, - 3 - ], - [ - [ - 127185, - 127199 - ], - 2 - ], - [ - [ - 127200, - 127221 - ], - 2 - ], - [ - [ - 127222, - 127231 - ], - 3 - ], - [ - 127232, - 3 - ], - [ - 127233, - 5, - "0," - ], - [ - 127234, - 5, - "1," - ], - [ - 127235, - 5, - "2," - ], - [ - 127236, - 5, - "3," - ], - [ - 127237, - 5, - "4," - ], - [ - 127238, - 5, - "5," - ], - [ - 127239, - 5, - "6," - ], - [ - 127240, - 5, - "7," - ], - [ - 127241, - 5, - "8," - ], - [ - 127242, - 5, - "9," - ], - [ - [ - 127243, - 127244 - ], - 2 - ], - [ - [ - 127245, - 127247 - ], - 2 - ], - [ - 127248, - 5, - "(a)" - ], - [ - 127249, - 5, - "(b)" - ], - [ - 127250, - 5, - "(c)" - ], - [ - 127251, - 5, - "(d)" - ], - [ - 127252, - 5, - "(e)" - ], - [ - 127253, - 5, - "(f)" - ], - [ - 127254, - 5, - "(g)" - ], - [ - 127255, - 5, - "(h)" - ], - [ - 127256, - 5, - "(i)" - ], - [ - 127257, - 5, - "(j)" - ], - [ - 127258, - 5, - "(k)" - ], - [ - 127259, - 5, - "(l)" - ], - [ - 127260, - 5, - "(m)" - ], - [ - 127261, - 5, - "(n)" - ], - [ - 127262, - 5, - "(o)" - ], - [ - 127263, - 5, - "(p)" - ], - [ - 127264, - 5, - "(q)" - ], - [ - 127265, - 5, - "(r)" - ], - [ - 127266, - 5, - "(s)" - ], - [ - 127267, - 5, - "(t)" - ], - [ - 127268, - 5, - "(u)" - ], - [ - 127269, - 5, - "(v)" - ], - [ - 127270, - 5, - "(w)" - ], - [ - 127271, - 5, - "(x)" - ], - [ - 127272, - 5, - "(y)" - ], - [ - 127273, - 5, - "(z)" - ], - [ - 127274, - 1, - "〔s〕" - ], - [ - 127275, - 1, - "c" - ], - [ - 127276, - 1, - "r" - ], - [ - 127277, - 1, - "cd" - ], - [ - 127278, - 1, - "wz" - ], - [ - 127279, - 2 - ], - [ - 127280, - 1, - "a" - ], - [ - 127281, - 1, - "b" - ], - [ - 127282, - 1, - "c" - ], - [ - 127283, - 1, - "d" - ], - [ - 127284, - 1, - "e" - ], - [ - 127285, - 1, - "f" - ], - [ - 127286, - 1, - "g" - ], - [ - 127287, - 1, - "h" - ], - [ - 127288, - 1, - "i" - ], - [ - 127289, - 1, - "j" - ], - [ - 127290, - 1, - "k" - ], - [ - 127291, - 1, - "l" - ], - [ - 127292, - 1, - "m" - ], - [ - 127293, - 1, - "n" - ], - [ - 127294, - 1, - "o" - ], - [ - 127295, - 1, - "p" - ], - [ - 127296, - 1, - "q" - ], - [ - 127297, - 1, - "r" - ], - [ - 127298, - 1, - "s" - ], - [ - 127299, - 1, - "t" - ], - [ - 127300, - 1, - "u" - ], - [ - 127301, - 1, - "v" - ], - [ - 127302, - 1, - "w" - ], - [ - 127303, - 1, - "x" - ], - [ - 127304, - 1, - "y" - ], - [ - 127305, - 1, - "z" - ], - [ - 127306, - 1, - "hv" - ], - [ - 127307, - 1, - "mv" - ], - [ - 127308, - 1, - "sd" - ], - [ - 127309, - 1, - "ss" - ], - [ - 127310, - 1, - "ppv" - ], - [ - 127311, - 1, - "wc" - ], - [ - [ - 127312, - 127318 - ], - 2 - ], - [ - 127319, - 2 - ], - [ - [ - 127320, - 127326 - ], - 2 - ], - [ - 127327, - 2 - ], - [ - [ - 127328, - 127337 - ], - 2 - ], - [ - 127338, - 1, - "mc" - ], - [ - 127339, - 1, - "md" - ], - [ - 127340, - 1, - "mr" - ], - [ - [ - 127341, - 127343 - ], - 2 - ], - [ - [ - 127344, - 127352 - ], - 2 - ], - [ - 127353, - 2 - ], - [ - 127354, - 2 - ], - [ - [ - 127355, - 127356 - ], - 2 - ], - [ - [ - 127357, - 127358 - ], - 2 - ], - [ - 127359, - 2 - ], - [ - [ - 127360, - 127369 - ], - 2 - ], - [ - [ - 127370, - 127373 - ], - 2 - ], - [ - [ - 127374, - 127375 - ], - 2 - ], - [ - 127376, - 1, - "dj" - ], - [ - [ - 127377, - 127386 - ], - 2 - ], - [ - [ - 127387, - 127404 - ], - 2 - ], - [ - 127405, - 2 - ], - [ - [ - 127406, - 127461 - ], - 3 - ], - [ - [ - 127462, - 127487 - ], - 2 - ], - [ - 127488, - 1, - "ほか" - ], - [ - 127489, - 1, - "ココ" - ], - [ - 127490, - 1, - "サ" - ], - [ - [ - 127491, - 127503 - ], - 3 - ], - [ - 127504, - 1, - "手" - ], - [ - 127505, - 1, - "字" - ], - [ - 127506, - 1, - "双" - ], - [ - 127507, - 1, - "デ" - ], - [ - 127508, - 1, - "二" - ], - [ - 127509, - 1, - "多" - ], - [ - 127510, - 1, - "解" - ], - [ - 127511, - 1, - "天" - ], - [ - 127512, - 1, - "交" - ], - [ - 127513, - 1, - "映" - ], - [ - 127514, - 1, - "無" - ], - [ - 127515, - 1, - "料" - ], - [ - 127516, - 1, - "前" - ], - [ - 127517, - 1, - "後" - ], - [ - 127518, - 1, - "再" - ], - [ - 127519, - 1, - "新" - ], - [ - 127520, - 1, - "初" - ], - [ - 127521, - 1, - "終" - ], - [ - 127522, - 1, - "生" - ], - [ - 127523, - 1, - "販" - ], - [ - 127524, - 1, - "声" - ], - [ - 127525, - 1, - "吹" - ], - [ - 127526, - 1, - "演" - ], - [ - 127527, - 1, - "投" - ], - [ - 127528, - 1, - "捕" - ], - [ - 127529, - 1, - "一" - ], - [ - 127530, - 1, - "三" - ], - [ - 127531, - 1, - "遊" - ], - [ - 127532, - 1, - "左" - ], - [ - 127533, - 1, - "中" - ], - [ - 127534, - 1, - "右" - ], - [ - 127535, - 1, - "指" - ], - [ - 127536, - 1, - "走" - ], - [ - 127537, - 1, - "打" - ], - [ - 127538, - 1, - "禁" - ], - [ - 127539, - 1, - "空" - ], - [ - 127540, - 1, - "合" - ], - [ - 127541, - 1, - "満" - ], - [ - 127542, - 1, - "有" - ], - [ - 127543, - 1, - "月" - ], - [ - 127544, - 1, - "申" - ], - [ - 127545, - 1, - "割" - ], - [ - 127546, - 1, - "営" - ], - [ - 127547, - 1, - "配" - ], - [ - [ - 127548, - 127551 - ], - 3 - ], - [ - 127552, - 1, - "〔本〕" - ], - [ - 127553, - 1, - "〔三〕" - ], - [ - 127554, - 1, - "〔二〕" - ], - [ - 127555, - 1, - "〔安〕" - ], - [ - 127556, - 1, - "〔点〕" - ], - [ - 127557, - 1, - "〔打〕" - ], - [ - 127558, - 1, - "〔盗〕" - ], - [ - 127559, - 1, - "〔勝〕" - ], - [ - 127560, - 1, - "〔敗〕" - ], - [ - [ - 127561, - 127567 - ], - 3 - ], - [ - 127568, - 1, - "得" - ], - [ - 127569, - 1, - "可" - ], - [ - [ - 127570, - 127583 - ], - 3 - ], - [ - [ - 127584, - 127589 - ], - 2 - ], - [ - [ - 127590, - 127743 - ], - 3 - ], - [ - [ - 127744, - 127776 - ], - 2 - ], - [ - [ - 127777, - 127788 - ], - 2 - ], - [ - [ - 127789, - 127791 - ], - 2 - ], - [ - [ - 127792, - 127797 - ], - 2 - ], - [ - 127798, - 2 - ], - [ - [ - 127799, - 127868 - ], - 2 - ], - [ - 127869, - 2 - ], - [ - [ - 127870, - 127871 - ], - 2 - ], - [ - [ - 127872, - 127891 - ], - 2 - ], - [ - [ - 127892, - 127903 - ], - 2 - ], - [ - [ - 127904, - 127940 - ], - 2 - ], - [ - 127941, - 2 - ], - [ - [ - 127942, - 127946 - ], - 2 - ], - [ - [ - 127947, - 127950 - ], - 2 - ], - [ - [ - 127951, - 127955 - ], - 2 - ], - [ - [ - 127956, - 127967 - ], - 2 - ], - [ - [ - 127968, - 127984 - ], - 2 - ], - [ - [ - 127985, - 127991 - ], - 2 - ], - [ - [ - 127992, - 127999 - ], - 2 - ], - [ - [ - 128000, - 128062 - ], - 2 - ], - [ - 128063, - 2 - ], - [ - 128064, - 2 - ], - [ - 128065, - 2 - ], - [ - [ - 128066, - 128247 - ], - 2 - ], - [ - 128248, - 2 - ], - [ - [ - 128249, - 128252 - ], - 2 - ], - [ - [ - 128253, - 128254 - ], - 2 - ], - [ - 128255, - 2 - ], - [ - [ - 128256, - 128317 - ], - 2 - ], - [ - [ - 128318, - 128319 - ], - 2 - ], - [ - [ - 128320, - 128323 - ], - 2 - ], - [ - [ - 128324, - 128330 - ], - 2 - ], - [ - [ - 128331, - 128335 - ], - 2 - ], - [ - [ - 128336, - 128359 - ], - 2 - ], - [ - [ - 128360, - 128377 - ], - 2 - ], - [ - 128378, - 2 - ], - [ - [ - 128379, - 128419 - ], - 2 - ], - [ - 128420, - 2 - ], - [ - [ - 128421, - 128506 - ], - 2 - ], - [ - [ - 128507, - 128511 - ], - 2 - ], - [ - 128512, - 2 - ], - [ - [ - 128513, - 128528 - ], - 2 - ], - [ - 128529, - 2 - ], - [ - [ - 128530, - 128532 - ], - 2 - ], - [ - 128533, - 2 - ], - [ - 128534, - 2 - ], - [ - 128535, - 2 - ], - [ - 128536, - 2 - ], - [ - 128537, - 2 - ], - [ - 128538, - 2 - ], - [ - 128539, - 2 - ], - [ - [ - 128540, - 128542 - ], - 2 - ], - [ - 128543, - 2 - ], - [ - [ - 128544, - 128549 - ], - 2 - ], - [ - [ - 128550, - 128551 - ], - 2 - ], - [ - [ - 128552, - 128555 - ], - 2 - ], - [ - 128556, - 2 - ], - [ - 128557, - 2 - ], - [ - [ - 128558, - 128559 - ], - 2 - ], - [ - [ - 128560, - 128563 - ], - 2 - ], - [ - 128564, - 2 - ], - [ - [ - 128565, - 128576 - ], - 2 - ], - [ - [ - 128577, - 128578 - ], - 2 - ], - [ - [ - 128579, - 128580 - ], - 2 - ], - [ - [ - 128581, - 128591 - ], - 2 - ], - [ - [ - 128592, - 128639 - ], - 2 - ], - [ - [ - 128640, - 128709 - ], - 2 - ], - [ - [ - 128710, - 128719 - ], - 2 - ], - [ - 128720, - 2 - ], - [ - [ - 128721, - 128722 - ], - 2 - ], - [ - [ - 128723, - 128724 - ], - 2 - ], - [ - 128725, - 2 - ], - [ - [ - 128726, - 128727 - ], - 2 - ], - [ - [ - 128728, - 128732 - ], - 3 - ], - [ - [ - 128733, - 128735 - ], - 2 - ], - [ - [ - 128736, - 128748 - ], - 2 - ], - [ - [ - 128749, - 128751 - ], - 3 - ], - [ - [ - 128752, - 128755 - ], - 2 - ], - [ - [ - 128756, - 128758 - ], - 2 - ], - [ - [ - 128759, - 128760 - ], - 2 - ], - [ - 128761, - 2 - ], - [ - 128762, - 2 - ], - [ - [ - 128763, - 128764 - ], - 2 - ], - [ - [ - 128765, - 128767 - ], - 3 - ], - [ - [ - 128768, - 128883 - ], - 2 - ], - [ - [ - 128884, - 128895 - ], - 3 - ], - [ - [ - 128896, - 128980 - ], - 2 - ], - [ - [ - 128981, - 128984 - ], - 2 - ], - [ - [ - 128985, - 128991 - ], - 3 - ], - [ - [ - 128992, - 129003 - ], - 2 - ], - [ - [ - 129004, - 129007 - ], - 3 - ], - [ - 129008, - 2 - ], - [ - [ - 129009, - 129023 - ], - 3 - ], - [ - [ - 129024, - 129035 - ], - 2 - ], - [ - [ - 129036, - 129039 - ], - 3 - ], - [ - [ - 129040, - 129095 - ], - 2 - ], - [ - [ - 129096, - 129103 - ], - 3 - ], - [ - [ - 129104, - 129113 - ], - 2 - ], - [ - [ - 129114, - 129119 - ], - 3 - ], - [ - [ - 129120, - 129159 - ], - 2 - ], - [ - [ - 129160, - 129167 - ], - 3 - ], - [ - [ - 129168, - 129197 - ], - 2 - ], - [ - [ - 129198, - 129199 - ], - 3 - ], - [ - [ - 129200, - 129201 - ], - 2 - ], - [ - [ - 129202, - 129279 - ], - 3 - ], - [ - [ - 129280, - 129291 - ], - 2 - ], - [ - 129292, - 2 - ], - [ - [ - 129293, - 129295 - ], - 2 - ], - [ - [ - 129296, - 129304 - ], - 2 - ], - [ - [ - 129305, - 129310 - ], - 2 - ], - [ - 129311, - 2 - ], - [ - [ - 129312, - 129319 - ], - 2 - ], - [ - [ - 129320, - 129327 - ], - 2 - ], - [ - 129328, - 2 - ], - [ - [ - 129329, - 129330 - ], - 2 - ], - [ - [ - 129331, - 129342 - ], - 2 - ], - [ - 129343, - 2 - ], - [ - [ - 129344, - 129355 - ], - 2 - ], - [ - 129356, - 2 - ], - [ - [ - 129357, - 129359 - ], - 2 - ], - [ - [ - 129360, - 129374 - ], - 2 - ], - [ - [ - 129375, - 129387 - ], - 2 - ], - [ - [ - 129388, - 129392 - ], - 2 - ], - [ - 129393, - 2 - ], - [ - 129394, - 2 - ], - [ - [ - 129395, - 129398 - ], - 2 - ], - [ - [ - 129399, - 129400 - ], - 2 - ], - [ - 129401, - 2 - ], - [ - 129402, - 2 - ], - [ - 129403, - 2 - ], - [ - [ - 129404, - 129407 - ], - 2 - ], - [ - [ - 129408, - 129412 - ], - 2 - ], - [ - [ - 129413, - 129425 - ], - 2 - ], - [ - [ - 129426, - 129431 - ], - 2 - ], - [ - [ - 129432, - 129442 - ], - 2 - ], - [ - [ - 129443, - 129444 - ], - 2 - ], - [ - [ - 129445, - 129450 - ], - 2 - ], - [ - [ - 129451, - 129453 - ], - 2 - ], - [ - [ - 129454, - 129455 - ], - 2 - ], - [ - [ - 129456, - 129465 - ], - 2 - ], - [ - [ - 129466, - 129471 - ], - 2 - ], - [ - 129472, - 2 - ], - [ - [ - 129473, - 129474 - ], - 2 - ], - [ - [ - 129475, - 129482 - ], - 2 - ], - [ - 129483, - 2 - ], - [ - 129484, - 2 - ], - [ - [ - 129485, - 129487 - ], - 2 - ], - [ - [ - 129488, - 129510 - ], - 2 - ], - [ - [ - 129511, - 129535 - ], - 2 - ], - [ - [ - 129536, - 129619 - ], - 2 - ], - [ - [ - 129620, - 129631 - ], - 3 - ], - [ - [ - 129632, - 129645 - ], - 2 - ], - [ - [ - 129646, - 129647 - ], - 3 - ], - [ - [ - 129648, - 129651 - ], - 2 - ], - [ - 129652, - 2 - ], - [ - [ - 129653, - 129655 - ], - 3 - ], - [ - [ - 129656, - 129658 - ], - 2 - ], - [ - [ - 129659, - 129660 - ], - 2 - ], - [ - [ - 129661, - 129663 - ], - 3 - ], - [ - [ - 129664, - 129666 - ], - 2 - ], - [ - [ - 129667, - 129670 - ], - 2 - ], - [ - [ - 129671, - 129679 - ], - 3 - ], - [ - [ - 129680, - 129685 - ], - 2 - ], - [ - [ - 129686, - 129704 - ], - 2 - ], - [ - [ - 129705, - 129708 - ], - 2 - ], - [ - [ - 129709, - 129711 - ], - 3 - ], - [ - [ - 129712, - 129718 - ], - 2 - ], - [ - [ - 129719, - 129722 - ], - 2 - ], - [ - [ - 129723, - 129727 - ], - 3 - ], - [ - [ - 129728, - 129730 - ], - 2 - ], - [ - [ - 129731, - 129733 - ], - 2 - ], - [ - [ - 129734, - 129743 - ], - 3 - ], - [ - [ - 129744, - 129750 - ], - 2 - ], - [ - [ - 129751, - 129753 - ], - 2 - ], - [ - [ - 129754, - 129759 - ], - 3 - ], - [ - [ - 129760, - 129767 - ], - 2 - ], - [ - [ - 129768, - 129775 - ], - 3 - ], - [ - [ - 129776, - 129782 - ], - 2 - ], - [ - [ - 129783, - 129791 - ], - 3 - ], - [ - [ - 129792, - 129938 - ], - 2 - ], - [ - 129939, - 3 - ], - [ - [ - 129940, - 129994 - ], - 2 - ], - [ - [ - 129995, - 130031 - ], - 3 - ], - [ - 130032, - 1, - "0" - ], - [ - 130033, - 1, - "1" - ], - [ - 130034, - 1, - "2" - ], - [ - 130035, - 1, - "3" - ], - [ - 130036, - 1, - "4" - ], - [ - 130037, - 1, - "5" - ], - [ - 130038, - 1, - "6" - ], - [ - 130039, - 1, - "7" - ], - [ - 130040, - 1, - "8" - ], - [ - 130041, - 1, - "9" - ], - [ - [ - 130042, - 131069 - ], - 3 - ], - [ - [ - 131070, - 131071 - ], - 3 - ], - [ - [ - 131072, - 173782 - ], - 2 - ], - [ - [ - 173783, - 173789 - ], - 2 - ], - [ - [ - 173790, - 173791 - ], - 2 - ], - [ - [ - 173792, - 173823 - ], - 3 - ], - [ - [ - 173824, - 177972 - ], - 2 - ], - [ - [ - 177973, - 177976 - ], - 2 - ], - [ - [ - 177977, - 177983 - ], - 3 - ], - [ - [ - 177984, - 178205 - ], - 2 - ], - [ - [ - 178206, - 178207 - ], - 3 - ], - [ - [ - 178208, - 183969 - ], - 2 - ], - [ - [ - 183970, - 183983 - ], - 3 - ], - [ - [ - 183984, - 191456 - ], - 2 - ], - [ - [ - 191457, - 194559 - ], - 3 - ], - [ - 194560, - 1, - "丽" - ], - [ - 194561, - 1, - "丸" - ], - [ - 194562, - 1, - "乁" - ], - [ - 194563, - 1, - "𠄢" - ], - [ - 194564, - 1, - "你" - ], - [ - 194565, - 1, - "侮" - ], - [ - 194566, - 1, - "侻" - ], - [ - 194567, - 1, - "倂" - ], - [ - 194568, - 1, - "偺" - ], - [ - 194569, - 1, - "備" - ], - [ - 194570, - 1, - "僧" - ], - [ - 194571, - 1, - "像" - ], - [ - 194572, - 1, - "㒞" - ], - [ - 194573, - 1, - "𠘺" - ], - [ - 194574, - 1, - "免" - ], - [ - 194575, - 1, - "兔" - ], - [ - 194576, - 1, - "兤" - ], - [ - 194577, - 1, - "具" - ], - [ - 194578, - 1, - "𠔜" - ], - [ - 194579, - 1, - "㒹" - ], - [ - 194580, - 1, - "內" - ], - [ - 194581, - 1, - "再" - ], - [ - 194582, - 1, - "𠕋" - ], - [ - 194583, - 1, - "冗" - ], - [ - 194584, - 1, - "冤" - ], - [ - 194585, - 1, - "仌" - ], - [ - 194586, - 1, - "冬" - ], - [ - 194587, - 1, - "况" - ], - [ - 194588, - 1, - "𩇟" - ], - [ - 194589, - 1, - "凵" - ], - [ - 194590, - 1, - "刃" - ], - [ - 194591, - 1, - "㓟" - ], - [ - 194592, - 1, - "刻" - ], - [ - 194593, - 1, - "剆" - ], - [ - 194594, - 1, - "割" - ], - [ - 194595, - 1, - "剷" - ], - [ - 194596, - 1, - "㔕" - ], - [ - 194597, - 1, - "勇" - ], - [ - 194598, - 1, - "勉" - ], - [ - 194599, - 1, - "勤" - ], - [ - 194600, - 1, - "勺" - ], - [ - 194601, - 1, - "包" - ], - [ - 194602, - 1, - "匆" - ], - [ - 194603, - 1, - "北" - ], - [ - 194604, - 1, - "卉" - ], - [ - 194605, - 1, - "卑" - ], - [ - 194606, - 1, - "博" - ], - [ - 194607, - 1, - "即" - ], - [ - 194608, - 1, - "卽" - ], - [ - [ - 194609, - 194611 - ], - 1, - "卿" - ], - [ - 194612, - 1, - "𠨬" - ], - [ - 194613, - 1, - "灰" - ], - [ - 194614, - 1, - "及" - ], - [ - 194615, - 1, - "叟" - ], - [ - 194616, - 1, - "𠭣" - ], - [ - 194617, - 1, - "叫" - ], - [ - 194618, - 1, - "叱" - ], - [ - 194619, - 1, - "吆" - ], - [ - 194620, - 1, - "咞" - ], - [ - 194621, - 1, - "吸" - ], - [ - 194622, - 1, - "呈" - ], - [ - 194623, - 1, - "周" - ], - [ - 194624, - 1, - "咢" - ], - [ - 194625, - 1, - "哶" - ], - [ - 194626, - 1, - "唐" - ], - [ - 194627, - 1, - "啓" - ], - [ - 194628, - 1, - "啣" - ], - [ - [ - 194629, - 194630 - ], - 1, - "善" - ], - [ - 194631, - 1, - "喙" - ], - [ - 194632, - 1, - "喫" - ], - [ - 194633, - 1, - "喳" - ], - [ - 194634, - 1, - "嗂" - ], - [ - 194635, - 1, - "圖" - ], - [ - 194636, - 1, - "嘆" - ], - [ - 194637, - 1, - "圗" - ], - [ - 194638, - 1, - "噑" - ], - [ - 194639, - 1, - "噴" - ], - [ - 194640, - 1, - "切" - ], - [ - 194641, - 1, - "壮" - ], - [ - 194642, - 1, - "城" - ], - [ - 194643, - 1, - "埴" - ], - [ - 194644, - 1, - "堍" - ], - [ - 194645, - 1, - "型" - ], - [ - 194646, - 1, - "堲" - ], - [ - 194647, - 1, - "報" - ], - [ - 194648, - 1, - "墬" - ], - [ - 194649, - 1, - "𡓤" - ], - [ - 194650, - 1, - "売" - ], - [ - 194651, - 1, - "壷" - ], - [ - 194652, - 1, - "夆" - ], - [ - 194653, - 1, - "多" - ], - [ - 194654, - 1, - "夢" - ], - [ - 194655, - 1, - "奢" - ], - [ - 194656, - 1, - "𡚨" - ], - [ - 194657, - 1, - "𡛪" - ], - [ - 194658, - 1, - "姬" - ], - [ - 194659, - 1, - "娛" - ], - [ - 194660, - 1, - "娧" - ], - [ - 194661, - 1, - "姘" - ], - [ - 194662, - 1, - "婦" - ], - [ - 194663, - 1, - "㛮" - ], - [ - 194664, - 3 - ], - [ - 194665, - 1, - "嬈" - ], - [ - [ - 194666, - 194667 - ], - 1, - "嬾" - ], - [ - 194668, - 1, - "𡧈" - ], - [ - 194669, - 1, - "寃" - ], - [ - 194670, - 1, - "寘" - ], - [ - 194671, - 1, - "寧" - ], - [ - 194672, - 1, - "寳" - ], - [ - 194673, - 1, - "𡬘" - ], - [ - 194674, - 1, - "寿" - ], - [ - 194675, - 1, - "将" - ], - [ - 194676, - 3 - ], - [ - 194677, - 1, - "尢" - ], - [ - 194678, - 1, - "㞁" - ], - [ - 194679, - 1, - "屠" - ], - [ - 194680, - 1, - "屮" - ], - [ - 194681, - 1, - "峀" - ], - [ - 194682, - 1, - "岍" - ], - [ - 194683, - 1, - "𡷤" - ], - [ - 194684, - 1, - "嵃" - ], - [ - 194685, - 1, - "𡷦" - ], - [ - 194686, - 1, - "嵮" - ], - [ - 194687, - 1, - "嵫" - ], - [ - 194688, - 1, - "嵼" - ], - [ - 194689, - 1, - "巡" - ], - [ - 194690, - 1, - "巢" - ], - [ - 194691, - 1, - "㠯" - ], - [ - 194692, - 1, - "巽" - ], - [ - 194693, - 1, - "帨" - ], - [ - 194694, - 1, - "帽" - ], - [ - 194695, - 1, - "幩" - ], - [ - 194696, - 1, - "㡢" - ], - [ - 194697, - 1, - "𢆃" - ], - [ - 194698, - 1, - "㡼" - ], - [ - 194699, - 1, - "庰" - ], - [ - 194700, - 1, - "庳" - ], - [ - 194701, - 1, - "庶" - ], - [ - 194702, - 1, - "廊" - ], - [ - 194703, - 1, - "𪎒" - ], - [ - 194704, - 1, - "廾" - ], - [ - [ - 194705, - 194706 - ], - 1, - "𢌱" - ], - [ - 194707, - 1, - "舁" - ], - [ - [ - 194708, - 194709 - ], - 1, - "弢" - ], - [ - 194710, - 1, - "㣇" - ], - [ - 194711, - 1, - "𣊸" - ], - [ - 194712, - 1, - "𦇚" - ], - [ - 194713, - 1, - "形" - ], - [ - 194714, - 1, - "彫" - ], - [ - 194715, - 1, - "㣣" - ], - [ - 194716, - 1, - "徚" - ], - [ - 194717, - 1, - "忍" - ], - [ - 194718, - 1, - "志" - ], - [ - 194719, - 1, - "忹" - ], - [ - 194720, - 1, - "悁" - ], - [ - 194721, - 1, - "㤺" - ], - [ - 194722, - 1, - "㤜" - ], - [ - 194723, - 1, - "悔" - ], - [ - 194724, - 1, - "𢛔" - ], - [ - 194725, - 1, - "惇" - ], - [ - 194726, - 1, - "慈" - ], - [ - 194727, - 1, - "慌" - ], - [ - 194728, - 1, - "慎" - ], - [ - 194729, - 1, - "慌" - ], - [ - 194730, - 1, - "慺" - ], - [ - 194731, - 1, - "憎" - ], - [ - 194732, - 1, - "憲" - ], - [ - 194733, - 1, - "憤" - ], - [ - 194734, - 1, - "憯" - ], - [ - 194735, - 1, - "懞" - ], - [ - 194736, - 1, - "懲" - ], - [ - 194737, - 1, - "懶" - ], - [ - 194738, - 1, - "成" - ], - [ - 194739, - 1, - "戛" - ], - [ - 194740, - 1, - "扝" - ], - [ - 194741, - 1, - "抱" - ], - [ - 194742, - 1, - "拔" - ], - [ - 194743, - 1, - "捐" - ], - [ - 194744, - 1, - "𢬌" - ], - [ - 194745, - 1, - "挽" - ], - [ - 194746, - 1, - "拼" - ], - [ - 194747, - 1, - "捨" - ], - [ - 194748, - 1, - "掃" - ], - [ - 194749, - 1, - "揤" - ], - [ - 194750, - 1, - "𢯱" - ], - [ - 194751, - 1, - "搢" - ], - [ - 194752, - 1, - "揅" - ], - [ - 194753, - 1, - "掩" - ], - [ - 194754, - 1, - "㨮" - ], - [ - 194755, - 1, - "摩" - ], - [ - 194756, - 1, - "摾" - ], - [ - 194757, - 1, - "撝" - ], - [ - 194758, - 1, - "摷" - ], - [ - 194759, - 1, - "㩬" - ], - [ - 194760, - 1, - "敏" - ], - [ - 194761, - 1, - "敬" - ], - [ - 194762, - 1, - "𣀊" - ], - [ - 194763, - 1, - "旣" - ], - [ - 194764, - 1, - "書" - ], - [ - 194765, - 1, - "晉" - ], - [ - 194766, - 1, - "㬙" - ], - [ - 194767, - 1, - "暑" - ], - [ - 194768, - 1, - "㬈" - ], - [ - 194769, - 1, - "㫤" - ], - [ - 194770, - 1, - "冒" - ], - [ - 194771, - 1, - "冕" - ], - [ - 194772, - 1, - "最" - ], - [ - 194773, - 1, - "暜" - ], - [ - 194774, - 1, - "肭" - ], - [ - 194775, - 1, - "䏙" - ], - [ - 194776, - 1, - "朗" - ], - [ - 194777, - 1, - "望" - ], - [ - 194778, - 1, - "朡" - ], - [ - 194779, - 1, - "杞" - ], - [ - 194780, - 1, - "杓" - ], - [ - 194781, - 1, - "𣏃" - ], - [ - 194782, - 1, - "㭉" - ], - [ - 194783, - 1, - "柺" - ], - [ - 194784, - 1, - "枅" - ], - [ - 194785, - 1, - "桒" - ], - [ - 194786, - 1, - "梅" - ], - [ - 194787, - 1, - "𣑭" - ], - [ - 194788, - 1, - "梎" - ], - [ - 194789, - 1, - "栟" - ], - [ - 194790, - 1, - "椔" - ], - [ - 194791, - 1, - "㮝" - ], - [ - 194792, - 1, - "楂" - ], - [ - 194793, - 1, - "榣" - ], - [ - 194794, - 1, - "槪" - ], - [ - 194795, - 1, - "檨" - ], - [ - 194796, - 1, - "𣚣" - ], - [ - 194797, - 1, - "櫛" - ], - [ - 194798, - 1, - "㰘" - ], - [ - 194799, - 1, - "次" - ], - [ - 194800, - 1, - "𣢧" - ], - [ - 194801, - 1, - "歔" - ], - [ - 194802, - 1, - "㱎" - ], - [ - 194803, - 1, - "歲" - ], - [ - 194804, - 1, - "殟" - ], - [ - 194805, - 1, - "殺" - ], - [ - 194806, - 1, - "殻" - ], - [ - 194807, - 1, - "𣪍" - ], - [ - 194808, - 1, - "𡴋" - ], - [ - 194809, - 1, - "𣫺" - ], - [ - 194810, - 1, - "汎" - ], - [ - 194811, - 1, - "𣲼" - ], - [ - 194812, - 1, - "沿" - ], - [ - 194813, - 1, - "泍" - ], - [ - 194814, - 1, - "汧" - ], - [ - 194815, - 1, - "洖" - ], - [ - 194816, - 1, - "派" - ], - [ - 194817, - 1, - "海" - ], - [ - 194818, - 1, - "流" - ], - [ - 194819, - 1, - "浩" - ], - [ - 194820, - 1, - "浸" - ], - [ - 194821, - 1, - "涅" - ], - [ - 194822, - 1, - "𣴞" - ], - [ - 194823, - 1, - "洴" - ], - [ - 194824, - 1, - "港" - ], - [ - 194825, - 1, - "湮" - ], - [ - 194826, - 1, - "㴳" - ], - [ - 194827, - 1, - "滋" - ], - [ - 194828, - 1, - "滇" - ], - [ - 194829, - 1, - "𣻑" - ], - [ - 194830, - 1, - "淹" - ], - [ - 194831, - 1, - "潮" - ], - [ - 194832, - 1, - "𣽞" - ], - [ - 194833, - 1, - "𣾎" - ], - [ - 194834, - 1, - "濆" - ], - [ - 194835, - 1, - "瀹" - ], - [ - 194836, - 1, - "瀞" - ], - [ - 194837, - 1, - "瀛" - ], - [ - 194838, - 1, - "㶖" - ], - [ - 194839, - 1, - "灊" - ], - [ - 194840, - 1, - "災" - ], - [ - 194841, - 1, - "灷" - ], - [ - 194842, - 1, - "炭" - ], - [ - 194843, - 1, - "𠔥" - ], - [ - 194844, - 1, - "煅" - ], - [ - 194845, - 1, - "𤉣" - ], - [ - 194846, - 1, - "熜" - ], - [ - 194847, - 3 - ], - [ - 194848, - 1, - "爨" - ], - [ - 194849, - 1, - "爵" - ], - [ - 194850, - 1, - "牐" - ], - [ - 194851, - 1, - "𤘈" - ], - [ - 194852, - 1, - "犀" - ], - [ - 194853, - 1, - "犕" - ], - [ - 194854, - 1, - "𤜵" - ], - [ - 194855, - 1, - "𤠔" - ], - [ - 194856, - 1, - "獺" - ], - [ - 194857, - 1, - "王" - ], - [ - 194858, - 1, - "㺬" - ], - [ - 194859, - 1, - "玥" - ], - [ - [ - 194860, - 194861 - ], - 1, - "㺸" - ], - [ - 194862, - 1, - "瑇" - ], - [ - 194863, - 1, - "瑜" - ], - [ - 194864, - 1, - "瑱" - ], - [ - 194865, - 1, - "璅" - ], - [ - 194866, - 1, - "瓊" - ], - [ - 194867, - 1, - "㼛" - ], - [ - 194868, - 1, - "甤" - ], - [ - 194869, - 1, - "𤰶" - ], - [ - 194870, - 1, - "甾" - ], - [ - 194871, - 1, - "𤲒" - ], - [ - 194872, - 1, - "異" - ], - [ - 194873, - 1, - "𢆟" - ], - [ - 194874, - 1, - "瘐" - ], - [ - 194875, - 1, - "𤾡" - ], - [ - 194876, - 1, - "𤾸" - ], - [ - 194877, - 1, - "𥁄" - ], - [ - 194878, - 1, - "㿼" - ], - [ - 194879, - 1, - "䀈" - ], - [ - 194880, - 1, - "直" - ], - [ - 194881, - 1, - "𥃳" - ], - [ - 194882, - 1, - "𥃲" - ], - [ - 194883, - 1, - "𥄙" - ], - [ - 194884, - 1, - "𥄳" - ], - [ - 194885, - 1, - "眞" - ], - [ - [ - 194886, - 194887 - ], - 1, - "真" - ], - [ - 194888, - 1, - "睊" - ], - [ - 194889, - 1, - "䀹" - ], - [ - 194890, - 1, - "瞋" - ], - [ - 194891, - 1, - "䁆" - ], - [ - 194892, - 1, - "䂖" - ], - [ - 194893, - 1, - "𥐝" - ], - [ - 194894, - 1, - "硎" - ], - [ - 194895, - 1, - "碌" - ], - [ - 194896, - 1, - "磌" - ], - [ - 194897, - 1, - "䃣" - ], - [ - 194898, - 1, - "𥘦" - ], - [ - 194899, - 1, - "祖" - ], - [ - 194900, - 1, - "𥚚" - ], - [ - 194901, - 1, - "𥛅" - ], - [ - 194902, - 1, - "福" - ], - [ - 194903, - 1, - "秫" - ], - [ - 194904, - 1, - "䄯" - ], - [ - 194905, - 1, - "穀" - ], - [ - 194906, - 1, - "穊" - ], - [ - 194907, - 1, - "穏" - ], - [ - 194908, - 1, - "𥥼" - ], - [ - [ - 194909, - 194910 - ], - 1, - "𥪧" - ], - [ - 194911, - 3 - ], - [ - 194912, - 1, - "䈂" - ], - [ - 194913, - 1, - "𥮫" - ], - [ - 194914, - 1, - "篆" - ], - [ - 194915, - 1, - "築" - ], - [ - 194916, - 1, - "䈧" - ], - [ - 194917, - 1, - "𥲀" - ], - [ - 194918, - 1, - "糒" - ], - [ - 194919, - 1, - "䊠" - ], - [ - 194920, - 1, - "糨" - ], - [ - 194921, - 1, - "糣" - ], - [ - 194922, - 1, - "紀" - ], - [ - 194923, - 1, - "𥾆" - ], - [ - 194924, - 1, - "絣" - ], - [ - 194925, - 1, - "䌁" - ], - [ - 194926, - 1, - "緇" - ], - [ - 194927, - 1, - "縂" - ], - [ - 194928, - 1, - "繅" - ], - [ - 194929, - 1, - "䌴" - ], - [ - 194930, - 1, - "𦈨" - ], - [ - 194931, - 1, - "𦉇" - ], - [ - 194932, - 1, - "䍙" - ], - [ - 194933, - 1, - "𦋙" - ], - [ - 194934, - 1, - "罺" - ], - [ - 194935, - 1, - "𦌾" - ], - [ - 194936, - 1, - "羕" - ], - [ - 194937, - 1, - "翺" - ], - [ - 194938, - 1, - "者" - ], - [ - 194939, - 1, - "𦓚" - ], - [ - 194940, - 1, - "𦔣" - ], - [ - 194941, - 1, - "聠" - ], - [ - 194942, - 1, - "𦖨" - ], - [ - 194943, - 1, - "聰" - ], - [ - 194944, - 1, - "𣍟" - ], - [ - 194945, - 1, - "䏕" - ], - [ - 194946, - 1, - "育" - ], - [ - 194947, - 1, - "脃" - ], - [ - 194948, - 1, - "䐋" - ], - [ - 194949, - 1, - "脾" - ], - [ - 194950, - 1, - "媵" - ], - [ - 194951, - 1, - "𦞧" - ], - [ - 194952, - 1, - "𦞵" - ], - [ - 194953, - 1, - "𣎓" - ], - [ - 194954, - 1, - "𣎜" - ], - [ - 194955, - 1, - "舁" - ], - [ - 194956, - 1, - "舄" - ], - [ - 194957, - 1, - "辞" - ], - [ - 194958, - 1, - "䑫" - ], - [ - 194959, - 1, - "芑" - ], - [ - 194960, - 1, - "芋" - ], - [ - 194961, - 1, - "芝" - ], - [ - 194962, - 1, - "劳" - ], - [ - 194963, - 1, - "花" - ], - [ - 194964, - 1, - "芳" - ], - [ - 194965, - 1, - "芽" - ], - [ - 194966, - 1, - "苦" - ], - [ - 194967, - 1, - "𦬼" - ], - [ - 194968, - 1, - "若" - ], - [ - 194969, - 1, - "茝" - ], - [ - 194970, - 1, - "荣" - ], - [ - 194971, - 1, - "莭" - ], - [ - 194972, - 1, - "茣" - ], - [ - 194973, - 1, - "莽" - ], - [ - 194974, - 1, - "菧" - ], - [ - 194975, - 1, - "著" - ], - [ - 194976, - 1, - "荓" - ], - [ - 194977, - 1, - "菊" - ], - [ - 194978, - 1, - "菌" - ], - [ - 194979, - 1, - "菜" - ], - [ - 194980, - 1, - "𦰶" - ], - [ - 194981, - 1, - "𦵫" - ], - [ - 194982, - 1, - "𦳕" - ], - [ - 194983, - 1, - "䔫" - ], - [ - 194984, - 1, - "蓱" - ], - [ - 194985, - 1, - "蓳" - ], - [ - 194986, - 1, - "蔖" - ], - [ - 194987, - 1, - "𧏊" - ], - [ - 194988, - 1, - "蕤" - ], - [ - 194989, - 1, - "𦼬" - ], - [ - 194990, - 1, - "䕝" - ], - [ - 194991, - 1, - "䕡" - ], - [ - 194992, - 1, - "𦾱" - ], - [ - 194993, - 1, - "𧃒" - ], - [ - 194994, - 1, - "䕫" - ], - [ - 194995, - 1, - "虐" - ], - [ - 194996, - 1, - "虜" - ], - [ - 194997, - 1, - "虧" - ], - [ - 194998, - 1, - "虩" - ], - [ - 194999, - 1, - "蚩" - ], - [ - 195000, - 1, - "蚈" - ], - [ - 195001, - 1, - "蜎" - ], - [ - 195002, - 1, - "蛢" - ], - [ - 195003, - 1, - "蝹" - ], - [ - 195004, - 1, - "蜨" - ], - [ - 195005, - 1, - "蝫" - ], - [ - 195006, - 1, - "螆" - ], - [ - 195007, - 3 - ], - [ - 195008, - 1, - "蟡" - ], - [ - 195009, - 1, - "蠁" - ], - [ - 195010, - 1, - "䗹" - ], - [ - 195011, - 1, - "衠" - ], - [ - 195012, - 1, - "衣" - ], - [ - 195013, - 1, - "𧙧" - ], - [ - 195014, - 1, - "裗" - ], - [ - 195015, - 1, - "裞" - ], - [ - 195016, - 1, - "䘵" - ], - [ - 195017, - 1, - "裺" - ], - [ - 195018, - 1, - "㒻" - ], - [ - 195019, - 1, - "𧢮" - ], - [ - 195020, - 1, - "𧥦" - ], - [ - 195021, - 1, - "䚾" - ], - [ - 195022, - 1, - "䛇" - ], - [ - 195023, - 1, - "誠" - ], - [ - 195024, - 1, - "諭" - ], - [ - 195025, - 1, - "變" - ], - [ - 195026, - 1, - "豕" - ], - [ - 195027, - 1, - "𧲨" - ], - [ - 195028, - 1, - "貫" - ], - [ - 195029, - 1, - "賁" - ], - [ - 195030, - 1, - "贛" - ], - [ - 195031, - 1, - "起" - ], - [ - 195032, - 1, - "𧼯" - ], - [ - 195033, - 1, - "𠠄" - ], - [ - 195034, - 1, - "跋" - ], - [ - 195035, - 1, - "趼" - ], - [ - 195036, - 1, - "跰" - ], - [ - 195037, - 1, - "𠣞" - ], - [ - 195038, - 1, - "軔" - ], - [ - 195039, - 1, - "輸" - ], - [ - 195040, - 1, - "𨗒" - ], - [ - 195041, - 1, - "𨗭" - ], - [ - 195042, - 1, - "邔" - ], - [ - 195043, - 1, - "郱" - ], - [ - 195044, - 1, - "鄑" - ], - [ - 195045, - 1, - "𨜮" - ], - [ - 195046, - 1, - "鄛" - ], - [ - 195047, - 1, - "鈸" - ], - [ - 195048, - 1, - "鋗" - ], - [ - 195049, - 1, - "鋘" - ], - [ - 195050, - 1, - "鉼" - ], - [ - 195051, - 1, - "鏹" - ], - [ - 195052, - 1, - "鐕" - ], - [ - 195053, - 1, - "𨯺" - ], - [ - 195054, - 1, - "開" - ], - [ - 195055, - 1, - "䦕" - ], - [ - 195056, - 1, - "閷" - ], - [ - 195057, - 1, - "𨵷" - ], - [ - 195058, - 1, - "䧦" - ], - [ - 195059, - 1, - "雃" - ], - [ - 195060, - 1, - "嶲" - ], - [ - 195061, - 1, - "霣" - ], - [ - 195062, - 1, - "𩅅" - ], - [ - 195063, - 1, - "𩈚" - ], - [ - 195064, - 1, - "䩮" - ], - [ - 195065, - 1, - "䩶" - ], - [ - 195066, - 1, - "韠" - ], - [ - 195067, - 1, - "𩐊" - ], - [ - 195068, - 1, - "䪲" - ], - [ - 195069, - 1, - "𩒖" - ], - [ - [ - 195070, - 195071 - ], - 1, - "頋" - ], - [ - 195072, - 1, - "頩" - ], - [ - 195073, - 1, - "𩖶" - ], - [ - 195074, - 1, - "飢" - ], - [ - 195075, - 1, - "䬳" - ], - [ - 195076, - 1, - "餩" - ], - [ - 195077, - 1, - "馧" - ], - [ - 195078, - 1, - "駂" - ], - [ - 195079, - 1, - "駾" - ], - [ - 195080, - 1, - "䯎" - ], - [ - 195081, - 1, - "𩬰" - ], - [ - 195082, - 1, - "鬒" - ], - [ - 195083, - 1, - "鱀" - ], - [ - 195084, - 1, - "鳽" - ], - [ - 195085, - 1, - "䳎" - ], - [ - 195086, - 1, - "䳭" - ], - [ - 195087, - 1, - "鵧" - ], - [ - 195088, - 1, - "𪃎" - ], - [ - 195089, - 1, - "䳸" - ], - [ - 195090, - 1, - "𪄅" - ], - [ - 195091, - 1, - "𪈎" - ], - [ - 195092, - 1, - "𪊑" - ], - [ - 195093, - 1, - "麻" - ], - [ - 195094, - 1, - "䵖" - ], - [ - 195095, - 1, - "黹" - ], - [ - 195096, - 1, - "黾" - ], - [ - 195097, - 1, - "鼅" - ], - [ - 195098, - 1, - "鼏" - ], - [ - 195099, - 1, - "鼖" - ], - [ - 195100, - 1, - "鼻" - ], - [ - 195101, - 1, - "𪘀" - ], - [ - [ - 195102, - 196605 - ], - 3 - ], - [ - [ - 196606, - 196607 - ], - 3 - ], - [ - [ - 196608, - 201546 - ], - 2 - ], - [ - [ - 201547, - 262141 - ], - 3 - ], - [ - [ - 262142, - 262143 - ], - 3 - ], - [ - [ - 262144, - 327677 - ], - 3 - ], - [ - [ - 327678, - 327679 - ], - 3 - ], - [ - [ - 327680, - 393213 - ], - 3 - ], - [ - [ - 393214, - 393215 - ], - 3 - ], - [ - [ - 393216, - 458749 - ], - 3 - ], - [ - [ - 458750, - 458751 - ], - 3 - ], - [ - [ - 458752, - 524285 - ], - 3 - ], - [ - [ - 524286, - 524287 - ], - 3 - ], - [ - [ - 524288, - 589821 - ], - 3 - ], - [ - [ - 589822, - 589823 - ], - 3 - ], - [ - [ - 589824, - 655357 - ], - 3 - ], - [ - [ - 655358, - 655359 - ], - 3 - ], - [ - [ - 655360, - 720893 - ], - 3 - ], - [ - [ - 720894, - 720895 - ], - 3 - ], - [ - [ - 720896, - 786429 - ], - 3 - ], - [ - [ - 786430, - 786431 - ], - 3 - ], - [ - [ - 786432, - 851965 - ], - 3 - ], - [ - [ - 851966, - 851967 - ], - 3 - ], - [ - [ - 851968, - 917501 - ], - 3 - ], - [ - [ - 917502, - 917503 - ], - 3 - ], - [ - 917504, - 3 - ], - [ - 917505, - 3 - ], - [ - [ - 917506, - 917535 - ], - 3 - ], - [ - [ - 917536, - 917631 - ], - 3 - ], - [ - [ - 917632, - 917759 - ], - 3 - ], - [ - [ - 917760, - 917999 - ], - 7 - ], - [ - [ - 918000, - 983037 - ], - 3 - ], - [ - [ - 983038, - 983039 - ], - 3 - ], - [ - [ - 983040, - 1048573 - ], - 3 - ], - [ - [ - 1048574, - 1048575 - ], - 3 - ], - [ - [ - 1048576, - 1114109 - ], - 3 - ], - [ - [ - 1114110, - 1114111 - ], - 3 - ] - ]; - - var statusMapping = {}; - - statusMapping.STATUS_MAPPING = { - mapped: 1, - valid: 2, - disallowed: 3, - disallowed_STD3_valid: 4, - disallowed_STD3_mapped: 5, - deviation: 6, - ignored: 7 - }; - - const punycode = require$$0; - const regexes = regexes$1; - const mappingTable = require$$2; - const { STATUS_MAPPING } = statusMapping; - - function containsNonASCII(str) { - return /[^\x00-\x7F]/u.test(str); - } - - function findStatus(val, { useSTD3ASCIIRules }) { - let start = 0; - let end = mappingTable.length - 1; - - while (start <= end) { - const mid = Math.floor((start + end) / 2); - - const target = mappingTable[mid]; - const min = Array.isArray(target[0]) ? target[0][0] : target[0]; - const max = Array.isArray(target[0]) ? target[0][1] : target[0]; - - if (min <= val && max >= val) { - if (useSTD3ASCIIRules && - (target[1] === STATUS_MAPPING.disallowed_STD3_valid || target[1] === STATUS_MAPPING.disallowed_STD3_mapped)) { - return [STATUS_MAPPING.disallowed, ...target.slice(2)]; - } else if (target[1] === STATUS_MAPPING.disallowed_STD3_valid) { - return [STATUS_MAPPING.valid, ...target.slice(2)]; - } else if (target[1] === STATUS_MAPPING.disallowed_STD3_mapped) { - return [STATUS_MAPPING.mapped, ...target.slice(2)]; - } - - return target.slice(1); - } else if (min > val) { - end = mid - 1; - } else { - start = mid + 1; - } - } - - return null; - } - - function mapChars(domainName, { useSTD3ASCIIRules, processingOption }) { - let hasError = false; - let processed = ""; - - for (const ch of domainName) { - const [status, mapping] = findStatus(ch.codePointAt(0), { useSTD3ASCIIRules }); - - switch (status) { - case STATUS_MAPPING.disallowed: - hasError = true; - processed += ch; - break; - case STATUS_MAPPING.ignored: - break; - case STATUS_MAPPING.mapped: - processed += mapping; - break; - case STATUS_MAPPING.deviation: - if (processingOption === "transitional") { - processed += mapping; - } else { - processed += ch; - } - break; - case STATUS_MAPPING.valid: - processed += ch; - break; - } - } - - return { - string: processed, - error: hasError - }; - } - - function validateLabel(label, { checkHyphens, checkBidi, checkJoiners, processingOption, useSTD3ASCIIRules }) { - if (label.normalize("NFC") !== label) { - return false; - } - - const codePoints = Array.from(label); - - if (checkHyphens) { - if ((codePoints[2] === "-" && codePoints[3] === "-") || - (label.startsWith("-") || label.endsWith("-"))) { - return false; - } - } - - if (label.includes(".") || - (codePoints.length > 0 && regexes.combiningMarks.test(codePoints[0]))) { - return false; - } - - for (const ch of codePoints) { - const [status] = findStatus(ch.codePointAt(0), { useSTD3ASCIIRules }); - if ((processingOption === "transitional" && status !== STATUS_MAPPING.valid) || - (processingOption === "nontransitional" && - status !== STATUS_MAPPING.valid && status !== STATUS_MAPPING.deviation)) { - return false; - } - } - - // https://tools.ietf.org/html/rfc5892#appendix-A - if (checkJoiners) { - let last = 0; - for (const [i, ch] of codePoints.entries()) { - if (ch === "\u200C" || ch === "\u200D") { - if (i > 0) { - if (regexes.combiningClassVirama.test(codePoints[i - 1])) { - continue; - } - if (ch === "\u200C") { - // TODO: make this more efficient - const next = codePoints.indexOf("\u200C", i + 1); - const test = next < 0 ? codePoints.slice(last) : codePoints.slice(last, next); - if (regexes.validZWNJ.test(test.join(""))) { - last = i + 1; - continue; - } - } - } - return false; - } - } - } - - // https://tools.ietf.org/html/rfc5893#section-2 - if (checkBidi) { - let rtl; - - // 1 - if (regexes.bidiS1LTR.test(codePoints[0])) { - rtl = false; - } else if (regexes.bidiS1RTL.test(codePoints[0])) { - rtl = true; - } else { - return false; - } - - if (rtl) { - // 2-4 - if (!regexes.bidiS2.test(label) || - !regexes.bidiS3.test(label) || - (regexes.bidiS4EN.test(label) && regexes.bidiS4AN.test(label))) { - return false; - } - } else if (!regexes.bidiS5.test(label) || - !regexes.bidiS6.test(label)) { // 5-6 - return false; - } - } - - return true; - } - - function isBidiDomain(labels) { - const domain = labels.map(label => { - if (label.startsWith("xn--")) { - try { - return punycode.decode(label.substring(4)); - } catch (err) { - return ""; - } - } - return label; - }).join("."); - return regexes.bidiDomain.test(domain); - } - - function processing(domainName, options) { - const { processingOption } = options; - - // 1. Map. - let { string, error } = mapChars(domainName, options); - - // 2. Normalize. - string = string.normalize("NFC"); - - // 3. Break. - const labels = string.split("."); - const isBidi = isBidiDomain(labels); - - // 4. Convert/Validate. - for (const [i, origLabel] of labels.entries()) { - let label = origLabel; - let curProcessing = processingOption; - if (label.startsWith("xn--")) { - try { - label = punycode.decode(label.substring(4)); - labels[i] = label; - } catch (err) { - error = true; - continue; - } - curProcessing = "nontransitional"; - } - - // No need to validate if we already know there is an error. - if (error) { - continue; - } - const validation = validateLabel(label, { - ...options, - processingOption: curProcessing, - checkBidi: options.checkBidi && isBidi - }); - if (!validation) { - error = true; - } - } - - return { - string: labels.join("."), - error - }; - } - - function toASCII(domainName, { - checkHyphens = false, - checkBidi = false, - checkJoiners = false, - useSTD3ASCIIRules = false, - processingOption = "nontransitional", - verifyDNSLength = false - } = {}) { - if (processingOption !== "transitional" && processingOption !== "nontransitional") { - throw new RangeError("processingOption must be either transitional or nontransitional"); - } - - const result = processing(domainName, { - processingOption, - checkHyphens, - checkBidi, - checkJoiners, - useSTD3ASCIIRules - }); - let labels = result.string.split("."); - labels = labels.map(l => { - if (containsNonASCII(l)) { - try { - return `xn--${punycode.encode(l)}`; - } catch (e) { - result.error = true; - } - } - return l; - }); - - if (verifyDNSLength) { - const total = labels.join(".").length; - if (total > 253 || total === 0) { - result.error = true; - } - - for (let i = 0; i < labels.length; ++i) { - if (labels[i].length > 63 || labels[i].length === 0) { - result.error = true; - break; - } - } - } - - if (result.error) { - return null; - } - return labels.join("."); - } - - function toUnicode(domainName, { - checkHyphens = false, - checkBidi = false, - checkJoiners = false, - useSTD3ASCIIRules = false, - processingOption = "nontransitional" - } = {}) { - const result = processing(domainName, { - processingOption, - checkHyphens, - checkBidi, - checkJoiners, - useSTD3ASCIIRules - }); - - return { - domain: result.string, - error: result.error - }; - } - - var tr46 = { - toASCII, - toUnicode - }; - - // Note that we take code points as JS numbers, not JS strings. - - function isASCIIDigit(c) { - return c >= 0x30 && c <= 0x39; - } - - function isASCIIAlpha(c) { - return (c >= 0x41 && c <= 0x5A) || (c >= 0x61 && c <= 0x7A); - } - - function isASCIIAlphanumeric(c) { - return isASCIIAlpha(c) || isASCIIDigit(c); - } - - function isASCIIHex$1(c) { - return isASCIIDigit(c) || (c >= 0x41 && c <= 0x46) || (c >= 0x61 && c <= 0x66); - } - - var infra = { - isASCIIDigit, - isASCIIAlpha, - isASCIIAlphanumeric, - isASCIIHex: isASCIIHex$1 - }; - - const utf8Encoder = new TextEncoder(); - const utf8Decoder = new TextDecoder("utf-8", { ignoreBOM: true }); - - function utf8Encode$2(string) { - return utf8Encoder.encode(string); - } - - function utf8DecodeWithoutBOM$1(bytes) { - return utf8Decoder.decode(bytes); - } - - var encoding = { - utf8Encode: utf8Encode$2, - utf8DecodeWithoutBOM: utf8DecodeWithoutBOM$1 - }; - - const { isASCIIHex } = infra; - const { utf8Encode: utf8Encode$1 } = encoding; - - function p$1(char) { - return char.codePointAt(0); - } - - // https://url.spec.whatwg.org/#percent-encode - function percentEncode(c) { - let hex = c.toString(16).toUpperCase(); - if (hex.length === 1) { - hex = `0${hex}`; - } - - return `%${hex}`; - } - - // https://url.spec.whatwg.org/#percent-decode - function percentDecodeBytes$1(input) { - const output = new Uint8Array(input.byteLength); - let outputIndex = 0; - for (let i = 0; i < input.byteLength; ++i) { - const byte = input[i]; - if (byte !== 0x25) { - output[outputIndex++] = byte; - } else if (byte === 0x25 && (!isASCIIHex(input[i + 1]) || !isASCIIHex(input[i + 2]))) { - output[outputIndex++] = byte; - } else { - const bytePoint = parseInt(String.fromCodePoint(input[i + 1], input[i + 2]), 16); - output[outputIndex++] = bytePoint; - i += 2; - } - } - - return output.slice(0, outputIndex); - } - - // https://url.spec.whatwg.org/#string-percent-decode - function percentDecodeString(input) { - const bytes = utf8Encode$1(input); - return percentDecodeBytes$1(bytes); - } - - // https://url.spec.whatwg.org/#c0-control-percent-encode-set - function isC0ControlPercentEncode(c) { - return c <= 0x1F || c > 0x7E; - } - - // https://url.spec.whatwg.org/#fragment-percent-encode-set - const extraFragmentPercentEncodeSet = new Set([p$1(" "), p$1("\""), p$1("<"), p$1(">"), p$1("`")]); - function isFragmentPercentEncode(c) { - return isC0ControlPercentEncode(c) || extraFragmentPercentEncodeSet.has(c); - } - - // https://url.spec.whatwg.org/#query-percent-encode-set - const extraQueryPercentEncodeSet = new Set([p$1(" "), p$1("\""), p$1("#"), p$1("<"), p$1(">")]); - function isQueryPercentEncode(c) { - return isC0ControlPercentEncode(c) || extraQueryPercentEncodeSet.has(c); - } - - // https://url.spec.whatwg.org/#special-query-percent-encode-set - function isSpecialQueryPercentEncode(c) { - return isQueryPercentEncode(c) || c === p$1("'"); - } - - // https://url.spec.whatwg.org/#path-percent-encode-set - const extraPathPercentEncodeSet = new Set([p$1("?"), p$1("`"), p$1("{"), p$1("}")]); - function isPathPercentEncode(c) { - return isQueryPercentEncode(c) || extraPathPercentEncodeSet.has(c); - } - - // https://url.spec.whatwg.org/#userinfo-percent-encode-set - const extraUserinfoPercentEncodeSet = - new Set([p$1("/"), p$1(":"), p$1(";"), p$1("="), p$1("@"), p$1("["), p$1("\\"), p$1("]"), p$1("^"), p$1("|")]); - function isUserinfoPercentEncode(c) { - return isPathPercentEncode(c) || extraUserinfoPercentEncodeSet.has(c); - } - - // https://url.spec.whatwg.org/#component-percent-encode-set - const extraComponentPercentEncodeSet = new Set([p$1("$"), p$1("%"), p$1("&"), p$1("+"), p$1(",")]); - function isComponentPercentEncode(c) { - return isUserinfoPercentEncode(c) || extraComponentPercentEncodeSet.has(c); - } - - // https://url.spec.whatwg.org/#application-x-www-form-urlencoded-percent-encode-set - const extraURLEncodedPercentEncodeSet = new Set([p$1("!"), p$1("'"), p$1("("), p$1(")"), p$1("~")]); - function isURLEncodedPercentEncode$1(c) { - return isComponentPercentEncode(c) || extraURLEncodedPercentEncodeSet.has(c); - } - - // https://url.spec.whatwg.org/#code-point-percent-encode-after-encoding - // https://url.spec.whatwg.org/#utf-8-percent-encode - // Assuming encoding is always utf-8 allows us to trim one of the logic branches. TODO: support encoding. - // The "-Internal" variant here has code points as JS strings. The external version used by other files has code points - // as JS numbers, like the rest of the codebase. - function utf8PercentEncodeCodePointInternal(codePoint, percentEncodePredicate) { - const bytes = utf8Encode$1(codePoint); - let output = ""; - for (const byte of bytes) { - // Our percentEncodePredicate operates on bytes, not code points, so this is slightly different from the spec. - if (!percentEncodePredicate(byte)) { - output += String.fromCharCode(byte); - } else { - output += percentEncode(byte); - } - } - - return output; - } - - function utf8PercentEncodeCodePoint(codePoint, percentEncodePredicate) { - return utf8PercentEncodeCodePointInternal(String.fromCodePoint(codePoint), percentEncodePredicate); - } - - // https://url.spec.whatwg.org/#string-percent-encode-after-encoding - // https://url.spec.whatwg.org/#string-utf-8-percent-encode - function utf8PercentEncodeString$1(input, percentEncodePredicate, spaceAsPlus = false) { - let output = ""; - for (const codePoint of input) { - if (spaceAsPlus && codePoint === " ") { - output += "+"; - } else { - output += utf8PercentEncodeCodePointInternal(codePoint, percentEncodePredicate); - } - } - return output; - } - - var percentEncoding$1 = { - isC0ControlPercentEncode, - isFragmentPercentEncode, - isQueryPercentEncode, - isSpecialQueryPercentEncode, - isPathPercentEncode, - isUserinfoPercentEncode, - isURLEncodedPercentEncode: isURLEncodedPercentEncode$1, - percentDecodeString, - percentDecodeBytes: percentDecodeBytes$1, - utf8PercentEncodeString: utf8PercentEncodeString$1, - utf8PercentEncodeCodePoint - }; - - (function (module) { - const tr46$1 = tr46; - - const infra$1 = infra; - const { utf8DecodeWithoutBOM } = encoding; - const { percentDecodeString, utf8PercentEncodeCodePoint, utf8PercentEncodeString, isC0ControlPercentEncode, - isFragmentPercentEncode, isQueryPercentEncode, isSpecialQueryPercentEncode, isPathPercentEncode, - isUserinfoPercentEncode } = percentEncoding$1; - - function p(char) { - return char.codePointAt(0); - } - - const specialSchemes = { - ftp: 21, - file: null, - http: 80, - https: 443, - ws: 80, - wss: 443 - }; - - const failure = Symbol("failure"); - - function countSymbols(str) { - return [...str].length; - } - - function at(input, idx) { - const c = input[idx]; - return isNaN(c) ? undefined : String.fromCodePoint(c); - } - - function isSingleDot(buffer) { - return buffer === "." || buffer.toLowerCase() === "%2e"; - } - - function isDoubleDot(buffer) { - buffer = buffer.toLowerCase(); - return buffer === ".." || buffer === "%2e." || buffer === ".%2e" || buffer === "%2e%2e"; - } - - function isWindowsDriveLetterCodePoints(cp1, cp2) { - return infra$1.isASCIIAlpha(cp1) && (cp2 === p(":") || cp2 === p("|")); - } - - function isWindowsDriveLetterString(string) { - return string.length === 2 && infra$1.isASCIIAlpha(string.codePointAt(0)) && (string[1] === ":" || string[1] === "|"); - } - - function isNormalizedWindowsDriveLetterString(string) { - return string.length === 2 && infra$1.isASCIIAlpha(string.codePointAt(0)) && string[1] === ":"; - } - - function containsForbiddenHostCodePoint(string) { - return string.search(/\u0000|\u0009|\u000A|\u000D|\u0020|#|%|\/|:|<|>|\?|@|\[|\\|\]|\^|\|/u) !== -1; - } - - function containsForbiddenHostCodePointExcludingPercent(string) { - return string.search(/\u0000|\u0009|\u000A|\u000D|\u0020|#|\/|:|<|>|\?|@|\[|\\|\]|\^|\|/u) !== -1; - } - - function isSpecialScheme(scheme) { - return specialSchemes[scheme] !== undefined; - } - - function isSpecial(url) { - return isSpecialScheme(url.scheme); - } - - function isNotSpecial(url) { - return !isSpecialScheme(url.scheme); - } - - function defaultPort(scheme) { - return specialSchemes[scheme]; - } - - function parseIPv4Number(input) { - if (input === "") { - return failure; - } - - let R = 10; - - if (input.length >= 2 && input.charAt(0) === "0" && input.charAt(1).toLowerCase() === "x") { - input = input.substring(2); - R = 16; - } else if (input.length >= 2 && input.charAt(0) === "0") { - input = input.substring(1); - R = 8; - } - - if (input === "") { - return 0; - } - - let regex = /[^0-7]/u; - if (R === 10) { - regex = /[^0-9]/u; - } - if (R === 16) { - regex = /[^0-9A-Fa-f]/u; - } - - if (regex.test(input)) { - return failure; - } - - return parseInt(input, R); - } - - function parseIPv4(input) { - const parts = input.split("."); - if (parts[parts.length - 1] === "") { - if (parts.length > 1) { - parts.pop(); - } - } - - if (parts.length > 4) { - return failure; - } - - const numbers = []; - for (const part of parts) { - const n = parseIPv4Number(part); - if (n === failure) { - return failure; - } - - numbers.push(n); - } - - for (let i = 0; i < numbers.length - 1; ++i) { - if (numbers[i] > 255) { - return failure; - } - } - if (numbers[numbers.length - 1] >= 256 ** (5 - numbers.length)) { - return failure; - } - - let ipv4 = numbers.pop(); - let counter = 0; - - for (const n of numbers) { - ipv4 += n * 256 ** (3 - counter); - ++counter; - } - - return ipv4; - } - - function serializeIPv4(address) { - let output = ""; - let n = address; - - for (let i = 1; i <= 4; ++i) { - output = String(n % 256) + output; - if (i !== 4) { - output = `.${output}`; - } - n = Math.floor(n / 256); - } - - return output; - } - - function parseIPv6(input) { - const address = [0, 0, 0, 0, 0, 0, 0, 0]; - let pieceIndex = 0; - let compress = null; - let pointer = 0; - - input = Array.from(input, c => c.codePointAt(0)); - - if (input[pointer] === p(":")) { - if (input[pointer + 1] !== p(":")) { - return failure; - } - - pointer += 2; - ++pieceIndex; - compress = pieceIndex; - } - - while (pointer < input.length) { - if (pieceIndex === 8) { - return failure; - } - - if (input[pointer] === p(":")) { - if (compress !== null) { - return failure; - } - ++pointer; - ++pieceIndex; - compress = pieceIndex; - continue; - } - - let value = 0; - let length = 0; - - while (length < 4 && infra$1.isASCIIHex(input[pointer])) { - value = value * 0x10 + parseInt(at(input, pointer), 16); - ++pointer; - ++length; - } - - if (input[pointer] === p(".")) { - if (length === 0) { - return failure; - } - - pointer -= length; - - if (pieceIndex > 6) { - return failure; - } - - let numbersSeen = 0; - - while (input[pointer] !== undefined) { - let ipv4Piece = null; - - if (numbersSeen > 0) { - if (input[pointer] === p(".") && numbersSeen < 4) { - ++pointer; - } else { - return failure; - } - } - - if (!infra$1.isASCIIDigit(input[pointer])) { - return failure; - } - - while (infra$1.isASCIIDigit(input[pointer])) { - const number = parseInt(at(input, pointer)); - if (ipv4Piece === null) { - ipv4Piece = number; - } else if (ipv4Piece === 0) { - return failure; - } else { - ipv4Piece = ipv4Piece * 10 + number; - } - if (ipv4Piece > 255) { - return failure; - } - ++pointer; - } - - address[pieceIndex] = address[pieceIndex] * 0x100 + ipv4Piece; - - ++numbersSeen; - - if (numbersSeen === 2 || numbersSeen === 4) { - ++pieceIndex; - } - } - - if (numbersSeen !== 4) { - return failure; - } - - break; - } else if (input[pointer] === p(":")) { - ++pointer; - if (input[pointer] === undefined) { - return failure; - } - } else if (input[pointer] !== undefined) { - return failure; - } - - address[pieceIndex] = value; - ++pieceIndex; - } - - if (compress !== null) { - let swaps = pieceIndex - compress; - pieceIndex = 7; - while (pieceIndex !== 0 && swaps > 0) { - const temp = address[compress + swaps - 1]; - address[compress + swaps - 1] = address[pieceIndex]; - address[pieceIndex] = temp; - --pieceIndex; - --swaps; - } - } else if (compress === null && pieceIndex !== 8) { - return failure; - } - - return address; - } - - function serializeIPv6(address) { - let output = ""; - const compress = findLongestZeroSequence(address); - let ignore0 = false; - - for (let pieceIndex = 0; pieceIndex <= 7; ++pieceIndex) { - if (ignore0 && address[pieceIndex] === 0) { - continue; - } else if (ignore0) { - ignore0 = false; - } - - if (compress === pieceIndex) { - const separator = pieceIndex === 0 ? "::" : ":"; - output += separator; - ignore0 = true; - continue; - } - - output += address[pieceIndex].toString(16); - - if (pieceIndex !== 7) { - output += ":"; - } - } - - return output; - } - - function parseHost(input, isNotSpecialArg = false) { - if (input[0] === "[") { - if (input[input.length - 1] !== "]") { - return failure; - } - - return parseIPv6(input.substring(1, input.length - 1)); - } - - if (isNotSpecialArg) { - return parseOpaqueHost(input); - } - - const domain = utf8DecodeWithoutBOM(percentDecodeString(input)); - const asciiDomain = domainToASCII(domain); - if (asciiDomain === failure) { - return failure; - } - - if (containsForbiddenHostCodePoint(asciiDomain)) { - return failure; - } - - if (endsInANumber(asciiDomain)) { - return parseIPv4(asciiDomain); - } - - return asciiDomain; - } - - function endsInANumber(input) { - const parts = input.split("."); - if (parts[parts.length - 1] === "") { - if (parts.length === 1) { - return false; - } - parts.pop(); - } - - const last = parts[parts.length - 1]; - if (parseIPv4Number(last) !== failure) { - return true; - } - - if (/^[0-9]+$/u.test(last)) { - return true; - } - - return false; - } - - function parseOpaqueHost(input) { - if (containsForbiddenHostCodePointExcludingPercent(input)) { - return failure; - } - - return utf8PercentEncodeString(input, isC0ControlPercentEncode); - } - - function findLongestZeroSequence(arr) { - let maxIdx = null; - let maxLen = 1; // only find elements > 1 - let currStart = null; - let currLen = 0; - - for (let i = 0; i < arr.length; ++i) { - if (arr[i] !== 0) { - if (currLen > maxLen) { - maxIdx = currStart; - maxLen = currLen; - } - - currStart = null; - currLen = 0; - } else { - if (currStart === null) { - currStart = i; - } - ++currLen; - } - } - - // if trailing zeros - if (currLen > maxLen) { - return currStart; - } - - return maxIdx; - } - - function serializeHost(host) { - if (typeof host === "number") { - return serializeIPv4(host); - } - - // IPv6 serializer - if (host instanceof Array) { - return `[${serializeIPv6(host)}]`; - } - - return host; - } - - function domainToASCII(domain, beStrict = false) { - const result = tr46$1.toASCII(domain, { - checkBidi: true, - checkHyphens: false, - checkJoiners: true, - useSTD3ASCIIRules: beStrict, - verifyDNSLength: beStrict - }); - if (result === null || result === "") { - return failure; - } - return result; - } - - function trimControlChars(url) { - return url.replace(/^[\u0000-\u001F\u0020]+|[\u0000-\u001F\u0020]+$/ug, ""); - } - - function trimTabAndNewline(url) { - return url.replace(/\u0009|\u000A|\u000D/ug, ""); - } - - function shortenPath(url) { - const { path } = url; - if (path.length === 0) { - return; - } - if (url.scheme === "file" && path.length === 1 && isNormalizedWindowsDriveLetter(path[0])) { - return; - } - - path.pop(); - } - - function includesCredentials(url) { - return url.username !== "" || url.password !== ""; - } - - function cannotHaveAUsernamePasswordPort(url) { - return url.host === null || url.host === "" || hasAnOpaquePath(url) || url.scheme === "file"; - } - - function hasAnOpaquePath(url) { - return typeof url.path === "string"; - } - - function isNormalizedWindowsDriveLetter(string) { - return /^[A-Za-z]:$/u.test(string); - } - - function URLStateMachine(input, base, encodingOverride, url, stateOverride) { - this.pointer = 0; - this.input = input; - this.base = base || null; - this.encodingOverride = encodingOverride || "utf-8"; - this.stateOverride = stateOverride; - this.url = url; - this.failure = false; - this.parseError = false; - - if (!this.url) { - this.url = { - scheme: "", - username: "", - password: "", - host: null, - port: null, - path: [], - query: null, - fragment: null - }; - - const res = trimControlChars(this.input); - if (res !== this.input) { - this.parseError = true; - } - this.input = res; - } - - const res = trimTabAndNewline(this.input); - if (res !== this.input) { - this.parseError = true; - } - this.input = res; - - this.state = stateOverride || "scheme start"; - - this.buffer = ""; - this.atFlag = false; - this.arrFlag = false; - this.passwordTokenSeenFlag = false; - - this.input = Array.from(this.input, c => c.codePointAt(0)); - - for (; this.pointer <= this.input.length; ++this.pointer) { - const c = this.input[this.pointer]; - const cStr = isNaN(c) ? undefined : String.fromCodePoint(c); - - // exec state machine - const ret = this[`parse ${this.state}`](c, cStr); - if (!ret) { - break; // terminate algorithm - } else if (ret === failure) { - this.failure = true; - break; - } - } - } - - URLStateMachine.prototype["parse scheme start"] = function parseSchemeStart(c, cStr) { - if (infra$1.isASCIIAlpha(c)) { - this.buffer += cStr.toLowerCase(); - this.state = "scheme"; - } else if (!this.stateOverride) { - this.state = "no scheme"; - --this.pointer; - } else { - this.parseError = true; - return failure; - } - - return true; - }; - - URLStateMachine.prototype["parse scheme"] = function parseScheme(c, cStr) { - if (infra$1.isASCIIAlphanumeric(c) || c === p("+") || c === p("-") || c === p(".")) { - this.buffer += cStr.toLowerCase(); - } else if (c === p(":")) { - if (this.stateOverride) { - if (isSpecial(this.url) && !isSpecialScheme(this.buffer)) { - return false; - } - - if (!isSpecial(this.url) && isSpecialScheme(this.buffer)) { - return false; - } - - if ((includesCredentials(this.url) || this.url.port !== null) && this.buffer === "file") { - return false; - } - - if (this.url.scheme === "file" && this.url.host === "") { - return false; - } - } - this.url.scheme = this.buffer; - if (this.stateOverride) { - if (this.url.port === defaultPort(this.url.scheme)) { - this.url.port = null; - } - return false; - } - this.buffer = ""; - if (this.url.scheme === "file") { - if (this.input[this.pointer + 1] !== p("/") || this.input[this.pointer + 2] !== p("/")) { - this.parseError = true; - } - this.state = "file"; - } else if (isSpecial(this.url) && this.base !== null && this.base.scheme === this.url.scheme) { - this.state = "special relative or authority"; - } else if (isSpecial(this.url)) { - this.state = "special authority slashes"; - } else if (this.input[this.pointer + 1] === p("/")) { - this.state = "path or authority"; - ++this.pointer; - } else { - this.url.path = ""; - this.state = "opaque path"; - } - } else if (!this.stateOverride) { - this.buffer = ""; - this.state = "no scheme"; - this.pointer = -1; - } else { - this.parseError = true; - return failure; - } - - return true; - }; - - URLStateMachine.prototype["parse no scheme"] = function parseNoScheme(c) { - if (this.base === null || (hasAnOpaquePath(this.base) && c !== p("#"))) { - return failure; - } else if (hasAnOpaquePath(this.base) && c === p("#")) { - this.url.scheme = this.base.scheme; - this.url.path = this.base.path; - this.url.query = this.base.query; - this.url.fragment = ""; - this.state = "fragment"; - } else if (this.base.scheme === "file") { - this.state = "file"; - --this.pointer; - } else { - this.state = "relative"; - --this.pointer; - } - - return true; - }; - - URLStateMachine.prototype["parse special relative or authority"] = function parseSpecialRelativeOrAuthority(c) { - if (c === p("/") && this.input[this.pointer + 1] === p("/")) { - this.state = "special authority ignore slashes"; - ++this.pointer; - } else { - this.parseError = true; - this.state = "relative"; - --this.pointer; - } - - return true; - }; - - URLStateMachine.prototype["parse path or authority"] = function parsePathOrAuthority(c) { - if (c === p("/")) { - this.state = "authority"; - } else { - this.state = "path"; - --this.pointer; - } - - return true; - }; - - URLStateMachine.prototype["parse relative"] = function parseRelative(c) { - this.url.scheme = this.base.scheme; - if (c === p("/")) { - this.state = "relative slash"; - } else if (isSpecial(this.url) && c === p("\\")) { - this.parseError = true; - this.state = "relative slash"; - } else { - this.url.username = this.base.username; - this.url.password = this.base.password; - this.url.host = this.base.host; - this.url.port = this.base.port; - this.url.path = this.base.path.slice(); - this.url.query = this.base.query; - if (c === p("?")) { - this.url.query = ""; - this.state = "query"; - } else if (c === p("#")) { - this.url.fragment = ""; - this.state = "fragment"; - } else if (!isNaN(c)) { - this.url.query = null; - this.url.path.pop(); - this.state = "path"; - --this.pointer; - } - } - - return true; - }; - - URLStateMachine.prototype["parse relative slash"] = function parseRelativeSlash(c) { - if (isSpecial(this.url) && (c === p("/") || c === p("\\"))) { - if (c === p("\\")) { - this.parseError = true; - } - this.state = "special authority ignore slashes"; - } else if (c === p("/")) { - this.state = "authority"; - } else { - this.url.username = this.base.username; - this.url.password = this.base.password; - this.url.host = this.base.host; - this.url.port = this.base.port; - this.state = "path"; - --this.pointer; - } - - return true; - }; - - URLStateMachine.prototype["parse special authority slashes"] = function parseSpecialAuthoritySlashes(c) { - if (c === p("/") && this.input[this.pointer + 1] === p("/")) { - this.state = "special authority ignore slashes"; - ++this.pointer; - } else { - this.parseError = true; - this.state = "special authority ignore slashes"; - --this.pointer; - } - - return true; - }; - - URLStateMachine.prototype["parse special authority ignore slashes"] = function parseSpecialAuthorityIgnoreSlashes(c) { - if (c !== p("/") && c !== p("\\")) { - this.state = "authority"; - --this.pointer; - } else { - this.parseError = true; - } - - return true; - }; - - URLStateMachine.prototype["parse authority"] = function parseAuthority(c, cStr) { - if (c === p("@")) { - this.parseError = true; - if (this.atFlag) { - this.buffer = `%40${this.buffer}`; - } - this.atFlag = true; - - // careful, this is based on buffer and has its own pointer (this.pointer != pointer) and inner chars - const len = countSymbols(this.buffer); - for (let pointer = 0; pointer < len; ++pointer) { - const codePoint = this.buffer.codePointAt(pointer); - - if (codePoint === p(":") && !this.passwordTokenSeenFlag) { - this.passwordTokenSeenFlag = true; - continue; - } - const encodedCodePoints = utf8PercentEncodeCodePoint(codePoint, isUserinfoPercentEncode); - if (this.passwordTokenSeenFlag) { - this.url.password += encodedCodePoints; - } else { - this.url.username += encodedCodePoints; - } - } - this.buffer = ""; - } else if (isNaN(c) || c === p("/") || c === p("?") || c === p("#") || - (isSpecial(this.url) && c === p("\\"))) { - if (this.atFlag && this.buffer === "") { - this.parseError = true; - return failure; - } - this.pointer -= countSymbols(this.buffer) + 1; - this.buffer = ""; - this.state = "host"; - } else { - this.buffer += cStr; - } - - return true; - }; - - URLStateMachine.prototype["parse hostname"] = - URLStateMachine.prototype["parse host"] = function parseHostName(c, cStr) { - if (this.stateOverride && this.url.scheme === "file") { - --this.pointer; - this.state = "file host"; - } else if (c === p(":") && !this.arrFlag) { - if (this.buffer === "") { - this.parseError = true; - return failure; - } - - if (this.stateOverride === "hostname") { - return false; - } - - const host = parseHost(this.buffer, isNotSpecial(this.url)); - if (host === failure) { - return failure; - } - - this.url.host = host; - this.buffer = ""; - this.state = "port"; - } else if (isNaN(c) || c === p("/") || c === p("?") || c === p("#") || - (isSpecial(this.url) && c === p("\\"))) { - --this.pointer; - if (isSpecial(this.url) && this.buffer === "") { - this.parseError = true; - return failure; - } else if (this.stateOverride && this.buffer === "" && - (includesCredentials(this.url) || this.url.port !== null)) { - this.parseError = true; - return false; - } - - const host = parseHost(this.buffer, isNotSpecial(this.url)); - if (host === failure) { - return failure; - } - - this.url.host = host; - this.buffer = ""; - this.state = "path start"; - if (this.stateOverride) { - return false; - } - } else { - if (c === p("[")) { - this.arrFlag = true; - } else if (c === p("]")) { - this.arrFlag = false; - } - this.buffer += cStr; - } - - return true; - }; - - URLStateMachine.prototype["parse port"] = function parsePort(c, cStr) { - if (infra$1.isASCIIDigit(c)) { - this.buffer += cStr; - } else if (isNaN(c) || c === p("/") || c === p("?") || c === p("#") || - (isSpecial(this.url) && c === p("\\")) || - this.stateOverride) { - if (this.buffer !== "") { - const port = parseInt(this.buffer); - if (port > 2 ** 16 - 1) { - this.parseError = true; - return failure; - } - this.url.port = port === defaultPort(this.url.scheme) ? null : port; - this.buffer = ""; - } - if (this.stateOverride) { - return false; - } - this.state = "path start"; - --this.pointer; - } else { - this.parseError = true; - return failure; - } - - return true; - }; - - const fileOtherwiseCodePoints = new Set([p("/"), p("\\"), p("?"), p("#")]); - - function startsWithWindowsDriveLetter(input, pointer) { - const length = input.length - pointer; - return length >= 2 && - isWindowsDriveLetterCodePoints(input[pointer], input[pointer + 1]) && - (length === 2 || fileOtherwiseCodePoints.has(input[pointer + 2])); - } - - URLStateMachine.prototype["parse file"] = function parseFile(c) { - this.url.scheme = "file"; - this.url.host = ""; - - if (c === p("/") || c === p("\\")) { - if (c === p("\\")) { - this.parseError = true; - } - this.state = "file slash"; - } else if (this.base !== null && this.base.scheme === "file") { - this.url.host = this.base.host; - this.url.path = this.base.path.slice(); - this.url.query = this.base.query; - if (c === p("?")) { - this.url.query = ""; - this.state = "query"; - } else if (c === p("#")) { - this.url.fragment = ""; - this.state = "fragment"; - } else if (!isNaN(c)) { - this.url.query = null; - if (!startsWithWindowsDriveLetter(this.input, this.pointer)) { - shortenPath(this.url); - } else { - this.parseError = true; - this.url.path = []; - } - - this.state = "path"; - --this.pointer; - } - } else { - this.state = "path"; - --this.pointer; - } - - return true; - }; - - URLStateMachine.prototype["parse file slash"] = function parseFileSlash(c) { - if (c === p("/") || c === p("\\")) { - if (c === p("\\")) { - this.parseError = true; - } - this.state = "file host"; - } else { - if (this.base !== null && this.base.scheme === "file") { - if (!startsWithWindowsDriveLetter(this.input, this.pointer) && - isNormalizedWindowsDriveLetterString(this.base.path[0])) { - this.url.path.push(this.base.path[0]); - } - this.url.host = this.base.host; - } - this.state = "path"; - --this.pointer; - } - - return true; - }; - - URLStateMachine.prototype["parse file host"] = function parseFileHost(c, cStr) { - if (isNaN(c) || c === p("/") || c === p("\\") || c === p("?") || c === p("#")) { - --this.pointer; - if (!this.stateOverride && isWindowsDriveLetterString(this.buffer)) { - this.parseError = true; - this.state = "path"; - } else if (this.buffer === "") { - this.url.host = ""; - if (this.stateOverride) { - return false; - } - this.state = "path start"; - } else { - let host = parseHost(this.buffer, isNotSpecial(this.url)); - if (host === failure) { - return failure; - } - if (host === "localhost") { - host = ""; - } - this.url.host = host; - - if (this.stateOverride) { - return false; - } - - this.buffer = ""; - this.state = "path start"; - } - } else { - this.buffer += cStr; - } - - return true; - }; - - URLStateMachine.prototype["parse path start"] = function parsePathStart(c) { - if (isSpecial(this.url)) { - if (c === p("\\")) { - this.parseError = true; - } - this.state = "path"; - - if (c !== p("/") && c !== p("\\")) { - --this.pointer; - } - } else if (!this.stateOverride && c === p("?")) { - this.url.query = ""; - this.state = "query"; - } else if (!this.stateOverride && c === p("#")) { - this.url.fragment = ""; - this.state = "fragment"; - } else if (c !== undefined) { - this.state = "path"; - if (c !== p("/")) { - --this.pointer; - } - } else if (this.stateOverride && this.url.host === null) { - this.url.path.push(""); - } - - return true; - }; - - URLStateMachine.prototype["parse path"] = function parsePath(c) { - if (isNaN(c) || c === p("/") || (isSpecial(this.url) && c === p("\\")) || - (!this.stateOverride && (c === p("?") || c === p("#")))) { - if (isSpecial(this.url) && c === p("\\")) { - this.parseError = true; - } - - if (isDoubleDot(this.buffer)) { - shortenPath(this.url); - if (c !== p("/") && !(isSpecial(this.url) && c === p("\\"))) { - this.url.path.push(""); - } - } else if (isSingleDot(this.buffer) && c !== p("/") && - !(isSpecial(this.url) && c === p("\\"))) { - this.url.path.push(""); - } else if (!isSingleDot(this.buffer)) { - if (this.url.scheme === "file" && this.url.path.length === 0 && isWindowsDriveLetterString(this.buffer)) { - this.buffer = `${this.buffer[0]}:`; - } - this.url.path.push(this.buffer); - } - this.buffer = ""; - if (c === p("?")) { - this.url.query = ""; - this.state = "query"; - } - if (c === p("#")) { - this.url.fragment = ""; - this.state = "fragment"; - } - } else { - // TODO: If c is not a URL code point and not "%", parse error. - - if (c === p("%") && - (!infra$1.isASCIIHex(this.input[this.pointer + 1]) || - !infra$1.isASCIIHex(this.input[this.pointer + 2]))) { - this.parseError = true; - } - - this.buffer += utf8PercentEncodeCodePoint(c, isPathPercentEncode); - } - - return true; - }; - - URLStateMachine.prototype["parse opaque path"] = function parseOpaquePath(c) { - if (c === p("?")) { - this.url.query = ""; - this.state = "query"; - } else if (c === p("#")) { - this.url.fragment = ""; - this.state = "fragment"; - } else { - // TODO: Add: not a URL code point - if (!isNaN(c) && c !== p("%")) { - this.parseError = true; - } - - if (c === p("%") && - (!infra$1.isASCIIHex(this.input[this.pointer + 1]) || - !infra$1.isASCIIHex(this.input[this.pointer + 2]))) { - this.parseError = true; - } - - if (!isNaN(c)) { - this.url.path += utf8PercentEncodeCodePoint(c, isC0ControlPercentEncode); - } - } - - return true; - }; - - URLStateMachine.prototype["parse query"] = function parseQuery(c, cStr) { - if (!isSpecial(this.url) || this.url.scheme === "ws" || this.url.scheme === "wss") { - this.encodingOverride = "utf-8"; - } - - if ((!this.stateOverride && c === p("#")) || isNaN(c)) { - const queryPercentEncodePredicate = isSpecial(this.url) ? isSpecialQueryPercentEncode : isQueryPercentEncode; - this.url.query += utf8PercentEncodeString(this.buffer, queryPercentEncodePredicate); - - this.buffer = ""; - - if (c === p("#")) { - this.url.fragment = ""; - this.state = "fragment"; - } - } else if (!isNaN(c)) { - // TODO: If c is not a URL code point and not "%", parse error. - - if (c === p("%") && - (!infra$1.isASCIIHex(this.input[this.pointer + 1]) || - !infra$1.isASCIIHex(this.input[this.pointer + 2]))) { - this.parseError = true; - } - - this.buffer += cStr; - } - - return true; - }; - - URLStateMachine.prototype["parse fragment"] = function parseFragment(c) { - if (!isNaN(c)) { - // TODO: If c is not a URL code point and not "%", parse error. - if (c === p("%") && - (!infra$1.isASCIIHex(this.input[this.pointer + 1]) || - !infra$1.isASCIIHex(this.input[this.pointer + 2]))) { - this.parseError = true; - } - - this.url.fragment += utf8PercentEncodeCodePoint(c, isFragmentPercentEncode); - } - - return true; - }; - - function serializeURL(url, excludeFragment) { - let output = `${url.scheme}:`; - if (url.host !== null) { - output += "//"; - - if (url.username !== "" || url.password !== "") { - output += url.username; - if (url.password !== "") { - output += `:${url.password}`; - } - output += "@"; - } - - output += serializeHost(url.host); - - if (url.port !== null) { - output += `:${url.port}`; - } - } - - if (url.host === null && !hasAnOpaquePath(url) && url.path.length > 1 && url.path[0] === "") { - output += "/."; - } - output += serializePath(url); - - if (url.query !== null) { - output += `?${url.query}`; - } - - if (!excludeFragment && url.fragment !== null) { - output += `#${url.fragment}`; - } - - return output; - } - - function serializeOrigin(tuple) { - let result = `${tuple.scheme}://`; - result += serializeHost(tuple.host); - - if (tuple.port !== null) { - result += `:${tuple.port}`; - } - - return result; - } - - function serializePath(url) { - if (hasAnOpaquePath(url)) { - return url.path; - } - - let output = ""; - for (const segment of url.path) { - output += `/${segment}`; - } - return output; - } - - module.exports.serializeURL = serializeURL; - - module.exports.serializePath = serializePath; - - module.exports.serializeURLOrigin = function (url) { - // https://url.spec.whatwg.org/#concept-url-origin - switch (url.scheme) { - case "blob": - try { - return module.exports.serializeURLOrigin(module.exports.parseURL(serializePath(url))); - } catch (e) { - // serializing an opaque origin returns "null" - return "null"; - } - case "ftp": - case "http": - case "https": - case "ws": - case "wss": - return serializeOrigin({ - scheme: url.scheme, - host: url.host, - port: url.port - }); - case "file": - // The spec says: - // > Unfortunate as it is, this is left as an exercise to the reader. When in doubt, return a new opaque origin. - // Browsers tested so far: - // - Chrome says "file://", but treats file: URLs as cross-origin for most (all?) purposes; see e.g. - // https://bugs.chromium.org/p/chromium/issues/detail?id=37586 - // - Firefox says "null", but treats file: URLs as same-origin sometimes based on directory stuff; see - // https://developer.mozilla.org/en-US/docs/Archive/Misc_top_level/Same-origin_policy_for_file:_URIs - return "null"; - default: - // serializing an opaque origin returns "null" - return "null"; - } - }; - - module.exports.basicURLParse = function (input, options) { - if (options === undefined) { - options = {}; - } - - const usm = new URLStateMachine(input, options.baseURL, options.encodingOverride, options.url, options.stateOverride); - if (usm.failure) { - return null; - } - - return usm.url; - }; - - module.exports.setTheUsername = function (url, username) { - url.username = utf8PercentEncodeString(username, isUserinfoPercentEncode); - }; - - module.exports.setThePassword = function (url, password) { - url.password = utf8PercentEncodeString(password, isUserinfoPercentEncode); - }; - - module.exports.serializeHost = serializeHost; - - module.exports.cannotHaveAUsernamePasswordPort = cannotHaveAUsernamePasswordPort; - - module.exports.hasAnOpaquePath = hasAnOpaquePath; - - module.exports.serializeInteger = function (integer) { - return String(integer); - }; - - module.exports.parseURL = function (input, options) { - if (options === undefined) { - options = {}; - } - - // We don't handle blobs, so this just delegates: - return module.exports.basicURLParse(input, { baseURL: options.baseURL, encodingOverride: options.encodingOverride }); - }; - }(urlStateMachine$1)); - - const { utf8Encode, utf8DecodeWithoutBOM } = encoding; - const { percentDecodeBytes, utf8PercentEncodeString, isURLEncodedPercentEncode } = percentEncoding$1; - - function p(char) { - return char.codePointAt(0); - } - - // https://url.spec.whatwg.org/#concept-urlencoded-parser - function parseUrlencoded(input) { - const sequences = strictlySplitByteSequence(input, p("&")); - const output = []; - for (const bytes of sequences) { - if (bytes.length === 0) { - continue; - } - - let name, value; - const indexOfEqual = bytes.indexOf(p("=")); - - if (indexOfEqual >= 0) { - name = bytes.slice(0, indexOfEqual); - value = bytes.slice(indexOfEqual + 1); - } else { - name = bytes; - value = new Uint8Array(0); - } - - name = replaceByteInByteSequence(name, 0x2B, 0x20); - value = replaceByteInByteSequence(value, 0x2B, 0x20); - - const nameString = utf8DecodeWithoutBOM(percentDecodeBytes(name)); - const valueString = utf8DecodeWithoutBOM(percentDecodeBytes(value)); - - output.push([nameString, valueString]); - } - return output; - } - - // https://url.spec.whatwg.org/#concept-urlencoded-string-parser - function parseUrlencodedString(input) { - return parseUrlencoded(utf8Encode(input)); - } - - // https://url.spec.whatwg.org/#concept-urlencoded-serializer - function serializeUrlencoded(tuples, encodingOverride = undefined) { - let encoding = "utf-8"; - if (encodingOverride !== undefined) { - // TODO "get the output encoding", i.e. handle encoding labels vs. names. - encoding = encodingOverride; - } - - let output = ""; - for (const [i, tuple] of tuples.entries()) { - // TODO: handle encoding override - - const name = utf8PercentEncodeString(tuple[0], isURLEncodedPercentEncode, true); - - let value = tuple[1]; - if (tuple.length > 2 && tuple[2] !== undefined) { - if (tuple[2] === "hidden" && name === "_charset_") { - value = encoding; - } else if (tuple[2] === "file") { - // value is a File object - value = value.name; - } - } - - value = utf8PercentEncodeString(value, isURLEncodedPercentEncode, true); - - if (i !== 0) { - output += "&"; - } - output += `${name}=${value}`; - } - return output; - } - - function strictlySplitByteSequence(buf, cp) { - const list = []; - let last = 0; - let i = buf.indexOf(cp); - while (i >= 0) { - list.push(buf.slice(last, i)); - last = i + 1; - i = buf.indexOf(cp, last); - } - if (last !== buf.length) { - list.push(buf.slice(last)); - } - return list; - } - - function replaceByteInByteSequence(buf, from, to) { - let i = buf.indexOf(from); - while (i >= 0) { - buf[i] = to; - i = buf.indexOf(from, i + 1); - } - return buf; - } - - var urlencoded$2 = { - parseUrlencodedString, - serializeUrlencoded - }; - - var URLSearchParams$3 = {}; - - var _Function = {}; - - const conversions = lib; - const utils = utils$1.exports; - - _Function.convert = (globalObject, value, { context = "The provided value" } = {}) => { - if (typeof value !== "function") { - throw new globalObject.TypeError(context + " is not a function"); - } - - function invokeTheCallbackFunction(...args) { - const thisArg = utils.tryWrapperForImpl(this); - let callResult; - - for (let i = 0; i < args.length; i++) { - args[i] = utils.tryWrapperForImpl(args[i]); - } - - callResult = Reflect.apply(value, thisArg, args); - - callResult = conversions["any"](callResult, { context: context, globals: globalObject }); - - return callResult; - } - - invokeTheCallbackFunction.construct = (...args) => { - for (let i = 0; i < args.length; i++) { - args[i] = utils.tryWrapperForImpl(args[i]); - } - - let callResult = Reflect.construct(value, args); - - callResult = conversions["any"](callResult, { context: context, globals: globalObject }); - - return callResult; - }; - - invokeTheCallbackFunction[utils.wrapperSymbol] = value; - invokeTheCallbackFunction.objectReference = value; - - return invokeTheCallbackFunction; - }; - - var URLSearchParamsImpl = {}; - - const urlencoded$1 = urlencoded$2; - - URLSearchParamsImpl.implementation = class URLSearchParamsImpl { - constructor(globalObject, constructorArgs, { doNotStripQMark = false }) { - let init = constructorArgs[0]; - this._list = []; - this._url = null; - - if (!doNotStripQMark && typeof init === "string" && init[0] === "?") { - init = init.slice(1); - } - - if (Array.isArray(init)) { - for (const pair of init) { - if (pair.length !== 2) { - throw new TypeError("Failed to construct 'URLSearchParams': parameter 1 sequence's element does not " + - "contain exactly two elements."); - } - this._list.push([pair[0], pair[1]]); - } - } else if (typeof init === "object" && Object.getPrototypeOf(init) === null) { - for (const name of Object.keys(init)) { - const value = init[name]; - this._list.push([name, value]); - } - } else { - this._list = urlencoded$1.parseUrlencodedString(init); - } - } - - _updateSteps() { - if (this._url !== null) { - let query = urlencoded$1.serializeUrlencoded(this._list); - if (query === "") { - query = null; - } - this._url._url.query = query; - } - } - - append(name, value) { - this._list.push([name, value]); - this._updateSteps(); - } - - delete(name) { - let i = 0; - while (i < this._list.length) { - if (this._list[i][0] === name) { - this._list.splice(i, 1); - } else { - i++; - } - } - this._updateSteps(); - } - - get(name) { - for (const tuple of this._list) { - if (tuple[0] === name) { - return tuple[1]; - } - } - return null; - } - - getAll(name) { - const output = []; - for (const tuple of this._list) { - if (tuple[0] === name) { - output.push(tuple[1]); - } - } - return output; - } - - has(name) { - for (const tuple of this._list) { - if (tuple[0] === name) { - return true; - } - } - return false; - } - - set(name, value) { - let found = false; - let i = 0; - while (i < this._list.length) { - if (this._list[i][0] === name) { - if (found) { - this._list.splice(i, 1); - } else { - found = true; - this._list[i][1] = value; - i++; - } - } else { - i++; - } - } - if (!found) { - this._list.push([name, value]); - } - this._updateSteps(); - } - - sort() { - this._list.sort((a, b) => { - if (a[0] < b[0]) { - return -1; - } - if (a[0] > b[0]) { - return 1; - } - return 0; - }); - - this._updateSteps(); - } - - [Symbol.iterator]() { - return this._list[Symbol.iterator](); - } - - toString() { - return urlencoded$1.serializeUrlencoded(this._list); - } - }; - - (function (exports) { - - const conversions = lib; - const utils = utils$1.exports; - - const Function = _Function; - const newObjectInRealm = utils.newObjectInRealm; - const implSymbol = utils.implSymbol; - const ctorRegistrySymbol = utils.ctorRegistrySymbol; - - const interfaceName = "URLSearchParams"; - - exports.is = value => { - return utils.isObject(value) && utils.hasOwn(value, implSymbol) && value[implSymbol] instanceof Impl.implementation; - }; - exports.isImpl = value => { - return utils.isObject(value) && value instanceof Impl.implementation; - }; - exports.convert = (globalObject, value, { context = "The provided value" } = {}) => { - if (exports.is(value)) { - return utils.implForWrapper(value); - } - throw new globalObject.TypeError(`${context} is not of type 'URLSearchParams'.`); - }; - - exports.createDefaultIterator = (globalObject, target, kind) => { - const ctorRegistry = globalObject[ctorRegistrySymbol]; - const iteratorPrototype = ctorRegistry["URLSearchParams Iterator"]; - const iterator = Object.create(iteratorPrototype); - Object.defineProperty(iterator, utils.iterInternalSymbol, { - value: { target, kind, index: 0 }, - configurable: true - }); - return iterator; - }; - - function makeWrapper(globalObject, newTarget) { - let proto; - if (newTarget !== undefined) { - proto = newTarget.prototype; - } - - if (!utils.isObject(proto)) { - proto = globalObject[ctorRegistrySymbol]["URLSearchParams"].prototype; - } - - return Object.create(proto); - } - - exports.create = (globalObject, constructorArgs, privateData) => { - const wrapper = makeWrapper(globalObject); - return exports.setup(wrapper, globalObject, constructorArgs, privateData); - }; - - exports.createImpl = (globalObject, constructorArgs, privateData) => { - const wrapper = exports.create(globalObject, constructorArgs, privateData); - return utils.implForWrapper(wrapper); - }; - - exports._internalSetup = (wrapper, globalObject) => {}; - - exports.setup = (wrapper, globalObject, constructorArgs = [], privateData = {}) => { - privateData.wrapper = wrapper; - - exports._internalSetup(wrapper, globalObject); - Object.defineProperty(wrapper, implSymbol, { - value: new Impl.implementation(globalObject, constructorArgs, privateData), - configurable: true - }); - - wrapper[implSymbol][utils.wrapperSymbol] = wrapper; - if (Impl.init) { - Impl.init(wrapper[implSymbol]); - } - return wrapper; - }; - - exports.new = (globalObject, newTarget) => { - const wrapper = makeWrapper(globalObject, newTarget); - - exports._internalSetup(wrapper, globalObject); - Object.defineProperty(wrapper, implSymbol, { - value: Object.create(Impl.implementation.prototype), - configurable: true - }); - - wrapper[implSymbol][utils.wrapperSymbol] = wrapper; - if (Impl.init) { - Impl.init(wrapper[implSymbol]); - } - return wrapper[implSymbol]; - }; - - const exposed = new Set(["Window", "Worker"]); - - exports.install = (globalObject, globalNames) => { - if (!globalNames.some(globalName => exposed.has(globalName))) { - return; - } - - const ctorRegistry = utils.initCtorRegistry(globalObject); - class URLSearchParams { - constructor() { - const args = []; - { - let curArg = arguments[0]; - if (curArg !== undefined) { - if (utils.isObject(curArg)) { - if (curArg[Symbol.iterator] !== undefined) { - if (!utils.isObject(curArg)) { - throw new globalObject.TypeError( - "Failed to construct 'URLSearchParams': parameter 1" + " sequence" + " is not an iterable object." - ); - } else { - const V = []; - const tmp = curArg; - for (let nextItem of tmp) { - if (!utils.isObject(nextItem)) { - throw new globalObject.TypeError( - "Failed to construct 'URLSearchParams': parameter 1" + - " sequence" + - "'s element" + - " is not an iterable object." - ); - } else { - const V = []; - const tmp = nextItem; - for (let nextItem of tmp) { - nextItem = conversions["USVString"](nextItem, { - context: - "Failed to construct 'URLSearchParams': parameter 1" + - " sequence" + - "'s element" + - "'s element", - globals: globalObject - }); - - V.push(nextItem); - } - nextItem = V; - } - - V.push(nextItem); - } - curArg = V; - } - } else { - if (!utils.isObject(curArg)) { - throw new globalObject.TypeError( - "Failed to construct 'URLSearchParams': parameter 1" + " record" + " is not an object." - ); - } else { - const result = Object.create(null); - for (const key of Reflect.ownKeys(curArg)) { - const desc = Object.getOwnPropertyDescriptor(curArg, key); - if (desc && desc.enumerable) { - let typedKey = key; - - typedKey = conversions["USVString"](typedKey, { - context: "Failed to construct 'URLSearchParams': parameter 1" + " record" + "'s key", - globals: globalObject - }); - - let typedValue = curArg[key]; - - typedValue = conversions["USVString"](typedValue, { - context: "Failed to construct 'URLSearchParams': parameter 1" + " record" + "'s value", - globals: globalObject - }); - - result[typedKey] = typedValue; - } - } - curArg = result; - } - } - } else { - curArg = conversions["USVString"](curArg, { - context: "Failed to construct 'URLSearchParams': parameter 1", - globals: globalObject - }); - } - } else { - curArg = ""; - } - args.push(curArg); - } - return exports.setup(Object.create(new.target.prototype), globalObject, args); - } - - append(name, value) { - const esValue = this !== null && this !== undefined ? this : globalObject; - if (!exports.is(esValue)) { - throw new globalObject.TypeError( - "'append' called on an object that is not a valid instance of URLSearchParams." - ); - } - - if (arguments.length < 2) { - throw new globalObject.TypeError( - `Failed to execute 'append' on 'URLSearchParams': 2 arguments required, but only ${arguments.length} present.` - ); - } - const args = []; - { - let curArg = arguments[0]; - curArg = conversions["USVString"](curArg, { - context: "Failed to execute 'append' on 'URLSearchParams': parameter 1", - globals: globalObject - }); - args.push(curArg); - } - { - let curArg = arguments[1]; - curArg = conversions["USVString"](curArg, { - context: "Failed to execute 'append' on 'URLSearchParams': parameter 2", - globals: globalObject - }); - args.push(curArg); - } - return utils.tryWrapperForImpl(esValue[implSymbol].append(...args)); - } - - delete(name) { - const esValue = this !== null && this !== undefined ? this : globalObject; - if (!exports.is(esValue)) { - throw new globalObject.TypeError( - "'delete' called on an object that is not a valid instance of URLSearchParams." - ); - } - - if (arguments.length < 1) { - throw new globalObject.TypeError( - `Failed to execute 'delete' on 'URLSearchParams': 1 argument required, but only ${arguments.length} present.` - ); - } - const args = []; - { - let curArg = arguments[0]; - curArg = conversions["USVString"](curArg, { - context: "Failed to execute 'delete' on 'URLSearchParams': parameter 1", - globals: globalObject - }); - args.push(curArg); - } - return utils.tryWrapperForImpl(esValue[implSymbol].delete(...args)); - } - - get(name) { - const esValue = this !== null && this !== undefined ? this : globalObject; - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'get' called on an object that is not a valid instance of URLSearchParams."); - } - - if (arguments.length < 1) { - throw new globalObject.TypeError( - `Failed to execute 'get' on 'URLSearchParams': 1 argument required, but only ${arguments.length} present.` - ); - } - const args = []; - { - let curArg = arguments[0]; - curArg = conversions["USVString"](curArg, { - context: "Failed to execute 'get' on 'URLSearchParams': parameter 1", - globals: globalObject - }); - args.push(curArg); - } - return esValue[implSymbol].get(...args); - } - - getAll(name) { - const esValue = this !== null && this !== undefined ? this : globalObject; - if (!exports.is(esValue)) { - throw new globalObject.TypeError( - "'getAll' called on an object that is not a valid instance of URLSearchParams." - ); - } - - if (arguments.length < 1) { - throw new globalObject.TypeError( - `Failed to execute 'getAll' on 'URLSearchParams': 1 argument required, but only ${arguments.length} present.` - ); - } - const args = []; - { - let curArg = arguments[0]; - curArg = conversions["USVString"](curArg, { - context: "Failed to execute 'getAll' on 'URLSearchParams': parameter 1", - globals: globalObject - }); - args.push(curArg); - } - return utils.tryWrapperForImpl(esValue[implSymbol].getAll(...args)); - } - - has(name) { - const esValue = this !== null && this !== undefined ? this : globalObject; - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'has' called on an object that is not a valid instance of URLSearchParams."); - } - - if (arguments.length < 1) { - throw new globalObject.TypeError( - `Failed to execute 'has' on 'URLSearchParams': 1 argument required, but only ${arguments.length} present.` - ); - } - const args = []; - { - let curArg = arguments[0]; - curArg = conversions["USVString"](curArg, { - context: "Failed to execute 'has' on 'URLSearchParams': parameter 1", - globals: globalObject - }); - args.push(curArg); - } - return esValue[implSymbol].has(...args); - } - - set(name, value) { - const esValue = this !== null && this !== undefined ? this : globalObject; - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'set' called on an object that is not a valid instance of URLSearchParams."); - } - - if (arguments.length < 2) { - throw new globalObject.TypeError( - `Failed to execute 'set' on 'URLSearchParams': 2 arguments required, but only ${arguments.length} present.` - ); - } - const args = []; - { - let curArg = arguments[0]; - curArg = conversions["USVString"](curArg, { - context: "Failed to execute 'set' on 'URLSearchParams': parameter 1", - globals: globalObject - }); - args.push(curArg); - } - { - let curArg = arguments[1]; - curArg = conversions["USVString"](curArg, { - context: "Failed to execute 'set' on 'URLSearchParams': parameter 2", - globals: globalObject - }); - args.push(curArg); - } - return utils.tryWrapperForImpl(esValue[implSymbol].set(...args)); - } - - sort() { - const esValue = this !== null && this !== undefined ? this : globalObject; - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'sort' called on an object that is not a valid instance of URLSearchParams."); - } - - return utils.tryWrapperForImpl(esValue[implSymbol].sort()); - } - - toString() { - const esValue = this !== null && this !== undefined ? this : globalObject; - if (!exports.is(esValue)) { - throw new globalObject.TypeError( - "'toString' called on an object that is not a valid instance of URLSearchParams." - ); - } - - return esValue[implSymbol].toString(); - } - - keys() { - if (!exports.is(this)) { - throw new globalObject.TypeError("'keys' called on an object that is not a valid instance of URLSearchParams."); - } - return exports.createDefaultIterator(globalObject, this, "key"); - } - - values() { - if (!exports.is(this)) { - throw new globalObject.TypeError( - "'values' called on an object that is not a valid instance of URLSearchParams." - ); - } - return exports.createDefaultIterator(globalObject, this, "value"); - } - - entries() { - if (!exports.is(this)) { - throw new globalObject.TypeError( - "'entries' called on an object that is not a valid instance of URLSearchParams." - ); - } - return exports.createDefaultIterator(globalObject, this, "key+value"); - } - - forEach(callback) { - if (!exports.is(this)) { - throw new globalObject.TypeError( - "'forEach' called on an object that is not a valid instance of URLSearchParams." - ); - } - if (arguments.length < 1) { - throw new globalObject.TypeError( - "Failed to execute 'forEach' on 'iterable': 1 argument required, but only 0 present." - ); - } - callback = Function.convert(globalObject, callback, { - context: "Failed to execute 'forEach' on 'iterable': The callback provided as parameter 1" - }); - const thisArg = arguments[1]; - let pairs = Array.from(this[implSymbol]); - let i = 0; - while (i < pairs.length) { - const [key, value] = pairs[i].map(utils.tryWrapperForImpl); - callback.call(thisArg, value, key, this); - pairs = Array.from(this[implSymbol]); - i++; - } - } - } - Object.defineProperties(URLSearchParams.prototype, { - append: { enumerable: true }, - delete: { enumerable: true }, - get: { enumerable: true }, - getAll: { enumerable: true }, - has: { enumerable: true }, - set: { enumerable: true }, - sort: { enumerable: true }, - toString: { enumerable: true }, - keys: { enumerable: true }, - values: { enumerable: true }, - entries: { enumerable: true }, - forEach: { enumerable: true }, - [Symbol.toStringTag]: { value: "URLSearchParams", configurable: true }, - [Symbol.iterator]: { value: URLSearchParams.prototype.entries, configurable: true, writable: true } - }); - ctorRegistry[interfaceName] = URLSearchParams; - - ctorRegistry["URLSearchParams Iterator"] = Object.create(ctorRegistry["%IteratorPrototype%"], { - [Symbol.toStringTag]: { - configurable: true, - value: "URLSearchParams Iterator" - } - }); - utils.define(ctorRegistry["URLSearchParams Iterator"], { - next() { - const internal = this && this[utils.iterInternalSymbol]; - if (!internal) { - throw new globalObject.TypeError("next() called on a value that is not a URLSearchParams iterator object"); - } - - const { target, kind, index } = internal; - const values = Array.from(target[implSymbol]); - const len = values.length; - if (index >= len) { - return newObjectInRealm(globalObject, { value: undefined, done: true }); - } - - const pair = values[index]; - internal.index = index + 1; - return newObjectInRealm(globalObject, utils.iteratorResult(pair.map(utils.tryWrapperForImpl), kind)); - } - }); - - Object.defineProperty(globalObject, interfaceName, { - configurable: true, - writable: true, - value: URLSearchParams - }); - }; - - const Impl = URLSearchParamsImpl; - }(URLSearchParams$3)); - - const usm = urlStateMachine$1.exports; - const urlencoded = urlencoded$2; - const URLSearchParams$2 = URLSearchParams$3; - - URLImpl.implementation = class URLImpl { - constructor(globalObject, constructorArgs) { - const url = constructorArgs[0]; - const base = constructorArgs[1]; - - let parsedBase = null; - if (base !== undefined) { - parsedBase = usm.basicURLParse(base); - if (parsedBase === null) { - throw new TypeError(`Invalid base URL: ${base}`); - } - } - - const parsedURL = usm.basicURLParse(url, { baseURL: parsedBase }); - if (parsedURL === null) { - throw new TypeError(`Invalid URL: ${url}`); - } - - const query = parsedURL.query !== null ? parsedURL.query : ""; - - this._url = parsedURL; - - // We cannot invoke the "new URLSearchParams object" algorithm without going through the constructor, which strips - // question mark by default. Therefore the doNotStripQMark hack is used. - this._query = URLSearchParams$2.createImpl(globalObject, [query], { doNotStripQMark: true }); - this._query._url = this; - } - - get href() { - return usm.serializeURL(this._url); - } - - set href(v) { - const parsedURL = usm.basicURLParse(v); - if (parsedURL === null) { - throw new TypeError(`Invalid URL: ${v}`); - } - - this._url = parsedURL; - - this._query._list.splice(0); - const { query } = parsedURL; - if (query !== null) { - this._query._list = urlencoded.parseUrlencodedString(query); - } - } - - get origin() { - return usm.serializeURLOrigin(this._url); - } - - get protocol() { - return `${this._url.scheme}:`; - } - - set protocol(v) { - usm.basicURLParse(`${v}:`, { url: this._url, stateOverride: "scheme start" }); - } - - get username() { - return this._url.username; - } - - set username(v) { - if (usm.cannotHaveAUsernamePasswordPort(this._url)) { - return; - } - - usm.setTheUsername(this._url, v); - } - - get password() { - return this._url.password; - } - - set password(v) { - if (usm.cannotHaveAUsernamePasswordPort(this._url)) { - return; - } - - usm.setThePassword(this._url, v); - } - - get host() { - const url = this._url; - - if (url.host === null) { - return ""; - } - - if (url.port === null) { - return usm.serializeHost(url.host); - } - - return `${usm.serializeHost(url.host)}:${usm.serializeInteger(url.port)}`; - } - - set host(v) { - if (usm.hasAnOpaquePath(this._url)) { - return; - } - - usm.basicURLParse(v, { url: this._url, stateOverride: "host" }); - } - - get hostname() { - if (this._url.host === null) { - return ""; - } - - return usm.serializeHost(this._url.host); - } - - set hostname(v) { - if (usm.hasAnOpaquePath(this._url)) { - return; - } - - usm.basicURLParse(v, { url: this._url, stateOverride: "hostname" }); - } - - get port() { - if (this._url.port === null) { - return ""; - } - - return usm.serializeInteger(this._url.port); - } - - set port(v) { - if (usm.cannotHaveAUsernamePasswordPort(this._url)) { - return; - } - - if (v === "") { - this._url.port = null; - } else { - usm.basicURLParse(v, { url: this._url, stateOverride: "port" }); - } - } - - get pathname() { - return usm.serializePath(this._url); - } - - set pathname(v) { - if (usm.hasAnOpaquePath(this._url)) { - return; - } - - this._url.path = []; - usm.basicURLParse(v, { url: this._url, stateOverride: "path start" }); - } - - get search() { - if (this._url.query === null || this._url.query === "") { - return ""; - } - - return `?${this._url.query}`; - } - - set search(v) { - const url = this._url; - - if (v === "") { - url.query = null; - this._query._list = []; - return; - } - - const input = v[0] === "?" ? v.substring(1) : v; - url.query = ""; - usm.basicURLParse(input, { url, stateOverride: "query" }); - this._query._list = urlencoded.parseUrlencodedString(input); - } - - get searchParams() { - return this._query; - } - - get hash() { - if (this._url.fragment === null || this._url.fragment === "") { - return ""; - } - - return `#${this._url.fragment}`; - } - - set hash(v) { - if (v === "") { - this._url.fragment = null; - return; - } - - const input = v[0] === "#" ? v.substring(1) : v; - this._url.fragment = ""; - usm.basicURLParse(input, { url: this._url, stateOverride: "fragment" }); - } - - toJSON() { - return this.href; - } - }; - - (function (exports) { - - const conversions = lib; - const utils = utils$1.exports; - - const implSymbol = utils.implSymbol; - const ctorRegistrySymbol = utils.ctorRegistrySymbol; - - const interfaceName = "URL"; - - exports.is = value => { - return utils.isObject(value) && utils.hasOwn(value, implSymbol) && value[implSymbol] instanceof Impl.implementation; - }; - exports.isImpl = value => { - return utils.isObject(value) && value instanceof Impl.implementation; - }; - exports.convert = (globalObject, value, { context = "The provided value" } = {}) => { - if (exports.is(value)) { - return utils.implForWrapper(value); - } - throw new globalObject.TypeError(`${context} is not of type 'URL'.`); - }; - - function makeWrapper(globalObject, newTarget) { - let proto; - if (newTarget !== undefined) { - proto = newTarget.prototype; - } - - if (!utils.isObject(proto)) { - proto = globalObject[ctorRegistrySymbol]["URL"].prototype; - } - - return Object.create(proto); - } - - exports.create = (globalObject, constructorArgs, privateData) => { - const wrapper = makeWrapper(globalObject); - return exports.setup(wrapper, globalObject, constructorArgs, privateData); - }; - - exports.createImpl = (globalObject, constructorArgs, privateData) => { - const wrapper = exports.create(globalObject, constructorArgs, privateData); - return utils.implForWrapper(wrapper); - }; - - exports._internalSetup = (wrapper, globalObject) => {}; - - exports.setup = (wrapper, globalObject, constructorArgs = [], privateData = {}) => { - privateData.wrapper = wrapper; - - exports._internalSetup(wrapper, globalObject); - Object.defineProperty(wrapper, implSymbol, { - value: new Impl.implementation(globalObject, constructorArgs, privateData), - configurable: true - }); - - wrapper[implSymbol][utils.wrapperSymbol] = wrapper; - if (Impl.init) { - Impl.init(wrapper[implSymbol]); - } - return wrapper; - }; - - exports.new = (globalObject, newTarget) => { - const wrapper = makeWrapper(globalObject, newTarget); - - exports._internalSetup(wrapper, globalObject); - Object.defineProperty(wrapper, implSymbol, { - value: Object.create(Impl.implementation.prototype), - configurable: true - }); - - wrapper[implSymbol][utils.wrapperSymbol] = wrapper; - if (Impl.init) { - Impl.init(wrapper[implSymbol]); - } - return wrapper[implSymbol]; - }; - - const exposed = new Set(["Window", "Worker"]); - - exports.install = (globalObject, globalNames) => { - if (!globalNames.some(globalName => exposed.has(globalName))) { - return; - } - - const ctorRegistry = utils.initCtorRegistry(globalObject); - class URL { - constructor(url) { - if (arguments.length < 1) { - throw new globalObject.TypeError( - `Failed to construct 'URL': 1 argument required, but only ${arguments.length} present.` - ); - } - const args = []; - { - let curArg = arguments[0]; - curArg = conversions["USVString"](curArg, { - context: "Failed to construct 'URL': parameter 1", - globals: globalObject - }); - args.push(curArg); - } - { - let curArg = arguments[1]; - if (curArg !== undefined) { - curArg = conversions["USVString"](curArg, { - context: "Failed to construct 'URL': parameter 2", - globals: globalObject - }); - } - args.push(curArg); - } - return exports.setup(Object.create(new.target.prototype), globalObject, args); - } - - toJSON() { - const esValue = this !== null && this !== undefined ? this : globalObject; - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'toJSON' called on an object that is not a valid instance of URL."); - } - - return esValue[implSymbol].toJSON(); - } - - get href() { - const esValue = this !== null && this !== undefined ? this : globalObject; - - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'get href' called on an object that is not a valid instance of URL."); - } - - return esValue[implSymbol]["href"]; - } - - set href(V) { - const esValue = this !== null && this !== undefined ? this : globalObject; - - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'set href' called on an object that is not a valid instance of URL."); - } - - V = conversions["USVString"](V, { - context: "Failed to set the 'href' property on 'URL': The provided value", - globals: globalObject - }); - - esValue[implSymbol]["href"] = V; - } - - toString() { - const esValue = this; - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'toString' called on an object that is not a valid instance of URL."); - } - - return esValue[implSymbol]["href"]; - } - - get origin() { - const esValue = this !== null && this !== undefined ? this : globalObject; - - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'get origin' called on an object that is not a valid instance of URL."); - } - - return esValue[implSymbol]["origin"]; - } - - get protocol() { - const esValue = this !== null && this !== undefined ? this : globalObject; - - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'get protocol' called on an object that is not a valid instance of URL."); - } - - return esValue[implSymbol]["protocol"]; - } - - set protocol(V) { - const esValue = this !== null && this !== undefined ? this : globalObject; - - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'set protocol' called on an object that is not a valid instance of URL."); - } - - V = conversions["USVString"](V, { - context: "Failed to set the 'protocol' property on 'URL': The provided value", - globals: globalObject - }); - - esValue[implSymbol]["protocol"] = V; - } - - get username() { - const esValue = this !== null && this !== undefined ? this : globalObject; - - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'get username' called on an object that is not a valid instance of URL."); - } - - return esValue[implSymbol]["username"]; - } - - set username(V) { - const esValue = this !== null && this !== undefined ? this : globalObject; - - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'set username' called on an object that is not a valid instance of URL."); - } - - V = conversions["USVString"](V, { - context: "Failed to set the 'username' property on 'URL': The provided value", - globals: globalObject - }); - - esValue[implSymbol]["username"] = V; - } - - get password() { - const esValue = this !== null && this !== undefined ? this : globalObject; - - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'get password' called on an object that is not a valid instance of URL."); - } - - return esValue[implSymbol]["password"]; - } - - set password(V) { - const esValue = this !== null && this !== undefined ? this : globalObject; - - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'set password' called on an object that is not a valid instance of URL."); - } - - V = conversions["USVString"](V, { - context: "Failed to set the 'password' property on 'URL': The provided value", - globals: globalObject - }); - - esValue[implSymbol]["password"] = V; - } - - get host() { - const esValue = this !== null && this !== undefined ? this : globalObject; - - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'get host' called on an object that is not a valid instance of URL."); - } - - return esValue[implSymbol]["host"]; - } - - set host(V) { - const esValue = this !== null && this !== undefined ? this : globalObject; - - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'set host' called on an object that is not a valid instance of URL."); - } - - V = conversions["USVString"](V, { - context: "Failed to set the 'host' property on 'URL': The provided value", - globals: globalObject - }); - - esValue[implSymbol]["host"] = V; - } - - get hostname() { - const esValue = this !== null && this !== undefined ? this : globalObject; - - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'get hostname' called on an object that is not a valid instance of URL."); - } - - return esValue[implSymbol]["hostname"]; - } - - set hostname(V) { - const esValue = this !== null && this !== undefined ? this : globalObject; - - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'set hostname' called on an object that is not a valid instance of URL."); - } - - V = conversions["USVString"](V, { - context: "Failed to set the 'hostname' property on 'URL': The provided value", - globals: globalObject - }); - - esValue[implSymbol]["hostname"] = V; - } - - get port() { - const esValue = this !== null && this !== undefined ? this : globalObject; - - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'get port' called on an object that is not a valid instance of URL."); - } - - return esValue[implSymbol]["port"]; - } - - set port(V) { - const esValue = this !== null && this !== undefined ? this : globalObject; - - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'set port' called on an object that is not a valid instance of URL."); - } - - V = conversions["USVString"](V, { - context: "Failed to set the 'port' property on 'URL': The provided value", - globals: globalObject - }); - - esValue[implSymbol]["port"] = V; - } - - get pathname() { - const esValue = this !== null && this !== undefined ? this : globalObject; - - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'get pathname' called on an object that is not a valid instance of URL."); - } - - return esValue[implSymbol]["pathname"]; - } - - set pathname(V) { - const esValue = this !== null && this !== undefined ? this : globalObject; - - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'set pathname' called on an object that is not a valid instance of URL."); - } - - V = conversions["USVString"](V, { - context: "Failed to set the 'pathname' property on 'URL': The provided value", - globals: globalObject - }); - - esValue[implSymbol]["pathname"] = V; - } - - get search() { - const esValue = this !== null && this !== undefined ? this : globalObject; - - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'get search' called on an object that is not a valid instance of URL."); - } - - return esValue[implSymbol]["search"]; - } - - set search(V) { - const esValue = this !== null && this !== undefined ? this : globalObject; - - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'set search' called on an object that is not a valid instance of URL."); - } - - V = conversions["USVString"](V, { - context: "Failed to set the 'search' property on 'URL': The provided value", - globals: globalObject - }); - - esValue[implSymbol]["search"] = V; - } - - get searchParams() { - const esValue = this !== null && this !== undefined ? this : globalObject; - - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'get searchParams' called on an object that is not a valid instance of URL."); - } - - return utils.getSameObject(this, "searchParams", () => { - return utils.tryWrapperForImpl(esValue[implSymbol]["searchParams"]); - }); - } - - get hash() { - const esValue = this !== null && this !== undefined ? this : globalObject; - - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'get hash' called on an object that is not a valid instance of URL."); - } - - return esValue[implSymbol]["hash"]; - } - - set hash(V) { - const esValue = this !== null && this !== undefined ? this : globalObject; - - if (!exports.is(esValue)) { - throw new globalObject.TypeError("'set hash' called on an object that is not a valid instance of URL."); - } - - V = conversions["USVString"](V, { - context: "Failed to set the 'hash' property on 'URL': The provided value", - globals: globalObject - }); - - esValue[implSymbol]["hash"] = V; - } - } - Object.defineProperties(URL.prototype, { - toJSON: { enumerable: true }, - href: { enumerable: true }, - toString: { enumerable: true }, - origin: { enumerable: true }, - protocol: { enumerable: true }, - username: { enumerable: true }, - password: { enumerable: true }, - host: { enumerable: true }, - hostname: { enumerable: true }, - port: { enumerable: true }, - pathname: { enumerable: true }, - search: { enumerable: true }, - searchParams: { enumerable: true }, - hash: { enumerable: true }, - [Symbol.toStringTag]: { value: "URL", configurable: true } - }); - ctorRegistry[interfaceName] = URL; - - Object.defineProperty(globalObject, interfaceName, { - configurable: true, - writable: true, - value: URL - }); - - if (globalNames.includes("Window")) { - Object.defineProperty(globalObject, "webkitURL", { - configurable: true, - writable: true, - value: URL - }); - } - }; - - const Impl = URLImpl; - }(URL$3)); - - const URL$2 = URL$3; - const URLSearchParams$1 = URLSearchParams$3; - - webidl2jsWrapper.URL = URL$2; - webidl2jsWrapper.URLSearchParams = URLSearchParams$1; - - const { URL: URL$1, URLSearchParams } = webidl2jsWrapper; - const urlStateMachine = urlStateMachine$1.exports; - const percentEncoding = percentEncoding$1; - - const sharedGlobalObject = { Array, Object, Promise, String, TypeError }; - URL$1.install(sharedGlobalObject, ["Window"]); - URLSearchParams.install(sharedGlobalObject, ["Window"]); - - whatwgUrl.URL = sharedGlobalObject.URL; - whatwgUrl.URLSearchParams = sharedGlobalObject.URLSearchParams; - - whatwgUrl.parseURL = urlStateMachine.parseURL; - whatwgUrl.basicURLParse = urlStateMachine.basicURLParse; - whatwgUrl.serializeURL = urlStateMachine.serializeURL; - whatwgUrl.serializePath = urlStateMachine.serializePath; - whatwgUrl.serializeHost = urlStateMachine.serializeHost; - whatwgUrl.serializeInteger = urlStateMachine.serializeInteger; - whatwgUrl.serializeURLOrigin = urlStateMachine.serializeURLOrigin; - whatwgUrl.setTheUsername = urlStateMachine.setTheUsername; - whatwgUrl.setThePassword = urlStateMachine.setThePassword; - whatwgUrl.cannotHaveAUsernamePasswordPort = urlStateMachine.cannotHaveAUsernamePasswordPort; - whatwgUrl.hasAnOpaquePath = urlStateMachine.hasAnOpaquePath; - - whatwgUrl.percentDecodeString = percentEncoding.percentDecodeString; - whatwgUrl.percentDecodeBytes = percentEncoding.percentDecodeBytes; - - var __createBinding = (commonjsGlobal && commonjsGlobal.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); - }) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; - })); - var __setModuleDefault = (commonjsGlobal && commonjsGlobal.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); - }) : function(o, v) { - o["default"] = v; - }); - var __importStar = (commonjsGlobal && commonjsGlobal.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; - }; - Object.defineProperty(url_polyfill, "__esModule", { value: true }); - - const url = __importStar(whatwgUrl); - var _default = url_polyfill.default = url; - - return _default; - -})(); diff --git a/router-bridge/js-dist/do_introspect.d.ts b/router-bridge/js-dist/do_introspect.d.ts deleted file mode 100644 index c054a3266..000000000 --- a/router-bridge/js-dist/do_introspect.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -export {}; -//# sourceMappingURL=do_introspect.d.ts.map \ No newline at end of file diff --git a/router-bridge/js-dist/do_introspect.d.ts.map b/router-bridge/js-dist/do_introspect.d.ts.map deleted file mode 100644 index f92e40c99..000000000 --- a/router-bridge/js-dist/do_introspect.d.ts.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"do_introspect.d.ts","sourceRoot":"","sources":["../js-src/do_introspect.ts"],"names":[],"mappings":""} \ No newline at end of file diff --git a/router-bridge/js-dist/do_introspect.js b/router-bridge/js-dist/do_introspect.js deleted file mode 100644 index 5d3379075..000000000 --- a/router-bridge/js-dist/do_introspect.js +++ /dev/null @@ -1,16 +0,0 @@ -Object.defineProperty(exports, "__esModule", { value: true }); -if (!sdl) { - done({ - Err: [{ message: 'Error in JS-Rust-land: SDL is empty.' }], - }); -} -try { - const introspected = bridge.batchIntrospect(sdl, queries); - done({ Ok: introspected }); -} -catch (err) { - done({ - Err: err, - }); -} -//# sourceMappingURL=do_introspect.js.map \ No newline at end of file diff --git a/router-bridge/js-dist/do_introspect.js.map b/router-bridge/js-dist/do_introspect.js.map deleted file mode 100644 index 40a6c5a17..000000000 --- a/router-bridge/js-dist/do_introspect.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"do_introspect.js","sourceRoot":"","sources":["../js-src/do_introspect.ts"],"names":[],"mappings":";AAcA,IAAI,CAAC,GAAG,EAAE;IACR,IAAI,CAAC;QACH,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,sCAAsC,EAAE,CAAC;KAC3D,CAAC,CAAC;CACJ;AAED,IAAI;IACF,MAAM,YAAY,GAAG,MAAM,CAAC,eAAe,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;IAC1D,IAAI,CAAC,EAAE,EAAE,EAAE,YAAY,EAAE,CAAC,CAAC;CAC5B;AAAC,OAAO,GAAG,EAAE;IACZ,IAAI,CAAC;QACH,GAAG,EAAE,GAAG;KACT,CAAC,CAAC;CACJ"} \ No newline at end of file diff --git a/router-bridge/js-dist/do_plan.d.ts b/router-bridge/js-dist/do_plan.d.ts deleted file mode 100644 index 1e9292caa..000000000 --- a/router-bridge/js-dist/do_plan.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -export {}; -//# sourceMappingURL=do_plan.d.ts.map \ No newline at end of file diff --git a/router-bridge/js-dist/do_plan.d.ts.map b/router-bridge/js-dist/do_plan.d.ts.map deleted file mode 100644 index 0ad3d1248..000000000 --- a/router-bridge/js-dist/do_plan.d.ts.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"do_plan.d.ts","sourceRoot":"","sources":["../js-src/do_plan.ts"],"names":[],"mappings":""} \ No newline at end of file diff --git a/router-bridge/js-dist/do_plan.js b/router-bridge/js-dist/do_plan.js deleted file mode 100644 index cb6999fc5..000000000 --- a/router-bridge/js-dist/do_plan.js +++ /dev/null @@ -1,10 +0,0 @@ -var _a; -Object.defineProperty(exports, "__esModule", { value: true }); -const planResult = bridge.plan(schemaString, queryString, operationName); -if (((_a = planResult.errors) === null || _a === void 0 ? void 0 : _a.length) > 0) { - done({ Err: planResult.errors }); -} -else { - done({ Ok: planResult.data }); -} -//# sourceMappingURL=do_plan.js.map \ No newline at end of file diff --git a/router-bridge/js-dist/do_plan.js.map b/router-bridge/js-dist/do_plan.js.map deleted file mode 100644 index b46330005..000000000 --- a/router-bridge/js-dist/do_plan.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"do_plan.js","sourceRoot":"","sources":["../js-src/do_plan.ts"],"names":[],"mappings":";;AAeA,MAAM,UAAU,GAAG,MAAM,CAAC,IAAI,CAC5B,YAAY,EACZ,WAAW,EACX,aAAa,CACd,CAAC;AAEF,IAAI,CAAA,MAAA,UAAU,CAAC,MAAM,0CAAE,MAAM,IAAG,CAAC,EAAE;IACjC,IAAI,CAAC,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC;CAClC;KAAM;IACL,IAAI,CAAC,EAAE,EAAE,EAAE,UAAU,CAAC,IAAI,EAAE,CAAC,CAAC;CAC/B"} \ No newline at end of file diff --git a/router-bridge/js-dist/index.d.ts b/router-bridge/js-dist/index.d.ts deleted file mode 100644 index 48f4f4f9e..000000000 --- a/router-bridge/js-dist/index.d.ts +++ /dev/null @@ -1,3 +0,0 @@ -export { introspect, batchIntrospect } from './introspection'; -export { plan } from './plan'; -//# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/router-bridge/js-dist/index.d.ts.map b/router-bridge/js-dist/index.d.ts.map deleted file mode 100644 index 9ef16806b..000000000 --- a/router-bridge/js-dist/index.d.ts.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../js-src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAC9D,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC"} \ No newline at end of file diff --git a/router-bridge/js-dist/index.js b/router-bridge/js-dist/index.js deleted file mode 100644 index 037eb2e28..000000000 --- a/router-bridge/js-dist/index.js +++ /dev/null @@ -1,8 +0,0 @@ -Object.defineProperty(exports, "__esModule", { value: true }); -exports.plan = exports.batchIntrospect = exports.introspect = void 0; -var introspection_1 = require("./introspection"); -Object.defineProperty(exports, "introspect", { enumerable: true, get: function () { return introspection_1.introspect; } }); -Object.defineProperty(exports, "batchIntrospect", { enumerable: true, get: function () { return introspection_1.batchIntrospect; } }); -var plan_1 = require("./plan"); -Object.defineProperty(exports, "plan", { enumerable: true, get: function () { return plan_1.plan; } }); -//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/router-bridge/js-dist/index.js.map b/router-bridge/js-dist/index.js.map deleted file mode 100644 index cc411d45f..000000000 --- a/router-bridge/js-dist/index.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"index.js","sourceRoot":"","sources":["../js-src/index.ts"],"names":[],"mappings":";;AAAA,iDAA8D;AAArD,2GAAA,UAAU,OAAA;AAAE,gHAAA,eAAe,OAAA;AACpC,+BAA8B;AAArB,4FAAA,IAAI,OAAA"} \ No newline at end of file diff --git a/router-bridge/js-dist/introspection.d.ts b/router-bridge/js-dist/introspection.d.ts deleted file mode 100644 index a3db84be2..000000000 --- a/router-bridge/js-dist/introspection.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { ExecutionResult } from 'graphql'; -export declare function batchIntrospect(sdl: string, queries: string[]): ExecutionResult[]; -export declare function introspect(sdl: string, query: string): ExecutionResult; -//# sourceMappingURL=introspection.d.ts.map \ No newline at end of file diff --git a/router-bridge/js-dist/introspection.d.ts.map b/router-bridge/js-dist/introspection.d.ts.map deleted file mode 100644 index e06180cc6..000000000 --- a/router-bridge/js-dist/introspection.d.ts.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"introspection.d.ts","sourceRoot":"","sources":["../js-src/introspection.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,eAAe,EAIhB,MAAM,SAAS,CAAC;AAEjB,wBAAgB,eAAe,CAC7B,GAAG,EAAE,MAAM,EACX,OAAO,EAAE,MAAM,EAAE,GAChB,eAAe,EAAE,CAenB;AAED,wBAAgB,UAAU,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,eAAe,CAetE"} \ No newline at end of file diff --git a/router-bridge/js-dist/introspection.js b/router-bridge/js-dist/introspection.js deleted file mode 100644 index 999ab1df7..000000000 --- a/router-bridge/js-dist/introspection.js +++ /dev/null @@ -1,49 +0,0 @@ -Object.defineProperty(exports, "__esModule", { value: true }); -exports.introspect = exports.batchIntrospect = void 0; -const graphql_1 = require("graphql"); -function batchIntrospect(sdl, queries) { - let schema; - try { - schema = (0, graphql_1.buildSchema)(sdl); - } - catch (e) { - return Array(queries.length).fill({ - errors: [e], - }); - } - if (!schema) { - return Array(queries.length).fill({ - errors: [new Error(`couldn't build schema from SDL`)], - }); - } - return queries.map((query) => introspectOne(schema, query)); -} -exports.batchIntrospect = batchIntrospect; -function introspect(sdl, query) { - let schema; - try { - schema = (0, graphql_1.buildSchema)(sdl); - } - catch (e) { - return { - errors: [e], - }; - } - if (!schema) { - return { - errors: [new graphql_1.GraphQLError("couldn't build schema from SDL")], - }; - } - return introspectOne(schema, query); -} -exports.introspect = introspect; -const introspectOne = (schema, query) => { - const { data, errors } = (0, graphql_1.graphqlSync)({ schema, source: query }); - if (errors) { - return { data, errors: [...errors] }; - } - else { - return { data, errors: [] }; - } -}; -//# sourceMappingURL=introspection.js.map \ No newline at end of file diff --git a/router-bridge/js-dist/introspection.js.map b/router-bridge/js-dist/introspection.js.map deleted file mode 100644 index aa8083a37..000000000 --- a/router-bridge/js-dist/introspection.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"introspection.js","sourceRoot":"","sources":["../js-src/introspection.ts"],"names":[],"mappings":";;AAAA,qCAMiB;AAEjB,SAAgB,eAAe,CAC7B,GAAW,EACX,OAAiB;IAEjB,IAAI,MAAqB,CAAC;IAC1B,IAAI;QACF,MAAM,GAAG,IAAA,qBAAW,EAAC,GAAG,CAAC,CAAC;KAC3B;IAAC,OAAO,CAAC,EAAE;QACV,OAAO,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC;YAChC,MAAM,EAAE,CAAC,CAAC,CAAC;SACZ,CAAC,CAAC;KACJ;IACD,IAAI,CAAC,MAAM,EAAE;QACX,OAAO,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC;YAChC,MAAM,EAAE,CAAC,IAAI,KAAK,CAAC,gCAAgC,CAAC,CAAC;SACtD,CAAC,CAAC;KACJ;IACD,OAAO,OAAO,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,aAAa,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC,CAAC;AAC9D,CAAC;AAlBD,0CAkBC;AAED,SAAgB,UAAU,CAAC,GAAW,EAAE,KAAa;IACnD,IAAI,MAAqB,CAAC;IAC1B,IAAI;QACF,MAAM,GAAG,IAAA,qBAAW,EAAC,GAAG,CAAC,CAAC;KAC3B;IAAC,OAAO,CAAC,EAAE;QACV,OAAO;YACL,MAAM,EAAE,CAAC,CAAC,CAAC;SACZ,CAAC;KACH;IACD,IAAI,CAAC,MAAM,EAAE;QACX,OAAO;YACL,MAAM,EAAE,CAAC,IAAI,sBAAY,CAAC,gCAAgC,CAAC,CAAC;SAC7D,CAAC;KACH;IACD,OAAO,aAAa,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;AACtC,CAAC;AAfD,gCAeC;AAED,MAAM,aAAa,GAAG,CACpB,MAAqB,EACrB,KAAa,EACI,EAAE;IACnB,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,IAAA,qBAAW,EAAC,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,CAAC,CAAC;IAEhE,IAAI,MAAM,EAAE;QACV,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC,GAAG,MAAM,CAAC,EAAE,CAAC;KACtC;SAAM;QACL,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC;KAC7B;AACH,CAAC,CAAC"} \ No newline at end of file diff --git a/router-bridge/js-dist/plan.d.ts b/router-bridge/js-dist/plan.d.ts deleted file mode 100644 index a5a32382e..000000000 --- a/router-bridge/js-dist/plan.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { ExecutionResult } from 'graphql'; -import { QueryPlan } from '@apollo/query-planner'; -export declare function plan(schemaString: string, operationString: string, operationName?: string): ExecutionResult; -//# sourceMappingURL=plan.d.ts.map \ No newline at end of file diff --git a/router-bridge/js-dist/plan.d.ts.map b/router-bridge/js-dist/plan.d.ts.map deleted file mode 100644 index a1bf58101..000000000 --- a/router-bridge/js-dist/plan.d.ts.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"plan.d.ts","sourceRoot":"","sources":["../js-src/plan.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAS,MAAM,SAAS,CAAC;AACjD,OAAO,EAAgB,SAAS,EAAE,MAAM,uBAAuB,CAAC;AAIhE,wBAAgB,IAAI,CAClB,YAAY,EAAE,MAAM,EACpB,eAAe,EAAE,MAAM,EACvB,aAAa,CAAC,EAAE,MAAM,GACrB,eAAe,CAAC,SAAS,CAAC,CAY5B"} \ No newline at end of file diff --git a/router-bridge/js-dist/plan.js b/router-bridge/js-dist/plan.js deleted file mode 100644 index 7572ba427..000000000 --- a/router-bridge/js-dist/plan.js +++ /dev/null @@ -1,19 +0,0 @@ -Object.defineProperty(exports, "__esModule", { value: true }); -exports.plan = void 0; -const graphql_1 = require("graphql"); -const query_planner_1 = require("@apollo/query-planner"); -const federation_internals_1 = require("@apollo/federation-internals"); -function plan(schemaString, operationString, operationName) { - try { - const composedSchema = (0, federation_internals_1.buildSchema)(schemaString); - const operationDocument = (0, graphql_1.parse)(operationString); - const operation = (0, federation_internals_1.operationFromDocument)(composedSchema, operationDocument, operationName); - const planner = new query_planner_1.QueryPlanner(composedSchema); - return { data: planner.buildQueryPlan(operation) }; - } - catch (e) { - return { errors: [e] }; - } -} -exports.plan = plan; -//# sourceMappingURL=plan.js.map \ No newline at end of file diff --git a/router-bridge/js-dist/plan.js.map b/router-bridge/js-dist/plan.js.map deleted file mode 100644 index 1dc26f368..000000000 --- a/router-bridge/js-dist/plan.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"plan.js","sourceRoot":"","sources":["../js-src/plan.ts"],"names":[],"mappings":";;AAAA,qCAAiD;AACjD,yDAAgE;AAEhE,uEAAkF;AAElF,SAAgB,IAAI,CAClB,YAAoB,EACpB,eAAuB,EACvB,aAAsB;IAEtB,IAAI;QACF,MAAM,cAAc,GAAG,IAAA,kCAAW,EAAC,YAAY,CAAC,CAAC;QACjD,MAAM,iBAAiB,GAAG,IAAA,eAAK,EAAC,eAAe,CAAC,CAAC;QACjD,MAAM,SAAS,GACb,IAAA,4CAAqB,EAAC,cAAc,EAAE,iBAAiB,EAAE,aAAa,CAAC,CAAC;QAE1E,MAAM,OAAO,GAAG,IAAI,4BAAY,CAAC,cAAc,CAAC,CAAC;QACjD,OAAO,EAAE,IAAI,EAAE,OAAO,CAAC,cAAc,CAAC,SAAS,CAAC,EAAE,CAAC;KACpD;IAAC,OAAO,CAAC,EAAE;QACV,OAAO,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;KACxB;AACH,CAAC;AAhBD,oBAgBC"} \ No newline at end of file diff --git a/router-bridge/js-dist/runtime.d.ts b/router-bridge/js-dist/runtime.d.ts deleted file mode 100644 index 6485b528c..000000000 --- a/router-bridge/js-dist/runtime.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare function print(value: any): void; -declare function done(result: any): void; -declare const _newline: Uint8Array; -//# sourceMappingURL=runtime.d.ts.map \ No newline at end of file diff --git a/router-bridge/js-dist/runtime.d.ts.map b/router-bridge/js-dist/runtime.d.ts.map deleted file mode 100644 index cce0021b8..000000000 --- a/router-bridge/js-dist/runtime.d.ts.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"runtime.d.ts","sourceRoot":"","sources":["../js-src/runtime.js"],"names":[],"mappings":"AAQA,yCAEC;AAED,yCAEC;AARD,mCAAsC"} \ No newline at end of file diff --git a/router-bridge/js-dist/runtime.js b/router-bridge/js-dist/runtime.js deleted file mode 100644 index 2d864be34..000000000 --- a/router-bridge/js-dist/runtime.js +++ /dev/null @@ -1,13 +0,0 @@ -Deno.core.ops(); -const _newline = new Uint8Array([10]); -function print(value) { - Deno.core.dispatchByName('op_print', 0, value.toString(), _newline); -} -function done(result) { - Deno.core.opSync('op_result', result); -} -node_fetch_1 = {}; -process = { argv: [], env: { NODE_ENV: 'production' } }; -global = {}; -exports = {}; -//# sourceMappingURL=runtime.js.map \ No newline at end of file diff --git a/router-bridge/js-dist/runtime.js.map b/router-bridge/js-dist/runtime.js.map deleted file mode 100644 index 03eaae5ba..000000000 --- a/router-bridge/js-dist/runtime.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"runtime.js","sourceRoot":"","sources":["../js-src/runtime.js"],"names":[],"mappings":"AAEA,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC;AAIhB,MAAM,QAAQ,GAAG,IAAI,UAAU,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;AAEtC,SAAS,KAAK,CAAC,KAAK;IAClB,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,UAAU,EAAE,CAAC,EAAE,KAAK,CAAC,QAAQ,EAAE,EAAE,QAAQ,CAAC,CAAC;AACtE,CAAC;AAED,SAAS,IAAI,CAAC,MAAM;IAClB,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,WAAW,EAAE,MAAM,CAAC,CAAC;AACxC,CAAC;AAOD,YAAY,GAAG,EAAE,CAAC;AAKlB,OAAO,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,QAAQ,EAAE,YAAY,EAAE,EAAE,CAAC;AAGxD,MAAM,GAAG,EAAE,CAAC;AACZ,OAAO,GAAG,EAAE,CAAC"} \ No newline at end of file diff --git a/router-bridge/js-dist/types.d.ts b/router-bridge/js-dist/types.d.ts deleted file mode 100644 index d26f7e9e0..000000000 --- a/router-bridge/js-dist/types.d.ts +++ /dev/null @@ -1,8 +0,0 @@ -export declare type OperationResult = { - Ok: any; - Err?: undefined; -} | { - Ok?: undefined; - Err: any; -}; -//# sourceMappingURL=types.d.ts.map \ No newline at end of file diff --git a/router-bridge/js-dist/types.d.ts.map b/router-bridge/js-dist/types.d.ts.map deleted file mode 100644 index c870128ec..000000000 --- a/router-bridge/js-dist/types.d.ts.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../js-src/types.ts"],"names":[],"mappings":"AAAA,oBAAY,eAAe,GACvB;IAAE,EAAE,EAAE,GAAG,CAAC;IAAC,GAAG,CAAC,EAAE,SAAS,CAAA;CAAE,GAC5B;IAAE,EAAE,CAAC,EAAE,SAAS,CAAC;IAAC,GAAG,EAAE,GAAG,CAAA;CAAE,CAAC"} \ No newline at end of file diff --git a/router-bridge/js-dist/types.js b/router-bridge/js-dist/types.js deleted file mode 100644 index 5fb90150c..000000000 --- a/router-bridge/js-dist/types.js +++ /dev/null @@ -1,2 +0,0 @@ -Object.defineProperty(exports, "__esModule", { value: true }); -//# sourceMappingURL=types.js.map \ No newline at end of file diff --git a/router-bridge/js-dist/types.js.map b/router-bridge/js-dist/types.js.map deleted file mode 100644 index 7f5430249..000000000 --- a/router-bridge/js-dist/types.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"types.js","sourceRoot":"","sources":["../js-src/types.ts"],"names":[],"mappings":""} \ No newline at end of file diff --git a/router-bridge/js-dist/url_polyfill.d.ts b/router-bridge/js-dist/url_polyfill.d.ts deleted file mode 100644 index e6f8ad4ca..000000000 --- a/router-bridge/js-dist/url_polyfill.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -import 'fast-text-encoding'; -import * as url from 'whatwg-url'; -export default url; -//# sourceMappingURL=url_polyfill.d.ts.map \ No newline at end of file diff --git a/router-bridge/js-dist/url_polyfill.d.ts.map b/router-bridge/js-dist/url_polyfill.d.ts.map deleted file mode 100644 index 10edc4df2..000000000 --- a/router-bridge/js-dist/url_polyfill.d.ts.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"url_polyfill.d.ts","sourceRoot":"","sources":["../js-src/url_polyfill.ts"],"names":[],"mappings":"AAAA,OAAO,oBAAoB,CAAC;AAC5B,OAAO,KAAK,GAAG,MAAM,YAAY,CAAC;AAClC,eAAe,GAAG,CAAC"} \ No newline at end of file diff --git a/router-bridge/js-dist/url_polyfill.js b/router-bridge/js-dist/url_polyfill.js deleted file mode 100644 index 04b0adbe3..000000000 --- a/router-bridge/js-dist/url_polyfill.js +++ /dev/null @@ -1,24 +0,0 @@ -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -require("fast-text-encoding"); -const url = __importStar(require("whatwg-url")); -exports.default = url; -//# sourceMappingURL=url_polyfill.js.map \ No newline at end of file diff --git a/router-bridge/js-dist/url_polyfill.js.map b/router-bridge/js-dist/url_polyfill.js.map deleted file mode 100644 index a63ff618e..000000000 --- a/router-bridge/js-dist/url_polyfill.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"url_polyfill.js","sourceRoot":"","sources":["../js-src/url_polyfill.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA,8BAA4B;AAC5B,gDAAkC;AAClC,kBAAe,GAAG,CAAC"} \ No newline at end of file From 9c350b3bdf0974c26c1ec16616314f34567f79fc Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Thu, 24 Mar 2022 20:12:14 -0400 Subject: [PATCH 07/33] link @apollo/core-schema to upcoming branch --- gateway-js/package.json | 1 - internals-js/package.json | 2 +- package-lock.json | 105 +++++++++++++++--- subgraph-js/package.json | 2 +- .../src/__tests__/buildSubgraphSchema.test.ts | 2 +- subgraph-js/src/buildSubgraphSchema.ts | 4 +- 6 files changed, 96 insertions(+), 20 deletions(-) diff --git a/gateway-js/package.json b/gateway-js/package.json index 084208df8..2f0183622 100644 --- a/gateway-js/package.json +++ b/gateway-js/package.json @@ -26,7 +26,6 @@ }, "dependencies": { "@apollo/composition": "file:../composition-js", - "@apollo/core-schema": "^0.2.2", "@apollo/query-planner": "file:../query-planner-js", "@josephg/resolvable": "^1.0.1", "@opentelemetry/api": "^1.0.1", diff --git a/internals-js/package.json b/internals-js/package.json index 83a16e650..188b9c2c4 100644 --- a/internals-js/package.json +++ b/internals-js/package.json @@ -23,7 +23,7 @@ "node": ">=12.13.0 <17.0" }, "dependencies": { - "@apollo/core-schema": "^0.2.2", + "@apollo/core-schema": "https://github.com/apollographql/core-schema-js#link-import", "chalk": "^4.1.0", "js-levenshtein": "^1.1.6" }, diff --git a/package-lock.json b/package-lock.json index 3b7b6ac6d..c100a8ff1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -94,7 +94,6 @@ "license": "SEE LICENSE IN ./LICENSE", "dependencies": { "@apollo/composition": "file:../composition-js", - "@apollo/core-schema": "^0.2.2", "@apollo/query-planner": "file:../query-planner-js", "@josephg/resolvable": "^1.0.1", "@opentelemetry/api": "^1.0.1", @@ -155,7 +154,7 @@ "version": "2.0.0-preview.7", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { - "@apollo/core-schema": "^0.2.2", + "@apollo/core-schema": "https://github.com/apollographql/core-schema-js#link-import", "chalk": "^4.1.0", "js-levenshtein": "^1.1.6" }, @@ -208,14 +207,25 @@ "link": true }, "node_modules/@apollo/core-schema": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/@apollo/core-schema/-/core-schema-0.2.2.tgz", - "integrity": "sha512-ZsUn1HhnnWlLopVX/rv+0u7zGhUZzdMMnLeCBhb8tkFckkZ4QaQe4FaIQquDKegUwz6/DLE9O9AbldI/uklxpA==", + "version": "0.3.0", + "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#2cfd332381aaad0108faccb2324d3bf03d8397ba", + "license": "MIT", + "dependencies": { + "@protoplasm/recall": "^0.2" + }, "engines": { "node": ">=12.13.0 <17.0" }, "peerDependencies": { - "graphql": "^15.7.2 || ^16.0.0" + "graphql": "^15 || ^16" + } + }, + "node_modules/@apollo/core-schema/node_modules/@protoplasm/recall": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@protoplasm/recall/-/recall-0.2.1.tgz", + "integrity": "sha512-7OfrS55jRaF7uERewbjkO1kjDOaCZ+xTgI2NPko6ERFktqtGomUNab8GuQwzSyXcwyxwAuiuy1KpaNxfPujcqQ==", + "engines": { + "node": ">=12.13.0" } }, "node_modules/@apollo/federation-internals": { @@ -4048,6 +4058,15 @@ "version": "1.1.0", "license": "BSD-3-Clause" }, + "node_modules/@protoplasm/recall": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@protoplasm/recall/-/recall-0.1.0.tgz", + "integrity": "sha512-I4ZWfZRQH1oXhsA9Mgnjm/9OkOf7ILKqNUwbEcC4tdJxoGCWsorpRcv4GsqFQR0N1v983QBabuBRSsWHT2YT0A==", + "dev": true, + "engines": { + "node": ">=12.13.0" + } + }, "node_modules/@samverschueren/stream-to-observable": { "version": "0.3.1", "dev": true, @@ -19827,12 +19846,40 @@ "name": "@apollo/subgraph", "version": "2.0.0-preview.7", "license": "MIT", + "dependencies": { + "@apollo/core-schema": "https://github.com/apollographql/core-schema-js#link-import" + }, + "devDependencies": { + "@protoplasm/recall": "^0.1.0" + }, "engines": { "node": ">=12.13.0 <17.0" }, "peerDependencies": { "graphql": "^16.0.0" } + }, + "subgraph-js/node_modules/@apollo/core-schema": { + "version": "0.3.0", + "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#2cfd332381aaad0108faccb2324d3bf03d8397ba", + "license": "MIT", + "dependencies": { + "@protoplasm/recall": "^0.2" + }, + "engines": { + "node": ">=12.13.0 <17.0" + }, + "peerDependencies": { + "graphql": "^15 || ^16" + } + }, + "subgraph-js/node_modules/@apollo/core-schema/node_modules/@protoplasm/recall": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@protoplasm/recall/-/recall-0.2.1.tgz", + "integrity": "sha512-7OfrS55jRaF7uERewbjkO1kjDOaCZ+xTgI2NPko6ERFktqtGomUNab8GuQwzSyXcwyxwAuiuy1KpaNxfPujcqQ==", + "engines": { + "node": ">=12.13.0" + } } }, "dependencies": { @@ -19864,15 +19911,23 @@ } }, "@apollo/core-schema": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/@apollo/core-schema/-/core-schema-0.2.2.tgz", - "integrity": "sha512-ZsUn1HhnnWlLopVX/rv+0u7zGhUZzdMMnLeCBhb8tkFckkZ4QaQe4FaIQquDKegUwz6/DLE9O9AbldI/uklxpA==", - "requires": {} + "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#2cfd332381aaad0108faccb2324d3bf03d8397ba", + "from": "@apollo/core-schema@https://github.com/apollographql/core-schema-js#link-import", + "requires": { + "@protoplasm/recall": "^0.2" + }, + "dependencies": { + "@protoplasm/recall": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@protoplasm/recall/-/recall-0.2.1.tgz", + "integrity": "sha512-7OfrS55jRaF7uERewbjkO1kjDOaCZ+xTgI2NPko6ERFktqtGomUNab8GuQwzSyXcwyxwAuiuy1KpaNxfPujcqQ==" + } + } }, "@apollo/federation-internals": { "version": "file:internals-js", "requires": { - "@apollo/core-schema": "^0.2.2", + "@apollo/core-schema": "https://github.com/apollographql/core-schema-js#link-import", "chalk": "^4.1.0", "js-levenshtein": "^1.1.6" } @@ -19881,7 +19936,6 @@ "version": "file:gateway-js", "requires": { "@apollo/composition": "file:../composition-js", - "@apollo/core-schema": "^0.2.2", "@apollo/query-planner": "file:../query-planner-js", "@josephg/resolvable": "^1.0.1", "@opentelemetry/api": "^1.0.1", @@ -19969,7 +20023,26 @@ }, "@apollo/subgraph": { "version": "file:subgraph-js", - "requires": {} + "requires": { + "@apollo/core-schema": "https://github.com/apollographql/core-schema-js#link-import", + "@protoplasm/recall": "^0.1.0" + }, + "dependencies": { + "@apollo/core-schema": { + "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#2cfd332381aaad0108faccb2324d3bf03d8397ba", + "from": "@apollo/core-schema@https://github.com/apollographql/core-schema-js#link-import", + "requires": { + "@protoplasm/recall": "^0.2" + }, + "dependencies": { + "@protoplasm/recall": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@protoplasm/recall/-/recall-0.2.1.tgz", + "integrity": "sha512-7OfrS55jRaF7uERewbjkO1kjDOaCZ+xTgI2NPko6ERFktqtGomUNab8GuQwzSyXcwyxwAuiuy1KpaNxfPujcqQ==" + } + } + } + } }, "@apollographql/apollo-tools": { "version": "0.5.2" @@ -22647,6 +22720,12 @@ "@protobufjs/utf8": { "version": "1.1.0" }, + "@protoplasm/recall": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@protoplasm/recall/-/recall-0.1.0.tgz", + "integrity": "sha512-I4ZWfZRQH1oXhsA9Mgnjm/9OkOf7ILKqNUwbEcC4tdJxoGCWsorpRcv4GsqFQR0N1v983QBabuBRSsWHT2YT0A==", + "dev": true + }, "@samverschueren/stream-to-observable": { "version": "0.3.1", "dev": true, diff --git a/subgraph-js/package.json b/subgraph-js/package.json index d61ebb4ab..7dd2fb9fe 100644 --- a/subgraph-js/package.json +++ b/subgraph-js/package.json @@ -21,7 +21,7 @@ "node": ">=12.13.0 <17.0" }, "dependencies": { - "@apollo/core-schema": "^0.3" + "@apollo/core-schema": "https://github.com/apollographql/core-schema-js#link-import" }, "devDependencies": { "@protoplasm/recall": "^0.1.0" diff --git a/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts b/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts index 1e1b0a370..8a50c35df 100644 --- a/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts +++ b/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts @@ -688,7 +688,7 @@ union UserButAUnion @tag(name: "tagOnUnion") = User { name: 'fed2', header: - 'extend schema @link(url: "https://specs.apollo.dev/federation/v2.0")\n\n', + 'extend schema @link(url: "https://specs.apollo.dev/federation/v2.0", import: "@key")\n\n', }, ])('adds it for $name schema', async ({ header }) => { await validateTag(header); diff --git a/subgraph-js/src/buildSubgraphSchema.ts b/subgraph-js/src/buildSubgraphSchema.ts index 0c09659b5..7119dd1ff 100644 --- a/subgraph-js/src/buildSubgraphSchema.ts +++ b/subgraph-js/src/buildSubgraphSchema.ts @@ -5,8 +5,7 @@ import { isObjectType, isUnionType, GraphQLUnionType, - GraphQLObjectType, - specifiedDirectives, + GraphQLObjectType } from 'graphql'; import { GraphQLSchemaModule, @@ -67,7 +66,6 @@ export function buildSubgraphSchema( modules, new GraphQLSchema({ query: undefined, - directives: [...specifiedDirectives], }), ); From d9900fd668a2a83096e910f1f7cb05298becdd4e Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Thu, 24 Mar 2022 20:40:25 -0400 Subject: [PATCH 08/33] remove unneeded tests --- .../src/__tests__/buildSubgraphSchema.test.ts | 48 ------------------- 1 file changed, 48 deletions(-) diff --git a/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts b/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts index 8a50c35df..f76de512c 100644 --- a/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts +++ b/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts @@ -646,54 +646,6 @@ describe('buildSubgraphSchema', () => { `); }); }); - - describe('@tag directive', () => { - const query = `query GetServiceDetails { - _service { - sdl - } - }`; - - const validateTag = async (header: string) => { - const schema = buildSubgraphSchema(gql` - ${header} - type User @key(fields: "email") @tag(name: "tagOnType") { - email: String @tag(name: "tagOnField") - } - - interface Thing @tag(name: "tagOnInterface") { - name: String - } - - union UserButAUnion @tag(name: "tagOnUnion") = User - `); - - const { data, errors } = await graphql({ schema, source: query }); - expect(errors).toBeUndefined(); - expect((data?._service as any).sdl) - .toEqual(`${header}type User @key(fields: "email") @tag(name: "tagOnType") { - email: String @tag(name: "tagOnField") -} - -interface Thing @tag(name: "tagOnInterface") { - name: String -} - -union UserButAUnion @tag(name: "tagOnUnion") = User -`); - }; - - it.each([ - { name: 'fed1', header: '' }, - { - name: 'fed2', - header: - 'extend schema @link(url: "https://specs.apollo.dev/federation/v2.0", import: "@key")\n\n', - }, - ])('adds it for $name schema', async ({ header }) => { - await validateTag(header); - }); - }); }); describe('legacy interface', () => { From 75f6ac40b195e5a325359cae3be57929c1eb47b0 Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Mon, 28 Mar 2022 13:37:16 -0400 Subject: [PATCH 09/33] remove old import, update snapshots --- internals-js/package.json | 2 +- subgraph-js/package.json | 9 +++---- .../src/__tests__/buildSubgraphSchema.test.ts | 14 +++++------ .../src/__tests__/printSubgraphSchema.test.ts | 6 ++--- .../src/__tests__/subgraphCore.test.ts | 24 +++++++++---------- subgraph-js/src/federation-atlas.ts | 4 ++-- 6 files changed, 27 insertions(+), 32 deletions(-) diff --git a/internals-js/package.json b/internals-js/package.json index 188b9c2c4..b96cfd526 100644 --- a/internals-js/package.json +++ b/internals-js/package.json @@ -23,7 +23,7 @@ "node": ">=12.13.0 <17.0" }, "dependencies": { - "@apollo/core-schema": "https://github.com/apollographql/core-schema-js#link-import", + "@apollo/core-schema": "https://github.com/apollographql/core-schema-js", "chalk": "^4.1.0", "js-levenshtein": "^1.1.6" }, diff --git a/subgraph-js/package.json b/subgraph-js/package.json index 7dd2fb9fe..a84be5aac 100644 --- a/subgraph-js/package.json +++ b/subgraph-js/package.json @@ -18,14 +18,11 @@ "author": "Apollo ", "license": "MIT", "engines": { - "node": ">=12.13.0 <17.0" + "node": ">=12.13.0" }, "dependencies": { - "@apollo/core-schema": "https://github.com/apollographql/core-schema-js#link-import" - }, - "devDependencies": { - "@protoplasm/recall": "^0.1.0" - }, + "@apollo/core-schema": "https://github.com/apollographql/core-schema-js" + }, "publishConfig": { "access": "public" }, diff --git a/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts b/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts index f76de512c..6b8f6a707 100644 --- a/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts +++ b/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts @@ -118,7 +118,7 @@ describe('buildSubgraphSchema', () => { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA @@ -365,7 +365,7 @@ describe('buildSubgraphSchema', () => { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA @@ -422,7 +422,7 @@ describe('buildSubgraphSchema', () => { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA @@ -472,7 +472,7 @@ describe('buildSubgraphSchema', () => { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA @@ -512,7 +512,7 @@ describe('buildSubgraphSchema', () => { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA @@ -564,7 +564,7 @@ describe('buildSubgraphSchema', () => { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA @@ -620,7 +620,7 @@ describe('buildSubgraphSchema', () => { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") directive @custom on FIELD diff --git a/subgraph-js/src/__tests__/printSubgraphSchema.test.ts b/subgraph-js/src/__tests__/printSubgraphSchema.test.ts index fe49a1c4c..1940bb05a 100644 --- a/subgraph-js/src/__tests__/printSubgraphSchema.test.ts +++ b/subgraph-js/src/__tests__/printSubgraphSchema.test.ts @@ -13,7 +13,7 @@ describe('printSubgraphSchema', () => { mutation: Mutation } - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v2.0", import: "@key @requires @provides @external @shareable @tag @extends") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key", "@requires", "@provides", "@external", "@shareable", "@tag", "@extends"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") directive @stream on FIELD @@ -107,7 +107,7 @@ describe('printSubgraphSchema', () => { const subgraphSchema = buildSubgraphSchema(schema); expect(printSubgraphSchema(subgraphSchema)).toMatchInlineSnapshot(` - "extend schema @link(url: \\"https://specs.apollo.dev/link/v0.3\\") @link(url: \\"https://specs.apollo.dev/federation/v1.0\\", as: \\"\\", import: \\"@key @requires @provides @external\\") @link(url: \\"https://specs.apollo.dev/tag/v0.1\\") @link(url: \\"https://specs.apollo.dev/id/v1.0\\") + "extend schema @link(url: \\"https://specs.apollo.dev/link/v0.3\\") @link(url: \\"https://specs.apollo.dev/federation/v1.0\\", as: \\"\\", import: [\\"@key\\", \\"@requires\\", \\"@provides\\", \\"@external\\"]) @link(url: \\"https://specs.apollo.dev/tag/v0.1\\") @link(url: \\"https://specs.apollo.dev/id/v1.0\\") directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA @@ -129,7 +129,7 @@ describe('printSubgraphSchema', () => { it('prints reviews subgraph correctly', () => { const schema = buildSubgraphSchema(fixtures[5].typeDefs); expect(printSubgraphSchema(schema)).toMatchInlineSnapshot(` - "extend schema @link(url: \\"https://specs.apollo.dev/link/v0.3\\") @link(url: \\"https://specs.apollo.dev/federation/v2.0\\", import: \\"@key @requires @provides @external @shareable @tag @extends\\") @link(url: \\"https://specs.apollo.dev/tag/v0.1\\") @link(url: \\"https://specs.apollo.dev/id/v1.0\\") + "extend schema @link(url: \\"https://specs.apollo.dev/link/v0.3\\") @link(url: \\"https://specs.apollo.dev/federation/v2.0\\", import: [\\"@key\\", \\"@requires\\", \\"@provides\\", \\"@external\\", \\"@shareable\\", \\"@tag\\", \\"@extends\\"]) @link(url: \\"https://specs.apollo.dev/tag/v0.1\\") @link(url: \\"https://specs.apollo.dev/id/v1.0\\") directive @stream on FIELD diff --git a/subgraph-js/src/__tests__/subgraphCore.test.ts b/subgraph-js/src/__tests__/subgraphCore.test.ts index 8aa2a0804..ddd76740d 100644 --- a/subgraph-js/src/__tests__/subgraphCore.test.ts +++ b/subgraph-js/src/__tests__/subgraphCore.test.ts @@ -1,18 +1,17 @@ import { fixtures } from 'apollo-federation-integration-testsuite'; import { subgraphCore } from '../schema-helper/buildSchemaFromSDL'; import { print } from 'graphql'; -import recall from '@protoplasm/recall'; +import { getResult } from '@apollo/core-schema'; import { ATLAS } from '../federation-atlas'; import raw from '@apollo/core-schema/dist/snapshot-serializers/raw'; describe('subgraphCore', () => { it('compiles a subgraph into a core schema', () => { - const result = recall(() => + const result = getResult(() => subgraphCore([{ typeDefs: fixtures[0].typeDefs }]), - ).getResult(); - if (result.didThrow()) throw result.error; - expect([...result.errors()].length).toBe(0); - expect(print(result.data.document)).toMatchInlineSnapshot(` + ) + expect([...result.errors()]).toEqual([]); + expect(print(result.unwrap().document)).toMatchInlineSnapshot(` "extend schema @link(url: \\"https://specs.apollo.dev/link/v0.3\\") @link(url: \\"https://specs.apollo.dev/federation/v2.0\\", import: \\"@key @requires @provides @external @shareable @tag @extends\\") @link(url: \\"https://specs.apollo.dev/tag/v0.1\\") @link(url: \\"https://specs.apollo.dev/id/v1.0\\") directive @stream on FIELD @@ -134,7 +133,7 @@ describe('subgraphCore', () => { it('links against federation 1.0 by default', () => { const doc = fixtures[0].typeDefs; - const result = recall(() => + const result = getResult(() => subgraphCore([ { typeDefs: { @@ -143,11 +142,10 @@ describe('subgraphCore', () => { }, }, ]), - ).getResult(); - if (result.didThrow()) throw result.error; - expect([...result.errors()].length).toBe(0); - const schema = result.data; - expect([...schema]).toMatchInlineSnapshot(` + ); + + expect([...result.errors()]).toEqual([]); + expect([...result.unwrap()]).toMatchInlineSnapshot(` Array [ <>[+] extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0"), <#@stream>[GraphQL request] 👉directive @stream on FIELD, @@ -177,7 +175,7 @@ describe('subgraphCore', () => { ] `); - expect(raw(print(result.data.document))).toMatchInlineSnapshot(` + expect(raw(print(result.unwrap().document))).toMatchInlineSnapshot(` extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") directive @stream on FIELD diff --git a/subgraph-js/src/federation-atlas.ts b/subgraph-js/src/federation-atlas.ts index 694ff2a1e..73b0baddb 100644 --- a/subgraph-js/src/federation-atlas.ts +++ b/subgraph-js/src/federation-atlas.ts @@ -1,4 +1,4 @@ -import { Atlas, IAtlas, Schema, gql } from "@apollo/core-schema"; +import { Atlas, Schema, gql } from "@apollo/core-schema"; export const SUBGRAPH_BASE = Schema.basic( gql `${'builtin:subgraph-base'} @@ -7,7 +7,7 @@ export const SUBGRAPH_BASE = Schema.basic( @link(url: "https://specs.apollo.dev/tag/v0.1") `) -export const ATLAS: IAtlas = Atlas.fromSchemas( +export const ATLAS = Atlas.fromSchemas( Schema.basic(gql `${'builtin/tag/v0.1'} @id(url: "https://specs.apollo.dev/tag/v0.1") directive @tag(name: String!) From 40ff21891c987084167dbd4e2d4c69e328ba9bdc Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Mon, 28 Mar 2022 13:46:50 -0400 Subject: [PATCH 10/33] update package-lock, refs --- internals-js/package.json | 2 +- package-lock.json | 41 +++++++++++---------------------------- subgraph-js/package.json | 2 +- 3 files changed, 13 insertions(+), 32 deletions(-) diff --git a/internals-js/package.json b/internals-js/package.json index b96cfd526..30ecec9cd 100644 --- a/internals-js/package.json +++ b/internals-js/package.json @@ -23,7 +23,7 @@ "node": ">=12.13.0 <17.0" }, "dependencies": { - "@apollo/core-schema": "https://github.com/apollographql/core-schema-js", + "@apollo/core-schema": "apollographql/core-schema-js", "chalk": "^4.1.0", "js-levenshtein": "^1.1.6" }, diff --git a/package-lock.json b/package-lock.json index c100a8ff1..07b45f0ea 100644 --- a/package-lock.json +++ b/package-lock.json @@ -154,7 +154,7 @@ "version": "2.0.0-preview.7", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { - "@apollo/core-schema": "https://github.com/apollographql/core-schema-js#link-import", + "@apollo/core-schema": "apollographql/core-schema-js", "chalk": "^4.1.0", "js-levenshtein": "^1.1.6" }, @@ -208,7 +208,7 @@ }, "node_modules/@apollo/core-schema": { "version": "0.3.0", - "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#2cfd332381aaad0108faccb2324d3bf03d8397ba", + "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#c5d5a479d79bb3e5df51eed920c9f97a10ee6734", "license": "MIT", "dependencies": { "@protoplasm/recall": "^0.2" @@ -4058,15 +4058,6 @@ "version": "1.1.0", "license": "BSD-3-Clause" }, - "node_modules/@protoplasm/recall": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/@protoplasm/recall/-/recall-0.1.0.tgz", - "integrity": "sha512-I4ZWfZRQH1oXhsA9Mgnjm/9OkOf7ILKqNUwbEcC4tdJxoGCWsorpRcv4GsqFQR0N1v983QBabuBRSsWHT2YT0A==", - "dev": true, - "engines": { - "node": ">=12.13.0" - } - }, "node_modules/@samverschueren/stream-to-observable": { "version": "0.3.1", "dev": true, @@ -19847,13 +19838,10 @@ "version": "2.0.0-preview.7", "license": "MIT", "dependencies": { - "@apollo/core-schema": "https://github.com/apollographql/core-schema-js#link-import" - }, - "devDependencies": { - "@protoplasm/recall": "^0.1.0" + "@apollo/core-schema": "apollographql/core-schema-js" }, "engines": { - "node": ">=12.13.0 <17.0" + "node": ">=12.13.0" }, "peerDependencies": { "graphql": "^16.0.0" @@ -19861,7 +19849,7 @@ }, "subgraph-js/node_modules/@apollo/core-schema": { "version": "0.3.0", - "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#2cfd332381aaad0108faccb2324d3bf03d8397ba", + "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#c5d5a479d79bb3e5df51eed920c9f97a10ee6734", "license": "MIT", "dependencies": { "@protoplasm/recall": "^0.2" @@ -19911,8 +19899,8 @@ } }, "@apollo/core-schema": { - "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#2cfd332381aaad0108faccb2324d3bf03d8397ba", - "from": "@apollo/core-schema@https://github.com/apollographql/core-schema-js#link-import", + "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#c5d5a479d79bb3e5df51eed920c9f97a10ee6734", + "from": "@apollo/core-schema@apollographql/core-schema-js", "requires": { "@protoplasm/recall": "^0.2" }, @@ -19927,7 +19915,7 @@ "@apollo/federation-internals": { "version": "file:internals-js", "requires": { - "@apollo/core-schema": "https://github.com/apollographql/core-schema-js#link-import", + "@apollo/core-schema": "apollographql/core-schema-js", "chalk": "^4.1.0", "js-levenshtein": "^1.1.6" } @@ -20024,13 +20012,12 @@ "@apollo/subgraph": { "version": "file:subgraph-js", "requires": { - "@apollo/core-schema": "https://github.com/apollographql/core-schema-js#link-import", - "@protoplasm/recall": "^0.1.0" + "@apollo/core-schema": "apollographql/core-schema-js" }, "dependencies": { "@apollo/core-schema": { - "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#2cfd332381aaad0108faccb2324d3bf03d8397ba", - "from": "@apollo/core-schema@https://github.com/apollographql/core-schema-js#link-import", + "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#c5d5a479d79bb3e5df51eed920c9f97a10ee6734", + "from": "@apollo/core-schema@apollographql/core-schema-js", "requires": { "@protoplasm/recall": "^0.2" }, @@ -22720,12 +22707,6 @@ "@protobufjs/utf8": { "version": "1.1.0" }, - "@protoplasm/recall": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/@protoplasm/recall/-/recall-0.1.0.tgz", - "integrity": "sha512-I4ZWfZRQH1oXhsA9Mgnjm/9OkOf7ILKqNUwbEcC4tdJxoGCWsorpRcv4GsqFQR0N1v983QBabuBRSsWHT2YT0A==", - "dev": true - }, "@samverschueren/stream-to-observable": { "version": "0.3.1", "dev": true, diff --git a/subgraph-js/package.json b/subgraph-js/package.json index a84be5aac..6e561d733 100644 --- a/subgraph-js/package.json +++ b/subgraph-js/package.json @@ -21,7 +21,7 @@ "node": ">=12.13.0" }, "dependencies": { - "@apollo/core-schema": "https://github.com/apollographql/core-schema-js" + "@apollo/core-schema": "apollographql/core-schema-js" }, "publishConfig": { "access": "public" From b9649bac7f4d0bbf05b1acaa26b293087d5397b5 Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Mon, 28 Mar 2022 13:58:00 -0400 Subject: [PATCH 11/33] update package-lock --- package-lock.json | 24 +----------------------- 1 file changed, 1 insertion(+), 23 deletions(-) diff --git a/package-lock.json b/package-lock.json index 07b45f0ea..3b85213e4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -19846,29 +19846,7 @@ "peerDependencies": { "graphql": "^16.0.0" } - }, - "subgraph-js/node_modules/@apollo/core-schema": { - "version": "0.3.0", - "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#c5d5a479d79bb3e5df51eed920c9f97a10ee6734", - "license": "MIT", - "dependencies": { - "@protoplasm/recall": "^0.2" - }, - "engines": { - "node": ">=12.13.0 <17.0" - }, - "peerDependencies": { - "graphql": "^15 || ^16" - } - }, - "subgraph-js/node_modules/@apollo/core-schema/node_modules/@protoplasm/recall": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/@protoplasm/recall/-/recall-0.2.1.tgz", - "integrity": "sha512-7OfrS55jRaF7uERewbjkO1kjDOaCZ+xTgI2NPko6ERFktqtGomUNab8GuQwzSyXcwyxwAuiuy1KpaNxfPujcqQ==", - "engines": { - "node": ">=12.13.0" - } - } + } }, "dependencies": { "@apollo/client": { From a0468c441ee20ecf0e83278f6637b8bc1b96aacf Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Tue, 29 Mar 2022 13:42:57 -0400 Subject: [PATCH 12/33] directly print subgraph ast --- internals-js/package.json | 2 +- package-lock.json | 14 +- subgraph-js/package.json | 2 +- .../src/__tests__/buildSubgraphSchema.test.ts | 156 +++---- subgraph-js/src/buildSubgraphSchema.ts | 22 +- .../src/schema-helper/buildSchemaFromSDL.ts | 400 ++++++++---------- 6 files changed, 291 insertions(+), 305 deletions(-) diff --git a/internals-js/package.json b/internals-js/package.json index 30ecec9cd..efd49cf8b 100644 --- a/internals-js/package.json +++ b/internals-js/package.json @@ -23,7 +23,7 @@ "node": ">=12.13.0 <17.0" }, "dependencies": { - "@apollo/core-schema": "apollographql/core-schema-js", + "@apollo/core-schema": "apollographql/core-schema-js#v0.3", "chalk": "^4.1.0", "js-levenshtein": "^1.1.6" }, diff --git a/package-lock.json b/package-lock.json index 3b85213e4..29acb30eb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -154,7 +154,7 @@ "version": "2.0.0-preview.7", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { - "@apollo/core-schema": "apollographql/core-schema-js", + "@apollo/core-schema": "apollographql/core-schema-js#v0.3", "chalk": "^4.1.0", "js-levenshtein": "^1.1.6" }, @@ -208,7 +208,7 @@ }, "node_modules/@apollo/core-schema": { "version": "0.3.0", - "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#c5d5a479d79bb3e5df51eed920c9f97a10ee6734", + "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#f2f6d6df12432068874d1a4ea31f1d8b5248f4b8", "license": "MIT", "dependencies": { "@protoplasm/recall": "^0.2" @@ -19838,7 +19838,7 @@ "version": "2.0.0-preview.7", "license": "MIT", "dependencies": { - "@apollo/core-schema": "apollographql/core-schema-js" + "@apollo/core-schema": "apollographql/core-schema-js#v0.3" }, "engines": { "node": ">=12.13.0" @@ -19877,7 +19877,7 @@ } }, "@apollo/core-schema": { - "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#c5d5a479d79bb3e5df51eed920c9f97a10ee6734", + "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#f2f6d6df12432068874d1a4ea31f1d8b5248f4b8", "from": "@apollo/core-schema@apollographql/core-schema-js", "requires": { "@protoplasm/recall": "^0.2" @@ -19893,7 +19893,7 @@ "@apollo/federation-internals": { "version": "file:internals-js", "requires": { - "@apollo/core-schema": "apollographql/core-schema-js", + "@apollo/core-schema": "apollographql/core-schema-js#v0.3", "chalk": "^4.1.0", "js-levenshtein": "^1.1.6" } @@ -19990,11 +19990,11 @@ "@apollo/subgraph": { "version": "file:subgraph-js", "requires": { - "@apollo/core-schema": "apollographql/core-schema-js" + "@apollo/core-schema": "apollographql/core-schema-js#v0.3" }, "dependencies": { "@apollo/core-schema": { - "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#c5d5a479d79bb3e5df51eed920c9f97a10ee6734", + "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#f2f6d6df12432068874d1a4ea31f1d8b5248f4b8", "from": "@apollo/core-schema@apollographql/core-schema-js", "requires": { "@protoplasm/recall": "^0.2" diff --git a/subgraph-js/package.json b/subgraph-js/package.json index 6e561d733..42a065990 100644 --- a/subgraph-js/package.json +++ b/subgraph-js/package.json @@ -21,7 +21,7 @@ "node": ">=12.13.0" }, "dependencies": { - "@apollo/core-schema": "apollographql/core-schema-js" + "@apollo/core-schema": "apollographql/core-schema-js#v0.3" }, "publishConfig": { "access": "public" diff --git a/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts b/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts index 6b8f6a707..5721b3ab7 100644 --- a/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts +++ b/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts @@ -120,35 +120,36 @@ describe('buildSubgraphSchema', () => { expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") - directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA - - """federation 1.0 key directive""" - directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE + schema { + query: Query + } - """ - A user. This user is very complicated and requires so so so so so so so so so so so so so so so so so so so so so so so so so so so so so so so so much description text - """ + "A user. This user is very complicated and requires so so so so so so so so so so so so so so so so so so so so so so so so so so so so so so so so much description text" type User @key(fields: "id") { """The unique ID of the user.""" id: ID! - - """The user's name.""" + "The user's name." name: String username: String foo( - """Description 1""" + "Description 1" arg1: String - - """Description 2""" + "Description 2" arg2: String - - """ - Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 - """ + "Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 Description 3 Description 3" arg3: String ): String } + extend type Query { + _dummyField: Boolean + } + + directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + + """federation 1.0 key directive""" + directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE + scalar link__Url scalar link__Name @@ -157,10 +158,7 @@ describe('buildSubgraphSchema', () => { scalar federation__FieldSet - extend type Query { - _dummyField: Boolean - } - + type Query `); }); @@ -367,6 +365,19 @@ describe('buildSubgraphSchema', () => { expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + type Review { + id: ID + } + + extend type Review { + title: String + } + + extend type Product @key(fields: "upc") { + upc: String @external + reviews: [Review] + } + directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA """federation 1.0 key directive""" @@ -374,11 +385,6 @@ describe('buildSubgraphSchema', () => { directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION - type Review { - id: ID - title: String - } - scalar link__Url scalar link__Name @@ -387,11 +393,7 @@ describe('buildSubgraphSchema', () => { scalar federation__FieldSet - extend type Product @key(fields: "upc") { - upc: String @external - reviews: [Review] - } - + type Product `); }); it('keeps extension interface when owner interface is not present', async () => { @@ -424,15 +426,11 @@ describe('buildSubgraphSchema', () => { expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") - directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA - - """federation 1.0 key directive""" - directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE - - directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION - type Review { id: ID + } + + extend type Review { title: String } @@ -440,6 +438,18 @@ describe('buildSubgraphSchema', () => { id: ID! } + extend interface Product @key(fields: "upc") { + upc: String @external + reviews: [Review] + } + + directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + + """federation 1.0 key directive""" + directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE + + directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION + scalar link__Url scalar link__Name @@ -448,11 +458,7 @@ describe('buildSubgraphSchema', () => { scalar federation__FieldSet - extend interface Product @key(fields: "upc") { - upc: String @external - reviews: [Review] - } - + interface Product `); }); it('returns valid sdl for @key directives', async () => { @@ -474,17 +480,17 @@ describe('buildSubgraphSchema', () => { expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") - directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA - - """federation 1.0 key directive""" - directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE - type Product @key(fields: "upc") { upc: String! name: String price: Int } + directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + + """federation 1.0 key directive""" + directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE + scalar link__Url scalar link__Name @@ -492,7 +498,6 @@ describe('buildSubgraphSchema', () => { scalar link__Imports scalar federation__FieldSet - `); }); it('returns valid sdl for multiple @key directives', async () => { @@ -514,17 +519,17 @@ describe('buildSubgraphSchema', () => { expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") - directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA - - """federation 1.0 key directive""" - directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE - type Product @key(fields: "upc") @key(fields: "name") { upc: String! name: String price: Int } + directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + + """federation 1.0 key directive""" + directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE + scalar link__Url scalar link__Name @@ -532,7 +537,6 @@ describe('buildSubgraphSchema', () => { scalar link__Imports scalar federation__FieldSet - `); }); it('supports all federation directives', async () => { @@ -566,6 +570,23 @@ describe('buildSubgraphSchema', () => { expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + type Review @key(fields: "id") { + id: ID! + body: String + author: User @provides(fields: "email") + product: Product @provides(fields: "upc") + } + + extend type User @key(fields: "email") { + email: String @external + reviews: [Review] + } + + extend type Product @key(fields: "upc") { + upc: String @external + reviews: [Review] + } + directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA """federation 1.0 key directive""" @@ -575,13 +596,6 @@ describe('buildSubgraphSchema', () => { directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION - type Review @key(fields: "id") { - id: ID! - body: String - author: User @provides(fields: "email") - product: Product @provides(fields: "upc") - } - scalar link__Url scalar link__Name @@ -590,16 +604,9 @@ describe('buildSubgraphSchema', () => { scalar federation__FieldSet - extend type User @key(fields: "email") { - email: String @external - reviews: [Review] - } - - extend type Product @key(fields: "upc") { - upc: String @external - reviews: [Review] - } + type User + type Product `); }); it('keeps custom directives', async () => { @@ -624,6 +631,10 @@ describe('buildSubgraphSchema', () => { directive @custom on FIELD + extend type User @key(fields: "email") { + email: String @external + } + directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA """federation 1.0 key directive""" @@ -639,10 +650,7 @@ describe('buildSubgraphSchema', () => { scalar federation__FieldSet - extend type User @key(fields: "email") { - email: String @external - } - + type User `); }); }); diff --git a/subgraph-js/src/buildSubgraphSchema.ts b/subgraph-js/src/buildSubgraphSchema.ts index 7119dd1ff..20c9537ab 100644 --- a/subgraph-js/src/buildSubgraphSchema.ts +++ b/subgraph-js/src/buildSubgraphSchema.ts @@ -5,7 +5,9 @@ import { isObjectType, isUnionType, GraphQLUnionType, - GraphQLObjectType + GraphQLObjectType, + buildASTSchema, + print } from 'graphql'; import { GraphQLSchemaModule, @@ -13,14 +15,13 @@ import { addResolversToSchema, modulesFromSDL, transformSchema, - buildSchemaFromSDL, + subgraphCore } from './schema-helper'; import { typeIncludesDirective } from './directives'; import { serviceField, entitiesField, EntityType } from './types'; -import { printSubgraphSchema } from './printSubgraphSchema'; type LegacySchemaModule = { typeDefs: DocumentNode | DocumentNode[]; @@ -61,13 +62,14 @@ export function buildSubgraphSchema( } const modules = modulesFromSDL(shapedModulesOrSDL); + const document = subgraphCore(modules) - let schema = buildSchemaFromSDL( - modules, - new GraphQLSchema({ - query: undefined, - }), - ); + let schema = buildASTSchema(document) + + for (const module of modules) { + if (!module.resolvers) continue; + addResolversToSchema(schema, module.resolvers); + } // At this point in time, we have a schema to be printed into SDL which is // representative of what the user defined for their schema. This is before @@ -77,7 +79,7 @@ export function buildSubgraphSchema( // We have to use a modified printSchema from graphql-js which includes // support for preserving the *uses* of federation directives while removing // their *definitions* from the sdl. - const sdl = printSubgraphSchema(schema); + const sdl = print(document); // Add an empty query root type if none has been defined if (!schema.getQueryType()) { diff --git a/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts b/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts index 78fc5928f..67f334563 100644 --- a/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts +++ b/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts @@ -1,49 +1,15 @@ -import { - concatAST, - DocumentNode, - extendSchema, - GraphQLSchema, - isObjectType, - isTypeDefinitionNode, - isTypeExtensionNode, - Kind, - TypeDefinitionNode, - TypeExtensionNode, - DirectiveDefinitionNode, - SchemaDefinitionNode, - SchemaExtensionNode, - OperationTypeNode, - GraphQLObjectType, - GraphQLEnumType, - isAbstractType, - isScalarType, - isEnumType, - GraphQLEnumValueConfig, - ConstDirectiveNode, - ASTNode, - StringValueNode, -} from 'graphql'; - +import Schema, { byKind, byName, only, toDefinitionKind } from '@apollo/core-schema'; +import { ASTNode, concatAST, DefinitionNode, DocumentNode, GraphQLEnumType, GraphQLEnumValueConfig, GraphQLSchema, isAbstractType, isEnumType, isObjectType, isScalarType, Kind } from 'graphql'; +import { ATLAS, SUBGRAPH_BASE } from '../federation-atlas'; import { GraphQLResolverMap, GraphQLSchemaModule } from './resolverMap'; -import { - PossibleTypeExtensionsRule, - KnownTypeNamesRule, - UniqueDirectivesPerLocationRule, - } from 'graphql/validation'; -import { validateSDL } from 'graphql/validation/validate'; -import { SDLValidationRule } from "graphql/validation/ValidationContext"; -import { specifiedSDLRules } from 'graphql/validation/specifiedRules'; -import { GraphQLSchemaValidationError } from './error'; -import Schema from '@apollo/core-schema'; -import { ATLAS, SUBGRAPH_BASE } from '../federation-atlas'; -function isNotNullOrUndefined( - value: T | null | undefined, -): value is T { - return value !== null && typeof value !== 'undefined'; -} +// function isNotNullOrUndefined( +// value: T | null | undefined, +// ): value is T { +// return value !== null && typeof value !== 'undefined'; +// } export function isNode(maybeNode: any): maybeNode is ASTNode { return maybeNode && typeof maybeNode.kind === "string"; @@ -53,19 +19,20 @@ export function isDocumentNode(node: ASTNode): node is DocumentNode { return isNode(node) && node.kind === Kind.DOCUMENT; } -function mapValues( - object: Record, - callback: (value: T) => U -): Record { - const result: Record = Object.create(null); +// function mapValues( +// object: Record, +// callback: (value: T) => U +// ): Record { +// const result: Record = Object.create(null); - for (const [key, value] of Object.entries(object)) { - result[key] = callback(value); - } +// for (const [key, value] of Object.entries(object)) { +// result[key] = callback(value); +// } - return result; -} +// return result; +// } +/* const skippedSDLRules: SDLValidationRule[] = [ KnownTypeNamesRule, UniqueDirectivesPerLocationRule, @@ -75,15 +42,16 @@ const skippedSDLRules: SDLValidationRule[] = [ const sdlRules = specifiedSDLRules.filter( rule => !skippedSDLRules.includes(rule) ); +*/ -const extKindToDefKind = { - [Kind.SCALAR_TYPE_EXTENSION]: Kind.SCALAR_TYPE_DEFINITION, - [Kind.OBJECT_TYPE_EXTENSION]: Kind.OBJECT_TYPE_DEFINITION, - [Kind.INTERFACE_TYPE_EXTENSION]: Kind.INTERFACE_TYPE_DEFINITION, - [Kind.UNION_TYPE_EXTENSION]: Kind.UNION_TYPE_DEFINITION, - [Kind.ENUM_TYPE_EXTENSION]: Kind.ENUM_TYPE_DEFINITION, - [Kind.INPUT_OBJECT_TYPE_EXTENSION]: Kind.INPUT_OBJECT_TYPE_DEFINITION -}; +// const extKindToDefKind = { +// [Kind.SCALAR_TYPE_EXTENSION]: Kind.SCALAR_TYPE_DEFINITION, +// [Kind.OBJECT_TYPE_EXTENSION]: Kind.OBJECT_TYPE_DEFINITION, +// [Kind.INTERFACE_TYPE_EXTENSION]: Kind.INTERFACE_TYPE_DEFINITION, +// [Kind.UNION_TYPE_EXTENSION]: Kind.UNION_TYPE_DEFINITION, +// [Kind.ENUM_TYPE_EXTENSION]: Kind.ENUM_TYPE_DEFINITION, +// [Kind.INPUT_OBJECT_TYPE_EXTENSION]: Kind.INPUT_OBJECT_TYPE_DEFINITION +// }; export function modulesFromSDL( modulesOrSDL: (GraphQLSchemaModule | DocumentNode)[] | DocumentNode @@ -173,160 +141,168 @@ export function addResolversToSchema( } } -export function buildSchemaFromSDL( - modulesOrSDL: (GraphQLSchemaModule | DocumentNode)[] | DocumentNode, - schemaToExtend?: GraphQLSchema -): GraphQLSchema { - const modules = modulesFromSDL(modulesOrSDL); - - const documentAST = subgraphCore(modules).document - - const errors = validateSDL(documentAST, schemaToExtend, sdlRules); - if (errors.length > 0) { - throw new GraphQLSchemaValidationError(errors); - } - - const definitionsMap: { - [name: string]: TypeDefinitionNode[]; - } = Object.create(null); - - const extensionsMap: { - [name: string]: TypeExtensionNode[]; - } = Object.create(null); - - const directiveDefinitions: DirectiveDefinitionNode[] = []; - - const schemaDefinitions: SchemaDefinitionNode[] = []; - const schemaExtensions: SchemaExtensionNode[] = []; - const schemaDirectives: ConstDirectiveNode[] = []; - let description: StringValueNode | undefined; - - for (const definition of documentAST.definitions) { - if (isTypeDefinitionNode(definition)) { - const typeName = definition.name.value; - - if (definitionsMap[typeName]) { - definitionsMap[typeName].push(definition); - } else { - definitionsMap[typeName] = [definition]; - } - } else if (isTypeExtensionNode(definition)) { - const typeName = definition.name.value; +// function buildSchemaFromSDL( +// modulesOrSDL: (GraphQLSchemaModule | DocumentNode)[] | DocumentNode, +// schemaToExtend?: GraphQLSchema +// ): GraphQLSchema { +// const modules = modulesFromSDL(modulesOrSDL); + +// let document = subgraphCore(modules) + +// const errors = validateSDL(document, schemaToExtend, sdlRules); +// if (errors.length > 0) { +// throw new GraphQLSchemaValidationError(errors); +// } + +// // const definitionsMap: { +// // [name: string]: TypeDefinitionNode[]; +// // } = Object.create(null); + +// // const extensionsMap: { +// // [name: string]: TypeExtensionNode[]; +// // } = Object.create(null); + +// // const directiveDefinitions: DirectiveDefinitionNode[] = []; + +// // const schemaDefinitions: SchemaDefinitionNode[] = []; +// // const schemaExtensions: SchemaExtensionNode[] = []; +// // const schemaDirectives: ConstDirectiveNode[] = []; +// // let description: StringValueNode | undefined; + +// // for (const definition of document.definitions) { +// // if (isTypeDefinitionNode(definition)) { +// // const typeName = definition.name.value; + +// // if (definitionsMap[typeName]) { +// // definitionsMap[typeName].push(definition); +// // } else { +// // definitionsMap[typeName] = [definition]; +// // } +// // } else if (isTypeExtensionNode(definition)) { +// // const typeName = definition.name.value; + +// // if (extensionsMap[typeName]) { +// // extensionsMap[typeName].push(definition); +// // } else { +// // extensionsMap[typeName] = [definition]; +// // } +// // } else if (definition.kind === Kind.DIRECTIVE_DEFINITION) { +// // directiveDefinitions.push(definition); +// // } else if (definition.kind === Kind.SCHEMA_DEFINITION) { +// // schemaDefinitions.push(definition); +// // schemaDirectives.push( +// // ...(definition.directives ? definition.directives : []) +// // ); +// // description = definition.description; +// // } else if (definition.kind === Kind.SCHEMA_EXTENSION) { +// // schemaExtensions.push(definition); +// // schemaDirectives.push( +// // ...(definition.directives ? definition.directives : []) +// // ); +// // } +// // } + + +// // const missingTypeDefinitions: TypeDefinitionNode[] = []; + +// // for (const [extendedTypeName, extensions] of Object.entries(extensionsMap)) { +// // if (!definitionsMap[extendedTypeName]) { +// // const extension = extensions[0]; + +// // const kind = extension.kind; +// // const definition = { +// // kind: extKindToDefKind[kind], +// // name: extension.name +// // } as TypeDefinitionNode; + +// // missingTypeDefinitions.push(definition); +// // } +// // } + +// console.log(print(document)) + +// const schema = extendSchema(schemaToExtend +// ? schemaToExtend +// : new GraphQLSchema({ +// query: undefined +// }), +// document) + +// // schema = extendSchema( +// // schema, +// // { +// // kind: Kind.DOCUMENT, +// // definitions: Object.values(extensionsMap).flat(), +// // }, +// // { +// // assumeValidSDL: true +// // } +// // ); + +// // let operationTypeMap: { [operation in OperationTypeNode]?: string }; + +// // const operationTypes = [...schemaDefinitions(core.document.definitions)] +// // .map(node => node.operationTypes) +// // .filter(isNotNullOrUndefined) +// // .flat(); + +// // if (operationTypes.length > 0) { +// // operationTypeMap = {}; +// // for (const { operation, type } of operationTypes) { +// // operationTypeMap[operation] = type.name.value; +// // } +// // } else { +// // operationTypeMap = { +// // query: "Query", +// // mutation: "Mutation", +// // subscription: "Subscription" +// // }; +// // } + +// // schema = new GraphQLSchema({ +// // ...schema.toConfig(), +// // ...mapValues(operationTypeMap, typeName => +// // typeName +// // ? (schema.getType(typeName) as GraphQLObjectType) +// // : undefined +// // ), +// // description: description?.value, +// // astNode: { +// // kind: Kind.SCHEMA_DEFINITION, +// // description, +// // directives: schemaDirectives, +// // operationTypes: [] // satisfies typescript, will be ignored +// // } +// // }); + +// for (const module of modules) { +// if (!module.resolvers) continue; +// addResolversToSchema(schema, module.resolvers); +// } + +// return schema; +// } + +export function subgraphCore(modules: GraphQLSchemaModule[]): DocumentNode { + const mergedDocument = concatAST(modules.map(module => module.typeDefs)); + const {document} = Schema.from(mergedDocument, SUBGRAPH_BASE).compile(ATLAS) + const defs = [...implicitDefinitionNodes(document)] + return defs.length ? { + ...document, + definitions: document.definitions.concat(defs) + } : document +} - if (extensionsMap[typeName]) { - extensionsMap[typeName].push(definition); - } else { - extensionsMap[typeName] = [definition]; +function *implicitDefinitionNodes(document: DocumentNode): Iterable { + for (const [name, type] of byName(document.definitions)) { + if (!name) continue + if (byKind(type).size !== 1) continue + const kind = only(byKind(type).keys()) + if (toDefinitionKind(kind) !== kind) { + yield { + kind: toDefinitionKind(kind), + name: { kind: Kind.NAME, value: name } } - } else if (definition.kind === Kind.DIRECTIVE_DEFINITION) { - directiveDefinitions.push(definition); - } else if (definition.kind === Kind.SCHEMA_DEFINITION) { - schemaDefinitions.push(definition); - schemaDirectives.push( - ...(definition.directives ? definition.directives : []) - ); - description = definition.description; - } else if (definition.kind === Kind.SCHEMA_EXTENSION) { - schemaExtensions.push(definition); - schemaDirectives.push( - ...(definition.directives ? definition.directives : []) - ); } } - - let schema = schemaToExtend - ? schemaToExtend - : new GraphQLSchema({ - query: undefined - }); - - const missingTypeDefinitions: TypeDefinitionNode[] = []; - - for (const [extendedTypeName, extensions] of Object.entries(extensionsMap)) { - if (!definitionsMap[extendedTypeName]) { - const extension = extensions[0]; - - const kind = extension.kind; - const definition = { - kind: extKindToDefKind[kind], - name: extension.name - } as TypeDefinitionNode; - - missingTypeDefinitions.push(definition); - } - } - - schema = extendSchema( - schema, - { - kind: Kind.DOCUMENT, - definitions: [ - ...Object.values(definitionsMap).flat(), - ...missingTypeDefinitions, - ...directiveDefinitions - ] - }, - { - assumeValidSDL: true - } - ); - - schema = extendSchema( - schema, - { - kind: Kind.DOCUMENT, - definitions: Object.values(extensionsMap).flat(), - }, - { - assumeValidSDL: true - } - ); - - let operationTypeMap: { [operation in OperationTypeNode]?: string }; - - const operationTypes = [...schemaDefinitions, ...schemaExtensions] - .map(node => node.operationTypes) - .filter(isNotNullOrUndefined) - .flat(); - - if (operationTypes.length > 0) { - operationTypeMap = {}; - for (const { operation, type } of operationTypes) { - operationTypeMap[operation] = type.name.value; - } - } else { - operationTypeMap = { - query: "Query", - mutation: "Mutation", - subscription: "Subscription" - }; - } - - schema = new GraphQLSchema({ - ...schema.toConfig(), - ...mapValues(operationTypeMap, typeName => - typeName - ? (schema.getType(typeName) as GraphQLObjectType) - : undefined - ), - description: description?.value, - astNode: { - kind: Kind.SCHEMA_DEFINITION, - description, - directives: schemaDirectives, - operationTypes: [] // satisfies typescript, will be ignored - } - }); - - for (const module of modules) { - if (!module.resolvers) continue; - addResolversToSchema(schema, module.resolvers); - } - - return schema; -} - -export function subgraphCore(modules: GraphQLSchemaModule[]) { - const mergedDocument = concatAST(modules.map(module => module.typeDefs)); - return Schema.from(mergedDocument, SUBGRAPH_BASE).compile(ATLAS) } From 10f32a6b4bf7a71e6b3289c525e5f7dedf8e6c06 Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Tue, 29 Mar 2022 15:27:52 -0400 Subject: [PATCH 13/33] only printSubgraphSchema tests failing --- .../src/__tests__/subgraphCore.test.ts | 57 ++++++++++++------- subgraph-js/src/buildSubgraphSchema.ts | 5 -- .../src/schema-helper/buildSchemaFromSDL.ts | 10 ++-- 3 files changed, 42 insertions(+), 30 deletions(-) diff --git a/subgraph-js/src/__tests__/subgraphCore.test.ts b/subgraph-js/src/__tests__/subgraphCore.test.ts index ddd76740d..5c59ca420 100644 --- a/subgraph-js/src/__tests__/subgraphCore.test.ts +++ b/subgraph-js/src/__tests__/subgraphCore.test.ts @@ -4,15 +4,16 @@ import { print } from 'graphql'; import { getResult } from '@apollo/core-schema'; import { ATLAS } from '../federation-atlas'; import raw from '@apollo/core-schema/dist/snapshot-serializers/raw'; +import Schema from '@apollo/core-schema'; describe('subgraphCore', () => { it('compiles a subgraph into a core schema', () => { const result = getResult(() => subgraphCore([{ typeDefs: fixtures[0].typeDefs }]), - ) + ); expect([...result.errors()]).toEqual([]); - expect(print(result.unwrap().document)).toMatchInlineSnapshot(` - "extend schema @link(url: \\"https://specs.apollo.dev/link/v0.3\\") @link(url: \\"https://specs.apollo.dev/federation/v2.0\\", import: \\"@key @requires @provides @external @shareable @tag @extends\\") @link(url: \\"https://specs.apollo.dev/tag/v0.1\\") @link(url: \\"https://specs.apollo.dev/id/v1.0\\") + expect(raw(print(result.unwrap()))).toMatchInlineSnapshot(` + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key", "@requires", "@provides", "@external", "@shareable", "@tag", "@extends"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") directive @stream on FIELD @@ -27,7 +28,7 @@ describe('subgraphCore', () => { directive @cacheControl(maxAge: Int, scope: CacheControlScope, inheritMaxAge: Boolean) on FIELD_DEFINITION | OBJECT | INTERFACE | UNION - scalar JSON @specifiedBy(url: \\"https://json-spec.dev\\") + scalar JSON @specifiedBy(url: "https://json-spec.dev") schema { query: RootQuery @@ -39,15 +40,15 @@ describe('subgraphCore', () => { me: User @cacheControl(maxAge: 1000, scope: PRIVATE) } - type PasswordAccount @key(fields: \\"email\\") { + type PasswordAccount @key(fields: "email") { email: String! } - type SMSAccount @key(fields: \\"number\\") { + type SMSAccount @key(fields: "number") { number: String } - union AccountType @tag(name: \\"from-accounts\\") = PasswordAccount | SMSAccount + union AccountType @tag(name: "from-accounts") = PasswordAccount | SMSAccount type UserMetadata { name: String @@ -55,11 +56,11 @@ describe('subgraphCore', () => { description: String } - type User @key(fields: \\"id\\") @key(fields: \\"username name { first last }\\") @tag(name: \\"from-accounts\\") { - id: ID! @tag(name: \\"accounts\\") + type User @key(fields: "id") @key(fields: "username name { first last }") @tag(name: "from-accounts") { + id: ID! @tag(name: "accounts") name: Name @cacheControl(inheritMaxAge: true) username: String @shareable - birthDate(locale: String): String @tag(name: \\"admin\\") @tag(name: \\"dev\\") + birthDate(locale: String): String @tag(name: "admin") @tag(name: "dev") account: AccountType metadata: [UserMetadata] ssn: String @@ -71,18 +72,18 @@ describe('subgraphCore', () => { } type Mutation { - login(username: String!, password: String!, userId: String @deprecated(reason: \\"Use username instead\\")): User + login(username: String!, password: String!, userId: String @deprecated(reason: "Use username instead")): User } - type Library @key(fields: \\"id\\") { + type Library @key(fields: "id") { id: ID! name: String @external - userAccount(id: ID! = \\"1\\"): User @requires(fields: \\"name\\") + userAccount(id: ID! = "1"): User @requires(fields: "name") } directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA - \\"\\"\\"federation 2.0 key directive\\"\\"\\" + """federation 2.0 key directive""" directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE directive @shareable on FIELD_DEFINITION | OBJECT @@ -97,7 +98,7 @@ describe('subgraphCore', () => { scalar link__Imports - scalar federation__FieldSet" + scalar federation__FieldSet `); }); @@ -138,16 +139,32 @@ describe('subgraphCore', () => { { typeDefs: { ...doc, + // remove the last '@link()', which brings in fed2 definitions: doc.definitions.slice(0, doc.definitions.length - 1), }, }, ]), ); - expect([...result.errors()]).toEqual([]); - expect([...result.unwrap()]).toMatchInlineSnapshot(` + // shareable isn't in fed1 + expect([...result.errors()].map((err: any) => raw(err.toString()))) + .toMatchInlineSnapshot(` + Array [ + [NoDefinition] no definitions found for reference + + GraphQL request:52:20 + 51 | name: Name @cacheControl(inheritMaxAge: true) + 52 | username: String @shareable # Provided by the 'reviews' subgraph + | ^ + 53 | birthDate(locale: String): String @tag(name: "admin") @tag(name: "dev"), + ] + `); + + const document = result.unwrap(); + + expect([...Schema.from(document)]).toMatchInlineSnapshot(` Array [ - <>[+] extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0"), + <>[+] extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0"), <#@stream>[GraphQL request] 👉directive @stream on FIELD, <#@transform>[GraphQL request] 👉directive @transform(from: String!) on FIELD, [GraphQL request] 👉directive @tag(name: String!) repeatable on, @@ -175,8 +192,8 @@ describe('subgraphCore', () => { ] `); - expect(raw(print(result.unwrap().document))).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: "@key @requires @provides @external") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + expect(raw(print(document))).toMatchInlineSnapshot(` + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") directive @stream on FIELD diff --git a/subgraph-js/src/buildSubgraphSchema.ts b/subgraph-js/src/buildSubgraphSchema.ts index 20c9537ab..bf8cf82e8 100644 --- a/subgraph-js/src/buildSubgraphSchema.ts +++ b/subgraph-js/src/buildSubgraphSchema.ts @@ -66,11 +66,6 @@ export function buildSubgraphSchema( let schema = buildASTSchema(document) - for (const module of modules) { - if (!module.resolvers) continue; - addResolversToSchema(schema, module.resolvers); - } - // At this point in time, we have a schema to be printed into SDL which is // representative of what the user defined for their schema. This is before // we process any of the federation directives and add custom federation types diff --git a/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts b/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts index 67f334563..2d74aede5 100644 --- a/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts +++ b/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts @@ -285,12 +285,12 @@ export function addResolversToSchema( export function subgraphCore(modules: GraphQLSchemaModule[]): DocumentNode { const mergedDocument = concatAST(modules.map(module => module.typeDefs)); - const {document} = Schema.from(mergedDocument, SUBGRAPH_BASE).compile(ATLAS) - const defs = [...implicitDefinitionNodes(document)] + const core = Schema.from(mergedDocument, SUBGRAPH_BASE).compile(ATLAS) + const defs = [...implicitDefinitionNodes(core.document)] return defs.length ? { - ...document, - definitions: document.definitions.concat(defs) - } : document + ...core.document, + definitions: core.document.definitions.concat(defs) + } : core.document } function *implicitDefinitionNodes(document: DocumentNode): Iterable { From b778c1e7ba44ff3c00d386cba987877baa9634ad Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Tue, 29 Mar 2022 15:46:04 -0400 Subject: [PATCH 14/33] remove printSubgraphSchema --- .../src/__tests__/printSubgraphSchema.test.ts | 251 ---------- subgraph-js/src/printSubgraphSchema.ts | 432 ------------------ 2 files changed, 683 deletions(-) delete mode 100644 subgraph-js/src/__tests__/printSubgraphSchema.test.ts delete mode 100644 subgraph-js/src/printSubgraphSchema.ts diff --git a/subgraph-js/src/__tests__/printSubgraphSchema.test.ts b/subgraph-js/src/__tests__/printSubgraphSchema.test.ts deleted file mode 100644 index 1940bb05a..000000000 --- a/subgraph-js/src/__tests__/printSubgraphSchema.test.ts +++ /dev/null @@ -1,251 +0,0 @@ -import { fixtures } from 'apollo-federation-integration-testsuite'; -import { buildSubgraphSchema } from '../buildSubgraphSchema'; -import { printSubgraphSchema } from '../printSubgraphSchema'; -import gql from 'graphql-tag'; -import raw from '@apollo/core-schema/dist/snapshot-serializers/raw'; - -describe('printSubgraphSchema', () => { - it('prints a subgraph correctly', () => { - const schema = buildSubgraphSchema(fixtures[0].typeDefs); - expect(raw(printSubgraphSchema(schema))).toMatchInlineSnapshot(` - schema { - query: RootQuery - mutation: Mutation - } - - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key", "@requires", "@provides", "@external", "@shareable", "@tag", "@extends"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") - - directive @stream on FIELD - - directive @transform(from: String!) on FIELD - - directive @tag(name: String!) repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION - - directive @cacheControl(maxAge: Int, scope: CacheControlScope, inheritMaxAge: Boolean) on FIELD_DEFINITION | OBJECT | INTERFACE | UNION - - directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA - - """federation 2.0 key directive""" - directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE - - directive @shareable on FIELD_DEFINITION | OBJECT - - directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION - - directive @requires(fields: federation__FieldSet!) on FIELD_DEFINITION - - enum CacheControlScope { - PUBLIC - PRIVATE - } - - scalar JSON @specifiedBy(url: "https://json-spec.dev") - - type RootQuery { - _entities(representations: [_Any!]!): [_Entity]! - _service: _Service! - user(id: ID!): User - me: User - } - - type PasswordAccount @key(fields: "email") { - email: String! - } - - type SMSAccount @key(fields: "number") { - number: String - } - - union AccountType @tag(name: "from-accounts") = PasswordAccount | SMSAccount - - type UserMetadata { - name: String - address: String - description: String - } - - type User @key(fields: "id") @key(fields: "username name { first last }") @tag(name: "from-accounts") { - id: ID! @tag(name: "accounts") - name: Name - username: String @shareable - birthDate(locale: String): String @tag(name: "admin") @tag(name: "dev") - account: AccountType - metadata: [UserMetadata] - ssn: String - } - - type Name { - first: String - last: String - } - - type Mutation { - login(username: String!, password: String!, userId: String @deprecated(reason: "Use username instead")): User - } - - type Library @key(fields: "id") { - id: ID! - name: String @external - userAccount(id: ID! = 1): User @requires(fields: "name") - } - - scalar link__Url - - scalar link__Name - - scalar link__Imports - - scalar federation__FieldSet - - `); - }); - - it('prints a scalar without a directive correctly', () => { - const schema = gql` - scalar JSON - `; - const subgraphSchema = buildSubgraphSchema(schema); - - expect(printSubgraphSchema(subgraphSchema)).toMatchInlineSnapshot(` - "extend schema @link(url: \\"https://specs.apollo.dev/link/v0.3\\") @link(url: \\"https://specs.apollo.dev/federation/v1.0\\", as: \\"\\", import: [\\"@key\\", \\"@requires\\", \\"@provides\\", \\"@external\\"]) @link(url: \\"https://specs.apollo.dev/tag/v0.1\\") @link(url: \\"https://specs.apollo.dev/id/v1.0\\") - - directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA - - scalar JSON - - scalar link__Url - - scalar link__Name - - scalar link__Imports - - type Query { - _service: _Service! - } - " - `); - }); - - it('prints reviews subgraph correctly', () => { - const schema = buildSubgraphSchema(fixtures[5].typeDefs); - expect(printSubgraphSchema(schema)).toMatchInlineSnapshot(` - "extend schema @link(url: \\"https://specs.apollo.dev/link/v0.3\\") @link(url: \\"https://specs.apollo.dev/federation/v2.0\\", import: [\\"@key\\", \\"@requires\\", \\"@provides\\", \\"@external\\", \\"@shareable\\", \\"@tag\\", \\"@extends\\"]) @link(url: \\"https://specs.apollo.dev/tag/v0.1\\") @link(url: \\"https://specs.apollo.dev/id/v1.0\\") - - directive @stream on FIELD - - directive @transform(from: String!) on FIELD - - directive @tag(name: String!) repeatable on INTERFACE | FIELD_DEFINITION | OBJECT | UNION - - directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA - - \\"\\"\\"federation 2.0 key directive\\"\\"\\" - directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE - - directive @provides(fields: federation__FieldSet!) on FIELD_DEFINITION - - directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION - - directive @requires(fields: federation__FieldSet!) on FIELD_DEFINITION - - directive @shareable on FIELD_DEFINITION | OBJECT - - type Query { - _entities(representations: [_Any!]!): [_Entity]! - _service: _Service! - topReviews(first: Int = 5): [Review] - } - - type Review @key(fields: \\"id\\") { - id: ID! - body(format: Boolean = false): String - author: User @provides(fields: \\"username\\") - product: Product - metadata: [MetadataOrError] - } - - input UpdateReviewInput { - id: ID! - body: String - } - - type UserMetadata { - address: String @external - } - - type User @key(fields: \\"id\\") @tag(name: \\"from-reviews\\") { - id: ID! - username: String @external - reviews: [Review] - numberOfReviews: Int! - metadata: [UserMetadata] @external - goodAddress: Boolean @requires(fields: \\"metadata { address }\\") - } - - interface Product @tag(name: \\"from-reviews\\") { - reviews: [Review] - } - - type Furniture implements Product @key(fields: \\"upc\\") { - upc: String! - reviews: [Review] - } - - type Book implements Product @key(fields: \\"isbn\\") { - isbn: String! - reviews: [Review] - similarBooks: [Book]! @external - relatedReviews: [Review!]! @requires(fields: \\"similarBooks { isbn }\\") - } - - interface Vehicle { - retailPrice: String - } - - type Car implements Vehicle @key(fields: \\"id\\") { - id: String! - price: String @external - retailPrice: String @requires(fields: \\"price\\") - } - - type Van implements Vehicle @key(fields: \\"id\\") { - id: String! - price: String @external - retailPrice: String @requires(fields: \\"price\\") - } - - input ReviewProduct { - upc: String! - body: String! - stars: Int @deprecated(reason: \\"Stars are no longer in use\\") - } - - type Mutation { - reviewProduct(input: ReviewProduct!): Product - updateReview(review: UpdateReviewInput!): Review - deleteReview(id: ID!): Boolean - } - - type KeyValue @shareable { - key: String! - value: String! - } - - type Error @shareable { - code: Int - message: String - } - - union MetadataOrError = KeyValue | Error - - scalar link__Url - - scalar link__Name - - scalar link__Imports - - scalar federation__FieldSet - " - `); - }); -}); diff --git a/subgraph-js/src/printSubgraphSchema.ts b/subgraph-js/src/printSubgraphSchema.ts deleted file mode 100644 index ffb366962..000000000 --- a/subgraph-js/src/printSubgraphSchema.ts +++ /dev/null @@ -1,432 +0,0 @@ -/** - * Forked from graphql-js printSchema.ts file @ v16.0.0 - * This file has been modified to support printing subgraph - * schema, including associated federation directives. - */ -import { - GraphQLSchema, - isSpecifiedDirective, - isIntrospectionType, - isSpecifiedScalarType, - GraphQLNamedType, - GraphQLDirective, - isScalarType, - isObjectType, - isInterfaceType, - isUnionType, - isEnumType, - isInputObjectType, - GraphQLScalarType, - GraphQLObjectType, - GraphQLInterfaceType, - GraphQLUnionType, - GraphQLEnumType, - GraphQLInputObjectType, - GraphQLArgument, - GraphQLInputField, - astFromValue, - print, - GraphQLField, - DEFAULT_DEPRECATION_REASON, - Kind, -} from 'graphql'; -import { isFederationType, Maybe } from './types'; -import { - gatherDirectives, - federationDirectives, -} from './directives'; - -export function printSubgraphSchema(schema: GraphQLSchema): string { - return printFilteredSchema( - schema, - // Apollo change: treat the directives defined by the federation spec - // similarly to the directives defined by the GraphQL spec (ie, don't print - // their definitions). - (n) => !isSpecifiedDirective(n), - isDefinedType, - ); -} - -export function printIntrospectionSchema(schema: GraphQLSchema): string { - return printFilteredSchema(schema, isSpecifiedDirective, isIntrospectionType); -} - -// Apollo change: treat the types defined by the federation spec -// similarly to the directives defined by the GraphQL spec (ie, don't print -// their definitions). -function isDefinedType(type: GraphQLNamedType): boolean { - return ( - !isSpecifiedScalarType(type) && - !isIntrospectionType(type) && - !isFederationType(type) - ); -} - -function printFilteredSchema( - schema: GraphQLSchema, - directiveFilter: (type: GraphQLDirective) => boolean, - typeFilter: (type: GraphQLNamedType) => boolean, -): string { - const directives = schema.getDirectives().filter(directiveFilter); - const types = Object.values(schema.getTypeMap()).filter(typeFilter); - - return ( - [ - printSchemaDefinition(schema), - printSchemaDirectives(schema), - ...directives.map((directive) => printDirective(directive)), - ...types.map((type) => printType(type)), - ] - .filter(Boolean) - .join('\n\n') + '\n' - ); -} - -function printSchemaDefinition(schema: GraphQLSchema): string | undefined { - if (schema.description == null && isSchemaOfCommonNames(schema)) { - return; - } - - const operationTypes = []; - - const queryType = schema.getQueryType(); - if (queryType) { - operationTypes.push(` query: ${queryType.name}`); - } - - const mutationType = schema.getMutationType(); - if (mutationType) { - operationTypes.push(` mutation: ${mutationType.name}`); - } - - const subscriptionType = schema.getSubscriptionType(); - if (subscriptionType) { - operationTypes.push(` subscription: ${subscriptionType.name}`); - } - - return printDescription(schema) + `schema {\n${operationTypes.join('\n')}\n}`; -} - -/* - * Apollo change: we write the fedederation directives put on the schema, if any, - * and we we do so on a schema extension block. The reason for the later part - * is that subgraphs printed by this function are allowed to not have a Query - * type and so we cannot guarantee that `printSchemaDefinition` will have - * any operation to display, and in that case the generated definition wouldn't - * parse correctly (at least with the GraphQL-js parser). Using a schema extension - * side-step that issue. - */ -function printSchemaDirectives(schema: GraphQLSchema): string | undefined { - const directives = printFederationDirectives(schema); - return directives === '' ? undefined : `extend schema${directives}`; -} - -/** - * GraphQL schema define root types for each type of operation. These types are - * the same as any other type and can be named in any manner, however there is - * a common naming convention: - * - * schema { - * query: Query - * mutation: Mutation - * } - * - * When using this naming convention, the schema description can be omitted. - */ -function isSchemaOfCommonNames(schema: GraphQLSchema): boolean { - const queryType = schema.getQueryType(); - if (queryType && queryType.name !== 'Query') { - return false; - } - - const mutationType = schema.getMutationType(); - if (mutationType && mutationType.name !== 'Mutation') { - return false; - } - - const subscriptionType = schema.getSubscriptionType(); - if (subscriptionType && subscriptionType.name !== 'Subscription') { - return false; - } - - return true; -} - -export function printType(type: GraphQLNamedType): string { - if (isScalarType(type)) { - return printScalar(type); - } - if (isObjectType(type)) { - return printObject(type); - } - if (isInterfaceType(type)) { - return printInterface(type); - } - if (isUnionType(type)) { - return printUnion(type); - } - if (isEnumType(type)) { - return printEnum(type); - } - if (isInputObjectType(type)) { - return printInputObject(type); - } - - // graphql-js uses an internal fn `inspect` but this is a `never` case anyhow - throw Error('Unexpected type: ' + (type as GraphQLNamedType).toString()); -} - -function printScalar(type: GraphQLScalarType): string { - return ( - printDescription(type) + `scalar ${type.name}` + printSpecifiedByURL(type) - ); -} - -function printImplementedInterfaces( - type: GraphQLObjectType | GraphQLInterfaceType, -): string { - const interfaces = type.getInterfaces(); - return interfaces.length - ? ' implements ' + interfaces.map((i) => i.name).join(' & ') - : ''; -} - -function printObject(type: GraphQLObjectType): string { - // Apollo change: print `extend` keyword on type extensions. - // - // The implementation assumes that an owned type will have fields defined - // since that is required for a valid schema. Types that are *only* - // extensions will not have fields on the astNode since that ast doesn't - // exist. - // - // XXX revist extension checking - const isExtension = - type.extensionASTNodes && type.astNode && !type.astNode.fields; - - return ( - printDescription(type) + - // Apollo addition: print `extend` keyword on type extensions - (isExtension ? 'extend ' : '') + - `type ${type.name}` + - printImplementedInterfaces(type) + - // Apollo addition: print @key usages - printFederationDirectives(type) + - printFields(type) - ); -} - -function printInterface(type: GraphQLInterfaceType): string { - // Apollo change: print `extend` keyword on type extensions. - // See printObject for assumptions made. - // - // XXX revist extension checking - const isExtension = - type.extensionASTNodes && type.astNode && !type.astNode.fields; - - return ( - printDescription(type) + - // Apollo change: print `extend` keyword on interface extensions - (isExtension ? 'extend ' : '') + - `interface ${type.name}` + - printImplementedInterfaces(type) + - // Apollo addition: print @key usages - printFederationDirectives(type) + - printFields(type) - ); -} - -function printUnion(type: GraphQLUnionType): string { - const types = type.getTypes(); - const possibleTypes = types.length ? ' = ' + types.join(' | ') : ''; - return ( - printDescription(type) + - 'union ' + - type.name + - // Apollo addition: print @tag usages - printFederationDirectives(type) + - possibleTypes - ); -} - -function printEnum(type: GraphQLEnumType): string { - const values = type - .getValues() - .map( - (value, i) => - printDescription(value, ' ', !i) + - ' ' + - value.name + - printDeprecated(value.deprecationReason), - ); - - return printDescription(type) + `enum ${type.name}` + printBlock(values); -} - -function printInputObject(type: GraphQLInputObjectType): string { - const fields = Object.values(type.getFields()).map( - (f, i) => printDescription(f, ' ', !i) + ' ' + printInputValue(f), - ); - return printDescription(type) + `input ${type.name}` + printBlock(fields); -} - -function printFields(type: GraphQLObjectType | GraphQLInterfaceType) { - const fields = Object.values(type.getFields()).map( - (f, i) => - printDescription(f, ' ', !i) + - ' ' + - f.name + - printArgs(f.args, ' ') + - ': ' + - String(f.type) + - printDeprecated(f.deprecationReason) + - // Apollo addition: print Apollo directives on fields - printFederationDirectives(f), - ); - return printBlock(fields); -} - -// Apollo change: *do* print the usages of federation directives. -function printFederationDirectives( - typeOrFieldOrSchema: GraphQLNamedType | GraphQLField | GraphQLSchema, -): string { - if (!typeOrFieldOrSchema.astNode) return ''; - if (isInputObjectType(typeOrFieldOrSchema)) return ''; - - const federationDirectivesOnTypeOrField = gatherDirectives(typeOrFieldOrSchema) - .filter((n) => - federationDirectives.some((fedDir) => fedDir.name === n.name.value), - ) - .map(print); - const dedupedDirectives = [...new Set(federationDirectivesOnTypeOrField)]; - - return dedupedDirectives.length > 0 ? ' ' + dedupedDirectives.join(' ') : ''; -} - -function printBlock(items: string[]) { - return items.length !== 0 ? ' {\n' + items.join('\n') + '\n}' : ''; -} - -function printArgs(args: readonly GraphQLArgument[], indentation = '') { - if (args.length === 0) { - return ''; - } - - // If every arg does not have a description, print them on one line. - if (args.every((arg) => !arg.description)) { - return '(' + args.map(printInputValue).join(', ') + ')'; - } - - return ( - '(\n' + - args - .map( - (arg, i) => - printDescription(arg, ' ' + indentation, !i) + - ' ' + - indentation + - printInputValue(arg), - ) - .join('\n') + - '\n' + - indentation + - ')' - ); -} - -function printInputValue(arg: GraphQLInputField) { - const defaultAST = astFromValue(arg.defaultValue, arg.type); - let argDecl = arg.name + ': ' + String(arg.type); - if (defaultAST) { - argDecl += ` = ${print(defaultAST)}`; - } - return argDecl + printDeprecated(arg.deprecationReason); -} - -function printDirective(directive: GraphQLDirective) { - return ( - printDescription(directive) + - 'directive @' + - directive.name + - printArgs(directive.args) + - (directive.isRepeatable ? ' repeatable' : '') + - ' on ' + - directive.locations.join(' | ') - ); -} - -function printDeprecated(reason: Maybe): string { - if (reason == null) { - return ''; - } - if (reason !== DEFAULT_DEPRECATION_REASON) { - const astValue = print({ kind: Kind.STRING, value: reason }); - return ` @deprecated(reason: ${astValue})`; - } - return ' @deprecated'; -} - -// Apollo addition: support both specifiedByUrl and specifiedByURL - these -// happen across v15 and v16. -function printSpecifiedByURL(scalar: GraphQLScalarType): string { - // eslint-disable-next-line @typescript-eslint/no-explicit-any - const value = (scalar as any).specifiedByUrl ?? scalar.specifiedByURL; - - if (value == null) { - return ''; - } - const astValue = print({ - kind: Kind.STRING, - value, - }); - return ` @specifiedBy(url: ${astValue})`; -} - -function printDescription( - def: { readonly description?: Maybe }, - indentation = '', - firstInBlock = true, -): string { - const { description } = def; - if (description == null) { - return ''; - } - - const preferMultipleLines = description.length > 70; - const blockString = printBlockString(description, preferMultipleLines); - const prefix = - indentation && !firstInBlock ? '\n' + indentation : indentation; - - return prefix + blockString.replace(/\n/g, '\n' + indentation) + '\n'; -} - -/** - * Print a block string in the indented block form by adding a leading and - * trailing blank line. However, if a block string starts with whitespace and is - * a single-line, adding a leading blank line would strip that whitespace. - */ -export function printBlockString( - value: string, - preferMultipleLines: boolean = false, -): string { - const isSingleLine = !value.includes('\n'); - const hasLeadingSpace = value[0] === ' ' || value[0] === '\t'; - const hasTrailingQuote = value[value.length - 1] === '"'; - const hasTrailingSlash = value[value.length - 1] === '\\'; - const printAsMultipleLines = - !isSingleLine || - hasTrailingQuote || - hasTrailingSlash || - preferMultipleLines; - - let result = ''; - // Format a multi-line block quote to account for leading space. - if (printAsMultipleLines && !(isSingleLine && hasLeadingSpace)) { - result += '\n'; - } - result += value; - if (printAsMultipleLines) { - result += '\n'; - } - - return '"""' + result.replace(/"""/g, '\\"""') + '"""'; -} From 76468ef08e563368f863bb3c2e60e58712400b62 Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Tue, 29 Mar 2022 15:46:21 -0400 Subject: [PATCH 15/33] test core composition failure --- composition-js/src/__tests__/compose.test.ts | 57 ++++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/composition-js/src/__tests__/compose.test.ts b/composition-js/src/__tests__/compose.test.ts index feeae8848..0590904c5 100644 --- a/composition-js/src/__tests__/compose.test.ts +++ b/composition-js/src/__tests__/compose.test.ts @@ -361,6 +361,63 @@ describe('composition', () => { `); }); + it('composes core subgraphs', () => { + const subgraph1 = { + name: 'Subgraph1', + url: 'https://Subgraph1', + typeDefs: gql` + extend schema + @link(url: "https://specs.apollo.dev/link/v0.3") + @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key"]) + + type Query { + t: T + } + + type T @key(fields: "k") { + k: ID + } + + directive @key(fields: federation__FieldSet) on OBJECT + scalar federation__FieldSet + ` + } + + const subgraph2 = { + name: 'Subgraph2', + url: 'https://Subgraph2', + typeDefs: gql` + extend schema + @link(url: "https://specs.apollo.dev/link/v0.3") + @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key"]) + + type T @key(fields: "k") { + k: ID + a: Int + b: String + } + + directive @key(fields: federation__FieldSet) on OBJECT + scalar federation__FieldSet + ` + } + + const result = composeAsFed2Subgraphs([subgraph1, subgraph2]); + assertCompositionSuccess(result); + + const [_, api, _subgraphs] = schemas(result); + expect(printSchema(api)).toMatchString(` + type Product { + sku: String! + name: String! + } + + type Query { + products: [Product!] + } + `); + }) + describe('merging of type references', () => { describe('for field types', () => { it('errors on incompatible types', () => { From f0934dab60c64a5eed5a98c3f6bf7924e4c3de62 Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Tue, 29 Mar 2022 16:00:45 -0400 Subject: [PATCH 16/33] composeServices still broken --- composition-js/src/__tests__/compose.test.ts | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/composition-js/src/__tests__/compose.test.ts b/composition-js/src/__tests__/compose.test.ts index 0590904c5..85840aa3b 100644 --- a/composition-js/src/__tests__/compose.test.ts +++ b/composition-js/src/__tests__/compose.test.ts @@ -367,7 +367,7 @@ describe('composition', () => { url: 'https://Subgraph1', typeDefs: gql` extend schema - @link(url: "https://specs.apollo.dev/link/v0.3") + @link(url: "https://specs.apollo.dev/link/v1.0") @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key"]) type Query { @@ -388,7 +388,7 @@ describe('composition', () => { url: 'https://Subgraph2', typeDefs: gql` extend schema - @link(url: "https://specs.apollo.dev/link/v0.3") + @link(url: "https://specs.apollo.dev/link/v1.0") @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key"]) type T @key(fields: "k") { @@ -402,20 +402,11 @@ describe('composition', () => { ` } - const result = composeAsFed2Subgraphs([subgraph1, subgraph2]); + const result = composeServices([subgraph1, subgraph2]); assertCompositionSuccess(result); const [_, api, _subgraphs] = schemas(result); - expect(printSchema(api)).toMatchString(` - type Product { - sku: String! - name: String! - } - - type Query { - products: [Product!] - } - `); + expect(printSchema(api)).toMatchInlineSnapshot() }) describe('merging of type references', () => { From 5f57fc2388fb617a67cf7d9211767003456d3a8a Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Tue, 29 Mar 2022 16:01:04 -0400 Subject: [PATCH 17/33] remove printSubgraphSchema from exports --- subgraph-js/src/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/subgraph-js/src/index.ts b/subgraph-js/src/index.ts index be0617b6a..2126479df 100644 --- a/subgraph-js/src/index.ts +++ b/subgraph-js/src/index.ts @@ -1,2 +1 @@ export { buildSubgraphSchema } from './buildSubgraphSchema'; -export { printSubgraphSchema } from './printSubgraphSchema'; From de7470c53dce970c3d712982a9175ed965277a46 Mon Sep 17 00:00:00 2001 From: Sylvain Lebresne Date: Wed, 30 Mar 2022 13:14:32 +0200 Subject: [PATCH 18/33] Fix handling of core/link when definitions are provided or partially so --- composition-js/src/__tests__/compose.test.ts | 2 +- composition-js/src/merging/merge.ts | 6 +- .../src/__tests__/subgraphValidation.test.ts | 321 ++++++++++++++++++ internals-js/src/buildSchema.ts | 2 +- internals-js/src/coreSpec.ts | 110 ++++-- internals-js/src/definitions.ts | 36 +- .../src/directiveAndTypeSpecification.ts | 100 ++++-- internals-js/src/federation.ts | 70 ++-- internals-js/src/federationSpec.ts | 53 ++- internals-js/src/inaccessibleSpec.ts | 10 +- internals-js/src/joinSpec.ts | 5 +- internals-js/src/tagSpec.ts | 17 +- 12 files changed, 597 insertions(+), 135 deletions(-) diff --git a/composition-js/src/__tests__/compose.test.ts b/composition-js/src/__tests__/compose.test.ts index 80d2b6b63..f7d4af3a1 100644 --- a/composition-js/src/__tests__/compose.test.ts +++ b/composition-js/src/__tests__/compose.test.ts @@ -1323,7 +1323,7 @@ describe('composition', () => { expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['DIRECTIVE_DEFINITION_INVALID', '[subgraphA] Found invalid @tag directive definition. Please ensure the directive definition in your schema\'s definitions matches the following:\n\tdirective @tag(name: String!) repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION | ARGUMENT_DEFINITION | SCALAR | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION'], + ['DIRECTIVE_DEFINITION_INVALID', '[subgraphA] Invalid definition for directive "@tag": missing required argument "name"'], ]); }); diff --git a/composition-js/src/merging/merge.ts b/composition-js/src/merging/merge.ts index ba0e7e858..352c32ccd 100644 --- a/composition-js/src/merging/merge.ts +++ b/composition-js/src/merging/merge.ts @@ -243,7 +243,8 @@ class Merger { // pass a `as` to the methods below if necessary. However, as we currently don't propagate any subgraph directives to // the supergraph outside of a few well-known ones, we don't bother yet. linkSpec.addToSchema(this.merged); - linkSpec.applyFeatureToSchema(this.merged, joinSpec, undefined, 'EXECUTION'); + const errors = linkSpec.applyFeatureToSchema(this.merged, joinSpec, undefined, 'EXECUTION'); + assert(errors.length === 0, "We shouldn't have errors adding the join spec to the (still empty) supergraph schema"); for (const mergedInfo of MERGED_FEDERATION_DIRECTIVES) { this.validateAndMaybeAddSpec(mergedInfo); @@ -278,7 +279,8 @@ class Merger { // don't bother adding the spec to the supergraph. if (nameInSupergraph) { this.mergedFederationDirectiveNames.add(nameInSupergraph); - linkSpec.applyFeatureToSchema(this.merged, specInSupergraph, nameInSupergraph === specInSupergraph.url.name ? undefined : nameInSupergraph); + const errors = linkSpec.applyFeatureToSchema(this.merged, specInSupergraph, nameInSupergraph === specInSupergraph.url.name ? undefined : nameInSupergraph); + assert(errors.length === 0, "We shouldn't have errors adding the join spec to the (still empty) supergraph schema"); } } diff --git a/internals-js/src/__tests__/subgraphValidation.test.ts b/internals-js/src/__tests__/subgraphValidation.test.ts index 1715c2a0a..d3089700b 100644 --- a/internals-js/src/__tests__/subgraphValidation.test.ts +++ b/internals-js/src/__tests__/subgraphValidation.test.ts @@ -1,7 +1,10 @@ import { DocumentNode } from 'graphql'; import gql from 'graphql-tag'; +import { Subgraph } from '..'; import { errorCauses } from '../definitions'; import { asFed2SubgraphDocument, buildSubgraph } from "../federation" +import { defaultPrintOptions, printSchema } from '../print'; +import './matchers'; // Builds the provided subgraph (using name 'S' for the subgraph) and, if the // subgraph is invalid/has errors, return those errors as a list of [code, message]. @@ -523,3 +526,321 @@ describe('custom error message for misnamed directives', () => { ]); }); }); + +function buildAndValidate(doc: DocumentNode): Subgraph { + const name = 'S'; + return buildSubgraph(name, `http://${name}`, doc).validate(); +} + +describe('@core/@link handling', () => { + const expectedFullSchema = ` + schema + @link(url: "https://specs.apollo.dev/link/v1.0") + @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key"]) + { + query: Query + } + + directive @link(url: String!, as: String, for: link__Purpose, import: [link__Import]) repeatable on SCHEMA + + directive @key(fields: federation__FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE + + directive @federation__requires(fields: federation__FieldSet!) on FIELD_DEFINITION + + directive @federation__provides(fields: federation__FieldSet!) on FIELD_DEFINITION + + directive @federation__external on OBJECT | FIELD_DEFINITION + + directive @federation__tag(name: String!) repeatable on FIELD_DEFINITION | OBJECT | INTERFACE | UNION | ARGUMENT_DEFINITION | SCALAR | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION + + directive @federation__extends on OBJECT | INTERFACE + + directive @federation__shareable on OBJECT | FIELD_DEFINITION + + directive @federation__inaccessible on FIELD_DEFINITION | OBJECT | INTERFACE | UNION + + type T + @key(fields: "k") + { + k: ID! + } + + enum link__Purpose { + """ + \`SECURITY\` features provide metadata necessary to securely resolve fields. + """ + SECURITY + + """ + \`EXECUTION\` features provide metadata necessary for operation execution. + """ + EXECUTION + } + + scalar link__Import + + scalar federation__FieldSet + + scalar _Any + + type _Service { + sdl: String + } + + union _Entity = T + + type Query { + _entities(representations: [_Any!]!): [_Entity]! + _service: _Service + } + ` + const validateFullSchema = (subgraph: Subgraph) => { + // Note: we merge types and extensions to avoid having to care whether the @link are on a schema definition or schema extension + // as 1) this will vary (we add them to extensions in our test, but when auto-added, they are added to the schema definition) + // and 2) it doesn't matter in practice, it's valid in all cases. + expect(printSchema(subgraph.schema, { ...defaultPrintOptions, mergeTypesAndExtensions: true})).toMatchString(expectedFullSchema); + } + + it('expands everything if only the federation spec is linked', () => { + const doc = gql` + extend schema + @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key"]) + + type T @key(fields: "k") { + k: ID! + } + `; + + validateFullSchema(buildAndValidate(doc)); + }); + + it('expands definitions if both the federation spec and link spec are linked', () => { + const doc = gql` + extend schema + @link(url: "https://specs.apollo.dev/link/v1.0") + @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key"]) + + type T @key(fields: "k") { + k: ID! + } + `; + + validateFullSchema(buildAndValidate(doc)); + }); + + it('is valid if a schema is complete from the get-go', () => { + validateFullSchema(buildAndValidate(gql(expectedFullSchema))); + }); + + it('expands missing definitions when some are partially provided', () => { + const docs = [ + gql` + extend schema + @link(url: "https://specs.apollo.dev/link/v1.0") + @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key"]) + + type T @key(fields: "k") { + k: ID! + } + + directive @key(fields: federation__FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE + + scalar federation__FieldSet + + scalar link__Import + `, + gql` + extend schema + @link(url: "https://specs.apollo.dev/link/v1.0") + @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key"]) + + type T @key(fields: "k") { + k: ID! + } + + scalar link__Import + `, + gql` + extend schema + @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key"]) + + type T @key(fields: "k") { + k: ID! + } + + scalar link__Import + `, + gql` + extend schema + @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key"]) + + type T @key(fields: "k") { + k: ID! + } + + directive @federation__external on OBJECT | FIELD_DEFINITION + `, + ]; + + // Note that we cannot use `validateFullSchema` as-is for those examples because the order or directive is going + // to be different. But that's ok, we mostly care that the validation doesn't throw since validation ultimately + // calls the graphQL-js validation, so we can be somewhat sure that if something necessary wasn't expanded + // properly, we would have an issue. The main reason we did validate the full schema in prior tests is + // so we had at least one full example of a subgraph expansion in the tests. + docs.forEach((doc) => buildAndValidate(doc)); + }); + + it('allows known directives with incomplete but compatible definitions', () => { + const docs = [ + // @key has a `resolvable` argument in its full definition, but it is optional. + gql` + extend schema + @link(url: "https://specs.apollo.dev/link/v1.0") + @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key"]) + + type T @key(fields: "k") { + k: ID! + } + + directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE + + scalar federation__FieldSet + `, + // @inacessible can be put in a bunch of locations, but you're welcome to restrict yourself to just fields. + gql` + extend schema + @link(url: "https://specs.apollo.dev/link/v1.0") + @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@inaccessible"]) + + type T { + k: ID! @inaccessible + } + + directive @inaccessible on FIELD_DEFINITION + `, + // @key is repeatable, but you're welcome to restrict yourself to never repeating it. + gql` + extend schema + @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key"]) + + type T @key(fields: "k") { + k: ID! + } + + directive @key(fields: federation__FieldSet!, resolvable: Boolean = true) on OBJECT | INTERFACE + + scalar federation__FieldSet + `, + // @key `resolvable` argument is optional, but you're welcome to force users to always provide it. + gql` + extend schema + @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key"]) + + type T @key(fields: "k", resolvable: true) { + k: ID! + } + + directive @key(fields: federation__FieldSet!, resolvable: Boolean!) repeatable on OBJECT | INTERFACE + + scalar federation__FieldSet + `, + ]; + + // Like above, we really only care that the examples validate. + docs.forEach((doc) => buildAndValidate(doc)); + }); + + it('errors on invalid known directive location', () => { + const doc = gql` + extend schema + @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key"]) + + type T @key(fields: "k") { + k: ID! + } + + directive @federation__external on OBJECT | FIELD_DEFINITION | SCHEMA + `; + + // @external is not allowed on 'schema' and likely never will. + expect(buildForErrors(doc, { asFed2: false })).toStrictEqual([[ + 'DIRECTIVE_DEFINITION_INVALID', + '[S] Invalid definition for directive "@federation__external": "@federation__external" should have locations OBJECT, FIELD_DEFINITION, but found (non-subset) OBJECT, FIELD_DEFINITION, SCHEMA', + ]]); + }); + + it('errors on invalid non-repeatable directive marked repeateable', () => { + const doc = gql` + extend schema + @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key"]) + + type T @key(fields: "k") { + k: ID! + } + + directive @federation__external repeatable on OBJECT | FIELD_DEFINITION + `; + + // @external is not repeatable (and has no reason to be since it has no arguments). + expect(buildForErrors(doc, { asFed2: false })).toStrictEqual([[ + 'DIRECTIVE_DEFINITION_INVALID', + '[S] Invalid definition for directive "@federation__external": "@federation__external" should not be repeatable', + ]]); + }); + + it('errors on unknown argument of known directive', () => { + const doc = gql` + extend schema + @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key"]) + + type T @key(fields: "k") { + k: ID! + } + + directive @federation__external(foo: Int) on OBJECT | FIELD_DEFINITION + `; + + expect(buildForErrors(doc, { asFed2: false })).toStrictEqual([[ + 'DIRECTIVE_DEFINITION_INVALID', + '[S] Invalid definition for directive "@federation__external": unknown/unsupported argument "foo"', + ]]); + }); + + it('errors on invalid type for a known argument', () => { + const doc = gql` + extend schema + @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key"]) + + type T @key(fields: "k") { + k: ID! + } + + directive @key(fields: Int!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE + `; + + expect(buildForErrors(doc, { asFed2: false })).toStrictEqual([[ + 'DIRECTIVE_DEFINITION_INVALID', + '[S] Invalid definition for directive "@key": argument "fields" should have type "federation__FieldSet!" but found type "Int!"', + ]]); + }); + + it('errors on a required argument defined as optional', () => { + const doc = gql` + extend schema + @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key"]) + + type T @key(fields: "k") { + k: ID! + } + + directive @key(fields: federation__FieldSet, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE + + scalar federation__FieldSet + `; + + expect(buildForErrors(doc, { asFed2: false })).toStrictEqual([[ + 'DIRECTIVE_DEFINITION_INVALID', + '[S] Invalid definition for directive "@key": argument "fields" should have type "federation__FieldSet!" but found type "federation__FieldSet"', + ]]); + }); +}); diff --git a/internals-js/src/buildSchema.ts b/internals-js/src/buildSchema.ts index f9d3fd706..db1506621 100644 --- a/internals-js/src/buildSchema.ts +++ b/internals-js/src/buildSchema.ts @@ -89,7 +89,7 @@ export function buildSchemaFromAST( buildSchemaDefinitionInner(schemaExtension, schema.schemaDefinition, errors, schema.schemaDefinition.newExtension()); } - schema.blueprint.onDirectiveDefinitionAndSchemaParsed(schema); + errors.push(...schema.blueprint.onDirectiveDefinitionAndSchemaParsed(schema)); for (const definitionNode of documentNode.definitions) { switch (definitionNode.kind) { diff --git a/internals-js/src/coreSpec.ts b/internals-js/src/coreSpec.ts index 3d6be80d2..a38291410 100644 --- a/internals-js/src/coreSpec.ts +++ b/internals-js/src/coreSpec.ts @@ -1,6 +1,6 @@ import { ASTNode, DirectiveLocation, GraphQLError, StringValueNode } from "graphql"; import { URL } from "url"; -import { CoreFeature, Directive, DirectiveDefinition, EnumType, ErrGraphQLValidationFailed, ListType, NamedType, NonNullType, ScalarType, Schema, SchemaDefinition } from "./definitions"; +import { CoreFeature, Directive, DirectiveDefinition, EnumType, ErrGraphQLValidationFailed, InputType, ListType, NamedType, NonNullType, ScalarType, Schema, SchemaDefinition } from "./definitions"; import { sameType } from "./types"; import { err } from '@apollo/core-schema'; import { assert } from './utils'; @@ -8,6 +8,7 @@ import { ERRORS } from "./error"; import { valueToString } from "./values"; import { coreFeatureDefinitionIfKnown, registerKnownFeature } from "./knownCoreFeatures"; import { didYouMean, suggestionList } from "./suggestions"; +import { ArgumentSpecification, createDirectiveSpecification, createEnumTypeSpecification, createScalarTypeSpecification, DirectiveSpecification, TypeSpecification } from "./directiveAndTypeSpecification"; export const coreIdentity = 'https://specs.apollo.dev/core'; export const linkIdentity = 'https://specs.apollo.dev/link'; @@ -64,7 +65,7 @@ export abstract class FeatureDefinition { return nameInSchema != undefined && (directive.name === nameInSchema || directive.name.startsWith(`${nameInSchema}__`)); } - abstract addElementsToSchema(schema: Schema): void; + abstract addElementsToSchema(schema: Schema): GraphQLError[]; abstract allElementNames(): string[]; @@ -106,6 +107,14 @@ export abstract class FeatureDefinition { return schema.addDirectiveDefinition(this.directiveNameInSchema(schema, name)!); } + protected addDirectiveSpec(schema: Schema, spec: DirectiveSpecification): GraphQLError[] { + return spec.checkOrAdd(schema, this.directiveNameInSchema(schema, spec.name)); + } + + protected addTypeSpec(schema: Schema, spec: TypeSpecification): GraphQLError[] { + return spec.checkOrAdd(schema, this.typeNameInSchema(schema, spec.name)); + } + protected addScalarType(schema: Schema, name: string): ScalarType { return schema.addType(new ScalarType(this.typeNameInSchema(schema, name)!)); } @@ -288,43 +297,61 @@ export function isCoreSpecDirectiveApplication(directive: Directive ({ name, description: purposesDescription(name)})) +}); + +const linkImportTypeSpec = createScalarTypeSpecification({ name: 'Import' }); + export class CoreSpecDefinition extends FeatureDefinition { + private readonly directiveDefinitionSpec: DirectiveSpecification; + constructor(version: FeatureVersion, identity: string = linkIdentity, name: string = linkDirectiveDefaultName) { super(new FeatureUrl(identity, name, version)); + this.directiveDefinitionSpec = createDirectiveSpecification({ + name, + locations: [DirectiveLocation.SCHEMA], + repeatable: true, + argumentFct: (schema, nameInSchema) => this.createDefinitionArgumentSpecifications(schema, nameInSchema), + }); + } + + private createDefinitionArgumentSpecifications(schema: Schema, nameInSchema?: string): { args: ArgumentSpecification[], errors: GraphQLError[] } { + const args: ArgumentSpecification[] = [ + { name: this.urlArgName(), type: new NonNullType(schema.stringType()) }, + { name: 'as', type: schema.stringType() }, + ]; + if (this.supportPurposes()) { + const purposeName = `${nameInSchema ?? this.url.name}__${linkPurposeTypeSpec.name}`; + const errors = linkPurposeTypeSpec.checkOrAdd(schema, purposeName); + if (errors.length > 0) { + return { args, errors } + } + args.push({ name: 'for', type: schema.type(purposeName) as InputType }); + } + if (this.supportImport()) { + const importName = `${nameInSchema ?? this.url.name}__${linkImportTypeSpec.name}`; + const errors = linkImportTypeSpec.checkOrAdd(schema, importName); + if (errors.length > 0) { + return { args, errors } + } + args.push({ name: 'import', type: new ListType(schema.type(importName)!) }); + } + return { args, errors: [] }; } - addElementsToSchema(_: Schema): void { + addElementsToSchema(_: Schema): GraphQLError[] { // Core is special and the @core directive is added in `addToSchema` below + return []; } // TODO: we may want to allow some `import` as argument to this method. When we do, we need to watch for imports of // `Purpose` and `Import` and add the types under their imported name. - addToSchema(schema: Schema, as?: string) { - const existing = schema.coreFeatures; - if (existing) { - if (existing.coreItself.url.identity === this.identity) { - // Already exists with the same version, let it be. - return; - } else { - throw buildError(`Cannot add feature ${this} to the schema, it already uses ${existing.coreItself.url}`); - } - } - - const nameInSchema = as ?? this.url.name; - const core = schema.addDirectiveDefinition(nameInSchema).addLocations(DirectiveLocation.SCHEMA); - core.repeatable = true; - core.addArgument(this.urlArgName(), new NonNullType(schema.stringType())); - core.addArgument('as', schema.stringType()); - if (this.supportPurposes()) { - const purposeEnum = schema.addType(new EnumType(`${nameInSchema}__Purpose`)); - for (const purpose of corePurposes) { - purposeEnum.addValue(purpose).description = purposesDescription(purpose); - } - core.addArgument('for', purposeEnum); - } - if (this.supportImport()) { - const importType = schema.addType(new ScalarType(`${nameInSchema}__Import`)); - core.addArgument('import', new ListType(importType)); + addToSchema(schema: Schema, as?: string): GraphQLError[] { + const errors = this.addDefinitionsToSchema(schema, as); + if (errors.length > 0) { + return errors; } // Note: we don't use `applyFeatureToSchema` because it would complain the schema is not a core schema, which it isn't @@ -333,7 +360,25 @@ export class CoreSpecDefinition extends FeatureDefinition { if (as) { args.as = as; } - schema.schemaDefinition.applyDirective(nameInSchema, args); + schema.schemaDefinition.applyDirective(as ?? this.url.name, args, true); + return []; + } + + addDefinitionsToSchema(schema: Schema, as?: string): GraphQLError[] { + const existingCore = schema.coreFeatures; + if (existingCore) { + if (existingCore.coreItself.url.identity === this.identity) { + // Already exists with the same version, let it be. + return []; + } else { + return [ERRORS.INVALID_LINK_DIRECTIVE_USAGE.err({ + message: `Cannot add feature ${this} to the schema, it already uses ${existingCore.coreItself.url}` + })]; + } + } + + const nameInSchema = as ?? this.url.name; + return this.directiveDefinitionSpec.checkOrAdd(schema, nameInSchema); } /** @@ -381,7 +426,7 @@ export class CoreSpecDefinition extends FeatureDefinition { return feature.url.version; } - applyFeatureToSchema(schema: Schema, feature: FeatureDefinition, as?: string, purpose?: CorePurpose) { + applyFeatureToSchema(schema: Schema, feature: FeatureDefinition, as?: string, purpose?: CorePurpose): GraphQLError[] { const coreDirective = this.coreDirective(schema); const args = { [this.urlArgName()]: feature.toString(), @@ -391,8 +436,9 @@ export class CoreSpecDefinition extends FeatureDefinition { args.for = purpose; } schema.schemaDefinition.applyDirective(coreDirective, args); - feature.addElementsToSchema(schema); + return feature.addElementsToSchema(schema); } + extractFeatureUrl(args: CoreOrLinkDirectiveArgs): FeatureUrl { return FeatureUrl.parse(args[this.urlArgName()]!); } diff --git a/internals-js/src/definitions.ts b/internals-js/src/definitions.ts index 2803fb776..89287c0e2 100644 --- a/internals-js/src/definitions.ts +++ b/internals-js/src/definitions.ts @@ -493,7 +493,8 @@ export abstract class SchemaElement applyDirective( nameOrDefOrDirective: Directive | DirectiveDefinition | string, - args?: TApplicationArgs + args?: TApplicationArgs, + asFirstDirective: boolean = false, ): Directive { let toAdd: Directive; if (nameOrDefOrDirective instanceof Directive) { @@ -506,13 +507,16 @@ export abstract class SchemaElement let name: string; if (typeof nameOrDefOrDirective === 'string') { this.checkUpdate(); - const def = this.schema().directive(nameOrDefOrDirective) ?? this.schema().blueprint.onMissingDirectiveDefinition(this.schema(), nameOrDefOrDirective); + const def = this.schema().directive(nameOrDefOrDirective) ?? this.schema().blueprint.onMissingDirectiveDefinition(this.schema(), nameOrDefOrDirective, args); if (!def) { throw this.schema().blueprint.onGraphQLJSValidationError( this.schema(), new GraphQLError(`Unknown directive "@${nameOrDefOrDirective}".`) ); } + if (Array.isArray(def)) { + throw ErrGraphQLValidationFailed(def); + } name = nameOrDefOrDirective; } else { this.checkUpdate(nameOrDefOrDirective); @@ -522,7 +526,11 @@ export abstract class SchemaElement Element.prototype['setParent'].call(toAdd, this); } // TODO: we should typecheck arguments or our TApplicationArgs business is just a lie. - this._appliedDirectives.push(toAdd); + if (asFirstDirective) { + this._appliedDirectives.unshift(toAdd); + } else { + this._appliedDirectives.push(toAdd); + } DirectiveDefinition.prototype['addReferencer'].call(toAdd.definition!, toAdd); this.onModification(); return toAdd; @@ -829,13 +837,14 @@ abstract class BaseExtensionMember extends } export class SchemaBlueprint { - onMissingDirectiveDefinition(_schema: Schema, _name: string): DirectiveDefinition | undefined { + onMissingDirectiveDefinition(_schema: Schema, _name: string, _args?: {[key: string]: any}): DirectiveDefinition | GraphQLError[] | undefined { // No-op by default, but used for federation. return undefined; } - onDirectiveDefinitionAndSchemaParsed(_: Schema) { + onDirectiveDefinitionAndSchemaParsed(_: Schema): GraphQLError[] { // No-op by default, but used for federation. + return []; } ignoreParsedField(_type: NamedType, _fieldName: string): boolean { @@ -1015,22 +1024,22 @@ const graphQLBuiltInDirectivesSpecifications: readonly DirectiveSpecification[] createDirectiveSpecification({ name: 'include', locations: [DirectiveLocation.FIELD, DirectiveLocation.FRAGMENT_SPREAD, DirectiveLocation.INLINE_FRAGMENT], - argumentFct: (schema) => [{ name: 'if', type: new NonNullType(schema.booleanType()) }] + argumentFct: (schema) => ({ args: [{ name: 'if', type: new NonNullType(schema.booleanType()) }], errors: [] }) }), createDirectiveSpecification({ name: 'skip', locations: [DirectiveLocation.FIELD, DirectiveLocation.FRAGMENT_SPREAD, DirectiveLocation.INLINE_FRAGMENT], - argumentFct: (schema) => [{ name: 'if', type: new NonNullType(schema.booleanType()) }] + argumentFct: (schema) => ({ args: [{ name: 'if', type: new NonNullType(schema.booleanType()) }], errors: [] }) }), createDirectiveSpecification({ name: 'deprecated', locations: [DirectiveLocation.FIELD_DEFINITION, DirectiveLocation.ENUM_VALUE, DirectiveLocation.ARGUMENT_DEFINITION, DirectiveLocation.INPUT_FIELD_DEFINITION], - argumentFct: (schema) => [{ name: 'reason', type: schema.stringType(), defaultValue: 'No longer supported' }] + argumentFct: (schema) => ({ args: [{ name: 'reason', type: schema.stringType(), defaultValue: 'No longer supported' }], errors: [] }) }), createDirectiveSpecification({ name: 'specifiedBy', locations: [DirectiveLocation.SCALAR], - argumentFct: (schema) => [{ name: 'url', type: new NonNullType(schema.stringType()) }] + argumentFct: (schema) => ({ args: [{ name: 'url', type: new NonNullType(schema.stringType()) }], errors: [] }) }), ]; @@ -1484,9 +1493,10 @@ export class SchemaDefinition extends SchemaElement { applyDirective( nameOrDefOrDirective: Directive | DirectiveDefinition | string, - args?: TApplicationArgs + args?: TApplicationArgs, + asFirstDirective: boolean = false, ): Directive { - const applied = super.applyDirective(nameOrDefOrDirective, args) as Directive; + const applied = super.applyDirective(nameOrDefOrDirective, args, asFirstDirective) as Directive; const schema = this.schema(); const coreFeatures = schema.coreFeatures; if (isCoreSpecDirectiveApplication(applied)) { @@ -1499,6 +1509,10 @@ export class SchemaDefinition extends SchemaElement { const imports = extractCoreFeatureImports(url, schemaDirective); const core = new CoreFeature(url, args.as ?? url.name, schemaDirective, imports, args.for); Schema.prototype['markAsCoreSchema'].call(schema, core); + // We also any core features that may have been added before we saw the @link for link itself + this.appliedDirectives + .filter((a) => a !== applied) + .forEach((other) => CoreFeatures.prototype['maybeAddFeature'].call(schema.coreFeatures, other)); } else if (coreFeatures) { CoreFeatures.prototype['maybeAddFeature'].call(coreFeatures, applied); } diff --git a/internals-js/src/directiveAndTypeSpecification.ts b/internals-js/src/directiveAndTypeSpecification.ts index 0671bc3ed..965d2f1ce 100644 --- a/internals-js/src/directiveAndTypeSpecification.ts +++ b/internals-js/src/directiveAndTypeSpecification.ts @@ -1,8 +1,10 @@ -import { DirectiveLocation, GraphQLError } from "graphql"; +import { ASTNode, DirectiveLocation, GraphQLError } from "graphql"; import { ArgumentDefinition, DirectiveDefinition, + EnumType, InputType, + isEnumType, isNonNullType, isObjectType, isUnionType, @@ -49,13 +51,16 @@ export function createDirectiveSpecification({ name: string, locations: DirectiveLocation[], repeatable?: boolean, - argumentFct?: (schema: Schema) => ArgumentSpecification[], + argumentFct?: (schema: Schema, nameInSchema?: string) => { args: ArgumentSpecification[], errors: GraphQLError[] }, }): DirectiveSpecification { return { name, checkOrAdd: (schema: Schema, nameInSchema?: string, asBuiltIn?: boolean) => { - const args = argumentFct ? argumentFct(schema) : []; const actualName = nameInSchema ?? name; + const {args, errors} = argumentFct ? argumentFct(schema, actualName) : { args: [], errors: []}; + if (errors.length > 0) { + return errors; + } const existing = schema.directive(actualName); if (existing) { return ensureSameDirectiveStructure({name: actualName, locations, repeatable, args}, existing); @@ -131,7 +136,7 @@ export function createObjectTypeSpecification({ errors = errors.concat(ensureSameArguments( { name, args }, existingField, - `field ${existingField.coordinate}`, + `field "${existingField.coordinate}"`, )); } return errors; @@ -198,6 +203,44 @@ export function createUnionTypeSpecification({ } } +export function createEnumTypeSpecification({ + name, + values, +}: { + name: string, + values: { name: string, description?: string}[], +}): TypeSpecification { + return { + name, + checkOrAdd: (schema: Schema, nameInSchema?: string, asBuiltIn?: boolean) => { + const actualName = nameInSchema ?? name; + const existing = schema.type(actualName); + const expectedValueNames = values.map((v) => v.name).sort((n1, n2) => n1.localeCompare(n2)); + if (existing) { + let errors = ensureSameTypeKind('EnumType', existing); + if (errors.length > 0) { + return errors; + } + assert(isEnumType(existing), 'Should be an enum type'); + const actualValueNames = existing.values.map(v => v.name).sort((n1, n2) => n1.localeCompare(n2)); + if (!arrayEquals(expectedValueNames, actualValueNames)) { + errors = errors.concat(ERRORS.TYPE_DEFINITION_INVALID.err({ + message: `Invalid definition of type ${name}: expected values [${expectedValueNames}] but found [${actualValueNames}].`, + nodes: existing.sourceAST + })); + } + return errors; + } else { + const type = schema.addType(new EnumType(actualName, asBuiltIn)); + for (const {name, description} of values) { + type.addValue(name).description = description; + } + return []; + } + }, + } +} + function ensureSameTypeKind(expected: NamedType['kind'], actual: NamedType): GraphQLError[] { return expected === actual.kind ? [] @@ -216,18 +259,19 @@ function ensureSameDirectiveStructure( }, actual: DirectiveDefinition, ): GraphQLError[] { - let errors = ensureSameArguments(expected, actual, `directive ${expected}`); + const directiveName = `"@${expected.name}"` + let errors = ensureSameArguments(expected, actual, `directive ${directiveName}`); // It's ok to say you'll never repeat a repeatable directive. It's not ok to repeat one that isn't. if (!expected.repeatable && actual.repeatable) { errors = errors.concat(ERRORS.DIRECTIVE_DEFINITION_INVALID.err({ - message: `Invalid definition for directive ${expected}: ${expected} should${expected.repeatable ? "" : " not"} be repeatable`, + message: `Invalid definition for directive ${directiveName}: ${directiveName} should${expected.repeatable ? "" : " not"} be repeatable`, nodes: actual.sourceAST })); } // Similarly, it's ok to say that you will never use a directive in some locations, but not that you will use it in places not allowed by what is expected. if (!actual.locations.every(loc => expected.locations.includes(loc))) { errors = errors.concat(ERRORS.DIRECTIVE_DEFINITION_INVALID.err({ - message: `Invalid efinition for directive ${expected}: ${expected} should have locations ${expected.locations.join(', ')}, but found (non-subset) ${actual.locations.join(', ')}`, + message: `Invalid definition for directive ${directiveName}: ${directiveName} should have locations ${expected.locations.join(', ')}, but found (non-subset) ${actual.locations.join(', ')}`, nodes: actual.sourceAST })); } @@ -241,17 +285,24 @@ function ensureSameArguments( }, actual: { argument(name: string): ArgumentDefinition | undefined, arguments(): readonly ArgumentDefinition[] }, what: string, + containerSourceAST?: ASTNode, ): GraphQLError[] { const expectedArguments = expected.args ?? []; - const foundArguments = actual.arguments(); - if (expectedArguments.length !== foundArguments.length) { - return [ERRORS.DIRECTIVE_DEFINITION_INVALID.err({ - message: `Invalid definition for ${what}: should have ${expectedArguments.length} arguments but ${foundArguments.length} found`, - })]; - } - let errors: GraphQLError[] = []; + const errors: GraphQLError[] = []; for (const { name, type, defaultValue } of expectedArguments) { - const actualArgument = actual.argument(name)!; + const actualArgument = actual.argument(name); + if (!actualArgument) { + // Not declaring an optional argument is ok: that means you won't be able to pass a non-default value in your schema, but we allow you that. + // But missing a required argument it not ok. + if (isNonNullType(type) && defaultValue === undefined) { + errors.push(ERRORS.DIRECTIVE_DEFINITION_INVALID.err({ + message: `Invalid definition for ${what}: missing required argument "${name}"`, + nodes: containerSourceAST + })); + } + continue; + } + let actualType = actualArgument.type!; if (isNonNullType(actualType) && !isNonNullType(type)) { // It's ok to redefine an optional argument as mandatory. For instance, if you want to force people on your team to provide a "deprecation reason", you can @@ -260,13 +311,22 @@ function ensureSameArguments( actualType = actualType.ofType; } if (!sameType(type, actualType)) { - errors = errors.concat(ERRORS.DIRECTIVE_DEFINITION_INVALID.err({ - message: `Invalid definition of ${what}: ${name} should have type ${type} but found type ${actualArgument.type!}`, + errors.push(ERRORS.DIRECTIVE_DEFINITION_INVALID.err({ + message: `Invalid definition for ${what}: argument "${name}" should have type "${type}" but found type "${actualArgument.type!}"`, nodes: actualArgument.sourceAST })); - } else if (!isNonNullType(actualType) && !valueEquals(defaultValue, actualArgument.defaultValue)) { - errors = errors.concat(ERRORS.DIRECTIVE_DEFINITION_INVALID.err({ - message: `Invalid definition of ${what}: ${name} should have default value ${valueToString(defaultValue)} but found default value ${valueToString(actualArgument.defaultValue)}`, + } else if (!isNonNullType(actualArgument.type!) && !valueEquals(defaultValue, actualArgument.defaultValue)) { + errors.push(ERRORS.DIRECTIVE_DEFINITION_INVALID.err({ + message: `Invalid definition for ${what}: argument "${name}" should have default value ${valueToString(defaultValue)} but found default value ${valueToString(actualArgument.defaultValue)}`, + nodes: actualArgument.sourceAST + })); + } + } + for (const actualArgument of actual.arguments()) { + // If it's an expect argument, we already validated it. But we still need to reject unkown argument. + if (!expectedArguments.some((arg) => arg.name === actualArgument.name)) { + errors.push(ERRORS.DIRECTIVE_DEFINITION_INVALID.err({ + message: `Invalid definition for ${what}: unknown/unsupported argument "${actualArgument.name}"`, nodes: actualArgument.sourceAST })); } diff --git a/internals-js/src/federation.ts b/internals-js/src/federation.ts index 0eda99d02..1f1fe9914 100644 --- a/internals-js/src/federation.ts +++ b/internals-js/src/federation.ts @@ -71,8 +71,6 @@ import { externalDirectiveSpec, extendsDirectiveSpec, shareableDirectiveSpec, - tagDirectiveSpec, - inaccessibleDirectiveSpec, FEDERATION2_SPEC_DIRECTIVES, ALL_FEDERATION_DIRECTIVES_DEFAULT_NAMES, FEDERATION2_ONLY_SPEC_DIRECTIVES, @@ -80,6 +78,7 @@ import { import { defaultPrintOptions, PrintOptions as PrintOptions, printSchema } from "./print"; import { createObjectTypeSpecification, createScalarTypeSpecification, createUnionTypeSpecification } from "./directiveAndTypeSpecification"; import { didYouMean, suggestionList } from "./suggestions"; +import { inaccessibleDirectiveSpec } from "./inaccessibleSpec"; const linkSpec = LINK_VERSIONS.latest(); const tagSpec = TAG_VERSIONS.latest(); @@ -555,7 +554,7 @@ export class FederationMetadata { } tagDirective(): DirectiveDefinition<{name: string}> { - return this.getFederationDirective(tagDirectiveSpec.name); + return this.getFederationDirective(tagSpec.tagDirectiveSpec.name); } inaccessibleDirective(): DirectiveDefinition<{}> { @@ -618,12 +617,14 @@ export class FederationBlueprint extends SchemaBlueprint { } } - onMissingDirectiveDefinition(schema: Schema, name: string): DirectiveDefinition | undefined { + onMissingDirectiveDefinition(schema: Schema, name: string, args?: {[key: string]: any}): DirectiveDefinition | GraphQLError[] | undefined { if (name === linkDirectiveDefaultName) { - linkSpec.addToSchema(schema); - return schema.directive(name); + const url = args && (args['url'] as string | undefined); + const as = url && url.startsWith(linkSpec.identity) ? (args['as'] as string | undefined) : undefined; + const errors = linkSpec.addDefinitionsToSchema(schema, as); + return errors.length > 0 ? errors : schema.directive(name); } - return super.onMissingDirectiveDefinition(schema, name); + return super.onMissingDirectiveDefinition(schema, name, args); } ignoreParsedField(type: NamedType, fieldName: string): boolean { @@ -648,8 +649,8 @@ export class FederationBlueprint extends SchemaBlueprint { } } - onDirectiveDefinitionAndSchemaParsed(schema: Schema) { - completeSubgraphSchema(schema); + onDirectiveDefinitionAndSchemaParsed(schema: Schema): GraphQLError[] { + return completeSubgraphSchema(schema); } onInvalidation(schema: Schema) { @@ -788,7 +789,6 @@ export class FederationBlueprint extends SchemaBlueprint { const federationFeature = metadata.federationFeature(); assert(federationFeature, 'Fed2 subgraph _must_ link to the federation feature') const directiveNameInSchema = federationFeature.directiveNameInSchema(unknownDirectiveName); - console.log(`For ${unknownDirectiveName}, name in schema = ${directiveNameInSchema}`); if (directiveNameInSchema.startsWith(federationFeature.nameInSchema + '__')) { // There is no import for that directive return withModifiedErrorMessage( @@ -851,7 +851,10 @@ export function setSchemaAsFed2Subgraph(schema: Schema) { assert(spec.url.version.satisfies(linkSpec.version), `Fed2 schema must use @link with version >= 1.0, but schema uses ${spec.url}`); } else { const alias = findUnusedNamedForLinkDirective(schema); - linkSpec.addToSchema(schema, alias); + const errors = linkSpec.addToSchema(schema, alias); + if (errors.length > 0) { + throw ErrGraphQLValidationFailed(errors); + } spec = linkSpec; core = schema.coreFeatures; assert(core, 'Schema should now be a core schema'); @@ -865,7 +868,10 @@ export function setSchemaAsFed2Subgraph(schema: Schema) { import: FEDERATION2_SPEC_DIRECTIVES.map((spec) => `@${spec.name}`), } ); - completeSubgraphSchema(schema); + const errors = completeSubgraphSchema(schema); + if (errors.length > 0) { + throw ErrGraphQLValidationFailed(errors); + } } // This is the full @link declaration as added by `asFed2SubgraphDocument`. It's here primarily for uses by tests that print and match @@ -961,22 +967,25 @@ export function newEmptyFederation2Schema(): Schema { return schema; } -function completeSubgraphSchema(schema: Schema) { +function completeSubgraphSchema(schema: Schema): GraphQLError[] { const coreFeatures = schema.coreFeatures; if (coreFeatures) { const fedFeature = coreFeatures.getByIdentity(federationIdentity); if (fedFeature) { - completeFed2SubgraphSchema(schema); + return completeFed2SubgraphSchema(schema); } else { - completeFed1SubgraphSchema(schema); + return completeFed1SubgraphSchema(schema); } } else { const fedLink = schema.schemaDefinition.appliedDirectivesOf(linkDirectiveDefaultName).find(isFedSpecLinkDirective); if (fedLink) { - linkSpec.addToSchema(schema); - completeFed2SubgraphSchema(schema); + const errors = linkSpec.addToSchema(schema); + if (errors.length > 0) { + return errors; + } + return completeFed2SubgraphSchema(schema); } else { - completeFed1SubgraphSchema(schema); + return completeFed1SubgraphSchema(schema); } } } @@ -986,15 +995,16 @@ function isFedSpecLinkDirective(directive: Directive): directi return directive.name === linkDirectiveDefaultName && args['url'] && (args['url'] as string).startsWith(federationIdentity); } -function completeFed1SubgraphSchema(schema: Schema) { - fieldSetTypeSpec.checkOrAdd(schema, '_' + fieldSetTypeSpec.name); - - keyDirectiveSpec.checkOrAdd(schema); - requiresDirectiveSpec.checkOrAdd(schema); - providesDirectiveSpec.checkOrAdd(schema); - extendsDirectiveSpec.checkOrAdd(schema); - externalDirectiveSpec.checkOrAdd(schema); - tagDirectiveSpec.checkOrAdd(schema); +function completeFed1SubgraphSchema(schema: Schema): GraphQLError[] { + return [ + fieldSetTypeSpec.checkOrAdd(schema, '_' + fieldSetTypeSpec.name), + keyDirectiveSpec.checkOrAdd(schema), + requiresDirectiveSpec.checkOrAdd(schema), + providesDirectiveSpec.checkOrAdd(schema), + extendsDirectiveSpec.checkOrAdd(schema), + externalDirectiveSpec.checkOrAdd(schema), + tagSpec.tagDirectiveSpec.checkOrAdd(schema), + ].flat(); } function completeFed2SubgraphSchema(schema: Schema) { @@ -1006,13 +1016,13 @@ function completeFed2SubgraphSchema(schema: Schema) { const spec = FEDERATION_VERSIONS.find(fedFeature.url.version); if (!spec) { - throw ERRORS.UNKNOWN_FEDERATION_LINK_VERSION.err({ + return [ERRORS.UNKNOWN_FEDERATION_LINK_VERSION.err({ message: `Invalid version ${fedFeature.url.version} for the federation feature in @link direction on schema`, nodes: fedFeature.directive.sourceAST - }); + })]; } - spec.addElementsToSchema(schema); + return spec.addElementsToSchema(schema); } export function parseFieldSetArgument({ diff --git a/internals-js/src/federationSpec.ts b/internals-js/src/federationSpec.ts index e8597b2e3..98be4039c 100644 --- a/internals-js/src/federationSpec.ts +++ b/internals-js/src/federationSpec.ts @@ -9,12 +9,12 @@ import { createDirectiveSpecification, createScalarTypeSpecification, } from "./directiveAndTypeSpecification"; -import { DirectiveLocation } from "graphql"; +import { DirectiveLocation, GraphQLError } from "graphql"; import { assert } from "./utils"; import { TAG_VERSIONS } from "./tagSpec"; import { federationMetadata } from "./federation"; import { registerKnownFeature } from "./knownCoreFeatures"; -import { inaccessibleLocations } from "./inaccessibleSpec"; +import { inaccessibleDirectiveSpec } from "./inaccessibleSpec"; export const federationIdentity = 'https://specs.apollo.dev/federation'; @@ -24,10 +24,13 @@ export const keyDirectiveSpec = createDirectiveSpecification({ name:'key', locations: [DirectiveLocation.OBJECT, DirectiveLocation.INTERFACE], repeatable: true, - argumentFct: (schema) => [ - fieldsArgument(schema), - { name: 'resolvable', type: schema.booleanType(), defaultValue: true }, - ] + argumentFct: (schema) => ({ + args: [ + fieldsArgument(schema), + { name: 'resolvable', type: schema.booleanType(), defaultValue: true }, + ], + errors: [], + }), }); export const extendsDirectiveSpec = createDirectiveSpecification({ @@ -43,17 +46,19 @@ export const externalDirectiveSpec = createDirectiveSpecification({ export const requiresDirectiveSpec = createDirectiveSpecification({ name:'requires', locations: [DirectiveLocation.FIELD_DEFINITION], - argumentFct: (schema) => { - return [fieldsArgument(schema)]; - } + argumentFct: (schema) => ({ + args: [fieldsArgument(schema)], + errors: [], + }), }); export const providesDirectiveSpec = createDirectiveSpecification({ name:'provides', locations: [DirectiveLocation.FIELD_DEFINITION], - argumentFct: (schema) => { - return [fieldsArgument(schema)]; - } + argumentFct: (schema) => ({ + args: [fieldsArgument(schema)], + errors: [], + }), }); export const shareableDirectiveSpec = createDirectiveSpecification({ @@ -61,20 +66,6 @@ export const shareableDirectiveSpec = createDirectiveSpecification({ locations: [DirectiveLocation.OBJECT, DirectiveLocation.FIELD_DEFINITION], }); -export const tagDirectiveSpec = createDirectiveSpecification({ - name:'tag', - locations: TAG_VERSIONS.latest().tagLocations, - repeatable: true, - argumentFct: (schema) => { - return [{ name: 'name', type: new NonNullType(schema.stringType()) }]; - } -}); - -export const inaccessibleDirectiveSpec = createDirectiveSpecification({ - name:'inaccessible', - locations: inaccessibleLocations, -}); - function fieldsArgument(schema: Schema): ArgumentSpecification { return { name: 'fields', type: fieldSetType(schema) }; } @@ -96,7 +87,7 @@ export const FEDERATION2_SPEC_DIRECTIVES = [ requiresDirectiveSpec, providesDirectiveSpec, externalDirectiveSpec, - tagDirectiveSpec, + TAG_VERSIONS.latest().tagDirectiveSpec, extendsDirectiveSpec, // TODO: should we stop supporting that? ...FEDERATION2_ONLY_SPEC_DIRECTIVES, ]; @@ -115,15 +106,17 @@ export class FederationSpecDefinition extends FeatureDefinition { super(new FeatureUrl(federationIdentity, 'federation', version)); } - addElementsToSchema(schema: Schema) { + addElementsToSchema(schema: Schema): GraphQLError[] { const feature = this.featureInSchema(schema); assert(feature, 'The federation specification should have been added to the schema before this is called'); - fieldSetTypeSpec.checkOrAdd(schema, feature.typeNameInSchema(fieldSetTypeSpec.name)); + let errors: GraphQLError[] = []; + errors = errors.concat(this.addTypeSpec(schema, fieldSetTypeSpec)); for (const directive of FEDERATION2_SPEC_DIRECTIVES) { - directive.checkOrAdd(schema, feature.directiveNameInSchema(directive.name)); + errors = errors.concat(this.addDirectiveSpec(schema, directive)); } + return errors; } allElementNames(): string[] { diff --git a/internals-js/src/inaccessibleSpec.ts b/internals-js/src/inaccessibleSpec.ts index 3d00d82ff..64318d30b 100644 --- a/internals-js/src/inaccessibleSpec.ts +++ b/internals-js/src/inaccessibleSpec.ts @@ -11,6 +11,7 @@ import { import { GraphQLError, DirectiveLocation } from "graphql"; import { registerKnownFeature } from "./knownCoreFeatures"; import { ERRORS } from "./error"; +import { createDirectiveSpecification } from "./directiveAndTypeSpecification"; export const inaccessibleIdentity = 'https://specs.apollo.dev/inaccessible'; @@ -21,13 +22,18 @@ export const inaccessibleLocations = [ DirectiveLocation.UNION, ]; +export const inaccessibleDirectiveSpec = createDirectiveSpecification({ + name: 'inaccessible', + locations: [...inaccessibleLocations], +}); + export class InaccessibleSpecDefinition extends FeatureDefinition { constructor(version: FeatureVersion) { super(new FeatureUrl(inaccessibleIdentity, 'inaccessible', version)); } - addElementsToSchema(schema: Schema) { - this.addDirective(schema, 'inaccessible').addLocations(...inaccessibleLocations); + addElementsToSchema(schema: Schema): GraphQLError[] { + return this.addDirectiveSpec(schema, inaccessibleDirectiveSpec); } inaccessibleDirective(schema: Schema): DirectiveDefinition> { diff --git a/internals-js/src/joinSpec.ts b/internals-js/src/joinSpec.ts index 7782f5877..e47dc6e17 100644 --- a/internals-js/src/joinSpec.ts +++ b/internals-js/src/joinSpec.ts @@ -1,4 +1,4 @@ -import { DirectiveLocation } from 'graphql'; +import { DirectiveLocation, GraphQLError } from 'graphql'; import { FeatureDefinition, FeatureDefinitions, FeatureUrl, FeatureVersion } from "./coreSpec"; import { DirectiveDefinition, @@ -39,7 +39,7 @@ export class JoinSpecDefinition extends FeatureDefinition { return this.version.equals(new FeatureVersion(0, 1)); } - addElementsToSchema(schema: Schema) { + addElementsToSchema(schema: Schema): GraphQLError[] { const joinGraph = this.addDirective(schema, 'graph').addLocations(DirectiveLocation.ENUM_VALUE); joinGraph.addArgument('name', new NonNullType(schema.stringType())); joinGraph.addArgument('url', new NonNullType(schema.stringType())); @@ -89,6 +89,7 @@ export class JoinSpecDefinition extends FeatureDefinition { const joinOwner = this.addDirective(schema, 'owner').addLocations(DirectiveLocation.OBJECT); joinOwner.addArgument('graph', new NonNullType(graphEnum)); } + return []; } allElementNames(): string[] { diff --git a/internals-js/src/tagSpec.ts b/internals-js/src/tagSpec.ts index c77b71d01..60550a11d 100644 --- a/internals-js/src/tagSpec.ts +++ b/internals-js/src/tagSpec.ts @@ -1,6 +1,7 @@ import { DirectiveLocation, GraphQLError } from "graphql"; import { FeatureDefinition, FeatureDefinitions, FeatureUrl, FeatureVersion } from "./coreSpec"; import { DirectiveDefinition, NonNullType, Schema } from "./definitions"; +import { createDirectiveSpecification, DirectiveSpecification } from "./directiveAndTypeSpecification"; import { ERRORS } from "./error"; import { registerKnownFeature } from "./knownCoreFeatures"; import { sameType } from "./types"; @@ -9,6 +10,7 @@ export const tagIdentity = 'https://specs.apollo.dev/tag'; export class TagSpecDefinition extends FeatureDefinition { public readonly tagLocations: DirectiveLocation[]; + public readonly tagDirectiveSpec: DirectiveSpecification; private readonly printedTagDefinition: string; constructor(version: FeatureVersion) { @@ -31,16 +33,23 @@ export class TagSpecDefinition extends FeatureDefinition { ); this.printedTagDefinition = 'directive @tag(name: String!) repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION | ARGUMENT_DEFINITION | SCALAR | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION'; } + this.tagDirectiveSpec = createDirectiveSpecification({ + name:'tag', + locations: this.tagLocations, + repeatable: true, + argumentFct: (schema) => ({ + args: [{ name: 'name', type: new NonNullType(schema.stringType()) }], + errors: [], + }), + }); } private isV01() { return this.version.equals(new FeatureVersion(0, 1)); } - addElementsToSchema(schema: Schema) { - const directive = this.addDirective(schema, 'tag').addLocations(...this.tagLocations); - directive.repeatable = true; - directive.addArgument("name", new NonNullType(schema.stringType())); + addElementsToSchema(schema: Schema): GraphQLError[] { + return this.addDirectiveSpec(schema, this.tagDirectiveSpec); } tagDirective(schema: Schema): DirectiveDefinition<{name: string}> { From 5e00cd2555ddd0d536902420cc5dd5d041ca9773 Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Wed, 30 Mar 2022 19:22:04 -0400 Subject: [PATCH 19/33] support link v0.3 --- internals-js/src/coreSpec.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/internals-js/src/coreSpec.ts b/internals-js/src/coreSpec.ts index a38291410..352103ef5 100644 --- a/internals-js/src/coreSpec.ts +++ b/internals-js/src/coreSpec.ts @@ -692,6 +692,7 @@ export const CORE_VERSIONS = new FeatureDefinitions(coreIden .add(new CoreSpecDefinition(new FeatureVersion(0, 2), coreIdentity, 'core')); export const LINK_VERSIONS = new FeatureDefinitions(linkIdentity) + .add(new CoreSpecDefinition(new FeatureVersion(0, 3))) .add(new CoreSpecDefinition(new FeatureVersion(1, 0))); registerKnownFeature(CORE_VERSIONS); From 1daa2afced813dcedb4aaabe52dab1f1cb10ffb2 Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Wed, 30 Mar 2022 19:27:32 -0400 Subject: [PATCH 20/33] fix commit change markers --- package-lock.json | 4 ---- subgraph-js/package.json | 4 ---- subgraph-js/src/federation-atlas.ts | 6 ++---- 3 files changed, 2 insertions(+), 12 deletions(-) diff --git a/package-lock.json b/package-lock.json index dfb5dfed8..df1e88f03 100644 --- a/package-lock.json +++ b/package-lock.json @@ -19845,11 +19845,7 @@ "@apollo/core-schema": "apollographql/core-schema-js#v0.3" }, "engines": { -<<<<<<< HEAD "node": ">=12.13.0" -======= - "node": ">=12.13.0 <18.0" ->>>>>>> pcmanus/fix-expanding-core }, "peerDependencies": { "graphql": "^16.0.0" diff --git a/subgraph-js/package.json b/subgraph-js/package.json index f1ca43c42..e276cd3d3 100644 --- a/subgraph-js/package.json +++ b/subgraph-js/package.json @@ -18,11 +18,7 @@ "author": "Apollo ", "license": "MIT", "engines": { -<<<<<<< HEAD - "node": ">=12.13.0" -======= "node": ">=12.13.0 <18.0" ->>>>>>> pcmanus/fix-expanding-core }, "dependencies": { "@apollo/core-schema": "apollographql/core-schema-js#v0.3" diff --git a/subgraph-js/src/federation-atlas.ts b/subgraph-js/src/federation-atlas.ts index 73b0baddb..658413dd3 100644 --- a/subgraph-js/src/federation-atlas.ts +++ b/subgraph-js/src/federation-atlas.ts @@ -46,12 +46,10 @@ export const ATLAS = Atlas.fromSchemas( Schema.basic(gql `${'builtin/link/v0.3.graphql'} @id(url: "https://specs.apollo.dev/link/v0.3") - directive @link(url: Url!, as: Name, import: Imports) + directive @link(url: String!, as: String, import: [Import]) repeatable on SCHEMA - scalar Url - scalar Name - scalar Imports + scalar Import `), Schema.basic(gql `${'builtin/id/v1.0.graphql'} From 2198bef291c130f66d86f85eef0f98960c03cc6a Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Wed, 30 Mar 2022 19:50:50 -0400 Subject: [PATCH 21/33] tests passing --- composition-js/src/__tests__/compose.test.ts | 888 +++++++++++------- .../src/__tests__/buildSubgraphSchema.test.ts | 64 +- .../src/__tests__/subgraphCore.test.ts | 72 +- subgraph-js/src/federation-atlas.ts | 4 +- 4 files changed, 602 insertions(+), 426 deletions(-) diff --git a/composition-js/src/__tests__/compose.test.ts b/composition-js/src/__tests__/compose.test.ts index e30a49f54..6dd88d140 100644 --- a/composition-js/src/__tests__/compose.test.ts +++ b/composition-js/src/__tests__/compose.test.ts @@ -1,17 +1,40 @@ -import { asFed2SubgraphDocument, assert, buildSchema, buildSubgraph, extractSubgraphsFromSupergraph, FEDERATION2_LINK_WTH_FULL_IMPORTS, isObjectType, ObjectType, printSchema, Schema, ServiceDefinition, Subgraphs } from '@apollo/federation-internals'; -import { CompositionResult, composeServices, CompositionSuccess } from '../compose'; -import gql from 'graphql-tag'; -import './matchers'; -import { print } from 'graphql'; - -function assertCompositionSuccess(r: CompositionResult): asserts r is CompositionSuccess { +import { + asFed2SubgraphDocument, + assert, + buildSchema, + buildSubgraph, + extractSubgraphsFromSupergraph, + FEDERATION2_LINK_WTH_FULL_IMPORTS, + isObjectType, + ObjectType, + printSchema, + Schema, + ServiceDefinition, + Subgraphs, +} from "@apollo/federation-internals"; +import { + CompositionResult, + composeServices, + CompositionSuccess, +} from "../compose"; +import gql from "graphql-tag"; +import "./matchers"; +import { print } from "graphql"; + +function assertCompositionSuccess( + r: CompositionResult +): asserts r is CompositionSuccess { if (r.errors) { - throw new Error(`Expected composition to succeed but got errors:\n${r.errors.join('\n\n')}`); + throw new Error( + `Expected composition to succeed but got errors:\n${r.errors.join( + "\n\n" + )}` + ); } } function errors(r: CompositionResult): [string, string][] { - return r.errors?.map(e => [e.extensions.code as string, e.message]) ?? []; + return r.errors?.map((e) => [e.extensions.code as string, e.message]) ?? []; } // Returns [the supergraph schema, its api schema, the extracted subgraphs] @@ -24,22 +47,24 @@ function schemas(result: CompositionSuccess): [Schema, Schema, Subgraphs] { // Note that tests for composition involving fed1 subgraph are in `composeFed1Subgraphs.test.ts` so all the test of this // file are on fed2 subgraphs, but to avoid needing to add the proper `@link(...)` everytime, we inject it here automatically. -export function composeAsFed2Subgraphs(services: ServiceDefinition[]): CompositionResult { +export function composeAsFed2Subgraphs( + services: ServiceDefinition[] +): CompositionResult { return composeServices(services.map((s) => asFed2Service(s))); } export function asFed2Service(service: ServiceDefinition): ServiceDefinition { return { ...service, - typeDefs: asFed2SubgraphDocument(service.typeDefs) + typeDefs: asFed2SubgraphDocument(service.typeDefs), }; } -describe('composition', () => { - it('generates a valid supergraph', () => { +describe("composition", () => { + it("generates a valid supergraph", () => { const subgraph1 = { - name: 'Subgraph1', - url: 'https://Subgraph1', + name: "Subgraph1", + url: "https://Subgraph1", typeDefs: gql` type Query { t: T @@ -48,20 +73,20 @@ describe('composition', () => { type T @key(fields: "k") { k: ID } - ` - } + `, + }; const subgraph2 = { - name: 'Subgraph2', - url: 'https://Subgraph2', + name: "Subgraph2", + url: "https://Subgraph2", typeDefs: gql` type T @key(fields: "k") { k: ID a: Int b: String } - ` - } + `, + }; const result = composeAsFed2Subgraphs([subgraph1, subgraph2]); assertCompositionSuccess(result); @@ -134,11 +159,11 @@ describe('composition', () => { b: String } `); - }) + }); - it('preserves descriptions', () => { + it("preserves descriptions", () => { const subgraph1 = { - name: 'Subgraph1', + name: "Subgraph1", typeDefs: gql` "A cool schema" schema { @@ -151,16 +176,13 @@ describe('composition', () => { """ type Query { "Returns tea" - t( - "An argument that is very important" - x: String! - ): String + t("An argument that is very important" x: String!): String } - ` - } + `, + }; const subgraph2 = { - name: 'Subgraph2', + name: "Subgraph2", typeDefs: gql` "An enum" enum E { @@ -169,8 +191,8 @@ describe('composition', () => { "The B value" B } - ` - } + `, + }; const result = composeAsFed2Subgraphs([subgraph1, subgraph2]); assertCompositionSuccess(result); @@ -203,9 +225,9 @@ describe('composition', () => { ): String } `); - }) + }); - it('include types from different subgraphs', () => { + it("include types from different subgraphs", () => { const subgraphA = { typeDefs: gql` type Query { @@ -217,7 +239,7 @@ describe('composition', () => { name: String! } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -227,7 +249,7 @@ describe('composition', () => { email: String! } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); @@ -251,7 +273,7 @@ describe('composition', () => { } `); - expect(subgraphs.get('subgraphA')!.toString()).toMatchString(` + expect(subgraphs.get("subgraphA")!.toString()).toMatchString(` schema @link(url: "https://specs.apollo.dev/link/v1.0") ${FEDERATION2_LINK_WTH_FULL_IMPORTS} @@ -269,7 +291,7 @@ describe('composition', () => { } `); - expect(subgraphs.get('subgraphB')!.toString()).toMatchString(` + expect(subgraphs.get("subgraphB")!.toString()).toMatchString(` schema @link(url: "https://specs.apollo.dev/link/v1.0") ${FEDERATION2_LINK_WTH_FULL_IMPORTS} @@ -296,7 +318,7 @@ describe('composition', () => { name: String! @external } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -306,7 +328,7 @@ describe('composition', () => { name: String! @shareable } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); @@ -325,7 +347,7 @@ describe('composition', () => { `); // Of course, the federation directives should be rebuilt in the extracted subgraphs. - expect(subgraphs.get('subgraphA')!.toString()).toMatchString(` + expect(subgraphs.get("subgraphA")!.toString()).toMatchString(` schema @link(url: "https://specs.apollo.dev/link/v1.0") ${FEDERATION2_LINK_WTH_FULL_IMPORTS} @@ -345,7 +367,7 @@ describe('composition', () => { } `); - expect(subgraphs.get('subgraphB')!.toString()).toMatchString(` + expect(subgraphs.get("subgraphB")!.toString()).toMatchString(` schema @link(url: "https://specs.apollo.dev/link/v1.0") ${FEDERATION2_LINK_WTH_FULL_IMPORTS} @@ -362,10 +384,10 @@ describe('composition', () => { `); }); - it('composes core subgraphs', () => { + it("composes core subgraphs", () => { const subgraph1 = { - name: 'Subgraph1', - url: 'https://Subgraph1', + name: "Subgraph1", + url: "https://Subgraph1", typeDefs: gql` extend schema @link(url: "https://specs.apollo.dev/link/v1.0") @@ -379,17 +401,17 @@ describe('composition', () => { k: ID } - directive @key(fields: federation__FieldSet) on OBJECT + directive @key(fields: federation__FieldSet!) on OBJECT scalar federation__FieldSet - ` - } + `, + }; const subgraph2 = { - name: 'Subgraph2', - url: 'https://Subgraph2', + name: "Subgraph2", + url: "https://Subgraph2", typeDefs: gql` extend schema - @link(url: "https://specs.apollo.dev/link/v1.0") + @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key"]) type T @key(fields: "k") { @@ -398,23 +420,33 @@ describe('composition', () => { b: String } - directive @key(fields: federation__FieldSet) on OBJECT + directive @key(fields: federation__FieldSet!) on OBJECT scalar federation__FieldSet - ` - } + `, + }; const result = composeServices([subgraph1, subgraph2]); assertCompositionSuccess(result); const [_, api, _subgraphs] = schemas(result); - expect(printSchema(api)).toMatchInlineSnapshot() - }) + expect(printSchema(api)).toMatchInlineSnapshot(` + "type Query { + t: T + } + + type T { + k: ID + a: Int + b: String + }" + `); + }); - describe('merging of type references', () => { - describe('for field types', () => { - it('errors on incompatible types', () => { + describe("merging of type references", () => { + describe("for field types", () => { + it("errors on incompatible types", () => { const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { T: T! @@ -428,7 +460,7 @@ describe('composition', () => { }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` type T @key(fields: "id") { id: ID! @@ -440,13 +472,16 @@ describe('composition', () => { const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['FIELD_TYPE_MISMATCH', 'Field "T.f" has incompatible types across subgraphs: it has type "String" in subgraph "subgraphA" but type "Int" in subgraph "subgraphB"'] + [ + "FIELD_TYPE_MISMATCH", + 'Field "T.f" has incompatible types across subgraphs: it has type "String" in subgraph "subgraphA" but type "Int" in subgraph "subgraphB"', + ], ]); }); - it('errors on incompatible types with @external', () => { + it("errors on incompatible types with @external", () => { const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { T: T! @provides(fields: "f") @@ -460,7 +495,7 @@ describe('composition', () => { }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` type T @key(fields: "id") { id: ID! @@ -472,13 +507,16 @@ describe('composition', () => { const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['EXTERNAL_TYPE_MISMATCH', 'Field "T.f" has incompatible types across subgraphs (where marked @external): it has type "Int" in subgraph "subgraphB" but type "String" in subgraph "subgraphA"'], + [ + "EXTERNAL_TYPE_MISMATCH", + 'Field "T.f" has incompatible types across subgraphs (where marked @external): it has type "Int" in subgraph "subgraphB" but type "String" in subgraph "subgraphA"', + ], ]); }); - it('errors on merging a list type with a non-list version', () => { + it("errors on merging a list type with a non-list version", () => { const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { T: T! @@ -492,7 +530,7 @@ describe('composition', () => { }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` type T @key(fields: "id") { id: ID! @@ -504,13 +542,16 @@ describe('composition', () => { const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['FIELD_TYPE_MISMATCH', 'Field "T.f" has incompatible types across subgraphs: it has type "String" in subgraph "subgraphA" but type "[String]" in subgraph "subgraphB"'] + [ + "FIELD_TYPE_MISMATCH", + 'Field "T.f" has incompatible types across subgraphs: it has type "String" in subgraph "subgraphA" but type "[String]" in subgraph "subgraphB"', + ], ]); }); - it('merges nullable and non-nullable', () => { + it("merges nullable and non-nullable", () => { const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { T: T! @@ -524,7 +565,7 @@ describe('composition', () => { }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` type T @key(fields: "id") { id: ID! @@ -550,9 +591,9 @@ describe('composition', () => { `); }); - it('merges interface subtypes', () => { + it("merges interface subtypes", () => { const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { T: T! @@ -580,7 +621,7 @@ describe('composition', () => { }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` type A @shareable { a: Int @@ -625,18 +666,22 @@ describe('composition', () => { `); // Making sure we properly extract the type of `f` for both subgraphs - const fInA = (subgraphs.get('subgraphA')!.schema.type('T')! as ObjectType).field('f'); + const fInA = ( + subgraphs.get("subgraphA")!.schema.type("T")! as ObjectType + ).field("f"); expect(fInA).toBeDefined(); - expect(fInA?.type?.toString()).toBe('I'); + expect(fInA?.type?.toString()).toBe("I"); - const fInB = (subgraphs.get('subgraphB')!.schema.type('T')! as ObjectType).field('f'); + const fInB = ( + subgraphs.get("subgraphB")!.schema.type("T")! as ObjectType + ).field("f"); expect(fInB).toBeDefined(); - expect(fInB?.type?.toString()).toBe('A'); + expect(fInB?.type?.toString()).toBe("A"); }); - it('merges union subtypes', () => { + it("merges union subtypes", () => { const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { T: T! @@ -660,7 +705,7 @@ describe('composition', () => { }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` type A @shareable { a: Int @@ -700,20 +745,24 @@ describe('composition', () => { `); // Making sur we properly extract the type of `f` for both subgraphs - const fInA = (subgraphs.get('subgraphA')!.schema.type('T')! as ObjectType).field('f'); + const fInA = ( + subgraphs.get("subgraphA")!.schema.type("T")! as ObjectType + ).field("f"); expect(fInA).toBeDefined(); - expect(fInA?.type?.toString()).toBe('U'); + expect(fInA?.type?.toString()).toBe("U"); - const fInB = (subgraphs.get('subgraphB')!.schema.type('T')! as ObjectType).field('f'); + const fInB = ( + subgraphs.get("subgraphB")!.schema.type("T")! as ObjectType + ).field("f"); expect(fInB).toBeDefined(); - expect(fInB?.type?.toString()).toBe('A'); + expect(fInB?.type?.toString()).toBe("A"); }); - it('merges complex subtypes', () => { + it("merges complex subtypes", () => { // This example merge types that differs both on interface subtyping // and on nullability const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { T: T! @@ -741,7 +790,7 @@ describe('composition', () => { }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` type A @shareable { a: Int @@ -786,20 +835,24 @@ describe('composition', () => { `); // Making sur we properly extract the type of `f` for both subgraphs - const fInA = (subgraphs.get('subgraphA')!.schema.type('T')! as ObjectType).field('f'); + const fInA = ( + subgraphs.get("subgraphA")!.schema.type("T")! as ObjectType + ).field("f"); expect(fInA).toBeDefined(); - expect(fInA?.type?.toString()).toBe('I'); + expect(fInA?.type?.toString()).toBe("I"); - const fInB = (subgraphs.get('subgraphB')!.schema.type('T')! as ObjectType).field('f'); + const fInB = ( + subgraphs.get("subgraphB")!.schema.type("T")! as ObjectType + ).field("f"); expect(fInB).toBeDefined(); - expect(fInB?.type?.toString()).toBe('A!'); + expect(fInB?.type?.toString()).toBe("A!"); }); - it('merges subtypes within lists', () => { + it("merges subtypes within lists", () => { // This example merge types that differs both on interface subtyping // and on nullability const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { T: T! @@ -827,7 +880,7 @@ describe('composition', () => { }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` type A @shareable { a: Int @@ -872,20 +925,24 @@ describe('composition', () => { `); // Making sur we properly extract the type of `f` for both subgraphs - const fInA = (subgraphs.get('subgraphA')!.schema.type('T')! as ObjectType).field('f'); + const fInA = ( + subgraphs.get("subgraphA")!.schema.type("T")! as ObjectType + ).field("f"); expect(fInA).toBeDefined(); - expect(fInA?.type?.toString()).toBe('[I]'); + expect(fInA?.type?.toString()).toBe("[I]"); - const fInB = (subgraphs.get('subgraphB')!.schema.type('T')! as ObjectType).field('f'); + const fInB = ( + subgraphs.get("subgraphB")!.schema.type("T")! as ObjectType + ).field("f"); expect(fInB).toBeDefined(); - expect(fInB?.type?.toString()).toBe('[A!]'); + expect(fInB?.type?.toString()).toBe("[A!]"); }); - it('merges subtypes within non-nullable', () => { + it("merges subtypes within non-nullable", () => { // This example merge types that differs both on interface subtyping // and on nullability const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { T: T! @@ -913,7 +970,7 @@ describe('composition', () => { }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` type A @shareable { a: Int @@ -958,18 +1015,22 @@ describe('composition', () => { `); // Making sur we properly extract the type of `f` for both subgraphs - const fInA = (subgraphs.get('subgraphA')!.schema.type('T')! as ObjectType).field('f'); + const fInA = ( + subgraphs.get("subgraphA")!.schema.type("T")! as ObjectType + ).field("f"); expect(fInA).toBeDefined(); - expect(fInA?.type?.toString()).toBe('I!'); + expect(fInA?.type?.toString()).toBe("I!"); - const fInB = (subgraphs.get('subgraphB')!.schema.type('T')! as ObjectType).field('f'); + const fInB = ( + subgraphs.get("subgraphB")!.schema.type("T")! as ObjectType + ).field("f"); expect(fInB).toBeDefined(); - expect(fInB?.type?.toString()).toBe('A!'); + expect(fInB?.type?.toString()).toBe("A!"); }); - it('errors on incompatible input field types', () => { + it("errors on incompatible input field types", () => { const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { q: String @@ -982,7 +1043,7 @@ describe('composition', () => { }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` input T { f: Int @@ -993,13 +1054,16 @@ describe('composition', () => { const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['FIELD_TYPE_MISMATCH', 'Field "T.f" has incompatible types across subgraphs: it has type "String" in subgraph "subgraphA" but type "Int" in subgraph "subgraphB"'], + [ + "FIELD_TYPE_MISMATCH", + 'Field "T.f" has incompatible types across subgraphs: it has type "String" in subgraph "subgraphA" but type "Int" in subgraph "subgraphB"', + ], ]); }); - it('errors on incompatible input field types', () => { + it("errors on incompatible input field types", () => { const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { q: String @@ -1012,7 +1076,7 @@ describe('composition', () => { }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` input T { f: Int = 1 @@ -1023,16 +1087,18 @@ describe('composition', () => { const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['INPUT_FIELD_DEFAULT_MISMATCH', 'Input field "T.f" has incompatible default values across subgraphs: it has default value 0 in subgraph "subgraphA" but default value 1 in subgraph "subgraphB"'], + [ + "INPUT_FIELD_DEFAULT_MISMATCH", + 'Input field "T.f" has incompatible default values across subgraphs: it has default value 0 in subgraph "subgraphA" but default value 1 in subgraph "subgraphB"', + ], ]); }); - }); - describe('for arguments', () => { - it('errors on incompatible types', () => { + describe("for arguments", () => { + it("errors on incompatible types", () => { const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { T: T! @@ -1040,13 +1106,13 @@ describe('composition', () => { type T @key(fields: "id") { id: ID! - f(x: Int): Int @shareable + f(x: Int): Int @shareable } `, }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` type T @key(fields: "id") { id: ID! @@ -1058,13 +1124,16 @@ describe('composition', () => { const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['FIELD_ARGUMENT_TYPE_MISMATCH', 'Argument "T.f(x:)" has incompatible types across subgraphs: it has type "Int" in subgraph "subgraphA" but type "String" in subgraph "subgraphB"'] + [ + "FIELD_ARGUMENT_TYPE_MISMATCH", + 'Argument "T.f(x:)" has incompatible types across subgraphs: it has type "Int" in subgraph "subgraphA" but type "String" in subgraph "subgraphB"', + ], ]); }); - it('errors on missing arguments to @external declaration', () => { + it("errors on missing arguments to @external declaration", () => { const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { T: T! @provides(fields: "f") @@ -1078,7 +1147,7 @@ describe('composition', () => { }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` type T @key(fields: "id") { id: ID! @@ -1090,13 +1159,16 @@ describe('composition', () => { const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['EXTERNAL_ARGUMENT_MISSING', 'Field "T.f" is missing argument "T.f(x:)" in some subgraphs where it is marked @external: argument "T.f(x:)" is declared in subgraph "subgraphB" but not in subgraph "subgraphA" (where "T.f" is @external).'], + [ + "EXTERNAL_ARGUMENT_MISSING", + 'Field "T.f" is missing argument "T.f(x:)" in some subgraphs where it is marked @external: argument "T.f(x:)" is declared in subgraph "subgraphB" but not in subgraph "subgraphA" (where "T.f" is @external).', + ], ]); }); - it('errors on incompatible argument types in @external declaration', () => { + it("errors on incompatible argument types in @external declaration", () => { const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { T: T! @@ -1114,7 +1186,7 @@ describe('composition', () => { }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` type T @key(fields: "id") { id: ID! @@ -1126,13 +1198,16 @@ describe('composition', () => { const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['EXTERNAL_ARGUMENT_TYPE_MISMATCH', 'Argument "T.f(x:)" has incompatible types across subgraphs (where "T.f" is marked @external): it has type "Int" in subgraph "subgraphB" but type "String" in subgraph "subgraphA"'], + [ + "EXTERNAL_ARGUMENT_TYPE_MISMATCH", + 'Argument "T.f(x:)" has incompatible types across subgraphs (where "T.f" is marked @external): it has type "Int" in subgraph "subgraphB" but type "String" in subgraph "subgraphA"', + ], ]); }); - it('errors on incompatible argument default', () => { + it("errors on incompatible argument default", () => { const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { T: T! @@ -1146,7 +1221,7 @@ describe('composition', () => { }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` type T @key(fields: "id") { id: ID! @@ -1158,13 +1233,16 @@ describe('composition', () => { const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['FIELD_ARGUMENT_DEFAULT_MISMATCH', 'Argument "T.f(x:)" has incompatible default values across subgraphs: it has default value 0 in subgraph "subgraphA" but default value 1 in subgraph "subgraphB"'], + [ + "FIELD_ARGUMENT_DEFAULT_MISMATCH", + 'Argument "T.f(x:)" has incompatible default values across subgraphs: it has default value 0 in subgraph "subgraphA" but default value 1 in subgraph "subgraphB"', + ], ]); }); - it('errors on incompatible argument default in @external declaration', () => { + it("errors on incompatible argument default in @external declaration", () => { const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { T: T! @@ -1182,7 +1260,7 @@ describe('composition', () => { }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` type T @key(fields: "id") { id: ID! @@ -1194,13 +1272,16 @@ describe('composition', () => { const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['EXTERNAL_ARGUMENT_DEFAULT_MISMATCH', 'Argument "T.f(x:)" has incompatible defaults across subgraphs (where "T.f" is marked @external): it has default value 1 in subgraph "subgraphB" but no default value in subgraph "subgraphA"'], + [ + "EXTERNAL_ARGUMENT_DEFAULT_MISMATCH", + 'Argument "T.f(x:)" has incompatible defaults across subgraphs (where "T.f" is marked @external): it has default value 1 in subgraph "subgraphB" but no default value in subgraph "subgraphA"', + ], ]); }); - it('errors on merging a list type with a non-list version', () => { + it("errors on merging a list type with a non-list version", () => { const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { T: T! @@ -1214,7 +1295,7 @@ describe('composition', () => { }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` type T @key(fields: "id") { id: ID! @@ -1226,13 +1307,16 @@ describe('composition', () => { const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['FIELD_ARGUMENT_TYPE_MISMATCH', 'Argument "T.f(x:)" has incompatible types across subgraphs: it has type "String" in subgraph "subgraphA" but type "[String]" in subgraph "subgraphB"'] + [ + "FIELD_ARGUMENT_TYPE_MISMATCH", + 'Argument "T.f(x:)" has incompatible types across subgraphs: it has type "String" in subgraph "subgraphA" but type "[String]" in subgraph "subgraphB"', + ], ]); }); - it('merges nullable and non-nullable', () => { + it("merges nullable and non-nullable", () => { const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { T: T! @@ -1246,7 +1330,7 @@ describe('composition', () => { }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` type T @key(fields: "id") { id: ID! @@ -1272,11 +1356,11 @@ describe('composition', () => { `); }); - it('merges subtypes within lists', () => { + it("merges subtypes within lists", () => { // This example merge types that differs both on interface subtyping // and on nullability const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { T: T! @@ -1290,7 +1374,7 @@ describe('composition', () => { }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` type T @key(fields: "id") { id: ID! @@ -1318,15 +1402,15 @@ describe('composition', () => { }); }); - describe('merge validations', () => { - it('errors when a subgraph is invalid', () => { + describe("merge validations", () => { + it("errors when a subgraph is invalid", () => { const subgraphA = { typeDefs: gql` type Query { a: A } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -1335,18 +1419,18 @@ describe('composition', () => { b: Int } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['INVALID_GRAPHQL', '[subgraphA] Unknown type A'], + ["INVALID_GRAPHQL", "[subgraphA] Unknown type A"], ]); }); - it('errors when the @tag definition is invalid', () => { + it("errors when the @tag definition is invalid", () => { const subgraphA = { typeDefs: gql` type Query { @@ -1355,7 +1439,7 @@ describe('composition', () => { directive @tag on ENUM_VALUE `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -1364,14 +1448,17 @@ describe('composition', () => { b: Int } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['DIRECTIVE_DEFINITION_INVALID', '[subgraphA] Invalid definition for directive "@tag": missing required argument "name"'], + [ + "DIRECTIVE_DEFINITION_INVALID", + '[subgraphA] Invalid definition for directive "@tag": missing required argument "name"', + ], ]); }); @@ -1382,7 +1469,7 @@ describe('composition', () => { a: String } `, - name: '_', + name: "_", }; const subgraphB = { @@ -1391,25 +1478,28 @@ describe('composition', () => { b: Int } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['INVALID_SUBGRAPH_NAME', '[_] Invalid name _ for a subgraph: this name is reserved'], + [ + "INVALID_SUBGRAPH_NAME", + "[_] Invalid name _ for a subgraph: this name is reserved", + ], ]); }); - it('reject if no subgraphs have a query', () => { + it("reject if no subgraphs have a query", () => { const subgraphA = { typeDefs: gql` type A { a: Int } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -1418,18 +1508,21 @@ describe('composition', () => { b: Int } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['NO_QUERIES', 'No queries found in any subgraph: a supergraph must have a query root type.'], + [ + "NO_QUERIES", + "No queries found in any subgraph: a supergraph must have a query root type.", + ], ]); }); - it('reject a type defined with different kinds in different subgraphs', () => { + it("reject a type defined with different kinds in different subgraphs", () => { const subgraphA = { typeDefs: gql` type Query { @@ -1440,7 +1533,7 @@ describe('composition', () => { a: Int } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -1449,25 +1542,28 @@ describe('composition', () => { b: Int } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['TYPE_KIND_MISMATCH', 'Type "A" has mismatched kind: it is defined as Object Type in subgraph "subgraphA" but Interface Type in subgraph "subgraphB"'], + [ + "TYPE_KIND_MISMATCH", + 'Type "A" has mismatched kind: it is defined as Object Type in subgraph "subgraphA" but Interface Type in subgraph "subgraphB"', + ], ]); }); - it('errors if an @external field is not defined in any other subgraph', () => { + it("errors if an @external field is not defined in any other subgraph", () => { const subgraphA = { typeDefs: gql` type Query { q: String } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -1481,25 +1577,28 @@ describe('composition', () => { f: Int @external } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['EXTERNAL_MISSING_ON_BASE', 'Field "A.f" is marked @external on all the subgraphs in which it is listed (subgraph "subgraphB").'], + [ + "EXTERNAL_MISSING_ON_BASE", + 'Field "A.f" is marked @external on all the subgraphs in which it is listed (subgraph "subgraphB").', + ], ]); }); - it('errors if a mandatory argument is not in all subgraphs', () => { + it("errors if a mandatory argument is not in all subgraphs", () => { const subgraphA = { typeDefs: gql` type Query { q(a: Int!): String @shareable } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -1508,21 +1607,23 @@ describe('composition', () => { q: String @shareable } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['REQUIRED_ARGUMENT_MISSING_IN_SOME_SUBGRAPH', - 'Argument "Query.q(a:)" is required in some subgraphs but does not appear in all subgraphs: it is required in subgraph "subgraphA" but does not appear in subgraph "subgraphB"'] + [ + "REQUIRED_ARGUMENT_MISSING_IN_SOME_SUBGRAPH", + 'Argument "Query.q(a:)" is required in some subgraphs but does not appear in all subgraphs: it is required in subgraph "subgraphA" but does not appear in subgraph "subgraphB"', + ], ]); }); }); - describe('post-merge validation', () => { - it('errors if a type does not implement one of its interface post-merge', () => { + describe("post-merge validation", () => { + it("errors if a type does not implement one of its interface post-merge", () => { const subgraphA = { typeDefs: gql` type Query { @@ -1538,7 +1639,7 @@ describe('composition', () => { b: Int } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -1551,18 +1652,21 @@ describe('composition', () => { b: Int } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['INTERFACE_FIELD_NO_IMPLEM', 'Interface field "I.a" is declared in subgraph \"subgraphA\" but type "B", which implements "I" only in subgraph \"subgraphB\" does not have field "a".'], + [ + "INTERFACE_FIELD_NO_IMPLEM", + 'Interface field "I.a" is declared in subgraph "subgraphA" but type "B", which implements "I" only in subgraph "subgraphB" does not have field "a".', + ], ]); - }) + }); - it('errors if a type does not implement one of its interface post-merge with interface on interface', () => { + it("errors if a type does not implement one of its interface post-merge with interface on interface", () => { const subgraphA = { typeDefs: gql` type Query { @@ -1583,7 +1687,7 @@ describe('composition', () => { b: Int } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -1596,22 +1700,25 @@ describe('composition', () => { b: Int } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['INTERFACE_FIELD_NO_IMPLEM', 'Interface field "J.a" is declared in subgraph \"subgraphA\" but type "B", which implements "J" only in subgraph \"subgraphB\" does not have field "a".'], + [ + "INTERFACE_FIELD_NO_IMPLEM", + 'Interface field "J.a" is declared in subgraph "subgraphA" but type "B", which implements "J" only in subgraph "subgraphB" does not have field "a".', + ], ]); - }) + }); }); - describe('merging of directives', () => { - it('propagates graphQL built-in directives', () => { + describe("merging of directives", () => { + it("propagates graphQL built-in directives", () => { const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { a: String @shareable @deprecated(reason: "bad") @@ -1620,7 +1727,7 @@ describe('composition', () => { }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` type Query { a: String @shareable @@ -1639,9 +1746,9 @@ describe('composition', () => { `); }); - it('merges graphQL built-in directives', () => { + it("merges graphQL built-in directives", () => { const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { a: String @shareable @deprecated(reason: "bad") @@ -1650,7 +1757,7 @@ describe('composition', () => { }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` type Query { a: String @shareable @deprecated(reason: "bad") @@ -1669,9 +1776,9 @@ describe('composition', () => { `); }); - it('errors on incompatible non-repeatable (built-in) directives', () => { + it("errors on incompatible non-repeatable (built-in) directives", () => { const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { a: String @shareable @deprecated(reason: "bad") @@ -1680,7 +1787,7 @@ describe('composition', () => { }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` type Query { a: String @shareable @deprecated @@ -1692,14 +1799,16 @@ describe('composition', () => { expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['NON_REPEATABLE_DIRECTIVE_ARGUMENTS_MISMATCH', - 'Non-repeatable directive @deprecated is applied to "Query.a" in multiple subgraphs but with incompatible arguments: it uses arguments {reason: "bad"} in subgraph "subgraphA" but no arguments in subgraph "subgraphB"'], + [ + "NON_REPEATABLE_DIRECTIVE_ARGUMENTS_MISMATCH", + 'Non-repeatable directive @deprecated is applied to "Query.a" in multiple subgraphs but with incompatible arguments: it uses arguments {reason: "bad"} in subgraph "subgraphA" but no arguments in subgraph "subgraphB"', + ], ]); }); - it('propagates graphQL built-in directives even if redefined in the subgarph', () => { + it("propagates graphQL built-in directives even if redefined in the subgarph", () => { const subgraphA = { - name: 'subgraphA', + name: "subgraphA", typeDefs: gql` type Query { a: String @deprecated @@ -1712,7 +1821,7 @@ describe('composition', () => { }; const subgraphB = { - name: 'subgraphB', + name: "subgraphB", typeDefs: gql` type Query { b: String @@ -1733,7 +1842,7 @@ describe('composition', () => { }); }); - it('is not broken by similar field argument signatures (#1100)', () => { + it("is not broken by similar field argument signatures (#1100)", () => { // This test is about validating the case from https://github.com/apollographql/federation/issues/1100 is fixed. const subgraphA = { @@ -1747,7 +1856,7 @@ describe('composition', () => { b(x: Int): Int } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -1757,7 +1866,7 @@ describe('composition', () => { b(x: Int): Int } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); @@ -1779,7 +1888,7 @@ describe('composition', () => { // We have specific validation tests in `validation_errors.test.ts` but this one test // just check the associated error code is correct (since we check most composition error // codes in this file) - it('use the proper error code for composition validation errors', () => { + it("use the proper error code for composition validation errors", () => { const subgraphA = { typeDefs: gql` type Query { @@ -1790,7 +1899,7 @@ describe('composition', () => { x: Int } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -1800,13 +1909,15 @@ describe('composition', () => { y: Int } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); - expect(errors(result).map(([code]) => code)).toStrictEqual(['SATISFIABILITY_ERROR']); + expect(errors(result).map(([code]) => code)).toStrictEqual([ + "SATISFIABILITY_ERROR", + ]); expect(errors(result).map(([_, msg]) => msg)).toMatchStringArray([ ` The following supergraph API query: @@ -1819,12 +1930,12 @@ describe('composition', () => { - from subgraph "subgraphA": - cannot find field "A.y". - cannot move to subgraph "subgraphB", which has field "A.y", because type "A" has no @key defined in subgraph "subgraphB". - `], - ); + `, + ]); }); - describe('field sharing', () => { - it ('errors if a non-shareable fields are shared in "value types"', () => { + describe("field sharing", () => { + it('errors if a non-shareable fields are shared in "value types"', () => { const subgraphA = { typeDefs: gql` type Query { @@ -1837,7 +1948,7 @@ describe('composition', () => { z: Int } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -1847,19 +1958,25 @@ describe('composition', () => { z: Int @shareable } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['INVALID_FIELD_SHARING', 'Non-shareable field "A.x" is resolved from multiple subgraphs: it is resolved from subgraphs "subgraphA" and "subgraphB" and defined as non-shareable in all of them'], - ['INVALID_FIELD_SHARING', 'Non-shareable field "A.z" is resolved from multiple subgraphs: it is resolved from subgraphs "subgraphA" and "subgraphB" and defined as non-shareable in subgraph "subgraphA"'], + [ + "INVALID_FIELD_SHARING", + 'Non-shareable field "A.x" is resolved from multiple subgraphs: it is resolved from subgraphs "subgraphA" and "subgraphB" and defined as non-shareable in all of them', + ], + [ + "INVALID_FIELD_SHARING", + 'Non-shareable field "A.z" is resolved from multiple subgraphs: it is resolved from subgraphs "subgraphA" and "subgraphB" and defined as non-shareable in subgraph "subgraphA"', + ], ]); }); - it ('errors if a non-shareable fields are shared in an "entity type"', () => { + it('errors if a non-shareable fields are shared in an "entity type"', () => { const subgraphA = { typeDefs: gql` type Query { @@ -1872,7 +1989,7 @@ describe('composition', () => { z: Int } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -1882,25 +1999,28 @@ describe('composition', () => { z: Int @shareable } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['INVALID_FIELD_SHARING', 'Non-shareable field "A.z" is resolved from multiple subgraphs: it is resolved from subgraphs "subgraphA" and "subgraphB" and defined as non-shareable in subgraph "subgraphA"'], + [ + "INVALID_FIELD_SHARING", + 'Non-shareable field "A.z" is resolved from multiple subgraphs: it is resolved from subgraphs "subgraphA" and "subgraphB" and defined as non-shareable in subgraph "subgraphA"', + ], ]); }); - it ('errors if a query is shared without @shareable', () => { + it("errors if a query is shared without @shareable", () => { const subgraphA = { typeDefs: gql` type Query { me: String } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -1909,18 +2029,21 @@ describe('composition', () => { me: String } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['INVALID_FIELD_SHARING', 'Non-shareable field "Query.me" is resolved from multiple subgraphs: it is resolved from subgraphs "subgraphA" and "subgraphB" and defined as non-shareable in all of them'], + [ + "INVALID_FIELD_SHARING", + 'Non-shareable field "Query.me" is resolved from multiple subgraphs: it is resolved from subgraphs "subgraphA" and "subgraphB" and defined as non-shareable in all of them', + ], ]); }); - it ('errors if provided fields are not marked @shareable', () => { + it("errors if provided fields are not marked @shareable", () => { const subgraphA = { typeDefs: gql` type Query { @@ -1934,7 +2057,7 @@ describe('composition', () => { c: Int } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -1950,19 +2073,25 @@ describe('composition', () => { d: Int } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['INVALID_FIELD_SHARING', 'Non-shareable field "E.a" is resolved from multiple subgraphs: it is resolved from subgraphs "subgraphA" and "subgraphB" and defined as non-shareable in subgraph "subgraphA"'], - ['INVALID_FIELD_SHARING', 'Non-shareable field "E.c" is resolved from multiple subgraphs: it is resolved from subgraphs "subgraphA" and "subgraphB" and defined as non-shareable in subgraph "subgraphA"'], + [ + "INVALID_FIELD_SHARING", + 'Non-shareable field "E.a" is resolved from multiple subgraphs: it is resolved from subgraphs "subgraphA" and "subgraphB" and defined as non-shareable in subgraph "subgraphA"', + ], + [ + "INVALID_FIELD_SHARING", + 'Non-shareable field "E.c" is resolved from multiple subgraphs: it is resolved from subgraphs "subgraphA" and "subgraphB" and defined as non-shareable in subgraph "subgraphA"', + ], ]); }); - it ('applies @shareable on type only to the field within the definition', () => { + it("applies @shareable on type only to the field within the definition", () => { const subgraphA = { typeDefs: gql` type Query { @@ -1978,7 +2107,7 @@ describe('composition', () => { b: Int } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -1989,7 +2118,7 @@ describe('composition', () => { b: Int } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); @@ -1998,12 +2127,15 @@ describe('composition', () => { // subgraph, so this should _not_ compose. expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['INVALID_FIELD_SHARING', 'Non-shareable field "E.b" is resolved from multiple subgraphs: it is resolved from subgraphs "subgraphA" and "subgraphB" and defined as non-shareable in subgraph "subgraphA"'], + [ + "INVALID_FIELD_SHARING", + 'Non-shareable field "E.b" is resolved from multiple subgraphs: it is resolved from subgraphs "subgraphA" and "subgraphB" and defined as non-shareable in subgraph "subgraphA"', + ], ]); }); }); - it('handles renamed federation directives', () => { + it("handles renamed federation directives", () => { const subgraphA = { typeDefs: gql` extend schema @link( @@ -2022,7 +2154,7 @@ describe('composition', () => { age: Int! @gimme(fields: "birthdate") } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -2037,7 +2169,7 @@ describe('composition', () => { birthdate: String! } `, - name: 'subgraphB', + name: "subgraphB", }; // Note that we don't use `composeAsFed2Subgraph` since we @link manually in that example. @@ -2121,10 +2253,10 @@ describe('composition', () => { age: Int! @join__field(graph: SUBGRAPHA, requires: "birthdate") } `); - }) + }); - describe('@tag', () => { - describe('propagates @tag to the supergraph', () => { + describe("@tag", () => { + describe("propagates @tag to the supergraph", () => { const subgraphA = { typeDefs: gql` type Query { @@ -2136,7 +2268,7 @@ describe('composition', () => { name: String! @tag(name: "aTaggedField") } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -2147,45 +2279,57 @@ describe('composition', () => { age: Int! } `, - name: 'subgraphB', + name: "subgraphB", }; const validatePropagation = (result: CompositionResult) => { assertCompositionSuccess(result); const supergraph = result.schema; - const tagOnOp = supergraph.schemaDefinition.rootType('query')?.field('users')?.appliedDirectivesOf('tag').pop(); - expect(tagOnOp?.arguments()['name']).toBe('aTaggedOperation'); - - const userType = supergraph.type('User'); + const tagOnOp = supergraph.schemaDefinition + .rootType("query") + ?.field("users") + ?.appliedDirectivesOf("tag") + .pop(); + expect(tagOnOp?.arguments()["name"]).toBe("aTaggedOperation"); + + const userType = supergraph.type("User"); assert(userType && isObjectType(userType), `Should be an object type`); - const tagOnType = userType.appliedDirectivesOf('tag').pop(); - expect(tagOnType?.arguments()['name']).toBe('aTaggedType'); - - const tagOnField = userType?.field('name')?.appliedDirectivesOf('tag').pop(); - expect(tagOnField?.arguments()['name']).toBe('aTaggedField'); + const tagOnType = userType.appliedDirectivesOf("tag").pop(); + expect(tagOnType?.arguments()["name"]).toBe("aTaggedType"); + + const tagOnField = userType + ?.field("name") + ?.appliedDirectivesOf("tag") + .pop(); + expect(tagOnField?.arguments()["name"]).toBe("aTaggedField"); }; - it('works for fed2 subgraphs', () => { + it("works for fed2 subgraphs", () => { validatePropagation(composeAsFed2Subgraphs([subgraphA, subgraphB])); }); - it('works for fed1 subgraphs', () => { + it("works for fed1 subgraphs", () => { validatePropagation(composeServices([subgraphA, subgraphB])); }); - it('works for mixed fed1/fed2 subgraphs', () => { - validatePropagation(composeServices([subgraphA, asFed2Service(subgraphB)])); + it("works for mixed fed1/fed2 subgraphs", () => { + validatePropagation( + composeServices([subgraphA, asFed2Service(subgraphB)]) + ); }); }); - describe('merges multiple @tag on an element', () => { + describe("merges multiple @tag on an element", () => { const subgraphA = { typeDefs: gql` type Query { user: [User] } - type User @key(fields: "id") @tag(name: "aTagOnTypeFromSubgraphA") @tag(name: "aMergedTagOnType") { + type User + @key(fields: "id") + @tag(name: "aTagOnTypeFromSubgraphA") + @tag(name: "aMergedTagOnType") { id: ID! name1: Name! } @@ -2195,12 +2339,15 @@ describe('composition', () => { lastName: String @tag(name: "aMergedTagOnField") } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { typeDefs: gql` - type User @key(fields: "id") @tag(name: "aTagOnTypeFromSubgraphB") @tag(name: "aMergedTagOnType") { + type User + @key(fields: "id") + @tag(name: "aTagOnTypeFromSubgraphB") + @tag(name: "aMergedTagOnType") { id: ID! name2: String! } @@ -2210,32 +2357,53 @@ describe('composition', () => { lastName: String @tag(name: "aMergedTagOnField") } `, - name: 'subgraphB', + name: "subgraphB", }; const validatePropagation = (result: CompositionResult) => { assertCompositionSuccess(result); const supergraph = result.schema; - const userType = supergraph.type('User'); + const userType = supergraph.type("User"); assert(userType && isObjectType(userType), `Should be an object type`); - const tagsOnType = userType.appliedDirectivesOf('tag'); - expect(tagsOnType?.map((tag) => tag.arguments()['name'])).toStrictEqual(['aTagOnTypeFromSubgraphA', 'aMergedTagOnType', 'aTagOnTypeFromSubgraphB']); - - const nameType = supergraph.type('Name'); + const tagsOnType = userType.appliedDirectivesOf("tag"); + expect(tagsOnType?.map((tag) => tag.arguments()["name"])).toStrictEqual( + [ + "aTagOnTypeFromSubgraphA", + "aMergedTagOnType", + "aTagOnTypeFromSubgraphB", + ] + ); + + const nameType = supergraph.type("Name"); assert(nameType && isObjectType(nameType), `Should be an object type`); - const tagsOnFirstName = nameType?.field('firstName')?.appliedDirectivesOf('tag'); - expect(tagsOnFirstName?.map((tag) => tag.arguments()['name'])).toStrictEqual(['aTagOnFieldFromSubgraphA', 'aTagOnFieldFromSubgraphB']); + const tagsOnFirstName = nameType + ?.field("firstName") + ?.appliedDirectivesOf("tag"); + expect( + tagsOnFirstName?.map((tag) => tag.arguments()["name"]) + ).toStrictEqual([ + "aTagOnFieldFromSubgraphA", + "aTagOnFieldFromSubgraphB", + ]); - const tagsOnLastName = nameType?.field('lastName')?.appliedDirectivesOf('tag'); - expect(tagsOnLastName?.map((tag) => tag.arguments()['name'])).toStrictEqual(['aMergedTagOnField']); + const tagsOnLastName = nameType + ?.field("lastName") + ?.appliedDirectivesOf("tag"); + expect( + tagsOnLastName?.map((tag) => tag.arguments()["name"]) + ).toStrictEqual(["aMergedTagOnField"]); }; - it('works for fed2 subgraphs', () => { + it("works for fed2 subgraphs", () => { // We need to mark the `Name` type shareable. const subgraphs = [subgraphA, subgraphB].map((s) => { - const subgraph = buildSubgraph(s.name, '', asFed2SubgraphDocument(s.typeDefs)); - subgraph.schema.type('Name')?.applyDirective('shareable'); + const subgraph = buildSubgraph( + s.name, + "", + asFed2SubgraphDocument(s.typeDefs) + ); + subgraph.schema.type("Name")?.applyDirective("shareable"); return { ...s, typeDefs: subgraph.schema.toAST(), @@ -2245,13 +2413,17 @@ describe('composition', () => { validatePropagation(composeServices(subgraphs)); }); - it('works for fed1 subgraphs', () => { + it("works for fed1 subgraphs", () => { validatePropagation(composeServices([subgraphA, subgraphB])); }); - it('works for mixed fed1/fed2 subgraphs', () => { - const sB = buildSubgraph(subgraphB.name, '', asFed2SubgraphDocument(subgraphB.typeDefs)); - sB.schema.type('Name')?.applyDirective('shareable'); + it("works for mixed fed1/fed2 subgraphs", () => { + const sB = buildSubgraph( + subgraphB.name, + "", + asFed2SubgraphDocument(subgraphB.typeDefs) + ); + sB.schema.type("Name")?.applyDirective("shareable"); const updatedSubgraphB = { ...subgraphB, typeDefs: sB.schema.toAST(), @@ -2261,7 +2433,7 @@ describe('composition', () => { }); }); - describe('rejects @tag and @external together', () => { + describe("rejects @tag and @external together", () => { const subgraphA = { typeDefs: gql` type Query { @@ -2275,7 +2447,7 @@ describe('composition', () => { age: Int! @requires(fields: "birthdate") } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -2285,31 +2457,34 @@ describe('composition', () => { birthdate: Int! } `, - name: 'subgraphB', + name: "subgraphB", }; const validateError = (result: CompositionResult) => { expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['MERGED_DIRECTIVE_APPLICATION_ON_EXTERNAL', '[subgraphA] Cannot apply merged directive @tag(name: "myTag") to external field "User.birthdate"'] + [ + "MERGED_DIRECTIVE_APPLICATION_ON_EXTERNAL", + '[subgraphA] Cannot apply merged directive @tag(name: "myTag") to external field "User.birthdate"', + ], ]); }; - it('works for fed2 subgraphs', () => { + it("works for fed2 subgraphs", () => { // Note that we've already converted the subgraphs to fed2 ones above, so we just call `composeServices` now. validateError(composeAsFed2Subgraphs([subgraphA, subgraphB])); }); - it('works for fed1 subgraphs', () => { + it("works for fed1 subgraphs", () => { validateError(composeServices([subgraphA, subgraphB])); }); - it('works for mixed fed1/fed2 subgraphs', () => { + it("works for mixed fed1/fed2 subgraphs", () => { validateError(composeServices([subgraphA, asFed2Service(subgraphB)])); }); }); - it('errors out if @tag is imported under mismatched names', () => { + it("errors out if @tag is imported under mismatched names", () => { const subgraphA = { typeDefs: gql` extend schema @@ -2319,7 +2494,7 @@ describe('composition', () => { q1: Int @apolloTag(name: "t1") } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -2331,17 +2506,20 @@ describe('composition', () => { q2: Int @tag(name: "t2") } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeServices([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['LINK_IMPORT_NAME_MISMATCH', 'The federation "@tag" directive is imported with mismatched name between subgraphs: it is imported as "@tag" in subgraph "subgraphB" but "@apolloTag" in subgraph "subgraphA"'] + [ + "LINK_IMPORT_NAME_MISMATCH", + 'The federation "@tag" directive is imported with mismatched name between subgraphs: it is imported as "@tag" in subgraph "subgraphB" but "@apolloTag" in subgraph "subgraphA"', + ], ]); }); - it('succeeds if @tag is imported under the same non-default name', () => { + it("succeeds if @tag is imported under the same non-default name", () => { const subgraphA = { typeDefs: gql` extend schema @@ -2351,7 +2529,7 @@ describe('composition', () => { q1: Int @apolloTag(name: "t1") } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -2363,22 +2541,30 @@ describe('composition', () => { q2: Int @apolloTag(name: "t2") } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeServices([subgraphA, subgraphB]); assertCompositionSuccess(result); const supergraph = result.schema; - const tagOnQ1 = supergraph.schemaDefinition.rootType('query')?.field('q1')?.appliedDirectivesOf('apolloTag').pop(); - expect(tagOnQ1?.arguments()['name']).toBe('t1'); - - const tagOnQ2 = supergraph.schemaDefinition.rootType('query')?.field('q2')?.appliedDirectivesOf('apolloTag').pop(); - expect(tagOnQ2?.arguments()['name']).toBe('t2'); - }) + const tagOnQ1 = supergraph.schemaDefinition + .rootType("query") + ?.field("q1") + ?.appliedDirectivesOf("apolloTag") + .pop(); + expect(tagOnQ1?.arguments()["name"]).toBe("t1"); + + const tagOnQ2 = supergraph.schemaDefinition + .rootType("query") + ?.field("q2") + ?.appliedDirectivesOf("apolloTag") + .pop(); + expect(tagOnQ2?.arguments()["name"]).toBe("t2"); + }); }); - describe('@inaccessible', () => { - it('propagates @inaccessible to the supergraph', () => { + describe("@inaccessible", () => { + it("propagates @inaccessible to the supergraph", () => { const subgraphA = { typeDefs: gql` type Query { @@ -2391,7 +2577,7 @@ describe('composition', () => { name: String! } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -2402,20 +2588,28 @@ describe('composition', () => { age: Int! @inaccessible } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); assertCompositionSuccess(result); const supergraph = result.schema; - expect(supergraph.schemaDefinition.rootType('query')?.field('me')?.appliedDirectivesOf('inaccessible').pop()).toBeDefined(); - - const userType = supergraph.type('User'); + expect( + supergraph.schemaDefinition + .rootType("query") + ?.field("me") + ?.appliedDirectivesOf("inaccessible") + .pop() + ).toBeDefined(); + + const userType = supergraph.type("User"); assert(userType && isObjectType(userType), `Should be an object type`); - expect(userType?.field('age')?.appliedDirectivesOf('inaccessible').pop()).toBeDefined(); + expect( + userType?.field("age")?.appliedDirectivesOf("inaccessible").pop() + ).toBeDefined(); }); - it('merges @inacessible on the same element', () => { + it("merges @inacessible on the same element", () => { const subgraphA = { typeDefs: gql` type Query { @@ -2427,7 +2621,7 @@ describe('composition', () => { name: String @shareable @inaccessible } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -2437,19 +2631,21 @@ describe('composition', () => { name: String @shareable @inaccessible } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); assertCompositionSuccess(result); const supergraph = result.schema; - const userType = supergraph.type('User'); + const userType = supergraph.type("User"); assert(userType && isObjectType(userType), `Should be an object type`); - expect(userType?.field('name')?.appliedDirectivesOf('inaccessible').pop()).toBeDefined(); + expect( + userType?.field("name")?.appliedDirectivesOf("inaccessible").pop() + ).toBeDefined(); }); - describe('rejects @inaccessible and @external together', () => { + describe("rejects @inaccessible and @external together", () => { const subgraphA = { typeDefs: gql` type Query { @@ -2463,7 +2659,7 @@ describe('composition', () => { age: Int! @requires(fields: "birthdate") } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -2473,17 +2669,20 @@ describe('composition', () => { birthdate: Int! } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['MERGED_DIRECTIVE_APPLICATION_ON_EXTERNAL', '[subgraphA] Cannot apply merged directive @inaccessible to external field "User.birthdate"'] + [ + "MERGED_DIRECTIVE_APPLICATION_ON_EXTERNAL", + '[subgraphA] Cannot apply merged directive @inaccessible to external field "User.birthdate"', + ], ]); }); - it('errors out if @inaccessible is imported under mismatched names', () => { + it("errors out if @inaccessible is imported under mismatched names", () => { const subgraphA = { typeDefs: gql` extend schema @@ -2494,7 +2693,7 @@ describe('composition', () => { q1: Int @private } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -2506,17 +2705,20 @@ describe('composition', () => { q2: Int @inaccessible } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeServices([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['LINK_IMPORT_NAME_MISMATCH', 'The federation "@inaccessible" directive is imported with mismatched name between subgraphs: it is imported as "@inaccessible" in subgraph "subgraphB" but "@private" in subgraph "subgraphA"'] + [ + "LINK_IMPORT_NAME_MISMATCH", + 'The federation "@inaccessible" directive is imported with mismatched name between subgraphs: it is imported as "@inaccessible" in subgraph "subgraphB" but "@private" in subgraph "subgraphA"', + ], ]); }); - it('succeeds if @inaccessible is imported under the same non-default name', () => { + it("succeeds if @inaccessible is imported under the same non-default name", () => { const subgraphA = { typeDefs: gql` extend schema @@ -2527,7 +2729,7 @@ describe('composition', () => { q1: Int @private } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -2539,17 +2741,29 @@ describe('composition', () => { q2: Int @private } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeServices([subgraphA, subgraphB]); assertCompositionSuccess(result); const supergraph = result.schema; - expect(supergraph.schemaDefinition.rootType('query')?.field('q1')?.appliedDirectivesOf('private').pop()).toBeDefined(); - expect(supergraph.schemaDefinition.rootType('query')?.field('q2')?.appliedDirectivesOf('private').pop()).toBeDefined(); + expect( + supergraph.schemaDefinition + .rootType("query") + ?.field("q1") + ?.appliedDirectivesOf("private") + .pop() + ).toBeDefined(); + expect( + supergraph.schemaDefinition + .rootType("query") + ?.field("q2") + ?.appliedDirectivesOf("private") + .pop() + ).toBeDefined(); }); - it('ignores inaccessible element when validating composition', () => { + it("ignores inaccessible element when validating composition", () => { // The following example would _not_ compose if the `z` was not marked inaccessible since it wouldn't be reachable // from the `origin` query. So all this test does is double-checking that validation does pass with it marked inaccessible. const subgraphA = { @@ -2563,7 +2777,7 @@ describe('composition', () => { y: Int } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -2574,14 +2788,14 @@ describe('composition', () => { z: Int @inaccessible } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); assertCompositionSuccess(result); }); - it('errors if a subgraph misuse @inaccessible', () => { + it("errors if a subgraph misuse @inaccessible", () => { const subgraphA = { typeDefs: gql` type Query { @@ -2594,7 +2808,7 @@ describe('composition', () => { y: Int } `, - name: 'subgraphA', + name: "subgraphA", }; const subgraphB = { @@ -2604,13 +2818,16 @@ describe('composition', () => { y: Int } `, - name: 'subgraphB', + name: "subgraphB", }; const result = composeAsFed2Subgraphs([subgraphA, subgraphB]); expect(result.errors).toBeDefined(); expect(errors(result)).toStrictEqual([ - ['REFERENCED_INACCESSIBLE', 'Field "Query.q2" returns @inaccessible type "A" without being marked @inaccessible itself.'] + [ + "REFERENCED_INACCESSIBLE", + 'Field "Query.q2" returns @inaccessible type "A" without being marked @inaccessible itself.', + ], ]); // Because @inaccessible are thrown by the toAPISchema code and not the merge code directly, let's make sure the include @@ -2619,13 +2836,12 @@ describe('composition', () => { // guarantees us that we do get subgraph nodes and not supergraph nodes because supergraph nodes would have @join__* // directives and would _not_ have the `@shareable`/`@inacessible` directives. const nodes = result.errors![0].nodes!; - expect(print(nodes[0])).toMatchString('q2: A'); + expect(print(nodes[0])).toMatchString("q2: A"); expect(print(nodes[1])).toMatchString(` type A @shareable @inaccessible { x: Int y: Int - }` - ); - }) + }`); + }); }); }); diff --git a/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts b/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts index 5721b3ab7..2b004336d 100644 --- a/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts +++ b/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts @@ -145,16 +145,12 @@ describe('buildSubgraphSchema', () => { _dummyField: Boolean } - directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA """federation 1.0 key directive""" directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE - scalar link__Url - - scalar link__Name - - scalar link__Imports + scalar link__Import scalar federation__FieldSet @@ -378,18 +374,14 @@ describe('buildSubgraphSchema', () => { reviews: [Review] } - directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA """federation 1.0 key directive""" directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE - directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION - - scalar link__Url - - scalar link__Name + directive @external on OBJECT | FIELD_DEFINITION - scalar link__Imports + scalar link__Import scalar federation__FieldSet @@ -443,18 +435,14 @@ describe('buildSubgraphSchema', () => { reviews: [Review] } - directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA """federation 1.0 key directive""" directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE - directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION + directive @external on OBJECT | FIELD_DEFINITION - scalar link__Url - - scalar link__Name - - scalar link__Imports + scalar link__Import scalar federation__FieldSet @@ -486,16 +474,12 @@ describe('buildSubgraphSchema', () => { price: Int } - directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA """federation 1.0 key directive""" directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE - scalar link__Url - - scalar link__Name - - scalar link__Imports + scalar link__Import scalar federation__FieldSet `); @@ -525,16 +509,12 @@ describe('buildSubgraphSchema', () => { price: Int } - directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA """federation 1.0 key directive""" directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE - scalar link__Url - - scalar link__Name - - scalar link__Imports + scalar link__Import scalar federation__FieldSet `); @@ -587,20 +567,16 @@ describe('buildSubgraphSchema', () => { reviews: [Review] } - directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA """federation 1.0 key directive""" directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE directive @provides(fields: federation__FieldSet!) on FIELD_DEFINITION - directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION - - scalar link__Url + directive @external on OBJECT | FIELD_DEFINITION - scalar link__Name - - scalar link__Imports + scalar link__Import scalar federation__FieldSet @@ -635,18 +611,14 @@ describe('buildSubgraphSchema', () => { email: String @external } - directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA """federation 1.0 key directive""" directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE - directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION - - scalar link__Url - - scalar link__Name + directive @external on OBJECT | FIELD_DEFINITION - scalar link__Imports + scalar link__Import scalar federation__FieldSet diff --git a/subgraph-js/src/__tests__/subgraphCore.test.ts b/subgraph-js/src/__tests__/subgraphCore.test.ts index 5c59ca420..e74e5b44d 100644 --- a/subgraph-js/src/__tests__/subgraphCore.test.ts +++ b/subgraph-js/src/__tests__/subgraphCore.test.ts @@ -13,22 +13,22 @@ describe('subgraphCore', () => { ); expect([...result.errors()]).toEqual([]); expect(raw(print(result.unwrap()))).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key", "@requires", "@provides", "@external", "@shareable", "@tag", "@extends"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key", "@requires", "@provides", "@external", "@tag", "@extends", "@shareable", "@inaccessible"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") directive @stream on FIELD directive @transform(from: String!) on FIELD - directive @tag(name: String!) repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION + directive @tag(name: String!) repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION | ARGUMENT_DEFINITION | SCALAR | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION - enum CacheControlScope { - PUBLIC + enum CacheControlScope @tag(name: "from-reviews") { + PUBLIC @tag(name: "from-reviews") PRIVATE } directive @cacheControl(maxAge: Int, scope: CacheControlScope, inheritMaxAge: Boolean) on FIELD_DEFINITION | OBJECT | INTERFACE | UNION - scalar JSON @specifiedBy(url: "https://json-spec.dev") + scalar JSON @tag(name: "from-reviews") @specifiedBy(url: "https://json-spec.dev") schema { query: RootQuery @@ -60,7 +60,7 @@ describe('subgraphCore', () => { id: ID! @tag(name: "accounts") name: Name @cacheControl(inheritMaxAge: true) username: String @shareable - birthDate(locale: String): String @tag(name: "admin") @tag(name: "dev") + birthDate(locale: String @tag(name: "admin")): String @tag(name: "admin") @tag(name: "dev") account: AccountType metadata: [UserMetadata] ssn: String @@ -81,22 +81,18 @@ describe('subgraphCore', () => { userAccount(id: ID! = "1"): User @requires(fields: "name") } - directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA """federation 2.0 key directive""" directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE directive @shareable on FIELD_DEFINITION | OBJECT - directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION + directive @external on OBJECT | FIELD_DEFINITION directive @requires(fields: federation__FieldSet!) on FIELD_DEFINITION - scalar link__Url - - scalar link__Name - - scalar link__Imports + scalar link__Import scalar federation__FieldSet `); @@ -111,21 +107,19 @@ describe('subgraphCore', () => { [builtin/federation/v1.0.graphql] 👉directive @key(fields: FieldSet!) repeatable on OBJECT | INTERFACE, [builtin/federation/v1.0.graphql] 👉directive @requires(fields: FieldSet!) on FIELD_DEFINITION, [builtin/federation/v1.0.graphql] 👉directive @provides(fields: FieldSet!) on FIELD_DEFINITION, - [builtin/federation/v1.0.graphql] 👉directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION, + [builtin/federation/v1.0.graphql] 👉directive @external on OBJECT | FIELD_DEFINITION, [builtin/federation/v1.0.graphql] 👉scalar FieldSet, [builtin/federation/v2.0.graphql] 👉@id(url: "https://specs.apollo.dev/federation/v2.0"), [builtin/federation/v2.0.graphql] 👉directive @key(fields: FieldSet!) repeatable on OBJECT | INTERFACE, [builtin/federation/v2.0.graphql] 👉directive @requires(fields: FieldSet!) on FIELD_DEFINITION, [builtin/federation/v2.0.graphql] 👉directive @provides(fields: FieldSet!) on FIELD_DEFINITION, - [builtin/federation/v2.0.graphql] 👉directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION, + [builtin/federation/v2.0.graphql] 👉directive @external on OBJECT | FIELD_DEFINITION, [builtin/federation/v2.0.graphql] 👉directive @moving(to: String!) on FIELD_DEFINITION, [builtin/federation/v2.0.graphql] 👉directive @shareable on FIELD_DEFINITION | OBJECT, [builtin/federation/v2.0.graphql] 👉scalar FieldSet, [builtin/link/v0.3.graphql] 👉@id(url: "https://specs.apollo.dev/link/v0.3"), - [builtin/link/v0.3.graphql] 👉directive @link(url: Url!, as: Name, import: Imports), - [builtin/link/v0.3.graphql] 👉scalar Url, - [builtin/link/v0.3.graphql] 👉scalar Name, - [builtin/link/v0.3.graphql] 👉scalar Imports, + [builtin/link/v0.3.graphql] 👉directive @link(url: String!, as: String, import: [Import]), + [builtin/link/v0.3.graphql] 👉scalar Import, [builtin/id/v1.0.graphql] 👉@id(url: "https://specs.apollo.dev/id/v1.0"), [builtin/id/v1.0.graphql] 👉directive @id(url: Url!, as: Name) on SCHEMA, ] @@ -152,11 +146,11 @@ describe('subgraphCore', () => { Array [ [NoDefinition] no definitions found for reference - GraphQL request:52:20 - 51 | name: Name @cacheControl(inheritMaxAge: true) - 52 | username: String @shareable # Provided by the 'reviews' subgraph + GraphQL request:58:20 + 57 | name: Name @cacheControl(inheritMaxAge: true) + 58 | username: String @shareable # Provided by the 'reviews' subgraph | ^ - 53 | birthDate(locale: String): String @tag(name: "admin") @tag(name: "dev"), + 59 | birthDate(locale: String @tag(name: "admin")): String @tag(name: "admin") @tag(name: "dev"), ] `); @@ -168,9 +162,9 @@ describe('subgraphCore', () => { <#@stream>[GraphQL request] 👉directive @stream on FIELD, <#@transform>[GraphQL request] 👉directive @transform(from: String!) on FIELD, [GraphQL request] 👉directive @tag(name: String!) repeatable on, - <#CacheControlScope>[GraphQL request] 👉enum CacheControlScope {, + <#CacheControlScope>[GraphQL request] 👉enum CacheControlScope @tag(name: "from-reviews") {, <#@cacheControl>[GraphQL request] 👉directive @cacheControl(, - <#JSON>[GraphQL request] 👉scalar JSON @specifiedBy(url: "https://json-spec.dev"), + <#JSON>[GraphQL request] 👉scalar JSON @tag(name: "from-reviews") @specifiedBy(url: "https://json-spec.dev"), <>[GraphQL request] 👉schema {, <#RootQuery>[GraphQL request] 👉type RootQuery {, <#PasswordAccount>[GraphQL request] 👉type PasswordAccount @key(fields: "email") {, @@ -181,13 +175,11 @@ describe('subgraphCore', () => { <#Name>[GraphQL request] 👉type Name {, <#Mutation>[GraphQL request] 👉type Mutation {, <#Library>[GraphQL request] 👉type Library @key(fields: "id") {, - [builtin/link/v0.3.graphql] 👉directive @link(url: Url!, as: Name, import: Imports), + [builtin/link/v0.3.graphql] 👉directive @link(url: String!, as: String, import: [Import]), [builtin/federation/v1.0.graphql] 👉directive @key(fields: FieldSet!) repeatable on OBJECT | INTERFACE, - [builtin/federation/v1.0.graphql] 👉directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION, + [builtin/federation/v1.0.graphql] 👉directive @external on OBJECT | FIELD_DEFINITION, [builtin/federation/v1.0.graphql] 👉directive @requires(fields: FieldSet!) on FIELD_DEFINITION, - [builtin/link/v0.3.graphql] 👉scalar Url, - [builtin/link/v0.3.graphql] 👉scalar Name, - [builtin/link/v0.3.graphql] 👉scalar Imports, + [builtin/link/v0.3.graphql] 👉scalar Import, [builtin/federation/v1.0.graphql] 👉scalar FieldSet, ] `); @@ -199,16 +191,16 @@ describe('subgraphCore', () => { directive @transform(from: String!) on FIELD - directive @tag(name: String!) repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION + directive @tag(name: String!) repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION | ARGUMENT_DEFINITION | SCALAR | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION - enum CacheControlScope { - PUBLIC + enum CacheControlScope @tag(name: "from-reviews") { + PUBLIC @tag(name: "from-reviews") PRIVATE } directive @cacheControl(maxAge: Int, scope: CacheControlScope, inheritMaxAge: Boolean) on FIELD_DEFINITION | OBJECT | INTERFACE | UNION - scalar JSON @specifiedBy(url: "https://json-spec.dev") + scalar JSON @tag(name: "from-reviews") @specifiedBy(url: "https://json-spec.dev") schema { query: RootQuery @@ -240,7 +232,7 @@ describe('subgraphCore', () => { id: ID! @tag(name: "accounts") name: Name @cacheControl(inheritMaxAge: true) username: String @shareable - birthDate(locale: String): String @tag(name: "admin") @tag(name: "dev") + birthDate(locale: String @tag(name: "admin")): String @tag(name: "admin") @tag(name: "dev") account: AccountType metadata: [UserMetadata] ssn: String @@ -261,20 +253,16 @@ describe('subgraphCore', () => { userAccount(id: ID! = "1"): User @requires(fields: "name") } - directive @link(url: link__Url!, as: link__Name, import: link__Imports) repeatable on SCHEMA + directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA """federation 1.0 key directive""" directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE - directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION + directive @external on OBJECT | FIELD_DEFINITION directive @requires(fields: federation__FieldSet!) on FIELD_DEFINITION - scalar link__Url - - scalar link__Name - - scalar link__Imports + scalar link__Import scalar federation__FieldSet `); diff --git a/subgraph-js/src/federation-atlas.ts b/subgraph-js/src/federation-atlas.ts index 658413dd3..bef70a64c 100644 --- a/subgraph-js/src/federation-atlas.ts +++ b/subgraph-js/src/federation-atlas.ts @@ -22,7 +22,7 @@ export const ATLAS = Atlas.fromSchemas( directive @key(fields: FieldSet!) repeatable on OBJECT | INTERFACE directive @requires(fields: FieldSet!) on FIELD_DEFINITION directive @provides(fields: FieldSet!) on FIELD_DEFINITION - directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION + directive @external on OBJECT | FIELD_DEFINITION scalar FieldSet `), @@ -36,7 +36,7 @@ export const ATLAS = Atlas.fromSchemas( directive @key(fields: FieldSet!) repeatable on OBJECT | INTERFACE directive @requires(fields: FieldSet!) on FIELD_DEFINITION directive @provides(fields: FieldSet!) on FIELD_DEFINITION - directive @external repeatable on OBJECT | INTERFACE | FIELD_DEFINITION + directive @external on OBJECT | FIELD_DEFINITION directive @moving(to: String!) on FIELD_DEFINITION directive @shareable on FIELD_DEFINITION | OBJECT From 853bc8fa2d478dfd768581d4f351e467c4401ca3 Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Wed, 30 Mar 2022 21:17:22 -0400 Subject: [PATCH 22/33] update package-lock.json --- package-lock.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index df1e88f03..6bcfaabb3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -208,7 +208,7 @@ }, "node_modules/@apollo/core-schema": { "version": "0.3.0", - "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#f2f6d6df12432068874d1a4ea31f1d8b5248f4b8", + "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#25af57cd8f73dc2f773fcd1d908e5b27f8e2d803", "license": "MIT", "dependencies": { "@protoplasm/recall": "^0.2" @@ -19881,7 +19881,7 @@ } }, "@apollo/core-schema": { - "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#f2f6d6df12432068874d1a4ea31f1d8b5248f4b8", + "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#25af57cd8f73dc2f773fcd1d908e5b27f8e2d803", "from": "@apollo/core-schema@apollographql/core-schema-js", "requires": { "@protoplasm/recall": "^0.2" @@ -19998,7 +19998,7 @@ }, "dependencies": { "@apollo/core-schema": { - "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#f2f6d6df12432068874d1a4ea31f1d8b5248f4b8", + "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#25af57cd8f73dc2f773fcd1d908e5b27f8e2d803", "from": "@apollo/core-schema@apollographql/core-schema-js", "requires": { "@protoplasm/recall": "^0.2" From fbe32b8fbc3a7f71717847ff9bce45ab2a207807 Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Wed, 6 Apr 2022 06:35:33 -0400 Subject: [PATCH 23/33] update tests --- package-lock.json | 6 +- subgraph-js/jest.config.js | 2 + .../src/__tests__/buildSubgraphSchema.test.ts | 28 +++---- .../src/__tests__/subgraphCore.test.ts | 74 +++++++++++++------ subgraph-js/src/buildSubgraphSchema.ts | 6 +- subgraph-js/src/federation-atlas.ts | 12 +++ .../src/schema-helper/buildSchemaFromSDL.ts | 7 +- 7 files changed, 89 insertions(+), 46 deletions(-) diff --git a/package-lock.json b/package-lock.json index 6bcfaabb3..982c27bec 100644 --- a/package-lock.json +++ b/package-lock.json @@ -208,7 +208,7 @@ }, "node_modules/@apollo/core-schema": { "version": "0.3.0", - "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#25af57cd8f73dc2f773fcd1d908e5b27f8e2d803", + "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#f73e235dee487df03f57947d0d722c8f01c5739d", "license": "MIT", "dependencies": { "@protoplasm/recall": "^0.2" @@ -19881,7 +19881,7 @@ } }, "@apollo/core-schema": { - "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#25af57cd8f73dc2f773fcd1d908e5b27f8e2d803", + "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#f73e235dee487df03f57947d0d722c8f01c5739d", "from": "@apollo/core-schema@apollographql/core-schema-js", "requires": { "@protoplasm/recall": "^0.2" @@ -19998,7 +19998,7 @@ }, "dependencies": { "@apollo/core-schema": { - "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#25af57cd8f73dc2f773fcd1d908e5b27f8e2d803", + "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#f73e235dee487df03f57947d0d722c8f01c5739d", "from": "@apollo/core-schema@apollographql/core-schema-js", "requires": { "@protoplasm/recall": "^0.2" diff --git a/subgraph-js/jest.config.js b/subgraph-js/jest.config.js index d721a296f..91782fbdb 100644 --- a/subgraph-js/jest.config.js +++ b/subgraph-js/jest.config.js @@ -12,5 +12,7 @@ module.exports = { snapshotSerializers: [ '@apollo/core-schema/dist/snapshot-serializers/ast', '@apollo/core-schema/dist/snapshot-serializers/raw', + '@apollo/core-schema/dist/snapshot-serializers/gref', + '@apollo/core-schema/dist/snapshot-serializers/redirect', ] }; diff --git a/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts b/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts index 2b004336d..574359945 100644 --- a/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts +++ b/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts @@ -147,11 +147,11 @@ describe('buildSubgraphSchema', () => { directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA + scalar link__Import + """federation 1.0 key directive""" directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE - scalar link__Import - scalar federation__FieldSet type Query @@ -376,13 +376,13 @@ describe('buildSubgraphSchema', () => { directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA + scalar link__Import + """federation 1.0 key directive""" directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE directive @external on OBJECT | FIELD_DEFINITION - scalar link__Import - scalar federation__FieldSet type Product @@ -437,13 +437,13 @@ describe('buildSubgraphSchema', () => { directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA + scalar link__Import + """federation 1.0 key directive""" directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE directive @external on OBJECT | FIELD_DEFINITION - scalar link__Import - scalar federation__FieldSet interface Product @@ -476,11 +476,11 @@ describe('buildSubgraphSchema', () => { directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA + scalar link__Import + """federation 1.0 key directive""" directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE - scalar link__Import - scalar federation__FieldSet `); }); @@ -511,11 +511,11 @@ describe('buildSubgraphSchema', () => { directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA + scalar link__Import + """federation 1.0 key directive""" directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE - scalar link__Import - scalar federation__FieldSet `); }); @@ -569,6 +569,8 @@ describe('buildSubgraphSchema', () => { directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA + scalar link__Import + """federation 1.0 key directive""" directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE @@ -576,8 +578,6 @@ describe('buildSubgraphSchema', () => { directive @external on OBJECT | FIELD_DEFINITION - scalar link__Import - scalar federation__FieldSet type User @@ -613,13 +613,13 @@ describe('buildSubgraphSchema', () => { directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA + scalar link__Import + """federation 1.0 key directive""" directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE directive @external on OBJECT | FIELD_DEFINITION - scalar link__Import - scalar federation__FieldSet type User diff --git a/subgraph-js/src/__tests__/subgraphCore.test.ts b/subgraph-js/src/__tests__/subgraphCore.test.ts index e74e5b44d..c486a1fe4 100644 --- a/subgraph-js/src/__tests__/subgraphCore.test.ts +++ b/subgraph-js/src/__tests__/subgraphCore.test.ts @@ -4,16 +4,14 @@ import { print } from 'graphql'; import { getResult } from '@apollo/core-schema'; import { ATLAS } from '../federation-atlas'; import raw from '@apollo/core-schema/dist/snapshot-serializers/raw'; -import Schema from '@apollo/core-schema'; +import Schema, { gql } from '@apollo/core-schema'; describe('subgraphCore', () => { it('compiles a subgraph into a core schema', () => { - const result = getResult(() => - subgraphCore([{ typeDefs: fixtures[0].typeDefs }]), - ); + const result = getResult(() => subgraphCore(fixtures[0].typeDefs)); expect([...result.errors()]).toEqual([]); expect(raw(print(result.unwrap()))).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key", "@requires", "@provides", "@external", "@tag", "@extends", "@shareable", "@inaccessible"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/inaccessible/v0.1") @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key", "@requires", "@provides", "@external", "@tag", "@extends", "@shareable"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") directive @stream on FIELD @@ -81,20 +79,26 @@ describe('subgraphCore', () => { userAccount(id: ID! = "1"): User @requires(fields: "name") } - directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA - """federation 2.0 key directive""" directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE - directive @shareable on FIELD_DEFINITION | OBJECT + directive @requires(fields: federation__FieldSet!) on FIELD_DEFINITION + + directive @provides(fields: federation__FieldSet!) on FIELD_DEFINITION directive @external on OBJECT | FIELD_DEFINITION - directive @requires(fields: federation__FieldSet!) on FIELD_DEFINITION + directive @extends on INTERFACE - scalar link__Import + directive @shareable on FIELD_DEFINITION | OBJECT + + directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA scalar federation__FieldSet + + directive @inaccessible on OBJECT | INTERFACE | FIELD_DEFINITION + + scalar link__Import `); }); @@ -109,6 +113,7 @@ describe('subgraphCore', () => { [builtin/federation/v1.0.graphql] 👉directive @provides(fields: FieldSet!) on FIELD_DEFINITION, [builtin/federation/v1.0.graphql] 👉directive @external on OBJECT | FIELD_DEFINITION, [builtin/federation/v1.0.graphql] 👉scalar FieldSet, + GRef => GRef (via [builtin/federation/v2.0.graphql] 👉@link(url: "https://specs.apollo.dev/inaccessible/v0.1", import: "@ (as @inaccessible)")), [builtin/federation/v2.0.graphql] 👉@id(url: "https://specs.apollo.dev/federation/v2.0"), [builtin/federation/v2.0.graphql] 👉directive @key(fields: FieldSet!) repeatable on OBJECT | INTERFACE, [builtin/federation/v2.0.graphql] 👉directive @requires(fields: FieldSet!) on FIELD_DEFINITION, @@ -116,10 +121,15 @@ describe('subgraphCore', () => { [builtin/federation/v2.0.graphql] 👉directive @external on OBJECT | FIELD_DEFINITION, [builtin/federation/v2.0.graphql] 👉directive @moving(to: String!) on FIELD_DEFINITION, [builtin/federation/v2.0.graphql] 👉directive @shareable on FIELD_DEFINITION | OBJECT, + [builtin/federation/v2.0.graphql] 👉directive @extends on INTERFACE, [builtin/federation/v2.0.graphql] 👉scalar FieldSet, + [builtin/inaccessible/v0.1.graphql] 👉@id(url: "https://specs.apollo.dev/inaccessible/v0.1"), + [builtin/inaccessible/v0.1.graphql] 👉directive @inaccessible on, [builtin/link/v0.3.graphql] 👉@id(url: "https://specs.apollo.dev/link/v0.3"), [builtin/link/v0.3.graphql] 👉directive @link(url: String!, as: String, import: [Import]), [builtin/link/v0.3.graphql] 👉scalar Import, + GRef => GRef (via [builtin/id/v1.0.graphql] 👉@link(url: "https://specs.apollo.dev/link/v0.3"), + GRef => GRef (via [builtin/id/v1.0.graphql] 👉@link(url: "https://specs.apollo.dev/link/v0.3"), [builtin/id/v1.0.graphql] 👉@id(url: "https://specs.apollo.dev/id/v1.0"), [builtin/id/v1.0.graphql] 👉directive @id(url: Url!, as: Name) on SCHEMA, ] @@ -129,22 +139,18 @@ describe('subgraphCore', () => { it('links against federation 1.0 by default', () => { const doc = fixtures[0].typeDefs; const result = getResult(() => - subgraphCore([ - { - typeDefs: { - ...doc, - // remove the last '@link()', which brings in fed2 - definitions: doc.definitions.slice(0, doc.definitions.length - 1), - }, - }, - ]), + subgraphCore({ + ...doc, + // remove the last '@link()', which brings in fed2 + definitions: doc.definitions.slice(0, doc.definitions.length - 1), + }), ); // shareable isn't in fed1 expect([...result.errors()].map((err: any) => raw(err.toString()))) .toMatchInlineSnapshot(` Array [ - [NoDefinition] no definitions found for reference + [NoDefinition] no definitions found for reference: #@shareable GraphQL request:58:20 57 | name: Name @cacheControl(inheritMaxAge: true) @@ -158,6 +164,10 @@ describe('subgraphCore', () => { expect([...Schema.from(document)]).toMatchInlineSnapshot(` Array [ + GRef <#@key> => GRef (via [+] @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"])), + GRef <#@requires> => GRef (via [+] @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"])), + GRef <#@provides> => GRef (via [+] @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"])), + GRef <#@external> => GRef (via [+] @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"])), <>[+] extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0"), <#@stream>[GraphQL request] 👉directive @stream on FIELD, <#@transform>[GraphQL request] 👉directive @transform(from: String!) on FIELD, @@ -176,10 +186,10 @@ describe('subgraphCore', () => { <#Mutation>[GraphQL request] 👉type Mutation {, <#Library>[GraphQL request] 👉type Library @key(fields: "id") {, [builtin/link/v0.3.graphql] 👉directive @link(url: String!, as: String, import: [Import]), + [builtin/link/v0.3.graphql] 👉scalar Import, [builtin/federation/v1.0.graphql] 👉directive @key(fields: FieldSet!) repeatable on OBJECT | INTERFACE, [builtin/federation/v1.0.graphql] 👉directive @external on OBJECT | FIELD_DEFINITION, [builtin/federation/v1.0.graphql] 👉directive @requires(fields: FieldSet!) on FIELD_DEFINITION, - [builtin/link/v0.3.graphql] 👉scalar Import, [builtin/federation/v1.0.graphql] 👉scalar FieldSet, ] `); @@ -255,6 +265,8 @@ describe('subgraphCore', () => { directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA + scalar link__Import + """federation 1.0 key directive""" directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE @@ -262,9 +274,25 @@ describe('subgraphCore', () => { directive @requires(fields: federation__FieldSet!) on FIELD_DEFINITION - scalar link__Import - scalar federation__FieldSet `); }); + + it('imports @tag from the federation spec', () => { + const doc = subgraphCore(gql` + @link(url: "https://specs.apollo.dev/federation/v2.0", import: "@tag") + + type User @tag(name: "something") + `); + + expect(raw(print(doc))).toMatchInlineSnapshot(` + extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@tag"]) @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + + type User @tag(name: "something") + + directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA + + scalar link__Import + `); + }); }); diff --git a/subgraph-js/src/buildSubgraphSchema.ts b/subgraph-js/src/buildSubgraphSchema.ts index bf8cf82e8..6ce9715ec 100644 --- a/subgraph-js/src/buildSubgraphSchema.ts +++ b/subgraph-js/src/buildSubgraphSchema.ts @@ -7,7 +7,8 @@ import { GraphQLUnionType, GraphQLObjectType, buildASTSchema, - print + print, + concatAST } from 'graphql'; import { GraphQLSchemaModule, @@ -62,7 +63,8 @@ export function buildSubgraphSchema( } const modules = modulesFromSDL(shapedModulesOrSDL); - const document = subgraphCore(modules) + const mergedDocument = concatAST(modules.map(module => module.typeDefs)); + const document = subgraphCore(mergedDocument) let schema = buildASTSchema(document) diff --git a/subgraph-js/src/federation-atlas.ts b/subgraph-js/src/federation-atlas.ts index bef70a64c..7b4b324b1 100644 --- a/subgraph-js/src/federation-atlas.ts +++ b/subgraph-js/src/federation-atlas.ts @@ -29,6 +29,8 @@ export const ATLAS = Atlas.fromSchemas( Schema.basic(gql `${'builtin/federation/v2.0.graphql'} @id(url: "https://specs.apollo.dev/federation/v2.0") + @link(url: "https://specs.apollo.dev/tag/v0.1") + @link(url: "https://specs.apollo.dev/inaccessible/v0.1", import: "@ (as @inaccessible)") """ federation 2.0 key directive @@ -39,10 +41,20 @@ export const ATLAS = Atlas.fromSchemas( directive @external on OBJECT | FIELD_DEFINITION directive @moving(to: String!) on FIELD_DEFINITION directive @shareable on FIELD_DEFINITION | OBJECT + directive @extends on INTERFACE scalar FieldSet `), + Schema.basic(gql `${'builtin/inaccessible/v0.1.graphql'} + @id(url: "https://specs.apollo.dev/inaccessible/v0.1") + + directive @inaccessible on + | OBJECT + | INTERFACE + | FIELD_DEFINITION + `), + Schema.basic(gql `${'builtin/link/v0.3.graphql'} @id(url: "https://specs.apollo.dev/link/v0.3") diff --git a/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts b/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts index 2d74aede5..dc5f66de7 100644 --- a/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts +++ b/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts @@ -1,5 +1,5 @@ import Schema, { byKind, byName, only, toDefinitionKind } from '@apollo/core-schema'; -import { ASTNode, concatAST, DefinitionNode, DocumentNode, GraphQLEnumType, GraphQLEnumValueConfig, GraphQLSchema, isAbstractType, isEnumType, isObjectType, isScalarType, Kind } from 'graphql'; +import { ASTNode, DefinitionNode, DocumentNode, GraphQLEnumType, GraphQLEnumValueConfig, GraphQLSchema, isAbstractType, isEnumType, isObjectType, isScalarType, Kind } from 'graphql'; import { ATLAS, SUBGRAPH_BASE } from '../federation-atlas'; import { GraphQLResolverMap, GraphQLSchemaModule } from './resolverMap'; @@ -283,9 +283,8 @@ export function addResolversToSchema( // return schema; // } -export function subgraphCore(modules: GraphQLSchemaModule[]): DocumentNode { - const mergedDocument = concatAST(modules.map(module => module.typeDefs)); - const core = Schema.from(mergedDocument, SUBGRAPH_BASE).compile(ATLAS) +export function subgraphCore(document: DocumentNode): DocumentNode { + const core = Schema.from(document, SUBGRAPH_BASE).compile(ATLAS) const defs = [...implicitDefinitionNodes(core.document)] return defs.length ? { ...core.document, From 0ea95308fd74a5bcbe10689f70d42125ce8d2497 Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Wed, 6 Apr 2022 08:29:29 -0400 Subject: [PATCH 24/33] do not emit core markings if there aren't already some in the document --- package-lock.json | 6 +- .../src/__tests__/buildSubgraphSchema.test.ts | 14 -- .../src/__tests__/subgraphCore.test.ts | 142 +++++++++++-- subgraph-js/src/federation-atlas.ts | 12 +- .../src/schema-helper/buildSchemaFromSDL.ts | 189 ++++-------------- 5 files changed, 180 insertions(+), 183 deletions(-) diff --git a/package-lock.json b/package-lock.json index 982c27bec..eb97baf46 100644 --- a/package-lock.json +++ b/package-lock.json @@ -208,7 +208,7 @@ }, "node_modules/@apollo/core-schema": { "version": "0.3.0", - "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#f73e235dee487df03f57947d0d722c8f01c5739d", + "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#2adf4f7c9df1dc644f20eaf2578841a65810e073", "license": "MIT", "dependencies": { "@protoplasm/recall": "^0.2" @@ -19881,7 +19881,7 @@ } }, "@apollo/core-schema": { - "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#f73e235dee487df03f57947d0d722c8f01c5739d", + "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#2adf4f7c9df1dc644f20eaf2578841a65810e073", "from": "@apollo/core-schema@apollographql/core-schema-js", "requires": { "@protoplasm/recall": "^0.2" @@ -19998,7 +19998,7 @@ }, "dependencies": { "@apollo/core-schema": { - "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#f73e235dee487df03f57947d0d722c8f01c5739d", + "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#2adf4f7c9df1dc644f20eaf2578841a65810e073", "from": "@apollo/core-schema@apollographql/core-schema-js", "requires": { "@protoplasm/recall": "^0.2" diff --git a/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts b/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts index 574359945..88fe04500 100644 --- a/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts +++ b/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts @@ -118,8 +118,6 @@ describe('buildSubgraphSchema', () => { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") - schema { query: Query } @@ -359,8 +357,6 @@ describe('buildSubgraphSchema', () => { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") - type Review { id: ID } @@ -416,8 +412,6 @@ describe('buildSubgraphSchema', () => { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") - type Review { id: ID } @@ -466,8 +460,6 @@ describe('buildSubgraphSchema', () => { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") - type Product @key(fields: "upc") { upc: String! name: String @@ -501,8 +493,6 @@ describe('buildSubgraphSchema', () => { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") - type Product @key(fields: "upc") @key(fields: "name") { upc: String! name: String @@ -548,8 +538,6 @@ describe('buildSubgraphSchema', () => { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") - type Review @key(fields: "id") { id: ID! body: String @@ -603,8 +591,6 @@ describe('buildSubgraphSchema', () => { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") - directive @custom on FIELD extend type User @key(fields: "email") { diff --git a/subgraph-js/src/__tests__/subgraphCore.test.ts b/subgraph-js/src/__tests__/subgraphCore.test.ts index c486a1fe4..fbe2cf39e 100644 --- a/subgraph-js/src/__tests__/subgraphCore.test.ts +++ b/subgraph-js/src/__tests__/subgraphCore.test.ts @@ -11,7 +11,7 @@ describe('subgraphCore', () => { const result = getResult(() => subgraphCore(fixtures[0].typeDefs)); expect([...result.errors()]).toEqual([]); expect(raw(print(result.unwrap()))).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/inaccessible/v0.1") @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key", "@requires", "@provides", "@external", "@tag", "@extends", "@shareable"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + extend schema @link(url: "https://specs.apollo.dev/link/v1.0") @link(url: "https://specs.apollo.dev/inaccessible/v0.1") @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key", "@requires", "@provides", "@external", "@tag", "@extends", "@shareable"]) directive @stream on FIELD @@ -113,6 +113,7 @@ describe('subgraphCore', () => { [builtin/federation/v1.0.graphql] 👉directive @provides(fields: FieldSet!) on FIELD_DEFINITION, [builtin/federation/v1.0.graphql] 👉directive @external on OBJECT | FIELD_DEFINITION, [builtin/federation/v1.0.graphql] 👉scalar FieldSet, + GRef => GRef (via [builtin/federation/v2.0.graphql] 👉@link(url: "https://specs.apollo.dev/tag/v0.1", import: "@ (as @tag)")), GRef => GRef (via [builtin/federation/v2.0.graphql] 👉@link(url: "https://specs.apollo.dev/inaccessible/v0.1", import: "@ (as @inaccessible)")), [builtin/federation/v2.0.graphql] 👉@id(url: "https://specs.apollo.dev/federation/v2.0"), [builtin/federation/v2.0.graphql] 👉directive @key(fields: FieldSet!) repeatable on OBJECT | INTERFACE, @@ -125,9 +126,9 @@ describe('subgraphCore', () => { [builtin/federation/v2.0.graphql] 👉scalar FieldSet, [builtin/inaccessible/v0.1.graphql] 👉@id(url: "https://specs.apollo.dev/inaccessible/v0.1"), [builtin/inaccessible/v0.1.graphql] 👉directive @inaccessible on, - [builtin/link/v0.3.graphql] 👉@id(url: "https://specs.apollo.dev/link/v0.3"), - [builtin/link/v0.3.graphql] 👉directive @link(url: String!, as: String, import: [Import]), - [builtin/link/v0.3.graphql] 👉scalar Import, + [builtin/link/v1.0.graphql] 👉@id(url: "https://specs.apollo.dev/link/v1.0"), + [builtin/link/v1.0.graphql] 👉directive @link(url: String!, as: String, import: [Import]), + [builtin/link/v1.0.graphql] 👉scalar Import, GRef => GRef (via [builtin/id/v1.0.graphql] 👉@link(url: "https://specs.apollo.dev/link/v0.3"), GRef => GRef (via [builtin/id/v1.0.graphql] 👉@link(url: "https://specs.apollo.dev/link/v0.3"), [builtin/id/v1.0.graphql] 👉@id(url: "https://specs.apollo.dev/id/v1.0"), @@ -136,6 +137,32 @@ describe('subgraphCore', () => { `); }); + it('removes unused links', () => { + const core = subgraphCore( + gql` + extend type User @key(fields: "someField") { + someField: ID! + } + `, + ); + expect(raw(print(core))).toMatchInlineSnapshot(` + extend type User @key(fields: "someField") { + someField: ID! + } + + directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA + + scalar link__Import + + """federation 1.0 key directive""" + directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE + + scalar federation__FieldSet + + type User + `); + }); + it('links against federation 1.0 by default', () => { const doc = fixtures[0].typeDefs; const result = getResult(() => @@ -164,14 +191,9 @@ describe('subgraphCore', () => { expect([...Schema.from(document)]).toMatchInlineSnapshot(` Array [ - GRef <#@key> => GRef (via [+] @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"])), - GRef <#@requires> => GRef (via [+] @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"])), - GRef <#@provides> => GRef (via [+] @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"])), - GRef <#@external> => GRef (via [+] @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"])), - <>[+] extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0"), <#@stream>[GraphQL request] 👉directive @stream on FIELD, <#@transform>[GraphQL request] 👉directive @transform(from: String!) on FIELD, - [GraphQL request] 👉directive @tag(name: String!) repeatable on, + <#@tag>[GraphQL request] 👉directive @tag(name: String!) repeatable on, <#CacheControlScope>[GraphQL request] 👉enum CacheControlScope @tag(name: "from-reviews") {, <#@cacheControl>[GraphQL request] 👉directive @cacheControl(, <#JSON>[GraphQL request] 👉scalar JSON @tag(name: "from-reviews") @specifiedBy(url: "https://json-spec.dev"), @@ -185,8 +207,8 @@ describe('subgraphCore', () => { <#Name>[GraphQL request] 👉type Name {, <#Mutation>[GraphQL request] 👉type Mutation {, <#Library>[GraphQL request] 👉type Library @key(fields: "id") {, - [builtin/link/v0.3.graphql] 👉directive @link(url: String!, as: String, import: [Import]), - [builtin/link/v0.3.graphql] 👉scalar Import, + [builtin/link/v1.0.graphql] 👉directive @link(url: String!, as: String, import: [Import]), + [builtin/link/v1.0.graphql] 👉scalar Import, [builtin/federation/v1.0.graphql] 👉directive @key(fields: FieldSet!) repeatable on OBJECT | INTERFACE, [builtin/federation/v1.0.graphql] 👉directive @external on OBJECT | FIELD_DEFINITION, [builtin/federation/v1.0.graphql] 👉directive @requires(fields: FieldSet!) on FIELD_DEFINITION, @@ -194,9 +216,97 @@ describe('subgraphCore', () => { ] `); - expect(raw(print(document))).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + expect([...Schema.from(document).refs]).toMatchInlineSnapshot(` + Array [ + <#@stream>[GraphQL request] 👉directive @stream on FIELD, + <#@transform>[GraphQL request] 👉directive @transform(from: String!) on FIELD, + [GraphQL request] directive @transform(from: 👉String!) on FIELD, + <#@tag>[GraphQL request] 👉directive @tag(name: String!) repeatable on, + [GraphQL request] directive @tag(name: 👉String!) repeatable on, + <#CacheControlScope>[GraphQL request] 👉enum CacheControlScope @tag(name: "from-reviews") {, + <#@tag>[GraphQL request] enum CacheControlScope 👉@tag(name: "from-reviews") {, + <#@tag>[GraphQL request] PUBLIC 👉@tag(name: "from-reviews"), + <#@cacheControl>[GraphQL request] 👉directive @cacheControl(, + [GraphQL request] maxAge: 👉Int, + <#CacheControlScope>[GraphQL request] scope: 👉CacheControlScope, + [GraphQL request] inheritMaxAge: 👉Boolean, + <#JSON>[GraphQL request] 👉scalar JSON @tag(name: "from-reviews") @specifiedBy(url: "https://json-spec.dev"), + <#@tag>[GraphQL request] scalar JSON 👉@tag(name: "from-reviews") @specifiedBy(url: "https://json-spec.dev"), + [GraphQL request] scalar JSON @tag(name: "from-reviews") 👉@specifiedBy(url: "https://json-spec.dev"), + <>[GraphQL request] 👉schema {, + <>[GraphQL request] 👉query: RootQuery, + <#RootQuery>[GraphQL request] query: 👉RootQuery, + <>[GraphQL request] 👉mutation: Mutation, + <#Mutation>[GraphQL request] mutation: 👉Mutation, + <#RootQuery>[GraphQL request] 👉type RootQuery {, + [GraphQL request] user(id: 👉ID!): User, + <#User>[GraphQL request] user(id: ID!): 👉User, + <#User>[GraphQL request] me: 👉User @cacheControl(maxAge: 1000, scope: PRIVATE), + <#@cacheControl>[GraphQL request] me: User 👉@cacheControl(maxAge: 1000, scope: PRIVATE), + <#PasswordAccount>[GraphQL request] 👉type PasswordAccount @key(fields: "email") {, + [GraphQL request] type PasswordAccount 👉@key(fields: "email") {, + [GraphQL request] email: 👉String!, + <#SMSAccount>[GraphQL request] 👉type SMSAccount @key(fields: "number") {, + [GraphQL request] type SMSAccount 👉@key(fields: "number") {, + [GraphQL request] number: 👉String, + <#AccountType>[GraphQL request] 👉union AccountType @tag(name: "from-accounts") = PasswordAccount | SMSAccount, + <#@tag>[GraphQL request] union AccountType 👉@tag(name: "from-accounts") = PasswordAccount | SMSAccount, + <#PasswordAccount>[GraphQL request] union AccountType @tag(name: "from-accounts") = 👉PasswordAccount | SMSAccount, + <#SMSAccount>[GraphQL request] union AccountType @tag(name: "from-accounts") = PasswordAccount | 👉SMSAccount, + <#UserMetadata>[GraphQL request] 👉type UserMetadata {, + [GraphQL request] name: 👉String, + [GraphQL request] address: 👉String, + [GraphQL request] description: 👉String, + <#User>[GraphQL request] 👉type User @key(fields: "id") @key(fields: "username name { first last }") @tag(name: "from-accounts") {, + [GraphQL request] type User 👉@key(fields: "id") @key(fields: "username name { first last }") @tag(name: "from-accounts") {, + [GraphQL request] type User @key(fields: "id") 👉@key(fields: "username name { first last }") @tag(name: "from-accounts") {, + <#@tag>[GraphQL request] type User @key(fields: "id") @key(fields: "username name { first last }") 👉@tag(name: "from-accounts") {, + [GraphQL request] id: 👉ID! @tag(name: "accounts"), + <#@tag>[GraphQL request] id: ID! 👉@tag(name: "accounts"), + <#Name>[GraphQL request] name: 👉Name @cacheControl(inheritMaxAge: true), + <#@cacheControl>[GraphQL request] name: Name 👉@cacheControl(inheritMaxAge: true), + [GraphQL request] username: 👉String @shareable # Provided by the 'reviews' subgraph, + <#@shareable>[GraphQL request] username: String 👉@shareable # Provided by the 'reviews' subgraph, + [GraphQL request] birthDate(locale: 👉String @tag(name: "admin")): String @tag(name: "admin") @tag(name: "dev"), + <#@tag>[GraphQL request] birthDate(locale: String 👉@tag(name: "admin")): String @tag(name: "admin") @tag(name: "dev"), + [GraphQL request] birthDate(locale: String @tag(name: "admin")): 👉String @tag(name: "admin") @tag(name: "dev"), + <#@tag>[GraphQL request] birthDate(locale: String @tag(name: "admin")): String 👉@tag(name: "admin") @tag(name: "dev"), + <#@tag>[GraphQL request] birthDate(locale: String @tag(name: "admin")): String @tag(name: "admin") 👉@tag(name: "dev"), + <#AccountType>[GraphQL request] account: 👉AccountType, + <#UserMetadata>[GraphQL request] metadata: [👉UserMetadata], + [GraphQL request] ssn: 👉String, + <#Name>[GraphQL request] 👉type Name {, + [GraphQL request] first: 👉String, + [GraphQL request] last: 👉String, + <#Mutation>[GraphQL request] 👉type Mutation {, + [GraphQL request] username: 👉String!, + [GraphQL request] password: 👉String!, + [GraphQL request] userId: 👉String @deprecated(reason: "Use username instead"), + [GraphQL request] userId: String 👉@deprecated(reason: "Use username instead"), + <#User>[GraphQL request] ): 👉User, + <#Library>[GraphQL request] 👉type Library @key(fields: "id") {, + [GraphQL request] type Library 👉@key(fields: "id") {, + [GraphQL request] id: 👉ID!, + [GraphQL request] name: 👉String @external, + [GraphQL request] name: String 👉@external, + [GraphQL request] userAccount(id: 👉ID! = "1"): User @requires(fields: "name"), + <#User>[GraphQL request] userAccount(id: ID! = "1"): 👉User @requires(fields: "name"), + [GraphQL request] userAccount(id: ID! = "1"): User 👉@requires(fields: "name"), + [builtin/link/v1.0.graphql] 👉directive @link(url: String!, as: String, import: [Import]), + [builtin/link/v1.0.graphql] directive @link(url: 👉String!, as: String, import: [Import]), + [builtin/link/v1.0.graphql] directive @link(url: String!, as: 👉String, import: [Import]), + [builtin/link/v1.0.graphql] directive @link(url: String!, as: String, import: [👉Import]), + [builtin/link/v1.0.graphql] 👉scalar Import, + [builtin/federation/v1.0.graphql] 👉directive @key(fields: FieldSet!) repeatable on OBJECT | INTERFACE, + [builtin/federation/v1.0.graphql] directive @key(fields: 👉FieldSet!) repeatable on OBJECT | INTERFACE, + [builtin/federation/v1.0.graphql] 👉directive @external on OBJECT | FIELD_DEFINITION, + [builtin/federation/v1.0.graphql] 👉directive @requires(fields: FieldSet!) on FIELD_DEFINITION, + [builtin/federation/v1.0.graphql] directive @requires(fields: 👉FieldSet!) on FIELD_DEFINITION, + [builtin/federation/v1.0.graphql] 👉scalar FieldSet, + ] + `); + expect(raw(print(document))).toMatchInlineSnapshot(` directive @stream on FIELD directive @transform(from: String!) on FIELD @@ -286,12 +396,14 @@ describe('subgraphCore', () => { `); expect(raw(print(doc))).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v0.3") @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@tag"]) @link(url: "https://specs.apollo.dev/federation/v1.0", import: ["@key", "@requires", "@provides", "@external"]) @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/id/v1.0") + extend schema @link(url: "https://specs.apollo.dev/link/v1.0") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/federation/v2.0") type User @tag(name: "something") directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA + directive @tag(name: String!) repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION + scalar link__Import `); }); diff --git a/subgraph-js/src/federation-atlas.ts b/subgraph-js/src/federation-atlas.ts index 7b4b324b1..2efaf55a0 100644 --- a/subgraph-js/src/federation-atlas.ts +++ b/subgraph-js/src/federation-atlas.ts @@ -1,12 +1,15 @@ -import { Atlas, Schema, gql } from "@apollo/core-schema"; +import { Atlas, Schema, gql, LinkUrl } from "@apollo/core-schema"; export const SUBGRAPH_BASE = Schema.basic( gql `${'builtin:subgraph-base'} @link(url: "https://specs.apollo.dev/federation/v1.0", as: "", import: "@key @requires @provides @external") - @link(url: "https://specs.apollo.dev/tag/v0.1") `) +export const FEDERATION_V2_0 = LinkUrl.from("https://specs.apollo.dev/federation/v2.0")! +export const FEDERATION_V1_0 = LinkUrl.from("https://specs.apollo.dev/federation/v1.0")! +export const FEDERATION_URLS = new Set([FEDERATION_V1_0, FEDERATION_V2_0]) + export const ATLAS = Atlas.fromSchemas( Schema.basic(gql `${'builtin/tag/v0.1'} @id(url: "https://specs.apollo.dev/tag/v0.1") @@ -31,6 +34,7 @@ export const ATLAS = Atlas.fromSchemas( @id(url: "https://specs.apollo.dev/federation/v2.0") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/inaccessible/v0.1", import: "@ (as @inaccessible)") + @link(url: "https://specs.apollo.dev/tag/v0.1", import: "@ (as @tag)") """ federation 2.0 key directive @@ -55,8 +59,8 @@ export const ATLAS = Atlas.fromSchemas( | FIELD_DEFINITION `), - Schema.basic(gql `${'builtin/link/v0.3.graphql'} - @id(url: "https://specs.apollo.dev/link/v0.3") + Schema.basic(gql `${'builtin/link/v1.0.graphql'} + @id(url: "https://specs.apollo.dev/link/v1.0") directive @link(url: String!, as: String, import: [Import]) repeatable on SCHEMA diff --git a/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts b/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts index dc5f66de7..380cc5024 100644 --- a/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts +++ b/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts @@ -1,6 +1,6 @@ -import Schema, { byKind, byName, only, toDefinitionKind } from '@apollo/core-schema'; +import Schema, { byKind, byName, err, LinkUrl, flat, only, toDefinitionKind, report, maybe, isAst } from '@apollo/core-schema'; import { ASTNode, DefinitionNode, DocumentNode, GraphQLEnumType, GraphQLEnumValueConfig, GraphQLSchema, isAbstractType, isEnumType, isObjectType, isScalarType, Kind } from 'graphql'; -import { ATLAS, SUBGRAPH_BASE } from '../federation-atlas'; +import { ATLAS, FEDERATION_URLS, FEDERATION_V2_0, SUBGRAPH_BASE } from '../federation-atlas'; import { GraphQLResolverMap, GraphQLSchemaModule } from './resolverMap'; @@ -141,155 +141,50 @@ export function addResolversToSchema( } } -// function buildSchemaFromSDL( -// modulesOrSDL: (GraphQLSchemaModule | DocumentNode)[] | DocumentNode, -// schemaToExtend?: GraphQLSchema -// ): GraphQLSchema { -// const modules = modulesFromSDL(modulesOrSDL); - -// let document = subgraphCore(modules) - -// const errors = validateSDL(document, schemaToExtend, sdlRules); -// if (errors.length > 0) { -// throw new GraphQLSchemaValidationError(errors); -// } - -// // const definitionsMap: { -// // [name: string]: TypeDefinitionNode[]; -// // } = Object.create(null); - -// // const extensionsMap: { -// // [name: string]: TypeExtensionNode[]; -// // } = Object.create(null); - -// // const directiveDefinitions: DirectiveDefinitionNode[] = []; - -// // const schemaDefinitions: SchemaDefinitionNode[] = []; -// // const schemaExtensions: SchemaExtensionNode[] = []; -// // const schemaDirectives: ConstDirectiveNode[] = []; -// // let description: StringValueNode | undefined; - -// // for (const definition of document.definitions) { -// // if (isTypeDefinitionNode(definition)) { -// // const typeName = definition.name.value; - -// // if (definitionsMap[typeName]) { -// // definitionsMap[typeName].push(definition); -// // } else { -// // definitionsMap[typeName] = [definition]; -// // } -// // } else if (isTypeExtensionNode(definition)) { -// // const typeName = definition.name.value; - -// // if (extensionsMap[typeName]) { -// // extensionsMap[typeName].push(definition); -// // } else { -// // extensionsMap[typeName] = [definition]; -// // } -// // } else if (definition.kind === Kind.DIRECTIVE_DEFINITION) { -// // directiveDefinitions.push(definition); -// // } else if (definition.kind === Kind.SCHEMA_DEFINITION) { -// // schemaDefinitions.push(definition); -// // schemaDirectives.push( -// // ...(definition.directives ? definition.directives : []) -// // ); -// // description = definition.description; -// // } else if (definition.kind === Kind.SCHEMA_EXTENSION) { -// // schemaExtensions.push(definition); -// // schemaDirectives.push( -// // ...(definition.directives ? definition.directives : []) -// // ); -// // } -// // } - - -// // const missingTypeDefinitions: TypeDefinitionNode[] = []; - -// // for (const [extendedTypeName, extensions] of Object.entries(extensionsMap)) { -// // if (!definitionsMap[extendedTypeName]) { -// // const extension = extensions[0]; - -// // const kind = extension.kind; -// // const definition = { -// // kind: extKindToDefKind[kind], -// // name: extension.name -// // } as TypeDefinitionNode; - -// // missingTypeDefinitions.push(definition); -// // } -// // } - -// console.log(print(document)) - -// const schema = extendSchema(schemaToExtend -// ? schemaToExtend -// : new GraphQLSchema({ -// query: undefined -// }), -// document) - -// // schema = extendSchema( -// // schema, -// // { -// // kind: Kind.DOCUMENT, -// // definitions: Object.values(extensionsMap).flat(), -// // }, -// // { -// // assumeValidSDL: true -// // } -// // ); - -// // let operationTypeMap: { [operation in OperationTypeNode]?: string }; - -// // const operationTypes = [...schemaDefinitions(core.document.definitions)] -// // .map(node => node.operationTypes) -// // .filter(isNotNullOrUndefined) -// // .flat(); - -// // if (operationTypes.length > 0) { -// // operationTypeMap = {}; -// // for (const { operation, type } of operationTypes) { -// // operationTypeMap[operation] = type.name.value; -// // } -// // } else { -// // operationTypeMap = { -// // query: "Query", -// // mutation: "Mutation", -// // subscription: "Subscription" -// // }; -// // } - -// // schema = new GraphQLSchema({ -// // ...schema.toConfig(), -// // ...mapValues(operationTypeMap, typeName => -// // typeName -// // ? (schema.getType(typeName) as GraphQLObjectType) -// // : undefined -// // ), -// // description: description?.value, -// // astNode: { -// // kind: Kind.SCHEMA_DEFINITION, -// // description, -// // directives: schemaDirectives, -// // operationTypes: [] // satisfies typescript, will be ignored -// // } -// // }); +export function subgraphCore(document: DocumentNode): DocumentNode { + const schema = Schema.from(document, SUBGRAPH_BASE) + let output = (linksFed2(schema) ? Schema.basic(document) : schema) + .compile(ATLAS) + .document + if (!maybe(schema.scope)) { + output = { ...output, + definitions: output.definitions + .filter(node => !isAst(node, Kind.SCHEMA_EXTENSION) || node.loc) + } + } + return withImplicitDefinitions(output) +} -// for (const module of modules) { -// if (!module.resolvers) continue; -// addResolversToSchema(schema, module.resolvers); -// } +export function ErrTooManyFederations(versions: Readonly>) { + return err('TooManyFederations', { + message: `schema should link against one version of federation, ${versions.size} versions found`, + versions: [...versions.keys()], + nodes: [...flat(versions.values())] + }) +} -// return schema; -// } +function linksFed2(schema: Schema) { + const versions = new Map() + for (const link of schema.scope) { + const graph = link.gref.graph + if (!graph) continue + if (FEDERATION_URLS.has(graph)) { + const existing = versions.get(graph) + if (existing) existing.push(link.via!) + else versions.set(graph, [link.via!]) + } + } + if (versions.size > 1) + report(ErrTooManyFederations(versions)) + return versions.has(FEDERATION_V2_0) +} -export function subgraphCore(document: DocumentNode): DocumentNode { - const core = Schema.from(document, SUBGRAPH_BASE).compile(ATLAS) - const defs = [...implicitDefinitionNodes(core.document)] +function withImplicitDefinitions(doc: DocumentNode) { + const defs = [...implicitDefinitionNodes(doc)] return defs.length ? { - ...core.document, - definitions: core.document.definitions.concat(defs) - } : core.document + ...doc, + definitions: doc.definitions.concat(defs) + } : doc } function *implicitDefinitionNodes(document: DocumentNode): Iterable { From b04c0685d1d81aa2c3521e3800b0102f6edd538e Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Wed, 6 Apr 2022 09:11:38 -0400 Subject: [PATCH 25/33] update atlas and tests --- package-lock.json | 26 ++---- .../src/__tests__/subgraphCore.test.ts | 82 +++++++++++-------- subgraph-js/src/federation-atlas.ts | 36 ++++++-- 3 files changed, 81 insertions(+), 63 deletions(-) diff --git a/package-lock.json b/package-lock.json index 6d1aa736a..96e318534 100644 --- a/package-lock.json +++ b/package-lock.json @@ -176,7 +176,7 @@ }, "node_modules/@apollo/core-schema": { "version": "0.3.0", - "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#2adf4f7c9df1dc644f20eaf2578841a65810e073", + "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#525e6ac66816e591f93228dd8ee6787c022abc45", "license": "MIT", "dependencies": { "@protoplasm/recall": "^0.2" @@ -18882,12 +18882,12 @@ "@apollo/core-schema": "apollographql/core-schema-js#v0.3" }, "engines": { - "node": ">=12.13.0" + "node": ">=12.13.0 <18.0" }, "peerDependencies": { "graphql": "^16.0.0" } - } + } }, "dependencies": { "@apollo/client": { @@ -18918,8 +18918,8 @@ } }, "@apollo/core-schema": { - "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#2adf4f7c9df1dc644f20eaf2578841a65810e073", - "from": "@apollo/core-schema@apollographql/core-schema-js", + "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#525e6ac66816e591f93228dd8ee6787c022abc45", + "from": "@apollo/core-schema@apollographql/core-schema-js#v0.3", "requires": { "@protoplasm/recall": "^0.2" }, @@ -19006,22 +19006,6 @@ "version": "file:subgraph-js", "requires": { "@apollo/core-schema": "apollographql/core-schema-js#v0.3" - }, - "dependencies": { - "@apollo/core-schema": { - "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#2adf4f7c9df1dc644f20eaf2578841a65810e073", - "from": "@apollo/core-schema@apollographql/core-schema-js", - "requires": { - "@protoplasm/recall": "^0.2" - }, - "dependencies": { - "@protoplasm/recall": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/@protoplasm/recall/-/recall-0.2.1.tgz", - "integrity": "sha512-7OfrS55jRaF7uERewbjkO1kjDOaCZ+xTgI2NPko6ERFktqtGomUNab8GuQwzSyXcwyxwAuiuy1KpaNxfPujcqQ==" - } - } - } } }, "@apollo/utils.logger": { diff --git a/subgraph-js/src/__tests__/subgraphCore.test.ts b/subgraph-js/src/__tests__/subgraphCore.test.ts index fbe2cf39e..b20b6e806 100644 --- a/subgraph-js/src/__tests__/subgraphCore.test.ts +++ b/subgraph-js/src/__tests__/subgraphCore.test.ts @@ -11,7 +11,7 @@ describe('subgraphCore', () => { const result = getResult(() => subgraphCore(fixtures[0].typeDefs)); expect([...result.errors()]).toEqual([]); expect(raw(print(result.unwrap()))).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v1.0") @link(url: "https://specs.apollo.dev/inaccessible/v0.1") @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key", "@requires", "@provides", "@external", "@tag", "@extends", "@shareable"]) + extend schema @link(url: "https://specs.apollo.dev/link/v1.0") @link(url: "https://specs.apollo.dev/inaccessible/v0.1") @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key", "@requires", "@provides", "@external", "@tag", "@extends", "@shareable", "@override"]) directive @stream on FIELD @@ -77,10 +77,11 @@ describe('subgraphCore', () => { id: ID! name: String @external userAccount(id: ID! = "1"): User @requires(fields: "name") + description: String @override(from: "books") } """federation 2.0 key directive""" - directive @key(fields: federation__FieldSet!) repeatable on OBJECT | INTERFACE + directive @key(fields: federation__FieldSet!, resolvable: Boolean) repeatable on OBJECT | INTERFACE directive @requires(fields: federation__FieldSet!) on FIELD_DEFINITION @@ -88,10 +89,12 @@ describe('subgraphCore', () => { directive @external on OBJECT | FIELD_DEFINITION - directive @extends on INTERFACE + directive @extends on OBJECT | INTERFACE directive @shareable on FIELD_DEFINITION | OBJECT + directive @override(from: String!) on FIELD_DEFINITION + directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA scalar federation__FieldSet @@ -107,30 +110,33 @@ describe('subgraphCore', () => { Array [ [builtin/tag/v0.1] 👉@id(url: "https://specs.apollo.dev/tag/v0.1"), [builtin/tag/v0.1] 👉directive @tag(name: String!), + [builtin/tag/v0.2] 👉@id(url: "https://specs.apollo.dev/tag/v0.2"), + [builtin/tag/v0.2] 👉directive @tag(name: String!), [builtin/federation/v1.0.graphql] 👉@id(url: "https://specs.apollo.dev/federation/v1.0"), [builtin/federation/v1.0.graphql] 👉directive @key(fields: FieldSet!) repeatable on OBJECT | INTERFACE, [builtin/federation/v1.0.graphql] 👉directive @requires(fields: FieldSet!) on FIELD_DEFINITION, [builtin/federation/v1.0.graphql] 👉directive @provides(fields: FieldSet!) on FIELD_DEFINITION, [builtin/federation/v1.0.graphql] 👉directive @external on OBJECT | FIELD_DEFINITION, + [builtin/federation/v1.0.graphql] 👉directive @extends on OBJECT | INTERFACE, [builtin/federation/v1.0.graphql] 👉scalar FieldSet, - GRef => GRef (via [builtin/federation/v2.0.graphql] 👉@link(url: "https://specs.apollo.dev/tag/v0.1", import: "@ (as @tag)")), - GRef => GRef (via [builtin/federation/v2.0.graphql] 👉@link(url: "https://specs.apollo.dev/inaccessible/v0.1", import: "@ (as @inaccessible)")), + GRef => GRef (via [builtin/federation/v2.0.graphql] 👉@link(url: "https://specs.apollo.dev/tag/v0.2", import: [{ name: "@", as: "@tag" }])), + GRef => GRef (via [builtin/federation/v2.0.graphql] 👉@link(url: "https://specs.apollo.dev/inaccessible/v0.1", import: [{ name: "@", as: "@inaccessible" }])), [builtin/federation/v2.0.graphql] 👉@id(url: "https://specs.apollo.dev/federation/v2.0"), - [builtin/federation/v2.0.graphql] 👉directive @key(fields: FieldSet!) repeatable on OBJECT | INTERFACE, + [builtin/federation/v2.0.graphql] 👉directive @key(fields: FieldSet!, resolvable: Boolean) repeatable on OBJECT | INTERFACE, [builtin/federation/v2.0.graphql] 👉directive @requires(fields: FieldSet!) on FIELD_DEFINITION, [builtin/federation/v2.0.graphql] 👉directive @provides(fields: FieldSet!) on FIELD_DEFINITION, [builtin/federation/v2.0.graphql] 👉directive @external on OBJECT | FIELD_DEFINITION, - [builtin/federation/v2.0.graphql] 👉directive @moving(to: String!) on FIELD_DEFINITION, [builtin/federation/v2.0.graphql] 👉directive @shareable on FIELD_DEFINITION | OBJECT, - [builtin/federation/v2.0.graphql] 👉directive @extends on INTERFACE, + [builtin/federation/v2.0.graphql] 👉directive @extends on OBJECT | INTERFACE, + [builtin/federation/v2.0.graphql] 👉directive @override(from: String!) on FIELD_DEFINITION, [builtin/federation/v2.0.graphql] 👉scalar FieldSet, [builtin/inaccessible/v0.1.graphql] 👉@id(url: "https://specs.apollo.dev/inaccessible/v0.1"), [builtin/inaccessible/v0.1.graphql] 👉directive @inaccessible on, [builtin/link/v1.0.graphql] 👉@id(url: "https://specs.apollo.dev/link/v1.0"), [builtin/link/v1.0.graphql] 👉directive @link(url: String!, as: String, import: [Import]), [builtin/link/v1.0.graphql] 👉scalar Import, - GRef => GRef (via [builtin/id/v1.0.graphql] 👉@link(url: "https://specs.apollo.dev/link/v0.3"), - GRef => GRef (via [builtin/id/v1.0.graphql] 👉@link(url: "https://specs.apollo.dev/link/v0.3"), + GRef => GRef (via [builtin/id/v1.0.graphql] 👉@link(url: "https://specs.apollo.dev/link/v1.0"), + GRef => GRef (via [builtin/id/v1.0.graphql] 👉@link(url: "https://specs.apollo.dev/link/v1.0"), [builtin/id/v1.0.graphql] 👉@id(url: "https://specs.apollo.dev/id/v1.0"), [builtin/id/v1.0.graphql] 👉directive @id(url: Url!, as: Name) on SCHEMA, ] @@ -179,11 +185,18 @@ describe('subgraphCore', () => { Array [ [NoDefinition] no definitions found for reference: #@shareable - GraphQL request:58:20 - 57 | name: Name @cacheControl(inheritMaxAge: true) - 58 | username: String @shareable # Provided by the 'reviews' subgraph + GraphQL request:55:20 + 54 | name: Name @cacheControl(inheritMaxAge: true) + 55 | username: String @shareable # Provided by the 'reviews' subgraph | ^ - 59 | birthDate(locale: String @tag(name: "admin")): String @tag(name: "admin") @tag(name: "dev"), + 56 | birthDate(locale: String @tag(name: "admin")): String, + [NoDefinition] no definitions found for reference: #@override + + GraphQL request:81:24 + 80 | userAccount(id: ID! = "1"): User @requires(fields: "name") + 81 | description: String @override(from: "books") + | ^ + 82 | }, ] `); @@ -193,17 +206,17 @@ describe('subgraphCore', () => { Array [ <#@stream>[GraphQL request] 👉directive @stream on FIELD, <#@transform>[GraphQL request] 👉directive @transform(from: String!) on FIELD, - <#@tag>[GraphQL request] 👉directive @tag(name: String!) repeatable on, + <#@tag>[GraphQL request] 👉directive @tag(, <#CacheControlScope>[GraphQL request] 👉enum CacheControlScope @tag(name: "from-reviews") {, <#@cacheControl>[GraphQL request] 👉directive @cacheControl(, - <#JSON>[GraphQL request] 👉scalar JSON @tag(name: "from-reviews") @specifiedBy(url: "https://json-spec.dev"), + <#JSON>[GraphQL request] 👉scalar JSON, <>[GraphQL request] 👉schema {, <#RootQuery>[GraphQL request] 👉type RootQuery {, <#PasswordAccount>[GraphQL request] 👉type PasswordAccount @key(fields: "email") {, <#SMSAccount>[GraphQL request] 👉type SMSAccount @key(fields: "number") {, <#AccountType>[GraphQL request] 👉union AccountType @tag(name: "from-accounts") = PasswordAccount | SMSAccount, <#UserMetadata>[GraphQL request] 👉type UserMetadata {, - <#User>[GraphQL request] 👉type User @key(fields: "id") @key(fields: "username name { first last }") @tag(name: "from-accounts") {, + <#User>[GraphQL request] 👉type User, <#Name>[GraphQL request] 👉type Name {, <#Mutation>[GraphQL request] 👉type Mutation {, <#Library>[GraphQL request] 👉type Library @key(fields: "id") {, @@ -221,8 +234,8 @@ describe('subgraphCore', () => { <#@stream>[GraphQL request] 👉directive @stream on FIELD, <#@transform>[GraphQL request] 👉directive @transform(from: String!) on FIELD, [GraphQL request] directive @transform(from: 👉String!) on FIELD, - <#@tag>[GraphQL request] 👉directive @tag(name: String!) repeatable on, - [GraphQL request] directive @tag(name: 👉String!) repeatable on, + <#@tag>[GraphQL request] 👉directive @tag(, + [GraphQL request] name: 👉String!, <#CacheControlScope>[GraphQL request] 👉enum CacheControlScope @tag(name: "from-reviews") {, <#@tag>[GraphQL request] enum CacheControlScope 👉@tag(name: "from-reviews") {, <#@tag>[GraphQL request] PUBLIC 👉@tag(name: "from-reviews"), @@ -230,9 +243,9 @@ describe('subgraphCore', () => { [GraphQL request] maxAge: 👉Int, <#CacheControlScope>[GraphQL request] scope: 👉CacheControlScope, [GraphQL request] inheritMaxAge: 👉Boolean, - <#JSON>[GraphQL request] 👉scalar JSON @tag(name: "from-reviews") @specifiedBy(url: "https://json-spec.dev"), - <#@tag>[GraphQL request] scalar JSON 👉@tag(name: "from-reviews") @specifiedBy(url: "https://json-spec.dev"), - [GraphQL request] scalar JSON @tag(name: "from-reviews") 👉@specifiedBy(url: "https://json-spec.dev"), + <#JSON>[GraphQL request] 👉scalar JSON, + <#@tag>[GraphQL request] 👉@tag(name: "from-reviews"), + [GraphQL request] 👉@specifiedBy(url: "https://json-spec.dev"), <>[GraphQL request] 👉schema {, <>[GraphQL request] 👉query: RootQuery, <#RootQuery>[GraphQL request] query: 👉RootQuery, @@ -257,21 +270,21 @@ describe('subgraphCore', () => { [GraphQL request] name: 👉String, [GraphQL request] address: 👉String, [GraphQL request] description: 👉String, - <#User>[GraphQL request] 👉type User @key(fields: "id") @key(fields: "username name { first last }") @tag(name: "from-accounts") {, - [GraphQL request] type User 👉@key(fields: "id") @key(fields: "username name { first last }") @tag(name: "from-accounts") {, - [GraphQL request] type User @key(fields: "id") 👉@key(fields: "username name { first last }") @tag(name: "from-accounts") {, - <#@tag>[GraphQL request] type User @key(fields: "id") @key(fields: "username name { first last }") 👉@tag(name: "from-accounts") {, + <#User>[GraphQL request] 👉type User, + [GraphQL request] 👉@key(fields: "id"), + [GraphQL request] 👉@key(fields: "username name { first last }"), + <#@tag>[GraphQL request] 👉@tag(name: "from-accounts") {, [GraphQL request] id: 👉ID! @tag(name: "accounts"), <#@tag>[GraphQL request] id: ID! 👉@tag(name: "accounts"), <#Name>[GraphQL request] name: 👉Name @cacheControl(inheritMaxAge: true), <#@cacheControl>[GraphQL request] name: Name 👉@cacheControl(inheritMaxAge: true), [GraphQL request] username: 👉String @shareable # Provided by the 'reviews' subgraph, <#@shareable>[GraphQL request] username: String 👉@shareable # Provided by the 'reviews' subgraph, - [GraphQL request] birthDate(locale: 👉String @tag(name: "admin")): String @tag(name: "admin") @tag(name: "dev"), - <#@tag>[GraphQL request] birthDate(locale: String 👉@tag(name: "admin")): String @tag(name: "admin") @tag(name: "dev"), - [GraphQL request] birthDate(locale: String @tag(name: "admin")): 👉String @tag(name: "admin") @tag(name: "dev"), - <#@tag>[GraphQL request] birthDate(locale: String @tag(name: "admin")): String 👉@tag(name: "admin") @tag(name: "dev"), - <#@tag>[GraphQL request] birthDate(locale: String @tag(name: "admin")): String @tag(name: "admin") 👉@tag(name: "dev"), + [GraphQL request] birthDate(locale: 👉String @tag(name: "admin")): String, + <#@tag>[GraphQL request] birthDate(locale: String 👉@tag(name: "admin")): String, + [GraphQL request] birthDate(locale: String @tag(name: "admin")): 👉String, + <#@tag>[GraphQL request] 👉@tag(name: "admin"), + <#@tag>[GraphQL request] 👉@tag(name: "dev"), <#AccountType>[GraphQL request] account: 👉AccountType, <#UserMetadata>[GraphQL request] metadata: [👉UserMetadata], [GraphQL request] ssn: 👉String, @@ -292,6 +305,8 @@ describe('subgraphCore', () => { [GraphQL request] userAccount(id: 👉ID! = "1"): User @requires(fields: "name"), <#User>[GraphQL request] userAccount(id: ID! = "1"): 👉User @requires(fields: "name"), [GraphQL request] userAccount(id: ID! = "1"): User 👉@requires(fields: "name"), + [GraphQL request] description: 👉String @override(from: "books"), + <#@override>[GraphQL request] description: String 👉@override(from: "books"), [builtin/link/v1.0.graphql] 👉directive @link(url: String!, as: String, import: [Import]), [builtin/link/v1.0.graphql] directive @link(url: 👉String!, as: String, import: [Import]), [builtin/link/v1.0.graphql] directive @link(url: String!, as: 👉String, import: [Import]), @@ -371,6 +386,7 @@ describe('subgraphCore', () => { id: ID! name: String @external userAccount(id: ID! = "1"): User @requires(fields: "name") + description: String @override(from: "books") } directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA @@ -396,13 +412,13 @@ describe('subgraphCore', () => { `); expect(raw(print(doc))).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v1.0") @link(url: "https://specs.apollo.dev/tag/v0.1") @link(url: "https://specs.apollo.dev/federation/v2.0") + extend schema @link(url: "https://specs.apollo.dev/link/v1.0") @link(url: "https://specs.apollo.dev/tag/v0.2") @link(url: "https://specs.apollo.dev/federation/v2.0") type User @tag(name: "something") directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA - directive @tag(name: String!) repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION + directive @tag(name: String!) repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION | ARGUMENT_DEFINITION | SCALAR | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION scalar link__Import `); diff --git a/subgraph-js/src/federation-atlas.ts b/subgraph-js/src/federation-atlas.ts index 2efaf55a0..b4d53f609 100644 --- a/subgraph-js/src/federation-atlas.ts +++ b/subgraph-js/src/federation-atlas.ts @@ -2,8 +2,8 @@ import { Atlas, Schema, gql, LinkUrl } from "@apollo/core-schema"; export const SUBGRAPH_BASE = Schema.basic( gql `${'builtin:subgraph-base'} - @link(url: "https://specs.apollo.dev/federation/v1.0", as: "", - import: "@key @requires @provides @external") + @link(url: "https://specs.apollo.dev/federation/v1.0", + import: ["@key", "@requires", "@provides", "@external"]) `) export const FEDERATION_V2_0 = LinkUrl.from("https://specs.apollo.dev/federation/v2.0")! @@ -16,6 +16,22 @@ export const ATLAS = Atlas.fromSchemas( directive @tag(name: String!) repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION `), + Schema.basic(gql `${'builtin/tag/v0.2'} + @id(url: "https://specs.apollo.dev/tag/v0.2") + directive @tag(name: String!) + repeatable on + | FIELD_DEFINITION + | INTERFACE + | OBJECT + | UNION + | ARGUMENT_DEFINITION + | SCALAR + | ENUM + | ENUM_VALUE + | INPUT_OBJECT + | INPUT_FIELD_DEFINITION + `), + Schema.basic(gql `${'builtin/federation/v1.0.graphql'} @id(url: "https://specs.apollo.dev/federation/v1.0") @@ -26,6 +42,8 @@ export const ATLAS = Atlas.fromSchemas( directive @requires(fields: FieldSet!) on FIELD_DEFINITION directive @provides(fields: FieldSet!) on FIELD_DEFINITION directive @external on OBJECT | FIELD_DEFINITION + directive @extends on OBJECT | INTERFACE + scalar FieldSet `), @@ -33,19 +51,19 @@ export const ATLAS = Atlas.fromSchemas( Schema.basic(gql `${'builtin/federation/v2.0.graphql'} @id(url: "https://specs.apollo.dev/federation/v2.0") @link(url: "https://specs.apollo.dev/tag/v0.1") - @link(url: "https://specs.apollo.dev/inaccessible/v0.1", import: "@ (as @inaccessible)") - @link(url: "https://specs.apollo.dev/tag/v0.1", import: "@ (as @tag)") + @link(url: "https://specs.apollo.dev/inaccessible/v0.1", import: [{ name: "@", as: "@inaccessible" }]) + @link(url: "https://specs.apollo.dev/tag/v0.2", import: [{ name: "@", as: "@tag" }]) """ federation 2.0 key directive """ - directive @key(fields: FieldSet!) repeatable on OBJECT | INTERFACE + directive @key(fields: FieldSet!, resolvable: Boolean) repeatable on OBJECT | INTERFACE directive @requires(fields: FieldSet!) on FIELD_DEFINITION directive @provides(fields: FieldSet!) on FIELD_DEFINITION directive @external on OBJECT | FIELD_DEFINITION - directive @moving(to: String!) on FIELD_DEFINITION directive @shareable on FIELD_DEFINITION | OBJECT - directive @extends on INTERFACE + directive @extends on OBJECT | INTERFACE + directive @override(from: String!) on FIELD_DEFINITION scalar FieldSet `), @@ -70,8 +88,8 @@ export const ATLAS = Atlas.fromSchemas( Schema.basic(gql `${'builtin/id/v1.0.graphql'} @id(url: "https://specs.apollo.dev/id/v1.0") - @link(url: "https://specs.apollo.dev/link/v0.3", - import: "Url Name") + @link(url: "https://specs.apollo.dev/link/v1.0", + import: ["Url", "Name"]) directive @id(url: Url!, as: Name) on SCHEMA `) From 4319ca89d3515b68fa72cea3296f13ca76ee4044 Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Wed, 6 Apr 2022 09:50:12 -0400 Subject: [PATCH 26/33] remove dead code, update atlas --- package-lock.json | 4 +- .../src/__tests__/subgraphCore.test.ts | 4 +- subgraph-js/src/buildSubgraphSchema.ts | 4 -- subgraph-js/src/federation-atlas.ts | 2 +- .../src/schema-helper/buildSchemaFromSDL.ts | 64 ++----------------- 5 files changed, 12 insertions(+), 66 deletions(-) diff --git a/package-lock.json b/package-lock.json index 96e318534..9dbe3e29b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -176,7 +176,7 @@ }, "node_modules/@apollo/core-schema": { "version": "0.3.0", - "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#525e6ac66816e591f93228dd8ee6787c022abc45", + "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#64ff4a857f475a58963c15223a7458c34c501755", "license": "MIT", "dependencies": { "@protoplasm/recall": "^0.2" @@ -18918,7 +18918,7 @@ } }, "@apollo/core-schema": { - "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#525e6ac66816e591f93228dd8ee6787c022abc45", + "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#64ff4a857f475a58963c15223a7458c34c501755", "from": "@apollo/core-schema@apollographql/core-schema-js#v0.3", "requires": { "@protoplasm/recall": "^0.2" diff --git a/subgraph-js/src/__tests__/subgraphCore.test.ts b/subgraph-js/src/__tests__/subgraphCore.test.ts index b20b6e806..4fba1a945 100644 --- a/subgraph-js/src/__tests__/subgraphCore.test.ts +++ b/subgraph-js/src/__tests__/subgraphCore.test.ts @@ -81,7 +81,7 @@ describe('subgraphCore', () => { } """federation 2.0 key directive""" - directive @key(fields: federation__FieldSet!, resolvable: Boolean) repeatable on OBJECT | INTERFACE + directive @key(fields: federation__FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE directive @requires(fields: federation__FieldSet!) on FIELD_DEFINITION @@ -122,7 +122,7 @@ describe('subgraphCore', () => { GRef => GRef (via [builtin/federation/v2.0.graphql] 👉@link(url: "https://specs.apollo.dev/tag/v0.2", import: [{ name: "@", as: "@tag" }])), GRef => GRef (via [builtin/federation/v2.0.graphql] 👉@link(url: "https://specs.apollo.dev/inaccessible/v0.1", import: [{ name: "@", as: "@inaccessible" }])), [builtin/federation/v2.0.graphql] 👉@id(url: "https://specs.apollo.dev/federation/v2.0"), - [builtin/federation/v2.0.graphql] 👉directive @key(fields: FieldSet!, resolvable: Boolean) repeatable on OBJECT | INTERFACE, + [builtin/federation/v2.0.graphql] 👉directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE, [builtin/federation/v2.0.graphql] 👉directive @requires(fields: FieldSet!) on FIELD_DEFINITION, [builtin/federation/v2.0.graphql] 👉directive @provides(fields: FieldSet!) on FIELD_DEFINITION, [builtin/federation/v2.0.graphql] 👉directive @external on OBJECT | FIELD_DEFINITION, diff --git a/subgraph-js/src/buildSubgraphSchema.ts b/subgraph-js/src/buildSubgraphSchema.ts index 6ce9715ec..678e18048 100644 --- a/subgraph-js/src/buildSubgraphSchema.ts +++ b/subgraph-js/src/buildSubgraphSchema.ts @@ -72,10 +72,6 @@ export function buildSubgraphSchema( // representative of what the user defined for their schema. This is before // we process any of the federation directives and add custom federation types // so its the right place to create our service definition sdl. - // - // We have to use a modified printSchema from graphql-js which includes - // support for preserving the *uses* of federation directives while removing - // their *definitions* from the sdl. const sdl = print(document); // Add an empty query root type if none has been defined diff --git a/subgraph-js/src/federation-atlas.ts b/subgraph-js/src/federation-atlas.ts index b4d53f609..ec50131be 100644 --- a/subgraph-js/src/federation-atlas.ts +++ b/subgraph-js/src/federation-atlas.ts @@ -57,7 +57,7 @@ export const ATLAS = Atlas.fromSchemas( """ federation 2.0 key directive """ - directive @key(fields: FieldSet!, resolvable: Boolean) repeatable on OBJECT | INTERFACE + directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE directive @requires(fields: FieldSet!) on FIELD_DEFINITION directive @provides(fields: FieldSet!) on FIELD_DEFINITION directive @external on OBJECT | FIELD_DEFINITION diff --git a/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts b/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts index 380cc5024..a9f7567ff 100644 --- a/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts +++ b/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts @@ -3,62 +3,20 @@ import { ASTNode, DefinitionNode, DocumentNode, GraphQLEnumType, GraphQLEnumValu import { ATLAS, FEDERATION_URLS, FEDERATION_V2_0, SUBGRAPH_BASE } from '../federation-atlas'; import { GraphQLResolverMap, GraphQLSchemaModule } from './resolverMap'; - - -// function isNotNullOrUndefined( -// value: T | null | undefined, -// ): value is T { -// return value !== null && typeof value !== 'undefined'; -// } - -export function isNode(maybeNode: any): maybeNode is ASTNode { - return maybeNode && typeof maybeNode.kind === "string"; -} - -export function isDocumentNode(node: ASTNode): node is DocumentNode { - return isNode(node) && node.kind === Kind.DOCUMENT; +export function ErrTooManyFederations(versions: Readonly>) { + return err('TooManyFederations', { + message: `schema should link against one version of federation, ${versions.size} versions found`, + versions: [...versions.keys()], + nodes: [...flat(versions.values())] + }) } -// function mapValues( -// object: Record, -// callback: (value: T) => U -// ): Record { -// const result: Record = Object.create(null); - -// for (const [key, value] of Object.entries(object)) { -// result[key] = callback(value); -// } - -// return result; -// } - -/* -const skippedSDLRules: SDLValidationRule[] = [ - KnownTypeNamesRule, - UniqueDirectivesPerLocationRule, - PossibleTypeExtensionsRule, -]; - -const sdlRules = specifiedSDLRules.filter( - rule => !skippedSDLRules.includes(rule) -); -*/ - -// const extKindToDefKind = { -// [Kind.SCALAR_TYPE_EXTENSION]: Kind.SCALAR_TYPE_DEFINITION, -// [Kind.OBJECT_TYPE_EXTENSION]: Kind.OBJECT_TYPE_DEFINITION, -// [Kind.INTERFACE_TYPE_EXTENSION]: Kind.INTERFACE_TYPE_DEFINITION, -// [Kind.UNION_TYPE_EXTENSION]: Kind.UNION_TYPE_DEFINITION, -// [Kind.ENUM_TYPE_EXTENSION]: Kind.ENUM_TYPE_DEFINITION, -// [Kind.INPUT_OBJECT_TYPE_EXTENSION]: Kind.INPUT_OBJECT_TYPE_DEFINITION -// }; - export function modulesFromSDL( modulesOrSDL: (GraphQLSchemaModule | DocumentNode)[] | DocumentNode ): GraphQLSchemaModule[] { if (Array.isArray(modulesOrSDL)) { return modulesOrSDL.map(moduleOrSDL => { - if (isNode(moduleOrSDL) && isDocumentNode(moduleOrSDL)) { + if (isAst(moduleOrSDL, Kind.DOCUMENT)) { return { typeDefs: moduleOrSDL }; } else { return moduleOrSDL; @@ -155,14 +113,6 @@ export function subgraphCore(document: DocumentNode): DocumentNode { return withImplicitDefinitions(output) } -export function ErrTooManyFederations(versions: Readonly>) { - return err('TooManyFederations', { - message: `schema should link against one version of federation, ${versions.size} versions found`, - versions: [...versions.keys()], - nodes: [...flat(versions.values())] - }) -} - function linksFed2(schema: Schema) { const versions = new Map() for (const link of schema.scope) { From 0dc4d016a0cf97f8b79524c2e82830ed4a760293 Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Wed, 6 Apr 2022 11:45:27 -0400 Subject: [PATCH 27/33] update atlas to remove transitive links --- subgraph-js/src/federation-atlas.ts | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/subgraph-js/src/federation-atlas.ts b/subgraph-js/src/federation-atlas.ts index ec50131be..b56fdeb78 100644 --- a/subgraph-js/src/federation-atlas.ts +++ b/subgraph-js/src/federation-atlas.ts @@ -51,8 +51,6 @@ export const ATLAS = Atlas.fromSchemas( Schema.basic(gql `${'builtin/federation/v2.0.graphql'} @id(url: "https://specs.apollo.dev/federation/v2.0") @link(url: "https://specs.apollo.dev/tag/v0.1") - @link(url: "https://specs.apollo.dev/inaccessible/v0.1", import: [{ name: "@", as: "@inaccessible" }]) - @link(url: "https://specs.apollo.dev/tag/v0.2", import: [{ name: "@", as: "@tag" }]) """ federation 2.0 key directive @@ -65,6 +63,16 @@ export const ATLAS = Atlas.fromSchemas( directive @extends on OBJECT | INTERFACE directive @override(from: String!) on FIELD_DEFINITION + # fixme — the composer is currently hardcoded to use the federation 2.0 + # url to find @tag and @inaccessible. make these transitive links once + # we've verified that's fixed + directive @tag(name: String!) + repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION + directive @inaccessible on + | OBJECT + | INTERFACE + | FIELD_DEFINITION + scalar FieldSet `), From 510eac79d86522093343434c925a1df0c0c27bdd Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Thu, 7 Apr 2022 13:53:52 -0400 Subject: [PATCH 28/33] update atlas and tests again, missed a link --- subgraph-js/src/__tests__/subgraphCore.test.ts | 16 ++++++++-------- subgraph-js/src/federation-atlas.ts | 15 +++++++++++++-- 2 files changed, 21 insertions(+), 10 deletions(-) diff --git a/subgraph-js/src/__tests__/subgraphCore.test.ts b/subgraph-js/src/__tests__/subgraphCore.test.ts index 4fba1a945..528acb111 100644 --- a/subgraph-js/src/__tests__/subgraphCore.test.ts +++ b/subgraph-js/src/__tests__/subgraphCore.test.ts @@ -11,7 +11,7 @@ describe('subgraphCore', () => { const result = getResult(() => subgraphCore(fixtures[0].typeDefs)); expect([...result.errors()]).toEqual([]); expect(raw(print(result.unwrap()))).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v1.0") @link(url: "https://specs.apollo.dev/inaccessible/v0.1") @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key", "@requires", "@provides", "@external", "@tag", "@extends", "@shareable", "@override"]) + extend schema @link(url: "https://specs.apollo.dev/link/v1.0") @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key", "@requires", "@provides", "@external", "@tag", "@extends", "@shareable", "@inaccessible", "@override"]) directive @stream on FIELD @@ -93,14 +93,14 @@ describe('subgraphCore', () => { directive @shareable on FIELD_DEFINITION | OBJECT + directive @inaccessible on OBJECT | INTERFACE | FIELD_DEFINITION + directive @override(from: String!) on FIELD_DEFINITION directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA scalar federation__FieldSet - directive @inaccessible on OBJECT | INTERFACE | FIELD_DEFINITION - scalar link__Import `); }); @@ -119,8 +119,6 @@ describe('subgraphCore', () => { [builtin/federation/v1.0.graphql] 👉directive @external on OBJECT | FIELD_DEFINITION, [builtin/federation/v1.0.graphql] 👉directive @extends on OBJECT | INTERFACE, [builtin/federation/v1.0.graphql] 👉scalar FieldSet, - GRef => GRef (via [builtin/federation/v2.0.graphql] 👉@link(url: "https://specs.apollo.dev/tag/v0.2", import: [{ name: "@", as: "@tag" }])), - GRef => GRef (via [builtin/federation/v2.0.graphql] 👉@link(url: "https://specs.apollo.dev/inaccessible/v0.1", import: [{ name: "@", as: "@inaccessible" }])), [builtin/federation/v2.0.graphql] 👉@id(url: "https://specs.apollo.dev/federation/v2.0"), [builtin/federation/v2.0.graphql] 👉directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE, [builtin/federation/v2.0.graphql] 👉directive @requires(fields: FieldSet!) on FIELD_DEFINITION, @@ -129,6 +127,8 @@ describe('subgraphCore', () => { [builtin/federation/v2.0.graphql] 👉directive @shareable on FIELD_DEFINITION | OBJECT, [builtin/federation/v2.0.graphql] 👉directive @extends on OBJECT | INTERFACE, [builtin/federation/v2.0.graphql] 👉directive @override(from: String!) on FIELD_DEFINITION, + [builtin/federation/v2.0.graphql] 👉directive @tag(name: String!), + [builtin/federation/v2.0.graphql] 👉directive @inaccessible on, [builtin/federation/v2.0.graphql] 👉scalar FieldSet, [builtin/inaccessible/v0.1.graphql] 👉@id(url: "https://specs.apollo.dev/inaccessible/v0.1"), [builtin/inaccessible/v0.1.graphql] 👉directive @inaccessible on, @@ -412,14 +412,14 @@ describe('subgraphCore', () => { `); expect(raw(print(doc))).toMatchInlineSnapshot(` - extend schema @link(url: "https://specs.apollo.dev/link/v1.0") @link(url: "https://specs.apollo.dev/tag/v0.2") @link(url: "https://specs.apollo.dev/federation/v2.0") + extend schema @link(url: "https://specs.apollo.dev/link/v1.0") @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@tag"]) type User @tag(name: "something") - directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA - directive @tag(name: String!) repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION | ARGUMENT_DEFINITION | SCALAR | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION + directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA + scalar link__Import `); }); diff --git a/subgraph-js/src/federation-atlas.ts b/subgraph-js/src/federation-atlas.ts index b56fdeb78..ae5ad35f6 100644 --- a/subgraph-js/src/federation-atlas.ts +++ b/subgraph-js/src/federation-atlas.ts @@ -50,7 +50,6 @@ export const ATLAS = Atlas.fromSchemas( Schema.basic(gql `${'builtin/federation/v2.0.graphql'} @id(url: "https://specs.apollo.dev/federation/v2.0") - @link(url: "https://specs.apollo.dev/tag/v0.1") """ federation 2.0 key directive @@ -66,8 +65,20 @@ export const ATLAS = Atlas.fromSchemas( # fixme — the composer is currently hardcoded to use the federation 2.0 # url to find @tag and @inaccessible. make these transitive links once # we've verified that's fixed + directive @tag(name: String!) - repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION + repeatable on + | FIELD_DEFINITION + | INTERFACE + | OBJECT + | UNION + | ARGUMENT_DEFINITION + | SCALAR + | ENUM + | ENUM_VALUE + | INPUT_OBJECT + | INPUT_FIELD_DEFINITION + directive @inaccessible on | OBJECT | INTERFACE From 808c53eed2434e03b6ccc4f9c726aa3467b616cf Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Thu, 7 Apr 2022 14:52:20 -0400 Subject: [PATCH 29/33] update comment and use new dangerous method from core-schema library to preserve non-core fedv1 schemas --- package-lock.json | 4 ++-- subgraph-js/src/schema-helper/buildSchemaFromSDL.ts | 11 +++++------ 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9dbe3e29b..d238c2fc6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -176,7 +176,7 @@ }, "node_modules/@apollo/core-schema": { "version": "0.3.0", - "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#64ff4a857f475a58963c15223a7458c34c501755", + "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#bdf63c2ffae1bd36168ce486d72e6a82aa49279a", "license": "MIT", "dependencies": { "@protoplasm/recall": "^0.2" @@ -18918,7 +18918,7 @@ } }, "@apollo/core-schema": { - "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#64ff4a857f475a58963c15223a7458c34c501755", + "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#bdf63c2ffae1bd36168ce486d72e6a82aa49279a", "from": "@apollo/core-schema@apollographql/core-schema-js#v0.3", "requires": { "@protoplasm/recall": "^0.2" diff --git a/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts b/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts index a9f7567ff..3caca9b62 100644 --- a/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts +++ b/subgraph-js/src/schema-helper/buildSchemaFromSDL.ts @@ -103,14 +103,13 @@ export function subgraphCore(document: DocumentNode): DocumentNode { const schema = Schema.from(document, SUBGRAPH_BASE) let output = (linksFed2(schema) ? Schema.basic(document) : schema) .compile(ATLAS) - .document if (!maybe(schema.scope)) { - output = { ...output, - definitions: output.definitions - .filter(node => !isAst(node, Kind.SCHEMA_EXTENSION) || node.loc) - } + // if our scope was empty, we didn't @link anything + // if we didn't @link anything, remove any generated headers to keep + // the document in non-core form + output = output.dangerousRemoveHeaders() } - return withImplicitDefinitions(output) + return withImplicitDefinitions(output.document) } function linksFed2(schema: Schema) { From f0f23e1a9e4bf921e022258ee9aefcc790db4a9e Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Thu, 7 Apr 2022 18:27:24 -0400 Subject: [PATCH 30/33] add a test to ensure directives are passed through --- package-lock.json | 4 +-- .../src/__tests__/subgraphCore.test.ts | 30 +++++++++++++++++++ 2 files changed, 32 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index d238c2fc6..9f645b7c3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -176,7 +176,7 @@ }, "node_modules/@apollo/core-schema": { "version": "0.3.0", - "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#bdf63c2ffae1bd36168ce486d72e6a82aa49279a", + "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#72dd58c1a2d914c52aec03ebc06afd0690d73613", "license": "MIT", "dependencies": { "@protoplasm/recall": "^0.2" @@ -18918,7 +18918,7 @@ } }, "@apollo/core-schema": { - "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#bdf63c2ffae1bd36168ce486d72e6a82aa49279a", + "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#72dd58c1a2d914c52aec03ebc06afd0690d73613", "from": "@apollo/core-schema@apollographql/core-schema-js#v0.3", "requires": { "@protoplasm/recall": "^0.2" diff --git a/subgraph-js/src/__tests__/subgraphCore.test.ts b/subgraph-js/src/__tests__/subgraphCore.test.ts index 528acb111..dead3ae4f 100644 --- a/subgraph-js/src/__tests__/subgraphCore.test.ts +++ b/subgraph-js/src/__tests__/subgraphCore.test.ts @@ -423,4 +423,34 @@ describe('subgraphCore', () => { scalar link__Import `); }); + + it('retains custom directive applications', () => { + const doc = subgraphCore(gql` + @link(url: "https://example.dev/unknown") + + type User @tag(name: "something") { + id: ID! @unknown + name: String @undefined + weight: Int @definedButNotCore + } + + directive @definedButNotCore on FIELD_DEFINITION + `); + + expect(raw(print(doc))).toMatchInlineSnapshot(` + extend schema @link(url: "https://specs.apollo.dev/link/v1.0") @link(url: "https://example.dev/unknown") + + type User @tag(name: "something") { + id: ID! @unknown + name: String @undefined + weight: Int @definedButNotCore + } + + directive @definedButNotCore on FIELD_DEFINITION + + directive @link(url: String!, as: String, import: [link__Import]) repeatable on SCHEMA + + scalar link__Import + `); + }); }); From adf0aa1b5dbeaf54d3d4a5c94f73fd085e4d9822 Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Fri, 8 Apr 2022 11:06:03 -0400 Subject: [PATCH 31/33] point to core-schema v0.3 on npm, update package-lock --- internals-js/package.json | 2 +- package-lock.json | 12088 ++++++++++++++++++++++++------------ subgraph-js/package.json | 2 +- 3 files changed, 8034 insertions(+), 4058 deletions(-) diff --git a/internals-js/package.json b/internals-js/package.json index bab27c95e..99c1b9a62 100644 --- a/internals-js/package.json +++ b/internals-js/package.json @@ -23,7 +23,7 @@ "node": ">=12.13.0 <18.0" }, "dependencies": { - "@apollo/core-schema": "apollographql/core-schema-js#v0.3", + "@apollo/core-schema": "^0.3", "chalk": "^4.1.0", "js-levenshtein": "^1.1.6" }, diff --git a/package-lock.json b/package-lock.json index 9f645b7c3..ed2e56b35 100644 --- a/package-lock.json +++ b/package-lock.json @@ -64,7 +64,6 @@ } }, "composition-js": { - "name": "@apollo/composition", "version": "2.0.0-preview.9", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { @@ -79,7 +78,6 @@ } }, "federation-integration-testsuite-js": { - "name": "apollo-federation-integration-testsuite", "version": "2.0.0-preview.9", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { @@ -88,7 +86,6 @@ } }, "gateway-js": { - "name": "@apollo/gateway", "version": "2.0.0-preview.9", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { @@ -118,11 +115,10 @@ } }, "internals-js": { - "name": "@apollo/federation-internals", "version": "2.0.0-preview.9", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { - "@apollo/core-schema": "apollographql/core-schema-js#v0.3", + "@apollo/core-schema": "^0.3", "chalk": "^4.1.0", "js-levenshtein": "^1.1.6" }, @@ -133,6 +129,18 @@ "graphql": "^16.0.0" } }, + "node_modules/@ampproject/remapping": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.1.2.tgz", + "integrity": "sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/@apollo/client": { "version": "3.5.10", "resolved": "https://registry.npmjs.org/@apollo/client/-/client-3.5.10.tgz", @@ -176,26 +184,18 @@ }, "node_modules/@apollo/core-schema": { "version": "0.3.0", - "resolved": "git+ssh://git@github.com/apollographql/core-schema-js.git#72dd58c1a2d914c52aec03ebc06afd0690d73613", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@apollo/core-schema/-/core-schema-0.3.0.tgz", + "integrity": "sha512-v+Ys6+W1pDQu+XwP++tI5y4oZdzKrEuVXwsEenOmg2FO/3/G08C+qMhQ9YQ9Ug34rvQGQtgbIDssHEVk4YZS7g==", "dependencies": { "@protoplasm/recall": "^0.2" }, "engines": { - "node": ">=12.13.0 <18.0" + "node": ">=12.13.0" }, "peerDependencies": { "graphql": "^15 || ^16" } }, - "node_modules/@apollo/core-schema/node_modules/@protoplasm/recall": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/@protoplasm/recall/-/recall-0.2.1.tgz", - "integrity": "sha512-7OfrS55jRaF7uERewbjkO1kjDOaCZ+xTgI2NPko6ERFktqtGomUNab8GuQwzSyXcwyxwAuiuy1KpaNxfPujcqQ==", - "engines": { - "node": ">=12.13.0" - } - }, "node_modules/@apollo/federation-internals": { "resolved": "internals-js", "link": true @@ -206,8 +206,9 @@ }, "node_modules/@apollo/protobufjs": { "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@apollo/protobufjs/-/protobufjs-1.2.2.tgz", + "integrity": "sha512-vF+zxhPiLtkwxONs6YanSt1EpwpGilThpneExUN5K3tCymuxNnVq2yojTvnpRjv2QfsEIt/n7ozPIIzBLwGIDQ==", "hasInstallScript": true, - "license": "BSD-3-Clause", "dependencies": { "@protobufjs/aspromise": "^1.1.2", "@protobufjs/base64": "^1.1.2", @@ -230,7 +231,8 @@ }, "node_modules/@apollo/protobufjs/node_modules/@types/node": { "version": "10.17.60", - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz", + "integrity": "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==" }, "node_modules/@apollo/query-graphs": { "resolved": "query-graphs-js", @@ -263,15 +265,17 @@ }, "node_modules/@apollographql/graphql-playground-html": { "version": "1.6.29", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@apollographql/graphql-playground-html/-/graphql-playground-html-1.6.29.tgz", + "integrity": "sha512-xCcXpoz52rI4ksJSdOCxeOCn2DLocxwHf9dVT/Q90Pte1LX+LY+91SFtJF3KXVHH8kEin+g1KKCQPKBjZJfWNA==", "dependencies": { "xss": "^1.0.8" } }, "node_modules/@babel/code-frame": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", + "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/highlight": "^7.16.7" }, @@ -280,33 +284,35 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.16.4", + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.7.tgz", + "integrity": "sha512-p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.16.7", + "version": "7.17.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.17.9.tgz", + "integrity": "sha512-5ug+SfZCpDAkVp9SFIZAzlW18rlzsOcJGaetCjkySnrXXDUw9AR8cDUm1iByTmdWM6yxX6/zycaV76w3YTF2gw==", "dev": true, - "license": "MIT", "dependencies": { + "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.16.7", - "@babel/helper-compilation-targets": "^7.16.7", - "@babel/helper-module-transforms": "^7.16.7", - "@babel/helpers": "^7.16.7", - "@babel/parser": "^7.16.7", + "@babel/generator": "^7.17.9", + "@babel/helper-compilation-targets": "^7.17.7", + "@babel/helper-module-transforms": "^7.17.7", + "@babel/helpers": "^7.17.9", + "@babel/parser": "^7.17.9", "@babel/template": "^7.16.7", - "@babel/traverse": "^7.16.7", - "@babel/types": "^7.16.7", + "@babel/traverse": "^7.17.9", + "@babel/types": "^7.17.0", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.1.2", - "semver": "^6.3.0", - "source-map": "^0.5.0" + "json5": "^2.2.1", + "semver": "^6.3.0" }, "engines": { "node": ">=6.9.0" @@ -316,63 +322,22 @@ "url": "https://opencollective.com/babel" } }, - "node_modules/@babel/core/node_modules/@babel/parser": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/core/node_modules/@babel/traverse": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.16.7", - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-function-name": "^7.16.7", - "@babel/helper-hoist-variables": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.16.7", - "@babel/types": "^7.16.7", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core/node_modules/@babel/types": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/core/node_modules/semver": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/generator": { - "version": "7.16.7", + "version": "7.17.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.17.9.tgz", + "integrity": "sha512-rAdDousTwxbIxbz5I7GEQ3lUip+xVCXooZNbsydCWs3xA7ZsYOv+CFRdzGxRX78BmQHu9B1Eso59AOZQOJDEdQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/types": "^7.16.7", + "@babel/types": "^7.17.0", "jsesc": "^2.5.1", "source-map": "^0.5.0" }, @@ -380,22 +345,11 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/generator/node_modules/@babel/types": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-annotate-as-pure": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz", + "integrity": "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/types": "^7.16.7" }, @@ -403,24 +357,13 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/helper-annotate-as-pure/node_modules/@babel/types": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.16.7", + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.7.tgz", + "integrity": "sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.16.4", + "@babel/compat-data": "^7.17.7", "@babel/helper-validator-option": "^7.16.7", "browserslist": "^4.17.5", "semver": "^6.3.0" @@ -434,21 +377,23 @@ }, "node_modules/@babel/helper-compilation-targets/node_modules/semver": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.16.7", + "version": "7.17.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.9.tgz", + "integrity": "sha512-kUjip3gruz6AJKOq5i3nC6CoCEEF/oHH3cp6tOZhB+IyyyPyW0g1Gfsxn3mkk6S08pIA2y8GQh609v9G/5sHVQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.16.7", "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-function-name": "^7.16.7", - "@babel/helper-member-expression-to-functions": "^7.16.7", + "@babel/helper-function-name": "^7.17.9", + "@babel/helper-member-expression-to-functions": "^7.17.7", "@babel/helper-optimise-call-expression": "^7.16.7", "@babel/helper-replace-supers": "^7.16.7", "@babel/helper-split-export-declaration": "^7.16.7" @@ -462,8 +407,9 @@ }, "node_modules/@babel/helper-environment-visitor": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz", + "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==", "dev": true, - "license": "MIT", "dependencies": { "@babel/types": "^7.16.7" }, @@ -471,61 +417,14 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/helper-environment-visitor/node_modules/@babel/types": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-function-name": { - "version": "7.16.7", + "version": "7.17.9", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz", + "integrity": "sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-get-function-arity": "^7.16.7", "@babel/template": "^7.16.7", - "@babel/types": "^7.16.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name/node_modules/@babel/types": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-get-function-arity": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.16.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-get-function-arity/node_modules/@babel/types": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" + "@babel/types": "^7.17.0" }, "engines": { "node": ">=6.9.0" @@ -533,8 +432,9 @@ }, "node_modules/@babel/helper-hoist-variables": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz", + "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/types": "^7.16.7" }, @@ -542,36 +442,13 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/helper-hoist-variables/node_modules/@babel/types": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.16.7", + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz", + "integrity": "sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/types": "^7.16.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-member-expression-to-functions/node_modules/@babel/types": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" + "@babel/types": "^7.17.0" }, "engines": { "node": ">=6.9.0" @@ -579,8 +456,9 @@ }, "node_modules/@babel/helper-module-imports": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz", + "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/types": "^7.16.7" }, @@ -588,74 +466,20 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/helper-module-imports/node_modules/@babel/types": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-module-transforms": { - "version": "7.16.7", + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.17.7.tgz", + "integrity": "sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-environment-visitor": "^7.16.7", "@babel/helper-module-imports": "^7.16.7", - "@babel/helper-simple-access": "^7.16.7", + "@babel/helper-simple-access": "^7.17.7", "@babel/helper-split-export-declaration": "^7.16.7", "@babel/helper-validator-identifier": "^7.16.7", "@babel/template": "^7.16.7", - "@babel/traverse": "^7.16.7", - "@babel/types": "^7.16.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms/node_modules/@babel/parser": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/helper-module-transforms/node_modules/@babel/traverse": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.16.7", - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-function-name": "^7.16.7", - "@babel/helper-hoist-variables": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.16.7", - "@babel/types": "^7.16.7", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms/node_modules/@babel/types": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" + "@babel/traverse": "^7.17.3", + "@babel/types": "^7.17.0" }, "engines": { "node": ">=6.9.0" @@ -663,8 +487,9 @@ }, "node_modules/@babel/helper-optimise-call-expression": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz", + "integrity": "sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==", "dev": true, - "license": "MIT", "dependencies": { "@babel/types": "^7.16.7" }, @@ -672,30 +497,20 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/helper-optimise-call-expression/node_modules/@babel/types": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-plugin-utils": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz", + "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==", "dev": true, - "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-replace-supers": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz", + "integrity": "sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-environment-visitor": "^7.16.7", "@babel/helper-member-expression-to-functions": "^7.16.7", @@ -707,67 +522,13 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/helper-replace-supers/node_modules/@babel/parser": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/helper-replace-supers/node_modules/@babel/traverse": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.16.7", - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-function-name": "^7.16.7", - "@babel/helper-hoist-variables": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.16.7", - "@babel/types": "^7.16.7", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-replace-supers/node_modules/@babel/types": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-simple-access": { - "version": "7.16.7", + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.17.7.tgz", + "integrity": "sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/types": "^7.16.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-simple-access/node_modules/@babel/types": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" + "@babel/types": "^7.17.0" }, "engines": { "node": ">=6.9.0" @@ -775,8 +536,9 @@ }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz", + "integrity": "sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/types": "^7.16.0" }, @@ -786,8 +548,9 @@ }, "node_modules/@babel/helper-split-export-declaration": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz", + "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/types": "^7.16.7" }, @@ -795,94 +558,43 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/helper-split-export-declaration/node_modules/@babel/types": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-validator-identifier": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", + "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", "dev": true, - "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz", + "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.16.7", + "version": "7.17.9", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.9.tgz", + "integrity": "sha512-cPCt915ShDWUEzEp3+UNRktO2n6v49l5RSnG9M5pS24hA+2FAc5si+Pn1i4VVbQQ+jh+bIZhPFQOJOzbrOYY1Q==", "dev": true, - "license": "MIT", "dependencies": { "@babel/template": "^7.16.7", - "@babel/traverse": "^7.16.7", - "@babel/types": "^7.16.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers/node_modules/@babel/parser": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/helpers/node_modules/@babel/traverse": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.16.7", - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-function-name": "^7.16.7", - "@babel/helper-hoist-variables": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.16.7", - "@babel/types": "^7.16.7", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers/node_modules/@babel/types": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" + "@babel/traverse": "^7.17.9", + "@babel/types": "^7.17.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.16.7", + "version": "7.17.9", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.9.tgz", + "integrity": "sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-validator-identifier": "^7.16.7", "chalk": "^2.0.0", @@ -894,8 +606,9 @@ }, "node_modules/@babel/highlight/node_modules/ansi-styles": { "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^1.9.0" }, @@ -905,8 +618,9 @@ }, "node_modules/@babel/highlight/node_modules/chalk": { "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -918,37 +632,42 @@ }, "node_modules/@babel/highlight/node_modules/color-convert": { "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, - "license": "MIT", "dependencies": { "color-name": "1.1.3" } }, "node_modules/@babel/highlight/node_modules/color-name": { "version": "1.1.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true }, "node_modules/@babel/highlight/node_modules/escape-string-regexp": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.8.0" } }, "node_modules/@babel/highlight/node_modules/has-flag": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/@babel/highlight/node_modules/supports-color": { "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^3.0.0" }, @@ -957,9 +676,10 @@ } }, "node_modules/@babel/parser": { - "version": "7.16.4", + "version": "7.17.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.17.9.tgz", + "integrity": "sha512-vqUSBLP8dQHFPdPi9bc5GK9vRkYHJ49fsZdtoJ8EQ8ibpwk5rPKfvNIwChB0KVXcIjcepEBBd2VHC5r9Gy8ueg==", "dev": true, - "license": "MIT", "bin": { "parser": "bin/babel-parser.js" }, @@ -969,8 +689,9 @@ }, "node_modules/@babel/plugin-proposal-class-properties": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz", + "integrity": "sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.16.7", "@babel/helper-plugin-utils": "^7.16.7" @@ -983,11 +704,12 @@ } }, "node_modules/@babel/plugin-proposal-object-rest-spread": { - "version": "7.16.7", + "version": "7.17.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.17.3.tgz", + "integrity": "sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.16.4", + "@babel/compat-data": "^7.17.0", "@babel/helper-compilation-targets": "^7.16.7", "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", @@ -1002,8 +724,9 @@ }, "node_modules/@babel/plugin-syntax-async-generators": { "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1013,8 +736,9 @@ }, "node_modules/@babel/plugin-syntax-bigint": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1024,8 +748,9 @@ }, "node_modules/@babel/plugin-syntax-class-properties": { "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.12.13" }, @@ -1035,8 +760,9 @@ }, "node_modules/@babel/plugin-syntax-flow": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.16.7.tgz", + "integrity": "sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.16.7" }, @@ -1049,8 +775,9 @@ }, "node_modules/@babel/plugin-syntax-import-meta": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -1060,8 +787,9 @@ }, "node_modules/@babel/plugin-syntax-json-strings": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1071,8 +799,9 @@ }, "node_modules/@babel/plugin-syntax-jsx": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.7.tgz", + "integrity": "sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.16.7" }, @@ -1085,8 +814,9 @@ }, "node_modules/@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -1096,8 +826,9 @@ }, "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1107,8 +838,9 @@ }, "node_modules/@babel/plugin-syntax-numeric-separator": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -1118,8 +850,9 @@ }, "node_modules/@babel/plugin-syntax-object-rest-spread": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1129,8 +862,9 @@ }, "node_modules/@babel/plugin-syntax-optional-catch-binding": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1140,8 +874,9 @@ }, "node_modules/@babel/plugin-syntax-optional-chaining": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1151,8 +886,9 @@ }, "node_modules/@babel/plugin-syntax-top-level-await": { "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1165,8 +901,9 @@ }, "node_modules/@babel/plugin-syntax-typescript": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.7.tgz", + "integrity": "sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.16.7" }, @@ -1179,8 +916,9 @@ }, "node_modules/@babel/plugin-transform-arrow-functions": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz", + "integrity": "sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.16.7" }, @@ -1193,8 +931,9 @@ }, "node_modules/@babel/plugin-transform-block-scoped-functions": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz", + "integrity": "sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.16.7" }, @@ -1207,8 +946,9 @@ }, "node_modules/@babel/plugin-transform-block-scoping": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz", + "integrity": "sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.16.7" }, @@ -1221,8 +961,9 @@ }, "node_modules/@babel/plugin-transform-classes": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz", + "integrity": "sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.16.7", "@babel/helper-environment-visitor": "^7.16.7", @@ -1242,8 +983,9 @@ }, "node_modules/@babel/plugin-transform-computed-properties": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz", + "integrity": "sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.16.7" }, @@ -1255,9 +997,10 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.16.7", + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.17.7.tgz", + "integrity": "sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.16.7" }, @@ -1270,8 +1013,9 @@ }, "node_modules/@babel/plugin-transform-flow-strip-types": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.16.7.tgz", + "integrity": "sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-flow": "^7.16.7" @@ -1285,8 +1029,9 @@ }, "node_modules/@babel/plugin-transform-for-of": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz", + "integrity": "sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.16.7" }, @@ -1299,8 +1044,9 @@ }, "node_modules/@babel/plugin-transform-function-name": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz", + "integrity": "sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-compilation-targets": "^7.16.7", "@babel/helper-function-name": "^7.16.7", @@ -1315,8 +1061,9 @@ }, "node_modules/@babel/plugin-transform-literals": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz", + "integrity": "sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.16.7" }, @@ -1329,8 +1076,9 @@ }, "node_modules/@babel/plugin-transform-member-expression-literals": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz", + "integrity": "sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.16.7" }, @@ -1342,13 +1090,14 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.16.7", + "version": "7.17.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.17.9.tgz", + "integrity": "sha512-2TBFd/r2I6VlYn0YRTz2JdazS+FoUuQ2rIFHoAxtyP/0G3D82SBLaRq9rnUkpqlLg03Byfl/+M32mpxjO6KaPw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.16.7", + "@babel/helper-module-transforms": "^7.17.7", "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-simple-access": "^7.16.7", + "@babel/helper-simple-access": "^7.17.7", "babel-plugin-dynamic-import-node": "^2.3.3" }, "engines": { @@ -1360,8 +1109,9 @@ }, "node_modules/@babel/plugin-transform-object-super": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz", + "integrity": "sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.16.7", "@babel/helper-replace-supers": "^7.16.7" @@ -1375,8 +1125,9 @@ }, "node_modules/@babel/plugin-transform-parameters": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz", + "integrity": "sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.16.7" }, @@ -1389,8 +1140,9 @@ }, "node_modules/@babel/plugin-transform-property-literals": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz", + "integrity": "sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.16.7" }, @@ -1403,8 +1155,9 @@ }, "node_modules/@babel/plugin-transform-react-display-name": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.7.tgz", + "integrity": "sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.16.7" }, @@ -1416,15 +1169,16 @@ } }, "node_modules/@babel/plugin-transform-react-jsx": { - "version": "7.16.7", + "version": "7.17.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.17.3.tgz", + "integrity": "sha512-9tjBm4O07f7mzKSIlEmPdiE6ub7kfIe6Cd+w+oQebpATfTQMAgW+YOuWxogbKVTulA+MEO7byMeIUtQ1z+z+ZQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.16.7", "@babel/helper-module-imports": "^7.16.7", "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-jsx": "^7.16.7", - "@babel/types": "^7.16.7" + "@babel/types": "^7.17.0" }, "engines": { "node": ">=6.9.0" @@ -1433,22 +1187,11 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-react-jsx/node_modules/@babel/types": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/plugin-transform-shorthand-properties": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz", + "integrity": "sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.16.7" }, @@ -1461,8 +1204,9 @@ }, "node_modules/@babel/plugin-transform-spread": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz", + "integrity": "sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.16.7", "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0" @@ -1476,8 +1220,9 @@ }, "node_modules/@babel/plugin-transform-template-literals": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz", + "integrity": "sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.16.7" }, @@ -1489,9 +1234,10 @@ } }, "node_modules/@babel/runtime": { - "version": "7.16.7", + "version": "7.17.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.9.tgz", + "integrity": "sha512-lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg==", "dev": true, - "license": "MIT", "dependencies": { "regenerator-runtime": "^0.13.4" }, @@ -1501,8 +1247,9 @@ }, "node_modules/@babel/template": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", + "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", "dev": true, - "license": "MIT", "dependencies": { "@babel/code-frame": "^7.16.7", "@babel/parser": "^7.16.7", @@ -1512,41 +1259,20 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/template/node_modules/@babel/parser": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/template/node_modules/@babel/types": { - "version": "7.16.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/traverse": { - "version": "7.16.3", + "version": "7.17.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.9.tgz", + "integrity": "sha512-PQO8sDIJ8SIwipTPiR71kJQCKQYB5NGImbOviK8K+kg5xkNSYXLBupuX9QhatFowrsvo9Hj8WgArg3W7ijNAQw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.16.0", - "@babel/generator": "^7.16.0", - "@babel/helper-function-name": "^7.16.0", - "@babel/helper-hoist-variables": "^7.16.0", - "@babel/helper-split-export-declaration": "^7.16.0", - "@babel/parser": "^7.16.3", - "@babel/types": "^7.16.0", + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.17.9", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.17.9", + "@babel/helper-hoist-variables": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/parser": "^7.17.9", + "@babel/types": "^7.17.0", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -1555,11 +1281,12 @@ } }, "node_modules/@babel/types": { - "version": "7.16.0", + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.17.0.tgz", + "integrity": "sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-validator-identifier": "^7.15.7", + "@babel/helper-validator-identifier": "^7.16.7", "to-fast-properties": "^2.0.0" }, "engines": { @@ -1568,13 +1295,15 @@ }, "node_modules/@bcoe/v8-coverage": { "version": "0.2.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true }, "node_modules/@cnakazawa/watch": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", + "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", "dev": true, - "license": "Apache-2.0", "dependencies": { "exec-sh": "^0.3.2", "minimist": "^1.2.0" @@ -1596,9 +1325,10 @@ } }, "node_modules/@dabh/diagnostics": { - "version": "2.0.2", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz", + "integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==", "dev": true, - "license": "MIT", "dependencies": { "colorspace": "1.1.x", "enabled": "2.0.x", @@ -1607,8 +1337,9 @@ }, "node_modules/@endemolshinegroup/cosmiconfig-typescript-loader": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@endemolshinegroup/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-3.0.2.tgz", + "integrity": "sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==", "dev": true, - "license": "MIT", "dependencies": { "lodash.get": "^4", "make-error": "^1", @@ -1623,16 +1354,17 @@ } }, "node_modules/@eslint/eslintrc": { - "version": "1.0.5", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.2.1.tgz", + "integrity": "sha512-bxvbYnBPN1Gibwyp6NrpnFzA3YtRL3BBAyEAFVIpNTm2Rn4Vy87GA5M4aSn3InRrlsbX5N0GW7XIx+U4SAEKdQ==", "dev": true, - "license": "MIT", "peer": true, "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", - "espree": "^9.2.0", + "espree": "^9.3.1", "globals": "^13.9.0", - "ignore": "^4.0.6", + "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", "minimatch": "^3.0.4", @@ -1643,9 +1375,10 @@ } }, "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.12.0", + "version": "13.13.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.13.0.tgz", + "integrity": "sha512-EQ7Q18AJlPwp3vUDL4mKA0KXrXyNIQyWon6T6XQiBQF0XHvRsiCSrWmmeATpUzdJN2HhWZU6Pdl0a9zdep5p6A==", "dev": true, - "license": "MIT", "peer": true, "dependencies": { "type-fest": "^0.20.2" @@ -1657,19 +1390,24 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@eslint/eslintrc/node_modules/ignore": { - "version": "4.0.6", + "node_modules/@eslint/eslintrc/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, - "license": "MIT", "peer": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, "engines": { - "node": ">= 4" + "node": "*" } }, "node_modules/@eslint/eslintrc/node_modules/type-fest": { "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, - "license": "(MIT OR CC0-1.0)", "peer": true, "engines": { "node": ">=10" @@ -1679,8 +1417,9 @@ } }, "node_modules/@gar/promisify": { - "version": "1.1.2", - "license": "MIT" + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", + "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==" }, "node_modules/@graphql-codegen/cli": { "version": "2.6.2", @@ -1738,18 +1477,6 @@ "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" } }, - "node_modules/@graphql-codegen/cli/node_modules/minimatch": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-4.2.1.tgz", - "integrity": "sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/@graphql-codegen/core": { "version": "2.5.1", "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.5.1.tgz", @@ -1766,9 +1493,9 @@ } }, "node_modules/@graphql-codegen/plugin-helpers": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.4.1.tgz", - "integrity": "sha512-OPMma7aUnES3Dh+M0BfiNBnJLmYuH60EnbULAhufxFDn/Y2OA0Ht/LQok9beX6VN4ASZEMCOAGItJezGJr5DJw==", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.4.2.tgz", + "integrity": "sha512-LJNvwAPv/sKtI3RnRDm+nPD+JeOfOuSOS4FFIpQCMUCyMnFcchV/CPTTv7tT12fLUpEg6XjuFfDBvOwndti30Q==", "dev": true, "dependencies": { "@graphql-tools/utils": "^8.5.2", @@ -1784,8 +1511,9 @@ }, "node_modules/@graphql-codegen/schema-ast": { "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.4.1.tgz", + "integrity": "sha512-bIWlKk/ShoVJfghA4Rt1OWnd34/dQmZM/vAe6fu6QKyOh44aAdqPtYQ2dbTyFXoknmu504etKJGEDllYNUJRfg==", "dev": true, - "license": "MIT", "dependencies": { "@graphql-codegen/plugin-helpers": "^2.3.2", "@graphql-tools/utils": "^8.1.1", @@ -1849,12 +1577,13 @@ } }, "node_modules/@graphql-tools/apollo-engine-loader": { - "version": "7.2.1", + "version": "7.2.7", + "resolved": "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-7.2.7.tgz", + "integrity": "sha512-FNX8QW2BeYyFNk+UX4pn6zaiK1NnMfUMeU3ZYYt2dvJT4tFCt/tanmXZbQ1+YSvnH0j6PU0eKoeJTcYVK3f4Fw==", "dev": true, - "license": "MIT", "dependencies": { - "@graphql-tools/utils": "^8.5.1", - "cross-undici-fetch": "^0.0.20", + "@graphql-tools/utils": "8.6.6", + "cross-undici-fetch": "^0.1.19", "sync-fetch": "0.3.1", "tslib": "~2.3.0" }, @@ -1863,11 +1592,12 @@ } }, "node_modules/@graphql-tools/batch-execute": { - "version": "8.3.1", + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.4.2.tgz", + "integrity": "sha512-5/el640oG/jfjQCjCRDdtIALyUib8YPONM2NSmckp2g1nOrPTAx/isz3Uptp9y5OI1UXXhONiKy5euTbgsGoXw==", "dev": true, - "license": "MIT", "dependencies": { - "@graphql-tools/utils": "^8.5.1", + "@graphql-tools/utils": "8.6.6", "dataloader": "2.0.0", "tslib": "~2.3.0", "value-or-promise": "1.0.11" @@ -1877,12 +1607,13 @@ } }, "node_modules/@graphql-tools/code-file-loader": { - "version": "7.2.3", + "version": "7.2.11", + "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.2.11.tgz", + "integrity": "sha512-W3iOwGb3yR8DYXBB0RE5X+jo8ExNzYUUhDP2nB1XDgDoOylfN+WNzPcWfTczTd9SEXqvbjSa5UqH7dv37S491A==", "dev": true, - "license": "MIT", "dependencies": { - "@graphql-tools/graphql-tag-pluck": "^7.1.3", - "@graphql-tools/utils": "^8.5.1", + "@graphql-tools/graphql-tag-pluck": "7.2.3", + "@graphql-tools/utils": "8.6.6", "globby": "^11.0.3", "tslib": "~2.3.0", "unixify": "^1.0.0" @@ -1892,14 +1623,16 @@ } }, "node_modules/@graphql-tools/delegate": { - "version": "8.4.3", + "version": "8.7.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-8.7.2.tgz", + "integrity": "sha512-SSmx5N6Cq23KRT0YepdmcYugey7MDZSXxtJ8KHHdc5eW9IAHXZWsJWdVnI9woU9omsnE6svnxblZb1UUBl7AUg==", "dev": true, - "license": "MIT", "dependencies": { - "@graphql-tools/batch-execute": "^8.3.1", - "@graphql-tools/schema": "^8.3.1", - "@graphql-tools/utils": "^8.5.4", + "@graphql-tools/batch-execute": "8.4.2", + "@graphql-tools/schema": "8.3.7", + "@graphql-tools/utils": "8.6.6", "dataloader": "2.0.0", + "graphql-executor": "0.0.22", "tslib": "~2.3.0", "value-or-promise": "1.0.11" }, @@ -1908,12 +1641,13 @@ } }, "node_modules/@graphql-tools/git-loader": { - "version": "7.1.2", + "version": "7.1.10", + "resolved": "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-7.1.10.tgz", + "integrity": "sha512-v6kyHVg6I5GMjDlcLhBwcvFyJFOCbt5azaEvCq6UPHeziVmFK96gpvHdONfxLIj5k7lpNxodL5zJ2TlDQuOfbQ==", "dev": true, - "license": "MIT", "dependencies": { - "@graphql-tools/graphql-tag-pluck": "^7.1.3", - "@graphql-tools/utils": "^8.5.1", + "@graphql-tools/graphql-tag-pluck": "7.2.3", + "@graphql-tools/utils": "8.6.6", "is-glob": "4.0.3", "micromatch": "^4.0.4", "tslib": "~2.3.0", @@ -1924,13 +1658,14 @@ } }, "node_modules/@graphql-tools/github-loader": { - "version": "7.2.1", + "version": "7.2.11", + "resolved": "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-7.2.11.tgz", + "integrity": "sha512-OKYViepaFd2YFm8Du/CWP70Wh9JqKyHLdYt48InmQTEQGPlMXxrxztY127d/eDo5uW0Osp77G0d34fFjxD8XKg==", "dev": true, - "license": "MIT", "dependencies": { - "@graphql-tools/graphql-tag-pluck": "^7.1.3", - "@graphql-tools/utils": "^8.5.1", - "cross-undici-fetch": "^0.0.20", + "@graphql-tools/graphql-tag-pluck": "7.2.3", + "@graphql-tools/utils": "8.6.6", + "cross-undici-fetch": "^0.1.19", "sync-fetch": "0.3.1", "tslib": "~2.3.0" }, @@ -1939,12 +1674,13 @@ } }, "node_modules/@graphql-tools/graphql-file-loader": { - "version": "7.3.3", + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.3.8.tgz", + "integrity": "sha512-SpQZQ0klbox/kxYCLFBTmhLuQFm7P6usWVIqwROK4JSomwCuccc2zDsr1H7ayDpanD3yfkzMsl6gPkOkAo52pA==", "dev": true, - "license": "MIT", "dependencies": { - "@graphql-tools/import": "^6.5.7", - "@graphql-tools/utils": "^8.5.1", + "@graphql-tools/import": "6.6.10", + "@graphql-tools/utils": "8.6.6", "globby": "^11.0.3", "tslib": "~2.3.0", "unixify": "^1.0.0" @@ -1954,14 +1690,15 @@ } }, "node_modules/@graphql-tools/graphql-tag-pluck": { - "version": "7.1.4", + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.2.3.tgz", + "integrity": "sha512-rk6R98ZWeZK63W2jQWwnFZGcQUrbj/Dl3ok0m2DxHTqjHwhRdykY5o1lEX7SzFqGXjs7WE5tUpvlzswAKmklFw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/parser": "7.16.4", - "@babel/traverse": "7.16.3", - "@babel/types": "7.16.0", - "@graphql-tools/utils": "^8.5.1", + "@babel/parser": "^7.16.8", + "@babel/traverse": "^7.16.8", + "@babel/types": "^7.16.8", + "@graphql-tools/utils": "8.6.6", "tslib": "~2.3.0" }, "peerDependencies": { @@ -1969,11 +1706,12 @@ } }, "node_modules/@graphql-tools/import": { - "version": "6.6.4", + "version": "6.6.10", + "resolved": "https://registry.npmjs.org/@graphql-tools/import/-/import-6.6.10.tgz", + "integrity": "sha512-yHdlEPTvIjrngtQFNgkMQJt/DjG3hQKvc6Mb8kaatFV4yERN5zx+0vpdrwxTwRNG1N7bI/YCkbrc7PXOb+g89Q==", "dev": true, - "license": "MIT", "dependencies": { - "@graphql-tools/utils": "8.6.0", + "@graphql-tools/utils": "8.6.6", "resolve-from": "5.0.0", "tslib": "~2.3.0" }, @@ -1982,11 +1720,12 @@ } }, "node_modules/@graphql-tools/json-file-loader": { - "version": "7.3.3", + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.3.8.tgz", + "integrity": "sha512-W3nVLAp8m787A17wja7ysayij7WMRu+lF8LeCWr9eoyiCuw65i63y0G4eqZ5+Q0+E2BYWlKJyk/Z0vsFVJGMUA==", "dev": true, - "license": "MIT", "dependencies": { - "@graphql-tools/utils": "^8.5.1", + "@graphql-tools/utils": "8.6.6", "globby": "^11.0.3", "tslib": "~2.3.0", "unixify": "^1.0.0" @@ -1996,12 +1735,13 @@ } }, "node_modules/@graphql-tools/load": { - "version": "7.5.1", + "version": "7.5.7", + "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.5.7.tgz", + "integrity": "sha512-Z4oKf4MdBvl0EyubmvPL14ldhovKz8C61rQPHD8pjnC8Z0RbvW0a/sns/yuHuCVZoJMsSboU65DPzPTIoQUM4w==", "dev": true, - "license": "MIT", "dependencies": { - "@graphql-tools/schema": "8.3.1", - "@graphql-tools/utils": "^8.6.0", + "@graphql-tools/schema": "8.3.7", + "@graphql-tools/utils": "8.6.6", "p-limit": "3.1.0", "tslib": "~2.3.0" }, @@ -2010,10 +1750,11 @@ } }, "node_modules/@graphql-tools/merge": { - "version": "8.2.1", - "license": "MIT", + "version": "8.2.7", + "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.2.7.tgz", + "integrity": "sha512-rKxjNogqu1UYAG/y5FOb6lJsmSQbWA+jq4inWjNEVX54VGGE7/WGnmPaqcsyomNOfS3vIRS6NnG+DxiQSqetjg==", "dependencies": { - "@graphql-tools/utils": "^8.5.1", + "@graphql-tools/utils": "8.6.6", "tslib": "~2.3.0" }, "peerDependencies": { @@ -2021,11 +1762,12 @@ } }, "node_modules/@graphql-tools/mock": { - "version": "8.5.1", - "license": "MIT", + "version": "8.6.5", + "resolved": "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.6.5.tgz", + "integrity": "sha512-2Uz2qerJVU7wLDQseWNmgCUwiLgM3DfFJEPeQRC1s6oQELstKZHSW8Fb45mmjt37fyKqUdwPUT65PwzK03CK/Q==", "dependencies": { - "@graphql-tools/schema": "^8.3.1", - "@graphql-tools/utils": "^8.6.0", + "@graphql-tools/schema": "8.3.7", + "@graphql-tools/utils": "8.6.6", "fast-json-stable-stringify": "^2.1.0", "tslib": "~2.3.0" }, @@ -2034,9 +1776,10 @@ } }, "node_modules/@graphql-tools/optimize": { - "version": "1.1.1", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.2.0.tgz", + "integrity": "sha512-l0PTqgHeorQdeOizUor6RB49eOAng9+abSxiC5/aHRo6hMmXVaqv5eqndlmxCpx9BkgNb3URQbK+ZZHVktkP/g==", "dev": true, - "license": "MIT", "dependencies": { "tslib": "~2.3.0" }, @@ -2045,19 +1788,20 @@ } }, "node_modules/@graphql-tools/prisma-loader": { - "version": "7.1.1", + "version": "7.1.8", + "resolved": "https://registry.npmjs.org/@graphql-tools/prisma-loader/-/prisma-loader-7.1.8.tgz", + "integrity": "sha512-lOqCfGGDrK0KmNkFQA0N2lD8idVLhPd7HlznRfIje+NiLeftHuBtzLPvoNwOBcwWLgyYxHIkE30WatyK52VCCQ==", "dev": true, - "license": "MIT", "dependencies": { - "@graphql-tools/url-loader": "^7.4.2", - "@graphql-tools/utils": "^8.5.1", + "@graphql-tools/url-loader": "7.9.9", + "@graphql-tools/utils": "8.6.6", "@types/js-yaml": "^4.0.0", "@types/json-stable-stringify": "^1.0.32", "@types/jsonwebtoken": "^8.5.0", "chalk": "^4.1.0", "debug": "^4.3.1", - "dotenv": "^10.0.0", - "graphql-request": "^3.3.0", + "dotenv": "^16.0.0", + "graphql-request": "^4.0.0", "http-proxy-agent": "^5.0.0", "https-proxy-agent": "^5.0.0", "isomorphic-fetch": "^3.0.0", @@ -2075,11 +1819,12 @@ } }, "node_modules/@graphql-tools/relay-operation-optimizer": { - "version": "6.4.1", + "version": "6.4.6", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.4.6.tgz", + "integrity": "sha512-RJ2zoVUGPXbs1zdFjY56YWGsJaG9RyTOk5wlFe369ts+iXnzpM0ezszLfOjggtXUPlVTbjWNmdHASOh3rZ8uBA==", "dev": true, - "license": "MIT", "dependencies": { - "@graphql-tools/utils": "^8.5.1", + "@graphql-tools/utils": "8.6.6", "relay-compiler": "12.0.0", "tslib": "~2.3.0" }, @@ -2089,8 +1834,9 @@ }, "node_modules/@graphql-tools/relay-operation-optimizer/node_modules/cliui": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", "dev": true, - "license": "ISC", "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", @@ -2099,8 +1845,9 @@ }, "node_modules/@graphql-tools/relay-operation-optimizer/node_modules/relay-compiler": { "version": "12.0.0", + "resolved": "https://registry.npmjs.org/relay-compiler/-/relay-compiler-12.0.0.tgz", + "integrity": "sha512-SWqeSQZ+AMU/Cr7iZsHi1e78Z7oh00I5SvR092iCJq79aupqJ6Ds+I1Pz/Vzo5uY5PY0jvC4rBJXzlIN5g9boQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/core": "^7.14.0", "@babel/generator": "^7.14.0", @@ -2129,8 +1876,9 @@ }, "node_modules/@graphql-tools/relay-operation-optimizer/node_modules/wrap-ansi": { "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -2142,13 +1890,15 @@ }, "node_modules/@graphql-tools/relay-operation-optimizer/node_modules/y18n": { "version": "4.0.3", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true }, "node_modules/@graphql-tools/relay-operation-optimizer/node_modules/yargs": { "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", "dev": true, - "license": "MIT", "dependencies": { "cliui": "^6.0.0", "decamelize": "^1.2.0", @@ -2168,8 +1918,9 @@ }, "node_modules/@graphql-tools/relay-operation-optimizer/node_modules/yargs-parser": { "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", "dev": true, - "license": "ISC", "dependencies": { "camelcase": "^5.0.0", "decamelize": "^1.2.0" @@ -2179,11 +1930,12 @@ } }, "node_modules/@graphql-tools/schema": { - "version": "8.3.1", - "license": "MIT", + "version": "8.3.7", + "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.3.7.tgz", + "integrity": "sha512-7byr9J6rfMPFPfiR4u65dy20xHATTvbgOY7KYd1sYPnMKKfRZe0tUgpnE+noXcfob7N8s366WaVh7bEoztQMwg==", "dependencies": { - "@graphql-tools/merge": "^8.2.1", - "@graphql-tools/utils": "^8.5.1", + "@graphql-tools/merge": "8.2.7", + "@graphql-tools/utils": "8.6.6", "tslib": "~2.3.0", "value-or-promise": "1.0.11" }, @@ -2192,17 +1944,18 @@ } }, "node_modules/@graphql-tools/url-loader": { - "version": "7.7.0", + "version": "7.9.9", + "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.9.9.tgz", + "integrity": "sha512-qhjBJ3oCXZrzvJchVwtrahr48TXOHPYZ4YXklGrbJVoJs3LP0a7CYUwuXeiNuN+dpgaxkb175sIEN9m0FadGRw==", "dev": true, - "license": "MIT", "dependencies": { - "@graphql-tools/delegate": "^8.4.1", - "@graphql-tools/utils": "^8.5.1", - "@graphql-tools/wrap": "^8.3.1", + "@graphql-tools/delegate": "8.7.2", + "@graphql-tools/utils": "8.6.6", + "@graphql-tools/wrap": "8.4.11", "@n1ru4l/graphql-live-query": "^0.9.0", "@types/websocket": "^1.0.4", "@types/ws": "^8.0.0", - "cross-undici-fetch": "^0.1.4", + "cross-undici-fetch": "^0.1.19", "dset": "^3.1.0", "extract-files": "^11.0.0", "graphql-sse": "^1.0.1", @@ -2212,7 +1965,6 @@ "subscriptions-transport-ws": "^0.11.0", "sync-fetch": "^0.3.1", "tslib": "^2.3.0", - "valid-url": "^1.0.9", "value-or-promise": "^1.0.11", "ws": "^8.3.0" }, @@ -2220,37 +1972,10 @@ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" } }, - "node_modules/@graphql-tools/url-loader/node_modules/cross-undici-fetch": { - "version": "0.1.13", - "dev": true, - "license": "MIT", - "dependencies": { - "abort-controller": "^3.0.0", - "form-data-encoder": "^1.7.1", - "formdata-node": "^4.3.1", - "node-fetch": "^2.6.5", - "undici": "^4.9.3" - } - }, - "node_modules/@graphql-tools/url-loader/node_modules/meros": { - "version": "1.1.4", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "@types/node": ">=12" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - } - } - }, "node_modules/@graphql-tools/utils": { - "version": "8.6.0", - "license": "MIT", + "version": "8.6.6", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.6.6.tgz", + "integrity": "sha512-wjY2ljKLCnnbRrDNPPgPNqCujou0LFSOWcxAjV6DYUlfFWTsAEvlYmsmY4T+K12wI/fnqoJ2bUwIlap1plFDMg==", "dependencies": { "tslib": "~2.3.0" }, @@ -2259,13 +1984,14 @@ } }, "node_modules/@graphql-tools/wrap": { - "version": "8.3.3", + "version": "8.4.11", + "resolved": "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-8.4.11.tgz", + "integrity": "sha512-bif9yNZCoG1fFTGuIV4UblsJI95VSufl0RReXdr6f2yNbnqjSzgoDMB17WQlLrNOBrXa7r8N5aWBr5hBGhtGig==", "dev": true, - "license": "MIT", "dependencies": { - "@graphql-tools/delegate": "^8.4.2", - "@graphql-tools/schema": "^8.3.1", - "@graphql-tools/utils": "^8.5.3", + "@graphql-tools/delegate": "8.7.2", + "@graphql-tools/schema": "8.3.7", + "@graphql-tools/utils": "8.6.6", "tslib": "~2.3.0", "value-or-promise": "1.0.11" }, @@ -2275,16 +2001,18 @@ }, "node_modules/@graphql-typed-document-node/core": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.1.1.tgz", + "integrity": "sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==", "dev": true, - "license": "MIT", "peerDependencies": { "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" } }, "node_modules/@humanwhocodes/config-array": { - "version": "0.9.2", + "version": "0.9.5", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz", + "integrity": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==", "dev": true, - "license": "Apache-2.0", "peer": true, "dependencies": { "@humanwhocodes/object-schema": "^1.2.1", @@ -2295,29 +2023,46 @@ "node": ">=10.10.0" } }, + "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "peer": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, "node_modules/@humanwhocodes/object-schema": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", "dev": true, - "license": "BSD-3-Clause", "peer": true }, "node_modules/@hutson/parse-repository-url": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz", + "integrity": "sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==", "dev": true, - "license": "Apache-2.0", "engines": { "node": ">=6.9.0" } }, "node_modules/@iarna/toml": { "version": "2.2.5", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz", + "integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==", + "dev": true }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", "dev": true, - "license": "ISC", "dependencies": { "camelcase": "^5.3.1", "find-up": "^4.1.0", @@ -2331,16 +2076,18 @@ }, "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, - "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" } }, "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, - "license": "MIT", "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" @@ -2351,8 +2098,9 @@ }, "node_modules/@istanbuljs/schema": { "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } @@ -2601,8 +2349,9 @@ }, "node_modules/@jest/transform/node_modules/source-map": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } @@ -2625,12 +2374,39 @@ }, "node_modules/@josephg/resolvable": { "version": "1.0.1", - "license": "ISC" + "resolved": "https://registry.npmjs.org/@josephg/resolvable/-/resolvable-1.0.1.tgz", + "integrity": "sha512-CtzORUwWTTOTqfVtHaKRJ0I1kNQd1bpn3sUh8I3nJDVY+5/M/Oe1DnEWzPQvqq/xPIIkzzzIP7mfCoAjFRvDhg==" + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz", + "integrity": "sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.11", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz", + "integrity": "sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz", + "integrity": "sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } }, "node_modules/@lerna/add": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/add/-/add-4.0.0.tgz", + "integrity": "sha512-cpmAH1iS3k8JBxNvnMqrGTTjbY/ZAiKa1ChJzFevMYY3eeqbvhsBKnBcxjRXtdrJ6bd3dCQM+ZtK+0i682Fhng==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/bootstrap": "4.0.0", "@lerna/command": "4.0.0", @@ -2649,8 +2425,9 @@ }, "node_modules/@lerna/bootstrap": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-4.0.0.tgz", + "integrity": "sha512-RkS7UbeM2vu+kJnHzxNRCLvoOP9yGNgkzRdy4UV2hNalD7EP41bLvRVOwRYQ7fhc2QcbhnKNdOBihYRL0LcKtw==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/command": "4.0.0", "@lerna/filter-options": "4.0.0", @@ -2681,8 +2458,9 @@ }, "node_modules/@lerna/changed": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/changed/-/changed-4.0.0.tgz", + "integrity": "sha512-cD+KuPRp6qiPOD+BO6S6SN5cARspIaWSOqGBpGnYzLb4uWT8Vk4JzKyYtc8ym1DIwyoFXHosXt8+GDAgR8QrgQ==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/collect-updates": "4.0.0", "@lerna/command": "4.0.0", @@ -2695,8 +2473,9 @@ }, "node_modules/@lerna/check-working-tree": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/check-working-tree/-/check-working-tree-4.0.0.tgz", + "integrity": "sha512-/++bxM43jYJCshBiKP5cRlCTwSJdRSxVmcDAXM+1oUewlZJVSVlnks5eO0uLxokVFvLhHlC5kHMc7gbVFPHv6Q==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/collect-uncommitted": "4.0.0", "@lerna/describe-ref": "4.0.0", @@ -2708,8 +2487,9 @@ }, "node_modules/@lerna/child-process": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/child-process/-/child-process-4.0.0.tgz", + "integrity": "sha512-XtCnmCT9eyVsUUHx6y/CTBYdV9g2Cr/VxyseTWBgfIur92/YKClfEtJTbOh94jRT62hlKLqSvux/UhxXVh613Q==", "dev": true, - "license": "MIT", "dependencies": { "chalk": "^4.1.0", "execa": "^5.0.0", @@ -2721,8 +2501,9 @@ }, "node_modules/@lerna/clean": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/clean/-/clean-4.0.0.tgz", + "integrity": "sha512-uugG2iN9k45ITx2jtd8nEOoAtca8hNlDCUM0N3lFgU/b1mEQYAPRkqr1qs4FLRl/Y50ZJ41wUz1eazS+d/0osA==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/command": "4.0.0", "@lerna/filter-options": "4.0.0", @@ -2739,8 +2520,9 @@ }, "node_modules/@lerna/cli": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/cli/-/cli-4.0.0.tgz", + "integrity": "sha512-Neaw3GzFrwZiRZv2g7g6NwFjs3er1vhraIniEs0jjVLPMNC4eata0na3GfE5yibkM/9d3gZdmihhZdZ3EBdvYA==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/global-options": "4.0.0", "dedent": "^0.7.0", @@ -2753,8 +2535,9 @@ }, "node_modules/@lerna/cli/node_modules/yargs": { "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, - "license": "MIT", "dependencies": { "cliui": "^7.0.2", "escalade": "^3.1.1", @@ -2770,8 +2553,9 @@ }, "node_modules/@lerna/collect-uncommitted": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/collect-uncommitted/-/collect-uncommitted-4.0.0.tgz", + "integrity": "sha512-ufSTfHZzbx69YNj7KXQ3o66V4RC76ffOjwLX0q/ab//61bObJ41n03SiQEhSlmpP+gmFbTJ3/7pTe04AHX9m/g==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/child-process": "4.0.0", "chalk": "^4.1.0", @@ -2783,8 +2567,9 @@ }, "node_modules/@lerna/collect-updates": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/collect-updates/-/collect-updates-4.0.0.tgz", + "integrity": "sha512-bnNGpaj4zuxsEkyaCZLka9s7nMs58uZoxrRIPJ+nrmrZYp1V5rrd+7/NYTuunOhY2ug1sTBvTAxj3NZQ+JKnOw==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/child-process": "4.0.0", "@lerna/describe-ref": "4.0.0", @@ -2796,10 +2581,23 @@ "node": ">= 10.18.0" } }, + "node_modules/@lerna/collect-updates/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, "node_modules/@lerna/command": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/command/-/command-4.0.0.tgz", + "integrity": "sha512-LM9g3rt5FsPNFqIHUeRwWXLNHJ5NKzOwmVKZ8anSp4e1SPrv2HNc1V02/9QyDDZK/w+5POXH5lxZUI1CHaOK/A==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/child-process": "4.0.0", "@lerna/package-graph": "4.0.0", @@ -2818,8 +2616,9 @@ }, "node_modules/@lerna/conventional-commits": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/conventional-commits/-/conventional-commits-4.0.0.tgz", + "integrity": "sha512-CSUQRjJHFrH8eBn7+wegZLV3OrNc0Y1FehYfYGhjLE2SIfpCL4bmfu/ViYuHh9YjwHaA+4SX6d3hR+xkeseKmw==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/validation-error": "4.0.0", "conventional-changelog-angular": "^5.0.12", @@ -2839,8 +2638,9 @@ }, "node_modules/@lerna/create": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/create/-/create-4.0.0.tgz", + "integrity": "sha512-mVOB1niKByEUfxlbKTM1UNECWAjwUdiioIbRQZEeEabtjCL69r9rscIsjlGyhGWCfsdAG5wfq4t47nlDXdLLag==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/child-process": "4.0.0", "@lerna/command": "4.0.0", @@ -2867,8 +2667,9 @@ }, "node_modules/@lerna/create-symlink": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/create-symlink/-/create-symlink-4.0.0.tgz", + "integrity": "sha512-I0phtKJJdafUiDwm7BBlEUOtogmu8+taxq6PtIrxZbllV9hWg59qkpuIsiFp+no7nfRVuaasNYHwNUhDAVQBig==", "dev": true, - "license": "MIT", "dependencies": { "cmd-shim": "^4.1.0", "fs-extra": "^9.1.0", @@ -2880,8 +2681,9 @@ }, "node_modules/@lerna/describe-ref": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/describe-ref/-/describe-ref-4.0.0.tgz", + "integrity": "sha512-eTU5+xC4C5Gcgz+Ey4Qiw9nV2B4JJbMulsYJMW8QjGcGh8zudib7Sduj6urgZXUYNyhYpRs+teci9M2J8u+UvQ==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/child-process": "4.0.0", "npmlog": "^4.1.2" @@ -2892,8 +2694,9 @@ }, "node_modules/@lerna/diff": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/diff/-/diff-4.0.0.tgz", + "integrity": "sha512-jYPKprQVg41+MUMxx6cwtqsNm0Yxx9GDEwdiPLwcUTFx+/qKCEwifKNJ1oGIPBxyEHX2PFCOjkK39lHoj2qiag==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/child-process": "4.0.0", "@lerna/command": "4.0.0", @@ -2906,8 +2709,9 @@ }, "node_modules/@lerna/exec": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/exec/-/exec-4.0.0.tgz", + "integrity": "sha512-VGXtL/b/JfY84NB98VWZpIExfhLOzy0ozm/0XaS4a2SmkAJc5CeUfrhvHxxkxiTBLkU+iVQUyYEoAT0ulQ8PCw==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/child-process": "4.0.0", "@lerna/command": "4.0.0", @@ -2923,8 +2727,9 @@ }, "node_modules/@lerna/filter-options": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/filter-options/-/filter-options-4.0.0.tgz", + "integrity": "sha512-vV2ANOeZhOqM0rzXnYcFFCJ/kBWy/3OA58irXih9AMTAlQLymWAK0akWybl++sUJ4HB9Hx12TOqaXbYS2NM5uw==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/collect-updates": "4.0.0", "@lerna/filter-packages": "4.0.0", @@ -2937,8 +2742,9 @@ }, "node_modules/@lerna/filter-packages": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/filter-packages/-/filter-packages-4.0.0.tgz", + "integrity": "sha512-+4AJIkK7iIiOaqCiVTYJxh/I9qikk4XjNQLhE3kixaqgMuHl1NQ99qXRR0OZqAWB9mh8Z1HA9bM5K1HZLBTOqA==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/validation-error": "4.0.0", "multimatch": "^5.0.0", @@ -2950,8 +2756,9 @@ }, "node_modules/@lerna/get-npm-exec-opts": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-4.0.0.tgz", + "integrity": "sha512-yvmkerU31CTWS2c7DvmAWmZVeclPBqI7gPVr5VATUKNWJ/zmVcU4PqbYoLu92I9Qc4gY1TuUplMNdNuZTSL7IQ==", "dev": true, - "license": "MIT", "dependencies": { "npmlog": "^4.1.2" }, @@ -2961,8 +2768,9 @@ }, "node_modules/@lerna/get-packed": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/get-packed/-/get-packed-4.0.0.tgz", + "integrity": "sha512-rfWONRsEIGyPJTxFzC8ECb3ZbsDXJbfqWYyeeQQDrJRPnEJErlltRLPLgC2QWbxFgFPsoDLeQmFHJnf0iDfd8w==", "dev": true, - "license": "MIT", "dependencies": { "fs-extra": "^9.1.0", "ssri": "^8.0.1", @@ -2974,8 +2782,9 @@ }, "node_modules/@lerna/github-client": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/github-client/-/github-client-4.0.0.tgz", + "integrity": "sha512-2jhsldZtTKXYUBnOm23Lb0Fx8G4qfSXF9y7UpyUgWUj+YZYd+cFxSuorwQIgk5P4XXrtVhsUesIsli+BYSThiw==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/child-process": "4.0.0", "@octokit/plugin-enterprise-rest": "^6.0.1", @@ -2989,8 +2798,9 @@ }, "node_modules/@lerna/gitlab-client": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/gitlab-client/-/gitlab-client-4.0.0.tgz", + "integrity": "sha512-OMUpGSkeDWFf7BxGHlkbb35T7YHqVFCwBPSIR6wRsszY8PAzCYahtH3IaJzEJyUg6vmZsNl0FSr3pdA2skhxqA==", "dev": true, - "license": "MIT", "dependencies": { "node-fetch": "^2.6.1", "npmlog": "^4.1.2", @@ -3002,16 +2812,18 @@ }, "node_modules/@lerna/global-options": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/global-options/-/global-options-4.0.0.tgz", + "integrity": "sha512-TRMR8afAHxuYBHK7F++Ogop2a82xQjoGna1dvPOY6ltj/pEx59pdgcJfYcynYqMkFIk8bhLJJN9/ndIfX29FTQ==", "dev": true, - "license": "MIT", "engines": { "node": ">= 10.18.0" } }, "node_modules/@lerna/has-npm-version": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/has-npm-version/-/has-npm-version-4.0.0.tgz", + "integrity": "sha512-LQ3U6XFH8ZmLCsvsgq1zNDqka0Xzjq5ibVN+igAI5ccRWNaUsE/OcmsyMr50xAtNQMYMzmpw5GVLAivT2/YzCg==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/child-process": "4.0.0", "semver": "^7.3.4" @@ -3022,8 +2834,9 @@ }, "node_modules/@lerna/import": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/import/-/import-4.0.0.tgz", + "integrity": "sha512-FaIhd+4aiBousKNqC7TX1Uhe97eNKf5/SC7c5WZANVWtC7aBWdmswwDt3usrzCNpj6/Wwr9EtEbYROzxKH8ffg==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/child-process": "4.0.0", "@lerna/command": "4.0.0", @@ -3040,8 +2853,9 @@ }, "node_modules/@lerna/info": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/info/-/info-4.0.0.tgz", + "integrity": "sha512-8Uboa12kaCSZEn4XRfPz5KU9XXoexSPS4oeYGj76s2UQb1O1GdnEyfjyNWoUl1KlJ2i/8nxUskpXIftoFYH0/Q==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/command": "4.0.0", "@lerna/output": "4.0.0", @@ -3053,8 +2867,9 @@ }, "node_modules/@lerna/init": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/init/-/init-4.0.0.tgz", + "integrity": "sha512-wY6kygop0BCXupzWj5eLvTUqdR7vIAm0OgyV9WHpMYQGfs1V22jhztt8mtjCloD/O0nEe4tJhdG62XU5aYmPNQ==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/child-process": "4.0.0", "@lerna/command": "4.0.0", @@ -3068,8 +2883,9 @@ }, "node_modules/@lerna/link": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/link/-/link-4.0.0.tgz", + "integrity": "sha512-KlvPi7XTAcVOByfaLlOeYOfkkDcd+bejpHMCd1KcArcFTwijOwXOVi24DYomIeHvy6HsX/IUquJ4PPUJIeB4+w==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/command": "4.0.0", "@lerna/package-graph": "4.0.0", @@ -3083,8 +2899,9 @@ }, "node_modules/@lerna/list": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/list/-/list-4.0.0.tgz", + "integrity": "sha512-L2B5m3P+U4Bif5PultR4TI+KtW+SArwq1i75QZ78mRYxPc0U/piau1DbLOmwrdqr99wzM49t0Dlvl6twd7GHFg==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/command": "4.0.0", "@lerna/filter-options": "4.0.0", @@ -3097,8 +2914,9 @@ }, "node_modules/@lerna/listable": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/listable/-/listable-4.0.0.tgz", + "integrity": "sha512-/rPOSDKsOHs5/PBLINZOkRIX1joOXUXEtyUs5DHLM8q6/RP668x/1lFhw6Dx7/U+L0+tbkpGtZ1Yt0LewCLgeQ==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/query-graph": "4.0.0", "chalk": "^4.1.0", @@ -3110,8 +2928,9 @@ }, "node_modules/@lerna/log-packed": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/log-packed/-/log-packed-4.0.0.tgz", + "integrity": "sha512-+dpCiWbdzgMAtpajLToy9PO713IHoE6GV/aizXycAyA07QlqnkpaBNZ8DW84gHdM1j79TWockGJo9PybVhrrZQ==", "dev": true, - "license": "MIT", "dependencies": { "byte-size": "^7.0.0", "columnify": "^1.5.4", @@ -3124,8 +2943,9 @@ }, "node_modules/@lerna/npm-conf": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/npm-conf/-/npm-conf-4.0.0.tgz", + "integrity": "sha512-uS7H02yQNq3oejgjxAxqq/jhwGEE0W0ntr8vM3EfpCW1F/wZruwQw+7bleJQ9vUBjmdXST//tk8mXzr5+JXCfw==", "dev": true, - "license": "MIT", "dependencies": { "config-chain": "^1.1.12", "pify": "^5.0.0" @@ -3136,8 +2956,9 @@ }, "node_modules/@lerna/npm-dist-tag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/npm-dist-tag/-/npm-dist-tag-4.0.0.tgz", + "integrity": "sha512-F20sg28FMYTgXqEQihgoqSfwmq+Id3zT23CnOwD+XQMPSy9IzyLf1fFVH319vXIw6NF6Pgs4JZN2Qty6/CQXGw==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/otplease": "4.0.0", "npm-package-arg": "^8.1.0", @@ -3150,8 +2971,9 @@ }, "node_modules/@lerna/npm-install": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/npm-install/-/npm-install-4.0.0.tgz", + "integrity": "sha512-aKNxq2j3bCH3eXl3Fmu4D54s/YLL9WSwV8W7X2O25r98wzrO38AUN6AB9EtmAx+LV/SP15et7Yueg9vSaanRWg==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/child-process": "4.0.0", "@lerna/get-npm-exec-opts": "4.0.0", @@ -3167,8 +2989,9 @@ }, "node_modules/@lerna/npm-publish": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-4.0.0.tgz", + "integrity": "sha512-vQb7yAPRo5G5r77DRjHITc9piR9gvEKWrmfCH7wkfBnGWEqu7n8/4bFQ7lhnkujvc8RXOsYpvbMQkNfkYibD/w==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/otplease": "4.0.0", "@lerna/run-lifecycle": "4.0.0", @@ -3185,8 +3008,9 @@ }, "node_modules/@lerna/npm-run-script": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/npm-run-script/-/npm-run-script-4.0.0.tgz", + "integrity": "sha512-Jmyh9/IwXJjOXqKfIgtxi0bxi1pUeKe5bD3S81tkcy+kyng/GNj9WSqD5ZggoNP2NP//s4CLDAtUYLdP7CU9rA==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/child-process": "4.0.0", "@lerna/get-npm-exec-opts": "4.0.0", @@ -3198,8 +3022,9 @@ }, "node_modules/@lerna/otplease": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/otplease/-/otplease-4.0.0.tgz", + "integrity": "sha512-Sgzbqdk1GH4psNiT6hk+BhjOfIr/5KhGBk86CEfHNJTk9BK4aZYyJD4lpDbDdMjIV4g03G7pYoqHzH765T4fxw==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/prompt": "4.0.0" }, @@ -3209,8 +3034,9 @@ }, "node_modules/@lerna/output": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/output/-/output-4.0.0.tgz", + "integrity": "sha512-Un1sHtO1AD7buDQrpnaYTi2EG6sLF+KOPEAMxeUYG5qG3khTs2Zgzq5WE3dt2N/bKh7naESt20JjIW6tBELP0w==", "dev": true, - "license": "MIT", "dependencies": { "npmlog": "^4.1.2" }, @@ -3220,8 +3046,9 @@ }, "node_modules/@lerna/pack-directory": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/pack-directory/-/pack-directory-4.0.0.tgz", + "integrity": "sha512-NJrmZNmBHS+5aM+T8N6FVbaKFScVqKlQFJNY2k7nsJ/uklNKsLLl6VhTQBPwMTbf6Tf7l6bcKzpy7aePuq9UiQ==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/get-packed": "4.0.0", "@lerna/package": "4.0.0", @@ -3237,8 +3064,9 @@ }, "node_modules/@lerna/package": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/package/-/package-4.0.0.tgz", + "integrity": "sha512-l0M/izok6FlyyitxiQKr+gZLVFnvxRQdNhzmQ6nRnN9dvBJWn+IxxpM+cLqGACatTnyo9LDzNTOj2Db3+s0s8Q==", "dev": true, - "license": "MIT", "dependencies": { "load-json-file": "^6.2.0", "npm-package-arg": "^8.1.0", @@ -3250,8 +3078,9 @@ }, "node_modules/@lerna/package-graph": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/package-graph/-/package-graph-4.0.0.tgz", + "integrity": "sha512-QED2ZCTkfXMKFoTGoccwUzjHtZMSf3UKX14A4/kYyBms9xfFsesCZ6SLI5YeySEgcul8iuIWfQFZqRw+Qrjraw==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/prerelease-id-from-version": "4.0.0", "@lerna/validation-error": "4.0.0", @@ -3265,8 +3094,9 @@ }, "node_modules/@lerna/prerelease-id-from-version": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-4.0.0.tgz", + "integrity": "sha512-GQqguzETdsYRxOSmdFZ6zDBXDErIETWOqomLERRY54f4p+tk4aJjoVdd9xKwehC9TBfIFvlRbL1V9uQGHh1opg==", "dev": true, - "license": "MIT", "dependencies": { "semver": "^7.3.4" }, @@ -3276,8 +3106,9 @@ }, "node_modules/@lerna/profiler": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/profiler/-/profiler-4.0.0.tgz", + "integrity": "sha512-/BaEbqnVh1LgW/+qz8wCuI+obzi5/vRE8nlhjPzdEzdmWmZXuCKyWSEzAyHOJWw1ntwMiww5dZHhFQABuoFz9Q==", "dev": true, - "license": "MIT", "dependencies": { "fs-extra": "^9.1.0", "npmlog": "^4.1.2", @@ -3289,8 +3120,9 @@ }, "node_modules/@lerna/project": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/project/-/project-4.0.0.tgz", + "integrity": "sha512-o0MlVbDkD5qRPkFKlBZsXZjoNTWPyuL58564nSfZJ6JYNmgAptnWPB2dQlAc7HWRZkmnC2fCkEdoU+jioPavbg==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/package": "4.0.0", "@lerna/validation-error": "4.0.0", @@ -3311,8 +3143,9 @@ }, "node_modules/@lerna/prompt": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/prompt/-/prompt-4.0.0.tgz", + "integrity": "sha512-4Ig46oCH1TH5M7YyTt53fT6TuaKMgqUUaqdgxvp6HP6jtdak6+amcsqB8YGz2eQnw/sdxunx84DfI9XpoLj4bQ==", "dev": true, - "license": "MIT", "dependencies": { "inquirer": "^7.3.3", "npmlog": "^4.1.2" @@ -3323,8 +3156,9 @@ }, "node_modules/@lerna/prompt/node_modules/inquirer": { "version": "7.3.3", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", + "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-escapes": "^4.2.1", "chalk": "^4.1.0", @@ -3346,8 +3180,9 @@ }, "node_modules/@lerna/prompt/node_modules/rxjs": { "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", "dev": true, - "license": "Apache-2.0", "dependencies": { "tslib": "^1.9.0" }, @@ -3357,13 +3192,15 @@ }, "node_modules/@lerna/prompt/node_modules/tslib": { "version": "1.14.1", - "dev": true, - "license": "0BSD" + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true }, "node_modules/@lerna/publish": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/publish/-/publish-4.0.0.tgz", + "integrity": "sha512-K8jpqjHrChH22qtkytA5GRKIVFEtqBF6JWj1I8dWZtHs4Jywn8yB1jQ3BAMLhqmDJjWJtRck0KXhQQKzDK2UPg==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/check-working-tree": "4.0.0", "@lerna/child-process": "4.0.0", @@ -3400,8 +3237,9 @@ }, "node_modules/@lerna/pulse-till-done": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/pulse-till-done/-/pulse-till-done-4.0.0.tgz", + "integrity": "sha512-Frb4F7QGckaybRhbF7aosLsJ5e9WuH7h0KUkjlzSByVycxY91UZgaEIVjS2oN9wQLrheLMHl6SiFY0/Pvo0Cxg==", "dev": true, - "license": "MIT", "dependencies": { "npmlog": "^4.1.2" }, @@ -3411,8 +3249,9 @@ }, "node_modules/@lerna/query-graph": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/query-graph/-/query-graph-4.0.0.tgz", + "integrity": "sha512-YlP6yI3tM4WbBmL9GCmNDoeQyzcyg1e4W96y/PKMZa5GbyUvkS2+Jc2kwPD+5KcXou3wQZxSPzR3Te5OenaDdg==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/package-graph": "4.0.0" }, @@ -3422,8 +3261,9 @@ }, "node_modules/@lerna/resolve-symlink": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/resolve-symlink/-/resolve-symlink-4.0.0.tgz", + "integrity": "sha512-RtX8VEUzqT+uLSCohx8zgmjc6zjyRlh6i/helxtZTMmc4+6O4FS9q5LJas2uGO2wKvBlhcD6siibGt7dIC3xZA==", "dev": true, - "license": "MIT", "dependencies": { "fs-extra": "^9.1.0", "npmlog": "^4.1.2", @@ -3435,8 +3275,9 @@ }, "node_modules/@lerna/rimraf-dir": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/rimraf-dir/-/rimraf-dir-4.0.0.tgz", + "integrity": "sha512-QNH9ABWk9mcMJh2/muD9iYWBk1oQd40y6oH+f3wwmVGKYU5YJD//+zMiBI13jxZRtwBx0vmBZzkBkK1dR11cBg==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/child-process": "4.0.0", "npmlog": "^4.1.2", @@ -3449,8 +3290,9 @@ }, "node_modules/@lerna/run": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/run/-/run-4.0.0.tgz", + "integrity": "sha512-9giulCOzlMPzcZS/6Eov6pxE9gNTyaXk0Man+iCIdGJNMrCnW7Dme0Z229WWP/UoxDKg71F2tMsVVGDiRd8fFQ==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/command": "4.0.0", "@lerna/filter-options": "4.0.0", @@ -3468,8 +3310,9 @@ }, "node_modules/@lerna/run-lifecycle": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-4.0.0.tgz", + "integrity": "sha512-IwxxsajjCQQEJAeAaxF8QdEixfI7eLKNm4GHhXHrgBu185JcwScFZrj9Bs+PFKxwb+gNLR4iI5rpUdY8Y0UdGQ==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/npm-conf": "4.0.0", "npm-lifecycle": "^3.1.5", @@ -3481,8 +3324,9 @@ }, "node_modules/@lerna/run-topologically": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/run-topologically/-/run-topologically-4.0.0.tgz", + "integrity": "sha512-EVZw9hGwo+5yp+VL94+NXRYisqgAlj0jWKWtAIynDCpghRxCE5GMO3xrQLmQgqkpUl9ZxQFpICgYv5DW4DksQA==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/query-graph": "4.0.0", "p-queue": "^6.6.2" @@ -3493,8 +3337,9 @@ }, "node_modules/@lerna/symlink-binary": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-4.0.0.tgz", + "integrity": "sha512-zualodWC4q1QQc1pkz969hcFeWXOsVYZC5AWVtAPTDfLl+TwM7eG/O6oP+Rr3fFowspxo6b1TQ6sYfDV6HXNWA==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/create-symlink": "4.0.0", "@lerna/package": "4.0.0", @@ -3507,8 +3352,9 @@ }, "node_modules/@lerna/symlink-dependencies": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-4.0.0.tgz", + "integrity": "sha512-BABo0MjeUHNAe2FNGty1eantWp8u83BHSeIMPDxNq0MuW2K3CiQRaeWT3EGPAzXpGt0+hVzBrA6+OT0GPn7Yuw==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/create-symlink": "4.0.0", "@lerna/resolve-symlink": "4.0.0", @@ -3523,16 +3369,18 @@ }, "node_modules/@lerna/timer": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/timer/-/timer-4.0.0.tgz", + "integrity": "sha512-WFsnlaE7SdOvjuyd05oKt8Leg3ENHICnvX3uYKKdByA+S3g+TCz38JsNs7OUZVt+ba63nC2nbXDlUnuT2Xbsfg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 10.18.0" } }, "node_modules/@lerna/validation-error": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/validation-error/-/validation-error-4.0.0.tgz", + "integrity": "sha512-1rBOM5/koiVWlRi3V6dB863E1YzJS8v41UtsHgMr6gB2ncJ2LsQtMKlJpi3voqcgh41H8UsPXR58RrrpPpufyw==", "dev": true, - "license": "MIT", "dependencies": { "npmlog": "^4.1.2" }, @@ -3542,8 +3390,9 @@ }, "node_modules/@lerna/version": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/version/-/version-4.0.0.tgz", + "integrity": "sha512-otUgiqs5W9zGWJZSCCMRV/2Zm2A9q9JwSDS7s/tlKq4mWCYriWo7+wsHEA/nPTMDyYyBO5oyZDj+3X50KDUzeA==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/check-working-tree": "4.0.0", "@lerna/child-process": "4.0.0", @@ -3576,10 +3425,23 @@ "node": ">= 10.18.0" } }, + "node_modules/@lerna/version/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, "node_modules/@lerna/write-log-file": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/write-log-file/-/write-log-file-4.0.0.tgz", + "integrity": "sha512-XRG5BloiArpXRakcnPHmEHJp+4AtnhRtpDIHSghmXD5EichI1uD73J7FgPp30mm2pDRq3FdqB0NbwSEsJ9xFQg==", "dev": true, - "license": "MIT", "dependencies": { "npmlog": "^4.1.2", "write-file-atomic": "^3.0.3" @@ -3590,16 +3452,18 @@ }, "node_modules/@n1ru4l/graphql-live-query": { "version": "0.9.0", + "resolved": "https://registry.npmjs.org/@n1ru4l/graphql-live-query/-/graphql-live-query-0.9.0.tgz", + "integrity": "sha512-BTpWy1e+FxN82RnLz4x1+JcEewVdfmUhV1C6/XYD5AjS7PQp9QFF7K8bCD6gzPTr2l+prvqOyVueQhFJxB1vfg==", "dev": true, - "license": "MIT", "peerDependencies": { "graphql": "^15.4.0 || ^16.0.0" } }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, - "license": "MIT", "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" @@ -3610,16 +3474,18 @@ }, "node_modules/@nodelib/fs.stat": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, - "license": "MIT", "engines": { "node": ">= 8" } }, "node_modules/@nodelib/fs.walk": { "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, - "license": "MIT", "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" @@ -3630,24 +3496,24 @@ }, "node_modules/@npmcli/ci-detect": { "version": "1.4.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/@npmcli/ci-detect/-/ci-detect-1.4.0.tgz", + "integrity": "sha512-3BGrt6FLjqM6br5AhWRKTr3u5GIVkjRYeAFrMp3HjnfICrg4xOrVRwFavKT6tsp++bq5dluL5t8ME/Nha/6c1Q==", + "dev": true }, "node_modules/@npmcli/fs": { - "version": "1.1.0", - "license": "ISC", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", + "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", "dependencies": { "@gar/promisify": "^1.0.1", "semver": "^7.3.5" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16" } }, "node_modules/@npmcli/git": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-2.1.0.tgz", + "integrity": "sha512-/hBFX/QG1b+N7PZBFs0bi+evgRZcK9nWBxQKZkGoXUT5hJSwl5c4d7y8/hm+NQZRPhQ67RzFaj5UM9YeyKoryw==", "dev": true, - "license": "ISC", "dependencies": { "@npmcli/promise-spawn": "^1.3.2", "lru-cache": "^6.0.0", @@ -3661,8 +3527,9 @@ }, "node_modules/@npmcli/installed-package-contents": { "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-1.0.7.tgz", + "integrity": "sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==", "dev": true, - "license": "ISC", "dependencies": { "npm-bundled": "^1.1.1", "npm-normalize-package-bin": "^1.0.1" @@ -3676,7 +3543,8 @@ }, "node_modules/@npmcli/move-file": { "version": "1.1.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", "dependencies": { "mkdirp": "^1.0.4", "rimraf": "^3.0.2" @@ -3687,21 +3555,24 @@ }, "node_modules/@npmcli/node-gyp": { "version": "1.0.3", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-1.0.3.tgz", + "integrity": "sha512-fnkhw+fmX65kiLqk6E3BFLXNC26rUhK90zVwe2yncPliVT/Qos3xjhTLE59Df8KnPlcwIERXKVlU1bXoUQ+liA==", + "dev": true }, "node_modules/@npmcli/promise-spawn": { "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-1.3.2.tgz", + "integrity": "sha512-QyAGYo/Fbj4MXeGdJcFzZ+FkDkomfRBrPM+9QYJSg+PxgAUL+LU3FneQk37rKR2/zjqkCV1BLHccX98wRXG3Sg==", "dev": true, - "license": "ISC", "dependencies": { "infer-owner": "^1.0.4" } }, "node_modules/@npmcli/run-script": { "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-1.8.6.tgz", + "integrity": "sha512-e42bVZnC6VluBZBAFEr3YrdqSspG3bgilyg4nSLBJ7TRGNCzxHa92XAHxQBLYg0BmgwO4b2mf3h/l5EkEWRn3g==", "dev": true, - "license": "ISC", "dependencies": { "@npmcli/node-gyp": "^1.0.2", "@npmcli/promise-spawn": "^1.3.2", @@ -3711,8 +3582,9 @@ }, "node_modules/@npmcli/run-script/node_modules/node-gyp": { "version": "7.1.2", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-7.1.2.tgz", + "integrity": "sha512-CbpcIo7C3eMu3dL1c3d0xw449fHIGALIJsRP4DDPHpyiW8vcriNY7ubh9TE4zEKfSxscY7PjeFnshE7h75ynjQ==", "dev": true, - "license": "MIT", "dependencies": { "env-paths": "^2.2.0", "glob": "^7.1.4", @@ -3734,8 +3606,9 @@ }, "node_modules/@npmcli/run-script/node_modules/nopt": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", "dev": true, - "license": "ISC", "dependencies": { "abbrev": "1" }, @@ -3748,20 +3621,22 @@ }, "node_modules/@octokit/auth-token": { "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.5.0.tgz", + "integrity": "sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==", "dev": true, - "license": "MIT", "dependencies": { "@octokit/types": "^6.0.3" } }, "node_modules/@octokit/core": { - "version": "3.5.1", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-3.6.0.tgz", + "integrity": "sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==", "dev": true, - "license": "MIT", "dependencies": { "@octokit/auth-token": "^2.4.4", "@octokit/graphql": "^4.5.8", - "@octokit/request": "^5.6.0", + "@octokit/request": "^5.6.3", "@octokit/request-error": "^2.0.5", "@octokit/types": "^6.0.3", "before-after-hook": "^2.2.0", @@ -3770,8 +3645,9 @@ }, "node_modules/@octokit/endpoint": { "version": "6.0.12", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.12.tgz", + "integrity": "sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==", "dev": true, - "license": "MIT", "dependencies": { "@octokit/types": "^6.0.3", "is-plain-object": "^5.0.0", @@ -3780,8 +3656,9 @@ }, "node_modules/@octokit/graphql": { "version": "4.8.0", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.8.0.tgz", + "integrity": "sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==", "dev": true, - "license": "MIT", "dependencies": { "@octokit/request": "^5.6.0", "@octokit/types": "^6.0.3", @@ -3790,18 +3667,21 @@ }, "node_modules/@octokit/openapi-types": { "version": "11.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-11.2.0.tgz", + "integrity": "sha512-PBsVO+15KSlGmiI8QAzaqvsNlZlrDlyAJYcrXBCvVUxCp7VnXjkwPoFHgjEJXx3WF9BAwkA6nfCUA7i9sODzKA==", + "dev": true }, "node_modules/@octokit/plugin-enterprise-rest": { "version": "6.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@octokit/plugin-enterprise-rest/-/plugin-enterprise-rest-6.0.1.tgz", + "integrity": "sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==", + "dev": true }, "node_modules/@octokit/plugin-paginate-rest": { "version": "2.17.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.17.0.tgz", + "integrity": "sha512-tzMbrbnam2Mt4AhuyCHvpRkS0oZ5MvwwcQPYGtMv4tUa5kkzG58SVB0fcsLulOZQeRnOgdkZWkRUiyBlh0Bkyw==", "dev": true, - "license": "MIT", "dependencies": { "@octokit/types": "^6.34.0" }, @@ -3811,16 +3691,18 @@ }, "node_modules/@octokit/plugin-request-log": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz", + "integrity": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==", "dev": true, - "license": "MIT", "peerDependencies": { "@octokit/core": ">=3" } }, "node_modules/@octokit/plugin-rest-endpoint-methods": { "version": "5.13.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.13.0.tgz", + "integrity": "sha512-uJjMTkN1KaOIgNtUPMtIXDOjx6dGYysdIFhgA52x4xSadQCz3b/zJexvITDVpANnfKPW/+E0xkOvLntqMYpviA==", "dev": true, - "license": "MIT", "dependencies": { "@octokit/types": "^6.34.0", "deprecation": "^2.3.1" @@ -3830,22 +3712,24 @@ } }, "node_modules/@octokit/request": { - "version": "5.6.2", + "version": "5.6.3", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-5.6.3.tgz", + "integrity": "sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==", "dev": true, - "license": "MIT", "dependencies": { "@octokit/endpoint": "^6.0.1", "@octokit/request-error": "^2.1.0", "@octokit/types": "^6.16.1", "is-plain-object": "^5.0.0", - "node-fetch": "^2.6.1", + "node-fetch": "^2.6.7", "universal-user-agent": "^6.0.0" } }, "node_modules/@octokit/request-error": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.1.0.tgz", + "integrity": "sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==", "dev": true, - "license": "MIT", "dependencies": { "@octokit/types": "^6.0.3", "deprecation": "^2.0.0", @@ -3854,8 +3738,9 @@ }, "node_modules/@octokit/rest": { "version": "18.12.0", + "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-18.12.0.tgz", + "integrity": "sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==", "dev": true, - "license": "MIT", "dependencies": { "@octokit/core": "^3.5.1", "@octokit/plugin-paginate-rest": "^2.16.8", @@ -3865,23 +3750,26 @@ }, "node_modules/@octokit/types": { "version": "6.34.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-6.34.0.tgz", + "integrity": "sha512-s1zLBjWhdEI2zwaoSgyOFoKSl109CUcVBCc7biPJ3aAf6LGLU6szDvi31JPU7bxfla2lqfhjbbg/5DdFNxOwHw==", "dev": true, - "license": "MIT", "dependencies": { "@octokit/openapi-types": "^11.2.0" } }, "node_modules/@opentelemetry/api": { "version": "1.0.4", - "license": "Apache-2.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.0.4.tgz", + "integrity": "sha512-BuJuXRSJNQ3QoKA6GWWDyuLpOUck+9hAXNMCnrloc1aWVoy6Xq6t9PUV08aBZ4Lutqq2LEHM486bpZqoViScog==", "engines": { "node": ">=8.0.0" } }, "node_modules/@opentelemetry/context-async-hooks": { "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/context-async-hooks/-/context-async-hooks-0.24.0.tgz", + "integrity": "sha512-Db8AgMByBEFKLJGSUBlNq4Un/Tqzj5W0hTxx3hIic8DvBwqbvUvkMGuiQYLKE2Ay21cLYMT01xK4TEKz0OxADw==", "dev": true, - "license": "Apache-2.0", "engines": { "node": ">=8.1.0" }, @@ -3891,8 +3779,9 @@ }, "node_modules/@opentelemetry/core": { "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-0.24.0.tgz", + "integrity": "sha512-KpsfxBbFTZT9zaB4Es/fFLbvSzVl9Io/8UUu/TYl4/HgqkmyVInNlWTgRiKyz9nsHzFpGP1kdZJj+YIut0IFsw==", "dev": true, - "license": "Apache-2.0", "dependencies": { "@opentelemetry/semantic-conventions": "0.24.0", "semver": "^7.1.3" @@ -3906,8 +3795,10 @@ }, "node_modules/@opentelemetry/node": { "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/node/-/node-0.24.0.tgz", + "integrity": "sha512-Sy8QooZFOeVUcJIKetw5xsq15/1ivZovWg0RnKWtzURMQrcOxmQ3bGrXPORklOJxOtf5snDHgT37Y7dBgr+c+g==", + "deprecated": "Package renamed to @opentelemetry/sdk-trace-node", "dev": true, - "license": "Apache-2.0", "dependencies": { "@opentelemetry/context-async-hooks": "0.24.0", "@opentelemetry/core": "0.24.0", @@ -3925,8 +3816,9 @@ }, "node_modules/@opentelemetry/propagator-b3": { "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/propagator-b3/-/propagator-b3-0.24.0.tgz", + "integrity": "sha512-iV7KSN0LkEAkeVCbhaIJAgTEb7HCnVkprmpgkL6q79rP3vTW4dylwfBYgIwod7y0GT4Ofgomm0NrwwWiuGLbQA==", "dev": true, - "license": "Apache-2.0", "dependencies": { "@opentelemetry/core": "0.24.0" }, @@ -3939,8 +3831,9 @@ }, "node_modules/@opentelemetry/propagator-jaeger": { "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/propagator-jaeger/-/propagator-jaeger-0.24.0.tgz", + "integrity": "sha512-QXCxBwuSka+vXbBZdumtF7YKO84gwTyKy3GelZV5BPlgWoge0AbLR3DfsO9Beu13pmD+4PyuwMw3LfYsgG1+3g==", "dev": true, - "license": "Apache-2.0", "dependencies": { "@opentelemetry/core": "0.24.0" }, @@ -3953,8 +3846,9 @@ }, "node_modules/@opentelemetry/resources": { "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-0.24.0.tgz", + "integrity": "sha512-uEr2m13IRkjQAjX6fsYqJ21aONCspRvuQunaCl8LbH1NS1Gj82TuRUHF6TM82ulBPK8pU+nrrqXKuky2cMcIzw==", "dev": true, - "license": "Apache-2.0", "dependencies": { "@opentelemetry/core": "0.24.0", "@opentelemetry/semantic-conventions": "0.24.0" @@ -3968,16 +3862,19 @@ }, "node_modules/@opentelemetry/semantic-conventions": { "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-0.24.0.tgz", + "integrity": "sha512-a/szuMQV0Quy0/M7kKdglcbRSoorleyyOwbTNNJ32O+RBN766wbQlMTvdimImTmwYWGr+NJOni1EcC242WlRcA==", "dev": true, - "license": "Apache-2.0", "engines": { "node": ">=8.0.0" } }, "node_modules/@opentelemetry/tracing": { "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/tracing/-/tracing-0.24.0.tgz", + "integrity": "sha512-sTLEs1SIon3xV8vLe53PzfbU0FahoxL9NPY/CYvA1mwGbMu4zHkHAjqy1Tc8JmqRrfa+XrHkmzeSM4hrvloBaA==", + "deprecated": "Package renamed to @opentelemetry/sdk-trace-base", "dev": true, - "license": "Apache-2.0", "dependencies": { "@opentelemetry/core": "0.24.0", "@opentelemetry/resources": "0.24.0", @@ -3993,23 +3890,28 @@ }, "node_modules/@protobufjs/aspromise": { "version": "1.1.2", - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", + "integrity": "sha1-m4sMxmPWaafY9vXQiToU00jzD78=" }, "node_modules/@protobufjs/base64": { "version": "1.1.2", - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==" }, "node_modules/@protobufjs/codegen": { "version": "2.0.4", - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", + "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==" }, "node_modules/@protobufjs/eventemitter": { "version": "1.1.0", - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", + "integrity": "sha1-NVy8mLr61ZePntCV85diHx0Ga3A=" }, "node_modules/@protobufjs/fetch": { "version": "1.1.0", - "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", + "integrity": "sha1-upn7WYYUr2VwDBYZ/wbUVLDYTEU=", "dependencies": { "@protobufjs/aspromise": "^1.1.1", "@protobufjs/inquire": "^1.1.0" @@ -4017,28 +3919,42 @@ }, "node_modules/@protobufjs/float": { "version": "1.0.2", - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", + "integrity": "sha1-Xp4avctz/Ap8uLKR33jIy9l7h9E=" }, "node_modules/@protobufjs/inquire": { "version": "1.1.0", - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", + "integrity": "sha1-/yAOPnzyQp4tyvwRQIKOjMY48Ik=" }, "node_modules/@protobufjs/path": { "version": "1.1.2", - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", + "integrity": "sha1-bMKyDFya1q0NzP0hynZz2Nf79o0=" }, "node_modules/@protobufjs/pool": { "version": "1.1.0", - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", + "integrity": "sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q=" }, "node_modules/@protobufjs/utf8": { "version": "1.1.0", - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", + "integrity": "sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA=" + }, + "node_modules/@protoplasm/recall": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@protoplasm/recall/-/recall-0.2.2.tgz", + "integrity": "sha512-grQIYNd3UsFjHXL1g5Qw5MdUNAddEcD1KfqiO6WeMOQHgIgECXo7r4jfcXGIh37q17HoGQgq/G4guMGkzQ+UOA==", + "engines": { + "node": ">=12.13.0" + } }, "node_modules/@samverschueren/stream-to-observable": { "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.1.tgz", + "integrity": "sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==", "dev": true, - "license": "MIT", "dependencies": { "any-observable": "^0.3.0" }, @@ -4056,16 +3972,18 @@ }, "node_modules/@sindresorhus/is": { "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", + "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/@sinonjs/commons": { "version": "1.8.3", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", + "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "type-detect": "4.0.8" } @@ -4081,8 +3999,9 @@ }, "node_modules/@szmarczak/http-timer": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", "dev": true, - "license": "MIT", "dependencies": { "defer-to-connect": "^1.0.1" }, @@ -4092,16 +4011,18 @@ }, "node_modules/@tootallnate/once": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", "dev": true, - "license": "MIT", "engines": { "node": ">= 10" } }, "node_modules/@types/accepts": { "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/accepts/-/accepts-1.3.5.tgz", + "integrity": "sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*" } @@ -4116,9 +4037,10 @@ } }, "node_modules/@types/babel__core": { - "version": "7.1.18", + "version": "7.1.19", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz", + "integrity": "sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0", @@ -4129,16 +4051,18 @@ }, "node_modules/@types/babel__generator": { "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/types": "^7.0.0" } }, "node_modules/@types/babel__template": { "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", "dev": true, - "license": "MIT", "dependencies": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0" @@ -4146,16 +4070,18 @@ }, "node_modules/@types/babel__traverse": { "version": "7.14.2", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz", + "integrity": "sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/types": "^7.3.0" } }, "node_modules/@types/body-parser": { "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", "dev": true, - "license": "MIT", "dependencies": { "@types/connect": "*", "@types/node": "*" @@ -4163,39 +4089,45 @@ }, "node_modules/@types/bunyan": { "version": "1.8.8", + "resolved": "https://registry.npmjs.org/@types/bunyan/-/bunyan-1.8.8.tgz", + "integrity": "sha512-Cblq+Yydg3u+sGiz2mjHjC5MPmdjY+No4qvHrF+BUhblsmSfMvsHLbOG62tPbonsqBj6sbWv1LHcsoe5Jw+/Ow==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/connect": { "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/cors": { "version": "2.8.12", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.12.tgz", + "integrity": "sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw==", + "dev": true }, "node_modules/@types/deep-equal": { "version": "1.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/deep-equal/-/deep-equal-1.0.1.tgz", + "integrity": "sha512-mMUu4nWHLBlHtxXY17Fg6+ucS/MnndyOWyOe7MmwkoMYxvfQU2ajtRaEvqSUv+aVkMqH/C0NCI8UoVfRNQ10yg==", + "dev": true }, "node_modules/@types/deep-freeze": { "version": "0.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/deep-freeze/-/deep-freeze-0.1.2.tgz", + "integrity": "sha512-M6x29Vk4681dght4IMnPIcF1SNmeEm0c4uatlTFhp+++H1oDK1THEIzuCC2WeCBVhX+gU0NndsseDS3zaCtlcQ==", + "dev": true }, "node_modules/@types/express": { "version": "4.17.13", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", + "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", "dev": true, - "license": "MIT", "dependencies": { "@types/body-parser": "*", "@types/express-serve-static-core": "^4.17.18", @@ -4205,8 +4137,9 @@ }, "node_modules/@types/express-serve-static-core": { "version": "4.17.28", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.28.tgz", + "integrity": "sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*", "@types/qs": "*", @@ -4215,8 +4148,9 @@ }, "node_modules/@types/glob": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", "dev": true, - "license": "MIT", "dependencies": { "@types/minimatch": "*", "@types/node": "*" @@ -4224,29 +4158,33 @@ }, "node_modules/@types/graceful-fs": { "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", + "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/istanbul-lib-coverage": { "version": "2.0.4", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true }, "node_modules/@types/istanbul-lib-report": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", "dev": true, - "license": "MIT", "dependencies": { "@types/istanbul-lib-coverage": "*" } }, "node_modules/@types/istanbul-reports": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", "dev": true, - "license": "MIT", "dependencies": { "@types/istanbul-lib-report": "*" } @@ -4263,13 +4201,15 @@ }, "node_modules/@types/js-levenshtein": { "version": "1.1.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/js-levenshtein/-/js-levenshtein-1.1.1.tgz", + "integrity": "sha512-qC4bCqYGy1y/NP7dDVr7KJarn+PbX1nSpwA7JXdu0HxT3QYjO8MJ+cntENtHFVy2dRAyBV23OZ6MxsW1AM1L8g==", + "dev": true }, "node_modules/@types/js-yaml": { "version": "4.0.5", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.5.tgz", + "integrity": "sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==", + "dev": true }, "node_modules/@types/json-schema": { "version": "7.0.11", @@ -4278,59 +4218,69 @@ "dev": true }, "node_modules/@types/json-stable-stringify": { - "version": "1.0.33", - "dev": true, - "license": "MIT" + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/@types/json-stable-stringify/-/json-stable-stringify-1.0.34.tgz", + "integrity": "sha512-s2cfwagOQAS8o06TcwKfr9Wx11dNGbH2E9vJz1cqV+a/LOyhWNLUNd6JSRYNzvB4d29UuJX2M0Dj9vE1T8fRXw==", + "dev": true }, "node_modules/@types/jsonwebtoken": { - "version": "8.5.6", + "version": "8.5.8", + "resolved": "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-8.5.8.tgz", + "integrity": "sha512-zm6xBQpFDIDM6o9r6HSgDeIcLy82TKWctCXEPbJJcXb5AKmi5BNNdLXneixK4lplX3PqIVcwLBCGE/kAGnlD4A==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/lodash": { - "version": "4.14.178", - "dev": true, - "license": "MIT" + "version": "4.14.181", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.181.tgz", + "integrity": "sha512-n3tyKthHJbkiWhDZs3DkhkCzt2MexYHXlX0td5iMplyfwketaOeKboEVBqzceH7juqvEg3q5oUoBFxSLu7zFag==", + "dev": true }, "node_modules/@types/lodash.xorby": { "version": "4.7.6", + "resolved": "https://registry.npmjs.org/@types/lodash.xorby/-/lodash.xorby-4.7.6.tgz", + "integrity": "sha512-PtlgNvKxKD65DCbm8OPokdYnm3kIrBYTXc20vbsF0QX+il1c9mmb4KxKE3U0ty9w8AoA+RxyT7hxHd/doFDcGg==", "dev": true, - "license": "MIT", "dependencies": { "@types/lodash": "*" } }, "node_modules/@types/loglevel": { "version": "1.5.4", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/loglevel/-/loglevel-1.5.4.tgz", + "integrity": "sha512-8dx4ckP0vndJeN+iKZwdGiapLqFjVQ3JLOt92uqK0C63acs5NcPLbUOpfXCJkKVRjZLBQjw8NIGNBSsnatFnFQ==", + "dev": true }, "node_modules/@types/long": { "version": "4.0.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.1.tgz", + "integrity": "sha512-5tXH6Bx/kNGd3MgffdmP4dy2Z+G4eaXw0SE81Tq3BNadtnMR5/ySMzX4SLEzHJzSmPNn4HIdpQsBvXMUykr58w==" }, "node_modules/@types/mime": { "version": "1.3.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", + "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", + "dev": true }, "node_modules/@types/minimatch": { "version": "3.0.5", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==", + "dev": true }, "node_modules/@types/minimist": { "version": "1.2.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", + "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", + "dev": true }, "node_modules/@types/nock": { "version": "10.0.3", + "resolved": "https://registry.npmjs.org/@types/nock/-/nock-10.0.3.tgz", + "integrity": "sha512-OthuN+2FuzfZO3yONJ/QVjKmLEuRagS9TV9lEId+WHL9KhftYG+/2z+pxlr0UgVVXSpVD8woie/3fzQn8ft/Ow==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*" } @@ -4351,28 +4301,33 @@ }, "node_modules/@types/normalize-package-data": { "version": "2.4.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", + "dev": true }, "node_modules/@types/parse-json": { "version": "4.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "dev": true }, "node_modules/@types/prettier": { - "version": "2.4.2", - "dev": true, - "license": "MIT" + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.4.tgz", + "integrity": "sha512-ReVR2rLTV1kvtlWFyuot+d1pkpG2Fw/XKE3PDAdj57rbM97ttSp9JZ2UsP+2EHTylra9cUf6JA7tGwW1INzUrA==", + "dev": true }, "node_modules/@types/qs": { "version": "6.9.7", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "dev": true }, "node_modules/@types/range-parser": { "version": "1.2.4", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "dev": true }, "node_modules/@types/retry": { "version": "0.12.1", @@ -4382,8 +4337,9 @@ }, "node_modules/@types/serve-static": { "version": "1.13.10", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.10.tgz", + "integrity": "sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==", "dev": true, - "license": "MIT", "dependencies": { "@types/mime": "^1", "@types/node": "*" @@ -4391,56 +4347,64 @@ }, "node_modules/@types/stack-utils": { "version": "2.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true }, "node_modules/@types/uuid": { "version": "3.4.10", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-3.4.10.tgz", + "integrity": "sha512-BgeaZuElf7DEYZhWYDTc/XcLZXdVgFkVSTa13BqKvbnmUrxr3TJFKofUxCtDO9UQOdhnV+HPOESdHiHKZOJV1A==", + "dev": true }, "node_modules/@types/webidl-conversions": { "version": "6.1.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-6.1.1.tgz", + "integrity": "sha512-XAahCdThVuCFDQLT7R7Pk/vqeObFNL3YqRyFZg+AqAP/W1/w3xHaIxuW7WszQqTbIBOPRcItYJIou3i/mppu3Q==", + "dev": true }, "node_modules/@types/websocket": { - "version": "1.0.4", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/websocket/-/websocket-1.0.5.tgz", + "integrity": "sha512-NbsqiNX9CnEfC1Z0Vf4mE1SgAJ07JnRYcNex7AJ9zAVzmiGHmjKFEk7O4TJIsgv2B1sLEb6owKFZrACwdYngsQ==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/whatwg-url": { "version": "8.2.1", + "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.1.tgz", + "integrity": "sha512-2YubE1sjj5ifxievI5Ge1sckb9k/Er66HyR2c+3+I6VDUUg1TLPdYYTEbQ+DjRkS4nTxMJhgWfSfMRD2sl2EYQ==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*", "@types/webidl-conversions": "*" } }, "node_modules/@types/ws": { - "version": "8.2.2", + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", + "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/yargs": { "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", "dev": true, - "license": "MIT", "dependencies": { "@types/yargs-parser": "*" } }, "node_modules/@types/yargs-parser": { - "version": "20.2.1", - "dev": true, - "license": "MIT" + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true }, "node_modules/@typescript-eslint/eslint-plugin": { "version": "5.18.0", @@ -4476,14 +4440,15 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "5.9.0", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.18.0.tgz", + "integrity": "sha512-+08nYfurBzSSPndngnHvFw/fniWYJ5ymOrn/63oMIbgomVQOvIDhBoJmYZ9lwQOCnQV9xHGvf88ze3jFGUYooQ==", "dev": true, - "license": "BSD-2-Clause", "peer": true, "dependencies": { - "@typescript-eslint/scope-manager": "5.9.0", - "@typescript-eslint/types": "5.9.0", - "@typescript-eslint/typescript-estree": "5.9.0", + "@typescript-eslint/scope-manager": "5.18.0", + "@typescript-eslint/types": "5.18.0", + "@typescript-eslint/typescript-estree": "5.18.0", "debug": "^4.3.2" }, "engines": { @@ -4502,80 +4467,6 @@ } } }, - "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/scope-manager": { - "version": "5.9.0", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@typescript-eslint/types": "5.9.0", - "@typescript-eslint/visitor-keys": "5.9.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/types": { - "version": "5.9.0", - "dev": true, - "license": "MIT", - "peer": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/typescript-estree": { - "version": "5.9.0", - "dev": true, - "license": "BSD-2-Clause", - "peer": true, - "dependencies": { - "@typescript-eslint/types": "5.9.0", - "@typescript-eslint/visitor-keys": "5.9.0", - "debug": "^4.3.2", - "globby": "^11.0.4", - "is-glob": "^4.0.3", - "semver": "^7.3.5", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/visitor-keys": { - "version": "5.9.0", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@typescript-eslint/types": "5.9.0", - "eslint-visitor-keys": "^3.0.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, "node_modules/@typescript-eslint/scope-manager": { "version": "5.18.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.18.0.tgz", @@ -4702,8 +4593,9 @@ }, "node_modules/@wry/context": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/@wry/context/-/context-0.6.1.tgz", + "integrity": "sha512-LOmVnY1iTU2D8tv4Xf6MVMZZ+juIJ87Kt/plMijjN20NMAXGmH4u8bS1t0uT74cZ5gwpocYueV58YwyI8y+GKw==", "dev": true, - "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, @@ -4713,8 +4605,9 @@ }, "node_modules/@wry/equality": { "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@wry/equality/-/equality-0.5.2.tgz", + "integrity": "sha512-oVMxbUXL48EV/C0/M7gLVsoK6qRHPS85x8zECofEZOVvxGmIPLA9o5Z27cc2PoAyZz1S2VoM2A7FLAnpfGlneA==", "dev": true, - "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, @@ -4724,8 +4617,9 @@ }, "node_modules/@wry/trie": { "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@wry/trie/-/trie-0.3.1.tgz", + "integrity": "sha512-WwB53ikYudh9pIorgxrkHKrQZcCqNM/Q/bDzZBffEaGUKGuHrRb3zZUT9Sh2qw9yogC7SsdRmQ1ER0pqvd3bfw==", "dev": true, - "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, @@ -4735,18 +4629,21 @@ }, "node_modules/abab": { "version": "2.0.5", - "dev": true, - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", + "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==", + "dev": true }, "node_modules/abbrev": { "version": "1.1.1", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true }, "node_modules/abort-controller": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", "dev": true, - "license": "MIT", "dependencies": { "event-target-shim": "^5.0.0" }, @@ -4755,12 +4652,13 @@ } }, "node_modules/accepts": { - "version": "1.3.7", + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dev": true, - "license": "MIT", "dependencies": { - "mime-types": "~2.1.24", - "negotiator": "0.6.2" + "mime-types": "~2.1.34", + "negotiator": "0.6.3" }, "engines": { "node": ">= 0.6" @@ -4768,8 +4666,9 @@ }, "node_modules/acorn": { "version": "8.7.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz", + "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==", "dev": true, - "license": "MIT", "bin": { "acorn": "bin/acorn" }, @@ -4779,8 +4678,9 @@ }, "node_modules/acorn-globals": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", "dev": true, - "license": "MIT", "dependencies": { "acorn": "^7.1.1", "acorn-walk": "^7.1.1" @@ -4788,8 +4688,9 @@ }, "node_modules/acorn-globals/node_modules/acorn": { "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", "dev": true, - "license": "MIT", "bin": { "acorn": "bin/acorn" }, @@ -4799,8 +4700,9 @@ }, "node_modules/acorn-jsx": { "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, - "license": "MIT", "peer": true, "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" @@ -4808,20 +4710,23 @@ }, "node_modules/acorn-walk": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.4.0" } }, "node_modules/add-stream": { "version": "1.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/add-stream/-/add-stream-1.0.0.tgz", + "integrity": "sha1-anmQQ3ynNtXhKI25K9MmbV9csqo=", + "dev": true }, "node_modules/agent-base": { "version": "6.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "dependencies": { "debug": "4" }, @@ -4830,8 +4735,9 @@ } }, "node_modules/agentkeepalive": { - "version": "4.2.0", - "license": "MIT", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.1.tgz", + "integrity": "sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==", "dependencies": { "debug": "^4.1.0", "depd": "^1.1.2", @@ -4841,9 +4747,18 @@ "node": ">= 8.0.0" } }, + "node_modules/agentkeepalive/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "engines": { + "node": ">= 0.6" + } + }, "node_modules/aggregate-error": { "version": "3.1.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", "dependencies": { "clean-stack": "^2.0.0", "indent-string": "^4.0.0" @@ -4854,15 +4769,17 @@ }, "node_modules/aggregate-error/node_modules/indent-string": { "version": "4.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "engines": { "node": ">=8" } }, "node_modules/ajv": { "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, - "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", @@ -4874,19 +4791,11 @@ "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/ansi-colors": { - "version": "4.1.1", - "dev": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">=6" - } - }, "node_modules/ansi-escapes": { "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, - "license": "MIT", "dependencies": { "type-fest": "^0.21.3" }, @@ -4899,14 +4808,16 @@ }, "node_modules/ansi-regex": { "version": "5.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "engines": { "node": ">=8" } }, "node_modules/ansi-styles": { "version": "4.3.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { "color-convert": "^2.0.1" }, @@ -4919,16 +4830,18 @@ }, "node_modules/any-observable": { "version": "0.3.0", + "resolved": "https://registry.npmjs.org/any-observable/-/any-observable-0.3.0.tgz", + "integrity": "sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/anymatch": { "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", "dev": true, - "license": "ISC", "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" @@ -4939,7 +4852,8 @@ }, "node_modules/apollo-datasource": { "version": "3.3.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/apollo-datasource/-/apollo-datasource-3.3.1.tgz", + "integrity": "sha512-Z3a8rEUXVPIZ1p8xrFL8bcNhWmhOmovgDArvwIwmJOBnh093ZpRfO+ESJEDAN4KswmyzCLDAwjsW4zQOONdRUw==", "dependencies": { "apollo-server-caching": "^3.3.0", "apollo-server-env": "^4.2.1" @@ -4976,7 +4890,8 @@ }, "node_modules/apollo-server-caching": { "version": "3.3.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/apollo-server-caching/-/apollo-server-caching-3.3.0.tgz", + "integrity": "sha512-Wgcb0ArjZ5DjQ7ID+tvxUcZ7Yxdbk5l1MxZL8D8gkyjooOkhPNzjRVQ7ubPoXqO54PrOMOTm1ejVhsF+AfIirQ==", "dependencies": { "lru-cache": "^6.0.0" }, @@ -5019,7 +4934,8 @@ }, "node_modules/apollo-server-env": { "version": "4.2.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/apollo-server-env/-/apollo-server-env-4.2.1.tgz", + "integrity": "sha512-vm/7c7ld+zFMxibzqZ7SSa5tBENc4B0uye9LTfjJwGoQFY5xsUPH5FpO5j0bMUDZ8YYNbrF9SNtzc5Cngcr90g==", "dependencies": { "node-fetch": "^2.6.7" }, @@ -5029,7 +4945,8 @@ }, "node_modules/apollo-server-errors": { "version": "3.3.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/apollo-server-errors/-/apollo-server-errors-3.3.1.tgz", + "integrity": "sha512-xnZJ5QWs6FixHICXHxUfm+ZWqqxrNuPlQ+kj5m6RtEgIpekOPssH/SD9gf2B4HuWV0QozorrygwZnux8POvyPA==", "engines": { "node": ">=12.0" }, @@ -5095,13 +5012,15 @@ }, "node_modules/aproba": { "version": "2.0.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", + "dev": true }, "node_modules/are-we-there-yet": { "version": "1.1.7", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz", + "integrity": "sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==", "dev": true, - "license": "ISC", "dependencies": { "delegates": "^1.0.0", "readable-stream": "^2.0.6" @@ -5109,8 +5028,9 @@ }, "node_modules/are-we-there-yet/node_modules/readable-stream": { "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "dev": true, - "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -5123,150 +5043,172 @@ }, "node_modules/are-we-there-yet/node_modules/safe-buffer": { "version": "5.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true }, "node_modules/are-we-there-yet/node_modules/string_decoder": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, - "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" } }, "node_modules/arg": { "version": "4.1.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true }, "node_modules/argparse": { "version": "2.0.1", - "dev": true, - "license": "Python-2.0" + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true }, "node_modules/arr-diff": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/arr-flatten": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/arr-union": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/array-differ": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-3.0.0.tgz", + "integrity": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/array-flatten": { "version": "1.1.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", + "dev": true }, "node_modules/array-ify": { "version": "1.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", + "integrity": "sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=", + "dev": true }, "node_modules/array-union": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/array-unique": { "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/arrify": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/asap": { "version": "2.0.6", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=", + "dev": true }, "node_modules/asn1": { "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", "dev": true, - "license": "MIT", "dependencies": { "safer-buffer": "~2.1.0" } }, "node_modules/assert-plus": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.8" } }, "node_modules/assign-symbols": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/async": { "version": "3.2.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz", + "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==", + "dev": true }, "node_modules/async-retry": { "version": "1.3.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz", + "integrity": "sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==", "dependencies": { "retry": "0.13.1" } }, "node_modules/asynckit": { "version": "0.4.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" }, "node_modules/at-least-node": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", "dev": true, - "license": "ISC", "engines": { "node": ">= 4.0.0" } }, "node_modules/atob": { "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", "dev": true, - "license": "(MIT OR Apache-2.0)", "bin": { "atob": "bin/atob.js" }, @@ -5276,8 +5218,9 @@ }, "node_modules/auto-bind": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/auto-bind/-/auto-bind-4.0.0.tgz", + "integrity": "sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" }, @@ -5287,7 +5230,8 @@ }, "node_modules/available-typed-arrays": { "version": "1.0.5", - "license": "MIT", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", "engines": { "node": ">= 0.4" }, @@ -5297,16 +5241,18 @@ }, "node_modules/aws-sign2": { "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", "dev": true, - "license": "Apache-2.0", "engines": { "node": "*" } }, "node_modules/aws4": { "version": "1.11.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", + "dev": true }, "node_modules/babel-jest": { "version": "27.5.1", @@ -5332,16 +5278,18 @@ }, "node_modules/babel-plugin-dynamic-import-node": { "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", "dev": true, - "license": "MIT", "dependencies": { "object.assign": "^4.1.0" } }, "node_modules/babel-plugin-istanbul": { "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@istanbuljs/load-nyc-config": "^1.0.0", @@ -5370,13 +5318,15 @@ }, "node_modules/babel-plugin-syntax-trailing-function-commas": { "version": "7.0.0-beta.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz", + "integrity": "sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==", + "dev": true }, "node_modules/babel-preset-current-node-syntax": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-bigint": "^7.8.3", @@ -5397,8 +5347,9 @@ }, "node_modules/babel-preset-fbjs": { "version": "3.4.0", + "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz", + "integrity": "sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==", "dev": true, - "license": "MIT", "dependencies": { "@babel/plugin-proposal-class-properties": "^7.0.0", "@babel/plugin-proposal-object-rest-spread": "^7.0.0", @@ -5450,17 +5401,20 @@ }, "node_modules/backo2": { "version": "1.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz", + "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=", + "dev": true }, "node_modules/balanced-match": { "version": "1.0.2", - "license": "MIT" + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, "node_modules/base": { "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", "dev": true, - "license": "MIT", "dependencies": { "cache-base": "^1.0.1", "class-utils": "^0.3.5", @@ -5474,8 +5428,22 @@ "node": ">=0.10.0" } }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/base64-js": { "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", "dev": true, "funding": [ { @@ -5490,34 +5458,37 @@ "type": "consulting", "url": "https://feross.org/support" } - ], - "license": "MIT" + ] }, "node_modules/bcrypt-pbkdf": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "tweetnacl": "^0.14.3" } }, "node_modules/before-after-hook": { "version": "2.2.2", - "dev": true, - "license": "Apache-2.0" + "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.2.tgz", + "integrity": "sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==", + "dev": true }, "node_modules/binary-extensions": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/bl": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dev": true, - "license": "MIT", "dependencies": { "buffer": "^5.5.0", "inherits": "^2.0.4", @@ -5525,41 +5496,48 @@ } }, "node_modules/body-parser": { - "version": "1.19.1", + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", + "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", "dev": true, - "license": "MIT", "dependencies": { - "bytes": "3.1.1", + "bytes": "3.1.2", "content-type": "~1.0.4", "debug": "2.6.9", - "depd": "~1.1.2", - "http-errors": "1.8.1", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", "iconv-lite": "0.4.24", - "on-finished": "~2.3.0", - "qs": "6.9.6", - "raw-body": "2.4.2", - "type-is": "~1.6.18" + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" }, "engines": { - "node": ">= 0.8" + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, "node_modules/body-parser/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/body-parser/node_modules/ms": { "version": "2.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true }, "node_modules/brace-expansion": { "version": "1.1.11", - "license": "MIT", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -5567,8 +5545,9 @@ }, "node_modules/braces": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, - "license": "MIT", "dependencies": { "fill-range": "^7.0.1" }, @@ -5578,18 +5557,30 @@ }, "node_modules/browser-process-hrtime": { "version": "1.0.0", - "dev": true, - "license": "BSD-2-Clause" + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "dev": true }, "node_modules/browserslist": { - "version": "4.19.1", + "version": "4.20.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.20.2.tgz", + "integrity": "sha512-CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA==", "dev": true, - "license": "MIT", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], "dependencies": { - "caniuse-lite": "^1.0.30001286", - "electron-to-chromium": "^1.4.17", + "caniuse-lite": "^1.0.30001317", + "electron-to-chromium": "^1.4.84", "escalade": "^3.1.1", - "node-releases": "^2.0.1", + "node-releases": "^2.0.2", "picocolors": "^1.0.0" }, "bin": { @@ -5597,16 +5588,13 @@ }, "engines": { "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" } }, "node_modules/bs-logger": { "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", "dev": true, - "license": "MIT", "dependencies": { "fast-json-stable-stringify": "2.x" }, @@ -5616,14 +5604,17 @@ }, "node_modules/bser": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, - "license": "Apache-2.0", "dependencies": { "node-int64": "^0.4.0" } }, "node_modules/buffer": { "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "dev": true, "funding": [ { @@ -5639,7 +5630,6 @@ "url": "https://feross.org/support" } ], - "license": "MIT", "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.1.13" @@ -5647,26 +5637,30 @@ }, "node_modules/buffer-equal-constant-time": { "version": "1.0.1", - "dev": true, - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", + "integrity": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=", + "dev": true }, "node_modules/buffer-from": { "version": "1.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true }, "node_modules/builtins": { "version": "1.0.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz", + "integrity": "sha1-y5T662HIaWRR2zZTThQi+U8K7og=", + "dev": true }, "node_modules/bunyan": { "version": "1.8.15", + "resolved": "https://registry.npmjs.org/bunyan/-/bunyan-1.8.15.tgz", + "integrity": "sha512-0tECWShh6wUysgucJcBAoYegf3JJoZWibxdqhTm7OHPeT42qdjkZ29QCMcKwbgU1kiH+auSIasNRXMLWXafXig==", "dev": true, "engines": [ "node >=0.10.0" ], - "license": "MIT", "bin": { "bunyan": "bin/bunyan" }, @@ -5679,31 +5673,35 @@ }, "node_modules/byline": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/byline/-/byline-5.0.0.tgz", + "integrity": "sha1-dBxSFkaOrcRXsDQQEYrXfejB3bE=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/byte-size": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/byte-size/-/byte-size-7.0.1.tgz", + "integrity": "sha512-crQdqyCwhokxwV1UyDzLZanhkugAgft7vt0qbbdt60C6Zf3CAiGmtUCylbtYwrU6loOUw3euGrNtW1J651ot1A==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" } }, "node_modules/bytes": { - "version": "3.1.1", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/cacache": { "version": "15.3.0", - "license": "ISC", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", + "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", "dependencies": { "@npmcli/fs": "^1.0.0", "@npmcli/move-file": "^1.0.1", @@ -5730,8 +5728,9 @@ }, "node_modules/cache-base": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", "dev": true, - "license": "MIT", "dependencies": { "collection-visit": "^1.0.0", "component-emitter": "^1.2.1", @@ -5747,35 +5746,11 @@ "node": ">=0.10.0" } }, - "node_modules/cache-base/node_modules/is-plain-object": { - "version": "2.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cache-base/node_modules/set-value": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/cacheable-request": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", + "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", "dev": true, - "license": "MIT", "dependencies": { "clone-response": "^1.0.2", "get-stream": "^5.1.0", @@ -5791,8 +5766,9 @@ }, "node_modules/cacheable-request/node_modules/get-stream": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "dev": true, - "license": "MIT", "dependencies": { "pump": "^3.0.0" }, @@ -5805,15 +5781,17 @@ }, "node_modules/cacheable-request/node_modules/lowercase-keys": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/call-bind": { "version": "1.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "dependencies": { "function-bind": "^1.1.1", "get-intrinsic": "^1.0.2" @@ -5824,16 +5802,18 @@ }, "node_modules/callsites": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/camel-case": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", "dev": true, - "license": "MIT", "dependencies": { "pascal-case": "^3.1.2", "tslib": "^2.0.3" @@ -5841,16 +5821,18 @@ }, "node_modules/camelcase": { "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/camelcase-keys": { "version": "6.2.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", "dev": true, - "license": "MIT", "dependencies": { "camelcase": "^5.3.1", "map-obj": "^4.0.0", @@ -5864,18 +5846,26 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001296", + "version": "1.0.30001327", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001327.tgz", + "integrity": "sha512-1/Cg4jlD9qjZzhbzkzEaAC2JHsP0WrOc8Rd/3a3LuajGzGWR/hD7TVyvq99VqmTy99eVh8Zkmdq213OgvgXx7w==", "dev": true, - "license": "CC-BY-4.0", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - } + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + } + ] }, "node_modules/capital-case": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", + "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", "dev": true, - "license": "MIT", "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3", @@ -5884,8 +5874,9 @@ }, "node_modules/capture-exit": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", "dev": true, - "license": "ISC", "dependencies": { "rsvp": "^4.8.4" }, @@ -5895,12 +5886,14 @@ }, "node_modules/caseless": { "version": "0.12.0", - "dev": true, - "license": "Apache-2.0" + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "dev": true }, "node_modules/chalk": { "version": "4.1.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -5914,8 +5907,9 @@ }, "node_modules/change-case": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", + "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", "dev": true, - "license": "MIT", "dependencies": { "camel-case": "^4.1.2", "capital-case": "^1.0.4", @@ -5933,8 +5927,9 @@ }, "node_modules/change-case-all": { "version": "1.0.14", + "resolved": "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.14.tgz", + "integrity": "sha512-CWVm2uT7dmSHdO/z1CXT/n47mWonyypzBbuCy5tN7uMg22BsfkhwT6oHmFCAk+gL1LOOxhdbB9SZz3J1KTY3gA==", "dev": true, - "license": "MIT", "dependencies": { "change-case": "^4.1.2", "is-lower-case": "^2.0.2", @@ -5950,29 +5945,39 @@ }, "node_modules/char-regex": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" } }, "node_modules/chardet": { "version": "0.7.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true }, "node_modules/check-more-types": { "version": "2.24.0", + "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz", + "integrity": "sha1-FCD/sQ/URNz8ebQ4kbv//TKoRgA=", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.8.0" } }, "node_modules/chokidar": { - "version": "3.5.2", + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "dev": true, - "license": "MIT", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", @@ -5991,25 +5996,29 @@ }, "node_modules/chownr": { "version": "2.0.0", - "license": "ISC", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", "engines": { "node": ">=10" } }, "node_modules/ci-info": { "version": "3.3.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.0.tgz", + "integrity": "sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==", + "dev": true }, "node_modules/cjs-module-lexer": { "version": "1.2.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", + "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", + "dev": true }, "node_modules/class-utils": { "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", "dev": true, - "license": "MIT", "dependencies": { "arr-union": "^3.1.0", "define-property": "^0.2.5", @@ -6022,8 +6031,9 @@ }, "node_modules/class-utils/node_modules/define-property": { "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "dev": true, - "license": "MIT", "dependencies": { "is-descriptor": "^0.1.0" }, @@ -6033,8 +6043,9 @@ }, "node_modules/class-utils/node_modules/is-accessor-descriptor": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", "dev": true, - "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -6044,8 +6055,9 @@ }, "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, - "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -6055,8 +6067,9 @@ }, "node_modules/class-utils/node_modules/is-data-descriptor": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", "dev": true, - "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -6066,8 +6079,9 @@ }, "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, - "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -6077,8 +6091,9 @@ }, "node_modules/class-utils/node_modules/is-descriptor": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "dev": true, - "license": "MIT", "dependencies": { "is-accessor-descriptor": "^0.1.6", "is-data-descriptor": "^0.1.4", @@ -6090,23 +6105,26 @@ }, "node_modules/class-utils/node_modules/kind-of": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/clean-stack": { "version": "2.2.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", "engines": { "node": ">=6" } }, "node_modules/cli-cursor": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", "dev": true, - "license": "MIT", "dependencies": { "restore-cursor": "^3.1.0" }, @@ -6116,8 +6134,9 @@ }, "node_modules/cli-spinners": { "version": "2.6.1", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz", + "integrity": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" }, @@ -6127,8 +6146,9 @@ }, "node_modules/cli-truncate": { "version": "0.2.1", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-0.2.1.tgz", + "integrity": "sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ=", "dev": true, - "license": "MIT", "dependencies": { "slice-ansi": "0.0.4", "string-width": "^1.0.1" @@ -6139,16 +6159,18 @@ }, "node_modules/cli-truncate/node_modules/ansi-regex": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/cli-truncate/node_modules/is-fullwidth-code-point": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", "dev": true, - "license": "MIT", "dependencies": { "number-is-nan": "^1.0.0" }, @@ -6158,8 +6180,9 @@ }, "node_modules/cli-truncate/node_modules/string-width": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", "dev": true, - "license": "MIT", "dependencies": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", @@ -6171,8 +6194,9 @@ }, "node_modules/cli-truncate/node_modules/strip-ansi": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "dev": true, - "license": "MIT", "dependencies": { "ansi-regex": "^2.0.0" }, @@ -6182,16 +6206,18 @@ }, "node_modules/cli-width": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", "dev": true, - "license": "ISC", "engines": { "node": ">= 10" } }, "node_modules/cliui": { "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, - "license": "ISC", "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", @@ -6200,16 +6226,18 @@ }, "node_modules/clone": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.8" } }, "node_modules/clone-deep": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", "dev": true, - "license": "MIT", "dependencies": { "is-plain-object": "^2.0.4", "kind-of": "^6.0.2", @@ -6221,8 +6249,9 @@ }, "node_modules/clone-deep/node_modules/is-plain-object": { "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, - "license": "MIT", "dependencies": { "isobject": "^3.0.1" }, @@ -6232,16 +6261,18 @@ }, "node_modules/clone-response": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", "dev": true, - "license": "MIT", "dependencies": { "mimic-response": "^1.0.0" } }, "node_modules/cmd-shim": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cmd-shim/-/cmd-shim-4.1.0.tgz", + "integrity": "sha512-lb9L7EM4I/ZRVuljLPEtUJOP+xiQVknZ4ZMpMgEp4JzNldPb27HU03hi6K1/6CoIuit/Zm/LQXySErFeXxDprw==", "dev": true, - "license": "ISC", "dependencies": { "mkdirp-infer-owner": "^2.0.0" }, @@ -6251,8 +6282,9 @@ }, "node_modules/co": { "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", "dev": true, - "license": "MIT", "engines": { "iojs": ">= 1.0.0", "node": ">= 0.12.0" @@ -6260,21 +6292,24 @@ }, "node_modules/code-point-at": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/collect-v8-coverage": { "version": "1.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "dev": true }, "node_modules/collection-visit": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", "dev": true, - "license": "MIT", "dependencies": { "map-visit": "^1.0.0", "object-visit": "^1.0.0" @@ -6285,8 +6320,9 @@ }, "node_modules/color": { "version": "3.2.1", + "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", + "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^1.9.3", "color-string": "^1.6.0" @@ -6294,7 +6330,8 @@ }, "node_modules/color-convert": { "version": "2.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dependencies": { "color-name": "~1.1.4" }, @@ -6304,12 +6341,14 @@ }, "node_modules/color-name": { "version": "1.1.4", - "license": "MIT" + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "node_modules/color-string": { "version": "1.9.0", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.0.tgz", + "integrity": "sha512-9Mrz2AQLefkH1UvASKj6v6hj/7eWgjnT/cVsR8CumieLoT+g900exWeNogqtweI8dxloXN9BDQTYro1oWu/5CQ==", "dev": true, - "license": "MIT", "dependencies": { "color-name": "^1.0.0", "simple-swizzle": "^0.2.2" @@ -6317,57 +6356,46 @@ }, "node_modules/color/node_modules/color-convert": { "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, - "license": "MIT", "dependencies": { "color-name": "1.1.3" } }, "node_modules/color/node_modules/color-name": { "version": "1.1.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true }, "node_modules/colorspace": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz", + "integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==", "dev": true, - "license": "MIT", "dependencies": { "color": "^3.1.3", "text-hex": "1.0.x" } }, "node_modules/columnify": { - "version": "1.5.4", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/columnify/-/columnify-1.6.0.tgz", + "integrity": "sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==", "dev": true, - "license": "MIT", "dependencies": { - "strip-ansi": "^3.0.0", + "strip-ansi": "^6.0.1", "wcwidth": "^1.0.0" - } - }, - "node_modules/columnify/node_modules/ansi-regex": { - "version": "2.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/columnify/node_modules/strip-ansi": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^2.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=8.0.0" } }, "node_modules/combined-stream": { "version": "1.0.8", - "license": "MIT", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dependencies": { "delayed-stream": "~1.0.0" }, @@ -6377,24 +6405,27 @@ }, "node_modules/commander": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", "dev": true, - "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/common-tags": { "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", "dev": true, - "license": "MIT", "engines": { "node": ">=4.0.0" } }, "node_modules/compare-func": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", + "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", "dev": true, - "license": "MIT", "dependencies": { "array-ify": "^1.0.0", "dot-prop": "^5.1.0" @@ -6402,8 +6433,9 @@ }, "node_modules/compare-func/node_modules/dot-prop": { "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", "dev": true, - "license": "MIT", "dependencies": { "is-obj": "^2.0.0" }, @@ -6413,20 +6445,23 @@ }, "node_modules/component-emitter": { "version": "1.3.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true }, "node_modules/concat-map": { "version": "0.0.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" }, "node_modules/concat-stream": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", "dev": true, "engines": [ "node >= 6.0" ], - "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", @@ -6436,8 +6471,9 @@ }, "node_modules/config-chain": { "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", "dev": true, - "license": "MIT", "dependencies": { "ini": "^1.3.4", "proto-list": "~1.2.1" @@ -6445,13 +6481,15 @@ }, "node_modules/console-control-strings": { "version": "1.1.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", + "dev": true }, "node_modules/constant-case": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", + "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", "dev": true, - "license": "MIT", "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3", @@ -6460,8 +6498,9 @@ }, "node_modules/content-disposition": { "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "dev": true, - "license": "MIT", "dependencies": { "safe-buffer": "5.2.1" }, @@ -6471,16 +6510,18 @@ }, "node_modules/content-type": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/conventional-changelog-angular": { "version": "5.0.13", + "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz", + "integrity": "sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==", "dev": true, - "license": "ISC", "dependencies": { "compare-func": "^2.0.0", "q": "^1.5.1" @@ -6491,8 +6532,9 @@ }, "node_modules/conventional-changelog-core": { "version": "4.2.4", + "resolved": "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-4.2.4.tgz", + "integrity": "sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==", "dev": true, - "license": "MIT", "dependencies": { "add-stream": "^1.0.0", "conventional-changelog-writer": "^5.0.0", @@ -6515,16 +6557,18 @@ }, "node_modules/conventional-changelog-preset-loader": { "version": "2.3.4", + "resolved": "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz", + "integrity": "sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" } }, "node_modules/conventional-changelog-writer": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz", + "integrity": "sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==", "dev": true, - "license": "MIT", "dependencies": { "conventional-commits-filter": "^2.0.7", "dateformat": "^3.0.0", @@ -6545,16 +6589,18 @@ }, "node_modules/conventional-changelog-writer/node_modules/semver": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/conventional-commits-filter": { "version": "2.0.7", + "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz", + "integrity": "sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==", "dev": true, - "license": "MIT", "dependencies": { "lodash.ismatch": "^4.4.0", "modify-values": "^1.0.0" @@ -6565,8 +6611,9 @@ }, "node_modules/conventional-commits-parser": { "version": "3.2.4", + "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz", + "integrity": "sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==", "dev": true, - "license": "MIT", "dependencies": { "is-text-path": "^1.0.1", "JSONStream": "^1.0.4", @@ -6584,8 +6631,9 @@ }, "node_modules/conventional-recommended-bump": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-6.1.0.tgz", + "integrity": "sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==", "dev": true, - "license": "MIT", "dependencies": { "concat-stream": "^2.0.0", "conventional-changelog-preset-loader": "^2.3.4", @@ -6605,47 +6653,54 @@ }, "node_modules/convert-source-map": { "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", "dev": true, - "license": "MIT", "dependencies": { "safe-buffer": "~5.1.1" } }, "node_modules/convert-source-map/node_modules/safe-buffer": { "version": "5.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true }, "node_modules/cookie": { - "version": "0.4.1", + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", + "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/cookie-signature": { "version": "1.0.6", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", + "dev": true }, "node_modules/copy-descriptor": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/core-util-is": { "version": "1.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true }, "node_modules/cors": { "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", "dev": true, - "license": "MIT", "dependencies": { "object-assign": "^4", "vary": "^1" @@ -6656,8 +6711,9 @@ }, "node_modules/cosmiconfig": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", + "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", "dev": true, - "license": "MIT", "dependencies": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", @@ -6671,37 +6727,33 @@ }, "node_modules/cosmiconfig-toml-loader": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig-toml-loader/-/cosmiconfig-toml-loader-1.0.0.tgz", + "integrity": "sha512-H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA==", "dev": true, - "license": "MIT", "dependencies": { "@iarna/toml": "^2.2.5" } }, "node_modules/create-require": { "version": "1.1.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true }, "node_modules/cross-fetch": { - "version": "3.1.4", + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", + "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", "dev": true, - "license": "MIT", "dependencies": { - "node-fetch": "2.6.1" - } - }, - "node_modules/cross-fetch/node_modules/node-fetch": { - "version": "2.6.1", - "dev": true, - "license": "MIT", - "engines": { - "node": "4.x || >=6.0.0" + "node-fetch": "2.6.7" } }, "node_modules/cross-spawn": { "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, - "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -6712,42 +6764,35 @@ } }, "node_modules/cross-undici-fetch": { - "version": "0.0.20", - "dev": true, - "license": "MIT", - "dependencies": { - "abort-controller": "^3.0.0", - "form-data": "^4.0.0", - "node-fetch": "^2.6.5", - "undici": "^4.9.3" - } - }, - "node_modules/cross-undici-fetch/node_modules/form-data": { - "version": "4.0.0", + "version": "0.1.28", + "resolved": "https://registry.npmjs.org/cross-undici-fetch/-/cross-undici-fetch-0.1.28.tgz", + "integrity": "sha512-/nLMyVE5IC9PQdBtmgjpGZfK0wo8UupomAPx+7HlbEgVDkZOa9xCiZP9goo5aLYofP0gHXgovjXdXrE2obANag==", "dev": true, - "license": "MIT", "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" + "abort-controller": "^3.0.0", + "form-data-encoder": "^1.7.1", + "formdata-node": "^4.3.1", + "node-fetch": "^2.6.7", + "undici": "^5.0.0", + "web-streams-polyfill": "^3.2.0" } }, "node_modules/cssfilter": { "version": "0.0.10", - "license": "MIT" + "resolved": "https://registry.npmjs.org/cssfilter/-/cssfilter-0.0.10.tgz", + "integrity": "sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4=" }, "node_modules/cssom": { "version": "0.4.4", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", + "dev": true }, "node_modules/cssstyle": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", "dev": true, - "license": "MIT", "dependencies": { "cssom": "~0.3.6" }, @@ -6757,13 +6802,15 @@ }, "node_modules/cssstyle/node_modules/cssom": { "version": "0.3.8", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true }, "node_modules/cucumber-messages": { "version": "8.0.0", + "resolved": "https://registry.npmjs.org/cucumber-messages/-/cucumber-messages-8.0.0.tgz", + "integrity": "sha512-lUnWRMjwA9+KhDec/5xRZV3Du67ISumHnVLywWQXyvzmc4P+Eqx8CoeQrBQoau3Pw1hs4kJLTDyV85hFBF00SQ==", "dev": true, - "license": "MIT", "dependencies": { "@types/uuid": "^3.4.6", "protobufjs": "^6.8.8", @@ -6772,24 +6819,28 @@ }, "node_modules/cucumber-messages/node_modules/uuid": { "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", "dev": true, - "license": "MIT", "bin": { "uuid": "bin/uuid" } }, "node_modules/dargs": { "version": "7.0.0", + "resolved": "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz", + "integrity": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/dashdash": { "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", "dev": true, - "license": "MIT", "dependencies": { "assert-plus": "^1.0.0" }, @@ -6799,8 +6850,9 @@ }, "node_modules/data-urls": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", "dev": true, - "license": "MIT", "dependencies": { "abab": "^2.0.3", "whatwg-mimetype": "^2.3.0", @@ -6812,13 +6864,15 @@ }, "node_modules/dataloader": { "version": "2.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/dataloader/-/dataloader-2.0.0.tgz", + "integrity": "sha512-YzhyDAwA4TaQIhM5go+vCLmU0UikghC/t9DTQYZR2M/UvZ1MdOhPezSDZcjj9uqQJOMqjLcpWtyW2iNINdlatQ==", + "dev": true }, "node_modules/date-fns": { "version": "1.30.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-1.30.1.tgz", + "integrity": "sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==", + "dev": true }, "node_modules/date-format": { "version": "4.0.6", @@ -6831,16 +6885,18 @@ }, "node_modules/dateformat": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz", + "integrity": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==", "dev": true, - "license": "MIT", "engines": { "node": "*" } }, "node_modules/debounce": { "version": "1.2.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz", + "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==", + "dev": true }, "node_modules/debug": { "version": "4.3.4", @@ -6860,24 +6916,27 @@ }, "node_modules/debuglog": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz", + "integrity": "sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI=", "dev": true, - "license": "MIT", "engines": { "node": "*" } }, "node_modules/decamelize": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/decamelize-keys": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz", + "integrity": "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=", "dev": true, - "license": "MIT", "dependencies": { "decamelize": "^1.1.0", "map-obj": "^1.0.0" @@ -6888,29 +6947,33 @@ }, "node_modules/decamelize-keys/node_modules/map-obj": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/decimal.js": { "version": "10.3.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz", + "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==", + "dev": true }, "node_modules/decode-uri-component": { "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10" } }, "node_modules/decompress-response": { "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", "dev": true, - "license": "MIT", "dependencies": { "mimic-response": "^1.0.0" }, @@ -6920,12 +6983,14 @@ }, "node_modules/dedent": { "version": "0.7.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=", + "dev": true }, "node_modules/deep-equal": { "version": "2.0.5", - "license": "MIT", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.0.5.tgz", + "integrity": "sha512-nPiRgmbAtm1a3JsnLCf6/SLfXcjyN5v8L1TXzdCmHrXJ4hx+gW/w1YCcn7z8gJtSiDArZCgYtbao3QqLm/N1Sw==", "dependencies": { "call-bind": "^1.0.0", "es-get-iterator": "^1.1.1", @@ -6949,50 +7014,58 @@ }, "node_modules/deep-equal/node_modules/isarray": { "version": "2.0.5", - "license": "MIT" + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" }, "node_modules/deep-extend": { "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", "dev": true, - "license": "MIT", "engines": { "node": ">=4.0.0" } }, "node_modules/deep-freeze": { "version": "0.0.1", - "dev": true, - "license": "public domain" + "resolved": "https://registry.npmjs.org/deep-freeze/-/deep-freeze-0.0.1.tgz", + "integrity": "sha1-OgsABd4YZygZ39OM0x+RF5yJPoQ=", + "dev": true }, "node_modules/deep-is": { "version": "0.1.4", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true }, "node_modules/deepmerge": { "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/defaults": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", + "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", "dev": true, - "license": "MIT", "dependencies": { "clone": "^1.0.2" } }, "node_modules/defer-to-connect": { "version": "1.1.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", + "dev": true }, "node_modules/define-properties": { "version": "1.1.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", "dependencies": { "object-keys": "^1.0.12" }, @@ -7001,11 +7074,13 @@ } }, "node_modules/define-property": { - "version": "1.0.0", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", "dev": true, - "license": "MIT", "dependencies": { - "is-descriptor": "^1.0.0" + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" }, "engines": { "node": ">=0.10.0" @@ -7013,61 +7088,75 @@ }, "node_modules/delayed-stream": { "version": "1.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", "engines": { "node": ">=0.4.0" } }, "node_modules/delegates": { "version": "1.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", + "dev": true }, "node_modules/depd": { - "version": "1.1.2", - "license": "MIT", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, "engines": { - "node": ">= 0.6" + "node": ">= 0.8" } }, "node_modules/dependency-graph": { "version": "0.11.0", + "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz", + "integrity": "sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6.0" } }, "node_modules/deprecation": { "version": "2.3.1", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", + "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", + "dev": true }, "node_modules/destroy": { - "version": "1.0.4", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "dev": true, - "license": "MIT" + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } }, "node_modules/detect-indent": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/detect-newline": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/dezalgo": { - "version": "1.0.3", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.4.tgz", + "integrity": "sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==", "dev": true, - "license": "ISC", "dependencies": { "asap": "^2.0.0", "wrappy": "1" @@ -7075,8 +7164,9 @@ }, "node_modules/diff": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", "dev": true, - "license": "BSD-3-Clause", "engines": { "node": ">=0.3.1" } @@ -7092,8 +7182,9 @@ }, "node_modules/dir-glob": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, - "license": "MIT", "dependencies": { "path-type": "^4.0.0" }, @@ -7103,8 +7194,9 @@ }, "node_modules/doctrine": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, - "license": "Apache-2.0", "peer": true, "dependencies": { "esutils": "^2.0.2" @@ -7115,8 +7207,9 @@ }, "node_modules/domexception": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", "dev": true, - "license": "MIT", "dependencies": { "webidl-conversions": "^5.0.0" }, @@ -7126,16 +7219,18 @@ }, "node_modules/domexception/node_modules/webidl-conversions": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", "dev": true, - "license": "BSD-2-Clause", "engines": { "node": ">=8" } }, "node_modules/dot-case": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", "dev": true, - "license": "MIT", "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3" @@ -7143,8 +7238,9 @@ }, "node_modules/dot-prop": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz", + "integrity": "sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==", "dev": true, - "license": "MIT", "dependencies": { "is-obj": "^2.0.0" }, @@ -7156,26 +7252,29 @@ } }, "node_modules/dotenv": { - "version": "10.0.0", + "version": "16.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.0.tgz", + "integrity": "sha512-qD9WU0MPM4SWLPJy/r2Be+2WgQj8plChsyrCNQzW/0WjvcJQiKQJ9mH3ZgB3fxbUUxgc/11ZJ0Fi5KiimWGz2Q==", "dev": true, - "license": "BSD-2-Clause", "engines": { - "node": ">=10" + "node": ">=12" } }, "node_modules/dset": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/dset/-/dset-3.1.1.tgz", + "integrity": "sha512-hYf+jZNNqJBD2GiMYb+5mqOIX4R4RRHXU3qWMWYN+rqcR2/YpRL2bUHr8C8fU+5DNvqYjJ8YvMGSLuVPWU1cNg==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/dtrace-provider": { "version": "0.8.8", + "resolved": "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.8.tgz", + "integrity": "sha512-b7Z7cNtHPhH9EJhNNbbeqTcXB8LGFFZhq1PGgEvpeHlzd36bhbdTWoE/Ba/YguqpBSlAPKnARWhVlhunCMwfxg==", "dev": true, "hasInstallScript": true, - "license": "BSD-2-Clause", "optional": true, "dependencies": { "nan": "^2.14.0" @@ -7186,18 +7285,21 @@ }, "node_modules/duplexer": { "version": "0.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "dev": true }, "node_modules/duplexer3": { "version": "0.1.4", - "dev": true, - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", + "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", + "dev": true }, "node_modules/ecc-jsbn": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", "dev": true, - "license": "MIT", "dependencies": { "jsbn": "~0.1.0", "safer-buffer": "^2.1.0" @@ -7205,26 +7307,30 @@ }, "node_modules/ecdsa-sig-formatter": { "version": "1.0.11", + "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", + "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", "dev": true, - "license": "Apache-2.0", "dependencies": { "safe-buffer": "^5.0.1" } }, "node_modules/ee-first": { "version": "1.1.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "dev": true }, "node_modules/electron-to-chromium": { - "version": "1.4.36", - "dev": true, - "license": "ISC" + "version": "1.4.106", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.106.tgz", + "integrity": "sha512-ZYfpVLULm67K7CaaGP7DmjyeMY4naxsbTy+syVVxT6QHI1Ww8XbJjmr9fDckrhq44WzCrcC5kH3zGpdusxwwqg==", + "dev": true }, "node_modules/elegant-spinner": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/elegant-spinner/-/elegant-spinner-1.0.1.tgz", + "integrity": "sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -7243,25 +7349,29 @@ }, "node_modules/emoji-regex": { "version": "8.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true }, "node_modules/enabled": { "version": "2.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", + "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==", + "dev": true }, "node_modules/encodeurl": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/encoding": { "version": "0.1.13", - "license": "MIT", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", "optional": true, "dependencies": { "iconv-lite": "^0.6.2" @@ -7269,7 +7379,8 @@ }, "node_modules/encoding/node_modules/iconv-lite": { "version": "0.6.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "optional": true, "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" @@ -7280,36 +7391,27 @@ }, "node_modules/end-of-stream": { "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "dev": true, - "license": "MIT", "dependencies": { "once": "^1.4.0" } }, - "node_modules/enquirer": { - "version": "2.3.6", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "ansi-colors": "^4.1.1" - }, - "engines": { - "node": ">=8.6" - } - }, "node_modules/env-paths": { "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/envinfo": { "version": "7.8.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", + "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", "dev": true, - "license": "MIT", "bin": { "envinfo": "dist/cli.js" }, @@ -7319,19 +7421,22 @@ }, "node_modules/err-code": { "version": "2.0.3", - "license": "MIT" + "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" }, "node_modules/error-ex": { "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, - "license": "MIT", "dependencies": { "is-arrayish": "^0.2.1" } }, "node_modules/es-abstract": { - "version": "1.19.1", - "license": "MIT", + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.2.tgz", + "integrity": "sha512-gfSBJoZdlL2xRiOCy0g8gLMryhoe1TlimjzU99L/31Z8QEGIhVQI+EWwt5lT+AuU9SnorVupXFqqOGqGfsyO6w==", "dependencies": { "call-bind": "^1.0.2", "es-to-primitive": "^1.2.1", @@ -7339,15 +7444,15 @@ "get-intrinsic": "^1.1.1", "get-symbol-description": "^1.0.0", "has": "^1.0.3", - "has-symbols": "^1.0.2", + "has-symbols": "^1.0.3", "internal-slot": "^1.0.3", "is-callable": "^1.2.4", - "is-negative-zero": "^2.0.1", + "is-negative-zero": "^2.0.2", "is-regex": "^1.1.4", "is-shared-array-buffer": "^1.0.1", "is-string": "^1.0.7", - "is-weakref": "^1.0.1", - "object-inspect": "^1.11.0", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.0", "object-keys": "^1.1.1", "object.assign": "^4.1.2", "string.prototype.trimend": "^1.0.4", @@ -7363,7 +7468,8 @@ }, "node_modules/es-get-iterator": { "version": "1.1.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.2.tgz", + "integrity": "sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==", "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.0", @@ -7380,11 +7486,13 @@ }, "node_modules/es-get-iterator/node_modules/isarray": { "version": "2.0.5", - "license": "MIT" + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" }, "node_modules/es-to-primitive": { "version": "1.2.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dependencies": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", @@ -7399,21 +7507,24 @@ }, "node_modules/escalade": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/escape-html": { "version": "1.0.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "dev": true }, "node_modules/escape-string-regexp": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, - "license": "MIT", "peer": true, "engines": { "node": ">=10" @@ -7424,8 +7535,9 @@ }, "node_modules/escodegen": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", + "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "esprima": "^4.0.1", "estraverse": "^5.2.0", @@ -7445,16 +7557,18 @@ }, "node_modules/escodegen/node_modules/estraverse": { "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, - "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } }, "node_modules/escodegen/node_modules/levn": { "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", "dev": true, - "license": "MIT", "dependencies": { "prelude-ls": "~1.1.2", "type-check": "~0.3.2" @@ -7465,8 +7579,9 @@ }, "node_modules/escodegen/node_modules/optionator": { "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", "dev": true, - "license": "MIT", "dependencies": { "deep-is": "~0.1.3", "fast-levenshtein": "~2.0.6", @@ -7481,6 +7596,8 @@ }, "node_modules/escodegen/node_modules/prelude-ls": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", "dev": true, "engines": { "node": ">= 0.8.0" @@ -7488,8 +7605,9 @@ }, "node_modules/escodegen/node_modules/source-map": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "license": "BSD-3-Clause", "optional": true, "engines": { "node": ">=0.10.0" @@ -7497,8 +7615,9 @@ }, "node_modules/escodegen/node_modules/type-check": { "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", "dev": true, - "license": "MIT", "dependencies": { "prelude-ls": "~1.1.2" }, @@ -7507,24 +7626,24 @@ } }, "node_modules/eslint": { - "version": "8.6.0", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.12.0.tgz", + "integrity": "sha512-it1oBL9alZg1S8UycLm5YDMAkIhtH6FtAzuZs6YvoGVldWjbS08BkAdb/ymP9LlAyq8koANu32U7Ib/w+UNh8Q==", "dev": true, - "license": "MIT", "peer": true, "dependencies": { - "@eslint/eslintrc": "^1.0.5", + "@eslint/eslintrc": "^1.2.1", "@humanwhocodes/config-array": "^0.9.2", "ajv": "^6.10.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", "debug": "^4.3.2", "doctrine": "^3.0.0", - "enquirer": "^2.3.5", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.0", + "eslint-scope": "^7.1.1", "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.1.0", - "espree": "^9.3.0", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.3.1", "esquery": "^1.4.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", @@ -7532,7 +7651,7 @@ "functional-red-black-tree": "^1.0.1", "glob-parent": "^6.0.1", "globals": "^13.6.0", - "ignore": "^4.0.6", + "ignore": "^5.2.0", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", @@ -7543,9 +7662,7 @@ "minimatch": "^3.0.4", "natural-compare": "^1.4.0", "optionator": "^0.9.1", - "progress": "^2.0.0", "regexpp": "^3.2.0", - "semver": "^7.2.1", "strip-ansi": "^6.0.1", "strip-json-comments": "^3.1.0", "text-table": "^0.2.0", @@ -7576,8 +7693,9 @@ }, "node_modules/eslint-utils": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", "dev": true, - "license": "MIT", "dependencies": { "eslint-visitor-keys": "^2.0.0" }, @@ -7593,24 +7711,27 @@ }, "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "dev": true, - "license": "Apache-2.0", "engines": { "node": ">=10" } }, "node_modules/eslint-visitor-keys": { - "version": "3.1.0", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", "dev": true, - "license": "Apache-2.0", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, "node_modules/eslint/node_modules/eslint-scope": { - "version": "7.1.0", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", + "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", "dev": true, - "license": "BSD-2-Clause", "peer": true, "dependencies": { "esrecurse": "^4.3.0", @@ -7622,8 +7743,9 @@ }, "node_modules/eslint/node_modules/estraverse": { "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, - "license": "BSD-2-Clause", "peer": true, "engines": { "node": ">=4.0" @@ -7631,8 +7753,9 @@ }, "node_modules/eslint/node_modules/glob-parent": { "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, - "license": "ISC", "peer": true, "dependencies": { "is-glob": "^4.0.3" @@ -7642,9 +7765,10 @@ } }, "node_modules/eslint/node_modules/globals": { - "version": "13.12.0", + "version": "13.13.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.13.0.tgz", + "integrity": "sha512-EQ7Q18AJlPwp3vUDL4mKA0KXrXyNIQyWon6T6XQiBQF0XHvRsiCSrWmmeATpUzdJN2HhWZU6Pdl0a9zdep5p6A==", "dev": true, - "license": "MIT", "peer": true, "dependencies": { "type-fest": "^0.20.2" @@ -7656,19 +7780,24 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint/node_modules/ignore": { - "version": "4.0.6", + "node_modules/eslint/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, - "license": "MIT", "peer": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, "engines": { - "node": ">= 4" + "node": "*" } }, "node_modules/eslint/node_modules/type-fest": { "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, - "license": "(MIT OR CC0-1.0)", "peer": true, "engines": { "node": ">=10" @@ -7678,14 +7807,15 @@ } }, "node_modules/espree": { - "version": "9.3.0", + "version": "9.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.3.1.tgz", + "integrity": "sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==", "dev": true, - "license": "BSD-2-Clause", "peer": true, "dependencies": { "acorn": "^8.7.0", "acorn-jsx": "^5.3.1", - "eslint-visitor-keys": "^3.1.0" + "eslint-visitor-keys": "^3.3.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -7693,8 +7823,9 @@ }, "node_modules/esprima": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true, - "license": "BSD-2-Clause", "bin": { "esparse": "bin/esparse.js", "esvalidate": "bin/esvalidate.js" @@ -7705,8 +7836,9 @@ }, "node_modules/esquery": { "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", "dev": true, - "license": "BSD-3-Clause", "peer": true, "dependencies": { "estraverse": "^5.1.0" @@ -7717,8 +7849,9 @@ }, "node_modules/esquery/node_modules/estraverse": { "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, - "license": "BSD-2-Clause", "peer": true, "engines": { "node": ">=4.0" @@ -7726,8 +7859,9 @@ }, "node_modules/esrecurse": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "estraverse": "^5.2.0" }, @@ -7737,8 +7871,9 @@ }, "node_modules/esrecurse/node_modules/estraverse": { "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, - "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } @@ -7754,42 +7889,48 @@ }, "node_modules/esutils": { "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, - "license": "BSD-2-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/etag": { "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/event-target-shim": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/eventemitter3": { "version": "4.0.7", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true }, "node_modules/exec-sh": { "version": "0.3.6", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz", + "integrity": "sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==", + "dev": true }, "node_modules/execa": { "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, - "license": "MIT", "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", @@ -7810,6 +7951,8 @@ }, "node_modules/exit": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", "dev": true, "engines": { "node": ">= 0.8.0" @@ -7817,8 +7960,9 @@ }, "node_modules/expand-brackets": { "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", "dev": true, - "license": "MIT", "dependencies": { "debug": "^2.3.3", "define-property": "^0.2.5", @@ -7834,16 +7978,18 @@ }, "node_modules/expand-brackets/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/expand-brackets/node_modules/define-property": { "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "dev": true, - "license": "MIT", "dependencies": { "is-descriptor": "^0.1.0" }, @@ -7851,10 +7997,23 @@ "node": ">=0.10.0" } }, + "node_modules/expand-brackets/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/expand-brackets/node_modules/is-accessor-descriptor": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", "dev": true, - "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -7864,8 +8023,9 @@ }, "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, - "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -7875,8 +8035,9 @@ }, "node_modules/expand-brackets/node_modules/is-data-descriptor": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", "dev": true, - "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -7886,8 +8047,9 @@ }, "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, - "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -7897,8 +8059,9 @@ }, "node_modules/expand-brackets/node_modules/is-descriptor": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "dev": true, - "license": "MIT", "dependencies": { "is-accessor-descriptor": "^0.1.6", "is-data-descriptor": "^0.1.4", @@ -7908,18 +8071,29 @@ "node": ">=0.10.0" } }, + "node_modules/expand-brackets/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/expand-brackets/node_modules/kind-of": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/expand-brackets/node_modules/ms": { "version": "2.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true }, "node_modules/expect": { "version": "27.5.1", @@ -7937,16 +8111,17 @@ } }, "node_modules/express": { - "version": "4.17.2", + "version": "4.17.3", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.3.tgz", + "integrity": "sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg==", "dev": true, - "license": "MIT", "dependencies": { - "accepts": "~1.3.7", + "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.19.1", + "body-parser": "1.19.2", "content-disposition": "0.5.4", "content-type": "~1.0.4", - "cookie": "0.4.1", + "cookie": "0.4.2", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "~1.1.2", @@ -7961,7 +8136,7 @@ "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.7", - "qs": "6.9.6", + "qs": "6.9.7", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "0.17.2", @@ -7976,30 +8151,120 @@ "node": ">= 0.10.0" } }, + "node_modules/express/node_modules/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.8.1", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.9.7", + "raw-body": "2.4.3", + "type-is": "~1.6.18" + }, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/express/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.0.0" } }, + "node_modules/express/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express/node_modules/http-errors": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/express/node_modules/ms": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/express/node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/express/node_modules/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==", + "dev": true, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/express/node_modules/raw-body": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.3.tgz", + "integrity": "sha512-UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g==", "dev": true, - "license": "MIT" + "dependencies": { + "bytes": "3.1.2", + "http-errors": "1.8.1", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } }, "node_modules/extend": { "version": "3.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true }, "node_modules/extend-shallow": { - "version": "2.0.1", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", "dev": true, - "license": "MIT", "dependencies": { - "is-extendable": "^0.1.0" + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" }, "engines": { "node": ">=0.10.0" @@ -8007,8 +8272,9 @@ }, "node_modules/external-editor": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", "dev": true, - "license": "MIT", "dependencies": { "chardet": "^0.7.0", "iconv-lite": "^0.4.24", @@ -8020,8 +8286,9 @@ }, "node_modules/extglob": { "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "dev": true, - "license": "MIT", "dependencies": { "array-unique": "^0.3.2", "define-property": "^1.0.0", @@ -8036,10 +8303,44 @@ "node": ">=0.10.0" } }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/extract-files": { "version": "11.0.0", + "resolved": "https://registry.npmjs.org/extract-files/-/extract-files-11.0.0.tgz", + "integrity": "sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==", "dev": true, - "license": "MIT", "engines": { "node": "^12.20 || >= 14.13" }, @@ -8049,21 +8350,24 @@ }, "node_modules/extsprintf": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", "dev": true, "engines": [ "node >=0.6.0" - ], - "license": "MIT" + ] }, "node_modules/fast-deep-equal": { "version": "3.1.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true }, "node_modules/fast-glob": { - "version": "3.2.7", + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", + "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", "dev": true, - "license": "MIT", "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", @@ -8072,40 +8376,45 @@ "micromatch": "^4.0.4" }, "engines": { - "node": ">=8" + "node": ">=8.6.0" } }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" }, "node_modules/fast-levenshtein": { "version": "2.0.6", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true }, "node_modules/fastq": { "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", "dev": true, - "license": "ISC", "dependencies": { "reusify": "^1.0.4" } }, "node_modules/fb-watchman": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", + "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", "dev": true, - "license": "Apache-2.0", "dependencies": { "bser": "2.1.1" } }, "node_modules/fbjs": { - "version": "3.0.2", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.4.tgz", + "integrity": "sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==", "dev": true, - "license": "MIT", "dependencies": { - "cross-fetch": "^3.0.4", + "cross-fetch": "^3.1.5", "fbjs-css-vars": "^1.0.0", "loose-envify": "^1.0.0", "object-assign": "^4.1.0", @@ -8116,18 +8425,21 @@ }, "node_modules/fbjs-css-vars": { "version": "1.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", + "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==", + "dev": true }, "node_modules/fecha": { "version": "4.2.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.1.tgz", + "integrity": "sha512-MMMQ0ludy/nBs1/o0zVOiKTpG7qMbonKUzjJgQFEuvq6INZ1OraKPRAWkBq5vlKLOUMpmNYG1JoN3oDPUQ9m3Q==", + "dev": true }, "node_modules/figures": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", "dev": true, - "license": "MIT", "dependencies": { "escape-string-regexp": "^1.0.5" }, @@ -8140,16 +8452,18 @@ }, "node_modules/figures/node_modules/escape-string-regexp": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.8.0" } }, "node_modules/file-entry-cache": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, - "license": "MIT", "peer": true, "dependencies": { "flat-cache": "^3.0.4" @@ -8160,8 +8474,9 @@ }, "node_modules/fill-range": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, - "license": "MIT", "dependencies": { "to-regex-range": "^5.0.1" }, @@ -8171,16 +8486,18 @@ }, "node_modules/filter-obj": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz", + "integrity": "sha1-mzERErxsYSehbgFsbF1/GeCAXFs=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/finalhandler": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", "dev": true, - "license": "MIT", "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", @@ -8196,21 +8513,36 @@ }, "node_modules/finalhandler/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/finalhandler/node_modules/ms": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/finalhandler/node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", "dev": true, - "license": "MIT" + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } }, "node_modules/find-up": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, - "license": "MIT", "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" @@ -8221,8 +8553,9 @@ }, "node_modules/flat-cache": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", "dev": true, - "license": "MIT", "peer": true, "dependencies": { "flatted": "^3.1.0", @@ -8240,32 +8573,37 @@ }, "node_modules/fn.name": { "version": "1.1.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", + "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==", + "dev": true }, "node_modules/for-in": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/foreach": { "version": "2.0.5", - "license": "MIT" + "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", + "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=" }, "node_modules/forever-agent": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", "dev": true, - "license": "Apache-2.0", "engines": { "node": "*" } }, "node_modules/form-data": { "version": "3.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", @@ -8276,14 +8614,16 @@ } }, "node_modules/form-data-encoder": { - "version": "1.7.1", - "dev": true, - "license": "MIT" + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-1.7.2.tgz", + "integrity": "sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==", + "dev": true }, "node_modules/formdata-node": { "version": "4.3.2", + "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-4.3.2.tgz", + "integrity": "sha512-k7lYJyzDOSL6h917favP8j1L0/wNyylzU+x+1w4p5haGVHNlP58dbpdJhiCUsDbWsa9HwEtLp89obQgXl2e0qg==", "dev": true, - "license": "MIT", "dependencies": { "node-domexception": "1.0.0", "web-streams-polyfill": "4.0.0-beta.1" @@ -8292,18 +8632,29 @@ "node": ">= 12.20" } }, + "node_modules/formdata-node/node_modules/web-streams-polyfill": { + "version": "4.0.0-beta.1", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.1.tgz", + "integrity": "sha512-3ux37gEX670UUphBF9AMCq8XM6iQ8Ac6A+DSRRjDoRBm1ufCkaCDdNVbaqq60PsEkdNlLKrGtv/YBP4EJXqNtQ==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, "node_modules/forwarded": { "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/fragment-cache": { "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", "dev": true, - "license": "MIT", "dependencies": { "map-cache": "^0.2.2" }, @@ -8313,16 +8664,18 @@ }, "node_modules/fresh": { "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/fs-extra": { "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "dev": true, - "license": "MIT", "dependencies": { "at-least-node": "^1.0.0", "graceful-fs": "^4.2.0", @@ -8335,7 +8688,8 @@ }, "node_modules/fs-minipass": { "version": "2.1.0", - "license": "ISC", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", "dependencies": { "minipass": "^3.0.0" }, @@ -8345,7 +8699,8 @@ }, "node_modules/fs.realpath": { "version": "1.0.0", - "license": "ISC" + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, "node_modules/fsevents": { "version": "2.3.2", @@ -8363,17 +8718,20 @@ }, "node_modules/function-bind": { "version": "1.1.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, "node_modules/functional-red-black-tree": { "version": "1.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true }, "node_modules/gauge": { "version": "2.7.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", + "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", "dev": true, - "license": "ISC", "dependencies": { "aproba": "^1.0.3", "console-control-strings": "^1.0.0", @@ -8387,21 +8745,24 @@ }, "node_modules/gauge/node_modules/ansi-regex": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/gauge/node_modules/aproba": { "version": "1.2.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "dev": true }, "node_modules/gauge/node_modules/is-fullwidth-code-point": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", "dev": true, - "license": "MIT", "dependencies": { "number-is-nan": "^1.0.0" }, @@ -8411,8 +8772,9 @@ }, "node_modules/gauge/node_modules/string-width": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", "dev": true, - "license": "MIT", "dependencies": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", @@ -8424,8 +8786,9 @@ }, "node_modules/gauge/node_modules/strip-ansi": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "dev": true, - "license": "MIT", "dependencies": { "ansi-regex": "^2.0.0" }, @@ -8435,23 +8798,26 @@ }, "node_modules/gensync": { "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, - "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/get-caller-file": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true, - "license": "ISC", "engines": { "node": "6.* || 8.* || >= 10.*" } }, "node_modules/get-intrinsic": { "version": "1.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", "dependencies": { "function-bind": "^1.1.1", "has": "^1.0.3", @@ -8463,16 +8829,18 @@ }, "node_modules/get-package-type": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=8.0.0" } }, "node_modules/get-pkg-repo": { "version": "4.2.1", + "resolved": "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz", + "integrity": "sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==", "dev": true, - "license": "MIT", "dependencies": { "@hutson/parse-repository-url": "^3.0.0", "hosted-git-info": "^4.0.0", @@ -8488,8 +8856,9 @@ }, "node_modules/get-pkg-repo/node_modules/readable-stream": { "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "dev": true, - "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -8502,21 +8871,24 @@ }, "node_modules/get-pkg-repo/node_modules/safe-buffer": { "version": "5.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true }, "node_modules/get-pkg-repo/node_modules/string_decoder": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, - "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" } }, "node_modules/get-pkg-repo/node_modules/through2": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "dev": true, - "license": "MIT", "dependencies": { "readable-stream": "~2.3.6", "xtend": "~4.0.1" @@ -8524,8 +8896,9 @@ }, "node_modules/get-pkg-repo/node_modules/yargs": { "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, - "license": "MIT", "dependencies": { "cliui": "^7.0.2", "escalade": "^3.1.1", @@ -8541,8 +8914,9 @@ }, "node_modules/get-port": { "version": "5.1.1", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", + "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" }, @@ -8552,8 +8926,9 @@ }, "node_modules/get-stream": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -8563,7 +8938,8 @@ }, "node_modules/get-symbol-description": { "version": "1.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.1" @@ -8577,24 +8953,27 @@ }, "node_modules/get-value": { "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/getpass": { "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", "dev": true, - "license": "MIT", "dependencies": { "assert-plus": "^1.0.0" } }, "node_modules/gherkin": { "version": "9.0.0", + "resolved": "https://registry.npmjs.org/gherkin/-/gherkin-9.0.0.tgz", + "integrity": "sha512-6xoAepoxo5vhkBXjB4RCfVnSKHu5z9SqXIQVUyj+Jw8BQX8odATlee5otXgdN8llZvyvHokuvNiBeB3naEnnIQ==", "dev": true, - "license": "MIT", "dependencies": { "commander": "^4.0.1", "cucumber-messages": "8.0.0", @@ -8606,8 +8985,9 @@ }, "node_modules/git-raw-commits": { "version": "2.0.11", + "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.11.tgz", + "integrity": "sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==", "dev": true, - "license": "MIT", "dependencies": { "dargs": "^7.0.0", "lodash": "^4.17.15", @@ -8624,8 +9004,9 @@ }, "node_modules/git-remote-origin-url": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz", + "integrity": "sha1-UoJlna4hBxRaERJhEq0yFuxfpl8=", "dev": true, - "license": "MIT", "dependencies": { "gitconfiglocal": "^1.0.0", "pify": "^2.3.0" @@ -8636,16 +9017,18 @@ }, "node_modules/git-remote-origin-url/node_modules/pify": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/git-semver-tags": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-4.1.1.tgz", + "integrity": "sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==", "dev": true, - "license": "MIT", "dependencies": { "meow": "^8.0.0", "semver": "^6.0.0" @@ -8659,16 +9042,18 @@ }, "node_modules/git-semver-tags/node_modules/semver": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/git-up": { "version": "4.0.5", + "resolved": "https://registry.npmjs.org/git-up/-/git-up-4.0.5.tgz", + "integrity": "sha512-YUvVDg/vX3d0syBsk/CKUTib0srcQME0JyHkL5BaYdwLsiCslPWmDSi8PUMo9pXYjrryMcmsCoCgsTpSCJEQaA==", "dev": true, - "license": "MIT", "dependencies": { "is-ssh": "^1.3.0", "parse-url": "^6.0.0" @@ -8676,23 +9061,26 @@ }, "node_modules/git-url-parse": { "version": "11.6.0", + "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-11.6.0.tgz", + "integrity": "sha512-WWUxvJs5HsyHL6L08wOusa/IXYtMuCAhrMmnTjQPpBU0TTHyDhnOATNH3xNQz7YOQUsqIIPTGr4xiVti1Hsk5g==", "dev": true, - "license": "MIT", "dependencies": { "git-up": "^4.0.0" } }, "node_modules/gitconfiglocal": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz", + "integrity": "sha1-QdBF84UaXqiPA/JMocYXgRRGS5s=", "dev": true, - "license": "BSD", "dependencies": { "ini": "^1.3.2" } }, "node_modules/glob": { "version": "7.2.0", - "license": "ISC", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -8710,8 +9098,9 @@ }, "node_modules/glob-parent": { "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, - "license": "ISC", "dependencies": { "is-glob": "^4.0.1" }, @@ -8719,24 +9108,37 @@ "node": ">= 6" } }, + "node_modules/glob/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, "node_modules/globals": { "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/globby": { - "version": "11.0.4", + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, - "license": "MIT", "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", - "fast-glob": "^3.1.1", - "ignore": "^5.1.4", - "merge2": "^1.3.0", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", "slash": "^3.0.0" }, "engines": { @@ -8748,8 +9150,9 @@ }, "node_modules/got": { "version": "9.6.0", + "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", + "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", "dev": true, - "license": "MIT", "dependencies": { "@sindresorhus/is": "^0.14.0", "@szmarczak/http-timer": "^1.1.2", @@ -8769,8 +9172,9 @@ }, "node_modules/got/node_modules/get-stream": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", "dev": true, - "license": "MIT", "dependencies": { "pump": "^3.0.0" }, @@ -8779,32 +9183,35 @@ } }, "node_modules/graceful-fs": { - "version": "4.2.9", - "dev": true, - "license": "ISC" + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true }, "node_modules/graphql": { "version": "16.3.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.3.0.tgz", + "integrity": "sha512-xm+ANmA16BzCT5pLjuXySbQVFwH3oJctUVdy81w1sV0vBU0KgDdBGtxQOUd5zqOBk/JayAFeG8Dlmeq74rjm/A==", "engines": { "node": "^12.22.0 || ^14.16.0 || >=16.0.0" } }, "node_modules/graphql-config": { - "version": "4.1.0", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-4.3.0.tgz", + "integrity": "sha512-Uiu3X7+s5c056WyrvdZVz2vG1fhAipMlYmtiCU/4Z2mX79OXDr1SqIon2MprC/pExIWJfAQZCcjYDY76fPBUQg==", "dev": true, - "license": "MIT", "dependencies": { "@endemolshinegroup/cosmiconfig-typescript-loader": "3.0.2", - "@graphql-tools/graphql-file-loader": "^7.3.2", - "@graphql-tools/json-file-loader": "^7.3.2", - "@graphql-tools/load": "^7.4.1", - "@graphql-tools/merge": "^8.2.1", - "@graphql-tools/url-loader": "^7.4.2", - "@graphql-tools/utils": "^8.5.1", + "@graphql-tools/graphql-file-loader": "^7.3.7", + "@graphql-tools/json-file-loader": "^7.3.7", + "@graphql-tools/load": "^7.5.5", + "@graphql-tools/merge": "^8.2.6", + "@graphql-tools/url-loader": "^7.9.7", + "@graphql-tools/utils": "^8.6.5", "cosmiconfig": "7.0.1", "cosmiconfig-toml-loader": "1.0.0", - "minimatch": "3.0.4", + "minimatch": "4.2.1", "string-env-interpolation": "1.0.1" }, "engines": { @@ -8814,12 +9221,25 @@ "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" } }, + "node_modules/graphql-executor": { + "version": "0.0.22", + "resolved": "https://registry.npmjs.org/graphql-executor/-/graphql-executor-0.0.22.tgz", + "integrity": "sha512-WbKSnSHFn6REKKH4T6UAwDM3mLUnYMQlQLNG0Fw+Lkb3ilCnL3m5lkJ7411LAI9sF7BvPbthovVZhsEUh9Xfag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.16.0 || >=16.0.0" + }, + "peerDependencies": { + "graphql": "^15.0.0 || ^16.0.0" + } + }, "node_modules/graphql-request": { - "version": "3.7.0", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/graphql-request/-/graphql-request-4.2.0.tgz", + "integrity": "sha512-uFeMyhhl8ss4LFgjlfPeAn2pqYw+CJto+cjj71uaBYIMMK2jPIqgHm5KEFxUk0YDD41A8Bq31a2b4G2WJBlp2Q==", "dev": true, - "license": "MIT", "dependencies": { - "cross-fetch": "^3.0.6", + "cross-fetch": "^3.1.5", "extract-files": "^9.0.0", "form-data": "^3.0.0" }, @@ -8829,8 +9249,9 @@ }, "node_modules/graphql-request/node_modules/extract-files": { "version": "9.0.0", + "resolved": "https://registry.npmjs.org/extract-files/-/extract-files-9.0.0.tgz", + "integrity": "sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ==", "dev": true, - "license": "MIT", "engines": { "node": "^10.17.0 || ^12.0.0 || >= 13.7.0" }, @@ -8839,9 +9260,10 @@ } }, "node_modules/graphql-sse": { - "version": "1.0.6", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/graphql-sse/-/graphql-sse-1.1.0.tgz", + "integrity": "sha512-xE8AGPJa5X+g7iFmRQw/8H+7lXIDJvSkW6lou/XSSq17opPQl+dbKOMiqraHMx52VrDgS061ZVx90OSuqS6ykA==", "dev": true, - "license": "MIT", "engines": { "node": ">=12" }, @@ -8851,7 +9273,8 @@ }, "node_modules/graphql-tag": { "version": "2.12.6", - "license": "MIT", + "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz", + "integrity": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==", "dependencies": { "tslib": "^2.1.0" }, @@ -8863,9 +9286,10 @@ } }, "node_modules/graphql-ws": { - "version": "5.5.5", + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.7.0.tgz", + "integrity": "sha512-8yYuvnyqIjlJ/WfebOyu2GSOQeFauRxnfuTveY9yvrDGs2g3kR9Nv4gu40AKvRHbXlSJwTbMJ6dVxAtEyKwVRA==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -8875,14 +9299,16 @@ }, "node_modules/growly": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", "dev": true, - "license": "MIT", "optional": true }, "node_modules/handlebars": { "version": "4.7.7", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", + "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", "dev": true, - "license": "MIT", "dependencies": { "minimist": "^1.2.5", "neo-async": "^2.6.0", @@ -8901,24 +9327,28 @@ }, "node_modules/handlebars/node_modules/source-map": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/har-schema": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", "dev": true, - "license": "ISC", "engines": { "node": ">=4" } }, "node_modules/har-validator": { "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "deprecated": "this library is no longer supported", "dev": true, - "license": "MIT", "dependencies": { "ajv": "^6.12.3", "har-schema": "^2.0.0" @@ -8929,15 +9359,17 @@ }, "node_modules/hard-rejection": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/has": { "version": "1.0.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dependencies": { "function-bind": "^1.1.1" }, @@ -8947,8 +9379,9 @@ }, "node_modules/has-ansi": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", "dev": true, - "license": "MIT", "dependencies": { "ansi-regex": "^2.0.0" }, @@ -8958,29 +9391,33 @@ }, "node_modules/has-ansi/node_modules/ansi-regex": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/has-bigints": { "version": "1.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", + "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/has-flag": { "version": "4.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "engines": { "node": ">=8" } }, "node_modules/has-symbols": { - "version": "1.0.2", - "license": "MIT", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "engines": { "node": ">= 0.4" }, @@ -8990,7 +9427,8 @@ }, "node_modules/has-tostringtag": { "version": "1.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", "dependencies": { "has-symbols": "^1.0.2" }, @@ -9003,13 +9441,15 @@ }, "node_modules/has-unicode": { "version": "2.0.1", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", + "dev": true }, "node_modules/has-value": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", "dev": true, - "license": "MIT", "dependencies": { "get-value": "^2.0.6", "has-values": "^1.0.0", @@ -9021,8 +9461,9 @@ }, "node_modules/has-values": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", "dev": true, - "license": "MIT", "dependencies": { "is-number": "^3.0.0", "kind-of": "^4.0.0" @@ -9033,8 +9474,9 @@ }, "node_modules/has-values/node_modules/is-number": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", "dev": true, - "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -9044,8 +9486,9 @@ }, "node_modules/has-values/node_modules/is-number/node_modules/kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, - "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -9055,8 +9498,9 @@ }, "node_modules/has-values/node_modules/kind-of": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", "dev": true, - "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -9066,8 +9510,9 @@ }, "node_modules/header-case": { "version": "2.0.4", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", + "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", "dev": true, - "license": "MIT", "dependencies": { "capital-case": "^1.0.4", "tslib": "^2.0.3" @@ -9075,16 +9520,18 @@ }, "node_modules/hoist-non-react-statics": { "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "react-is": "^16.7.0" } }, "node_modules/hosted-git-info": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", "dev": true, - "license": "ISC", "dependencies": { "lru-cache": "^6.0.0" }, @@ -9094,8 +9541,9 @@ }, "node_modules/html-encoding-sniffer": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", "dev": true, - "license": "MIT", "dependencies": { "whatwg-encoding": "^1.0.5" }, @@ -9105,32 +9553,45 @@ }, "node_modules/html-escaper": { "version": "2.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true }, "node_modules/http-cache-semantics": { "version": "4.1.0", - "license": "BSD-2-Clause" + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", + "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" }, "node_modules/http-errors": { - "version": "1.8.1", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dev": true, - "license": "MIT", "dependencies": { - "depd": "~1.1.2", + "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", - "statuses": ">= 1.5.0 < 2", + "statuses": "2.0.1", "toidentifier": "1.0.1" }, "engines": { - "node": ">= 0.6" + "node": ">= 0.8" + } + }, + "node_modules/http-errors/node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" } }, "node_modules/http-proxy-agent": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", "dev": true, - "license": "MIT", "dependencies": { "@tootallnate/once": "2", "agent-base": "6", @@ -9142,8 +9603,9 @@ }, "node_modules/http-signature": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", "dev": true, - "license": "MIT", "dependencies": { "assert-plus": "^1.0.0", "jsprim": "^1.2.2", @@ -9156,7 +9618,8 @@ }, "node_modules/https-proxy-agent": { "version": "5.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", + "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", "dependencies": { "agent-base": "6", "debug": "4" @@ -9167,23 +9630,26 @@ }, "node_modules/human-signals": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true, - "license": "Apache-2.0", "engines": { "node": ">=10.17.0" } }, "node_modules/humanize-ms": { "version": "1.2.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=", "dependencies": { "ms": "^2.0.0" } }, "node_modules/iconv-lite": { "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, - "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, @@ -9193,6 +9659,8 @@ }, "node_modules/ieee754": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "dev": true, "funding": [ { @@ -9207,37 +9675,52 @@ "type": "consulting", "url": "https://feross.org/support" } - ], - "license": "BSD-3-Clause" + ] }, "node_modules/ignore": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", "dev": true, - "license": "MIT", "engines": { "node": ">= 4" } }, "node_modules/ignore-walk": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.4.tgz", + "integrity": "sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ==", "dev": true, - "license": "ISC", "dependencies": { "minimatch": "^3.0.4" } }, + "node_modules/ignore-walk/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, "node_modules/immutable": { "version": "3.7.6", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.7.6.tgz", + "integrity": "sha1-E7TTyxK++hVIKib+Gy665kAHHks=", "dev": true, - "license": "BSD-3-Clause", "engines": { "node": ">=0.8.0" } }, "node_modules/import-fresh": { "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, - "license": "MIT", "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" @@ -9251,16 +9734,18 @@ }, "node_modules/import-fresh/node_modules/resolve-from": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/import-from": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-4.0.0.tgz", + "integrity": "sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=12.2" }, @@ -9270,8 +9755,9 @@ }, "node_modules/import-local": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "dev": true, - "license": "MIT", "dependencies": { "pkg-dir": "^4.2.0", "resolve-cwd": "^3.0.0" @@ -9288,26 +9774,30 @@ }, "node_modules/imurmurhash": { "version": "0.1.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", "engines": { "node": ">=0.8.19" } }, "node_modules/indent-string": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz", + "integrity": "sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/infer-owner": { "version": "1.0.4", - "license": "ISC" + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" }, "node_modules/inflight": { "version": "1.0.6", - "license": "ISC", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", "dependencies": { "once": "^1.3.0", "wrappy": "1" @@ -9315,17 +9805,20 @@ }, "node_modules/inherits": { "version": "2.0.4", - "license": "ISC" + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "node_modules/ini": { "version": "1.3.8", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true }, "node_modules/init-package-json": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/init-package-json/-/init-package-json-2.0.5.tgz", + "integrity": "sha512-u1uGAtEFu3VA6HNl/yUWw57jmKEMx8SKOxHhxjGnOFUiIlFnohKDFg4ZrPpv9wWqk44nDxGJAtqjdQFm+9XXQA==", "dev": true, - "license": "ISC", "dependencies": { "npm-package-arg": "^8.1.5", "promzard": "^0.3.0", @@ -9340,9 +9833,10 @@ } }, "node_modules/init-package-json/node_modules/read-package-json": { - "version": "4.1.1", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-4.1.2.tgz", + "integrity": "sha512-Dqer4pqzamDE2O4M55xp1qZMuLPqi4ldk2ya648FOMHRjwMzFhuxVrG04wd0c38IsvkVdr3vgHI6z+QTPdAjrQ==", "dev": true, - "license": "ISC", "dependencies": { "glob": "^7.1.1", "json-parse-even-better-errors": "^2.3.0", @@ -9354,9 +9848,10 @@ } }, "node_modules/inquirer": { - "version": "8.2.0", + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.2.tgz", + "integrity": "sha512-pG7I/si6K/0X7p1qU+rfWnpTE1UIkTONN1wxtzh0d+dHXtT/JG6qBgLxoyHVsQa8cFABxAPh0pD6uUUHiAoaow==", "dev": true, - "license": "MIT", "dependencies": { "ansi-escapes": "^4.2.1", "chalk": "^4.1.1", @@ -9368,18 +9863,19 @@ "mute-stream": "0.0.8", "ora": "^5.4.1", "run-async": "^2.4.0", - "rxjs": "^7.2.0", + "rxjs": "^7.5.5", "string-width": "^4.1.0", "strip-ansi": "^6.0.0", "through": "^2.3.6" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" } }, "node_modules/internal-slot": { "version": "1.0.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", "dependencies": { "get-intrinsic": "^1.1.0", "has": "^1.0.3", @@ -9391,28 +9887,32 @@ }, "node_modules/invariant": { "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", "dev": true, - "license": "MIT", "dependencies": { "loose-envify": "^1.0.0" } }, "node_modules/ip": { "version": "1.1.5", - "license": "MIT" + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" }, "node_modules/ipaddr.js": { "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.10" } }, "node_modules/is-absolute": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", + "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", "dev": true, - "license": "MIT", "dependencies": { "is-relative": "^1.0.0", "is-windows": "^1.0.1" @@ -9423,8 +9923,9 @@ }, "node_modules/is-accessor-descriptor": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "dev": true, - "license": "MIT", "dependencies": { "kind-of": "^6.0.0" }, @@ -9434,7 +9935,8 @@ }, "node_modules/is-arguments": { "version": "1.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -9448,12 +9950,14 @@ }, "node_modules/is-arrayish": { "version": "0.2.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true }, "node_modules/is-bigint": { "version": "1.0.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "dependencies": { "has-bigints": "^1.0.1" }, @@ -9463,8 +9967,9 @@ }, "node_modules/is-binary-path": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, - "license": "MIT", "dependencies": { "binary-extensions": "^2.0.0" }, @@ -9474,7 +9979,8 @@ }, "node_modules/is-boolean-object": { "version": "1.1.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -9488,12 +9994,14 @@ }, "node_modules/is-buffer": { "version": "1.1.6", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true }, "node_modules/is-callable": { "version": "1.2.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", "engines": { "node": ">= 0.4" }, @@ -9503,8 +10011,9 @@ }, "node_modules/is-ci": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", "dev": true, - "license": "MIT", "dependencies": { "ci-info": "^2.0.0" }, @@ -9514,13 +10023,15 @@ }, "node_modules/is-ci/node_modules/ci-info": { "version": "2.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "dev": true }, "node_modules/is-core-module": { "version": "2.8.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", + "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", "dev": true, - "license": "MIT", "dependencies": { "has": "^1.0.3" }, @@ -9530,8 +10041,9 @@ }, "node_modules/is-data-descriptor": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "dev": true, - "license": "MIT", "dependencies": { "kind-of": "^6.0.0" }, @@ -9541,7 +10053,8 @@ }, "node_modules/is-date-object": { "version": "1.0.5", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -9554,8 +10067,9 @@ }, "node_modules/is-descriptor": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "dev": true, - "license": "MIT", "dependencies": { "is-accessor-descriptor": "^1.0.0", "is-data-descriptor": "^1.0.0", @@ -9567,8 +10081,9 @@ }, "node_modules/is-docker": { "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", "dev": true, - "license": "MIT", "optional": true, "bin": { "is-docker": "cli.js" @@ -9581,41 +10096,61 @@ } }, "node_modules/is-extendable": { - "version": "0.1.1", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "dev": true, - "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extendable/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, "engines": { "node": ">=0.10.0" } }, "node_modules/is-extglob": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/is-generator-fn": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/is-glob": { "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, - "license": "MIT", "dependencies": { "is-extglob": "^2.1.1" }, @@ -9625,34 +10160,39 @@ }, "node_modules/is-interactive": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/is-lambda": { "version": "1.0.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=" }, "node_modules/is-lower-case": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-2.0.2.tgz", + "integrity": "sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==", "dev": true, - "license": "MIT", "dependencies": { "tslib": "^2.0.3" } }, "node_modules/is-map": { "version": "2.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-negative-zero": { "version": "2.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", "engines": { "node": ">= 0.4" }, @@ -9660,9 +10200,19 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, "node_modules/is-number-object": { - "version": "1.0.6", - "license": "MIT", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -9675,16 +10225,18 @@ }, "node_modules/is-obj": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/is-observable": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-observable/-/is-observable-1.1.0.tgz", + "integrity": "sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==", "dev": true, - "license": "MIT", "dependencies": { "symbol-observable": "^1.1.0" }, @@ -9694,41 +10246,47 @@ }, "node_modules/is-observable/node_modules/symbol-observable": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", + "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-plain-obj": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-plain-object": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-potential-custom-element-name": { "version": "1.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true }, "node_modules/is-promise": { "version": "2.2.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", + "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", + "dev": true }, "node_modules/is-regex": { "version": "1.1.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -9742,8 +10300,9 @@ }, "node_modules/is-relative": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", + "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", "dev": true, - "license": "MIT", "dependencies": { "is-unc-path": "^1.0.0" }, @@ -9753,30 +10312,37 @@ }, "node_modules/is-set": { "version": "2.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-shared-array-buffer": { - "version": "1.0.1", - "license": "MIT", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dependencies": { + "call-bind": "^1.0.2" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-ssh": { "version": "1.3.3", + "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.3.3.tgz", + "integrity": "sha512-NKzJmQzJfEEma3w5cJNcUMxoXfDjz0Zj0eyCalHn2E6VOwlzjZo0yuO2fcBSf8zhFuVCL/82/r5gRcoi6aEPVQ==", "dev": true, - "license": "MIT", "dependencies": { "protocols": "^1.1.0" } }, "node_modules/is-stream": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" }, @@ -9786,7 +10352,8 @@ }, "node_modules/is-string": { "version": "1.0.7", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -9799,7 +10366,8 @@ }, "node_modules/is-symbol": { "version": "1.0.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "dependencies": { "has-symbols": "^1.0.2" }, @@ -9812,8 +10380,9 @@ }, "node_modules/is-text-path": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz", + "integrity": "sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=", "dev": true, - "license": "MIT", "dependencies": { "text-extensions": "^1.0.0" }, @@ -9823,7 +10392,8 @@ }, "node_modules/is-typed-array": { "version": "1.1.8", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.8.tgz", + "integrity": "sha512-HqH41TNZq2fgtGT8WHVFVJhBVGuY3AnP3Q36K8JKXUxSxRgk/d+7NjmwG2vo2mYmXK8UYZKu0qH8bVP5gEisjA==", "dependencies": { "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", @@ -9840,13 +10410,15 @@ }, "node_modules/is-typedarray": { "version": "1.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "dev": true }, "node_modules/is-unc-path": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", + "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", "dev": true, - "license": "MIT", "dependencies": { "unc-path-regex": "^0.1.2" }, @@ -9856,8 +10428,9 @@ }, "node_modules/is-unicode-supported": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -9867,22 +10440,25 @@ }, "node_modules/is-upper-case": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-upper-case/-/is-upper-case-2.0.2.tgz", + "integrity": "sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==", "dev": true, - "license": "MIT", "dependencies": { "tslib": "^2.0.3" } }, "node_modules/is-weakmap": { "version": "2.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-weakref": { "version": "1.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", "dependencies": { "call-bind": "^1.0.2" }, @@ -9892,7 +10468,8 @@ }, "node_modules/is-weakset": { "version": "2.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.1" @@ -9903,16 +10480,18 @@ }, "node_modules/is-windows": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-wsl": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dev": true, - "license": "MIT", "optional": true, "dependencies": { "is-docker": "^2.0.0" @@ -9923,26 +10502,30 @@ }, "node_modules/isarray": { "version": "1.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true }, "node_modules/isexe": { "version": "2.0.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true }, "node_modules/isobject": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/isomorphic-fetch": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-3.0.0.tgz", + "integrity": "sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==", "dev": true, - "license": "MIT", "dependencies": { "node-fetch": "^2.6.1", "whatwg-fetch": "^3.4.1" @@ -9950,29 +10533,33 @@ }, "node_modules/isomorphic-ws": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz", + "integrity": "sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==", "dev": true, - "license": "MIT", "peerDependencies": { "ws": "*" } }, "node_modules/isstream": { "version": "0.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "dev": true }, "node_modules/istanbul-lib-coverage": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", "dev": true, - "license": "BSD-3-Clause", "engines": { "node": ">=8" } }, "node_modules/istanbul-lib-instrument": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz", + "integrity": "sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@babel/core": "^7.12.3", "@babel/parser": "^7.14.7", @@ -9986,16 +10573,18 @@ }, "node_modules/istanbul-lib-instrument/node_modules/semver": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/istanbul-lib-report": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "istanbul-lib-coverage": "^3.0.0", "make-dir": "^3.0.0", @@ -10007,8 +10596,9 @@ }, "node_modules/istanbul-lib-source-maps": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "debug": "^4.1.1", "istanbul-lib-coverage": "^3.0.0", @@ -10020,16 +10610,18 @@ }, "node_modules/istanbul-lib-source-maps/node_modules/source-map": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/istanbul-reports": { - "version": "3.1.3", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.4.tgz", + "integrity": "sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "html-escaper": "^2.0.0", "istanbul-lib-report": "^3.0.0" @@ -10040,8 +10632,9 @@ }, "node_modules/iterall": { "version": "1.3.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/iterall/-/iterall-1.3.0.tgz", + "integrity": "sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg==", + "dev": true }, "node_modules/jest": { "version": "27.5.1", @@ -10148,8 +10741,9 @@ }, "node_modules/jest-cli/node_modules/yargs": { "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, - "license": "MIT", "dependencies": { "cliui": "^7.0.2", "escalade": "^3.1.1", @@ -10208,8 +10802,9 @@ }, "node_modules/jest-cucumber": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/jest-cucumber/-/jest-cucumber-3.0.1.tgz", + "integrity": "sha512-S2EelgezfwWP10VCgUkSOiJYiTIM0yM82KxrwBOn68wMmlqU5jNSf7xDIBS0tGwoFnNwUTFp7LPFmEnfilSJrA==", "dev": true, - "license": "MIT", "dependencies": { "@types/glob": "^7.1.3", "@types/jest": "^26.0.7", @@ -10223,8 +10818,9 @@ }, "node_modules/jest-cucumber/node_modules/@jest/console": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz", + "integrity": "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^26.6.2", "@types/node": "*", @@ -10239,8 +10835,9 @@ }, "node_modules/jest-cucumber/node_modules/@jest/core": { "version": "26.6.3", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz", + "integrity": "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==", "dev": true, - "license": "MIT", "dependencies": { "@jest/console": "^26.6.2", "@jest/reporters": "^26.6.2", @@ -10275,46 +10872,11 @@ "node": ">= 10.14.2" } }, - "node_modules/jest-cucumber/node_modules/@jest/core/node_modules/jest-config": { - "version": "26.6.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.1.0", - "@jest/test-sequencer": "^26.6.3", - "@jest/types": "^26.6.2", - "babel-jest": "^26.6.3", - "chalk": "^4.0.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.1", - "graceful-fs": "^4.2.4", - "jest-environment-jsdom": "^26.6.2", - "jest-environment-node": "^26.6.2", - "jest-get-type": "^26.3.0", - "jest-jasmine2": "^26.6.3", - "jest-regex-util": "^26.0.0", - "jest-resolve": "^26.6.2", - "jest-util": "^26.6.2", - "jest-validate": "^26.6.2", - "micromatch": "^4.0.2", - "pretty-format": "^26.6.2" - }, - "engines": { - "node": ">= 10.14.2" - }, - "peerDependencies": { - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "ts-node": { - "optional": true - } - } - }, "node_modules/jest-cucumber/node_modules/@jest/environment": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz", + "integrity": "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==", "dev": true, - "license": "MIT", "dependencies": { "@jest/fake-timers": "^26.6.2", "@jest/types": "^26.6.2", @@ -10327,8 +10889,9 @@ }, "node_modules/jest-cucumber/node_modules/@jest/fake-timers": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz", + "integrity": "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^26.6.2", "@sinonjs/fake-timers": "^6.0.1", @@ -10343,8 +10906,9 @@ }, "node_modules/jest-cucumber/node_modules/@jest/globals": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz", + "integrity": "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==", "dev": true, - "license": "MIT", "dependencies": { "@jest/environment": "^26.6.2", "@jest/types": "^26.6.2", @@ -10356,8 +10920,9 @@ }, "node_modules/jest-cucumber/node_modules/@jest/reporters": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz", + "integrity": "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==", "dev": true, - "license": "MIT", "dependencies": { "@bcoe/v8-coverage": "^0.2.3", "@jest/console": "^26.6.2", @@ -10393,8 +10958,9 @@ }, "node_modules/jest-cucumber/node_modules/@jest/source-map": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz", + "integrity": "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==", "dev": true, - "license": "MIT", "dependencies": { "callsites": "^3.0.0", "graceful-fs": "^4.2.4", @@ -10406,8 +10972,9 @@ }, "node_modules/jest-cucumber/node_modules/@jest/test-result": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz", + "integrity": "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/console": "^26.6.2", "@jest/types": "^26.6.2", @@ -10420,8 +10987,9 @@ }, "node_modules/jest-cucumber/node_modules/@jest/test-sequencer": { "version": "26.6.3", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz", + "integrity": "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==", "dev": true, - "license": "MIT", "dependencies": { "@jest/test-result": "^26.6.2", "graceful-fs": "^4.2.4", @@ -10435,8 +11003,9 @@ }, "node_modules/jest-cucumber/node_modules/@jest/transform": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz", + "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/core": "^7.1.0", "@jest/types": "^26.6.2", @@ -10460,8 +11029,9 @@ }, "node_modules/jest-cucumber/node_modules/@jest/types": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", "dev": true, - "license": "MIT", "dependencies": { "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", @@ -10475,16 +11045,18 @@ }, "node_modules/jest-cucumber/node_modules/@sinonjs/fake-timers": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz", + "integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@sinonjs/commons": "^1.7.0" } }, "node_modules/jest-cucumber/node_modules/@types/jest": { "version": "26.0.24", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-26.0.24.tgz", + "integrity": "sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==", "dev": true, - "license": "MIT", "dependencies": { "jest-diff": "^26.0.0", "pretty-format": "^26.0.0" @@ -10492,21 +11064,24 @@ }, "node_modules/jest-cucumber/node_modules/@types/node": { "version": "11.15.54", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/node/-/node-11.15.54.tgz", + "integrity": "sha512-1RWYiq+5UfozGsU6MwJyFX6BtktcT10XRjvcAQmskCtMcW3tPske88lM/nHv7BQG1w9KBXI1zPGuu5PnNCX14g==", + "dev": true }, "node_modules/jest-cucumber/node_modules/@types/yargs": { "version": "15.0.14", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz", + "integrity": "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==", "dev": true, - "license": "MIT", "dependencies": { "@types/yargs-parser": "*" } }, "node_modules/jest-cucumber/node_modules/babel-jest": { "version": "26.6.3", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz", + "integrity": "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==", "dev": true, - "license": "MIT", "dependencies": { "@jest/transform": "^26.6.2", "@jest/types": "^26.6.2", @@ -10526,8 +11101,9 @@ }, "node_modules/jest-cucumber/node_modules/babel-plugin-jest-hoist": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz", + "integrity": "sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==", "dev": true, - "license": "MIT", "dependencies": { "@babel/template": "^7.3.3", "@babel/types": "^7.3.3", @@ -10540,8 +11116,9 @@ }, "node_modules/jest-cucumber/node_modules/babel-preset-jest": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz", + "integrity": "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==", "dev": true, - "license": "MIT", "dependencies": { "babel-plugin-jest-hoist": "^26.6.2", "babel-preset-current-node-syntax": "^1.0.0" @@ -10555,8 +11132,9 @@ }, "node_modules/jest-cucumber/node_modules/camelcase": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -10566,13 +11144,15 @@ }, "node_modules/jest-cucumber/node_modules/cjs-module-lexer": { "version": "0.6.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz", + "integrity": "sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==", + "dev": true }, "node_modules/jest-cucumber/node_modules/cliui": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", "dev": true, - "license": "ISC", "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", @@ -10581,16 +11161,18 @@ }, "node_modules/jest-cucumber/node_modules/diff-sequences": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz", + "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==", "dev": true, - "license": "MIT", "engines": { "node": ">= 10.14.2" } }, "node_modules/jest-cucumber/node_modules/emittery": { "version": "0.7.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz", + "integrity": "sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -10600,8 +11182,9 @@ }, "node_modules/jest-cucumber/node_modules/execa": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", "dev": true, - "license": "MIT", "dependencies": { "cross-spawn": "^7.0.0", "get-stream": "^5.0.0", @@ -10622,8 +11205,9 @@ }, "node_modules/jest-cucumber/node_modules/expect": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz", + "integrity": "sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^26.6.2", "ansi-styles": "^4.0.0", @@ -10638,8 +11222,9 @@ }, "node_modules/jest-cucumber/node_modules/get-stream": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "dev": true, - "license": "MIT", "dependencies": { "pump": "^3.0.0" }, @@ -10652,21 +11237,24 @@ }, "node_modules/jest-cucumber/node_modules/hosted-git-info": { "version": "2.8.9", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true }, "node_modules/jest-cucumber/node_modules/human-signals": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", "dev": true, - "license": "Apache-2.0", "engines": { "node": ">=8.12.0" } }, "node_modules/jest-cucumber/node_modules/istanbul-lib-instrument": { "version": "4.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", + "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@babel/core": "^7.7.5", "@istanbuljs/schema": "^0.1.2", @@ -10679,16 +11267,18 @@ }, "node_modules/jest-cucumber/node_modules/istanbul-lib-instrument/node_modules/semver": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/jest-cucumber/node_modules/jest": { "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest/-/jest-26.6.3.tgz", + "integrity": "sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==", "dev": true, - "license": "MIT", "dependencies": { "@jest/core": "^26.6.3", "import-local": "^3.0.2", @@ -10703,8 +11293,9 @@ }, "node_modules/jest-cucumber/node_modules/jest-changed-files": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-26.6.2.tgz", + "integrity": "sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^26.6.2", "execa": "^4.0.0", @@ -10716,8 +11307,9 @@ }, "node_modules/jest-cucumber/node_modules/jest-cli": { "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-26.6.3.tgz", + "integrity": "sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==", "dev": true, - "license": "MIT", "dependencies": { "@jest/core": "^26.6.3", "@jest/test-result": "^26.6.2", @@ -10740,10 +11332,11 @@ "node": ">= 10.14.2" } }, - "node_modules/jest-cucumber/node_modules/jest-cli/node_modules/jest-config": { + "node_modules/jest-cucumber/node_modules/jest-config": { "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-26.6.3.tgz", + "integrity": "sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/core": "^7.1.0", "@jest/test-sequencer": "^26.6.3", @@ -10778,8 +11371,9 @@ }, "node_modules/jest-cucumber/node_modules/jest-diff": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz", + "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", "dev": true, - "license": "MIT", "dependencies": { "chalk": "^4.0.0", "diff-sequences": "^26.6.2", @@ -10792,8 +11386,9 @@ }, "node_modules/jest-cucumber/node_modules/jest-docblock": { "version": "26.0.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-26.0.0.tgz", + "integrity": "sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==", "dev": true, - "license": "MIT", "dependencies": { "detect-newline": "^3.0.0" }, @@ -10803,8 +11398,9 @@ }, "node_modules/jest-cucumber/node_modules/jest-each": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-26.6.2.tgz", + "integrity": "sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^26.6.2", "chalk": "^4.0.0", @@ -10818,8 +11414,9 @@ }, "node_modules/jest-cucumber/node_modules/jest-environment-jsdom": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz", + "integrity": "sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==", "dev": true, - "license": "MIT", "dependencies": { "@jest/environment": "^26.6.2", "@jest/fake-timers": "^26.6.2", @@ -10835,8 +11432,9 @@ }, "node_modules/jest-cucumber/node_modules/jest-environment-node": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-26.6.2.tgz", + "integrity": "sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==", "dev": true, - "license": "MIT", "dependencies": { "@jest/environment": "^26.6.2", "@jest/fake-timers": "^26.6.2", @@ -10851,16 +11449,18 @@ }, "node_modules/jest-cucumber/node_modules/jest-get-type": { "version": "26.3.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", + "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==", "dev": true, - "license": "MIT", "engines": { "node": ">= 10.14.2" } }, "node_modules/jest-cucumber/node_modules/jest-haste-map": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz", + "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^26.6.2", "@types/graceful-fs": "^4.1.2", @@ -10885,8 +11485,9 @@ }, "node_modules/jest-cucumber/node_modules/jest-jasmine2": { "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz", + "integrity": "sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/traverse": "^7.1.0", "@jest/environment": "^26.6.2", @@ -10913,8 +11514,9 @@ }, "node_modules/jest-cucumber/node_modules/jest-leak-detector": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz", + "integrity": "sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==", "dev": true, - "license": "MIT", "dependencies": { "jest-get-type": "^26.3.0", "pretty-format": "^26.6.2" @@ -10925,8 +11527,9 @@ }, "node_modules/jest-cucumber/node_modules/jest-matcher-utils": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz", + "integrity": "sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==", "dev": true, - "license": "MIT", "dependencies": { "chalk": "^4.0.0", "jest-diff": "^26.6.2", @@ -10939,8 +11542,9 @@ }, "node_modules/jest-cucumber/node_modules/jest-message-util": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz", + "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/code-frame": "^7.0.0", "@jest/types": "^26.6.2", @@ -10958,8 +11562,9 @@ }, "node_modules/jest-cucumber/node_modules/jest-mock": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-26.6.2.tgz", + "integrity": "sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^26.6.2", "@types/node": "*" @@ -10970,16 +11575,18 @@ }, "node_modules/jest-cucumber/node_modules/jest-regex-util": { "version": "26.0.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz", + "integrity": "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==", "dev": true, - "license": "MIT", "engines": { "node": ">= 10.14.2" } }, "node_modules/jest-cucumber/node_modules/jest-resolve": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^26.6.2", "chalk": "^4.0.0", @@ -10996,8 +11603,9 @@ }, "node_modules/jest-cucumber/node_modules/jest-resolve-dependencies": { "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz", + "integrity": "sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^26.6.2", "jest-regex-util": "^26.0.0", @@ -11009,8 +11617,9 @@ }, "node_modules/jest-cucumber/node_modules/jest-runner": { "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-26.6.3.tgz", + "integrity": "sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/console": "^26.6.2", "@jest/environment": "^26.6.2", @@ -11037,46 +11646,11 @@ "node": ">= 10.14.2" } }, - "node_modules/jest-cucumber/node_modules/jest-runner/node_modules/jest-config": { - "version": "26.6.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.1.0", - "@jest/test-sequencer": "^26.6.3", - "@jest/types": "^26.6.2", - "babel-jest": "^26.6.3", - "chalk": "^4.0.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.1", - "graceful-fs": "^4.2.4", - "jest-environment-jsdom": "^26.6.2", - "jest-environment-node": "^26.6.2", - "jest-get-type": "^26.3.0", - "jest-jasmine2": "^26.6.3", - "jest-regex-util": "^26.0.0", - "jest-resolve": "^26.6.2", - "jest-util": "^26.6.2", - "jest-validate": "^26.6.2", - "micromatch": "^4.0.2", - "pretty-format": "^26.6.2" - }, - "engines": { - "node": ">= 10.14.2" - }, - "peerDependencies": { - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "ts-node": { - "optional": true - } - } - }, "node_modules/jest-cucumber/node_modules/jest-runtime": { "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-26.6.3.tgz", + "integrity": "sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==", "dev": true, - "license": "MIT", "dependencies": { "@jest/console": "^26.6.2", "@jest/environment": "^26.6.2", @@ -11113,46 +11687,11 @@ "node": ">= 10.14.2" } }, - "node_modules/jest-cucumber/node_modules/jest-runtime/node_modules/jest-config": { - "version": "26.6.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.1.0", - "@jest/test-sequencer": "^26.6.3", - "@jest/types": "^26.6.2", - "babel-jest": "^26.6.3", - "chalk": "^4.0.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.1", - "graceful-fs": "^4.2.4", - "jest-environment-jsdom": "^26.6.2", - "jest-environment-node": "^26.6.2", - "jest-get-type": "^26.3.0", - "jest-jasmine2": "^26.6.3", - "jest-regex-util": "^26.0.0", - "jest-resolve": "^26.6.2", - "jest-util": "^26.6.2", - "jest-validate": "^26.6.2", - "micromatch": "^4.0.2", - "pretty-format": "^26.6.2" - }, - "engines": { - "node": ">= 10.14.2" - }, - "peerDependencies": { - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "ts-node": { - "optional": true - } - } - }, "node_modules/jest-cucumber/node_modules/jest-serializer": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz", + "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*", "graceful-fs": "^4.2.4" @@ -11163,8 +11702,9 @@ }, "node_modules/jest-cucumber/node_modules/jest-snapshot": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-26.6.2.tgz", + "integrity": "sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==", "dev": true, - "license": "MIT", "dependencies": { "@babel/types": "^7.0.0", "@jest/types": "^26.6.2", @@ -11189,8 +11729,9 @@ }, "node_modules/jest-cucumber/node_modules/jest-util": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^26.6.2", "@types/node": "*", @@ -11205,8 +11746,9 @@ }, "node_modules/jest-cucumber/node_modules/jest-validate": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz", + "integrity": "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^26.6.2", "camelcase": "^6.0.0", @@ -11221,8 +11763,9 @@ }, "node_modules/jest-cucumber/node_modules/jest-watcher": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.6.2.tgz", + "integrity": "sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==", "dev": true, - "license": "MIT", "dependencies": { "@jest/test-result": "^26.6.2", "@jest/types": "^26.6.2", @@ -11238,8 +11781,9 @@ }, "node_modules/jest-cucumber/node_modules/jest-worker": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*", "merge-stream": "^2.0.0", @@ -11251,8 +11795,9 @@ }, "node_modules/jest-cucumber/node_modules/normalize-package-data": { "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", @@ -11262,16 +11807,18 @@ }, "node_modules/jest-cucumber/node_modules/normalize-package-data/node_modules/semver": { "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver" } }, "node_modules/jest-cucumber/node_modules/pretty-format": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", "dev": true, - "license": "MIT", "dependencies": { "@jest/types": "^26.6.2", "ansi-regex": "^5.0.0", @@ -11284,13 +11831,15 @@ }, "node_modules/jest-cucumber/node_modules/react-is": { "version": "17.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true }, "node_modules/jest-cucumber/node_modules/read-pkg": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", "dev": true, - "license": "MIT", "dependencies": { "@types/normalize-package-data": "^2.4.0", "normalize-package-data": "^2.5.0", @@ -11303,8 +11852,9 @@ }, "node_modules/jest-cucumber/node_modules/read-pkg-up": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", "dev": true, - "license": "MIT", "dependencies": { "find-up": "^4.1.0", "read-pkg": "^5.2.0", @@ -11319,37 +11869,42 @@ }, "node_modules/jest-cucumber/node_modules/read-pkg/node_modules/type-fest": { "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", "dev": true, - "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=8" } }, "node_modules/jest-cucumber/node_modules/source-map": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/jest-cucumber/node_modules/throat": { "version": "5.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", + "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==", + "dev": true }, "node_modules/jest-cucumber/node_modules/type-fest": { "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", "dev": true, - "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=8" } }, "node_modules/jest-cucumber/node_modules/v8-to-istanbul": { "version": "7.1.2", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz", + "integrity": "sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==", "dev": true, - "license": "ISC", "dependencies": { "@types/istanbul-lib-coverage": "^2.0.1", "convert-source-map": "^1.6.0", @@ -11361,16 +11916,18 @@ }, "node_modules/jest-cucumber/node_modules/v8-to-istanbul/node_modules/source-map": { "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", "dev": true, - "license": "BSD-3-Clause", "engines": { "node": ">= 8" } }, "node_modules/jest-cucumber/node_modules/wrap-ansi": { "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -11382,13 +11939,15 @@ }, "node_modules/jest-cucumber/node_modules/y18n": { "version": "4.0.3", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true }, "node_modules/jest-cucumber/node_modules/yargs": { "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", "dev": true, - "license": "MIT", "dependencies": { "cliui": "^6.0.0", "decamelize": "^1.2.0", @@ -11408,8 +11967,9 @@ }, "node_modules/jest-cucumber/node_modules/yargs-parser": { "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", "dev": true, - "license": "ISC", "dependencies": { "camelcase": "^5.0.0", "decamelize": "^1.2.0" @@ -11420,8 +11980,9 @@ }, "node_modules/jest-cucumber/node_modules/yargs-parser/node_modules/camelcase": { "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } @@ -11645,8 +12206,9 @@ }, "node_modules/jest-pnp-resolver": { "version": "1.2.2", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", + "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" }, @@ -11909,20 +12471,23 @@ }, "node_modules/js-levenshtein": { "version": "1.1.6", - "license": "MIT", + "resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz", + "integrity": "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==", "engines": { "node": ">=0.10.0" } }, "node_modules/js-tokens": { "version": "4.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true }, "node_modules/js-yaml": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, - "license": "MIT", "dependencies": { "argparse": "^2.0.1" }, @@ -11932,13 +12497,15 @@ }, "node_modules/jsbn": { "version": "0.1.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "dev": true }, "node_modules/jsdom": { "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", "dev": true, - "license": "MIT", "dependencies": { "abab": "^2.0.5", "acorn": "^8.2.4", @@ -11982,16 +12549,18 @@ }, "node_modules/jsdom/node_modules/@tootallnate/once": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", "dev": true, - "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/jsdom/node_modules/http-proxy-agent": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", "dev": true, - "license": "MIT", "dependencies": { "@tootallnate/once": "1", "agent-base": "6", @@ -12002,9 +12571,10 @@ } }, "node_modules/jsdom/node_modules/ws": { - "version": "7.5.6", + "version": "7.5.7", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.7.tgz", + "integrity": "sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A==", "dev": true, - "license": "MIT", "engines": { "node": ">=8.3.0" }, @@ -12023,8 +12593,9 @@ }, "node_modules/jsesc": { "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true, - "license": "MIT", "bin": { "jsesc": "bin/jsesc" }, @@ -12034,52 +12605,61 @@ }, "node_modules/json-buffer": { "version": "3.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=", + "dev": true }, "node_modules/json-parse-better-errors": { "version": "1.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true }, "node_modules/json-schema": { "version": "0.4.0", - "dev": true, - "license": "(AFL-2.1 OR BSD-3-Clause)" + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "dev": true }, "node_modules/json-schema-traverse": { "version": "0.4.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true }, "node_modules/json-stable-stringify": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", + "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", "dev": true, - "license": "MIT", "dependencies": { "jsonify": "~0.0.0" } }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", "dev": true, - "license": "MIT", "peer": true }, "node_modules/json-stringify-safe": { "version": "5.0.1", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "dev": true }, "node_modules/json-to-pretty-yaml": { "version": "1.2.2", + "resolved": "https://registry.npmjs.org/json-to-pretty-yaml/-/json-to-pretty-yaml-1.2.2.tgz", + "integrity": "sha1-9M0L0KXo/h3yWq9boRiwmf2ZLVs=", "dev": true, - "license": "Apache-2.0", "dependencies": { "remedial": "^1.0.7", "remove-trailing-spaces": "^1.0.6" @@ -12089,12 +12669,10 @@ } }, "node_modules/json5": { - "version": "2.2.0", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", "dev": true, - "license": "MIT", - "dependencies": { - "minimist": "^1.2.5" - }, "bin": { "json5": "lib/cli.js" }, @@ -12104,8 +12682,9 @@ }, "node_modules/jsonfile": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, - "license": "MIT", "dependencies": { "universalify": "^2.0.0" }, @@ -12115,21 +12694,27 @@ }, "node_modules/jsonify": { "version": "0.0.0", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", + "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", "dev": true, - "license": "Public Domain" + "engines": { + "node": "*" + } }, "node_modules/jsonparse": { "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=", "dev": true, "engines": [ "node >= 0.2.0" - ], - "license": "MIT" + ] }, "node_modules/JSONStream": { "version": "1.3.5", + "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", + "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", "dev": true, - "license": "(MIT OR Apache-2.0)", "dependencies": { "jsonparse": "^1.2.0", "through": ">=2.2.7 <3" @@ -12143,8 +12728,9 @@ }, "node_modules/jsonwebtoken": { "version": "8.5.1", + "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz", + "integrity": "sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==", "dev": true, - "license": "MIT", "dependencies": { "jws": "^3.2.2", "lodash.includes": "^4.3.0", @@ -12164,16 +12750,18 @@ }, "node_modules/jsonwebtoken/node_modules/semver": { "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver" } }, "node_modules/jsprim": { "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "dev": true, - "license": "MIT", "dependencies": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", @@ -12186,8 +12774,9 @@ }, "node_modules/jwa": { "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", + "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", "dev": true, - "license": "MIT", "dependencies": { "buffer-equal-constant-time": "1.0.1", "ecdsa-sig-formatter": "1.0.11", @@ -12196,8 +12785,9 @@ }, "node_modules/jws": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", + "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", "dev": true, - "license": "MIT", "dependencies": { "jwa": "^1.4.1", "safe-buffer": "^5.0.1" @@ -12205,37 +12795,42 @@ }, "node_modules/keyv": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", + "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", "dev": true, - "license": "MIT", "dependencies": { "json-buffer": "3.0.0" } }, "node_modules/kind-of": { "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/kleur": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/kuler": { "version": "2.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", + "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==", + "dev": true }, "node_modules/latest-version": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", + "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", "dev": true, - "license": "MIT", "dependencies": { "package-json": "^6.3.0" }, @@ -12245,16 +12840,18 @@ }, "node_modules/lazy-ass": { "version": "1.6.0", + "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz", + "integrity": "sha1-eZllXoZGwX8In90YfRUNMyTVRRM=", "dev": true, - "license": "MIT", "engines": { "node": "> 0.8" } }, "node_modules/lerna": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lerna/-/lerna-4.0.0.tgz", + "integrity": "sha512-DD/i1znurfOmNJb0OBw66NmNqiM8kF6uIrzrJ0wGE3VNdzeOhz9ziWLYiRaZDGGwgbcjOo6eIfcx9O5Qynz+kg==", "dev": true, - "license": "MIT", "dependencies": { "@lerna/add": "4.0.0", "@lerna/bootstrap": "4.0.0", @@ -12284,16 +12881,18 @@ }, "node_modules/leven": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/levn": { "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, - "license": "MIT", "peer": true, "dependencies": { "prelude-ls": "^1.2.1", @@ -12305,8 +12904,9 @@ }, "node_modules/libnpmaccess": { "version": "4.0.3", + "resolved": "https://registry.npmjs.org/libnpmaccess/-/libnpmaccess-4.0.3.tgz", + "integrity": "sha512-sPeTSNImksm8O2b6/pf3ikv4N567ERYEpeKRPSmqlNt1dTZbvgpJIzg5vAhXHpw2ISBsELFRelk0jEahj1c6nQ==", "dev": true, - "license": "ISC", "dependencies": { "aproba": "^2.0.0", "minipass": "^3.1.1", @@ -12319,16 +12919,18 @@ }, "node_modules/libnpmaccess/node_modules/@tootallnate/once": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", "dev": true, - "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/libnpmaccess/node_modules/http-proxy-agent": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", "dev": true, - "license": "MIT", "dependencies": { "@tootallnate/once": "1", "agent-base": "6", @@ -12340,8 +12942,9 @@ }, "node_modules/libnpmaccess/node_modules/make-fetch-happen": { "version": "9.1.0", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", + "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", "dev": true, - "license": "ISC", "dependencies": { "agentkeepalive": "^4.1.3", "cacache": "^15.2.0", @@ -12366,8 +12969,9 @@ }, "node_modules/libnpmaccess/node_modules/npm-registry-fetch": { "version": "11.0.0", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-11.0.0.tgz", + "integrity": "sha512-jmlgSxoDNuhAtxUIG6pVwwtz840i994dL14FoNVZisrmZW5kWd63IUTNv1m/hyRSGSqWjCUp/YZlS1BJyNp9XA==", "dev": true, - "license": "ISC", "dependencies": { "make-fetch-happen": "^9.0.1", "minipass": "^3.1.3", @@ -12382,8 +12986,9 @@ }, "node_modules/libnpmaccess/node_modules/socks-proxy-agent": { "version": "6.1.1", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.1.1.tgz", + "integrity": "sha512-t8J0kG3csjA4g6FTbsMOWws+7R7vuRC8aQ/wy3/1OWmsgwA68zs/+cExQ0koSitUDXqhufF/YJr9wtNMZHw5Ew==", "dev": true, - "license": "MIT", "dependencies": { "agent-base": "^6.0.2", "debug": "^4.3.1", @@ -12395,8 +13000,9 @@ }, "node_modules/libnpmpublish": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/libnpmpublish/-/libnpmpublish-4.0.2.tgz", + "integrity": "sha512-+AD7A2zbVeGRCFI2aO//oUmapCwy7GHqPXFJh3qpToSRNU+tXKJ2YFUgjt04LPPAf2dlEH95s6EhIHM1J7bmOw==", "dev": true, - "license": "ISC", "dependencies": { "normalize-package-data": "^3.0.2", "npm-package-arg": "^8.1.2", @@ -12410,16 +13016,18 @@ }, "node_modules/libnpmpublish/node_modules/@tootallnate/once": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", "dev": true, - "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/libnpmpublish/node_modules/http-proxy-agent": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", "dev": true, - "license": "MIT", "dependencies": { "@tootallnate/once": "1", "agent-base": "6", @@ -12431,8 +13039,9 @@ }, "node_modules/libnpmpublish/node_modules/make-fetch-happen": { "version": "9.1.0", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", + "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", "dev": true, - "license": "ISC", "dependencies": { "agentkeepalive": "^4.1.3", "cacache": "^15.2.0", @@ -12457,8 +13066,9 @@ }, "node_modules/libnpmpublish/node_modules/npm-registry-fetch": { "version": "11.0.0", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-11.0.0.tgz", + "integrity": "sha512-jmlgSxoDNuhAtxUIG6pVwwtz840i994dL14FoNVZisrmZW5kWd63IUTNv1m/hyRSGSqWjCUp/YZlS1BJyNp9XA==", "dev": true, - "license": "ISC", "dependencies": { "make-fetch-happen": "^9.0.1", "minipass": "^3.1.3", @@ -12473,8 +13083,9 @@ }, "node_modules/libnpmpublish/node_modules/socks-proxy-agent": { "version": "6.1.1", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.1.1.tgz", + "integrity": "sha512-t8J0kG3csjA4g6FTbsMOWws+7R7vuRC8aQ/wy3/1OWmsgwA68zs/+cExQ0koSitUDXqhufF/YJr9wtNMZHw5Ew==", "dev": true, - "license": "MIT", "dependencies": { "agent-base": "^6.0.2", "debug": "^4.3.1", @@ -12486,13 +13097,15 @@ }, "node_modules/lines-and-columns": { "version": "1.2.4", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true }, "node_modules/listr": { "version": "0.14.3", + "resolved": "https://registry.npmjs.org/listr/-/listr-0.14.3.tgz", + "integrity": "sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==", "dev": true, - "license": "MIT", "dependencies": { "@samverschueren/stream-to-observable": "^0.3.0", "is-observable": "^1.1.0", @@ -12510,16 +13123,18 @@ }, "node_modules/listr-silent-renderer": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz", + "integrity": "sha1-kktaN1cVN3C/Go4/v3S4u/P5JC4=", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/listr-update-renderer": { "version": "0.5.0", + "resolved": "https://registry.npmjs.org/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz", + "integrity": "sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==", "dev": true, - "license": "MIT", "dependencies": { "chalk": "^1.1.3", "cli-truncate": "^0.2.1", @@ -12539,24 +13154,27 @@ }, "node_modules/listr-update-renderer/node_modules/ansi-regex": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/listr-update-renderer/node_modules/ansi-styles": { "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/listr-update-renderer/node_modules/chalk": { "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^2.2.1", "escape-string-regexp": "^1.0.2", @@ -12570,16 +13188,18 @@ }, "node_modules/listr-update-renderer/node_modules/escape-string-regexp": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.8.0" } }, "node_modules/listr-update-renderer/node_modules/figures": { "version": "1.7.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", + "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", "dev": true, - "license": "MIT", "dependencies": { "escape-string-regexp": "^1.0.5", "object-assign": "^4.1.0" @@ -12590,8 +13210,9 @@ }, "node_modules/listr-update-renderer/node_modules/log-symbols": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-1.0.2.tgz", + "integrity": "sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=", "dev": true, - "license": "MIT", "dependencies": { "chalk": "^1.0.0" }, @@ -12601,8 +13222,9 @@ }, "node_modules/listr-update-renderer/node_modules/strip-ansi": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "dev": true, - "license": "MIT", "dependencies": { "ansi-regex": "^2.0.0" }, @@ -12612,16 +13234,18 @@ }, "node_modules/listr-update-renderer/node_modules/supports-color": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.8.0" } }, "node_modules/listr-verbose-renderer": { "version": "0.5.0", + "resolved": "https://registry.npmjs.org/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz", + "integrity": "sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==", "dev": true, - "license": "MIT", "dependencies": { "chalk": "^2.4.1", "cli-cursor": "^2.1.0", @@ -12634,8 +13258,9 @@ }, "node_modules/listr-verbose-renderer/node_modules/ansi-styles": { "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^1.9.0" }, @@ -12645,8 +13270,9 @@ }, "node_modules/listr-verbose-renderer/node_modules/chalk": { "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -12658,8 +13284,9 @@ }, "node_modules/listr-verbose-renderer/node_modules/cli-cursor": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", "dev": true, - "license": "MIT", "dependencies": { "restore-cursor": "^2.0.0" }, @@ -12669,29 +13296,33 @@ }, "node_modules/listr-verbose-renderer/node_modules/color-convert": { "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, - "license": "MIT", "dependencies": { "color-name": "1.1.3" } }, "node_modules/listr-verbose-renderer/node_modules/color-name": { "version": "1.1.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true }, "node_modules/listr-verbose-renderer/node_modules/escape-string-regexp": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.8.0" } }, "node_modules/listr-verbose-renderer/node_modules/figures": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", "dev": true, - "license": "MIT", "dependencies": { "escape-string-regexp": "^1.0.5" }, @@ -12701,24 +13332,27 @@ }, "node_modules/listr-verbose-renderer/node_modules/has-flag": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/listr-verbose-renderer/node_modules/mimic-fn": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/listr-verbose-renderer/node_modules/onetime": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", "dev": true, - "license": "MIT", "dependencies": { "mimic-fn": "^1.0.0" }, @@ -12728,8 +13362,9 @@ }, "node_modules/listr-verbose-renderer/node_modules/restore-cursor": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", "dev": true, - "license": "MIT", "dependencies": { "onetime": "^2.0.0", "signal-exit": "^3.0.2" @@ -12740,8 +13375,9 @@ }, "node_modules/listr-verbose-renderer/node_modules/supports-color": { "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^3.0.0" }, @@ -12751,24 +13387,27 @@ }, "node_modules/listr/node_modules/is-stream": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/listr/node_modules/p-map": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/listr/node_modules/rxjs": { "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", "dev": true, - "license": "Apache-2.0", "dependencies": { "tslib": "^1.9.0" }, @@ -12778,13 +13417,15 @@ }, "node_modules/listr/node_modules/tslib": { "version": "1.14.1", - "dev": true, - "license": "0BSD" + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true }, "node_modules/load-json-file": { "version": "6.2.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-6.2.0.tgz", + "integrity": "sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==", "dev": true, - "license": "MIT", "dependencies": { "graceful-fs": "^4.1.15", "parse-json": "^5.0.0", @@ -12797,16 +13438,18 @@ }, "node_modules/load-json-file/node_modules/type-fest": { "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", "dev": true, - "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=8" } }, "node_modules/locate-path": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, - "license": "MIT", "dependencies": { "p-locate": "^4.1.0" }, @@ -12816,82 +13459,98 @@ }, "node_modules/lodash": { "version": "4.17.21", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true }, "node_modules/lodash._reinterpolate": { "version": "3.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=", + "dev": true }, "node_modules/lodash.get": { "version": "4.4.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", + "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=", + "dev": true }, "node_modules/lodash.includes": { "version": "4.3.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz", + "integrity": "sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8=", + "dev": true }, "node_modules/lodash.isboolean": { "version": "3.0.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=", + "dev": true }, "node_modules/lodash.isinteger": { "version": "4.0.4", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", + "integrity": "sha1-YZwK89A/iwTDH1iChAt3sRzWg0M=", + "dev": true }, "node_modules/lodash.ismatch": { "version": "4.4.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz", + "integrity": "sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc=", + "dev": true }, "node_modules/lodash.isnumber": { "version": "3.0.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=", + "dev": true }, "node_modules/lodash.isplainobject": { "version": "4.0.6", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=", + "dev": true }, "node_modules/lodash.isstring": { "version": "4.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=", + "dev": true }, "node_modules/lodash.memoize": { "version": "4.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", + "dev": true }, "node_modules/lodash.merge": { "version": "4.6.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true }, "node_modules/lodash.once": { "version": "4.1.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", + "integrity": "sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=", + "dev": true }, "node_modules/lodash.set": { "version": "4.3.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.set/-/lodash.set-4.3.2.tgz", + "integrity": "sha1-2HV7HagH3eJIFrDWqEvqGnYjCyM=", + "dev": true }, "node_modules/lodash.sortby": { "version": "4.7.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" }, "node_modules/lodash.template": { "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", + "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", "dev": true, - "license": "MIT", "dependencies": { "lodash._reinterpolate": "^3.0.0", "lodash.templatesettings": "^4.0.0" @@ -12899,16 +13558,18 @@ }, "node_modules/lodash.templatesettings": { "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", + "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", "dev": true, - "license": "MIT", "dependencies": { "lodash._reinterpolate": "^3.0.0" } }, "node_modules/log-symbols": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", "dev": true, - "license": "MIT", "dependencies": { "chalk": "^4.1.0", "is-unicode-supported": "^0.1.0" @@ -12922,8 +13583,9 @@ }, "node_modules/log-update": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-2.3.0.tgz", + "integrity": "sha1-iDKP19HOeTiykoN0bwsbwSayRwg=", "dev": true, - "license": "MIT", "dependencies": { "ansi-escapes": "^3.0.0", "cli-cursor": "^2.0.0", @@ -12935,24 +13597,27 @@ }, "node_modules/log-update/node_modules/ansi-escapes": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/log-update/node_modules/ansi-regex": { - "version": "3.0.0", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/log-update/node_modules/cli-cursor": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", "dev": true, - "license": "MIT", "dependencies": { "restore-cursor": "^2.0.0" }, @@ -12962,24 +13627,27 @@ }, "node_modules/log-update/node_modules/is-fullwidth-code-point": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/log-update/node_modules/mimic-fn": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/log-update/node_modules/onetime": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", "dev": true, - "license": "MIT", "dependencies": { "mimic-fn": "^1.0.0" }, @@ -12989,8 +13657,9 @@ }, "node_modules/log-update/node_modules/restore-cursor": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", "dev": true, - "license": "MIT", "dependencies": { "onetime": "^2.0.0", "signal-exit": "^3.0.2" @@ -13001,8 +13670,9 @@ }, "node_modules/log-update/node_modules/string-width": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", "dev": true, - "license": "MIT", "dependencies": { "is-fullwidth-code-point": "^2.0.0", "strip-ansi": "^4.0.0" @@ -13013,8 +13683,9 @@ }, "node_modules/log-update/node_modules/strip-ansi": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", "dev": true, - "license": "MIT", "dependencies": { "ansi-regex": "^3.0.0" }, @@ -13024,8 +13695,9 @@ }, "node_modules/log-update/node_modules/wrap-ansi": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz", + "integrity": "sha1-KIoE2H7aXChuBg3+jxNc6NAH+Lo=", "dev": true, - "license": "MIT", "dependencies": { "string-width": "^2.1.1", "strip-ansi": "^4.0.0" @@ -13065,7 +13737,8 @@ }, "node_modules/loglevel": { "version": "1.8.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz", + "integrity": "sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==", "engines": { "node": ">= 0.6.0" }, @@ -13076,12 +13749,14 @@ }, "node_modules/long": { "version": "4.0.0", - "license": "Apache-2.0" + "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", + "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==" }, "node_modules/loose-envify": { "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "dev": true, - "license": "MIT", "dependencies": { "js-tokens": "^3.0.0 || ^4.0.0" }, @@ -13091,31 +13766,35 @@ }, "node_modules/lower-case": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", "dev": true, - "license": "MIT", "dependencies": { "tslib": "^2.0.3" } }, "node_modules/lower-case-first": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case-first/-/lower-case-first-2.0.2.tgz", + "integrity": "sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==", "dev": true, - "license": "MIT", "dependencies": { "tslib": "^2.0.3" } }, "node_modules/lowercase-keys": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/lru-cache": { "version": "6.0.0", - "license": "ISC", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dependencies": { "yallist": "^4.0.0" }, @@ -13125,8 +13804,9 @@ }, "node_modules/make-dir": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, - "license": "MIT", "dependencies": { "semver": "^6.0.0" }, @@ -13139,20 +13819,23 @@ }, "node_modules/make-dir/node_modules/semver": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/make-error": { "version": "1.3.6", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true }, "node_modules/make-fetch-happen": { "version": "8.0.14", - "license": "ISC", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-8.0.14.tgz", + "integrity": "sha512-EsS89h6l4vbfJEtBZnENTOFk8mCRpY5ru36Xe5bcX1KYIli2mkSHqoFsp5O1wMDvTJJzxe/4THpCTtygjeeGWQ==", "dependencies": { "agentkeepalive": "^4.1.3", "cacache": "^15.0.5", @@ -13176,14 +13859,16 @@ }, "node_modules/make-fetch-happen/node_modules/@tootallnate/once": { "version": "1.1.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", "engines": { "node": ">= 6" } }, "node_modules/make-fetch-happen/node_modules/http-proxy-agent": { "version": "4.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", "dependencies": { "@tootallnate/once": "1", "agent-base": "6", @@ -13195,24 +13880,27 @@ }, "node_modules/makeerror": { "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "tmpl": "1.0.5" } }, "node_modules/map-cache": { "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/map-obj": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" }, @@ -13222,8 +13910,9 @@ }, "node_modules/map-visit": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", "dev": true, - "license": "MIT", "dependencies": { "object-visit": "^1.0.0" }, @@ -13233,16 +13922,18 @@ }, "node_modules/media-typer": { "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/meow": { "version": "8.1.2", + "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", + "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", "dev": true, - "license": "MIT", "dependencies": { "@types/minimist": "^1.2.0", "camelcase-keys": "^6.2.2", @@ -13265,13 +13956,15 @@ }, "node_modules/meow/node_modules/hosted-git-info": { "version": "2.8.9", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true }, "node_modules/meow/node_modules/read-pkg": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", "dev": true, - "license": "MIT", "dependencies": { "@types/normalize-package-data": "^2.4.0", "normalize-package-data": "^2.5.0", @@ -13284,8 +13977,9 @@ }, "node_modules/meow/node_modules/read-pkg-up": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", "dev": true, - "license": "MIT", "dependencies": { "find-up": "^4.1.0", "read-pkg": "^5.2.0", @@ -13300,16 +13994,18 @@ }, "node_modules/meow/node_modules/read-pkg-up/node_modules/type-fest": { "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", "dev": true, - "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=8" } }, "node_modules/meow/node_modules/read-pkg/node_modules/normalize-package-data": { "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", @@ -13319,24 +14015,27 @@ }, "node_modules/meow/node_modules/read-pkg/node_modules/type-fest": { "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", "dev": true, - "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=8" } }, "node_modules/meow/node_modules/semver": { "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver" } }, "node_modules/meow/node_modules/type-fest": { "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", "dev": true, - "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -13346,37 +14045,59 @@ }, "node_modules/merge-descriptors": { "version": "1.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", + "dev": true }, "node_modules/merge-stream": { "version": "2.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true }, "node_modules/merge2": { "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 8" } }, + "node_modules/meros": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/meros/-/meros-1.2.0.tgz", + "integrity": "sha512-3QRZIS707pZQnijHdhbttXRWwrHhZJ/gzolneoxKVz9N/xmsvY/7Ls8lpnI9gxbgxjcHsAVEW3mgwiZCo6kkJQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "@types/node": ">=12" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, "node_modules/methods": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/micromatch": { - "version": "4.0.4", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, - "license": "MIT", "dependencies": { - "braces": "^3.0.1", - "picomatch": "^2.2.3" + "braces": "^3.0.2", + "picomatch": "^2.3.1" }, "engines": { "node": ">=8.6" @@ -13384,8 +14105,9 @@ }, "node_modules/mime": { "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "dev": true, - "license": "MIT", "bin": { "mime": "cli.js" }, @@ -13394,17 +14116,19 @@ } }, "node_modules/mime-db": { - "version": "1.51.0", - "license": "MIT", + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "engines": { "node": ">= 0.6" } }, "node_modules/mime-types": { - "version": "2.1.34", - "license": "MIT", + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dependencies": { - "mime-db": "1.51.0" + "mime-db": "1.52.0" }, "engines": { "node": ">= 0.6" @@ -13412,47 +14136,54 @@ }, "node_modules/mimic-fn": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/mimic-response": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/min-indent": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/minimatch": { - "version": "3.0.4", - "license": "ISC", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-4.2.1.tgz", + "integrity": "sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g==", + "dev": true, "dependencies": { "brace-expansion": "^1.1.7" }, "engines": { - "node": "*" + "node": ">=10" } }, "node_modules/minimist": { - "version": "1.2.5", - "dev": true, - "license": "MIT" + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", + "dev": true }, "node_modules/minimist-options": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", "dev": true, - "license": "MIT", "dependencies": { "arrify": "^1.0.1", "is-plain-obj": "^1.1.0", @@ -13464,7 +14195,8 @@ }, "node_modules/minipass": { "version": "3.1.6", - "license": "ISC", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz", + "integrity": "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==", "dependencies": { "yallist": "^4.0.0" }, @@ -13474,7 +14206,8 @@ }, "node_modules/minipass-collect": { "version": "1.0.2", - "license": "ISC", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", "dependencies": { "minipass": "^3.0.0" }, @@ -13484,7 +14217,8 @@ }, "node_modules/minipass-fetch": { "version": "1.4.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz", + "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==", "dependencies": { "minipass": "^3.1.0", "minipass-sized": "^1.0.3", @@ -13499,7 +14233,8 @@ }, "node_modules/minipass-flush": { "version": "1.0.5", - "license": "ISC", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", "dependencies": { "minipass": "^3.0.0" }, @@ -13509,8 +14244,9 @@ }, "node_modules/minipass-json-stream": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", + "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==", "dev": true, - "license": "MIT", "dependencies": { "jsonparse": "^1.3.1", "minipass": "^3.0.0" @@ -13518,7 +14254,8 @@ }, "node_modules/minipass-pipeline": { "version": "1.2.4", - "license": "ISC", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", "dependencies": { "minipass": "^3.0.0" }, @@ -13528,7 +14265,8 @@ }, "node_modules/minipass-sized": { "version": "1.0.3", - "license": "ISC", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", "dependencies": { "minipass": "^3.0.0" }, @@ -13538,7 +14276,8 @@ }, "node_modules/minizlib": { "version": "2.1.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", "dependencies": { "minipass": "^3.0.0", "yallist": "^4.0.0" @@ -13549,8 +14288,9 @@ }, "node_modules/mixin-deep": { "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", "dev": true, - "license": "MIT", "dependencies": { "for-in": "^1.0.2", "is-extendable": "^1.0.1" @@ -13559,31 +14299,10 @@ "node": ">=0.10.0" } }, - "node_modules/mixin-deep/node_modules/is-extendable": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mixin-deep/node_modules/is-plain-object": { - "version": "2.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/mkdirp": { "version": "1.0.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "bin": { "mkdirp": "bin/cmd.js" }, @@ -13593,8 +14312,9 @@ }, "node_modules/mkdirp-infer-owner": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mkdirp-infer-owner/-/mkdirp-infer-owner-2.0.0.tgz", + "integrity": "sha512-sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw==", "dev": true, - "license": "ISC", "dependencies": { "chownr": "^2.0.0", "infer-owner": "^1.0.4", @@ -13606,8 +14326,9 @@ }, "node_modules/mocked-env": { "version": "1.3.5", + "resolved": "https://registry.npmjs.org/mocked-env/-/mocked-env-1.3.5.tgz", + "integrity": "sha512-GyYY6ynVOdEoRlaGpaq8UYwdWkvrsU2xRme9B+WPSuJcNjh17+3QIxSYU6zwee0SbehhV6f06VZ4ahjG+9zdrA==", "dev": true, - "license": "MIT", "dependencies": { "check-more-types": "2.24.0", "debug": "4.3.2", @@ -13620,8 +14341,9 @@ }, "node_modules/mocked-env/node_modules/debug": { "version": "4.3.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", + "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.1.2" }, @@ -13636,16 +14358,18 @@ }, "node_modules/modify-values": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz", + "integrity": "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/moment": { - "version": "2.29.1", + "version": "2.29.2", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.2.tgz", + "integrity": "sha512-UgzG4rvxYpN15jgCmVJwac49h9ly9NurikMWGPdVxm8GZD6XjkKPxDTjQQ43gtGgnV3X0cAyWDdP2Wexoquifg==", "dev": true, - "license": "MIT", "optional": true, "engines": { "node": "*" @@ -13653,12 +14377,14 @@ }, "node_modules/ms": { "version": "2.1.2", - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/multimatch": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-5.0.0.tgz", + "integrity": "sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==", "dev": true, - "license": "MIT", "dependencies": { "@types/minimatch": "^3.0.3", "array-differ": "^3.0.0", @@ -13675,21 +14401,36 @@ }, "node_modules/multimatch/node_modules/arrify": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, + "node_modules/multimatch/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, "node_modules/mute-stream": { "version": "0.0.8", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true }, "node_modules/mv": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz", + "integrity": "sha1-rmzg1vbV4KT32JN5jQPB6pVZtqI=", "dev": true, - "license": "MIT", "optional": true, "dependencies": { "mkdirp": "~0.5.1", @@ -13702,8 +14443,9 @@ }, "node_modules/mv/node_modules/glob": { "version": "6.0.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", + "integrity": "sha1-DwiGD2oVUSey+t1PnOJLGqtuTSI=", "dev": true, - "license": "ISC", "optional": true, "dependencies": { "inflight": "^1.0.4", @@ -13716,13 +14458,27 @@ "node": "*" } }, + "node_modules/mv/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "optional": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, "node_modules/mv/node_modules/mkdirp": { - "version": "0.5.5", + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dev": true, - "license": "MIT", "optional": true, "dependencies": { - "minimist": "^1.2.5" + "minimist": "^1.2.6" }, "bin": { "mkdirp": "bin/cmd.js" @@ -13730,8 +14486,9 @@ }, "node_modules/mv/node_modules/rimraf": { "version": "2.4.5", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz", + "integrity": "sha1-7nEM5dk6j9uFb7Xqj/Di11k0sto=", "dev": true, - "license": "ISC", "optional": true, "dependencies": { "glob": "^6.0.1" @@ -13742,14 +14499,16 @@ }, "node_modules/nan": { "version": "2.15.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", + "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==", "dev": true, - "license": "MIT", "optional": true }, "node_modules/nanomatch": { "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", "dev": true, - "license": "MIT", "dependencies": { "arr-diff": "^4.0.0", "array-unique": "^0.3.2", @@ -13767,88 +14526,48 @@ "node": ">=0.10.0" } }, - "node_modules/nanomatch/node_modules/define-property": { - "version": "2.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nanomatch/node_modules/extend-shallow": { - "version": "3.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nanomatch/node_modules/is-extendable": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nanomatch/node_modules/is-plain-object": { - "version": "2.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/natural-compare": { "version": "1.4.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true }, "node_modules/ncp": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz", + "integrity": "sha1-GVoh1sRuNh0vsSgbo4uR6d9727M=", "dev": true, - "license": "MIT", "optional": true, "bin": { "ncp": "bin/ncp" } }, "node_modules/negotiator": { - "version": "0.6.2", + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/neo-async": { "version": "2.6.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true }, "node_modules/nice-try": { "version": "1.0.5", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true }, "node_modules/no-case": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", "dev": true, - "license": "MIT", "dependencies": { "lower-case": "^2.0.2", "tslib": "^2.0.3" @@ -13871,6 +14590,8 @@ }, "node_modules/node-domexception": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", "dev": true, "funding": [ { @@ -13882,14 +14603,14 @@ "url": "https://paypal.me/jimmywarting" } ], - "license": "MIT", "engines": { "node": ">=10.5.0" } }, "node_modules/node-fetch": { "version": "2.6.7", - "license": "MIT", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", "dependencies": { "whatwg-url": "^5.0.0" }, @@ -13907,15 +14628,18 @@ }, "node_modules/node-fetch/node_modules/tr46": { "version": "0.0.3", - "license": "MIT" + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=" }, "node_modules/node-fetch/node_modules/webidl-conversions": { "version": "3.0.1", - "license": "BSD-2-Clause" + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=" }, "node_modules/node-fetch/node_modules/whatwg-url": { "version": "5.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=", "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" @@ -13923,8 +14647,9 @@ }, "node_modules/node-gyp": { "version": "5.1.1", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-5.1.1.tgz", + "integrity": "sha512-WH0WKGi+a4i4DUt2mHnvocex/xPLp9pYt5R6M2JdFB7pJ7Z34hveZ4nDTGTiLXCkitA9T8HFZjhinBCiVHYcWw==", "dev": true, - "license": "MIT", "dependencies": { "env-paths": "^2.2.0", "glob": "^7.1.4", @@ -13947,21 +14672,24 @@ }, "node_modules/node-gyp/node_modules/chownr": { "version": "1.1.4", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true }, "node_modules/node-gyp/node_modules/fs-minipass": { "version": "1.2.7", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", + "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", "dev": true, - "license": "ISC", "dependencies": { "minipass": "^2.6.0" } }, "node_modules/node-gyp/node_modules/minipass": { "version": "2.9.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", + "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", "dev": true, - "license": "ISC", "dependencies": { "safe-buffer": "^5.1.2", "yallist": "^3.0.0" @@ -13969,18 +14697,20 @@ }, "node_modules/node-gyp/node_modules/minizlib": { "version": "1.3.3", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz", + "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", "dev": true, - "license": "MIT", "dependencies": { "minipass": "^2.9.0" } }, "node_modules/node-gyp/node_modules/mkdirp": { - "version": "0.5.5", + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dev": true, - "license": "MIT", "dependencies": { - "minimist": "^1.2.5" + "minimist": "^1.2.6" }, "bin": { "mkdirp": "bin/cmd.js" @@ -13988,8 +14718,9 @@ }, "node_modules/node-gyp/node_modules/rimraf": { "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", "dev": true, - "license": "ISC", "dependencies": { "glob": "^7.1.3" }, @@ -13999,16 +14730,18 @@ }, "node_modules/node-gyp/node_modules/semver": { "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver" } }, "node_modules/node-gyp/node_modules/tar": { "version": "4.4.19", + "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.19.tgz", + "integrity": "sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==", "dev": true, - "license": "ISC", "dependencies": { "chownr": "^1.1.4", "fs-minipass": "^1.2.7", @@ -14024,8 +14757,9 @@ }, "node_modules/node-gyp/node_modules/which": { "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, - "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -14035,18 +14769,21 @@ }, "node_modules/node-gyp/node_modules/yallist": { "version": "3.1.1", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true }, "node_modules/node-int64": { "version": "0.4.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=", + "dev": true }, "node_modules/node-notifier": { "version": "8.0.2", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.2.tgz", + "integrity": "sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==", "dev": true, - "license": "MIT", "optional": true, "dependencies": { "growly": "^1.3.0", @@ -14058,14 +14795,16 @@ } }, "node_modules/node-releases": { - "version": "2.0.1", - "dev": true, - "license": "MIT" + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.2.tgz", + "integrity": "sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==", + "dev": true }, "node_modules/nopt": { "version": "4.0.3", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz", + "integrity": "sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==", "dev": true, - "license": "ISC", "dependencies": { "abbrev": "1", "osenv": "^0.1.4" @@ -14076,8 +14815,9 @@ }, "node_modules/normalize-package-data": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "hosted-git-info": "^4.0.1", "is-core-module": "^2.5.0", @@ -14090,32 +14830,36 @@ }, "node_modules/normalize-path": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/normalize-url": { "version": "4.5.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz", + "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/npm-bundled": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz", + "integrity": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==", "dev": true, - "license": "ISC", "dependencies": { "npm-normalize-package-bin": "^1.0.1" } }, "node_modules/npm-install-checks": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-4.0.0.tgz", + "integrity": "sha512-09OmyDkNLYwqKPOnbI8exiOZU2GVVmQp7tgez2BPi5OZC8M82elDAps7sxC4l//uSUtotWqoEIDwjRvWH4qz8w==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "semver": "^7.1.1" }, @@ -14125,8 +14869,9 @@ }, "node_modules/npm-lifecycle": { "version": "3.1.5", + "resolved": "https://registry.npmjs.org/npm-lifecycle/-/npm-lifecycle-3.1.5.tgz", + "integrity": "sha512-lDLVkjfZmvmfvpvBzA4vzee9cn+Me4orq0QF8glbswJVEbIcSNWib7qGOffolysc3teCqbbPZZkzbr3GQZTL1g==", "dev": true, - "license": "Artistic-2.0", "dependencies": { "byline": "^5.0.0", "graceful-fs": "^4.1.15", @@ -14140,16 +14885,18 @@ }, "node_modules/npm-lifecycle/node_modules/resolve-from": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/npm-lifecycle/node_modules/which": { "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, - "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -14159,13 +14906,15 @@ }, "node_modules/npm-normalize-package-bin": { "version": "1.0.1", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", + "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==", + "dev": true }, "node_modules/npm-package-arg": { "version": "8.1.5", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-8.1.5.tgz", + "integrity": "sha512-LhgZrg0n0VgvzVdSm1oiZworPbTxYHUJCgtsJW8mGvlDpxTM1vSJc3m5QZeUkhAHIzbz3VCHd/R4osi1L1Tg/Q==", "dev": true, - "license": "ISC", "dependencies": { "hosted-git-info": "^4.0.1", "semver": "^7.3.4", @@ -14177,8 +14926,9 @@ }, "node_modules/npm-packlist": { "version": "2.2.2", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-2.2.2.tgz", + "integrity": "sha512-Jt01acDvJRhJGthnUJVF/w6gumWOZxO7IkpY/lsX9//zqQgnF7OJaxgQXcerd4uQOLu7W5bkb4mChL9mdfm+Zg==", "dev": true, - "license": "ISC", "dependencies": { "glob": "^7.1.6", "ignore-walk": "^3.0.3", @@ -14194,8 +14944,9 @@ }, "node_modules/npm-pick-manifest": { "version": "6.1.1", + "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-6.1.1.tgz", + "integrity": "sha512-dBsdBtORT84S8V8UTad1WlUyKIY9iMsAmqxHbLdeEeBNMLQDlDWWra3wYUx9EBEIiG/YwAy0XyNHDd2goAsfuA==", "dev": true, - "license": "ISC", "dependencies": { "npm-install-checks": "^4.0.0", "npm-normalize-package-bin": "^1.0.1", @@ -14205,8 +14956,9 @@ }, "node_modules/npm-registry-fetch": { "version": "9.0.0", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-9.0.0.tgz", + "integrity": "sha512-PuFYYtnQ8IyVl6ib9d3PepeehcUeHN9IO5N/iCRhyg9tStQcqGQBRVHmfmMWPDERU3KwZoHFvbJ4FPXPspvzbA==", "dev": true, - "license": "ISC", "dependencies": { "@npmcli/ci-detect": "^1.0.0", "lru-cache": "^6.0.0", @@ -14223,8 +14975,9 @@ }, "node_modules/npm-run-path": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, - "license": "MIT", "dependencies": { "path-key": "^3.0.0" }, @@ -14234,8 +14987,9 @@ }, "node_modules/npmlog": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", + "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", "dev": true, - "license": "ISC", "dependencies": { "are-we-there-yet": "~1.1.2", "console-control-strings": "~1.1.0", @@ -14245,42 +14999,48 @@ }, "node_modules/nullthrows": { "version": "1.1.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz", + "integrity": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==", + "dev": true }, "node_modules/number-is-nan": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/nwsapi": { "version": "2.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", + "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==", + "dev": true }, "node_modules/oauth-sign": { "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", "dev": true, - "license": "Apache-2.0", "engines": { "node": "*" } }, "node_modules/object-assign": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/object-copy": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", "dev": true, - "license": "MIT", "dependencies": { "copy-descriptor": "^0.1.0", "define-property": "^0.2.5", @@ -14292,8 +15052,9 @@ }, "node_modules/object-copy/node_modules/define-property": { "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "dev": true, - "license": "MIT", "dependencies": { "is-descriptor": "^0.1.0" }, @@ -14303,8 +15064,9 @@ }, "node_modules/object-copy/node_modules/is-accessor-descriptor": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", "dev": true, - "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -14314,8 +15076,9 @@ }, "node_modules/object-copy/node_modules/is-data-descriptor": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", "dev": true, - "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -14325,8 +15088,9 @@ }, "node_modules/object-copy/node_modules/is-descriptor": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "dev": true, - "license": "MIT", "dependencies": { "is-accessor-descriptor": "^0.1.6", "is-data-descriptor": "^0.1.4", @@ -14338,16 +15102,18 @@ }, "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/object-copy/node_modules/kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, - "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -14357,14 +15123,16 @@ }, "node_modules/object-inspect": { "version": "1.12.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz", + "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/object-is": { "version": "1.1.5", - "license": "MIT", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3" @@ -14378,15 +15146,17 @@ }, "node_modules/object-keys": { "version": "1.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "engines": { "node": ">= 0.4" } }, "node_modules/object-visit": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", "dev": true, - "license": "MIT", "dependencies": { "isobject": "^3.0.0" }, @@ -14396,7 +15166,8 @@ }, "node_modules/object.assign": { "version": "4.1.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", "dependencies": { "call-bind": "^1.0.0", "define-properties": "^1.1.3", @@ -14412,8 +15183,9 @@ }, "node_modules/object.getownpropertydescriptors": { "version": "2.1.3", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz", + "integrity": "sha512-VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3", @@ -14428,8 +15200,9 @@ }, "node_modules/object.pick": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", "dev": true, - "license": "MIT", "dependencies": { "isobject": "^3.0.1" }, @@ -14438,9 +15211,10 @@ } }, "node_modules/on-finished": { - "version": "2.3.0", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dev": true, - "license": "MIT", "dependencies": { "ee-first": "1.1.1" }, @@ -14450,23 +15224,26 @@ }, "node_modules/once": { "version": "1.4.0", - "license": "ISC", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", "dependencies": { "wrappy": "1" } }, "node_modules/one-time": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", + "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", "dev": true, - "license": "MIT", "dependencies": { "fn.name": "1.x.x" } }, "node_modules/onetime": { "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, - "license": "MIT", "dependencies": { "mimic-fn": "^2.1.0" }, @@ -14479,8 +15256,9 @@ }, "node_modules/optimism": { "version": "0.16.1", + "resolved": "https://registry.npmjs.org/optimism/-/optimism-0.16.1.tgz", + "integrity": "sha512-64i+Uw3otrndfq5kaoGNoY7pvOhSsjFEN4bdEFh80MWVk/dbgJfMv7VFDeCT8LxNAlEVhQmdVEbfE7X2nWNIIg==", "dev": true, - "license": "MIT", "dependencies": { "@wry/context": "^0.6.0", "@wry/trie": "^0.3.0" @@ -14488,8 +15266,9 @@ }, "node_modules/optionator": { "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", "dev": true, - "license": "MIT", "peer": true, "dependencies": { "deep-is": "^0.1.3", @@ -14505,8 +15284,9 @@ }, "node_modules/ora": { "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", "dev": true, - "license": "MIT", "dependencies": { "bl": "^4.1.0", "chalk": "^4.1.0", @@ -14527,24 +15307,27 @@ }, "node_modules/os-homedir": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/os-tmpdir": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/osenv": { "version": "0.1.5", + "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", + "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", "dev": true, - "license": "ISC", "dependencies": { "os-homedir": "^1.0.0", "os-tmpdir": "^1.0.0" @@ -14552,16 +15335,18 @@ }, "node_modules/p-cancelable": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", + "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/p-each-series": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz", + "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" }, @@ -14571,16 +15356,18 @@ }, "node_modules/p-finally": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/p-limit": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, - "license": "MIT", "dependencies": { "yocto-queue": "^0.1.0" }, @@ -14593,8 +15380,9 @@ }, "node_modules/p-locate": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, - "license": "MIT", "dependencies": { "p-limit": "^2.2.0" }, @@ -14604,8 +15392,9 @@ }, "node_modules/p-locate/node_modules/p-limit": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, - "license": "MIT", "dependencies": { "p-try": "^2.0.0" }, @@ -14618,7 +15407,8 @@ }, "node_modules/p-map": { "version": "4.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", "dependencies": { "aggregate-error": "^3.0.0" }, @@ -14631,16 +15421,18 @@ }, "node_modules/p-map-series": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map-series/-/p-map-series-2.1.0.tgz", + "integrity": "sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/p-pipe": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-pipe/-/p-pipe-3.1.0.tgz", + "integrity": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" }, @@ -14650,8 +15442,9 @@ }, "node_modules/p-queue": { "version": "6.6.2", + "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz", + "integrity": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==", "dev": true, - "license": "MIT", "dependencies": { "eventemitter3": "^4.0.4", "p-timeout": "^3.2.0" @@ -14665,16 +15458,18 @@ }, "node_modules/p-reduce": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-2.1.0.tgz", + "integrity": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/p-timeout": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", + "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", "dev": true, - "license": "MIT", "dependencies": { "p-finally": "^1.0.0" }, @@ -14684,16 +15479,18 @@ }, "node_modules/p-try": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/p-waterfall": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/p-waterfall/-/p-waterfall-2.1.1.tgz", + "integrity": "sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==", "dev": true, - "license": "MIT", "dependencies": { "p-reduce": "^2.0.0" }, @@ -14706,8 +15503,9 @@ }, "node_modules/package-json": { "version": "6.5.0", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", + "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", "dev": true, - "license": "MIT", "dependencies": { "got": "^9.6.0", "registry-auth-token": "^4.0.0", @@ -14720,16 +15518,18 @@ }, "node_modules/package-json/node_modules/semver": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/pacote": { "version": "11.3.5", + "resolved": "https://registry.npmjs.org/pacote/-/pacote-11.3.5.tgz", + "integrity": "sha512-fT375Yczn4zi+6Hkk2TBe1x1sP8FgFsEIZ2/iWaXY2r/NkhDJfxbcn5paz1+RTFCyNf+dPnaoBDJoAxXSU8Bkg==", "dev": true, - "license": "ISC", "dependencies": { "@npmcli/git": "^2.1.0", "@npmcli/installed-package-contents": "^1.0.6", @@ -14760,16 +15560,18 @@ }, "node_modules/pacote/node_modules/@tootallnate/once": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", "dev": true, - "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/pacote/node_modules/http-proxy-agent": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", "dev": true, - "license": "MIT", "dependencies": { "@tootallnate/once": "1", "agent-base": "6", @@ -14781,8 +15583,9 @@ }, "node_modules/pacote/node_modules/make-fetch-happen": { "version": "9.1.0", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", + "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", "dev": true, - "license": "ISC", "dependencies": { "agentkeepalive": "^4.1.3", "cacache": "^15.2.0", @@ -14807,8 +15610,9 @@ }, "node_modules/pacote/node_modules/npm-registry-fetch": { "version": "11.0.0", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-11.0.0.tgz", + "integrity": "sha512-jmlgSxoDNuhAtxUIG6pVwwtz840i994dL14FoNVZisrmZW5kWd63IUTNv1m/hyRSGSqWjCUp/YZlS1BJyNp9XA==", "dev": true, - "license": "ISC", "dependencies": { "make-fetch-happen": "^9.0.1", "minipass": "^3.1.3", @@ -14823,8 +15627,9 @@ }, "node_modules/pacote/node_modules/socks-proxy-agent": { "version": "6.1.1", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.1.1.tgz", + "integrity": "sha512-t8J0kG3csjA4g6FTbsMOWws+7R7vuRC8aQ/wy3/1OWmsgwA68zs/+cExQ0koSitUDXqhufF/YJr9wtNMZHw5Ew==", "dev": true, - "license": "MIT", "dependencies": { "agent-base": "^6.0.2", "debug": "^4.3.1", @@ -14836,8 +15641,9 @@ }, "node_modules/param-case": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", "dev": true, - "license": "MIT", "dependencies": { "dot-case": "^3.0.4", "tslib": "^2.0.3" @@ -14845,8 +15651,9 @@ }, "node_modules/parent-module": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, - "license": "MIT", "dependencies": { "callsites": "^3.0.0" }, @@ -14856,8 +15663,9 @@ }, "node_modules/parse-filepath": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", + "integrity": "sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=", "dev": true, - "license": "MIT", "dependencies": { "is-absolute": "^1.0.0", "map-cache": "^0.2.0", @@ -14869,8 +15677,9 @@ }, "node_modules/parse-json": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, - "license": "MIT", "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", @@ -14886,8 +15695,9 @@ }, "node_modules/parse-path": { "version": "4.0.3", + "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-4.0.3.tgz", + "integrity": "sha512-9Cepbp2asKnWTJ9x2kpw6Fe8y9JDbqwahGCTvklzd/cEq5C5JC59x2Xb0Kx+x0QZ8bvNquGO8/BWP0cwBHzSAA==", "dev": true, - "license": "MIT", "dependencies": { "is-ssh": "^1.3.0", "protocols": "^1.4.0", @@ -14897,8 +15707,9 @@ }, "node_modules/parse-url": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-6.0.0.tgz", + "integrity": "sha512-cYyojeX7yIIwuJzledIHeLUBVJ6COVLeT4eF+2P6aKVzwvgKQPndCBv3+yQ7pcWjqToYwaligxzSYNNmGoMAvw==", "dev": true, - "license": "MIT", "dependencies": { "is-ssh": "^1.3.0", "normalize-url": "^6.1.0", @@ -14908,8 +15719,9 @@ }, "node_modules/parse-url/node_modules/normalize-url": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -14919,21 +15731,24 @@ }, "node_modules/parse5": { "version": "6.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true }, "node_modules/parseurl": { "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/pascal-case": { "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", "dev": true, - "license": "MIT", "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3" @@ -14941,16 +15756,18 @@ }, "node_modules/pascalcase": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/path-case": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", + "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", "dev": true, - "license": "MIT", "dependencies": { "dot-case": "^3.0.4", "tslib": "^2.0.3" @@ -14958,36 +15775,41 @@ }, "node_modules/path-exists": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/path-is-absolute": { "version": "1.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", "engines": { "node": ">=0.10.0" } }, "node_modules/path-key": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/path-parse": { "version": "1.0.7", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true }, "node_modules/path-root": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", + "integrity": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=", "dev": true, - "license": "MIT", "dependencies": { "path-root-regex": "^0.1.0" }, @@ -14997,39 +15819,45 @@ }, "node_modules/path-root-regex": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", + "integrity": "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/path-to-regexp": { "version": "0.1.7", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", + "dev": true }, "node_modules/path-type": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/performance-now": { "version": "2.1.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "dev": true }, "node_modules/picocolors": { "version": "1.0.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true }, "node_modules/picomatch": { "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true, - "license": "MIT", "engines": { "node": ">=8.6" }, @@ -15039,8 +15867,9 @@ }, "node_modules/pify": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-5.0.0.tgz", + "integrity": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -15049,17 +15878,19 @@ } }, "node_modules/pirates": { - "version": "4.0.4", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", + "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", "dev": true, - "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/pkg-dir": { "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, - "license": "MIT", "dependencies": { "find-up": "^4.0.0" }, @@ -15069,16 +15900,18 @@ }, "node_modules/posix-character-classes": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/prelude-ls": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, - "license": "MIT", "peer": true, "engines": { "node": ">= 0.8.0" @@ -15086,8 +15919,9 @@ }, "node_modules/prepend-http": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } @@ -15122,7 +15956,8 @@ }, "node_modules/pretty-format/node_modules/ansi-styles": { "version": "5.2.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "engines": { "node": ">=10" }, @@ -15132,37 +15967,33 @@ }, "node_modules/pretty-format/node_modules/react-is": { "version": "17.0.2", - "license": "MIT" + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" }, "node_modules/process-nextick-args": { "version": "2.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/progress": { - "version": "2.0.3", - "dev": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">=0.4.0" - } + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true }, "node_modules/promise": { "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", "dev": true, - "license": "MIT", "dependencies": { "asap": "~2.0.3" } }, "node_modules/promise-inflight": { "version": "1.0.1", - "license": "ISC" + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" }, "node_modules/promise-retry": { "version": "2.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", + "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", "dependencies": { "err-code": "^2.0.2", "retry": "^0.12.0" @@ -15173,15 +16004,17 @@ }, "node_modules/promise-retry/node_modules/retry": { "version": "0.12.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", "engines": { "node": ">= 4" } }, "node_modules/prompts": { "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, - "license": "MIT", "dependencies": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" @@ -15192,16 +16025,18 @@ }, "node_modules/promzard": { "version": "0.3.0", + "resolved": "https://registry.npmjs.org/promzard/-/promzard-0.3.0.tgz", + "integrity": "sha1-JqXW7ox97kyxIggwWs+5O6OCqe4=", "dev": true, - "license": "ISC", "dependencies": { "read": "1" } }, "node_modules/prop-types": { "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", "dev": true, - "license": "MIT", "dependencies": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", @@ -15210,22 +16045,25 @@ }, "node_modules/propagate": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/propagate/-/propagate-2.0.1.tgz", + "integrity": "sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag==", "dev": true, - "license": "MIT", "engines": { "node": ">= 8" } }, "node_modules/proto-list": { "version": "1.2.4", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=", + "dev": true }, "node_modules/protobufjs": { "version": "6.11.2", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.2.tgz", + "integrity": "sha512-4BQJoPooKJl2G9j3XftkIXjoC9C0Av2NOrWmbLWT1vH32GcSUHjM0Arra6UfTsVyfMAuFzaLucXn1sadxJydAw==", "dev": true, "hasInstallScript": true, - "license": "BSD-3-Clause", "dependencies": { "@protobufjs/aspromise": "^1.1.2", "@protobufjs/base64": "^1.1.2", @@ -15247,19 +16085,22 @@ } }, "node_modules/protobufjs/node_modules/@types/node": { - "version": "17.0.8", - "dev": true, - "license": "MIT" + "version": "17.0.23", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.23.tgz", + "integrity": "sha512-UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw==", + "dev": true }, "node_modules/protocols": { "version": "1.4.8", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/protocols/-/protocols-1.4.8.tgz", + "integrity": "sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg==", + "dev": true }, "node_modules/proxy-addr": { "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dev": true, - "license": "MIT", "dependencies": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" @@ -15270,13 +16111,15 @@ }, "node_modules/psl": { "version": "1.8.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", + "dev": true }, "node_modules/pump": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", "dev": true, - "license": "MIT", "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" @@ -15284,25 +16127,31 @@ }, "node_modules/punycode": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/q": { "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.6.0", "teleport": ">=0.2.0" } }, "node_modules/qs": { - "version": "6.9.6", + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", "dev": true, - "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.4" + }, "engines": { "node": ">=0.6" }, @@ -15312,8 +16161,9 @@ }, "node_modules/query-string": { "version": "6.14.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-6.14.1.tgz", + "integrity": "sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==", "dev": true, - "license": "MIT", "dependencies": { "decode-uri-component": "^0.2.0", "filter-obj": "^1.1.0", @@ -15329,6 +16179,8 @@ }, "node_modules/queue-microtask": { "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true, "funding": [ { @@ -15343,37 +16195,40 @@ "type": "consulting", "url": "https://feross.org/support" } - ], - "license": "MIT" + ] }, "node_modules/quick-lru": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/ramda": { "version": "0.27.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.27.1.tgz", + "integrity": "sha512-PgIdVpn5y5Yns8vqb8FzBUEYn98V3xcPgawAkkgj0YJ0qDsnHCiNmZYfOGMgOvoB0eWFLpYbhxUR3mxfDIMvpw==", + "dev": true }, "node_modules/range-parser": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/raw-body": { - "version": "2.4.2", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", "dev": true, - "license": "MIT", "dependencies": { - "bytes": "3.1.1", - "http-errors": "1.8.1", + "bytes": "3.1.2", + "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" }, @@ -15383,8 +16238,9 @@ }, "node_modules/rc": { "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", "dev": true, - "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", "dependencies": { "deep-extend": "^0.6.0", "ini": "~1.3.0", @@ -15397,21 +16253,24 @@ }, "node_modules/rc/node_modules/strip-json-comments": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/react-is": { "version": "16.13.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "dev": true }, "node_modules/read": { "version": "1.0.7", + "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", + "integrity": "sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=", "dev": true, - "license": "ISC", "dependencies": { "mute-stream": "~0.0.4" }, @@ -15421,13 +16280,15 @@ }, "node_modules/read-cmd-shim": { "version": "2.0.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/read-cmd-shim/-/read-cmd-shim-2.0.0.tgz", + "integrity": "sha512-HJpV9bQpkl6KwjxlJcBoqu9Ba0PQg8TqSNIOrulGt54a0uup0HtevreFHzYzkm0lpnleRdNBzXznKrgxglEHQw==", + "dev": true }, "node_modules/read-package-json": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-3.0.1.tgz", + "integrity": "sha512-aLcPqxovhJTVJcsnROuuzQvv6oziQx4zd3JvG0vGCL5MjTONUc4uJ90zCBC6R7W7oUKBNoR/F8pkyfVwlbxqng==", "dev": true, - "license": "ISC", "dependencies": { "glob": "^7.1.1", "json-parse-even-better-errors": "^2.3.0", @@ -15440,8 +16301,9 @@ }, "node_modules/read-package-json-fast": { "version": "2.0.3", + "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-2.0.3.tgz", + "integrity": "sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==", "dev": true, - "license": "ISC", "dependencies": { "json-parse-even-better-errors": "^2.3.0", "npm-normalize-package-bin": "^1.0.1" @@ -15452,8 +16314,10 @@ }, "node_modules/read-package-tree": { "version": "5.3.1", + "resolved": "https://registry.npmjs.org/read-package-tree/-/read-package-tree-5.3.1.tgz", + "integrity": "sha512-mLUDsD5JVtlZxjSlPPx1RETkNjjvQYuweKwNVt1Sn8kP5Jh44pvYuUHCp6xSVDZWbNxVxG5lyZJ921aJH61sTw==", + "deprecated": "The functionality that this package provided is now in @npmcli/arborist", "dev": true, - "license": "ISC", "dependencies": { "read-package-json": "^2.0.0", "readdir-scoped-modules": "^1.0.0", @@ -15462,13 +16326,15 @@ }, "node_modules/read-package-tree/node_modules/hosted-git-info": { "version": "2.8.9", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true }, "node_modules/read-package-tree/node_modules/normalize-package-data": { "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", @@ -15478,8 +16344,9 @@ }, "node_modules/read-package-tree/node_modules/read-package-json": { "version": "2.1.2", + "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-2.1.2.tgz", + "integrity": "sha512-D1KmuLQr6ZSJS0tW8hf3WGpRlwszJOXZ3E8Yd/DNRaM5d+1wVRZdHlpGBLAuovjr28LbWvjpWkBHMxpRGGjzNA==", "dev": true, - "license": "ISC", "dependencies": { "glob": "^7.1.1", "json-parse-even-better-errors": "^2.3.0", @@ -15489,16 +16356,18 @@ }, "node_modules/read-package-tree/node_modules/semver": { "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver" } }, "node_modules/read-pkg": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", "dev": true, - "license": "MIT", "dependencies": { "load-json-file": "^4.0.0", "normalize-package-data": "^2.3.2", @@ -15510,8 +16379,9 @@ }, "node_modules/read-pkg-up": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz", + "integrity": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=", "dev": true, - "license": "MIT", "dependencies": { "find-up": "^2.0.0", "read-pkg": "^3.0.0" @@ -15522,8 +16392,9 @@ }, "node_modules/read-pkg-up/node_modules/find-up": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", "dev": true, - "license": "MIT", "dependencies": { "locate-path": "^2.0.0" }, @@ -15533,8 +16404,9 @@ }, "node_modules/read-pkg-up/node_modules/locate-path": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", "dev": true, - "license": "MIT", "dependencies": { "p-locate": "^2.0.0", "path-exists": "^3.0.0" @@ -15545,8 +16417,9 @@ }, "node_modules/read-pkg-up/node_modules/p-limit": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", "dev": true, - "license": "MIT", "dependencies": { "p-try": "^1.0.0" }, @@ -15556,8 +16429,9 @@ }, "node_modules/read-pkg-up/node_modules/p-locate": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", "dev": true, - "license": "MIT", "dependencies": { "p-limit": "^1.1.0" }, @@ -15567,29 +16441,33 @@ }, "node_modules/read-pkg-up/node_modules/p-try": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/read-pkg-up/node_modules/path-exists": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/read-pkg/node_modules/hosted-git-info": { "version": "2.8.9", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true }, "node_modules/read-pkg/node_modules/load-json-file": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", "dev": true, - "license": "MIT", "dependencies": { "graceful-fs": "^4.1.2", "parse-json": "^4.0.0", @@ -15602,8 +16480,9 @@ }, "node_modules/read-pkg/node_modules/normalize-package-data": { "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", @@ -15613,8 +16492,9 @@ }, "node_modules/read-pkg/node_modules/parse-json": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", "dev": true, - "license": "MIT", "dependencies": { "error-ex": "^1.3.1", "json-parse-better-errors": "^1.0.1" @@ -15625,8 +16505,9 @@ }, "node_modules/read-pkg/node_modules/path-type": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", "dev": true, - "license": "MIT", "dependencies": { "pify": "^3.0.0" }, @@ -15636,32 +16517,36 @@ }, "node_modules/read-pkg/node_modules/pify": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/read-pkg/node_modules/semver": { "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver" } }, "node_modules/read-pkg/node_modules/strip-bom": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/readable-stream": { "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "dev": true, - "license": "MIT", "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -15673,8 +16558,9 @@ }, "node_modules/readdir-scoped-modules": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz", + "integrity": "sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==", "dev": true, - "license": "ISC", "dependencies": { "debuglog": "^1.0.1", "dezalgo": "^1.0.0", @@ -15684,8 +16570,9 @@ }, "node_modules/readdirp": { "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dev": true, - "license": "MIT", "dependencies": { "picomatch": "^2.2.1" }, @@ -15695,8 +16582,9 @@ }, "node_modules/redent": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", "dev": true, - "license": "MIT", "dependencies": { "indent-string": "^4.0.0", "strip-indent": "^3.0.0" @@ -15707,21 +16595,24 @@ }, "node_modules/redent/node_modules/indent-string": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/regenerator-runtime": { "version": "0.13.9", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==", + "dev": true }, "node_modules/regex-not": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", "dev": true, - "license": "MIT", "dependencies": { "extend-shallow": "^3.0.2", "safe-regex": "^1.1.0" @@ -15730,43 +16621,10 @@ "node": ">=0.10.0" } }, - "node_modules/regex-not/node_modules/extend-shallow": { - "version": "3.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/regex-not/node_modules/is-extendable": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/regex-not/node_modules/is-plain-object": { - "version": "2.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/regexp.prototype.flags": { - "version": "1.3.1", - "license": "MIT", + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.1.tgz", + "integrity": "sha512-pMR7hBVUUGI7PMA37m2ofIdQCsomVnas+Jn5UPGAHQ+/LlwKm/aTLJHdasmHRzlfeZwHiAOaRSo2rbBDm3nNUQ==", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3" @@ -15780,8 +16638,9 @@ }, "node_modules/regexpp": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" }, @@ -15791,8 +16650,9 @@ }, "node_modules/registry-auth-token": { "version": "4.2.1", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz", + "integrity": "sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==", "dev": true, - "license": "MIT", "dependencies": { "rc": "^1.2.8" }, @@ -15802,8 +16662,9 @@ }, "node_modules/registry-url": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", + "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", "dev": true, - "license": "MIT", "dependencies": { "rc": "^1.2.8" }, @@ -15813,8 +16674,9 @@ }, "node_modules/relay-runtime": { "version": "12.0.0", + "resolved": "https://registry.npmjs.org/relay-runtime/-/relay-runtime-12.0.0.tgz", + "integrity": "sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==", "dev": true, - "license": "MIT", "dependencies": { "@babel/runtime": "^7.0.0", "fbjs": "^3.0.0", @@ -15823,40 +16685,47 @@ }, "node_modules/remedial": { "version": "1.0.8", + "resolved": "https://registry.npmjs.org/remedial/-/remedial-1.0.8.tgz", + "integrity": "sha512-/62tYiOe6DzS5BqVsNpH/nkGlX45C/Sp6V+NtiN6JQNS1Viay7cWkazmRkrQrdFj2eshDe96SIQNIoMxqhzBOg==", "dev": true, - "license": "(MIT OR Apache-2.0)", "engines": { "node": "*" } }, "node_modules/remove-trailing-separator": { "version": "1.1.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true }, "node_modules/remove-trailing-spaces": { "version": "1.0.8", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/remove-trailing-spaces/-/remove-trailing-spaces-1.0.8.tgz", + "integrity": "sha512-O3vsMYfWighyFbTd8hk8VaSj9UAGENxAtX+//ugIst2RMk5e03h6RoIS+0ylsFxY1gvmPuAY/PO4It+gPEeySA==", + "dev": true }, "node_modules/repeat-element": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/repeat-string": { "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10" } }, "node_modules/replaceall": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/replaceall/-/replaceall-0.1.6.tgz", + "integrity": "sha1-gdgax663LX9cSUKt8ml6MiBojY4=", "dev": true, "engines": { "node": ">= 0.8.x" @@ -15864,8 +16733,10 @@ }, "node_modules/request": { "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", "dev": true, - "license": "Apache-2.0", "dependencies": { "aws-sign2": "~0.7.0", "aws4": "^1.8.0", @@ -15894,8 +16765,9 @@ }, "node_modules/request/node_modules/form-data": { "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", "dev": true, - "license": "MIT", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.6", @@ -15906,17 +16778,19 @@ } }, "node_modules/request/node_modules/qs": { - "version": "6.5.2", + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", "dev": true, - "license": "BSD-3-Clause", "engines": { "node": ">=0.6" } }, "node_modules/request/node_modules/tough-cookie": { "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "psl": "^1.1.28", "punycode": "^2.1.1" @@ -15927,31 +16801,36 @@ }, "node_modules/request/node_modules/uuid": { "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", "dev": true, - "license": "MIT", "bin": { "uuid": "bin/uuid" } }, "node_modules/require-directory": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/require-main-filename": { "version": "2.0.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true }, "node_modules/resolve": { - "version": "1.21.0", + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", + "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", "dev": true, - "license": "MIT", "dependencies": { - "is-core-module": "^2.8.0", + "is-core-module": "^2.8.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, @@ -15964,8 +16843,9 @@ }, "node_modules/resolve-cwd": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "dev": true, - "license": "MIT", "dependencies": { "resolve-from": "^5.0.0" }, @@ -15975,37 +16855,43 @@ }, "node_modules/resolve-from": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/resolve-url": { "version": "0.2.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "deprecated": "https://github.com/lydell/resolve-url#deprecated", + "dev": true }, "node_modules/resolve.exports": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz", + "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" } }, "node_modules/responselike": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", "dev": true, - "license": "MIT", "dependencies": { "lowercase-keys": "^1.0.0" } }, "node_modules/restore-cursor": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dev": true, - "license": "MIT", "dependencies": { "onetime": "^5.1.0", "signal-exit": "^3.0.2" @@ -16016,23 +16902,26 @@ }, "node_modules/ret": { "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.12" } }, "node_modules/retry": { "version": "0.13.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", "engines": { "node": ">= 4" } }, "node_modules/reusify": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true, - "license": "MIT", "engines": { "iojs": ">=1.0.0", "node": ">=0.10.0" @@ -16040,12 +16929,14 @@ }, "node_modules/rfdc": { "version": "1.3.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", + "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", + "dev": true }, "node_modules/rimraf": { "version": "3.0.2", - "license": "ISC", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dependencies": { "glob": "^7.1.3" }, @@ -16058,22 +16949,26 @@ }, "node_modules/rsvp": { "version": "4.8.5", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", "dev": true, - "license": "MIT", "engines": { "node": "6.* || >= 7.*" } }, "node_modules/run-async": { "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.12.0" } }, "node_modules/run-parallel": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, "funding": [ { @@ -16089,21 +16984,23 @@ "url": "https://feross.org/support" } ], - "license": "MIT", "dependencies": { "queue-microtask": "^1.2.2" } }, "node_modules/rxjs": { - "version": "7.5.1", + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.5.tgz", + "integrity": "sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==", "dev": true, - "license": "Apache-2.0", "dependencies": { "tslib": "^2.1.0" } }, "node_modules/safe-buffer": { "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "funding": [ { "type": "github", @@ -16117,19 +17014,20 @@ "type": "consulting", "url": "https://feross.org/support" } - ], - "license": "MIT" + ] }, "node_modules/safe-json-stringify": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz", + "integrity": "sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==", "dev": true, - "license": "MIT", "optional": true }, "node_modules/safe-regex": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", "dev": true, - "license": "MIT", "dependencies": { "ret": "~0.1.10" } @@ -16145,13 +17043,16 @@ }, "node_modules/safer-buffer": { "version": "2.1.2", - "devOptional": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "devOptional": true }, "node_modules/sane": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", + "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "deprecated": "some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added", "dev": true, - "license": "MIT", "dependencies": { "@cnakazawa/watch": "^1.0.3", "anymatch": "^2.0.0", @@ -16172,8 +17073,9 @@ }, "node_modules/sane/node_modules/anymatch": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", "dev": true, - "license": "ISC", "dependencies": { "micromatch": "^3.1.4", "normalize-path": "^2.1.1" @@ -16181,8 +17083,9 @@ }, "node_modules/sane/node_modules/braces": { "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "dev": true, - "license": "MIT", "dependencies": { "arr-flatten": "^1.1.0", "array-unique": "^0.3.2", @@ -16199,10 +17102,23 @@ "node": ">=0.10.0" } }, + "node_modules/sane/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/sane/node_modules/cross-spawn": { "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", "dev": true, - "license": "MIT", "dependencies": { "nice-try": "^1.0.4", "path-key": "^2.0.1", @@ -16214,22 +17130,11 @@ "node": ">=4.8" } }, - "node_modules/sane/node_modules/define-property": { - "version": "2.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/sane/node_modules/execa": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", "dev": true, - "license": "MIT", "dependencies": { "cross-spawn": "^6.0.0", "get-stream": "^4.0.0", @@ -16245,8 +17150,9 @@ }, "node_modules/sane/node_modules/fill-range": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", "dev": true, - "license": "MIT", "dependencies": { "extend-shallow": "^2.0.1", "is-number": "^3.0.0", @@ -16257,10 +17163,23 @@ "node": ">=0.10.0" } }, + "node_modules/sane/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/sane/node_modules/get-stream": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", "dev": true, - "license": "MIT", "dependencies": { "pump": "^3.0.0" }, @@ -16269,20 +17188,19 @@ } }, "node_modules/sane/node_modules/is-extendable": { - "version": "1.0.1", + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4" - }, "engines": { "node": ">=0.10.0" } }, "node_modules/sane/node_modules/is-number": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", "dev": true, - "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -16292,8 +17210,9 @@ }, "node_modules/sane/node_modules/is-number/node_modules/kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, - "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -16301,29 +17220,20 @@ "node": ">=0.10.0" } }, - "node_modules/sane/node_modules/is-plain-object": { - "version": "2.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/sane/node_modules/is-stream": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/sane/node_modules/micromatch": { "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "dev": true, - "license": "MIT", "dependencies": { "arr-diff": "^4.0.0", "array-unique": "^0.3.2", @@ -16343,22 +17253,11 @@ "node": ">=0.10.0" } }, - "node_modules/sane/node_modules/micromatch/node_modules/extend-shallow": { - "version": "3.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/sane/node_modules/normalize-path": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", "dev": true, - "license": "MIT", "dependencies": { "remove-trailing-separator": "^1.0.1" }, @@ -16368,8 +17267,9 @@ }, "node_modules/sane/node_modules/npm-run-path": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", "dev": true, - "license": "MIT", "dependencies": { "path-key": "^2.0.0" }, @@ -16379,24 +17279,27 @@ }, "node_modules/sane/node_modules/path-key": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/sane/node_modules/semver": { "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver" } }, "node_modules/sane/node_modules/shebang-command": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", "dev": true, - "license": "MIT", "dependencies": { "shebang-regex": "^1.0.0" }, @@ -16406,16 +17309,18 @@ }, "node_modules/sane/node_modules/shebang-regex": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/sane/node_modules/to-regex-range": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", "dev": true, - "license": "MIT", "dependencies": { "is-number": "^3.0.0", "repeat-string": "^1.6.1" @@ -16426,8 +17331,9 @@ }, "node_modules/sane/node_modules/which": { "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, - "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -16437,8 +17343,9 @@ }, "node_modules/saxes": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", "dev": true, - "license": "ISC", "dependencies": { "xmlchars": "^2.2.0" }, @@ -16448,26 +17355,37 @@ }, "node_modules/scuid": { "version": "1.1.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/scuid/-/scuid-1.1.0.tgz", + "integrity": "sha512-MuCAyrGZcTLfQoH2XoBlQ8C6bzwN88XT/0slOGz0pn8+gIP85BOAfYa44ZXQUTOwRwPU0QvgU+V+OSajl/59Xg==", + "dev": true }, "node_modules/semver": { - "version": "7.3.5", - "license": "ISC", + "version": "7.3.6", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.6.tgz", + "integrity": "sha512-HZWqcgwLsjaX1HBD31msI/rXktuIhS+lWvdE4kN9z+8IVT4Itc7vqU2WvYsyD6/sjYCt4dEKH/m1M3dwI9CC5w==", "dependencies": { - "lru-cache": "^6.0.0" + "lru-cache": "^7.4.0" }, "bin": { "semver": "bin/semver.js" }, "engines": { - "node": ">=10" + "node": "^10.0.0 || ^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/semver/node_modules/lru-cache": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.8.0.tgz", + "integrity": "sha512-AmXqneQZL3KZMIgBpaPTeI6pfwh+xQ2vutMsyqOu1TBdEXFZgpG/80wuJ531w2ZN7TI0/oc8CPxzh/DKQudZqg==", + "engines": { + "node": ">=12" } }, "node_modules/send": { "version": "0.17.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.2.tgz", + "integrity": "sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==", "dev": true, - "license": "MIT", "dependencies": { "debug": "2.6.9", "depd": "~1.1.2", @@ -16489,26 +17407,73 @@ }, "node_modules/send/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/send/node_modules/debug/node_modules/ms": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/send/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/send/node_modules/destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "dev": true + }, + "node_modules/send/node_modules/http-errors": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", "dev": true, - "license": "MIT" + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.6" + } }, "node_modules/send/node_modules/ms": { "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/send/node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", "dev": true, - "license": "MIT" + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } }, "node_modules/sentence-case": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", + "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", "dev": true, - "license": "MIT", "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3", @@ -16517,8 +17482,9 @@ }, "node_modules/serve-static": { "version": "1.14.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.2.tgz", + "integrity": "sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==", "dev": true, - "license": "MIT", "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", @@ -16531,22 +17497,74 @@ }, "node_modules/set-blocking": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, - "license": "ISC" + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } }, "node_modules/setimmediate": { "version": "1.0.5", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", + "dev": true }, "node_modules/setprototypeof": { "version": "1.2.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true }, "node_modules/sha.js": { "version": "2.4.11", - "license": "(MIT AND BSD-3-Clause)", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", "dependencies": { "inherits": "^2.0.1", "safe-buffer": "^5.0.1" @@ -16557,8 +17575,9 @@ }, "node_modules/shallow-clone": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", "dev": true, - "license": "MIT", "dependencies": { "kind-of": "^6.0.2" }, @@ -16568,8 +17587,9 @@ }, "node_modules/shebang-command": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, - "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" }, @@ -16579,21 +17599,24 @@ }, "node_modules/shebang-regex": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/shellwords": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", "dev": true, - "license": "MIT", "optional": true }, "node_modules/side-channel": { "version": "1.0.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", "dependencies": { "call-bind": "^1.0.0", "get-intrinsic": "^1.0.2", @@ -16604,60 +17627,69 @@ } }, "node_modules/signal-exit": { - "version": "3.0.6", - "dev": true, - "license": "ISC" + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true }, "node_modules/signedsource": { "version": "1.0.0", - "dev": true, - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/signedsource/-/signedsource-1.0.0.tgz", + "integrity": "sha1-HdrOSYF5j5O9gzlzgD2A1S6TrWo=", + "dev": true }, "node_modules/simple-swizzle": { "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", "dev": true, - "license": "MIT", "dependencies": { "is-arrayish": "^0.3.1" } }, "node_modules/simple-swizzle/node_modules/is-arrayish": { "version": "0.3.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "dev": true }, "node_modules/sisteransi": { "version": "1.0.5", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true }, "node_modules/slash": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/slice-ansi": { "version": "0.0.4", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz", + "integrity": "sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/slide": { "version": "1.1.6", + "resolved": "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz", + "integrity": "sha1-VusCfWW00tzmyy4tMsTUr8nh1wc=", "dev": true, - "license": "ISC", "engines": { "node": "*" } }, "node_modules/smart-buffer": { "version": "4.2.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", "engines": { "node": ">= 6.0.0", "npm": ">= 3.0.0" @@ -16665,8 +17697,9 @@ }, "node_modules/snake-case": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", "dev": true, - "license": "MIT", "dependencies": { "dot-case": "^3.0.4", "tslib": "^2.0.3" @@ -16674,8 +17707,9 @@ }, "node_modules/snapdragon": { "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", "dev": true, - "license": "MIT", "dependencies": { "base": "^0.11.1", "debug": "^2.2.0", @@ -16692,8 +17726,9 @@ }, "node_modules/snapdragon-node": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", "dev": true, - "license": "MIT", "dependencies": { "define-property": "^1.0.0", "isobject": "^3.0.0", @@ -16703,10 +17738,23 @@ "node": ">=0.10.0" } }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/snapdragon-util": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", "dev": true, - "license": "MIT", "dependencies": { "kind-of": "^3.2.0" }, @@ -16716,8 +17764,9 @@ }, "node_modules/snapdragon-util/node_modules/kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, - "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -16727,16 +17776,18 @@ }, "node_modules/snapdragon/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/snapdragon/node_modules/define-property": { "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "dev": true, - "license": "MIT", "dependencies": { "is-descriptor": "^0.1.0" }, @@ -16744,10 +17795,23 @@ "node": ">=0.10.0" } }, + "node_modules/snapdragon/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/snapdragon/node_modules/is-accessor-descriptor": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", "dev": true, - "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -16757,8 +17821,9 @@ }, "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, - "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -16768,8 +17833,9 @@ }, "node_modules/snapdragon/node_modules/is-data-descriptor": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", "dev": true, - "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -16779,8 +17845,9 @@ }, "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, - "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -16790,8 +17857,9 @@ }, "node_modules/snapdragon/node_modules/is-descriptor": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "dev": true, - "license": "MIT", "dependencies": { "is-accessor-descriptor": "^0.1.6", "is-data-descriptor": "^0.1.4", @@ -16801,25 +17869,37 @@ "node": ">=0.10.0" } }, + "node_modules/snapdragon/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/snapdragon/node_modules/kind-of": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/snapdragon/node_modules/ms": { "version": "2.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true }, "node_modules/socks": { - "version": "2.6.1", - "license": "MIT", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.6.2.tgz", + "integrity": "sha512-zDZhHhZRY9PxRruRMR7kMhnf3I8hDs4S3f9RecfnGxvcBHQcKcIH/oUcEWffsfl1XxdYlA7nnlGbbTvPz9D8gA==", "dependencies": { "ip": "^1.1.5", - "smart-buffer": "^4.1.0" + "smart-buffer": "^4.2.0" }, "engines": { "node": ">= 10.13.0", @@ -16828,7 +17908,8 @@ }, "node_modules/socks-proxy-agent": { "version": "5.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-5.0.1.tgz", + "integrity": "sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==", "dependencies": { "agent-base": "^6.0.2", "debug": "4", @@ -16840,8 +17921,9 @@ }, "node_modules/sort-keys": { "version": "4.2.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-4.2.0.tgz", + "integrity": "sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==", "dev": true, - "license": "MIT", "dependencies": { "is-plain-obj": "^2.0.0" }, @@ -16854,24 +17936,28 @@ }, "node_modules/sort-keys/node_modules/is-plain-obj": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/source-map": { "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", "dev": true, - "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/source-map-resolve": { "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", "dev": true, - "license": "MIT", "dependencies": { "atob": "^2.1.2", "decode-uri-component": "^0.2.0", @@ -16882,8 +17968,9 @@ }, "node_modules/source-map-support": { "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, - "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" @@ -16891,21 +17978,25 @@ }, "node_modules/source-map-support/node_modules/source-map": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/source-map-url": { "version": "0.4.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "deprecated": "See https://github.com/lydell/source-map-url#deprecated", + "dev": true }, "node_modules/spdx-correct": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", "dev": true, - "license": "Apache-2.0", "dependencies": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" @@ -16913,13 +18004,15 @@ }, "node_modules/spdx-exceptions": { "version": "2.3.0", - "dev": true, - "license": "CC-BY-3.0" + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true }, "node_modules/spdx-expression-parse": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, - "license": "MIT", "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" @@ -16927,13 +18020,15 @@ }, "node_modules/spdx-license-ids": { "version": "3.0.11", - "dev": true, - "license": "CC0-1.0" + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", + "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==", + "dev": true }, "node_modules/split": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", + "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", "dev": true, - "license": "MIT", "dependencies": { "through": "2" }, @@ -16941,54 +18036,22 @@ "node": "*" } }, - "node_modules/split-on-first": { - "version": "1.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/split-string": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "extend-shallow": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/split-string/node_modules/extend-shallow": { - "version": "3.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/split-string/node_modules/is-extendable": { - "version": "1.0.1", + "node_modules/split-on-first": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz", + "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==", "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4" - }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/split-string/node_modules/is-plain-object": { - "version": "2.0.4", + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", "dev": true, - "license": "MIT", "dependencies": { - "isobject": "^3.0.1" + "extend-shallow": "^3.0.0" }, "engines": { "node": ">=0.10.0" @@ -16996,29 +18059,33 @@ }, "node_modules/split2": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz", + "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", "dev": true, - "license": "ISC", "dependencies": { "readable-stream": "^3.0.0" } }, "node_modules/sponge-case": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sponge-case/-/sponge-case-1.0.1.tgz", + "integrity": "sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==", "dev": true, - "license": "MIT", "dependencies": { "tslib": "^2.0.3" } }, "node_modules/sprintf-js": { "version": "1.0.3", - "dev": true, - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true }, "node_modules/sshpk": { - "version": "1.16.1", + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", + "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", "dev": true, - "license": "MIT", "dependencies": { "asn1": "~0.2.3", "assert-plus": "^1.0.0", @@ -17041,7 +18108,8 @@ }, "node_modules/ssri": { "version": "8.0.1", - "license": "ISC", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", "dependencies": { "minipass": "^3.1.1" }, @@ -17051,16 +18119,18 @@ }, "node_modules/stack-trace": { "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=", "dev": true, - "license": "MIT", "engines": { "node": "*" } }, "node_modules/stack-utils": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", + "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", "dev": true, - "license": "MIT", "dependencies": { "escape-string-regexp": "^2.0.0" }, @@ -17070,16 +18140,18 @@ }, "node_modules/stack-utils/node_modules/escape-string-regexp": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/static-extend": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", "dev": true, - "license": "MIT", "dependencies": { "define-property": "^0.2.5", "object-copy": "^0.1.0" @@ -17090,8 +18162,9 @@ }, "node_modules/static-extend/node_modules/define-property": { "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "dev": true, - "license": "MIT", "dependencies": { "is-descriptor": "^0.1.0" }, @@ -17101,8 +18174,9 @@ }, "node_modules/static-extend/node_modules/is-accessor-descriptor": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", "dev": true, - "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -17112,8 +18186,9 @@ }, "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, - "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -17123,8 +18198,9 @@ }, "node_modules/static-extend/node_modules/is-data-descriptor": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", "dev": true, - "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -17134,8 +18210,9 @@ }, "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, - "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -17145,8 +18222,9 @@ }, "node_modules/static-extend/node_modules/is-descriptor": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "dev": true, - "license": "MIT", "dependencies": { "is-accessor-descriptor": "^0.1.6", "is-data-descriptor": "^0.1.4", @@ -17158,16 +18236,18 @@ }, "node_modules/static-extend/node_modules/kind-of": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/statuses": { "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } @@ -17202,29 +18282,33 @@ }, "node_modules/strict-uri-encode": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz", + "integrity": "sha1-ucczDHBChi9rFC3CdLvMWGbONUY=", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/string_decoder": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", "dev": true, - "license": "MIT", "dependencies": { "safe-buffer": "~5.2.0" } }, "node_modules/string-env-interpolation": { "version": "1.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/string-env-interpolation/-/string-env-interpolation-1.0.1.tgz", + "integrity": "sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg==", + "dev": true }, "node_modules/string-length": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", "dev": true, - "license": "MIT", "dependencies": { "char-regex": "^1.0.2", "strip-ansi": "^6.0.0" @@ -17235,8 +18319,9 @@ }, "node_modules/string-width": { "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, - "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -17248,7 +18333,8 @@ }, "node_modules/string.prototype.trimend": { "version": "1.0.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", + "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3" @@ -17259,7 +18345,8 @@ }, "node_modules/string.prototype.trimstart": { "version": "1.0.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", + "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3" @@ -17270,8 +18357,9 @@ }, "node_modules/strip-ansi": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, - "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" }, @@ -17281,32 +18369,36 @@ }, "node_modules/strip-bom": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/strip-eof": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/strip-final-newline": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/strip-indent": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", "dev": true, - "license": "MIT", "dependencies": { "min-indent": "^1.0.0" }, @@ -17316,8 +18408,9 @@ }, "node_modules/strip-json-comments": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" }, @@ -17327,8 +18420,9 @@ }, "node_modules/strong-log-transformer": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz", + "integrity": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==", "dev": true, - "license": "Apache-2.0", "dependencies": { "duplexer": "^0.1.1", "minimist": "^1.2.0", @@ -17343,8 +18437,10 @@ }, "node_modules/subscriptions-transport-ws": { "version": "0.11.0", + "resolved": "https://registry.npmjs.org/subscriptions-transport-ws/-/subscriptions-transport-ws-0.11.0.tgz", + "integrity": "sha512-8D4C6DIH5tGiAIpp5I0wD/xRlNiZAPGHygzCe7VzyzUoxHtawzjNAY9SUTXU05/EY2NMY9/9GF0ycizkXr1CWQ==", + "deprecated": "The `subscriptions-transport-ws` package is no longer maintained. We recommend you use `graphql-ws` instead. For help migrating Apollo software to `graphql-ws`, see https://www.apollographql.com/docs/apollo-server/data/subscriptions/#switching-from-subscriptions-transport-ws For general help using `graphql-ws`, see https://github.com/enisdenjo/graphql-ws/blob/master/README.md", "dev": true, - "license": "MIT", "dependencies": { "backo2": "^1.0.2", "eventemitter3": "^3.1.0", @@ -17358,21 +18454,24 @@ }, "node_modules/subscriptions-transport-ws/node_modules/eventemitter3": { "version": "3.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz", + "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==", + "dev": true }, "node_modules/subscriptions-transport-ws/node_modules/symbol-observable": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", + "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/subscriptions-transport-ws/node_modules/ws": { - "version": "7.5.6", + "version": "7.5.7", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.7.tgz", + "integrity": "sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A==", "dev": true, - "license": "MIT", "engines": { "node": ">=8.3.0" }, @@ -17391,7 +18490,8 @@ }, "node_modules/supports-color": { "version": "7.2.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { "has-flag": "^4.0.0" }, @@ -17401,8 +18501,9 @@ }, "node_modules/supports-hyperlinks": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz", + "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" @@ -17413,8 +18514,9 @@ }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -17424,29 +18526,33 @@ }, "node_modules/swap-case": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/swap-case/-/swap-case-2.0.2.tgz", + "integrity": "sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==", "dev": true, - "license": "MIT", "dependencies": { "tslib": "^2.0.3" } }, "node_modules/symbol-observable": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz", + "integrity": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10" } }, "node_modules/symbol-tree": { "version": "3.2.4", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true }, "node_modules/sync-fetch": { "version": "0.3.1", + "resolved": "https://registry.npmjs.org/sync-fetch/-/sync-fetch-0.3.1.tgz", + "integrity": "sha512-xj5qiCDap/03kpci5a+qc5wSJjc8ZSixgG2EUmH1B8Ea2sfWclQA7eH40hiHPCtkCn6MCk4Wb+dqcXdCy2PP3g==", "dev": true, - "license": "MIT", "dependencies": { "buffer": "^5.7.0", "node-fetch": "^2.6.1" @@ -17457,7 +18563,8 @@ }, "node_modules/tar": { "version": "6.1.11", - "license": "ISC", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", + "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", "dependencies": { "chownr": "^2.0.0", "fs-minipass": "^2.0.0", @@ -17472,16 +18579,18 @@ }, "node_modules/temp-dir": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", + "integrity": "sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/temp-write": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/temp-write/-/temp-write-4.0.0.tgz", + "integrity": "sha512-HIeWmj77uOOHb0QX7siN3OtwV3CTntquin6TNVg6SHOqCP3hYKmox90eeFOGaY1MqJ9WYDDjkyZrW6qS5AWpbw==", "dev": true, - "license": "MIT", "dependencies": { "graceful-fs": "^4.1.15", "is-stream": "^2.0.0", @@ -17495,16 +18604,19 @@ }, "node_modules/temp-write/node_modules/uuid": { "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", "dev": true, - "license": "MIT", "bin": { "uuid": "bin/uuid" } }, "node_modules/terminal-link": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", "dev": true, - "license": "MIT", "dependencies": { "ansi-escapes": "^4.2.1", "supports-hyperlinks": "^2.0.0" @@ -17518,8 +18630,9 @@ }, "node_modules/test-exclude": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", "dev": true, - "license": "ISC", "dependencies": { "@istanbuljs/schema": "^0.1.2", "glob": "^7.1.4", @@ -17529,55 +18642,75 @@ "node": ">=8" } }, + "node_modules/test-exclude/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, "node_modules/text-extensions": { "version": "1.9.0", + "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz", + "integrity": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10" } }, "node_modules/text-hex": { "version": "1.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", + "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==", + "dev": true }, "node_modules/text-table": { "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", "dev": true, - "license": "MIT", "peer": true }, "node_modules/throat": { "version": "6.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz", + "integrity": "sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==", + "dev": true }, "node_modules/through": { "version": "2.3.8", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true }, "node_modules/through2": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", + "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", "dev": true, - "license": "MIT", "dependencies": { "readable-stream": "3" } }, "node_modules/title-case": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/title-case/-/title-case-3.0.3.tgz", + "integrity": "sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==", "dev": true, - "license": "MIT", "dependencies": { "tslib": "^2.0.3" } }, "node_modules/tmp": { "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", "dev": true, - "license": "MIT", "dependencies": { "os-tmpdir": "~1.0.2" }, @@ -17587,21 +18720,24 @@ }, "node_modules/tmpl": { "version": "1.0.5", - "dev": true, - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true }, "node_modules/to-fast-properties": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/to-object-path": { "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", "dev": true, - "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -17611,8 +18747,9 @@ }, "node_modules/to-object-path/node_modules/kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, - "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -17622,16 +18759,18 @@ }, "node_modules/to-readable-stream": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", + "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/to-regex": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", "dev": true, - "license": "MIT", "dependencies": { "define-property": "^2.0.2", "extend-shallow": "^3.0.2", @@ -17644,8 +18783,9 @@ }, "node_modules/to-regex-range": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, - "license": "MIT", "dependencies": { "is-number": "^7.0.0" }, @@ -17653,72 +18793,20 @@ "node": ">=8.0" } }, - "node_modules/to-regex-range/node_modules/is-number": { - "version": "7.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/to-regex/node_modules/define-property": { - "version": "2.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex/node_modules/extend-shallow": { - "version": "3.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex/node_modules/is-extendable": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex/node_modules/is-plain-object": { - "version": "2.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/toidentifier": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.6" } }, "node_modules/tough-cookie": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz", + "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "psl": "^1.1.33", "punycode": "^2.1.1", @@ -17730,28 +18818,44 @@ }, "node_modules/tough-cookie/node_modules/universalify": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 4.0.0" } }, + "node_modules/tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dev": true, + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/trim-newlines": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/triple-beam": { "version": "1.3.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz", + "integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==", + "dev": true }, "node_modules/ts-graphviz": { "version": "0.16.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/ts-graphviz/-/ts-graphviz-0.16.0.tgz", + "integrity": "sha512-3fTPO+G6bSQNvMh/XQQzyiahVLMMj9kqYO99ivUraNJ3Wp05HZOOVtRhi6w9hq7+laP1MKHjLBtGWqTeb1fcpg==", "funding": { "type": "github", "url": "https://github.com/sponsors/kamiazya" @@ -17759,8 +18863,9 @@ }, "node_modules/ts-invariant": { "version": "0.9.4", + "resolved": "https://registry.npmjs.org/ts-invariant/-/ts-invariant-0.9.4.tgz", + "integrity": "sha512-63jtX/ZSwnUNi/WhXjnK8kz4cHHpYS60AnmA6ixz17l7E12a5puCWFlNpkne5Rl0J8TBPVHpGjsj4fxs8ObVLQ==", "dev": true, - "license": "MIT", "dependencies": { "tslib": "^2.1.0" }, @@ -17813,13 +18918,15 @@ }, "node_modules/ts-log": { "version": "2.2.4", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ts-log/-/ts-log-2.2.4.tgz", + "integrity": "sha512-DEQrfv6l7IvN2jlzc/VTdZJYsWUnQNCsueYjMkC/iXoEoi5fNan6MjeDqkvhfzbmHgdz9UxDUluX3V5HdjTydQ==", + "dev": true }, "node_modules/ts-node": { "version": "9.1.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-9.1.1.tgz", + "integrity": "sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==", "dev": true, - "license": "MIT", "dependencies": { "arg": "^4.1.0", "create-require": "^1.1.0", @@ -17843,12 +18950,14 @@ }, "node_modules/tslib": { "version": "2.3.1", - "license": "0BSD" + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" }, "node_modules/tsutils": { "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", "dev": true, - "license": "MIT", "dependencies": { "tslib": "^1.8.1" }, @@ -17861,13 +18970,15 @@ }, "node_modules/tsutils/node_modules/tslib": { "version": "1.14.1", - "dev": true, - "license": "0BSD" + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true }, "node_modules/tunnel-agent": { "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", "dev": true, - "license": "Apache-2.0", "dependencies": { "safe-buffer": "^5.0.1" }, @@ -17877,13 +18988,15 @@ }, "node_modules/tweetnacl": { "version": "0.14.5", - "dev": true, - "license": "Unlicense" + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "dev": true }, "node_modules/type-check": { "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, - "license": "MIT", "peer": true, "dependencies": { "prelude-ls": "^1.2.1" @@ -17894,16 +19007,18 @@ }, "node_modules/type-detect": { "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/type-fest": { "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", "dev": true, - "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -17913,8 +19028,9 @@ }, "node_modules/type-is": { "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "dev": true, - "license": "MIT", "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.24" @@ -17925,13 +19041,15 @@ }, "node_modules/typedarray": { "version": "0.0.6", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", "dev": true, - "license": "MIT", "dependencies": { "is-typedarray": "^1.0.0" } @@ -17951,6 +19069,8 @@ }, "node_modules/ua-parser-js": { "version": "0.7.31", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.31.tgz", + "integrity": "sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==", "dev": true, "funding": [ { @@ -17962,15 +19082,15 @@ "url": "https://paypal.me/faisalman" } ], - "license": "MIT", "engines": { "node": "*" } }, "node_modules/uglify-js": { - "version": "3.14.5", + "version": "3.15.3", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.15.3.tgz", + "integrity": "sha512-6iCVm2omGJbsu3JWac+p6kUiOpg3wFO2f8lIXjfEb8RrmLjzog1wTPMmwKB7swfzzqxj9YM+sGUM++u1qN4qJg==", "dev": true, - "license": "BSD-2-Clause", "optional": true, "bin": { "uglifyjs": "bin/uglifyjs" @@ -17981,20 +19101,23 @@ }, "node_modules/uid-number": { "version": "0.0.6", + "resolved": "https://registry.npmjs.org/uid-number/-/uid-number-0.0.6.tgz", + "integrity": "sha1-DqEOgDXo61uOREnwbaHHMGY7qoE=", "dev": true, - "license": "ISC", "engines": { "node": "*" } }, "node_modules/umask": { "version": "1.1.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/umask/-/umask-1.1.0.tgz", + "integrity": "sha1-8pzr8B31F5ErtY/5xOUP3o4zMg0=", + "dev": true }, "node_modules/unbox-primitive": { "version": "1.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", + "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", "dependencies": { "function-bind": "^1.1.1", "has-bigints": "^1.0.1", @@ -18007,24 +19130,27 @@ }, "node_modules/unc-path-regex": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", + "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/undici": { - "version": "4.12.1", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/undici/-/undici-5.0.0.tgz", + "integrity": "sha512-VhUpiZ3No1DOPPQVQnsDZyfcbTTcHdcgWej1PdFnSvOeJmOVDgiOHkunJmBLfmjt4CqgPQddPVjSWW0dsTs5Yg==", "dev": true, - "license": "MIT", "engines": { "node": ">=12.18" } }, "node_modules/union-value": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", "dev": true, - "license": "MIT", "dependencies": { "arr-union": "^3.1.0", "get-value": "^2.0.6", @@ -18035,62 +19161,51 @@ "node": ">=0.10.0" } }, - "node_modules/union-value/node_modules/is-plain-object": { - "version": "2.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/union-value/node_modules/set-value": { - "version": "2.0.1", + "node_modules/union-value/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", "dev": true, - "license": "MIT", - "dependencies": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, "engines": { "node": ">=0.10.0" } }, "node_modules/unique-filename": { "version": "1.1.1", - "license": "ISC", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", "dependencies": { "unique-slug": "^2.0.0" } }, "node_modules/unique-slug": { "version": "2.0.2", - "license": "ISC", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", "dependencies": { "imurmurhash": "^0.1.4" } }, "node_modules/universal-user-agent": { "version": "6.0.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz", + "integrity": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==", + "dev": true }, "node_modules/universalify": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", "dev": true, - "license": "MIT", "engines": { "node": ">= 10.0.0" } }, "node_modules/unixify": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unixify/-/unixify-1.0.0.tgz", + "integrity": "sha1-OmQcjC/7zk2mg6XHDwOkYpQMIJA=", "dev": true, - "license": "MIT", "dependencies": { "normalize-path": "^2.1.1" }, @@ -18100,8 +19215,9 @@ }, "node_modules/unixify/node_modules/normalize-path": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", "dev": true, - "license": "MIT", "dependencies": { "remove-trailing-separator": "^1.0.1" }, @@ -18111,16 +19227,18 @@ }, "node_modules/unpipe": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/unset-value": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", "dev": true, - "license": "MIT", "dependencies": { "has-value": "^0.3.1", "isobject": "^3.0.0" @@ -18131,8 +19249,9 @@ }, "node_modules/unset-value/node_modules/has-value": { "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", "dev": true, - "license": "MIT", "dependencies": { "get-value": "^2.0.3", "has-values": "^0.1.4", @@ -18144,8 +19263,9 @@ }, "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", "dev": true, - "license": "MIT", "dependencies": { "isarray": "1.0.0" }, @@ -18155,16 +19275,18 @@ }, "node_modules/unset-value/node_modules/has-values": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/upath": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz", + "integrity": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==", "dev": true, - "license": "MIT", "engines": { "node": ">=4", "yarn": "*" @@ -18172,37 +19294,43 @@ }, "node_modules/upper-case": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", + "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", "dev": true, - "license": "MIT", "dependencies": { "tslib": "^2.0.3" } }, "node_modules/upper-case-first": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", + "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", "dev": true, - "license": "MIT", "dependencies": { "tslib": "^2.0.3" } }, "node_modules/uri-js": { "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "punycode": "^2.1.0" } }, "node_modules/urix": { "version": "0.1.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "deprecated": "Please see https://github.com/lydell/urix#deprecated", + "dev": true }, "node_modules/url-parse-lax": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", "dev": true, - "license": "MIT", "dependencies": { "prepend-http": "^2.0.0" }, @@ -18212,44 +19340,50 @@ }, "node_modules/use": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/util-deprecate": { "version": "1.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true }, "node_modules/util-promisify": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/util-promisify/-/util-promisify-2.1.0.tgz", + "integrity": "sha1-PCI2R2xNMsX/PEcAKt18E7moKlM=", "dev": true, - "license": "MIT", "dependencies": { "object.getownpropertydescriptors": "^2.0.3" } }, "node_modules/utils-merge": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.4.0" } }, "node_modules/uuid": { "version": "8.3.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "bin": { "uuid": "dist/bin/uuid" } }, "node_modules/v8-compile-cache": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", "dev": true, - "license": "MIT", "peer": true }, "node_modules/v8-to-istanbul": { @@ -18277,12 +19411,15 @@ }, "node_modules/valid-url": { "version": "1.0.9", + "resolved": "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz", + "integrity": "sha1-HBRHm0DxOXp1eC8RXkCGRHQzogA=", "dev": true }, "node_modules/validate-npm-package-license": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "dev": true, - "license": "Apache-2.0", "dependencies": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" @@ -18290,34 +19427,38 @@ }, "node_modules/validate-npm-package-name": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz", + "integrity": "sha1-X6kS2B630MdK/BQN5zF/DKffQ34=", "dev": true, - "license": "ISC", "dependencies": { "builtins": "^1.0.3" } }, "node_modules/value-or-promise": { "version": "1.0.11", - "license": "MIT", + "resolved": "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.11.tgz", + "integrity": "sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg==", "engines": { "node": ">=12" } }, "node_modules/vary": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/verror": { "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", "dev": true, "engines": [ "node >=0.6.0" ], - "license": "MIT", "dependencies": { "assert-plus": "^1.0.0", "core-util-is": "1.0.2", @@ -18326,16 +19467,18 @@ }, "node_modules/w3c-hr-time": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", "dev": true, - "license": "MIT", "dependencies": { "browser-process-hrtime": "^1.0.0" } }, "node_modules/w3c-xmlserializer": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", "dev": true, - "license": "MIT", "dependencies": { "xml-name-validator": "^3.0.0" }, @@ -18345,58 +19488,66 @@ }, "node_modules/walker": { "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, - "license": "Apache-2.0", "dependencies": { "makeerror": "1.0.12" } }, "node_modules/wcwidth": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=", "dev": true, - "license": "MIT", "dependencies": { "defaults": "^1.0.3" } }, "node_modules/web-streams-polyfill": { - "version": "4.0.0-beta.1", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz", + "integrity": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==", "dev": true, - "license": "MIT", "engines": { - "node": ">= 12" + "node": ">= 8" } }, "node_modules/webidl-conversions": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", "dev": true, - "license": "BSD-2-Clause", "engines": { "node": ">=10.4" } }, "node_modules/whatwg-encoding": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", "dev": true, - "license": "MIT", "dependencies": { "iconv-lite": "0.4.24" } }, "node_modules/whatwg-fetch": { "version": "3.6.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", + "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==", + "dev": true }, "node_modules/whatwg-mimetype": { "version": "2.3.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "dev": true }, "node_modules/whatwg-url": { "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", "dev": true, - "license": "MIT", "dependencies": { "lodash": "^4.7.0", "tr46": "^2.1.0", @@ -18406,21 +19557,11 @@ "node": ">=10" } }, - "node_modules/whatwg-url/node_modules/tr46": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/which": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, - "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -18433,7 +19574,8 @@ }, "node_modules/which-boxed-primitive": { "version": "1.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", "dependencies": { "is-bigint": "^1.0.1", "is-boolean-object": "^1.1.0", @@ -18447,7 +19589,8 @@ }, "node_modules/which-collection": { "version": "1.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", "dependencies": { "is-map": "^2.0.1", "is-set": "^2.0.1", @@ -18460,12 +19603,14 @@ }, "node_modules/which-module": { "version": "2.0.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true }, "node_modules/which-typed-array": { "version": "1.1.7", - "license": "MIT", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.7.tgz", + "integrity": "sha512-vjxaB4nfDqwKI0ws7wZpxIlde1XrLX5uB0ZjpfshgmapJMD7jJWhZI+yToJTqaFByF0eNBcYxbjmCzoRP7CfEw==", "dependencies": { "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", @@ -18483,8 +19628,9 @@ }, "node_modules/wide-align": { "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", "dev": true, - "license": "ISC", "dependencies": { "string-width": "^1.0.2 || 2 || 3 || 4" } @@ -18526,21 +19672,24 @@ }, "node_modules/word-wrap": { "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/wordwrap": { "version": "1.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", + "dev": true }, "node_modules/wrap-ansi": { "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -18555,12 +19704,14 @@ }, "node_modules/wrappy": { "version": "1.0.2", - "license": "ISC" + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, "node_modules/write-file-atomic": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", "dev": true, - "license": "ISC", "dependencies": { "imurmurhash": "^0.1.4", "is-typedarray": "^1.0.0", @@ -18570,8 +19721,9 @@ }, "node_modules/write-json-file": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/write-json-file/-/write-json-file-4.3.0.tgz", + "integrity": "sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ==", "dev": true, - "license": "MIT", "dependencies": { "detect-indent": "^6.0.0", "graceful-fs": "^4.1.15", @@ -18589,16 +19741,18 @@ }, "node_modules/write-json-file/node_modules/is-plain-obj": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/write-pkg": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/write-pkg/-/write-pkg-4.0.0.tgz", + "integrity": "sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==", "dev": true, - "license": "MIT", "dependencies": { "sort-keys": "^2.0.0", "type-fest": "^0.4.1", @@ -18610,16 +19764,18 @@ }, "node_modules/write-pkg/node_modules/detect-indent": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz", + "integrity": "sha1-OHHMCmoALow+Wzz38zYmRnXwa50=", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/write-pkg/node_modules/make-dir": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", "dev": true, - "license": "MIT", "dependencies": { "pify": "^4.0.1", "semver": "^5.6.0" @@ -18630,24 +19786,27 @@ }, "node_modules/write-pkg/node_modules/pify": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/write-pkg/node_modules/semver": { "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver" } }, "node_modules/write-pkg/node_modules/sort-keys": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", + "integrity": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=", "dev": true, - "license": "MIT", "dependencies": { "is-plain-obj": "^1.0.0" }, @@ -18657,16 +19816,18 @@ }, "node_modules/write-pkg/node_modules/type-fest": { "version": "0.4.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.4.1.tgz", + "integrity": "sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==", "dev": true, - "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=6" } }, "node_modules/write-pkg/node_modules/write-file-atomic": { "version": "2.4.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", + "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", "dev": true, - "license": "ISC", "dependencies": { "graceful-fs": "^4.1.11", "imurmurhash": "^0.1.4", @@ -18675,8 +19836,9 @@ }, "node_modules/write-pkg/node_modules/write-json-file": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/write-json-file/-/write-json-file-3.2.0.tgz", + "integrity": "sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==", "dev": true, - "license": "MIT", "dependencies": { "detect-indent": "^5.0.0", "graceful-fs": "^4.1.15", @@ -18690,9 +19852,10 @@ } }, "node_modules/ws": { - "version": "8.4.0", + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.5.0.tgz", + "integrity": "sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==", "dev": true, - "license": "MIT", "engines": { "node": ">=10.0.0" }, @@ -18711,22 +19874,26 @@ }, "node_modules/xml": { "version": "1.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz", + "integrity": "sha1-eLpyAgApxbyHuKgaPPzXS0ovweU=", + "dev": true }, "node_modules/xml-name-validator": { "version": "3.0.0", - "dev": true, - "license": "Apache-2.0" + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "dev": true }, "node_modules/xmlchars": { "version": "2.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true }, "node_modules/xss": { - "version": "1.0.10", - "license": "MIT", + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/xss/-/xss-1.0.11.tgz", + "integrity": "sha512-EimjrjThZeK2MO7WKR9mN5ZC1CSqivSl55wvUK5EtU6acf0rzEE1pN+9ZDrFXJ82BRp3JL38pPE6S4o/rpp1zQ==", "dependencies": { "commander": "^2.20.3", "cssfilter": "0.0.10" @@ -18740,45 +19907,52 @@ }, "node_modules/xss/node_modules/commander": { "version": "2.20.3", - "license": "MIT" + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, "node_modules/xtend": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.4" } }, "node_modules/y18n": { "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "dev": true, - "license": "ISC", "engines": { "node": ">=10" } }, "node_modules/yallist": { "version": "4.0.0", - "license": "ISC" + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" }, "node_modules/yaml": { "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", "dev": true, - "license": "ISC", "engines": { "node": ">= 6" } }, "node_modules/yaml-ast-parser": { "version": "0.0.43", - "dev": true, - "license": "Apache-2.0" + "resolved": "https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz", + "integrity": "sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==", + "dev": true }, "node_modules/yargs": { - "version": "17.3.1", + "version": "17.4.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.4.0.tgz", + "integrity": "sha512-WJudfrk81yWFSOkZYpAZx4Nt7V4xp7S/uJkX0CnxovMCt1wCE8LNftPpNuF9X/u9gN5nsD7ycYtRcDf2pL3UiA==", "dev": true, - "license": "MIT", "dependencies": { "cliui": "^7.0.2", "escalade": "^3.1.1", @@ -18794,32 +19968,36 @@ }, "node_modules/yargs-parser": { "version": "20.2.4", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz", + "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", "dev": true, - "license": "ISC", "engines": { "node": ">=10" } }, "node_modules/yargs/node_modules/yargs-parser": { - "version": "21.0.0", + "version": "21.0.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.0.1.tgz", + "integrity": "sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==", "dev": true, - "license": "ISC", "engines": { "node": ">=12" } }, "node_modules/yn": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/yocto-queue": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -18829,19 +20007,20 @@ }, "node_modules/zen-observable": { "version": "0.8.15", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/zen-observable/-/zen-observable-0.8.15.tgz", + "integrity": "sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==", + "dev": true }, "node_modules/zen-observable-ts": { "version": "1.2.3", + "resolved": "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-1.2.3.tgz", + "integrity": "sha512-hc/TGiPkAWpByykMwDcem3SdUgA4We+0Qb36bItSuJC9xD0XVBZoFHYoadAomDSNf64CG8Ydj0Qb8Od8BUWz5g==", "dev": true, - "license": "MIT", "dependencies": { "zen-observable": "0.8.15" } }, "query-graphs-js": { - "name": "@apollo/query-graphs", "version": "2.0.0-preview.9", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { @@ -18857,7 +20036,6 @@ } }, "query-planner-js": { - "name": "@apollo/query-planner", "version": "2.0.0-preview.9", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { @@ -18875,11 +20053,10 @@ } }, "subgraph-js": { - "name": "@apollo/subgraph", "version": "2.0.0-preview.9", "license": "MIT", "dependencies": { - "@apollo/core-schema": "apollographql/core-schema-js#v0.3" + "@apollo/core-schema": "^0.3" }, "engines": { "node": ">=12.13.0 <18.0" @@ -18890,6 +20067,15 @@ } }, "dependencies": { + "@ampproject/remapping": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.1.2.tgz", + "integrity": "sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "^0.3.0" + } + }, "@apollo/client": { "version": "3.5.10", "resolved": "https://registry.npmjs.org/@apollo/client/-/client-3.5.10.tgz", @@ -18918,23 +20104,17 @@ } }, "@apollo/core-schema": { - "version": "git+ssh://git@github.com/apollographql/core-schema-js.git#72dd58c1a2d914c52aec03ebc06afd0690d73613", - "from": "@apollo/core-schema@apollographql/core-schema-js#v0.3", + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@apollo/core-schema/-/core-schema-0.3.0.tgz", + "integrity": "sha512-v+Ys6+W1pDQu+XwP++tI5y4oZdzKrEuVXwsEenOmg2FO/3/G08C+qMhQ9YQ9Ug34rvQGQtgbIDssHEVk4YZS7g==", "requires": { "@protoplasm/recall": "^0.2" - }, - "dependencies": { - "@protoplasm/recall": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/@protoplasm/recall/-/recall-0.2.1.tgz", - "integrity": "sha512-7OfrS55jRaF7uERewbjkO1kjDOaCZ+xTgI2NPko6ERFktqtGomUNab8GuQwzSyXcwyxwAuiuy1KpaNxfPujcqQ==" - } } }, "@apollo/federation-internals": { "version": "file:internals-js", "requires": { - "@apollo/core-schema": "apollographql/core-schema-js#v0.3", + "@apollo/core-schema": "^0.3", "chalk": "^4.1.0", "js-levenshtein": "^1.1.6" } @@ -18963,6 +20143,8 @@ }, "@apollo/protobufjs": { "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@apollo/protobufjs/-/protobufjs-1.2.2.tgz", + "integrity": "sha512-vF+zxhPiLtkwxONs6YanSt1EpwpGilThpneExUN5K3tCymuxNnVq2yojTvnpRjv2QfsEIt/n7ozPIIzBLwGIDQ==", "requires": { "@protobufjs/aspromise": "^1.1.2", "@protobufjs/base64": "^1.1.2", @@ -18980,7 +20162,9 @@ }, "dependencies": { "@types/node": { - "version": "10.17.60" + "version": "10.17.60", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz", + "integrity": "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==" } } }, @@ -19005,7 +20189,7 @@ "@apollo/subgraph": { "version": "file:subgraph-js", "requires": { - "@apollo/core-schema": "apollographql/core-schema-js#v0.3" + "@apollo/core-schema": "^0.3" } }, "@apollo/utils.logger": { @@ -19021,117 +20205,85 @@ }, "@apollographql/graphql-playground-html": { "version": "1.6.29", + "resolved": "https://registry.npmjs.org/@apollographql/graphql-playground-html/-/graphql-playground-html-1.6.29.tgz", + "integrity": "sha512-xCcXpoz52rI4ksJSdOCxeOCn2DLocxwHf9dVT/Q90Pte1LX+LY+91SFtJF3KXVHH8kEin+g1KKCQPKBjZJfWNA==", "requires": { "xss": "^1.0.8" } }, "@babel/code-frame": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", + "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", "dev": true, "requires": { "@babel/highlight": "^7.16.7" } }, "@babel/compat-data": { - "version": "7.16.4", + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.7.tgz", + "integrity": "sha512-p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ==", "dev": true }, "@babel/core": { - "version": "7.16.7", + "version": "7.17.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.17.9.tgz", + "integrity": "sha512-5ug+SfZCpDAkVp9SFIZAzlW18rlzsOcJGaetCjkySnrXXDUw9AR8cDUm1iByTmdWM6yxX6/zycaV76w3YTF2gw==", "dev": true, "requires": { + "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.16.7", - "@babel/helper-compilation-targets": "^7.16.7", - "@babel/helper-module-transforms": "^7.16.7", - "@babel/helpers": "^7.16.7", - "@babel/parser": "^7.16.7", + "@babel/generator": "^7.17.9", + "@babel/helper-compilation-targets": "^7.17.7", + "@babel/helper-module-transforms": "^7.17.7", + "@babel/helpers": "^7.17.9", + "@babel/parser": "^7.17.9", "@babel/template": "^7.16.7", - "@babel/traverse": "^7.16.7", - "@babel/types": "^7.16.7", + "@babel/traverse": "^7.17.9", + "@babel/types": "^7.17.0", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.1.2", - "semver": "^6.3.0", - "source-map": "^0.5.0" + "json5": "^2.2.1", + "semver": "^6.3.0" }, "dependencies": { - "@babel/parser": { - "version": "7.16.7", - "dev": true - }, - "@babel/traverse": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.16.7", - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-function-name": "^7.16.7", - "@babel/helper-hoist-variables": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.16.7", - "@babel/types": "^7.16.7", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - } - }, "semver": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } } }, "@babel/generator": { - "version": "7.16.7", + "version": "7.17.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.17.9.tgz", + "integrity": "sha512-rAdDousTwxbIxbz5I7GEQ3lUip+xVCXooZNbsydCWs3xA7ZsYOv+CFRdzGxRX78BmQHu9B1Eso59AOZQOJDEdQ==", "dev": true, "requires": { - "@babel/types": "^7.16.7", + "@babel/types": "^7.17.0", "jsesc": "^2.5.1", "source-map": "^0.5.0" - }, - "dependencies": { - "@babel/types": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-annotate-as-pure": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz", + "integrity": "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==", "dev": true, "requires": { "@babel/types": "^7.16.7" - }, - "dependencies": { - "@babel/types": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-compilation-targets": { - "version": "7.16.7", + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.7.tgz", + "integrity": "sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==", "dev": true, "requires": { - "@babel/compat-data": "^7.16.4", + "@babel/compat-data": "^7.17.7", "@babel/helper-validator-option": "^7.16.7", "browserslist": "^4.17.5", "semver": "^6.3.0" @@ -19139,18 +20291,22 @@ "dependencies": { "semver": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } } }, "@babel/helper-create-class-features-plugin": { - "version": "7.16.7", + "version": "7.17.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.9.tgz", + "integrity": "sha512-kUjip3gruz6AJKOq5i3nC6CoCEEF/oHH3cp6tOZhB+IyyyPyW0g1Gfsxn3mkk6S08pIA2y8GQh609v9G/5sHVQ==", "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.16.7", "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-function-name": "^7.16.7", - "@babel/helper-member-expression-to-functions": "^7.16.7", + "@babel/helper-function-name": "^7.17.9", + "@babel/helper-member-expression-to-functions": "^7.17.7", "@babel/helper-optimise-call-expression": "^7.16.7", "@babel/helper-replace-supers": "^7.16.7", "@babel/helper-split-export-declaration": "^7.16.7" @@ -19158,175 +20314,85 @@ }, "@babel/helper-environment-visitor": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz", + "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==", "dev": true, "requires": { "@babel/types": "^7.16.7" - }, - "dependencies": { - "@babel/types": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-function-name": { - "version": "7.16.7", + "version": "7.17.9", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz", + "integrity": "sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==", "dev": true, "requires": { - "@babel/helper-get-function-arity": "^7.16.7", "@babel/template": "^7.16.7", - "@babel/types": "^7.16.7" - }, - "dependencies": { - "@babel/types": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - } - } - } - }, - "@babel/helper-get-function-arity": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/types": "^7.16.7" - }, - "dependencies": { - "@babel/types": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - } - } + "@babel/types": "^7.17.0" } }, "@babel/helper-hoist-variables": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz", + "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==", "dev": true, "requires": { "@babel/types": "^7.16.7" - }, - "dependencies": { - "@babel/types": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-member-expression-to-functions": { - "version": "7.16.7", + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz", + "integrity": "sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==", "dev": true, "requires": { - "@babel/types": "^7.16.7" - }, - "dependencies": { - "@babel/types": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - } - } + "@babel/types": "^7.17.0" } }, "@babel/helper-module-imports": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz", + "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==", "dev": true, "requires": { "@babel/types": "^7.16.7" - }, - "dependencies": { - "@babel/types": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-module-transforms": { - "version": "7.16.7", + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.17.7.tgz", + "integrity": "sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw==", "dev": true, "requires": { "@babel/helper-environment-visitor": "^7.16.7", "@babel/helper-module-imports": "^7.16.7", - "@babel/helper-simple-access": "^7.16.7", + "@babel/helper-simple-access": "^7.17.7", "@babel/helper-split-export-declaration": "^7.16.7", "@babel/helper-validator-identifier": "^7.16.7", "@babel/template": "^7.16.7", - "@babel/traverse": "^7.16.7", - "@babel/types": "^7.16.7" - }, - "dependencies": { - "@babel/parser": { - "version": "7.16.7", - "dev": true - }, - "@babel/traverse": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.16.7", - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-function-name": "^7.16.7", - "@babel/helper-hoist-variables": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.16.7", - "@babel/types": "^7.16.7", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - } - } + "@babel/traverse": "^7.17.3", + "@babel/types": "^7.17.0" } }, "@babel/helper-optimise-call-expression": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz", + "integrity": "sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==", "dev": true, "requires": { "@babel/types": "^7.16.7" - }, - "dependencies": { - "@babel/types": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-plugin-utils": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz", + "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==", "dev": true }, "@babel/helper-replace-supers": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz", + "integrity": "sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==", "dev": true, "requires": { "@babel/helper-environment-visitor": "^7.16.7", @@ -19334,57 +20400,21 @@ "@babel/helper-optimise-call-expression": "^7.16.7", "@babel/traverse": "^7.16.7", "@babel/types": "^7.16.7" - }, - "dependencies": { - "@babel/parser": { - "version": "7.16.7", - "dev": true - }, - "@babel/traverse": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.16.7", - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-function-name": "^7.16.7", - "@babel/helper-hoist-variables": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.16.7", - "@babel/types": "^7.16.7", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-simple-access": { - "version": "7.16.7", + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.17.7.tgz", + "integrity": "sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==", "dev": true, "requires": { - "@babel/types": "^7.16.7" - }, - "dependencies": { - "@babel/types": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - } - } + "@babel/types": "^7.17.0" } }, "@babel/helper-skip-transparent-expression-wrappers": { "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz", + "integrity": "sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==", "dev": true, "requires": { "@babel/types": "^7.16.0" @@ -19392,70 +20422,40 @@ }, "@babel/helper-split-export-declaration": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz", + "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==", "dev": true, "requires": { "@babel/types": "^7.16.7" - }, - "dependencies": { - "@babel/types": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-validator-identifier": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", + "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", "dev": true }, "@babel/helper-validator-option": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz", + "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==", "dev": true }, "@babel/helpers": { - "version": "7.16.7", + "version": "7.17.9", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.9.tgz", + "integrity": "sha512-cPCt915ShDWUEzEp3+UNRktO2n6v49l5RSnG9M5pS24hA+2FAc5si+Pn1i4VVbQQ+jh+bIZhPFQOJOzbrOYY1Q==", "dev": true, "requires": { "@babel/template": "^7.16.7", - "@babel/traverse": "^7.16.7", - "@babel/types": "^7.16.7" - }, - "dependencies": { - "@babel/parser": { - "version": "7.16.7", - "dev": true - }, - "@babel/traverse": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.16.7", - "@babel/helper-environment-visitor": "^7.16.7", - "@babel/helper-function-name": "^7.16.7", - "@babel/helper-hoist-variables": "^7.16.7", - "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.16.7", - "@babel/types": "^7.16.7", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - } - } + "@babel/traverse": "^7.17.9", + "@babel/types": "^7.17.0" } }, "@babel/highlight": { - "version": "7.16.7", + "version": "7.17.9", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.9.tgz", + "integrity": "sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg==", "dev": true, "requires": { "@babel/helper-validator-identifier": "^7.16.7", @@ -19465,6 +20465,8 @@ "dependencies": { "ansi-styles": { "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { "color-convert": "^1.9.0" @@ -19472,6 +20474,8 @@ }, "chalk": { "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "requires": { "ansi-styles": "^3.2.1", @@ -19481,6 +20485,8 @@ }, "color-convert": { "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "requires": { "color-name": "1.1.3" @@ -19488,18 +20494,26 @@ }, "color-name": { "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", "dev": true }, "escape-string-regexp": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "dev": true }, "has-flag": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", "dev": true }, "supports-color": { "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "requires": { "has-flag": "^3.0.0" @@ -19508,11 +20522,15 @@ } }, "@babel/parser": { - "version": "7.16.4", + "version": "7.17.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.17.9.tgz", + "integrity": "sha512-vqUSBLP8dQHFPdPi9bc5GK9vRkYHJ49fsZdtoJ8EQ8ibpwk5rPKfvNIwChB0KVXcIjcepEBBd2VHC5r9Gy8ueg==", "dev": true }, "@babel/plugin-proposal-class-properties": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz", + "integrity": "sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==", "dev": true, "requires": { "@babel/helper-create-class-features-plugin": "^7.16.7", @@ -19520,10 +20538,12 @@ } }, "@babel/plugin-proposal-object-rest-spread": { - "version": "7.16.7", + "version": "7.17.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.17.3.tgz", + "integrity": "sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==", "dev": true, "requires": { - "@babel/compat-data": "^7.16.4", + "@babel/compat-data": "^7.17.0", "@babel/helper-compilation-targets": "^7.16.7", "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", @@ -19532,6 +20552,8 @@ }, "@babel/plugin-syntax-async-generators": { "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" @@ -19539,6 +20561,8 @@ }, "@babel/plugin-syntax-bigint": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" @@ -19546,6 +20570,8 @@ }, "@babel/plugin-syntax-class-properties": { "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.12.13" @@ -19553,6 +20579,8 @@ }, "@babel/plugin-syntax-flow": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.16.7.tgz", + "integrity": "sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.16.7" @@ -19560,6 +20588,8 @@ }, "@babel/plugin-syntax-import-meta": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" @@ -19567,6 +20597,8 @@ }, "@babel/plugin-syntax-json-strings": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" @@ -19574,6 +20606,8 @@ }, "@babel/plugin-syntax-jsx": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.7.tgz", + "integrity": "sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.16.7" @@ -19581,6 +20615,8 @@ }, "@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" @@ -19588,6 +20624,8 @@ }, "@babel/plugin-syntax-nullish-coalescing-operator": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" @@ -19595,6 +20633,8 @@ }, "@babel/plugin-syntax-numeric-separator": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" @@ -19602,6 +20642,8 @@ }, "@babel/plugin-syntax-object-rest-spread": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" @@ -19609,6 +20651,8 @@ }, "@babel/plugin-syntax-optional-catch-binding": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" @@ -19616,6 +20660,8 @@ }, "@babel/plugin-syntax-optional-chaining": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" @@ -19623,6 +20669,8 @@ }, "@babel/plugin-syntax-top-level-await": { "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" @@ -19630,6 +20678,8 @@ }, "@babel/plugin-syntax-typescript": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.7.tgz", + "integrity": "sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.16.7" @@ -19637,6 +20687,8 @@ }, "@babel/plugin-transform-arrow-functions": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz", + "integrity": "sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.16.7" @@ -19644,6 +20696,8 @@ }, "@babel/plugin-transform-block-scoped-functions": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz", + "integrity": "sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.16.7" @@ -19651,6 +20705,8 @@ }, "@babel/plugin-transform-block-scoping": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz", + "integrity": "sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.16.7" @@ -19658,6 +20714,8 @@ }, "@babel/plugin-transform-classes": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz", + "integrity": "sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==", "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.16.7", @@ -19672,13 +20730,17 @@ }, "@babel/plugin-transform-computed-properties": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz", + "integrity": "sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-destructuring": { - "version": "7.16.7", + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.17.7.tgz", + "integrity": "sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.16.7" @@ -19686,6 +20748,8 @@ }, "@babel/plugin-transform-flow-strip-types": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.16.7.tgz", + "integrity": "sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.16.7", @@ -19694,6 +20758,8 @@ }, "@babel/plugin-transform-for-of": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz", + "integrity": "sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.16.7" @@ -19701,6 +20767,8 @@ }, "@babel/plugin-transform-function-name": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz", + "integrity": "sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==", "dev": true, "requires": { "@babel/helper-compilation-targets": "^7.16.7", @@ -19710,6 +20778,8 @@ }, "@babel/plugin-transform-literals": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz", + "integrity": "sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.16.7" @@ -19717,23 +20787,29 @@ }, "@babel/plugin-transform-member-expression-literals": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz", + "integrity": "sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-modules-commonjs": { - "version": "7.16.7", + "version": "7.17.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.17.9.tgz", + "integrity": "sha512-2TBFd/r2I6VlYn0YRTz2JdazS+FoUuQ2rIFHoAxtyP/0G3D82SBLaRq9rnUkpqlLg03Byfl/+M32mpxjO6KaPw==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.16.7", + "@babel/helper-module-transforms": "^7.17.7", "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-simple-access": "^7.16.7", + "@babel/helper-simple-access": "^7.17.7", "babel-plugin-dynamic-import-node": "^2.3.3" } }, "@babel/plugin-transform-object-super": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz", + "integrity": "sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.16.7", @@ -19742,6 +20818,8 @@ }, "@babel/plugin-transform-parameters": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz", + "integrity": "sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.16.7" @@ -19749,6 +20827,8 @@ }, "@babel/plugin-transform-property-literals": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz", + "integrity": "sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.16.7" @@ -19756,34 +20836,30 @@ }, "@babel/plugin-transform-react-display-name": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.7.tgz", + "integrity": "sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-react-jsx": { - "version": "7.16.7", + "version": "7.17.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.17.3.tgz", + "integrity": "sha512-9tjBm4O07f7mzKSIlEmPdiE6ub7kfIe6Cd+w+oQebpATfTQMAgW+YOuWxogbKVTulA+MEO7byMeIUtQ1z+z+ZQ==", "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.16.7", "@babel/helper-module-imports": "^7.16.7", "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-jsx": "^7.16.7", - "@babel/types": "^7.16.7" - }, - "dependencies": { - "@babel/types": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - } - } + "@babel/types": "^7.17.0" } }, "@babel/plugin-transform-shorthand-properties": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz", + "integrity": "sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.16.7" @@ -19791,6 +20867,8 @@ }, "@babel/plugin-transform-spread": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz", + "integrity": "sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.16.7", @@ -19799,13 +20877,17 @@ }, "@babel/plugin-transform-template-literals": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz", + "integrity": "sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/runtime": { - "version": "7.16.7", + "version": "7.17.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.9.tgz", + "integrity": "sha512-lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg==", "dev": true, "requires": { "regenerator-runtime": "^0.13.4" @@ -19813,56 +20895,53 @@ }, "@babel/template": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", + "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", "dev": true, "requires": { "@babel/code-frame": "^7.16.7", "@babel/parser": "^7.16.7", "@babel/types": "^7.16.7" - }, - "dependencies": { - "@babel/parser": { - "version": "7.16.7", - "dev": true - }, - "@babel/types": { - "version": "7.16.7", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/traverse": { - "version": "7.16.3", + "version": "7.17.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.9.tgz", + "integrity": "sha512-PQO8sDIJ8SIwipTPiR71kJQCKQYB5NGImbOviK8K+kg5xkNSYXLBupuX9QhatFowrsvo9Hj8WgArg3W7ijNAQw==", "dev": true, "requires": { - "@babel/code-frame": "^7.16.0", - "@babel/generator": "^7.16.0", - "@babel/helper-function-name": "^7.16.0", - "@babel/helper-hoist-variables": "^7.16.0", - "@babel/helper-split-export-declaration": "^7.16.0", - "@babel/parser": "^7.16.3", - "@babel/types": "^7.16.0", + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.17.9", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.17.9", + "@babel/helper-hoist-variables": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/parser": "^7.17.9", + "@babel/types": "^7.17.0", "debug": "^4.1.0", "globals": "^11.1.0" } }, "@babel/types": { - "version": "7.16.0", + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.17.0.tgz", + "integrity": "sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.15.7", + "@babel/helper-validator-identifier": "^7.16.7", "to-fast-properties": "^2.0.0" } }, "@bcoe/v8-coverage": { "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", "dev": true }, "@cnakazawa/watch": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", + "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", "dev": true, "requires": { "exec-sh": "^0.3.2", @@ -19876,7 +20955,9 @@ "dev": true }, "@dabh/diagnostics": { - "version": "2.0.2", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz", + "integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==", "dev": true, "requires": { "colorspace": "1.1.x", @@ -19886,6 +20967,8 @@ }, "@endemolshinegroup/cosmiconfig-typescript-loader": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@endemolshinegroup/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-3.0.2.tgz", + "integrity": "sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==", "dev": true, "requires": { "lodash.get": "^4", @@ -19895,15 +20978,17 @@ } }, "@eslint/eslintrc": { - "version": "1.0.5", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.2.1.tgz", + "integrity": "sha512-bxvbYnBPN1Gibwyp6NrpnFzA3YtRL3BBAyEAFVIpNTm2Rn4Vy87GA5M4aSn3InRrlsbX5N0GW7XIx+U4SAEKdQ==", "dev": true, "peer": true, "requires": { "ajv": "^6.12.4", "debug": "^4.3.2", - "espree": "^9.2.0", + "espree": "^9.3.1", "globals": "^13.9.0", - "ignore": "^4.0.6", + "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", "minimatch": "^3.0.4", @@ -19911,27 +20996,38 @@ }, "dependencies": { "globals": { - "version": "13.12.0", + "version": "13.13.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.13.0.tgz", + "integrity": "sha512-EQ7Q18AJlPwp3vUDL4mKA0KXrXyNIQyWon6T6XQiBQF0XHvRsiCSrWmmeATpUzdJN2HhWZU6Pdl0a9zdep5p6A==", "dev": true, "peer": true, "requires": { "type-fest": "^0.20.2" } }, - "ignore": { - "version": "4.0.6", + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, - "peer": true + "peer": true, + "requires": { + "brace-expansion": "^1.1.7" + } }, "type-fest": { "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, "peer": true } } }, "@gar/promisify": { - "version": "1.1.2" + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", + "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==" }, "@graphql-codegen/cli": { "version": "2.6.2", @@ -19979,17 +21075,6 @@ "wrap-ansi": "^7.0.0", "yaml": "^1.10.0", "yargs": "^17.0.0" - }, - "dependencies": { - "minimatch": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-4.2.1.tgz", - "integrity": "sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - } } }, "@graphql-codegen/core": { @@ -20005,9 +21090,9 @@ } }, "@graphql-codegen/plugin-helpers": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.4.1.tgz", - "integrity": "sha512-OPMma7aUnES3Dh+M0BfiNBnJLmYuH60EnbULAhufxFDn/Y2OA0Ht/LQok9beX6VN4ASZEMCOAGItJezGJr5DJw==", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.4.2.tgz", + "integrity": "sha512-LJNvwAPv/sKtI3RnRDm+nPD+JeOfOuSOS4FFIpQCMUCyMnFcchV/CPTTv7tT12fLUpEg6XjuFfDBvOwndti30Q==", "dev": true, "requires": { "@graphql-tools/utils": "^8.5.2", @@ -20020,6 +21105,8 @@ }, "@graphql-codegen/schema-ast": { "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.4.1.tgz", + "integrity": "sha512-bIWlKk/ShoVJfghA4Rt1OWnd34/dQmZM/vAe6fu6QKyOh44aAdqPtYQ2dbTyFXoknmu504etKJGEDllYNUJRfg==", "dev": true, "requires": { "@graphql-codegen/plugin-helpers": "^2.3.2", @@ -20072,54 +21159,65 @@ } }, "@graphql-tools/apollo-engine-loader": { - "version": "7.2.1", + "version": "7.2.7", + "resolved": "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-7.2.7.tgz", + "integrity": "sha512-FNX8QW2BeYyFNk+UX4pn6zaiK1NnMfUMeU3ZYYt2dvJT4tFCt/tanmXZbQ1+YSvnH0j6PU0eKoeJTcYVK3f4Fw==", "dev": true, "requires": { - "@graphql-tools/utils": "^8.5.1", - "cross-undici-fetch": "^0.0.20", + "@graphql-tools/utils": "8.6.6", + "cross-undici-fetch": "^0.1.19", "sync-fetch": "0.3.1", "tslib": "~2.3.0" } }, "@graphql-tools/batch-execute": { - "version": "8.3.1", + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.4.2.tgz", + "integrity": "sha512-5/el640oG/jfjQCjCRDdtIALyUib8YPONM2NSmckp2g1nOrPTAx/isz3Uptp9y5OI1UXXhONiKy5euTbgsGoXw==", "dev": true, "requires": { - "@graphql-tools/utils": "^8.5.1", + "@graphql-tools/utils": "8.6.6", "dataloader": "2.0.0", "tslib": "~2.3.0", "value-or-promise": "1.0.11" } }, "@graphql-tools/code-file-loader": { - "version": "7.2.3", + "version": "7.2.11", + "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.2.11.tgz", + "integrity": "sha512-W3iOwGb3yR8DYXBB0RE5X+jo8ExNzYUUhDP2nB1XDgDoOylfN+WNzPcWfTczTd9SEXqvbjSa5UqH7dv37S491A==", "dev": true, "requires": { - "@graphql-tools/graphql-tag-pluck": "^7.1.3", - "@graphql-tools/utils": "^8.5.1", + "@graphql-tools/graphql-tag-pluck": "7.2.3", + "@graphql-tools/utils": "8.6.6", "globby": "^11.0.3", "tslib": "~2.3.0", "unixify": "^1.0.0" } }, "@graphql-tools/delegate": { - "version": "8.4.3", + "version": "8.7.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-8.7.2.tgz", + "integrity": "sha512-SSmx5N6Cq23KRT0YepdmcYugey7MDZSXxtJ8KHHdc5eW9IAHXZWsJWdVnI9woU9omsnE6svnxblZb1UUBl7AUg==", "dev": true, "requires": { - "@graphql-tools/batch-execute": "^8.3.1", - "@graphql-tools/schema": "^8.3.1", - "@graphql-tools/utils": "^8.5.4", + "@graphql-tools/batch-execute": "8.4.2", + "@graphql-tools/schema": "8.3.7", + "@graphql-tools/utils": "8.6.6", "dataloader": "2.0.0", + "graphql-executor": "0.0.22", "tslib": "~2.3.0", "value-or-promise": "1.0.11" } }, "@graphql-tools/git-loader": { - "version": "7.1.2", + "version": "7.1.10", + "resolved": "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-7.1.10.tgz", + "integrity": "sha512-v6kyHVg6I5GMjDlcLhBwcvFyJFOCbt5azaEvCq6UPHeziVmFK96gpvHdONfxLIj5k7lpNxodL5zJ2TlDQuOfbQ==", "dev": true, "requires": { - "@graphql-tools/graphql-tag-pluck": "^7.1.3", - "@graphql-tools/utils": "^8.5.1", + "@graphql-tools/graphql-tag-pluck": "7.2.3", + "@graphql-tools/utils": "8.6.6", "is-glob": "4.0.3", "micromatch": "^4.0.4", "tslib": "~2.3.0", @@ -20127,103 +21225,123 @@ } }, "@graphql-tools/github-loader": { - "version": "7.2.1", + "version": "7.2.11", + "resolved": "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-7.2.11.tgz", + "integrity": "sha512-OKYViepaFd2YFm8Du/CWP70Wh9JqKyHLdYt48InmQTEQGPlMXxrxztY127d/eDo5uW0Osp77G0d34fFjxD8XKg==", "dev": true, "requires": { - "@graphql-tools/graphql-tag-pluck": "^7.1.3", - "@graphql-tools/utils": "^8.5.1", - "cross-undici-fetch": "^0.0.20", + "@graphql-tools/graphql-tag-pluck": "7.2.3", + "@graphql-tools/utils": "8.6.6", + "cross-undici-fetch": "^0.1.19", "sync-fetch": "0.3.1", "tslib": "~2.3.0" } }, "@graphql-tools/graphql-file-loader": { - "version": "7.3.3", + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.3.8.tgz", + "integrity": "sha512-SpQZQ0klbox/kxYCLFBTmhLuQFm7P6usWVIqwROK4JSomwCuccc2zDsr1H7ayDpanD3yfkzMsl6gPkOkAo52pA==", "dev": true, "requires": { - "@graphql-tools/import": "^6.5.7", - "@graphql-tools/utils": "^8.5.1", + "@graphql-tools/import": "6.6.10", + "@graphql-tools/utils": "8.6.6", "globby": "^11.0.3", "tslib": "~2.3.0", "unixify": "^1.0.0" } }, "@graphql-tools/graphql-tag-pluck": { - "version": "7.1.4", + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.2.3.tgz", + "integrity": "sha512-rk6R98ZWeZK63W2jQWwnFZGcQUrbj/Dl3ok0m2DxHTqjHwhRdykY5o1lEX7SzFqGXjs7WE5tUpvlzswAKmklFw==", "dev": true, "requires": { - "@babel/parser": "7.16.4", - "@babel/traverse": "7.16.3", - "@babel/types": "7.16.0", - "@graphql-tools/utils": "^8.5.1", + "@babel/parser": "^7.16.8", + "@babel/traverse": "^7.16.8", + "@babel/types": "^7.16.8", + "@graphql-tools/utils": "8.6.6", "tslib": "~2.3.0" } }, "@graphql-tools/import": { - "version": "6.6.4", + "version": "6.6.10", + "resolved": "https://registry.npmjs.org/@graphql-tools/import/-/import-6.6.10.tgz", + "integrity": "sha512-yHdlEPTvIjrngtQFNgkMQJt/DjG3hQKvc6Mb8kaatFV4yERN5zx+0vpdrwxTwRNG1N7bI/YCkbrc7PXOb+g89Q==", "dev": true, "requires": { - "@graphql-tools/utils": "8.6.0", + "@graphql-tools/utils": "8.6.6", "resolve-from": "5.0.0", "tslib": "~2.3.0" } }, "@graphql-tools/json-file-loader": { - "version": "7.3.3", + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.3.8.tgz", + "integrity": "sha512-W3nVLAp8m787A17wja7ysayij7WMRu+lF8LeCWr9eoyiCuw65i63y0G4eqZ5+Q0+E2BYWlKJyk/Z0vsFVJGMUA==", "dev": true, "requires": { - "@graphql-tools/utils": "^8.5.1", + "@graphql-tools/utils": "8.6.6", "globby": "^11.0.3", "tslib": "~2.3.0", "unixify": "^1.0.0" } }, "@graphql-tools/load": { - "version": "7.5.1", + "version": "7.5.7", + "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.5.7.tgz", + "integrity": "sha512-Z4oKf4MdBvl0EyubmvPL14ldhovKz8C61rQPHD8pjnC8Z0RbvW0a/sns/yuHuCVZoJMsSboU65DPzPTIoQUM4w==", "dev": true, "requires": { - "@graphql-tools/schema": "8.3.1", - "@graphql-tools/utils": "^8.6.0", + "@graphql-tools/schema": "8.3.7", + "@graphql-tools/utils": "8.6.6", "p-limit": "3.1.0", "tslib": "~2.3.0" } }, "@graphql-tools/merge": { - "version": "8.2.1", + "version": "8.2.7", + "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.2.7.tgz", + "integrity": "sha512-rKxjNogqu1UYAG/y5FOb6lJsmSQbWA+jq4inWjNEVX54VGGE7/WGnmPaqcsyomNOfS3vIRS6NnG+DxiQSqetjg==", "requires": { - "@graphql-tools/utils": "^8.5.1", + "@graphql-tools/utils": "8.6.6", "tslib": "~2.3.0" } }, "@graphql-tools/mock": { - "version": "8.5.1", + "version": "8.6.5", + "resolved": "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.6.5.tgz", + "integrity": "sha512-2Uz2qerJVU7wLDQseWNmgCUwiLgM3DfFJEPeQRC1s6oQELstKZHSW8Fb45mmjt37fyKqUdwPUT65PwzK03CK/Q==", "requires": { - "@graphql-tools/schema": "^8.3.1", - "@graphql-tools/utils": "^8.6.0", + "@graphql-tools/schema": "8.3.7", + "@graphql-tools/utils": "8.6.6", "fast-json-stable-stringify": "^2.1.0", "tslib": "~2.3.0" } }, "@graphql-tools/optimize": { - "version": "1.1.1", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.2.0.tgz", + "integrity": "sha512-l0PTqgHeorQdeOizUor6RB49eOAng9+abSxiC5/aHRo6hMmXVaqv5eqndlmxCpx9BkgNb3URQbK+ZZHVktkP/g==", "dev": true, "requires": { "tslib": "~2.3.0" } }, "@graphql-tools/prisma-loader": { - "version": "7.1.1", + "version": "7.1.8", + "resolved": "https://registry.npmjs.org/@graphql-tools/prisma-loader/-/prisma-loader-7.1.8.tgz", + "integrity": "sha512-lOqCfGGDrK0KmNkFQA0N2lD8idVLhPd7HlznRfIje+NiLeftHuBtzLPvoNwOBcwWLgyYxHIkE30WatyK52VCCQ==", "dev": true, "requires": { - "@graphql-tools/url-loader": "^7.4.2", - "@graphql-tools/utils": "^8.5.1", + "@graphql-tools/url-loader": "7.9.9", + "@graphql-tools/utils": "8.6.6", "@types/js-yaml": "^4.0.0", "@types/json-stable-stringify": "^1.0.32", "@types/jsonwebtoken": "^8.5.0", "chalk": "^4.1.0", "debug": "^4.3.1", - "dotenv": "^10.0.0", - "graphql-request": "^3.3.0", + "dotenv": "^16.0.0", + "graphql-request": "^4.0.0", "http-proxy-agent": "^5.0.0", "https-proxy-agent": "^5.0.0", "isomorphic-fetch": "^3.0.0", @@ -20238,16 +21356,20 @@ } }, "@graphql-tools/relay-operation-optimizer": { - "version": "6.4.1", + "version": "6.4.6", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.4.6.tgz", + "integrity": "sha512-RJ2zoVUGPXbs1zdFjY56YWGsJaG9RyTOk5wlFe369ts+iXnzpM0ezszLfOjggtXUPlVTbjWNmdHASOh3rZ8uBA==", "dev": true, "requires": { - "@graphql-tools/utils": "^8.5.1", + "@graphql-tools/utils": "8.6.6", "relay-compiler": "12.0.0", "tslib": "~2.3.0" }, "dependencies": { "cliui": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", "dev": true, "requires": { "string-width": "^4.2.0", @@ -20257,6 +21379,8 @@ }, "relay-compiler": { "version": "12.0.0", + "resolved": "https://registry.npmjs.org/relay-compiler/-/relay-compiler-12.0.0.tgz", + "integrity": "sha512-SWqeSQZ+AMU/Cr7iZsHi1e78Z7oh00I5SvR092iCJq79aupqJ6Ds+I1Pz/Vzo5uY5PY0jvC4rBJXzlIN5g9boQ==", "dev": true, "requires": { "@babel/core": "^7.14.0", @@ -20280,6 +21404,8 @@ }, "wrap-ansi": { "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", "dev": true, "requires": { "ansi-styles": "^4.0.0", @@ -20289,10 +21415,14 @@ }, "y18n": { "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", "dev": true }, "yargs": { "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", "dev": true, "requires": { "cliui": "^6.0.0", @@ -20310,6 +21440,8 @@ }, "yargs-parser": { "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", "dev": true, "requires": { "camelcase": "^5.0.0", @@ -20319,104 +21451,117 @@ } }, "@graphql-tools/schema": { - "version": "8.3.1", + "version": "8.3.7", + "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.3.7.tgz", + "integrity": "sha512-7byr9J6rfMPFPfiR4u65dy20xHATTvbgOY7KYd1sYPnMKKfRZe0tUgpnE+noXcfob7N8s366WaVh7bEoztQMwg==", "requires": { - "@graphql-tools/merge": "^8.2.1", - "@graphql-tools/utils": "^8.5.1", + "@graphql-tools/merge": "8.2.7", + "@graphql-tools/utils": "8.6.6", "tslib": "~2.3.0", "value-or-promise": "1.0.11" } }, "@graphql-tools/url-loader": { - "version": "7.7.0", + "version": "7.9.9", + "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.9.9.tgz", + "integrity": "sha512-qhjBJ3oCXZrzvJchVwtrahr48TXOHPYZ4YXklGrbJVoJs3LP0a7CYUwuXeiNuN+dpgaxkb175sIEN9m0FadGRw==", "dev": true, "requires": { - "@graphql-tools/delegate": "^8.4.1", - "@graphql-tools/utils": "^8.5.1", - "@graphql-tools/wrap": "^8.3.1", + "@graphql-tools/delegate": "8.7.2", + "@graphql-tools/utils": "8.6.6", + "@graphql-tools/wrap": "8.4.11", "@n1ru4l/graphql-live-query": "^0.9.0", "@types/websocket": "^1.0.4", "@types/ws": "^8.0.0", - "cross-undici-fetch": "^0.1.4", + "cross-undici-fetch": "^0.1.19", "dset": "^3.1.0", "extract-files": "^11.0.0", - "graphql-sse": "^1.0.1", - "graphql-ws": "^5.4.1", - "isomorphic-ws": "^4.0.1", - "meros": "^1.1.4", - "subscriptions-transport-ws": "^0.11.0", - "sync-fetch": "^0.3.1", - "tslib": "^2.3.0", - "valid-url": "^1.0.9", - "value-or-promise": "^1.0.11", - "ws": "^8.3.0" - }, - "dependencies": { - "cross-undici-fetch": { - "version": "0.1.13", - "dev": true, - "requires": { - "abort-controller": "^3.0.0", - "form-data-encoder": "^1.7.1", - "formdata-node": "^4.3.1", - "node-fetch": "^2.6.5", - "undici": "^4.9.3" - } - }, - "meros": { - "version": "1.1.4", - "dev": true, - "requires": {} - } + "graphql-sse": "^1.0.1", + "graphql-ws": "^5.4.1", + "isomorphic-ws": "^4.0.1", + "meros": "^1.1.4", + "subscriptions-transport-ws": "^0.11.0", + "sync-fetch": "^0.3.1", + "tslib": "^2.3.0", + "value-or-promise": "^1.0.11", + "ws": "^8.3.0" } }, "@graphql-tools/utils": { - "version": "8.6.0", + "version": "8.6.6", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.6.6.tgz", + "integrity": "sha512-wjY2ljKLCnnbRrDNPPgPNqCujou0LFSOWcxAjV6DYUlfFWTsAEvlYmsmY4T+K12wI/fnqoJ2bUwIlap1plFDMg==", "requires": { "tslib": "~2.3.0" } }, "@graphql-tools/wrap": { - "version": "8.3.3", + "version": "8.4.11", + "resolved": "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-8.4.11.tgz", + "integrity": "sha512-bif9yNZCoG1fFTGuIV4UblsJI95VSufl0RReXdr6f2yNbnqjSzgoDMB17WQlLrNOBrXa7r8N5aWBr5hBGhtGig==", "dev": true, "requires": { - "@graphql-tools/delegate": "^8.4.2", - "@graphql-tools/schema": "^8.3.1", - "@graphql-tools/utils": "^8.5.3", + "@graphql-tools/delegate": "8.7.2", + "@graphql-tools/schema": "8.3.7", + "@graphql-tools/utils": "8.6.6", "tslib": "~2.3.0", "value-or-promise": "1.0.11" } }, "@graphql-typed-document-node/core": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.1.1.tgz", + "integrity": "sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==", "dev": true, "requires": {} }, "@humanwhocodes/config-array": { - "version": "0.9.2", + "version": "0.9.5", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz", + "integrity": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==", "dev": true, "peer": true, "requires": { "@humanwhocodes/object-schema": "^1.2.1", "debug": "^4.1.1", "minimatch": "^3.0.4" + }, + "dependencies": { + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "peer": true, + "requires": { + "brace-expansion": "^1.1.7" + } + } } }, "@humanwhocodes/object-schema": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", "dev": true, "peer": true }, "@hutson/parse-repository-url": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz", + "integrity": "sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==", "dev": true }, "@iarna/toml": { "version": "2.2.5", + "resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz", + "integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==", "dev": true }, "@istanbuljs/load-nyc-config": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", "dev": true, "requires": { "camelcase": "^5.3.1", @@ -20428,6 +21573,8 @@ "dependencies": { "argparse": { "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, "requires": { "sprintf-js": "~1.0.2" @@ -20435,6 +21582,8 @@ }, "js-yaml": { "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, "requires": { "argparse": "^1.0.7", @@ -20445,6 +21594,8 @@ }, "@istanbuljs/schema": { "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", "dev": true }, "@jest/console": { @@ -20643,6 +21794,8 @@ "dependencies": { "source-map": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true } } @@ -20661,10 +21814,36 @@ } }, "@josephg/resolvable": { - "version": "1.0.1" + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@josephg/resolvable/-/resolvable-1.0.1.tgz", + "integrity": "sha512-CtzORUwWTTOTqfVtHaKRJ0I1kNQd1bpn3sUh8I3nJDVY+5/M/Oe1DnEWzPQvqq/xPIIkzzzIP7mfCoAjFRvDhg==" + }, + "@jridgewell/resolve-uri": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz", + "integrity": "sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==", + "dev": true + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.11", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz", + "integrity": "sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz", + "integrity": "sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } }, "@lerna/add": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/add/-/add-4.0.0.tgz", + "integrity": "sha512-cpmAH1iS3k8JBxNvnMqrGTTjbY/ZAiKa1ChJzFevMYY3eeqbvhsBKnBcxjRXtdrJ6bd3dCQM+ZtK+0i682Fhng==", "dev": true, "requires": { "@lerna/bootstrap": "4.0.0", @@ -20681,6 +21860,8 @@ }, "@lerna/bootstrap": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-4.0.0.tgz", + "integrity": "sha512-RkS7UbeM2vu+kJnHzxNRCLvoOP9yGNgkzRdy4UV2hNalD7EP41bLvRVOwRYQ7fhc2QcbhnKNdOBihYRL0LcKtw==", "dev": true, "requires": { "@lerna/command": "4.0.0", @@ -20709,6 +21890,8 @@ }, "@lerna/changed": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/changed/-/changed-4.0.0.tgz", + "integrity": "sha512-cD+KuPRp6qiPOD+BO6S6SN5cARspIaWSOqGBpGnYzLb4uWT8Vk4JzKyYtc8ym1DIwyoFXHosXt8+GDAgR8QrgQ==", "dev": true, "requires": { "@lerna/collect-updates": "4.0.0", @@ -20719,6 +21902,8 @@ }, "@lerna/check-working-tree": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/check-working-tree/-/check-working-tree-4.0.0.tgz", + "integrity": "sha512-/++bxM43jYJCshBiKP5cRlCTwSJdRSxVmcDAXM+1oUewlZJVSVlnks5eO0uLxokVFvLhHlC5kHMc7gbVFPHv6Q==", "dev": true, "requires": { "@lerna/collect-uncommitted": "4.0.0", @@ -20728,6 +21913,8 @@ }, "@lerna/child-process": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/child-process/-/child-process-4.0.0.tgz", + "integrity": "sha512-XtCnmCT9eyVsUUHx6y/CTBYdV9g2Cr/VxyseTWBgfIur92/YKClfEtJTbOh94jRT62hlKLqSvux/UhxXVh613Q==", "dev": true, "requires": { "chalk": "^4.1.0", @@ -20737,6 +21924,8 @@ }, "@lerna/clean": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/clean/-/clean-4.0.0.tgz", + "integrity": "sha512-uugG2iN9k45ITx2jtd8nEOoAtca8hNlDCUM0N3lFgU/b1mEQYAPRkqr1qs4FLRl/Y50ZJ41wUz1eazS+d/0osA==", "dev": true, "requires": { "@lerna/command": "4.0.0", @@ -20751,6 +21940,8 @@ }, "@lerna/cli": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/cli/-/cli-4.0.0.tgz", + "integrity": "sha512-Neaw3GzFrwZiRZv2g7g6NwFjs3er1vhraIniEs0jjVLPMNC4eata0na3GfE5yibkM/9d3gZdmihhZdZ3EBdvYA==", "dev": true, "requires": { "@lerna/global-options": "4.0.0", @@ -20761,6 +21952,8 @@ "dependencies": { "yargs": { "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, "requires": { "cliui": "^7.0.2", @@ -20776,6 +21969,8 @@ }, "@lerna/collect-uncommitted": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/collect-uncommitted/-/collect-uncommitted-4.0.0.tgz", + "integrity": "sha512-ufSTfHZzbx69YNj7KXQ3o66V4RC76ffOjwLX0q/ab//61bObJ41n03SiQEhSlmpP+gmFbTJ3/7pTe04AHX9m/g==", "dev": true, "requires": { "@lerna/child-process": "4.0.0", @@ -20785,6 +21980,8 @@ }, "@lerna/collect-updates": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/collect-updates/-/collect-updates-4.0.0.tgz", + "integrity": "sha512-bnNGpaj4zuxsEkyaCZLka9s7nMs58uZoxrRIPJ+nrmrZYp1V5rrd+7/NYTuunOhY2ug1sTBvTAxj3NZQ+JKnOw==", "dev": true, "requires": { "@lerna/child-process": "4.0.0", @@ -20792,10 +21989,23 @@ "minimatch": "^3.0.4", "npmlog": "^4.1.2", "slash": "^3.0.0" + }, + "dependencies": { + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + } } }, "@lerna/command": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/command/-/command-4.0.0.tgz", + "integrity": "sha512-LM9g3rt5FsPNFqIHUeRwWXLNHJ5NKzOwmVKZ8anSp4e1SPrv2HNc1V02/9QyDDZK/w+5POXH5lxZUI1CHaOK/A==", "dev": true, "requires": { "@lerna/child-process": "4.0.0", @@ -20812,6 +22022,8 @@ }, "@lerna/conventional-commits": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/conventional-commits/-/conventional-commits-4.0.0.tgz", + "integrity": "sha512-CSUQRjJHFrH8eBn7+wegZLV3OrNc0Y1FehYfYGhjLE2SIfpCL4bmfu/ViYuHh9YjwHaA+4SX6d3hR+xkeseKmw==", "dev": true, "requires": { "@lerna/validation-error": "4.0.0", @@ -20829,6 +22041,8 @@ }, "@lerna/create": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/create/-/create-4.0.0.tgz", + "integrity": "sha512-mVOB1niKByEUfxlbKTM1UNECWAjwUdiioIbRQZEeEabtjCL69r9rscIsjlGyhGWCfsdAG5wfq4t47nlDXdLLag==", "dev": true, "requires": { "@lerna/child-process": "4.0.0", @@ -20853,6 +22067,8 @@ }, "@lerna/create-symlink": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/create-symlink/-/create-symlink-4.0.0.tgz", + "integrity": "sha512-I0phtKJJdafUiDwm7BBlEUOtogmu8+taxq6PtIrxZbllV9hWg59qkpuIsiFp+no7nfRVuaasNYHwNUhDAVQBig==", "dev": true, "requires": { "cmd-shim": "^4.1.0", @@ -20862,6 +22078,8 @@ }, "@lerna/describe-ref": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/describe-ref/-/describe-ref-4.0.0.tgz", + "integrity": "sha512-eTU5+xC4C5Gcgz+Ey4Qiw9nV2B4JJbMulsYJMW8QjGcGh8zudib7Sduj6urgZXUYNyhYpRs+teci9M2J8u+UvQ==", "dev": true, "requires": { "@lerna/child-process": "4.0.0", @@ -20870,6 +22088,8 @@ }, "@lerna/diff": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/diff/-/diff-4.0.0.tgz", + "integrity": "sha512-jYPKprQVg41+MUMxx6cwtqsNm0Yxx9GDEwdiPLwcUTFx+/qKCEwifKNJ1oGIPBxyEHX2PFCOjkK39lHoj2qiag==", "dev": true, "requires": { "@lerna/child-process": "4.0.0", @@ -20880,6 +22100,8 @@ }, "@lerna/exec": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/exec/-/exec-4.0.0.tgz", + "integrity": "sha512-VGXtL/b/JfY84NB98VWZpIExfhLOzy0ozm/0XaS4a2SmkAJc5CeUfrhvHxxkxiTBLkU+iVQUyYEoAT0ulQ8PCw==", "dev": true, "requires": { "@lerna/child-process": "4.0.0", @@ -20893,6 +22115,8 @@ }, "@lerna/filter-options": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/filter-options/-/filter-options-4.0.0.tgz", + "integrity": "sha512-vV2ANOeZhOqM0rzXnYcFFCJ/kBWy/3OA58irXih9AMTAlQLymWAK0akWybl++sUJ4HB9Hx12TOqaXbYS2NM5uw==", "dev": true, "requires": { "@lerna/collect-updates": "4.0.0", @@ -20903,6 +22127,8 @@ }, "@lerna/filter-packages": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/filter-packages/-/filter-packages-4.0.0.tgz", + "integrity": "sha512-+4AJIkK7iIiOaqCiVTYJxh/I9qikk4XjNQLhE3kixaqgMuHl1NQ99qXRR0OZqAWB9mh8Z1HA9bM5K1HZLBTOqA==", "dev": true, "requires": { "@lerna/validation-error": "4.0.0", @@ -20912,6 +22138,8 @@ }, "@lerna/get-npm-exec-opts": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-4.0.0.tgz", + "integrity": "sha512-yvmkerU31CTWS2c7DvmAWmZVeclPBqI7gPVr5VATUKNWJ/zmVcU4PqbYoLu92I9Qc4gY1TuUplMNdNuZTSL7IQ==", "dev": true, "requires": { "npmlog": "^4.1.2" @@ -20919,6 +22147,8 @@ }, "@lerna/get-packed": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/get-packed/-/get-packed-4.0.0.tgz", + "integrity": "sha512-rfWONRsEIGyPJTxFzC8ECb3ZbsDXJbfqWYyeeQQDrJRPnEJErlltRLPLgC2QWbxFgFPsoDLeQmFHJnf0iDfd8w==", "dev": true, "requires": { "fs-extra": "^9.1.0", @@ -20928,6 +22158,8 @@ }, "@lerna/github-client": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/github-client/-/github-client-4.0.0.tgz", + "integrity": "sha512-2jhsldZtTKXYUBnOm23Lb0Fx8G4qfSXF9y7UpyUgWUj+YZYd+cFxSuorwQIgk5P4XXrtVhsUesIsli+BYSThiw==", "dev": true, "requires": { "@lerna/child-process": "4.0.0", @@ -20939,6 +22171,8 @@ }, "@lerna/gitlab-client": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/gitlab-client/-/gitlab-client-4.0.0.tgz", + "integrity": "sha512-OMUpGSkeDWFf7BxGHlkbb35T7YHqVFCwBPSIR6wRsszY8PAzCYahtH3IaJzEJyUg6vmZsNl0FSr3pdA2skhxqA==", "dev": true, "requires": { "node-fetch": "^2.6.1", @@ -20948,10 +22182,14 @@ }, "@lerna/global-options": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/global-options/-/global-options-4.0.0.tgz", + "integrity": "sha512-TRMR8afAHxuYBHK7F++Ogop2a82xQjoGna1dvPOY6ltj/pEx59pdgcJfYcynYqMkFIk8bhLJJN9/ndIfX29FTQ==", "dev": true }, "@lerna/has-npm-version": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/has-npm-version/-/has-npm-version-4.0.0.tgz", + "integrity": "sha512-LQ3U6XFH8ZmLCsvsgq1zNDqka0Xzjq5ibVN+igAI5ccRWNaUsE/OcmsyMr50xAtNQMYMzmpw5GVLAivT2/YzCg==", "dev": true, "requires": { "@lerna/child-process": "4.0.0", @@ -20960,6 +22198,8 @@ }, "@lerna/import": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/import/-/import-4.0.0.tgz", + "integrity": "sha512-FaIhd+4aiBousKNqC7TX1Uhe97eNKf5/SC7c5WZANVWtC7aBWdmswwDt3usrzCNpj6/Wwr9EtEbYROzxKH8ffg==", "dev": true, "requires": { "@lerna/child-process": "4.0.0", @@ -20974,6 +22214,8 @@ }, "@lerna/info": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/info/-/info-4.0.0.tgz", + "integrity": "sha512-8Uboa12kaCSZEn4XRfPz5KU9XXoexSPS4oeYGj76s2UQb1O1GdnEyfjyNWoUl1KlJ2i/8nxUskpXIftoFYH0/Q==", "dev": true, "requires": { "@lerna/command": "4.0.0", @@ -20983,6 +22225,8 @@ }, "@lerna/init": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/init/-/init-4.0.0.tgz", + "integrity": "sha512-wY6kygop0BCXupzWj5eLvTUqdR7vIAm0OgyV9WHpMYQGfs1V22jhztt8mtjCloD/O0nEe4tJhdG62XU5aYmPNQ==", "dev": true, "requires": { "@lerna/child-process": "4.0.0", @@ -20994,6 +22238,8 @@ }, "@lerna/link": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/link/-/link-4.0.0.tgz", + "integrity": "sha512-KlvPi7XTAcVOByfaLlOeYOfkkDcd+bejpHMCd1KcArcFTwijOwXOVi24DYomIeHvy6HsX/IUquJ4PPUJIeB4+w==", "dev": true, "requires": { "@lerna/command": "4.0.0", @@ -21005,6 +22251,8 @@ }, "@lerna/list": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/list/-/list-4.0.0.tgz", + "integrity": "sha512-L2B5m3P+U4Bif5PultR4TI+KtW+SArwq1i75QZ78mRYxPc0U/piau1DbLOmwrdqr99wzM49t0Dlvl6twd7GHFg==", "dev": true, "requires": { "@lerna/command": "4.0.0", @@ -21015,6 +22263,8 @@ }, "@lerna/listable": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/listable/-/listable-4.0.0.tgz", + "integrity": "sha512-/rPOSDKsOHs5/PBLINZOkRIX1joOXUXEtyUs5DHLM8q6/RP668x/1lFhw6Dx7/U+L0+tbkpGtZ1Yt0LewCLgeQ==", "dev": true, "requires": { "@lerna/query-graph": "4.0.0", @@ -21024,6 +22274,8 @@ }, "@lerna/log-packed": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/log-packed/-/log-packed-4.0.0.tgz", + "integrity": "sha512-+dpCiWbdzgMAtpajLToy9PO713IHoE6GV/aizXycAyA07QlqnkpaBNZ8DW84gHdM1j79TWockGJo9PybVhrrZQ==", "dev": true, "requires": { "byte-size": "^7.0.0", @@ -21034,6 +22286,8 @@ }, "@lerna/npm-conf": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/npm-conf/-/npm-conf-4.0.0.tgz", + "integrity": "sha512-uS7H02yQNq3oejgjxAxqq/jhwGEE0W0ntr8vM3EfpCW1F/wZruwQw+7bleJQ9vUBjmdXST//tk8mXzr5+JXCfw==", "dev": true, "requires": { "config-chain": "^1.1.12", @@ -21042,6 +22296,8 @@ }, "@lerna/npm-dist-tag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/npm-dist-tag/-/npm-dist-tag-4.0.0.tgz", + "integrity": "sha512-F20sg28FMYTgXqEQihgoqSfwmq+Id3zT23CnOwD+XQMPSy9IzyLf1fFVH319vXIw6NF6Pgs4JZN2Qty6/CQXGw==", "dev": true, "requires": { "@lerna/otplease": "4.0.0", @@ -21052,6 +22308,8 @@ }, "@lerna/npm-install": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/npm-install/-/npm-install-4.0.0.tgz", + "integrity": "sha512-aKNxq2j3bCH3eXl3Fmu4D54s/YLL9WSwV8W7X2O25r98wzrO38AUN6AB9EtmAx+LV/SP15et7Yueg9vSaanRWg==", "dev": true, "requires": { "@lerna/child-process": "4.0.0", @@ -21065,6 +22323,8 @@ }, "@lerna/npm-publish": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-4.0.0.tgz", + "integrity": "sha512-vQb7yAPRo5G5r77DRjHITc9piR9gvEKWrmfCH7wkfBnGWEqu7n8/4bFQ7lhnkujvc8RXOsYpvbMQkNfkYibD/w==", "dev": true, "requires": { "@lerna/otplease": "4.0.0", @@ -21079,6 +22339,8 @@ }, "@lerna/npm-run-script": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/npm-run-script/-/npm-run-script-4.0.0.tgz", + "integrity": "sha512-Jmyh9/IwXJjOXqKfIgtxi0bxi1pUeKe5bD3S81tkcy+kyng/GNj9WSqD5ZggoNP2NP//s4CLDAtUYLdP7CU9rA==", "dev": true, "requires": { "@lerna/child-process": "4.0.0", @@ -21088,6 +22350,8 @@ }, "@lerna/otplease": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/otplease/-/otplease-4.0.0.tgz", + "integrity": "sha512-Sgzbqdk1GH4psNiT6hk+BhjOfIr/5KhGBk86CEfHNJTk9BK4aZYyJD4lpDbDdMjIV4g03G7pYoqHzH765T4fxw==", "dev": true, "requires": { "@lerna/prompt": "4.0.0" @@ -21095,6 +22359,8 @@ }, "@lerna/output": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/output/-/output-4.0.0.tgz", + "integrity": "sha512-Un1sHtO1AD7buDQrpnaYTi2EG6sLF+KOPEAMxeUYG5qG3khTs2Zgzq5WE3dt2N/bKh7naESt20JjIW6tBELP0w==", "dev": true, "requires": { "npmlog": "^4.1.2" @@ -21102,6 +22368,8 @@ }, "@lerna/pack-directory": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/pack-directory/-/pack-directory-4.0.0.tgz", + "integrity": "sha512-NJrmZNmBHS+5aM+T8N6FVbaKFScVqKlQFJNY2k7nsJ/uklNKsLLl6VhTQBPwMTbf6Tf7l6bcKzpy7aePuq9UiQ==", "dev": true, "requires": { "@lerna/get-packed": "4.0.0", @@ -21115,6 +22383,8 @@ }, "@lerna/package": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/package/-/package-4.0.0.tgz", + "integrity": "sha512-l0M/izok6FlyyitxiQKr+gZLVFnvxRQdNhzmQ6nRnN9dvBJWn+IxxpM+cLqGACatTnyo9LDzNTOj2Db3+s0s8Q==", "dev": true, "requires": { "load-json-file": "^6.2.0", @@ -21124,6 +22394,8 @@ }, "@lerna/package-graph": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/package-graph/-/package-graph-4.0.0.tgz", + "integrity": "sha512-QED2ZCTkfXMKFoTGoccwUzjHtZMSf3UKX14A4/kYyBms9xfFsesCZ6SLI5YeySEgcul8iuIWfQFZqRw+Qrjraw==", "dev": true, "requires": { "@lerna/prerelease-id-from-version": "4.0.0", @@ -21135,6 +22407,8 @@ }, "@lerna/prerelease-id-from-version": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-4.0.0.tgz", + "integrity": "sha512-GQqguzETdsYRxOSmdFZ6zDBXDErIETWOqomLERRY54f4p+tk4aJjoVdd9xKwehC9TBfIFvlRbL1V9uQGHh1opg==", "dev": true, "requires": { "semver": "^7.3.4" @@ -21142,6 +22416,8 @@ }, "@lerna/profiler": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/profiler/-/profiler-4.0.0.tgz", + "integrity": "sha512-/BaEbqnVh1LgW/+qz8wCuI+obzi5/vRE8nlhjPzdEzdmWmZXuCKyWSEzAyHOJWw1ntwMiww5dZHhFQABuoFz9Q==", "dev": true, "requires": { "fs-extra": "^9.1.0", @@ -21151,6 +22427,8 @@ }, "@lerna/project": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/project/-/project-4.0.0.tgz", + "integrity": "sha512-o0MlVbDkD5qRPkFKlBZsXZjoNTWPyuL58564nSfZJ6JYNmgAptnWPB2dQlAc7HWRZkmnC2fCkEdoU+jioPavbg==", "dev": true, "requires": { "@lerna/package": "4.0.0", @@ -21169,6 +22447,8 @@ }, "@lerna/prompt": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/prompt/-/prompt-4.0.0.tgz", + "integrity": "sha512-4Ig46oCH1TH5M7YyTt53fT6TuaKMgqUUaqdgxvp6HP6jtdak6+amcsqB8YGz2eQnw/sdxunx84DfI9XpoLj4bQ==", "dev": true, "requires": { "inquirer": "^7.3.3", @@ -21177,6 +22457,8 @@ "dependencies": { "inquirer": { "version": "7.3.3", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", + "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", "dev": true, "requires": { "ansi-escapes": "^4.2.1", @@ -21196,6 +22478,8 @@ }, "rxjs": { "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", "dev": true, "requires": { "tslib": "^1.9.0" @@ -21203,12 +22487,16 @@ }, "tslib": { "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "dev": true } } }, "@lerna/publish": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/publish/-/publish-4.0.0.tgz", + "integrity": "sha512-K8jpqjHrChH22qtkytA5GRKIVFEtqBF6JWj1I8dWZtHs4Jywn8yB1jQ3BAMLhqmDJjWJtRck0KXhQQKzDK2UPg==", "dev": true, "requires": { "@lerna/check-working-tree": "4.0.0", @@ -21243,6 +22531,8 @@ }, "@lerna/pulse-till-done": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/pulse-till-done/-/pulse-till-done-4.0.0.tgz", + "integrity": "sha512-Frb4F7QGckaybRhbF7aosLsJ5e9WuH7h0KUkjlzSByVycxY91UZgaEIVjS2oN9wQLrheLMHl6SiFY0/Pvo0Cxg==", "dev": true, "requires": { "npmlog": "^4.1.2" @@ -21250,6 +22540,8 @@ }, "@lerna/query-graph": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/query-graph/-/query-graph-4.0.0.tgz", + "integrity": "sha512-YlP6yI3tM4WbBmL9GCmNDoeQyzcyg1e4W96y/PKMZa5GbyUvkS2+Jc2kwPD+5KcXou3wQZxSPzR3Te5OenaDdg==", "dev": true, "requires": { "@lerna/package-graph": "4.0.0" @@ -21257,6 +22549,8 @@ }, "@lerna/resolve-symlink": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/resolve-symlink/-/resolve-symlink-4.0.0.tgz", + "integrity": "sha512-RtX8VEUzqT+uLSCohx8zgmjc6zjyRlh6i/helxtZTMmc4+6O4FS9q5LJas2uGO2wKvBlhcD6siibGt7dIC3xZA==", "dev": true, "requires": { "fs-extra": "^9.1.0", @@ -21266,6 +22560,8 @@ }, "@lerna/rimraf-dir": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/rimraf-dir/-/rimraf-dir-4.0.0.tgz", + "integrity": "sha512-QNH9ABWk9mcMJh2/muD9iYWBk1oQd40y6oH+f3wwmVGKYU5YJD//+zMiBI13jxZRtwBx0vmBZzkBkK1dR11cBg==", "dev": true, "requires": { "@lerna/child-process": "4.0.0", @@ -21276,6 +22572,8 @@ }, "@lerna/run": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/run/-/run-4.0.0.tgz", + "integrity": "sha512-9giulCOzlMPzcZS/6Eov6pxE9gNTyaXk0Man+iCIdGJNMrCnW7Dme0Z229WWP/UoxDKg71F2tMsVVGDiRd8fFQ==", "dev": true, "requires": { "@lerna/command": "4.0.0", @@ -21291,6 +22589,8 @@ }, "@lerna/run-lifecycle": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-4.0.0.tgz", + "integrity": "sha512-IwxxsajjCQQEJAeAaxF8QdEixfI7eLKNm4GHhXHrgBu185JcwScFZrj9Bs+PFKxwb+gNLR4iI5rpUdY8Y0UdGQ==", "dev": true, "requires": { "@lerna/npm-conf": "4.0.0", @@ -21300,6 +22600,8 @@ }, "@lerna/run-topologically": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/run-topologically/-/run-topologically-4.0.0.tgz", + "integrity": "sha512-EVZw9hGwo+5yp+VL94+NXRYisqgAlj0jWKWtAIynDCpghRxCE5GMO3xrQLmQgqkpUl9ZxQFpICgYv5DW4DksQA==", "dev": true, "requires": { "@lerna/query-graph": "4.0.0", @@ -21308,6 +22610,8 @@ }, "@lerna/symlink-binary": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-4.0.0.tgz", + "integrity": "sha512-zualodWC4q1QQc1pkz969hcFeWXOsVYZC5AWVtAPTDfLl+TwM7eG/O6oP+Rr3fFowspxo6b1TQ6sYfDV6HXNWA==", "dev": true, "requires": { "@lerna/create-symlink": "4.0.0", @@ -21318,6 +22622,8 @@ }, "@lerna/symlink-dependencies": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-4.0.0.tgz", + "integrity": "sha512-BABo0MjeUHNAe2FNGty1eantWp8u83BHSeIMPDxNq0MuW2K3CiQRaeWT3EGPAzXpGt0+hVzBrA6+OT0GPn7Yuw==", "dev": true, "requires": { "@lerna/create-symlink": "4.0.0", @@ -21330,10 +22636,14 @@ }, "@lerna/timer": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/timer/-/timer-4.0.0.tgz", + "integrity": "sha512-WFsnlaE7SdOvjuyd05oKt8Leg3ENHICnvX3uYKKdByA+S3g+TCz38JsNs7OUZVt+ba63nC2nbXDlUnuT2Xbsfg==", "dev": true }, "@lerna/validation-error": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/validation-error/-/validation-error-4.0.0.tgz", + "integrity": "sha512-1rBOM5/koiVWlRi3V6dB863E1YzJS8v41UtsHgMr6gB2ncJ2LsQtMKlJpi3voqcgh41H8UsPXR58RrrpPpufyw==", "dev": true, "requires": { "npmlog": "^4.1.2" @@ -21341,6 +22651,8 @@ }, "@lerna/version": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/version/-/version-4.0.0.tgz", + "integrity": "sha512-otUgiqs5W9zGWJZSCCMRV/2Zm2A9q9JwSDS7s/tlKq4mWCYriWo7+wsHEA/nPTMDyYyBO5oyZDj+3X50KDUzeA==", "dev": true, "requires": { "@lerna/check-working-tree": "4.0.0", @@ -21369,10 +22681,23 @@ "slash": "^3.0.0", "temp-write": "^4.0.0", "write-json-file": "^4.3.0" + }, + "dependencies": { + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + } } }, "@lerna/write-log-file": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@lerna/write-log-file/-/write-log-file-4.0.0.tgz", + "integrity": "sha512-XRG5BloiArpXRakcnPHmEHJp+4AtnhRtpDIHSghmXD5EichI1uD73J7FgPp30mm2pDRq3FdqB0NbwSEsJ9xFQg==", "dev": true, "requires": { "npmlog": "^4.1.2", @@ -21381,11 +22706,15 @@ }, "@n1ru4l/graphql-live-query": { "version": "0.9.0", + "resolved": "https://registry.npmjs.org/@n1ru4l/graphql-live-query/-/graphql-live-query-0.9.0.tgz", + "integrity": "sha512-BTpWy1e+FxN82RnLz4x1+JcEewVdfmUhV1C6/XYD5AjS7PQp9QFF7K8bCD6gzPTr2l+prvqOyVueQhFJxB1vfg==", "dev": true, "requires": {} }, "@nodelib/fs.scandir": { "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "requires": { "@nodelib/fs.stat": "2.0.5", @@ -21394,10 +22723,14 @@ }, "@nodelib/fs.stat": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true }, "@nodelib/fs.walk": { "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "requires": { "@nodelib/fs.scandir": "2.1.5", @@ -21406,10 +22739,14 @@ }, "@npmcli/ci-detect": { "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@npmcli/ci-detect/-/ci-detect-1.4.0.tgz", + "integrity": "sha512-3BGrt6FLjqM6br5AhWRKTr3u5GIVkjRYeAFrMp3HjnfICrg4xOrVRwFavKT6tsp++bq5dluL5t8ME/Nha/6c1Q==", "dev": true }, "@npmcli/fs": { - "version": "1.1.0", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", + "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", "requires": { "@gar/promisify": "^1.0.1", "semver": "^7.3.5" @@ -21417,6 +22754,8 @@ }, "@npmcli/git": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-2.1.0.tgz", + "integrity": "sha512-/hBFX/QG1b+N7PZBFs0bi+evgRZcK9nWBxQKZkGoXUT5hJSwl5c4d7y8/hm+NQZRPhQ67RzFaj5UM9YeyKoryw==", "dev": true, "requires": { "@npmcli/promise-spawn": "^1.3.2", @@ -21431,6 +22770,8 @@ }, "@npmcli/installed-package-contents": { "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-1.0.7.tgz", + "integrity": "sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==", "dev": true, "requires": { "npm-bundled": "^1.1.1", @@ -21439,6 +22780,8 @@ }, "@npmcli/move-file": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", "requires": { "mkdirp": "^1.0.4", "rimraf": "^3.0.2" @@ -21446,10 +22789,14 @@ }, "@npmcli/node-gyp": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-1.0.3.tgz", + "integrity": "sha512-fnkhw+fmX65kiLqk6E3BFLXNC26rUhK90zVwe2yncPliVT/Qos3xjhTLE59Df8KnPlcwIERXKVlU1bXoUQ+liA==", "dev": true }, "@npmcli/promise-spawn": { "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-1.3.2.tgz", + "integrity": "sha512-QyAGYo/Fbj4MXeGdJcFzZ+FkDkomfRBrPM+9QYJSg+PxgAUL+LU3FneQk37rKR2/zjqkCV1BLHccX98wRXG3Sg==", "dev": true, "requires": { "infer-owner": "^1.0.4" @@ -21457,6 +22804,8 @@ }, "@npmcli/run-script": { "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-1.8.6.tgz", + "integrity": "sha512-e42bVZnC6VluBZBAFEr3YrdqSspG3bgilyg4nSLBJ7TRGNCzxHa92XAHxQBLYg0BmgwO4b2mf3h/l5EkEWRn3g==", "dev": true, "requires": { "@npmcli/node-gyp": "^1.0.2", @@ -21467,6 +22816,8 @@ "dependencies": { "node-gyp": { "version": "7.1.2", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-7.1.2.tgz", + "integrity": "sha512-CbpcIo7C3eMu3dL1c3d0xw449fHIGALIJsRP4DDPHpyiW8vcriNY7ubh9TE4zEKfSxscY7PjeFnshE7h75ynjQ==", "dev": true, "requires": { "env-paths": "^2.2.0", @@ -21483,6 +22834,8 @@ }, "nopt": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", "dev": true, "requires": { "abbrev": "1" @@ -21492,18 +22845,22 @@ }, "@octokit/auth-token": { "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.5.0.tgz", + "integrity": "sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==", "dev": true, "requires": { "@octokit/types": "^6.0.3" } }, "@octokit/core": { - "version": "3.5.1", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-3.6.0.tgz", + "integrity": "sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==", "dev": true, "requires": { "@octokit/auth-token": "^2.4.4", "@octokit/graphql": "^4.5.8", - "@octokit/request": "^5.6.0", + "@octokit/request": "^5.6.3", "@octokit/request-error": "^2.0.5", "@octokit/types": "^6.0.3", "before-after-hook": "^2.2.0", @@ -21512,6 +22869,8 @@ }, "@octokit/endpoint": { "version": "6.0.12", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.12.tgz", + "integrity": "sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==", "dev": true, "requires": { "@octokit/types": "^6.0.3", @@ -21521,6 +22880,8 @@ }, "@octokit/graphql": { "version": "4.8.0", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.8.0.tgz", + "integrity": "sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==", "dev": true, "requires": { "@octokit/request": "^5.6.0", @@ -21530,14 +22891,20 @@ }, "@octokit/openapi-types": { "version": "11.2.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-11.2.0.tgz", + "integrity": "sha512-PBsVO+15KSlGmiI8QAzaqvsNlZlrDlyAJYcrXBCvVUxCp7VnXjkwPoFHgjEJXx3WF9BAwkA6nfCUA7i9sODzKA==", "dev": true }, "@octokit/plugin-enterprise-rest": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@octokit/plugin-enterprise-rest/-/plugin-enterprise-rest-6.0.1.tgz", + "integrity": "sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==", "dev": true }, "@octokit/plugin-paginate-rest": { "version": "2.17.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.17.0.tgz", + "integrity": "sha512-tzMbrbnam2Mt4AhuyCHvpRkS0oZ5MvwwcQPYGtMv4tUa5kkzG58SVB0fcsLulOZQeRnOgdkZWkRUiyBlh0Bkyw==", "dev": true, "requires": { "@octokit/types": "^6.34.0" @@ -21545,11 +22912,15 @@ }, "@octokit/plugin-request-log": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz", + "integrity": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==", "dev": true, "requires": {} }, "@octokit/plugin-rest-endpoint-methods": { "version": "5.13.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.13.0.tgz", + "integrity": "sha512-uJjMTkN1KaOIgNtUPMtIXDOjx6dGYysdIFhgA52x4xSadQCz3b/zJexvITDVpANnfKPW/+E0xkOvLntqMYpviA==", "dev": true, "requires": { "@octokit/types": "^6.34.0", @@ -21557,19 +22928,23 @@ } }, "@octokit/request": { - "version": "5.6.2", + "version": "5.6.3", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-5.6.3.tgz", + "integrity": "sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==", "dev": true, "requires": { "@octokit/endpoint": "^6.0.1", "@octokit/request-error": "^2.1.0", "@octokit/types": "^6.16.1", "is-plain-object": "^5.0.0", - "node-fetch": "^2.6.1", + "node-fetch": "^2.6.7", "universal-user-agent": "^6.0.0" } }, "@octokit/request-error": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.1.0.tgz", + "integrity": "sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==", "dev": true, "requires": { "@octokit/types": "^6.0.3", @@ -21579,6 +22954,8 @@ }, "@octokit/rest": { "version": "18.12.0", + "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-18.12.0.tgz", + "integrity": "sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==", "dev": true, "requires": { "@octokit/core": "^3.5.1", @@ -21589,21 +22966,29 @@ }, "@octokit/types": { "version": "6.34.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-6.34.0.tgz", + "integrity": "sha512-s1zLBjWhdEI2zwaoSgyOFoKSl109CUcVBCc7biPJ3aAf6LGLU6szDvi31JPU7bxfla2lqfhjbbg/5DdFNxOwHw==", "dev": true, "requires": { "@octokit/openapi-types": "^11.2.0" } }, "@opentelemetry/api": { - "version": "1.0.4" + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.0.4.tgz", + "integrity": "sha512-BuJuXRSJNQ3QoKA6GWWDyuLpOUck+9hAXNMCnrloc1aWVoy6Xq6t9PUV08aBZ4Lutqq2LEHM486bpZqoViScog==" }, "@opentelemetry/context-async-hooks": { "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/context-async-hooks/-/context-async-hooks-0.24.0.tgz", + "integrity": "sha512-Db8AgMByBEFKLJGSUBlNq4Un/Tqzj5W0hTxx3hIic8DvBwqbvUvkMGuiQYLKE2Ay21cLYMT01xK4TEKz0OxADw==", "dev": true, "requires": {} }, "@opentelemetry/core": { "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-0.24.0.tgz", + "integrity": "sha512-KpsfxBbFTZT9zaB4Es/fFLbvSzVl9Io/8UUu/TYl4/HgqkmyVInNlWTgRiKyz9nsHzFpGP1kdZJj+YIut0IFsw==", "dev": true, "requires": { "@opentelemetry/semantic-conventions": "0.24.0", @@ -21612,6 +22997,8 @@ }, "@opentelemetry/node": { "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/node/-/node-0.24.0.tgz", + "integrity": "sha512-Sy8QooZFOeVUcJIKetw5xsq15/1ivZovWg0RnKWtzURMQrcOxmQ3bGrXPORklOJxOtf5snDHgT37Y7dBgr+c+g==", "dev": true, "requires": { "@opentelemetry/context-async-hooks": "0.24.0", @@ -21624,6 +23011,8 @@ }, "@opentelemetry/propagator-b3": { "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/propagator-b3/-/propagator-b3-0.24.0.tgz", + "integrity": "sha512-iV7KSN0LkEAkeVCbhaIJAgTEb7HCnVkprmpgkL6q79rP3vTW4dylwfBYgIwod7y0GT4Ofgomm0NrwwWiuGLbQA==", "dev": true, "requires": { "@opentelemetry/core": "0.24.0" @@ -21631,6 +23020,8 @@ }, "@opentelemetry/propagator-jaeger": { "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/propagator-jaeger/-/propagator-jaeger-0.24.0.tgz", + "integrity": "sha512-QXCxBwuSka+vXbBZdumtF7YKO84gwTyKy3GelZV5BPlgWoge0AbLR3DfsO9Beu13pmD+4PyuwMw3LfYsgG1+3g==", "dev": true, "requires": { "@opentelemetry/core": "0.24.0" @@ -21638,6 +23029,8 @@ }, "@opentelemetry/resources": { "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-0.24.0.tgz", + "integrity": "sha512-uEr2m13IRkjQAjX6fsYqJ21aONCspRvuQunaCl8LbH1NS1Gj82TuRUHF6TM82ulBPK8pU+nrrqXKuky2cMcIzw==", "dev": true, "requires": { "@opentelemetry/core": "0.24.0", @@ -21646,10 +23039,14 @@ }, "@opentelemetry/semantic-conventions": { "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-0.24.0.tgz", + "integrity": "sha512-a/szuMQV0Quy0/M7kKdglcbRSoorleyyOwbTNNJ32O+RBN766wbQlMTvdimImTmwYWGr+NJOni1EcC242WlRcA==", "dev": true }, "@opentelemetry/tracing": { "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/tracing/-/tracing-0.24.0.tgz", + "integrity": "sha512-sTLEs1SIon3xV8vLe53PzfbU0FahoxL9NPY/CYvA1mwGbMu4zHkHAjqy1Tc8JmqRrfa+XrHkmzeSM4hrvloBaA==", "dev": true, "requires": { "@opentelemetry/core": "0.24.0", @@ -21659,41 +23056,68 @@ } }, "@protobufjs/aspromise": { - "version": "1.1.2" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", + "integrity": "sha1-m4sMxmPWaafY9vXQiToU00jzD78=" }, "@protobufjs/base64": { - "version": "1.1.2" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==" }, "@protobufjs/codegen": { - "version": "2.0.4" + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", + "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==" }, "@protobufjs/eventemitter": { - "version": "1.1.0" + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", + "integrity": "sha1-NVy8mLr61ZePntCV85diHx0Ga3A=" }, "@protobufjs/fetch": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", + "integrity": "sha1-upn7WYYUr2VwDBYZ/wbUVLDYTEU=", "requires": { "@protobufjs/aspromise": "^1.1.1", "@protobufjs/inquire": "^1.1.0" } }, "@protobufjs/float": { - "version": "1.0.2" + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", + "integrity": "sha1-Xp4avctz/Ap8uLKR33jIy9l7h9E=" }, "@protobufjs/inquire": { - "version": "1.1.0" + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", + "integrity": "sha1-/yAOPnzyQp4tyvwRQIKOjMY48Ik=" }, "@protobufjs/path": { - "version": "1.1.2" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", + "integrity": "sha1-bMKyDFya1q0NzP0hynZz2Nf79o0=" }, "@protobufjs/pool": { - "version": "1.1.0" + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", + "integrity": "sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q=" }, "@protobufjs/utf8": { - "version": "1.1.0" + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", + "integrity": "sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA=" + }, + "@protoplasm/recall": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@protoplasm/recall/-/recall-0.2.2.tgz", + "integrity": "sha512-grQIYNd3UsFjHXL1g5Qw5MdUNAddEcD1KfqiO6WeMOQHgIgECXo7r4jfcXGIh37q17HoGQgq/G4guMGkzQ+UOA==" }, "@samverschueren/stream-to-observable": { "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.1.tgz", + "integrity": "sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==", "dev": true, "requires": { "any-observable": "^0.3.0" @@ -21701,10 +23125,14 @@ }, "@sindresorhus/is": { "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", + "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", "dev": true }, "@sinonjs/commons": { "version": "1.8.3", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", + "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", "dev": true, "requires": { "type-detect": "4.0.8" @@ -21721,6 +23149,8 @@ }, "@szmarczak/http-timer": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", "dev": true, "requires": { "defer-to-connect": "^1.0.1" @@ -21728,10 +23158,14 @@ }, "@tootallnate/once": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", "dev": true }, "@types/accepts": { "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/accepts/-/accepts-1.3.5.tgz", + "integrity": "sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ==", "dev": true, "requires": { "@types/node": "*" @@ -21747,7 +23181,9 @@ } }, "@types/babel__core": { - "version": "7.1.18", + "version": "7.1.19", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz", + "integrity": "sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==", "dev": true, "requires": { "@babel/parser": "^7.1.0", @@ -21759,6 +23195,8 @@ }, "@types/babel__generator": { "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", "dev": true, "requires": { "@babel/types": "^7.0.0" @@ -21766,6 +23204,8 @@ }, "@types/babel__template": { "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", "dev": true, "requires": { "@babel/parser": "^7.1.0", @@ -21774,6 +23214,8 @@ }, "@types/babel__traverse": { "version": "7.14.2", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz", + "integrity": "sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==", "dev": true, "requires": { "@babel/types": "^7.3.0" @@ -21781,6 +23223,8 @@ }, "@types/body-parser": { "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", "dev": true, "requires": { "@types/connect": "*", @@ -21789,6 +23233,8 @@ }, "@types/bunyan": { "version": "1.8.8", + "resolved": "https://registry.npmjs.org/@types/bunyan/-/bunyan-1.8.8.tgz", + "integrity": "sha512-Cblq+Yydg3u+sGiz2mjHjC5MPmdjY+No4qvHrF+BUhblsmSfMvsHLbOG62tPbonsqBj6sbWv1LHcsoe5Jw+/Ow==", "dev": true, "requires": { "@types/node": "*" @@ -21796,6 +23242,8 @@ }, "@types/connect": { "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", "dev": true, "requires": { "@types/node": "*" @@ -21803,18 +23251,26 @@ }, "@types/cors": { "version": "2.8.12", + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.12.tgz", + "integrity": "sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw==", "dev": true }, "@types/deep-equal": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/deep-equal/-/deep-equal-1.0.1.tgz", + "integrity": "sha512-mMUu4nWHLBlHtxXY17Fg6+ucS/MnndyOWyOe7MmwkoMYxvfQU2ajtRaEvqSUv+aVkMqH/C0NCI8UoVfRNQ10yg==", "dev": true }, "@types/deep-freeze": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@types/deep-freeze/-/deep-freeze-0.1.2.tgz", + "integrity": "sha512-M6x29Vk4681dght4IMnPIcF1SNmeEm0c4uatlTFhp+++H1oDK1THEIzuCC2WeCBVhX+gU0NndsseDS3zaCtlcQ==", "dev": true }, "@types/express": { "version": "4.17.13", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", + "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", "dev": true, "requires": { "@types/body-parser": "*", @@ -21825,6 +23281,8 @@ }, "@types/express-serve-static-core": { "version": "4.17.28", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.28.tgz", + "integrity": "sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==", "dev": true, "requires": { "@types/node": "*", @@ -21834,6 +23292,8 @@ }, "@types/glob": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", "dev": true, "requires": { "@types/minimatch": "*", @@ -21842,6 +23302,8 @@ }, "@types/graceful-fs": { "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", + "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", "dev": true, "requires": { "@types/node": "*" @@ -21849,10 +23311,14 @@ }, "@types/istanbul-lib-coverage": { "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", "dev": true }, "@types/istanbul-lib-report": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", "dev": true, "requires": { "@types/istanbul-lib-coverage": "*" @@ -21860,6 +23326,8 @@ }, "@types/istanbul-reports": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", "dev": true, "requires": { "@types/istanbul-lib-report": "*" @@ -21877,10 +23345,14 @@ }, "@types/js-levenshtein": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@types/js-levenshtein/-/js-levenshtein-1.1.1.tgz", + "integrity": "sha512-qC4bCqYGy1y/NP7dDVr7KJarn+PbX1nSpwA7JXdu0HxT3QYjO8MJ+cntENtHFVy2dRAyBV23OZ6MxsW1AM1L8g==", "dev": true }, "@types/js-yaml": { "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.5.tgz", + "integrity": "sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==", "dev": true }, "@types/json-schema": { @@ -21890,22 +23362,30 @@ "dev": true }, "@types/json-stable-stringify": { - "version": "1.0.33", + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/@types/json-stable-stringify/-/json-stable-stringify-1.0.34.tgz", + "integrity": "sha512-s2cfwagOQAS8o06TcwKfr9Wx11dNGbH2E9vJz1cqV+a/LOyhWNLUNd6JSRYNzvB4d29UuJX2M0Dj9vE1T8fRXw==", "dev": true }, "@types/jsonwebtoken": { - "version": "8.5.6", + "version": "8.5.8", + "resolved": "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-8.5.8.tgz", + "integrity": "sha512-zm6xBQpFDIDM6o9r6HSgDeIcLy82TKWctCXEPbJJcXb5AKmi5BNNdLXneixK4lplX3PqIVcwLBCGE/kAGnlD4A==", "dev": true, "requires": { "@types/node": "*" } }, "@types/lodash": { - "version": "4.14.178", + "version": "4.14.181", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.181.tgz", + "integrity": "sha512-n3tyKthHJbkiWhDZs3DkhkCzt2MexYHXlX0td5iMplyfwketaOeKboEVBqzceH7juqvEg3q5oUoBFxSLu7zFag==", "dev": true }, "@types/lodash.xorby": { "version": "4.7.6", + "resolved": "https://registry.npmjs.org/@types/lodash.xorby/-/lodash.xorby-4.7.6.tgz", + "integrity": "sha512-PtlgNvKxKD65DCbm8OPokdYnm3kIrBYTXc20vbsF0QX+il1c9mmb4KxKE3U0ty9w8AoA+RxyT7hxHd/doFDcGg==", "dev": true, "requires": { "@types/lodash": "*" @@ -21913,25 +23393,37 @@ }, "@types/loglevel": { "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@types/loglevel/-/loglevel-1.5.4.tgz", + "integrity": "sha512-8dx4ckP0vndJeN+iKZwdGiapLqFjVQ3JLOt92uqK0C63acs5NcPLbUOpfXCJkKVRjZLBQjw8NIGNBSsnatFnFQ==", "dev": true }, "@types/long": { - "version": "4.0.1" + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.1.tgz", + "integrity": "sha512-5tXH6Bx/kNGd3MgffdmP4dy2Z+G4eaXw0SE81Tq3BNadtnMR5/ySMzX4SLEzHJzSmPNn4HIdpQsBvXMUykr58w==" }, "@types/mime": { "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", + "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", "dev": true }, "@types/minimatch": { "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==", "dev": true }, "@types/minimist": { "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", + "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", "dev": true }, "@types/nock": { "version": "10.0.3", + "resolved": "https://registry.npmjs.org/@types/nock/-/nock-10.0.3.tgz", + "integrity": "sha512-OthuN+2FuzfZO3yONJ/QVjKmLEuRagS9TV9lEId+WHL9KhftYG+/2z+pxlr0UgVVXSpVD8woie/3fzQn8ft/Ow==", "dev": true, "requires": { "@types/node": "*" @@ -21953,22 +23445,32 @@ }, "@types/normalize-package-data": { "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", "dev": true }, "@types/parse-json": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", "dev": true }, "@types/prettier": { - "version": "2.4.2", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.4.tgz", + "integrity": "sha512-ReVR2rLTV1kvtlWFyuot+d1pkpG2Fw/XKE3PDAdj57rbM97ttSp9JZ2UsP+2EHTylra9cUf6JA7tGwW1INzUrA==", "dev": true }, "@types/qs": { "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", "dev": true }, "@types/range-parser": { "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", "dev": true }, "@types/retry": { @@ -21979,6 +23481,8 @@ }, "@types/serve-static": { "version": "1.13.10", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.10.tgz", + "integrity": "sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==", "dev": true, "requires": { "@types/mime": "^1", @@ -21987,18 +23491,26 @@ }, "@types/stack-utils": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", "dev": true }, "@types/uuid": { "version": "3.4.10", + "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-3.4.10.tgz", + "integrity": "sha512-BgeaZuElf7DEYZhWYDTc/XcLZXdVgFkVSTa13BqKvbnmUrxr3TJFKofUxCtDO9UQOdhnV+HPOESdHiHKZOJV1A==", "dev": true }, "@types/webidl-conversions": { "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-6.1.1.tgz", + "integrity": "sha512-XAahCdThVuCFDQLT7R7Pk/vqeObFNL3YqRyFZg+AqAP/W1/w3xHaIxuW7WszQqTbIBOPRcItYJIou3i/mppu3Q==", "dev": true }, "@types/websocket": { - "version": "1.0.4", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/websocket/-/websocket-1.0.5.tgz", + "integrity": "sha512-NbsqiNX9CnEfC1Z0Vf4mE1SgAJ07JnRYcNex7AJ9zAVzmiGHmjKFEk7O4TJIsgv2B1sLEb6owKFZrACwdYngsQ==", "dev": true, "requires": { "@types/node": "*" @@ -22006,6 +23518,8 @@ }, "@types/whatwg-url": { "version": "8.2.1", + "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.1.tgz", + "integrity": "sha512-2YubE1sjj5ifxievI5Ge1sckb9k/Er66HyR2c+3+I6VDUUg1TLPdYYTEbQ+DjRkS4nTxMJhgWfSfMRD2sl2EYQ==", "dev": true, "requires": { "@types/node": "*", @@ -22013,7 +23527,9 @@ } }, "@types/ws": { - "version": "8.2.2", + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", + "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", "dev": true, "requires": { "@types/node": "*" @@ -22021,13 +23537,17 @@ }, "@types/yargs": { "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", "dev": true, "requires": { "@types/yargs-parser": "*" } }, "@types/yargs-parser": { - "version": "20.2.1", + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", "dev": true }, "@typescript-eslint/eslint-plugin": { @@ -22048,53 +23568,16 @@ } }, "@typescript-eslint/parser": { - "version": "5.9.0", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.18.0.tgz", + "integrity": "sha512-+08nYfurBzSSPndngnHvFw/fniWYJ5ymOrn/63oMIbgomVQOvIDhBoJmYZ9lwQOCnQV9xHGvf88ze3jFGUYooQ==", "dev": true, "peer": true, "requires": { - "@typescript-eslint/scope-manager": "5.9.0", - "@typescript-eslint/types": "5.9.0", - "@typescript-eslint/typescript-estree": "5.9.0", + "@typescript-eslint/scope-manager": "5.18.0", + "@typescript-eslint/types": "5.18.0", + "@typescript-eslint/typescript-estree": "5.18.0", "debug": "^4.3.2" - }, - "dependencies": { - "@typescript-eslint/scope-manager": { - "version": "5.9.0", - "dev": true, - "peer": true, - "requires": { - "@typescript-eslint/types": "5.9.0", - "@typescript-eslint/visitor-keys": "5.9.0" - } - }, - "@typescript-eslint/types": { - "version": "5.9.0", - "dev": true, - "peer": true - }, - "@typescript-eslint/typescript-estree": { - "version": "5.9.0", - "dev": true, - "peer": true, - "requires": { - "@typescript-eslint/types": "5.9.0", - "@typescript-eslint/visitor-keys": "5.9.0", - "debug": "^4.3.2", - "globby": "^11.0.4", - "is-glob": "^4.0.3", - "semver": "^7.3.5", - "tsutils": "^3.21.0" - } - }, - "@typescript-eslint/visitor-keys": { - "version": "5.9.0", - "dev": true, - "peer": true, - "requires": { - "@typescript-eslint/types": "5.9.0", - "eslint-visitor-keys": "^3.0.0" - } - } } }, "@typescript-eslint/scope-manager": { @@ -22165,6 +23648,8 @@ }, "@wry/context": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/@wry/context/-/context-0.6.1.tgz", + "integrity": "sha512-LOmVnY1iTU2D8tv4Xf6MVMZZ+juIJ87Kt/plMijjN20NMAXGmH4u8bS1t0uT74cZ5gwpocYueV58YwyI8y+GKw==", "dev": true, "requires": { "tslib": "^2.3.0" @@ -22172,6 +23657,8 @@ }, "@wry/equality": { "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@wry/equality/-/equality-0.5.2.tgz", + "integrity": "sha512-oVMxbUXL48EV/C0/M7gLVsoK6qRHPS85x8zECofEZOVvxGmIPLA9o5Z27cc2PoAyZz1S2VoM2A7FLAnpfGlneA==", "dev": true, "requires": { "tslib": "^2.3.0" @@ -22179,6 +23666,8 @@ }, "@wry/trie": { "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@wry/trie/-/trie-0.3.1.tgz", + "integrity": "sha512-WwB53ikYudh9pIorgxrkHKrQZcCqNM/Q/bDzZBffEaGUKGuHrRb3zZUT9Sh2qw9yogC7SsdRmQ1ER0pqvd3bfw==", "dev": true, "requires": { "tslib": "^2.3.0" @@ -22186,33 +23675,45 @@ }, "abab": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", + "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==", "dev": true }, "abbrev": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", "dev": true }, "abort-controller": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", "dev": true, "requires": { "event-target-shim": "^5.0.0" } }, "accepts": { - "version": "1.3.7", + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dev": true, "requires": { - "mime-types": "~2.1.24", - "negotiator": "0.6.2" + "mime-types": "~2.1.34", + "negotiator": "0.6.3" } }, "acorn": { "version": "8.7.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz", + "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==", "dev": true }, "acorn-globals": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", "dev": true, "requires": { "acorn": "^7.1.1", @@ -22221,52 +23722,77 @@ "dependencies": { "acorn": { "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", "dev": true } } }, "acorn-jsx": { "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, "peer": true, "requires": {} }, "acorn-walk": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", "dev": true }, "add-stream": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/add-stream/-/add-stream-1.0.0.tgz", + "integrity": "sha1-anmQQ3ynNtXhKI25K9MmbV9csqo=", "dev": true }, "agent-base": { "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "requires": { "debug": "4" } }, "agentkeepalive": { - "version": "4.2.0", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.1.tgz", + "integrity": "sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==", "requires": { "debug": "^4.1.0", "depd": "^1.1.2", "humanize-ms": "^1.2.1" + }, + "dependencies": { + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + } } }, "aggregate-error": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", "requires": { "clean-stack": "^2.0.0", "indent-string": "^4.0.0" }, "dependencies": { "indent-string": { - "version": "4.0.0" + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" } } }, "ajv": { "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "requires": { "fast-deep-equal": "^3.1.1", @@ -22275,33 +23801,38 @@ "uri-js": "^4.2.2" } }, - "ansi-colors": { - "version": "4.1.1", - "dev": true, - "peer": true - }, "ansi-escapes": { "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, "requires": { "type-fest": "^0.21.3" } }, "ansi-regex": { - "version": "5.0.1" + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" }, "ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "requires": { "color-convert": "^2.0.1" } }, "any-observable": { "version": "0.3.0", + "resolved": "https://registry.npmjs.org/any-observable/-/any-observable-0.3.0.tgz", + "integrity": "sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==", "dev": true }, "anymatch": { "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", "dev": true, "requires": { "normalize-path": "^3.0.0", @@ -22310,6 +23841,8 @@ }, "apollo-datasource": { "version": "3.3.1", + "resolved": "https://registry.npmjs.org/apollo-datasource/-/apollo-datasource-3.3.1.tgz", + "integrity": "sha512-Z3a8rEUXVPIZ1p8xrFL8bcNhWmhOmovgDArvwIwmJOBnh093ZpRfO+ESJEDAN4KswmyzCLDAwjsW4zQOONdRUw==", "requires": { "apollo-server-caching": "^3.3.0", "apollo-server-env": "^4.2.1" @@ -22343,6 +23876,8 @@ }, "apollo-server-caching": { "version": "3.3.0", + "resolved": "https://registry.npmjs.org/apollo-server-caching/-/apollo-server-caching-3.3.0.tgz", + "integrity": "sha512-Wgcb0ArjZ5DjQ7ID+tvxUcZ7Yxdbk5l1MxZL8D8gkyjooOkhPNzjRVQ7ubPoXqO54PrOMOTm1ejVhsF+AfIirQ==", "requires": { "lru-cache": "^6.0.0" } @@ -22376,12 +23911,16 @@ }, "apollo-server-env": { "version": "4.2.1", + "resolved": "https://registry.npmjs.org/apollo-server-env/-/apollo-server-env-4.2.1.tgz", + "integrity": "sha512-vm/7c7ld+zFMxibzqZ7SSa5tBENc4B0uye9LTfjJwGoQFY5xsUPH5FpO5j0bMUDZ8YYNbrF9SNtzc5Cngcr90g==", "requires": { "node-fetch": "^2.6.7" } }, "apollo-server-errors": { "version": "3.3.1", + "resolved": "https://registry.npmjs.org/apollo-server-errors/-/apollo-server-errors-3.3.1.tgz", + "integrity": "sha512-xnZJ5QWs6FixHICXHxUfm+ZWqqxrNuPlQ+kj5m6RtEgIpekOPssH/SD9gf2B4HuWV0QozorrygwZnux8POvyPA==", "requires": {} }, "apollo-server-express": { @@ -22423,10 +23962,14 @@ }, "aproba": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", "dev": true }, "are-we-there-yet": { "version": "1.1.7", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz", + "integrity": "sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==", "dev": true, "requires": { "delegates": "^1.0.0", @@ -22435,6 +23978,8 @@ "dependencies": { "readable-stream": { "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "dev": true, "requires": { "core-util-is": "~1.0.0", @@ -22448,10 +23993,14 @@ }, "safe-buffer": { "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true }, "string_decoder": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "requires": { "safe-buffer": "~5.1.0" @@ -22461,54 +24010,80 @@ }, "arg": { "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", "dev": true }, "argparse": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, "arr-diff": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", "dev": true }, "arr-flatten": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", "dev": true }, "arr-union": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", "dev": true }, "array-differ": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-3.0.0.tgz", + "integrity": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==", "dev": true }, "array-flatten": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", "dev": true }, "array-ify": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", + "integrity": "sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=", "dev": true }, "array-union": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true }, "array-unique": { "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", "dev": true }, "arrify": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", "dev": true }, "asap": { "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=", "dev": true }, "asn1": { "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", "dev": true, "requires": { "safer-buffer": "~2.1.0" @@ -22516,46 +24091,68 @@ }, "assert-plus": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", "dev": true }, "assign-symbols": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", "dev": true }, "async": { "version": "3.2.3", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz", + "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==", "dev": true }, "async-retry": { "version": "1.3.3", + "resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz", + "integrity": "sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==", "requires": { "retry": "0.13.1" } }, "asynckit": { - "version": "0.4.0" + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" }, "at-least-node": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", "dev": true }, "atob": { "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", "dev": true }, "auto-bind": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/auto-bind/-/auto-bind-4.0.0.tgz", + "integrity": "sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==", "dev": true }, "available-typed-arrays": { - "version": "1.0.5" + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" }, "aws-sign2": { "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", "dev": true }, "aws4": { "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", "dev": true }, "babel-jest": { @@ -22576,6 +24173,8 @@ }, "babel-plugin-dynamic-import-node": { "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", "dev": true, "requires": { "object.assign": "^4.1.0" @@ -22583,6 +24182,8 @@ }, "babel-plugin-istanbul": { "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", @@ -22606,10 +24207,14 @@ }, "babel-plugin-syntax-trailing-function-commas": { "version": "7.0.0-beta.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz", + "integrity": "sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==", "dev": true }, "babel-preset-current-node-syntax": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", "dev": true, "requires": { "@babel/plugin-syntax-async-generators": "^7.8.4", @@ -22628,6 +24233,8 @@ }, "babel-preset-fbjs": { "version": "3.4.0", + "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz", + "integrity": "sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==", "dev": true, "requires": { "@babel/plugin-proposal-class-properties": "^7.0.0", @@ -22671,13 +24278,19 @@ }, "backo2": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz", + "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=", "dev": true }, "balanced-match": { - "version": "1.0.2" + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, "base": { "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", "dev": true, "requires": { "cache-base": "^1.0.1", @@ -22687,14 +24300,29 @@ "isobject": "^3.0.1", "mixin-deep": "^1.2.0", "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + } } }, "base64-js": { "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", "dev": true }, "bcrypt-pbkdf": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", "dev": true, "requires": { "tweetnacl": "^0.14.3" @@ -22702,14 +24330,20 @@ }, "before-after-hook": { "version": "2.2.2", + "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.2.tgz", + "integrity": "sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==", "dev": true }, "binary-extensions": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "dev": true }, "bl": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dev": true, "requires": { "buffer": "^5.5.0", @@ -22718,23 +24352,29 @@ } }, "body-parser": { - "version": "1.19.1", + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", + "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", "dev": true, "requires": { - "bytes": "3.1.1", + "bytes": "3.1.2", "content-type": "~1.0.4", "debug": "2.6.9", - "depd": "~1.1.2", - "http-errors": "1.8.1", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", "iconv-lite": "0.4.24", - "on-finished": "~2.3.0", - "qs": "6.9.6", - "raw-body": "2.4.2", - "type-is": "~1.6.18" + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" }, "dependencies": { "debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "requires": { "ms": "2.0.0" @@ -22742,12 +24382,16 @@ }, "ms": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true } } }, "brace-expansion": { "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -22755,6 +24399,8 @@ }, "braces": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, "requires": { "fill-range": "^7.0.1" @@ -22762,21 +24408,27 @@ }, "browser-process-hrtime": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", "dev": true }, "browserslist": { - "version": "4.19.1", + "version": "4.20.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.20.2.tgz", + "integrity": "sha512-CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001286", - "electron-to-chromium": "^1.4.17", + "caniuse-lite": "^1.0.30001317", + "electron-to-chromium": "^1.4.84", "escalade": "^3.1.1", - "node-releases": "^2.0.1", + "node-releases": "^2.0.2", "picocolors": "^1.0.0" } }, "bs-logger": { "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", "dev": true, "requires": { "fast-json-stable-stringify": "2.x" @@ -22784,6 +24436,8 @@ }, "bser": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, "requires": { "node-int64": "^0.4.0" @@ -22791,6 +24445,8 @@ }, "buffer": { "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "dev": true, "requires": { "base64-js": "^1.3.1", @@ -22799,18 +24455,26 @@ }, "buffer-equal-constant-time": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", + "integrity": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=", "dev": true }, "buffer-from": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true }, "builtins": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz", + "integrity": "sha1-y5T662HIaWRR2zZTThQi+U8K7og=", "dev": true }, "bunyan": { "version": "1.8.15", + "resolved": "https://registry.npmjs.org/bunyan/-/bunyan-1.8.15.tgz", + "integrity": "sha512-0tECWShh6wUysgucJcBAoYegf3JJoZWibxdqhTm7OHPeT42qdjkZ29QCMcKwbgU1kiH+auSIasNRXMLWXafXig==", "dev": true, "requires": { "dtrace-provider": "~0.8", @@ -22821,18 +24485,26 @@ }, "byline": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/byline/-/byline-5.0.0.tgz", + "integrity": "sha1-dBxSFkaOrcRXsDQQEYrXfejB3bE=", "dev": true }, "byte-size": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/byte-size/-/byte-size-7.0.1.tgz", + "integrity": "sha512-crQdqyCwhokxwV1UyDzLZanhkugAgft7vt0qbbdt60C6Zf3CAiGmtUCylbtYwrU6loOUw3euGrNtW1J651ot1A==", "dev": true }, "bytes": { - "version": "3.1.1", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "dev": true }, "cacache": { "version": "15.3.0", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", + "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", "requires": { "@npmcli/fs": "^1.0.0", "@npmcli/move-file": "^1.0.1", @@ -22856,6 +24528,8 @@ }, "cache-base": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", "dev": true, "requires": { "collection-visit": "^1.0.0", @@ -22867,29 +24541,12 @@ "to-object-path": "^0.3.0", "union-value": "^1.0.0", "unset-value": "^1.0.0" - }, - "dependencies": { - "is-plain-object": { - "version": "2.0.4", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "set-value": { - "version": "2.0.1", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - } - } } }, "cacheable-request": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", + "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", "dev": true, "requires": { "clone-response": "^1.0.2", @@ -22903,6 +24560,8 @@ "dependencies": { "get-stream": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "dev": true, "requires": { "pump": "^3.0.0" @@ -22910,12 +24569,16 @@ }, "lowercase-keys": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", "dev": true } } }, "call-bind": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "requires": { "function-bind": "^1.1.1", "get-intrinsic": "^1.0.2" @@ -22923,10 +24586,14 @@ }, "callsites": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true }, "camel-case": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", "dev": true, "requires": { "pascal-case": "^3.1.2", @@ -22935,10 +24602,14 @@ }, "camelcase": { "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true }, "camelcase-keys": { "version": "6.2.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", "dev": true, "requires": { "camelcase": "^5.3.1", @@ -22947,11 +24618,15 @@ } }, "caniuse-lite": { - "version": "1.0.30001296", + "version": "1.0.30001327", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001327.tgz", + "integrity": "sha512-1/Cg4jlD9qjZzhbzkzEaAC2JHsP0WrOc8Rd/3a3LuajGzGWR/hD7TVyvq99VqmTy99eVh8Zkmdq213OgvgXx7w==", "dev": true }, "capital-case": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", + "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", "dev": true, "requires": { "no-case": "^3.0.4", @@ -22961,6 +24636,8 @@ }, "capture-exit": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", "dev": true, "requires": { "rsvp": "^4.8.4" @@ -22968,10 +24645,14 @@ }, "caseless": { "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", "dev": true }, "chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -22979,6 +24660,8 @@ }, "change-case": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", + "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", "dev": true, "requires": { "camel-case": "^4.1.2", @@ -22997,6 +24680,8 @@ }, "change-case-all": { "version": "1.0.14", + "resolved": "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.14.tgz", + "integrity": "sha512-CWVm2uT7dmSHdO/z1CXT/n47mWonyypzBbuCy5tN7uMg22BsfkhwT6oHmFCAk+gL1LOOxhdbB9SZz3J1KTY3gA==", "dev": true, "requires": { "change-case": "^4.1.2", @@ -23013,18 +24698,26 @@ }, "char-regex": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "dev": true }, "chardet": { "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", "dev": true }, "check-more-types": { "version": "2.24.0", + "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz", + "integrity": "sha1-FCD/sQ/URNz8ebQ4kbv//TKoRgA=", "dev": true }, "chokidar": { - "version": "3.5.2", + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "dev": true, "requires": { "anymatch": "~3.1.2", @@ -23038,18 +24731,26 @@ } }, "chownr": { - "version": "2.0.0" + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" }, "ci-info": { "version": "3.3.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.0.tgz", + "integrity": "sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==", "dev": true }, "cjs-module-lexer": { "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", + "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", "dev": true }, "class-utils": { "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", "dev": true, "requires": { "arr-union": "^3.1.0", @@ -23060,6 +24761,8 @@ "dependencies": { "define-property": { "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "dev": true, "requires": { "is-descriptor": "^0.1.0" @@ -23067,6 +24770,8 @@ }, "is-accessor-descriptor": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", "dev": true, "requires": { "kind-of": "^3.0.2" @@ -23074,6 +24779,8 @@ "dependencies": { "kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -23083,6 +24790,8 @@ }, "is-data-descriptor": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", "dev": true, "requires": { "kind-of": "^3.0.2" @@ -23090,6 +24799,8 @@ "dependencies": { "kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -23099,6 +24810,8 @@ }, "is-descriptor": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "dev": true, "requires": { "is-accessor-descriptor": "^0.1.6", @@ -23108,15 +24821,21 @@ }, "kind-of": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", "dev": true } } }, "clean-stack": { - "version": "2.2.0" + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" }, "cli-cursor": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", "dev": true, "requires": { "restore-cursor": "^3.1.0" @@ -23124,10 +24843,14 @@ }, "cli-spinners": { "version": "2.6.1", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz", + "integrity": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==", "dev": true }, "cli-truncate": { "version": "0.2.1", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-0.2.1.tgz", + "integrity": "sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ=", "dev": true, "requires": { "slice-ansi": "0.0.4", @@ -23136,10 +24859,14 @@ "dependencies": { "ansi-regex": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", "dev": true }, "is-fullwidth-code-point": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", "dev": true, "requires": { "number-is-nan": "^1.0.0" @@ -23147,6 +24874,8 @@ }, "string-width": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", "dev": true, "requires": { "code-point-at": "^1.0.0", @@ -23156,6 +24885,8 @@ }, "strip-ansi": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "dev": true, "requires": { "ansi-regex": "^2.0.0" @@ -23165,10 +24896,14 @@ }, "cli-width": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", "dev": true }, "cliui": { "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, "requires": { "string-width": "^4.2.0", @@ -23178,10 +24913,14 @@ }, "clone": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", "dev": true }, "clone-deep": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", "dev": true, "requires": { "is-plain-object": "^2.0.4", @@ -23191,6 +24930,8 @@ "dependencies": { "is-plain-object": { "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, "requires": { "isobject": "^3.0.1" @@ -23200,6 +24941,8 @@ }, "clone-response": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", "dev": true, "requires": { "mimic-response": "^1.0.0" @@ -23207,6 +24950,8 @@ }, "cmd-shim": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cmd-shim/-/cmd-shim-4.1.0.tgz", + "integrity": "sha512-lb9L7EM4I/ZRVuljLPEtUJOP+xiQVknZ4ZMpMgEp4JzNldPb27HU03hi6K1/6CoIuit/Zm/LQXySErFeXxDprw==", "dev": true, "requires": { "mkdirp-infer-owner": "^2.0.0" @@ -23214,18 +24959,26 @@ }, "co": { "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", "dev": true }, "code-point-at": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", "dev": true }, "collect-v8-coverage": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", "dev": true }, "collection-visit": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", "dev": true, "requires": { "map-visit": "^1.0.0", @@ -23234,6 +24987,8 @@ }, "color": { "version": "3.2.1", + "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", + "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", "dev": true, "requires": { "color-convert": "^1.9.3", @@ -23242,6 +24997,8 @@ "dependencies": { "color-convert": { "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "requires": { "color-name": "1.1.3" @@ -23249,21 +25006,29 @@ }, "color-name": { "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", "dev": true } } }, "color-convert": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "requires": { "color-name": "~1.1.4" } }, "color-name": { - "version": "1.1.4" + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "color-string": { "version": "1.9.0", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.0.tgz", + "integrity": "sha512-9Mrz2AQLefkH1UvASKj6v6hj/7eWgjnT/cVsR8CumieLoT+g900exWeNogqtweI8dxloXN9BDQTYro1oWu/5CQ==", "dev": true, "requires": { "color-name": "^1.0.0", @@ -23272,6 +25037,8 @@ }, "colorspace": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz", + "integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==", "dev": true, "requires": { "color": "^3.1.3", @@ -23279,42 +25046,39 @@ } }, "columnify": { - "version": "1.5.4", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/columnify/-/columnify-1.6.0.tgz", + "integrity": "sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==", "dev": true, "requires": { - "strip-ansi": "^3.0.0", + "strip-ansi": "^6.0.1", "wcwidth": "^1.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "dev": true - }, - "strip-ansi": { - "version": "3.0.1", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - } } }, "combined-stream": { "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "requires": { "delayed-stream": "~1.0.0" } }, "commander": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", "dev": true }, "common-tags": { "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", "dev": true }, "compare-func": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", + "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", "dev": true, "requires": { "array-ify": "^1.0.0", @@ -23323,6 +25087,8 @@ "dependencies": { "dot-prop": { "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", "dev": true, "requires": { "is-obj": "^2.0.0" @@ -23332,13 +25098,19 @@ }, "component-emitter": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", "dev": true }, "concat-map": { - "version": "0.0.1" + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" }, "concat-stream": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", "dev": true, "requires": { "buffer-from": "^1.0.0", @@ -23349,6 +25121,8 @@ }, "config-chain": { "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", "dev": true, "requires": { "ini": "^1.3.4", @@ -23357,10 +25131,14 @@ }, "console-control-strings": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", "dev": true }, "constant-case": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", + "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", "dev": true, "requires": { "no-case": "^3.0.4", @@ -23370,6 +25148,8 @@ }, "content-disposition": { "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "dev": true, "requires": { "safe-buffer": "5.2.1" @@ -23377,10 +25157,14 @@ }, "content-type": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", "dev": true }, "conventional-changelog-angular": { "version": "5.0.13", + "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz", + "integrity": "sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==", "dev": true, "requires": { "compare-func": "^2.0.0", @@ -23389,6 +25173,8 @@ }, "conventional-changelog-core": { "version": "4.2.4", + "resolved": "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-4.2.4.tgz", + "integrity": "sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==", "dev": true, "requires": { "add-stream": "^1.0.0", @@ -23409,10 +25195,14 @@ }, "conventional-changelog-preset-loader": { "version": "2.3.4", + "resolved": "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz", + "integrity": "sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==", "dev": true }, "conventional-changelog-writer": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz", + "integrity": "sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==", "dev": true, "requires": { "conventional-commits-filter": "^2.0.7", @@ -23428,12 +25218,16 @@ "dependencies": { "semver": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } } }, "conventional-commits-filter": { "version": "2.0.7", + "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz", + "integrity": "sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==", "dev": true, "requires": { "lodash.ismatch": "^4.4.0", @@ -23442,6 +25236,8 @@ }, "conventional-commits-parser": { "version": "3.2.4", + "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz", + "integrity": "sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==", "dev": true, "requires": { "is-text-path": "^1.0.1", @@ -23454,6 +25250,8 @@ }, "conventional-recommended-bump": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-6.1.0.tgz", + "integrity": "sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==", "dev": true, "requires": { "concat-stream": "^2.0.0", @@ -23468,6 +25266,8 @@ }, "convert-source-map": { "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", "dev": true, "requires": { "safe-buffer": "~5.1.1" @@ -23475,28 +25275,40 @@ "dependencies": { "safe-buffer": { "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true } } }, "cookie": { - "version": "0.4.1", + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", + "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", "dev": true }, "cookie-signature": { "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", "dev": true }, "copy-descriptor": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", "dev": true }, "core-util-is": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", "dev": true }, "cors": { "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", "dev": true, "requires": { "object-assign": "^4", @@ -23505,6 +25317,8 @@ }, "cosmiconfig": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", + "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", "dev": true, "requires": { "@types/parse-json": "^4.0.0", @@ -23516,6 +25330,8 @@ }, "cosmiconfig-toml-loader": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig-toml-loader/-/cosmiconfig-toml-loader-1.0.0.tgz", + "integrity": "sha512-H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA==", "dev": true, "requires": { "@iarna/toml": "^2.2.5" @@ -23523,23 +25339,23 @@ }, "create-require": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", "dev": true }, "cross-fetch": { - "version": "3.1.4", + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", + "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", "dev": true, "requires": { - "node-fetch": "2.6.1" - }, - "dependencies": { - "node-fetch": { - "version": "2.6.1", - "dev": true - } + "node-fetch": "2.6.7" } }, "cross-spawn": { "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, "requires": { "path-key": "^3.1.0", @@ -23548,35 +25364,34 @@ } }, "cross-undici-fetch": { - "version": "0.0.20", + "version": "0.1.28", + "resolved": "https://registry.npmjs.org/cross-undici-fetch/-/cross-undici-fetch-0.1.28.tgz", + "integrity": "sha512-/nLMyVE5IC9PQdBtmgjpGZfK0wo8UupomAPx+7HlbEgVDkZOa9xCiZP9goo5aLYofP0gHXgovjXdXrE2obANag==", "dev": true, "requires": { "abort-controller": "^3.0.0", - "form-data": "^4.0.0", - "node-fetch": "^2.6.5", - "undici": "^4.9.3" - }, - "dependencies": { - "form-data": { - "version": "4.0.0", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - } - } + "form-data-encoder": "^1.7.1", + "formdata-node": "^4.3.1", + "node-fetch": "^2.6.7", + "undici": "^5.0.0", + "web-streams-polyfill": "^3.2.0" } }, "cssfilter": { - "version": "0.0.10" + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/cssfilter/-/cssfilter-0.0.10.tgz", + "integrity": "sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4=" }, "cssom": { "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", "dev": true }, "cssstyle": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", "dev": true, "requires": { "cssom": "~0.3.6" @@ -23584,12 +25399,16 @@ "dependencies": { "cssom": { "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", "dev": true } } }, "cucumber-messages": { "version": "8.0.0", + "resolved": "https://registry.npmjs.org/cucumber-messages/-/cucumber-messages-8.0.0.tgz", + "integrity": "sha512-lUnWRMjwA9+KhDec/5xRZV3Du67ISumHnVLywWQXyvzmc4P+Eqx8CoeQrBQoau3Pw1hs4kJLTDyV85hFBF00SQ==", "dev": true, "requires": { "@types/uuid": "^3.4.6", @@ -23599,16 +25418,22 @@ "dependencies": { "uuid": { "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", "dev": true } } }, "dargs": { "version": "7.0.0", + "resolved": "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz", + "integrity": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==", "dev": true }, "dashdash": { "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", "dev": true, "requires": { "assert-plus": "^1.0.0" @@ -23616,6 +25441,8 @@ }, "data-urls": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", "dev": true, "requires": { "abab": "^2.0.3", @@ -23625,10 +25452,14 @@ }, "dataloader": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dataloader/-/dataloader-2.0.0.tgz", + "integrity": "sha512-YzhyDAwA4TaQIhM5go+vCLmU0UikghC/t9DTQYZR2M/UvZ1MdOhPezSDZcjj9uqQJOMqjLcpWtyW2iNINdlatQ==", "dev": true }, "date-fns": { "version": "1.30.1", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-1.30.1.tgz", + "integrity": "sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==", "dev": true }, "date-format": { @@ -23639,10 +25470,14 @@ }, "dateformat": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz", + "integrity": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==", "dev": true }, "debounce": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz", + "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==", "dev": true }, "debug": { @@ -23655,14 +25490,20 @@ }, "debuglog": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz", + "integrity": "sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI=", "dev": true }, "decamelize": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", "dev": true }, "decamelize-keys": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz", + "integrity": "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=", "dev": true, "requires": { "decamelize": "^1.1.0", @@ -23671,20 +25512,28 @@ "dependencies": { "map-obj": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", "dev": true } } }, "decimal.js": { "version": "10.3.1", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz", + "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==", "dev": true }, "decode-uri-component": { "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", "dev": true }, "decompress-response": { "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", "dev": true, "requires": { "mimic-response": "^1.0.0" @@ -23692,10 +25541,14 @@ }, "dedent": { "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=", "dev": true }, "deep-equal": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.0.5.tgz", + "integrity": "sha512-nPiRgmbAtm1a3JsnLCf6/SLfXcjyN5v8L1TXzdCmHrXJ4hx+gW/w1YCcn7z8gJtSiDArZCgYtbao3QqLm/N1Sw==", "requires": { "call-bind": "^1.0.0", "es-get-iterator": "^1.1.1", @@ -23715,28 +25568,40 @@ }, "dependencies": { "isarray": { - "version": "2.0.5" + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" } } }, "deep-extend": { "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", "dev": true }, "deep-freeze": { "version": "0.0.1", + "resolved": "https://registry.npmjs.org/deep-freeze/-/deep-freeze-0.0.1.tgz", + "integrity": "sha1-OgsABd4YZygZ39OM0x+RF5yJPoQ=", "dev": true }, "deep-is": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, "deepmerge": { "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", "dev": true }, "defaults": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", + "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", "dev": true, "requires": { "clone": "^1.0.2" @@ -23744,53 +25609,79 @@ }, "defer-to-connect": { "version": "1.1.3", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", "dev": true }, "define-properties": { "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", "requires": { "object-keys": "^1.0.12" } }, "define-property": { - "version": "1.0.0", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", "dev": true, "requires": { - "is-descriptor": "^1.0.0" + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" } }, "delayed-stream": { - "version": "1.0.0" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" }, "delegates": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", "dev": true }, "depd": { - "version": "1.1.2" + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true }, "dependency-graph": { "version": "0.11.0", + "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz", + "integrity": "sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==", "dev": true }, "deprecation": { "version": "2.3.1", + "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", + "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", "dev": true }, "destroy": { - "version": "1.0.4", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "dev": true }, "detect-indent": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", "dev": true }, "detect-newline": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", "dev": true }, "dezalgo": { - "version": "1.0.3", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.4.tgz", + "integrity": "sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==", "dev": true, "requires": { "asap": "^2.0.0", @@ -23799,6 +25690,8 @@ }, "diff": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", "dev": true }, "diff-sequences": { @@ -23809,6 +25702,8 @@ }, "dir-glob": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, "requires": { "path-type": "^4.0.0" @@ -23816,6 +25711,8 @@ }, "doctrine": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, "peer": true, "requires": { @@ -23824,6 +25721,8 @@ }, "domexception": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", "dev": true, "requires": { "webidl-conversions": "^5.0.0" @@ -23831,12 +25730,16 @@ "dependencies": { "webidl-conversions": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", "dev": true } } }, "dot-case": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", "dev": true, "requires": { "no-case": "^3.0.4", @@ -23845,21 +25748,29 @@ }, "dot-prop": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz", + "integrity": "sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==", "dev": true, "requires": { "is-obj": "^2.0.0" } }, "dotenv": { - "version": "10.0.0", + "version": "16.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.0.tgz", + "integrity": "sha512-qD9WU0MPM4SWLPJy/r2Be+2WgQj8plChsyrCNQzW/0WjvcJQiKQJ9mH3ZgB3fxbUUxgc/11ZJ0Fi5KiimWGz2Q==", "dev": true }, "dset": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/dset/-/dset-3.1.1.tgz", + "integrity": "sha512-hYf+jZNNqJBD2GiMYb+5mqOIX4R4RRHXU3qWMWYN+rqcR2/YpRL2bUHr8C8fU+5DNvqYjJ8YvMGSLuVPWU1cNg==", "dev": true }, "dtrace-provider": { "version": "0.8.8", + "resolved": "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.8.tgz", + "integrity": "sha512-b7Z7cNtHPhH9EJhNNbbeqTcXB8LGFFZhq1PGgEvpeHlzd36bhbdTWoE/Ba/YguqpBSlAPKnARWhVlhunCMwfxg==", "dev": true, "optional": true, "requires": { @@ -23868,14 +25779,20 @@ }, "duplexer": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", "dev": true }, "duplexer3": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", + "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", "dev": true }, "ecc-jsbn": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", "dev": true, "requires": { "jsbn": "~0.1.0", @@ -23884,6 +25801,8 @@ }, "ecdsa-sig-formatter": { "version": "1.0.11", + "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", + "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", "dev": true, "requires": { "safe-buffer": "^5.0.1" @@ -23891,14 +25810,20 @@ }, "ee-first": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", "dev": true }, "electron-to-chromium": { - "version": "1.4.36", + "version": "1.4.106", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.106.tgz", + "integrity": "sha512-ZYfpVLULm67K7CaaGP7DmjyeMY4naxsbTy+syVVxT6QHI1Ww8XbJjmr9fDckrhq44WzCrcC5kH3zGpdusxwwqg==", "dev": true }, "elegant-spinner": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/elegant-spinner/-/elegant-spinner-1.0.1.tgz", + "integrity": "sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4=", "dev": true }, "emittery": { @@ -23909,18 +25834,26 @@ }, "emoji-regex": { "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, "enabled": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", + "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==", "dev": true }, "encodeurl": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", "dev": true }, "encoding": { "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", "optional": true, "requires": { "iconv-lite": "^0.6.2" @@ -23928,6 +25861,8 @@ "dependencies": { "iconv-lite": { "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "optional": true, "requires": { "safer-buffer": ">= 2.1.2 < 3.0.0" @@ -23937,39 +25872,43 @@ }, "end-of-stream": { "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "dev": true, "requires": { "once": "^1.4.0" } }, - "enquirer": { - "version": "2.3.6", - "dev": true, - "peer": true, - "requires": { - "ansi-colors": "^4.1.1" - } - }, "env-paths": { "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", "dev": true }, "envinfo": { "version": "7.8.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", + "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", "dev": true }, "err-code": { - "version": "2.0.3" + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" }, "error-ex": { "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, "requires": { "is-arrayish": "^0.2.1" } }, "es-abstract": { - "version": "1.19.1", + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.2.tgz", + "integrity": "sha512-gfSBJoZdlL2xRiOCy0g8gLMryhoe1TlimjzU99L/31Z8QEGIhVQI+EWwt5lT+AuU9SnorVupXFqqOGqGfsyO6w==", "requires": { "call-bind": "^1.0.2", "es-to-primitive": "^1.2.1", @@ -23977,15 +25916,15 @@ "get-intrinsic": "^1.1.1", "get-symbol-description": "^1.0.0", "has": "^1.0.3", - "has-symbols": "^1.0.2", + "has-symbols": "^1.0.3", "internal-slot": "^1.0.3", "is-callable": "^1.2.4", - "is-negative-zero": "^2.0.1", + "is-negative-zero": "^2.0.2", "is-regex": "^1.1.4", "is-shared-array-buffer": "^1.0.1", "is-string": "^1.0.7", - "is-weakref": "^1.0.1", - "object-inspect": "^1.11.0", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.0", "object-keys": "^1.1.1", "object.assign": "^4.1.2", "string.prototype.trimend": "^1.0.4", @@ -23995,6 +25934,8 @@ }, "es-get-iterator": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.2.tgz", + "integrity": "sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==", "requires": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.0", @@ -24007,12 +25948,16 @@ }, "dependencies": { "isarray": { - "version": "2.0.5" + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" } } }, "es-to-primitive": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "requires": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", @@ -24021,19 +25966,27 @@ }, "escalade": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", "dev": true }, "escape-html": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", "dev": true }, "escape-string-regexp": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, "peer": true }, "escodegen": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", + "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", "dev": true, "requires": { "esprima": "^4.0.1", @@ -24045,10 +25998,14 @@ "dependencies": { "estraverse": { "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true }, "levn": { "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", "dev": true, "requires": { "prelude-ls": "~1.1.2", @@ -24057,6 +26014,8 @@ }, "optionator": { "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", "dev": true, "requires": { "deep-is": "~0.1.3", @@ -24069,15 +26028,21 @@ }, "prelude-ls": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", "dev": true }, "source-map": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "optional": true }, "type-check": { "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", "dev": true, "requires": { "prelude-ls": "~1.1.2" @@ -24086,23 +26051,24 @@ } }, "eslint": { - "version": "8.6.0", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.12.0.tgz", + "integrity": "sha512-it1oBL9alZg1S8UycLm5YDMAkIhtH6FtAzuZs6YvoGVldWjbS08BkAdb/ymP9LlAyq8koANu32U7Ib/w+UNh8Q==", "dev": true, "peer": true, "requires": { - "@eslint/eslintrc": "^1.0.5", + "@eslint/eslintrc": "^1.2.1", "@humanwhocodes/config-array": "^0.9.2", "ajv": "^6.10.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", "debug": "^4.3.2", "doctrine": "^3.0.0", - "enquirer": "^2.3.5", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.0", + "eslint-scope": "^7.1.1", "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.1.0", - "espree": "^9.3.0", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.3.1", "esquery": "^1.4.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", @@ -24110,7 +26076,7 @@ "functional-red-black-tree": "^1.0.1", "glob-parent": "^6.0.1", "globals": "^13.6.0", - "ignore": "^4.0.6", + "ignore": "^5.2.0", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", @@ -24121,9 +26087,7 @@ "minimatch": "^3.0.4", "natural-compare": "^1.4.0", "optionator": "^0.9.1", - "progress": "^2.0.0", "regexpp": "^3.2.0", - "semver": "^7.2.1", "strip-ansi": "^6.0.1", "strip-json-comments": "^3.1.0", "text-table": "^0.2.0", @@ -24131,7 +26095,9 @@ }, "dependencies": { "eslint-scope": { - "version": "7.1.0", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", + "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", "dev": true, "peer": true, "requires": { @@ -24141,11 +26107,15 @@ }, "estraverse": { "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "peer": true }, "glob-parent": { "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, "peer": true, "requires": { @@ -24153,20 +26123,29 @@ } }, "globals": { - "version": "13.12.0", + "version": "13.13.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.13.0.tgz", + "integrity": "sha512-EQ7Q18AJlPwp3vUDL4mKA0KXrXyNIQyWon6T6XQiBQF0XHvRsiCSrWmmeATpUzdJN2HhWZU6Pdl0a9zdep5p6A==", "dev": true, "peer": true, "requires": { "type-fest": "^0.20.2" } }, - "ignore": { - "version": "4.0.6", + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, - "peer": true + "peer": true, + "requires": { + "brace-expansion": "^1.1.7" + } }, "type-fest": { "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, "peer": true } @@ -24184,6 +26163,8 @@ }, "eslint-utils": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", "dev": true, "requires": { "eslint-visitor-keys": "^2.0.0" @@ -24191,30 +26172,40 @@ "dependencies": { "eslint-visitor-keys": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "dev": true } } }, "eslint-visitor-keys": { - "version": "3.1.0", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", "dev": true }, "espree": { - "version": "9.3.0", + "version": "9.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.3.1.tgz", + "integrity": "sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==", "dev": true, "peer": true, "requires": { "acorn": "^8.7.0", "acorn-jsx": "^5.3.1", - "eslint-visitor-keys": "^3.1.0" + "eslint-visitor-keys": "^3.3.0" } }, "esprima": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true }, "esquery": { "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", "dev": true, "peer": true, "requires": { @@ -24223,6 +26214,8 @@ "dependencies": { "estraverse": { "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "peer": true } @@ -24230,6 +26223,8 @@ }, "esrecurse": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, "requires": { "estraverse": "^5.2.0" @@ -24237,6 +26232,8 @@ "dependencies": { "estraverse": { "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true } } @@ -24249,26 +26246,38 @@ }, "esutils": { "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true }, "etag": { "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", "dev": true }, "event-target-shim": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", "dev": true }, "eventemitter3": { "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", "dev": true }, "exec-sh": { "version": "0.3.6", + "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz", + "integrity": "sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==", "dev": true }, "execa": { "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "requires": { "cross-spawn": "^7.0.3", @@ -24284,10 +26293,14 @@ }, "exit": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", "dev": true }, "expand-brackets": { "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", "dev": true, "requires": { "debug": "^2.3.3", @@ -24301,6 +26314,8 @@ "dependencies": { "debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "requires": { "ms": "2.0.0" @@ -24308,13 +26323,26 @@ }, "define-property": { "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "dev": true, "requires": { "is-descriptor": "^0.1.0" } }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, "is-accessor-descriptor": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", "dev": true, "requires": { "kind-of": "^3.0.2" @@ -24322,6 +26350,8 @@ "dependencies": { "kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -24331,6 +26361,8 @@ }, "is-data-descriptor": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", "dev": true, "requires": { "kind-of": "^3.0.2" @@ -24338,6 +26370,8 @@ "dependencies": { "kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -24347,6 +26381,8 @@ }, "is-descriptor": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "dev": true, "requires": { "is-accessor-descriptor": "^0.1.6", @@ -24354,12 +26390,22 @@ "kind-of": "^5.0.0" } }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + }, "kind-of": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", "dev": true }, "ms": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true } } @@ -24377,15 +26423,17 @@ } }, "express": { - "version": "4.17.2", + "version": "4.17.3", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.3.tgz", + "integrity": "sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg==", "dev": true, "requires": { - "accepts": "~1.3.7", + "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.19.1", + "body-parser": "1.19.2", "content-disposition": "0.5.4", "content-type": "~1.0.4", - "cookie": "0.4.1", + "cookie": "0.4.2", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "~1.1.2", @@ -24400,7 +26448,7 @@ "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.7", - "qs": "6.9.6", + "qs": "6.9.7", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "0.17.2", @@ -24412,32 +26460,107 @@ "vary": "~1.1.2" }, "dependencies": { + "body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw==", + "dev": true, + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.8.1", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.9.7", + "raw-body": "2.4.3", + "type-is": "~1.6.18" + } + }, "debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "dev": true + }, + "http-errors": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, + "requires": { + "ee-first": "1.1.1" + } + }, + "qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==", + "dev": true + }, + "raw-body": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.3.tgz", + "integrity": "sha512-UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g==", "dev": true, "requires": { - "ms": "2.0.0" + "bytes": "3.1.2", + "http-errors": "1.8.1", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" } - }, - "ms": { - "version": "2.0.0", - "dev": true } } }, "extend": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", "dev": true }, "extend-shallow": { - "version": "2.0.1", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", "dev": true, "requires": { - "is-extendable": "^0.1.0" + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" } }, "external-editor": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", "dev": true, "requires": { "chardet": "^0.7.0", @@ -24447,6 +26570,8 @@ }, "extglob": { "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "dev": true, "requires": { "array-unique": "^0.3.2", @@ -24457,22 +26582,56 @@ "regex-not": "^1.0.0", "snapdragon": "^0.8.1", "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + } } }, "extract-files": { "version": "11.0.0", + "resolved": "https://registry.npmjs.org/extract-files/-/extract-files-11.0.0.tgz", + "integrity": "sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==", "dev": true }, "extsprintf": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", "dev": true }, "fast-deep-equal": { "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, "fast-glob": { - "version": "3.2.7", + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", + "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", "dev": true, "requires": { "@nodelib/fs.stat": "^2.0.2", @@ -24483,14 +26642,20 @@ } }, "fast-json-stable-stringify": { - "version": "2.1.0" + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" }, "fast-levenshtein": { "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", "dev": true }, "fastq": { "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", "dev": true, "requires": { "reusify": "^1.0.4" @@ -24498,16 +26663,20 @@ }, "fb-watchman": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", + "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", "dev": true, "requires": { "bser": "2.1.1" } }, "fbjs": { - "version": "3.0.2", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.4.tgz", + "integrity": "sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==", "dev": true, "requires": { - "cross-fetch": "^3.0.4", + "cross-fetch": "^3.1.5", "fbjs-css-vars": "^1.0.0", "loose-envify": "^1.0.0", "object-assign": "^4.1.0", @@ -24518,14 +26687,20 @@ }, "fbjs-css-vars": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", + "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==", "dev": true }, "fecha": { "version": "4.2.1", + "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.1.tgz", + "integrity": "sha512-MMMQ0ludy/nBs1/o0zVOiKTpG7qMbonKUzjJgQFEuvq6INZ1OraKPRAWkBq5vlKLOUMpmNYG1JoN3oDPUQ9m3Q==", "dev": true }, "figures": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", "dev": true, "requires": { "escape-string-regexp": "^1.0.5" @@ -24533,12 +26708,16 @@ "dependencies": { "escape-string-regexp": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "dev": true } } }, "file-entry-cache": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, "peer": true, "requires": { @@ -24547,6 +26726,8 @@ }, "fill-range": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, "requires": { "to-regex-range": "^5.0.1" @@ -24554,10 +26735,14 @@ }, "filter-obj": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz", + "integrity": "sha1-mzERErxsYSehbgFsbF1/GeCAXFs=", "dev": true }, "finalhandler": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", "dev": true, "requires": { "debug": "2.6.9", @@ -24571,6 +26756,8 @@ "dependencies": { "debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "requires": { "ms": "2.0.0" @@ -24578,12 +26765,25 @@ }, "ms": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, + "requires": { + "ee-first": "1.1.1" + } } } }, "find-up": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "requires": { "locate-path": "^5.0.0", @@ -24592,6 +26792,8 @@ }, "flat-cache": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", "dev": true, "peer": true, "requires": { @@ -24607,21 +26809,31 @@ }, "fn.name": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", + "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==", "dev": true }, "for-in": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", "dev": true }, "foreach": { - "version": "2.0.5" + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", + "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=" }, "forever-agent": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", "dev": true }, "form-data": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", "requires": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", @@ -24629,23 +26841,39 @@ } }, "form-data-encoder": { - "version": "1.7.1", + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-1.7.2.tgz", + "integrity": "sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==", "dev": true }, "formdata-node": { "version": "4.3.2", + "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-4.3.2.tgz", + "integrity": "sha512-k7lYJyzDOSL6h917favP8j1L0/wNyylzU+x+1w4p5haGVHNlP58dbpdJhiCUsDbWsa9HwEtLp89obQgXl2e0qg==", "dev": true, "requires": { "node-domexception": "1.0.0", "web-streams-polyfill": "4.0.0-beta.1" + }, + "dependencies": { + "web-streams-polyfill": { + "version": "4.0.0-beta.1", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.1.tgz", + "integrity": "sha512-3ux37gEX670UUphBF9AMCq8XM6iQ8Ac6A+DSRRjDoRBm1ufCkaCDdNVbaqq60PsEkdNlLKrGtv/YBP4EJXqNtQ==", + "dev": true + } } }, "forwarded": { "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", "dev": true }, "fragment-cache": { "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", "dev": true, "requires": { "map-cache": "^0.2.2" @@ -24653,10 +26881,14 @@ }, "fresh": { "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", "dev": true }, "fs-extra": { "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "dev": true, "requires": { "at-least-node": "^1.0.0", @@ -24667,12 +26899,16 @@ }, "fs-minipass": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", "requires": { "minipass": "^3.0.0" } }, "fs.realpath": { - "version": "1.0.0" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, "fsevents": { "version": "2.3.2", @@ -24682,14 +26918,20 @@ "optional": true }, "function-bind": { - "version": "1.1.1" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, "functional-red-black-tree": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", "dev": true }, "gauge": { "version": "2.7.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", + "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", "dev": true, "requires": { "aproba": "^1.0.3", @@ -24704,14 +26946,20 @@ "dependencies": { "ansi-regex": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", "dev": true }, "aproba": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", "dev": true }, "is-fullwidth-code-point": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", "dev": true, "requires": { "number-is-nan": "^1.0.0" @@ -24719,6 +26967,8 @@ }, "string-width": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", "dev": true, "requires": { "code-point-at": "^1.0.0", @@ -24728,6 +26978,8 @@ }, "strip-ansi": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "dev": true, "requires": { "ansi-regex": "^2.0.0" @@ -24737,14 +26989,20 @@ }, "gensync": { "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true }, "get-caller-file": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true }, "get-intrinsic": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", "requires": { "function-bind": "^1.1.1", "has": "^1.0.3", @@ -24753,10 +27011,14 @@ }, "get-package-type": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true }, "get-pkg-repo": { "version": "4.2.1", + "resolved": "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz", + "integrity": "sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==", "dev": true, "requires": { "@hutson/parse-repository-url": "^3.0.0", @@ -24767,6 +27029,8 @@ "dependencies": { "readable-stream": { "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "dev": true, "requires": { "core-util-is": "~1.0.0", @@ -24780,10 +27044,14 @@ }, "safe-buffer": { "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true }, "string_decoder": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "requires": { "safe-buffer": "~5.1.0" @@ -24791,6 +27059,8 @@ }, "through2": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "dev": true, "requires": { "readable-stream": "~2.3.6", @@ -24799,6 +27069,8 @@ }, "yargs": { "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, "requires": { "cliui": "^7.0.2", @@ -24814,14 +27086,20 @@ }, "get-port": { "version": "5.1.1", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", + "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==", "dev": true }, "get-stream": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true }, "get-symbol-description": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", "requires": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.1" @@ -24829,10 +27107,14 @@ }, "get-value": { "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", "dev": true }, "getpass": { "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", "dev": true, "requires": { "assert-plus": "^1.0.0" @@ -24840,6 +27122,8 @@ }, "gherkin": { "version": "9.0.0", + "resolved": "https://registry.npmjs.org/gherkin/-/gherkin-9.0.0.tgz", + "integrity": "sha512-6xoAepoxo5vhkBXjB4RCfVnSKHu5z9SqXIQVUyj+Jw8BQX8odATlee5otXgdN8llZvyvHokuvNiBeB3naEnnIQ==", "dev": true, "requires": { "commander": "^4.0.1", @@ -24849,6 +27133,8 @@ }, "git-raw-commits": { "version": "2.0.11", + "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.11.tgz", + "integrity": "sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==", "dev": true, "requires": { "dargs": "^7.0.0", @@ -24860,6 +27146,8 @@ }, "git-remote-origin-url": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz", + "integrity": "sha1-UoJlna4hBxRaERJhEq0yFuxfpl8=", "dev": true, "requires": { "gitconfiglocal": "^1.0.0", @@ -24868,12 +27156,16 @@ "dependencies": { "pify": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", "dev": true } } }, "git-semver-tags": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-4.1.1.tgz", + "integrity": "sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==", "dev": true, "requires": { "meow": "^8.0.0", @@ -24882,12 +27174,16 @@ "dependencies": { "semver": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } } }, "git-up": { "version": "4.0.5", + "resolved": "https://registry.npmjs.org/git-up/-/git-up-4.0.5.tgz", + "integrity": "sha512-YUvVDg/vX3d0syBsk/CKUTib0srcQME0JyHkL5BaYdwLsiCslPWmDSi8PUMo9pXYjrryMcmsCoCgsTpSCJEQaA==", "dev": true, "requires": { "is-ssh": "^1.3.0", @@ -24896,6 +27192,8 @@ }, "git-url-parse": { "version": "11.6.0", + "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-11.6.0.tgz", + "integrity": "sha512-WWUxvJs5HsyHL6L08wOusa/IXYtMuCAhrMmnTjQPpBU0TTHyDhnOATNH3xNQz7YOQUsqIIPTGr4xiVti1Hsk5g==", "dev": true, "requires": { "git-up": "^4.0.0" @@ -24903,6 +27201,8 @@ }, "gitconfiglocal": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz", + "integrity": "sha1-QdBF84UaXqiPA/JMocYXgRRGS5s=", "dev": true, "requires": { "ini": "^1.3.2" @@ -24910,6 +27210,8 @@ }, "glob": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -24917,10 +27219,22 @@ "minimatch": "^3.0.4", "once": "^1.3.0", "path-is-absolute": "^1.0.0" + }, + "dependencies": { + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "requires": { + "brace-expansion": "^1.1.7" + } + } } }, "glob-parent": { "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "requires": { "is-glob": "^4.0.1" @@ -24928,22 +27242,28 @@ }, "globals": { "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true }, "globby": { - "version": "11.0.4", + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, "requires": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", - "fast-glob": "^3.1.1", - "ignore": "^5.1.4", - "merge2": "^1.3.0", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", "slash": "^3.0.0" } }, "got": { "version": "9.6.0", + "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", + "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", "dev": true, "requires": { "@sindresorhus/is": "^0.14.0", @@ -24961,6 +27281,8 @@ "dependencies": { "get-stream": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", "dev": true, "requires": { "pump": "^3.0.0" @@ -24969,67 +27291,94 @@ } }, "graceful-fs": { - "version": "4.2.9", + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", "dev": true }, "graphql": { - "version": "16.3.0" + "version": "16.3.0", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.3.0.tgz", + "integrity": "sha512-xm+ANmA16BzCT5pLjuXySbQVFwH3oJctUVdy81w1sV0vBU0KgDdBGtxQOUd5zqOBk/JayAFeG8Dlmeq74rjm/A==" }, "graphql-config": { - "version": "4.1.0", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-4.3.0.tgz", + "integrity": "sha512-Uiu3X7+s5c056WyrvdZVz2vG1fhAipMlYmtiCU/4Z2mX79OXDr1SqIon2MprC/pExIWJfAQZCcjYDY76fPBUQg==", "dev": true, "requires": { "@endemolshinegroup/cosmiconfig-typescript-loader": "3.0.2", - "@graphql-tools/graphql-file-loader": "^7.3.2", - "@graphql-tools/json-file-loader": "^7.3.2", - "@graphql-tools/load": "^7.4.1", - "@graphql-tools/merge": "^8.2.1", - "@graphql-tools/url-loader": "^7.4.2", - "@graphql-tools/utils": "^8.5.1", + "@graphql-tools/graphql-file-loader": "^7.3.7", + "@graphql-tools/json-file-loader": "^7.3.7", + "@graphql-tools/load": "^7.5.5", + "@graphql-tools/merge": "^8.2.6", + "@graphql-tools/url-loader": "^7.9.7", + "@graphql-tools/utils": "^8.6.5", "cosmiconfig": "7.0.1", "cosmiconfig-toml-loader": "1.0.0", - "minimatch": "3.0.4", + "minimatch": "4.2.1", "string-env-interpolation": "1.0.1" } }, + "graphql-executor": { + "version": "0.0.22", + "resolved": "https://registry.npmjs.org/graphql-executor/-/graphql-executor-0.0.22.tgz", + "integrity": "sha512-WbKSnSHFn6REKKH4T6UAwDM3mLUnYMQlQLNG0Fw+Lkb3ilCnL3m5lkJ7411LAI9sF7BvPbthovVZhsEUh9Xfag==", + "dev": true, + "requires": {} + }, "graphql-request": { - "version": "3.7.0", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/graphql-request/-/graphql-request-4.2.0.tgz", + "integrity": "sha512-uFeMyhhl8ss4LFgjlfPeAn2pqYw+CJto+cjj71uaBYIMMK2jPIqgHm5KEFxUk0YDD41A8Bq31a2b4G2WJBlp2Q==", "dev": true, "requires": { - "cross-fetch": "^3.0.6", + "cross-fetch": "^3.1.5", "extract-files": "^9.0.0", "form-data": "^3.0.0" }, "dependencies": { "extract-files": { "version": "9.0.0", + "resolved": "https://registry.npmjs.org/extract-files/-/extract-files-9.0.0.tgz", + "integrity": "sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ==", "dev": true } } }, "graphql-sse": { - "version": "1.0.6", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/graphql-sse/-/graphql-sse-1.1.0.tgz", + "integrity": "sha512-xE8AGPJa5X+g7iFmRQw/8H+7lXIDJvSkW6lou/XSSq17opPQl+dbKOMiqraHMx52VrDgS061ZVx90OSuqS6ykA==", "dev": true, "requires": {} }, "graphql-tag": { "version": "2.12.6", + "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz", + "integrity": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==", "requires": { "tslib": "^2.1.0" } }, "graphql-ws": { - "version": "5.5.5", + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.7.0.tgz", + "integrity": "sha512-8yYuvnyqIjlJ/WfebOyu2GSOQeFauRxnfuTveY9yvrDGs2g3kR9Nv4gu40AKvRHbXlSJwTbMJ6dVxAtEyKwVRA==", "dev": true, "requires": {} }, "growly": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", "dev": true, "optional": true }, "handlebars": { "version": "4.7.7", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", + "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", "dev": true, "requires": { "minimist": "^1.2.5", @@ -25041,16 +27390,22 @@ "dependencies": { "source-map": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true } } }, "har-schema": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", "dev": true }, "har-validator": { "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", "dev": true, "requires": { "ajv": "^6.12.3", @@ -25059,16 +27414,22 @@ }, "hard-rejection": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", "dev": true }, "has": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "requires": { "function-bind": "^1.1.1" } }, "has-ansi": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", "dev": true, "requires": { "ansi-regex": "^2.0.0" @@ -25076,31 +27437,45 @@ "dependencies": { "ansi-regex": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", "dev": true } } }, "has-bigints": { - "version": "1.0.1" + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", + "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==" }, "has-flag": { - "version": "4.0.0" + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" }, "has-symbols": { - "version": "1.0.2" + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" }, "has-tostringtag": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", "requires": { "has-symbols": "^1.0.2" } }, "has-unicode": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", "dev": true }, "has-value": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", "dev": true, "requires": { "get-value": "^2.0.6", @@ -25110,6 +27485,8 @@ }, "has-values": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", "dev": true, "requires": { "is-number": "^3.0.0", @@ -25118,6 +27495,8 @@ "dependencies": { "is-number": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", "dev": true, "requires": { "kind-of": "^3.0.2" @@ -25125,6 +27504,8 @@ "dependencies": { "kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -25134,6 +27515,8 @@ }, "kind-of": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -25143,6 +27526,8 @@ }, "header-case": { "version": "2.0.4", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", + "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", "dev": true, "requires": { "capital-case": "^1.0.4", @@ -25151,6 +27536,8 @@ }, "hoist-non-react-statics": { "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", "dev": true, "requires": { "react-is": "^16.7.0" @@ -25158,6 +27545,8 @@ }, "hosted-git-info": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -25165,6 +27554,8 @@ }, "html-encoding-sniffer": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", "dev": true, "requires": { "whatwg-encoding": "^1.0.5" @@ -25172,24 +27563,40 @@ }, "html-escaper": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, "http-cache-semantics": { - "version": "4.1.0" + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", + "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" }, "http-errors": { - "version": "1.8.1", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dev": true, "requires": { - "depd": "~1.1.2", + "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", - "statuses": ">= 1.5.0 < 2", + "statuses": "2.0.1", "toidentifier": "1.0.1" + }, + "dependencies": { + "statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true + } } }, "http-proxy-agent": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", "dev": true, "requires": { "@tootallnate/once": "2", @@ -25199,6 +27606,8 @@ }, "http-signature": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", "dev": true, "requires": { "assert-plus": "^1.0.0", @@ -25208,6 +27617,8 @@ }, "https-proxy-agent": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", + "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", "requires": { "agent-base": "6", "debug": "4" @@ -25215,16 +27626,22 @@ }, "human-signals": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true }, "humanize-ms": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=", "requires": { "ms": "^2.0.0" } }, "iconv-lite": { "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, "requires": { "safer-buffer": ">= 2.1.2 < 3" @@ -25232,25 +27649,46 @@ }, "ieee754": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "dev": true }, "ignore": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", "dev": true }, "ignore-walk": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.4.tgz", + "integrity": "sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ==", "dev": true, "requires": { "minimatch": "^3.0.4" + }, + "dependencies": { + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + } } }, "immutable": { "version": "3.7.6", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.7.6.tgz", + "integrity": "sha1-E7TTyxK++hVIKib+Gy665kAHHks=", "dev": true }, "import-fresh": { "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, "requires": { "parent-module": "^1.0.0", @@ -25259,16 +27697,22 @@ "dependencies": { "resolve-from": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true } } }, "import-from": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-4.0.0.tgz", + "integrity": "sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==", "dev": true }, "import-local": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "dev": true, "requires": { "pkg-dir": "^4.2.0", @@ -25276,31 +27720,45 @@ } }, "imurmurhash": { - "version": "0.1.4" + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" }, "indent-string": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz", + "integrity": "sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=", "dev": true }, "infer-owner": { - "version": "1.0.4" + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" }, "inflight": { "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", "requires": { "once": "^1.3.0", "wrappy": "1" } }, "inherits": { - "version": "2.0.4" + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "ini": { "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", "dev": true }, "init-package-json": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/init-package-json/-/init-package-json-2.0.5.tgz", + "integrity": "sha512-u1uGAtEFu3VA6HNl/yUWw57jmKEMx8SKOxHhxjGnOFUiIlFnohKDFg4ZrPpv9wWqk44nDxGJAtqjdQFm+9XXQA==", "dev": true, "requires": { "npm-package-arg": "^8.1.5", @@ -25313,7 +27771,9 @@ }, "dependencies": { "read-package-json": { - "version": "4.1.1", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-4.1.2.tgz", + "integrity": "sha512-Dqer4pqzamDE2O4M55xp1qZMuLPqi4ldk2ya648FOMHRjwMzFhuxVrG04wd0c38IsvkVdr3vgHI6z+QTPdAjrQ==", "dev": true, "requires": { "glob": "^7.1.1", @@ -25325,7 +27785,9 @@ } }, "inquirer": { - "version": "8.2.0", + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.2.tgz", + "integrity": "sha512-pG7I/si6K/0X7p1qU+rfWnpTE1UIkTONN1wxtzh0d+dHXtT/JG6qBgLxoyHVsQa8cFABxAPh0pD6uUUHiAoaow==", "dev": true, "requires": { "ansi-escapes": "^4.2.1", @@ -25338,7 +27800,7 @@ "mute-stream": "0.0.8", "ora": "^5.4.1", "run-async": "^2.4.0", - "rxjs": "^7.2.0", + "rxjs": "^7.5.5", "string-width": "^4.1.0", "strip-ansi": "^6.0.0", "through": "^2.3.6" @@ -25346,6 +27808,8 @@ }, "internal-slot": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", "requires": { "get-intrinsic": "^1.1.0", "has": "^1.0.3", @@ -25354,20 +27818,28 @@ }, "invariant": { "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", "dev": true, "requires": { "loose-envify": "^1.0.0" } }, "ip": { - "version": "1.1.5" + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" }, "ipaddr.js": { "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", "dev": true }, "is-absolute": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", + "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", "dev": true, "requires": { "is-relative": "^1.0.0", @@ -25376,6 +27848,8 @@ }, "is-accessor-descriptor": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "dev": true, "requires": { "kind-of": "^6.0.0" @@ -25383,6 +27857,8 @@ }, "is-arguments": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", "requires": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -25390,16 +27866,22 @@ }, "is-arrayish": { "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", "dev": true }, "is-bigint": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "requires": { "has-bigints": "^1.0.1" } }, "is-binary-path": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, "requires": { "binary-extensions": "^2.0.0" @@ -25407,6 +27889,8 @@ }, "is-boolean-object": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "requires": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -25414,13 +27898,19 @@ }, "is-buffer": { "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", "dev": true }, "is-callable": { - "version": "1.2.4" + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==" }, "is-ci": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", "dev": true, "requires": { "ci-info": "^2.0.0" @@ -25428,12 +27918,16 @@ "dependencies": { "ci-info": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", "dev": true } } }, "is-core-module": { "version": "2.8.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", + "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", "dev": true, "requires": { "has": "^1.0.3" @@ -25441,6 +27935,8 @@ }, "is-data-descriptor": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "dev": true, "requires": { "kind-of": "^6.0.0" @@ -25448,12 +27944,16 @@ }, "is-date-object": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", "requires": { "has-tostringtag": "^1.0.0" } }, "is-descriptor": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "dev": true, "requires": { "is-accessor-descriptor": "^1.0.0", @@ -25463,27 +27963,53 @@ }, "is-docker": { "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", "dev": true, "optional": true }, "is-extendable": { - "version": "0.1.1", - "dev": true + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + }, + "dependencies": { + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } }, "is-extglob": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", "dev": true }, "is-fullwidth-code-point": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true }, "is-generator-fn": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true }, "is-glob": { "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "requires": { "is-extglob": "^2.1.1" @@ -25491,36 +28017,58 @@ }, "is-interactive": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", "dev": true }, "is-lambda": { - "version": "1.0.1" + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=" }, "is-lower-case": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-2.0.2.tgz", + "integrity": "sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==", "dev": true, "requires": { "tslib": "^2.0.3" } }, "is-map": { - "version": "2.0.2" + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==" }, "is-negative-zero": { - "version": "2.0.2" + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true }, "is-number-object": { - "version": "1.0.6", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "requires": { "has-tostringtag": "^1.0.0" } }, "is-obj": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", "dev": true }, "is-observable": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-observable/-/is-observable-1.1.0.tgz", + "integrity": "sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==", "dev": true, "requires": { "symbol-observable": "^1.1.0" @@ -25528,28 +28076,40 @@ "dependencies": { "symbol-observable": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", + "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==", "dev": true } } }, "is-plain-obj": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", "dev": true }, "is-plain-object": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", "dev": true }, "is-potential-custom-element-name": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", "dev": true }, "is-promise": { "version": "2.2.2", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", + "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", "dev": true }, "is-regex": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "requires": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -25557,19 +28117,30 @@ }, "is-relative": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", + "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", "dev": true, "requires": { "is-unc-path": "^1.0.0" } }, "is-set": { - "version": "2.0.2" + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==" }, "is-shared-array-buffer": { - "version": "1.0.1" + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "requires": { + "call-bind": "^1.0.2" + } }, "is-ssh": { "version": "1.3.3", + "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.3.3.tgz", + "integrity": "sha512-NKzJmQzJfEEma3w5cJNcUMxoXfDjz0Zj0eyCalHn2E6VOwlzjZo0yuO2fcBSf8zhFuVCL/82/r5gRcoi6aEPVQ==", "dev": true, "requires": { "protocols": "^1.1.0" @@ -25577,22 +28148,30 @@ }, "is-stream": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true }, "is-string": { "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "requires": { "has-tostringtag": "^1.0.0" } }, "is-symbol": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "requires": { "has-symbols": "^1.0.2" } }, "is-text-path": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz", + "integrity": "sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=", "dev": true, "requires": { "text-extensions": "^1.0.0" @@ -25600,6 +28179,8 @@ }, "is-typed-array": { "version": "1.1.8", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.8.tgz", + "integrity": "sha512-HqH41TNZq2fgtGT8WHVFVJhBVGuY3AnP3Q36K8JKXUxSxRgk/d+7NjmwG2vo2mYmXK8UYZKu0qH8bVP5gEisjA==", "requires": { "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", @@ -25610,10 +28191,14 @@ }, "is-typedarray": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", "dev": true }, "is-unc-path": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", + "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", "dev": true, "requires": { "unc-path-regex": "^0.1.2" @@ -25621,26 +28206,36 @@ }, "is-unicode-supported": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", "dev": true }, "is-upper-case": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-upper-case/-/is-upper-case-2.0.2.tgz", + "integrity": "sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==", "dev": true, "requires": { "tslib": "^2.0.3" } }, "is-weakmap": { - "version": "2.0.1" + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==" }, "is-weakref": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", "requires": { "call-bind": "^1.0.2" } }, "is-weakset": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", "requires": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.1" @@ -25648,10 +28243,14 @@ }, "is-windows": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", "dev": true }, "is-wsl": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dev": true, "optional": true, "requires": { @@ -25660,18 +28259,26 @@ }, "isarray": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", "dev": true }, "isexe": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", "dev": true }, "isobject": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", "dev": true }, "isomorphic-fetch": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-3.0.0.tgz", + "integrity": "sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==", "dev": true, "requires": { "node-fetch": "^2.6.1", @@ -25680,19 +28287,27 @@ }, "isomorphic-ws": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz", + "integrity": "sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==", "dev": true, "requires": {} }, "isstream": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", "dev": true }, "istanbul-lib-coverage": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", "dev": true }, "istanbul-lib-instrument": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz", + "integrity": "sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==", "dev": true, "requires": { "@babel/core": "^7.12.3", @@ -25704,12 +28319,16 @@ "dependencies": { "semver": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } } }, "istanbul-lib-report": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", "dev": true, "requires": { "istanbul-lib-coverage": "^3.0.0", @@ -25719,6 +28338,8 @@ }, "istanbul-lib-source-maps": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, "requires": { "debug": "^4.1.1", @@ -25728,12 +28349,16 @@ "dependencies": { "source-map": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true } } }, "istanbul-reports": { - "version": "3.1.3", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.4.tgz", + "integrity": "sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==", "dev": true, "requires": { "html-escaper": "^2.0.0", @@ -25742,6 +28367,8 @@ }, "iterall": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/iterall/-/iterall-1.3.0.tgz", + "integrity": "sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg==", "dev": true }, "jest": { @@ -25815,6 +28442,8 @@ "dependencies": { "yargs": { "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, "requires": { "cliui": "^7.0.2", @@ -25862,6 +28491,8 @@ }, "jest-cucumber": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/jest-cucumber/-/jest-cucumber-3.0.1.tgz", + "integrity": "sha512-S2EelgezfwWP10VCgUkSOiJYiTIM0yM82KxrwBOn68wMmlqU5jNSf7xDIBS0tGwoFnNwUTFp7LPFmEnfilSJrA==", "dev": true, "requires": { "@types/glob": "^7.1.3", @@ -25876,6 +28507,8 @@ "dependencies": { "@jest/console": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz", + "integrity": "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==", "dev": true, "requires": { "@jest/types": "^26.6.2", @@ -25888,6 +28521,8 @@ }, "@jest/core": { "version": "26.6.3", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz", + "integrity": "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==", "dev": true, "requires": { "@jest/console": "^26.6.2", @@ -25918,36 +28553,12 @@ "rimraf": "^3.0.0", "slash": "^3.0.0", "strip-ansi": "^6.0.0" - }, - "dependencies": { - "jest-config": { - "version": "26.6.3", - "dev": true, - "requires": { - "@babel/core": "^7.1.0", - "@jest/test-sequencer": "^26.6.3", - "@jest/types": "^26.6.2", - "babel-jest": "^26.6.3", - "chalk": "^4.0.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.1", - "graceful-fs": "^4.2.4", - "jest-environment-jsdom": "^26.6.2", - "jest-environment-node": "^26.6.2", - "jest-get-type": "^26.3.0", - "jest-jasmine2": "^26.6.3", - "jest-regex-util": "^26.0.0", - "jest-resolve": "^26.6.2", - "jest-util": "^26.6.2", - "jest-validate": "^26.6.2", - "micromatch": "^4.0.2", - "pretty-format": "^26.6.2" - } - } } }, "@jest/environment": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz", + "integrity": "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==", "dev": true, "requires": { "@jest/fake-timers": "^26.6.2", @@ -25958,6 +28569,8 @@ }, "@jest/fake-timers": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz", + "integrity": "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==", "dev": true, "requires": { "@jest/types": "^26.6.2", @@ -25970,6 +28583,8 @@ }, "@jest/globals": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz", + "integrity": "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==", "dev": true, "requires": { "@jest/environment": "^26.6.2", @@ -25979,6 +28594,8 @@ }, "@jest/reporters": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz", + "integrity": "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==", "dev": true, "requires": { "@bcoe/v8-coverage": "^0.2.3", @@ -26010,6 +28627,8 @@ }, "@jest/source-map": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz", + "integrity": "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==", "dev": true, "requires": { "callsites": "^3.0.0", @@ -26019,6 +28638,8 @@ }, "@jest/test-result": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz", + "integrity": "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==", "dev": true, "requires": { "@jest/console": "^26.6.2", @@ -26029,6 +28650,8 @@ }, "@jest/test-sequencer": { "version": "26.6.3", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz", + "integrity": "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==", "dev": true, "requires": { "@jest/test-result": "^26.6.2", @@ -26040,6 +28663,8 @@ }, "@jest/transform": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz", + "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==", "dev": true, "requires": { "@babel/core": "^7.1.0", @@ -26061,6 +28686,8 @@ }, "@jest/types": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", "dev": true, "requires": { "@types/istanbul-lib-coverage": "^2.0.0", @@ -26072,6 +28699,8 @@ }, "@sinonjs/fake-timers": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz", + "integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==", "dev": true, "requires": { "@sinonjs/commons": "^1.7.0" @@ -26079,6 +28708,8 @@ }, "@types/jest": { "version": "26.0.24", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-26.0.24.tgz", + "integrity": "sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==", "dev": true, "requires": { "jest-diff": "^26.0.0", @@ -26087,10 +28718,14 @@ }, "@types/node": { "version": "11.15.54", + "resolved": "https://registry.npmjs.org/@types/node/-/node-11.15.54.tgz", + "integrity": "sha512-1RWYiq+5UfozGsU6MwJyFX6BtktcT10XRjvcAQmskCtMcW3tPske88lM/nHv7BQG1w9KBXI1zPGuu5PnNCX14g==", "dev": true }, "@types/yargs": { "version": "15.0.14", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz", + "integrity": "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==", "dev": true, "requires": { "@types/yargs-parser": "*" @@ -26098,6 +28733,8 @@ }, "babel-jest": { "version": "26.6.3", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz", + "integrity": "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==", "dev": true, "requires": { "@jest/transform": "^26.6.2", @@ -26112,6 +28749,8 @@ }, "babel-plugin-jest-hoist": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz", + "integrity": "sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==", "dev": true, "requires": { "@babel/template": "^7.3.3", @@ -26122,6 +28761,8 @@ }, "babel-preset-jest": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz", + "integrity": "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==", "dev": true, "requires": { "babel-plugin-jest-hoist": "^26.6.2", @@ -26130,14 +28771,20 @@ }, "camelcase": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true }, "cjs-module-lexer": { "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz", + "integrity": "sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==", "dev": true }, "cliui": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", "dev": true, "requires": { "string-width": "^4.2.0", @@ -26147,14 +28794,20 @@ }, "diff-sequences": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz", + "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==", "dev": true }, "emittery": { "version": "0.7.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz", + "integrity": "sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==", "dev": true }, "execa": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", "dev": true, "requires": { "cross-spawn": "^7.0.0", @@ -26170,6 +28823,8 @@ }, "expect": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz", + "integrity": "sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==", "dev": true, "requires": { "@jest/types": "^26.6.2", @@ -26182,6 +28837,8 @@ }, "get-stream": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "dev": true, "requires": { "pump": "^3.0.0" @@ -26189,14 +28846,20 @@ }, "hosted-git-info": { "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", "dev": true }, "human-signals": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", "dev": true }, "istanbul-lib-instrument": { "version": "4.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", + "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", "dev": true, "requires": { "@babel/core": "^7.7.5", @@ -26207,12 +28870,16 @@ "dependencies": { "semver": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } } }, "jest": { "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest/-/jest-26.6.3.tgz", + "integrity": "sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==", "dev": true, "requires": { "@jest/core": "^26.6.3", @@ -26222,6 +28889,8 @@ }, "jest-changed-files": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-26.6.2.tgz", + "integrity": "sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==", "dev": true, "requires": { "@jest/types": "^26.6.2", @@ -26231,6 +28900,8 @@ }, "jest-cli": { "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-26.6.3.tgz", + "integrity": "sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==", "dev": true, "requires": { "@jest/core": "^26.6.3", @@ -26246,36 +28917,38 @@ "jest-validate": "^26.6.2", "prompts": "^2.0.1", "yargs": "^15.4.1" - }, - "dependencies": { - "jest-config": { - "version": "26.6.3", - "dev": true, - "requires": { - "@babel/core": "^7.1.0", - "@jest/test-sequencer": "^26.6.3", - "@jest/types": "^26.6.2", - "babel-jest": "^26.6.3", - "chalk": "^4.0.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.1", - "graceful-fs": "^4.2.4", - "jest-environment-jsdom": "^26.6.2", - "jest-environment-node": "^26.6.2", - "jest-get-type": "^26.3.0", - "jest-jasmine2": "^26.6.3", - "jest-regex-util": "^26.0.0", - "jest-resolve": "^26.6.2", - "jest-util": "^26.6.2", - "jest-validate": "^26.6.2", - "micromatch": "^4.0.2", - "pretty-format": "^26.6.2" - } - } + } + }, + "jest-config": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-26.6.3.tgz", + "integrity": "sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==", + "dev": true, + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^26.6.3", + "@jest/types": "^26.6.2", + "babel-jest": "^26.6.3", + "chalk": "^4.0.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.4", + "jest-environment-jsdom": "^26.6.2", + "jest-environment-node": "^26.6.2", + "jest-get-type": "^26.3.0", + "jest-jasmine2": "^26.6.3", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2" } }, "jest-diff": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz", + "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", "dev": true, "requires": { "chalk": "^4.0.0", @@ -26286,6 +28959,8 @@ }, "jest-docblock": { "version": "26.0.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-26.0.0.tgz", + "integrity": "sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==", "dev": true, "requires": { "detect-newline": "^3.0.0" @@ -26293,6 +28968,8 @@ }, "jest-each": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-26.6.2.tgz", + "integrity": "sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==", "dev": true, "requires": { "@jest/types": "^26.6.2", @@ -26304,6 +28981,8 @@ }, "jest-environment-jsdom": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz", + "integrity": "sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==", "dev": true, "requires": { "@jest/environment": "^26.6.2", @@ -26317,6 +28996,8 @@ }, "jest-environment-node": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-26.6.2.tgz", + "integrity": "sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==", "dev": true, "requires": { "@jest/environment": "^26.6.2", @@ -26329,10 +29010,14 @@ }, "jest-get-type": { "version": "26.3.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", + "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==", "dev": true }, "jest-haste-map": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz", + "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==", "dev": true, "requires": { "@jest/types": "^26.6.2", @@ -26353,6 +29038,8 @@ }, "jest-jasmine2": { "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz", + "integrity": "sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==", "dev": true, "requires": { "@babel/traverse": "^7.1.0", @@ -26377,6 +29064,8 @@ }, "jest-leak-detector": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz", + "integrity": "sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==", "dev": true, "requires": { "jest-get-type": "^26.3.0", @@ -26385,6 +29074,8 @@ }, "jest-matcher-utils": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz", + "integrity": "sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==", "dev": true, "requires": { "chalk": "^4.0.0", @@ -26395,6 +29086,8 @@ }, "jest-message-util": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz", + "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==", "dev": true, "requires": { "@babel/code-frame": "^7.0.0", @@ -26410,6 +29103,8 @@ }, "jest-mock": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-26.6.2.tgz", + "integrity": "sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==", "dev": true, "requires": { "@jest/types": "^26.6.2", @@ -26418,10 +29113,14 @@ }, "jest-regex-util": { "version": "26.0.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz", + "integrity": "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==", "dev": true }, "jest-resolve": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", "dev": true, "requires": { "@jest/types": "^26.6.2", @@ -26436,6 +29135,8 @@ }, "jest-resolve-dependencies": { "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz", + "integrity": "sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==", "dev": true, "requires": { "@jest/types": "^26.6.2", @@ -26445,6 +29146,8 @@ }, "jest-runner": { "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-26.6.3.tgz", + "integrity": "sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==", "dev": true, "requires": { "@jest/console": "^26.6.2", @@ -26467,36 +29170,12 @@ "jest-worker": "^26.6.2", "source-map-support": "^0.5.6", "throat": "^5.0.0" - }, - "dependencies": { - "jest-config": { - "version": "26.6.3", - "dev": true, - "requires": { - "@babel/core": "^7.1.0", - "@jest/test-sequencer": "^26.6.3", - "@jest/types": "^26.6.2", - "babel-jest": "^26.6.3", - "chalk": "^4.0.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.1", - "graceful-fs": "^4.2.4", - "jest-environment-jsdom": "^26.6.2", - "jest-environment-node": "^26.6.2", - "jest-get-type": "^26.3.0", - "jest-jasmine2": "^26.6.3", - "jest-regex-util": "^26.0.0", - "jest-resolve": "^26.6.2", - "jest-util": "^26.6.2", - "jest-validate": "^26.6.2", - "micromatch": "^4.0.2", - "pretty-format": "^26.6.2" - } - } } }, "jest-runtime": { "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-26.6.3.tgz", + "integrity": "sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==", "dev": true, "requires": { "@jest/console": "^26.6.2", @@ -26526,36 +29205,12 @@ "slash": "^3.0.0", "strip-bom": "^4.0.0", "yargs": "^15.4.1" - }, - "dependencies": { - "jest-config": { - "version": "26.6.3", - "dev": true, - "requires": { - "@babel/core": "^7.1.0", - "@jest/test-sequencer": "^26.6.3", - "@jest/types": "^26.6.2", - "babel-jest": "^26.6.3", - "chalk": "^4.0.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.1", - "graceful-fs": "^4.2.4", - "jest-environment-jsdom": "^26.6.2", - "jest-environment-node": "^26.6.2", - "jest-get-type": "^26.3.0", - "jest-jasmine2": "^26.6.3", - "jest-regex-util": "^26.0.0", - "jest-resolve": "^26.6.2", - "jest-util": "^26.6.2", - "jest-validate": "^26.6.2", - "micromatch": "^4.0.2", - "pretty-format": "^26.6.2" - } - } } }, "jest-serializer": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz", + "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==", "dev": true, "requires": { "@types/node": "*", @@ -26564,6 +29219,8 @@ }, "jest-snapshot": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-26.6.2.tgz", + "integrity": "sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==", "dev": true, "requires": { "@babel/types": "^7.0.0", @@ -26586,6 +29243,8 @@ }, "jest-util": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", "dev": true, "requires": { "@jest/types": "^26.6.2", @@ -26598,6 +29257,8 @@ }, "jest-validate": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz", + "integrity": "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==", "dev": true, "requires": { "@jest/types": "^26.6.2", @@ -26610,6 +29271,8 @@ }, "jest-watcher": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.6.2.tgz", + "integrity": "sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==", "dev": true, "requires": { "@jest/test-result": "^26.6.2", @@ -26623,6 +29286,8 @@ }, "jest-worker": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", "dev": true, "requires": { "@types/node": "*", @@ -26632,6 +29297,8 @@ }, "normalize-package-data": { "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, "requires": { "hosted-git-info": "^2.1.4", @@ -26642,12 +29309,16 @@ "dependencies": { "semver": { "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true } } }, "pretty-format": { "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", "dev": true, "requires": { "@jest/types": "^26.6.2", @@ -26658,10 +29329,14 @@ }, "react-is": { "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", "dev": true }, "read-pkg": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", "dev": true, "requires": { "@types/normalize-package-data": "^2.4.0", @@ -26672,12 +29347,16 @@ "dependencies": { "type-fest": { "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", "dev": true } } }, "read-pkg-up": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", "dev": true, "requires": { "find-up": "^4.1.0", @@ -26687,18 +29366,26 @@ }, "source-map": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true }, "throat": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", + "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==", "dev": true }, "type-fest": { "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", "dev": true }, "v8-to-istanbul": { "version": "7.1.2", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz", + "integrity": "sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==", "dev": true, "requires": { "@types/istanbul-lib-coverage": "^2.0.1", @@ -26708,12 +29395,16 @@ "dependencies": { "source-map": { "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", "dev": true } } }, "wrap-ansi": { "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", "dev": true, "requires": { "ansi-styles": "^4.0.0", @@ -26723,10 +29414,14 @@ }, "y18n": { "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", "dev": true }, "yargs": { "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", "dev": true, "requires": { "cliui": "^6.0.0", @@ -26744,6 +29439,8 @@ }, "yargs-parser": { "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", "dev": true, "requires": { "camelcase": "^5.0.0", @@ -26752,6 +29449,8 @@ "dependencies": { "camelcase": { "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true } } @@ -26936,6 +29635,8 @@ }, "jest-pnp-resolver": { "version": "1.2.2", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", + "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", "dev": true, "requires": {} }, @@ -27147,14 +29848,20 @@ } }, "js-levenshtein": { - "version": "1.1.6" + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz", + "integrity": "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==" }, "js-tokens": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "dev": true }, "js-yaml": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "requires": { "argparse": "^2.0.1" @@ -27162,10 +29869,14 @@ }, "jsbn": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", "dev": true }, "jsdom": { "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", "dev": true, "requires": { "abab": "^2.0.5", @@ -27199,10 +29910,14 @@ "dependencies": { "@tootallnate/once": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", "dev": true }, "http-proxy-agent": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", "dev": true, "requires": { "@tootallnate/once": "1", @@ -27211,7 +29926,9 @@ } }, "ws": { - "version": "7.5.6", + "version": "7.5.7", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.7.tgz", + "integrity": "sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A==", "dev": true, "requires": {} } @@ -27219,30 +29936,44 @@ }, "jsesc": { "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true }, "json-buffer": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=", "dev": true }, "json-parse-better-errors": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", "dev": true }, "json-parse-even-better-errors": { "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, "json-schema": { "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", "dev": true }, "json-schema-traverse": { "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, "json-stable-stringify": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", + "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", "dev": true, "requires": { "jsonify": "~0.0.0" @@ -27250,15 +29981,21 @@ }, "json-stable-stringify-without-jsonify": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", "dev": true, "peer": true }, "json-stringify-safe": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", "dev": true }, "json-to-pretty-yaml": { "version": "1.2.2", + "resolved": "https://registry.npmjs.org/json-to-pretty-yaml/-/json-to-pretty-yaml-1.2.2.tgz", + "integrity": "sha1-9M0L0KXo/h3yWq9boRiwmf2ZLVs=", "dev": true, "requires": { "remedial": "^1.0.7", @@ -27266,14 +30003,15 @@ } }, "json5": { - "version": "2.2.0", - "dev": true, - "requires": { - "minimist": "^1.2.5" - } + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "dev": true }, "jsonfile": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, "requires": { "graceful-fs": "^4.1.6", @@ -27282,14 +30020,20 @@ }, "jsonify": { "version": "0.0.0", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", + "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", "dev": true }, "jsonparse": { "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=", "dev": true }, "JSONStream": { "version": "1.3.5", + "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", + "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", "dev": true, "requires": { "jsonparse": "^1.2.0", @@ -27298,6 +30042,8 @@ }, "jsonwebtoken": { "version": "8.5.1", + "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz", + "integrity": "sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==", "dev": true, "requires": { "jws": "^3.2.2", @@ -27314,12 +30060,16 @@ "dependencies": { "semver": { "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true } } }, "jsprim": { "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "dev": true, "requires": { "assert-plus": "1.0.0", @@ -27330,6 +30080,8 @@ }, "jwa": { "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", + "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", "dev": true, "requires": { "buffer-equal-constant-time": "1.0.1", @@ -27339,6 +30091,8 @@ }, "jws": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", + "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", "dev": true, "requires": { "jwa": "^1.4.1", @@ -27347,6 +30101,8 @@ }, "keyv": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", + "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", "dev": true, "requires": { "json-buffer": "3.0.0" @@ -27354,18 +30110,26 @@ }, "kind-of": { "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true }, "kleur": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true }, "kuler": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", + "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==", "dev": true }, "latest-version": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", + "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", "dev": true, "requires": { "package-json": "^6.3.0" @@ -27373,10 +30137,14 @@ }, "lazy-ass": { "version": "1.6.0", + "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz", + "integrity": "sha1-eZllXoZGwX8In90YfRUNMyTVRRM=", "dev": true }, "lerna": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lerna/-/lerna-4.0.0.tgz", + "integrity": "sha512-DD/i1znurfOmNJb0OBw66NmNqiM8kF6uIrzrJ0wGE3VNdzeOhz9ziWLYiRaZDGGwgbcjOo6eIfcx9O5Qynz+kg==", "dev": true, "requires": { "@lerna/add": "4.0.0", @@ -27401,10 +30169,14 @@ }, "leven": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true }, "levn": { "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "peer": true, "requires": { @@ -27414,6 +30186,8 @@ }, "libnpmaccess": { "version": "4.0.3", + "resolved": "https://registry.npmjs.org/libnpmaccess/-/libnpmaccess-4.0.3.tgz", + "integrity": "sha512-sPeTSNImksm8O2b6/pf3ikv4N567ERYEpeKRPSmqlNt1dTZbvgpJIzg5vAhXHpw2ISBsELFRelk0jEahj1c6nQ==", "dev": true, "requires": { "aproba": "^2.0.0", @@ -27424,10 +30198,14 @@ "dependencies": { "@tootallnate/once": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", "dev": true }, "http-proxy-agent": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", "dev": true, "requires": { "@tootallnate/once": "1", @@ -27437,6 +30215,8 @@ }, "make-fetch-happen": { "version": "9.1.0", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", + "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", "dev": true, "requires": { "agentkeepalive": "^4.1.3", @@ -27459,6 +30239,8 @@ }, "npm-registry-fetch": { "version": "11.0.0", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-11.0.0.tgz", + "integrity": "sha512-jmlgSxoDNuhAtxUIG6pVwwtz840i994dL14FoNVZisrmZW5kWd63IUTNv1m/hyRSGSqWjCUp/YZlS1BJyNp9XA==", "dev": true, "requires": { "make-fetch-happen": "^9.0.1", @@ -27471,6 +30253,8 @@ }, "socks-proxy-agent": { "version": "6.1.1", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.1.1.tgz", + "integrity": "sha512-t8J0kG3csjA4g6FTbsMOWws+7R7vuRC8aQ/wy3/1OWmsgwA68zs/+cExQ0koSitUDXqhufF/YJr9wtNMZHw5Ew==", "dev": true, "requires": { "agent-base": "^6.0.2", @@ -27482,6 +30266,8 @@ }, "libnpmpublish": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/libnpmpublish/-/libnpmpublish-4.0.2.tgz", + "integrity": "sha512-+AD7A2zbVeGRCFI2aO//oUmapCwy7GHqPXFJh3qpToSRNU+tXKJ2YFUgjt04LPPAf2dlEH95s6EhIHM1J7bmOw==", "dev": true, "requires": { "normalize-package-data": "^3.0.2", @@ -27493,10 +30279,14 @@ "dependencies": { "@tootallnate/once": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", "dev": true }, "http-proxy-agent": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", "dev": true, "requires": { "@tootallnate/once": "1", @@ -27506,6 +30296,8 @@ }, "make-fetch-happen": { "version": "9.1.0", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", + "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", "dev": true, "requires": { "agentkeepalive": "^4.1.3", @@ -27528,6 +30320,8 @@ }, "npm-registry-fetch": { "version": "11.0.0", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-11.0.0.tgz", + "integrity": "sha512-jmlgSxoDNuhAtxUIG6pVwwtz840i994dL14FoNVZisrmZW5kWd63IUTNv1m/hyRSGSqWjCUp/YZlS1BJyNp9XA==", "dev": true, "requires": { "make-fetch-happen": "^9.0.1", @@ -27540,6 +30334,8 @@ }, "socks-proxy-agent": { "version": "6.1.1", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.1.1.tgz", + "integrity": "sha512-t8J0kG3csjA4g6FTbsMOWws+7R7vuRC8aQ/wy3/1OWmsgwA68zs/+cExQ0koSitUDXqhufF/YJr9wtNMZHw5Ew==", "dev": true, "requires": { "agent-base": "^6.0.2", @@ -27551,10 +30347,14 @@ }, "lines-and-columns": { "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true }, "listr": { "version": "0.14.3", + "resolved": "https://registry.npmjs.org/listr/-/listr-0.14.3.tgz", + "integrity": "sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==", "dev": true, "requires": { "@samverschueren/stream-to-observable": "^0.3.0", @@ -27570,14 +30370,20 @@ "dependencies": { "is-stream": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", "dev": true }, "p-map": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", "dev": true }, "rxjs": { "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", "dev": true, "requires": { "tslib": "^1.9.0" @@ -27585,16 +30391,22 @@ }, "tslib": { "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "dev": true } } }, "listr-silent-renderer": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz", + "integrity": "sha1-kktaN1cVN3C/Go4/v3S4u/P5JC4=", "dev": true }, "listr-update-renderer": { "version": "0.5.0", + "resolved": "https://registry.npmjs.org/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz", + "integrity": "sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==", "dev": true, "requires": { "chalk": "^1.1.3", @@ -27609,14 +30421,20 @@ "dependencies": { "ansi-regex": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", "dev": true }, "ansi-styles": { "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", "dev": true }, "chalk": { "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", "dev": true, "requires": { "ansi-styles": "^2.2.1", @@ -27628,10 +30446,14 @@ }, "escape-string-regexp": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "dev": true }, "figures": { "version": "1.7.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", + "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", "dev": true, "requires": { "escape-string-regexp": "^1.0.5", @@ -27640,6 +30462,8 @@ }, "log-symbols": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-1.0.2.tgz", + "integrity": "sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=", "dev": true, "requires": { "chalk": "^1.0.0" @@ -27647,6 +30471,8 @@ }, "strip-ansi": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "dev": true, "requires": { "ansi-regex": "^2.0.0" @@ -27654,12 +30480,16 @@ }, "supports-color": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", "dev": true } } }, "listr-verbose-renderer": { "version": "0.5.0", + "resolved": "https://registry.npmjs.org/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz", + "integrity": "sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==", "dev": true, "requires": { "chalk": "^2.4.1", @@ -27670,6 +30500,8 @@ "dependencies": { "ansi-styles": { "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { "color-convert": "^1.9.0" @@ -27677,6 +30509,8 @@ }, "chalk": { "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "requires": { "ansi-styles": "^3.2.1", @@ -27686,6 +30520,8 @@ }, "cli-cursor": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", "dev": true, "requires": { "restore-cursor": "^2.0.0" @@ -27693,6 +30529,8 @@ }, "color-convert": { "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "requires": { "color-name": "1.1.3" @@ -27700,14 +30538,20 @@ }, "color-name": { "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", "dev": true }, "escape-string-regexp": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "dev": true }, "figures": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", "dev": true, "requires": { "escape-string-regexp": "^1.0.5" @@ -27715,14 +30559,20 @@ }, "has-flag": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", "dev": true }, "mimic-fn": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", "dev": true }, "onetime": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", "dev": true, "requires": { "mimic-fn": "^1.0.0" @@ -27730,6 +30580,8 @@ }, "restore-cursor": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", "dev": true, "requires": { "onetime": "^2.0.0", @@ -27738,6 +30590,8 @@ }, "supports-color": { "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "requires": { "has-flag": "^3.0.0" @@ -27747,6 +30601,8 @@ }, "load-json-file": { "version": "6.2.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-6.2.0.tgz", + "integrity": "sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==", "dev": true, "requires": { "graceful-fs": "^4.1.15", @@ -27757,12 +30613,16 @@ "dependencies": { "type-fest": { "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", "dev": true } } }, "locate-path": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "requires": { "p-locate": "^4.1.0" @@ -27770,65 +30630,97 @@ }, "lodash": { "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, "lodash._reinterpolate": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=", "dev": true }, "lodash.get": { "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", + "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=", "dev": true }, "lodash.includes": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz", + "integrity": "sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8=", "dev": true }, "lodash.isboolean": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=", "dev": true }, "lodash.isinteger": { "version": "4.0.4", + "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", + "integrity": "sha1-YZwK89A/iwTDH1iChAt3sRzWg0M=", "dev": true }, "lodash.ismatch": { "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz", + "integrity": "sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc=", "dev": true }, "lodash.isnumber": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=", "dev": true }, "lodash.isplainobject": { "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=", "dev": true }, "lodash.isstring": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=", "dev": true }, "lodash.memoize": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", "dev": true }, "lodash.merge": { "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true }, "lodash.once": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", + "integrity": "sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=", "dev": true }, "lodash.set": { "version": "4.3.2", + "resolved": "https://registry.npmjs.org/lodash.set/-/lodash.set-4.3.2.tgz", + "integrity": "sha1-2HV7HagH3eJIFrDWqEvqGnYjCyM=", "dev": true }, "lodash.sortby": { - "version": "4.7.0" + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" }, "lodash.template": { "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", + "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", "dev": true, "requires": { "lodash._reinterpolate": "^3.0.0", @@ -27837,6 +30729,8 @@ }, "lodash.templatesettings": { "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", + "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", "dev": true, "requires": { "lodash._reinterpolate": "^3.0.0" @@ -27844,6 +30738,8 @@ }, "log-symbols": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", "dev": true, "requires": { "chalk": "^4.1.0", @@ -27852,6 +30748,8 @@ }, "log-update": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-2.3.0.tgz", + "integrity": "sha1-iDKP19HOeTiykoN0bwsbwSayRwg=", "dev": true, "requires": { "ansi-escapes": "^3.0.0", @@ -27861,14 +30759,20 @@ "dependencies": { "ansi-escapes": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", "dev": true }, "ansi-regex": { - "version": "3.0.0", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", "dev": true }, "cli-cursor": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", "dev": true, "requires": { "restore-cursor": "^2.0.0" @@ -27876,14 +30780,20 @@ }, "is-fullwidth-code-point": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", "dev": true }, "mimic-fn": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", "dev": true }, "onetime": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", "dev": true, "requires": { "mimic-fn": "^1.0.0" @@ -27891,6 +30801,8 @@ }, "restore-cursor": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", "dev": true, "requires": { "onetime": "^2.0.0", @@ -27899,6 +30811,8 @@ }, "string-width": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", "dev": true, "requires": { "is-fullwidth-code-point": "^2.0.0", @@ -27907,6 +30821,8 @@ }, "strip-ansi": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", "dev": true, "requires": { "ansi-regex": "^3.0.0" @@ -27914,6 +30830,8 @@ }, "wrap-ansi": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz", + "integrity": "sha1-KIoE2H7aXChuBg3+jxNc6NAH+Lo=", "dev": true, "requires": { "string-width": "^2.1.1", @@ -27949,13 +30867,19 @@ } }, "loglevel": { - "version": "1.8.0" + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz", + "integrity": "sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==" }, "long": { - "version": "4.0.0" + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", + "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==" }, "loose-envify": { "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "dev": true, "requires": { "js-tokens": "^3.0.0 || ^4.0.0" @@ -27963,6 +30887,8 @@ }, "lower-case": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", "dev": true, "requires": { "tslib": "^2.0.3" @@ -27970,6 +30896,8 @@ }, "lower-case-first": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case-first/-/lower-case-first-2.0.2.tgz", + "integrity": "sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==", "dev": true, "requires": { "tslib": "^2.0.3" @@ -27977,16 +30905,22 @@ }, "lowercase-keys": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", "dev": true }, "lru-cache": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "requires": { "yallist": "^4.0.0" } }, "make-dir": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, "requires": { "semver": "^6.0.0" @@ -27994,16 +30928,22 @@ "dependencies": { "semver": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } } }, "make-error": { "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", "dev": true }, "make-fetch-happen": { "version": "8.0.14", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-8.0.14.tgz", + "integrity": "sha512-EsS89h6l4vbfJEtBZnENTOFk8mCRpY5ru36Xe5bcX1KYIli2mkSHqoFsp5O1wMDvTJJzxe/4THpCTtygjeeGWQ==", "requires": { "agentkeepalive": "^4.1.3", "cacache": "^15.0.5", @@ -28023,10 +30963,14 @@ }, "dependencies": { "@tootallnate/once": { - "version": "1.1.2" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" }, "http-proxy-agent": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", "requires": { "@tootallnate/once": "1", "agent-base": "6", @@ -28037,6 +30981,8 @@ }, "makeerror": { "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, "requires": { "tmpl": "1.0.5" @@ -28044,14 +30990,20 @@ }, "map-cache": { "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", "dev": true }, "map-obj": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", "dev": true }, "map-visit": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", "dev": true, "requires": { "object-visit": "^1.0.0" @@ -28059,10 +31011,14 @@ }, "media-typer": { "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", "dev": true }, "meow": { "version": "8.1.2", + "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", + "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", "dev": true, "requires": { "@types/minimist": "^1.2.0", @@ -28080,10 +31036,14 @@ "dependencies": { "hosted-git-info": { "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", "dev": true }, "read-pkg": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", "dev": true, "requires": { "@types/normalize-package-data": "^2.4.0", @@ -28094,6 +31054,8 @@ "dependencies": { "normalize-package-data": { "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, "requires": { "hosted-git-info": "^2.1.4", @@ -28104,12 +31066,16 @@ }, "type-fest": { "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", "dev": true } } }, "read-pkg-up": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", "dev": true, "requires": { "find-up": "^4.1.0", @@ -28119,81 +31085,123 @@ "dependencies": { "type-fest": { "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", "dev": true } } }, "semver": { "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true }, "type-fest": { "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", "dev": true } } }, "merge-descriptors": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", "dev": true }, "merge-stream": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "dev": true }, "merge2": { "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true }, + "meros": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/meros/-/meros-1.2.0.tgz", + "integrity": "sha512-3QRZIS707pZQnijHdhbttXRWwrHhZJ/gzolneoxKVz9N/xmsvY/7Ls8lpnI9gxbgxjcHsAVEW3mgwiZCo6kkJQ==", + "dev": true, + "requires": {} + }, "methods": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", "dev": true }, "micromatch": { - "version": "4.0.4", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "requires": { - "braces": "^3.0.1", - "picomatch": "^2.2.3" + "braces": "^3.0.2", + "picomatch": "^2.3.1" } }, "mime": { "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "dev": true }, "mime-db": { - "version": "1.51.0" + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" }, "mime-types": { - "version": "2.1.34", + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "requires": { - "mime-db": "1.51.0" + "mime-db": "1.52.0" } }, "mimic-fn": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true }, "mimic-response": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", "dev": true }, "min-indent": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", "dev": true }, "minimatch": { - "version": "3.0.4", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-4.2.1.tgz", + "integrity": "sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g==", + "dev": true, "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { - "version": "1.2.5", + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", "dev": true }, "minimist-options": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", "dev": true, "requires": { "arrify": "^1.0.1", @@ -28203,18 +31211,24 @@ }, "minipass": { "version": "3.1.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz", + "integrity": "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==", "requires": { "yallist": "^4.0.0" } }, "minipass-collect": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", "requires": { "minipass": "^3.0.0" } }, "minipass-fetch": { "version": "1.4.1", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz", + "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==", "requires": { "encoding": "^0.1.12", "minipass": "^3.1.0", @@ -28224,12 +31238,16 @@ }, "minipass-flush": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", "requires": { "minipass": "^3.0.0" } }, "minipass-json-stream": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", + "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==", "dev": true, "requires": { "jsonparse": "^1.3.1", @@ -28238,18 +31256,24 @@ }, "minipass-pipeline": { "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", "requires": { "minipass": "^3.0.0" } }, "minipass-sized": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", "requires": { "minipass": "^3.0.0" } }, "minizlib": { "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", "requires": { "minipass": "^3.0.0", "yallist": "^4.0.0" @@ -28257,33 +31281,23 @@ }, "mixin-deep": { "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", "dev": true, "requires": { "for-in": "^1.0.2", "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "is-plain-object": { - "version": "2.0.4", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - } } }, "mkdirp": { - "version": "1.0.4" + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" }, "mkdirp-infer-owner": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mkdirp-infer-owner/-/mkdirp-infer-owner-2.0.0.tgz", + "integrity": "sha512-sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw==", "dev": true, "requires": { "chownr": "^2.0.0", @@ -28293,6 +31307,8 @@ }, "mocked-env": { "version": "1.3.5", + "resolved": "https://registry.npmjs.org/mocked-env/-/mocked-env-1.3.5.tgz", + "integrity": "sha512-GyYY6ynVOdEoRlaGpaq8UYwdWkvrsU2xRme9B+WPSuJcNjh17+3QIxSYU6zwee0SbehhV6f06VZ4ahjG+9zdrA==", "dev": true, "requires": { "check-more-types": "2.24.0", @@ -28303,6 +31319,8 @@ "dependencies": { "debug": { "version": "4.3.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", + "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", "dev": true, "requires": { "ms": "2.1.2" @@ -28312,18 +31330,26 @@ }, "modify-values": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz", + "integrity": "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==", "dev": true }, "moment": { - "version": "2.29.1", + "version": "2.29.2", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.2.tgz", + "integrity": "sha512-UgzG4rvxYpN15jgCmVJwac49h9ly9NurikMWGPdVxm8GZD6XjkKPxDTjQQ43gtGgnV3X0cAyWDdP2Wexoquifg==", "dev": true, "optional": true }, "ms": { - "version": "2.1.2" + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "multimatch": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-5.0.0.tgz", + "integrity": "sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==", "dev": true, "requires": { "@types/minimatch": "^3.0.3", @@ -28335,16 +31361,31 @@ "dependencies": { "arrify": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", "dev": true + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } } } }, "mute-stream": { "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", "dev": true }, "mv": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz", + "integrity": "sha1-rmzg1vbV4KT32JN5jQPB6pVZtqI=", "dev": true, "optional": true, "requires": { @@ -28355,6 +31396,8 @@ "dependencies": { "glob": { "version": "6.0.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", + "integrity": "sha1-DwiGD2oVUSey+t1PnOJLGqtuTSI=", "dev": true, "optional": true, "requires": { @@ -28365,16 +31408,30 @@ "path-is-absolute": "^1.0.0" } }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "optional": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, "mkdirp": { - "version": "0.5.5", + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dev": true, "optional": true, "requires": { - "minimist": "^1.2.5" + "minimist": "^1.2.6" } }, "rimraf": { "version": "2.4.5", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz", + "integrity": "sha1-7nEM5dk6j9uFb7Xqj/Di11k0sto=", "dev": true, "optional": true, "requires": { @@ -28385,11 +31442,15 @@ }, "nan": { "version": "2.15.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", + "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==", "dev": true, "optional": true }, "nanomatch": { "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", "dev": true, "requires": { "arr-diff": "^4.0.0", @@ -28403,63 +31464,43 @@ "regex-not": "^1.0.0", "snapdragon": "^0.8.1", "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "2.0.2", - "dev": true, - "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - } - }, - "extend-shallow": { - "version": "3.0.2", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-extendable": { - "version": "1.0.1", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "is-plain-object": { - "version": "2.0.4", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - } } }, "natural-compare": { "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", "dev": true }, "ncp": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz", + "integrity": "sha1-GVoh1sRuNh0vsSgbo4uR6d9727M=", "dev": true, "optional": true }, "negotiator": { - "version": "0.6.2", + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", "dev": true }, "neo-async": { "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", "dev": true }, "nice-try": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", "dev": true }, "no-case": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", "dev": true, "requires": { "lower-case": "^2.0.2", @@ -28480,22 +31521,32 @@ }, "node-domexception": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", "dev": true }, "node-fetch": { "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", "requires": { "whatwg-url": "^5.0.0" }, "dependencies": { "tr46": { - "version": "0.0.3" + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=" }, "webidl-conversions": { - "version": "3.0.1" + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=" }, "whatwg-url": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=", "requires": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" @@ -28505,6 +31556,8 @@ }, "node-gyp": { "version": "5.1.1", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-5.1.1.tgz", + "integrity": "sha512-WH0WKGi+a4i4DUt2mHnvocex/xPLp9pYt5R6M2JdFB7pJ7Z34hveZ4nDTGTiLXCkitA9T8HFZjhinBCiVHYcWw==", "dev": true, "requires": { "env-paths": "^2.2.0", @@ -28522,10 +31575,14 @@ "dependencies": { "chownr": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", "dev": true }, "fs-minipass": { "version": "1.2.7", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", + "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", "dev": true, "requires": { "minipass": "^2.6.0" @@ -28533,6 +31590,8 @@ }, "minipass": { "version": "2.9.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", + "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", "dev": true, "requires": { "safe-buffer": "^5.1.2", @@ -28541,20 +31600,26 @@ }, "minizlib": { "version": "1.3.3", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz", + "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", "dev": true, "requires": { "minipass": "^2.9.0" } }, "mkdirp": { - "version": "0.5.5", + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dev": true, "requires": { - "minimist": "^1.2.5" + "minimist": "^1.2.6" } }, "rimraf": { "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", "dev": true, "requires": { "glob": "^7.1.3" @@ -28562,10 +31627,14 @@ }, "semver": { "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true }, "tar": { "version": "4.4.19", + "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.19.tgz", + "integrity": "sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==", "dev": true, "requires": { "chownr": "^1.1.4", @@ -28579,6 +31648,8 @@ }, "which": { "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, "requires": { "isexe": "^2.0.0" @@ -28586,16 +31657,22 @@ }, "yallist": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "dev": true } } }, "node-int64": { "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=", "dev": true }, "node-notifier": { "version": "8.0.2", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.2.tgz", + "integrity": "sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==", "dev": true, "optional": true, "requires": { @@ -28608,11 +31685,15 @@ } }, "node-releases": { - "version": "2.0.1", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.2.tgz", + "integrity": "sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==", "dev": true }, "nopt": { "version": "4.0.3", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz", + "integrity": "sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==", "dev": true, "requires": { "abbrev": "1", @@ -28621,6 +31702,8 @@ }, "normalize-package-data": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", "dev": true, "requires": { "hosted-git-info": "^4.0.1", @@ -28631,14 +31714,20 @@ }, "normalize-path": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true }, "normalize-url": { "version": "4.5.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz", + "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==", "dev": true }, "npm-bundled": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz", + "integrity": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==", "dev": true, "requires": { "npm-normalize-package-bin": "^1.0.1" @@ -28646,6 +31735,8 @@ }, "npm-install-checks": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-4.0.0.tgz", + "integrity": "sha512-09OmyDkNLYwqKPOnbI8exiOZU2GVVmQp7tgez2BPi5OZC8M82elDAps7sxC4l//uSUtotWqoEIDwjRvWH4qz8w==", "dev": true, "requires": { "semver": "^7.1.1" @@ -28653,6 +31744,8 @@ }, "npm-lifecycle": { "version": "3.1.5", + "resolved": "https://registry.npmjs.org/npm-lifecycle/-/npm-lifecycle-3.1.5.tgz", + "integrity": "sha512-lDLVkjfZmvmfvpvBzA4vzee9cn+Me4orq0QF8glbswJVEbIcSNWib7qGOffolysc3teCqbbPZZkzbr3GQZTL1g==", "dev": true, "requires": { "byline": "^5.0.0", @@ -28667,10 +31760,14 @@ "dependencies": { "resolve-from": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true }, "which": { "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, "requires": { "isexe": "^2.0.0" @@ -28680,10 +31777,14 @@ }, "npm-normalize-package-bin": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", + "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==", "dev": true }, "npm-package-arg": { "version": "8.1.5", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-8.1.5.tgz", + "integrity": "sha512-LhgZrg0n0VgvzVdSm1oiZworPbTxYHUJCgtsJW8mGvlDpxTM1vSJc3m5QZeUkhAHIzbz3VCHd/R4osi1L1Tg/Q==", "dev": true, "requires": { "hosted-git-info": "^4.0.1", @@ -28693,6 +31794,8 @@ }, "npm-packlist": { "version": "2.2.2", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-2.2.2.tgz", + "integrity": "sha512-Jt01acDvJRhJGthnUJVF/w6gumWOZxO7IkpY/lsX9//zqQgnF7OJaxgQXcerd4uQOLu7W5bkb4mChL9mdfm+Zg==", "dev": true, "requires": { "glob": "^7.1.6", @@ -28703,6 +31806,8 @@ }, "npm-pick-manifest": { "version": "6.1.1", + "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-6.1.1.tgz", + "integrity": "sha512-dBsdBtORT84S8V8UTad1WlUyKIY9iMsAmqxHbLdeEeBNMLQDlDWWra3wYUx9EBEIiG/YwAy0XyNHDd2goAsfuA==", "dev": true, "requires": { "npm-install-checks": "^4.0.0", @@ -28713,6 +31818,8 @@ }, "npm-registry-fetch": { "version": "9.0.0", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-9.0.0.tgz", + "integrity": "sha512-PuFYYtnQ8IyVl6ib9d3PepeehcUeHN9IO5N/iCRhyg9tStQcqGQBRVHmfmMWPDERU3KwZoHFvbJ4FPXPspvzbA==", "dev": true, "requires": { "@npmcli/ci-detect": "^1.0.0", @@ -28727,6 +31834,8 @@ }, "npm-run-path": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, "requires": { "path-key": "^3.0.0" @@ -28734,6 +31843,8 @@ }, "npmlog": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", + "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", "dev": true, "requires": { "are-we-there-yet": "~1.1.2", @@ -28744,26 +31855,38 @@ }, "nullthrows": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz", + "integrity": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==", "dev": true }, "number-is-nan": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", "dev": true }, "nwsapi": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", + "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==", "dev": true }, "oauth-sign": { "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", "dev": true }, "object-assign": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", "dev": true }, "object-copy": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", "dev": true, "requires": { "copy-descriptor": "^0.1.0", @@ -28773,6 +31896,8 @@ "dependencies": { "define-property": { "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "dev": true, "requires": { "is-descriptor": "^0.1.0" @@ -28780,6 +31905,8 @@ }, "is-accessor-descriptor": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", "dev": true, "requires": { "kind-of": "^3.0.2" @@ -28787,6 +31914,8 @@ }, "is-data-descriptor": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", "dev": true, "requires": { "kind-of": "^3.0.2" @@ -28794,6 +31923,8 @@ }, "is-descriptor": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "dev": true, "requires": { "is-accessor-descriptor": "^0.1.6", @@ -28803,12 +31934,16 @@ "dependencies": { "kind-of": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", "dev": true } } }, "kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -28817,20 +31952,28 @@ } }, "object-inspect": { - "version": "1.12.0" + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz", + "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==" }, "object-is": { "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.3" } }, "object-keys": { - "version": "1.1.1" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" }, "object-visit": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", "dev": true, "requires": { "isobject": "^3.0.0" @@ -28838,6 +31981,8 @@ }, "object.assign": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", "requires": { "call-bind": "^1.0.0", "define-properties": "^1.1.3", @@ -28847,6 +31992,8 @@ }, "object.getownpropertydescriptors": { "version": "2.1.3", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz", + "integrity": "sha512-VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw==", "dev": true, "requires": { "call-bind": "^1.0.2", @@ -28856,13 +32003,17 @@ }, "object.pick": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", "dev": true, "requires": { "isobject": "^3.0.1" } }, "on-finished": { - "version": "2.3.0", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dev": true, "requires": { "ee-first": "1.1.1" @@ -28870,12 +32021,16 @@ }, "once": { "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", "requires": { "wrappy": "1" } }, "one-time": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", + "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", "dev": true, "requires": { "fn.name": "1.x.x" @@ -28883,6 +32038,8 @@ }, "onetime": { "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, "requires": { "mimic-fn": "^2.1.0" @@ -28890,6 +32047,8 @@ }, "optimism": { "version": "0.16.1", + "resolved": "https://registry.npmjs.org/optimism/-/optimism-0.16.1.tgz", + "integrity": "sha512-64i+Uw3otrndfq5kaoGNoY7pvOhSsjFEN4bdEFh80MWVk/dbgJfMv7VFDeCT8LxNAlEVhQmdVEbfE7X2nWNIIg==", "dev": true, "requires": { "@wry/context": "^0.6.0", @@ -28898,6 +32057,8 @@ }, "optionator": { "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", "dev": true, "peer": true, "requires": { @@ -28911,6 +32072,8 @@ }, "ora": { "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", "dev": true, "requires": { "bl": "^4.1.0", @@ -28926,14 +32089,20 @@ }, "os-homedir": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", "dev": true }, "os-tmpdir": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", "dev": true }, "osenv": { "version": "0.1.5", + "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", + "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", "dev": true, "requires": { "os-homedir": "^1.0.0", @@ -28942,18 +32111,26 @@ }, "p-cancelable": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", + "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", "dev": true }, "p-each-series": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz", + "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==", "dev": true }, "p-finally": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", "dev": true }, "p-limit": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, "requires": { "yocto-queue": "^0.1.0" @@ -28961,6 +32138,8 @@ }, "p-locate": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "requires": { "p-limit": "^2.2.0" @@ -28968,6 +32147,8 @@ "dependencies": { "p-limit": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "requires": { "p-try": "^2.0.0" @@ -28977,20 +32158,28 @@ }, "p-map": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", "requires": { "aggregate-error": "^3.0.0" } }, "p-map-series": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map-series/-/p-map-series-2.1.0.tgz", + "integrity": "sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==", "dev": true }, "p-pipe": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-pipe/-/p-pipe-3.1.0.tgz", + "integrity": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==", "dev": true }, "p-queue": { "version": "6.6.2", + "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz", + "integrity": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==", "dev": true, "requires": { "eventemitter3": "^4.0.4", @@ -28999,10 +32188,14 @@ }, "p-reduce": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-2.1.0.tgz", + "integrity": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==", "dev": true }, "p-timeout": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", + "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", "dev": true, "requires": { "p-finally": "^1.0.0" @@ -29010,10 +32203,14 @@ }, "p-try": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, "p-waterfall": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/p-waterfall/-/p-waterfall-2.1.1.tgz", + "integrity": "sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==", "dev": true, "requires": { "p-reduce": "^2.0.0" @@ -29021,6 +32218,8 @@ }, "package-json": { "version": "6.5.0", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", + "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", "dev": true, "requires": { "got": "^9.6.0", @@ -29031,12 +32230,16 @@ "dependencies": { "semver": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } } }, "pacote": { "version": "11.3.5", + "resolved": "https://registry.npmjs.org/pacote/-/pacote-11.3.5.tgz", + "integrity": "sha512-fT375Yczn4zi+6Hkk2TBe1x1sP8FgFsEIZ2/iWaXY2r/NkhDJfxbcn5paz1+RTFCyNf+dPnaoBDJoAxXSU8Bkg==", "dev": true, "requires": { "@npmcli/git": "^2.1.0", @@ -29062,10 +32265,14 @@ "dependencies": { "@tootallnate/once": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", "dev": true }, "http-proxy-agent": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", "dev": true, "requires": { "@tootallnate/once": "1", @@ -29075,6 +32282,8 @@ }, "make-fetch-happen": { "version": "9.1.0", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", + "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", "dev": true, "requires": { "agentkeepalive": "^4.1.3", @@ -29097,6 +32306,8 @@ }, "npm-registry-fetch": { "version": "11.0.0", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-11.0.0.tgz", + "integrity": "sha512-jmlgSxoDNuhAtxUIG6pVwwtz840i994dL14FoNVZisrmZW5kWd63IUTNv1m/hyRSGSqWjCUp/YZlS1BJyNp9XA==", "dev": true, "requires": { "make-fetch-happen": "^9.0.1", @@ -29109,6 +32320,8 @@ }, "socks-proxy-agent": { "version": "6.1.1", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.1.1.tgz", + "integrity": "sha512-t8J0kG3csjA4g6FTbsMOWws+7R7vuRC8aQ/wy3/1OWmsgwA68zs/+cExQ0koSitUDXqhufF/YJr9wtNMZHw5Ew==", "dev": true, "requires": { "agent-base": "^6.0.2", @@ -29120,6 +32333,8 @@ }, "param-case": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", "dev": true, "requires": { "dot-case": "^3.0.4", @@ -29128,6 +32343,8 @@ }, "parent-module": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, "requires": { "callsites": "^3.0.0" @@ -29135,6 +32352,8 @@ }, "parse-filepath": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", + "integrity": "sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=", "dev": true, "requires": { "is-absolute": "^1.0.0", @@ -29144,6 +32363,8 @@ }, "parse-json": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, "requires": { "@babel/code-frame": "^7.0.0", @@ -29154,6 +32375,8 @@ }, "parse-path": { "version": "4.0.3", + "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-4.0.3.tgz", + "integrity": "sha512-9Cepbp2asKnWTJ9x2kpw6Fe8y9JDbqwahGCTvklzd/cEq5C5JC59x2Xb0Kx+x0QZ8bvNquGO8/BWP0cwBHzSAA==", "dev": true, "requires": { "is-ssh": "^1.3.0", @@ -29164,6 +32387,8 @@ }, "parse-url": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-6.0.0.tgz", + "integrity": "sha512-cYyojeX7yIIwuJzledIHeLUBVJ6COVLeT4eF+2P6aKVzwvgKQPndCBv3+yQ7pcWjqToYwaligxzSYNNmGoMAvw==", "dev": true, "requires": { "is-ssh": "^1.3.0", @@ -29174,20 +32399,28 @@ "dependencies": { "normalize-url": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", "dev": true } } }, "parse5": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", "dev": true }, "parseurl": { "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", "dev": true }, "pascal-case": { "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", "dev": true, "requires": { "no-case": "^3.0.4", @@ -29196,10 +32429,14 @@ }, "pascalcase": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", "dev": true }, "path-case": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", + "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", "dev": true, "requires": { "dot-case": "^3.0.4", @@ -29208,21 +32445,31 @@ }, "path-exists": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true }, "path-is-absolute": { - "version": "1.0.1" + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" }, "path-key": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true }, "path-parse": { "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, "path-root": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", + "integrity": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=", "dev": true, "requires": { "path-root-regex": "^0.1.0" @@ -29230,38 +32477,56 @@ }, "path-root-regex": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", + "integrity": "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=", "dev": true }, "path-to-regexp": { "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", "dev": true }, "path-type": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true }, "performance-now": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", "dev": true }, "picocolors": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", "dev": true }, "picomatch": { "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true }, "pify": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-5.0.0.tgz", + "integrity": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==", "dev": true }, "pirates": { - "version": "4.0.4", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", + "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", "dev": true }, "pkg-dir": { "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "requires": { "find-up": "^4.0.0" @@ -29269,15 +32534,21 @@ }, "posix-character-classes": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", "dev": true }, "prelude-ls": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, "peer": true }, "prepend-http": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", "dev": true }, "prettier": { @@ -29297,46 +32568,57 @@ }, "dependencies": { "ansi-styles": { - "version": "5.2.0" + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" }, "react-is": { - "version": "17.0.2" + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" } } }, "process-nextick-args": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", "dev": true }, - "progress": { - "version": "2.0.3", - "dev": true, - "peer": true - }, "promise": { "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", "dev": true, "requires": { "asap": "~2.0.3" } }, "promise-inflight": { - "version": "1.0.1" + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" }, "promise-retry": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", + "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", "requires": { "err-code": "^2.0.2", "retry": "^0.12.0" }, "dependencies": { "retry": { - "version": "0.12.0" + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=" } } }, "prompts": { "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, "requires": { "kleur": "^3.0.3", @@ -29345,6 +32627,8 @@ }, "promzard": { "version": "0.3.0", + "resolved": "https://registry.npmjs.org/promzard/-/promzard-0.3.0.tgz", + "integrity": "sha1-JqXW7ox97kyxIggwWs+5O6OCqe4=", "dev": true, "requires": { "read": "1" @@ -29352,6 +32636,8 @@ }, "prop-types": { "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", "dev": true, "requires": { "loose-envify": "^1.4.0", @@ -29361,14 +32647,20 @@ }, "propagate": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/propagate/-/propagate-2.0.1.tgz", + "integrity": "sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag==", "dev": true }, "proto-list": { "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=", "dev": true }, "protobufjs": { "version": "6.11.2", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.2.tgz", + "integrity": "sha512-4BQJoPooKJl2G9j3XftkIXjoC9C0Av2NOrWmbLWT1vH32GcSUHjM0Arra6UfTsVyfMAuFzaLucXn1sadxJydAw==", "dev": true, "requires": { "@protobufjs/aspromise": "^1.1.2", @@ -29387,17 +32679,23 @@ }, "dependencies": { "@types/node": { - "version": "17.0.8", + "version": "17.0.23", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.23.tgz", + "integrity": "sha512-UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw==", "dev": true } } }, "protocols": { "version": "1.4.8", + "resolved": "https://registry.npmjs.org/protocols/-/protocols-1.4.8.tgz", + "integrity": "sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg==", "dev": true }, "proxy-addr": { "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dev": true, "requires": { "forwarded": "0.2.0", @@ -29406,10 +32704,14 @@ }, "psl": { "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", "dev": true }, "pump": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", "dev": true, "requires": { "end-of-stream": "^1.1.0", @@ -29418,18 +32720,29 @@ }, "punycode": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "dev": true }, "q": { "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", "dev": true }, "qs": { - "version": "6.9.6", - "dev": true + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "dev": true, + "requires": { + "side-channel": "^1.0.4" + } }, "query-string": { "version": "6.14.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-6.14.1.tgz", + "integrity": "sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==", "dev": true, "requires": { "decode-uri-component": "^0.2.0", @@ -29440,32 +32753,44 @@ }, "queue-microtask": { "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true }, "quick-lru": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", "dev": true }, "ramda": { "version": "0.27.1", + "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.27.1.tgz", + "integrity": "sha512-PgIdVpn5y5Yns8vqb8FzBUEYn98V3xcPgawAkkgj0YJ0qDsnHCiNmZYfOGMgOvoB0eWFLpYbhxUR3mxfDIMvpw==", "dev": true }, "range-parser": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", "dev": true }, "raw-body": { - "version": "2.4.2", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", "dev": true, "requires": { - "bytes": "3.1.1", - "http-errors": "1.8.1", + "bytes": "3.1.2", + "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" } }, "rc": { "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", "dev": true, "requires": { "deep-extend": "^0.6.0", @@ -29476,16 +32801,22 @@ "dependencies": { "strip-json-comments": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", "dev": true } } }, "react-is": { "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", "dev": true }, "read": { "version": "1.0.7", + "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", + "integrity": "sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=", "dev": true, "requires": { "mute-stream": "~0.0.4" @@ -29493,10 +32824,14 @@ }, "read-cmd-shim": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-cmd-shim/-/read-cmd-shim-2.0.0.tgz", + "integrity": "sha512-HJpV9bQpkl6KwjxlJcBoqu9Ba0PQg8TqSNIOrulGt54a0uup0HtevreFHzYzkm0lpnleRdNBzXznKrgxglEHQw==", "dev": true }, "read-package-json": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-3.0.1.tgz", + "integrity": "sha512-aLcPqxovhJTVJcsnROuuzQvv6oziQx4zd3JvG0vGCL5MjTONUc4uJ90zCBC6R7W7oUKBNoR/F8pkyfVwlbxqng==", "dev": true, "requires": { "glob": "^7.1.1", @@ -29507,6 +32842,8 @@ }, "read-package-json-fast": { "version": "2.0.3", + "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-2.0.3.tgz", + "integrity": "sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==", "dev": true, "requires": { "json-parse-even-better-errors": "^2.3.0", @@ -29515,6 +32852,8 @@ }, "read-package-tree": { "version": "5.3.1", + "resolved": "https://registry.npmjs.org/read-package-tree/-/read-package-tree-5.3.1.tgz", + "integrity": "sha512-mLUDsD5JVtlZxjSlPPx1RETkNjjvQYuweKwNVt1Sn8kP5Jh44pvYuUHCp6xSVDZWbNxVxG5lyZJ921aJH61sTw==", "dev": true, "requires": { "read-package-json": "^2.0.0", @@ -29524,10 +32863,14 @@ "dependencies": { "hosted-git-info": { "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", "dev": true }, "normalize-package-data": { "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, "requires": { "hosted-git-info": "^2.1.4", @@ -29538,6 +32881,8 @@ }, "read-package-json": { "version": "2.1.2", + "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-2.1.2.tgz", + "integrity": "sha512-D1KmuLQr6ZSJS0tW8hf3WGpRlwszJOXZ3E8Yd/DNRaM5d+1wVRZdHlpGBLAuovjr28LbWvjpWkBHMxpRGGjzNA==", "dev": true, "requires": { "glob": "^7.1.1", @@ -29548,12 +32893,16 @@ }, "semver": { "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true } } }, "read-pkg": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", "dev": true, "requires": { "load-json-file": "^4.0.0", @@ -29563,10 +32912,14 @@ "dependencies": { "hosted-git-info": { "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", "dev": true }, "load-json-file": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", "dev": true, "requires": { "graceful-fs": "^4.1.2", @@ -29577,6 +32930,8 @@ }, "normalize-package-data": { "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, "requires": { "hosted-git-info": "^2.1.4", @@ -29587,6 +32942,8 @@ }, "parse-json": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", "dev": true, "requires": { "error-ex": "^1.3.1", @@ -29595,6 +32952,8 @@ }, "path-type": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", "dev": true, "requires": { "pify": "^3.0.0" @@ -29602,20 +32961,28 @@ }, "pify": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", "dev": true }, "semver": { "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true }, "strip-bom": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", "dev": true } } }, "read-pkg-up": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz", + "integrity": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=", "dev": true, "requires": { "find-up": "^2.0.0", @@ -29624,6 +32991,8 @@ "dependencies": { "find-up": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", "dev": true, "requires": { "locate-path": "^2.0.0" @@ -29631,6 +33000,8 @@ }, "locate-path": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", "dev": true, "requires": { "p-locate": "^2.0.0", @@ -29639,6 +33010,8 @@ }, "p-limit": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", "dev": true, "requires": { "p-try": "^1.0.0" @@ -29646,6 +33019,8 @@ }, "p-locate": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", "dev": true, "requires": { "p-limit": "^1.1.0" @@ -29653,16 +33028,22 @@ }, "p-try": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", "dev": true }, "path-exists": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", "dev": true } } }, "readable-stream": { "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "dev": true, "requires": { "inherits": "^2.0.3", @@ -29672,6 +33053,8 @@ }, "readdir-scoped-modules": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz", + "integrity": "sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==", "dev": true, "requires": { "debuglog": "^1.0.1", @@ -29682,6 +33065,8 @@ }, "readdirp": { "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dev": true, "requires": { "picomatch": "^2.2.1" @@ -29689,6 +33074,8 @@ }, "redent": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", "dev": true, "requires": { "indent-string": "^4.0.0", @@ -29697,48 +33084,32 @@ "dependencies": { "indent-string": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "dev": true } } }, "regenerator-runtime": { "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==", "dev": true }, "regex-not": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", "dev": true, "requires": { "extend-shallow": "^3.0.2", "safe-regex": "^1.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "3.0.2", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-extendable": { - "version": "1.0.1", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "is-plain-object": { - "version": "2.0.4", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - } } }, "regexp.prototype.flags": { - "version": "1.3.1", + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.1.tgz", + "integrity": "sha512-pMR7hBVUUGI7PMA37m2ofIdQCsomVnas+Jn5UPGAHQ+/LlwKm/aTLJHdasmHRzlfeZwHiAOaRSo2rbBDm3nNUQ==", "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.3" @@ -29746,10 +33117,14 @@ }, "regexpp": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", "dev": true }, "registry-auth-token": { "version": "4.2.1", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz", + "integrity": "sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==", "dev": true, "requires": { "rc": "^1.2.8" @@ -29757,6 +33132,8 @@ }, "registry-url": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", + "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", "dev": true, "requires": { "rc": "^1.2.8" @@ -29764,6 +33141,8 @@ }, "relay-runtime": { "version": "12.0.0", + "resolved": "https://registry.npmjs.org/relay-runtime/-/relay-runtime-12.0.0.tgz", + "integrity": "sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==", "dev": true, "requires": { "@babel/runtime": "^7.0.0", @@ -29773,30 +33152,44 @@ }, "remedial": { "version": "1.0.8", + "resolved": "https://registry.npmjs.org/remedial/-/remedial-1.0.8.tgz", + "integrity": "sha512-/62tYiOe6DzS5BqVsNpH/nkGlX45C/Sp6V+NtiN6JQNS1Viay7cWkazmRkrQrdFj2eshDe96SIQNIoMxqhzBOg==", "dev": true }, "remove-trailing-separator": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", "dev": true }, "remove-trailing-spaces": { "version": "1.0.8", + "resolved": "https://registry.npmjs.org/remove-trailing-spaces/-/remove-trailing-spaces-1.0.8.tgz", + "integrity": "sha512-O3vsMYfWighyFbTd8hk8VaSj9UAGENxAtX+//ugIst2RMk5e03h6RoIS+0ylsFxY1gvmPuAY/PO4It+gPEeySA==", "dev": true }, "repeat-element": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", "dev": true }, "repeat-string": { "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", "dev": true }, "replaceall": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/replaceall/-/replaceall-0.1.6.tgz", + "integrity": "sha1-gdgax663LX9cSUKt8ml6MiBojY4=", "dev": true }, "request": { "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", "dev": true, "requires": { "aws-sign2": "~0.7.0", @@ -29823,6 +33216,8 @@ "dependencies": { "form-data": { "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", "dev": true, "requires": { "asynckit": "^0.4.0", @@ -29831,11 +33226,15 @@ } }, "qs": { - "version": "6.5.2", + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", "dev": true }, "tough-cookie": { "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", "dev": true, "requires": { "psl": "^1.1.28", @@ -29844,29 +33243,39 @@ }, "uuid": { "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", "dev": true } } }, "require-directory": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", "dev": true }, "require-main-filename": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", "dev": true }, "resolve": { - "version": "1.21.0", + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", + "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", "dev": true, "requires": { - "is-core-module": "^2.8.0", + "is-core-module": "^2.8.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" } }, "resolve-cwd": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "dev": true, "requires": { "resolve-from": "^5.0.0" @@ -29874,18 +33283,26 @@ }, "resolve-from": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true }, "resolve-url": { "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", "dev": true }, "resolve.exports": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz", + "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==", "dev": true }, "responselike": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", "dev": true, "requires": { "lowercase-keys": "^1.0.0" @@ -29893,6 +33310,8 @@ }, "restore-cursor": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dev": true, "requires": { "onetime": "^5.1.0", @@ -29901,57 +33320,81 @@ }, "ret": { "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", "dev": true }, "retry": { - "version": "0.13.1" + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" }, "reusify": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true }, "rfdc": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", + "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", "dev": true }, "rimraf": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "requires": { "glob": "^7.1.3" } }, "rsvp": { "version": "4.8.5", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", "dev": true }, "run-async": { "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", "dev": true }, "run-parallel": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, "requires": { "queue-microtask": "^1.2.2" } }, "rxjs": { - "version": "7.5.1", + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.5.tgz", + "integrity": "sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==", "dev": true, "requires": { "tslib": "^2.1.0" } }, "safe-buffer": { - "version": "5.2.1" + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" }, "safe-json-stringify": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz", + "integrity": "sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==", "dev": true, "optional": true }, "safe-regex": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", "dev": true, "requires": { "ret": "~0.1.10" @@ -29965,10 +33408,14 @@ }, "safer-buffer": { "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", "devOptional": true }, "sane": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", + "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", "dev": true, "requires": { "@cnakazawa/watch": "^1.0.3", @@ -29984,6 +33431,8 @@ "dependencies": { "anymatch": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", "dev": true, "requires": { "micromatch": "^3.1.4", @@ -29992,6 +33441,8 @@ }, "braces": { "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "dev": true, "requires": { "arr-flatten": "^1.1.0", @@ -30004,10 +33455,23 @@ "snapdragon-node": "^2.0.1", "split-string": "^3.0.2", "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } } }, "cross-spawn": { "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", "dev": true, "requires": { "nice-try": "^1.0.4", @@ -30017,16 +33481,10 @@ "which": "^1.2.9" } }, - "define-property": { - "version": "2.0.2", - "dev": true, - "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - } - }, "execa": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", "dev": true, "requires": { "cross-spawn": "^6.0.0", @@ -30040,30 +33498,46 @@ }, "fill-range": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", "dev": true, "requires": { "extend-shallow": "^2.0.1", "is-number": "^3.0.0", "repeat-string": "^1.6.1", "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } } }, "get-stream": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", "dev": true, "requires": { "pump": "^3.0.0" } }, "is-extendable": { - "version": "1.0.1", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true }, "is-number": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", "dev": true, "requires": { "kind-of": "^3.0.2" @@ -30071,6 +33545,8 @@ "dependencies": { "kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -30078,19 +33554,16 @@ } } }, - "is-plain-object": { - "version": "2.0.4", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, "is-stream": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", "dev": true }, "micromatch": { "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "dev": true, "requires": { "arr-diff": "^4.0.0", @@ -30106,20 +33579,12 @@ "regex-not": "^1.0.0", "snapdragon": "^0.8.1", "to-regex": "^3.0.2" - }, - "dependencies": { - "extend-shallow": { - "version": "3.0.2", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - } } }, "normalize-path": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", "dev": true, "requires": { "remove-trailing-separator": "^1.0.1" @@ -30127,6 +33592,8 @@ }, "npm-run-path": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", "dev": true, "requires": { "path-key": "^2.0.0" @@ -30134,14 +33601,20 @@ }, "path-key": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", "dev": true }, "semver": { "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true }, "shebang-command": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", "dev": true, "requires": { "shebang-regex": "^1.0.0" @@ -30149,10 +33622,14 @@ }, "shebang-regex": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", "dev": true }, "to-regex-range": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", "dev": true, "requires": { "is-number": "^3.0.0", @@ -30161,6 +33638,8 @@ }, "which": { "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, "requires": { "isexe": "^2.0.0" @@ -30170,6 +33649,8 @@ }, "saxes": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", "dev": true, "requires": { "xmlchars": "^2.2.0" @@ -30177,16 +33658,29 @@ }, "scuid": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/scuid/-/scuid-1.1.0.tgz", + "integrity": "sha512-MuCAyrGZcTLfQoH2XoBlQ8C6bzwN88XT/0slOGz0pn8+gIP85BOAfYa44ZXQUTOwRwPU0QvgU+V+OSajl/59Xg==", "dev": true }, "semver": { - "version": "7.3.5", + "version": "7.3.6", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.6.tgz", + "integrity": "sha512-HZWqcgwLsjaX1HBD31msI/rXktuIhS+lWvdE4kN9z+8IVT4Itc7vqU2WvYsyD6/sjYCt4dEKH/m1M3dwI9CC5w==", "requires": { - "lru-cache": "^6.0.0" + "lru-cache": "^7.4.0" + }, + "dependencies": { + "lru-cache": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.8.0.tgz", + "integrity": "sha512-AmXqneQZL3KZMIgBpaPTeI6pfwh+xQ2vutMsyqOu1TBdEXFZgpG/80wuJ531w2ZN7TI0/oc8CPxzh/DKQudZqg==" + } } }, "send": { "version": "0.17.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.2.tgz", + "integrity": "sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==", "dev": true, "requires": { "debug": "2.6.9", @@ -30206,6 +33700,8 @@ "dependencies": { "debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "requires": { "ms": "2.0.0" @@ -30213,18 +33709,58 @@ "dependencies": { "ms": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true } } }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "dev": true + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "dev": true + }, + "http-errors": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" + } + }, "ms": { "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, + "requires": { + "ee-first": "1.1.1" + } } } }, "sentence-case": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", + "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", "dev": true, "requires": { "no-case": "^3.0.4", @@ -30234,6 +33770,8 @@ }, "serve-static": { "version": "1.14.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.2.tgz", + "integrity": "sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==", "dev": true, "requires": { "encodeurl": "~1.0.2", @@ -30244,18 +33782,64 @@ }, "set-blocking": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", "dev": true }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, "setimmediate": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", "dev": true }, "setprototypeof": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", "dev": true }, "sha.js": { "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", "requires": { "inherits": "^2.0.1", "safe-buffer": "^5.0.1" @@ -30263,6 +33847,8 @@ }, "shallow-clone": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", "dev": true, "requires": { "kind-of": "^6.0.2" @@ -30270,6 +33856,8 @@ }, "shebang-command": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "requires": { "shebang-regex": "^3.0.0" @@ -30277,15 +33865,21 @@ }, "shebang-regex": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true }, "shellwords": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", "dev": true, "optional": true }, "side-channel": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", "requires": { "call-bind": "^1.0.0", "get-intrinsic": "^1.0.2", @@ -30293,15 +33887,21 @@ } }, "signal-exit": { - "version": "3.0.6", + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, "signedsource": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/signedsource/-/signedsource-1.0.0.tgz", + "integrity": "sha1-HdrOSYF5j5O9gzlzgD2A1S6TrWo=", "dev": true }, "simple-swizzle": { "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", "dev": true, "requires": { "is-arrayish": "^0.3.1" @@ -30309,31 +33909,45 @@ "dependencies": { "is-arrayish": { "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", "dev": true } } }, "sisteransi": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", "dev": true }, "slash": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true }, "slice-ansi": { "version": "0.0.4", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz", + "integrity": "sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=", "dev": true }, "slide": { "version": "1.1.6", + "resolved": "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz", + "integrity": "sha1-VusCfWW00tzmyy4tMsTUr8nh1wc=", "dev": true }, "smart-buffer": { - "version": "4.2.0" + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" }, "snake-case": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", "dev": true, "requires": { "dot-case": "^3.0.4", @@ -30342,6 +33956,8 @@ }, "snapdragon": { "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", "dev": true, "requires": { "base": "^0.11.1", @@ -30356,6 +33972,8 @@ "dependencies": { "debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "requires": { "ms": "2.0.0" @@ -30363,13 +33981,26 @@ }, "define-property": { "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "dev": true, "requires": { "is-descriptor": "^0.1.0" } }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, "is-accessor-descriptor": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", "dev": true, "requires": { "kind-of": "^3.0.2" @@ -30377,6 +34008,8 @@ "dependencies": { "kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -30386,6 +34019,8 @@ }, "is-data-descriptor": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", "dev": true, "requires": { "kind-of": "^3.0.2" @@ -30393,6 +34028,8 @@ "dependencies": { "kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -30402,6 +34039,8 @@ }, "is-descriptor": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "dev": true, "requires": { "is-accessor-descriptor": "^0.1.6", @@ -30409,27 +34048,52 @@ "kind-of": "^5.0.0" } }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + }, "kind-of": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", "dev": true }, "ms": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true } } }, "snapdragon-node": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", "dev": true, "requires": { "define-property": "^1.0.0", "isobject": "^3.0.0", "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + } } }, "snapdragon-util": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", "dev": true, "requires": { "kind-of": "^3.2.0" @@ -30437,6 +34101,8 @@ "dependencies": { "kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -30445,14 +34111,18 @@ } }, "socks": { - "version": "2.6.1", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.6.2.tgz", + "integrity": "sha512-zDZhHhZRY9PxRruRMR7kMhnf3I8hDs4S3f9RecfnGxvcBHQcKcIH/oUcEWffsfl1XxdYlA7nnlGbbTvPz9D8gA==", "requires": { "ip": "^1.1.5", - "smart-buffer": "^4.1.0" + "smart-buffer": "^4.2.0" } }, "socks-proxy-agent": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-5.0.1.tgz", + "integrity": "sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==", "requires": { "agent-base": "^6.0.2", "debug": "4", @@ -30461,6 +34131,8 @@ }, "sort-keys": { "version": "4.2.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-4.2.0.tgz", + "integrity": "sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==", "dev": true, "requires": { "is-plain-obj": "^2.0.0" @@ -30468,16 +34140,22 @@ "dependencies": { "is-plain-obj": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", "dev": true } } }, "source-map": { "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", "dev": true }, "source-map-resolve": { "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", "dev": true, "requires": { "atob": "^2.1.2", @@ -30489,6 +34167,8 @@ }, "source-map-support": { "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, "requires": { "buffer-from": "^1.0.0", @@ -30497,16 +34177,22 @@ "dependencies": { "source-map": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true } } }, "source-map-url": { "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", "dev": true }, "spdx-correct": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", "dev": true, "requires": { "spdx-expression-parse": "^3.0.0", @@ -30515,10 +34201,14 @@ }, "spdx-exceptions": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", "dev": true }, "spdx-expression-parse": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, "requires": { "spdx-exceptions": "^2.1.0", @@ -30527,10 +34217,14 @@ }, "spdx-license-ids": { "version": "3.0.11", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", + "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==", "dev": true }, "split": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", + "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", "dev": true, "requires": { "through": "2" @@ -30538,41 +34232,23 @@ }, "split-on-first": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz", + "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==", "dev": true }, "split-string": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", "dev": true, "requires": { "extend-shallow": "^3.0.0" - }, - "dependencies": { - "extend-shallow": { - "version": "3.0.2", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-extendable": { - "version": "1.0.1", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "is-plain-object": { - "version": "2.0.4", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - } } }, "split2": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz", + "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", "dev": true, "requires": { "readable-stream": "^3.0.0" @@ -30580,6 +34256,8 @@ }, "sponge-case": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sponge-case/-/sponge-case-1.0.1.tgz", + "integrity": "sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==", "dev": true, "requires": { "tslib": "^2.0.3" @@ -30587,10 +34265,14 @@ }, "sprintf-js": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", "dev": true }, "sshpk": { - "version": "1.16.1", + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", + "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", "dev": true, "requires": { "asn1": "~0.2.3", @@ -30606,16 +34288,22 @@ }, "ssri": { "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", "requires": { "minipass": "^3.1.1" } }, "stack-trace": { "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=", "dev": true }, "stack-utils": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", + "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", "dev": true, "requires": { "escape-string-regexp": "^2.0.0" @@ -30623,12 +34311,16 @@ "dependencies": { "escape-string-regexp": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "dev": true } } }, "static-extend": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", "dev": true, "requires": { "define-property": "^0.2.5", @@ -30637,6 +34329,8 @@ "dependencies": { "define-property": { "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "dev": true, "requires": { "is-descriptor": "^0.1.0" @@ -30644,6 +34338,8 @@ }, "is-accessor-descriptor": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", "dev": true, "requires": { "kind-of": "^3.0.2" @@ -30651,6 +34347,8 @@ "dependencies": { "kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -30660,6 +34358,8 @@ }, "is-data-descriptor": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", "dev": true, "requires": { "kind-of": "^3.0.2" @@ -30667,6 +34367,8 @@ "dependencies": { "kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -30676,6 +34378,8 @@ }, "is-descriptor": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "dev": true, "requires": { "is-accessor-descriptor": "^0.1.6", @@ -30685,12 +34389,16 @@ }, "kind-of": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", "dev": true } } }, "statuses": { "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", "dev": true }, "streamroller": { @@ -30719,10 +34427,14 @@ }, "strict-uri-encode": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz", + "integrity": "sha1-ucczDHBChi9rFC3CdLvMWGbONUY=", "dev": true }, "string_decoder": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", "dev": true, "requires": { "safe-buffer": "~5.2.0" @@ -30730,10 +34442,14 @@ }, "string-env-interpolation": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/string-env-interpolation/-/string-env-interpolation-1.0.1.tgz", + "integrity": "sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg==", "dev": true }, "string-length": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", "dev": true, "requires": { "char-regex": "^1.0.2", @@ -30742,6 +34458,8 @@ }, "string-width": { "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "requires": { "emoji-regex": "^8.0.0", @@ -30751,6 +34469,8 @@ }, "string.prototype.trimend": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", + "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.3" @@ -30758,6 +34478,8 @@ }, "string.prototype.trimstart": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", + "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.3" @@ -30765,6 +34487,8 @@ }, "strip-ansi": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "requires": { "ansi-regex": "^5.0.1" @@ -30772,18 +34496,26 @@ }, "strip-bom": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", "dev": true }, "strip-eof": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", "dev": true }, "strip-final-newline": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "dev": true }, "strip-indent": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", "dev": true, "requires": { "min-indent": "^1.0.0" @@ -30791,10 +34523,14 @@ }, "strip-json-comments": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true }, "strong-log-transformer": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz", + "integrity": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==", "dev": true, "requires": { "duplexer": "^0.1.1", @@ -30804,6 +34540,8 @@ }, "subscriptions-transport-ws": { "version": "0.11.0", + "resolved": "https://registry.npmjs.org/subscriptions-transport-ws/-/subscriptions-transport-ws-0.11.0.tgz", + "integrity": "sha512-8D4C6DIH5tGiAIpp5I0wD/xRlNiZAPGHygzCe7VzyzUoxHtawzjNAY9SUTXU05/EY2NMY9/9GF0ycizkXr1CWQ==", "dev": true, "requires": { "backo2": "^1.0.2", @@ -30815,14 +34553,20 @@ "dependencies": { "eventemitter3": { "version": "3.1.2", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz", + "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==", "dev": true }, "symbol-observable": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", + "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==", "dev": true }, "ws": { - "version": "7.5.6", + "version": "7.5.7", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.7.tgz", + "integrity": "sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A==", "dev": true, "requires": {} } @@ -30830,12 +34574,16 @@ }, "supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "requires": { "has-flag": "^4.0.0" } }, "supports-hyperlinks": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz", + "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==", "dev": true, "requires": { "has-flag": "^4.0.0", @@ -30844,10 +34592,14 @@ }, "supports-preserve-symlinks-flag": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true }, "swap-case": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/swap-case/-/swap-case-2.0.2.tgz", + "integrity": "sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==", "dev": true, "requires": { "tslib": "^2.0.3" @@ -30855,14 +34607,20 @@ }, "symbol-observable": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz", + "integrity": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==", "dev": true }, "symbol-tree": { "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", "dev": true }, "sync-fetch": { "version": "0.3.1", + "resolved": "https://registry.npmjs.org/sync-fetch/-/sync-fetch-0.3.1.tgz", + "integrity": "sha512-xj5qiCDap/03kpci5a+qc5wSJjc8ZSixgG2EUmH1B8Ea2sfWclQA7eH40hiHPCtkCn6MCk4Wb+dqcXdCy2PP3g==", "dev": true, "requires": { "buffer": "^5.7.0", @@ -30871,6 +34629,8 @@ }, "tar": { "version": "6.1.11", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", + "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", "requires": { "chownr": "^2.0.0", "fs-minipass": "^2.0.0", @@ -30882,10 +34642,14 @@ }, "temp-dir": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", + "integrity": "sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=", "dev": true }, "temp-write": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/temp-write/-/temp-write-4.0.0.tgz", + "integrity": "sha512-HIeWmj77uOOHb0QX7siN3OtwV3CTntquin6TNVg6SHOqCP3hYKmox90eeFOGaY1MqJ9WYDDjkyZrW6qS5AWpbw==", "dev": true, "requires": { "graceful-fs": "^4.1.15", @@ -30897,12 +34661,16 @@ "dependencies": { "uuid": { "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", "dev": true } } }, "terminal-link": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", "dev": true, "requires": { "ansi-escapes": "^4.2.1", @@ -30911,36 +34679,61 @@ }, "test-exclude": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", "dev": true, "requires": { "@istanbuljs/schema": "^0.1.2", "glob": "^7.1.4", "minimatch": "^3.0.4" + }, + "dependencies": { + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + } } }, "text-extensions": { "version": "1.9.0", + "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz", + "integrity": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==", "dev": true }, "text-hex": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", + "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==", "dev": true }, "text-table": { "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", "dev": true, "peer": true }, "throat": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz", + "integrity": "sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==", "dev": true }, "through": { "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", "dev": true }, "through2": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", + "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", "dev": true, "requires": { "readable-stream": "3" @@ -30948,6 +34741,8 @@ }, "title-case": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/title-case/-/title-case-3.0.3.tgz", + "integrity": "sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==", "dev": true, "requires": { "tslib": "^2.0.3" @@ -30955,6 +34750,8 @@ }, "tmp": { "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", "dev": true, "requires": { "os-tmpdir": "~1.0.2" @@ -30962,14 +34759,20 @@ }, "tmpl": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "dev": true }, "to-fast-properties": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", "dev": true }, "to-object-path": { "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", "dev": true, "requires": { "kind-of": "^3.0.2" @@ -30977,6 +34780,8 @@ "dependencies": { "kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -30986,69 +34791,41 @@ }, "to-readable-stream": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", + "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", "dev": true }, "to-regex": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", "dev": true, "requires": { "define-property": "^2.0.2", "extend-shallow": "^3.0.2", "regex-not": "^1.0.2", "safe-regex": "^1.1.0" - }, - "dependencies": { - "define-property": { - "version": "2.0.2", - "dev": true, - "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - } - }, - "extend-shallow": { - "version": "3.0.2", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-extendable": { - "version": "1.0.1", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "is-plain-object": { - "version": "2.0.4", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - } } }, "to-regex-range": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, "requires": { "is-number": "^7.0.0" - }, - "dependencies": { - "is-number": { - "version": "7.0.0", - "dev": true - } } }, "toidentifier": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", "dev": true }, "tough-cookie": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz", + "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", "dev": true, "requires": { "psl": "^1.1.33", @@ -31058,23 +34835,42 @@ "dependencies": { "universalify": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", "dev": true } } }, + "tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dev": true, + "requires": { + "punycode": "^2.1.1" + } + }, "trim-newlines": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", "dev": true }, "triple-beam": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz", + "integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==", "dev": true }, "ts-graphviz": { - "version": "0.16.0" + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/ts-graphviz/-/ts-graphviz-0.16.0.tgz", + "integrity": "sha512-3fTPO+G6bSQNvMh/XQQzyiahVLMMj9kqYO99ivUraNJ3Wp05HZOOVtRhi6w9hq7+laP1MKHjLBtGWqTeb1fcpg==" }, "ts-invariant": { "version": "0.9.4", + "resolved": "https://registry.npmjs.org/ts-invariant/-/ts-invariant-0.9.4.tgz", + "integrity": "sha512-63jtX/ZSwnUNi/WhXjnK8kz4cHHpYS60AnmA6ixz17l7E12a5puCWFlNpkne5Rl0J8TBPVHpGjsj4fxs8ObVLQ==", "dev": true, "requires": { "tslib": "^2.1.0" @@ -31098,10 +34894,14 @@ }, "ts-log": { "version": "2.2.4", + "resolved": "https://registry.npmjs.org/ts-log/-/ts-log-2.2.4.tgz", + "integrity": "sha512-DEQrfv6l7IvN2jlzc/VTdZJYsWUnQNCsueYjMkC/iXoEoi5fNan6MjeDqkvhfzbmHgdz9UxDUluX3V5HdjTydQ==", "dev": true }, "ts-node": { "version": "9.1.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-9.1.1.tgz", + "integrity": "sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==", "dev": true, "requires": { "arg": "^4.1.0", @@ -31113,10 +34913,14 @@ } }, "tslib": { - "version": "2.3.1" + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" }, "tsutils": { "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", "dev": true, "requires": { "tslib": "^1.8.1" @@ -31124,12 +34928,16 @@ "dependencies": { "tslib": { "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "dev": true } } }, "tunnel-agent": { "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", "dev": true, "requires": { "safe-buffer": "^5.0.1" @@ -31137,10 +34945,14 @@ }, "tweetnacl": { "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", "dev": true }, "type-check": { "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, "peer": true, "requires": { @@ -31149,14 +34961,20 @@ }, "type-detect": { "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", "dev": true }, "type-fest": { "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", "dev": true }, "type-is": { "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "dev": true, "requires": { "media-typer": "0.3.0", @@ -31165,10 +34983,14 @@ }, "typedarray": { "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", "dev": true }, "typedarray-to-buffer": { "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", "dev": true, "requires": { "is-typedarray": "^1.0.0" @@ -31182,23 +35004,33 @@ }, "ua-parser-js": { "version": "0.7.31", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.31.tgz", + "integrity": "sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==", "dev": true }, "uglify-js": { - "version": "3.14.5", + "version": "3.15.3", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.15.3.tgz", + "integrity": "sha512-6iCVm2omGJbsu3JWac+p6kUiOpg3wFO2f8lIXjfEb8RrmLjzog1wTPMmwKB7swfzzqxj9YM+sGUM++u1qN4qJg==", "dev": true, "optional": true }, "uid-number": { "version": "0.0.6", + "resolved": "https://registry.npmjs.org/uid-number/-/uid-number-0.0.6.tgz", + "integrity": "sha1-DqEOgDXo61uOREnwbaHHMGY7qoE=", "dev": true }, "umask": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/umask/-/umask-1.1.0.tgz", + "integrity": "sha1-8pzr8B31F5ErtY/5xOUP3o4zMg0=", "dev": true }, "unbox-primitive": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", + "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", "requires": { "function-bind": "^1.1.1", "has-bigints": "^1.0.1", @@ -31208,14 +35040,20 @@ }, "unc-path-regex": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", + "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=", "dev": true }, "undici": { - "version": "4.12.1", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/undici/-/undici-5.0.0.tgz", + "integrity": "sha512-VhUpiZ3No1DOPPQVQnsDZyfcbTTcHdcgWej1PdFnSvOeJmOVDgiOHkunJmBLfmjt4CqgPQddPVjSWW0dsTs5Yg==", "dev": true }, "union-value": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", "dev": true, "requires": { "arr-union": "^3.1.0", @@ -31224,47 +35062,46 @@ "set-value": "^2.0.1" }, "dependencies": { - "is-plain-object": { - "version": "2.0.4", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "set-value": { - "version": "2.0.1", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - } + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true } } }, "unique-filename": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", "requires": { "unique-slug": "^2.0.0" } }, "unique-slug": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", "requires": { "imurmurhash": "^0.1.4" } }, "universal-user-agent": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz", + "integrity": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==", "dev": true }, "universalify": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", "dev": true }, "unixify": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unixify/-/unixify-1.0.0.tgz", + "integrity": "sha1-OmQcjC/7zk2mg6XHDwOkYpQMIJA=", "dev": true, "requires": { "normalize-path": "^2.1.1" @@ -31272,6 +35109,8 @@ "dependencies": { "normalize-path": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", "dev": true, "requires": { "remove-trailing-separator": "^1.0.1" @@ -31281,10 +35120,14 @@ }, "unpipe": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", "dev": true }, "unset-value": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", "dev": true, "requires": { "has-value": "^0.3.1", @@ -31293,6 +35136,8 @@ "dependencies": { "has-value": { "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", "dev": true, "requires": { "get-value": "^2.0.3", @@ -31302,6 +35147,8 @@ "dependencies": { "isobject": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", "dev": true, "requires": { "isarray": "1.0.0" @@ -31311,16 +35158,22 @@ }, "has-values": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", "dev": true } } }, "upath": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz", + "integrity": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==", "dev": true }, "upper-case": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", + "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", "dev": true, "requires": { "tslib": "^2.0.3" @@ -31328,6 +35181,8 @@ }, "upper-case-first": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", + "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", "dev": true, "requires": { "tslib": "^2.0.3" @@ -31335,6 +35190,8 @@ }, "uri-js": { "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, "requires": { "punycode": "^2.1.0" @@ -31342,10 +35199,14 @@ }, "urix": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", "dev": true }, "url-parse-lax": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", "dev": true, "requires": { "prepend-http": "^2.0.0" @@ -31353,14 +35214,20 @@ }, "use": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", "dev": true }, "util-deprecate": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", "dev": true }, "util-promisify": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/util-promisify/-/util-promisify-2.1.0.tgz", + "integrity": "sha1-PCI2R2xNMsX/PEcAKt18E7moKlM=", "dev": true, "requires": { "object.getownpropertydescriptors": "^2.0.3" @@ -31368,13 +35235,19 @@ }, "utils-merge": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", "dev": true }, "uuid": { - "version": "8.3.2" + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" }, "v8-compile-cache": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", "dev": true, "peer": true }, @@ -31399,10 +35272,14 @@ }, "valid-url": { "version": "1.0.9", + "resolved": "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz", + "integrity": "sha1-HBRHm0DxOXp1eC8RXkCGRHQzogA=", "dev": true }, "validate-npm-package-license": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "dev": true, "requires": { "spdx-correct": "^3.0.0", @@ -31411,20 +35288,28 @@ }, "validate-npm-package-name": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz", + "integrity": "sha1-X6kS2B630MdK/BQN5zF/DKffQ34=", "dev": true, "requires": { "builtins": "^1.0.3" } }, "value-or-promise": { - "version": "1.0.11" + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.11.tgz", + "integrity": "sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg==" }, "vary": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", "dev": true }, "verror": { "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", "dev": true, "requires": { "assert-plus": "^1.0.0", @@ -31434,6 +35319,8 @@ }, "w3c-hr-time": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", "dev": true, "requires": { "browser-process-hrtime": "^1.0.0" @@ -31441,6 +35328,8 @@ }, "w3c-xmlserializer": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", "dev": true, "requires": { "xml-name-validator": "^3.0.0" @@ -31448,6 +35337,8 @@ }, "walker": { "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, "requires": { "makeerror": "1.0.12" @@ -31455,21 +35346,29 @@ }, "wcwidth": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=", "dev": true, "requires": { "defaults": "^1.0.3" } }, "web-streams-polyfill": { - "version": "4.0.0-beta.1", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz", + "integrity": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==", "dev": true }, "webidl-conversions": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", "dev": true }, "whatwg-encoding": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", "dev": true, "requires": { "iconv-lite": "0.4.24" @@ -31477,32 +35376,31 @@ }, "whatwg-fetch": { "version": "3.6.2", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", + "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==", "dev": true }, "whatwg-mimetype": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", "dev": true }, "whatwg-url": { "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", "dev": true, "requires": { "lodash": "^4.7.0", "tr46": "^2.1.0", "webidl-conversions": "^6.1.0" - }, - "dependencies": { - "tr46": { - "version": "2.1.0", - "dev": true, - "requires": { - "punycode": "^2.1.1" - } - } } }, "which": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "requires": { "isexe": "^2.0.0" @@ -31510,6 +35408,8 @@ }, "which-boxed-primitive": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", "requires": { "is-bigint": "^1.0.1", "is-boolean-object": "^1.1.0", @@ -31520,6 +35420,8 @@ }, "which-collection": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", "requires": { "is-map": "^2.0.1", "is-set": "^2.0.1", @@ -31529,10 +35431,14 @@ }, "which-module": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", "dev": true }, "which-typed-array": { "version": "1.1.7", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.7.tgz", + "integrity": "sha512-vjxaB4nfDqwKI0ws7wZpxIlde1XrLX5uB0ZjpfshgmapJMD7jJWhZI+yToJTqaFByF0eNBcYxbjmCzoRP7CfEw==", "requires": { "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", @@ -31544,6 +35450,8 @@ }, "wide-align": { "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", "dev": true, "requires": { "string-width": "^1.0.2 || 2 || 3 || 4" @@ -31580,14 +35488,20 @@ }, "word-wrap": { "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", "dev": true }, "wordwrap": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", "dev": true }, "wrap-ansi": { "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, "requires": { "ansi-styles": "^4.0.0", @@ -31596,10 +35510,14 @@ } }, "wrappy": { - "version": "1.0.2" + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, "write-file-atomic": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", "dev": true, "requires": { "imurmurhash": "^0.1.4", @@ -31610,6 +35528,8 @@ }, "write-json-file": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/write-json-file/-/write-json-file-4.3.0.tgz", + "integrity": "sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ==", "dev": true, "requires": { "detect-indent": "^6.0.0", @@ -31622,12 +35542,16 @@ "dependencies": { "is-plain-obj": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", "dev": true } } }, "write-pkg": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/write-pkg/-/write-pkg-4.0.0.tgz", + "integrity": "sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==", "dev": true, "requires": { "sort-keys": "^2.0.0", @@ -31637,10 +35561,14 @@ "dependencies": { "detect-indent": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz", + "integrity": "sha1-OHHMCmoALow+Wzz38zYmRnXwa50=", "dev": true }, "make-dir": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", "dev": true, "requires": { "pify": "^4.0.1", @@ -31649,14 +35577,20 @@ }, "pify": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", "dev": true }, "semver": { "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true }, "sort-keys": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", + "integrity": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=", "dev": true, "requires": { "is-plain-obj": "^1.0.0" @@ -31664,10 +35598,14 @@ }, "type-fest": { "version": "0.4.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.4.1.tgz", + "integrity": "sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==", "dev": true }, "write-file-atomic": { "version": "2.4.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", + "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", "dev": true, "requires": { "graceful-fs": "^4.1.11", @@ -31677,6 +35615,8 @@ }, "write-json-file": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/write-json-file/-/write-json-file-3.2.0.tgz", + "integrity": "sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==", "dev": true, "requires": { "detect-indent": "^5.0.0", @@ -31690,55 +35630,79 @@ } }, "ws": { - "version": "8.4.0", + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.5.0.tgz", + "integrity": "sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==", "dev": true, "requires": {} }, "xml": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz", + "integrity": "sha1-eLpyAgApxbyHuKgaPPzXS0ovweU=", "dev": true }, "xml-name-validator": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", "dev": true }, "xmlchars": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", "dev": true }, "xss": { - "version": "1.0.10", + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/xss/-/xss-1.0.11.tgz", + "integrity": "sha512-EimjrjThZeK2MO7WKR9mN5ZC1CSqivSl55wvUK5EtU6acf0rzEE1pN+9ZDrFXJ82BRp3JL38pPE6S4o/rpp1zQ==", "requires": { "commander": "^2.20.3", "cssfilter": "0.0.10" }, "dependencies": { "commander": { - "version": "2.20.3" + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" } } }, "xtend": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", "dev": true }, "y18n": { "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "dev": true }, "yallist": { - "version": "4.0.0" + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" }, "yaml": { "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", "dev": true }, "yaml-ast-parser": { "version": "0.0.43", + "resolved": "https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz", + "integrity": "sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==", "dev": true }, "yargs": { - "version": "17.3.1", + "version": "17.4.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.4.0.tgz", + "integrity": "sha512-WJudfrk81yWFSOkZYpAZx4Nt7V4xp7S/uJkX0CnxovMCt1wCE8LNftPpNuF9X/u9gN5nsD7ycYtRcDf2pL3UiA==", "dev": true, "requires": { "cliui": "^7.0.2", @@ -31751,29 +35715,41 @@ }, "dependencies": { "yargs-parser": { - "version": "21.0.0", + "version": "21.0.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.0.1.tgz", + "integrity": "sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==", "dev": true } } }, "yargs-parser": { "version": "20.2.4", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz", + "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", "dev": true }, "yn": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", "dev": true }, "yocto-queue": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true }, "zen-observable": { "version": "0.8.15", + "resolved": "https://registry.npmjs.org/zen-observable/-/zen-observable-0.8.15.tgz", + "integrity": "sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==", "dev": true }, "zen-observable-ts": { "version": "1.2.3", + "resolved": "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-1.2.3.tgz", + "integrity": "sha512-hc/TGiPkAWpByykMwDcem3SdUgA4We+0Qb36bItSuJC9xD0XVBZoFHYoadAomDSNf64CG8Ydj0Qb8Od8BUWz5g==", "dev": true, "requires": { "zen-observable": "0.8.15" diff --git a/subgraph-js/package.json b/subgraph-js/package.json index a1295af5b..9857e6ec2 100644 --- a/subgraph-js/package.json +++ b/subgraph-js/package.json @@ -21,7 +21,7 @@ "node": ">=12.13.0 <18.0" }, "dependencies": { - "@apollo/core-schema": "apollographql/core-schema-js#v0.3" + "@apollo/core-schema": "^0.3" }, "publishConfig": { "access": "public" From 22acde474cdd7085a40b1128986c843f2b1302aa Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Fri, 8 Apr 2022 11:06:18 -0400 Subject: [PATCH 32/33] restore descriptive text --- subgraph-js/src/__tests__/buildSubgraphSchema.test.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts b/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts index 88fe04500..37120e803 100644 --- a/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts +++ b/subgraph-js/src/__tests__/buildSubgraphSchema.test.ts @@ -87,6 +87,9 @@ describe('buildSubgraphSchema', () => { } }`; const schema = buildSubgraphSchema(gql` + """ + Description text on 'SchemaDefinition' nodes supported as per the October 2021 Edition of the spec. + """ schema { query: Query } @@ -118,6 +121,9 @@ describe('buildSubgraphSchema', () => { const { data, errors } = await graphql({ schema, source: query }); expect(errors).toBeUndefined(); expect(raw((data?._service as any).sdl)).toMatchInlineSnapshot(` + """ + Description text on 'SchemaDefinition' nodes supported as per the October 2021 Edition of the spec. + """ schema { query: Query } From ad45d01a0443e993be4255dc173c537cf95fb24a Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Fri, 8 Apr 2022 11:17:03 -0400 Subject: [PATCH 33/33] restore printSubgraphSchema --- .../src/__tests__/printSubgraphSchema.test.ts | 201 ++++++++ subgraph-js/src/printSubgraphSchema.ts | 458 ++++++++++++++++++ 2 files changed, 659 insertions(+) create mode 100644 subgraph-js/src/__tests__/printSubgraphSchema.test.ts create mode 100644 subgraph-js/src/printSubgraphSchema.ts diff --git a/subgraph-js/src/__tests__/printSubgraphSchema.test.ts b/subgraph-js/src/__tests__/printSubgraphSchema.test.ts new file mode 100644 index 000000000..4bf10cada --- /dev/null +++ b/subgraph-js/src/__tests__/printSubgraphSchema.test.ts @@ -0,0 +1,201 @@ +import { fixtures } from 'apollo-federation-integration-testsuite'; +import { buildSubgraphSchema } from '../buildSubgraphSchema'; +import { printSubgraphSchema } from '../printSubgraphSchema'; +import gql from 'graphql-tag'; + +describe('printSubgraphSchema', () => { + it('prints a subgraph correctly', () => { + const schema = buildSubgraphSchema(fixtures[0].typeDefs); + expect(printSubgraphSchema(schema)).toMatchInlineSnapshot(` + "schema { + query: RootQuery + mutation: Mutation + } + + extend schema @link(url: \\"https://specs.apollo.dev/link/v1.0\\") @link(url: \\"https://specs.apollo.dev/federation/v2.0\\", import: [\\"@key\\", \\"@requires\\", \\"@provides\\", \\"@external\\", \\"@tag\\", \\"@extends\\", \\"@shareable\\", \\"@inaccessible\\", \\"@override\\"]) + + directive @stream on FIELD + + directive @transform(from: String!) on FIELD + + directive @cacheControl(maxAge: Int, scope: CacheControlScope, inheritMaxAge: Boolean) on FIELD_DEFINITION | OBJECT | INTERFACE | UNION + + enum CacheControlScope @tag(name: \\"from-reviews\\") { + PUBLIC @tag(name: \\"from-reviews\\") + PRIVATE + } + + scalar JSON @specifiedBy(url: \\"https://json-spec.dev\\") @tag(name: \\"from-reviews\\") + + type RootQuery { + _entities(representations: [_Any!]!): [_Entity]! + _service: _Service! + user(id: ID!): User + me: User + } + + type PasswordAccount @key(fields: \\"email\\") { + email: String! + } + + type SMSAccount @key(fields: \\"number\\") { + number: String + } + + union AccountType @tag(name: \\"from-accounts\\") = PasswordAccount | SMSAccount + + type UserMetadata { + name: String + address: String + description: String + } + + type User @key(fields: \\"id\\") @key(fields: \\"username name { first last }\\") @tag(name: \\"from-accounts\\") { + id: ID! @tag(name: \\"accounts\\") + name: Name + username: String @shareable + birthDate(locale: String @tag(name: \\"admin\\")): String @tag(name: \\"admin\\") @tag(name: \\"dev\\") + account: AccountType + metadata: [UserMetadata] + ssn: String + } + + type Name { + first: String + last: String + } + + type Mutation { + login(username: String!, password: String!, userId: String @deprecated(reason: \\"Use username instead\\")): User + } + + type Library @key(fields: \\"id\\") { + id: ID! + name: String @external + userAccount(id: ID! = 1): User @requires(fields: \\"name\\") + description: String @override(from: \\"books\\") + } + + scalar federation__FieldSet + " + `); + }); + + it('prints a scalar without a directive correctly', () => { + const schema = gql` + scalar JSON + `; + const subgraphSchema = buildSubgraphSchema(schema); + + expect(printSubgraphSchema(subgraphSchema)).toMatchInlineSnapshot(` + "scalar JSON + + type Query { + _service: _Service! + } + " + `); + }); + + it('prints reviews subgraph correctly', () => { + const schema = buildSubgraphSchema(fixtures[5].typeDefs); + expect(printSubgraphSchema(schema)).toMatchInlineSnapshot(` + "extend schema @link(url: \\"https://specs.apollo.dev/link/v1.0\\") @link(url: \\"https://specs.apollo.dev/federation/v2.0\\", import: [\\"@key\\", \\"@requires\\", \\"@provides\\", \\"@external\\", \\"@tag\\", \\"@extends\\", \\"@shareable\\", \\"@inaccessible\\", \\"@override\\"]) + + directive @stream on FIELD + + directive @transform(from: String!) on FIELD + + type Query { + _entities(representations: [_Any!]!): [_Entity]! + _service: _Service! + topReviews(first: Int = 5): [Review] + } + + type Review @key(fields: \\"id\\") { + id: ID! + body(format: Boolean = false): String + author: User @provides(fields: \\"username\\") + product: Product + metadata: [MetadataOrError] + } + + input UpdateReviewInput @tag(name: \\"from-reviews\\") { + id: ID! + body: String @tag(name: \\"from-reviews\\") + } + + type UserMetadata { + address: String @external + } + + type User @key(fields: \\"id\\") @tag(name: \\"from-reviews\\") { + id: ID! + username: String @external + reviews: [Review] + numberOfReviews: Int! + metadata: [UserMetadata] @external + goodAddress: Boolean @requires(fields: \\"metadata { address }\\") + } + + interface Product @tag(name: \\"from-reviews\\") { + reviews: [Review] @tag(name: \\"from-reviews\\") + } + + type Furniture implements Product @key(fields: \\"upc\\") { + upc: String! + reviews: [Review] + } + + type Book implements Product @key(fields: \\"isbn\\") { + isbn: String! + reviews: [Review] + similarBooks: [Book]! @external + relatedReviews: [Review!]! @requires(fields: \\"similarBooks { isbn }\\") + } + + interface Vehicle { + retailPrice: String + } + + type Car implements Vehicle @key(fields: \\"id\\") { + id: String! + price: String @external + retailPrice: String @requires(fields: \\"price\\") + } + + type Van implements Vehicle @key(fields: \\"id\\") { + id: String! + price: String @external + retailPrice: String @requires(fields: \\"price\\") + } + + input ReviewProduct { + upc: String! + body: String! + stars: Int @deprecated(reason: \\"Stars are no longer in use\\") + } + + type Mutation { + reviewProduct(input: ReviewProduct!): Product + updateReview(review: UpdateReviewInput! @tag(name: \\"from-reviews\\")): Review + deleteReview(id: ID!): Boolean + } + + type KeyValue @shareable @tag(name: \\"from-reviews\\") { + key: String! @tag(name: \\"from-reviews\\") + value: String! + } + + type Error @shareable { + code: Int + message: String + } + + union MetadataOrError = KeyValue | Error + + scalar federation__FieldSet + " + `); + }); +}); diff --git a/subgraph-js/src/printSubgraphSchema.ts b/subgraph-js/src/printSubgraphSchema.ts new file mode 100644 index 000000000..4c623c850 --- /dev/null +++ b/subgraph-js/src/printSubgraphSchema.ts @@ -0,0 +1,458 @@ +/** + * Forked from graphql-js printSchema.ts file @ v16.0.0 + * This file has been modified to support printing subgraph + * schema, including associated federation directives. + */ +import { + GraphQLSchema, + isSpecifiedDirective, + isIntrospectionType, + isSpecifiedScalarType, + GraphQLNamedType, + GraphQLDirective, + isScalarType, + isObjectType, + isInterfaceType, + isUnionType, + isEnumType, + isInputObjectType, + GraphQLScalarType, + GraphQLObjectType, + GraphQLInterfaceType, + GraphQLUnionType, + GraphQLEnumType, + GraphQLInputObjectType, + GraphQLArgument, + GraphQLInputField, + astFromValue, + print, + GraphQLField, + DEFAULT_DEPRECATION_REASON, + Kind, + GraphQLEnumValue, +} from 'graphql'; +import { isFederationType, Maybe } from './types'; +import { + gatherDirectives, + federationDirectives, + isFederationDirective, +} from './directives'; + +export function printSubgraphSchema(schema: GraphQLSchema): string { + return printFilteredSchema( + schema, + // Apollo change: treat the directives defined by the federation spec + // similarly to the directives defined by the GraphQL spec (ie, don't print + // their definitions). + (n) => !isSpecifiedDirective(n) && !isFederationDirective(n), + isDefinedType, + ); +} + +export function printIntrospectionSchema(schema: GraphQLSchema): string { + return printFilteredSchema(schema, isSpecifiedDirective, isIntrospectionType); +} + +// Apollo change: treat the types defined by the federation spec +// similarly to the directives defined by the GraphQL spec (ie, don't print +// their definitions). +function isDefinedType(type: GraphQLNamedType): boolean { + return ( + !isSpecifiedScalarType(type) && + !isIntrospectionType(type) && + !isFederationType(type) + ); +} + +function printFilteredSchema( + schema: GraphQLSchema, + directiveFilter: (type: GraphQLDirective) => boolean, + typeFilter: (type: GraphQLNamedType) => boolean, +): string { + const directives = schema.getDirectives().filter(directiveFilter); + const types = Object.values(schema.getTypeMap()).filter(typeFilter); + + return ( + [ + printSchemaDefinition(schema), + printSchemaDirectives(schema), + ...directives.map((directive) => printDirective(directive)), + ...types.map((type) => printType(type)), + ] + .filter(Boolean) + .join('\n\n') + '\n' + ); +} + +function printSchemaDefinition(schema: GraphQLSchema): string | undefined { + if (schema.description == null && isSchemaOfCommonNames(schema)) { + return; + } + + const operationTypes = []; + + const queryType = schema.getQueryType(); + if (queryType) { + operationTypes.push(` query: ${queryType.name}`); + } + + const mutationType = schema.getMutationType(); + if (mutationType) { + operationTypes.push(` mutation: ${mutationType.name}`); + } + + const subscriptionType = schema.getSubscriptionType(); + if (subscriptionType) { + operationTypes.push(` subscription: ${subscriptionType.name}`); + } + + return printDescription(schema) + `schema {\n${operationTypes.join('\n')}\n}`; +} + +/* + * Apollo change: we write the fedederation directives put on the schema, if any, + * and we we do so on a schema extension block. The reason for the later part + * is that subgraphs printed by this function are allowed to not have a Query + * type and so we cannot guarantee that `printSchemaDefinition` will have + * any operation to display, and in that case the generated definition wouldn't + * parse correctly (at least with the GraphQL-js parser). Using a schema extension + * side-step that issue. + */ +function printSchemaDirectives(schema: GraphQLSchema): string | undefined { + const directives = printFederationDirectives(schema); + return directives === '' ? undefined : `extend schema${directives}`; +} + +/** + * GraphQL schema define root types for each type of operation. These types are + * the same as any other type and can be named in any manner, however there is + * a common naming convention: + * + * schema { + * query: Query + * mutation: Mutation + * } + * + * When using this naming convention, the schema description can be omitted. + */ +function isSchemaOfCommonNames(schema: GraphQLSchema): boolean { + const queryType = schema.getQueryType(); + if (queryType && queryType.name !== 'Query') { + return false; + } + + const mutationType = schema.getMutationType(); + if (mutationType && mutationType.name !== 'Mutation') { + return false; + } + + const subscriptionType = schema.getSubscriptionType(); + if (subscriptionType && subscriptionType.name !== 'Subscription') { + return false; + } + + return true; +} + +export function printType(type: GraphQLNamedType): string { + if (isScalarType(type)) { + return printScalar(type); + } + if (isObjectType(type)) { + return printObject(type); + } + if (isInterfaceType(type)) { + return printInterface(type); + } + if (isUnionType(type)) { + return printUnion(type); + } + if (isEnumType(type)) { + return printEnum(type); + } + if (isInputObjectType(type)) { + return printInputObject(type); + } + + // graphql-js uses an internal fn `inspect` but this is a `never` case anyhow + throw Error('Unexpected type: ' + (type as GraphQLNamedType).toString()); +} + +function printScalar(type: GraphQLScalarType): string { + return ( + printDescription(type) + + `scalar ${type.name}` + + printSpecifiedByURL(type) + + // Apollo addition: print federation directives on scalar types + printFederationDirectives(type) + ); +} + +function printImplementedInterfaces( + type: GraphQLObjectType | GraphQLInterfaceType, +): string { + const interfaces = type.getInterfaces(); + return interfaces.length + ? ' implements ' + interfaces.map((i) => i.name).join(' & ') + : ''; +} + +function printObject(type: GraphQLObjectType): string { + // Apollo change: print `extend` keyword on type extensions. + // + // The implementation assumes that an owned type will have fields defined + // since that is required for a valid schema. Types that are *only* + // extensions will not have fields on the astNode since that ast doesn't + // exist. + // + // XXX revist extension checking + const isExtension = + type.extensionASTNodes && type.astNode && !type.astNode.fields; + + return ( + printDescription(type) + + // Apollo addition: print `extend` keyword on type extensions + (isExtension ? 'extend ' : '') + + `type ${type.name}` + + printImplementedInterfaces(type) + + // Apollo addition: print federation directives on object types + printFederationDirectives(type) + + printFields(type) + ); +} + +function printInterface(type: GraphQLInterfaceType): string { + // Apollo change: print `extend` keyword on type extensions. + // See printObject for assumptions made. + // + // XXX revist extension checking + const isExtension = + type.extensionASTNodes && type.astNode && !type.astNode.fields; + + return ( + printDescription(type) + + // Apollo change: print `extend` keyword on interface extensions + (isExtension ? 'extend ' : '') + + `interface ${type.name}` + + printImplementedInterfaces(type) + + // Apollo addition: print federation directives on interface types + printFederationDirectives(type) + + printFields(type) + ); +} + +function printUnion(type: GraphQLUnionType): string { + const types = type.getTypes(); + const possibleTypes = types.length ? ' = ' + types.join(' | ') : ''; + return ( + printDescription(type) + + 'union ' + + type.name + + // Apollo addition: print federation directives on union types + printFederationDirectives(type) + + possibleTypes + ); +} + +function printEnum(type: GraphQLEnumType): string { + const values = type + .getValues() + .map( + (value, i) => + printDescription(value, ' ', !i) + + ' ' + + value.name + + printDeprecated(value.deprecationReason) + + // Apollo addition: print federation directives on enum values + printFederationDirectives(value), + ); + + return ( + printDescription(type) + + `enum ${type.name}` + + // Apollo addition: print federation directives on enum types + printFederationDirectives(type) + + printBlock(values) + ); +} + +function printInputObject(type: GraphQLInputObjectType): string { + const fields = Object.values(type.getFields()).map( + (f, i) => printDescription(f, ' ', !i) + ' ' + printInputValue(f), + ); + return ( + printDescription(type) + + `input ${type.name}` + + // Apollo addition: print federation directives on input object types + printFederationDirectives(type) + + printBlock(fields) + ); +} + +function printFields(type: GraphQLObjectType | GraphQLInterfaceType) { + const fields = Object.values(type.getFields()).map( + (f, i) => + printDescription(f, ' ', !i) + + ' ' + + f.name + + printArgs(f.args, ' ') + + ': ' + + String(f.type) + + printDeprecated(f.deprecationReason) + + // Apollo addition: print federation directives on object/interface fields + printFederationDirectives(f), + ); + return printBlock(fields); +} + +// Apollo change: *do* print the usages of federation directives. +function printFederationDirectives( + element: + | GraphQLSchema + | GraphQLNamedType + | GraphQLField + | GraphQLArgument + | GraphQLEnumValue + | GraphQLInputField +): string { + const federationDirectivesOnElement = gatherDirectives(element) + .filter((n) => + federationDirectives.some((fedDir) => fedDir.name === n.name.value), + ) + .map(print); + const dedupedDirectives = [...new Set(federationDirectivesOnElement)]; + + return dedupedDirectives.length > 0 ? ' ' + dedupedDirectives.join(' ') : ''; +} + +function printBlock(items: string[]) { + return items.length !== 0 ? ' {\n' + items.join('\n') + '\n}' : ''; +} + +function printArgs(args: readonly GraphQLArgument[], indentation = '') { + if (args.length === 0) { + return ''; + } + + // If every arg does not have a description, print them on one line. + if (args.every((arg) => !arg.description)) { + return '(' + args.map(printInputValue).join(', ') + ')'; + } + + return ( + '(\n' + + args + .map( + (arg, i) => + printDescription(arg, ' ' + indentation, !i) + + ' ' + + indentation + + printInputValue(arg), + ) + .join('\n') + + '\n' + + indentation + + ')' + ); +} + +function printInputValue(arg: GraphQLInputField) { + const defaultAST = astFromValue(arg.defaultValue, arg.type); + let argDecl = arg.name + ': ' + String(arg.type); + if (defaultAST) { + argDecl += ` = ${print(defaultAST)}`; + } + return argDecl + + printDeprecated(arg.deprecationReason) + + // Apollo addition: print federation directives on input values + printFederationDirectives(arg); +} + +function printDirective(directive: GraphQLDirective) { + return ( + printDescription(directive) + + 'directive @' + + directive.name + + printArgs(directive.args) + + (directive.isRepeatable ? ' repeatable' : '') + + ' on ' + + directive.locations.join(' | ') + ); +} + +function printDeprecated(reason: Maybe): string { + if (reason == null) { + return ''; + } + if (reason !== DEFAULT_DEPRECATION_REASON) { + const astValue = print({ kind: Kind.STRING, value: reason }); + return ` @deprecated(reason: ${astValue})`; + } + return ' @deprecated'; +} + +// Apollo addition: support both specifiedByUrl and specifiedByURL - these +// happen across v15 and v16. +function printSpecifiedByURL(scalar: GraphQLScalarType): string { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const value = (scalar as any).specifiedByUrl ?? scalar.specifiedByURL; + + if (value == null) { + return ''; + } + const astValue = print({ + kind: Kind.STRING, + value, + }); + return ` @specifiedBy(url: ${astValue})`; +} + +function printDescription( + def: { readonly description?: Maybe }, + indentation = '', + firstInBlock = true, +): string { + const { description } = def; + if (description == null) { + return ''; + } + + const preferMultipleLines = description.length > 70; + const blockString = printBlockString(description, preferMultipleLines); + const prefix = + indentation && !firstInBlock ? '\n' + indentation : indentation; + + return prefix + blockString.replace(/\n/g, '\n' + indentation) + '\n'; +} + +/** + * Print a block string in the indented block form by adding a leading and + * trailing blank line. However, if a block string starts with whitespace and is + * a single-line, adding a leading blank line would strip that whitespace. + */ +export function printBlockString( + value: string, + preferMultipleLines: boolean = false, +): string { + const isSingleLine = !value.includes('\n'); + const hasLeadingSpace = value[0] === ' ' || value[0] === '\t'; + const hasTrailingQuote = value[value.length - 1] === '"'; + const hasTrailingSlash = value[value.length - 1] === '\\'; + const printAsMultipleLines = + !isSingleLine || + hasTrailingQuote || + hasTrailingSlash || + preferMultipleLines; + + let result = ''; + // Format a multi-line block quote to account for leading space. + if (printAsMultipleLines && !(isSingleLine && hasLeadingSpace)) { + result += '\n'; + } + result += value; + if (printAsMultipleLines) { + result += '\n'; + } + + return '"""' + result.replace(/"""/g, '\\"""') + '"""'; +}