From e93a4dc1c8ec2cd5b8a9b3b68df5eae139d8a284 Mon Sep 17 00:00:00 2001 From: Krzysztof Wolski Date: Thu, 16 Mar 2023 10:22:33 +0100 Subject: [PATCH] Update the GraphQL Code Generator version (#291) * Add missing plugin * Update GraphQL Code Generator --- .changeset/strange-jeans-fly.md | 13 + apps/data-importer/package.json | 11 +- .../graphql/queries/FetchAppDetails.graphql | 9 - apps/emails-and-messages/package.json | 15 +- .../get-app-configuration.service.ts | 2 +- .../app-configuration/metadata-manager.ts | 93 - .../get-mjml-configuration.service.ts | 2 +- .../get-sendgrid-configuration.service.ts | 2 +- .../sendgrid-configuration.router.ts | 2 +- apps/invoices/package.json | 15 +- apps/klaviyo/package.json | 17 +- apps/monitoring/package.json | 15 +- apps/products-feed/package.json | 15 +- apps/search/package.json | 13 +- apps/slack/package.json | 17 +- apps/taxes/package.json | 15 +- pnpm-lock.yaml | 1701 ++++------------- 17 files changed, 429 insertions(+), 1528 deletions(-) create mode 100644 .changeset/strange-jeans-fly.md delete mode 100644 apps/emails-and-messages/graphql/queries/FetchAppDetails.graphql delete mode 100644 apps/emails-and-messages/src/modules/app-configuration/metadata-manager.ts diff --git a/.changeset/strange-jeans-fly.md b/.changeset/strange-jeans-fly.md new file mode 100644 index 0000000..4cc421e --- /dev/null +++ b/.changeset/strange-jeans-fly.md @@ -0,0 +1,13 @@ +--- +"saleor-app-emails-and-messages": patch +"saleor-app-data-importer": patch +"saleor-app-products-feed": patch +"saleor-app-monitoring": patch +"saleor-app-invoices": patch +"saleor-app-klaviyo": patch +"saleor-app-search": patch +"saleor-app-slack": patch +"saleor-app-taxes": patch +--- + +Updated GraphQL Code Generator package diff --git a/apps/data-importer/package.json b/apps/data-importer/package.json index 16a60c4..5530157 100644 --- a/apps/data-importer/package.json +++ b/apps/data-importer/package.json @@ -42,11 +42,12 @@ "zod": "^3.20.2" }, "devDependencies": { - "@graphql-codegen/cli": "2.13.3", - "@graphql-codegen/introspection": "2.2.1", - "@graphql-codegen/typed-document-node": "^2.3.3", - "@graphql-codegen/typescript": "2.7.3", - "@graphql-codegen/typescript-operations": "2.5.3", + "@graphql-codegen/cli": "3.2.2", + "@graphql-codegen/introspection": "3.0.1", + "@graphql-codegen/schema-ast": "^3.0.1", + "@graphql-codegen/typed-document-node": "3.0.2", + "@graphql-codegen/typescript": "3.0.2", + "@graphql-codegen/typescript-operations": "3.0.2", "@graphql-codegen/typescript-urql": "^3.7.0", "@graphql-codegen/urql-introspection": "2.2.1", "@graphql-typed-document-node/core": "^3.1.1", diff --git a/apps/emails-and-messages/graphql/queries/FetchAppDetails.graphql b/apps/emails-and-messages/graphql/queries/FetchAppDetails.graphql deleted file mode 100644 index b4bad82..0000000 --- a/apps/emails-and-messages/graphql/queries/FetchAppDetails.graphql +++ /dev/null @@ -1,9 +0,0 @@ -query FetchAppDetails { - app { - id - privateMetadata { - key - value - } - } -} diff --git a/apps/emails-and-messages/package.json b/apps/emails-and-messages/package.json index 67aba1a..3d6f1d2 100644 --- a/apps/emails-and-messages/package.json +++ b/apps/emails-and-messages/package.json @@ -55,14 +55,15 @@ "zod": "^3.20.2" }, "devDependencies": { - "@graphql-codegen/cli": "2.13.3", - "@graphql-codegen/introspection": "2.2.1", - "@graphql-codegen/typed-document-node": "^2.3.3", - "@graphql-codegen/typescript": "2.7.3", - "@graphql-codegen/typescript-operations": "2.5.3", - "@graphql-codegen/typescript-urql": "^3.7.0", + "@graphql-codegen/cli": "3.2.2", + "@graphql-codegen/introspection": "3.0.1", + "@graphql-codegen/schema-ast": "^3.0.1", + "@graphql-codegen/typed-document-node": "3.0.2", + "@graphql-codegen/typescript": "3.0.2", + "@graphql-codegen/typescript-operations": "3.0.2", + "@graphql-codegen/typescript-urql": "^3.7.3", "@graphql-codegen/urql-introspection": "2.2.1", - "@graphql-typed-document-node/core": "^3.1.1", + "@graphql-typed-document-node/core": "^3.1.2", "@testing-library/react": "^13.4.0", "@testing-library/react-hooks": "^8.0.1", "@types/html-to-text": "^9.0.0", diff --git a/apps/emails-and-messages/src/modules/app-configuration/get-app-configuration.service.ts b/apps/emails-and-messages/src/modules/app-configuration/get-app-configuration.service.ts index 70ed61f..934e4ba 100644 --- a/apps/emails-and-messages/src/modules/app-configuration/get-app-configuration.service.ts +++ b/apps/emails-and-messages/src/modules/app-configuration/get-app-configuration.service.ts @@ -1,9 +1,9 @@ import { PrivateMetadataAppConfigurator } from "./app-configurator"; -import { createSettingsManager } from "./metadata-manager"; import { Client } from "urql"; import { logger as pinoLogger } from "../../lib/logger"; import { AppConfig, AppConfigurationPerChannel } from "./app-config"; import { getDefaultEmptyAppConfiguration } from "./app-config-container"; +import { createSettingsManager } from "../../lib/metadata-manager"; const logger = pinoLogger.child({ service: "AppConfigurationService", diff --git a/apps/emails-and-messages/src/modules/app-configuration/metadata-manager.ts b/apps/emails-and-messages/src/modules/app-configuration/metadata-manager.ts deleted file mode 100644 index 65d56c2..0000000 --- a/apps/emails-and-messages/src/modules/app-configuration/metadata-manager.ts +++ /dev/null @@ -1,93 +0,0 @@ -import { MetadataEntry, EncryptedMetadataManager } from "@saleor/app-sdk/settings-manager"; -import { Client, gql } from "urql"; -import { - FetchAppDetailsDocument, - FetchAppDetailsQuery, - UpdateAppMetadataDocument, -} from "../../../generated/graphql"; - -gql` - mutation UpdateAppMetadata($id: ID!, $input: [MetadataInput!]!) { - updatePrivateMetadata(id: $id, input: $input) { - item { - privateMetadata { - key - value - } - } - } - } -`; - -gql` - query FetchAppDetails { - app { - id - privateMetadata { - key - value - } - } - } -`; - -export async function fetchAllMetadata(client: Client): Promise { - const { error, data } = await client - .query(FetchAppDetailsDocument, {}) - .toPromise(); - - if (error) { - return []; - } - - return data?.app?.privateMetadata.map((md) => ({ key: md.key, value: md.value })) || []; -} - -export async function mutateMetadata(client: Client, metadata: MetadataEntry[]) { - // to update the metadata, ID is required - const { error: idQueryError, data: idQueryData } = await client - .query(FetchAppDetailsDocument, {}) - .toPromise(); - - if (idQueryError) { - throw new Error( - "Could not fetch the app id. Please check if auth data for the client are valid." - ); - } - - const appId = idQueryData?.app?.id; - - if (!appId) { - throw new Error("Could not fetch the app ID"); - } - - const { error: mutationError, data: mutationData } = await client - .mutation(UpdateAppMetadataDocument, { - id: appId, - input: metadata, - }) - .toPromise(); - - if (mutationError) { - throw new Error(`Mutation error: ${mutationError.message}`); - } - - return ( - mutationData?.updatePrivateMetadata?.item?.privateMetadata.map((md) => ({ - key: md.key, - value: md.value, - })) || [] - ); -} - -export const createSettingsManager = (client: Client) => { - // EncryptedMetadataManager gives you interface to manipulate metadata and cache values in memory. - // We recommend it for production, because all values are encrypted. - // If your use case require plain text values, you can use MetadataManager. - return new EncryptedMetadataManager({ - // Secret key should be randomly created for production and set as environment variable - encryptionKey: process.env.SECRET_KEY!, - fetchMetadata: () => fetchAllMetadata(client), - mutateMetadata: (metadata) => mutateMetadata(client, metadata), - }); -}; diff --git a/apps/emails-and-messages/src/modules/mjml/configuration/get-mjml-configuration.service.ts b/apps/emails-and-messages/src/modules/mjml/configuration/get-mjml-configuration.service.ts index d8d6800..4ea3c43 100644 --- a/apps/emails-and-messages/src/modules/mjml/configuration/get-mjml-configuration.service.ts +++ b/apps/emails-and-messages/src/modules/mjml/configuration/get-mjml-configuration.service.ts @@ -1,9 +1,9 @@ import { MjmlConfigurator, PrivateMetadataMjmlConfigurator } from "./mjml-configurator"; import { Client } from "urql"; import { logger as pinoLogger } from "../../../lib/logger"; -import { createSettingsManager } from "../../app-configuration/metadata-manager"; import { MjmlConfig, MjmlConfiguration } from "./mjml-config"; import { FilterConfigurationsArgs, MjmlConfigContainer } from "./mjml-config-container"; +import { createSettingsManager } from "../../../lib/metadata-manager"; const logger = pinoLogger.child({ service: "MjmlConfigurationService", diff --git a/apps/emails-and-messages/src/modules/sendgrid/configuration/get-sendgrid-configuration.service.ts b/apps/emails-and-messages/src/modules/sendgrid/configuration/get-sendgrid-configuration.service.ts index caab440..d469f60 100644 --- a/apps/emails-and-messages/src/modules/sendgrid/configuration/get-sendgrid-configuration.service.ts +++ b/apps/emails-and-messages/src/modules/sendgrid/configuration/get-sendgrid-configuration.service.ts @@ -1,7 +1,7 @@ import { PrivateMetadataSendgridConfigurator } from "./sendgrid-configurator"; import { Client } from "urql"; import { logger as pinoLogger } from "../../../lib/logger"; -import { createSettingsManager } from "../../app-configuration/metadata-manager"; +import { createSettingsManager } from "../../../lib/metadata-manager"; // todo test export class GetSendgridConfigurationService { diff --git a/apps/emails-and-messages/src/modules/sendgrid/configuration/sendgrid-configuration.router.ts b/apps/emails-and-messages/src/modules/sendgrid/configuration/sendgrid-configuration.router.ts index 9469a94..c86468e 100644 --- a/apps/emails-and-messages/src/modules/sendgrid/configuration/sendgrid-configuration.router.ts +++ b/apps/emails-and-messages/src/modules/sendgrid/configuration/sendgrid-configuration.router.ts @@ -4,7 +4,7 @@ import { sendgridConfigInputSchema } from "./sendgrid-config-input-schema"; import { GetSendgridConfigurationService } from "./get-sendgrid-configuration.service"; import { router } from "../../trpc/trpc-server"; import { protectedClientProcedure } from "../../trpc/protected-client-procedure"; -import { createSettingsManager } from "../../app-configuration/metadata-manager"; +import { createSettingsManager } from "../../../lib/metadata-manager"; export const sendgridConfigurationRouter = router({ fetch: protectedClientProcedure.query(async ({ ctx, input }) => { diff --git a/apps/invoices/package.json b/apps/invoices/package.json index fc48c77..ac57ef3 100644 --- a/apps/invoices/package.json +++ b/apps/invoices/package.json @@ -48,14 +48,15 @@ "zod": "^3.20.2" }, "devDependencies": { - "@graphql-codegen/cli": "2.13.3", - "@graphql-codegen/introspection": "2.2.1", - "@graphql-codegen/typed-document-node": "^2.3.3", - "@graphql-codegen/typescript": "2.7.3", - "@graphql-codegen/typescript-operations": "2.5.3", - "@graphql-codegen/typescript-urql": "^3.7.0", + "@graphql-codegen/cli": "3.2.2", + "@graphql-codegen/introspection": "3.0.1", + "@graphql-codegen/schema-ast": "^3.0.1", + "@graphql-codegen/typed-document-node": "3.0.2", + "@graphql-codegen/typescript": "3.0.2", + "@graphql-codegen/typescript-operations": "3.0.2", + "@graphql-codegen/typescript-urql": "^3.7.3", "@graphql-codegen/urql-introspection": "2.2.1", - "@graphql-typed-document-node/core": "^3.1.1", + "@graphql-typed-document-node/core": "^3.1.2", "@types/node": "^18.8.1", "@types/react": "^18.0.27", "@types/react-dom": "^18.0.10", diff --git a/apps/klaviyo/package.json b/apps/klaviyo/package.json index 0f99ba6..21a1481 100644 --- a/apps/klaviyo/package.json +++ b/apps/klaviyo/package.json @@ -34,14 +34,15 @@ "urql": "^3.0.3" }, "devDependencies": { - "@graphql-codegen/cli": "2.7.0", - "@graphql-codegen/introspection": "2.1.1", - "@graphql-codegen/typed-document-node": "^2.2.14", - "@graphql-codegen/typescript": "2.6.0", - "@graphql-codegen/typescript-operations": "2.4.3", - "@graphql-codegen/typescript-urql": "^3.5.13", - "@graphql-codegen/urql-introspection": "2.1.1", - "@graphql-typed-document-node/core": "^3.1.1", + "@graphql-codegen/cli": "3.2.2", + "@graphql-codegen/introspection": "3.0.1", + "@graphql-codegen/schema-ast": "^3.0.1", + "@graphql-codegen/typed-document-node": "3.0.2", + "@graphql-codegen/typescript": "3.0.2", + "@graphql-codegen/typescript-operations": "3.0.2", + "@graphql-codegen/typescript-urql": "^3.7.3", + "@graphql-codegen/urql-introspection": "2.2.1", + "@graphql-typed-document-node/core": "^3.1.2", "@types/node": "18.0.1", "@types/react": "18.0.14", "@types/react-dom": "18.0.6", diff --git a/apps/monitoring/package.json b/apps/monitoring/package.json index a798637..e36abab 100644 --- a/apps/monitoring/package.json +++ b/apps/monitoring/package.json @@ -35,14 +35,15 @@ "vitest": "^0.27.1" }, "devDependencies": { - "@graphql-codegen/cli": "2.13.3", - "@graphql-codegen/introspection": "2.2.1", - "@graphql-codegen/typed-document-node": "^2.3.3", - "@graphql-codegen/typescript": "2.7.3", - "@graphql-codegen/typescript-operations": "2.5.3", - "@graphql-codegen/typescript-urql": "^3.7.0", + "@graphql-codegen/cli": "3.2.2", + "@graphql-codegen/introspection": "3.0.1", + "@graphql-codegen/schema-ast": "^3.0.1", + "@graphql-codegen/typed-document-node": "3.0.2", + "@graphql-codegen/typescript": "3.0.2", + "@graphql-codegen/typescript-operations": "3.0.2", + "@graphql-codegen/typescript-urql": "^3.7.3", "@graphql-codegen/urql-introspection": "2.2.1", - "@graphql-typed-document-node/core": "^3.1.1", + "@graphql-typed-document-node/core": "^3.1.2", "@testing-library/react": "^13.4.0", "@testing-library/react-hooks": "^8.0.1", "@types/node": "^18.11.18", diff --git a/apps/products-feed/package.json b/apps/products-feed/package.json index d34ec98..20c6d2e 100644 --- a/apps/products-feed/package.json +++ b/apps/products-feed/package.json @@ -48,14 +48,15 @@ "zod": "^3.20.2" }, "devDependencies": { - "@graphql-codegen/cli": "2.13.3", - "@graphql-codegen/introspection": "2.2.1", - "@graphql-codegen/typed-document-node": "^2.3.3", - "@graphql-codegen/typescript": "2.7.3", - "@graphql-codegen/typescript-operations": "2.5.3", - "@graphql-codegen/typescript-urql": "^3.7.0", + "@graphql-codegen/cli": "3.2.2", + "@graphql-codegen/introspection": "3.0.1", + "@graphql-codegen/schema-ast": "^3.0.1", + "@graphql-codegen/typed-document-node": "3.0.2", + "@graphql-codegen/typescript": "3.0.2", + "@graphql-codegen/typescript-operations": "3.0.2", + "@graphql-codegen/typescript-urql": "^3.7.3", "@graphql-codegen/urql-introspection": "2.2.1", - "@graphql-typed-document-node/core": "^3.1.1", + "@graphql-typed-document-node/core": "^3.1.2", "@testing-library/react": "^13.4.0", "@testing-library/react-hooks": "^8.0.1", "@types/node": "^18.11.18", diff --git a/apps/search/package.json b/apps/search/package.json index 31628f3..a3cd675 100644 --- a/apps/search/package.json +++ b/apps/search/package.json @@ -40,14 +40,15 @@ "urql": "^3.0.3" }, "devDependencies": { - "@graphql-codegen/cli": "2.13.11", - "@graphql-codegen/introspection": "2.2.1", - "@graphql-codegen/typed-document-node": "^2.3.6", - "@graphql-codegen/typescript": "2.8.1", - "@graphql-codegen/typescript-operations": "2.5.6", + "@graphql-codegen/cli": "3.2.2", + "@graphql-codegen/introspection": "3.0.1", + "@graphql-codegen/schema-ast": "^3.0.1", + "@graphql-codegen/typed-document-node": "3.0.2", + "@graphql-codegen/typescript": "3.0.2", + "@graphql-codegen/typescript-operations": "3.0.2", "@graphql-codegen/typescript-urql": "^3.7.3", "@graphql-codegen/urql-introspection": "2.2.1", - "@graphql-typed-document-node/core": "^3.1.1", + "@graphql-typed-document-node/core": "^3.1.2", "@types/node": "^18.11.9", "@types/react": "^18.0.25", "@types/react-dom": "^18.0.8", diff --git a/apps/slack/package.json b/apps/slack/package.json index 521b33b..43dac66 100644 --- a/apps/slack/package.json +++ b/apps/slack/package.json @@ -34,14 +34,15 @@ "usehooks-ts": "^2.9.1" }, "devDependencies": { - "@graphql-codegen/cli": "2.7.0", - "@graphql-codegen/introspection": "2.1.1", - "@graphql-codegen/typed-document-node": "^2.2.14", - "@graphql-codegen/typescript": "2.6.0", - "@graphql-codegen/typescript-operations": "2.4.3", - "@graphql-codegen/typescript-urql": "^3.5.13", - "@graphql-codegen/urql-introspection": "2.1.1", - "@graphql-typed-document-node/core": "^3.1.1", + "@graphql-codegen/cli": "3.2.2", + "@graphql-codegen/introspection": "3.0.1", + "@graphql-codegen/schema-ast": "^3.0.1", + "@graphql-codegen/typed-document-node": "3.0.2", + "@graphql-codegen/typescript": "3.0.2", + "@graphql-codegen/typescript-operations": "3.0.2", + "@graphql-codegen/typescript-urql": "^3.7.3", + "@graphql-codegen/urql-introspection": "2.2.1", + "@graphql-typed-document-node/core": "^3.1.2", "@types/node": "^18.7.16", "@types/react": "^18.0.19", "@types/react-dom": "^18.0.6", diff --git a/apps/taxes/package.json b/apps/taxes/package.json index 7fc4132..fb474ba 100644 --- a/apps/taxes/package.json +++ b/apps/taxes/package.json @@ -48,14 +48,15 @@ "zod": "^3.20.2" }, "devDependencies": { - "@graphql-codegen/cli": "2.13.3", - "@graphql-codegen/introspection": "2.2.1", - "@graphql-codegen/typed-document-node": "^2.3.3", - "@graphql-codegen/typescript": "2.7.3", - "@graphql-codegen/typescript-operations": "2.5.3", - "@graphql-codegen/typescript-urql": "^3.7.0", + "@graphql-codegen/cli": "3.2.2", + "@graphql-codegen/introspection": "3.0.1", + "@graphql-codegen/schema-ast": "^3.0.1", + "@graphql-codegen/typed-document-node": "3.0.2", + "@graphql-codegen/typescript": "3.0.2", + "@graphql-codegen/typescript-operations": "3.0.2", + "@graphql-codegen/typescript-urql": "^3.7.3", "@graphql-codegen/urql-introspection": "2.2.1", - "@graphql-typed-document-node/core": "^3.1.1", + "@graphql-typed-document-node/core": "^3.1.2", "@testing-library/react": "^13.4.0", "@testing-library/react-hooks": "^8.0.1", "@types/node": "^18.8.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b93e7e9..4cfb43e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -24,11 +24,12 @@ importers: apps/data-importer: specifiers: - '@graphql-codegen/cli': 2.13.3 - '@graphql-codegen/introspection': 2.2.1 - '@graphql-codegen/typed-document-node': ^2.3.3 - '@graphql-codegen/typescript': 2.7.3 - '@graphql-codegen/typescript-operations': 2.5.3 + '@graphql-codegen/cli': 3.2.2 + '@graphql-codegen/introspection': 3.0.1 + '@graphql-codegen/schema-ast': ^3.0.1 + '@graphql-codegen/typed-document-node': 3.0.2 + '@graphql-codegen/typescript': 3.0.2 + '@graphql-codegen/typescript-operations': 3.0.2 '@graphql-codegen/typescript-urql': ^3.7.0 '@graphql-codegen/urql-introspection': 2.2.1 '@graphql-typed-document-node/core': ^3.1.1 @@ -92,11 +93,12 @@ importers: vitest: 0.28.4_jsdom@20.0.3 zod: 3.20.2 devDependencies: - '@graphql-codegen/cli': 2.13.3_d3dx4krdt4fsynqrp5lqxelwe4 - '@graphql-codegen/introspection': 2.2.1_graphql@16.6.0 - '@graphql-codegen/typed-document-node': 2.3.13_graphql@16.6.0 - '@graphql-codegen/typescript': 2.7.3_graphql@16.6.0 - '@graphql-codegen/typescript-operations': 2.5.3_graphql@16.6.0 + '@graphql-codegen/cli': 3.2.2_d3dx4krdt4fsynqrp5lqxelwe4 + '@graphql-codegen/introspection': 3.0.1_graphql@16.6.0 + '@graphql-codegen/schema-ast': 3.0.1_graphql@16.6.0 + '@graphql-codegen/typed-document-node': 3.0.2_graphql@16.6.0 + '@graphql-codegen/typescript': 3.0.2_graphql@16.6.0 + '@graphql-codegen/typescript-operations': 3.0.2_graphql@16.6.0 '@graphql-codegen/typescript-urql': 3.7.3_sy4knu3obj4ys7pjcqbyfxmqle '@graphql-codegen/urql-introspection': 2.2.1_graphql@16.6.0 '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 @@ -113,14 +115,15 @@ importers: apps/emails-and-messages: specifiers: - '@graphql-codegen/cli': 2.13.3 - '@graphql-codegen/introspection': 2.2.1 - '@graphql-codegen/typed-document-node': ^2.3.3 - '@graphql-codegen/typescript': 2.7.3 - '@graphql-codegen/typescript-operations': 2.5.3 - '@graphql-codegen/typescript-urql': ^3.7.0 + '@graphql-codegen/cli': 3.2.2 + '@graphql-codegen/introspection': 3.0.1 + '@graphql-codegen/schema-ast': ^3.0.1 + '@graphql-codegen/typed-document-node': 3.0.2 + '@graphql-codegen/typescript': 3.0.2 + '@graphql-codegen/typescript-operations': 3.0.2 + '@graphql-codegen/typescript-urql': ^3.7.3 '@graphql-codegen/urql-introspection': 2.2.1 - '@graphql-typed-document-node/core': ^3.1.1 + '@graphql-typed-document-node/core': ^3.1.2 '@material-ui/core': ^4.12.4 '@material-ui/icons': ^4.11.3 '@material-ui/lab': 4.0.0-alpha.61 @@ -213,14 +216,15 @@ importers: vitest: 0.27.3_jsdom@20.0.3 zod: 3.20.2 devDependencies: - '@graphql-codegen/cli': 2.13.3_d3dx4krdt4fsynqrp5lqxelwe4 - '@graphql-codegen/introspection': 2.2.1_graphql@16.6.0 - '@graphql-codegen/typed-document-node': 2.3.13_graphql@16.6.0 - '@graphql-codegen/typescript': 2.7.3_graphql@16.6.0 - '@graphql-codegen/typescript-operations': 2.5.3_graphql@16.6.0 + '@graphql-codegen/cli': 3.2.2_d3dx4krdt4fsynqrp5lqxelwe4 + '@graphql-codegen/introspection': 3.0.1_graphql@16.6.0 + '@graphql-codegen/schema-ast': 3.0.1_graphql@16.6.0 + '@graphql-codegen/typed-document-node': 3.0.2_graphql@16.6.0 + '@graphql-codegen/typescript': 3.0.2_graphql@16.6.0 + '@graphql-codegen/typescript-operations': 3.0.2_graphql@16.6.0 '@graphql-codegen/typescript-urql': 3.7.3_sy4knu3obj4ys7pjcqbyfxmqle '@graphql-codegen/urql-introspection': 2.2.1_graphql@16.6.0 - '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 + '@graphql-typed-document-node/core': 3.1.2_graphql@16.6.0 '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y '@testing-library/react-hooks': 8.0.1_5ndqzdd6t4rivxsukjv3i3ak2q '@types/html-to-text': 9.0.0 @@ -238,14 +242,15 @@ importers: apps/invoices: specifiers: - '@graphql-codegen/cli': 2.13.3 - '@graphql-codegen/introspection': 2.2.1 - '@graphql-codegen/typed-document-node': ^2.3.3 - '@graphql-codegen/typescript': 2.7.3 - '@graphql-codegen/typescript-operations': 2.5.3 - '@graphql-codegen/typescript-urql': ^3.7.0 + '@graphql-codegen/cli': 3.2.2 + '@graphql-codegen/introspection': 3.0.1 + '@graphql-codegen/schema-ast': ^3.0.1 + '@graphql-codegen/typed-document-node': 3.0.2 + '@graphql-codegen/typescript': 3.0.2 + '@graphql-codegen/typescript-operations': 3.0.2 + '@graphql-codegen/typescript-urql': ^3.7.3 '@graphql-codegen/urql-introspection': 2.2.1 - '@graphql-typed-document-node/core': ^3.1.1 + '@graphql-typed-document-node/core': ^3.1.2 '@material-ui/core': ^4.12.4 '@material-ui/icons': ^4.11.3 '@material-ui/lab': 4.0.0-alpha.61 @@ -321,14 +326,15 @@ importers: usehooks-ts: 2.9.1_biqbaboplfbrettd7655fr4n2y zod: 3.20.2 devDependencies: - '@graphql-codegen/cli': 2.13.3_d3dx4krdt4fsynqrp5lqxelwe4 - '@graphql-codegen/introspection': 2.2.1_graphql@16.6.0 - '@graphql-codegen/typed-document-node': 2.3.13_graphql@16.6.0 - '@graphql-codegen/typescript': 2.7.3_graphql@16.6.0 - '@graphql-codegen/typescript-operations': 2.5.3_graphql@16.6.0 + '@graphql-codegen/cli': 3.2.2_d3dx4krdt4fsynqrp5lqxelwe4 + '@graphql-codegen/introspection': 3.0.1_graphql@16.6.0 + '@graphql-codegen/schema-ast': 3.0.1_graphql@16.6.0 + '@graphql-codegen/typed-document-node': 3.0.2_graphql@16.6.0 + '@graphql-codegen/typescript': 3.0.2_graphql@16.6.0 + '@graphql-codegen/typescript-operations': 3.0.2_graphql@16.6.0 '@graphql-codegen/typescript-urql': 3.7.3_sy4knu3obj4ys7pjcqbyfxmqle '@graphql-codegen/urql-introspection': 2.2.1_graphql@16.6.0 - '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 + '@graphql-typed-document-node/core': 3.1.2_graphql@16.6.0 '@types/node': 18.13.0 '@types/react': 18.0.27 '@types/react-dom': 18.0.10 @@ -345,14 +351,15 @@ importers: apps/klaviyo: specifiers: - '@graphql-codegen/cli': 2.7.0 - '@graphql-codegen/introspection': 2.1.1 - '@graphql-codegen/typed-document-node': ^2.2.14 - '@graphql-codegen/typescript': 2.6.0 - '@graphql-codegen/typescript-operations': 2.4.3 - '@graphql-codegen/typescript-urql': ^3.5.13 - '@graphql-codegen/urql-introspection': 2.1.1 - '@graphql-typed-document-node/core': ^3.1.1 + '@graphql-codegen/cli': 3.2.2 + '@graphql-codegen/introspection': 3.0.1 + '@graphql-codegen/schema-ast': ^3.0.1 + '@graphql-codegen/typed-document-node': 3.0.2 + '@graphql-codegen/typescript': 3.0.2 + '@graphql-codegen/typescript-operations': 3.0.2 + '@graphql-codegen/typescript-urql': ^3.7.3 + '@graphql-codegen/urql-introspection': 2.2.1 + '@graphql-typed-document-node/core': ^3.1.2 '@material-ui/core': ^4.12.4 '@material-ui/icons': ^4.11.3 '@material-ui/lab': 4.0.0-alpha.61 @@ -401,14 +408,15 @@ importers: react-helmet: 6.1.0_react@18.2.0 urql: 3.0.3_onqnqwb3ubg5opvemcqf7c2qhy devDependencies: - '@graphql-codegen/cli': 2.7.0_74lnzcgk6cgqsdyscb5kbgak6q - '@graphql-codegen/introspection': 2.1.1_graphql@16.6.0 - '@graphql-codegen/typed-document-node': 2.3.13_graphql@16.6.0 - '@graphql-codegen/typescript': 2.6.0_graphql@16.6.0 - '@graphql-codegen/typescript-operations': 2.4.3_graphql@16.6.0 + '@graphql-codegen/cli': 3.2.2_74lnzcgk6cgqsdyscb5kbgak6q + '@graphql-codegen/introspection': 3.0.1_graphql@16.6.0 + '@graphql-codegen/schema-ast': 3.0.1_graphql@16.6.0 + '@graphql-codegen/typed-document-node': 3.0.2_graphql@16.6.0 + '@graphql-codegen/typescript': 3.0.2_graphql@16.6.0 + '@graphql-codegen/typescript-operations': 3.0.2_graphql@16.6.0 '@graphql-codegen/typescript-urql': 3.7.3_sy4knu3obj4ys7pjcqbyfxmqle - '@graphql-codegen/urql-introspection': 2.1.1_graphql@16.6.0 - '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 + '@graphql-codegen/urql-introspection': 2.2.1_graphql@16.6.0 + '@graphql-typed-document-node/core': 3.1.2_graphql@16.6.0 '@types/node': 18.0.1 '@types/react': 18.0.14 '@types/react-dom': 18.0.6 @@ -424,14 +432,15 @@ importers: apps/monitoring: specifiers: - '@graphql-codegen/cli': 2.13.3 - '@graphql-codegen/introspection': 2.2.1 - '@graphql-codegen/typed-document-node': ^2.3.3 - '@graphql-codegen/typescript': 2.7.3 - '@graphql-codegen/typescript-operations': 2.5.3 - '@graphql-codegen/typescript-urql': ^3.7.0 + '@graphql-codegen/cli': 3.2.2 + '@graphql-codegen/introspection': 3.0.1 + '@graphql-codegen/schema-ast': ^3.0.1 + '@graphql-codegen/typed-document-node': 3.0.2 + '@graphql-codegen/typescript': 3.0.2 + '@graphql-codegen/typescript-operations': 3.0.2 + '@graphql-codegen/typescript-urql': ^3.7.3 '@graphql-codegen/urql-introspection': 2.2.1 - '@graphql-typed-document-node/core': ^3.1.1 + '@graphql-typed-document-node/core': ^3.1.2 '@material-ui/core': ^4.12.4 '@material-ui/icons': ^4.11.3 '@material-ui/lab': 4.0.0-alpha.61 @@ -483,14 +492,15 @@ importers: vite: 4.1.1_@types+node@18.13.0 vitest: 0.27.3_jsdom@20.0.3 devDependencies: - '@graphql-codegen/cli': 2.13.3_d3dx4krdt4fsynqrp5lqxelwe4 - '@graphql-codegen/introspection': 2.2.1_graphql@16.6.0 - '@graphql-codegen/typed-document-node': 2.3.13_graphql@16.6.0 - '@graphql-codegen/typescript': 2.7.3_graphql@16.6.0 - '@graphql-codegen/typescript-operations': 2.5.3_graphql@16.6.0 + '@graphql-codegen/cli': 3.2.2_d3dx4krdt4fsynqrp5lqxelwe4 + '@graphql-codegen/introspection': 3.0.1_graphql@16.6.0 + '@graphql-codegen/schema-ast': 3.0.1_graphql@16.6.0 + '@graphql-codegen/typed-document-node': 3.0.2_graphql@16.6.0 + '@graphql-codegen/typescript': 3.0.2_graphql@16.6.0 + '@graphql-codegen/typescript-operations': 3.0.2_graphql@16.6.0 '@graphql-codegen/typescript-urql': 3.7.3_sy4knu3obj4ys7pjcqbyfxmqle '@graphql-codegen/urql-introspection': 2.2.1_graphql@16.6.0 - '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 + '@graphql-typed-document-node/core': 3.1.2_graphql@16.6.0 '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y '@testing-library/react-hooks': 8.0.1_5ndqzdd6t4rivxsukjv3i3ak2q '@types/node': 18.13.0 @@ -505,14 +515,15 @@ importers: apps/products-feed: specifiers: - '@graphql-codegen/cli': 2.13.3 - '@graphql-codegen/introspection': 2.2.1 - '@graphql-codegen/typed-document-node': ^2.3.3 - '@graphql-codegen/typescript': 2.7.3 - '@graphql-codegen/typescript-operations': 2.5.3 - '@graphql-codegen/typescript-urql': ^3.7.0 + '@graphql-codegen/cli': 3.2.2 + '@graphql-codegen/introspection': 3.0.1 + '@graphql-codegen/schema-ast': ^3.0.1 + '@graphql-codegen/typed-document-node': 3.0.2 + '@graphql-codegen/typescript': 3.0.2 + '@graphql-codegen/typescript-operations': 3.0.2 + '@graphql-codegen/typescript-urql': ^3.7.3 '@graphql-codegen/urql-introspection': 2.2.1 - '@graphql-typed-document-node/core': ^3.1.1 + '@graphql-typed-document-node/core': ^3.1.2 '@material-ui/core': ^4.12.4 '@material-ui/icons': ^4.11.3 '@material-ui/lab': 4.0.0-alpha.61 @@ -588,14 +599,15 @@ importers: vitest: 0.27.3_jsdom@20.0.3 zod: 3.20.2 devDependencies: - '@graphql-codegen/cli': 2.13.3_d3dx4krdt4fsynqrp5lqxelwe4 - '@graphql-codegen/introspection': 2.2.1_graphql@16.6.0 - '@graphql-codegen/typed-document-node': 2.3.13_graphql@16.6.0 - '@graphql-codegen/typescript': 2.7.3_graphql@16.6.0 - '@graphql-codegen/typescript-operations': 2.5.3_graphql@16.6.0 + '@graphql-codegen/cli': 3.2.2_d3dx4krdt4fsynqrp5lqxelwe4 + '@graphql-codegen/introspection': 3.0.1_graphql@16.6.0 + '@graphql-codegen/schema-ast': 3.0.1_graphql@16.6.0 + '@graphql-codegen/typed-document-node': 3.0.2_graphql@16.6.0 + '@graphql-codegen/typescript': 3.0.2_graphql@16.6.0 + '@graphql-codegen/typescript-operations': 3.0.2_graphql@16.6.0 '@graphql-codegen/typescript-urql': 3.7.3_sy4knu3obj4ys7pjcqbyfxmqle '@graphql-codegen/urql-introspection': 2.2.1_graphql@16.6.0 - '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 + '@graphql-typed-document-node/core': 3.1.2_graphql@16.6.0 '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y '@testing-library/react-hooks': 8.0.1_5ndqzdd6t4rivxsukjv3i3ak2q '@types/node': 18.13.0 @@ -610,14 +622,15 @@ importers: apps/search: specifiers: - '@graphql-codegen/cli': 2.13.11 - '@graphql-codegen/introspection': 2.2.1 - '@graphql-codegen/typed-document-node': ^2.3.6 - '@graphql-codegen/typescript': 2.8.1 - '@graphql-codegen/typescript-operations': 2.5.6 + '@graphql-codegen/cli': 3.2.2 + '@graphql-codegen/introspection': 3.0.1 + '@graphql-codegen/schema-ast': ^3.0.1 + '@graphql-codegen/typed-document-node': 3.0.2 + '@graphql-codegen/typescript': 3.0.2 + '@graphql-codegen/typescript-operations': 3.0.2 '@graphql-codegen/typescript-urql': ^3.7.3 '@graphql-codegen/urql-introspection': 2.2.1 - '@graphql-typed-document-node/core': ^3.1.1 + '@graphql-typed-document-node/core': ^3.1.2 '@material-ui/core': ^4.12.4 '@material-ui/icons': ^4.11.3 '@material-ui/lab': 4.0.0-alpha.61 @@ -677,14 +690,15 @@ importers: react-query: 3.39.3_biqbaboplfbrettd7655fr4n2y urql: 3.0.3_onqnqwb3ubg5opvemcqf7c2qhy devDependencies: - '@graphql-codegen/cli': 2.13.11_tlz2ma6byvlbw5iffqokhee6bi - '@graphql-codegen/introspection': 2.2.1_graphql@16.6.0 - '@graphql-codegen/typed-document-node': 2.3.13_graphql@16.6.0 - '@graphql-codegen/typescript': 2.8.1_graphql@16.6.0 - '@graphql-codegen/typescript-operations': 2.5.6_graphql@16.6.0 + '@graphql-codegen/cli': 3.2.2_d3dx4krdt4fsynqrp5lqxelwe4 + '@graphql-codegen/introspection': 3.0.1_graphql@16.6.0 + '@graphql-codegen/schema-ast': 3.0.1_graphql@16.6.0 + '@graphql-codegen/typed-document-node': 3.0.2_graphql@16.6.0 + '@graphql-codegen/typescript': 3.0.2_graphql@16.6.0 + '@graphql-codegen/typescript-operations': 3.0.2_graphql@16.6.0 '@graphql-codegen/typescript-urql': 3.7.3_sy4knu3obj4ys7pjcqbyfxmqle '@graphql-codegen/urql-introspection': 2.2.1_graphql@16.6.0 - '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 + '@graphql-typed-document-node/core': 3.1.2_graphql@16.6.0 '@types/node': 18.13.0 '@types/react': 18.0.27 '@types/react-dom': 18.0.10 @@ -697,14 +711,15 @@ importers: apps/slack: specifiers: - '@graphql-codegen/cli': 2.7.0 - '@graphql-codegen/introspection': 2.1.1 - '@graphql-codegen/typed-document-node': ^2.2.14 - '@graphql-codegen/typescript': 2.6.0 - '@graphql-codegen/typescript-operations': 2.4.3 - '@graphql-codegen/typescript-urql': ^3.5.13 - '@graphql-codegen/urql-introspection': 2.1.1 - '@graphql-typed-document-node/core': ^3.1.1 + '@graphql-codegen/cli': 3.2.2 + '@graphql-codegen/introspection': 3.0.1 + '@graphql-codegen/schema-ast': ^3.0.1 + '@graphql-codegen/typed-document-node': 3.0.2 + '@graphql-codegen/typescript': 3.0.2 + '@graphql-codegen/typescript-operations': 3.0.2 + '@graphql-codegen/typescript-urql': ^3.7.3 + '@graphql-codegen/urql-introspection': 2.2.1 + '@graphql-typed-document-node/core': ^3.1.2 '@material-ui/core': ^4.12.4 '@material-ui/icons': ^4.11.3 '@material-ui/lab': 4.0.0-alpha.61 @@ -754,14 +769,15 @@ importers: urql: 3.0.3_onqnqwb3ubg5opvemcqf7c2qhy usehooks-ts: 2.9.1_biqbaboplfbrettd7655fr4n2y devDependencies: - '@graphql-codegen/cli': 2.7.0_d3dx4krdt4fsynqrp5lqxelwe4 - '@graphql-codegen/introspection': 2.1.1_graphql@16.6.0 - '@graphql-codegen/typed-document-node': 2.3.13_graphql@16.6.0 - '@graphql-codegen/typescript': 2.6.0_graphql@16.6.0 - '@graphql-codegen/typescript-operations': 2.4.3_graphql@16.6.0 + '@graphql-codegen/cli': 3.2.2_d3dx4krdt4fsynqrp5lqxelwe4 + '@graphql-codegen/introspection': 3.0.1_graphql@16.6.0 + '@graphql-codegen/schema-ast': 3.0.1_graphql@16.6.0 + '@graphql-codegen/typed-document-node': 3.0.2_graphql@16.6.0 + '@graphql-codegen/typescript': 3.0.2_graphql@16.6.0 + '@graphql-codegen/typescript-operations': 3.0.2_graphql@16.6.0 '@graphql-codegen/typescript-urql': 3.7.3_sy4knu3obj4ys7pjcqbyfxmqle - '@graphql-codegen/urql-introspection': 2.1.1_graphql@16.6.0 - '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 + '@graphql-codegen/urql-introspection': 2.2.1_graphql@16.6.0 + '@graphql-typed-document-node/core': 3.1.2_graphql@16.6.0 '@types/node': 18.13.0 '@types/react': 18.0.27 '@types/react-dom': 18.0.10 @@ -776,14 +792,15 @@ importers: apps/taxes: specifiers: - '@graphql-codegen/cli': 2.13.3 - '@graphql-codegen/introspection': 2.2.1 - '@graphql-codegen/typed-document-node': ^2.3.3 - '@graphql-codegen/typescript': 2.7.3 - '@graphql-codegen/typescript-operations': 2.5.3 - '@graphql-codegen/typescript-urql': ^3.7.0 + '@graphql-codegen/cli': 3.2.2 + '@graphql-codegen/introspection': 3.0.1 + '@graphql-codegen/schema-ast': ^3.0.1 + '@graphql-codegen/typed-document-node': 3.0.2 + '@graphql-codegen/typescript': 3.0.2 + '@graphql-codegen/typescript-operations': 3.0.2 + '@graphql-codegen/typescript-urql': ^3.7.3 '@graphql-codegen/urql-introspection': 2.2.1 - '@graphql-typed-document-node/core': ^3.1.1 + '@graphql-typed-document-node/core': ^3.1.2 '@hookform/resolvers': ^2.9.10 '@material-ui/core': ^4.12.4 '@material-ui/icons': ^4.11.3 @@ -861,14 +878,15 @@ importers: vitest: 0.25.8_jsdom@20.0.3 zod: 3.20.2 devDependencies: - '@graphql-codegen/cli': 2.13.3_d3dx4krdt4fsynqrp5lqxelwe4 - '@graphql-codegen/introspection': 2.2.1_graphql@16.6.0 - '@graphql-codegen/typed-document-node': 2.3.13_graphql@16.6.0 - '@graphql-codegen/typescript': 2.7.3_graphql@16.6.0 - '@graphql-codegen/typescript-operations': 2.5.3_graphql@16.6.0 + '@graphql-codegen/cli': 3.2.2_d3dx4krdt4fsynqrp5lqxelwe4 + '@graphql-codegen/introspection': 3.0.1_graphql@16.6.0 + '@graphql-codegen/schema-ast': 3.0.1_graphql@16.6.0 + '@graphql-codegen/typed-document-node': 3.0.2_graphql@16.6.0 + '@graphql-codegen/typescript': 3.0.2_graphql@16.6.0 + '@graphql-codegen/typescript-operations': 3.0.2_graphql@16.6.0 '@graphql-codegen/typescript-urql': 3.7.3_sy4knu3obj4ys7pjcqbyfxmqle '@graphql-codegen/urql-introspection': 2.2.1_graphql@16.6.0 - '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 + '@graphql-typed-document-node/core': 3.1.2_graphql@16.6.0 '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y '@testing-library/react-hooks': 8.0.1_5ndqzdd6t4rivxsukjv3i3ak2q '@types/node': 18.13.0 @@ -1839,13 +1857,6 @@ packages: human-id: 1.0.2 prettier: 2.8.4 - /@cspotcode/source-map-support/0.8.1: - resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} - engines: {node: '>=12'} - dependencies: - '@jridgewell/trace-mapping': 0.3.9 - dev: true - /@emotion/babel-plugin/11.10.5: resolution: {integrity: sha512-xE7/hyLHJac7D2Ve9dKroBBZqBT7WuPQmWcq7HSGb84sUuP4mlOWoB8dvVfD9yk5DHkU1m6RW7xSoDtnQHNQeA==} peerDependencies: @@ -2224,8 +2235,8 @@ packages: - '@types/react' dev: false - /@graphql-codegen/cli/2.13.11_tlz2ma6byvlbw5iffqokhee6bi: - resolution: {integrity: sha512-PJF36a1i6M7Btj1kB4PWWzBUO3u2BJzsd/6KXxRmEugcxrbaCnbTDDktopy0CZYKdqaFbXaowwbRY8Tk8DV99Q==} + /@graphql-codegen/cli/3.2.2_74lnzcgk6cgqsdyscb5kbgak6q: + resolution: {integrity: sha512-u+dm/SW1heLnUL4Tyf5Uv0AxOFhTCmUPHKwRLq2yE8MPhv7+Ti4vxxUP/XGoaMNRuHlN37wLI7tpFLV1Hhm22Q==} hasBin: true 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 @@ -2233,116 +2244,8 @@ packages: '@babel/generator': 7.20.14 '@babel/template': 7.20.7 '@babel/types': 7.20.7 - '@graphql-codegen/core': 2.6.5_graphql@16.6.0 - '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 - '@graphql-tools/apollo-engine-loader': 7.3.25_d3dx4krdt4fsynqrp5lqxelwe4 - '@graphql-tools/code-file-loader': 7.3.20_graphql@16.6.0 - '@graphql-tools/git-loader': 7.2.19_graphql@16.6.0 - '@graphql-tools/github-loader': 7.3.26_d3dx4krdt4fsynqrp5lqxelwe4 - '@graphql-tools/graphql-file-loader': 7.5.16_graphql@16.6.0 - '@graphql-tools/json-file-loader': 7.4.17_graphql@16.6.0 - '@graphql-tools/load': 7.8.0_graphql@16.6.0 - '@graphql-tools/prisma-loader': 7.2.62_d3dx4krdt4fsynqrp5lqxelwe4 - '@graphql-tools/url-loader': 7.17.11_d3dx4krdt4fsynqrp5lqxelwe4 - '@graphql-tools/utils': 8.13.1_graphql@16.6.0 - '@whatwg-node/fetch': 0.3.2 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - chokidar: 3.5.3 - cosmiconfig: 7.1.0 - cosmiconfig-typescript-loader: 4.1.1_q46qzkzt3jm3kzr7pfkqvdwby4 - debounce: 1.2.1 - detect-indent: 6.1.0 - graphql: 16.6.0 - graphql-config: 4.3.6_tlz2ma6byvlbw5iffqokhee6bi - inquirer: 8.2.5 - is-glob: 4.0.3 - json-to-pretty-yaml: 1.2.2 - listr2: 4.0.5 - log-symbols: 4.1.0 - mkdirp: 1.0.4 - shell-quote: 1.8.0 - string-env-interpolation: 1.0.1 - ts-log: 2.2.5 - tslib: 2.5.0 - yaml: 1.10.2 - yargs: 17.6.2 - transitivePeerDependencies: - - '@babel/core' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - bufferutil - - encoding - - enquirer - - supports-color - - ts-node - - typescript - - utf-8-validate - dev: true - - /@graphql-codegen/cli/2.13.3_d3dx4krdt4fsynqrp5lqxelwe4: - resolution: {integrity: sha512-nhSPc79Ieov7qz4XDgGzkxmAv2EQY+KxeBzcOL2HhnfbVZZLXa/B0TGE4B9lAbz/HAYwWzwv0YX7zg8UFkhzig==} - hasBin: true - 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 - dependencies: - '@babel/generator': 7.20.14 - '@babel/template': 7.20.7 - '@babel/types': 7.20.7 - '@graphql-codegen/core': 2.6.2_graphql@16.6.0 - '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 - '@graphql-tools/apollo-engine-loader': 7.3.25_d3dx4krdt4fsynqrp5lqxelwe4 - '@graphql-tools/code-file-loader': 7.3.20_graphql@16.6.0 - '@graphql-tools/git-loader': 7.2.19_graphql@16.6.0 - '@graphql-tools/github-loader': 7.3.26_d3dx4krdt4fsynqrp5lqxelwe4 - '@graphql-tools/graphql-file-loader': 7.5.16_graphql@16.6.0 - '@graphql-tools/json-file-loader': 7.4.17_graphql@16.6.0 - '@graphql-tools/load': 7.8.12_graphql@16.6.0 - '@graphql-tools/prisma-loader': 7.2.62_d3dx4krdt4fsynqrp5lqxelwe4 - '@graphql-tools/url-loader': 7.17.11_d3dx4krdt4fsynqrp5lqxelwe4 - '@graphql-tools/utils': 8.13.1_graphql@16.6.0 - '@whatwg-node/fetch': 0.3.2 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - chokidar: 3.5.3 - cosmiconfig: 7.1.0 - cosmiconfig-typescript-swc-loader: 0.0.2 - debounce: 1.2.1 - detect-indent: 6.1.0 - graphql: 16.6.0 - graphql-config: 4.4.1_d3dx4krdt4fsynqrp5lqxelwe4 - inquirer: 8.2.5 - is-glob: 4.0.3 - json-to-pretty-yaml: 1.2.2 - listr2: 4.0.5 - log-symbols: 4.1.0 - mkdirp: 1.0.4 - string-env-interpolation: 1.0.1 - ts-log: 2.2.5 - tslib: 2.5.0 - yaml: 1.10.2 - yargs: 17.6.2 - transitivePeerDependencies: - - '@babel/core' - - '@types/node' - - bufferutil - - cosmiconfig-toml-loader - - cosmiconfig-typescript-loader - - encoding - - enquirer - - supports-color - - utf-8-validate - dev: true - - /@graphql-codegen/cli/2.7.0_74lnzcgk6cgqsdyscb5kbgak6q: - resolution: {integrity: sha512-qlBcS6jGfZ/xWXwqiyRLHGRuLC9gUdF8AwGHN7LdAYEP5MjL7pIXb02W5JuvMn47rrvr2Q22H9ECppZX65oSAg==} - hasBin: true - 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 - dependencies: - '@graphql-codegen/core': 2.5.1_graphql@16.6.0 - '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 + '@graphql-codegen/core': 3.1.0_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0 '@graphql-tools/apollo-engine-loader': 7.3.25_74lnzcgk6cgqsdyscb5kbgak6q '@graphql-tools/code-file-loader': 7.3.20_graphql@16.6.0 '@graphql-tools/git-loader': 7.2.19_graphql@16.6.0 @@ -2352,28 +2255,26 @@ packages: '@graphql-tools/load': 7.8.12_graphql@16.6.0 '@graphql-tools/prisma-loader': 7.2.62_74lnzcgk6cgqsdyscb5kbgak6q '@graphql-tools/url-loader': 7.17.11_74lnzcgk6cgqsdyscb5kbgak6q - '@graphql-tools/utils': 8.13.1_graphql@16.6.0 - ansi-escapes: 4.3.2 + '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@parcel/watcher': 2.1.0 + '@whatwg-node/fetch': 0.8.2_@types+node@18.0.1 chalk: 4.1.2 - change-case-all: 1.0.14 - chokidar: 3.5.3 - common-tags: 1.8.2 cosmiconfig: 7.1.0 debounce: 1.2.1 detect-indent: 6.1.0 graphql: 16.6.0 - graphql-config: 4.4.1_74lnzcgk6cgqsdyscb5kbgak6q + graphql-config: 4.5.0_74lnzcgk6cgqsdyscb5kbgak6q inquirer: 8.2.5 is-glob: 4.0.3 + jiti: 1.17.2 json-to-pretty-yaml: 1.2.2 - latest-version: 5.1.0 - listr: 0.14.3 - listr-update-renderer: 0.5.0_listr@0.14.3 + listr2: 4.0.5 log-symbols: 4.1.0 - mkdirp: 1.0.4 + micromatch: 4.0.5 + shell-quote: 1.8.0 string-env-interpolation: 1.0.1 ts-log: 2.2.5 - wrap-ansi: 7.0.0 + tslib: 2.5.0 yaml: 1.10.2 yargs: 17.6.2 transitivePeerDependencies: @@ -2381,22 +2282,23 @@ packages: - '@types/node' - bufferutil - cosmiconfig-toml-loader - - cosmiconfig-typescript-loader - encoding + - enquirer - supports-color - utf-8-validate - - zen-observable - - zenObservable dev: true - /@graphql-codegen/cli/2.7.0_d3dx4krdt4fsynqrp5lqxelwe4: - resolution: {integrity: sha512-qlBcS6jGfZ/xWXwqiyRLHGRuLC9gUdF8AwGHN7LdAYEP5MjL7pIXb02W5JuvMn47rrvr2Q22H9ECppZX65oSAg==} + /@graphql-codegen/cli/3.2.2_d3dx4krdt4fsynqrp5lqxelwe4: + resolution: {integrity: sha512-u+dm/SW1heLnUL4Tyf5Uv0AxOFhTCmUPHKwRLq2yE8MPhv7+Ti4vxxUP/XGoaMNRuHlN37wLI7tpFLV1Hhm22Q==} hasBin: true 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 dependencies: - '@graphql-codegen/core': 2.5.1_graphql@16.6.0 - '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 + '@babel/generator': 7.20.14 + '@babel/template': 7.20.7 + '@babel/types': 7.20.7 + '@graphql-codegen/core': 3.1.0_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0 '@graphql-tools/apollo-engine-loader': 7.3.25_d3dx4krdt4fsynqrp5lqxelwe4 '@graphql-tools/code-file-loader': 7.3.20_graphql@16.6.0 '@graphql-tools/git-loader': 7.2.19_graphql@16.6.0 @@ -2406,28 +2308,26 @@ packages: '@graphql-tools/load': 7.8.12_graphql@16.6.0 '@graphql-tools/prisma-loader': 7.2.62_d3dx4krdt4fsynqrp5lqxelwe4 '@graphql-tools/url-loader': 7.17.11_d3dx4krdt4fsynqrp5lqxelwe4 - '@graphql-tools/utils': 8.13.1_graphql@16.6.0 - ansi-escapes: 4.3.2 + '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@parcel/watcher': 2.1.0 + '@whatwg-node/fetch': 0.8.2_@types+node@18.13.0 chalk: 4.1.2 - change-case-all: 1.0.14 - chokidar: 3.5.3 - common-tags: 1.8.2 cosmiconfig: 7.1.0 debounce: 1.2.1 detect-indent: 6.1.0 graphql: 16.6.0 - graphql-config: 4.4.1_d3dx4krdt4fsynqrp5lqxelwe4 + graphql-config: 4.5.0_d3dx4krdt4fsynqrp5lqxelwe4 inquirer: 8.2.5 is-glob: 4.0.3 + jiti: 1.17.2 json-to-pretty-yaml: 1.2.2 - latest-version: 5.1.0 - listr: 0.14.3 - listr-update-renderer: 0.5.0_listr@0.14.3 + listr2: 4.0.5 log-symbols: 4.1.0 - mkdirp: 1.0.4 + micromatch: 4.0.5 + shell-quote: 1.8.0 string-env-interpolation: 1.0.1 ts-log: 2.2.5 - wrap-ansi: 7.0.0 + tslib: 2.5.0 yaml: 1.10.2 yargs: 17.6.2 transitivePeerDependencies: @@ -2435,69 +2335,33 @@ packages: - '@types/node' - bufferutil - cosmiconfig-toml-loader - - cosmiconfig-typescript-loader - encoding + - enquirer - supports-color - utf-8-validate - - zen-observable - - zenObservable dev: true - /@graphql-codegen/core/2.5.1_graphql@16.6.0: - resolution: {integrity: sha512-alctBVl2hMnBXDLwkgmnFPrZVIiBDsWJSmxJcM4GKg1PB23+xuov35GE47YAyAhQItE1B1fbYnbb1PtGiDZ4LA==} + /@graphql-codegen/core/3.1.0_graphql@16.6.0: + resolution: {integrity: sha512-DH1/yaR7oJE6/B+c6ZF2Tbdh7LixF1K8L+8BoSubjNyQ8pNwR4a70mvc1sv6H7qgp6y1bPQ9tKE+aazRRshysw==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 - '@graphql-tools/schema': 8.5.1_graphql@16.6.0 - '@graphql-tools/utils': 8.13.1_graphql@16.6.0 - graphql: 16.6.0 - tslib: 2.3.1 - dev: true - - /@graphql-codegen/core/2.6.2_graphql@16.6.0: - resolution: {integrity: sha512-58T5yf9nEfAhDwN1Vz1hImqpdJ/gGpCGUaroQ5tqskZPf7eZYYVkEXbtqRZZLx1MCCKwjWX4hMtTPpHhwKCkng==} - 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 - dependencies: - '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0 '@graphql-tools/schema': 9.0.16_graphql@16.6.0 - '@graphql-tools/utils': 8.13.1_graphql@16.6.0 + '@graphql-tools/utils': 9.2.1_graphql@16.6.0 graphql: 16.6.0 - tslib: 2.4.1 + tslib: 2.5.0 dev: true - /@graphql-codegen/core/2.6.5_graphql@16.6.0: - resolution: {integrity: sha512-oSbM8vINFxcV1GUasJTDIemMpEG1t6NkBG8odQCt/3ZExCYmoviHhG9vJB89QqJeU5W06qQB6SJn/dg/gv5Aqg==} + /@graphql-codegen/introspection/3.0.1_graphql@16.6.0: + resolution: {integrity: sha512-D6vJQTEL/np4EmeUHm5spLK59cr+AMXEoLRoTI+dagFzlHYDTfXZH6F7uhKaakxcj0SAQhIWKvGMggotUdEtyg==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 - '@graphql-tools/schema': 9.0.16_graphql@16.6.0 - '@graphql-tools/utils': 9.0.0_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0 + '@graphql-codegen/visitor-plugin-common': 3.0.2_graphql@16.6.0 graphql: 16.6.0 - tslib: 2.4.1 - dev: true - - /@graphql-codegen/introspection/2.1.1_graphql@16.6.0: - resolution: {integrity: sha512-O9zsy0IoFYDo37pBVF4pSvRMDx/AKdgOxyko4R/O+0DHEw9Nya/pQ3dbn+LDLj2n6X+xOXUBUfFvqhODTqU28w==} - 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 - dependencies: - '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 - graphql: 16.6.0 - tslib: 2.3.1 - dev: true - - /@graphql-codegen/introspection/2.2.1_graphql@16.6.0: - resolution: {integrity: sha512-083tu9rSLL0k9LrAyGt1AjGQI/O9gX3w1UliaufLc3mofDSt7iV04tT9VJRuk4IoBvyPZ/8YCs5zIpmt/GexPA==} - 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 - dependencies: - '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 2.13.8_graphql@16.6.0 - graphql: 16.6.0 - tslib: 2.4.1 + tslib: 2.5.0 transitivePeerDependencies: - encoding - supports-color @@ -2517,8 +2381,8 @@ packages: tslib: 2.4.1 dev: true - /@graphql-codegen/plugin-helpers/3.1.2_graphql@16.6.0: - resolution: {integrity: sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==} + /@graphql-codegen/plugin-helpers/4.1.0_graphql@16.6.0: + resolution: {integrity: sha512-xvSHJb9OGb5CODIls0AI1rCenLz+FuiaNPCsfHMCNsLDjOZK2u0jAQ9zUBdc/Wb+21YXZujBCc0Vm1QX+Zz0nw==} 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 dependencies: @@ -2528,79 +2392,47 @@ packages: graphql: 16.6.0 import-from: 4.0.0 lodash: 4.17.21 - tslib: 2.4.1 + tslib: 2.5.0 dev: true - /@graphql-codegen/schema-ast/2.6.1_graphql@16.6.0: - resolution: {integrity: sha512-5TNW3b1IHJjCh07D2yQNGDQzUpUl2AD+GVe1Dzjqyx/d2Fn0TPMxLsHsKPS4Plg4saO8FK/QO70wLsP7fdbQ1w==} + /@graphql-codegen/schema-ast/3.0.1_graphql@16.6.0: + resolution: {integrity: sha512-rTKTi4XiW4QFZnrEqetpiYEWVsOFNoiR/v3rY9mFSttXFbIwNXPme32EspTiGWmEEdHY8UuTDtZN3vEcs/31zw==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 3.1.2_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0 '@graphql-tools/utils': 9.2.1_graphql@16.6.0 graphql: 16.6.0 - tslib: 2.4.1 + tslib: 2.5.0 dev: true - /@graphql-codegen/typed-document-node/2.3.13_graphql@16.6.0: - resolution: {integrity: sha512-vt1hvBAbYTYUCXblks9KYwR5Ho16hWQljid5xgx77jeVufj5PjnWrOjJfEFKFx17VOM4CKHP8ryoeT4NyjYNWw==} + /@graphql-codegen/typed-document-node/3.0.2_graphql@16.6.0: + resolution: {integrity: sha512-RqX46y0GoMAcCfXjkUabOWpeSQ7tazpS5WyzWJNakpzXxNACx8NACaghU8zTEM+gjqtIp6YbFY/S92HQ34HbRQ==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 3.1.2_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 2.13.8_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0 + '@graphql-codegen/visitor-plugin-common': 3.0.2_graphql@16.6.0 auto-bind: 4.0.0 change-case-all: 1.0.15 graphql: 16.6.0 - tslib: 2.4.1 + tslib: 2.5.0 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/typescript-operations/2.4.3_graphql@16.6.0: - resolution: {integrity: sha512-MW9cU/zCAmfFAObwW23e+GrW3CoV9OX2gVm/V1565WGZXDQPUc5Y5IjdfGfunV4ApkgFDiHpF1Mz/AS55OErgw==} + /@graphql-codegen/typescript-operations/3.0.2_graphql@16.6.0: + resolution: {integrity: sha512-FYi5QcOsBZZvBKlzBQ+jpBCUxMo9g3fTYa2v1+rqooG6SiW/lQyk2CNL5tsYAt6TLmH3rws8rzSUil0DWNsflQ==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 - '@graphql-codegen/typescript': 2.8.1_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 2.10.0_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0 + '@graphql-codegen/typescript': 3.0.2_graphql@16.6.0 + '@graphql-codegen/visitor-plugin-common': 3.0.2_graphql@16.6.0 auto-bind: 4.0.0 graphql: 16.6.0 - tslib: 2.4.1 - transitivePeerDependencies: - - encoding - - supports-color - dev: true - - /@graphql-codegen/typescript-operations/2.5.3_graphql@16.6.0: - resolution: {integrity: sha512-s+pA+Erm0HeBb/D5cNrflwRM5KWhkiA5cbz4uA99l3fzFPveoQBPfRCBu0XAlJLP/kBDy64+o4B8Nfc7wdRtmA==} - 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 - dependencies: - '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 - '@graphql-codegen/typescript': 2.8.1_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 2.12.1_graphql@16.6.0 - auto-bind: 4.0.0 - graphql: 16.6.0 - tslib: 2.4.1 - transitivePeerDependencies: - - encoding - - supports-color - dev: true - - /@graphql-codegen/typescript-operations/2.5.6_graphql@16.6.0: - resolution: {integrity: sha512-7WqOsVMTUXf+tdt0jGOBuQINLYjPIGlcsnkzXQSPJ7rSGVj99VobVuwgmAeFmJctZ3lgwx3gjPZ0dyCIOBc2/A==} - 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 - dependencies: - '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 - '@graphql-codegen/typescript': 2.8.1_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 2.13.1_graphql@16.6.0 - auto-bind: 4.0.0 - graphql: 16.6.0 - tslib: 2.4.1 + tslib: 2.5.0 transitivePeerDependencies: - encoding - supports-color @@ -2623,65 +2455,22 @@ packages: - supports-color dev: true - /@graphql-codegen/typescript/2.6.0_graphql@16.6.0: - resolution: {integrity: sha512-f36ilg8J+wui0OhmQglIZ+2z4Ybc08Y7r7BlBDqfJ1F5X0zau0SlC7Hp2iCoCA0ucqZYtiUU/0n+/R8m1cTrQQ==} + /@graphql-codegen/typescript/3.0.2_graphql@16.6.0: + resolution: {integrity: sha512-qD6QkTB+2eJmIaZ6Tihv6HRz7daWWLz9uw5vwCmPeZN6XL2RINZGLkR7D8BQzLDlNGMrpQ4SeSM9o3ZALSCIuQ==} peerDependencies: graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 - '@graphql-codegen/schema-ast': 2.6.1_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 2.10.0_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0 + '@graphql-codegen/schema-ast': 3.0.1_graphql@16.6.0 + '@graphql-codegen/visitor-plugin-common': 3.0.2_graphql@16.6.0 auto-bind: 4.0.0 graphql: 16.6.0 - tslib: 2.4.1 + tslib: 2.5.0 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/typescript/2.7.3_graphql@16.6.0: - resolution: {integrity: sha512-EzX/acijXtbG/AwPzho2ZZWaNo00+xAbsRDP+vnT2PwQV3AYq3/5bFvjq1XfAGWbTntdmlYlIwC9hf5bI85WVA==} - peerDependencies: - graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - dependencies: - '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 - '@graphql-codegen/schema-ast': 2.6.1_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 2.12.1_graphql@16.6.0 - auto-bind: 4.0.0 - graphql: 16.6.0 - tslib: 2.4.1 - transitivePeerDependencies: - - encoding - - supports-color - dev: true - - /@graphql-codegen/typescript/2.8.1_graphql@16.6.0: - resolution: {integrity: sha512-kweV1DOOH2blvMheVL55TT0s9bxkmF/zijN9mdk9pRD20i/rI/46qbh8fNKqy/PV12vZOmZGNL6tigdghG2bqg==} - peerDependencies: - graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - dependencies: - '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 - '@graphql-codegen/schema-ast': 2.6.1_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 2.13.1_graphql@16.6.0 - auto-bind: 4.0.0 - graphql: 16.6.0 - tslib: 2.4.1 - transitivePeerDependencies: - - encoding - - supports-color - dev: true - - /@graphql-codegen/urql-introspection/2.1.1_graphql@16.6.0: - resolution: {integrity: sha512-XLDLxyK8N3x3fvbkMoDb6lYPX2/rx3LiYT8dBeZYrBH1i9Tu0kfcEg0GeqNeLxiwnch9PZIC3O+gzROqP+rveA==} - 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 - dependencies: - '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 - '@urql/introspection': 0.3.1_graphql@16.6.0 - graphql: 16.6.0 - tslib: 2.3.1 - dev: true - /@graphql-codegen/urql-introspection/2.2.1_graphql@16.6.0: resolution: {integrity: sha512-/KjHSf4dQNoYZZ+G10b3lbw304ik9xHzRf/syNvoYehmwdYE5J7RnO1v1Cz78LDm2NEdsFas6vJHi0sJd/pOHg==} peerDependencies: @@ -2693,48 +2482,6 @@ packages: tslib: 2.4.1 dev: true - /@graphql-codegen/visitor-plugin-common/2.10.0_graphql@16.6.0: - resolution: {integrity: sha512-nWoxHKUdwOJCWV96Ks1x4EwYCWsZDJXB+2j6EQz5j27DzdxmQInZ86degaDCd3EgbwhMQEMtiZiPGFFDrgBkHA==} - 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 - dependencies: - '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 - '@graphql-tools/optimize': 1.3.1_graphql@16.6.0 - '@graphql-tools/relay-operation-optimizer': 6.5.17_graphql@16.6.0 - '@graphql-tools/utils': 8.13.1_graphql@16.6.0 - auto-bind: 4.0.0 - change-case-all: 1.0.14 - dependency-graph: 0.11.0 - graphql: 16.6.0 - graphql-tag: 2.12.6_graphql@16.6.0 - parse-filepath: 1.0.2 - tslib: 2.4.1 - transitivePeerDependencies: - - encoding - - supports-color - dev: true - - /@graphql-codegen/visitor-plugin-common/2.12.1_graphql@16.6.0: - resolution: {integrity: sha512-dIUrX4+i/uazyPQqXyQ8cqykgNFe1lknjnfDWFo0gnk2W8+ruuL2JpSrj/7efzFHxbYGMQrCABDCUTVLi3DcVA==} - 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 - dependencies: - '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 - '@graphql-tools/optimize': 1.3.1_graphql@16.6.0 - '@graphql-tools/relay-operation-optimizer': 6.5.17_graphql@16.6.0 - '@graphql-tools/utils': 8.13.1_graphql@16.6.0 - auto-bind: 4.0.0 - change-case-all: 1.0.14 - dependency-graph: 0.11.0 - graphql: 16.6.0 - graphql-tag: 2.12.6_graphql@16.6.0 - parse-filepath: 1.0.2 - tslib: 2.4.1 - transitivePeerDependencies: - - encoding - - supports-color - dev: true - /@graphql-codegen/visitor-plugin-common/2.13.1_graphql@16.6.0: resolution: {integrity: sha512-mD9ufZhDGhyrSaWQGrU1Q1c5f01TeWtSWy/cDwXYjJcHIj1Y/DG2x0tOflEfCvh5WcnmHNIw4lzDsg1W7iFJEg==} peerDependencies: @@ -2756,12 +2503,12 @@ packages: - supports-color dev: true - /@graphql-codegen/visitor-plugin-common/2.13.8_graphql@16.6.0: - resolution: {integrity: sha512-IQWu99YV4wt8hGxIbBQPtqRuaWZhkQRG2IZKbMoSvh0vGeWb3dB0n0hSgKaOOxDY+tljtOf9MTcUYvJslQucMQ==} + /@graphql-codegen/visitor-plugin-common/3.0.2_graphql@16.6.0: + resolution: {integrity: sha512-dKblRFrB0Fdl3+nPlzlLBka+TN/EGwr/q09mwry0H58z3j6gXkMbsdPr+dc8MhgOV7w/8egRvSPIvd7m6eFCnw==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 3.1.2_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0 '@graphql-tools/optimize': 1.3.1_graphql@16.6.0 '@graphql-tools/relay-operation-optimizer': 6.5.17_graphql@16.6.0 '@graphql-tools/utils': 9.2.1_graphql@16.6.0 @@ -2771,7 +2518,7 @@ packages: graphql: 16.6.0 graphql-tag: 2.12.6_graphql@16.6.0 parse-filepath: 1.0.2 - tslib: 2.4.1 + tslib: 2.5.0 transitivePeerDependencies: - encoding - supports-color @@ -3039,18 +2786,6 @@ packages: unixify: 1.0.0 dev: true - /@graphql-tools/load/7.8.0_graphql@16.6.0: - resolution: {integrity: sha512-l4FGgqMW0VOqo+NMYizwV8Zh+KtvVqOf93uaLo9wJ3sS3y/egPCgxPMDJJ/ufQZG3oZ/0oWeKt68qop3jY0yZg==} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - dependencies: - '@graphql-tools/schema': 9.0.4_graphql@16.6.0 - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 - graphql: 16.6.0 - p-limit: 3.1.0 - tslib: 2.5.0 - dev: true - /@graphql-tools/load/7.8.12_graphql@16.6.0: resolution: {integrity: sha512-JwxgNS2c6i6oIdKttcbXns/lpKiyN7c6/MkkrJ9x2QE9rXk5HOhSJxRvPmOueCuAin1542xUrcDRGBXJ7thSig==} peerDependencies: @@ -3073,26 +2808,6 @@ packages: tslib: 2.5.0 dev: true - /@graphql-tools/merge/8.3.1_graphql@16.6.0: - resolution: {integrity: sha512-BMm99mqdNZbEYeTPK3it9r9S6rsZsQKtlqJsSBknAclXq2pGEfOxjcIZi+kBSkHZKPKCRrYDd5vY0+rUmIHVLg==} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - dependencies: - '@graphql-tools/utils': 8.9.0_graphql@16.6.0 - graphql: 16.6.0 - tslib: 2.5.0 - dev: true - - /@graphql-tools/merge/8.3.6_graphql@16.6.0: - resolution: {integrity: sha512-uUBokxXi89bj08P+iCvQk3Vew4vcfL5ZM6NTylWi8PIpoq4r5nJ625bRuN8h2uubEdRiH8ntN9M4xkd/j7AybQ==} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - dependencies: - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 - graphql: 16.6.0 - tslib: 2.5.0 - dev: true - /@graphql-tools/optimize/1.3.1_graphql@16.6.0: resolution: {integrity: sha512-5j5CZSRGWVobt4bgRRg7zhjPiSimk+/zIuColih8E8DxuFOaJ+t0qu7eZS5KXWBkjcd4BPNuhUPpNlEmHPqVRQ==} peerDependencies: @@ -3116,7 +2831,7 @@ packages: debug: 4.3.4 dotenv: 16.0.3 graphql: 16.6.0 - graphql-request: 5.1.0_graphql@16.6.0 + graphql-request: 5.2.0_graphql@16.6.0 http-proxy-agent: 5.0.0 https-proxy-agent: 5.0.1 isomorphic-fetch: 3.0.0 @@ -3149,7 +2864,7 @@ packages: debug: 4.3.4 dotenv: 16.0.3 graphql: 16.6.0 - graphql-request: 5.1.0_graphql@16.6.0 + graphql-request: 5.2.0_graphql@16.6.0 http-proxy-agent: 5.0.0 https-proxy-agent: 5.0.1 isomorphic-fetch: 3.0.0 @@ -3182,18 +2897,6 @@ packages: - supports-color dev: true - /@graphql-tools/schema/8.5.1_graphql@16.6.0: - resolution: {integrity: sha512-0Esilsh0P/qYcB5DKQpiKeQs/jevzIadNTaT0jeWklPMwNbT7yMX4EqZany7mbeRRlSRwMzNzL5olyFdffHBZg==} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - dependencies: - '@graphql-tools/merge': 8.3.1_graphql@16.6.0 - '@graphql-tools/utils': 8.9.0_graphql@16.6.0 - graphql: 16.6.0 - tslib: 2.5.0 - value-or-promise: 1.0.11 - dev: true - /@graphql-tools/schema/9.0.16_graphql@16.6.0: resolution: {integrity: sha512-kF+tbYPPf/6K2aHG3e1SWIbapDLQaqnIHVRG6ow3onkFoowwtKszvUyOASL6Krcv2x9bIMvd1UkvRf9OaoROQQ==} peerDependencies: @@ -3206,18 +2909,6 @@ packages: value-or-promise: 1.0.12 dev: true - /@graphql-tools/schema/9.0.4_graphql@16.6.0: - resolution: {integrity: sha512-B/b8ukjs18fq+/s7p97P8L1VMrwapYc3N2KvdG/uNThSazRRn8GsBK0Nr+FH+mVKiUfb4Dno79e3SumZVoHuOQ==} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - dependencies: - '@graphql-tools/merge': 8.3.6_graphql@16.6.0 - '@graphql-tools/utils': 8.12.0_graphql@16.6.0 - graphql: 16.6.0 - tslib: 2.5.0 - value-or-promise: 1.0.11 - dev: true - /@graphql-tools/url-loader/7.17.11_74lnzcgk6cgqsdyscb5kbgak6q: resolution: {integrity: sha512-zGTrdz5hVm/0+vLZJexhB/B4m95ZCP0eqD2QoNP0hsstaqTyn9u84kTtYUpbPlz7hAxZsdu+VcLaypE4qPGGGw==} peerDependencies: @@ -3270,15 +2961,6 @@ packages: - utf-8-validate dev: true - /@graphql-tools/utils/8.12.0_graphql@16.6.0: - resolution: {integrity: sha512-TeO+MJWGXjUTS52qfK4R8HiPoF/R7X+qmgtOYd8DTH0l6b+5Y/tlg5aGeUJefqImRq7nvi93Ms40k/Uz4D5CWw==} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - dependencies: - graphql: 16.6.0 - tslib: 2.5.0 - dev: true - /@graphql-tools/utils/8.13.1_graphql@16.6.0: resolution: {integrity: sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==} peerDependencies: @@ -3288,30 +2970,12 @@ packages: tslib: 2.5.0 dev: true - /@graphql-tools/utils/8.9.0_graphql@16.6.0: - resolution: {integrity: sha512-pjJIWH0XOVnYGXCqej8g/u/tsfV4LvLlj0eATKQu5zwnxd/TiTHq7Cg313qUPTFFHZ3PP5wJ15chYVtLDwaymg==} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - dependencies: - graphql: 16.6.0 - tslib: 2.5.0 - dev: true - - /@graphql-tools/utils/9.0.0_graphql@16.6.0: - resolution: {integrity: sha512-kaCwyWnURxMsYbxzkfylLqFFelu83jKk3BJOOy0GIuxEtgXVS9v7Y/tojljo69Q+jaZ2YxAi3+d8IpM+hx768A==} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - dependencies: - graphql: 16.6.0 - tslib: 2.5.0 - dev: true - /@graphql-tools/utils/9.2.1_graphql@16.6.0: resolution: {integrity: sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 + '@graphql-typed-document-node/core': 3.1.2_graphql@16.6.0 graphql: 16.6.0 tslib: 2.5.0 dev: true @@ -3337,6 +3001,14 @@ packages: graphql: 16.6.0 dev: true + /@graphql-typed-document-node/core/3.1.2_graphql@16.6.0: + resolution: {integrity: sha512-9anpBMM9mEgZN4wr2v8wHJI2/u5TnnggewRN6OlvXTTnuVyoY19X6rOv9XTqKRw6dcGKwZsBi8n0kDE2I5i4VA==} + 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 || ^17.0.0 + dependencies: + graphql: 16.6.0 + dev: true + /@handsontable/react/12.1.2_handsontable@12.1.2: resolution: {integrity: sha512-brXQJjTDVWDshyn6qHezRJlfFLH35x6/61slzQq+FhKoYvymDxI/Vt9hNvIOjFtrl+2Gb9tXkp/sih1zvlvqBg==} peerDependencies: @@ -3412,10 +3084,6 @@ packages: /@humanwhocodes/object-schema/1.2.1: resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} - /@iarna/toml/2.2.5: - resolution: {integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==} - dev: true - /@istanbuljs/schema/0.1.3: resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} engines: {node: '>=8'} @@ -3453,13 +3121,6 @@ packages: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.14 - /@jridgewell/trace-mapping/0.3.9: - resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} - dependencies: - '@jridgewell/resolve-uri': 3.1.0 - '@jridgewell/sourcemap-codec': 1.4.14 - dev: true - /@juggle/resize-observer/3.4.0: resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==} dev: false @@ -4401,6 +4062,17 @@ packages: '@nodelib/fs.scandir': 2.1.5 fastq: 1.15.0 + /@parcel/watcher/2.1.0: + resolution: {integrity: sha512-8s8yYjd19pDSsBpbkOHnT6Z2+UJSuLQx61pCFM0s5wSRvKCEMDjd/cHY3/GI1szHIWbpXpsJdg3V6ISGGx9xDw==} + engines: {node: '>= 10.0.0'} + requiresBuild: true + dependencies: + is-glob: 4.0.3 + micromatch: 4.0.5 + node-addon-api: 3.2.1 + node-gyp-build: 4.6.0 + dev: true + /@peculiar/asn1-schema/2.3.3: resolution: {integrity: sha512-6GptMYDMyWBHTUKndHaDsRZUO/XMSgIns2krxcm2L7SEExRHwawFvSwNBhqNPR9HJwv3MruAiF1bhN0we6j6GQ==} dependencies: @@ -4697,24 +4369,6 @@ packages: transitivePeerDependencies: - '@types/react' - /@samverschueren/stream-to-observable/0.3.1_rxjs@6.6.7: - resolution: {integrity: sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==} - engines: {node: '>=6'} - peerDependencies: - rxjs: '*' - zen-observable: '*' - peerDependenciesMeta: - rxjs: - optional: true - zen-observable: - optional: true - dependencies: - any-observable: 0.3.0_rxjs@6.6.7 - rxjs: 6.6.7 - transitivePeerDependencies: - - zenObservable - dev: true - /@selderee/plugin-htmlparser2/0.10.0: resolution: {integrity: sha512-gW69MEamZ4wk1OsOq1nG1jcyhXIQcnrsX5JwixVw/9xaiav8TCyjESAruu1Rz9yyInhgBXxkNwMeygKnN2uxNA==} dependencies: @@ -5050,118 +4704,6 @@ packages: - supports-color dev: false - /@sindresorhus/is/0.14.0: - resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} - engines: {node: '>=6'} - dev: true - - /@swc/core-darwin-arm64/1.3.32: - resolution: {integrity: sha512-o19bhlxuUgjUElm6i+QhXgZ0vD6BebiB/gQpK3en5aAwhOvinwr4sah3GqFXsQzz/prKVDuMkj9SW6F/Ug5hgg==} - engines: {node: '>=10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /@swc/core-darwin-x64/1.3.32: - resolution: {integrity: sha512-hVEGd+v5Afh+YekGADOGKwhuS4/AXk91nLuk7pmhWkk8ceQ1cfmah90kXjIXUlCe2G172MLRfHNWlZxr29E/Og==} - engines: {node: '>=10'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /@swc/core-linux-arm-gnueabihf/1.3.32: - resolution: {integrity: sha512-5X01WqI9EbJ69oHAOGlI08YqvEIXMfT/mCJ1UWDQBb21xWRE2W1yFAAeuqOLtiagLrXjPv/UKQ0S2gyWQR5AXQ==} - engines: {node: '>=10'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@swc/core-linux-arm64-gnu/1.3.32: - resolution: {integrity: sha512-PTJ6oPiutkNBg+m22bUUPa4tNuMmsgpSnsnv2wnWVOgK0lhvQT6bAPTUXDq/8peVAgR/SlpP2Ht8TRRqYMRjRQ==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@swc/core-linux-arm64-musl/1.3.32: - resolution: {integrity: sha512-lG0VOuYNPWOCJ99Aza69cTljjeft/wuRQeYFF8d+1xCQS/OT7gnbgi7BOz39uSHIPTBqfzdIsuvzdKlp9QydrQ==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@swc/core-linux-x64-gnu/1.3.32: - resolution: {integrity: sha512-ecqtSWX4NBrs7Ji2VX3fDWeqUfrbLlYqBuufAziCM27xMxwlAVgmyGQk4FYgoQ3SAUAu3XFH87+3Q7uWm2X7xg==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@swc/core-linux-x64-musl/1.3.32: - resolution: {integrity: sha512-rl3dMcUuENVkpk5NGW/LXovjK0+JFm4GWPjy4NM3Q5cPvhBpGwSeLZlR+zAw9K0fdGoIXiayRTTfENrQwwsH+g==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@swc/core-win32-arm64-msvc/1.3.32: - resolution: {integrity: sha512-VlybAZp8DcS66CH1LDnfp9zdwbPlnGXREtHDMHaBfK9+80AWVTg+zn0tCYz+HfcrRONqxbudwOUIPj+dwl/8jw==} - engines: {node: '>=10'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@swc/core-win32-ia32-msvc/1.3.32: - resolution: {integrity: sha512-MEUMdpUFIQ+RD+K/iHhHKfu0TFNj9VXwIxT5hmPeqyboKo095CoFEFBJ0sHG04IGlnu8T9i+uE2Pi18qUEbFug==} - engines: {node: '>=10'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@swc/core-win32-x64-msvc/1.3.32: - resolution: {integrity: sha512-DPMoneNFQco7SqmVVOUv1Vn53YmoImEfrAPMY9KrqQzgfzqNTuL2JvfxUqfAxwQ6pEKYAdyKJvZ483rIhgG9XQ==} - engines: {node: '>=10'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@swc/core/1.3.32: - resolution: {integrity: sha512-Yx/n1j+uUkcqlJAW8IRg8Qymgkdow6NHJZPFShiR0YiaYq2sXY+JHmvh16O6GkL91Y+gTlDUS7uVgDz50czJUQ==} - engines: {node: '>=10'} - requiresBuild: true - optionalDependencies: - '@swc/core-darwin-arm64': 1.3.32 - '@swc/core-darwin-x64': 1.3.32 - '@swc/core-linux-arm-gnueabihf': 1.3.32 - '@swc/core-linux-arm64-gnu': 1.3.32 - '@swc/core-linux-arm64-musl': 1.3.32 - '@swc/core-linux-x64-gnu': 1.3.32 - '@swc/core-linux-x64-musl': 1.3.32 - '@swc/core-win32-arm64-msvc': 1.3.32 - '@swc/core-win32-ia32-msvc': 1.3.32 - '@swc/core-win32-x64-msvc': 1.3.32 - dev: true - /@swc/helpers/0.3.17: resolution: {integrity: sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==} dependencies: @@ -5173,13 +4715,6 @@ packages: dependencies: tslib: 2.5.0 - /@szmarczak/http-timer/1.1.2: - resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} - engines: {node: '>=6'} - dependencies: - defer-to-connect: 1.1.3 - dev: true - /@tanstack/query-core/4.24.4: resolution: {integrity: sha512-9dqjv9eeB6VHN7lD3cLo16ZAjfjCsdXetSAD5+VyKqLUvcKTL0CklGQRJu+bWzdrS69R6Ea4UZo8obHYZnG6aA==} dev: false @@ -5397,22 +4932,6 @@ packages: resolution: {integrity: sha512-hNnvwkSfqpIb89CH8pTV8VkldS9qjd3ZxaCgya7CeCk6QeDajT/bRX9bPmrkEe0UQtrbbPU5h47nuMrBsN2ghQ==} dev: false - /@tsconfig/node10/1.0.9: - resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} - dev: true - - /@tsconfig/node12/1.0.11: - resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} - dev: true - - /@tsconfig/node14/1.0.3: - resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} - dev: true - - /@tsconfig/node16/1.0.3: - resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==} - dev: true - /@types/aria-query/5.0.1: resolution: {integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==} dev: true @@ -5496,12 +5015,6 @@ packages: '@types/node': 18.13.0 dev: true - /@types/keyv/3.1.4: - resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} - dependencies: - '@types/node': 18.13.0 - dev: true - /@types/lodash/4.14.191: resolution: {integrity: sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ==} dev: false @@ -5601,12 +5114,6 @@ packages: '@types/scheduler': 0.16.2 csstype: 3.1.1 - /@types/responselike/1.0.0: - resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} - dependencies: - '@types/node': 18.13.0 - dev: true - /@types/rimraf/3.0.2: resolution: {integrity: sha512-F3OznnSLAUxFrCEu/L5PY8+ny8DtcFRjx7fZZ9bycvXRi3KPTRS9HOitGZwvPg0juRhXFWIeKX58cnX5YqLohQ==} dependencies: @@ -5926,14 +5433,6 @@ packages: wonka: 6.1.2 dev: false - /@urql/introspection/0.3.1_graphql@16.6.0: - resolution: {integrity: sha512-4Srr45lA00cVlfRGtGJqYlc2vcPN6BZwFW9EVY20yROaoADCGNxm6xmScZhxuCRQPhOB9DXtuYs2KNrOo84ZeA==} - peerDependencies: - graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - dependencies: - graphql: 16.6.0 - dev: true - /@urql/introspection/0.3.3_graphql@16.6.0: resolution: {integrity: sha512-tekSLLqWnusfV6V7xaEnLJQSdXOD/lWy7f8JYQwrX+88Md+voGSCSx5WJXI7KLBN3Tat2OV08tAr8UROykls4Q==} peerDependencies: @@ -6029,22 +5528,6 @@ packages: resolution: {integrity: sha512-WKj/lI4QjnLuPrim0cfO7i+HsDSXHxNv1y0CrJhdntuO3hxWZmnXCwNDnwOvry11OjRin6cgWNF+j/9Pn8TN4w==} dev: true - /@whatwg-node/fetch/0.3.2: - resolution: {integrity: sha512-Bs5zAWQs0tXsLa4mRmLw7Psps1EN78vPtgcLpw3qPY8s6UYPUM67zFZ9cy+7tZ64PXhfwzxJn+m7RH2Lq48RNQ==} - dependencies: - '@peculiar/webcrypto': 1.4.1 - abort-controller: 3.0.0 - busboy: 1.6.0 - event-target-polyfill: 0.0.3 - form-data-encoder: 1.7.2 - formdata-node: 4.4.1 - node-fetch: 2.6.9 - undici: 5.18.0 - web-streams-polyfill: 3.2.1 - transitivePeerDependencies: - - encoding - dev: true - /@whatwg-node/fetch/0.7.0_@types+node@18.0.1: resolution: {integrity: sha512-0nmiUgHA9lSBcPQS0Eq9DACsdGa2W9gJUnN+Ul1vVhQsL3dnOAIGTs4uTiVC/W7bcfxTMP+TRFxngxS40aO5Nw==} dependencies: @@ -6069,6 +5552,30 @@ packages: - '@types/node' dev: true + /@whatwg-node/fetch/0.8.2_@types+node@18.0.1: + resolution: {integrity: sha512-6u1xGzFZvskJpQXhWreR9s1/4nsuY4iFRsTb4BC3NiDHmzgj/Hu1Ovt4iHs5KAjLzbnsjaQOI5f5bQPucqvPsQ==} + dependencies: + '@peculiar/webcrypto': 1.4.1 + '@whatwg-node/node-fetch': 0.3.2_@types+node@18.0.1 + busboy: 1.6.0 + urlpattern-polyfill: 6.0.2 + web-streams-polyfill: 3.2.1 + transitivePeerDependencies: + - '@types/node' + dev: true + + /@whatwg-node/fetch/0.8.2_@types+node@18.13.0: + resolution: {integrity: sha512-6u1xGzFZvskJpQXhWreR9s1/4nsuY4iFRsTb4BC3NiDHmzgj/Hu1Ovt4iHs5KAjLzbnsjaQOI5f5bQPucqvPsQ==} + dependencies: + '@peculiar/webcrypto': 1.4.1 + '@whatwg-node/node-fetch': 0.3.2_@types+node@18.13.0 + busboy: 1.6.0 + urlpattern-polyfill: 6.0.2 + web-streams-polyfill: 3.2.1 + transitivePeerDependencies: + - '@types/node' + dev: true + /@whatwg-node/node-fetch/0.0.6_@types+node@18.0.1: resolution: {integrity: sha512-pFEN2DNk1ZJZjdX9O7FG9qBZ7oIaB8JzOpAUCUditZ25kOSJb0qylq5uR2XUnzngBQCBwT/MHnKq2sXQZp1BUQ==} peerDependencies: @@ -6091,6 +5598,32 @@ packages: tslib: 2.5.0 dev: true + /@whatwg-node/node-fetch/0.3.2_@types+node@18.0.1: + resolution: {integrity: sha512-MFPehIybgtPJG7vN4+wNk2i5ek4/qIl+1hzchGCdq7gObWsXWH+L+rvyazIoj8lo8Mt8EZeES8Cg+aPsl+7gPw==} + peerDependencies: + '@types/node': ^18.0.6 + dependencies: + '@types/node': 18.0.1 + '@whatwg-node/events': 0.0.2 + busboy: 1.6.0 + fast-querystring: 1.1.1 + fast-url-parser: 1.1.3 + tslib: 2.5.0 + dev: true + + /@whatwg-node/node-fetch/0.3.2_@types+node@18.13.0: + resolution: {integrity: sha512-MFPehIybgtPJG7vN4+wNk2i5ek4/qIl+1hzchGCdq7gObWsXWH+L+rvyazIoj8lo8Mt8EZeES8Cg+aPsl+7gPw==} + peerDependencies: + '@types/node': ^18.0.6 + dependencies: + '@types/node': 18.13.0 + '@whatwg-node/events': 0.0.2 + busboy: 1.6.0 + fast-querystring: 1.1.1 + fast-url-parser: 1.1.3 + tslib: 2.5.0 + dev: true + /@xobotyi/scrollbar-width/1.9.5: resolution: {integrity: sha512-N8tkAACJx2ww8vFMneJmaAgmjAG1tnVBZJRLRcx061tmsLRZHSEZSLuGWnwPtunsSLvSqXQ2wfp7Mgqg1I+2dQ==} dev: false @@ -6197,11 +5730,6 @@ packages: resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} engines: {node: '>=6'} - /ansi-escapes/3.2.0: - resolution: {integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==} - engines: {node: '>=4'} - dev: true - /ansi-escapes/4.3.2: resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} engines: {node: '>=8'} @@ -6212,11 +5740,7 @@ packages: /ansi-regex/2.1.1: resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} engines: {node: '>=0.10.0'} - - /ansi-regex/3.0.1: - resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==} - engines: {node: '>=4'} - dev: true + dev: false /ansi-regex/5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} @@ -6226,11 +5750,6 @@ packages: resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} engines: {node: '>=12'} - /ansi-styles/2.2.1: - resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} - engines: {node: '>=0.10.0'} - dev: true - /ansi-styles/3.2.1: resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} engines: {node: '>=4'} @@ -6251,27 +5770,13 @@ packages: resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} engines: {node: '>=12'} - /any-observable/0.3.0_rxjs@6.6.7: - resolution: {integrity: sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==} - engines: {node: '>=6'} - peerDependencies: - rxjs: '*' - zenObservable: '*' - peerDependenciesMeta: - rxjs: - optional: true - zenObservable: - optional: true - dependencies: - rxjs: 6.6.7 - dev: true - /anymatch/3.1.3: resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} engines: {node: '>= 8'} dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 + dev: false /aproba/1.2.0: resolution: {integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==} @@ -6313,10 +5818,6 @@ packages: readable-stream: 2.3.7 dev: false - /arg/4.1.3: - resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} - dev: true - /argparse/1.0.10: resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} dependencies: @@ -6612,6 +6113,7 @@ packages: /binary-extensions/2.2.0: resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} engines: {node: '>=8'} + dev: false /binary/0.3.0: resolution: {integrity: sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==} @@ -6762,19 +6264,6 @@ packages: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} - /cacheable-request/6.1.0: - resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==} - engines: {node: '>=8'} - dependencies: - clone-response: 1.0.3 - get-stream: 5.2.0 - http-cache-semantics: 4.1.1 - keyv: 3.1.0 - lowercase-keys: 2.0.0 - normalize-url: 4.5.1 - responselike: 1.0.2 - dev: true - /call-bind/1.0.2: resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} dependencies: @@ -6856,17 +6345,6 @@ packages: traverse: 0.3.9 dev: false - /chalk/1.1.3: - resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} - engines: {node: '>=0.10.0'} - dependencies: - ansi-styles: 2.2.1 - escape-string-regexp: 1.0.5 - has-ansi: 2.0.0 - strip-ansi: 3.0.1 - supports-color: 2.0.0 - dev: true - /chalk/2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} engines: {node: '>=4'} @@ -6985,6 +6463,7 @@ packages: readdirp: 3.6.0 optionalDependencies: fsevents: 2.3.2 + dev: false /chroma-js/2.4.2: resolution: {integrity: sha512-U9eDw6+wt7V8z5NncY2jJfZa+hUH8XEj8FQHgFJTrUFnJfXYf4Ml4adI2vXZOjqRDpFWtYVWypDfZwnJ+HIR4A==} @@ -7017,13 +6496,6 @@ packages: engines: {node: '>=6'} dev: true - /cli-cursor/2.1.0: - resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==} - engines: {node: '>=4'} - dependencies: - restore-cursor: 2.0.0 - dev: true - /cli-cursor/3.1.0: resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} engines: {node: '>=8'} @@ -7036,14 +6508,6 @@ packages: engines: {node: '>=6'} dev: true - /cli-truncate/0.2.1: - resolution: {integrity: sha512-f4r4yJnbT++qUPI9NR4XLDLq41gQ+uqnPItWG0F5ZkehuNiTTa3EY0S4AqTSUOeJ7/zU41oWPQSNkW5BqPL9bg==} - engines: {node: '>=0.10.0'} - dependencies: - slice-ansi: 0.0.4 - string-width: 1.0.2 - dev: true - /cli-truncate/2.1.0: resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} engines: {node: '>=8'} @@ -7089,12 +6553,6 @@ packages: strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - /clone-response/1.0.3: - resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} - dependencies: - mimic-response: 1.0.1 - dev: true - /clone/1.0.4: resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} engines: {node: '>=0.8'} @@ -7111,6 +6569,7 @@ packages: /code-point-at/1.1.0: resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==} engines: {node: '>=0.10.0'} + dev: false /codepage/1.15.0: resolution: {integrity: sha512-3g6NUTPd/YtuuGrhMnOMRjFc+LJw/bnMp3+0r/Wcz3IXUuCosKRJvMphm5+Q+bvTVGcJJuRvVLuYba+WojaFaA==} @@ -7241,59 +6700,6 @@ packages: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} dev: false - /cosmiconfig-toml-loader/1.0.0: - resolution: {integrity: sha512-H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA==} - dependencies: - '@iarna/toml': 2.2.5 - dev: true - - /cosmiconfig-typescript-loader/4.1.1_q46qzkzt3jm3kzr7pfkqvdwby4: - resolution: {integrity: sha512-9DHpa379Gp0o0Zefii35fcmuuin6q92FnLDffzdZ0l9tVd3nEobG3O+MZ06+kuBvFTSVScvNb/oHA13Nd4iipg==} - engines: {node: '>=12', npm: '>=6'} - peerDependencies: - '@types/node': '*' - cosmiconfig: '>=7' - ts-node: '>=10' - typescript: '>=3' - dependencies: - '@types/node': 18.13.0 - cosmiconfig: 7.1.0 - typescript: 4.8.4 - dev: true - - /cosmiconfig-typescript-loader/4.1.1_wled4m3a3ad6oxie6eomaa4syi: - resolution: {integrity: sha512-9DHpa379Gp0o0Zefii35fcmuuin6q92FnLDffzdZ0l9tVd3nEobG3O+MZ06+kuBvFTSVScvNb/oHA13Nd4iipg==} - engines: {node: '>=12', npm: '>=6'} - peerDependencies: - '@types/node': '*' - cosmiconfig: '>=7' - ts-node: '>=10' - typescript: '>=3' - dependencies: - '@types/node': 18.13.0 - cosmiconfig: 7.0.1 - ts-node: 10.9.1_54u4tphudisr2z46etlt7y7xge - typescript: 4.8.4 - dev: true - - /cosmiconfig-typescript-swc-loader/0.0.2: - resolution: {integrity: sha512-kWewZRRtQR40bjp63Is8Ys2/2uRK6c2lGfSb6TMgx9ouuz1FT6aOua1+cESHED2kSY9btT5tr54MA2VjWaWUkg==} - dependencies: - '@swc/core': 1.3.32 - cosmiconfig: 7.1.0 - dev: true - - /cosmiconfig/7.0.1: - resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==} - engines: {node: '>=10'} - dependencies: - '@types/parse-json': 4.0.0 - import-fresh: 3.3.0 - parse-json: 5.2.0 - path-type: 4.0.0 - yaml: 1.10.2 - dev: true - /cosmiconfig/7.1.0: resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} engines: {node: '>=10'} @@ -7328,10 +6734,6 @@ packages: readable-stream: 3.6.0 dev: false - /create-require/1.1.1: - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} - dev: true - /cross-fetch/3.1.5: resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==} dependencies: @@ -7471,10 +6873,6 @@ packages: resolution: {integrity: sha512-Zn+tVZo1RKu120rgoe0JsRk56UiKdefPSH47QROJsMHrX8/S9UJvi5A/A6+Sbuk6rE88z5JoM/wIJ09Z7BTfYA==} dev: true - /date-fns/1.30.1: - resolution: {integrity: sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==} - dev: true - /date-fns/2.29.3: resolution: {integrity: sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==} engines: {node: '>=0.11'} @@ -7526,13 +6924,6 @@ packages: /decimal.js/10.4.3: resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} - /decompress-response/3.3.0: - resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==} - engines: {node: '>=4'} - dependencies: - mimic-response: 1.0.1 - dev: true - /deep-eql/4.1.3: resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==} engines: {node: '>=6'} @@ -7560,11 +6951,6 @@ packages: which-collection: 1.0.1 which-typed-array: 1.1.9 - /deep-extend/0.6.0: - resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} - engines: {node: '>=4.0.0'} - dev: true - /deep-is/0.1.4: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} @@ -7578,10 +6964,6 @@ packages: dependencies: clone: 1.0.4 - /defer-to-connect/1.1.3: - resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==} - dev: true - /define-lazy-prop/2.0.0: resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} engines: {node: '>=8'} @@ -7626,11 +7008,6 @@ packages: resolution: {integrity: sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==} dev: false - /diff/4.0.2: - resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} - engines: {node: '>=0.3.1'} - dev: true - /diff/5.1.0: resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==} engines: {node: '>=0.3.1'} @@ -7773,10 +7150,6 @@ packages: readable-stream: 2.3.7 dev: false - /duplexer3/0.1.5: - resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==} - dev: true - /eastasianwidth/0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} @@ -7806,11 +7179,6 @@ packages: /electron-to-chromium/1.4.288: resolution: {integrity: sha512-8s9aJf3YiokIrR+HOQzNOGmEHFXVUQzXM/JaViVvKdCkNUjS+lEa/uT7xw3nDVG/IgfxiIwUGkwJ6AR1pTpYsQ==} - /elegant-spinner/1.0.1: - resolution: {integrity: sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ==} - engines: {node: '>=0.10.0'} - dev: true - /emoji-regex/8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} @@ -9129,10 +8497,6 @@ packages: resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} engines: {node: '>=0.10.0'} - /event-target-polyfill/0.0.3: - resolution: {integrity: sha512-ZMc6UuvmbinrCk4RzGyVmRyIsAyxMRlp4CqSrcQRO8Dy0A9ldbiRy5kdtBj4OtP7EClGdqGfIqo9JmOClMsGLQ==} - dev: true - /event-target-shim/5.0.1: resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} engines: {node: '>=6'} @@ -9214,6 +8578,10 @@ packages: '@fast-csv/parse': 4.3.6 dev: false + /fast-decode-uri-component/1.0.1: + resolution: {integrity: sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==} + dev: true + /fast-deep-equal/3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} @@ -9237,6 +8605,12 @@ packages: resolution: {integrity: sha512-8EZzEP0eKkEEVX+drtd9mtuQ+/QrlfW/5MlwcwK5Nds6EkZ/tRzEexkzUY2mIssnAyVLT+TKHuRXmFNNXYUd6g==} dev: false + /fast-querystring/1.1.1: + resolution: {integrity: sha512-qR2r+e3HvhEFmpdHMv//U8FnFlnYjaC6QKDuaXALDkw2kvHO8WDjxH+f/rHGR4Me4pnk8p9JAkRNTjYHAKRn2Q==} + dependencies: + fast-decode-uri-component: 1.0.1 + dev: true + /fast-redact/3.1.2: resolution: {integrity: sha512-+0em+Iya9fKGfEQGcd62Yv6onjBmmhV1uh86XVfOU8VwAe6kaFdQCWI9s0/Nnugx5Vd9tdbZ7e6gE2tR9dzXdw==} engines: {node: '>=6'} @@ -9249,6 +8623,12 @@ packages: resolution: {integrity: sha512-HPtaa38cPgWvaCFmRNhlc6NG7pv6NUHqjPgVAkWGoB9mQMwYB27/K0CvOM5Czy+qpT3e8XJ6Q4aPAnzpNpzNaw==} dev: false + /fast-url-parser/1.1.3: + resolution: {integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==} + dependencies: + punycode: 1.4.1 + dev: true + /fast-xml-parser/4.0.10: resolution: {integrity: sha512-mYMMIk7Ho1QOiedyvafdyPamn1Vlda+5n95lcn0g79UiCQoLQ2xfPQ8m3pcxBMpVaftYXtoIE2wrNTjmLQnnkg==} hasBin: true @@ -9304,21 +8684,6 @@ packages: web-streams-polyfill: 3.2.1 dev: false - /figures/1.7.0: - resolution: {integrity: sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==} - engines: {node: '>=0.10.0'} - dependencies: - escape-string-regexp: 1.0.5 - object-assign: 4.1.1 - dev: true - - /figures/2.0.0: - resolution: {integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==} - engines: {node: '>=4'} - dependencies: - escape-string-regexp: 1.0.5 - dev: true - /figures/3.2.0: resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} engines: {node: '>=8'} @@ -9438,10 +8803,6 @@ packages: resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} dev: false - /form-data-encoder/1.7.2: - resolution: {integrity: sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==} - dev: true - /form-data/2.3.3: resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} engines: {node: '>= 0.12'} @@ -9468,14 +8829,6 @@ packages: combined-stream: 1.0.8 mime-types: 2.1.35 - /formdata-node/4.4.1: - resolution: {integrity: sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==} - engines: {node: '>= 12.20'} - dependencies: - node-domexception: 1.0.0 - web-streams-polyfill: 4.0.0-beta.3 - dev: true - /formdata-polyfill/4.0.10: resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} engines: {node: '>=12.20.0'} @@ -9582,13 +8935,6 @@ packages: has: 1.0.3 has-symbols: 1.0.3 - /get-stream/4.1.0: - resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} - engines: {node: '>=6'} - dependencies: - pump: 3.0.0 - dev: true - /get-stream/5.2.0: resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} engines: {node: '>=8'} @@ -9707,73 +9053,21 @@ packages: dependencies: get-intrinsic: 1.2.0 - /got/9.6.0: - resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==} - engines: {node: '>=8.6'} - dependencies: - '@sindresorhus/is': 0.14.0 - '@szmarczak/http-timer': 1.1.2 - '@types/keyv': 3.1.4 - '@types/responselike': 1.0.0 - cacheable-request: 6.1.0 - decompress-response: 3.3.0 - duplexer3: 0.1.5 - get-stream: 4.1.0 - lowercase-keys: 1.0.1 - mimic-response: 1.0.1 - p-cancelable: 1.1.0 - to-readable-stream: 1.0.0 - url-parse-lax: 3.0.0 - dev: true - /graceful-fs/4.2.10: resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} /grapheme-splitter/1.0.4: resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} - /graphql-config/4.3.6_tlz2ma6byvlbw5iffqokhee6bi: - resolution: {integrity: sha512-i7mAPwc0LAZPnYu2bI8B6yXU5820Wy/ArvmOseDLZIu0OU1UTULEuexHo6ZcHXeT9NvGGaUPQZm8NV3z79YydA==} - engines: {node: '>= 10.0.0'} - peerDependencies: - graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - dependencies: - '@graphql-tools/graphql-file-loader': 7.5.16_graphql@16.6.0 - '@graphql-tools/json-file-loader': 7.4.17_graphql@16.6.0 - '@graphql-tools/load': 7.8.12_graphql@16.6.0 - '@graphql-tools/merge': 8.3.18_graphql@16.6.0 - '@graphql-tools/url-loader': 7.17.11_d3dx4krdt4fsynqrp5lqxelwe4 - '@graphql-tools/utils': 8.13.1_graphql@16.6.0 - cosmiconfig: 7.0.1 - cosmiconfig-toml-loader: 1.0.0 - cosmiconfig-typescript-loader: 4.1.1_wled4m3a3ad6oxie6eomaa4syi - graphql: 16.6.0 - minimatch: 4.2.1 - string-env-interpolation: 1.0.1 - ts-node: 10.9.1_54u4tphudisr2z46etlt7y7xge - tslib: 2.5.0 - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - bufferutil - - encoding - - typescript - - utf-8-validate - dev: true - - /graphql-config/4.4.1_74lnzcgk6cgqsdyscb5kbgak6q: - resolution: {integrity: sha512-B8wlvfBHZ5WnI4IiuQZRqql6s+CKz7S+xpUeTb28Z8nRBi8tH9ChEBgT5FnTyE05PUhHlrS2jK9ICJ4YBl9OtQ==} + /graphql-config/4.5.0_74lnzcgk6cgqsdyscb5kbgak6q: + resolution: {integrity: sha512-x6D0/cftpLUJ0Ch1e5sj1TZn6Wcxx4oMfmhaG9shM0DKajA9iR+j1z86GSTQ19fShbGvrSSvbIQsHku6aQ6BBw==} engines: {node: '>= 10.0.0'} peerDependencies: cosmiconfig-toml-loader: ^1.0.0 - cosmiconfig-typescript-loader: ^4.0.0 graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 peerDependenciesMeta: cosmiconfig-toml-loader: optional: true - cosmiconfig-typescript-loader: - optional: true dependencies: '@graphql-tools/graphql-file-loader': 7.5.16_graphql@16.6.0 '@graphql-tools/json-file-loader': 7.4.17_graphql@16.6.0 @@ -9783,7 +9077,8 @@ packages: '@graphql-tools/utils': 9.2.1_graphql@16.6.0 cosmiconfig: 8.0.0 graphql: 16.6.0 - minimatch: 4.2.1 + jiti: 1.17.1 + minimatch: 4.2.3 string-env-interpolation: 1.0.1 tslib: 2.5.0 transitivePeerDependencies: @@ -9793,18 +9088,15 @@ packages: - utf-8-validate dev: true - /graphql-config/4.4.1_d3dx4krdt4fsynqrp5lqxelwe4: - resolution: {integrity: sha512-B8wlvfBHZ5WnI4IiuQZRqql6s+CKz7S+xpUeTb28Z8nRBi8tH9ChEBgT5FnTyE05PUhHlrS2jK9ICJ4YBl9OtQ==} + /graphql-config/4.5.0_d3dx4krdt4fsynqrp5lqxelwe4: + resolution: {integrity: sha512-x6D0/cftpLUJ0Ch1e5sj1TZn6Wcxx4oMfmhaG9shM0DKajA9iR+j1z86GSTQ19fShbGvrSSvbIQsHku6aQ6BBw==} engines: {node: '>= 10.0.0'} peerDependencies: cosmiconfig-toml-loader: ^1.0.0 - cosmiconfig-typescript-loader: ^4.0.0 graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 peerDependenciesMeta: cosmiconfig-toml-loader: optional: true - cosmiconfig-typescript-loader: - optional: true dependencies: '@graphql-tools/graphql-file-loader': 7.5.16_graphql@16.6.0 '@graphql-tools/json-file-loader': 7.4.17_graphql@16.6.0 @@ -9814,7 +9106,8 @@ packages: '@graphql-tools/utils': 9.2.1_graphql@16.6.0 cosmiconfig: 8.0.0 graphql: 16.6.0 - minimatch: 4.2.1 + jiti: 1.17.1 + minimatch: 4.2.3 string-env-interpolation: 1.0.1 tslib: 2.5.0 transitivePeerDependencies: @@ -9824,12 +9117,12 @@ packages: - utf-8-validate dev: true - /graphql-request/5.1.0_graphql@16.6.0: - resolution: {integrity: sha512-0OeRVYigVwIiXhNmqnPDt+JhMzsjinxHE7TVy3Lm6jUzav0guVcL0lfSbi6jVTRAxcbwgyr6yrZioSHxf9gHzw==} + /graphql-request/5.2.0_graphql@16.6.0: + resolution: {integrity: sha512-pLhKIvnMyBERL0dtFI3medKqWOz/RhHdcgbZ+hMMIb32mEPa5MJSzS4AuXxfI4sRAu6JVVk5tvXuGfCWl9JYWQ==} peerDependencies: graphql: 14 - 16 dependencies: - '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 + '@graphql-typed-document-node/core': 3.1.2_graphql@16.6.0 cross-fetch: 3.1.5 extract-files: 9.0.0 form-data: 3.0.1 @@ -9909,13 +9202,6 @@ packages: resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} engines: {node: '>=6'} - /has-ansi/2.0.0: - resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} - engines: {node: '>=0.10.0'} - dependencies: - ansi-regex: 2.1.1 - dev: true - /has-bigints/1.0.2: resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} @@ -10062,10 +9348,6 @@ packages: entities: 4.4.0 dev: false - /http-cache-semantics/4.1.1: - resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} - dev: true - /http-errors/2.0.0: resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} engines: {node: '>= 0.8'} @@ -10186,11 +9468,6 @@ packages: resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} engines: {node: '>=0.8.19'} - /indent-string/3.2.0: - resolution: {integrity: sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ==} - engines: {node: '>=4'} - dev: true - /indent-string/4.0.0: resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} engines: {node: '>=8'} @@ -10206,6 +9483,7 @@ packages: /ini/1.3.8: resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + dev: false /inline-style-prefixer/6.0.4: resolution: {integrity: sha512-FwXmZC2zbeeS7NzGjJ6pAiqRhXR0ugUShSNb6GApMl6da0/XGc4MOJsoWAywia52EEWbXNSy0pzkwz/+Y+swSg==} @@ -10309,6 +9587,7 @@ packages: engines: {node: '>=8'} dependencies: binary-extensions: 2.2.0 + dev: false /is-boolean-object/1.1.2: resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} @@ -10352,11 +9631,7 @@ packages: engines: {node: '>=0.10.0'} dependencies: number-is-nan: 1.0.1 - - /is-fullwidth-code-point/2.0.0: - resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} - engines: {node: '>=4'} - dev: true + dev: false /is-fullwidth-code-point/3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} @@ -10410,13 +9685,6 @@ packages: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} - /is-observable/1.1.0: - resolution: {integrity: sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==} - engines: {node: '>=4'} - dependencies: - symbol-observable: 1.2.0 - dev: true - /is-path-inside/3.0.3: resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} engines: {node: '>=8'} @@ -10428,10 +9696,6 @@ packages: /is-potential-custom-element-name/1.0.1: resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} - /is-promise/2.2.2: - resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} - dev: true - /is-promise/4.0.0: resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==} dev: false @@ -10464,11 +9728,6 @@ packages: dependencies: call-bind: 1.0.2 - /is-stream/1.1.0: - resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} - engines: {node: '>=0.10.0'} - dev: true - /is-stream/2.0.1: resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} engines: {node: '>=8'} @@ -10610,6 +9869,16 @@ packages: istanbul-lib-report: 3.0.0 dev: true + /jiti/1.17.1: + resolution: {integrity: sha512-NZIITw8uZQFuzQimqjUxIrIcEdxYDFIe/0xYfIlVXTkiBjjyBEvgasj5bb0/cHtPRD/NziPbT312sFrkI5ALpw==} + hasBin: true + dev: true + + /jiti/1.17.2: + resolution: {integrity: sha512-Xf0nU8+8wuiQpLcqdb2HRyHqYwGk2Pd+F7kstyp20ZuqTyCmB9dqpX2NxaxFc1kovraa2bG6c1RL3W7XfapiZg==} + hasBin: true + dev: true + /jose/4.11.4: resolution: {integrity: sha512-94FdcR8felat4vaTJyL/WVdtlWLlsnLMZP8v+A0Vru18K3bQ22vn7TtpVh3JlgBFNIlYOUlGqwp/MjRPOnIyCQ==} @@ -10716,10 +9985,6 @@ packages: engines: {node: '>=4'} hasBin: true - /json-buffer/3.0.0: - resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==} - dev: true - /json-parse-even-better-errors/2.3.1: resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} @@ -10893,12 +10158,6 @@ packages: safe-buffer: 5.2.1 dev: true - /keyv/3.1.0: - resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==} - dependencies: - json-buffer: 3.0.0 - dev: true - /kind-of/6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} @@ -10915,13 +10174,6 @@ packages: dependencies: language-subtag-registry: 0.3.22 - /latest-version/5.1.0: - resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==} - engines: {node: '>=8'} - dependencies: - package-json: 6.5.0 - dev: true - /lazystream/1.0.1: resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==} engines: {node: '>= 0.6.3'} @@ -11008,56 +10260,6 @@ packages: resolution: {integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==} dev: false - /listr-silent-renderer/1.1.1: - resolution: {integrity: sha512-L26cIFm7/oZeSNVhWB6faeorXhMg4HNlb/dS/7jHhr708jxlXrtrBWo4YUxZQkc6dGoxEAe6J/D3juTRBUzjtA==} - engines: {node: '>=4'} - dev: true - - /listr-update-renderer/0.5.0_listr@0.14.3: - resolution: {integrity: sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==} - engines: {node: '>=6'} - peerDependencies: - listr: ^0.14.2 - dependencies: - chalk: 1.1.3 - cli-truncate: 0.2.1 - elegant-spinner: 1.0.1 - figures: 1.7.0 - indent-string: 3.2.0 - listr: 0.14.3 - log-symbols: 1.0.2 - log-update: 2.3.0 - strip-ansi: 3.0.1 - dev: true - - /listr-verbose-renderer/0.5.0: - resolution: {integrity: sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==} - engines: {node: '>=4'} - dependencies: - chalk: 2.4.2 - cli-cursor: 2.1.0 - date-fns: 1.30.1 - figures: 2.0.0 - dev: true - - /listr/0.14.3: - resolution: {integrity: sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==} - engines: {node: '>=6'} - dependencies: - '@samverschueren/stream-to-observable': 0.3.1_rxjs@6.6.7 - is-observable: 1.1.0 - is-promise: 2.2.2 - is-stream: 1.1.0 - listr-silent-renderer: 1.1.1 - listr-update-renderer: 0.5.0_listr@0.14.3 - listr-verbose-renderer: 0.5.0 - p-map: 2.1.0 - rxjs: 6.6.7 - transitivePeerDependencies: - - zen-observable - - zenObservable - dev: true - /listr2/4.0.5: resolution: {integrity: sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==} engines: {node: '>=12'} @@ -11203,13 +10405,6 @@ packages: /lodash/4.17.21: resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - /log-symbols/1.0.2: - resolution: {integrity: sha512-mmPrW0Fh2fxOzdBbFv4g1m6pR72haFLPJ2G5SJEELf1y+iaQrDG6cWCPjy54RHYbZAt7X+ls690Kw62AdWXBzQ==} - engines: {node: '>=0.10.0'} - dependencies: - chalk: 1.1.3 - dev: true - /log-symbols/4.1.0: resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} engines: {node: '>=10'} @@ -11218,15 +10413,6 @@ packages: is-unicode-supported: 0.1.0 dev: true - /log-update/2.3.0: - resolution: {integrity: sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==} - engines: {node: '>=4'} - dependencies: - ansi-escapes: 3.2.0 - cli-cursor: 2.1.0 - wrap-ansi: 3.0.1 - dev: true - /log-update/4.0.0: resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} engines: {node: '>=10'} @@ -11279,16 +10465,6 @@ packages: tslib: 2.5.0 dev: true - /lowercase-keys/1.0.1: - resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} - engines: {node: '>=0.10.0'} - dev: true - - /lowercase-keys/2.0.0: - resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} - engines: {node: '>=8'} - dev: true - /lru-cache/4.1.5: resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} dependencies: @@ -11328,10 +10504,6 @@ packages: semver: 6.3.0 dev: true - /make-error/1.3.6: - resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} - dev: true - /map-cache/0.2.2: resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} engines: {node: '>=0.10.0'} @@ -11454,11 +10626,6 @@ packages: hasBin: true dev: false - /mimic-fn/1.2.0: - resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==} - engines: {node: '>=4'} - dev: true - /mimic-fn/2.1.0: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} engines: {node: '>=6'} @@ -11469,11 +10636,6 @@ packages: engines: {node: '>=12'} dev: true - /mimic-response/1.0.1: - resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} - engines: {node: '>=4'} - dev: true - /min-indent/1.0.1: resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} engines: {node: '>=4'} @@ -11483,8 +10645,8 @@ packages: dependencies: brace-expansion: 1.1.11 - /minimatch/4.2.1: - resolution: {integrity: sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g==} + /minimatch/4.2.3: + resolution: {integrity: sha512-lIUdtK5hdofgCTu3aT0sOaHsYR37viUuIc0rwnnDXImbwFRcumyLMeZaM0t0I/fgxS6s6JMfu0rLD1Wz9pv1ng==} engines: {node: '>=10'} dependencies: brace-expansion: 1.1.11 @@ -11886,12 +11048,6 @@ packages: minimist: 1.2.7 dev: false - /mkdirp/1.0.4: - resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} - engines: {node: '>=10'} - hasBin: true - dev: true - /mlly/1.1.0: resolution: {integrity: sha512-cwzBrBfwGC1gYJyfcy8TcZU1f+dbH/T+TuOhtYP2wLv/Fb51/uV7HJQfBPtEupZ2ORLRU1EKFS/QfS3eo9+kBQ==} dependencies: @@ -12279,9 +11435,14 @@ packages: tslib: 2.5.0 dev: true + /node-addon-api/3.2.1: + resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} + dev: true + /node-domexception/1.0.0: resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} engines: {node: '>=10.5.0'} + dev: false /node-fetch/2.6.7: resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} @@ -12315,6 +11476,11 @@ packages: formdata-polyfill: 4.0.10 dev: false + /node-gyp-build/4.6.0: + resolution: {integrity: sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==} + hasBin: true + dev: true + /node-int64/0.4.0: resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} dev: true @@ -12366,11 +11532,6 @@ packages: engines: {node: '>=0.10.0'} dev: true - /normalize-url/4.5.1: - resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} - engines: {node: '>=8'} - dev: true - /npm-run-path/4.0.1: resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} engines: {node: '>=8'} @@ -12407,6 +11568,7 @@ packages: /number-is-nan/1.0.1: resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==} engines: {node: '>=0.10.0'} + dev: false /numbro/2.1.2: resolution: {integrity: sha512-7w833BxZmKGLE9HI0aREtNVRVH6WTYUUlWf4qgA5gKNhPQ4F/MRZ14sc0v8eoLORprk9ZTVwYaLwj8N3Zgxwiw==} @@ -12552,13 +11714,6 @@ packages: dependencies: wrappy: 1.0.2 - /onetime/2.0.1: - resolution: {integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==} - engines: {node: '>=4'} - dependencies: - mimic-fn: 1.2.0 - dev: true - /onetime/5.1.2: resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} engines: {node: '>=6'} @@ -12625,11 +11780,6 @@ packages: /outdent/0.5.0: resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} - /p-cancelable/1.1.0: - resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} - engines: {node: '>=6'} - dev: true - /p-filter/2.1.0: resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} engines: {node: '>=8'} @@ -12681,16 +11831,6 @@ packages: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} - /package-json/6.5.0: - resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==} - engines: {node: '>=8'} - dependencies: - got: 9.6.0 - registry-auth-token: 4.2.2 - registry-url: 5.1.0 - semver: 6.3.0 - dev: true - /pako/0.2.9: resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} dev: false @@ -12963,11 +12103,6 @@ packages: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} - /prepend-http/2.0.0: - resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==} - engines: {node: '>=4'} - dev: true - /prettier/2.8.3: resolution: {integrity: sha512-tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw==} engines: {node: '>=10.13.0'} @@ -13072,6 +12207,10 @@ packages: end-of-stream: 1.4.4 once: 1.4.0 + /punycode/1.4.1: + resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} + dev: true + /punycode/2.3.0: resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} engines: {node: '>=6'} @@ -13120,16 +12259,6 @@ packages: iconv-lite: 0.4.24 unpipe: 1.0.0 - /rc/1.2.8: - resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} - hasBin: true - dependencies: - deep-extend: 0.6.0 - ini: 1.3.8 - minimist: 1.2.7 - strip-json-comments: 2.0.1 - dev: true - /react-device-detect/2.2.2_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-zSN1gIAztUekp5qUT/ybHwQ9fmOqVT1psxpSlTn1pe0CO+fnJHKRLOWWac5nKxOxvOpD/w84hk1I+EydrJp7SA==} peerDependencies: @@ -13561,6 +12690,7 @@ packages: engines: {node: '>=8.10.0'} dependencies: picomatch: 2.3.1 + dev: false /real-require/0.2.0: resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==} @@ -13594,20 +12724,6 @@ packages: resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} engines: {node: '>=8'} - /registry-auth-token/4.2.2: - resolution: {integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==} - engines: {node: '>=6.0.0'} - dependencies: - rc: 1.2.8 - dev: true - - /registry-url/5.1.0: - resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==} - engines: {node: '>=8'} - dependencies: - rc: 1.2.8 - dev: true - /relateurl/0.2.7: resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} engines: {node: '>= 0.10'} @@ -13727,20 +12843,6 @@ packages: path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - /responselike/1.0.2: - resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==} - dependencies: - lowercase-keys: 1.0.1 - dev: true - - /restore-cursor/2.0.0: - resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==} - engines: {node: '>=4'} - dependencies: - onetime: 2.0.1 - signal-exit: 3.0.7 - dev: true - /restore-cursor/3.1.0: resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} engines: {node: '>=8'} @@ -13811,13 +12913,6 @@ packages: dependencies: queue-microtask: 1.2.3 - /rxjs/6.6.7: - resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} - engines: {npm: '>=2.0.0'} - dependencies: - tslib: 1.14.1 - dev: true - /rxjs/7.8.0: resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==} dependencies: @@ -14003,11 +13098,6 @@ packages: resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} engines: {node: '>=12'} - /slice-ansi/0.0.4: - resolution: {integrity: sha512-up04hB2hR92PgjpyU3y/eg91yIBILyjVY26NvvciY3EVVPjybkMszMpXQ9QAkcS3I5rtJBDLoTxxg+qvW8c7rw==} - engines: {node: '>=0.10.0'} - dev: true - /slice-ansi/3.0.0: resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} engines: {node: '>=8'} @@ -14225,14 +13315,7 @@ packages: code-point-at: 1.1.0 is-fullwidth-code-point: 1.0.0 strip-ansi: 3.0.1 - - /string-width/2.1.1: - resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==} - engines: {node: '>=4'} - dependencies: - is-fullwidth-code-point: 2.0.0 - strip-ansi: 4.0.0 - dev: true + dev: false /string-width/4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} @@ -14292,13 +13375,7 @@ packages: engines: {node: '>=0.10.0'} dependencies: ansi-regex: 2.1.1 - - /strip-ansi/4.0.0: - resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==} - engines: {node: '>=4'} - dependencies: - ansi-regex: 3.0.1 - dev: true + dev: false /strip-ansi/6.0.1: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} @@ -14339,11 +13416,6 @@ packages: dependencies: min-indent: 1.0.1 - /strip-json-comments/2.0.1: - resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} - engines: {node: '>=0.10.0'} - dev: true - /strip-json-comments/3.1.1: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} @@ -14393,11 +13465,6 @@ packages: resolution: {integrity: sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==} dev: false - /supports-color/2.0.0: - resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} - engines: {node: '>=0.8.0'} - dev: true - /supports-color/5.5.0: resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} engines: {node: '>=4'} @@ -14420,11 +13487,6 @@ packages: tslib: 2.5.0 dev: true - /symbol-observable/1.2.0: - resolution: {integrity: sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==} - engines: {node: '>=0.10.0'} - dev: true - /symbol-tree/3.2.4: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} @@ -14545,11 +13607,6 @@ packages: resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} engines: {node: '>=4'} - /to-readable-stream/1.0.0: - resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} - engines: {node: '>=6'} - dev: true - /to-regex-range/5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} @@ -14618,37 +13675,6 @@ packages: resolution: {integrity: sha512-PGcnJoTBnVGy6yYNFxWVNkdcAuAMstvutN9MgDJIV6L0oG8fB+ZNNy1T+wJzah8RPGor1mZuPQkVfXNDpy9eHA==} dev: true - /ts-node/10.9.1_54u4tphudisr2z46etlt7y7xge: - resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: '>=2.7' - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true - dependencies: - '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.9 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.3 - '@types/node': 18.13.0 - acorn: 8.8.2 - acorn-walk: 8.2.0 - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - typescript: 4.8.4 - v8-compile-cache-lib: 3.0.1 - yn: 3.1.1 - dev: true - /tsconfig-paths/3.14.1: resolution: {integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==} dependencies: @@ -14660,10 +13686,6 @@ packages: /tslib/1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - /tslib/2.3.1: - resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==} - dev: true - /tslib/2.4.1: resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==} dev: true @@ -14892,13 +13914,6 @@ packages: engines: {node: '>=0.10.0'} dev: true - /undici/5.18.0: - resolution: {integrity: sha512-1iVwbhonhFytNdg0P4PqyIAXbdlVZVebtPDvuM36m66mRw4OGrCm2MYynJv/UENFLdP13J1nPVQzVE2zTs1OeA==} - engines: {node: '>=12.18'} - dependencies: - busboy: 1.6.0 - dev: true - /unicode-properties/1.4.1: resolution: {integrity: sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==} dependencies: @@ -14996,13 +14011,6 @@ packages: engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dev: false - /url-parse-lax/3.0.0: - resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==} - engines: {node: '>=4'} - dependencies: - prepend-http: 2.0.0 - dev: true - /url-parse/1.5.10: resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} dependencies: @@ -15094,10 +14102,6 @@ packages: resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} hasBin: true - /v8-compile-cache-lib/3.0.1: - resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} - dev: true - /v8-compile-cache/2.3.0: resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} dev: true @@ -15122,11 +14126,6 @@ packages: spdx-correct: 3.1.1 spdx-expression-parse: 3.0.1 - /value-or-promise/1.0.11: - resolution: {integrity: sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg==} - engines: {node: '>=12'} - dev: true - /value-or-promise/1.0.12: resolution: {integrity: sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==} engines: {node: '>=12'} @@ -15419,11 +14418,6 @@ packages: resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==} engines: {node: '>= 8'} - /web-streams-polyfill/4.0.0-beta.3: - resolution: {integrity: sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==} - engines: {node: '>= 14'} - dev: true - /webcrypto-core/1.7.5: resolution: {integrity: sha512-gaExY2/3EHQlRNNNVSrbG2Cg94Rutl7fAaKILS1w8ZDhGxdFOaw6EbCfHIxPy9vt/xwp5o0VQAx9aySPF6hU1A==} dependencies: @@ -15560,14 +14554,6 @@ packages: resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} dev: false - /wrap-ansi/3.0.1: - resolution: {integrity: sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==} - engines: {node: '>=4'} - dependencies: - string-width: 2.1.1 - strip-ansi: 4.0.0 - dev: true - /wrap-ansi/6.2.0: resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} engines: {node: '>=8'} @@ -15704,11 +14690,6 @@ packages: y18n: 5.0.8 yargs-parser: 21.1.1 - /yn/3.1.1: - resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} - engines: {node: '>=6'} - dev: true - /yocto-queue/0.1.0: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'}