From ff93ed51f7b9914254deb24262b5348eba06d2a0 Mon Sep 17 00:00:00 2001 From: PabloSz Date: Wed, 8 Jun 2022 00:03:31 -0400 Subject: [PATCH] update/fix --- .../apis/envelop-fastify-raw/package.json | 4 +- benchmarks/apis/express-graphql/package.json | 2 +- benchmarks/apis/ez-express/package.json | 2 +- benchmarks/apis/ez-fastify/package.json | 2 +- benchmarks/apis/ez-hapi/package.json | 2 +- benchmarks/apis/ez-http/package.json | 2 +- benchmarks/apis/ez-koa/package.json | 2 +- benchmarks/apis/graphql-helix/package.json | 2 +- benchmarks/apis/mercurius/package.json | 2 +- benchmarks/bench/package.json | 2 +- examples/cloudflare/package.json | 2 +- examples/express/complete/package.json | 2 +- examples/fastify/basic/package.json | 2 +- examples/fastify/complete/package.json | 2 +- examples/fastify/nexus/package.json | 2 +- examples/fastify/pothos/package.json | 2 +- examples/fastify/type-graphql/package.json | 2 +- examples/hapi/complete/package.json | 2 +- examples/http/complete/package.json | 2 +- examples/koa/complete/package.json | 2 +- examples/nextjs/complete/package.json | 2 +- examples/sveltekit/package.json | 2 +- examples/vercel/package.json | 2 +- integration/gql-15-interop/package.json | 2 +- .../gql-15-stream-defer-interop/package.json | 2 +- integration/gql-16-esm/package.json | 2 +- integration/gql-16-interop/package.json | 2 +- .../gql-16-stream-defer-interop/package.json | 2 +- integration/gql-17/package.json | 2 +- internal/testing/package.json | 2 +- internal/website/package.json | 2 +- package.json | 7 +- packages/client/main/package.json | 2 +- packages/cloudflare/main/package.json | 2 +- packages/core/main/package.json | 4 +- packages/core/utils/package.json | 2 +- packages/express/main/package.json | 2 +- packages/express/testing/package.json | 2 +- packages/fastify/main/package.json | 2 +- packages/fastify/testing/package.json | 2 +- packages/hapi/main/package.json | 2 +- packages/hapi/main/src/index.ts | 2 +- packages/hapi/testing/package.json | 2 +- packages/helix/core/package.json | 2 +- packages/helix/graphiql/package.json | 2 +- packages/http/main/package.json | 2 +- packages/http/testing/package.json | 2 +- packages/koa/main/package.json | 2 +- packages/koa/testing/package.json | 2 +- packages/nextjs/main/package.json | 2 +- packages/nextjs/testing/package.json | 2 +- packages/plugin/altair/package.json | 2 +- .../automatic-persisted-queries/package.json | 2 +- packages/plugin/codegen/package.json | 2 +- packages/plugin/dataloader/package.json | 5 +- packages/plugin/graphiql/package.json | 2 +- packages/plugin/modules/package.json | 2 +- packages/plugin/scalars/package.json | 2 +- packages/plugin/schema/package.json | 2 +- packages/plugin/sse/package.json | 2 +- packages/plugin/upload/package.json | 2 +- packages/plugin/voyager/package.json | 2 +- packages/plugin/websockets/package.json | 2 +- packages/sveltekit/main/package.json | 4 +- packages/vercel/main/package.json | 2 +- pnpm-lock.yaml | 3955 ++++++++--------- 66 files changed, 2017 insertions(+), 2082 deletions(-) diff --git a/benchmarks/apis/envelop-fastify-raw/package.json b/benchmarks/apis/envelop-fastify-raw/package.json index 1a00999c3..392575d30 100644 --- a/benchmarks/apis/envelop-fastify-raw/package.json +++ b/benchmarks/apis/envelop-fastify-raw/package.json @@ -10,7 +10,7 @@ "start": "bob-tsm --node-env=prod src/index.ts" }, "dependencies": { - "@envelop/core": "^2.3.2", + "@envelop/core": "^2.3.3", "@envelop/graphql-jit": "^4.2.2", "@envelop/parser-cache": "^4.3.2", "@envelop/types": "^2.2.0", @@ -23,7 +23,7 @@ "devDependencies": { "@types/node": "^17.0.35", "bob-tsm": "^1.0.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" } } diff --git a/benchmarks/apis/express-graphql/package.json b/benchmarks/apis/express-graphql/package.json index 7e3f57a9b..d20686d2f 100644 --- a/benchmarks/apis/express-graphql/package.json +++ b/benchmarks/apis/express-graphql/package.json @@ -19,7 +19,7 @@ "devDependencies": { "@types/node": "^17.0.35", "bob-tsm": "^1.0.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" } } diff --git a/benchmarks/apis/ez-express/package.json b/benchmarks/apis/ez-express/package.json index f5e0061b9..db0bd5d37 100644 --- a/benchmarks/apis/ez-express/package.json +++ b/benchmarks/apis/ez-express/package.json @@ -23,7 +23,7 @@ "devDependencies": { "@types/node": "^17.0.35", "bob-tsm": "^1.0.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" } } diff --git a/benchmarks/apis/ez-fastify/package.json b/benchmarks/apis/ez-fastify/package.json index ffafc0b71..72e5432a9 100644 --- a/benchmarks/apis/ez-fastify/package.json +++ b/benchmarks/apis/ez-fastify/package.json @@ -22,7 +22,7 @@ "devDependencies": { "@types/node": "^17.0.35", "bob-tsm": "^1.0.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" } } diff --git a/benchmarks/apis/ez-hapi/package.json b/benchmarks/apis/ez-hapi/package.json index 8d69f77fe..f1d604eaf 100644 --- a/benchmarks/apis/ez-hapi/package.json +++ b/benchmarks/apis/ez-hapi/package.json @@ -23,7 +23,7 @@ "devDependencies": { "@types/node": "^17.0.35", "bob-tsm": "^1.0.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" } } diff --git a/benchmarks/apis/ez-http/package.json b/benchmarks/apis/ez-http/package.json index 57d4f873f..388ad280f 100644 --- a/benchmarks/apis/ez-http/package.json +++ b/benchmarks/apis/ez-http/package.json @@ -21,7 +21,7 @@ "devDependencies": { "@types/node": "^17.0.35", "bob-tsm": "^1.0.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" } } diff --git a/benchmarks/apis/ez-koa/package.json b/benchmarks/apis/ez-koa/package.json index df9f8ee83..0a1c0da93 100644 --- a/benchmarks/apis/ez-koa/package.json +++ b/benchmarks/apis/ez-koa/package.json @@ -23,7 +23,7 @@ "devDependencies": { "@types/node": "^17.0.35", "bob-tsm": "^1.0.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" } } diff --git a/benchmarks/apis/graphql-helix/package.json b/benchmarks/apis/graphql-helix/package.json index d03cb1913..74f0aef31 100644 --- a/benchmarks/apis/graphql-helix/package.json +++ b/benchmarks/apis/graphql-helix/package.json @@ -19,7 +19,7 @@ "devDependencies": { "@types/node": "^17.0.35", "bob-tsm": "^1.0.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" } } diff --git a/benchmarks/apis/mercurius/package.json b/benchmarks/apis/mercurius/package.json index 0bbf9b390..1376d867a 100644 --- a/benchmarks/apis/mercurius/package.json +++ b/benchmarks/apis/mercurius/package.json @@ -20,7 +20,7 @@ "devDependencies": { "@types/node": "^17.0.35", "bob-tsm": "^1.0.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" }, "dependenciesMeta": { diff --git a/benchmarks/bench/package.json b/benchmarks/bench/package.json index 733e31c0e..01a576c95 100644 --- a/benchmarks/bench/package.json +++ b/benchmarks/bench/package.json @@ -35,7 +35,7 @@ "@types/rimraf": "^3.0.2", "@types/wait-on": "^5.3.1", "bob-tsm": "^1.0.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql": "16.1.0-experimental-stream-defer.6", "typescript": "^4.6.4" }, diff --git a/examples/cloudflare/package.json b/examples/cloudflare/package.json index 668d93a45..a58d62f01 100644 --- a/examples/cloudflare/package.json +++ b/examples/cloudflare/package.json @@ -22,7 +22,7 @@ "@types/node": "^17.0.35", "clipboardy": "^3.0.0", "concurrently": "^7.2.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "miniflare": "^2.4.0", "typescript": "^4.6.4" } diff --git a/examples/express/complete/package.json b/examples/express/complete/package.json index aef24bb4b..e21ef24dc 100644 --- a/examples/express/complete/package.json +++ b/examples/express/complete/package.json @@ -28,7 +28,7 @@ "@types/express": "^4.17.13", "@types/node": "^17.0.35", "bob-tsm": "^1.0.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" } } diff --git a/examples/fastify/basic/package.json b/examples/fastify/basic/package.json index 436818c8a..dccf144b5 100644 --- a/examples/fastify/basic/package.json +++ b/examples/fastify/basic/package.json @@ -20,7 +20,7 @@ "devDependencies": { "@types/node": "^17.0.35", "bob-tsm": "^1.0.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" } } diff --git a/examples/fastify/complete/package.json b/examples/fastify/complete/package.json index fe51f08d7..9f3cc8da0 100644 --- a/examples/fastify/complete/package.json +++ b/examples/fastify/complete/package.json @@ -30,7 +30,7 @@ "devDependencies": { "@types/node": "^17.0.35", "bob-tsm": "^1.0.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" } } diff --git a/examples/fastify/nexus/package.json b/examples/fastify/nexus/package.json index 3ca3660da..efd1ba79b 100644 --- a/examples/fastify/nexus/package.json +++ b/examples/fastify/nexus/package.json @@ -12,7 +12,7 @@ "devDependencies": { "@types/node": "^17.0.35", "bob-tsm": "^1.0.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" }, "dependencies": { diff --git a/examples/fastify/pothos/package.json b/examples/fastify/pothos/package.json index c1ecc0230..f47142bd8 100644 --- a/examples/fastify/pothos/package.json +++ b/examples/fastify/pothos/package.json @@ -20,7 +20,7 @@ "devDependencies": { "@types/node": "^17.0.35", "bob-tsm": "^1.0.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" } } diff --git a/examples/fastify/type-graphql/package.json b/examples/fastify/type-graphql/package.json index 81b2084e3..4f7a3df01 100644 --- a/examples/fastify/type-graphql/package.json +++ b/examples/fastify/type-graphql/package.json @@ -18,7 +18,7 @@ }, "devDependencies": { "@types/node": "^17.0.35", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "tsc-watch": "^5.0.3", "typescript": "^4.6.4" }, diff --git a/examples/hapi/complete/package.json b/examples/hapi/complete/package.json index e27f9c798..8f162e904 100644 --- a/examples/hapi/complete/package.json +++ b/examples/hapi/complete/package.json @@ -28,7 +28,7 @@ "@types/hapi__hapi": "^20.0.10", "@types/node": "^17.0.35", "bob-tsm": "^1.0.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" } } diff --git a/examples/http/complete/package.json b/examples/http/complete/package.json index 4a7e243a5..41ff538bd 100644 --- a/examples/http/complete/package.json +++ b/examples/http/complete/package.json @@ -26,7 +26,7 @@ "devDependencies": { "@types/node": "^17.0.35", "bob-tsm": "^1.0.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" } } diff --git a/examples/koa/complete/package.json b/examples/koa/complete/package.json index d2a474c96..626b3cb23 100644 --- a/examples/koa/complete/package.json +++ b/examples/koa/complete/package.json @@ -33,7 +33,7 @@ "@types/koa__router": "^8.0.11", "@types/node": "^17.0.35", "bob-tsm": "^1.0.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" } } diff --git a/examples/nextjs/complete/package.json b/examples/nextjs/complete/package.json index dbd62f87b..b7aa1fd29 100644 --- a/examples/nextjs/complete/package.json +++ b/examples/nextjs/complete/package.json @@ -30,7 +30,7 @@ "@types/node": "^17.0.35", "@types/react": "^17.0.45", "@types/react-dom": "^18.0.4", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" } } diff --git a/examples/sveltekit/package.json b/examples/sveltekit/package.json index 40264428a..37a91f4a2 100644 --- a/examples/sveltekit/package.json +++ b/examples/sveltekit/package.json @@ -26,7 +26,7 @@ "devDependencies": { "@sveltejs/kit": "1.0.0-next.336", "@types/node": "^17.0.35", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "svelte": "^3.48.0", "svelte-check": "^2.7.1", "svelte-preprocess": "^4.10.6", diff --git a/examples/vercel/package.json b/examples/vercel/package.json index 23c407344..c082465be 100644 --- a/examples/vercel/package.json +++ b/examples/vercel/package.json @@ -17,7 +17,7 @@ }, "devDependencies": { "@types/node": "^17.0.35", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" } } diff --git a/integration/gql-15-interop/package.json b/integration/gql-15-interop/package.json index 08539bb39..f2232a536 100644 --- a/integration/gql-15-interop/package.json +++ b/integration/gql-15-interop/package.json @@ -33,7 +33,7 @@ }, "devDependencies": { "@types/node": "^17.0.35", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" } } diff --git a/integration/gql-15-stream-defer-interop/package.json b/integration/gql-15-stream-defer-interop/package.json index a053116a4..d0069848f 100644 --- a/integration/gql-15-stream-defer-interop/package.json +++ b/integration/gql-15-stream-defer-interop/package.json @@ -33,7 +33,7 @@ }, "devDependencies": { "@types/node": "^17.0.35", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" } } diff --git a/integration/gql-16-esm/package.json b/integration/gql-16-esm/package.json index ca9742bcc..ec2ae876c 100644 --- a/integration/gql-16-esm/package.json +++ b/integration/gql-16-esm/package.json @@ -31,7 +31,7 @@ }, "devDependencies": { "@types/node": "^17.0.35", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" } } diff --git a/integration/gql-16-interop/package.json b/integration/gql-16-interop/package.json index 8051fc1ec..57df32bb1 100644 --- a/integration/gql-16-interop/package.json +++ b/integration/gql-16-interop/package.json @@ -33,7 +33,7 @@ }, "devDependencies": { "@types/node": "^17.0.35", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" } } diff --git a/integration/gql-16-stream-defer-interop/package.json b/integration/gql-16-stream-defer-interop/package.json index 251c30bf6..db4b8d040 100644 --- a/integration/gql-16-stream-defer-interop/package.json +++ b/integration/gql-16-stream-defer-interop/package.json @@ -33,7 +33,7 @@ }, "devDependencies": { "@types/node": "^17.0.35", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" } } diff --git a/integration/gql-17/package.json b/integration/gql-17/package.json index 9df8f0657..fcc26d9ad 100644 --- a/integration/gql-17/package.json +++ b/integration/gql-17/package.json @@ -17,7 +17,7 @@ }, "devDependencies": { "@types/node": "^17.0.35", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "typescript": "^4.6.4" }, "dependenciesMeta": { diff --git a/internal/testing/package.json b/internal/testing/package.json index ea28bd15e..f3132b2ea 100644 --- a/internal/testing/package.json +++ b/internal/testing/package.json @@ -43,7 +43,7 @@ "@types/node": "^17.0.35", "@types/ws": "^8.5.3", "bob-esbuild-cli": "^4.0.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "eventsource": "^2.0.2", "express": "^4.18.1", "fast-safe-stringify": "^2.1.1", diff --git a/internal/website/package.json b/internal/website/package.json index 2b78cca1e..b5cd09282 100644 --- a/internal/website/package.json +++ b/internal/website/package.json @@ -43,7 +43,7 @@ "bob-tsm": "^1.0.0", "concurrently": "^7.2.0", "cross-env": "^7.0.3", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "next-remote-watch": "^1.0.0", "open-cli": "^7.0.1", "typescript": "^4.6.4", diff --git a/package.json b/package.json index 213e61c88..464be5531 100644 --- a/package.json +++ b/package.json @@ -55,7 +55,7 @@ "changesets-github-release": "^0.1.0", "concurrently": "^7.2.0", "cross-env": "^7.0.3", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "fastify": "^3.29.0", "globby": "^13.1.1", "graphql-ez-testing": "workspace:^1.0.0", @@ -73,14 +73,15 @@ }, "pnpm": { "overrides": { - "esbuild": "^0.14.36", + "esbuild": "^0.14.43", "trim@<0.0.3": ">=0.0.3", "glob-parent@<5.1.2": ">=5.1.2", "set-value@<4.0.1": ">=4.0.1", "axios@<=0.21.1": ">=0.21.2", "ansi-regex@>2.1.1 <5.0.1": "^5.0.1", "json-schema@<0.4.0": ">=0.4.0", - "@types/react": "^17.0.44" + "@types/react": "^17.0.44", + "@types/hapi__hapi": "20.0.12" }, "peerDependencyRules": { "ignoreMissing": [ diff --git a/packages/client/main/package.json b/packages/client/main/package.json index d93aa2124..9c35815a0 100644 --- a/packages/client/main/package.json +++ b/packages/client/main/package.json @@ -42,7 +42,7 @@ "@types/ws": "^8.5.3", "bob-ts": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "eventsource": "^2.0.2", "extract-files": "^11.0.0", "form-data": "^4.0.0", diff --git a/packages/cloudflare/main/package.json b/packages/cloudflare/main/package.json index 2f212e717..6bbc24d3d 100644 --- a/packages/cloudflare/main/package.json +++ b/packages/cloudflare/main/package.json @@ -37,7 +37,7 @@ "@types/wait-on": "^5.3.1", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "execa": "^5.1.1", "get-port": "^5.1.1", "graphql": "16.1.0-experimental-stream-defer.6", diff --git a/packages/core/main/package.json b/packages/core/main/package.json index 20b8671e3..73760ec97 100644 --- a/packages/core/main/package.json +++ b/packages/core/main/package.json @@ -34,7 +34,7 @@ "test": "jest" }, "dependencies": { - "@envelop/core": "^2.3.2", + "@envelop/core": "^2.3.3", "@envelop/types": "^2.2.0", "@graphql-ez/utils": "workspace:^0.1.4", "@pablosz/graphql-helix": "workspace:^2.0.3", @@ -44,7 +44,7 @@ "@types/node": "^17.0.35", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql": "16.1.0-experimental-stream-defer.6", "jest": "^28.1.0", "ts-jest": "^28.0.2", diff --git a/packages/core/utils/package.json b/packages/core/utils/package.json index 59057cc2c..976569bd2 100644 --- a/packages/core/utils/package.json +++ b/packages/core/utils/package.json @@ -29,7 +29,7 @@ "devDependencies": { "@types/node": "^17.0.35", "bob-esbuild-cli": "^4.0.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql": "16.1.0-experimental-stream-defer.6", "typescript": "^4.6.4" }, diff --git a/packages/express/main/package.json b/packages/express/main/package.json index 66c258075..e43907497 100644 --- a/packages/express/main/package.json +++ b/packages/express/main/package.json @@ -40,7 +40,7 @@ "@types/node": "^17.0.35", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "express": "^4.18.1", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", diff --git a/packages/express/testing/package.json b/packages/express/testing/package.json index 68d11650b..89f345e86 100644 --- a/packages/express/testing/package.json +++ b/packages/express/testing/package.json @@ -38,7 +38,7 @@ "@types/node": "^17.0.35", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "express": "^4.18.1", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", diff --git a/packages/fastify/main/package.json b/packages/fastify/main/package.json index 375520a96..12a39230d 100644 --- a/packages/fastify/main/package.json +++ b/packages/fastify/main/package.json @@ -37,7 +37,7 @@ "@types/node": "^17.0.35", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "fastify": "^3.29.0", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", diff --git a/packages/fastify/testing/package.json b/packages/fastify/testing/package.json index 11d66ae01..c1634d23f 100644 --- a/packages/fastify/testing/package.json +++ b/packages/fastify/testing/package.json @@ -37,7 +37,7 @@ "@types/node": "^17.0.35", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "fastify": "^3.29.0", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", diff --git a/packages/hapi/main/package.json b/packages/hapi/main/package.json index dd7e33b96..3377e9890 100644 --- a/packages/hapi/main/package.json +++ b/packages/hapi/main/package.json @@ -34,7 +34,7 @@ "@types/node": "^17.0.35", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", "jest": "^28.1.0", diff --git a/packages/hapi/main/src/index.ts b/packages/hapi/main/src/index.ts index 144fae0e3..ed2415d33 100644 --- a/packages/hapi/main/src/index.ts +++ b/packages/hapi/main/src/index.ts @@ -65,7 +65,7 @@ export interface HapiAppOptions extends AppOptions { } export interface EZApp { - readonly hapiPlugin: Plugin<{}>; + readonly hapiPlugin: Plugin; readonly getEnveloped: GetEnvelopedFn; readonly path: string; diff --git a/packages/hapi/testing/package.json b/packages/hapi/testing/package.json index 20396a431..b2cd5efa3 100644 --- a/packages/hapi/testing/package.json +++ b/packages/hapi/testing/package.json @@ -39,7 +39,7 @@ "@types/node": "^17.0.35", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", "jest": "^28.1.0", diff --git a/packages/helix/core/package.json b/packages/helix/core/package.json index c04ee9fe1..8422f5733 100644 --- a/packages/helix/core/package.json +++ b/packages/helix/core/package.json @@ -34,7 +34,7 @@ "@types/node": "^17.0.35", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql": "16.1.0-experimental-stream-defer.6", "typescript": "^4.6.4" }, diff --git a/packages/helix/graphiql/package.json b/packages/helix/graphiql/package.json index ff20e1561..46abfcdf2 100644 --- a/packages/helix/graphiql/package.json +++ b/packages/helix/graphiql/package.json @@ -49,7 +49,7 @@ "concurrently": "^7.2.0", "copy-to-clipboard": "^3.3.1", "cpy": "^9.0.1", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphiql": "^1.8.10", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", diff --git a/packages/http/main/package.json b/packages/http/main/package.json index 149d7e839..37a9efeaf 100644 --- a/packages/http/main/package.json +++ b/packages/http/main/package.json @@ -38,7 +38,7 @@ "@types/node": "^17.0.35", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", "jest": "^28.1.0", diff --git a/packages/http/testing/package.json b/packages/http/testing/package.json index 07acf450d..242099c4b 100644 --- a/packages/http/testing/package.json +++ b/packages/http/testing/package.json @@ -37,7 +37,7 @@ "@types/node": "^17.0.35", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", "jest": "^28.1.0", diff --git a/packages/koa/main/package.json b/packages/koa/main/package.json index e3752064d..3feaa4098 100644 --- a/packages/koa/main/package.json +++ b/packages/koa/main/package.json @@ -42,7 +42,7 @@ "@types/node": "^17.0.35", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", "jest": "^28.1.0", diff --git a/packages/koa/testing/package.json b/packages/koa/testing/package.json index a5693a5f4..de4c84eba 100644 --- a/packages/koa/testing/package.json +++ b/packages/koa/testing/package.json @@ -40,7 +40,7 @@ "@types/node": "^17.0.35", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", "jest": "^28.1.0", diff --git a/packages/nextjs/main/package.json b/packages/nextjs/main/package.json index cd29fe2a0..11787add1 100644 --- a/packages/nextjs/main/package.json +++ b/packages/nextjs/main/package.json @@ -40,7 +40,7 @@ "@types/react-dom": "^18.0.4", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", "jest": "^28.1.0", diff --git a/packages/nextjs/testing/package.json b/packages/nextjs/testing/package.json index 311e8b46d..fbaf73e0d 100644 --- a/packages/nextjs/testing/package.json +++ b/packages/nextjs/testing/package.json @@ -37,7 +37,7 @@ "@graphql-ez/nextjs": "workspace:^0.10.2", "@types/node": "^17.0.35", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", "next": "^12.1.6", diff --git a/packages/plugin/altair/package.json b/packages/plugin/altair/package.json index fd18913e8..5179bbe78 100644 --- a/packages/plugin/altair/package.json +++ b/packages/plugin/altair/package.json @@ -40,7 +40,7 @@ "@types/node": "^17.0.35", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql-ez": "workspace:^0.15.0", "jest": "^28.1.0", "next": "^12.1.6", diff --git a/packages/plugin/automatic-persisted-queries/package.json b/packages/plugin/automatic-persisted-queries/package.json index f4648d952..a052f1df3 100644 --- a/packages/plugin/automatic-persisted-queries/package.json +++ b/packages/plugin/automatic-persisted-queries/package.json @@ -37,7 +37,7 @@ "@types/node": "^17.0.35", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", "jest": "^28.1.0", diff --git a/packages/plugin/codegen/package.json b/packages/plugin/codegen/package.json index e2abf464a..2dd63a428 100644 --- a/packages/plugin/codegen/package.json +++ b/packages/plugin/codegen/package.json @@ -50,7 +50,7 @@ "@types/prettier": "^2.6.1", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", "jest": "^28.1.0", diff --git a/packages/plugin/dataloader/package.json b/packages/plugin/dataloader/package.json index 3b2cd891f..7b26fe627 100644 --- a/packages/plugin/dataloader/package.json +++ b/packages/plugin/dataloader/package.json @@ -31,13 +31,16 @@ }, "dependencies": { "@envelop/dataloader": "^3.3.2", + "@envelop/execute-subscription-event": "^2.3.3", "dataloader": "^2.1.0" }, "devDependencies": { + "@envelop/core": "^2.3.3", + "@pothos/core": "^3.11.0", "@types/node": "^17.0.35", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", "jest": "^28.1.0", diff --git a/packages/plugin/graphiql/package.json b/packages/plugin/graphiql/package.json index aa5fb67c1..3b6b91fb7 100644 --- a/packages/plugin/graphiql/package.json +++ b/packages/plugin/graphiql/package.json @@ -37,7 +37,7 @@ "@types/node": "^17.0.35", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql-ez": "workspace:^0.15.0", "jest": "^28.1.0", "next": "^12.1.6", diff --git a/packages/plugin/modules/package.json b/packages/plugin/modules/package.json index 26dcdfe25..60ec792af 100644 --- a/packages/plugin/modules/package.json +++ b/packages/plugin/modules/package.json @@ -39,7 +39,7 @@ "@types/node": "^17.0.35", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", "jest": "^28.1.0", diff --git a/packages/plugin/scalars/package.json b/packages/plugin/scalars/package.json index aaab1a33c..8c464369f 100644 --- a/packages/plugin/scalars/package.json +++ b/packages/plugin/scalars/package.json @@ -38,7 +38,7 @@ "@types/node": "^17.0.35", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", "jest": "^28.1.0", diff --git a/packages/plugin/schema/package.json b/packages/plugin/schema/package.json index acebd7d06..b4f856d02 100644 --- a/packages/plugin/schema/package.json +++ b/packages/plugin/schema/package.json @@ -37,7 +37,7 @@ "@types/node": "^17.0.35", "bob-esbuild": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", "jest": "^28.1.0", diff --git a/packages/plugin/sse/package.json b/packages/plugin/sse/package.json index 0bddfcc64..e8a1fe0c3 100644 --- a/packages/plugin/sse/package.json +++ b/packages/plugin/sse/package.json @@ -32,7 +32,7 @@ "@types/node": "^17.0.35", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", "jest": "^28.1.0", diff --git a/packages/plugin/upload/package.json b/packages/plugin/upload/package.json index da0684ede..ad8c582a9 100644 --- a/packages/plugin/upload/package.json +++ b/packages/plugin/upload/package.json @@ -35,7 +35,7 @@ "@types/node-fetch": "^2.6.1", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", "graphql-upload": "^13.0.0", diff --git a/packages/plugin/voyager/package.json b/packages/plugin/voyager/package.json index add4f1531..8a6d76337 100644 --- a/packages/plugin/voyager/package.json +++ b/packages/plugin/voyager/package.json @@ -33,7 +33,7 @@ "@types/node": "^17.0.35", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql-ez": "workspace:^0.15.0", "jest": "^28.1.0", "next": "^12.1.6", diff --git a/packages/plugin/websockets/package.json b/packages/plugin/websockets/package.json index 5a53778cd..2811474a9 100644 --- a/packages/plugin/websockets/package.json +++ b/packages/plugin/websockets/package.json @@ -40,7 +40,7 @@ "@types/node": "^17.0.35", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", "jest": "^28.1.0", diff --git a/packages/sveltekit/main/package.json b/packages/sveltekit/main/package.json index 14ea46bc3..8367cb1d9 100644 --- a/packages/sveltekit/main/package.json +++ b/packages/sveltekit/main/package.json @@ -32,7 +32,7 @@ "@graphql-ez/utils": "workspace:^0.1.4" }, "devDependencies": { - "@envelop/core": "^2.3.2", + "@envelop/core": "^2.3.3", "@envelop/types": "^2.2.0", "@graphql-ez/plugin-altair": "workspace:^0.9.10", "@graphql-ez/plugin-graphiql": "workspace:^0.11.5", @@ -46,7 +46,7 @@ "altair-static-slim": "4.4.1", "bob-esbuild-cli": "^4.0.0", "changesets-github-release": "^0.1.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "execa": "^5.1.1", "get-port": "^5.1.1", "graphql": "16.1.0-experimental-stream-defer.6", diff --git a/packages/vercel/main/package.json b/packages/vercel/main/package.json index bcbd9466b..1af8daa2b 100644 --- a/packages/vercel/main/package.json +++ b/packages/vercel/main/package.json @@ -35,7 +35,7 @@ "@types/node": "^17.0.35", "@vercel/node": "^1.15.3", "bob-esbuild-cli": "^4.0.0", - "esbuild": "^0.14.39", + "esbuild": "^0.14.43", "graphql": "16.1.0-experimental-stream-defer.6", "graphql-ez": "workspace:^0.15.0", "typescript": "^4.6.4" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index fa8fbb984..369d8fa8e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,7 +1,7 @@ lockfileVersion: 5.4 overrides: - esbuild: ^0.14.36 + esbuild: ^0.14.43 trim@<0.0.3: '>=0.0.3' glob-parent@<5.1.2: '>=5.1.2' set-value@<4.0.1: '>=4.0.1' @@ -9,6 +9,7 @@ overrides: ansi-regex@>2.1.1 <5.0.1: ^5.0.1 json-schema@<0.4.0: '>=0.4.0' '@types/react': ^17.0.44 + '@types/hapi__hapi': 20.0.12 importers: @@ -28,7 +29,7 @@ importers: changesets-github-release: ^0.1.0 concurrently: ^7.2.0 cross-env: ^7.0.3 - esbuild: ^0.14.36 + esbuild: ^0.14.43 fastify: ^3.29.0 globby: ^13.1.1 graphql-ez-testing: workspace:^1.0.0 @@ -44,31 +45,31 @@ importers: '@changesets/cli': 2.22.0 '@types/chai': 4.3.1 '@types/express-serve-static-core': 4.17.28 - '@types/jest': 27.5.1 + '@types/jest': 27.5.2 '@types/mocha': 9.1.1 - '@types/node': 17.0.35 - bob-esbuild: 4.0.0_is6sdst7a3gdtxmvsittbmruma + '@types/node': 17.0.41 + bob-esbuild: 4.0.0_rfzdi44t3f7d4pftnjts7dki7e bob-esbuild-cli: 4.0.0_bob-esbuild@4.0.0 - bob-tsm: 1.0.0_is6sdst7a3gdtxmvsittbmruma + bob-tsm: 1.0.0_rfzdi44t3f7d4pftnjts7dki7e chalk: 5.0.1 changesets-github-release: 0.1.0 - concurrently: 7.2.0 + concurrently: 7.2.1 cross-env: 7.0.3 - esbuild: 0.14.39 + esbuild: 0.14.43 fastify: 3.29.0 globby: 13.1.1 graphql-ez-testing: link:internal/testing husky: 8.0.1 - jest: 28.1.0_@types+node@17.0.35 + jest: 28.1.1_@types+node@17.0.41 mocha: 10.0.0 prettier: 2.6.2 pretty-quick: 3.1.3_prettier@2.6.2 - ts-jest: 28.0.2_44jgbygewvphnhcbkurqcvskii - typescript: 4.6.4 + ts-jest: 28.0.4_hhjivpbef6nbltei64cv7t7zz4 + typescript: 4.7.3 benchmarks/apis/envelop-fastify-raw: specifiers: - '@envelop/core': ^2.3.2 + '@envelop/core': ^2.3.3 '@envelop/graphql-jit': ^4.2.2 '@envelop/parser-cache': ^4.3.2 '@envelop/types': ^2.2.0 @@ -76,33 +77,33 @@ importers: '@types/node': ^17.0.35 benchmark-bench: workspace:1.0.0 bob-tsm: ^1.0.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 fastify: ^3.29.0 graphql: 16.1.0-experimental-stream-defer.6 require-env-variable: ^4.0.1 typescript: ^4.6.4 dependencies: - '@envelop/core': 2.3.2_ptiko6tsqj7cmirxhjfetabnhu - '@envelop/graphql-jit': 4.2.2_jy4b2jdngoxzzeahlav4gmldjy - '@envelop/parser-cache': 4.3.2_jy4b2jdngoxzzeahlav4gmldjy - '@envelop/types': 2.2.0_ptiko6tsqj7cmirxhjfetabnhu - '@envelop/validation-cache': 4.3.2_jy4b2jdngoxzzeahlav4gmldjy + '@envelop/core': 2.3.3_ptiko6tsqj7cmirxhjfetabnhu + '@envelop/graphql-jit': 4.2.3_no7zwq3lhahvisczcmca6vlcuy + '@envelop/parser-cache': 4.3.3_no7zwq3lhahvisczcmca6vlcuy + '@envelop/types': 2.2.1_ptiko6tsqj7cmirxhjfetabnhu + '@envelop/validation-cache': 4.3.3_no7zwq3lhahvisczcmca6vlcuy benchmark-bench: link:../../bench fastify: 3.29.0 graphql: 16.1.0-experimental-stream-defer.6 require-env-variable: 4.0.1 devDependencies: - '@types/node': 17.0.35 - bob-tsm: 1.0.0_is6sdst7a3gdtxmvsittbmruma - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + bob-tsm: 1.0.0_rfzdi44t3f7d4pftnjts7dki7e + esbuild: 0.14.43 + typescript: 4.7.3 benchmarks/apis/express-graphql: specifiers: '@types/node': ^17.0.35 benchmark-bench: workspace:1.0.0 bob-tsm: ^1.0.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 express: ^4.18.1 express-graphql: ^0.12.0 graphql: 16.1.0-experimental-stream-defer.6 @@ -115,10 +116,10 @@ importers: graphql: 16.1.0-experimental-stream-defer.6 require-env-variable: 4.0.1 devDependencies: - '@types/node': 17.0.35 - bob-tsm: 1.0.0_is6sdst7a3gdtxmvsittbmruma - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + bob-tsm: 1.0.0_rfzdi44t3f7d4pftnjts7dki7e + esbuild: 0.14.43 + typescript: 4.7.3 benchmarks/apis/ez-express: specifiers: @@ -129,14 +130,14 @@ importers: benchmark-bench: workspace:1.0.0 bob-tsm: ^1.0.0 cross-env: ^7.0.3 - esbuild: ^0.14.36 + esbuild: ^0.14.43 express: ^4.18.1 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 require-env-variable: ^4.0.1 typescript: ^4.6.4 dependencies: - '@envelop/graphql-jit': 4.2.2_ptiko6tsqj7cmirxhjfetabnhu + '@envelop/graphql-jit': 4.2.3_ptiko6tsqj7cmirxhjfetabnhu '@graphql-ez/express': link:../../../packages/express/main '@types/express': 4.17.13 benchmark-bench: link:../../bench @@ -146,10 +147,10 @@ importers: graphql-ez: link:../../../packages/core/main require-env-variable: 4.0.1 devDependencies: - '@types/node': 17.0.35 - bob-tsm: 1.0.0_is6sdst7a3gdtxmvsittbmruma - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + bob-tsm: 1.0.0_rfzdi44t3f7d4pftnjts7dki7e + esbuild: 0.14.43 + typescript: 4.7.3 benchmarks/apis/ez-fastify: specifiers: @@ -159,14 +160,14 @@ importers: benchmark-bench: workspace:1.0.0 bob-tsm: ^1.0.0 cross-env: ^7.0.3 - esbuild: ^0.14.36 + esbuild: ^0.14.43 fastify: ^3.29.0 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 require-env-variable: ^4.0.1 typescript: ^4.6.4 dependencies: - '@envelop/graphql-jit': 4.2.2_ptiko6tsqj7cmirxhjfetabnhu + '@envelop/graphql-jit': 4.2.3_ptiko6tsqj7cmirxhjfetabnhu '@graphql-ez/fastify': link:../../../packages/fastify/main benchmark-bench: link:../../bench cross-env: 7.0.3 @@ -175,41 +176,41 @@ importers: graphql-ez: link:../../../packages/core/main require-env-variable: 4.0.1 devDependencies: - '@types/node': 17.0.35 - bob-tsm: 1.0.0_is6sdst7a3gdtxmvsittbmruma - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + bob-tsm: 1.0.0_rfzdi44t3f7d4pftnjts7dki7e + esbuild: 0.14.43 + typescript: 4.7.3 benchmarks/apis/ez-hapi: specifiers: '@envelop/graphql-jit': ^4.2.2 '@graphql-ez/hapi': workspace:^0.8.10 '@hapi/hapi': ^20.2.2 - '@types/hapi__hapi': ^20.0.10 + '@types/hapi__hapi': 20.0.12 '@types/node': ^17.0.35 benchmark-bench: workspace:1.0.0 bob-tsm: ^1.0.0 cross-env: ^7.0.3 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 require-env-variable: ^4.0.1 typescript: ^4.6.4 dependencies: - '@envelop/graphql-jit': 4.2.2_ptiko6tsqj7cmirxhjfetabnhu + '@envelop/graphql-jit': 4.2.3_ptiko6tsqj7cmirxhjfetabnhu '@graphql-ez/hapi': link:../../../packages/hapi/main '@hapi/hapi': 20.2.2 - '@types/hapi__hapi': 20.0.10 + '@types/hapi__hapi': 20.0.12 benchmark-bench: link:../../bench cross-env: 7.0.3 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../../packages/core/main require-env-variable: 4.0.1 devDependencies: - '@types/node': 17.0.35 - bob-tsm: 1.0.0_is6sdst7a3gdtxmvsittbmruma - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + bob-tsm: 1.0.0_rfzdi44t3f7d4pftnjts7dki7e + esbuild: 0.14.43 + typescript: 4.7.3 benchmarks/apis/ez-http: specifiers: @@ -219,13 +220,13 @@ importers: benchmark-bench: workspace:1.0.0 bob-tsm: ^1.0.0 cross-env: ^7.0.3 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 require-env-variable: ^4.0.1 typescript: ^4.6.4 dependencies: - '@envelop/graphql-jit': 4.2.2_ptiko6tsqj7cmirxhjfetabnhu + '@envelop/graphql-jit': 4.2.3_ptiko6tsqj7cmirxhjfetabnhu '@graphql-ez/http': link:../../../packages/http/main benchmark-bench: link:../../bench cross-env: 7.0.3 @@ -233,10 +234,10 @@ importers: graphql-ez: link:../../../packages/core/main require-env-variable: 4.0.1 devDependencies: - '@types/node': 17.0.35 - bob-tsm: 1.0.0_is6sdst7a3gdtxmvsittbmruma - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + bob-tsm: 1.0.0_rfzdi44t3f7d4pftnjts7dki7e + esbuild: 0.14.43 + typescript: 4.7.3 benchmarks/apis/ez-koa: specifiers: @@ -247,14 +248,14 @@ importers: benchmark-bench: workspace:1.0.0 bob-tsm: ^1.0.0 cross-env: ^7.0.3 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 koa: ^2.13.4 require-env-variable: ^4.0.1 typescript: ^4.6.4 dependencies: - '@envelop/graphql-jit': 4.2.2_ptiko6tsqj7cmirxhjfetabnhu + '@envelop/graphql-jit': 4.2.3_ptiko6tsqj7cmirxhjfetabnhu '@graphql-ez/koa': link:../../../packages/koa/main '@koa/router': 10.1.1 benchmark-bench: link:../../bench @@ -264,17 +265,17 @@ importers: koa: 2.13.4 require-env-variable: 4.0.1 devDependencies: - '@types/node': 17.0.35 - bob-tsm: 1.0.0_is6sdst7a3gdtxmvsittbmruma - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + bob-tsm: 1.0.0_rfzdi44t3f7d4pftnjts7dki7e + esbuild: 0.14.43 + typescript: 4.7.3 benchmarks/apis/graphql-helix: specifiers: '@types/node': ^17.0.35 benchmark-bench: workspace:1.0.0 bob-tsm: ^1.0.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 fastify: ^3.29.0 graphql: 16.1.0-experimental-stream-defer.6 graphql-helix: ^1.12.0 @@ -287,10 +288,10 @@ importers: graphql-helix: 1.12.0_ptiko6tsqj7cmirxhjfetabnhu require-env-variable: 4.0.1 devDependencies: - '@types/node': 17.0.35 - bob-tsm: 1.0.0_is6sdst7a3gdtxmvsittbmruma - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + bob-tsm: 1.0.0_rfzdi44t3f7d4pftnjts7dki7e + esbuild: 0.14.43 + typescript: 4.7.3 benchmarks/apis/mercurius: specifiers: @@ -298,7 +299,7 @@ importers: benchmark-bench: workspace:1.0.0 bob-tsm: ^1.0.0 cross-env: ^7.0.3 - esbuild: ^0.14.36 + esbuild: ^0.14.43 fastify: ^3.29.0 graphql: ^16.5.0 mercurius: ^9.5.0 @@ -309,13 +310,13 @@ importers: cross-env: 7.0.3 fastify: 3.29.0 graphql: 16.5.0 - mercurius: 9.5.0 + mercurius: 9.8.0 require-env-variable: 4.0.1 devDependencies: - '@types/node': 17.0.35 - bob-tsm: 1.0.0_is6sdst7a3gdtxmvsittbmruma - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + bob-tsm: 1.0.0_rfzdi44t3f7d4pftnjts7dki7e + esbuild: 0.14.43 + typescript: 4.7.3 dependenciesMeta: benchmark-bench: injected: true @@ -337,7 +338,7 @@ importers: cli-table: ^0.3.11 concurrently: ^7.2.0 cross-env: ^7.0.3 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 kill-port: ^2.0.0 md5: ^2.3.0 @@ -349,31 +350,31 @@ importers: wait-on: ^6.0.1 dependencies: '@faker-js/faker': 6.3.1 - '@graphql-tools/schema': 8.3.11_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/schema': 8.3.14_ptiko6tsqj7cmirxhjfetabnhu autocannon: 7.9.0 chalk: 5.0.1 cli-table: 0.3.11 - concurrently: 7.2.0 + concurrently: 7.2.1 cross-env: 7.0.3 kill-port: 2.0.0 md5: 2.3.0 mkdirp: 1.0.4 require-env-variable: 4.0.1 rimraf: 3.0.2 - systeminformation: 5.11.15 + systeminformation: 5.11.16 wait-on: 6.0.1 devDependencies: '@types/autocannon': 7.6.1 '@types/cli-table': 0.3.0 '@types/md5': 2.3.2 '@types/mkdirp': 1.0.2 - '@types/node': 17.0.35 + '@types/node': 17.0.41 '@types/rimraf': 3.0.2 '@types/wait-on': 5.3.1 - bob-tsm: 1.0.0_is6sdst7a3gdtxmvsittbmruma - esbuild: 0.14.39 + bob-tsm: 1.0.0_rfzdi44t3f7d4pftnjts7dki7e + esbuild: 0.14.43 graphql: 16.1.0-experimental-stream-defer.6 - typescript: 4.6.4 + typescript: 4.7.3 examples/cloudflare: specifiers: @@ -385,7 +386,7 @@ importers: '@types/node': ^17.0.35 clipboardy: ^3.0.0 concurrently: ^7.2.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 miniflare: ^2.4.0 @@ -401,12 +402,12 @@ importers: graphql-ez: link:../../packages/core/main worktop: 0.7.3 devDependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 clipboardy: 3.0.0 - concurrently: 7.2.0 - esbuild: 0.14.39 - miniflare: 2.4.0 - typescript: 4.6.4 + concurrently: 7.2.1 + esbuild: 0.14.43 + miniflare: 2.5.0 + typescript: 4.7.3 examples/express/complete: specifiers: @@ -423,7 +424,7 @@ importers: '@types/express': ^4.17.13 '@types/node': ^17.0.35 bob-tsm: ^1.0.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 express: ^4.18.1 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 @@ -444,10 +445,10 @@ importers: graphql-ez: link:../../../packages/core/main devDependencies: '@types/express': 4.17.13 - '@types/node': 17.0.35 - bob-tsm: 1.0.0_is6sdst7a3gdtxmvsittbmruma - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + bob-tsm: 1.0.0_rfzdi44t3f7d4pftnjts7dki7e + esbuild: 0.14.43 + typescript: 4.7.3 examples/fastify/basic: specifiers: @@ -456,7 +457,7 @@ importers: '@graphql-ez/plugin-schema': workspace:^0.8.5 '@types/node': ^17.0.35 bob-tsm: ^1.0.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 fastify: ^3.29.0 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 @@ -469,10 +470,10 @@ importers: graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../../packages/core/main devDependencies: - '@types/node': 17.0.35 - bob-tsm: 1.0.0_is6sdst7a3gdtxmvsittbmruma - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + bob-tsm: 1.0.0_rfzdi44t3f7d4pftnjts7dki7e + esbuild: 0.14.43 + typescript: 4.7.3 examples/fastify/complete: specifiers: @@ -490,7 +491,7 @@ importers: '@types/graphql-upload': ^8.0.11 '@types/node': ^17.0.35 bob-tsm: ^1.0.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 fastify: ^3.29.0 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 @@ -514,10 +515,10 @@ importers: graphql-ez: link:../../../packages/core/main graphql-upload: 13.0.0_ptiko6tsqj7cmirxhjfetabnhu devDependencies: - '@types/node': 17.0.35 - bob-tsm: 1.0.0_is6sdst7a3gdtxmvsittbmruma - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + bob-tsm: 1.0.0_rfzdi44t3f7d4pftnjts7dki7e + esbuild: 0.14.43 + typescript: 4.7.3 examples/fastify/nexus: specifiers: @@ -525,7 +526,7 @@ importers: '@graphql-ez/plugin-altair': workspace:^0.9.10 '@types/node': ^17.0.35 bob-tsm: ^1.0.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 fastify: ^3.29.0 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 @@ -539,10 +540,10 @@ importers: graphql-ez: link:../../../packages/core/main nexus: 1.3.0_ptiko6tsqj7cmirxhjfetabnhu devDependencies: - '@types/node': 17.0.35 - bob-tsm: 1.0.0_is6sdst7a3gdtxmvsittbmruma - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + bob-tsm: 1.0.0_rfzdi44t3f7d4pftnjts7dki7e + esbuild: 0.14.43 + typescript: 4.7.3 examples/fastify/pothos: specifiers: @@ -551,7 +552,7 @@ importers: '@pothos/core': ^3.11.0 '@types/node': ^17.0.35 bob-tsm: ^1.0.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 fastify: ^3.29.0 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 @@ -559,15 +560,15 @@ importers: dependencies: '@graphql-ez/fastify': link:../../../packages/fastify/main '@graphql-ez/plugin-graphiql': link:../../../packages/plugin/graphiql - '@pothos/core': 3.11.0_ptiko6tsqj7cmirxhjfetabnhu + '@pothos/core': 3.11.1_ptiko6tsqj7cmirxhjfetabnhu fastify: 3.29.0 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../../packages/core/main devDependencies: - '@types/node': 17.0.35 - bob-tsm: 1.0.0_is6sdst7a3gdtxmvsittbmruma - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + bob-tsm: 1.0.0_rfzdi44t3f7d4pftnjts7dki7e + esbuild: 0.14.43 + typescript: 4.7.3 examples/fastify/type-graphql: specifiers: @@ -575,7 +576,7 @@ importers: '@graphql-ez/plugin-altair': workspace:^0.9.10 '@types/node': ^17.0.35 class-validator: ^0.13.2 - esbuild: ^0.14.36 + esbuild: ^0.14.43 fastify: ^3.29.0 graphql: ^15.8.0 graphql-ez: workspace:^0.15.0 @@ -584,7 +585,7 @@ importers: type-graphql: ^1.1.1 typescript: ^4.6.4 dependencies: - '@graphql-ez/fastify': file:packages/fastify/main_zhb2t2uqs6hawsp4tfp3wlqeju + '@graphql-ez/fastify': file:packages/fastify/main_2jum3nbul7ib6cfmci55dkrayu '@graphql-ez/plugin-altair': link:../../../packages/plugin/altair class-validator: 0.13.2 fastify: 3.29.0 @@ -593,10 +594,10 @@ importers: reflect-metadata: 0.1.13 type-graphql: 1.1.1_v2revtygxcm7xrdg2oz3ssohfu devDependencies: - '@types/node': 17.0.35 - esbuild: 0.14.39 - tsc-watch: 5.0.3_typescript@4.6.4 - typescript: 4.6.4 + '@types/node': 17.0.41 + esbuild: 0.14.43 + tsc-watch: 5.0.3_typescript@4.7.3 + typescript: 4.7.3 dependenciesMeta: '@graphql-ez/fastify': injected: true @@ -616,10 +617,10 @@ importers: '@graphql-ez/plugin-websockets': workspace:^0.10.5 '@graphql-typed-document-node/core': ^3.1.1 '@hapi/hapi': ^20.2.2 - '@types/hapi__hapi': ^20.0.10 + '@types/hapi__hapi': 20.0.12 '@types/node': ^17.0.35 bob-tsm: ^1.0.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 typescript: ^4.6.4 @@ -638,11 +639,11 @@ importers: graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../../packages/core/main devDependencies: - '@types/hapi__hapi': 20.0.10 - '@types/node': 17.0.35 - bob-tsm: 1.0.0_is6sdst7a3gdtxmvsittbmruma - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/hapi__hapi': 20.0.12 + '@types/node': 17.0.41 + bob-tsm: 1.0.0_rfzdi44t3f7d4pftnjts7dki7e + esbuild: 0.14.43 + typescript: 4.7.3 examples/http/complete: specifiers: @@ -658,7 +659,7 @@ importers: '@graphql-typed-document-node/core': ^3.1.1 '@types/node': ^17.0.35 bob-tsm: ^1.0.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 typescript: ^4.6.4 @@ -676,10 +677,10 @@ importers: graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../../packages/core/main devDependencies: - '@types/node': 17.0.35 - bob-tsm: 1.0.0_is6sdst7a3gdtxmvsittbmruma - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + bob-tsm: 1.0.0_rfzdi44t3f7d4pftnjts7dki7e + esbuild: 0.14.43 + typescript: 4.7.3 examples/koa/complete: specifiers: @@ -700,7 +701,7 @@ importers: '@types/koa-bodyparser': ^4.3.7 '@types/node': ^17.0.35 bob-tsm: ^1.0.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 koa: ^2.13.4 @@ -727,10 +728,10 @@ importers: '@types/koa': 2.13.4 '@types/koa__router': 8.0.11 '@types/koa-bodyparser': 4.3.7 - '@types/node': 17.0.35 - bob-tsm: 1.0.0_is6sdst7a3gdtxmvsittbmruma - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + bob-tsm: 1.0.0_rfzdi44t3f7d4pftnjts7dki7e + esbuild: 0.14.43 + typescript: 4.7.3 examples/nextjs/complete: specifiers: @@ -746,7 +747,7 @@ importers: '@types/node': ^17.0.35 '@types/react': ^17.0.44 '@types/react-dom': ^18.0.4 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 graphql-request: ^4.2.0 @@ -767,17 +768,17 @@ importers: '@graphql-typed-document-node/core': 3.1.1_ptiko6tsqj7cmirxhjfetabnhu graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../../packages/core/main - graphql-request: 4.2.0_ptiko6tsqj7cmirxhjfetabnhu + graphql-request: 4.3.0_ptiko6tsqj7cmirxhjfetabnhu next: 12.1.6_sfoxds7t5ydpegc3knd667wn6m react: 17.0.2 react-dom: 17.0.2_react@17.0.2 - react-query: 3.39.0_sfoxds7t5ydpegc3knd667wn6m + react-query: 3.39.1_sfoxds7t5ydpegc3knd667wn6m devDependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 '@types/react': 17.0.45 - '@types/react-dom': 18.0.4 - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/react-dom': 18.0.5 + esbuild: 0.14.43 + typescript: 4.7.3 examples/sveltekit: specifiers: @@ -792,7 +793,7 @@ importers: '@sveltejs/kit': 1.0.0-next.336 '@types/node': ^17.0.35 altair-static-slim: 4.4.1 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 svelte: ^3.48.0 @@ -807,20 +808,20 @@ importers: '@graphql-ez/plugin-schema': link:../../packages/plugin/schema '@graphql-ez/plugin-voyager': link:../../packages/plugin/voyager '@graphql-ez/sveltekit': link:../../packages/sveltekit/main - '@graphql-tools/schema': 8.3.11_ptiko6tsqj7cmirxhjfetabnhu - '@sveltejs/adapter-node': 1.0.0-next.73 + '@graphql-tools/schema': 8.3.14_ptiko6tsqj7cmirxhjfetabnhu + '@sveltejs/adapter-node': 1.0.0-next.78 altair-static-slim: 4.4.1 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../packages/core/main devDependencies: '@sveltejs/kit': 1.0.0-next.336_svelte@3.48.0 - '@types/node': 17.0.35 - esbuild: 0.14.39 + '@types/node': 17.0.41 + esbuild: 0.14.43 svelte: 3.48.0 - svelte-check: 2.7.1_svelte@3.48.0 - svelte-preprocess: 4.10.6_wwvk7nlptlrqo2czohjtk6eiqm + svelte-check: 2.7.2_svelte@3.48.0 + svelte-preprocess: 4.10.7_dg7s4kx4gpzom5ifrkhkr632g4 tslib: 2.4.0 - typescript: 4.6.4 + typescript: 4.7.3 examples/vercel: specifiers: @@ -830,7 +831,7 @@ importers: '@graphql-ez/plugin-voyager': workspace:^0.9.4 '@graphql-ez/vercel': workspace:^0.1.3 '@types/node': ^17.0.35 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 typescript: ^4.6.4 @@ -843,9 +844,9 @@ importers: graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../packages/core/main devDependencies: - '@types/node': 17.0.35 - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + esbuild: 0.14.43 + typescript: 4.7.3 integration/gql-15-interop: specifiers: @@ -855,14 +856,14 @@ importers: '@types/node': ^17.0.35 c8: ^7.11.3 chai: ^4.3.6 - esbuild: ^0.14.36 + esbuild: ^0.14.43 fastify: ^3.29.0 graphql: 15.8.0 graphql-ez: workspace:^0.15.0 mocha: ^10.0.0 typescript: ^4.6.4 dependencies: - '@graphql-ez/fastify': file:packages/fastify/main_zhb2t2uqs6hawsp4tfp3wlqeju + '@graphql-ez/fastify': file:packages/fastify/main_2jum3nbul7ib6cfmci55dkrayu '@graphql-ez/fastify-testing': file:packages/fastify/testing_sqhjzyjhpubrs5nt3a5pw6eg2u '@graphql-ez/plugin-schema': file:packages/plugin/schema_kti5umutftx32khads4w5km74i c8: 7.11.3 @@ -872,9 +873,9 @@ importers: graphql-ez: file:packages/core/main_graphql@15.8.0 mocha: 10.0.0 devDependencies: - '@types/node': 17.0.35 - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + esbuild: 0.14.43 + typescript: 4.7.3 dependenciesMeta: '@graphql-ez/fastify': injected: true @@ -893,14 +894,14 @@ importers: '@types/node': ^17.0.35 c8: ^7.11.3 chai: ^4.3.6 - esbuild: ^0.14.36 + esbuild: ^0.14.43 fastify: ^3.29.0 graphql: 15.4.0-experimental-stream-defer.1 graphql-ez: workspace:^0.15.0 mocha: ^10.0.0 typescript: ^4.6.4 dependencies: - '@graphql-ez/fastify': file:packages/fastify/main_6fpq57nvx6znnzfa4pxowv7vaa + '@graphql-ez/fastify': file:packages/fastify/main_zwhu7u6w2oywovhc7abq363gym '@graphql-ez/fastify-testing': file:packages/fastify/testing_y7qmijdmb2lnle5xukozpy7eme '@graphql-ez/plugin-schema': file:packages/plugin/schema_wht7zxvd4mbl2ro6p5fyb4elme c8: 7.11.3 @@ -910,9 +911,9 @@ importers: graphql-ez: file:packages/core/main_gtorhqsyh7roiqmmeoqngd6dra mocha: 10.0.0 devDependencies: - '@types/node': 17.0.35 - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + esbuild: 0.14.43 + typescript: 4.7.3 dependenciesMeta: '@graphql-ez/fastify': injected: true @@ -931,26 +932,26 @@ importers: '@types/node': ^17.0.35 c8: ^7.11.3 chai: ^4.3.6 - esbuild: ^0.14.36 + esbuild: ^0.14.43 fastify: ^3.29.0 graphql: npm:graphql-esm@^16.0.1 graphql-ez: workspace:^0.15.0 mocha: ^10.0.0 typescript: ^4.6.4 dependencies: - '@graphql-ez/fastify': file:packages/fastify/main_cuxreruoxux7r6nsbmggizsgju - '@graphql-ez/fastify-testing': file:packages/fastify/testing_eeyhul5ewim5pfxcln2hhiqzge - '@graphql-ez/plugin-schema': file:packages/plugin/schema_qhijyrxvxpoo6bhcorgljnrg3e + '@graphql-ez/fastify': file:packages/fastify/main_ip2fag7yrkru33j5nv2pmsmrca + '@graphql-ez/fastify-testing': file:packages/fastify/testing_ilpcigonk3beyanmgicjct42da + '@graphql-ez/plugin-schema': file:packages/plugin/schema_g2hnhyfkisbf3ovuj245she75a c8: 7.11.3 chai: 4.3.6 fastify: 3.29.0 - graphql: /graphql-esm/16.0.1 - graphql-ez: file:packages/core/main_graphql-esm@16.0.1 + graphql: /graphql-esm/16.5.0 + graphql-ez: file:packages/core/main_graphql-esm@16.5.0 mocha: 10.0.0 devDependencies: - '@types/node': 17.0.35 - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + esbuild: 0.14.43 + typescript: 4.7.3 dependenciesMeta: '@graphql-ez/fastify': injected: true @@ -969,14 +970,14 @@ importers: '@types/node': ^17.0.35 c8: ^7.11.3 chai: ^4.3.6 - esbuild: ^0.14.36 + esbuild: ^0.14.43 fastify: ^3.29.0 graphql: 16.5.0 graphql-ez: workspace:^0.15.0 mocha: ^10.0.0 typescript: ^4.6.4 dependencies: - '@graphql-ez/fastify': file:packages/fastify/main_iefhj5rke6ropwdjpgx2aigeze + '@graphql-ez/fastify': file:packages/fastify/main_t3byqpwfysdo4vpyzyug2vzbd4 '@graphql-ez/fastify-testing': file:packages/fastify/testing_z7lu2y56hkyuv4z463qid2ggku '@graphql-ez/plugin-schema': file:packages/plugin/schema_3kx7l67agz4oy6ahmmg3ahjspe c8: 7.11.3 @@ -986,9 +987,9 @@ importers: graphql-ez: file:packages/core/main_graphql@16.5.0 mocha: 10.0.0 devDependencies: - '@types/node': 17.0.35 - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + esbuild: 0.14.43 + typescript: 4.7.3 dependenciesMeta: '@graphql-ez/fastify': injected: true @@ -1007,14 +1008,14 @@ importers: '@types/node': ^17.0.35 c8: ^7.11.3 chai: ^4.3.6 - esbuild: ^0.14.36 + esbuild: ^0.14.43 fastify: ^3.29.0 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 mocha: ^10.0.0 typescript: ^4.6.4 dependencies: - '@graphql-ez/fastify': file:packages/fastify/main_l4xxzc2mzpndkjmmmusdpgczvq + '@graphql-ez/fastify': file:packages/fastify/main_nx5c5bi7zcegprccoqqjpgzyay '@graphql-ez/fastify-testing': file:packages/fastify/testing_lw34f3xwisutwiioadzoe6c7hq '@graphql-ez/plugin-schema': file:packages/plugin/schema_ntu2nbgjp7fa2wks34g2v2mela c8: 7.11.3 @@ -1024,9 +1025,9 @@ importers: graphql-ez: file:packages/core/main_ptiko6tsqj7cmirxhjfetabnhu mocha: 10.0.0 devDependencies: - '@types/node': 17.0.35 - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + esbuild: 0.14.43 + typescript: 4.7.3 dependenciesMeta: '@graphql-ez/fastify': injected: true @@ -1045,16 +1046,16 @@ importers: '@types/node': ^17.0.35 c8: ^7.11.3 chai: ^4.3.6 - esbuild: ^0.14.36 + esbuild: ^0.14.43 fastify: ^3.29.0 graphql: 17.0.0-alpha.1 graphql-ez: workspace:^0.15.0 mocha: ^10.0.0 typescript: ^4.6.4 dependencies: - '@graphql-ez/fastify': file:packages/fastify/main_jdckogd5zr44muonbdrn55oiii + '@graphql-ez/fastify': file:packages/fastify/main_6gzqslc4pm727ynukg4sfw5vjq '@graphql-ez/fastify-testing': file:packages/fastify/testing_3muocqbkmggjq3v2qysnc2rsza - '@pothos/core': 3.11.0_graphql@17.0.0-alpha.1 + '@pothos/core': 3.11.1_graphql@17.0.0-alpha.1 c8: 7.11.3 chai: 4.3.6 fastify: 3.29.0 @@ -1062,9 +1063,9 @@ importers: graphql-ez: file:packages/core/main_graphql@17.0.0-alpha.1 mocha: 10.0.0 devDependencies: - '@types/node': 17.0.35 - esbuild: 0.14.39 - typescript: 4.6.4 + '@types/node': 17.0.41 + esbuild: 0.14.43 + typescript: 4.7.3 dependenciesMeta: '@graphql-ez/fastify': injected: true @@ -1089,7 +1090,7 @@ importers: '@types/express': ^4.17.13 '@types/express-serve-static-core': ^4.17.28 '@types/fs-extra': ^9.0.13 - '@types/hapi__hapi': ^20.0.10 + '@types/hapi__hapi': 20.0.12 '@types/jest': ^27.5.1 '@types/koa': ^2.13.4 '@types/koa__router': ^8.0.11 @@ -1097,7 +1098,7 @@ importers: '@types/node': ^17.0.35 '@types/ws': ^8.5.3 bob-esbuild-cli: ^4.0.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 eventsource: ^2.0.2 express: ^4.18.1 fast-safe-stringify: ^2.1.1 @@ -1120,25 +1121,25 @@ importers: devDependencies: '@fastify/nextjs': 8.0.0 '@graphql-ez/utils': link:../../packages/core/utils - '@graphql-tools/schema': 8.3.11_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/schema': 8.3.14_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu '@graphql-typed-document-node/core': 3.1.1_ptiko6tsqj7cmirxhjfetabnhu '@hapi/hapi': 20.2.2 - '@jest/types': 28.1.0 + '@jest/types': 28.1.1 '@koa/router': 10.1.1 '@types/eventsource': 1.1.8 '@types/express': 4.17.13 '@types/express-serve-static-core': 4.17.28 '@types/fs-extra': 9.0.13 - '@types/hapi__hapi': 20.0.10 - '@types/jest': 27.5.1 + '@types/hapi__hapi': 20.0.12 + '@types/jest': 27.5.2 '@types/koa': 2.13.4 '@types/koa__router': 8.0.11 '@types/lodash': 4.14.182 - '@types/node': 17.0.35 + '@types/node': 17.0.41 '@types/ws': 8.5.3 bob-esbuild-cli: 4.0.0 - esbuild: 0.14.39 + esbuild: 0.14.43 eventsource: 2.0.2 express: 4.18.1 fast-safe-stringify: 2.1.1 @@ -1149,15 +1150,15 @@ importers: graphql-ez: link:../../packages/core/main graphql-modules: 2.0.0_ptiko6tsqj7cmirxhjfetabnhu graphql-ws: 5.8.2_ptiko6tsqj7cmirxhjfetabnhu - jest: 28.1.0_@types+node@17.0.35 + jest: 28.1.1_@types+node@17.0.41 koa: 2.13.4 lodash: 4.17.21 - subscriptions-transport-ws-envelop: 2.0.2_ubxm27kysver5qrjxpyajpncji - ts-jest: 28.0.2_44jgbygewvphnhcbkurqcvskii - typescript: 4.6.4 - undici: 5.2.0 + subscriptions-transport-ws-envelop: 2.0.2_f3ebkmek6sz5dqes5jni24gc5i + ts-jest: 28.0.4_hhjivpbef6nbltei64cv7t7zz4 + typescript: 4.7.3 + undici: 5.4.0 wait-for-expect: 3.0.2 - ws: 8.6.0 + ws: 8.7.0 internal/website: specifiers: @@ -1181,7 +1182,7 @@ importers: concurrently: ^7.2.0 cross-env: ^7.0.3 date-fns: ^2.28.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 framer-motion: ^6.3.3 next: ^12.1.6 next-i18next: ^11.0.0 @@ -1198,40 +1199,40 @@ importers: wait-on: ^6.0.1 dependencies: '@chakra-ui/icons': 1.1.7_react@17.0.2 - '@chakra-ui/react': 1.8.8_qaq3qtwi74meo7khtwcm3ybelq + '@chakra-ui/react': 1.8.8_35m6iuyn7qvwsjtignyl5fhroi '@chakra-ui/theme-tools': 1.3.6 '@chakra-ui/utils': 1.10.4 '@emotion/react': 11.9.0_hx2b44akkvgcgvvtmk7ds2qk6q '@emotion/styled': 11.8.1_ghmaxsi4osxavftb6vjohy2gwe - '@guild-docs/client': 2.1.1_jsrkqj2jtjzjfvqjfl6vsjng3y + '@guild-docs/client': 2.1.1_atpkhdtt62h6guzoreo7gu2tvy '@guild-docs/server': 3.0.1_jeyqdb3iyk4kn7z7etcvk3n22q '@mdx-js/react': 2.1.1_react@17.0.2 '@theguild/components': 1.11.8_k2mvpji5i2ojml6m4ftklg47pa date-fns: 2.28.0 - framer-motion: 6.3.3_sfoxds7t5ydpegc3knd667wn6m + framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m next: 12.1.6_sfoxds7t5ydpegc3knd667wn6m next-i18next: 11.0.0_zhtyyhxvjc4vmyivr6fwl32yja next-seo: 5.4.0_zhtyyhxvjc4vmyivr6fwl32yja react: 17.0.2 react-dom: 17.0.2_react@17.0.2 - react-icons: 4.3.1_react@17.0.2 - react-use: 17.3.2_sfoxds7t5ydpegc3knd667wn6m - sharp: 0.30.4 + react-icons: 4.4.0_react@17.0.2 + react-use: 17.4.0_sfoxds7t5ydpegc3knd667wn6m + sharp: 0.30.6 shiki: 0.10.1 devDependencies: '@next/bundle-analyzer': 12.1.6 '@types/mdx-js__react': 1.5.5 - '@types/node': 17.0.35 + '@types/node': 17.0.41 '@types/react': 17.0.45 - '@types/react-dom': 18.0.4 + '@types/react-dom': 18.0.5 '@types/wait-on': 5.3.1 - bob-tsm: 1.0.0_is6sdst7a3gdtxmvsittbmruma - concurrently: 7.2.0 + bob-tsm: 1.0.0_rfzdi44t3f7d4pftnjts7dki7e + concurrently: 7.2.1 cross-env: 7.0.3 - esbuild: 0.14.39 + esbuild: 0.14.43 next-remote-watch: 1.0.0 open-cli: 7.0.1 - typescript: 4.6.4 + typescript: 4.7.3 wait-on: 6.0.1 packages/client/main: @@ -1246,7 +1247,7 @@ importers: '@types/ws': ^8.5.3 bob-ts: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 eventsource: ^2.0.2 extract-files: ^11.0.0 form-data: ^4.0.0 @@ -1261,29 +1262,29 @@ importers: ws: ^8.6.0 dependencies: '@graphql-ez/utils': link:../../core/utils - undici: 5.2.0 + undici: 5.4.0 devDependencies: '@graphql-typed-document-node/core': 3.1.1_ptiko6tsqj7cmirxhjfetabnhu '@types/eventsource': 1.1.8 '@types/extract-files': 8.1.1 - '@types/node': 17.0.35 + '@types/node': 17.0.41 '@types/node-fetch': 2.6.1 '@types/rimraf': 3.0.2 '@types/ws': 8.5.3 - bob-ts: 4.0.0_3sofxs7rfdpelyq2nsm2i5udgy + bob-ts: 4.0.0_vtnezxpv6rlphxoe5pxcnntjua changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 eventsource: 2.0.2 extract-files: 11.0.0 form-data: 4.0.0 graphql: 16.1.0-experimental-stream-defer.6 graphql-ws: 5.8.2_ptiko6tsqj7cmirxhjfetabnhu - jest: 28.1.0_@types+node@17.0.35 + jest: 28.1.1_@types+node@17.0.41 node-fetch: 2.6.7 rimraf: 3.0.2 - subscriptions-transport-ws-envelop: 2.0.2_ubxm27kysver5qrjxpyajpncji - typescript: 4.6.4 - ws: 8.6.0 + subscriptions-transport-ws-envelop: 2.0.2_f3ebkmek6sz5dqes5jni24gc5i + typescript: 4.7.3 + ws: 8.7.0 packages/cloudflare/main: specifiers: @@ -1292,7 +1293,7 @@ importers: '@types/wait-on': ^5.3.1 bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 execa: ^5.1.1 get-port: ^5.1.1 graphql: 16.1.0-experimental-stream-defer.6 @@ -1306,66 +1307,66 @@ importers: dependencies: '@graphql-ez/utils': link:../../core/utils devDependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 '@types/wait-on': 5.3.1 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 execa: 5.1.1 get-port: 5.1.1 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 - miniflare: 2.4.0 - typescript: 4.6.4 - undici: 5.2.0 + jest: 28.1.1_@types+node@17.0.41 + miniflare: 2.5.0 + typescript: 4.7.3 + undici: 5.4.0 wait-on: 6.0.1 worktop: 0.7.3 packages/core/main: specifiers: - '@envelop/core': ^2.3.2 + '@envelop/core': ^2.3.3 '@envelop/types': ^2.2.0 '@graphql-ez/utils': workspace:^0.1.4 '@pablosz/graphql-helix': workspace:^2.0.3 '@types/node': ^17.0.35 bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 jest: ^28.1.0 tiny-lru: 8.0.2 ts-jest: ^28.0.2 typescript: ^4.6.4 dependencies: - '@envelop/core': 2.3.2_ptiko6tsqj7cmirxhjfetabnhu - '@envelop/types': 2.2.0_ptiko6tsqj7cmirxhjfetabnhu + '@envelop/core': 2.3.3_ptiko6tsqj7cmirxhjfetabnhu + '@envelop/types': 2.2.1_ptiko6tsqj7cmirxhjfetabnhu '@graphql-ez/utils': link:../utils '@pablosz/graphql-helix': link:../../helix/core tiny-lru: 8.0.2 devDependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql: 16.1.0-experimental-stream-defer.6 - jest: 28.1.0_@types+node@17.0.35 - ts-jest: 28.0.2_57b7e4jn3m4dg7wj4huecq72va - typescript: 4.6.4 + jest: 28.1.1_@types+node@17.0.41 + ts-jest: 28.0.4_hhjivpbef6nbltei64cv7t7zz4 + typescript: 4.7.3 packages/core/utils: specifiers: '@types/node': ^17.0.35 bob-esbuild-cli: ^4.0.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 typescript: ^4.6.4 devDependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 bob-esbuild-cli: 4.0.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql: 16.1.0-experimental-stream-defer.6 - typescript: 4.6.4 + typescript: 4.7.3 packages/express/main: specifiers: @@ -1377,7 +1378,7 @@ importers: bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 cors: ^2.8.5 - esbuild: ^0.14.36 + esbuild: ^0.14.43 express: ^4.18.1 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 @@ -1391,16 +1392,16 @@ importers: cors: 2.8.5 devDependencies: '@types/express': 4.17.13 - '@types/node': 17.0.35 + '@types/node': 17.0.41 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 express: 4.18.1 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 - ts-jest: 28.0.2_57b7e4jn3m4dg7wj4huecq72va - typescript: 4.6.4 + jest: 28.1.1_@types+node@17.0.41 + ts-jest: 28.0.4_hhjivpbef6nbltei64cv7t7zz4 + typescript: 4.7.3 packages/express/testing: specifiers: @@ -1411,7 +1412,7 @@ importers: '@types/node': ^17.0.35 bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 express: ^4.18.1 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 @@ -1423,15 +1424,15 @@ importers: devDependencies: '@graphql-ez/express': link:../main '@types/express': 4.17.13 - '@types/node': 17.0.35 + '@types/node': 17.0.41 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 express: 4.18.1 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 - typescript: 4.6.4 + jest: 28.1.1_@types+node@17.0.41 + typescript: 4.7.3 packages/fastify/main: specifiers: @@ -1440,7 +1441,7 @@ importers: '@types/node': ^17.0.35 bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 fastify: ^3.29.0 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 @@ -1451,16 +1452,16 @@ importers: '@fastify/cors': 7.0.0 '@graphql-ez/utils': link:../../core/utils devDependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 fastify: 3.29.0 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 - ts-jest: 28.0.2_57b7e4jn3m4dg7wj4huecq72va - typescript: 4.6.4 + jest: 28.1.1_@types+node@17.0.41 + ts-jest: 28.0.4_hhjivpbef6nbltei64cv7t7zz4 + typescript: 4.7.3 packages/fastify/testing: specifiers: @@ -1470,7 +1471,7 @@ importers: '@types/node': ^17.0.35 bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 fastify: ^3.29.0 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 @@ -1481,39 +1482,39 @@ importers: '@graphql-ez/utils': link:../../core/utils devDependencies: '@graphql-ez/fastify': link:../main - '@types/node': 17.0.35 + '@types/node': 17.0.41 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 fastify: 3.29.0 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 - typescript: 4.6.4 + jest: 28.1.1_@types+node@17.0.41 + typescript: 4.7.3 packages/hapi/main: specifiers: - '@types/hapi__hapi': 20.0.10 + '@types/hapi__hapi': 20.0.12 '@types/node': ^17.0.35 bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 jest: ^28.1.0 ts-jest: ^28.0.2 typescript: ^4.6.4 devDependencies: - '@types/hapi__hapi': 20.0.10 - '@types/node': 17.0.35 + '@types/hapi__hapi': 20.0.12 + '@types/node': 17.0.41 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 - ts-jest: 28.0.2_57b7e4jn3m4dg7wj4huecq72va - typescript: 4.6.4 + jest: 28.1.1_@types+node@17.0.41 + ts-jest: 28.0.4_hhjivpbef6nbltei64cv7t7zz4 + typescript: 4.7.3 packages/hapi/testing: specifiers: @@ -1521,11 +1522,11 @@ importers: '@graphql-ez/hapi': workspace:^0.8.10 '@graphql-ez/utils': workspace:^0.1.4 '@hapi/hapi': ^20.2.2 - '@types/hapi__hapi': ^20.0.10 + '@types/hapi__hapi': 20.0.12 '@types/node': ^17.0.35 bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 jest: ^28.1.0 @@ -1536,31 +1537,31 @@ importers: devDependencies: '@graphql-ez/hapi': link:../main '@hapi/hapi': 20.2.2 - '@types/hapi__hapi': 20.0.10 - '@types/node': 17.0.35 + '@types/hapi__hapi': 20.0.12 + '@types/node': 17.0.41 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 - typescript: 4.6.4 + jest: 28.1.1_@types+node@17.0.41 + typescript: 4.7.3 packages/helix/core: specifiers: '@types/node': ^17.0.35 bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 typescript: ^4.6.4 devDependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql: 16.1.0-experimental-stream-defer.6 - typescript: 4.6.4 + typescript: 4.7.3 packages/helix/graphiql: specifiers: @@ -1579,7 +1580,7 @@ importers: concurrently: ^7.2.0 copy-to-clipboard: ^3.3.1 cpy: ^9.0.1 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphiql: ^1.8.10 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 @@ -1593,31 +1594,31 @@ importers: dependencies: '@graphql-ez/utils': link:../../core/utils devDependencies: - '@graphiql/toolkit': 0.4.5_2ul57u2danryqu6cyf2org6kaq - '@graphql-tools/url-loader': 7.9.21_jbzygwtciwlvjtn3q7t33u52ie - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu + '@graphiql/toolkit': 0.4.5_yjlbj5iefrahkkqtzjdxwg3bsi + '@graphql-tools/url-loader': 7.9.24_hpd26pxjdtqgd5vnuymhglwlia + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu '@n1ru4l/graphql-live-query': 0.9.0_ptiko6tsqj7cmirxhjfetabnhu - '@types/node': 17.0.35 - '@types/prettier': 2.6.1 + '@types/node': 17.0.41 + '@types/prettier': 2.6.3 '@types/prop-types': 15.7.5 '@types/react': 17.0.45 - '@types/react-dom': 18.0.4 + '@types/react-dom': 18.0.5 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - concurrently: 7.2.0 + concurrently: 7.2.1 copy-to-clipboard: 3.3.1 cpy: 9.0.1 - esbuild: 0.14.39 - graphiql: 1.8.10_tiebhckugsu5hkbnws2sbxj6wq + esbuild: 0.14.43 + graphiql: 1.9.6_xcdbzumhatha34vl6yvnh3fagi graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - graphql-language-service-interface: 2.10.2_7rnmjw6xrmrbv2wtd54ymw6d6y + graphql-language-service-interface: 2.10.2_szxzbfwxgmeuidyijthf6a72pu graphql-ws: 5.8.2_ptiko6tsqj7cmirxhjfetabnhu prettier: 2.6.2 prop-types: 15.8.1 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 - typescript: 4.6.4 + typescript: 4.7.3 packages/http/main: specifiers: @@ -1627,7 +1628,7 @@ importers: bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 cors: ^2.8.5 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 jest: ^28.1.0 @@ -1638,15 +1639,15 @@ importers: '@types/cors': 2.8.12 cors: 2.8.5 devDependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 - ts-jest: 28.0.2_57b7e4jn3m4dg7wj4huecq72va - typescript: 4.6.4 + jest: 28.1.1_@types+node@17.0.41 + ts-jest: 28.0.4_hhjivpbef6nbltei64cv7t7zz4 + typescript: 4.7.3 packages/http/testing: specifiers: @@ -1656,7 +1657,7 @@ importers: '@types/node': ^17.0.35 bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 jest: ^28.1.0 @@ -1666,14 +1667,14 @@ importers: '@graphql-ez/utils': link:../../core/utils devDependencies: '@graphql-ez/http': link:../main - '@types/node': 17.0.35 + '@types/node': 17.0.41 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 - typescript: 4.6.4 + jest: 28.1.1_@types+node@17.0.41 + typescript: 4.7.3 packages/koa/main: specifiers: @@ -1686,7 +1687,7 @@ importers: '@types/node': ^17.0.35 bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 jest: ^28.1.0 @@ -1703,16 +1704,16 @@ importers: '@koa/router': 10.1.1 '@types/koa': 2.13.4 '@types/koa__router': 8.0.11 - '@types/node': 17.0.35 + '@types/node': 17.0.41 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 + jest: 28.1.1_@types+node@17.0.41 koa: 2.13.4 - ts-jest: 28.0.2_57b7e4jn3m4dg7wj4huecq72va - typescript: 4.6.4 + ts-jest: 28.0.4_hhjivpbef6nbltei64cv7t7zz4 + typescript: 4.7.3 packages/koa/testing: specifiers: @@ -1725,7 +1726,7 @@ importers: '@types/node': ^17.0.35 bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 jest: ^28.1.0 @@ -1739,15 +1740,15 @@ importers: '@koa/router': 10.1.1 '@types/koa': 2.13.4 '@types/koa__router': 8.0.11 - '@types/node': 17.0.35 + '@types/node': 17.0.41 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 + jest: 28.1.1_@types+node@17.0.41 koa: 2.13.4 - typescript: 4.6.4 + typescript: 4.7.3 packages/nextjs/main: specifiers: @@ -1759,7 +1760,7 @@ importers: bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 cors: ^2.8.5 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 jest: ^28.1.0 @@ -1773,22 +1774,22 @@ importers: '@types/cors': 2.8.12 cors: 2.8.5 devDependencies: - '@graphql-tools/schema': 8.3.11_ptiko6tsqj7cmirxhjfetabnhu - '@types/node': 17.0.35 + '@graphql-tools/schema': 8.3.14_ptiko6tsqj7cmirxhjfetabnhu + '@types/node': 17.0.41 '@types/react': 17.0.45 - '@types/react-dom': 18.0.4 + '@types/react-dom': 18.0.5 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 + jest: 28.1.1_@types+node@17.0.41 next: 12.1.6_sfoxds7t5ydpegc3knd667wn6m - next-test-api-route-handler: 3.1.2_next@12.1.6 + next-test-api-route-handler: 3.1.3_next@12.1.6 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 - ts-jest: 28.0.2_57b7e4jn3m4dg7wj4huecq72va - typescript: 4.6.4 + ts-jest: 28.0.4_hhjivpbef6nbltei64cv7t7zz4 + typescript: 4.7.3 packages/nextjs/testing: specifiers: @@ -1797,7 +1798,7 @@ importers: '@graphql-typed-document-node/core': ^3.1.1 '@types/node': ^17.0.35 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 next: ^12.1.6 @@ -1806,16 +1807,16 @@ importers: dependencies: '@graphql-ez/utils': link:../../core/utils '@graphql-typed-document-node/core': 3.1.1_ptiko6tsqj7cmirxhjfetabnhu - next-test-api-route-handler: 3.1.2_next@12.1.6 + next-test-api-route-handler: 3.1.3_next@12.1.6 devDependencies: '@graphql-ez/nextjs': link:../main - '@types/node': 17.0.35 + '@types/node': 17.0.41 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main next: 12.1.6 - typescript: 4.6.4 + typescript: 4.7.3 packages/plugin/altair: specifiers: @@ -1826,7 +1827,7 @@ importers: bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 cross-fetch: ^3.1.5 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql-ez: workspace:^0.15.0 jest: ^28.1.0 mime-types: ^2.1.35 @@ -1840,15 +1841,15 @@ importers: mime-types: 2.1.35 devDependencies: '@types/mime-types': 2.1.1 - '@types/node': 17.0.35 + '@types/node': 17.0.41 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 + jest: 28.1.1_@types+node@17.0.41 next: 12.1.6 - ts-jest: 28.0.2_57b7e4jn3m4dg7wj4huecq72va - typescript: 4.6.4 + ts-jest: 28.0.4_hhjivpbef6nbltei64cv7t7zz4 + typescript: 4.7.3 packages/plugin/automatic-persisted-queries: specifiers: @@ -1856,7 +1857,7 @@ importers: '@types/node': ^17.0.35 bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 jest: ^28.1.0 @@ -1867,15 +1868,15 @@ importers: '@graphql-ez/utils': link:../../core/utils tiny-lru: 8.0.2 devDependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 - ts-jest: 28.0.2_57b7e4jn3m4dg7wj4huecq72va - typescript: 4.6.4 + jest: 28.1.1_@types+node@17.0.41 + ts-jest: 28.0.4_hhjivpbef6nbltei64cv7t7zz4 + typescript: 4.7.3 packages/plugin/codegen: specifiers: @@ -1895,7 +1896,7 @@ importers: '@types/prettier': ^2.6.1 bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 jest: ^28.1.0 @@ -1907,57 +1908,63 @@ importers: dependencies: '@graphql-codegen/core': 2.5.1_ptiko6tsqj7cmirxhjfetabnhu '@graphql-codegen/plugin-helpers': 2.4.2_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-codegen/typed-document-node': 2.2.11_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-codegen/typescript': 2.4.11_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-codegen/typescript-operations': 2.4.0_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-codegen/typescript-resolvers': 2.6.4_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-codegen/typed-document-node': 2.2.12_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-codegen/typescript': 2.5.0_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-codegen/typescript-operations': 2.4.1_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-codegen/typescript-resolvers': 2.6.5_ptiko6tsqj7cmirxhjfetabnhu '@graphql-ez/utils': link:../../core/utils - '@graphql-tools/graphql-file-loader': 7.3.12_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/load': 7.5.11_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/graphql-file-loader': 7.3.15_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/load': 7.5.14_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu mkdirp: 1.0.4 prettier: 2.6.2 devDependencies: '@types/fs-extra': 9.0.13 '@types/mkdirp': 1.0.2 - '@types/node': 17.0.35 - '@types/prettier': 2.6.1 + '@types/node': 17.0.41 + '@types/prettier': 2.6.3 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 + jest: 28.1.1_@types+node@17.0.41 tmp-promise: 3.0.3 - ts-jest: 28.0.2_57b7e4jn3m4dg7wj4huecq72va - typescript: 4.6.4 + ts-jest: 28.0.4_hhjivpbef6nbltei64cv7t7zz4 + typescript: 4.7.3 packages/plugin/dataloader: specifiers: + '@envelop/core': ^2.3.3 '@envelop/dataloader': ^3.3.2 + '@envelop/execute-subscription-event': ^2.3.3 + '@pothos/core': ^3.11.0 '@types/node': ^17.0.35 bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 dataloader: ^2.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 jest: ^28.1.0 ts-jest: ^28.0.2 typescript: ^4.6.4 dependencies: - '@envelop/dataloader': 3.3.2_ie2i5cjviqkcczt4i34vx4ncc4 + '@envelop/dataloader': 3.3.3_pqiybher5k4egqjfgmhs6ma7ou + '@envelop/execute-subscription-event': 2.3.3_no7zwq3lhahvisczcmca6vlcuy dataloader: 2.1.0 devDependencies: - '@types/node': 17.0.35 + '@envelop/core': 2.3.3_ptiko6tsqj7cmirxhjfetabnhu + '@pothos/core': 3.11.1_ptiko6tsqj7cmirxhjfetabnhu + '@types/node': 17.0.41 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 - ts-jest: 28.0.2_57b7e4jn3m4dg7wj4huecq72va - typescript: 4.6.4 + jest: 28.1.1_@types+node@17.0.41 + ts-jest: 28.0.4_hhjivpbef6nbltei64cv7t7zz4 + typescript: 4.7.3 packages/plugin/graphiql: specifiers: @@ -1966,7 +1973,7 @@ importers: '@types/node': ^17.0.35 bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql-ez: workspace:^0.15.0 jest: ^28.1.0 next: ^12.1.6 @@ -1976,15 +1983,15 @@ importers: '@graphql-ez/utils': link:../../core/utils '@pablosz/graphql-helix-graphiql': link:../../helix/graphiql devDependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 + jest: 28.1.1_@types+node@17.0.41 next: 12.1.6 - ts-jest: 28.0.2_57b7e4jn3m4dg7wj4huecq72va - typescript: 4.6.4 + ts-jest: 28.0.4_hhjivpbef6nbltei64cv7t7zz4 + typescript: 4.7.3 packages/plugin/modules: specifiers: @@ -1994,7 +2001,7 @@ importers: '@types/node': ^17.0.35 bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 graphql-modules: ^2.0.0 @@ -2002,20 +2009,20 @@ importers: ts-jest: ^28.0.2 typescript: ^4.6.4 dependencies: - '@envelop/graphql-modules': 3.3.2_ed6pbbjvgqtbpdosb3hmddokky + '@envelop/graphql-modules': 3.3.3_ed6pbbjvgqtbpdosb3hmddokky '@graphql-ez/utils': link:../../core/utils - '@graphql-tools/schema': 8.3.11_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/schema': 8.3.14_ptiko6tsqj7cmirxhjfetabnhu graphql-modules: 2.0.0_ptiko6tsqj7cmirxhjfetabnhu devDependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 - ts-jest: 28.0.2_57b7e4jn3m4dg7wj4huecq72va - typescript: 4.6.4 + jest: 28.1.1_@types+node@17.0.41 + ts-jest: 28.0.4_hhjivpbef6nbltei64cv7t7zz4 + typescript: 4.7.3 packages/plugin/scalars: specifiers: @@ -2024,7 +2031,7 @@ importers: '@types/node': ^17.0.35 bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 graphql-scalars: ^1.17.0 @@ -2033,18 +2040,18 @@ importers: typescript: ^4.6.4 dependencies: '@graphql-ez/utils': link:../../core/utils - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu graphql-scalars: 1.17.0_ptiko6tsqj7cmirxhjfetabnhu devDependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 - ts-jest: 28.0.2_57b7e4jn3m4dg7wj4huecq72va - typescript: 4.6.4 + jest: 28.1.1_@types+node@17.0.41 + ts-jest: 28.0.4_hhjivpbef6nbltei64cv7t7zz4 + typescript: 4.7.3 packages/plugin/schema: specifiers: @@ -2054,7 +2061,7 @@ importers: '@types/node': ^17.0.35 bob-esbuild: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 jest: ^28.1.0 @@ -2062,18 +2069,18 @@ importers: typescript: ^4.6.4 dependencies: '@graphql-ez/utils': link:../../core/utils - '@graphql-tools/schema': 8.3.11_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/schema': 8.3.14_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu devDependencies: - '@types/node': 17.0.35 - bob-esbuild: 4.0.0_is6sdst7a3gdtxmvsittbmruma + '@types/node': 17.0.41 + bob-esbuild: 4.0.0_rfzdi44t3f7d4pftnjts7dki7e changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 - ts-jest: 28.0.2_57b7e4jn3m4dg7wj4huecq72va - typescript: 4.6.4 + jest: 28.1.1_@types+node@17.0.41 + ts-jest: 28.0.4_hhjivpbef6nbltei64cv7t7zz4 + typescript: 4.7.3 packages/plugin/sse: specifiers: @@ -2081,7 +2088,7 @@ importers: '@types/node': ^17.0.35 bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 graphql-sse: ^1.2.0 @@ -2091,14 +2098,14 @@ importers: '@graphql-ez/utils': link:../../core/utils graphql-sse: 1.2.0_ptiko6tsqj7cmirxhjfetabnhu devDependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 - typescript: 4.6.4 + jest: 28.1.1_@types+node@17.0.41 + typescript: 4.7.3 packages/plugin/upload: specifiers: @@ -2108,7 +2115,7 @@ importers: '@types/node-fetch': ^2.6.1 bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 graphql-upload: ^13.0.0 @@ -2120,18 +2127,18 @@ importers: '@graphql-ez/utils': link:../../core/utils devDependencies: '@types/graphql-upload': 8.0.11 - '@types/node': 17.0.35 + '@types/node': 17.0.41 '@types/node-fetch': 2.6.1 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main graphql-upload: 13.0.0_ptiko6tsqj7cmirxhjfetabnhu - jest: 28.1.0_@types+node@17.0.35 + jest: 28.1.1_@types+node@17.0.41 node-fetch: 2.6.7 - ts-jest: 28.0.2_57b7e4jn3m4dg7wj4huecq72va - typescript: 4.6.4 + ts-jest: 28.0.4_hhjivpbef6nbltei64cv7t7zz4 + typescript: 4.7.3 packages/plugin/voyager: specifiers: @@ -2139,7 +2146,7 @@ importers: '@types/node': ^17.0.35 bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql-ez: workspace:^0.15.0 jest: ^28.1.0 next: ^12.1.6 @@ -2148,15 +2155,15 @@ importers: dependencies: '@graphql-ez/utils': link:../../core/utils devDependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 + jest: 28.1.1_@types+node@17.0.41 next: 12.1.6 - ts-jest: 28.0.2_57b7e4jn3m4dg7wj4huecq72va - typescript: 4.6.4 + ts-jest: 28.0.4_hhjivpbef6nbltei64cv7t7zz4 + typescript: 4.7.3 packages/plugin/websockets: specifiers: @@ -2165,7 +2172,7 @@ importers: '@types/ws': ^8.5.3 bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 graphql-ws: ^5.8.2 @@ -2178,22 +2185,22 @@ importers: '@graphql-ez/utils': link:../../core/utils '@types/ws': 8.5.3 graphql-ws: 5.8.2_ptiko6tsqj7cmirxhjfetabnhu - subscriptions-transport-ws-envelop: 2.0.2_ubxm27kysver5qrjxpyajpncji - ws: 8.6.0 + subscriptions-transport-ws-envelop: 2.0.2_f3ebkmek6sz5dqes5jni24gc5i + ws: 8.7.0 devDependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 - ts-jest: 28.0.2_57b7e4jn3m4dg7wj4huecq72va - typescript: 4.6.4 + jest: 28.1.1_@types+node@17.0.41 + ts-jest: 28.0.4_hhjivpbef6nbltei64cv7t7zz4 + typescript: 4.7.3 packages/sveltekit/main: specifiers: - '@envelop/core': ^2.3.2 + '@envelop/core': ^2.3.3 '@envelop/types': ^2.2.0 '@graphql-ez/plugin-altair': workspace:^0.9.10 '@graphql-ez/plugin-graphiql': workspace:^0.11.5 @@ -2208,7 +2215,7 @@ importers: altair-static-slim: 4.4.1 bob-esbuild-cli: ^4.0.0 changesets-github-release: ^0.1.0 - esbuild: ^0.14.36 + esbuild: ^0.14.43 execa: ^5.1.1 get-port: ^5.1.1 graphql: 16.1.0-experimental-stream-defer.6 @@ -2225,33 +2232,33 @@ importers: dependencies: '@graphql-ez/utils': link:../../core/utils devDependencies: - '@envelop/core': 2.3.2_ptiko6tsqj7cmirxhjfetabnhu - '@envelop/types': 2.2.0_ptiko6tsqj7cmirxhjfetabnhu + '@envelop/core': 2.3.3_ptiko6tsqj7cmirxhjfetabnhu + '@envelop/types': 2.2.1_ptiko6tsqj7cmirxhjfetabnhu '@graphql-ez/plugin-altair': link:../../plugin/altair '@graphql-ez/plugin-graphiql': link:../../plugin/graphiql '@graphql-ez/plugin-schema': link:../../plugin/schema '@graphql-ez/plugin-voyager': link:../../plugin/voyager - '@graphql-tools/schema': 8.3.11_ptiko6tsqj7cmirxhjfetabnhu - '@sveltejs/adapter-node': 1.0.0-next.73 + '@graphql-tools/schema': 8.3.14_ptiko6tsqj7cmirxhjfetabnhu + '@sveltejs/adapter-node': 1.0.0-next.78 '@sveltejs/kit': 1.0.0-next.336_svelte@3.48.0 - '@types/node': 17.0.35 + '@types/node': 17.0.41 '@types/wait-on': 5.3.1 altair-static-slim: 4.4.1 bob-esbuild-cli: 4.0.0 changesets-github-release: 0.1.0 - esbuild: 0.14.39 + esbuild: 0.14.43 execa: 5.1.1 get-port: 5.1.1 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - jest: 28.1.0_@types+node@17.0.35 + jest: 28.1.1_@types+node@17.0.41 mime-types: 2.1.35 svelte: 3.48.0 - svelte-check: 2.7.1_svelte@3.48.0 - svelte-preprocess: 4.10.6_wwvk7nlptlrqo2czohjtk6eiqm + svelte-check: 2.7.2_svelte@3.48.0 + svelte-preprocess: 4.10.7_dg7s4kx4gpzom5ifrkhkr632g4 tiny-lru: 8.0.2 tslib: 2.4.0 - typescript: 4.6.4 + typescript: 4.7.3 wait-on: 6.0.1 packages/vercel/main: @@ -2261,7 +2268,7 @@ importers: '@vercel/node': ^1.15.3 bob-esbuild-cli: ^4.0.0 cors: ^2.8.5 - esbuild: ^0.14.36 + esbuild: ^0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: workspace:^0.15.0 typescript: ^4.6.4 @@ -2269,13 +2276,13 @@ importers: '@types/cors': 2.8.12 cors: 2.8.5 devDependencies: - '@types/node': 17.0.35 - '@vercel/node': 1.15.3 + '@types/node': 17.0.41 + '@vercel/node': 1.15.4 bob-esbuild-cli: 4.0.0 - esbuild: 0.14.39 + esbuild: 0.14.43 graphql: 16.1.0-experimental-stream-defer.6 graphql-ez: link:../../core/main - typescript: 4.6.4 + typescript: 4.7.3 packages: @@ -2294,7 +2301,7 @@ packages: '@algolia/autocomplete-preset-algolia': 1.6.3_algoliasearch@4.13.1 '@algolia/autocomplete-shared': 1.6.3 htm: 3.1.1 - preact: 10.7.2 + preact: 10.7.3 transitivePeerDependencies: - algoliasearch dev: false @@ -2458,20 +2465,20 @@ packages: resolution: {integrity: sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==} engines: {node: '>=6.9.0'} - /@babel/core/7.18.0: - resolution: {integrity: sha512-Xyw74OlJwDijToNi0+6BBI5mLLR5+5R3bcSH80LXzjzEGEUlvNzujEE71BaD/ApEZHAvFI/Mlmp4M5lIkdeeWw==} + /@babel/core/7.18.2: + resolution: {integrity: sha512-A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.16.7 - '@babel/generator': 7.18.0 - '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.0 + '@babel/generator': 7.18.2 + '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.2 '@babel/helper-module-transforms': 7.18.0 - '@babel/helpers': 7.18.0 - '@babel/parser': 7.18.0 + '@babel/helpers': 7.18.2 + '@babel/parser': 7.18.4 '@babel/template': 7.16.7 - '@babel/traverse': 7.18.0 - '@babel/types': 7.18.0 + '@babel/traverse': 7.18.2 + '@babel/types': 7.18.4 convert-source-map: 1.8.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -2480,11 +2487,11 @@ packages: transitivePeerDependencies: - supports-color - /@babel/generator/7.18.0: - resolution: {integrity: sha512-81YO9gGx6voPXlvYdZBliFXAZU8vZ9AZ6z+CjlmcnaeOcYSFbMTpdeDUO9xD9dh/68Vq03I8ZspfUTPfitcDHg==} + /@babel/generator/7.18.2: + resolution: {integrity: sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.0 + '@babel/types': 7.18.4 '@jridgewell/gen-mapping': 0.3.1 jsesc: 2.5.2 @@ -2492,11 +2499,11 @@ packages: resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.0 + '@babel/types': 7.18.4 dev: false - /@babel/helper-compilation-targets/7.17.10_@babel+core@7.18.0: - resolution: {integrity: sha512-gh3RxjWbauw/dFiU/7whjd0qN9K6nPJMqe6+Er7rOavFh0CQUSwhAE3IcTho2rywPJFxej6TUUHDkWcYI6gGqQ==} + /@babel/helper-compilation-targets/7.18.2_@babel+core@7.18.2: + resolution: {integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -2505,12 +2512,12 @@ packages: optional: true dependencies: '@babel/compat-data': 7.17.10 - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-validator-option': 7.16.7 - browserslist: 4.20.3 + browserslist: 4.20.4 semver: 6.3.0 - /@babel/helper-create-class-features-plugin/7.18.0_@babel+core@7.18.0: + /@babel/helper-create-class-features-plugin/7.18.0_@babel+core@7.18.2: resolution: {integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2519,62 +2526,60 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-environment-visitor': 7.18.2 '@babel/helper-function-name': 7.17.9 '@babel/helper-member-expression-to-functions': 7.17.7 '@babel/helper-optimise-call-expression': 7.16.7 - '@babel/helper-replace-supers': 7.16.7 + '@babel/helper-replace-supers': 7.18.2 '@babel/helper-split-export-declaration': 7.16.7 transitivePeerDependencies: - supports-color dev: false - /@babel/helper-environment-visitor/7.16.7: - resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==} + /@babel/helper-environment-visitor/7.18.2: + resolution: {integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.18.0 /@babel/helper-function-name/7.17.9: resolution: {integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.16.7 - '@babel/types': 7.18.0 + '@babel/types': 7.18.4 /@babel/helper-hoist-variables/7.16.7: resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.0 + '@babel/types': 7.18.4 /@babel/helper-member-expression-to-functions/7.17.7: resolution: {integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.0 + '@babel/types': 7.18.4 dev: false /@babel/helper-module-imports/7.16.7: resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.0 + '@babel/types': 7.18.4 /@babel/helper-module-transforms/7.18.0: resolution: {integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-environment-visitor': 7.18.2 '@babel/helper-module-imports': 7.16.7 - '@babel/helper-simple-access': 7.17.7 + '@babel/helper-simple-access': 7.18.2 '@babel/helper-split-export-declaration': 7.16.7 '@babel/helper-validator-identifier': 7.16.7 '@babel/template': 7.16.7 - '@babel/traverse': 7.18.0 - '@babel/types': 7.18.0 + '@babel/traverse': 7.18.2 + '@babel/types': 7.18.4 transitivePeerDependencies: - supports-color @@ -2582,44 +2587,44 @@ packages: resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.0 + '@babel/types': 7.18.4 dev: false /@babel/helper-plugin-utils/7.17.12: resolution: {integrity: sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==} engines: {node: '>=6.9.0'} - /@babel/helper-replace-supers/7.16.7: - resolution: {integrity: sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==} + /@babel/helper-replace-supers/7.18.2: + resolution: {integrity: sha512-XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-environment-visitor': 7.18.2 '@babel/helper-member-expression-to-functions': 7.17.7 '@babel/helper-optimise-call-expression': 7.16.7 - '@babel/traverse': 7.18.0 - '@babel/types': 7.18.0 + '@babel/traverse': 7.18.2 + '@babel/types': 7.18.4 transitivePeerDependencies: - supports-color dev: false - /@babel/helper-simple-access/7.17.7: - resolution: {integrity: sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==} + /@babel/helper-simple-access/7.18.2: + resolution: {integrity: sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.0 + '@babel/types': 7.18.4 /@babel/helper-skip-transparent-expression-wrappers/7.16.0: resolution: {integrity: sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.0 + '@babel/types': 7.18.4 dev: false /@babel/helper-split-export-declaration/7.16.7: resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.0 + '@babel/types': 7.18.4 /@babel/helper-validator-identifier/7.16.7: resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==} @@ -2629,13 +2634,13 @@ packages: resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==} engines: {node: '>=6.9.0'} - /@babel/helpers/7.18.0: - resolution: {integrity: sha512-AE+HMYhmlMIbho9nbvicHyxFwhrO+xhKB6AhRxzl8w46Yj0VXTZjEsAoBVC7rB2I0jzX+yWyVybnO08qkfx6kg==} + /@babel/helpers/7.18.2: + resolution: {integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.16.7 - '@babel/traverse': 7.18.0 - '@babel/types': 7.18.0 + '@babel/traverse': 7.18.2 + '@babel/types': 7.18.4 transitivePeerDependencies: - supports-color @@ -2647,14 +2652,14 @@ packages: chalk: 2.4.2 js-tokens: 4.0.0 - /@babel/parser/7.18.0: - resolution: {integrity: sha512-AqDccGC+m5O/iUStSJy3DGRIUFu7WbY/CppZYwrEUB4N0tZlnI8CSTsgL7v5fHVFmUbRv2sd+yy27o8Ydt4MGg==} + /@babel/parser/7.18.4: + resolution: {integrity: sha512-FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.18.0 + '@babel/types': 7.18.4 - /@babel/plugin-proposal-class-properties/7.17.12_@babel+core@7.18.0: + /@babel/plugin-proposal-class-properties/7.17.12_@babel+core@7.18.2: resolution: {integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2663,14 +2668,14 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 - '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.0 + '@babel/core': 7.18.2 + '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.2 '@babel/helper-plugin-utils': 7.17.12 transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-proposal-nullish-coalescing-operator/7.17.12_@babel+core@7.18.0: + /@babel/plugin-proposal-nullish-coalescing-operator/7.17.12_@babel+core@7.18.2: resolution: {integrity: sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2679,12 +2684,12 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.0 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.2 dev: false - /@babel/plugin-proposal-object-rest-spread/7.18.0_@babel+core@7.18.0: + /@babel/plugin-proposal-object-rest-spread/7.18.0_@babel+core@7.18.2: resolution: {integrity: sha512-nbTv371eTrFabDfHLElkn9oyf9VG+VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2694,14 +2699,14 @@ packages: optional: true dependencies: '@babel/compat-data': 7.17.10 - '@babel/core': 7.18.0 - '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.0 + '@babel/core': 7.18.2 + '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.2 '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.0 - '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.0 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.2 dev: false - /@babel/plugin-proposal-optional-chaining/7.17.12_@babel+core@7.18.0: + /@babel/plugin-proposal-optional-chaining/7.17.12_@babel+core@7.18.2: resolution: {integrity: sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2710,13 +2715,13 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.0 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.2 dev: false - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.0: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.2: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2724,11 +2729,11 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.18.0: + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.18.2: resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2736,11 +2741,11 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.0: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.2: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2748,10 +2753,10 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 - /@babel/plugin-syntax-flow/7.17.12_@babel+core@7.18.0: + /@babel/plugin-syntax-flow/7.17.12_@babel+core@7.18.2: resolution: {integrity: sha512-B8QIgBvkIG6G2jgsOHQUist7Sm0EBLDCx8sen072IwqNuzMegZNXrYnSv77cYzA8mLDZAfQYqsLIhimiP1s2HQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2760,11 +2765,11 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.0: + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.2: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2772,11 +2777,11 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.0: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.2: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2784,7 +2789,7 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: true @@ -2800,7 +2805,7 @@ packages: '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-syntax-jsx/7.17.12_@babel+core@7.18.0: + /@babel/plugin-syntax-jsx/7.17.12_@babel+core@7.18.2: resolution: {integrity: sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2809,11 +2814,11 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.0: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.2: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2821,11 +2826,11 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.0: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.2: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2833,10 +2838,10 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.0: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.2: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2844,11 +2849,11 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.0: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.2: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2856,10 +2861,10 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.0: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.2: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2867,11 +2872,11 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.0: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.2: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2879,10 +2884,10 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.0: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.2: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2891,11 +2896,11 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-typescript/7.17.12_@babel+core@7.18.0: + /@babel/plugin-syntax-typescript/7.17.12_@babel+core@7.18.2: resolution: {integrity: sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2904,10 +2909,10 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 - /@babel/plugin-transform-arrow-functions/7.17.12_@babel+core@7.18.0: + /@babel/plugin-transform-arrow-functions/7.17.12_@babel+core@7.18.2: resolution: {integrity: sha512-PHln3CNi/49V+mza4xMwrg+WGYevSF1oaiXaC2EQfdp4HWlSjRsrDXWJiQBKpP7749u6vQ9mcry2uuFOv5CXvA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2916,11 +2921,11 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.18.0: + /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.18.2: resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2929,12 +2934,12 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-transform-block-scoping/7.17.12_@babel+core@7.18.0: - resolution: {integrity: sha512-jw8XW/B1i7Lqwqj2CbrViPcZijSxfguBWZP2aN59NHgxUyO/OcO1mfdCxH13QhN5LbWhPkX+f+brKGhZTiqtZQ==} + /@babel/plugin-transform-block-scoping/7.18.4_@babel+core@7.18.2: + resolution: {integrity: sha512-+Hq10ye+jlvLEogSOtq4mKvtk7qwcUQ1f0Mrueai866C82f844Yom2cttfJdMdqRLTxWpsbfbkIkOIfovyUQXw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2942,12 +2947,12 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-transform-classes/7.17.12_@babel+core@7.18.0: - resolution: {integrity: sha512-cvO7lc7pZat6BsvH6l/EGaI8zpl8paICaoGk+7x7guvtfak/TbIf66nYmJOH13EuG0H+Xx3M+9LQDtSvZFKXKw==} + /@babel/plugin-transform-classes/7.18.4_@babel+core@7.18.2: + resolution: {integrity: sha512-e42NSG2mlKWgxKUAD9EJJSkZxR67+wZqzNxLSpc51T8tRU5SLFHsPmgYR5yr7sdgX4u+iHA1C5VafJ6AyImV3A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2955,20 +2960,20 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-environment-visitor': 7.18.2 '@babel/helper-function-name': 7.17.9 '@babel/helper-optimise-call-expression': 7.16.7 '@babel/helper-plugin-utils': 7.17.12 - '@babel/helper-replace-supers': 7.16.7 + '@babel/helper-replace-supers': 7.18.2 '@babel/helper-split-export-declaration': 7.16.7 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-transform-computed-properties/7.17.12_@babel+core@7.18.0: + /@babel/plugin-transform-computed-properties/7.17.12_@babel+core@7.18.2: resolution: {integrity: sha512-a7XINeplB5cQUWMg1E/GI1tFz3LfK021IjV1rj1ypE+R7jHm+pIHmHl25VNkZxtx9uuYp7ThGk8fur1HHG7PgQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2977,11 +2982,11 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-transform-destructuring/7.18.0_@babel+core@7.18.0: + /@babel/plugin-transform-destructuring/7.18.0_@babel+core@7.18.2: resolution: {integrity: sha512-Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2990,11 +2995,11 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-transform-flow-strip-types/7.17.12_@babel+core@7.18.0: + /@babel/plugin-transform-flow-strip-types/7.17.12_@babel+core@7.18.2: resolution: {integrity: sha512-g8cSNt+cHCpG/uunPQELdq/TeV3eg1OLJYwxypwHtAWo9+nErH3lQx9CSO2uI9lF74A0mR0t4KoMjs1snSgnTw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -3003,13 +3008,13 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-syntax-flow': 7.17.12_@babel+core@7.18.0 + '@babel/plugin-syntax-flow': 7.17.12_@babel+core@7.18.2 dev: false - /@babel/plugin-transform-for-of/7.17.12_@babel+core@7.18.0: - resolution: {integrity: sha512-76lTwYaCxw8ldT7tNmye4LLwSoKDbRCBzu6n/DcK/P3FOR29+38CIIaVIZfwol9By8W/QHORYEnYSLuvcQKrsg==} + /@babel/plugin-transform-for-of/7.18.1_@babel+core@7.18.2: + resolution: {integrity: sha512-+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3017,11 +3022,11 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.18.0: + /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.18.2: resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -3030,13 +3035,13 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 - '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.0 + '@babel/core': 7.18.2 + '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.2 '@babel/helper-function-name': 7.17.9 '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-transform-literals/7.17.12_@babel+core@7.18.0: + /@babel/plugin-transform-literals/7.17.12_@babel+core@7.18.2: resolution: {integrity: sha512-8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -3045,11 +3050,11 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.18.0: + /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.18.2: resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -3058,12 +3063,12 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-transform-modules-commonjs/7.18.0_@babel+core@7.18.0: - resolution: {integrity: sha512-cCeR0VZWtfxWS4YueAK2qtHtBPJRSaJcMlbS8jhSIm/A3E2Kpro4W1Dn4cqJtp59dtWfXjQwK7SPKF8ghs7rlw==} + /@babel/plugin-transform-modules-commonjs/7.18.2_@babel+core@7.18.2: + resolution: {integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3071,16 +3076,16 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-module-transforms': 7.18.0 '@babel/helper-plugin-utils': 7.17.12 - '@babel/helper-simple-access': 7.17.7 + '@babel/helper-simple-access': 7.18.2 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.18.0: + /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.18.2: resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -3089,14 +3094,14 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 - '@babel/helper-replace-supers': 7.16.7 + '@babel/helper-replace-supers': 7.18.2 transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-transform-parameters/7.17.12_@babel+core@7.18.0: + /@babel/plugin-transform-parameters/7.17.12_@babel+core@7.18.2: resolution: {integrity: sha512-6qW4rWo1cyCdq1FkYri7AHpauchbGLXpdwnYsfxFb+KtddHENfsY5JZb35xUwkK5opOLcJ3BNd2l7PhRYGlwIA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -3105,11 +3110,11 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.18.0: + /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.18.2: resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -3118,11 +3123,11 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.18.0: + /@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.18.2: resolution: {integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -3131,11 +3136,11 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-transform-react-jsx/7.17.12_@babel+core@7.18.0: + /@babel/plugin-transform-react-jsx/7.17.12_@babel+core@7.18.2: resolution: {integrity: sha512-Lcaw8bxd1DKht3thfD4A12dqo1X16he1Lm8rIv8sTwjAYNInRS1qHa9aJoqvzpscItXvftKDCfaEQzwoVyXpEQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -3144,15 +3149,15 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-module-imports': 7.16.7 '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-syntax-jsx': 7.17.12_@babel+core@7.18.0 - '@babel/types': 7.18.0 + '@babel/plugin-syntax-jsx': 7.17.12_@babel+core@7.18.2 + '@babel/types': 7.18.4 dev: false - /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.18.0: + /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.18.2: resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -3161,11 +3166,11 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-transform-spread/7.17.12_@babel+core@7.18.0: + /@babel/plugin-transform-spread/7.17.12_@babel+core@7.18.2: resolution: {integrity: sha512-9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -3174,13 +3179,13 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 dev: false - /@babel/plugin-transform-template-literals/7.17.12_@babel+core@7.18.0: - resolution: {integrity: sha512-kAKJ7DX1dSRa2s7WN1xUAuaQmkTpN+uig4wCKWivVXIObqGbVTUlSavHyfI2iZvz89GFAMGm9p2DBJ4Y1Tp0hw==} + /@babel/plugin-transform-template-literals/7.18.2_@babel+core@7.18.2: + resolution: {integrity: sha512-/cmuBVw9sZBGZVOMkpAEaVLwm4JmK2GZ1dFKOGGpMzEHWFmyZZ59lUU0PdRr8YNYeQdNzTDwuxP2X2gzydTc9g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3188,12 +3193,12 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-transform-typescript/7.18.0_@babel+core@7.18.0: - resolution: {integrity: sha512-x0DUMnDsoRNnaeWlD1JFviIpbTJUNSDRSctEvF/LIeLMsroJ5+Qa11RnAbZX9dEhnhHOJOle4S15o+/xvM7lKQ==} + /@babel/plugin-transform-typescript/7.18.4_@babel+core@7.18.2: + resolution: {integrity: sha512-l4vHuSLUajptpHNEOUDEGsnpl9pfRLsN1XUoDQDD/YBuXTM+v37SHGS+c6n4jdcZy96QtuUuSvZYMLSSsjH8Mw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3201,15 +3206,15 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 - '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.0 + '@babel/core': 7.18.2 + '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.2 '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.18.0 + '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.18.2 transitivePeerDependencies: - supports-color dev: false - /@babel/preset-flow/7.17.12_@babel+core@7.18.0: + /@babel/preset-flow/7.17.12_@babel+core@7.18.2: resolution: {integrity: sha512-7QDz7k4uiaBdu7N89VKjUn807pJRXmdirQu0KyR9LXnQrr5Jt41eIMKTS7ljej+H29erwmMrwq9Io9mJHLI3Lw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -3218,13 +3223,13 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-transform-flow-strip-types': 7.17.12_@babel+core@7.18.0 + '@babel/plugin-transform-flow-strip-types': 7.17.12_@babel+core@7.18.2 dev: false - /@babel/preset-typescript/7.17.12_@babel+core@7.18.0: + /@babel/preset-typescript/7.17.12_@babel+core@7.18.2: resolution: {integrity: sha512-S1ViF8W2QwAKUGJXxP9NAfNaqGDdEBJKpYkxHf5Yy2C4NPPzXGeR3Lhk7G8xJaaLcFTRfNjVbtbVtm8Gb0mqvg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -3233,15 +3238,15 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-transform-typescript': 7.18.0_@babel+core@7.18.0 + '@babel/plugin-transform-typescript': 7.18.4_@babel+core@7.18.2 transitivePeerDependencies: - supports-color dev: false - /@babel/register/7.17.7_@babel+core@7.18.0: + /@babel/register/7.17.7_@babel+core@7.18.2: resolution: {integrity: sha512-fg56SwvXRifootQEDQAu1mKdjh5uthPzdO0N6t358FktfL4XjAVXuH58ULoiW8mesxiOgNIrxiImqEwv0+hRRA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -3250,7 +3255,7 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -3258,8 +3263,8 @@ packages: source-map-support: 0.5.21 dev: false - /@babel/runtime/7.18.0: - resolution: {integrity: sha512-YMQvx/6nKEaucl0MY56mwIG483xk8SDNdlUwb2Ts6FUpr7fm85DxEmsY18LXBNhcTz6tO6JwZV8w1W06v8UKeg==} + /@babel/runtime/7.18.3: + resolution: {integrity: sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==} engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.13.9 @@ -3269,28 +3274,28 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.16.7 - '@babel/parser': 7.18.0 - '@babel/types': 7.18.0 + '@babel/parser': 7.18.4 + '@babel/types': 7.18.4 - /@babel/traverse/7.18.0: - resolution: {integrity: sha512-oNOO4vaoIQoGjDQ84LgtF/IAlxlyqL4TUuoQ7xLkQETFaHkY1F7yazhB4Kt3VcZGL0ZF/jhrEpnXqUb0M7V3sw==} + /@babel/traverse/7.18.2: + resolution: {integrity: sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.16.7 - '@babel/generator': 7.18.0 - '@babel/helper-environment-visitor': 7.16.7 + '@babel/generator': 7.18.2 + '@babel/helper-environment-visitor': 7.18.2 '@babel/helper-function-name': 7.17.9 '@babel/helper-hoist-variables': 7.16.7 '@babel/helper-split-export-declaration': 7.16.7 - '@babel/parser': 7.18.0 - '@babel/types': 7.18.0 + '@babel/parser': 7.18.4 + '@babel/types': 7.18.4 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/types/7.18.0: - resolution: {integrity: sha512-vhAmLPAiC8j9K2GnsnLPCIH5wCrPpYIVBCWRBFDCB7Y/BXLqi/O+1RSTTM2bsmg6U/551+FCf9PNPxjABmxHTw==} + /@babel/types/7.18.4: + resolution: {integrity: sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-validator-identifier': 7.16.7 @@ -3304,7 +3309,7 @@ packages: deprecated: Potential XSS vulnerability patched in v6.0.0. dev: false - /@chakra-ui/accordion/1.4.11_incjhkcqypgck3reh3u2lo73g4: + /@chakra-ui/accordion/1.4.11_5q4dia636cx7ayc3jmkztslefe: resolution: {integrity: sha512-d/gvSgGwcZaJXxXqGmecpAgko/tUYb5vR0E0B2/V/z9AVbS8ei//fbiO9+8Ouyl/K46oWHWYj5vt8iTadlZleg==} peerDependencies: '@chakra-ui/system': '>=1.0.0' @@ -3321,9 +3326,9 @@ packages: '@chakra-ui/icon': 2.0.5_5qblqjf622vzzkdskgddihcrca '@chakra-ui/react-utils': 1.2.3_react@17.0.2 '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/transition': 1.4.8_tz5ov5ixqq7rkjq2pbaydc2e74 + '@chakra-ui/transition': 1.4.8_wqm4ypyyexhlohnntvsdczhkuu '@chakra-ui/utils': 1.10.4 - framer-motion: 6.3.3_sfoxds7t5ydpegc3knd667wn6m + framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m react: 17.0.2 dev: false @@ -3411,7 +3416,7 @@ packages: react: 17.0.2 dev: false - /@chakra-ui/checkbox/1.7.1_incjhkcqypgck3reh3u2lo73g4: + /@chakra-ui/checkbox/1.7.1_5q4dia636cx7ayc3jmkztslefe: resolution: {integrity: sha512-9Io97yn8OrdaIynCj+3Z/neJV7lTT1MtcdYh3BKMd7WnoJDkRY/GlBM8zsdgC5Wvm+ZQ1M83t0YvRPKLLzusyA==} peerDependencies: '@chakra-ui/system': '>=1.0.0' @@ -3429,7 +3434,7 @@ packages: '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y '@chakra-ui/utils': 1.10.4 '@chakra-ui/visually-hidden': 1.1.6_5qblqjf622vzzkdskgddihcrca - framer-motion: 6.3.3_sfoxds7t5ydpegc3knd667wn6m + framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m react: 17.0.2 dev: false @@ -3729,7 +3734,7 @@ packages: react: 17.0.2 dev: false - /@chakra-ui/menu/1.8.11_incjhkcqypgck3reh3u2lo73g4: + /@chakra-ui/menu/1.8.11_5q4dia636cx7ayc3jmkztslefe: resolution: {integrity: sha512-8K65xItPsdMvSfuGWYIGigOF/QMcy7+D48UIEO/Hu0u0ckd11/JXbpSIFPddH5fYedclJ18PGRohTne487OVjQ==} peerDependencies: '@chakra-ui/system': '>=1.0.0' @@ -3747,13 +3752,13 @@ packages: '@chakra-ui/popper': 2.4.3_react@17.0.2 '@chakra-ui/react-utils': 1.2.3_react@17.0.2 '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/transition': 1.4.8_tz5ov5ixqq7rkjq2pbaydc2e74 + '@chakra-ui/transition': 1.4.8_wqm4ypyyexhlohnntvsdczhkuu '@chakra-ui/utils': 1.10.4 - framer-motion: 6.3.3_sfoxds7t5ydpegc3knd667wn6m + framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m react: 17.0.2 dev: false - /@chakra-ui/modal/1.11.1_segnavngbi5yeclrl7sdvlhpbq: + /@chakra-ui/modal/1.11.1_o6or5jvbm37b3mcyk4iaof2csi: resolution: {integrity: sha512-B2BBDonHb04vbPLAWgko1JYBwgW8ZNSLyhTJK+rbrCsRSgazuLTcwq4hdyJqrYNWtaQEfSwpAXqJ7joMZdv59A==} peerDependencies: '@chakra-ui/system': '>=1.0.0' @@ -3774,10 +3779,10 @@ packages: '@chakra-ui/portal': 1.3.10_sfoxds7t5ydpegc3knd667wn6m '@chakra-ui/react-utils': 1.2.3_react@17.0.2 '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y - '@chakra-ui/transition': 1.4.8_tz5ov5ixqq7rkjq2pbaydc2e74 + '@chakra-ui/transition': 1.4.8_wqm4ypyyexhlohnntvsdczhkuu '@chakra-ui/utils': 1.10.4 aria-hidden: 1.1.3 - framer-motion: 6.3.3_sfoxds7t5ydpegc3knd667wn6m + framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m react: 17.0.2 react-dom: 17.0.2_react@17.0.2 react-remove-scroll: 2.4.1_hx2b44akkvgcgvvtmk7ds2qk6q @@ -3825,7 +3830,7 @@ packages: react: 17.0.2 dev: false - /@chakra-ui/popover/1.11.9_incjhkcqypgck3reh3u2lo73g4: + /@chakra-ui/popover/1.11.9_5q4dia636cx7ayc3jmkztslefe: resolution: {integrity: sha512-hJ1/Lwukox3ryTN7W1wnj+nE44utfLwQYvfUSdatt5dznnh8k0P6Wx7Hmjm1cYffRavBhqzwua/QZDWjJN9N0g==} peerDependencies: '@chakra-ui/system': '>=1.0.0' @@ -3843,7 +3848,7 @@ packages: '@chakra-ui/react-utils': 1.2.3_react@17.0.2 '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y '@chakra-ui/utils': 1.10.4 - framer-motion: 6.3.3_sfoxds7t5ydpegc3knd667wn6m + framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m react: 17.0.2 dev: false @@ -3964,7 +3969,7 @@ packages: react: 17.0.2 dev: false - /@chakra-ui/react/1.8.8_qaq3qtwi74meo7khtwcm3ybelq: + /@chakra-ui/react/1.8.8_35m6iuyn7qvwsjtignyl5fhroi: resolution: {integrity: sha512-/XqL25J0i0h+usAXBngn/RTG2u1oQRzbhHe9tNHwFyNbx/izIADhQW/6ji06QU0KtaRIU77XvgSAyTtMJY1KmA==} peerDependencies: '@emotion/react': ^11.0.0 @@ -3978,12 +3983,12 @@ packages: react-dom: optional: true dependencies: - '@chakra-ui/accordion': 1.4.11_incjhkcqypgck3reh3u2lo73g4 + '@chakra-ui/accordion': 1.4.11_5q4dia636cx7ayc3jmkztslefe '@chakra-ui/alert': 1.3.7_5qblqjf622vzzkdskgddihcrca '@chakra-ui/avatar': 1.3.11_5qblqjf622vzzkdskgddihcrca '@chakra-ui/breadcrumb': 1.3.6_5qblqjf622vzzkdskgddihcrca '@chakra-ui/button': 1.5.10_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/checkbox': 1.7.1_incjhkcqypgck3reh3u2lo73g4 + '@chakra-ui/checkbox': 1.7.1_5q4dia636cx7ayc3jmkztslefe '@chakra-ui/close-button': 1.2.7_5qblqjf622vzzkdskgddihcrca '@chakra-ui/control-box': 1.1.6_5qblqjf622vzzkdskgddihcrca '@chakra-ui/counter': 1.2.10_react@17.0.2 @@ -3997,11 +4002,11 @@ packages: '@chakra-ui/layout': 1.8.0_5qblqjf622vzzkdskgddihcrca '@chakra-ui/live-region': 1.1.6_react@17.0.2 '@chakra-ui/media-query': 2.0.4_sxr25aaor3bltw4csjjk62xw3q - '@chakra-ui/menu': 1.8.11_incjhkcqypgck3reh3u2lo73g4 - '@chakra-ui/modal': 1.11.1_segnavngbi5yeclrl7sdvlhpbq + '@chakra-ui/menu': 1.8.11_5q4dia636cx7ayc3jmkztslefe + '@chakra-ui/modal': 1.11.1_o6or5jvbm37b3mcyk4iaof2csi '@chakra-ui/number-input': 1.4.7_5qblqjf622vzzkdskgddihcrca '@chakra-ui/pin-input': 1.7.10_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/popover': 1.11.9_incjhkcqypgck3reh3u2lo73g4 + '@chakra-ui/popover': 1.11.9_5q4dia636cx7ayc3jmkztslefe '@chakra-ui/popper': 2.4.3_react@17.0.2 '@chakra-ui/portal': 1.3.10_sfoxds7t5ydpegc3knd667wn6m '@chakra-ui/progress': 1.2.6_5qblqjf622vzzkdskgddihcrca @@ -4013,21 +4018,21 @@ packages: '@chakra-ui/slider': 1.5.11_5qblqjf622vzzkdskgddihcrca '@chakra-ui/spinner': 1.2.6_5qblqjf622vzzkdskgddihcrca '@chakra-ui/stat': 1.2.7_5qblqjf622vzzkdskgddihcrca - '@chakra-ui/switch': 1.3.10_incjhkcqypgck3reh3u2lo73g4 + '@chakra-ui/switch': 1.3.10_5q4dia636cx7ayc3jmkztslefe '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y '@chakra-ui/table': 1.3.6_5qblqjf622vzzkdskgddihcrca '@chakra-ui/tabs': 1.6.10_5qblqjf622vzzkdskgddihcrca '@chakra-ui/tag': 1.2.7_5qblqjf622vzzkdskgddihcrca '@chakra-ui/textarea': 1.2.11_5qblqjf622vzzkdskgddihcrca '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1 - '@chakra-ui/toast': 1.5.9_5ffc2rozbqlsnpdetoqsxkvzae - '@chakra-ui/tooltip': 1.5.1_5ffc2rozbqlsnpdetoqsxkvzae - '@chakra-ui/transition': 1.4.8_tz5ov5ixqq7rkjq2pbaydc2e74 + '@chakra-ui/toast': 1.5.9_7caotp2y6herssdqxdkjkxoivy + '@chakra-ui/tooltip': 1.5.1_7caotp2y6herssdqxdkjkxoivy + '@chakra-ui/transition': 1.4.8_wqm4ypyyexhlohnntvsdczhkuu '@chakra-ui/utils': 1.10.4 '@chakra-ui/visually-hidden': 1.1.6_5qblqjf622vzzkdskgddihcrca '@emotion/react': 11.9.0_hx2b44akkvgcgvvtmk7ds2qk6q '@emotion/styled': 11.8.1_ghmaxsi4osxavftb6vjohy2gwe - framer-motion: 6.3.3_sfoxds7t5ydpegc3knd667wn6m + framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m react: 17.0.2 react-dom: 17.0.2_react@17.0.2 transitivePeerDependencies: @@ -4132,7 +4137,7 @@ packages: csstype: 3.0.9 dev: false - /@chakra-ui/switch/1.3.10_incjhkcqypgck3reh3u2lo73g4: + /@chakra-ui/switch/1.3.10_5q4dia636cx7ayc3jmkztslefe: resolution: {integrity: sha512-V6qDLY6oECCbPyu7alWWOAhSBI4+SAuT6XW/zEQbelkwuUOiGO1ax67rTXOmZ59A2AaV1gqQFxDh8AcbvwO5XQ==} peerDependencies: '@chakra-ui/system': '>=1.0.0' @@ -4144,10 +4149,10 @@ packages: react: optional: true dependencies: - '@chakra-ui/checkbox': 1.7.1_incjhkcqypgck3reh3u2lo73g4 + '@chakra-ui/checkbox': 1.7.1_5q4dia636cx7ayc3jmkztslefe '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y '@chakra-ui/utils': 1.10.4 - framer-motion: 6.3.3_sfoxds7t5ydpegc3knd667wn6m + framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m react: 17.0.2 dev: false @@ -4280,7 +4285,7 @@ packages: '@chakra-ui/utils': 1.10.4 dev: false - /@chakra-ui/toast/1.5.9_5ffc2rozbqlsnpdetoqsxkvzae: + /@chakra-ui/toast/1.5.9_7caotp2y6herssdqxdkjkxoivy: resolution: {integrity: sha512-rns04bGdMcG7Ijg45L+PfuEW4rCd0Ycraix4EJQhcl9RXI18G9sphmlp9feidhZAkI6Ukafq1YvyvkBfkKnIzQ==} peerDependencies: '@chakra-ui/system': '>=1.0.0' @@ -4300,15 +4305,15 @@ packages: '@chakra-ui/hooks': 1.9.1_react@17.0.2 '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1 - '@chakra-ui/transition': 1.4.8_tz5ov5ixqq7rkjq2pbaydc2e74 + '@chakra-ui/transition': 1.4.8_wqm4ypyyexhlohnntvsdczhkuu '@chakra-ui/utils': 1.10.4 '@reach/alert': 0.13.2_sfoxds7t5ydpegc3knd667wn6m - framer-motion: 6.3.3_sfoxds7t5ydpegc3knd667wn6m + framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m react: 17.0.2 react-dom: 17.0.2_react@17.0.2 dev: false - /@chakra-ui/tooltip/1.5.1_5ffc2rozbqlsnpdetoqsxkvzae: + /@chakra-ui/tooltip/1.5.1_7caotp2y6herssdqxdkjkxoivy: resolution: {integrity: sha512-EUAlDdlCBt63VpEVtj/RkFjHQVN/xA9gEAumngQdi1Sp+OXPYCBM9GwSY0NwrM1RfKBnhPSH9wz7FwredJWeaw==} peerDependencies: '@chakra-ui/system': '>=1.0.0' @@ -4330,12 +4335,12 @@ packages: '@chakra-ui/system': 1.12.1_bgqmsvm4hz6izcmpcwescmz73y '@chakra-ui/utils': 1.10.4 '@chakra-ui/visually-hidden': 1.1.6_5qblqjf622vzzkdskgddihcrca - framer-motion: 6.3.3_sfoxds7t5ydpegc3knd667wn6m + framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m react: 17.0.2 react-dom: 17.0.2_react@17.0.2 dev: false - /@chakra-ui/transition/1.4.8_tz5ov5ixqq7rkjq2pbaydc2e74: + /@chakra-ui/transition/1.4.8_wqm4ypyyexhlohnntvsdczhkuu: resolution: {integrity: sha512-5uc8LEuCH7+0h++wqAav/EktTHOjbLDSTXQlU9fzPIlNNgyf2eXrHVN2AGMGKiMR9Z4gS7umQjZ54r0w/mZ/Fw==} peerDependencies: framer-motion: '*' @@ -4345,7 +4350,7 @@ packages: optional: true dependencies: '@chakra-ui/utils': 1.10.4 - framer-motion: 6.3.3_sfoxds7t5ydpegc3knd667wn6m + framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m react: 17.0.2 dev: false @@ -4377,7 +4382,7 @@ packages: /@changesets/apply-release-plan/6.0.0: resolution: {integrity: sha512-gp6nIdVdfYdwKww2+f8whckKmvfE4JEm4jJgBhTmooi0uzHWhnxvk6JIzQi89qEAMINN0SeVNnXiAtbFY0Mj3w==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@changesets/config': 2.0.0 '@changesets/get-version-range-type': 0.3.2 '@changesets/git': 1.3.2 @@ -4395,7 +4400,7 @@ packages: /@changesets/assemble-release-plan/5.1.2: resolution: {integrity: sha512-nOFyDw4APSkY/vh5WNwGEtThPgEjVShp03PKVdId6wZTJALVcAALCSLmDRfeqjE2z9EsGJb7hZdDlziKlnqZgw==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@changesets/errors': 0.1.4 '@changesets/get-dependents-graph': 1.3.2 '@changesets/types': 5.0.0 @@ -4413,7 +4418,7 @@ packages: resolution: {integrity: sha512-4bA3YoBkd5cm5WUxmrR2N9WYE7EeQcM+R3bVYMUj2NvffkQVpU3ckAI+z8UICoojq+HRl2OEwtz+S5UBmYY4zw==} hasBin: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@changesets/apply-release-plan': 6.0.0 '@changesets/assemble-release-plan': 5.1.2 '@changesets/changelog-git': 0.1.11 @@ -4478,7 +4483,7 @@ packages: /@changesets/get-release-plan/3.0.8: resolution: {integrity: sha512-TJYiWNuP0Lzu2dL/KHuk75w7TkiE5HqoYirrXF7SJIxkhlgH9toQf2C7IapiFTObtuF1qDN8HJAX1CuIOwXldg==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@changesets/assemble-release-plan': 5.1.2 '@changesets/config': 2.0.0 '@changesets/pre': 1.0.11 @@ -4494,7 +4499,7 @@ packages: /@changesets/git/1.3.2: resolution: {integrity: sha512-p5UL+urAg0Nnpt70DLiBe2iSsMcDubTo9fTOD/61krmcJ466MGh71OHwdAwu1xG5+NKzeysdy1joRTg8CXcEXA==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@changesets/errors': 0.1.4 '@changesets/types': 5.0.0 '@manypkg/get-packages': 1.1.3 @@ -4518,7 +4523,7 @@ packages: /@changesets/pre/1.0.11: resolution: {integrity: sha512-CXZnt4SV9waaC9cPLm7818+SxvLKIDHUxaiTXnJYDp1c56xIexx1BNfC1yMuOdzO2a3rAIcZua5Odxr3dwSKfg==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@changesets/errors': 0.1.4 '@changesets/types': 5.0.0 '@manypkg/get-packages': 1.1.3 @@ -4528,7 +4533,7 @@ packages: /@changesets/read/0.5.5: resolution: {integrity: sha512-bzonrPWc29Tsjvgh+8CqJ0apQOwWim0zheeD4ZK44ApSa/GudnZJTODtA3yNOOuQzeZmL0NUebVoHIurtIkA7w==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@changesets/git': 1.3.2 '@changesets/logger': 0.0.5 '@changesets/parse': 0.3.13 @@ -4549,7 +4554,7 @@ packages: /@changesets/write/0.1.8: resolution: {integrity: sha512-oIHeFVMuP6jf0TPnKPpaFpvvAf3JBc+s2pmVChbeEgQTBTALoF51Z9kqxQfG4XONZPHZnqkmy564c7qohhhhTQ==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@changesets/types': 5.0.0 fs-extra: 7.0.1 human-id: 1.0.2 @@ -4578,7 +4583,7 @@ packages: dependencies: '@babel/helper-module-imports': 7.16.7 '@babel/plugin-syntax-jsx': 7.17.12 - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@emotion/hash': 0.8.0 '@emotion/memoize': 0.7.5 '@emotion/serialize': 1.0.3 @@ -4641,7 +4646,7 @@ packages: react: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@emotion/babel-plugin': 11.9.2 '@emotion/cache': 11.7.1 '@emotion/serialize': 1.0.3 @@ -4681,7 +4686,7 @@ packages: react: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@emotion/babel-plugin': 11.9.2 '@emotion/is-prop-valid': 1.1.2 '@emotion/react': 11.9.0_hx2b44akkvgcgvvtmk7ds2qk6q @@ -4703,7 +4708,7 @@ packages: resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==} dev: false - /@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2_eqevhppa7sa2qvpxws2sflyfju: + /@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2_w2cfr5gwraqciqu2ku3x4g3hhm: resolution: {integrity: sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==} engines: {node: '>=10.0.0'} peerDependencies: @@ -4712,112 +4717,126 @@ packages: cosmiconfig: 7.0.1 lodash.get: 4.4.2 make-error: 1.3.6 - ts-node: 9.1.1_typescript@4.6.4 + ts-node: 9.1.1_typescript@4.7.3 tslib: 2.4.0 transitivePeerDependencies: - typescript dev: true - /@envelop/core/2.3.2_graphql-esm@16.0.1: - resolution: {integrity: sha512-NTVY7bajznZyE0S/yzwIu5aimcM8JLqdeWkWUmwmrAHZdE6zjrvOuVCwq1kMIHzgV3bmLdPg2F7534Nxad/HLg==} + /@envelop/core/2.3.3_graphql-esm@16.5.0: + resolution: {integrity: sha512-ZWlBXTd35Uwp4cKRsU36NqgpSwXAIe34tXHWUjI7n/TDgOZ0hcgvhQ+nF1dGLsJted0gqnfVX8ZceX30lTGgDg==} peerDependencies: graphql: '*' dependencies: - '@envelop/types': 2.2.0_graphql-esm@16.0.1 - graphql: /graphql-esm/16.0.1 + '@envelop/types': 2.2.1_graphql-esm@16.5.0 + graphql: /graphql-esm/16.5.0 dev: false - /@envelop/core/2.3.2_graphql@15.8.0: - resolution: {integrity: sha512-NTVY7bajznZyE0S/yzwIu5aimcM8JLqdeWkWUmwmrAHZdE6zjrvOuVCwq1kMIHzgV3bmLdPg2F7534Nxad/HLg==} + /@envelop/core/2.3.3_graphql@15.8.0: + resolution: {integrity: sha512-ZWlBXTd35Uwp4cKRsU36NqgpSwXAIe34tXHWUjI7n/TDgOZ0hcgvhQ+nF1dGLsJted0gqnfVX8ZceX30lTGgDg==} peerDependencies: graphql: '*' dependencies: - '@envelop/types': 2.2.0_graphql@15.8.0 + '@envelop/types': 2.2.1_graphql@15.8.0 graphql: 15.8.0 dev: false - /@envelop/core/2.3.2_graphql@16.5.0: - resolution: {integrity: sha512-NTVY7bajznZyE0S/yzwIu5aimcM8JLqdeWkWUmwmrAHZdE6zjrvOuVCwq1kMIHzgV3bmLdPg2F7534Nxad/HLg==} + /@envelop/core/2.3.3_graphql@16.5.0: + resolution: {integrity: sha512-ZWlBXTd35Uwp4cKRsU36NqgpSwXAIe34tXHWUjI7n/TDgOZ0hcgvhQ+nF1dGLsJted0gqnfVX8ZceX30lTGgDg==} peerDependencies: graphql: '*' dependencies: - '@envelop/types': 2.2.0_graphql@16.5.0 + '@envelop/types': 2.2.1_graphql@16.5.0 graphql: 16.5.0 dev: false - /@envelop/core/2.3.2_graphql@17.0.0-alpha.1: - resolution: {integrity: sha512-NTVY7bajznZyE0S/yzwIu5aimcM8JLqdeWkWUmwmrAHZdE6zjrvOuVCwq1kMIHzgV3bmLdPg2F7534Nxad/HLg==} + /@envelop/core/2.3.3_graphql@17.0.0-alpha.1: + resolution: {integrity: sha512-ZWlBXTd35Uwp4cKRsU36NqgpSwXAIe34tXHWUjI7n/TDgOZ0hcgvhQ+nF1dGLsJted0gqnfVX8ZceX30lTGgDg==} peerDependencies: graphql: '*' dependencies: - '@envelop/types': 2.2.0_graphql@17.0.0-alpha.1 + '@envelop/types': 2.2.1_graphql@17.0.0-alpha.1 graphql: 17.0.0-alpha.1 dev: false - /@envelop/core/2.3.2_gtorhqsyh7roiqmmeoqngd6dra: - resolution: {integrity: sha512-NTVY7bajznZyE0S/yzwIu5aimcM8JLqdeWkWUmwmrAHZdE6zjrvOuVCwq1kMIHzgV3bmLdPg2F7534Nxad/HLg==} + /@envelop/core/2.3.3_gtorhqsyh7roiqmmeoqngd6dra: + resolution: {integrity: sha512-ZWlBXTd35Uwp4cKRsU36NqgpSwXAIe34tXHWUjI7n/TDgOZ0hcgvhQ+nF1dGLsJted0gqnfVX8ZceX30lTGgDg==} peerDependencies: graphql: '*' dependencies: - '@envelop/types': 2.2.0_gtorhqsyh7roiqmmeoqngd6dra + '@envelop/types': 2.2.1_gtorhqsyh7roiqmmeoqngd6dra graphql: 15.4.0-experimental-stream-defer.1 dev: false - /@envelop/core/2.3.2_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-NTVY7bajznZyE0S/yzwIu5aimcM8JLqdeWkWUmwmrAHZdE6zjrvOuVCwq1kMIHzgV3bmLdPg2F7534Nxad/HLg==} + /@envelop/core/2.3.3_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-ZWlBXTd35Uwp4cKRsU36NqgpSwXAIe34tXHWUjI7n/TDgOZ0hcgvhQ+nF1dGLsJted0gqnfVX8ZceX30lTGgDg==} peerDependencies: graphql: '*' dependencies: - '@envelop/types': 2.2.0_ptiko6tsqj7cmirxhjfetabnhu + '@envelop/types': 2.2.1_ptiko6tsqj7cmirxhjfetabnhu graphql: 16.1.0-experimental-stream-defer.6 - /@envelop/dataloader/3.3.2_ie2i5cjviqkcczt4i34vx4ncc4: - resolution: {integrity: sha512-k35arB5lJvoMn6pPDcdKZABtVyAO0KjmxXLVTX65Yx1IuGPKI42h0A/bC9oYYOssXJasPsZGd+b8mwtEikR+OA==} + /@envelop/dataloader/3.3.3_pqiybher5k4egqjfgmhs6ma7ou: + resolution: {integrity: sha512-4uL8AeY6Edj17NRFkwU3NKLDjWqSZl7z+r4GJK5iE7f48Qxu4R7Zwe8iKDi8cBuduxKG63mpqvnJWWL1rRb/ow==} peerDependencies: - '@envelop/core': ^2.3.2 + '@envelop/core': ^2.3.3 dataloader: ^2.0.0 graphql: '*' peerDependenciesMeta: '@envelop/core': optional: true dependencies: + '@envelop/core': 2.3.3_ptiko6tsqj7cmirxhjfetabnhu dataloader: 2.1.0 graphql: 16.1.0-experimental-stream-defer.6 dev: false - /@envelop/graphql-jit/4.2.2_jy4b2jdngoxzzeahlav4gmldjy: - resolution: {integrity: sha512-AG/6S6uylsPLDgYCD6wHwn/hl0CUf4OG0nhGfWqQXDlnYbBFuAI0VoKEs0qDY7oYsR/YbrkPGkGtLZnqJdQu+w==} + /@envelop/execute-subscription-event/2.3.3_no7zwq3lhahvisczcmca6vlcuy: + resolution: {integrity: sha512-GIniETpXluiNlOAf0RCXxG4V1ehYu8oA4CRfPNdnLUHtX2VNzmcVgxo53vOm3o82CI24E4WpJW9j4dDGzuIMYw==} peerDependencies: - '@envelop/core': ^2.3.2 + '@envelop/core': ^2.3.3 graphql: '*' peerDependenciesMeta: '@envelop/core': optional: true dependencies: - '@envelop/core': 2.3.2_ptiko6tsqj7cmirxhjfetabnhu + '@envelop/core': 2.3.3_ptiko6tsqj7cmirxhjfetabnhu graphql: 16.1.0-experimental-stream-defer.6 - graphql-jit: 0.7.3_ptiko6tsqj7cmirxhjfetabnhu + dev: false + + /@envelop/graphql-jit/4.2.3_no7zwq3lhahvisczcmca6vlcuy: + resolution: {integrity: sha512-hceMeVEL+maHfDtSd/3sDb2mQF1egc4LxQFu3dM/+4DhYjuavagiUbnFokJBzSm0zuP5TSQkcgerv/mo/2syHQ==} + peerDependencies: + '@envelop/core': ^2.3.3 + graphql: '*' + peerDependenciesMeta: + '@envelop/core': + optional: true + dependencies: + '@envelop/core': 2.3.3_ptiko6tsqj7cmirxhjfetabnhu + graphql: 16.1.0-experimental-stream-defer.6 + graphql-jit: 0.7.4_ptiko6tsqj7cmirxhjfetabnhu tiny-lru: 7.0.6 dev: false - /@envelop/graphql-jit/4.2.2_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-AG/6S6uylsPLDgYCD6wHwn/hl0CUf4OG0nhGfWqQXDlnYbBFuAI0VoKEs0qDY7oYsR/YbrkPGkGtLZnqJdQu+w==} + /@envelop/graphql-jit/4.2.3_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-hceMeVEL+maHfDtSd/3sDb2mQF1egc4LxQFu3dM/+4DhYjuavagiUbnFokJBzSm0zuP5TSQkcgerv/mo/2syHQ==} peerDependencies: - '@envelop/core': ^2.3.2 + '@envelop/core': ^2.3.3 graphql: '*' peerDependenciesMeta: '@envelop/core': optional: true dependencies: graphql: 16.1.0-experimental-stream-defer.6 - graphql-jit: 0.7.3_ptiko6tsqj7cmirxhjfetabnhu + graphql-jit: 0.7.4_ptiko6tsqj7cmirxhjfetabnhu tiny-lru: 7.0.6 dev: false - /@envelop/graphql-modules/3.3.2_ed6pbbjvgqtbpdosb3hmddokky: - resolution: {integrity: sha512-JfLNp3HRpKFbdviFWJMcDiUMxOgkwT1wMZwvBE+h91W1jMb7YhcZsiTEBgF40c90BD/ugr+qtibogFCrE5r5SQ==} + /@envelop/graphql-modules/3.3.3_ed6pbbjvgqtbpdosb3hmddokky: + resolution: {integrity: sha512-U/LSFLYadhzD3UWymVBihi0wiVEBm8qTQKcbIfeFGof9+PVaTeF7RZFRqghVE/LHngQq8Z9BBqd7XmVQDIvL8A==} peerDependencies: - '@envelop/core': ^2.3.2 + '@envelop/core': ^2.3.3 graphql: '*' graphql-modules: ^1 || ^2.0.0 peerDependenciesMeta: @@ -4828,77 +4847,77 @@ packages: graphql-modules: 2.0.0_ptiko6tsqj7cmirxhjfetabnhu dev: false - /@envelop/parser-cache/4.3.2_jy4b2jdngoxzzeahlav4gmldjy: - resolution: {integrity: sha512-gdi814GdJ8PazYBGtWcpKdqtbBbxhbdXBKhSpTjt1kNmgzBsKV1VV2J674/9UqwFjhpuk2POXouIwF0t3z6mXg==} + /@envelop/parser-cache/4.3.3_no7zwq3lhahvisczcmca6vlcuy: + resolution: {integrity: sha512-JfgKynw/OtY+xxzGvQuaiojPYqpxmS6fh4CWc0G/SBjb4keeZ/9yCUANRMT7xN2R9lb2dKwkKS+VGd8Zp7tMWQ==} peerDependencies: - '@envelop/core': ^2.3.2 + '@envelop/core': ^2.3.3 graphql: '*' peerDependenciesMeta: '@envelop/core': optional: true dependencies: - '@envelop/core': 2.3.2_ptiko6tsqj7cmirxhjfetabnhu + '@envelop/core': 2.3.3_ptiko6tsqj7cmirxhjfetabnhu graphql: 16.1.0-experimental-stream-defer.6 tiny-lru: 7.0.6 dev: false - /@envelop/types/2.2.0_graphql-esm@16.0.1: - resolution: {integrity: sha512-Lghvfs0kh53G5mUKpCMlB/FhHh3O8SSR4hewB7JyE9hOEu/9h/6u+GHH/OEgdaRHky1Sae5Jf4grO+h21ka4ig==} + /@envelop/types/2.2.1_graphql-esm@16.5.0: + resolution: {integrity: sha512-TONrQ8a2/y0emVhdIRhAJzqCXWtaTBLv+JnYVmihR9Iw8ETyVbZOuReB9EuSGZHciKtpkQXTjD/gq5wVMIa47g==} peerDependencies: graphql: '*' dependencies: - graphql: /graphql-esm/16.0.1 + graphql: /graphql-esm/16.5.0 dev: false - /@envelop/types/2.2.0_graphql@15.8.0: - resolution: {integrity: sha512-Lghvfs0kh53G5mUKpCMlB/FhHh3O8SSR4hewB7JyE9hOEu/9h/6u+GHH/OEgdaRHky1Sae5Jf4grO+h21ka4ig==} + /@envelop/types/2.2.1_graphql@15.8.0: + resolution: {integrity: sha512-TONrQ8a2/y0emVhdIRhAJzqCXWtaTBLv+JnYVmihR9Iw8ETyVbZOuReB9EuSGZHciKtpkQXTjD/gq5wVMIa47g==} peerDependencies: graphql: '*' dependencies: graphql: 15.8.0 dev: false - /@envelop/types/2.2.0_graphql@16.5.0: - resolution: {integrity: sha512-Lghvfs0kh53G5mUKpCMlB/FhHh3O8SSR4hewB7JyE9hOEu/9h/6u+GHH/OEgdaRHky1Sae5Jf4grO+h21ka4ig==} + /@envelop/types/2.2.1_graphql@16.5.0: + resolution: {integrity: sha512-TONrQ8a2/y0emVhdIRhAJzqCXWtaTBLv+JnYVmihR9Iw8ETyVbZOuReB9EuSGZHciKtpkQXTjD/gq5wVMIa47g==} peerDependencies: graphql: '*' dependencies: graphql: 16.5.0 dev: false - /@envelop/types/2.2.0_graphql@17.0.0-alpha.1: - resolution: {integrity: sha512-Lghvfs0kh53G5mUKpCMlB/FhHh3O8SSR4hewB7JyE9hOEu/9h/6u+GHH/OEgdaRHky1Sae5Jf4grO+h21ka4ig==} + /@envelop/types/2.2.1_graphql@17.0.0-alpha.1: + resolution: {integrity: sha512-TONrQ8a2/y0emVhdIRhAJzqCXWtaTBLv+JnYVmihR9Iw8ETyVbZOuReB9EuSGZHciKtpkQXTjD/gq5wVMIa47g==} peerDependencies: graphql: '*' dependencies: graphql: 17.0.0-alpha.1 dev: false - /@envelop/types/2.2.0_gtorhqsyh7roiqmmeoqngd6dra: - resolution: {integrity: sha512-Lghvfs0kh53G5mUKpCMlB/FhHh3O8SSR4hewB7JyE9hOEu/9h/6u+GHH/OEgdaRHky1Sae5Jf4grO+h21ka4ig==} + /@envelop/types/2.2.1_gtorhqsyh7roiqmmeoqngd6dra: + resolution: {integrity: sha512-TONrQ8a2/y0emVhdIRhAJzqCXWtaTBLv+JnYVmihR9Iw8ETyVbZOuReB9EuSGZHciKtpkQXTjD/gq5wVMIa47g==} peerDependencies: graphql: '*' dependencies: graphql: 15.4.0-experimental-stream-defer.1 dev: false - /@envelop/types/2.2.0_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-Lghvfs0kh53G5mUKpCMlB/FhHh3O8SSR4hewB7JyE9hOEu/9h/6u+GHH/OEgdaRHky1Sae5Jf4grO+h21ka4ig==} + /@envelop/types/2.2.1_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-TONrQ8a2/y0emVhdIRhAJzqCXWtaTBLv+JnYVmihR9Iw8ETyVbZOuReB9EuSGZHciKtpkQXTjD/gq5wVMIa47g==} peerDependencies: graphql: '*' dependencies: graphql: 16.1.0-experimental-stream-defer.6 - /@envelop/validation-cache/4.3.2_jy4b2jdngoxzzeahlav4gmldjy: - resolution: {integrity: sha512-dihBgqbwm52u69QQeyOZQyDeIz/GIlLuSmgVJcsrKbbevX6pqiuZAs7Vbaj8EraIkuhAqPInzKrtWqYRgePIOA==} + /@envelop/validation-cache/4.3.3_no7zwq3lhahvisczcmca6vlcuy: + resolution: {integrity: sha512-NchRKNGA1gegzFoxi3/PLe3qQThq5DezP+RKalCiTuFwEd89TQo3rugHJXZX6tZNmw6jJ3eTnE9ouOMKvwVo+Q==} peerDependencies: - '@envelop/core': ^2.3.2 + '@envelop/core': ^2.3.3 graphql: '*' peerDependenciesMeta: '@envelop/core': optional: true dependencies: - '@envelop/core': 2.3.2_ptiko6tsqj7cmirxhjfetabnhu + '@envelop/core': 2.3.3_ptiko6tsqj7cmirxhjfetabnhu graphql: 16.1.0-experimental-stream-defer.6 tiny-lru: 7.0.6 dev: false @@ -4923,6 +4942,10 @@ packages: /@fastify/error/2.0.0: resolution: {integrity: sha512-wI3fpfDT0t7p8E6dA2eTECzzOd+bZsZCJ2Hcv+Onn2b7ZwK3RwD27uW2QDaMtQhAfWQQP+WNK7nKf0twLsBf9w==} + /@fastify/error/3.0.0: + resolution: {integrity: sha512-dPRyT40GiHRzSCll3/Jn2nPe25+E1VXc9tDwRAIKwFCxd5Np5wzgz1tmooWG3sV0qKgrBibihVoCna2ru4SEFg==} + dev: false + /@fastify/nextjs/8.0.0: resolution: {integrity: sha512-XgIxxk21GuW4F+PECvvUh7wm5IEbXBrqh/+qvvf/FvBaSgaJFsLX33n3y9ypaa8E19vesKd1B5Pe5B4V7JtZmA==} engines: {node: '>=10'} @@ -4954,13 +4977,42 @@ packages: resolution: {integrity: sha512-ngZo5rchmhRZaML4MkAY/ClGs8Iyp0+rL97EIP0QsU2N4ICqBKEBG/wGL21ImAhha1RFixEzz8+CB/Ad/W50yw==} dependencies: fastify-plugin: 3.0.1 - ws: 8.6.0 + ws: 8.7.0 transitivePeerDependencies: - bufferutil - utf-8-validate dev: false - /@graphiql/toolkit/0.4.5_2ul57u2danryqu6cyf2org6kaq: + /@graphiql/react/0.4.0_xcdbzumhatha34vl6yvnh3fagi: + resolution: {integrity: sha512-9OtwzJ3EaDgD5Qi+WtnHA8Wv0XL9l+W4n3jtNR+wFDjC2vvbEd/grPm0eSikryVcq/0q6aR4HyR3SuKj6tKPYg==} + peerDependencies: + graphql: '*' + react: '*' + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true + dependencies: + '@graphiql/toolkit': 0.6.0_yjlbj5iefrahkkqtzjdxwg3bsi + codemirror: 5.65.5 + codemirror-graphql: 1.3.0_ezogifrc2g2p76jnu4j3a75iqq + copy-to-clipboard: 3.3.1 + escape-html: 1.0.3 + graphql: 16.1.0-experimental-stream-defer.6 + graphql-language-service: 5.0.4_ptiko6tsqj7cmirxhjfetabnhu + markdown-it: 12.3.2 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + set-value: 4.1.0 + transitivePeerDependencies: + - '@codemirror/language' + - '@types/node' + - graphql-ws + dev: true + + /@graphiql/toolkit/0.4.5_yjlbj5iefrahkkqtzjdxwg3bsi: resolution: {integrity: sha512-QXuuMSSK/0GfBS7tltrGZdyhIvm6oe9TK4VW9pfa8dALYttpzyJ64Q4Sx9I1Ng++yOMJWziM/ksa043zkNHsjQ==} peerDependencies: graphql: '*' @@ -4969,7 +5021,21 @@ packages: '@n1ru4l/push-pull-async-iterable-iterator': 3.2.0 graphql: 16.1.0-experimental-stream-defer.6 graphql-ws: 5.8.2_ptiko6tsqj7cmirxhjfetabnhu - meros: 1.2.0_@types+node@17.0.35 + meros: 1.2.0_@types+node@17.0.41 + transitivePeerDependencies: + - '@types/node' + dev: true + + /@graphiql/toolkit/0.6.0_yjlbj5iefrahkkqtzjdxwg3bsi: + resolution: {integrity: sha512-mbAwbt4lw2bFp9QW3NLVmh/r/ymczlcqvXk1HfvuC7Ma4h0yzrJiQauJyh1/gF5kjqevcRSquvP/YQJSvh1u6w==} + peerDependencies: + graphql: '*' + graphql-ws: '>= 4.5.0' + dependencies: + '@n1ru4l/push-pull-async-iterable-iterator': 3.2.0 + graphql: 16.1.0-experimental-stream-defer.6 + graphql-ws: 5.8.2_ptiko6tsqj7cmirxhjfetabnhu + meros: 1.2.0_@types+node@17.0.41 transitivePeerDependencies: - '@types/node' dev: true @@ -4980,8 +5046,8 @@ packages: graphql: '*' dependencies: '@graphql-codegen/plugin-helpers': 2.4.2_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/schema': 8.3.11_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/schema': 8.3.14_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu graphql: 16.1.0-experimental-stream-defer.6 tslib: 2.3.1 dev: false @@ -4991,7 +5057,7 @@ packages: peerDependencies: graphql: '*' dependencies: - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu change-case-all: 1.0.14 common-tags: 1.8.2 graphql: 16.1.0-experimental-stream-defer.6 @@ -5006,18 +5072,18 @@ packages: graphql: '*' dependencies: '@graphql-codegen/plugin-helpers': 2.4.2_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu graphql: 16.1.0-experimental-stream-defer.6 tslib: 2.3.1 dev: false - /@graphql-codegen/typed-document-node/2.2.11_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-AHBfw6gHSs0XOuIWsLZwtSgmk+3XqUCyPfXCeDE3Z9MNx/EYYY6lr8cFcsFnR3ASotcVAsVoLTfB4YS4NqgqdA==} + /@graphql-codegen/typed-document-node/2.2.12_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-Xmgl2/JHXjJSdWoh1FG5nDSgPYbJamA2scZYX+ypXnZeEp/Tb7gaN9uabZls4wJNFkM1hYwn5ubbJqgfA5A90w==} peerDependencies: graphql: '*' dependencies: '@graphql-codegen/plugin-helpers': 2.4.2_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-codegen/visitor-plugin-common': 2.8.0_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-codegen/visitor-plugin-common': 2.9.0_ptiko6tsqj7cmirxhjfetabnhu auto-bind: 4.0.0 change-case-all: 1.0.14 graphql: 16.1.0-experimental-stream-defer.6 @@ -5027,14 +5093,14 @@ packages: - supports-color dev: false - /@graphql-codegen/typescript-operations/2.4.0_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-vJ15FLyWchuO2Xkp6uz7jJOdChiay7P9KJKFDILx/JTwjinU1fFa7iOvyeTvslqiUPxgsXthR5izdY+E5IyLkQ==} + /@graphql-codegen/typescript-operations/2.4.1_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-NIHn4T5wxQ45PtKJ19q+AOqR4f2jW8UlMfQD34RG7vTuD42g+Y00GupYFTyzE6bsUAIhsVgJ4QJmP+taipBKAQ==} peerDependencies: graphql: '*' dependencies: '@graphql-codegen/plugin-helpers': 2.4.2_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-codegen/typescript': 2.4.11_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-codegen/visitor-plugin-common': 2.8.0_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-codegen/typescript': 2.5.0_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-codegen/visitor-plugin-common': 2.9.0_ptiko6tsqj7cmirxhjfetabnhu auto-bind: 4.0.0 graphql: 16.1.0-experimental-stream-defer.6 tslib: 2.4.0 @@ -5043,15 +5109,15 @@ packages: - supports-color dev: false - /@graphql-codegen/typescript-resolvers/2.6.4_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-BTV5q9d7V+4mVyYRnE8N7HyArmvDbUEY5JwyV94jhlN0AOq2zKQBrs8MRvx8v1VenjTGV+PlnDpF3aEtQu8o+g==} + /@graphql-codegen/typescript-resolvers/2.6.5_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-vzREbHyiYHhy/C90V8HKnfD7hnJIeioqZIYssX9WTQ5pVHqdeO/k4Gbw9ljcFe4OsP5d9GFHzhtU+/GnQlCyaA==} peerDependencies: graphql: '*' dependencies: '@graphql-codegen/plugin-helpers': 2.4.2_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-codegen/typescript': 2.4.11_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-codegen/visitor-plugin-common': 2.8.0_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-codegen/typescript': 2.5.0_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-codegen/visitor-plugin-common': 2.9.0_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu auto-bind: 4.0.0 graphql: 16.1.0-experimental-stream-defer.6 tslib: 2.4.0 @@ -5060,14 +5126,14 @@ packages: - supports-color dev: false - /@graphql-codegen/typescript/2.4.11_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-K3oDLPJRH9Wgpg9TOvb7L+xrJZ8HxkIzV2umqGn54c+8DQjvnRFBIYRO0THgUBMnEauE2sEy6RZkGHGfgQUruA==} + /@graphql-codegen/typescript/2.5.0_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-eCCebNyhV5NcNyfrNOdur1b4zPSyj2o89yaSliEMSShf4WolfFOv4aYpL4tFXjhkw3n2pR7MYFDUnrzmDpfmNw==} peerDependencies: graphql: '*' dependencies: '@graphql-codegen/plugin-helpers': 2.4.2_ptiko6tsqj7cmirxhjfetabnhu '@graphql-codegen/schema-ast': 2.4.1_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-codegen/visitor-plugin-common': 2.8.0_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-codegen/visitor-plugin-common': 2.9.0_ptiko6tsqj7cmirxhjfetabnhu auto-bind: 4.0.0 graphql: 16.1.0-experimental-stream-defer.6 tslib: 2.4.0 @@ -5076,15 +5142,15 @@ packages: - supports-color dev: false - /@graphql-codegen/visitor-plugin-common/2.8.0_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-29MOaxBog7qaEhmeCzJn2mONSbcA+slCTzHN4nJ3aZl4KrC9V32rXlQpG5x0qHbFQ1LaG1f5gPO83xbiAeMBIw==} + /@graphql-codegen/visitor-plugin-common/2.9.0_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-w353lPpXlgsQT6dxfcHw3hQdodGnfSwsxofHVfROqrIBZIjH0kNiFHOt8rnewYkLGEa75bWDVaM1ofyXEaN+3w==} peerDependencies: graphql: '*' dependencies: '@graphql-codegen/plugin-helpers': 2.4.2_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/optimize': 1.2.0_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/relay-operation-optimizer': 6.4.10_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/optimize': 1.2.1_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/relay-operation-optimizer': 6.4.13_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu auto-bind: 4.0.0 change-case-all: 1.0.14 dependency-graph: 0.11.0 @@ -5097,140 +5163,140 @@ packages: - supports-color dev: false - /@graphql-tools/batch-execute/8.4.7_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-+ZXikTo8kJ1hJAQrT94sUrwmdL8EcvoDz4HULbb4B8hIFw0PPBaGkEaN8u5ylsCLOEoWIQNe1SwHx9yDhlvnJg==} + /@graphql-tools/batch-execute/8.4.10_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-rugHElhKYZgb6w3mBuNdgjMIo0LW5QbwIwJ1bc9VKWh51dCQmNwJS1Nx8qFWUjhmjVJWbvKWqYb6Z7wTGnOc3g==} peerDependencies: graphql: '*' dependencies: - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu dataloader: 2.1.0 graphql: 16.1.0-experimental-stream-defer.6 tslib: 2.4.0 value-or-promise: 1.0.11 - /@graphql-tools/delegate/8.7.8_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-QRpk0B0VD+23mC3ePBLM542TvCXbQhdr0V/AmcnpxQLsV27/NA6fDxxN/zjjjs15M5v9/M2DaBT4rwY9NMMlQA==} + /@graphql-tools/delegate/8.7.11_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-Rm9ThQHPOz/78OsoB8pZF+8YJm7cHsFMbGa67Q2hLmEAf2xLmNKvsfKfnxYuLnfmpdRxdSmab/ecHZ0qW/DS5w==} peerDependencies: graphql: '*' dependencies: - '@graphql-tools/batch-execute': 8.4.7_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/schema': 8.3.11_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/batch-execute': 8.4.10_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/schema': 8.3.14_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu dataloader: 2.1.0 graphql: 16.1.0-experimental-stream-defer.6 graphql-executor: 0.0.23_ptiko6tsqj7cmirxhjfetabnhu tslib: 2.4.0 value-or-promise: 1.0.11 - /@graphql-tools/graphql-file-loader/7.3.12_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-V1K+g0QBflBnN58pU6jo7qrmXfIJjSgmIGo4zYxbMwfvcYCQcTmfYnKWUkvZmBj0cXIAGfhqSOQZsxZW9rgXIA==} + /@graphql-tools/graphql-file-loader/7.3.15_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-Sw9XadW3bxH3ACNXE8Tsjh+BVedRCJTuRn3NfO//zOYQZiC3HDTzq9MvnW1a00SmPCXg47rxQpq9L3bdLX0Ohg==} peerDependencies: graphql: '*' dependencies: - '@graphql-tools/import': 6.6.14_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/import': 6.6.17_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu globby: 11.1.0 graphql: 16.1.0-experimental-stream-defer.6 tslib: 2.4.0 unixify: 1.0.0 - /@graphql-tools/import/6.6.14_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-XN6swtMdUxd9czmdNIK6yJ0w5t4FOUWSoSkYP0+to8j44r8zdM3nsAppoA0OLmsUY+JnTBgkW3jGlOFvqC3HWg==} + /@graphql-tools/import/6.6.17_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-rnKT2ZaFM+IbSFE0iOGG5sqdaDDv/XHHH43VIpV4ozryKoK9re3qrhEgfDOHaW47zMLGKrHLPCC/QGf0IpJquw==} peerDependencies: graphql: '*' dependencies: - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu graphql: 16.1.0-experimental-stream-defer.6 resolve-from: 5.0.0 tslib: 2.4.0 - /@graphql-tools/json-file-loader/7.3.12_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-gmH6XFN7Alt/hGXeez6Jlp0/lHuY9O1rLVKq5w5FqslkQvWYg2dqzhn2U9jRqD42NbEmSQ5Sjhfkdmc4VT6OfA==} + /@graphql-tools/json-file-loader/7.3.15_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-aPxIWBahYVPAVeGxzAsoEsLm+KVfxPcx/wIUZZX8+02YYmuICNT0TeSAk6Q6iuKMJCS7gtU5eYVdEM7qzC2EfA==} peerDependencies: graphql: '*' dependencies: - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu globby: 11.1.0 graphql: 16.1.0-experimental-stream-defer.6 tslib: 2.4.0 unixify: 1.0.0 dev: true - /@graphql-tools/load/7.5.11_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-a8sD3iHfxcbIwP0nSxF+DUAVg+/MuLNOizVJHcZGGS8AdDoezUsnWRkNDT6FlVqRoxHNbkpq8+6B55JKtqHSxg==} + /@graphql-tools/load/7.5.14_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-K7H4tKKGFliRyjbG92KCuv2fS2pHlRxkcNcDtuEQlA8dhthS9qGB14Ld4eHDuRq1RvHTS6mye5NE1alyY44K9g==} peerDependencies: graphql: '*' dependencies: - '@graphql-tools/schema': 8.3.11_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/schema': 8.3.14_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu graphql: 16.1.0-experimental-stream-defer.6 p-limit: 3.1.0 tslib: 2.4.0 - /@graphql-tools/merge/8.2.11_graphql-esm@16.0.1: - resolution: {integrity: sha512-fsjJVdsk9GV1jj1Ed2AKLlHYlsf0ZadTK8X5KxFRE1ZSnKqh56BLVX93JrtOIAnsiHkwOK2TC43HGhApF1swpQ==} + /@graphql-tools/merge/8.2.14_graphql-esm@16.5.0: + resolution: {integrity: sha512-od6lTF732nwPX91G79eiJf+dyRBHxCaKe7QL4IYeH4d1k+NYqx/ihYpFJNjDaqxmpHH92Hr+TxsP9SYRK3/QKg==} peerDependencies: graphql: '*' dependencies: - '@graphql-tools/utils': 8.6.10_graphql-esm@16.0.1 - graphql: /graphql-esm/16.0.1 + '@graphql-tools/utils': 8.6.13_graphql-esm@16.5.0 + graphql: /graphql-esm/16.5.0 tslib: 2.4.0 dev: false - /@graphql-tools/merge/8.2.11_graphql@15.8.0: - resolution: {integrity: sha512-fsjJVdsk9GV1jj1Ed2AKLlHYlsf0ZadTK8X5KxFRE1ZSnKqh56BLVX93JrtOIAnsiHkwOK2TC43HGhApF1swpQ==} + /@graphql-tools/merge/8.2.14_graphql@15.8.0: + resolution: {integrity: sha512-od6lTF732nwPX91G79eiJf+dyRBHxCaKe7QL4IYeH4d1k+NYqx/ihYpFJNjDaqxmpHH92Hr+TxsP9SYRK3/QKg==} peerDependencies: graphql: '*' dependencies: - '@graphql-tools/utils': 8.6.10_graphql@15.8.0 + '@graphql-tools/utils': 8.6.13_graphql@15.8.0 graphql: 15.8.0 tslib: 2.4.0 dev: false - /@graphql-tools/merge/8.2.11_graphql@16.5.0: - resolution: {integrity: sha512-fsjJVdsk9GV1jj1Ed2AKLlHYlsf0ZadTK8X5KxFRE1ZSnKqh56BLVX93JrtOIAnsiHkwOK2TC43HGhApF1swpQ==} + /@graphql-tools/merge/8.2.14_graphql@16.5.0: + resolution: {integrity: sha512-od6lTF732nwPX91G79eiJf+dyRBHxCaKe7QL4IYeH4d1k+NYqx/ihYpFJNjDaqxmpHH92Hr+TxsP9SYRK3/QKg==} peerDependencies: graphql: '*' dependencies: - '@graphql-tools/utils': 8.6.10_graphql@16.5.0 + '@graphql-tools/utils': 8.6.13_graphql@16.5.0 graphql: 16.5.0 tslib: 2.4.0 dev: false - /@graphql-tools/merge/8.2.11_gtorhqsyh7roiqmmeoqngd6dra: - resolution: {integrity: sha512-fsjJVdsk9GV1jj1Ed2AKLlHYlsf0ZadTK8X5KxFRE1ZSnKqh56BLVX93JrtOIAnsiHkwOK2TC43HGhApF1swpQ==} + /@graphql-tools/merge/8.2.14_gtorhqsyh7roiqmmeoqngd6dra: + resolution: {integrity: sha512-od6lTF732nwPX91G79eiJf+dyRBHxCaKe7QL4IYeH4d1k+NYqx/ihYpFJNjDaqxmpHH92Hr+TxsP9SYRK3/QKg==} peerDependencies: graphql: '*' dependencies: - '@graphql-tools/utils': 8.6.10_gtorhqsyh7roiqmmeoqngd6dra + '@graphql-tools/utils': 8.6.13_gtorhqsyh7roiqmmeoqngd6dra graphql: 15.4.0-experimental-stream-defer.1 tslib: 2.4.0 dev: false - /@graphql-tools/merge/8.2.11_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-fsjJVdsk9GV1jj1Ed2AKLlHYlsf0ZadTK8X5KxFRE1ZSnKqh56BLVX93JrtOIAnsiHkwOK2TC43HGhApF1swpQ==} + /@graphql-tools/merge/8.2.14_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-od6lTF732nwPX91G79eiJf+dyRBHxCaKe7QL4IYeH4d1k+NYqx/ihYpFJNjDaqxmpHH92Hr+TxsP9SYRK3/QKg==} peerDependencies: graphql: '*' dependencies: - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu graphql: 16.1.0-experimental-stream-defer.6 tslib: 2.4.0 - /@graphql-tools/optimize/1.2.0_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-l0PTqgHeorQdeOizUor6RB49eOAng9+abSxiC5/aHRo6hMmXVaqv5eqndlmxCpx9BkgNb3URQbK+ZZHVktkP/g==} + /@graphql-tools/optimize/1.2.1_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-OAg1TYtYfeQMYlfsxNaY0FbEG4xsjdOHZw7/KFT1BdoCDtvl2NlYKoxh97mgZk2XmjqZULw/PS2E1MOk6IQapw==} peerDependencies: graphql: '*' dependencies: graphql: 16.1.0-experimental-stream-defer.6 - tslib: 2.3.1 + tslib: 2.4.0 dev: false - /@graphql-tools/relay-operation-optimizer/6.4.10_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-a5wDdXP7MmwZDy9R8+RZ0ajJBWX1Lk9sIG6uSIo5G/LnGpXncgBhKpJf5r6rOf0zsFLWnAkYm/dCDMpFaGE/Yw==} + /@graphql-tools/relay-operation-optimizer/6.4.13_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-H2urxI53jCgrvhjaRFMzFvdHEs95BES3Am07Zr1NZsbme9sxyPfaj8qftnaU37KvVs0v+wtf1pw6PnYelMsNoQ==} peerDependencies: graphql: '*' dependencies: - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu graphql: 16.1.0-experimental-stream-defer.6 relay-compiler: 12.0.0_ptiko6tsqj7cmirxhjfetabnhu tslib: 2.4.0 @@ -5239,86 +5305,86 @@ packages: - supports-color dev: false - /@graphql-tools/schema/8.3.11_graphql-esm@16.0.1: - resolution: {integrity: sha512-esMEnbyXbp8B5VEI4o395+x0G7Qmz3JSX5onFBF8HeLYcqWJasY5vBuWkO18VxrZpEnvnryodP6Y00bVag9O3Q==} + /@graphql-tools/schema/8.3.14_graphql-esm@16.5.0: + resolution: {integrity: sha512-ntA4pKwyyPHFFKcIw17FfqGZAiTNZl0tHieQpPIkN5fPc4oHcXOfaj1vBjtIC/Qn6H7XBBu3l2kMA8FpobdxTQ==} peerDependencies: graphql: '*' dependencies: - '@graphql-tools/merge': 8.2.11_graphql-esm@16.0.1 - '@graphql-tools/utils': 8.6.10_graphql-esm@16.0.1 - graphql: /graphql-esm/16.0.1 + '@graphql-tools/merge': 8.2.14_graphql-esm@16.5.0 + '@graphql-tools/utils': 8.6.13_graphql-esm@16.5.0 + graphql: /graphql-esm/16.5.0 tslib: 2.4.0 value-or-promise: 1.0.11 dev: false - /@graphql-tools/schema/8.3.11_graphql@15.8.0: - resolution: {integrity: sha512-esMEnbyXbp8B5VEI4o395+x0G7Qmz3JSX5onFBF8HeLYcqWJasY5vBuWkO18VxrZpEnvnryodP6Y00bVag9O3Q==} + /@graphql-tools/schema/8.3.14_graphql@15.8.0: + resolution: {integrity: sha512-ntA4pKwyyPHFFKcIw17FfqGZAiTNZl0tHieQpPIkN5fPc4oHcXOfaj1vBjtIC/Qn6H7XBBu3l2kMA8FpobdxTQ==} peerDependencies: graphql: '*' dependencies: - '@graphql-tools/merge': 8.2.11_graphql@15.8.0 - '@graphql-tools/utils': 8.6.10_graphql@15.8.0 + '@graphql-tools/merge': 8.2.14_graphql@15.8.0 + '@graphql-tools/utils': 8.6.13_graphql@15.8.0 graphql: 15.8.0 tslib: 2.4.0 value-or-promise: 1.0.11 dev: false - /@graphql-tools/schema/8.3.11_graphql@16.5.0: - resolution: {integrity: sha512-esMEnbyXbp8B5VEI4o395+x0G7Qmz3JSX5onFBF8HeLYcqWJasY5vBuWkO18VxrZpEnvnryodP6Y00bVag9O3Q==} + /@graphql-tools/schema/8.3.14_graphql@16.5.0: + resolution: {integrity: sha512-ntA4pKwyyPHFFKcIw17FfqGZAiTNZl0tHieQpPIkN5fPc4oHcXOfaj1vBjtIC/Qn6H7XBBu3l2kMA8FpobdxTQ==} peerDependencies: graphql: '*' dependencies: - '@graphql-tools/merge': 8.2.11_graphql@16.5.0 - '@graphql-tools/utils': 8.6.10_graphql@16.5.0 + '@graphql-tools/merge': 8.2.14_graphql@16.5.0 + '@graphql-tools/utils': 8.6.13_graphql@16.5.0 graphql: 16.5.0 tslib: 2.4.0 value-or-promise: 1.0.11 dev: false - /@graphql-tools/schema/8.3.11_gtorhqsyh7roiqmmeoqngd6dra: - resolution: {integrity: sha512-esMEnbyXbp8B5VEI4o395+x0G7Qmz3JSX5onFBF8HeLYcqWJasY5vBuWkO18VxrZpEnvnryodP6Y00bVag9O3Q==} + /@graphql-tools/schema/8.3.14_gtorhqsyh7roiqmmeoqngd6dra: + resolution: {integrity: sha512-ntA4pKwyyPHFFKcIw17FfqGZAiTNZl0tHieQpPIkN5fPc4oHcXOfaj1vBjtIC/Qn6H7XBBu3l2kMA8FpobdxTQ==} peerDependencies: graphql: '*' dependencies: - '@graphql-tools/merge': 8.2.11_gtorhqsyh7roiqmmeoqngd6dra - '@graphql-tools/utils': 8.6.10_gtorhqsyh7roiqmmeoqngd6dra + '@graphql-tools/merge': 8.2.14_gtorhqsyh7roiqmmeoqngd6dra + '@graphql-tools/utils': 8.6.13_gtorhqsyh7roiqmmeoqngd6dra graphql: 15.4.0-experimental-stream-defer.1 tslib: 2.4.0 value-or-promise: 1.0.11 dev: false - /@graphql-tools/schema/8.3.11_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-esMEnbyXbp8B5VEI4o395+x0G7Qmz3JSX5onFBF8HeLYcqWJasY5vBuWkO18VxrZpEnvnryodP6Y00bVag9O3Q==} + /@graphql-tools/schema/8.3.14_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-ntA4pKwyyPHFFKcIw17FfqGZAiTNZl0tHieQpPIkN5fPc4oHcXOfaj1vBjtIC/Qn6H7XBBu3l2kMA8FpobdxTQ==} peerDependencies: graphql: '*' dependencies: - '@graphql-tools/merge': 8.2.11_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/merge': 8.2.14_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu graphql: 16.1.0-experimental-stream-defer.6 tslib: 2.4.0 value-or-promise: 1.0.11 - /@graphql-tools/url-loader/7.9.21_jbzygwtciwlvjtn3q7t33u52ie: - resolution: {integrity: sha512-OPE08LVvKmeGyauWWksRYTBtQ1lB0kHUv2hofb0lOlD4TKURg53TwFopncof+1IT+1hTl3sLsERn7S5M1Z5PhQ==} + /@graphql-tools/url-loader/7.9.24_hpd26pxjdtqgd5vnuymhglwlia: + resolution: {integrity: sha512-DpIP9EVZSyhSJgX3P2/ka7lzmpDLqOQ4hDkt1oCBcRDzkeyMOKl5XQAg5/X6AaIonhss+/el0ELqTVOHt9zDxQ==} peerDependencies: graphql: '*' dependencies: - '@graphql-tools/delegate': 8.7.8_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/wrap': 8.4.17_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/delegate': 8.7.11_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/wrap': 8.4.20_ptiko6tsqj7cmirxhjfetabnhu '@n1ru4l/graphql-live-query': 0.9.0_ptiko6tsqj7cmirxhjfetabnhu '@types/ws': 8.5.3 - cross-undici-fetch: 0.4.3 + cross-undici-fetch: 0.4.5 dset: 3.1.2 extract-files: 11.0.0 graphql: 16.1.0-experimental-stream-defer.6 graphql-ws: 5.8.2_ptiko6tsqj7cmirxhjfetabnhu - isomorphic-ws: 4.0.1_ws@8.6.0 - meros: 1.2.0_@types+node@17.0.35 - sync-fetch: 0.3.1 + isomorphic-ws: 4.0.1_ws@8.7.0 + meros: 1.2.0_@types+node@17.0.41 + sync-fetch: 0.4.1 tslib: 2.4.0 value-or-promise: 1.0.11 - ws: 8.6.0 + ws: 8.7.0 transitivePeerDependencies: - '@types/node' - bufferutil @@ -5326,17 +5392,17 @@ packages: - utf-8-validate dev: true - /@graphql-tools/utils/8.6.10_graphql-esm@16.0.1: - resolution: {integrity: sha512-bJH9qwuyM3BP0PTU6/lvBDkk6jdEIOn+dbyk4pHMVNnvbJ1gZQwo62To8SHxxaUTus8OMhhVPSh9ApWXREURcg==} + /@graphql-tools/utils/8.6.13_graphql-esm@16.5.0: + resolution: {integrity: sha512-FiVqrQzj4cgz0HcZ3CxUs8NtBGPZFpmsVyIgwmL6YCwIhjJQnT72h8G3/vk5zVfjfesht85YGp0inWWuoCKWzg==} peerDependencies: graphql: '*' dependencies: - graphql: /graphql-esm/16.0.1 + graphql: /graphql-esm/16.5.0 tslib: 2.4.0 dev: false - /@graphql-tools/utils/8.6.10_graphql@15.8.0: - resolution: {integrity: sha512-bJH9qwuyM3BP0PTU6/lvBDkk6jdEIOn+dbyk4pHMVNnvbJ1gZQwo62To8SHxxaUTus8OMhhVPSh9ApWXREURcg==} + /@graphql-tools/utils/8.6.13_graphql@15.8.0: + resolution: {integrity: sha512-FiVqrQzj4cgz0HcZ3CxUs8NtBGPZFpmsVyIgwmL6YCwIhjJQnT72h8G3/vk5zVfjfesht85YGp0inWWuoCKWzg==} peerDependencies: graphql: '*' dependencies: @@ -5344,8 +5410,8 @@ packages: tslib: 2.4.0 dev: false - /@graphql-tools/utils/8.6.10_graphql@16.5.0: - resolution: {integrity: sha512-bJH9qwuyM3BP0PTU6/lvBDkk6jdEIOn+dbyk4pHMVNnvbJ1gZQwo62To8SHxxaUTus8OMhhVPSh9ApWXREURcg==} + /@graphql-tools/utils/8.6.13_graphql@16.5.0: + resolution: {integrity: sha512-FiVqrQzj4cgz0HcZ3CxUs8NtBGPZFpmsVyIgwmL6YCwIhjJQnT72h8G3/vk5zVfjfesht85YGp0inWWuoCKWzg==} peerDependencies: graphql: '*' dependencies: @@ -5353,8 +5419,8 @@ packages: tslib: 2.4.0 dev: false - /@graphql-tools/utils/8.6.10_gtorhqsyh7roiqmmeoqngd6dra: - resolution: {integrity: sha512-bJH9qwuyM3BP0PTU6/lvBDkk6jdEIOn+dbyk4pHMVNnvbJ1gZQwo62To8SHxxaUTus8OMhhVPSh9ApWXREURcg==} + /@graphql-tools/utils/8.6.13_gtorhqsyh7roiqmmeoqngd6dra: + resolution: {integrity: sha512-FiVqrQzj4cgz0HcZ3CxUs8NtBGPZFpmsVyIgwmL6YCwIhjJQnT72h8G3/vk5zVfjfesht85YGp0inWWuoCKWzg==} peerDependencies: graphql: '*' dependencies: @@ -5362,22 +5428,22 @@ packages: tslib: 2.4.0 dev: false - /@graphql-tools/utils/8.6.10_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-bJH9qwuyM3BP0PTU6/lvBDkk6jdEIOn+dbyk4pHMVNnvbJ1gZQwo62To8SHxxaUTus8OMhhVPSh9ApWXREURcg==} + /@graphql-tools/utils/8.6.13_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-FiVqrQzj4cgz0HcZ3CxUs8NtBGPZFpmsVyIgwmL6YCwIhjJQnT72h8G3/vk5zVfjfesht85YGp0inWWuoCKWzg==} peerDependencies: graphql: '*' dependencies: graphql: 16.1.0-experimental-stream-defer.6 tslib: 2.4.0 - /@graphql-tools/wrap/8.4.17_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-oXTNXuUsty2smv3wm9M0W3Pon+fofy9ItIgGT3xfHnJITCNC2GC1s29lhcr0pIZL4Tjp7oTlqMx+sPjLHETSzw==} + /@graphql-tools/wrap/8.4.20_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-qzlrOg9ddaA+30OdG8NU/zDPV2sbJ4Rvool+Zf0nLVRqkAUP/1uxXTQBLgEJKO1xxTlhJ+27FCJ42lG6JG9ZrA==} peerDependencies: graphql: '*' dependencies: - '@graphql-tools/delegate': 8.7.8_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/schema': 8.3.11_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/delegate': 8.7.11_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/schema': 8.3.14_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu graphql: 16.1.0-experimental-stream-defer.6 tslib: 2.4.0 value-or-promise: 1.0.11 @@ -5397,7 +5463,7 @@ packages: dependencies: graphql: 16.1.0-experimental-stream-defer.6 - /@guild-docs/client/2.1.1_jsrkqj2jtjzjfvqjfl6vsjng3y: + /@guild-docs/client/2.1.1_atpkhdtt62h6guzoreo7gu2tvy: resolution: {integrity: sha512-ikdcOnjeLvwih+V+WvDCKwP6u8752mVtzK1zjm01H7O+EosmiHHgilHPER7lvvwf7DJ/tBjZJJfqTtvSSrw1zQ==} peerDependencies: '@chakra-ui/icons': '*' @@ -5423,14 +5489,14 @@ packages: optional: true dependencies: '@chakra-ui/icons': 1.1.7_react@17.0.2 - '@chakra-ui/react': 1.8.8_qaq3qtwi74meo7khtwcm3ybelq + '@chakra-ui/react': 1.8.8_35m6iuyn7qvwsjtignyl5fhroi '@chakra-ui/utils': 1.10.4 '@emotion/react': 11.9.0_hx2b44akkvgcgvvtmk7ds2qk6q '@guild-docs/mdx-remote': 2.0.2_c62bghribpr44nzrfj5gk2cjxm '@guild-docs/types': 2.0.0_3xaqzqczgwuy22e74gayxkolea '@mdx-js/react': 2.1.1_react@17.0.2 '@theguild/components': 1.11.8_k2mvpji5i2ojml6m4ftklg47pa - framer-motion: 6.3.3_sfoxds7t5ydpegc3knd667wn6m + framer-motion: 6.3.10_sfoxds7t5ydpegc3knd667wn6m immer: 9.0.12 mdx-mermaid: 1.2.2_kiidlhfndo6uojt2z2sy3fi7nm mermaid: 8.11.5 @@ -5441,10 +5507,10 @@ packages: react: 17.0.2 react-children-utilities: 2.7.0_react@17.0.2 react-dom: 17.0.2_react@17.0.2 - react-icons: 4.3.1_react@17.0.2 + react-icons: 4.4.0_react@17.0.2 react-intersection-observer: 8.33.1_react@17.0.2 react-sticky-box: 1.0.2_react@17.0.2 - react-use: 17.3.2_sfoxds7t5ydpegc3knd667wn6m + react-use: 17.4.0_sfoxds7t5ydpegc3knd667wn6m remove-markdown: 0.3.0 use-immer: 0.6.0_immer@9.0.12+react@17.0.2 zustand: 3.7.2_react@17.0.2 @@ -5529,7 +5595,7 @@ packages: '@types/react': '*' next-i18next: '*' dependencies: - '@chakra-ui/react': 1.8.8_qaq3qtwi74meo7khtwcm3ybelq + '@chakra-ui/react': 1.8.8_35m6iuyn7qvwsjtignyl5fhroi '@mdx-js/mdx': 2.1.1 '@types/react': 17.0.45 next-i18next: 11.0.0_zhtyyhxvjc4vmyivr6fwl32yja @@ -5545,7 +5611,7 @@ packages: '@types/react': '*' next-i18next: '*' dependencies: - '@chakra-ui/react': 1.8.8_qaq3qtwi74meo7khtwcm3ybelq + '@chakra-ui/react': 1.8.8_35m6iuyn7qvwsjtignyl5fhroi '@mdx-js/mdx': 2.1.1 '@types/react': 17.0.45 next-i18next: 11.0.0_zhtyyhxvjc4vmyivr6fwl32yja @@ -5769,20 +5835,20 @@ packages: resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} engines: {node: '>=8'} - /@jest/console/28.1.0: - resolution: {integrity: sha512-tscn3dlJFGay47kb4qVruQg/XWlmvU0xp3EJOjzzY+sBaI+YgwKcvAmTcyYU7xEiLLIY5HCdWRooAL8dqkFlDA==} + /@jest/console/28.1.1: + resolution: {integrity: sha512-0RiUocPVFEm3WRMOStIHbRWllG6iW6E3/gUPnf4lkrVFyXIIDeCe+vlKeYyFOMhB2EPE6FLFCNADSOOQMaqvyA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@jest/types': 28.1.0 - '@types/node': 17.0.35 + '@jest/types': 28.1.1 + '@types/node': 17.0.41 chalk: 4.1.2 - jest-message-util: 28.1.0 - jest-util: 28.1.0 + jest-message-util: 28.1.1 + jest-util: 28.1.1 slash: 3.0.0 dev: true - /@jest/core/28.1.0: - resolution: {integrity: sha512-/2PTt0ywhjZ4NwNO4bUqD9IVJfmFVhVKGlhvSpmEfUCuxYf/3NHcKmRFI+I71lYzbTT3wMuYpETDCTHo81gC/g==} + /@jest/core/28.1.1: + resolution: {integrity: sha512-3pYsBoZZ42tXMdlcFeCc/0j9kOlK7MYuXs2B1QbvDgMoW1K9NJ4G/VYvIbMb26iqlkTfPHo7SC2JgjDOk/mxXw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -5790,32 +5856,32 @@ packages: node-notifier: optional: true dependencies: - '@jest/console': 28.1.0 - '@jest/reporters': 28.1.0 - '@jest/test-result': 28.1.0 - '@jest/transform': 28.1.0 - '@jest/types': 28.1.0 - '@types/node': 17.0.35 + '@jest/console': 28.1.1 + '@jest/reporters': 28.1.1 + '@jest/test-result': 28.1.1 + '@jest/transform': 28.1.1 + '@jest/types': 28.1.1 + '@types/node': 17.0.41 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.3.1 exit: 0.1.2 graceful-fs: 4.2.10 jest-changed-files: 28.0.2 - jest-config: 28.1.0_@types+node@17.0.35 - jest-haste-map: 28.1.0 - jest-message-util: 28.1.0 + jest-config: 28.1.1_@types+node@17.0.41 + jest-haste-map: 28.1.1 + jest-message-util: 28.1.1 jest-regex-util: 28.0.2 - jest-resolve: 28.1.0 - jest-resolve-dependencies: 28.1.0 - jest-runner: 28.1.0 - jest-runtime: 28.1.0 - jest-snapshot: 28.1.0 - jest-util: 28.1.0 - jest-validate: 28.1.0 - jest-watcher: 28.1.0 + jest-resolve: 28.1.1 + jest-resolve-dependencies: 28.1.1 + jest-runner: 28.1.1 + jest-runtime: 28.1.1 + jest-snapshot: 28.1.1 + jest-util: 28.1.1 + jest-validate: 28.1.1 + jest-watcher: 28.1.1 micromatch: 4.0.5 - pretty-format: 28.1.0 + pretty-format: 28.1.1 rimraf: 3.0.2 slash: 3.0.0 strip-ansi: 6.0.1 @@ -5824,58 +5890,58 @@ packages: - ts-node dev: true - /@jest/environment/28.1.0: - resolution: {integrity: sha512-S44WGSxkRngzHslhV6RoAExekfF7Qhwa6R5+IYFa81mpcj0YgdBnRSmvHe3SNwOt64yXaE5GG8Y2xM28ii5ssA==} + /@jest/environment/28.1.1: + resolution: {integrity: sha512-9auVQ2GzQ7nrU+lAr8KyY838YahElTX9HVjbQPPS2XjlxQ+na18G113OoBhyBGBtD6ZnO/SrUy5WR8EzOj1/Uw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@jest/fake-timers': 28.1.0 - '@jest/types': 28.1.0 - '@types/node': 17.0.35 - jest-mock: 28.1.0 + '@jest/fake-timers': 28.1.1 + '@jest/types': 28.1.1 + '@types/node': 17.0.41 + jest-mock: 28.1.1 dev: true - /@jest/expect-utils/28.1.0: - resolution: {integrity: sha512-5BrG48dpC0sB80wpeIX5FU6kolDJI4K0n5BM9a5V38MGx0pyRvUBSS0u2aNTdDzmOrCjhOg8pGs6a20ivYkdmw==} + /@jest/expect-utils/28.1.1: + resolution: {integrity: sha512-n/ghlvdhCdMI/hTcnn4qV57kQuV9OTsZzH1TTCVARANKhl6hXJqLKUkwX69ftMGpsbpt96SsDD8n8LD2d9+FRw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: jest-get-type: 28.0.2 dev: true - /@jest/expect/28.1.0: - resolution: {integrity: sha512-be9ETznPLaHOmeJqzYNIXv1ADEzENuQonIoobzThOYPuK/6GhrWNIJDVTgBLCrz3Am73PyEU2urQClZp0hLTtA==} + /@jest/expect/28.1.1: + resolution: {integrity: sha512-/+tQprrFoT6lfkMj4mW/mUIfAmmk/+iQPmg7mLDIFOf2lyf7EBHaS+x3RbeR0VZVMe55IvX7QRoT/2aK3AuUXg==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - expect: 28.1.0 - jest-snapshot: 28.1.0 + expect: 28.1.1 + jest-snapshot: 28.1.1 transitivePeerDependencies: - supports-color dev: true - /@jest/fake-timers/28.1.0: - resolution: {integrity: sha512-Xqsf/6VLeAAq78+GNPzI7FZQRf5cCHj1qgQxCjws9n8rKw8r1UYoeaALwBvyuzOkpU3c1I6emeMySPa96rxtIg==} + /@jest/fake-timers/28.1.1: + resolution: {integrity: sha512-BY/3+TyLs5+q87rGWrGUY5f8e8uC3LsVHS9Diz8+FV3ARXL4sNnkLlIB8dvDvRrp+LUCGM+DLqlsYubizGUjIA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@jest/types': 28.1.0 + '@jest/types': 28.1.1 '@sinonjs/fake-timers': 9.1.2 - '@types/node': 17.0.35 - jest-message-util: 28.1.0 - jest-mock: 28.1.0 - jest-util: 28.1.0 + '@types/node': 17.0.41 + jest-message-util: 28.1.1 + jest-mock: 28.1.1 + jest-util: 28.1.1 dev: true - /@jest/globals/28.1.0: - resolution: {integrity: sha512-3m7sTg52OTQR6dPhsEQSxAvU+LOBbMivZBwOvKEZ+Rb+GyxVnXi9HKgOTYkx/S99T8yvh17U4tNNJPIEQmtwYw==} + /@jest/globals/28.1.1: + resolution: {integrity: sha512-dEgl/6v7ToB4vXItdvcltJBgny0xBE6xy6IYQrPJAJggdEinGxCDMivNv7sFzPcTITGquXD6UJwYxfJ/5ZwDSg==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@jest/environment': 28.1.0 - '@jest/expect': 28.1.0 - '@jest/types': 28.1.0 + '@jest/environment': 28.1.1 + '@jest/expect': 28.1.1 + '@jest/types': 28.1.1 transitivePeerDependencies: - supports-color dev: true - /@jest/reporters/28.1.0: - resolution: {integrity: sha512-qxbFfqap/5QlSpIizH9c/bFCDKsQlM4uAKSOvZrP+nIdrjqre3FmKzpTtYyhsaVcOSNK7TTt2kjm+4BJIjysFA==} + /@jest/reporters/28.1.1: + resolution: {integrity: sha512-597Zj4D4d88sZrzM4atEGLuO7SdA/YrOv9SRXHXRNC+/FwPCWxZhBAEzhXoiJzfRwn8zes/EjS8Lo6DouGN5Gg==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -5884,12 +5950,12 @@ packages: optional: true dependencies: '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 28.1.0 - '@jest/test-result': 28.1.0 - '@jest/transform': 28.1.0 - '@jest/types': 28.1.0 + '@jest/console': 28.1.1 + '@jest/test-result': 28.1.1 + '@jest/transform': 28.1.1 + '@jest/types': 28.1.1 '@jridgewell/trace-mapping': 0.3.13 - '@types/node': 17.0.35 + '@types/node': 17.0.41 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -5900,8 +5966,9 @@ packages: istanbul-lib-report: 3.0.0 istanbul-lib-source-maps: 4.0.1 istanbul-reports: 3.1.4 - jest-util: 28.1.0 - jest-worker: 28.1.0 + jest-message-util: 28.1.1 + jest-util: 28.1.1 + jest-worker: 28.1.1 slash: 3.0.0 string-length: 4.0.2 strip-ansi: 6.0.1 @@ -5927,41 +5994,41 @@ packages: graceful-fs: 4.2.10 dev: true - /@jest/test-result/28.1.0: - resolution: {integrity: sha512-sBBFIyoPzrZho3N+80P35A5oAkSKlGfsEFfXFWuPGBsW40UAjCkGakZhn4UQK4iQlW2vgCDMRDOob9FGKV8YoQ==} + /@jest/test-result/28.1.1: + resolution: {integrity: sha512-hPmkugBktqL6rRzwWAtp1JtYT4VHwv8OQ+9lE5Gymj6dHzubI/oJHMUpPOt8NrdVWSrz9S7bHjJUmv2ggFoUNQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@jest/console': 28.1.0 - '@jest/types': 28.1.0 + '@jest/console': 28.1.1 + '@jest/types': 28.1.1 '@types/istanbul-lib-coverage': 2.0.4 collect-v8-coverage: 1.0.1 dev: true - /@jest/test-sequencer/28.1.0: - resolution: {integrity: sha512-tZCEiVWlWNTs/2iK9yi6o3AlMfbbYgV4uuZInSVdzZ7ftpHZhCMuhvk2HLYhCZzLgPFQ9MnM1YaxMnh3TILFiQ==} + /@jest/test-sequencer/28.1.1: + resolution: {integrity: sha512-nuL+dNSVMcWB7OOtgb0EGH5AjO4UBCt68SLP08rwmC+iRhyuJWS9MtZ/MpipxFwKAlHFftbMsydXqWre8B0+XA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@jest/test-result': 28.1.0 + '@jest/test-result': 28.1.1 graceful-fs: 4.2.10 - jest-haste-map: 28.1.0 + jest-haste-map: 28.1.1 slash: 3.0.0 dev: true - /@jest/transform/28.1.0: - resolution: {integrity: sha512-omy2xe5WxlAfqmsTjTPxw+iXRTRnf+NtX0ToG+4S0tABeb4KsKmPUHq5UBuwunHg3tJRwgEQhEp0M/8oiatLEA==} + /@jest/transform/28.1.1: + resolution: {integrity: sha512-PkfaTUuvjUarl1EDr5ZQcCA++oXkFCP9QFUkG0yVKVmNObjhrqDy0kbMpMebfHWm3CCDHjYNem9eUSH8suVNHQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@babel/core': 7.18.0 - '@jest/types': 28.1.0 + '@babel/core': 7.18.2 + '@jest/types': 28.1.1 '@jridgewell/trace-mapping': 0.3.13 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 1.8.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.10 - jest-haste-map: 28.1.0 + jest-haste-map: 28.1.1 jest-regex-util: 28.0.2 - jest-util: 28.1.0 + jest-util: 28.1.1 micromatch: 4.0.5 pirates: 4.0.5 slash: 3.0.0 @@ -5970,14 +6037,14 @@ packages: - supports-color dev: true - /@jest/types/28.1.0: - resolution: {integrity: sha512-xmEggMPr317MIOjjDoZ4ejCSr9Lpbt/u34+dvc99t7DS8YirW5rwZEhzKPC2BMUFkUhI48qs6qLUSGw5FuL0GA==} + /@jest/types/28.1.1: + resolution: {integrity: sha512-vRXVqSg1VhDnB8bWcmvLzmg0Bt9CRKVgHPXqYwvWMX3TvAjeO+nRuK6+VdTKCtWOvYlmkF/HqNAL/z+N3B53Kw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@jest/schemas': 28.0.2 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 17.0.35 + '@types/node': 17.0.41 '@types/yargs': 17.0.10 chalk: 4.1.2 dev: true @@ -6036,8 +6103,8 @@ packages: /@manypkg/find-root/1.1.0: resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} dependencies: - '@babel/runtime': 7.18.0 - '@types/node': 12.20.52 + '@babel/runtime': 7.18.3 + '@types/node': 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 dev: true @@ -6045,7 +6112,7 @@ packages: /@manypkg/get-packages/1.1.3: resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@changesets/types': 4.1.0 '@manypkg/find-root': 1.1.0 fs-extra: 8.1.0 @@ -6090,145 +6157,146 @@ packages: react: 17.0.2 dev: false - /@miniflare/cache/2.4.0: - resolution: {integrity: sha512-tMDXlUVlThgFubJmlxZoKmLK8kBxDmuMbVMt7csHpXegzkuo2TmIsDqBE/C3CRiJ5xeCQgpD6iZtKBu5Zn5fRA==} + /@miniflare/cache/2.5.0: + resolution: {integrity: sha512-tJuDbWwzYsk4pJvPPJzdlfdGFqNnn1IN3JVrGDCq8UwOXm0K8hFiSwq2nMjjT+Z/9X2FfimgaXOx81zjPL+FjQ==} engines: {node: '>=16.7'} dependencies: - '@miniflare/core': 2.4.0 - '@miniflare/shared': 2.4.0 + '@miniflare/core': 2.5.0 + '@miniflare/shared': 2.5.0 http-cache-semantics: 4.1.0 - undici: 4.13.0 + undici: 5.3.0 dev: true - /@miniflare/cli-parser/2.4.0: - resolution: {integrity: sha512-Xr5lO8f+oIr9r/b2dfo0on1p0MNN+pkwRHWoY5ACSnp9FaGnwm/g71DM7AajIQPIk0TpRsSVNDx8Ygj1LPT+sQ==} + /@miniflare/cli-parser/2.5.0: + resolution: {integrity: sha512-aY/wQ4Rwy8x0Awtb8TzhKFYp4g1Y8xBhtKFfHOZpYCEFCVfKtgdk0pHPKctf/ClK0qJdT3siJKeXxsH2GRAMXg==} engines: {node: '>=16.7'} dependencies: - '@miniflare/shared': 2.4.0 + '@miniflare/shared': 2.5.0 kleur: 4.1.4 dev: true - /@miniflare/core/2.4.0: - resolution: {integrity: sha512-vYl8xaWTFzxtkbzx3IkT4Py0OAFdfmFnVo627O1HKHWVGlkjVr8UKtxBpIR+f5pq/HCMzzqA1HM9FXO0dQfy3A==} + /@miniflare/core/2.5.0: + resolution: {integrity: sha512-BtMRi17DiimcpmDjQiIU6mIYSo/h21lVGC082n5G3JTF7AcGFAs7N2Fz2YLiYuc3zYc6qJx/NIjDoOqL2gfp3A==} engines: {node: '>=16.7'} dependencies: '@iarna/toml': 2.2.5 - '@miniflare/shared': 2.4.0 - '@miniflare/watcher': 2.4.0 - busboy: 0.3.1 + '@miniflare/shared': 2.5.0 + '@miniflare/watcher': 2.5.0 + busboy: 1.6.0 dotenv: 10.0.0 kleur: 4.1.4 - set-cookie-parser: 2.4.8 - undici: 4.13.0 + set-cookie-parser: 2.5.0 + undici: 5.3.0 + urlpattern-polyfill: 4.0.3 dev: true - /@miniflare/durable-objects/2.4.0: - resolution: {integrity: sha512-VVLaUXXcAQcYE/3YmDLTacZf5OzR8bib6q1T9NqVb0uK5sLMQqyHvQdsG5rMqs7iyxfJxyZ0bL2OW9XGALOkoQ==} + /@miniflare/durable-objects/2.5.0: + resolution: {integrity: sha512-HJuP5Lsm/CCaSx3dePZiywAniGqTpU1ocCEqV6kE4zX1C0uGplfjPPXo5xsVc2NXkD+0ZL65rJzcj2tfrwKZlg==} engines: {node: '>=16.7'} dependencies: - '@miniflare/core': 2.4.0 - '@miniflare/shared': 2.4.0 - '@miniflare/storage-memory': 2.4.0 - undici: 4.13.0 + '@miniflare/core': 2.5.0 + '@miniflare/shared': 2.5.0 + '@miniflare/storage-memory': 2.5.0 + undici: 5.3.0 dev: true - /@miniflare/html-rewriter/2.4.0: - resolution: {integrity: sha512-ZG8819N7LelDD+8+Ss5FZpVyQQq/V2igod0qE68JK4he/w4/yn57Rk6Efb49y15HoHAXl2RpCCsnCyIow/Xjug==} + /@miniflare/html-rewriter/2.5.0: + resolution: {integrity: sha512-bV2lQ/2clPeBmDth+cMnCBFYk8xtGs83S6PhfwmNNd24rzHvOEch1h/VCtEUy8k+rtgDSpc9pVkd31k0tMsyxQ==} engines: {node: '>=16.7'} dependencies: - '@miniflare/core': 2.4.0 - '@miniflare/shared': 2.4.0 + '@miniflare/core': 2.5.0 + '@miniflare/shared': 2.5.0 html-rewriter-wasm: 0.4.1 - undici: 4.13.0 + undici: 5.3.0 dev: true - /@miniflare/http-server/2.4.0: - resolution: {integrity: sha512-r6Z/nqxE0oa1z63L95yvnG0PUeLRxZOeGS7ADxZMFKan4WD5lvYtSKDuDEm0lkbQshCOHQ3uXFr0cotOm8JoMQ==} + /@miniflare/http-server/2.5.0: + resolution: {integrity: sha512-+sRPgNq0Q4Q6t1k94ncYzgcf/UNIv0Bz4ubUu6InJy4kMaJKeJPOLlU55lTXJSYfBZM/L4NvAui2i5vA9g2BrA==} engines: {node: '>=16.7'} dependencies: - '@miniflare/core': 2.4.0 - '@miniflare/shared': 2.4.0 - '@miniflare/web-sockets': 2.4.0 + '@miniflare/core': 2.5.0 + '@miniflare/shared': 2.5.0 + '@miniflare/web-sockets': 2.5.0 kleur: 4.1.4 selfsigned: 2.0.1 - undici: 4.13.0 - ws: 8.6.0 + undici: 5.3.0 + ws: 8.7.0 youch: 2.2.2 transitivePeerDependencies: - bufferutil - utf-8-validate dev: true - /@miniflare/kv/2.4.0: - resolution: {integrity: sha512-1UW7f1386xR6EDEXNZOR1TpFwQfRRSxUPqD6m/U0WprlsbM0cIYGz+AUeaVbkFf8lfE2MeXCUrjbWsLOvsnw3g==} + /@miniflare/kv/2.5.0: + resolution: {integrity: sha512-5dzcUMMOKl8u75FXbpy2BHp38uafjzo3RW2HEm6EY8QoM/vHw6RChFzJ9YEPJDbvcHR8gdMpgC65LYPTjifc3g==} engines: {node: '>=16.7'} dependencies: - '@miniflare/shared': 2.4.0 + '@miniflare/shared': 2.5.0 dev: true - /@miniflare/runner-vm/2.4.0: - resolution: {integrity: sha512-7sdwBYzXQTwYeR3tTvQ+vJfzc7BXwqR8AUPK9l5gvCtg+Geq9sMslr5SikIJpgcvbYqKDjvC9DQEPJ3sqr9cSQ==} + /@miniflare/runner-vm/2.5.0: + resolution: {integrity: sha512-0n85cOBq91D7roqsIqJESDnj0oRi+xNVjDfd5uDIT1dW1qo5asA5Mwx6ntzCJB1BcB4khNatUIwpO3ZT+kT/YQ==} engines: {node: '>=16.7'} dependencies: - '@miniflare/shared': 2.4.0 + '@miniflare/shared': 2.5.0 dev: true - /@miniflare/scheduler/2.4.0: - resolution: {integrity: sha512-dfMCXoAS8Y+3xABNxYju62I2xIBS54Op7ohCHoatvAM5RvualJUPICEMPZzX6/z29q5xPIeSLhLDhl/asAQ19w==} + /@miniflare/scheduler/2.5.0: + resolution: {integrity: sha512-+a/I2QLp3UaZpKVobzFH3eHsi5ubhBp8q/AH/sCDwcZmatbCp2+oDrjMgTqhF6Fm8ryR4BYkHQOgkGZ5l7gQjw==} engines: {node: '>=16.7'} dependencies: - '@miniflare/core': 2.4.0 - '@miniflare/shared': 2.4.0 + '@miniflare/core': 2.5.0 + '@miniflare/shared': 2.5.0 cron-schedule: 3.0.6 dev: true - /@miniflare/shared/2.4.0: - resolution: {integrity: sha512-lPQFzBUVGNQ93gQ/dliToWnO0OqAgsD3/902Pd/IixVSRwRj3BTnYv2dHMUKZcODBPrhnbqZeqcPWdBLzEx8uw==} + /@miniflare/shared/2.5.0: + resolution: {integrity: sha512-2oPxhnCGg8DNoo0NzUdc2BylGGeHQQvFJ6mDODjxbSXybeQC0+Ul5Ujv/FyU9W/eTbUEWNqKBycINyuXqSnJ/w==} engines: {node: '>=16.7'} dependencies: ignore: 5.2.0 kleur: 4.1.4 dev: true - /@miniflare/sites/2.4.0: - resolution: {integrity: sha512-YZy/TujnR1lkBvCncDDQ8tsWsXRE4JJ4x9a0bKN/XnZh7r6OhDM0sw4BFcBQhT6Ukdtttam1O3FlJxnMitrDGg==} + /@miniflare/sites/2.5.0: + resolution: {integrity: sha512-AwYZb6ppP00YLkVNJnCe0lzJJemCDwibFjJywECY+aXFFNRo80sLpePPOXytplaUpen1uxnxUc8vdKBFVoB5cQ==} engines: {node: '>=16.7'} dependencies: - '@miniflare/kv': 2.4.0 - '@miniflare/shared': 2.4.0 - '@miniflare/storage-file': 2.4.0 + '@miniflare/kv': 2.5.0 + '@miniflare/shared': 2.5.0 + '@miniflare/storage-file': 2.5.0 dev: true - /@miniflare/storage-file/2.4.0: - resolution: {integrity: sha512-f1AUMz8xps/4VhNJMb8JeCevZFeU4pg2lIWmC11gG4xeq2nibTPBi6Qtx594Le7ZKij/tF6rRsoNfGau2Q5gdw==} + /@miniflare/storage-file/2.5.0: + resolution: {integrity: sha512-ytwWZEIn3eMBnI2FdqvM5+mJVuI2aIBeZNjhZFuF5/AW3v1uslqY55Qd5Fnfn+2C7z6ivVaUv/TlEwot9ZDUnw==} engines: {node: '>=16.7'} dependencies: - '@miniflare/shared': 2.4.0 - '@miniflare/storage-memory': 2.4.0 + '@miniflare/shared': 2.5.0 + '@miniflare/storage-memory': 2.5.0 dev: true - /@miniflare/storage-memory/2.4.0: - resolution: {integrity: sha512-mhWwgHhDNtEa7y1bYbdVucV0lqUmzagYXUSppAdSGS5JPyJMyw3HseqRNTk6gC/vKlvEYlFf3ugWcREGCedr9A==} + /@miniflare/storage-memory/2.5.0: + resolution: {integrity: sha512-cydVKLY0cZe2Sah0jV3s9MK3gmYLrQQcpCdMHMBEUz+nRfjfnuzs4WXzzUXCWwNT+WFC0V2WvDp2sMt+lVsmsA==} engines: {node: '>=16.7'} dependencies: - '@miniflare/shared': 2.4.0 + '@miniflare/shared': 2.5.0 dev: true - /@miniflare/watcher/2.4.0: - resolution: {integrity: sha512-gDQRUxwOjmctvowyd4Hcdy3fjxz3ERKzirp6TvA3AWUohKZk3IhwGlaA8aCwbdP+ELYQlG5wK44AfLSGi956fg==} + /@miniflare/watcher/2.5.0: + resolution: {integrity: sha512-6ECE7po8NBxLmr2M00f7TWLEp1dMaAm3swf4D3ZU2xy3IqSBZE3QbOBuczYEYUIk7F+kXgaREISQg4e5QdECXQ==} engines: {node: '>=16.7'} dependencies: - '@miniflare/shared': 2.4.0 + '@miniflare/shared': 2.5.0 dev: true - /@miniflare/web-sockets/2.4.0: - resolution: {integrity: sha512-cz/cN0GoQOXRLh80UmlcEJODPIw2ijKBK3PLRzvfTzqQ5avK6wp2M8Fj8C/5JIT6g7siwvBANyKXD3U3RpKGHQ==} + /@miniflare/web-sockets/2.5.0: + resolution: {integrity: sha512-nnLBtbHdmgGUNTxP0IeAz1B4UGCO/6W+4edzjogtz3JJumKQE+ink5+SIrmL0C1Pitrc2+kO2WYsQzWh3a2Amg==} engines: {node: '>=16.7'} dependencies: - '@miniflare/core': 2.4.0 - '@miniflare/shared': 2.4.0 - undici: 4.13.0 - ws: 8.6.0 + '@miniflare/core': 2.5.0 + '@miniflare/shared': 2.5.0 + undici: 5.3.0 + ws: 8.7.0 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -6476,18 +6544,18 @@ packages: - supports-color dev: false - /@percy/config/1.2.1: - resolution: {integrity: sha512-uv8tTMUFlFwQoYdV+Zxn6UoeuHXws9nfu8e7tQC7oQyg+AXYq06cqgxhFyHAyfGIhLZqyH5f4E+qCCCeTDJVqQ==} + /@percy/config/1.3.0: + resolution: {integrity: sha512-H1nVxinIg4yjOfXovNA0pbQ78ac/xdib2XkR7EwgDPrHbBdcTqkJ2EjPNImuL9b67QHkkz7U4lqR8cUUjyDqmA==} engines: {node: '>=14'} dependencies: - '@percy/logger': 1.2.1 + '@percy/logger': 1.3.0 ajv: 8.11.0 cosmiconfig: 7.0.1 - yaml: 2.1.0 + yaml: 2.1.1 dev: false - /@percy/logger/1.2.1: - resolution: {integrity: sha512-Yo/Df6w1O+IV8mTMfcObk2DZK2BrNAC1yx3UBAcbPV/vGkg+vJa/lRVtJl2rGBO0yh3n5HSFlPjkhadrc/h7/g==} + /@percy/logger/1.3.0: + resolution: {integrity: sha512-fCuhFBXRuJruz9PNdeMZXgEhUODmhXt4hiMLBWAn1cpV8evQah3tXbHqwxEqWzLHGfbPYCKZmgk49NJvwHQKmw==} engines: {node: '>=14'} dev: false @@ -6499,8 +6567,8 @@ packages: '@oclif/command': 1.8.16 '@oclif/config': 1.18.3 '@oclif/plugin-help': 3.3.1 - '@percy/config': 1.2.1 - '@percy/logger': 1.2.1 + '@percy/config': 1.3.0 + '@percy/logger': 1.3.0 cross-spawn: 7.0.3 inquirer: 8.2.4 inquirer-glob-prompt: 0.1.0 @@ -6524,26 +6592,25 @@ packages: resolution: {integrity: sha512-9X2obfABZuDVLCgPK9aX0a/x4jaOEweTTWE2+9sr0Qqqevj2Uv5XorvusThmc9XGYpS9yI+fhh8RTafBtGposw==} dev: false - /@pothos/core/3.11.0_graphql@17.0.0-alpha.1: - resolution: {integrity: sha512-zeVeG1Ggfyv3wia7lP+9a9QmFpVVST7oho4IQtGbtU7QvvdsezpikJEvPwAg7T4Sgu0tEyMRWwFcnJZdSHSjCw==} + /@pothos/core/3.11.1_graphql@17.0.0-alpha.1: + resolution: {integrity: sha512-n33sZykoNj2sl5YRaLlLu5fArrW23Sx2tRsfiaXs70oC347RkTmFzJ9upKh1lF/2/0MXyXf4xUMkX0wANpPYEA==} peerDependencies: graphql: '*' dependencies: graphql: 17.0.0-alpha.1 dev: false - /@pothos/core/3.11.0_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-zeVeG1Ggfyv3wia7lP+9a9QmFpVVST7oho4IQtGbtU7QvvdsezpikJEvPwAg7T4Sgu0tEyMRWwFcnJZdSHSjCw==} + /@pothos/core/3.11.1_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-n33sZykoNj2sl5YRaLlLu5fArrW23Sx2tRsfiaXs70oC347RkTmFzJ9upKh1lF/2/0MXyXf4xUMkX0wANpPYEA==} peerDependencies: graphql: '*' dependencies: graphql: 16.1.0-experimental-stream-defer.6 - dev: false /@radix-ui/primitive/0.1.0: resolution: {integrity: sha512-tqxZKybwN5Fa3VzZry4G6mXAAb9aAqKmPtnVbZpL0vsBwvOHTBwsjHVPXylocYLwEtBY9SCe665bYnNB515uoA==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 dev: false /@radix-ui/react-collection/0.1.4_react@17.0.2: @@ -6554,7 +6621,7 @@ packages: react: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@radix-ui/react-compose-refs': 0.1.0_react@17.0.2 '@radix-ui/react-context': 0.1.1_react@17.0.2 '@radix-ui/react-primitive': 0.1.4_react@17.0.2 @@ -6570,7 +6637,7 @@ packages: react: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 react: 17.0.2 dev: false @@ -6582,7 +6649,7 @@ packages: react: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 react: 17.0.2 dev: false @@ -6594,7 +6661,7 @@ packages: react: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@radix-ui/primitive': 0.1.0 '@radix-ui/react-compose-refs': 0.1.0_react@17.0.2 '@radix-ui/react-primitive': 0.1.4_react@17.0.2 @@ -6612,7 +6679,7 @@ packages: react: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@radix-ui/react-use-layout-effect': 0.1.0_react@17.0.2 react: 17.0.2 dev: false @@ -6628,7 +6695,7 @@ packages: react-dom: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@radix-ui/primitive': 0.1.0 '@radix-ui/react-collection': 0.1.4_react@17.0.2 '@radix-ui/react-compose-refs': 0.1.0_react@17.0.2 @@ -6655,7 +6722,7 @@ packages: react: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@radix-ui/react-compose-refs': 0.1.0_react@17.0.2 '@radix-ui/react-use-layout-effect': 0.1.0_react@17.0.2 react: 17.0.2 @@ -6669,7 +6736,7 @@ packages: react: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@radix-ui/react-slot': 0.1.2_react@17.0.2 react: 17.0.2 dev: false @@ -6682,7 +6749,7 @@ packages: react: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@radix-ui/react-compose-refs': 0.1.0_react@17.0.2 react: 17.0.2 dev: false @@ -6695,7 +6762,7 @@ packages: react: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@radix-ui/react-use-layout-effect': 0.1.0_react@17.0.2 react: 17.0.2 dev: false @@ -6708,7 +6775,7 @@ packages: react: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 react: 17.0.2 dev: false @@ -6720,7 +6787,7 @@ packages: react: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@radix-ui/react-use-callback-ref': 0.1.0_react@17.0.2 react: 17.0.2 dev: false @@ -6733,7 +6800,7 @@ packages: react: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 react: 17.0.2 dev: false @@ -6745,7 +6812,7 @@ packages: react: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@radix-ui/react-use-callback-ref': 0.1.0_react@17.0.2 react: 17.0.2 dev: false @@ -6758,7 +6825,7 @@ packages: react: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 react: 17.0.2 dev: false @@ -6770,7 +6837,7 @@ packages: react: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 react: 17.0.2 dev: false @@ -6782,7 +6849,7 @@ packages: react: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@radix-ui/react-primitive': 0.1.4_react@17.0.2 react: 17.0.2 dev: false @@ -6908,8 +6975,8 @@ packages: unist-util-visit: 4.1.0 dev: false - /@sveltejs/adapter-node/1.0.0-next.73: - resolution: {integrity: sha512-eidd7u1dPHIaBKMjRePrxazUt+Mm/JpnaiKLzZJBdamhBiiYIb+epkPLLqfG5Oo346/0HLKwFRAM/FXn3u3BHQ==} + /@sveltejs/adapter-node/1.0.0-next.78: + resolution: {integrity: sha512-TXB5Ii0z/7o1B05p/YLsS4t+JUHFHWBzFv1U16TKvM3HMbMUJIx+AhpM2WJfDX8HtAyfd1m9OawGoUB+1ed24A==} dependencies: tiny-glob: 0.2.9 @@ -6920,11 +6987,11 @@ packages: peerDependencies: svelte: ^3.44.0 dependencies: - '@sveltejs/vite-plugin-svelte': 1.0.0-next.44_svelte@3.48.0+vite@2.9.9 + '@sveltejs/vite-plugin-svelte': 1.0.0-next.48_svelte@3.48.0+vite@2.9.10 chokidar: 3.5.3 sade: 1.8.1 svelte: 3.48.0 - vite: 2.9.9 + vite: 2.9.10 transitivePeerDependencies: - diff-match-patch - less @@ -6933,8 +7000,8 @@ packages: - supports-color dev: true - /@sveltejs/vite-plugin-svelte/1.0.0-next.44_svelte@3.48.0+vite@2.9.9: - resolution: {integrity: sha512-n+sssEWbzykPS447FmnNyU5GxEhrBPDVd0lxNZnxRGz9P6651LjjwAnISKr3CKgT9v8IybP8VD0n2i5XzbqExg==} + /@sveltejs/vite-plugin-svelte/1.0.0-next.48_svelte@3.48.0+vite@2.9.10: + resolution: {integrity: sha512-hjCEww6FKSuHVMe56vZLClUDuRqK4A/ZC5hPUIx/o2fQ7HmRydp4ztEopjMMnl/YYyEceGBKgY781I9PGEYvAw==} engines: {node: ^14.13.1 || >= 16} peerDependencies: diff-match-patch: ^1.0.5 @@ -6950,8 +7017,8 @@ packages: kleur: 4.1.4 magic-string: 0.26.2 svelte: 3.48.0 - svelte-hmr: 0.14.11_svelte@3.48.0 - vite: 2.9.9 + svelte-hmr: 0.14.12_svelte@3.48.0 + vite: 2.9.10 transitivePeerDependencies: - supports-color dev: true @@ -6975,7 +7042,7 @@ packages: '@emotion/styled': 11.8.1_ghmaxsi4osxavftb6vjohy2gwe '@radix-ui/react-navigation-menu': 0.1.2_sfoxds7t5ydpegc3knd667wn6m algoliasearch: 4.13.1 - focus-trap-react: 8.11.1_sfoxds7t5ydpegc3knd667wn6m + focus-trap-react: 8.11.2_sfoxds7t5ydpegc3knd667wn6m polished: 4.2.2 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 @@ -7001,7 +7068,7 @@ packages: /@types/accepts/1.3.5: resolution: {integrity: sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ==} dependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 /@types/acorn/4.0.6: resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} @@ -7012,14 +7079,14 @@ packages: /@types/autocannon/7.6.1: resolution: {integrity: sha512-EzfaH5pdafJKaToqR8BMA1VTgfoaRe9MZwajt/u8vna976FMTQ4FcULw1HGxEGl5mJnAFC6HHq4C2ZO0I0gPAg==} dependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 dev: true /@types/babel__core/7.1.19: resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==} dependencies: - '@babel/parser': 7.18.0 - '@babel/types': 7.18.0 + '@babel/parser': 7.18.4 + '@babel/types': 7.18.4 '@types/babel__generator': 7.6.4 '@types/babel__template': 7.4.1 '@types/babel__traverse': 7.17.1 @@ -7028,27 +7095,27 @@ packages: /@types/babel__generator/7.6.4: resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} dependencies: - '@babel/types': 7.18.0 + '@babel/types': 7.18.4 dev: true /@types/babel__template/7.4.1: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: - '@babel/parser': 7.18.0 - '@babel/types': 7.18.0 + '@babel/parser': 7.18.4 + '@babel/types': 7.18.4 dev: true /@types/babel__traverse/7.17.1: resolution: {integrity: sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==} dependencies: - '@babel/types': 7.18.0 + '@babel/types': 7.18.4 dev: true /@types/body-parser/1.19.2: resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} dependencies: '@types/connect': 3.4.35 - '@types/node': 17.0.35 + '@types/node': 17.0.41 /@types/chai/4.3.1: resolution: {integrity: sha512-/zPMqDkzSZ8t3VtxOa4KPq7uzzW978M9Tvh+j7GHKuo6k6GTLxPJ4J5gE5cjfJ26pnXst0N5Hax8Sr0T2Mi9zQ==} @@ -7061,7 +7128,7 @@ packages: /@types/connect/3.4.35: resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} dependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 /@types/content-disposition/0.5.5: resolution: {integrity: sha512-v6LCdKfK6BwcqMo+wYW05rLS12S0ZO0Fl4w1h4aaZMD7bqT3gVUns6FvLJKGZHQmYn3SX55JWGpziwJRwVgutA==} @@ -7072,7 +7139,7 @@ packages: '@types/connect': 3.4.35 '@types/express': 4.17.13 '@types/keygrip': 1.0.2 - '@types/node': 17.0.35 + '@types/node': 17.0.41 /@types/cors/2.8.12: resolution: {integrity: sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw==} @@ -7105,7 +7172,7 @@ packages: /@types/express-serve-static-core/4.17.28: resolution: {integrity: sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==} dependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 @@ -7124,24 +7191,24 @@ packages: /@types/fs-capacitor/2.0.0: resolution: {integrity: sha512-FKVPOCFbhCvZxpVAMhdBdTfVfXUpsh15wFHgqOKxh9N9vzWZVuWCSijZ5T4U34XYNnuj2oduh6xcs1i+LPI+BQ==} dependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 /@types/fs-extra/9.0.13: resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==} dependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 dev: true /@types/glob/7.2.0: resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: '@types/minimatch': 3.0.5 - '@types/node': 17.0.35 + '@types/node': 17.0.41 /@types/graceful-fs/4.1.5: resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} dependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 dev: true /@types/graphql-upload/8.0.11: @@ -7155,8 +7222,8 @@ packages: /@types/hapi__catbox/10.2.4: resolution: {integrity: sha512-A6ivRrXD5glmnJna1UAGw87QNZRp/vdFO9U4GS+WhOMWzHnw+oTGkMvg0g6y1930CbeheGOCm7A1qHsqH7AXqg==} - /@types/hapi__hapi/20.0.10: - resolution: {integrity: sha512-Nt/SY/20/JAlHhbgH616j0g18vsANR9OWoyMdQcytlW6o7TBN+wRgf0MB8AgzjYpuzQam5oTiqyED9WwHmQKYQ==} + /@types/hapi__hapi/20.0.12: + resolution: {integrity: sha512-B+0fceCzFvbIOVv5YWOZzbHtEff8BLlGH3etrkcOedyj7F0unC5FjzFfaaO5gwlhJDdX0cmmMeRg2pwRdMa2CQ==} dependencies: '@hapi/boom': 9.1.4 '@hapi/iron': 6.0.0 @@ -7164,7 +7231,7 @@ packages: '@types/hapi__catbox': 10.2.4 '@types/hapi__mimos': 4.1.4 '@types/hapi__shot': 4.1.2 - '@types/node': 17.0.35 + '@types/node': 17.0.41 joi: 17.6.0 /@types/hapi__mimos/4.1.4: @@ -7175,7 +7242,7 @@ packages: /@types/hapi__shot/4.1.2: resolution: {integrity: sha512-8wWgLVP1TeGqgzZtCdt+F+k15DWQvLG1Yv6ZzPfb3D5WIo5/S+GGKtJBVo2uNEcqabP5Ifc71QnJTDnTmw1axA==} dependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 /@types/hast/2.3.4: resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==} @@ -7223,8 +7290,8 @@ packages: '@types/istanbul-lib-report': 3.0.0 dev: true - /@types/jest/27.5.1: - resolution: {integrity: sha512-fUy7YRpT+rHXto1YlL+J9rs0uLGyiqVt3ZOTQR+4ROc47yNl8WLdVLgUloBRhOxP1PZvguHl44T3H0wAWxahYQ==} + /@types/jest/27.5.2: + resolution: {integrity: sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==} dependencies: jest-matcher-utils: 27.5.1 pretty-format: 27.5.1 @@ -7265,7 +7332,7 @@ packages: '@types/http-errors': 1.8.2 '@types/keygrip': 1.0.2 '@types/koa-compose': 3.2.5 - '@types/node': 17.0.35 + '@types/node': 17.0.41 /@types/koa__cors/3.3.0: resolution: {integrity: sha512-FUN8YxcBakIs+walVe3+HcNP+Bxd0SB8BJHBWkglZ5C1XQWljlKcEFDG/dPiCIqwVCUbc5X0nYDlH62uEhdHMA==} @@ -7332,7 +7399,7 @@ packages: /@types/mkdirp/1.0.2: resolution: {integrity: sha512-o0K1tSO0Dx5X6xlU5F1D6625FawhC3dU3iqr25lluNv/+/QIVH8RLNEiVokgIZo+mz+87w/3Mkg/VvQS+J51fQ==} dependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 dev: true /@types/mocha/9.1.1: @@ -7346,16 +7413,16 @@ packages: /@types/node-fetch/2.6.1: resolution: {integrity: sha512-oMqjURCaxoSIsHSr1E47QHzbmzNR5rK8McHuNb11BOM9cHcIK3Avy0s/b2JlXHoQGTYS3NsvWzV1M0iK7l0wbA==} dependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 form-data: 3.0.1 dev: true - /@types/node/12.20.52: - resolution: {integrity: sha512-cfkwWw72849SNYp3Zx0IcIs25vABmFh73xicxhCkTcvtZQeIez15PpwQN8fY3RD7gv1Wrxlc9MEtfMORZDEsGw==} + /@types/node/12.20.55: + resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} dev: true - /@types/node/17.0.35: - resolution: {integrity: sha512-vu1SrqBjbbZ3J6vwY17jBs8Sr/BKA+/a/WtjRG+whKg1iuLFOosq872EXS0eXWILdO36DHQQeku/ZcL6hz2fpg==} + /@types/node/17.0.41: + resolution: {integrity: sha512-xA6drNNeqb5YyV5fO3OAEsnXLfO7uF0whiOfPTz5AeDo8KeZFmODKnvwPymMNO8qE/an8pVY/O50tig2SQCrGw==} /@types/normalize-package-data/2.4.1: resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} @@ -7364,8 +7431,8 @@ packages: /@types/parse-json/4.0.0: resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} - /@types/prettier/2.6.1: - resolution: {integrity: sha512-XFjFHmaLVifrAKaZ+EKghFHtHSUonyw8P2Qmy2/+osBnrKbH9UYtlK10zg8/kCt47MFilll/DEDKy3DHfJ0URw==} + /@types/prettier/2.6.3: + resolution: {integrity: sha512-ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg==} dev: true /@types/prop-types/15.7.5: @@ -7381,8 +7448,8 @@ packages: /@types/range-parser/1.2.4: resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==} - /@types/react-dom/18.0.4: - resolution: {integrity: sha512-FgTtbqPOCI3dzZPZoC2T/sx3L34qxy99ITWn4eoSA95qPyXDMH0ALoAqUp49ITniiJFsXUVBtalh/KffMpg21Q==} + /@types/react-dom/18.0.5: + resolution: {integrity: sha512-OWPWTUrY/NIrjsAPkAk1wW9LZeIjSvkXRhclsFO8CZcZGCOg2G0YZy4ft+rOyYxy8B7ui5iZzi9OkDebZ7/QSA==} dependencies: '@types/react': 17.0.45 dev: true @@ -7398,13 +7465,13 @@ packages: resolution: {integrity: sha512-F3OznnSLAUxFrCEu/L5PY8+ny8DtcFRjx7fZZ9bycvXRi3KPTRS9HOitGZwvPg0juRhXFWIeKX58cnX5YqLohQ==} dependencies: '@types/glob': 7.2.0 - '@types/node': 17.0.35 + '@types/node': 17.0.41 dev: true /@types/sass/1.43.1: resolution: {integrity: sha512-BPdoIt1lfJ6B7rw35ncdwBZrAssjcwzI5LByIrYs+tpXlj/CAkuVdRsgZDdP4lq5EjyWzwxZCqAoFyHKFwp32g==} dependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 dev: true /@types/scheduler/0.16.2: @@ -7422,7 +7489,7 @@ packages: resolution: {integrity: sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==} dependencies: '@types/mime': 1.3.2 - '@types/node': 17.0.35 + '@types/node': 17.0.41 /@types/stack-trace/0.0.29: resolution: {integrity: sha512-TgfOX+mGY/NyNxJLIbDWrO9DjGoVSW9+aB8H2yy1fy32jsvxijhmyJI9fDFgvz3YP4lvJaq9DzdR/M1bOgVc9g==} @@ -7439,7 +7506,7 @@ packages: /@types/wait-on/5.3.1: resolution: {integrity: sha512-2FFOKCF/YydrMUaqg+fkk49qf0e5rDgwt6aQsMzFQzbS419h2gNOXyiwp/o2yYy27bi/C1z+HgfncryjGzlvgQ==} dependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 dev: true /@types/warning/3.0.0: @@ -7449,7 +7516,7 @@ packages: /@types/ws/8.5.3: resolution: {integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==} dependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 /@types/yargs-parser/21.0.0: resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} @@ -7468,10 +7535,10 @@ packages: resolution: {integrity: sha512-haGBC8noyA5BfjCRXRH+VIkHCDVW5iD5UX24P2nOdilwUxI4qWsattS/co8QBGq64XsNLRAMdM5pQUE3zxkF9Q==} dev: true - /@vercel/node/1.15.3: - resolution: {integrity: sha512-eKm7/9UThh7TIdt7Rpcw40uMkWMQMo13G0E4g7Di2po+RSDKuD2G2sUwTRv8TzrjdB53rrqnuNo4a7xvGApBxA==} + /@vercel/node/1.15.4: + resolution: {integrity: sha512-45fV7qVVw1cWCD6tWBXH0i4pSfYck4yF2qNKlJb1gmbO9JHWRqMYm0uxNWISD6E6Z69Pl1KDvfa+l48w/qEkaw==} dependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 '@vercel/node-bridge': 2.2.2 ts-node: 8.9.1_typescript@4.3.4 typescript: 4.3.4 @@ -7612,11 +7679,6 @@ packages: dependencies: type-fest: 0.21.3 - /ansi-regex/2.1.1: - resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} - engines: {node: '>=0.10.0'} - dev: false - /ansi-regex/5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} @@ -7645,10 +7707,6 @@ packages: normalize-path: 3.0.0 picomatch: 2.3.1 - /aproba/1.2.0: - resolution: {integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==} - dev: false - /arch/2.2.0: resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} dev: true @@ -7656,19 +7714,12 @@ packages: /archy/1.0.0: resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==} - /are-we-there-yet/1.1.7: - resolution: {integrity: sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==} - dependencies: - delegates: 1.0.0 - readable-stream: 2.3.7 - dev: false - /arg/4.1.3: resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} dev: true - /arg/5.0.1: - resolution: {integrity: sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==} + /arg/5.0.2: + resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} dev: false /argparse/1.0.10: @@ -7707,7 +7758,7 @@ packages: dev: true /array-flatten/1.1.1: - resolution: {integrity: sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=} + resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} /array-union/2.1.0: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} @@ -7815,8 +7866,8 @@ packages: postcss: optional: true dependencies: - browserslist: 4.20.3 - caniuse-lite: 1.0.30001341 + browserslist: 4.20.4 + caniuse-lite: 1.0.30001349 fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 @@ -7837,11 +7888,11 @@ packages: /axios/0.25.0: resolution: {integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==} dependencies: - follow-redirects: 1.15.0 + follow-redirects: 1.15.1 transitivePeerDependencies: - debug - /babel-core/7.0.0-bridge.0_@babel+core@7.18.0: + /babel-core/7.0.0-bridge.0_@babel+core@7.18.2: resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -7849,11 +7900,11 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 dev: false - /babel-jest/28.1.0_@babel+core@7.18.0: - resolution: {integrity: sha512-zNKk0yhDZ6QUwfxh9k07GII6siNGMJWVUU49gmFj5gfdqDKLqa2RArXOF2CODp4Dr7dLxN2cvAV+667dGJ4b4w==} + /babel-jest/28.1.1_@babel+core@7.18.2: + resolution: {integrity: sha512-MEt0263viUdAkTq5D7upHPNxvt4n9uLUGa6pPz3WviNBMtOmStb1lIXS3QobnoqM+qnH+vr4EKlvhe8QcmxIYw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: '@babel/core': ^7.8.0 @@ -7861,11 +7912,11 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 - '@jest/transform': 28.1.0 + '@babel/core': 7.18.2 + '@jest/transform': 28.1.1 '@types/babel__core': 7.1.19 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 28.0.2_@babel+core@7.18.0 + babel-preset-jest: 28.1.1_@babel+core@7.18.2 chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -7892,12 +7943,12 @@ packages: - supports-color dev: true - /babel-plugin-jest-hoist/28.0.2: - resolution: {integrity: sha512-Kizhn/ZL+68ZQHxSnHyuvJv8IchXD62KQxV77TBDV/xoBFBOfgRAk97GNs6hXdTTCiVES9nB2I6+7MXXrk5llQ==} + /babel-plugin-jest-hoist/28.1.1: + resolution: {integrity: sha512-NovGCy5Hn25uMJSAU8FaHqzs13cFoOI4lhIujiepssjCKRsAo3TA734RDWSGxuFTsUJXerYOqQQodlxgmtqbzw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@babel/template': 7.16.7 - '@babel/types': 7.18.0 + '@babel/types': 7.18.4 '@types/babel__core': 7.1.19 '@types/babel__traverse': 7.17.1 dev: true @@ -7905,7 +7956,7 @@ packages: /babel-plugin-macros/2.8.0: resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 cosmiconfig: 6.0.0 resolve: 1.22.0 dev: false @@ -7914,7 +7965,7 @@ packages: resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==} dev: false - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.18.0: + /babel-preset-current-node-syntax/1.0.1_@babel+core@7.18.2: resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 @@ -7922,22 +7973,22 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.0 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.18.0 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.0 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.0 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.0 + '@babel/core': 7.18.2 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.2 + '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.2 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.2 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.2 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.2 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.2 dev: true - /babel-preset-fbjs/3.4.0_@babel+core@7.18.0: + /babel-preset-fbjs/3.4.0_@babel+core@7.18.2: resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} peerDependencies: '@babel/core': ^7.0.0 @@ -7945,40 +7996,40 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 - '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.0 - '@babel/plugin-proposal-object-rest-spread': 7.18.0_@babel+core@7.18.0 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.0 - '@babel/plugin-syntax-flow': 7.17.12_@babel+core@7.18.0 - '@babel/plugin-syntax-jsx': 7.17.12_@babel+core@7.18.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.0 - '@babel/plugin-transform-arrow-functions': 7.17.12_@babel+core@7.18.0 - '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.18.0 - '@babel/plugin-transform-block-scoping': 7.17.12_@babel+core@7.18.0 - '@babel/plugin-transform-classes': 7.17.12_@babel+core@7.18.0 - '@babel/plugin-transform-computed-properties': 7.17.12_@babel+core@7.18.0 - '@babel/plugin-transform-destructuring': 7.18.0_@babel+core@7.18.0 - '@babel/plugin-transform-flow-strip-types': 7.17.12_@babel+core@7.18.0 - '@babel/plugin-transform-for-of': 7.17.12_@babel+core@7.18.0 - '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.18.0 - '@babel/plugin-transform-literals': 7.17.12_@babel+core@7.18.0 - '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.18.0 - '@babel/plugin-transform-modules-commonjs': 7.18.0_@babel+core@7.18.0 - '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.18.0 - '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.0 - '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.18.0 - '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.18.0 - '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.0 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.0 - '@babel/plugin-transform-spread': 7.17.12_@babel+core@7.18.0 - '@babel/plugin-transform-template-literals': 7.17.12_@babel+core@7.18.0 + '@babel/core': 7.18.2 + '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-proposal-object-rest-spread': 7.18.0_@babel+core@7.18.2 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.2 + '@babel/plugin-syntax-flow': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-syntax-jsx': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.2 + '@babel/plugin-transform-arrow-functions': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.18.2 + '@babel/plugin-transform-block-scoping': 7.18.4_@babel+core@7.18.2 + '@babel/plugin-transform-classes': 7.18.4_@babel+core@7.18.2 + '@babel/plugin-transform-computed-properties': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-transform-destructuring': 7.18.0_@babel+core@7.18.2 + '@babel/plugin-transform-flow-strip-types': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-transform-for-of': 7.18.1_@babel+core@7.18.2 + '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.18.2 + '@babel/plugin-transform-literals': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.18.2 + '@babel/plugin-transform-modules-commonjs': 7.18.2_@babel+core@7.18.2 + '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.18.2 + '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.18.2 + '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.18.2 + '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.2 + '@babel/plugin-transform-spread': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-transform-template-literals': 7.18.2_@babel+core@7.18.2 babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 transitivePeerDependencies: - supports-color dev: false - /babel-preset-jest/28.0.2_@babel+core@7.18.0: - resolution: {integrity: sha512-sYzXIdgIXXroJTFeB3S6sNDWtlJ2dllCdTEsnZ65ACrMojj3hVNFRmnJ1HZtomGi+Be7aqpY/HJ92fr8OhKVkQ==} + /babel-preset-jest/28.1.1_@babel+core@7.18.2: + resolution: {integrity: sha512-FCq9Oud0ReTeWtcneYf/48981aTfXYuB9gbU4rBNNJVBSQ6ssv7E6v/qvbBxtOWwZFXjLZwpg+W3q7J6vhH25g==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: '@babel/core': ^7.0.0 @@ -7986,9 +8037,9 @@ packages: '@babel/core': optional: true dependencies: - '@babel/core': 7.18.0 - babel-plugin-jest-hoist: 28.0.2 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.0 + '@babel/core': 7.18.2 + babel-plugin-jest-hoist: 28.1.1 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.2 dev: true /backo2/1.0.2: @@ -8051,7 +8102,7 @@ packages: bob-esbuild: optional: true dependencies: - commander: 9.2.0 + commander: 9.3.0 dev: true /bob-esbuild-cli/4.0.0_bob-esbuild@4.0.0: @@ -8064,11 +8115,11 @@ packages: bob-esbuild: optional: true dependencies: - bob-esbuild: 4.0.0_is6sdst7a3gdtxmvsittbmruma - commander: 9.2.0 + bob-esbuild: 4.0.0_rfzdi44t3f7d4pftnjts7dki7e + commander: 9.3.0 dev: true - /bob-esbuild-plugin/4.0.0_3pm4nepjd6vnmqn35npt5y2clm: + /bob-esbuild-plugin/4.0.0_2uefy6dldbldonrghlgjus4ieu: resolution: {integrity: sha512-Ymk0kEPc0JhL3eZQVnWpjT4/HMX8Hw7aD5CzqSvNAXeUgaR1+8m5O1RtkP/D42ZwNv+FPgD1wKM4pdoQ4ScmAQ==} peerDependencies: esbuild: '>=0.14.39' @@ -8080,11 +8131,11 @@ packages: optional: true dependencies: '@rollup/pluginutils': 4.2.1 - esbuild: 0.14.39 - rollup: 2.74.1 + esbuild: 0.14.43 + rollup: 2.75.6 dev: true - /bob-esbuild/4.0.0_is6sdst7a3gdtxmvsittbmruma: + /bob-esbuild/4.0.0_rfzdi44t3f7d4pftnjts7dki7e: resolution: {integrity: sha512-h+WYaLGyZ0I1C0zUOZ4JZMZliZ4aN7guV5qS0cXH53J9ocqm4ROEfWVDCxotXxRSJ8aiVZd3bVs3KJpyLZFHOw==} peerDependencies: esbuild: '>=0.14.39' @@ -8096,13 +8147,13 @@ packages: optional: true dependencies: '@pnpm/types': 8.0.1 - bob-esbuild-plugin: 4.0.0_3pm4nepjd6vnmqn35npt5y2clm - esbuild: 0.14.39 - rollup: 2.74.1 - typescript: 4.6.4 + bob-esbuild-plugin: 4.0.0_2uefy6dldbldonrghlgjus4ieu + esbuild: 0.14.43 + rollup: 2.75.6 + typescript: 4.7.3 dev: true - /bob-ts/4.0.0_3sofxs7rfdpelyq2nsm2i5udgy: + /bob-ts/4.0.0_vtnezxpv6rlphxoe5pxcnntjua: resolution: {integrity: sha512-+8wb4kt7Y0yY5FyrPVn/oviGes859eglOx6Tm1usYponuzdBpih3D90IW06nQbMp7AWzQfOsV/82SrguJBeUxQ==} engines: {node: '>=14.13.1'} hasBin: true @@ -8116,14 +8167,14 @@ packages: typescript: optional: true dependencies: - '@types/node': 17.0.35 - bob-esbuild-plugin: 4.0.0_3pm4nepjd6vnmqn35npt5y2clm - esbuild: 0.14.39 - rollup: 2.74.1 - typescript: 4.6.4 + '@types/node': 17.0.41 + bob-esbuild-plugin: 4.0.0_2uefy6dldbldonrghlgjus4ieu + esbuild: 0.14.43 + rollup: 2.75.6 + typescript: 4.7.3 dev: true - /bob-tsm/1.0.0_is6sdst7a3gdtxmvsittbmruma: + /bob-tsm/1.0.0_rfzdi44t3f7d4pftnjts7dki7e: resolution: {integrity: sha512-pyCeEpgm7+2VcklvUsTfdNOMtfOpuJwh0W/f7T2iNJqNxFfyyqOhAtQK4lxZC77lx5NigpbshLBHlf6fQ33NjQ==} engines: {node: '>=14.13.1'} hasBin: true @@ -8134,8 +8185,8 @@ packages: typescript: optional: true dependencies: - esbuild: 0.14.39 - typescript: 4.6.4 + esbuild: 0.14.43 + typescript: 4.7.3 optionalDependencies: fsevents: 2.3.2 dev: true @@ -8203,7 +8254,7 @@ packages: /broadcast-channel/3.7.0: resolution: {integrity: sha512-cIAKJXAxGJceNZGTZSBzMxzyOn72cVgPnKx4dc6LRjQgbaJUQqhy5rzL3zbMxkMWsGKkv2hSFkPRMEXfoMZ2Mg==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 detect-node: 2.1.0 js-sha3: 0.8.0 microseconds: 0.2.0 @@ -8216,15 +8267,15 @@ packages: /browser-stdout/1.3.1: resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==} - /browserslist/4.20.3: - resolution: {integrity: sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg==} + /browserslist/4.20.4: + resolution: {integrity: sha512-ok1d+1WpnU24XYN7oC3QWgTyMhY/avPJ/r9T00xxvUOIparA/gc+UPUMaod3i+G6s+nI2nUb9xZ5k794uIwShw==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001341 - electron-to-chromium: 1.4.137 + caniuse-lite: 1.0.30001349 + electron-to-chromium: 1.4.148 escalade: 3.1.1 - node-releases: 2.0.4 + node-releases: 2.0.5 picocolors: 1.0.0 /bs-logger/0.2.6: @@ -8359,8 +8410,8 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - /caniuse-lite/1.0.30001341: - resolution: {integrity: sha512-2SodVrFFtvGENGCv0ChVJIDQ0KPaS1cg7/qtfMaICgeMolDdo/Z2OD32F0Aq9yl6F4YFwGPBS5AaPqNYiW4PoA==} + /caniuse-lite/1.0.30001349: + resolution: {integrity: sha512-VFaWW3jeo6DLU5rwdiasosxhYSduJgSGil4cSyX3/85fbctlE58pXAkWyuRmVA0r2RxsOSVYUTZcySJ8WpbTxw==} /capital-case/1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} @@ -8526,7 +8577,7 @@ packages: /class-validator/0.13.2: resolution: {integrity: sha512-yBUcQy07FPlGzUjoLuUfIOXzgynnQPPruyK1Ge2B74k9ROwnle1E+NxLWnUv5OLU8hA/qL5leAE9XnXq3byaBw==} dependencies: - libphonenumber-js: 1.10.4 + libphonenumber-js: 1.10.6 validator: 13.7.0 dev: false @@ -8622,41 +8673,36 @@ packages: dev: false /clone/1.0.4: - resolution: {integrity: sha1-2jCcwmPfFZlMaIypAheco8fNfH4=} + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} engines: {node: '>=0.8'} /co-body/6.1.0: resolution: {integrity: sha512-m7pOT6CdLN7FuXUcpuz/8lfQ/L77x8SchHCF4G0RBTJO20Wzmhn5Sp4/5WsKy8OSpifBSUrmg83qEqaDHdyFuQ==} dependencies: inflation: 2.0.0 - qs: 6.10.3 + qs: 6.10.5 raw-body: 2.5.1 type-is: 1.6.18 dev: false /co/4.6.0: - resolution: {integrity: sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=} + resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} - /code-point-at/1.1.0: - resolution: {integrity: sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=} - engines: {node: '>=0.10.0'} - dev: false - - /codemirror-graphql/1.3.0_tbbogp5tmrsgntfegmhlkgvfle: + /codemirror-graphql/1.3.0_ezogifrc2g2p76jnu4j3a75iqq: resolution: {integrity: sha512-Inqecp/PpUsNFz6+V6jpgQD1m7jjGg3yby60baw2t5yb2stBH8Z/6cHm/IYp9eN0Aq2EWqomd0GkGmiISPi4jQ==} peerDependencies: '@codemirror/language': ^0.20.0 codemirror: ^5.65.3 graphql: '*' dependencies: - codemirror: 5.65.3 + codemirror: 5.65.5 graphql: 16.1.0-experimental-stream-defer.6 graphql-language-service: 5.0.4_ptiko6tsqj7cmirxhjfetabnhu dev: true - /codemirror/5.65.3: - resolution: {integrity: sha512-kCC0iwGZOVZXHEKW3NDTObvM7pTIyowjty4BUqeREROc/3I6bWbgZDA3fGDwlA+rbgRjvnRnfqs9SfXynel1AQ==} + /codemirror/5.65.5: + resolution: {integrity: sha512-HNyhvGLnYz5c+kIsB9QKVitiZUevha3ovbIYaQiGzKo7ECSL/elWD9RXt3JgNr0NdnyqE9/Rc/7uLfkJQL638w==} dev: true /collect-v8-coverage/1.0.1: @@ -8664,7 +8710,7 @@ packages: dev: true /collection-visit/1.0.0: - resolution: {integrity: sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=} + resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} engines: {node: '>=0.10.0'} dependencies: map-visit: 1.0.0 @@ -8683,7 +8729,7 @@ packages: color-name: 1.1.4 /color-name/1.1.3: - resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=} + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} /color-name/1.1.4: resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} @@ -8716,7 +8762,7 @@ packages: dev: false /colors/1.0.3: - resolution: {integrity: sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=} + resolution: {integrity: sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==} engines: {node: '>=0.1.90'} dev: false @@ -8754,8 +8800,8 @@ packages: engines: {node: '>= 12'} dev: false - /commander/9.2.0: - resolution: {integrity: sha512-e2i4wANQiSXgnrBlIatyHtP1odfUp0BbV5Y5nEGbxtIrStkEOAAzCUirvLBNXHLr7kwLvJl6V+4V3XV9x7Wd9w==} + /commander/9.3.0: + resolution: {integrity: sha512-hv95iU5uXPbK83mjrJKuZyFM/LBAoCV/XhVGkS5Je6tl7sxr6A0ITMw5WoRV46/UaJ46Nllm3Xt7IaJhXTIkzw==} engines: {node: ^12.20.0 || >=14} dev: true @@ -8765,7 +8811,7 @@ packages: dev: false /commondir/1.0.1: - resolution: {integrity: sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=} + resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} dev: false /component-emitter/1.3.0: @@ -8779,8 +8825,8 @@ packages: /concat-map/0.0.1: resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} - /concurrently/7.2.0: - resolution: {integrity: sha512-4KIVY5HopDRhN3ndAgfFOLsMk1PZUPgghlgTMZ5Pb5aTrqYg86RcZaIZC2Cz+qpZ9DsX36WHGjvWnXPqdnblhw==} + /concurrently/7.2.1: + resolution: {integrity: sha512-7cab/QyqipqghrVr9qZmoWbidu0nHsmxrpNqQ7r/67vfl1DWJElexehQnTH1p+87tDkihaAjM79xTZyBQh7HLw==} engines: {node: ^12.20.0 || ^14.13.0 || >=16.0.0} hasBin: true dependencies: @@ -8794,10 +8840,6 @@ packages: tree-kill: 1.2.2 yargs: 17.5.1 - /console-control-strings/1.1.0: - resolution: {integrity: sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=} - dev: false - /constant-case/3.0.4: resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==} dependencies: @@ -8827,6 +8869,7 @@ packages: /cookie/0.4.2: resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} engines: {node: '>= 0.6'} + dev: true /cookie/0.5.0: resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} @@ -8840,7 +8883,7 @@ packages: keygrip: 1.1.0 /copy-descriptor/0.1.1: - resolution: {integrity: sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=} + resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} engines: {node: '>=0.10.0'} dev: false @@ -8850,18 +8893,14 @@ packages: toggle-selection: 1.0.6 /copy-to/2.0.1: - resolution: {integrity: sha1-JoD7uAaKSNCGVrYJgJK9r8kG9KU=} + resolution: {integrity: sha512-3DdaFaU/Zf1AnpLiFDeNCD4TOWe3Zl2RZaTzUvWiIk5ERzcCodOE20Vqq4fzCbNoHURFHT4/us/Lfq+S2zyY4w==} dev: false - /core-js/3.22.5: - resolution: {integrity: sha512-VP/xYuvJ0MJWRAobcmQ8F2H6Bsn+s7zqAAjFaHGBMc5AQm7zaelhD1LGduFn2EehEcQcU+br6t+fwbpQ5d1ZWA==} + /core-js/3.22.8: + resolution: {integrity: sha512-UoGQ/cfzGYIuiq6Z7vWL1HfkE9U9IZ4Ub+0XSiJTCzvbZzgPA69oDF2f+lgJ6dFFLEdjW5O6svvoKzXX23xFkA==} requiresBuild: true dev: false - /core-util-is/1.0.3: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} - dev: false - /cors/2.8.5: resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==} engines: {node: '>= 0.10'} @@ -8949,7 +8988,7 @@ packages: dev: false /cross-spawn/5.1.0: - resolution: {integrity: sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=} + resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} dependencies: lru-cache: 4.1.5 shebang-command: 1.2.0 @@ -8964,22 +9003,22 @@ packages: shebang-command: 2.0.0 which: 2.0.2 - /cross-undici-fetch/0.4.3: - resolution: {integrity: sha512-mv1jusEQsFnBHEBkpFaYROKAzAWyuW8ZyN48NcyqkjLGRrscMKuFRmUigUrkE/pdprQZjNTQQ/aWJKe6F4tzTA==} + /cross-undici-fetch/0.4.5: + resolution: {integrity: sha512-3u5LFSPiD5frvhBmU2bH7kv7pa8/WSh3gfwyLsx84oP5mSGttd8eNXU7UofketwKCnCb2gjhCGnVpoUCb1RxDQ==} dependencies: abort-controller: 3.0.0 busboy: 1.6.0 form-data-encoder: 1.7.2 formdata-node: 4.3.2 node-fetch: 2.6.7 - undici: 5.2.0 + undici: 5.4.0 web-streams-polyfill: 3.2.1 transitivePeerDependencies: - encoding dev: true /crypt/0.0.2: - resolution: {integrity: sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=} + resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==} dev: false /crypto-random-string/2.0.0: @@ -8994,7 +9033,7 @@ packages: dev: false /css-color-names/0.0.4: - resolution: {integrity: sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=} + resolution: {integrity: sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q==} dev: false /css-in-js-utils/2.0.1: @@ -9325,7 +9364,7 @@ packages: supports-color: 8.1.1 /decamelize-keys/1.1.0: - resolution: {integrity: sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=} + resolution: {integrity: sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==} engines: {node: '>=0.10.0'} dependencies: decamelize: 1.2.0 @@ -9333,7 +9372,7 @@ packages: dev: true /decamelize/1.2.0: - resolution: {integrity: sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=} + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} engines: {node: '>=0.10.0'} /decamelize/4.0.0: @@ -9345,14 +9384,14 @@ packages: engines: {node: '>=10'} dev: true - /decode-named-character-reference/1.0.1: - resolution: {integrity: sha512-YV/0HQHreRwKb7uBopyIkLG17jG6Sv2qUchk9qSoVJ2f+flwRsPNBO0hAnjt6mTNYUT+vw9Gy2ihXg4sUWPi2w==} + /decode-named-character-reference/1.0.2: + resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} dependencies: character-entities: 2.0.1 dev: false /decode-uri-component/0.2.0: - resolution: {integrity: sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=} + resolution: {integrity: sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==} engines: {node: '>=0.10'} dev: false @@ -9364,7 +9403,7 @@ packages: dev: false /dedent/0.7.0: - resolution: {integrity: sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=} + resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} dev: true /deep-eql/3.0.1: @@ -9375,7 +9414,7 @@ packages: dev: false /deep-equal/1.0.1: - resolution: {integrity: sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=} + resolution: {integrity: sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==} /deep-extend/0.6.0: resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} @@ -9387,7 +9426,7 @@ packages: engines: {node: '>=0.10.0'} /defaults/1.0.3: - resolution: {integrity: sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=} + resolution: {integrity: sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==} dependencies: clone: 1.0.4 @@ -9405,14 +9444,14 @@ packages: dev: false /define-property/0.2.5: - resolution: {integrity: sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=} + resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} engines: {node: '>=0.10.0'} dependencies: is-descriptor: 0.1.6 dev: false /define-property/1.0.0: - resolution: {integrity: sha1-dp66rz9KY6rTr56NMEybvnm/sOY=} + resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} engines: {node: '>=0.10.0'} dependencies: is-descriptor: 1.0.2 @@ -9427,11 +9466,11 @@ packages: dev: false /defined/1.0.0: - resolution: {integrity: sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=} + resolution: {integrity: sha512-Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ==} dev: false - /del/6.1.0: - resolution: {integrity: sha512-OpcRktOt7G7HBfyxP0srBH4Djg4824EQORX8E1qvIhIzthNNArxxhrB/Mm7dRMiLi1nvFyUpDhzD2cTtbBhV8A==} + /del/6.1.1: + resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==} engines: {node: '>=10'} dependencies: globby: 11.1.0 @@ -9445,14 +9484,14 @@ packages: dev: true /delayed-stream/1.0.0: - resolution: {integrity: sha1-3zrhmayt+31ECqrgsp4icrJOxhk=} + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} engines: {node: '>=0.4.0'} /delegates/1.0.0: - resolution: {integrity: sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=} + resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} /depd/1.1.2: - resolution: {integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=} + resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} engines: {node: '>= 0.6'} /depd/2.0.0: @@ -9470,7 +9509,7 @@ packages: dev: false /destroy/1.0.4: - resolution: {integrity: sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=} + resolution: {integrity: sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==} dev: false /destroy/1.2.0: @@ -9500,8 +9539,8 @@ packages: resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} dev: false - /detective/5.2.0: - resolution: {integrity: sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==} + /detective/5.2.1: + resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==} engines: {node: '>=0.8.0'} hasBin: true dependencies: @@ -9525,8 +9564,8 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dev: true - /diff-sequences/28.0.2: - resolution: {integrity: sha512-YtEoNynLDFCRznv/XDalsKGSZDoj0U5kLnXvY0JSq3nBboRrZXjD81+eSiwi+nzcZDwedMmcowcxNwwgFW23mQ==} + /diff-sequences/28.1.1: + resolution: {integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dev: true @@ -9539,6 +9578,11 @@ packages: resolution: {integrity: sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==} engines: {node: '>=0.3.1'} + /diff/5.1.0: + resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==} + engines: {node: '>=0.3.1'} + dev: false + /dir-glob/3.0.1: resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} engines: {node: '>=8'} @@ -9582,8 +9626,8 @@ packages: /ee-first/1.1.1: resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=} - /electron-to-chromium/1.4.137: - resolution: {integrity: sha512-0Rcpald12O11BUogJagX3HsCN3FE83DSqWjgXoHo5a72KUKMSfI39XBgJpgNNxS9fuGzytaFjE06kZkiVFy2qA==} + /electron-to-chromium/1.4.148: + resolution: {integrity: sha512-8MJk1bcQUAYkuvCyWZxaldiwoDG0E0AMzBGA6cv3WfuvJySiPgfidEPBFCRRH3cZm6SVZwo/oRlK1ehi1QNEIQ==} /emittery/0.10.2: resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==} @@ -9598,7 +9642,7 @@ packages: dev: false /encodeurl/1.0.2: - resolution: {integrity: sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=} + resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} engines: {node: '>= 0.8'} /encoding-negotiator/2.0.1: @@ -9631,18 +9675,18 @@ packages: dependencies: is-arrayish: 0.2.1 - /error-stack-parser/2.0.7: - resolution: {integrity: sha512-chLOW0ZGRf4s8raLrDxa5sdkvPec5YdvwbFnqJme4rk0rFajP8mPtrDL1+I+CwrQDCjswDA5sREX7jYQDQs9vA==} + /error-stack-parser/2.1.4: + resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} dependencies: - stackframe: 1.2.1 + stackframe: 1.3.4 dev: false /es6-promise/3.3.1: - resolution: {integrity: sha1-oIzd6EzNvzTQJ6FFG8kdS80ophM=} + resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==} dev: true - /esbuild-android-64/0.14.39: - resolution: {integrity: sha512-EJOu04p9WgZk0UoKTqLId9VnIsotmI/Z98EXrKURGb3LPNunkeffqQIkjS2cAvidh+OK5uVrXaIP229zK6GvhQ==} + /esbuild-android-64/0.14.43: + resolution: {integrity: sha512-kqFXAS72K6cNrB6RiM7YJ5lNvmWRDSlpi7ZuRZ1hu1S3w0zlwcoCxWAyM23LQUyZSs1PbjHgdbbfYAN8IGh6xg==} engines: {node: '>=12'} cpu: [x64] os: [android] @@ -9650,8 +9694,8 @@ packages: dev: true optional: true - /esbuild-android-arm64/0.14.39: - resolution: {integrity: sha512-+twajJqO7n3MrCz9e+2lVOnFplRsaGRwsq1KL/uOy7xK7QdRSprRQcObGDeDZUZsacD5gUkk6OiHiYp6RzU3CA==} + /esbuild-android-arm64/0.14.43: + resolution: {integrity: sha512-bKS2BBFh+7XZY9rpjiHGRNA7LvWYbZWP87pLehggTG7tTaCDvj8qQGOU/OZSjCSKDYbgY7Q+oDw8RlYQ2Jt2BA==} engines: {node: '>=12'} cpu: [arm64] os: [android] @@ -9659,8 +9703,8 @@ packages: dev: true optional: true - /esbuild-darwin-64/0.14.39: - resolution: {integrity: sha512-ImT6eUw3kcGcHoUxEcdBpi6LfTRWaV6+qf32iYYAfwOeV+XaQ/Xp5XQIBiijLeo+LpGci9M0FVec09nUw41a5g==} + /esbuild-darwin-64/0.14.43: + resolution: {integrity: sha512-/3PSilx011ttoieRGkSZ0XV8zjBf2C9enV4ScMMbCT4dpx0mFhMOpFnCHkOK0pWGB8LklykFyHrWk2z6DENVUg==} engines: {node: '>=12'} cpu: [x64] os: [darwin] @@ -9668,8 +9712,8 @@ packages: dev: true optional: true - /esbuild-darwin-arm64/0.14.39: - resolution: {integrity: sha512-/fcQ5UhE05OiT+bW5v7/up1bDsnvaRZPJxXwzXsMRrr7rZqPa85vayrD723oWMT64dhrgWeA3FIneF8yER0XTw==} + /esbuild-darwin-arm64/0.14.43: + resolution: {integrity: sha512-1HyFUKs8DMCBOvw1Qxpr5Vv/ThNcVIFb5xgXWK3pyT40WPvgYIiRTwJCvNs4l8i5qWF8/CK5bQxJVDjQvtv0Yw==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] @@ -9677,8 +9721,8 @@ packages: dev: true optional: true - /esbuild-freebsd-64/0.14.39: - resolution: {integrity: sha512-oMNH8lJI4wtgN5oxuFP7BQ22vgB/e3Tl5Woehcd6i2r6F3TszpCnNl8wo2d/KvyQ4zvLvCWAlRciumhQg88+kQ==} + /esbuild-freebsd-64/0.14.43: + resolution: {integrity: sha512-FNWc05TPHYgaXjbPZO5/rJKSBslfG6BeMSs8GhwnqAKP56eEhvmzwnIz1QcC9cRVyO+IKqWNfmHFkCa1WJTULA==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] @@ -9686,8 +9730,8 @@ packages: dev: true optional: true - /esbuild-freebsd-arm64/0.14.39: - resolution: {integrity: sha512-1GHK7kwk57ukY2yI4ILWKJXaxfr+8HcM/r/JKCGCPziIVlL+Wi7RbJ2OzMcTKZ1HpvEqCTBT/J6cO4ZEwW4Ypg==} + /esbuild-freebsd-arm64/0.14.43: + resolution: {integrity: sha512-amrYopclz3VohqisOPR6hA3GOWA3LZC1WDLnp21RhNmoERmJ/vLnOpnrG2P/Zao+/erKTCUqmrCIPVtj58DRoA==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] @@ -9695,8 +9739,8 @@ packages: dev: true optional: true - /esbuild-linux-32/0.14.39: - resolution: {integrity: sha512-g97Sbb6g4zfRLIxHgW2pc393DjnkTRMeq3N1rmjDUABxpx8SjocK4jLen+/mq55G46eE2TA0MkJ4R3SpKMu7dg==} + /esbuild-linux-32/0.14.43: + resolution: {integrity: sha512-KoxoEra+9O3AKVvgDFvDkiuddCds6q71owSQEYwjtqRV7RwbPzKxJa6+uyzUulHcyGVq0g15K0oKG5CFBcvYDw==} engines: {node: '>=12'} cpu: [ia32] os: [linux] @@ -9704,8 +9748,8 @@ packages: dev: true optional: true - /esbuild-linux-64/0.14.39: - resolution: {integrity: sha512-4tcgFDYWdI+UbNMGlua9u1Zhu0N5R6u9tl5WOM8aVnNX143JZoBZLpCuUr5lCKhnD0SCO+5gUyMfupGrHtfggQ==} + /esbuild-linux-64/0.14.43: + resolution: {integrity: sha512-EwINwGMyiJMgBby5/SbMqKcUhS5AYAZ2CpEBzSowsJPNBJEdhkCTtEjk757TN/wxgbu3QklqDM6KghY660QCUw==} engines: {node: '>=12'} cpu: [x64] os: [linux] @@ -9713,8 +9757,8 @@ packages: dev: true optional: true - /esbuild-linux-arm/0.14.39: - resolution: {integrity: sha512-t0Hn1kWVx5UpCzAJkKRfHeYOLyFnXwYynIkK54/h3tbMweGI7dj400D1k0Vvtj2u1P+JTRT9tx3AjtLEMmfVBQ==} + /esbuild-linux-arm/0.14.43: + resolution: {integrity: sha512-e6YzQUoDxxtyamuF12eVzzRC7bbEFSZohJ6igQB9tBqnNmIQY3fI6Cns3z2wxtbZ3f2o6idkD2fQnlvs2902Dg==} engines: {node: '>=12'} cpu: [arm] os: [linux] @@ -9722,8 +9766,8 @@ packages: dev: true optional: true - /esbuild-linux-arm64/0.14.39: - resolution: {integrity: sha512-23pc8MlD2D6Px1mV8GMglZlKgwgNKAO8gsgsLLcXWSs9lQsCYkIlMo/2Ycfo5JrDIbLdwgP8D2vpfH2KcBqrDQ==} + /esbuild-linux-arm64/0.14.43: + resolution: {integrity: sha512-UlSpjMWllAc70zYbHxWuDS3FJytyuR/gHJYBr8BICcTNb/TSOYVBg6U7b3jZ3mILTrgzwJUHwhEwK18FZDouUQ==} engines: {node: '>=12'} cpu: [arm64] os: [linux] @@ -9731,8 +9775,8 @@ packages: dev: true optional: true - /esbuild-linux-mips64le/0.14.39: - resolution: {integrity: sha512-epwlYgVdbmkuRr5n4es3B+yDI0I2e/nxhKejT9H0OLxFAlMkeQZxSpxATpDc9m8NqRci6Kwyb/SfmD1koG2Zuw==} + /esbuild-linux-mips64le/0.14.43: + resolution: {integrity: sha512-f+v8cInPEL1/SDP//CfSYzcDNgE4CY3xgDV81DWm3KAPWzhvxARrKxB1Pstf5mB56yAslJDxu7ryBUPX207EZA==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] @@ -9740,8 +9784,8 @@ packages: dev: true optional: true - /esbuild-linux-ppc64le/0.14.39: - resolution: {integrity: sha512-W/5ezaq+rQiQBThIjLMNjsuhPHg+ApVAdTz2LvcuesZFMsJoQAW2hutoyg47XxpWi7aEjJGrkS26qCJKhRn3QQ==} + /esbuild-linux-ppc64le/0.14.43: + resolution: {integrity: sha512-5wZYMDGAL/K2pqkdIsW+I4IR41kyfHr/QshJcNpUfK3RjB3VQcPWOaZmc+74rm4ZjVirYrtz+jWw0SgxtxRanA==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] @@ -9749,8 +9793,8 @@ packages: dev: true optional: true - /esbuild-linux-riscv64/0.14.39: - resolution: {integrity: sha512-IS48xeokcCTKeQIOke2O0t9t14HPvwnZcy+5baG13Z1wxs9ZrC5ig5ypEQQh4QMKxURD5TpCLHw2W42CLuVZaA==} + /esbuild-linux-riscv64/0.14.43: + resolution: {integrity: sha512-lYcAOUxp85hC7lSjycJUVSmj4/9oEfSyXjb/ua9bNl8afonaduuqtw7hvKMoKuYnVwOCDw4RSfKpcnIRDWq+Bw==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] @@ -9758,8 +9802,8 @@ packages: dev: true optional: true - /esbuild-linux-s390x/0.14.39: - resolution: {integrity: sha512-zEfunpqR8sMomqXhNTFEKDs+ik7HC01m3M60MsEjZOqaywHu5e5682fMsqOlZbesEAAaO9aAtRBsU7CHnSZWyA==} + /esbuild-linux-s390x/0.14.43: + resolution: {integrity: sha512-27e43ZhHvhFE4nM7HqtUbMRu37I/4eNSUbb8FGZWszV+uLzMIsHDwLoBiJmw7G9N+hrehNPeQ4F5Ujad0DrUKQ==} engines: {node: '>=12'} cpu: [s390x] os: [linux] @@ -9767,8 +9811,8 @@ packages: dev: true optional: true - /esbuild-netbsd-64/0.14.39: - resolution: {integrity: sha512-Uo2suJBSIlrZCe4E0k75VDIFJWfZy+bOV6ih3T4MVMRJh1lHJ2UyGoaX4bOxomYN3t+IakHPyEoln1+qJ1qYaA==} + /esbuild-netbsd-64/0.14.43: + resolution: {integrity: sha512-2mH4QF6hHBn5zzAfxEI/2eBC0mspVsZ6UVo821LpAJKMvLJPBk3XJO5xwg7paDqSqpl7p6IRrAenW999AEfJhQ==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] @@ -9776,8 +9820,8 @@ packages: dev: true optional: true - /esbuild-openbsd-64/0.14.39: - resolution: {integrity: sha512-secQU+EpgUPpYjJe3OecoeGKVvRMLeKUxSMGHnK+aK5uQM3n1FPXNJzyz1LHFOo0WOyw+uoCxBYdM4O10oaCAA==} + /esbuild-openbsd-64/0.14.43: + resolution: {integrity: sha512-ZhQpiZjvqCqO8jKdGp9+8k9E/EHSA+zIWOg+grwZasI9RoblqJ1QiZqqi7jfd6ZrrG1UFBNGe4m0NFxCFbMVbg==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] @@ -9785,8 +9829,8 @@ packages: dev: true optional: true - /esbuild-sunos-64/0.14.39: - resolution: {integrity: sha512-qHq0t5gePEDm2nqZLb+35p/qkaXVS7oIe32R0ECh2HOdiXXkj/1uQI9IRogGqKkK+QjDG+DhwiUw7QoHur/Rwg==} + /esbuild-sunos-64/0.14.43: + resolution: {integrity: sha512-DgxSi9DaHReL9gYuul2rrQCAapgnCJkh3LSHPKsY26zytYppG0HgkgVF80zjIlvEsUbGBP/GHQzBtrezj/Zq1Q==} engines: {node: '>=12'} cpu: [x64] os: [sunos] @@ -9794,8 +9838,8 @@ packages: dev: true optional: true - /esbuild-windows-32/0.14.39: - resolution: {integrity: sha512-XPjwp2OgtEX0JnOlTgT6E5txbRp6Uw54Isorm3CwOtloJazeIWXuiwK0ONJBVb/CGbiCpS7iP2UahGgd2p1x+Q==} + /esbuild-windows-32/0.14.43: + resolution: {integrity: sha512-Ih3+2O5oExiqm0mY6YYE5dR0o8+AspccQ3vIAtRodwFvhuyGLjb0Hbmzun/F3Lw19nuhPMu3sW2fqIJ5xBxByw==} engines: {node: '>=12'} cpu: [ia32] os: [win32] @@ -9803,8 +9847,8 @@ packages: dev: true optional: true - /esbuild-windows-64/0.14.39: - resolution: {integrity: sha512-E2wm+5FwCcLpKsBHRw28bSYQw0Ikxb7zIMxw3OPAkiaQhLVr3dnVO8DofmbWhhf6b97bWzg37iSZ45ZDpLw7Ow==} + /esbuild-windows-64/0.14.43: + resolution: {integrity: sha512-8NsuNfI8xwFuJbrCuI+aBqNTYkrWErejFO5aYM+yHqyHuL8mmepLS9EPzAzk8rvfaJrhN0+RvKWAcymViHOKEw==} engines: {node: '>=12'} cpu: [x64] os: [win32] @@ -9812,8 +9856,8 @@ packages: dev: true optional: true - /esbuild-windows-arm64/0.14.39: - resolution: {integrity: sha512-sBZQz5D+Gd0EQ09tZRnz/PpVdLwvp/ufMtJ1iDFYddDaPpZXKqPyaxfYBLs3ueiaksQ26GGa7sci0OqFzNs7KA==} + /esbuild-windows-arm64/0.14.43: + resolution: {integrity: sha512-7ZlD7bo++kVRblJEoG+cepljkfP8bfuTPz5fIXzptwnPaFwGS6ahvfoYzY7WCf5v/1nX2X02HDraVItTgbHnKw==} engines: {node: '>=12'} cpu: [arm64] os: [win32] @@ -9821,32 +9865,32 @@ packages: dev: true optional: true - /esbuild/0.14.39: - resolution: {integrity: sha512-2kKujuzvRWYtwvNjYDY444LQIA3TyJhJIX3Yo4+qkFlDDtGlSicWgeHVJqMUP/2sSfH10PGwfsj+O2ro1m10xQ==} + /esbuild/0.14.43: + resolution: {integrity: sha512-Uf94+kQmy/5jsFwKWiQB4hfo/RkM9Dh7b79p8yqd1tshULdr25G2szLz631NoH3s2ujnKEKVD16RmOxvCNKRFA==} engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - esbuild-android-64: 0.14.39 - esbuild-android-arm64: 0.14.39 - esbuild-darwin-64: 0.14.39 - esbuild-darwin-arm64: 0.14.39 - esbuild-freebsd-64: 0.14.39 - esbuild-freebsd-arm64: 0.14.39 - esbuild-linux-32: 0.14.39 - esbuild-linux-64: 0.14.39 - esbuild-linux-arm: 0.14.39 - esbuild-linux-arm64: 0.14.39 - esbuild-linux-mips64le: 0.14.39 - esbuild-linux-ppc64le: 0.14.39 - esbuild-linux-riscv64: 0.14.39 - esbuild-linux-s390x: 0.14.39 - esbuild-netbsd-64: 0.14.39 - esbuild-openbsd-64: 0.14.39 - esbuild-sunos-64: 0.14.39 - esbuild-windows-32: 0.14.39 - esbuild-windows-64: 0.14.39 - esbuild-windows-arm64: 0.14.39 + esbuild-android-64: 0.14.43 + esbuild-android-arm64: 0.14.43 + esbuild-darwin-64: 0.14.43 + esbuild-darwin-arm64: 0.14.43 + esbuild-freebsd-64: 0.14.43 + esbuild-freebsd-arm64: 0.14.43 + esbuild-linux-32: 0.14.43 + esbuild-linux-64: 0.14.43 + esbuild-linux-arm: 0.14.43 + esbuild-linux-arm64: 0.14.43 + esbuild-linux-mips64le: 0.14.43 + esbuild-linux-ppc64le: 0.14.43 + esbuild-linux-riscv64: 0.14.43 + esbuild-linux-s390x: 0.14.43 + esbuild-netbsd-64: 0.14.43 + esbuild-openbsd-64: 0.14.43 + esbuild-sunos-64: 0.14.43 + esbuild-windows-32: 0.14.43 + esbuild-windows-64: 0.14.43 + esbuild-windows-arm64: 0.14.43 dev: true /escalade/3.1.1: @@ -9854,10 +9898,10 @@ packages: engines: {node: '>=6'} /escape-html/1.0.3: - resolution: {integrity: sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=} + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} /escape-string-regexp/1.0.5: - resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=} + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} engines: {node: '>=0.8.0'} /escape-string-regexp/2.0.0: @@ -9912,7 +9956,7 @@ packages: dev: false /etag/1.8.1: - resolution: {integrity: sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=} + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} engines: {node: '>= 0.6'} /event-stream/3.3.4: @@ -9975,12 +10019,12 @@ packages: dev: true /exit/0.1.2: - resolution: {integrity: sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=} + resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} engines: {node: '>= 0.8.0'} dev: true /expand-brackets/2.1.4: - resolution: {integrity: sha1-t3c14xXOMPa27/D4OwQVGiJEliI=} + resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} engines: {node: '>=0.10.0'} dependencies: debug: 2.6.9 @@ -9999,15 +10043,15 @@ packages: engines: {node: '>=6'} dev: false - /expect/28.1.0: - resolution: {integrity: sha512-qFXKl8Pmxk8TBGfaFKRtcQjfXEnKAs+dmlxdwvukJZorwrAabT7M3h8oLOG01I2utEhkmUTi17CHaPBovZsKdw==} + /expect/28.1.1: + resolution: {integrity: sha512-/AANEwGL0tWBwzLNOvO0yUdy2D52jVdNXppOqswC49sxMN2cPWsGCQdzuIf9tj6hHoBQzNvx75JUYuQAckPo3w==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@jest/expect-utils': 28.1.0 + '@jest/expect-utils': 28.1.1 jest-get-type: 28.0.2 - jest-matcher-utils: 28.1.0 - jest-message-util: 28.1.0 - jest-util: 28.1.0 + jest-matcher-utils: 28.1.1 + jest-message-util: 28.1.1 + jest-util: 28.1.1 dev: true /express-graphql/0.12.0_ptiko6tsqj7cmirxhjfetabnhu: @@ -10062,14 +10106,14 @@ packages: - supports-color /extend-shallow/2.0.1: - resolution: {integrity: sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=} + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} engines: {node: '>=0.10.0'} dependencies: is-extendable: 0.1.1 dev: false /extend-shallow/3.0.2: - resolution: {integrity: sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=} + resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} engines: {node: '>=0.10.0'} dependencies: assign-symbols: 1.0.0 @@ -10245,7 +10289,7 @@ packages: dev: true /fill-range/4.0.0: - resolution: {integrity: sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=} + resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} engines: {node: '>=0.10.0'} dependencies: extend-shallow: 2.0.1 @@ -10331,8 +10375,8 @@ packages: /flatstr/1.0.12: resolution: {integrity: sha512-4zPxDyhCyiN2wIAtSLI6gc82/EjqZc1onI4Mz/l0pWrAlsSfYH/2ZIcU+e3oA2wDwbzIWNKwa23F8rh6+DRWkw==} - /flow-parser/0.178.0: - resolution: {integrity: sha512-OviMR2Y/sMSyUzR1xLLAmQvmHXTsD1Sq69OTmP5AckVulld7sVNsCfwsw7t3uK00dO9A7k4fD+wodbzzaaEn5g==} + /flow-parser/0.179.0: + resolution: {integrity: sha512-M4dEgnvsGFa1lUTK05RFW+cwle8tkTHioFm6gGWdeGpDJjjhmvyaN8vLIqb8sAHI05TQxARsnUC3U2chzQP1Dw==} engines: {node: '>=0.4.0'} dev: false @@ -10343,8 +10387,8 @@ packages: tslib: 2.4.0 dev: false - /focus-trap-react/8.11.1_sfoxds7t5ydpegc3knd667wn6m: - resolution: {integrity: sha512-ZFElB120Ntdxnq0aSWnzQqQ5QY1XUt8T1yuud/BIYAriMTWvyQghsk558ASSSV0iflaUgFQNRjKq3IEFEjGQGA==} + /focus-trap-react/8.11.2_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-+LQSE2vfe/2d23ddg+f2bm2IietBkarVUGw0jkswAU4btUxihHvWOrUC5QfNAqv5MLgfhGRs/rr0rU2IaxzM4w==} peerDependencies: prop-types: ^15.8.1 react: '*' @@ -10357,19 +10401,19 @@ packages: react-dom: optional: true dependencies: - focus-trap: 6.9.2 + focus-trap: 6.9.3 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 dev: false - /focus-trap/6.9.2: - resolution: {integrity: sha512-gBEuXOPNOKPrLdZpMFUSTyIo1eT2NSZRrwZ9r/0Jqw5tmT3Yvxfmu8KBHw8xW2XQkw6E/JoG+OlEq7UDtSUNgw==} + /focus-trap/6.9.3: + resolution: {integrity: sha512-sUXiHx0QbF8SQMZGdxpu8V8zPcXx0BkU6Fj7t14csEknkcH1pnxorhhh1PfSaGjJj6gj3yiBRPxBV/qoHege3w==} dependencies: - tabbable: 5.3.2 + tabbable: 5.3.3 dev: false - /follow-redirects/1.15.0: - resolution: {integrity: sha512-aExlJShTV4qOUOL7yF1U5tvLCB0xQuudbf6toyYA0E/acBNw71mvjFTnLaRp50aQaYocMR0a/RMMBIHeZnGyjQ==} + /follow-redirects/1.15.1: + resolution: {integrity: sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==} engines: {node: '>=4.0'} peerDependencies: debug: '*' @@ -10378,7 +10422,7 @@ packages: optional: true /for-in/1.0.2: - resolution: {integrity: sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=} + resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} engines: {node: '>=0.10.0'} dev: false @@ -10436,14 +10480,14 @@ packages: dev: false /fragment-cache/0.2.1: - resolution: {integrity: sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=} + resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} engines: {node: '>=0.10.0'} dependencies: map-cache: 0.2.2 dev: false - /framer-motion/6.3.3_sfoxds7t5ydpegc3knd667wn6m: - resolution: {integrity: sha512-wo0dCnoq5vn4L8YVOPO9W54dliH78vDaX0Lj+bSPUys6Nt5QaehrS3uaYa0q5eVeikUgtTjz070UhQ94thI5Sw==} + /framer-motion/6.3.10_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-modFplFb1Fznsm0MrmRAJUC32UDA5jbGU9rDvkGzhAHksru2tnoKbU/Pa3orzdsJI0CJviG4NGBrmwGveU98Cg==} peerDependencies: react: '*' react-dom: '>=16.8 || ^17.0.0 || ^18.0.0' @@ -10477,11 +10521,11 @@ packages: dev: false /fresh/0.5.2: - resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=} + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} engines: {node: '>= 0.6'} /from/0.1.7: - resolution: {integrity: sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4=} + resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==} dev: true /fs-capacitor/6.2.0: @@ -10518,7 +10562,7 @@ packages: universalify: 0.1.2 /fs.realpath/1.0.0: - resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=} + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} /fsevents/2.3.2: resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} @@ -10530,19 +10574,6 @@ packages: /function-bind/1.1.1: resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} - /gauge/2.7.4: - resolution: {integrity: sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=} - dependencies: - aproba: 1.2.0 - console-control-strings: 1.1.0 - has-unicode: 2.0.1 - object-assign: 4.1.1 - signal-exit: 3.0.7 - string-width: 1.0.2 - strip-ansi: 3.0.1 - wide-align: 1.1.5 - dev: false - /generate-function/2.3.1: resolution: {integrity: sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==} dependencies: @@ -10558,7 +10589,7 @@ packages: engines: {node: 6.* || 8.* || >= 10.*} /get-func-name/2.0.0: - resolution: {integrity: sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=} + resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==} dev: false /get-intrinsic/1.1.1: @@ -10605,7 +10636,7 @@ packages: dev: false /get-value/2.0.6: - resolution: {integrity: sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=} + resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} engines: {node: '>=0.10.0'} dev: false @@ -10688,8 +10719,8 @@ packages: resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} dev: true - /graphiql/1.8.10_tiebhckugsu5hkbnws2sbxj6wq: - resolution: {integrity: sha512-ZYGsBzJz3OWh30eRr5D07ETHLqUEgfOddKdMLHgivLRmWVG6paRNOPzgwFyXy49JwL6gTzVmZoHabml7yySCnA==} + /graphiql/1.9.6_xcdbzumhatha34vl6yvnh3fagi: + resolution: {integrity: sha512-HxKM2cu6SQUi8x1QqZc/GkLBnyjZerPOKmiBfsZmIWYLtZTJTd4dezeraD2klB80FkYKgPVPbojGLofuLq8w3w==} peerDependencies: graphql: '*' react: '*' @@ -10700,18 +10731,14 @@ packages: react-dom: optional: true dependencies: - '@graphiql/toolkit': 0.4.5_2ul57u2danryqu6cyf2org6kaq - codemirror: 5.65.3 - codemirror-graphql: 1.3.0_tbbogp5tmrsgntfegmhlkgvfle - copy-to-clipboard: 3.3.1 + '@graphiql/react': 0.4.0_xcdbzumhatha34vl6yvnh3fagi + '@graphiql/toolkit': 0.6.0_yjlbj5iefrahkkqtzjdxwg3bsi entities: 2.2.0 - escape-html: 1.0.3 graphql: 16.1.0-experimental-stream-defer.6 graphql-language-service: 5.0.4_ptiko6tsqj7cmirxhjfetabnhu markdown-it: 12.3.2 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 - set-value: 4.1.0 transitivePeerDependencies: - '@codemirror/language' - '@types/node' @@ -10724,19 +10751,19 @@ packages: lodash: 4.17.21 dev: false - /graphql-config/4.3.0_7rnmjw6xrmrbv2wtd54ymw6d6y: - resolution: {integrity: sha512-Uiu3X7+s5c056WyrvdZVz2vG1fhAipMlYmtiCU/4Z2mX79OXDr1SqIon2MprC/pExIWJfAQZCcjYDY76fPBUQg==} + /graphql-config/4.3.1_szxzbfwxgmeuidyijthf6a72pu: + resolution: {integrity: sha512-czBWzJSGaLJfOHBLuUTZVRTjfgohPfvlaeN1B5nXBVptFARpiFuS7iI4FnRhCGwm6qt1h2j1g05nkg0OIGA6bg==} engines: {node: '>= 10.0.0'} peerDependencies: graphql: '*' dependencies: - '@endemolshinegroup/cosmiconfig-typescript-loader': 3.0.2_eqevhppa7sa2qvpxws2sflyfju - '@graphql-tools/graphql-file-loader': 7.3.12_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/json-file-loader': 7.3.12_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/load': 7.5.11_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/merge': 8.2.11_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/url-loader': 7.9.21_jbzygwtciwlvjtn3q7t33u52ie - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu + '@endemolshinegroup/cosmiconfig-typescript-loader': 3.0.2_w2cfr5gwraqciqu2ku3x4g3hhm + '@graphql-tools/graphql-file-loader': 7.3.15_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/json-file-loader': 7.3.15_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/load': 7.5.14_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/merge': 8.2.14_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/url-loader': 7.9.24_hpd26pxjdtqgd5vnuymhglwlia + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu cosmiconfig: 7.0.1 cosmiconfig-toml-loader: 1.0.0 graphql: 16.1.0-experimental-stream-defer.6 @@ -10750,9 +10777,9 @@ packages: - utf-8-validate dev: true - /graphql-esm/16.0.1: - resolution: {integrity: sha512-YJyNDfqYqlRldsPTX9K8QA8xRSjLIzw6kpDKTbdzjBoYIB6CgVQStNNZ4nM22XK5yoIlKUr6qNC+ZLhbX9wF+w==} - engines: {node: ^12.22.0 || ^14.16.0 || >=16.0.0} + /graphql-esm/16.5.0: + resolution: {integrity: sha512-mz8dqSG+alAZinJxt5lDdyGyygQeqYTNETTXh3b0JFWRHVfdJkIovspypi2GeCERocvv6eCi70w8uI+320BKRw==} + engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} dev: false /graphql-executor/0.0.23_ptiko6tsqj7cmirxhjfetabnhu: @@ -10771,8 +10798,8 @@ packages: graphql: 16.1.0-experimental-stream-defer.6 dev: false - /graphql-jit/0.7.3_graphql@16.5.0: - resolution: {integrity: sha512-sb7j5K4uWjpzZvmhEzU9ei9bgZImmB8bnzE2u9Mi5IkDk1Hjb0wc5+r7XAy9dwWDfuAzFZnN5mOmKjsBu1+4xw==} + /graphql-jit/0.7.4_graphql@16.5.0: + resolution: {integrity: sha512-kWyHmsQtKMD6xcKDgf4dgPLyIZhviqA6IWGdnA0ElL9wgrIOTxf3eI4c0/U3tnoAU3t09zliVCfDkfIptzYjIA==} peerDependencies: graphql: '*' dependencies: @@ -10786,8 +10813,8 @@ packages: lodash.mergewith: 4.6.2 dev: false - /graphql-jit/0.7.3_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-sb7j5K4uWjpzZvmhEzU9ei9bgZImmB8bnzE2u9Mi5IkDk1Hjb0wc5+r7XAy9dwWDfuAzFZnN5mOmKjsBu1+4xw==} + /graphql-jit/0.7.4_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-kWyHmsQtKMD6xcKDgf4dgPLyIZhviqA6IWGdnA0ElL9wgrIOTxf3eI4c0/U3tnoAU3t09zliVCfDkfIptzYjIA==} peerDependencies: graphql: '*' dependencies: @@ -10801,16 +10828,16 @@ packages: lodash.mergewith: 4.6.2 dev: false - /graphql-language-service-interface/2.10.2_7rnmjw6xrmrbv2wtd54ymw6d6y: + /graphql-language-service-interface/2.10.2_szxzbfwxgmeuidyijthf6a72pu: resolution: {integrity: sha512-RKIEBPhRMWdXY3fxRs99XysTDnEgAvNbu8ov/5iOlnkZsWQNzitjtd0O0l1CutQOQt3iXoHde7w8uhCnKL4tcg==} peerDependencies: graphql: '*' dependencies: graphql: 16.1.0-experimental-stream-defer.6 - graphql-config: 4.3.0_7rnmjw6xrmrbv2wtd54ymw6d6y - graphql-language-service-parser: 1.10.4_7rnmjw6xrmrbv2wtd54ymw6d6y - graphql-language-service-types: 1.8.7_7rnmjw6xrmrbv2wtd54ymw6d6y - graphql-language-service-utils: 2.7.1_7rnmjw6xrmrbv2wtd54ymw6d6y + graphql-config: 4.3.1_szxzbfwxgmeuidyijthf6a72pu + graphql-language-service-parser: 1.10.4_szxzbfwxgmeuidyijthf6a72pu + graphql-language-service-types: 1.8.7_szxzbfwxgmeuidyijthf6a72pu + graphql-language-service-utils: 2.7.1_szxzbfwxgmeuidyijthf6a72pu vscode-languageserver-types: 3.17.1 transitivePeerDependencies: - '@types/node' @@ -10820,13 +10847,13 @@ packages: - utf-8-validate dev: true - /graphql-language-service-parser/1.10.4_7rnmjw6xrmrbv2wtd54ymw6d6y: + /graphql-language-service-parser/1.10.4_szxzbfwxgmeuidyijthf6a72pu: resolution: {integrity: sha512-duDE+0aeKLFVrb9Kf28U84ZEHhHcvTjWIT6dJbIAQJWBaDoht0D4BK9EIhd94I3DtKRc1JCJb2+70y1lvP/hiA==} peerDependencies: graphql: '*' dependencies: graphql: 16.1.0-experimental-stream-defer.6 - graphql-language-service-types: 1.8.7_7rnmjw6xrmrbv2wtd54ymw6d6y + graphql-language-service-types: 1.8.7_szxzbfwxgmeuidyijthf6a72pu transitivePeerDependencies: - '@types/node' - bufferutil @@ -10835,13 +10862,13 @@ packages: - utf-8-validate dev: true - /graphql-language-service-types/1.8.7_7rnmjw6xrmrbv2wtd54ymw6d6y: + /graphql-language-service-types/1.8.7_szxzbfwxgmeuidyijthf6a72pu: resolution: {integrity: sha512-LP/Mx0nFBshYEyD0Ny6EVGfacJAGVx+qXtlJP4hLzUdBNOGimfDNtMVIdZANBXHXcM41MDgMHTnyEx2g6/Ttbw==} peerDependencies: graphql: '*' dependencies: graphql: 16.1.0-experimental-stream-defer.6 - graphql-config: 4.3.0_7rnmjw6xrmrbv2wtd54ymw6d6y + graphql-config: 4.3.1_szxzbfwxgmeuidyijthf6a72pu vscode-languageserver-types: 3.17.1 transitivePeerDependencies: - '@types/node' @@ -10851,14 +10878,14 @@ packages: - utf-8-validate dev: true - /graphql-language-service-utils/2.7.1_7rnmjw6xrmrbv2wtd54ymw6d6y: + /graphql-language-service-utils/2.7.1_szxzbfwxgmeuidyijthf6a72pu: resolution: {integrity: sha512-Wci5MbrQj+6d7rfvbORrA9uDlfMysBWYaG49ST5TKylNaXYFf3ixFOa74iM1KtM9eidosUbI3E1JlWi0JaidJA==} peerDependencies: graphql: '*' dependencies: '@types/json-schema': 7.0.9 graphql: 16.1.0-experimental-stream-defer.6 - graphql-language-service-types: 1.8.7_7rnmjw6xrmrbv2wtd54ymw6d6y + graphql-language-service-types: 1.8.7_szxzbfwxgmeuidyijthf6a72pu nullthrows: 1.1.1 transitivePeerDependencies: - '@types/node' @@ -10884,8 +10911,8 @@ packages: peerDependencies: graphql: '*' dependencies: - '@graphql-tools/schema': 8.3.11_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/wrap': 8.4.17_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/schema': 8.3.14_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/wrap': 8.4.20_ptiko6tsqj7cmirxhjfetabnhu '@graphql-typed-document-node/core': 3.1.1_ptiko6tsqj7cmirxhjfetabnhu graphql: 16.1.0-experimental-stream-defer.6 ramda: 0.27.2 @@ -10899,8 +10926,8 @@ packages: lodash.get: 4.4.2 dev: false - /graphql-request/4.2.0_ptiko6tsqj7cmirxhjfetabnhu: - resolution: {integrity: sha512-uFeMyhhl8ss4LFgjlfPeAn2pqYw+CJto+cjj71uaBYIMMK2jPIqgHm5KEFxUk0YDD41A8Bq31a2b4G2WJBlp2Q==} + /graphql-request/4.3.0_ptiko6tsqj7cmirxhjfetabnhu: + resolution: {integrity: sha512-2v6hQViJvSsifK606AliqiNiijb1uwWp6Re7o0RTyH+uRTv/u7Uqm2g4Fjq/LgZIzARB38RZEvVBFOQOVdlBow==} peerDependencies: graphql: '*' dependencies: @@ -11020,7 +11047,7 @@ packages: dev: false /has-flag/3.0.0: - resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=} + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} engines: {node: '>=4'} /has-flag/4.0.0: @@ -11043,12 +11070,8 @@ packages: dependencies: has-symbols: 1.0.3 - /has-unicode/2.0.1: - resolution: {integrity: sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=} - dev: false - /has-value/0.3.1: - resolution: {integrity: sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=} + resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} engines: {node: '>=0.10.0'} dependencies: get-value: 2.0.6 @@ -11057,7 +11080,7 @@ packages: dev: false /has-value/1.0.0: - resolution: {integrity: sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=} + resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} engines: {node: '>=0.10.0'} dependencies: get-value: 2.0.6 @@ -11066,12 +11089,12 @@ packages: dev: false /has-values/0.1.4: - resolution: {integrity: sha1-bWHeldkd/Km5oCCJrThL/49it3E=} + resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} engines: {node: '>=0.10.0'} dev: false /has-values/1.0.0: - resolution: {integrity: sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=} + resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} engines: {node: '>=0.10.0'} dependencies: is-number: 3.0.0 @@ -11110,7 +11133,7 @@ packages: estree-util-attach-comments: 2.0.0 estree-util-is-identifier-name: 2.0.0 hast-util-whitespace: 2.0.0 - mdast-util-mdx-expression: 1.2.0 + mdast-util-mdx-expression: 1.2.1 mdast-util-mdxjs-esm: 1.2.0 property-information: 6.1.1 space-separated-tokens: 2.0.1 @@ -11191,11 +11214,11 @@ packages: dev: true /hsl-regex/1.0.0: - resolution: {integrity: sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=} + resolution: {integrity: sha512-M5ezZw4LzXbBKMruP+BNANf0k+19hDQMgpzBIYnya//Al+fjNct9Wf3b1WedLqdEs2hKBvxq/jh+DsHJLj0F9A==} dev: false /hsla-regex/1.0.0: - resolution: {integrity: sha1-wc56MWjIxmFAM6S194d/OyJfnDg=} + resolution: {integrity: sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA==} dev: false /htm/3.1.1: @@ -11301,10 +11324,10 @@ packages: resolution: {integrity: sha512-/MfAGMP0jHonV966uFf9PkWWuDjPYLIcsipnSO3NxpNtAgRUKLTwvm85fEmsF6hGeu0zbZiCQ3W74jwO6K9uXA==} dev: false - /i18next/21.8.3: - resolution: {integrity: sha512-I6QEXu096oaNH8h+hs2eHu6hxtWPdb/rsoRFHmFep01uuwB0h86ckXaT14ladhstWenEScsxiAQ2TW9fmDG57Q==} + /i18next/21.8.9: + resolution: {integrity: sha512-PY9a/8ADVmnju1tETeglbbVQi+nM5pcJQWm9kvKMTE3GPgHHtpDsHy5HQ/hccz2/xtW7j3vuso23JdQSH0EttA==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 dev: false /iconv-lite/0.4.24: @@ -11325,7 +11348,7 @@ packages: dev: false /immutable/3.7.6: - resolution: {integrity: sha1-E7TTyxK++hVIKib+Gy665kAHHks=} + resolution: {integrity: sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw==} engines: {node: '>=0.8.0'} dev: false @@ -11351,7 +11374,7 @@ packages: dev: true /imurmurhash/0.1.4: - resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=} + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} engines: {node: '>=0.8.19'} /indent-string/4.0.0: @@ -11364,12 +11387,12 @@ packages: dev: true /inflation/2.0.0: - resolution: {integrity: sha1-i0F+R8KPklpFEz2RTKH9OJEH8w8=} + resolution: {integrity: sha512-m3xv4hJYR2oXw4o4Y5l6P5P16WYmazYof+el6Al3f+YlggGj6qT9kImBAnzDelRALnP5d3h4jGBPKzYCizjZZw==} engines: {node: '>= 0.8.0'} dev: false /inflight/1.0.6: - resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=} + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} dependencies: once: 1.4.0 wrappy: 1.0.2 @@ -11440,7 +11463,7 @@ packages: dev: false /is-accessor-descriptor/0.1.6: - resolution: {integrity: sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=} + resolution: {integrity: sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 @@ -11465,7 +11488,7 @@ packages: dev: false /is-arrayish/0.2.1: - resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=} + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} /is-arrayish/0.3.2: resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} @@ -11494,7 +11517,7 @@ packages: dev: true /is-color-stop/1.1.0: - resolution: {integrity: sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=} + resolution: {integrity: sha512-H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA==} dependencies: css-color-names: 0.0.4 hex-color-regex: 1.1.0 @@ -11510,7 +11533,7 @@ packages: has: 1.0.3 /is-data-descriptor/0.1.4: - resolution: {integrity: sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=} + resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 @@ -11551,7 +11574,7 @@ packages: hasBin: true /is-extendable/0.1.1: - resolution: {integrity: sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=} + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} engines: {node: '>=0.10.0'} dev: false @@ -11563,16 +11586,9 @@ packages: dev: false /is-extglob/2.1.1: - resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=} + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} - /is-fullwidth-code-point/1.0.0: - resolution: {integrity: sha1-754xOG8DGn8NZDr4L95QxFfvAMs=} - engines: {node: '>=0.10.0'} - dependencies: - number-is-nan: 1.0.1 - dev: false - /is-fullwidth-code-point/3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} @@ -11610,7 +11626,7 @@ packages: dev: false /is-number/3.0.0: - resolution: {integrity: sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=} + resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 @@ -11631,7 +11647,7 @@ packages: dev: true /is-plain-obj/1.1.0: - resolution: {integrity: sha1-caUMhCnfync8kqOQpKA7OfzVHT4=} + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} engines: {node: '>=0.10.0'} dev: true @@ -11655,7 +11671,7 @@ packages: engines: {node: '>=0.10.0'} /is-property/1.0.2: - resolution: {integrity: sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=} + resolution: {integrity: sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==} dev: false /is-reference/3.0.0: @@ -11711,29 +11727,29 @@ packages: is-docker: 2.2.1 /isarray/1.0.0: - resolution: {integrity: sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=} + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} dev: false /isexe/2.0.0: - resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=} + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} /isobject/2.1.0: - resolution: {integrity: sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=} + resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} engines: {node: '>=0.10.0'} dependencies: isarray: 1.0.0 dev: false /isobject/3.0.1: - resolution: {integrity: sha1-TkMekrEalzFjaqH5yNHMvP2reN8=} + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} engines: {node: '>=0.10.0'} - /isomorphic-ws/4.0.1_ws@8.6.0: + /isomorphic-ws/4.0.1_ws@8.7.0: resolution: {integrity: sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==} peerDependencies: ws: '*' dependencies: - ws: 8.6.0 + ws: 8.7.0 /istanbul-lib-coverage/3.2.0: resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==} @@ -11743,8 +11759,8 @@ packages: resolution: {integrity: sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.18.0 - '@babel/parser': 7.18.0 + '@babel/core': 7.18.2 + '@babel/parser': 7.18.4 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -11789,26 +11805,26 @@ packages: throat: 6.0.1 dev: true - /jest-circus/28.1.0: - resolution: {integrity: sha512-rNYfqfLC0L0zQKRKsg4n4J+W1A2fbyGH7Ss/kDIocp9KXD9iaL111glsLu7+Z7FHuZxwzInMDXq+N1ZIBkI/TQ==} + /jest-circus/28.1.1: + resolution: {integrity: sha512-75+BBVTsL4+p2w198DQpCeyh1RdaS2lhEG87HkaFX/UG0gJExVq2skG2pT7XZEGBubNj2CytcWSPan4QEPNosw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@jest/environment': 28.1.0 - '@jest/expect': 28.1.0 - '@jest/test-result': 28.1.0 - '@jest/types': 28.1.0 - '@types/node': 17.0.35 + '@jest/environment': 28.1.1 + '@jest/expect': 28.1.1 + '@jest/test-result': 28.1.1 + '@jest/types': 28.1.1 + '@types/node': 17.0.41 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 is-generator-fn: 2.1.0 - jest-each: 28.1.0 - jest-matcher-utils: 28.1.0 - jest-message-util: 28.1.0 - jest-runtime: 28.1.0 - jest-snapshot: 28.1.0 - jest-util: 28.1.0 - pretty-format: 28.1.0 + jest-each: 28.1.1 + jest-matcher-utils: 28.1.1 + jest-message-util: 28.1.1 + jest-runtime: 28.1.1 + jest-snapshot: 28.1.1 + jest-util: 28.1.1 + pretty-format: 28.1.1 slash: 3.0.0 stack-utils: 2.0.5 throat: 6.0.1 @@ -11816,8 +11832,8 @@ packages: - supports-color dev: true - /jest-cli/28.1.0_@types+node@17.0.35: - resolution: {integrity: sha512-fDJRt6WPRriHrBsvvgb93OxgajHHsJbk4jZxiPqmZbMDRcHskfJBBfTyjFko0jjfprP544hOktdSi9HVgl4VUQ==} + /jest-cli/28.1.1_@types+node@17.0.41: + resolution: {integrity: sha512-+sUfVbJqb1OjBZ0OdBbI6OWfYM1i7bSfzYy6gze1F1w3OKWq8ZTEKkZ8a7ZQPq6G/G1qMh/uKqpdWhgl11NFQQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} hasBin: true peerDependencies: @@ -11826,16 +11842,16 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 28.1.0 - '@jest/test-result': 28.1.0 - '@jest/types': 28.1.0 + '@jest/core': 28.1.1 + '@jest/test-result': 28.1.1 + '@jest/types': 28.1.1 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.10 import-local: 3.1.0 - jest-config: 28.1.0_@types+node@17.0.35 - jest-util: 28.1.0 - jest-validate: 28.1.0 + jest-config: 28.1.1_@types+node@17.0.41 + jest-util: 28.1.1 + jest-validate: 28.1.1 prompts: 2.4.2 yargs: 17.5.1 transitivePeerDependencies: @@ -11844,8 +11860,8 @@ packages: - ts-node dev: true - /jest-config/28.1.0_@types+node@17.0.35: - resolution: {integrity: sha512-aOV80E9LeWrmflp7hfZNn/zGA4QKv/xsn2w8QCBP0t0+YqObuCWTSgNbHJ0j9YsTuCO08ZR/wsvlxqqHX20iUA==} + /jest-config/28.1.1_@types+node@17.0.41: + resolution: {integrity: sha512-tASynMhS+jVV85zKvjfbJ8nUyJS/jUSYZ5KQxLUN2ZCvcQc/OmhQl2j6VEL3ezQkNofxn5pQ3SPYWPHb0unTZA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: '@types/node': '*' @@ -11856,27 +11872,27 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.18.0 - '@jest/test-sequencer': 28.1.0 - '@jest/types': 28.1.0 - '@types/node': 17.0.35 - babel-jest: 28.1.0_@babel+core@7.18.0 + '@babel/core': 7.18.2 + '@jest/test-sequencer': 28.1.1 + '@jest/types': 28.1.1 + '@types/node': 17.0.41 + babel-jest: 28.1.1_@babel+core@7.18.2 chalk: 4.1.2 ci-info: 3.3.1 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.10 - jest-circus: 28.1.0 - jest-environment-node: 28.1.0 + jest-circus: 28.1.1 + jest-environment-node: 28.1.1 jest-get-type: 28.0.2 jest-regex-util: 28.0.2 - jest-resolve: 28.1.0 - jest-runner: 28.1.0 - jest-util: 28.1.0 - jest-validate: 28.1.0 + jest-resolve: 28.1.1 + jest-runner: 28.1.1 + jest-util: 28.1.1 + jest-validate: 28.1.1 micromatch: 4.0.5 parse-json: 5.2.0 - pretty-format: 28.1.0 + pretty-format: 28.1.1 slash: 3.0.0 strip-json-comments: 3.1.1 transitivePeerDependencies: @@ -11893,44 +11909,44 @@ packages: pretty-format: 27.5.1 dev: true - /jest-diff/28.1.0: - resolution: {integrity: sha512-8eFd3U3OkIKRtlasXfiAQfbovgFgRDb0Ngcs2E+FMeBZ4rUezqIaGjuyggJBp+llosQXNEWofk/Sz4Hr5gMUhA==} + /jest-diff/28.1.1: + resolution: {integrity: sha512-/MUUxeR2fHbqHoMMiffe/Afm+U8U4olFRJ0hiVG2lZatPJcnGxx292ustVu7bULhjV65IYMxRdploAKLbcrsyg==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: chalk: 4.1.2 - diff-sequences: 28.0.2 + diff-sequences: 28.1.1 jest-get-type: 28.0.2 - pretty-format: 28.1.0 + pretty-format: 28.1.1 dev: true - /jest-docblock/28.0.2: - resolution: {integrity: sha512-FH10WWw5NxLoeSdQlJwu+MTiv60aXV/t8KEwIRGEv74WARE1cXIqh1vGdy2CraHuWOOrnzTWj/azQKqW4fO7xg==} + /jest-docblock/28.1.1: + resolution: {integrity: sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: detect-newline: 3.1.0 dev: true - /jest-each/28.1.0: - resolution: {integrity: sha512-a/XX02xF5NTspceMpHujmOexvJ4GftpYXqr6HhhmKmExtMXsyIN/fvanQlt/BcgFoRKN4OCXxLQKth9/n6OPFg==} + /jest-each/28.1.1: + resolution: {integrity: sha512-A042rqh17ZvEhRceDMi784ppoXR7MWGDEKTXEZXb4svt0eShMZvijGxzKsx+yIjeE8QYmHPrnHiTSQVhN4nqaw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@jest/types': 28.1.0 + '@jest/types': 28.1.1 chalk: 4.1.2 jest-get-type: 28.0.2 - jest-util: 28.1.0 - pretty-format: 28.1.0 + jest-util: 28.1.1 + pretty-format: 28.1.1 dev: true - /jest-environment-node/28.1.0: - resolution: {integrity: sha512-gBLZNiyrPw9CSMlTXF1yJhaBgWDPVvH0Pq6bOEwGMXaYNzhzhw2kA/OijNF8egbCgDS0/veRv97249x2CX+udQ==} + /jest-environment-node/28.1.1: + resolution: {integrity: sha512-2aV/eeY/WNgUUJrrkDJ3cFEigjC5fqT1+fCclrY6paqJ5zVPoM//sHmfgUUp7WLYxIdbPwMiVIzejpN56MxnNA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@jest/environment': 28.1.0 - '@jest/fake-timers': 28.1.0 - '@jest/types': 28.1.0 - '@types/node': 17.0.35 - jest-mock: 28.1.0 - jest-util: 28.1.0 + '@jest/environment': 28.1.1 + '@jest/fake-timers': 28.1.1 + '@jest/types': 28.1.1 + '@types/node': 17.0.41 + jest-mock: 28.1.1 + jest-util: 28.1.1 dev: true /jest-get-type/27.5.1: @@ -11943,31 +11959,31 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dev: true - /jest-haste-map/28.1.0: - resolution: {integrity: sha512-xyZ9sXV8PtKi6NCrJlmq53PyNVHzxmcfXNVvIRHpHmh1j/HChC4pwKgyjj7Z9us19JMw8PpQTJsFWOsIfT93Dw==} + /jest-haste-map/28.1.1: + resolution: {integrity: sha512-ZrRSE2o3Ezh7sb1KmeLEZRZ4mgufbrMwolcFHNRSjKZhpLa8TdooXOOFlSwoUzlbVs1t0l7upVRW2K7RWGHzbQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@jest/types': 28.1.0 + '@jest/types': 28.1.1 '@types/graceful-fs': 4.1.5 - '@types/node': 17.0.35 + '@types/node': 17.0.41 anymatch: 3.1.2 fb-watchman: 2.0.1 graceful-fs: 4.2.10 jest-regex-util: 28.0.2 - jest-util: 28.1.0 - jest-worker: 28.1.0 + jest-util: 28.1.1 + jest-worker: 28.1.1 micromatch: 4.0.5 walker: 1.0.8 optionalDependencies: fsevents: 2.3.2 dev: true - /jest-leak-detector/28.1.0: - resolution: {integrity: sha512-uIJDQbxwEL2AMMs2xjhZl2hw8s77c3wrPaQ9v6tXJLGaaQ+4QrNJH5vuw7hA7w/uGT/iJ42a83opAqxGHeyRIA==} + /jest-leak-detector/28.1.1: + resolution: {integrity: sha512-4jvs8V8kLbAaotE+wFR7vfUGf603cwYtFf1/PYEsyX2BAjSzj8hQSVTP6OWzseTl0xL6dyHuKs2JAks7Pfubmw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: jest-get-type: 28.0.2 - pretty-format: 28.1.0 + pretty-format: 28.1.1 dev: true /jest-matcher-utils/27.5.1: @@ -11980,40 +11996,40 @@ packages: pretty-format: 27.5.1 dev: true - /jest-matcher-utils/28.1.0: - resolution: {integrity: sha512-onnax0n2uTLRQFKAjC7TuaxibrPSvZgKTcSCnNUz/tOjJ9UhxNm7ZmPpoQavmTDUjXvUQ8KesWk2/VdrxIFzTQ==} + /jest-matcher-utils/28.1.1: + resolution: {integrity: sha512-NPJPRWrbmR2nAJ+1nmnfcKKzSwgfaciCCrYZzVnNoxVoyusYWIjkBMNvu0RHJe7dNj4hH3uZOPZsQA+xAYWqsw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: chalk: 4.1.2 - jest-diff: 28.1.0 + jest-diff: 28.1.1 jest-get-type: 28.0.2 - pretty-format: 28.1.0 + pretty-format: 28.1.1 dev: true - /jest-message-util/28.1.0: - resolution: {integrity: sha512-RpA8mpaJ/B2HphDMiDlrAZdDytkmwFqgjDZovM21F35lHGeUeCvYmm6W+sbQ0ydaLpg5bFAUuWG1cjqOl8vqrw==} + /jest-message-util/28.1.1: + resolution: {integrity: sha512-xoDOOT66fLfmTRiqkoLIU7v42mal/SqwDKvfmfiWAdJMSJiU+ozgluO7KbvoAgiwIrrGZsV7viETjc8GNrA/IQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@babel/code-frame': 7.16.7 - '@jest/types': 28.1.0 + '@jest/types': 28.1.1 '@types/stack-utils': 2.0.1 chalk: 4.1.2 graceful-fs: 4.2.10 micromatch: 4.0.5 - pretty-format: 28.1.0 + pretty-format: 28.1.1 slash: 3.0.0 stack-utils: 2.0.5 dev: true - /jest-mock/28.1.0: - resolution: {integrity: sha512-H7BrhggNn77WhdL7O1apG0Q/iwl0Bdd5E1ydhCJzL3oBLh/UYxAwR3EJLsBZ9XA3ZU4PA3UNw4tQjduBTCTmLw==} + /jest-mock/28.1.1: + resolution: {integrity: sha512-bDCb0FjfsmKweAvE09dZT59IMkzgN0fYBH6t5S45NoJfd2DHkS3ySG2K+hucortryhO3fVuXdlxWcbtIuV/Skw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@jest/types': 28.1.0 - '@types/node': 17.0.35 + '@jest/types': 28.1.1 + '@types/node': 17.0.41 dev: true - /jest-pnp-resolver/1.2.2_jest-resolve@28.1.0: + /jest-pnp-resolver/1.2.2_jest-resolve@28.1.1: resolution: {integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==} engines: {node: '>=6'} peerDependencies: @@ -12022,7 +12038,7 @@ packages: jest-resolve: optional: true dependencies: - jest-resolve: 28.1.0 + jest-resolve: 28.1.1 dev: true /jest-regex-util/28.0.2: @@ -12030,170 +12046,170 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dev: true - /jest-resolve-dependencies/28.1.0: - resolution: {integrity: sha512-Ue1VYoSZquPwEvng7Uefw8RmZR+me/1kr30H2jMINjGeHgeO/JgrR6wxj2ofkJ7KSAA11W3cOrhNCbj5Dqqd9g==} + /jest-resolve-dependencies/28.1.1: + resolution: {integrity: sha512-p8Y150xYJth4EXhOuB8FzmS9r8IGLEioiaetgdNGb9VHka4fl0zqWlVe4v7mSkYOuEUg2uB61iE+zySDgrOmgQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: jest-regex-util: 28.0.2 - jest-snapshot: 28.1.0 + jest-snapshot: 28.1.1 transitivePeerDependencies: - supports-color dev: true - /jest-resolve/28.1.0: - resolution: {integrity: sha512-vvfN7+tPNnnhDvISuzD1P+CRVP8cK0FHXRwPAcdDaQv4zgvwvag2n55/h5VjYcM5UJG7L4TwE5tZlzcI0X2Lhw==} + /jest-resolve/28.1.1: + resolution: {integrity: sha512-/d1UbyUkf9nvsgdBildLe6LAD4DalgkgZcKd0nZ8XUGPyA/7fsnaQIlKVnDiuUXv/IeZhPEDrRJubVSulxrShA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: chalk: 4.1.2 graceful-fs: 4.2.10 - jest-haste-map: 28.1.0 - jest-pnp-resolver: 1.2.2_jest-resolve@28.1.0 - jest-util: 28.1.0 - jest-validate: 28.1.0 + jest-haste-map: 28.1.1 + jest-pnp-resolver: 1.2.2_jest-resolve@28.1.1 + jest-util: 28.1.1 + jest-validate: 28.1.1 resolve: 1.22.0 resolve.exports: 1.1.0 slash: 3.0.0 dev: true - /jest-runner/28.1.0: - resolution: {integrity: sha512-FBpmuh1HB2dsLklAlRdOxNTTHKFR6G1Qmd80pVDvwbZXTriqjWqjei5DKFC1UlM732KjYcE6yuCdiF0WUCOS2w==} + /jest-runner/28.1.1: + resolution: {integrity: sha512-W5oFUiDBgTsCloTAj6q95wEvYDB0pxIhY6bc5F26OucnwBN+K58xGTGbliSMI4ChQal5eANDF+xvELaYkJxTmA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@jest/console': 28.1.0 - '@jest/environment': 28.1.0 - '@jest/test-result': 28.1.0 - '@jest/transform': 28.1.0 - '@jest/types': 28.1.0 - '@types/node': 17.0.35 + '@jest/console': 28.1.1 + '@jest/environment': 28.1.1 + '@jest/test-result': 28.1.1 + '@jest/transform': 28.1.1 + '@jest/types': 28.1.1 + '@types/node': 17.0.41 chalk: 4.1.2 emittery: 0.10.2 graceful-fs: 4.2.10 - jest-docblock: 28.0.2 - jest-environment-node: 28.1.0 - jest-haste-map: 28.1.0 - jest-leak-detector: 28.1.0 - jest-message-util: 28.1.0 - jest-resolve: 28.1.0 - jest-runtime: 28.1.0 - jest-util: 28.1.0 - jest-watcher: 28.1.0 - jest-worker: 28.1.0 + jest-docblock: 28.1.1 + jest-environment-node: 28.1.1 + jest-haste-map: 28.1.1 + jest-leak-detector: 28.1.1 + jest-message-util: 28.1.1 + jest-resolve: 28.1.1 + jest-runtime: 28.1.1 + jest-util: 28.1.1 + jest-watcher: 28.1.1 + jest-worker: 28.1.1 source-map-support: 0.5.13 throat: 6.0.1 transitivePeerDependencies: - supports-color dev: true - /jest-runtime/28.1.0: - resolution: {integrity: sha512-wNYDiwhdH/TV3agaIyVF0lsJ33MhyujOe+lNTUiolqKt8pchy1Hq4+tDMGbtD5P/oNLA3zYrpx73T9dMTOCAcg==} + /jest-runtime/28.1.1: + resolution: {integrity: sha512-J89qEJWW0leOsqyi0D9zHpFEYHwwafFdS9xgvhFHtIdRghbadodI0eA+DrthK/1PebBv3Px8mFSMGKrtaVnleg==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@jest/environment': 28.1.0 - '@jest/fake-timers': 28.1.0 - '@jest/globals': 28.1.0 + '@jest/environment': 28.1.1 + '@jest/fake-timers': 28.1.1 + '@jest/globals': 28.1.1 '@jest/source-map': 28.0.2 - '@jest/test-result': 28.1.0 - '@jest/transform': 28.1.0 - '@jest/types': 28.1.0 + '@jest/test-result': 28.1.1 + '@jest/transform': 28.1.1 + '@jest/types': 28.1.1 chalk: 4.1.2 cjs-module-lexer: 1.2.2 collect-v8-coverage: 1.0.1 execa: 5.1.1 glob: 7.2.3 graceful-fs: 4.2.10 - jest-haste-map: 28.1.0 - jest-message-util: 28.1.0 - jest-mock: 28.1.0 + jest-haste-map: 28.1.1 + jest-message-util: 28.1.1 + jest-mock: 28.1.1 jest-regex-util: 28.0.2 - jest-resolve: 28.1.0 - jest-snapshot: 28.1.0 - jest-util: 28.1.0 + jest-resolve: 28.1.1 + jest-snapshot: 28.1.1 + jest-util: 28.1.1 slash: 3.0.0 strip-bom: 4.0.0 transitivePeerDependencies: - supports-color dev: true - /jest-snapshot/28.1.0: - resolution: {integrity: sha512-ex49M2ZrZsUyQLpLGxQtDbahvgBjlLPgklkqGM0hq/F7W/f8DyqZxVHjdy19QKBm4O93eDp+H5S23EiTbbUmHw==} + /jest-snapshot/28.1.1: + resolution: {integrity: sha512-1KjqHJ98adRcbIdMizjF5DipwZFbvxym/kFO4g4fVZCZRxH/dqV8TiBFCa6rqic3p0karsy8RWS1y4E07b7P0A==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@babel/core': 7.18.0 - '@babel/generator': 7.18.0 - '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.18.0 - '@babel/traverse': 7.18.0 - '@babel/types': 7.18.0 - '@jest/expect-utils': 28.1.0 - '@jest/transform': 28.1.0 - '@jest/types': 28.1.0 + '@babel/core': 7.18.2 + '@babel/generator': 7.18.2 + '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/traverse': 7.18.2 + '@babel/types': 7.18.4 + '@jest/expect-utils': 28.1.1 + '@jest/transform': 28.1.1 + '@jest/types': 28.1.1 '@types/babel__traverse': 7.17.1 - '@types/prettier': 2.6.1 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.0 + '@types/prettier': 2.6.3 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.2 chalk: 4.1.2 - expect: 28.1.0 + expect: 28.1.1 graceful-fs: 4.2.10 - jest-diff: 28.1.0 + jest-diff: 28.1.1 jest-get-type: 28.0.2 - jest-haste-map: 28.1.0 - jest-matcher-utils: 28.1.0 - jest-message-util: 28.1.0 - jest-util: 28.1.0 + jest-haste-map: 28.1.1 + jest-matcher-utils: 28.1.1 + jest-message-util: 28.1.1 + jest-util: 28.1.1 natural-compare: 1.4.0 - pretty-format: 28.1.0 + pretty-format: 28.1.1 semver: 7.3.7 transitivePeerDependencies: - supports-color dev: true - /jest-util/28.1.0: - resolution: {integrity: sha512-qYdCKD77k4Hwkose2YBEqQk7PzUf/NSE+rutzceduFveQREeH6b+89Dc9+wjX9dAwHcgdx4yedGA3FQlU/qCTA==} + /jest-util/28.1.1: + resolution: {integrity: sha512-FktOu7ca1DZSyhPAxgxB6hfh2+9zMoJ7aEQA759Z6p45NuO8mWcqujH+UdHlCm/V6JTWwDztM2ITCzU1ijJAfw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@jest/types': 28.1.0 - '@types/node': 17.0.35 + '@jest/types': 28.1.1 + '@types/node': 17.0.41 chalk: 4.1.2 ci-info: 3.3.1 graceful-fs: 4.2.10 picomatch: 2.3.1 dev: true - /jest-validate/28.1.0: - resolution: {integrity: sha512-Lly7CJYih3vQBfjLeANGgBSBJ7pEa18cxpQfQEq2go2xyEzehnHfQTjoUia8xUv4x4J80XKFIDwJJThXtRFQXQ==} + /jest-validate/28.1.1: + resolution: {integrity: sha512-Kpf6gcClqFCIZ4ti5++XemYJWUPCFUW+N2gknn+KgnDf549iLul3cBuKVe1YcWRlaF8tZV8eJCap0eECOEE3Ug==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@jest/types': 28.1.0 + '@jest/types': 28.1.1 camelcase: 6.3.0 chalk: 4.1.2 jest-get-type: 28.0.2 leven: 3.1.0 - pretty-format: 28.1.0 + pretty-format: 28.1.1 dev: true - /jest-watcher/28.1.0: - resolution: {integrity: sha512-tNHMtfLE8Njcr2IRS+5rXYA4BhU90gAOwI9frTGOqd+jX0P/Au/JfRSNqsf5nUTcWdbVYuLxS1KjnzILSoR5hA==} + /jest-watcher/28.1.1: + resolution: {integrity: sha512-RQIpeZ8EIJMxbQrXpJQYIIlubBnB9imEHsxxE41f54ZwcqWLysL/A0ZcdMirf+XsMn3xfphVQVV4EW0/p7i7Ug==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@jest/test-result': 28.1.0 - '@jest/types': 28.1.0 - '@types/node': 17.0.35 + '@jest/test-result': 28.1.1 + '@jest/types': 28.1.1 + '@types/node': 17.0.41 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.10.2 - jest-util: 28.1.0 + jest-util: 28.1.1 string-length: 4.0.2 dev: true - /jest-worker/28.1.0: - resolution: {integrity: sha512-ZHwM6mNwaWBR52Snff8ZvsCTqQsvhCxP/bT1I6T6DAnb6ygkshsyLQIMxFwHpYxht0HOoqt23JlC01viI7T03A==} + /jest-worker/28.1.1: + resolution: {integrity: sha512-Au7slXB08C6h+xbJPp7VIb6U0XX5Kc9uel/WFc6/rcTzGiaVCBRngBExSYuXSLFPULPSYU3cJ3ybS988lNFQhQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true - /jest/28.1.0_@types+node@17.0.35: - resolution: {integrity: sha512-TZR+tHxopPhzw3c3560IJXZWLNHgpcz1Zh0w5A65vynLGNcg/5pZ+VildAd7+XGOu6jd58XMY/HNn0IkZIXVXg==} + /jest/28.1.1_@types+node@17.0.41: + resolution: {integrity: sha512-qw9YHBnjt6TCbIDMPMpJZqf9E12rh6869iZaN08/vpOGgHJSAaLLUn6H8W3IAEuy34Ls3rct064mZLETkxJ2XA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} hasBin: true peerDependencies: @@ -12202,9 +12218,10 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 28.1.0 + '@jest/core': 28.1.1 + '@jest/types': 28.1.1 import-local: 3.1.0 - jest-cli: 28.1.0_@types+node@17.0.35 + jest-cli: 28.1.1_@types+node@17.0.41 transitivePeerDependencies: - '@types/node' - supports-color @@ -12250,18 +12267,18 @@ packages: peerDependencies: '@babel/preset-env': ^7.1.6 dependencies: - '@babel/core': 7.18.0 - '@babel/parser': 7.18.0 - '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.0 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.18.0 - '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.0 - '@babel/plugin-transform-modules-commonjs': 7.18.0_@babel+core@7.18.0 - '@babel/preset-flow': 7.17.12_@babel+core@7.18.0 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.0 - '@babel/register': 7.17.7_@babel+core@7.18.0 - babel-core: 7.0.0-bridge.0_@babel+core@7.18.0 + '@babel/core': 7.18.2 + '@babel/parser': 7.18.4 + '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-transform-modules-commonjs': 7.18.2_@babel+core@7.18.2 + '@babel/preset-flow': 7.17.12_@babel+core@7.18.2 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.2 + '@babel/register': 7.17.7_@babel+core@7.18.2 + babel-core: 7.0.0-bridge.0_@babel+core@7.18.2 colors: 1.4.0 - flow-parser: 0.178.0 + flow-parser: 0.179.0 graceful-fs: 4.2.10 micromatch: 3.1.10 neo-async: 2.6.2 @@ -12301,7 +12318,7 @@ packages: dev: false /jsonfile/4.0.0: - resolution: {integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=} + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} optionalDependencies: graceful-fs: 4.2.10 @@ -12336,14 +12353,14 @@ packages: dev: false /kind-of/3.2.2: - resolution: {integrity: sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=} + resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} engines: {node: '>=0.10.0'} dependencies: is-buffer: 1.1.6 dev: false /kind-of/4.0.0: - resolution: {integrity: sha1-IIE989cSkosgc3hpGkUGb65y3Vc=} + resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} engines: {node: '>=0.10.0'} dependencies: is-buffer: 1.1.6 @@ -12420,8 +12437,8 @@ packages: engines: {node: '>=6'} dev: true - /libphonenumber-js/1.10.4: - resolution: {integrity: sha512-9QWxEk4GW5RDnFzt8UtyRENfFpAN8u7Sbf9wf32tcXY9tdtnz1dKHIBwW2Wnfx8ypXJb9zUnTpK9aQJ/B8AlnA==} + /libphonenumber-js/1.10.6: + resolution: {integrity: sha512-CIjT100/SmntsUjsLVs2t3ufeN4KdNXUxhD07tH153pdbaCWuAjv0jK/gPuywR3IImB/U/MQM+x9RfhMs5XZiA==} dev: false /light-my-request/4.10.1: @@ -12430,7 +12447,7 @@ packages: ajv: 8.11.0 cookie: 0.5.0 process-warning: 1.0.0 - set-cookie-parser: 2.4.8 + set-cookie-parser: 2.5.0 /lilconfig/2.0.5: resolution: {integrity: sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==} @@ -12447,7 +12464,7 @@ packages: dev: true /load-script/1.0.0: - resolution: {integrity: sha1-BJGTngvuVkPuSUp+PaPSuscMbKQ=} + resolution: {integrity: sha512-kPEjMFtZvwL9TaZo0uZ2ml+Ye9HUMmPwbYRJ324qF9tqMejwykJ5ggTyvzmrbBeapCAbk98BSbTeovHEEP1uCA==} dev: false /load-yaml-file/0.2.0: @@ -12481,26 +12498,26 @@ packages: p-locate: 5.0.0 /lodash.chunk/4.2.0: - resolution: {integrity: sha1-ZuXOH3btJ7QwPYxlEujRIW6BBrw=} + resolution: {integrity: sha512-ZzydJKfUHJwHa+hF5X66zLFCBrWn5GeF28OHEr4WVWtNDXlQ/IjWKPBiikqKo2ne0+v6JgCgJ0GzJp8k8bHC7w==} dev: false /lodash.clonedeep/4.5.0: - resolution: {integrity: sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=} + resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==} dev: false /lodash.flatmap/4.5.0: - resolution: {integrity: sha1-74y/QI9uSCaGYzRTBcaswLd4cC4=} + resolution: {integrity: sha512-/OcpcAGWlrZyoHGeHh3cAoa6nGdX6QYtmzNP84Jqol6UEQQ2gIaU3H+0eICcjcKGl0/XF8LWOujNn9lffsnaOg==} dev: false /lodash.flatten/4.4.0: - resolution: {integrity: sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=} + resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==} dev: false /lodash.get/4.4.2: - resolution: {integrity: sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=} + resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} /lodash.memoize/4.1.2: - resolution: {integrity: sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=} + resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} /lodash.merge/4.6.2: resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} @@ -12511,11 +12528,11 @@ packages: dev: false /lodash.startcase/4.4.0: - resolution: {integrity: sha1-lDbjTtJgk+1/+uGTYUQ1CRXZrdg=} + resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} dev: true /lodash.topath/4.5.2: - resolution: {integrity: sha1-NhY1Hzu6YZlKCTGYlmC9AyVP0Ak=} + resolution: {integrity: sha512-1/W4dM+35DwvE/iEd1M9ekewOSTlpFekhw9mhAtrwjVqUr83/ilQiyAvmg4tVX7Unkcfl1KC+i9WdaT4B6aQcg==} dev: false /lodash/4.17.21: @@ -12607,16 +12624,16 @@ packages: dev: true /manage-path/2.0.0: - resolution: {integrity: sha1-9M+EV7km7u4qg7FzUBQUvHbrlZc=} + resolution: {integrity: sha512-NJhyB+PJYTpxhxZJ3lecIGgh4kwIY2RAh44XvAz9UlqthlQwtPBf62uBVR8XaD8CRuSjQ6TnZH2lNJkbLPZM2A==} dev: false /map-cache/0.2.2: - resolution: {integrity: sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=} + resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} engines: {node: '>=0.10.0'} dev: false /map-obj/1.0.1: - resolution: {integrity: sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=} + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} engines: {node: '>=0.10.0'} dev: true @@ -12626,11 +12643,11 @@ packages: dev: true /map-stream/0.1.0: - resolution: {integrity: sha1-5WqpTEyAVaFkBKBnS3jyFffI4ZQ=} + resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==} dev: true /map-visit/1.0.0: - resolution: {integrity: sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=} + resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} engines: {node: '>=0.10.0'} dependencies: object-visit: 1.0.1 @@ -12659,7 +12676,7 @@ packages: /match-sorter/6.3.1: resolution: {integrity: sha512-mxybbo3pPNuA+ZuCUhm5bwNkXrJTbsk5VWbR5wiwz/GC6LIiegBGn2w3O08UG/jdbYLinw51fSQ5xNU1U3MgBw==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 remove-accents: 0.4.2 dev: false @@ -12692,7 +12709,7 @@ packages: dependencies: '@types/mdast': 3.0.10 '@types/unist': 2.0.6 - decode-named-character-reference: 1.0.1 + decode-named-character-reference: 1.0.2 mdast-util-to-string: 3.1.0 micromark: 3.0.10 micromark-util-decode-numeric-character-reference: 1.0.0 @@ -12761,8 +12778,8 @@ packages: - supports-color dev: false - /mdast-util-mdx-expression/1.2.0: - resolution: {integrity: sha512-wb36oi09XxqO9RVqgfD+xo8a7xaNgS+01+k3v0GKW0X0bYbeBmUZz22Z/IJ8SuphVlG+DNgNo9VoEaUJ3PKfJQ==} + /mdast-util-mdx-expression/1.2.1: + resolution: {integrity: sha512-BtQwyalaq6jRjx0pagtuAwGrmzL1yInrfA4EJv7GOoiPOUbR4gr6h65I+G3WTh1/Cag2Eda4ip400Ch6CFmWiA==} dependencies: '@types/estree-jsx': 0.0.1 '@types/hast': 2.3.4 @@ -12782,7 +12799,7 @@ packages: ccount: 2.0.1 mdast-util-to-markdown: 1.3.0 parse-entities: 4.0.0 - stringify-entities: 4.0.2 + stringify-entities: 4.0.3 unist-util-remove-position: 4.0.1 unist-util-stringify-position: 3.0.2 vfile-message: 3.1.2 @@ -12791,7 +12808,7 @@ packages: /mdast-util-mdx/2.0.0: resolution: {integrity: sha512-M09lW0CcBT1VrJUaF/PYxemxxHa7SLDHdSn94Q9FhxjCQfuW7nMAWKWimTmA3OyDMSTH981NN1csW1X+HPSluw==} dependencies: - mdast-util-mdx-expression: 1.2.0 + mdast-util-mdx-expression: 1.2.1 mdast-util-mdx-jsx: 2.0.1 mdast-util-mdxjs-esm: 1.2.0 transitivePeerDependencies: @@ -12846,7 +12863,7 @@ packages: dev: false /mdurl/1.0.1: - resolution: {integrity: sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=} + resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} /mdx-mermaid/1.2.2_kiidlhfndo6uojt2z2sy3fi7nm: resolution: {integrity: sha512-izl9Vaus0fJHJb6IGgcGZ79LpfFACfn28ExPXKL815RTMT9bgDRIAubufZUCgoCAAv/2S1VTxJLWTwbck4TpLA==} @@ -12905,27 +12922,27 @@ packages: yargs-parser: 18.1.3 dev: true - /mercurius/9.5.0: - resolution: {integrity: sha512-KawMnUZbhpwGaGdccv38F572UpbrxXpDGSK2BZaJ3na+uvmh+xavjNT6bpBFt8LZEACVBqsQeQKpTBZGr/P9zw==} + /mercurius/9.8.0: + resolution: {integrity: sha512-BNZItAUpEbHrnvMYBXyCzTeftPxubN8iJLr4SFKo0vDMZ0ZQUhPONuF6XAmKr+JcEYXMn3/V2J/FUixqVOnAqw==} engines: {node: '>=12.9.0'} dependencies: - '@fastify/error': 2.0.0 + '@fastify/error': 3.0.0 '@fastify/static': 5.0.2 '@fastify/websocket': 5.0.0 '@types/isomorphic-form-data': 2.0.0 events.on: 1.0.1 fastify-plugin: 3.0.1 graphql: 16.5.0 - graphql-jit: 0.7.3_graphql@16.5.0 - mqemitter: 4.5.0 + graphql-jit: 0.7.4_graphql@16.5.0 + mqemitter: 5.0.0 p-map: 4.0.0 readable-stream: 3.6.0 safe-stable-stringify: 2.3.1 secure-json-parse: 2.4.0 single-user-cache: 0.6.0 tiny-lru: 8.0.2 - undici: 5.2.0 - ws: 8.6.0 + undici: 5.4.0 + ws: 8.7.0 transitivePeerDependencies: - bufferutil - supports-color @@ -12961,7 +12978,7 @@ packages: - supports-color dev: false - /meros/1.2.0_@types+node@17.0.35: + /meros/1.2.0_@types+node@17.0.41: resolution: {integrity: sha512-3QRZIS707pZQnijHdhbttXRWwrHhZJ/gzolneoxKVz9N/xmsvY/7Ls8lpnI9gxbgxjcHsAVEW3mgwiZCo6kkJQ==} engines: {node: '>=12'} peerDependencies: @@ -12970,17 +12987,17 @@ packages: '@types/node': optional: true dependencies: - '@types/node': 17.0.35 + '@types/node': 17.0.41 dev: true /methods/1.1.2: - resolution: {integrity: sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=} + resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} engines: {node: '>= 0.6'} /micromark-core-commonmark/1.0.6: resolution: {integrity: sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==} dependencies: - decode-named-character-reference: 1.0.1 + decode-named-character-reference: 1.0.2 micromark-factory-destination: 1.0.0 micromark-factory-label: 1.0.2 micromark-factory-space: 1.0.0 @@ -12989,7 +13006,7 @@ packages: micromark-util-character: 1.1.0 micromark-util-chunked: 1.0.0 micromark-util-classify-character: 1.0.0 - micromark-util-html-tag-name: 1.0.0 + micromark-util-html-tag-name: 1.1.0 micromark-util-normalize-identifier: 1.0.0 micromark-util-resolve-all: 1.0.0 micromark-util-subtokenize: 1.0.2 @@ -13222,7 +13239,7 @@ packages: /micromark-util-decode-string/1.0.2: resolution: {integrity: sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==} dependencies: - decode-named-character-reference: 1.0.1 + decode-named-character-reference: 1.0.2 micromark-util-character: 1.1.0 micromark-util-decode-numeric-character-reference: 1.0.0 micromark-util-symbol: 1.0.1 @@ -13244,8 +13261,8 @@ packages: vfile-message: 3.1.2 dev: false - /micromark-util-html-tag-name/1.0.0: - resolution: {integrity: sha512-NenEKIshW2ZI/ERv9HtFNsrn3llSPZtY337LID/24WeLqMzeZhBEE6BQ0vS2ZBjshm5n40chKtJ3qjAbVV8S0g==} + /micromark-util-html-tag-name/1.1.0: + resolution: {integrity: sha512-BKlClMmYROy9UiV03SwNmckkjn8QHVaWkqoAqzivabvdGcwNGMMMH/5szAnywmsTBUzDsU57/mFi0sp4BQO6dA==} dev: false /micromark-util-normalize-identifier/1.0.0: @@ -13290,7 +13307,7 @@ packages: dependencies: '@types/debug': 4.1.7 debug: 4.3.4 - decode-named-character-reference: 1.0.1 + decode-named-character-reference: 1.0.2 micromark-core-commonmark: 1.0.6 micromark-factory-space: 1.0.0 micromark-util-character: 1.1.0 @@ -13370,12 +13387,12 @@ packages: engines: {node: '>=4'} dev: true - /miniflare/2.4.0: - resolution: {integrity: sha512-xOBL/dQsUL95rxIYO+KrrVPPpm2TAf6TKl4AvhcjSfUeVkzDWd/y9f7hXCt8x6srDoK0Z2LpYouatvSfSUzGOw==} + /miniflare/2.5.0: + resolution: {integrity: sha512-3IR+n/kLBA7zQ20HDjnA0HufQlr197krD8jPsaYO5wTrkIUCTvrilbI0sCo0X9CP/I3BCIl8fiZc1Jf7+MX7jQ==} engines: {node: '>=16.7'} hasBin: true peerDependencies: - '@miniflare/storage-redis': 2.4.0 + '@miniflare/storage-redis': 2.5.0 cron-schedule: ^3.0.4 ioredis: ^4.27.9 peerDependenciesMeta: @@ -13386,24 +13403,24 @@ packages: ioredis: optional: true dependencies: - '@miniflare/cache': 2.4.0 - '@miniflare/cli-parser': 2.4.0 - '@miniflare/core': 2.4.0 - '@miniflare/durable-objects': 2.4.0 - '@miniflare/html-rewriter': 2.4.0 - '@miniflare/http-server': 2.4.0 - '@miniflare/kv': 2.4.0 - '@miniflare/runner-vm': 2.4.0 - '@miniflare/scheduler': 2.4.0 - '@miniflare/shared': 2.4.0 - '@miniflare/sites': 2.4.0 - '@miniflare/storage-file': 2.4.0 - '@miniflare/storage-memory': 2.4.0 - '@miniflare/web-sockets': 2.4.0 + '@miniflare/cache': 2.5.0 + '@miniflare/cli-parser': 2.5.0 + '@miniflare/core': 2.5.0 + '@miniflare/durable-objects': 2.5.0 + '@miniflare/html-rewriter': 2.5.0 + '@miniflare/http-server': 2.5.0 + '@miniflare/kv': 2.5.0 + '@miniflare/runner-vm': 2.5.0 + '@miniflare/scheduler': 2.5.0 + '@miniflare/shared': 2.5.0 + '@miniflare/sites': 2.5.0 + '@miniflare/storage-file': 2.5.0 + '@miniflare/storage-memory': 2.5.0 + '@miniflare/web-sockets': 2.5.0 kleur: 4.1.4 semiver: 1.1.0 source-map-support: 0.5.21 - undici: 4.13.0 + undici: 5.3.0 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -13506,12 +13523,12 @@ packages: resolution: {integrity: sha512-9ARkWHBs+6YJIvrIp0Ik5tyTTtP9PoV0Ssu2Ocq5y9v8+NOOpWiRshAp8c4rZVWTOe+157on/5G+zj5pwIQFEQ==} dev: false - /mqemitter/4.5.0: - resolution: {integrity: sha512-Mp/zytFeIv6piJQkEKnncHcP4R/ErJc5C7dfonkhkNUT2LA/nTayrfNxbipp3M5iCJUTQSUtzfQAQA3XVcKz6w==} + /mqemitter/5.0.0: + resolution: {integrity: sha512-rqNRQhGgl0W/NV+Zrx0rpAUTZcSlAtivCVUmXBUPcFYt+AeDEpoJgy5eKlFWJP6xnatONL59WIFdV0W6niOMhw==} engines: {node: '>=10'} dependencies: fastparallel: 2.4.1 - qlobber: 5.0.3 + qlobber: 7.0.0 dev: false /mri/1.2.0: @@ -13524,7 +13541,7 @@ packages: dev: true /ms/2.0.0: - resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=} + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} /ms/2.1.2: resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} @@ -13552,8 +13569,8 @@ packages: resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} dev: false - /nano-css/5.3.4_sfoxds7t5ydpegc3knd667wn6m: - resolution: {integrity: sha512-wfcviJB6NOxDIDfr7RFn/GlaN7I/Bhe4d39ZRCJ3xvZX60LVe2qZ+rDqM49nm4YT81gAjzS+ZklhKP/Gnfnubg==} + /nano-css/5.3.5_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-vSB9X12bbNu4ALBu7nigJgRViZ6ja3OU7CeuiV1zMIbXOdmkLahgtPmh3GBOlDxbKY0CitqlPdOReGlBLSp+yg==} peerDependencies: react: '*' react-dom: '*' @@ -13615,7 +13632,7 @@ packages: dev: false /natural-compare/1.4.0: - resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=} + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} dev: true /negotiator/0.6.3: @@ -13642,15 +13659,15 @@ packages: react: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 '@types/hoist-non-react-statics': 3.3.1 - core-js: 3.22.5 + core-js: 3.22.8 hoist-non-react-statics: 3.3.2 - i18next: 21.8.3 + i18next: 21.8.9 i18next-fs-backend: 1.1.4 next: 12.1.6_sfoxds7t5ydpegc3knd667wn6m react: 17.0.2 - react-i18next: 11.16.9_53ijq2bqxzioii5arobfun6eoq + react-i18next: 11.17.0_ohyflxdyo7oportarxwd7iawxa transitivePeerDependencies: - react-dom - react-native @@ -13688,8 +13705,8 @@ packages: react-dom: 17.0.2_react@17.0.2 dev: false - /next-test-api-route-handler/3.1.2_next@12.1.6: - resolution: {integrity: sha512-lnW/nBtp/n8seD1i/POTmf6ZkxzQZUoU8cUYRmZNEOp75cjOyeK5ZG3lXe/JtDMnjs5r1jBnWRQMecwznwfXYA==} + /next-test-api-route-handler/3.1.3_next@12.1.6: + resolution: {integrity: sha512-g49fZY0gSSAcm5J8UmW+Z7iqxk5XIv577s3G5DfPyuz8dTitZlB8Qeco95reMJJiBof9bhv0Gs/scZXnSo+PUg==} engines: {node: '>=12'} peerDependencies: next: '*' @@ -13697,7 +13714,7 @@ packages: next: optional: true dependencies: - cookie: 0.4.2 + cookie: 0.5.0 next: 12.1.6_sfoxds7t5ydpegc3knd667wn6m node-fetch: 2.6.7 transitivePeerDependencies: @@ -13726,7 +13743,7 @@ packages: optional: true dependencies: '@next/env': 12.1.6 - caniuse-lite: 1.0.30001341 + caniuse-lite: 1.0.30001349 postcss: 8.4.5 styled-jsx: 5.0.2 optionalDependencies: @@ -13770,7 +13787,7 @@ packages: optional: true dependencies: '@next/env': 12.1.6 - caniuse-lite: 1.0.30001341 + caniuse-lite: 1.0.30001349 postcss: 8.4.5 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 @@ -13809,23 +13826,23 @@ packages: tslib: 2.4.0 dev: false - /node-abi/3.15.0: - resolution: {integrity: sha512-Ic6z/j6I9RLm4ov7npo1I48UQr2BEyFCqh6p7S1dhEx9jPO0GPGq/e2Rb7x7DroQrmiVMz/Bw1vJm9sPAl2nxA==} + /node-abi/3.22.0: + resolution: {integrity: sha512-u4uAs/4Zzmp/jjsD9cyFYDXeISfUWaAVWshPmDZOFOv4Xl4SbzTXm53I04C2uRueYJ+0t5PEtLH/owbn2Npf/w==} engines: {node: '>=10'} dependencies: semver: 7.3.7 dev: false - /node-addon-api/4.3.0: - resolution: {integrity: sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==} + /node-addon-api/5.0.0: + resolution: {integrity: sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA==} dev: false /node-cleanup/2.1.2: - resolution: {integrity: sha1-esGavSl+Caf3KnFUXZUbUX5N3iw=} + resolution: {integrity: sha512-qN8v/s2PAJwGUtr1/hYTpNKlD6Y9rc4p8KSmJXyGdYGZsDGKXrGThikLFP9OCHFeLeEpQzPwiAtdIvBLqm//Hw==} dev: true /node-dir/0.1.17: - resolution: {integrity: sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU=} + resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} engines: {node: '>= 0.10.5'} dependencies: minimatch: 3.1.2 @@ -13859,10 +13876,10 @@ packages: dev: true /node-int64/0.4.0: - resolution: {integrity: sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=} + resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} - /node-releases/2.0.4: - resolution: {integrity: sha512-gbMzqQtTtDz/00jQzZ21PQzdI9PyLYqUSvD0p3naOhX4odFji0ZxYdnVwPTxmSwkmxhcFImpozceidSG+AgoPQ==} + /node-releases/2.0.5: + resolution: {integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==} /normalize-package-data/2.5.0: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} @@ -13884,7 +13901,7 @@ packages: dev: true /normalize-path/2.1.1: - resolution: {integrity: sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=} + resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} engines: {node: '>=0.10.0'} dependencies: remove-trailing-separator: 1.1.0 @@ -13894,7 +13911,7 @@ packages: engines: {node: '>=0.10.0'} /normalize-range/0.1.2: - resolution: {integrity: sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=} + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} engines: {node: '>=0.10.0'} dev: false @@ -13905,33 +13922,19 @@ packages: path-key: 3.1.1 dev: true - /npmlog/4.1.2: - resolution: {integrity: sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==} - dependencies: - are-we-there-yet: 1.1.7 - console-control-strings: 1.1.0 - gauge: 2.7.4 - set-blocking: 2.0.0 - dev: false - /nprogress/0.2.0: - resolution: {integrity: sha1-y480xTIT2JVyP8urkH6UIq28r7E=} + resolution: {integrity: sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==} dev: false /nullthrows/1.1.1: resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==} - /number-is-nan/1.0.1: - resolution: {integrity: sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=} - engines: {node: '>=0.10.0'} - dev: false - /object-assign/4.1.1: - resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=} + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} /object-copy/0.1.0: - resolution: {integrity: sha1-fn2Fi3gb18mRpBupde04EnVOmYw=} + resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} engines: {node: '>=0.10.0'} dependencies: copy-descriptor: 0.1.1 @@ -13944,8 +13947,8 @@ packages: engines: {node: '>= 6'} dev: false - /object-inspect/1.12.0: - resolution: {integrity: sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==} + /object-inspect/1.12.2: + resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==} /object-keys/1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} @@ -13957,7 +13960,7 @@ packages: engines: {node: '>= 10.12.0'} /object-visit/1.0.1: - resolution: {integrity: sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=} + resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 @@ -13974,7 +13977,7 @@ packages: dev: false /object.pick/1.3.0: - resolution: {integrity: sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=} + resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 @@ -13985,7 +13988,7 @@ packages: dev: false /on-finished/2.3.0: - resolution: {integrity: sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=} + resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} engines: {node: '>= 0.8'} dependencies: ee-first: 1.1.1 @@ -14003,7 +14006,7 @@ packages: dev: false /once/1.4.0: - resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=} + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} dependencies: wrappy: 1.0.2 @@ -14014,7 +14017,7 @@ packages: mimic-fn: 2.1.0 /only/0.0.2: - resolution: {integrity: sha1-Kv3oTQPlC5qO3EROMGEKcCle37Q=} + resolution: {integrity: sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==} /open-cli/7.0.1: resolution: {integrity: sha512-w//Mb5nLGTu9aIAsAehgxV+CGEkd+P3CbdoTW8y2coQ/fmGXBSrea0i4RBqGnd9prSPX1akrBYc0e3NnWM4SPA==} @@ -14058,7 +14061,7 @@ packages: dev: false /os-tmpdir/1.0.2: - resolution: {integrity: sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=} + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} engines: {node: '>=0.10.0'} /outdent/0.5.0: @@ -14087,7 +14090,7 @@ packages: dev: true /p-finally/1.0.0: - resolution: {integrity: sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=} + resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} engines: {node: '>=4'} dev: true @@ -14175,14 +14178,14 @@ packages: character-entities: 2.0.1 character-entities-legacy: 3.0.0 character-reference-invalid: 2.0.1 - decode-named-character-reference: 1.0.1 + decode-named-character-reference: 1.0.2 is-alphanumerical: 2.0.1 is-decimal: 2.0.1 is-hexadecimal: 2.0.1 dev: false /parse-filepath/1.0.2: - resolution: {integrity: sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=} + resolution: {integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==} engines: {node: '>=0.8'} dependencies: is-absolute: 1.0.0 @@ -14215,7 +14218,7 @@ packages: dev: false /pascalcase/0.1.1: - resolution: {integrity: sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=} + resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} engines: {node: '>=0.10.0'} dev: false @@ -14227,7 +14230,7 @@ packages: dev: false /path-exists/3.0.0: - resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=} + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} engines: {node: '>=4'} dev: false @@ -14236,7 +14239,7 @@ packages: engines: {node: '>=8'} /path-is-absolute/1.0.1: - resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=} + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} engines: {node: '>=0.10.0'} /path-key/3.1.1: @@ -14247,19 +14250,19 @@ packages: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} /path-root-regex/0.1.2: - resolution: {integrity: sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=} + resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==} engines: {node: '>=0.10.0'} dev: false /path-root/0.1.1: - resolution: {integrity: sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=} + resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==} engines: {node: '>=0.10.0'} dependencies: path-root-regex: 0.1.2 dev: false /path-to-regexp/0.1.7: - resolution: {integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=} + resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} /path-to-regexp/6.2.1: resolution: {integrity: sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==} @@ -14338,7 +14341,7 @@ packages: resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==} engines: {node: '>=10'} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 dev: false /popmotion/11.0.3: @@ -14351,7 +14354,7 @@ packages: dev: false /posix-character-classes/0.1.1: - resolution: {integrity: sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=} + resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} engines: {node: '>=0.10.0'} dev: false @@ -14425,12 +14428,12 @@ packages: picocolors: 1.0.0 source-map-js: 1.0.2 - /preact/10.7.2: - resolution: {integrity: sha512-GLjn0I3r6ka+NvxJUppsVFqb4V0qDTEHT/QxHlidPuClGaxF/4AI2Qti4a0cv3XMh5n1+D3hLScW10LRIm5msQ==} + /preact/10.7.3: + resolution: {integrity: sha512-giqJXP8VbtA1tyGa3f1n9wiN7PrHtONrDyE3T+ifjr/tTkg+2N4d/6sjC9WyJKv8wM7rOYDveqy5ZoFmYlwo4w==} dev: false - /prebuild-install/7.1.0: - resolution: {integrity: sha512-CNcMgI1xBypOyGqjp3wOc8AAo1nMhZS3Cwd3iHIxOdAUbb+YxdNuM4Z5iIrZ8RLvOsf3F3bl7b7xGq6DjQoNYA==} + /prebuild-install/7.1.1: + resolution: {integrity: sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==} engines: {node: '>=10'} hasBin: true dependencies: @@ -14440,8 +14443,7 @@ packages: minimist: 1.2.6 mkdirp-classic: 0.5.3 napi-build-utils: 1.0.2 - node-abi: 3.15.0 - npmlog: 4.1.2 + node-abi: 3.22.0 pump: 3.0.0 rc: 1.2.8 simple-get: 4.0.1 @@ -14484,8 +14486,8 @@ packages: react-is: 17.0.2 dev: true - /pretty-format/28.1.0: - resolution: {integrity: sha512-79Z4wWOYCdvQkEoEuSlBhHJqWeZ8D8YRPiPctJFCtvuaClGpiwiQYSCUOE6IEKUbbFukKOTFIUAXE8N4EQTo1Q==} + /pretty-format/28.1.1: + resolution: {integrity: sha512-wwJbVTGFHeucr5Jw2bQ9P+VYHyLdAqedFLEkdQUVaBF/eiidDwH5OpilINq4mEfhbCjLnirt6HTTDhv1HaTIQw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@jest/schemas': 28.0.2 @@ -14495,7 +14497,7 @@ packages: dev: true /pretty-hrtime/1.0.3: - resolution: {integrity: sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=} + resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} engines: {node: '>= 0.8'} dev: false @@ -14515,10 +14517,6 @@ packages: prettier: 2.6.2 dev: true - /process-nextick-args/2.0.1: - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} - dev: false - /process-warning/1.0.0: resolution: {integrity: sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==} @@ -14568,7 +14566,7 @@ packages: dev: true /pseudomap/1.0.2: - resolution: {integrity: sha1-8FKijacOYYkX7wqKw0wa5aaChrM=} + resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} dev: true /pump/3.0.0: @@ -14591,9 +14589,9 @@ packages: postcss-selector-parser: 6.0.10 dev: false - /qlobber/5.0.3: - resolution: {integrity: sha512-wW4GTZPePyh0RgOsM18oDyOUlXfurVRgoNyJfS+y7VWPyd0GYhQp5T2tycZFZjonH+hngxIfklGJhTP/ghidgQ==} - engines: {node: '>= 8'} + /qlobber/7.0.0: + resolution: {integrity: sha512-hQbAIJbrCMLWpjr8ozRmYDdMmU2tMu1bumL3LNxdFaF2Duq5EqcLD59+/F6hyO4ykJMccKhd65wkMRgr7UhgHw==} + engines: {node: '>= 14'} dev: false /qs/6.10.3: @@ -14602,6 +14600,13 @@ packages: dependencies: side-channel: 1.0.4 + /qs/6.10.5: + resolution: {integrity: sha512-O5RlPh0VFtR78y79rgcgKK4wbAI0C5zGVLztOIdpWX6ep368q5Hv6XRxDvXuZ9q3C6v+e3n8UfZZJw7IIG27eQ==} + engines: {node: '>=0.6'} + dependencies: + side-channel: 1.0.4 + dev: false + /queue-microtask/1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} @@ -14667,7 +14672,7 @@ packages: react: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 react: 17.0.2 dev: false @@ -14696,7 +14701,7 @@ packages: react: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 focus-lock: 0.9.2 prop-types: 15.8.1 react: 17.0.2 @@ -14707,8 +14712,8 @@ packages: - '@types/react' dev: false - /react-i18next/11.16.9_53ijq2bqxzioii5arobfun6eoq: - resolution: {integrity: sha512-euXxWvcEAvsY7ZVkwx9ztCq4butqtsGHEkpkuo0RMj8Ru09IF9o2KxCyN+zyv51Nr0aBh/elaTIiR6fMb8YfVg==} + /react-i18next/11.17.0_ohyflxdyo7oportarxwd7iawxa: + resolution: {integrity: sha512-ewq2S4bVUTRqOMAdM/XvzCn9xUPIryzeBQRghmJ8lC6VI/8Kp7z1GwoLyt8j7GB2ywhN2SjPk7LU4sHzVeu7aw==} peerDependencies: i18next: '>= 19.0.0' react: '*' @@ -14722,16 +14727,16 @@ packages: react-native: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 html-escaper: 2.0.2 html-parse-stringify: 3.0.1 - i18next: 21.8.3 + i18next: 21.8.9 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 dev: false - /react-icons/4.3.1_react@17.0.2: - resolution: {integrity: sha512-cB10MXLTs3gVuXimblAdI71jrJx8njrJZmNMEMC+sQu5B/BIOmlsAjskdqpn81y8UBVEGuHODd7/ci5DvoSzTQ==} + /react-icons/4.4.0_react@17.0.2: + resolution: {integrity: sha512-fSbvHeVYo/B5/L4VhB7sBA1i2tS8MkT0Hb9t2H1AVPkwGfVHLJCqyr2Py9dKMxsyM63Eng1GkdZfbWj+Fmv8Rg==} peerDependencies: react: '*' peerDependenciesMeta: @@ -14741,8 +14746,8 @@ packages: react: 17.0.2 dev: false - /react-instantsearch-core/6.26.0_w7dlztxainugwieacvqvd4x65u: - resolution: {integrity: sha512-rBfyP05t6SHuBcXiKibzz0jgA8/qLepy4J/RWb9z++GM6wHO/D0Rhs5eFCw9fBJbXKs3iw1FR5BhxuJV1zBhsQ==} + /react-instantsearch-core/6.27.0_w7dlztxainugwieacvqvd4x65u: + resolution: {integrity: sha512-InjSaw6WlIp9dqkJX/NqBeBMQ8tz5ghfpDPWyKBOLo6ijjOYD5qK8bkBehWoceI5+MHMpGq37TIrNUok3XLeAQ==} peerDependencies: algoliasearch: '>= 3.1 < 5' react: '*' @@ -14750,7 +14755,7 @@ packages: react: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 algoliasearch: 4.13.1 algoliasearch-helper: 3.8.2_algoliasearch@4.13.1 prop-types: 15.8.1 @@ -14769,14 +14774,14 @@ packages: react-dom: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 algoliasearch-helper: 3.8.2_algoliasearch@4.13.1 classnames: 2.3.1 prop-types: 15.8.1 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 react-fast-compare: 3.2.0 - react-instantsearch-core: 6.26.0_w7dlztxainugwieacvqvd4x65u + react-instantsearch-core: 6.27.0_w7dlztxainugwieacvqvd4x65u transitivePeerDependencies: - algoliasearch dev: false @@ -14831,8 +14836,8 @@ packages: react-fast-compare: 3.2.0 dev: false - /react-query/3.39.0_sfoxds7t5ydpegc3knd667wn6m: - resolution: {integrity: sha512-Od0IkSuS79WJOhzWBx/ys0x13+7wFqgnn64vBqqAAnZ9whocVhl/y1padD5uuZ6EIkXbFbInax0qvY7zGM0thA==} + /react-query/3.39.1_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-qYKT1bavdDiQZbngWZyPotlBVzcBjDYEJg5RQLBa++5Ix5jjfbEYJmHSZRZD+USVHUSvl/ey9Hu+QfF1QAK80A==} peerDependencies: react: '*' react-dom: '*' @@ -14845,15 +14850,15 @@ packages: react-native: optional: true dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 broadcast-channel: 3.7.0 match-sorter: 6.3.1 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 dev: false - /react-remove-scroll-bar/2.3.1_hx2b44akkvgcgvvtmk7ds2qk6q: - resolution: {integrity: sha512-IvGX3mJclEF7+hga8APZczve1UyGMkMG+tjS0o/U1iLgvZRpjFAQEUBJ4JETfvbNlfNnZnoDyWJCICkA15Mghg==} + /react-remove-scroll-bar/2.3.3_hx2b44akkvgcgvvtmk7ds2qk6q: + resolution: {integrity: sha512-i9GMNWwpz8XpUpQ6QlevUtFjHGqnPG4Hxs+wlIJntu/xcsZVEpJcIV71K3ZkqNy2q3GfgvkD7y6t/Sv8ofYSbw==} engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -14866,7 +14871,7 @@ packages: dependencies: '@types/react': 17.0.45 react: 17.0.2 - react-style-singleton: 2.2.0_hx2b44akkvgcgvvtmk7ds2qk6q + react-style-singleton: 2.2.1_hx2b44akkvgcgvvtmk7ds2qk6q tslib: 2.4.0 dev: false @@ -14884,8 +14889,8 @@ packages: dependencies: '@types/react': 17.0.45 react: 17.0.2 - react-remove-scroll-bar: 2.3.1_hx2b44akkvgcgvvtmk7ds2qk6q - react-style-singleton: 2.2.0_hx2b44akkvgcgvvtmk7ds2qk6q + react-remove-scroll-bar: 2.3.3_hx2b44akkvgcgvvtmk7ds2qk6q + react-style-singleton: 2.2.1_hx2b44akkvgcgvvtmk7ds2qk6q tslib: 1.14.1 use-callback-ref: 1.3.0_hx2b44akkvgcgvvtmk7ds2qk6q use-sidecar: 1.1.2_hx2b44akkvgcgvvtmk7ds2qk6q @@ -14903,8 +14908,8 @@ packages: resize-observer-polyfill: 1.5.1 dev: false - /react-style-singleton/2.2.0_hx2b44akkvgcgvvtmk7ds2qk6q: - resolution: {integrity: sha512-nK7mN92DMYZEu3cQcAhfwE48NpzO5RpxjG4okbSqRRbfal9Pk+fG2RdQXTMp+f6all1hB9LIJSt+j7dCYrU11g==} + /react-style-singleton/2.2.1_hx2b44akkvgcgvvtmk7ds2qk6q: + resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -14935,11 +14940,11 @@ packages: tslib: 2.4.0 dev: false - /react-use/17.3.2_sfoxds7t5ydpegc3knd667wn6m: - resolution: {integrity: sha512-bj7OD0/1wL03KyWmzFXAFe425zziuTf7q8olwCYBfOeFHY1qfO1FAMjROQLsLZYwG4Rx63xAfb7XAbBrJsZmEw==} + /react-use/17.4.0_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-TgbNTCA33Wl7xzIJegn1HndB4qTS9u03QUwyNycUnXaweZkE4Kq2SB+Yoxx8qbshkZGYBDvUXbXWRUmQDcZZ/Q==} peerDependencies: react: '*' - react-dom: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: react: optional: true @@ -14952,7 +14957,7 @@ packages: fast-deep-equal: 3.1.3 fast-shallow-equal: 1.0.0 js-cookie: 2.2.1 - nano-css: 5.3.4_sfoxds7t5ydpegc3knd667wn6m + nano-css: 5.3.5_sfoxds7t5ydpegc3knd667wn6m react: 17.0.2 react-dom: 17.0.2_react@17.0.2 react-universal-interface: 0.6.2_react@17.0.2+tslib@2.4.0 @@ -15019,18 +15024,6 @@ packages: strip-bom: 3.0.0 dev: true - /readable-stream/2.3.7: - resolution: {integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==} - dependencies: - core-util-is: 1.0.3 - inherits: 2.0.4 - isarray: 1.0.0 - process-nextick-args: 2.0.1 - safe-buffer: 5.1.2 - string_decoder: 1.1.1 - util-deprecate: 1.0.2 - dev: false - /readable-stream/3.6.0: resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==} engines: {node: '>= 6'} @@ -15117,7 +15110,7 @@ packages: dev: false /reinterval/1.1.0: - resolution: {integrity: sha1-M2Hs+jymwYKDOA3Qu5VG85D17Oc=} + resolution: {integrity: sha512-QIRet3SYrGp0HUHO88jVskiG6seqUGC5iAG7AwI/BV4ypGcuqk9Du6YQBUOUqm9c8pw1eyLoIaONifRua1lsEQ==} dev: false /relay-compiler/12.0.0_ptiko6tsqj7cmirxhjfetabnhu: @@ -15126,13 +15119,13 @@ packages: peerDependencies: graphql: '*' dependencies: - '@babel/core': 7.18.0 - '@babel/generator': 7.18.0 - '@babel/parser': 7.18.0 - '@babel/runtime': 7.18.0 - '@babel/traverse': 7.18.0 - '@babel/types': 7.18.0 - babel-preset-fbjs: 3.4.0_@babel+core@7.18.0 + '@babel/core': 7.18.2 + '@babel/generator': 7.18.2 + '@babel/parser': 7.18.4 + '@babel/runtime': 7.18.3 + '@babel/traverse': 7.18.2 + '@babel/types': 7.18.4 + babel-preset-fbjs: 3.4.0_@babel+core@7.18.2 chalk: 4.1.2 fb-watchman: 2.0.1 fbjs: 3.0.4 @@ -15152,7 +15145,7 @@ packages: /relay-runtime/12.0.0: resolution: {integrity: sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 fbjs: 3.0.4 invariant: 2.2.4 transitivePeerDependencies: @@ -15216,7 +15209,7 @@ packages: dev: false /remove-trailing-separator/1.1.0: - resolution: {integrity: sha1-wkvOKig62tW8P1jg1IJJuSN52O8=} + resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} /repeat-element/1.1.4: resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} @@ -15224,12 +15217,12 @@ packages: dev: false /repeat-string/1.6.1: - resolution: {integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc=} + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} engines: {node: '>=0.10'} dev: false /require-directory/2.1.1: - resolution: {integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I=} + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} engines: {node: '>=0.10.0'} /require-env-variable/4.0.1: @@ -15263,7 +15256,7 @@ packages: engines: {node: '>=8'} /resolve-url/0.2.1: - resolution: {integrity: sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=} + resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} deprecated: https://github.com/lydell/resolve-url#deprecated dev: false @@ -15309,11 +15302,11 @@ packages: resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==} /rgb-regex/1.0.1: - resolution: {integrity: sha1-wODWiC3w4jviVKR16O3UGRX+rrE=} + resolution: {integrity: sha512-gDK5mkALDFER2YLqH6imYvK6g02gpNGM4ILDZ472EwWfXZnC2ZEpoB2ECXTyOVUKuk/bPJZMzwQPBYICzP+D3w==} dev: false /rgba-regex/1.0.0: - resolution: {integrity: sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=} + resolution: {integrity: sha512-zgn5OjNQXLUTdq8m17KdaicF6w89TZs8ZU8y0AYENIU6wG8GG6LLm0yLSiPY8DmaYmHdgRW8rnApjoT0fQRfMg==} dev: false /rimraf/2.6.3: @@ -15336,8 +15329,8 @@ packages: dependencies: glob: 7.2.3 - /rollup/2.74.1: - resolution: {integrity: sha512-K2zW7kV8Voua5eGkbnBtWYfMIhYhT9Pel2uhBk2WO5eMee161nPze/XRfvEQPFYz7KgrCCnmh2Wy0AMFLGGmMA==} + /rollup/2.75.6: + resolution: {integrity: sha512-OEf0TgpC9vU6WGROJIk1JA3LR5vk/yvqlzxqdrE2CzzXnqKXNzbAwlWUXis8RS3ZPe7LAq+YUxsRa0l3r27MLA==} engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: @@ -15347,7 +15340,7 @@ packages: /rtl-css-js/1.15.0: resolution: {integrity: sha512-99Cu4wNNIhrI10xxUaABHsdDqzalrSRTie4GeCmbGVuehm4oj+fIy8fTzB+16pmKe8Bv9rl+hxIBez6KxExTew==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 dev: false /run-async/2.4.1: @@ -15361,7 +15354,7 @@ packages: queue-microtask: 1.2.3 /rw/1.3.3: - resolution: {integrity: sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q=} + resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==} dev: false /rxjs/6.6.7: @@ -15388,7 +15381,7 @@ packages: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} /safe-regex/1.1.0: - resolution: {integrity: sha1-QKNmnzsHfR6UPURinhV91IAjvy4=} + resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} dependencies: ret: 0.1.15 dev: false @@ -15407,7 +15400,7 @@ packages: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} /sander/0.5.1: - resolution: {integrity: sha1-dB4kXiMfB8r7b98PEzrfohalAq0=} + resolution: {integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==} dependencies: es6-promise: 3.3.1 graceful-fs: 4.2.10 @@ -15540,8 +15533,8 @@ packages: /set-blocking/2.0.0: resolution: {integrity: sha1-BF+XgtARrppoA93TgrJDkrPYkPc=} - /set-cookie-parser/2.4.8: - resolution: {integrity: sha512-edRH8mBKEWNVIVMKejNnuJxleqYE/ZSdcT8/Nem9/mmosx12pctd80s2Oy00KNZzrogMZS5mauK2/ymL1bvlvg==} + /set-cookie-parser/2.5.0: + resolution: {integrity: sha512-cHMAtSXilfyBePduZEBVPTCftTQWz6ehWJD5YNUg4mqvRosrrjKbo4WS8JkB0/RxonMoohHm7cOGH60mDkRQ9w==} /set-harmonic-interval/1.0.1: resolution: {integrity: sha512-AhICkFV84tBP1aWqPwLZqFvAwqEoVA9kxNMniGEUvzOlm4vLmOFLiTT3UZ6bziJTy4bOVpzWGTfSCbmaayGx8g==} @@ -15569,15 +15562,15 @@ packages: kind-of: 6.0.3 dev: false - /sharp/0.30.4: - resolution: {integrity: sha512-3Onig53Y6lji4NIZo69s14mERXXY/GV++6CzOYx/Rd8bnTwbhFbL09WZd7Ag/CCnA0WxFID8tkY0QReyfL6v0Q==} + /sharp/0.30.6: + resolution: {integrity: sha512-lSdVxFxcndzcXggDrak6ozdGJgmIgES9YVZWtAFrwi+a/H5vModaf51TghBtMPw+71sLxUsTy2j+aB7qLIODQg==} engines: {node: '>=12.13.0'} requiresBuild: true dependencies: color: 4.2.3 detect-libc: 2.0.1 - node-addon-api: 4.3.0 - prebuild-install: 7.1.0 + node-addon-api: 5.0.0 + prebuild-install: 7.1.1 semver: 7.3.7 simple-get: 4.0.1 tar-fs: 2.1.1 @@ -15635,7 +15628,7 @@ packages: dependencies: call-bind: 1.0.2 get-intrinsic: 1.1.1 - object-inspect: 1.12.0 + object-inspect: 1.12.2 /signal-exit/3.0.7: resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} @@ -15864,10 +15857,10 @@ packages: /sprintf-js/1.0.3: resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=} - /stack-generator/2.0.5: - resolution: {integrity: sha512-/t1ebrbHkrLrDuNMdeAcsvynWgoH/i4o8EGGfX7dEYDoTXOYVAkEpFdtshlvabzc6JlJ8Kf9YdFEoz7JkzGN9Q==} + /stack-generator/2.0.10: + resolution: {integrity: sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==} dependencies: - stackframe: 1.2.1 + stackframe: 1.3.4 dev: false /stack-trace/0.0.10: @@ -15881,23 +15874,23 @@ packages: escape-string-regexp: 2.0.0 dev: true - /stackframe/1.2.1: - resolution: {integrity: sha512-h88QkzREN/hy8eRdyNhhsO7RSJ5oyTqxxmmn0dzBIMUclZsjpfmrsg81vp8mjjAs2vAZ72nyWxRUwSwmh0e4xg==} + /stackframe/1.3.4: + resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} dev: false - /stacktrace-gps/3.0.4: - resolution: {integrity: sha512-qIr8x41yZVSldqdqe6jciXEaSCKw1U8XTXpjDuy0ki/apyTn/r3w9hDAAQOhZdxvsC93H+WwwEu5cq5VemzYeg==} + /stacktrace-gps/3.1.2: + resolution: {integrity: sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==} dependencies: source-map: 0.5.6 - stackframe: 1.2.1 + stackframe: 1.3.4 dev: false /stacktrace-js/2.0.2: resolution: {integrity: sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==} dependencies: - error-stack-parser: 2.0.7 - stack-generator: 2.0.5 - stacktrace-gps: 3.0.4 + error-stack-parser: 2.1.4 + stack-generator: 2.0.10 + stacktrace-gps: 3.1.2 dev: false /static-extend/0.1.2: @@ -15957,15 +15950,6 @@ packages: /string-similarity/4.0.4: resolution: {integrity: sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ==} - /string-width/1.0.2: - resolution: {integrity: sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=} - engines: {node: '>=0.10.0'} - dependencies: - code-point-at: 1.1.0 - is-fullwidth-code-point: 1.0.0 - strip-ansi: 3.0.1 - dev: false - /string-width/4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} engines: {node: '>=8'} @@ -15974,31 +15958,18 @@ packages: is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - /string_decoder/1.1.1: - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} - dependencies: - safe-buffer: 5.1.2 - dev: false - /string_decoder/1.3.0: resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} dependencies: safe-buffer: 5.2.1 - /stringify-entities/4.0.2: - resolution: {integrity: sha512-MTxTVcEkorNtBbNpoFJPEh0kKdM6+QbMjLbaxmvaPMmayOXdr/AIVIIJX7FReUVweRBFJfZepK4A4AKgwuFpMQ==} + /stringify-entities/4.0.3: + resolution: {integrity: sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==} dependencies: character-entities-html4: 2.1.0 character-entities-legacy: 3.0.0 dev: false - /strip-ansi/3.0.1: - resolution: {integrity: sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=} - engines: {node: '>=0.10.0'} - dependencies: - ansi-regex: 2.1.1 - dev: false - /strip-ansi/6.0.1: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} engines: {node: '>=8'} @@ -16116,7 +16087,7 @@ packages: minimist: 1.2.6 dev: false - /subscriptions-transport-ws-envelop/2.0.2_ubxm27kysver5qrjxpyajpncji: + /subscriptions-transport-ws-envelop/2.0.2_f3ebkmek6sz5dqes5jni24gc5i: resolution: {integrity: sha512-HMwQgdiMBgWC48LplRtDsgrdQKnsns7VvLZTN1eIFNT01XJd6yuuudrl85TbO5QnTAiw6g2Sh5bjTFYKjFIGwQ==} peerDependencies: graphql: '*' @@ -16125,10 +16096,10 @@ packages: backo2: 1.0.2 eventemitter3: 4.0.7 graphql: 16.1.0-experimental-stream-defer.6 - isomorphic-ws: 4.0.1_ws@8.6.0 + isomorphic-ws: 4.0.1_ws@8.7.0 iterall: 1.3.0 symbol-observable: 4.0.0 - ws: 8.6.0 + ws: 8.7.0 /supports-color/5.5.0: resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} @@ -16160,8 +16131,8 @@ packages: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} - /svelte-check/2.7.1_svelte@3.48.0: - resolution: {integrity: sha512-vHVu2+SQ6ibt77iTQaq2oiOjBgGL48qqcg0ZdEOsP5pPOjgeyR9QbnaEdzdBs9nsVYBc/42haKtzb2uFqS8GVw==} + /svelte-check/2.7.2_svelte@3.48.0: + resolution: {integrity: sha512-TuVX4YtXHbRM8sVuK5Jk+mKWdm3f0d6hvAC6qCTp8yUszGZewpEBCo2V5fRWZCiz+0J4OCiDHOS+DFMxv39rJA==} hasBin: true peerDependencies: svelte: ^3.24.0 @@ -16173,8 +16144,8 @@ packages: picocolors: 1.0.0 sade: 1.8.1 svelte: 3.48.0 - svelte-preprocess: 4.10.6_wwvk7nlptlrqo2czohjtk6eiqm - typescript: 4.6.4 + svelte-preprocess: 4.10.7_dg7s4kx4gpzom5ifrkhkr632g4 + typescript: 4.7.3 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -16188,8 +16159,8 @@ packages: - sugarss dev: true - /svelte-hmr/0.14.11_svelte@3.48.0: - resolution: {integrity: sha512-R9CVfX6DXxW1Kn45Jtmx+yUe+sPhrbYSUp7TkzbW0jI5fVPn6lsNG9NEs5dFg5qRhFNAoVdRw5qQDLALNKhwbQ==} + /svelte-hmr/0.14.12_svelte@3.48.0: + resolution: {integrity: sha512-4QSW/VvXuqVcFZ+RhxiR8/newmwOCTlbYIezvkeN6302YFRE8cXy0naamHcjz8Y9Ce3ITTZtrHrIL0AGfyo61w==} engines: {node: ^12.20 || ^14.13.1 || >= 16} peerDependencies: svelte: '>=3.19.0' @@ -16197,8 +16168,8 @@ packages: svelte: 3.48.0 dev: true - /svelte-preprocess/4.10.6_wwvk7nlptlrqo2czohjtk6eiqm: - resolution: {integrity: sha512-I2SV1w/AveMvgIQlUF/ZOO3PYVnhxfcpNyGt8pxpUVhPfyfL/CZBkkw/KPfuFix5FJ9TnnNYMhACK3DtSaYVVQ==} + /svelte-preprocess/4.10.7_dg7s4kx4gpzom5ifrkhkr632g4: + resolution: {integrity: sha512-sNPBnqYD6FnmdBrUmBCaqS00RyCsCpj2BG58A1JBswNF7b0OKviwxqVrOL/CKyJrLSClrSeqQv5BXNg2RUbPOw==} engines: {node: '>= 9.11.2'} requiresBuild: true peerDependencies: @@ -16207,7 +16178,7 @@ packages: less: ^3.11.3 || ^4.0.0 node-sass: '*' postcss: ^7 || ^8 - postcss-load-config: ^2.1.0 || ^3.0.0 + postcss-load-config: ^2.1.0 || ^3.0.0 || ^4.0.0 pug: ^3.0.0 sass: ^1.26.8 stylus: ^0.55.0 @@ -16245,7 +16216,7 @@ packages: sorcery: 0.10.0 strip-indent: 3.0.0 svelte: 3.48.0 - typescript: 4.6.4 + typescript: 4.7.3 dev: true /svelte/3.48.0: @@ -16263,9 +16234,9 @@ packages: resolution: {integrity: sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==} engines: {node: '>=0.10'} - /sync-fetch/0.3.1: - resolution: {integrity: sha512-xj5qiCDap/03kpci5a+qc5wSJjc8ZSixgG2EUmH1B8Ea2sfWclQA7eH40hiHPCtkCn6MCk4Wb+dqcXdCy2PP3g==} - engines: {node: '>=8'} + /sync-fetch/0.4.1: + resolution: {integrity: sha512-JDtyFEvnKUzt1CxRtzzsGgkBanEv8XRmLyJo0F0nGkpCR8EjYmpOJJXz8GA/SWtlPU0nAYh0+CNMNnFworGyOA==} + engines: {node: '>=14'} dependencies: buffer: 5.7.1 node-fetch: 2.6.7 @@ -16273,15 +16244,15 @@ packages: - encoding dev: true - /systeminformation/5.11.15: - resolution: {integrity: sha512-zUbObRjQeZcu84z9NVSm9JTiCPyPQ3MefJ3+76yvp+TeCv9WsO3szijyQLv0fChRrm2/sl2De3y1ewUOYOtz2Q==} + /systeminformation/5.11.16: + resolution: {integrity: sha512-/a1VfP9WELKLT330yhAHJ4lWCXRYynel1kMMHKc/qdzCgDt3BIcMlo+3tKcTiRHFefjV3fz4AvqMx7dGO/72zw==} engines: {node: '>=8.0.0'} os: [darwin, linux, win32, freebsd, openbsd, netbsd, sunos, android] hasBin: true dev: false - /tabbable/5.3.2: - resolution: {integrity: sha512-6G/8EWRFx8CiSe2++/xHhXkmCRq2rHtDtZbQFHx34cvDfZzIBfvwG9zGUNTWMXWLCYvDj3aQqOzdl3oCxKuBkQ==} + /tabbable/5.3.3: + resolution: {integrity: sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA==} dev: false /tailwindcss/2.2.19_ugi4xkrfysqkt4c4y6hkyfj344: @@ -16297,14 +16268,14 @@ packages: postcss: optional: true dependencies: - arg: 5.0.1 + arg: 5.0.2 autoprefixer: 10.4.7_postcss@8.4.14 bytes: 3.1.2 chalk: 4.1.2 chokidar: 3.5.3 color: 4.2.3 cosmiconfig: 7.0.1 - detective: 5.2.0 + detective: 5.2.1 didyoumean: 1.2.2 dlv: 1.1.3 fast-glob: 3.2.11 @@ -16371,7 +16342,7 @@ packages: resolution: {integrity: sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==} engines: {node: '>=10'} dependencies: - del: 6.1.0 + del: 6.1.1 is-stream: 2.0.1 temp-dir: 2.0.0 type-fest: 0.16.0 @@ -16556,48 +16527,12 @@ packages: resolution: {integrity: sha512-Z86EW+fFFh/IFB1fqQ3/+7Zpf9t2ebOAxNI/V6Wo7r5gqiqtxmgTlQ1qbqQcjLKYeSHPTsEmvlJUDg/EuL0uHQ==} dev: false - /ts-jest/28.0.2_44jgbygewvphnhcbkurqcvskii: - resolution: {integrity: sha512-IOZMb3D0gx6IHO9ywPgiQxJ3Zl4ECylEFwoVpENB55aTn5sdO0Ptyx/7noNBxAaUff708RqQL4XBNxxOVjY0vQ==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@types/jest': ^27.0.0 - babel-jest: ^28.0.0 - esbuild: '*' - jest: ^28.0.0 - typescript: '>=4.3' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/jest': - optional: true - babel-jest: - optional: true - esbuild: - optional: true - dependencies: - '@types/jest': 27.5.1 - bs-logger: 0.2.6 - esbuild: 0.14.39 - fast-json-stable-stringify: 2.1.0 - jest: 28.1.0_@types+node@17.0.35 - jest-util: 28.1.0 - json5: 2.2.1 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.3.7 - typescript: 4.6.4 - yargs-parser: 20.2.9 - dev: true - - /ts-jest/28.0.2_57b7e4jn3m4dg7wj4huecq72va: - resolution: {integrity: sha512-IOZMb3D0gx6IHO9ywPgiQxJ3Zl4ECylEFwoVpENB55aTn5sdO0Ptyx/7noNBxAaUff708RqQL4XBNxxOVjY0vQ==} + /ts-jest/28.0.4_hhjivpbef6nbltei64cv7t7zz4: + resolution: {integrity: sha512-S6uRDDdCJBvnZqyGjB4VCnwbQrbgdL8WPeP4jevVSpYsBaeGRQAIS08o3Svav2Ex+oXwLgJ/m7F24TNq62kA1A==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} hasBin: true peerDependencies: '@babel/core': '>=7.0.0-beta.0 <8' - '@types/jest': ^27.0.0 babel-jest: ^28.0.0 esbuild: '*' jest: ^28.0.0 @@ -16605,23 +16540,21 @@ packages: peerDependenciesMeta: '@babel/core': optional: true - '@types/jest': - optional: true babel-jest: optional: true esbuild: optional: true dependencies: bs-logger: 0.2.6 - esbuild: 0.14.39 + esbuild: 0.14.43 fast-json-stable-stringify: 2.1.0 - jest: 28.1.0_@types+node@17.0.35 - jest-util: 28.1.0 + jest: 28.1.1_@types+node@17.0.41 + jest-util: 28.1.1 json5: 2.2.1 lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.3.7 - typescript: 4.6.4 + typescript: 4.7.3 yargs-parser: 20.2.9 dev: true @@ -16640,7 +16573,7 @@ packages: yn: 3.1.1 dev: true - /ts-node/9.1.1_typescript@4.6.4: + /ts-node/9.1.1_typescript@4.7.3: resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==} engines: {node: '>=10.0.0'} hasBin: true @@ -16652,11 +16585,11 @@ packages: diff: 4.0.2 make-error: 1.3.6 source-map-support: 0.5.21 - typescript: 4.6.4 + typescript: 4.7.3 yn: 3.1.1 dev: true - /tsc-watch/5.0.3_typescript@4.6.4: + /tsc-watch/5.0.3_typescript@4.7.3: resolution: {integrity: sha512-Hz2UawwELMSLOf0xHvAFc7anLeMw62cMVXr1flYmhRuOhOyOljwmb1l/O60ZwRyy1k7N1iC1mrn1QYM2zITfuw==} engines: {node: '>=8.17.0'} hasBin: true @@ -16668,7 +16601,7 @@ packages: ps-tree: 1.2.0 string-argv: 0.1.2 strip-ansi: 6.0.1 - typescript: 4.6.4 + typescript: 4.7.3 dev: true /tslib/1.14.1: @@ -16708,7 +16641,7 @@ packages: resolution: {integrity: sha512-2Vg09mp+nA70AWUedJ8WRgB2me3buq7JGbOnjHnFnNaBzomVu5k7lJ9YGpByIlre+UYr7QRhtlj7+IUKxvCrUA==} engines: {node: '>=12.13.0'} dependencies: - '@babel/parser': 7.18.0 + '@babel/parser': 7.18.4 '@babel/template': 7.16.7 autoprefixer: 10.4.7_postcss@8.4.14 babel-plugin-macros: 2.8.0 @@ -16769,7 +16702,7 @@ packages: graphql: '*' dependencies: '@types/glob': 7.2.0 - '@types/node': 17.0.35 + '@types/node': 17.0.41 '@types/semver': 7.3.9 class-validator: 0.13.2 glob: 7.2.3 @@ -16793,8 +16726,8 @@ packages: hasBin: true dev: true - /typescript/4.6.4: - resolution: {integrity: sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==} + /typescript/4.7.3: + resolution: {integrity: sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA==} engines: {node: '>=4.2.0'} hasBin: true dev: true @@ -16820,18 +16753,18 @@ packages: fastify-plugin: 3.0.1 dev: true - /undici/4.13.0: - resolution: {integrity: sha512-8lk8S/f2V0VUNGf2scU2b+KI2JSzEQLdCyRNRF3XmHu+5jectlSDaPSBCXAHFaUlt1rzngzOBVDgJS9/Gue/KA==} - engines: {node: '>=12.18'} - dev: true - /undici/4.16.0: resolution: {integrity: sha512-tkZSECUYi+/T1i4u+4+lwZmQgLXd4BLGlrc7KZPcLIW7Jpq99+Xpc30ONv7nS6F5UNOxp/HBZSSL9MafUrvJbw==} engines: {node: '>=12.18'} dev: false - /undici/5.2.0: - resolution: {integrity: sha512-XY6+NS3WH9b3TKOHeNz2CjR+qrVz/k4fO9g3etPpLozRvULoQmZ1+dk9JbIz40ehn27xzFk4jYVU2MU3Nle62A==} + /undici/5.3.0: + resolution: {integrity: sha512-8LxC/xmR2GCE4q1heE1sJxVnnf5S6yQ2dObvMFBBWkB8aQlaqNuWovgRFWRMB7KUdLPGZfOTTmUeeLEJYX56iQ==} + engines: {node: '>=12.18'} + dev: true + + /undici/5.4.0: + resolution: {integrity: sha512-A1SRXysDg7J+mVP46jF+9cKANw0kptqSFZ8tGyL+HBiv0K1spjxPX8Z4EGu+Eu6pjClJUBdnUPlxrOafR668/g==} engines: {node: '>=12.18'} /unified/10.1.2: @@ -16957,7 +16890,7 @@ packages: /unload/2.2.0: resolution: {integrity: sha512-B60uB5TNBLtN6/LsgAf3udH9saB5p7gqJwcFfbOEZ8BcBHnGwCf6G/TGiEqkRAxX7zAFIUtzdrXQSdL3Q/wqNA==} dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 detect-node: 2.1.0 dev: false @@ -16995,6 +16928,10 @@ packages: deprecated: Please see https://github.com/lydell/urix#deprecated dev: false + /urlpattern-polyfill/4.0.3: + resolution: {integrity: sha512-DOE84vZT2fEcl9gqCUTcnAw5ZY5Id55ikUcziSUntuEFL3pRvavg5kwDmTEUJkeCHInTlV/HexFomgYnzO5kdQ==} + dev: true + /use-callback-ref/1.3.0_hx2b44akkvgcgvvtmk7ds2qk6q: resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==} engines: {node: '>=10'} @@ -17082,7 +17019,7 @@ packages: hasBin: true dependencies: dequal: 2.0.2 - diff: 5.0.0 + diff: 5.1.0 kleur: 4.1.4 sade: 1.8.1 dev: false @@ -17146,8 +17083,8 @@ packages: vfile-message: 3.1.2 dev: false - /vite/2.9.9: - resolution: {integrity: sha512-ffaam+NgHfbEmfw/Vuh6BHKKlI/XIAhxE5QSS7gFLIngxg171mg1P3a4LSRME0z2ZU1ScxoKzphkipcYwSD5Ew==} + /vite/2.9.10: + resolution: {integrity: sha512-TwZRuSMYjpTurLqXspct+HZE7ONiW9d+wSWgvADGxhDPPyoIcNywY+RX4ng+QpK30DCa1l/oZgi2PLZDibhzbQ==} engines: {node: '>=12.2.0'} hasBin: true peerDependencies: @@ -17162,10 +17099,10 @@ packages: stylus: optional: true dependencies: - esbuild: 0.14.39 + esbuild: 0.14.43 postcss: 8.4.14 resolve: 1.22.0 - rollup: 2.74.1 + rollup: 2.75.6 optionalDependencies: fsevents: 2.3.2 dev: true @@ -17247,7 +17184,7 @@ packages: lodash: 4.17.21 opener: 1.5.2 sirv: 1.0.19 - ws: 7.5.7 + ws: 7.5.8 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -17284,12 +17221,6 @@ packages: dependencies: isexe: 2.0.0 - /wide-align/1.1.5: - resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} - dependencies: - string-width: 1.0.2 - dev: false - /widest-line/3.1.0: resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} engines: {node: '>=8'} @@ -17341,8 +17272,8 @@ packages: signal-exit: 3.0.7 dev: true - /ws/7.5.7: - resolution: {integrity: sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A==} + /ws/7.5.8: + resolution: {integrity: sha512-ri1Id1WinAX5Jqn9HejiGb8crfRio0Qgu8+MtL36rlTA6RLsMdWt1Az/19A2Qij6uSHUMphEFaTKa4WG+UNHNw==} engines: {node: '>=8.3.0'} peerDependencies: bufferutil: ^4.0.1 @@ -17354,8 +17285,8 @@ packages: optional: true dev: true - /ws/8.6.0: - resolution: {integrity: sha512-AzmM3aH3gk0aX7/rZLYvjdvZooofDu3fFOzGqcSnQ1tOcTWwhM/o+q++E8mAyVVIyUdajrkzWUGftaVSDLn1bw==} + /ws/8.7.0: + resolution: {integrity: sha512-c2gsP0PRwcLFzUiA8Mkr37/MI7ilIlHQxaEAtd0uNMbVMoy8puJyafRlm0bV9MbGSabUPeLrRRaqIBcFcA2Pqg==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 @@ -17389,8 +17320,8 @@ packages: resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} engines: {node: '>= 6'} - /yaml/2.1.0: - resolution: {integrity: sha512-OuAINfTsoJrY5H7CBWnKZhX6nZciXBydrMtTHr1dC4nP40X5jyTIVlogZHxSlVZM8zSgXRfgZGsaHF4+pV+JRw==} + /yaml/2.1.1: + resolution: {integrity: sha512-o96x3OPo8GjWeSLF+wOAbrPfhFOGY0W00GNaxCDv+9hkcDJEnev1yh8S7pgHF0ik6zc8sQLuL8hjHjJULZp8bw==} engines: {node: '>= 14'} dev: false @@ -17509,11 +17440,11 @@ packages: graphql: '*' dependencies: '@faker-js/faker': 6.3.1 - '@graphql-tools/schema': 8.3.11_graphql@16.5.0 + '@graphql-tools/schema': 8.3.14_graphql@16.5.0 autocannon: 7.9.0 chalk: 5.0.1 cli-table: 0.3.11 - concurrently: 7.2.0 + concurrently: 7.2.1 cross-env: 7.0.3 graphql: 16.5.0 kill-port: 2.0.0 @@ -17521,13 +17452,13 @@ packages: mkdirp: 1.0.4 require-env-variable: 4.0.1 rimraf: 3.0.2 - systeminformation: 5.11.15 + systeminformation: 5.11.16 wait-on: 6.0.1 transitivePeerDependencies: - debug dev: false - file:packages/core/main_graphql-esm@16.0.1: + file:packages/core/main_graphql-esm@16.5.0: resolution: {directory: packages/core/main, type: directory} id: file:packages/core/main name: graphql-ez @@ -17539,11 +17470,11 @@ packages: graphql: optional: true dependencies: - '@envelop/core': 2.3.2_graphql-esm@16.0.1 - '@envelop/types': 2.2.0_graphql-esm@16.0.1 + '@envelop/core': 2.3.3_graphql-esm@16.5.0 + '@envelop/types': 2.2.1_graphql-esm@16.5.0 '@graphql-ez/utils': link:packages/core/utils '@pablosz/graphql-helix': link:packages/helix/core - graphql: /graphql-esm/16.0.1 + graphql: /graphql-esm/16.5.0 tiny-lru: 8.0.2 dev: false @@ -17559,8 +17490,8 @@ packages: graphql: optional: true dependencies: - '@envelop/core': 2.3.2_graphql@15.8.0 - '@envelop/types': 2.2.0_graphql@15.8.0 + '@envelop/core': 2.3.3_graphql@15.8.0 + '@envelop/types': 2.2.1_graphql@15.8.0 '@graphql-ez/utils': link:packages/core/utils '@pablosz/graphql-helix': link:packages/helix/core graphql: 15.8.0 @@ -17579,8 +17510,8 @@ packages: graphql: optional: true dependencies: - '@envelop/core': 2.3.2_graphql@16.5.0 - '@envelop/types': 2.2.0_graphql@16.5.0 + '@envelop/core': 2.3.3_graphql@16.5.0 + '@envelop/types': 2.2.1_graphql@16.5.0 '@graphql-ez/utils': link:packages/core/utils '@pablosz/graphql-helix': link:packages/helix/core graphql: 16.5.0 @@ -17599,8 +17530,8 @@ packages: graphql: optional: true dependencies: - '@envelop/core': 2.3.2_graphql@17.0.0-alpha.1 - '@envelop/types': 2.2.0_graphql@17.0.0-alpha.1 + '@envelop/core': 2.3.3_graphql@17.0.0-alpha.1 + '@envelop/types': 2.2.1_graphql@17.0.0-alpha.1 '@graphql-ez/utils': link:packages/core/utils '@pablosz/graphql-helix': link:packages/helix/core graphql: 17.0.0-alpha.1 @@ -17619,8 +17550,8 @@ packages: graphql: optional: true dependencies: - '@envelop/core': 2.3.2_gtorhqsyh7roiqmmeoqngd6dra - '@envelop/types': 2.2.0_gtorhqsyh7roiqmmeoqngd6dra + '@envelop/core': 2.3.3_gtorhqsyh7roiqmmeoqngd6dra + '@envelop/types': 2.2.1_gtorhqsyh7roiqmmeoqngd6dra '@graphql-ez/utils': link:packages/core/utils '@pablosz/graphql-helix': link:packages/helix/core graphql: 15.4.0-experimental-stream-defer.1 @@ -17639,15 +17570,15 @@ packages: graphql: optional: true dependencies: - '@envelop/core': 2.3.2_ptiko6tsqj7cmirxhjfetabnhu - '@envelop/types': 2.2.0_ptiko6tsqj7cmirxhjfetabnhu + '@envelop/core': 2.3.3_ptiko6tsqj7cmirxhjfetabnhu + '@envelop/types': 2.2.1_ptiko6tsqj7cmirxhjfetabnhu '@graphql-ez/utils': link:packages/core/utils '@pablosz/graphql-helix': link:packages/helix/core graphql: 16.1.0-experimental-stream-defer.6 tiny-lru: 8.0.2 dev: false - file:packages/fastify/main_6fpq57nvx6znnzfa4pxowv7vaa: + file:packages/fastify/main_2jum3nbul7ib6cfmci55dkrayu: resolution: {directory: packages/fastify/main, type: directory} id: file:packages/fastify/main name: '@graphql-ez/fastify' @@ -17666,13 +17597,13 @@ packages: dependencies: '@fastify/cors': 7.0.0 '@graphql-ez/utils': link:packages/core/utils - '@types/node': 17.0.35 + '@types/node': 17.0.41 fastify: 3.29.0 - graphql: 15.4.0-experimental-stream-defer.1 - graphql-ez: file:packages/core/main_gtorhqsyh7roiqmmeoqngd6dra + graphql: 15.8.0 + graphql-ez: file:packages/core/main_graphql@15.8.0 dev: false - file:packages/fastify/main_cuxreruoxux7r6nsbmggizsgju: + file:packages/fastify/main_6gzqslc4pm727ynukg4sfw5vjq: resolution: {directory: packages/fastify/main, type: directory} id: file:packages/fastify/main name: '@graphql-ez/fastify' @@ -17691,13 +17622,13 @@ packages: dependencies: '@fastify/cors': 7.0.0 '@graphql-ez/utils': link:packages/core/utils - '@types/node': 17.0.35 + '@types/node': 17.0.41 fastify: 3.29.0 - graphql: /graphql-esm/16.0.1 - graphql-ez: file:packages/core/main_graphql-esm@16.0.1 + graphql: 17.0.0-alpha.1 + graphql-ez: file:packages/core/main_graphql@17.0.0-alpha.1 dev: false - file:packages/fastify/main_iefhj5rke6ropwdjpgx2aigeze: + file:packages/fastify/main_ip2fag7yrkru33j5nv2pmsmrca: resolution: {directory: packages/fastify/main, type: directory} id: file:packages/fastify/main name: '@graphql-ez/fastify' @@ -17716,13 +17647,13 @@ packages: dependencies: '@fastify/cors': 7.0.0 '@graphql-ez/utils': link:packages/core/utils - '@types/node': 17.0.35 + '@types/node': 17.0.41 fastify: 3.29.0 - graphql: 16.5.0 - graphql-ez: file:packages/core/main_graphql@16.5.0 + graphql: /graphql-esm/16.5.0 + graphql-ez: file:packages/core/main_graphql-esm@16.5.0 dev: false - file:packages/fastify/main_jdckogd5zr44muonbdrn55oiii: + file:packages/fastify/main_nx5c5bi7zcegprccoqqjpgzyay: resolution: {directory: packages/fastify/main, type: directory} id: file:packages/fastify/main name: '@graphql-ez/fastify' @@ -17741,13 +17672,13 @@ packages: dependencies: '@fastify/cors': 7.0.0 '@graphql-ez/utils': link:packages/core/utils - '@types/node': 17.0.35 + '@types/node': 17.0.41 fastify: 3.29.0 - graphql: 17.0.0-alpha.1 - graphql-ez: file:packages/core/main_graphql@17.0.0-alpha.1 + graphql: 16.1.0-experimental-stream-defer.6 + graphql-ez: file:packages/core/main_ptiko6tsqj7cmirxhjfetabnhu dev: false - file:packages/fastify/main_l4xxzc2mzpndkjmmmusdpgczvq: + file:packages/fastify/main_t3byqpwfysdo4vpyzyug2vzbd4: resolution: {directory: packages/fastify/main, type: directory} id: file:packages/fastify/main name: '@graphql-ez/fastify' @@ -17766,13 +17697,13 @@ packages: dependencies: '@fastify/cors': 7.0.0 '@graphql-ez/utils': link:packages/core/utils - '@types/node': 17.0.35 + '@types/node': 17.0.41 fastify: 3.29.0 - graphql: 16.1.0-experimental-stream-defer.6 - graphql-ez: file:packages/core/main_ptiko6tsqj7cmirxhjfetabnhu + graphql: 16.5.0 + graphql-ez: file:packages/core/main_graphql@16.5.0 dev: false - file:packages/fastify/main_zhb2t2uqs6hawsp4tfp3wlqeju: + file:packages/fastify/main_zwhu7u6w2oywovhc7abq363gym: resolution: {directory: packages/fastify/main, type: directory} id: file:packages/fastify/main name: '@graphql-ez/fastify' @@ -17791,10 +17722,10 @@ packages: dependencies: '@fastify/cors': 7.0.0 '@graphql-ez/utils': link:packages/core/utils - '@types/node': 17.0.35 + '@types/node': 17.0.41 fastify: 3.29.0 - graphql: 15.8.0 - graphql-ez: file:packages/core/main_graphql@15.8.0 + graphql: 15.4.0-experimental-stream-defer.1 + graphql-ez: file:packages/core/main_gtorhqsyh7roiqmmeoqngd6dra dev: false file:packages/fastify/testing_3muocqbkmggjq3v2qysnc2rsza: @@ -17809,14 +17740,14 @@ packages: graphql-ez: workspace:^0.15.0 dependencies: '@graphql-ez/client': link:packages/client/main - '@graphql-ez/fastify': file:packages/fastify/main_jdckogd5zr44muonbdrn55oiii + '@graphql-ez/fastify': file:packages/fastify/main_6gzqslc4pm727ynukg4sfw5vjq '@graphql-ez/utils': link:packages/core/utils fastify: 3.29.0 graphql: 17.0.0-alpha.1 graphql-ez: file:packages/core/main_graphql@17.0.0-alpha.1 dev: false - file:packages/fastify/testing_eeyhul5ewim5pfxcln2hhiqzge: + file:packages/fastify/testing_ilpcigonk3beyanmgicjct42da: resolution: {directory: packages/fastify/testing, type: directory} id: file:packages/fastify/testing name: '@graphql-ez/fastify-testing' @@ -17828,11 +17759,11 @@ packages: graphql-ez: workspace:^0.15.0 dependencies: '@graphql-ez/client': link:packages/client/main - '@graphql-ez/fastify': file:packages/fastify/main_cuxreruoxux7r6nsbmggizsgju + '@graphql-ez/fastify': file:packages/fastify/main_ip2fag7yrkru33j5nv2pmsmrca '@graphql-ez/utils': link:packages/core/utils fastify: 3.29.0 - graphql: /graphql-esm/16.0.1 - graphql-ez: file:packages/core/main_graphql-esm@16.0.1 + graphql: /graphql-esm/16.5.0 + graphql-ez: file:packages/core/main_graphql-esm@16.5.0 dev: false file:packages/fastify/testing_lw34f3xwisutwiioadzoe6c7hq: @@ -17847,7 +17778,7 @@ packages: graphql-ez: workspace:^0.15.0 dependencies: '@graphql-ez/client': link:packages/client/main - '@graphql-ez/fastify': file:packages/fastify/main_l4xxzc2mzpndkjmmmusdpgczvq + '@graphql-ez/fastify': file:packages/fastify/main_nx5c5bi7zcegprccoqqjpgzyay '@graphql-ez/utils': link:packages/core/utils fastify: 3.29.0 graphql: 16.1.0-experimental-stream-defer.6 @@ -17866,7 +17797,7 @@ packages: graphql-ez: workspace:^0.15.0 dependencies: '@graphql-ez/client': link:packages/client/main - '@graphql-ez/fastify': file:packages/fastify/main_zhb2t2uqs6hawsp4tfp3wlqeju + '@graphql-ez/fastify': file:packages/fastify/main_2jum3nbul7ib6cfmci55dkrayu '@graphql-ez/utils': link:packages/core/utils fastify: 3.29.0 graphql: 15.8.0 @@ -17885,7 +17816,7 @@ packages: graphql-ez: workspace:^0.15.0 dependencies: '@graphql-ez/client': link:packages/client/main - '@graphql-ez/fastify': file:packages/fastify/main_6fpq57nvx6znnzfa4pxowv7vaa + '@graphql-ez/fastify': file:packages/fastify/main_zwhu7u6w2oywovhc7abq363gym '@graphql-ez/utils': link:packages/core/utils fastify: 3.29.0 graphql: 15.4.0-experimental-stream-defer.1 @@ -17904,7 +17835,7 @@ packages: graphql-ez: workspace:^0.15.0 dependencies: '@graphql-ez/client': link:packages/client/main - '@graphql-ez/fastify': file:packages/fastify/main_iefhj5rke6ropwdjpgx2aigeze + '@graphql-ez/fastify': file:packages/fastify/main_t3byqpwfysdo4vpyzyug2vzbd4 '@graphql-ez/utils': link:packages/core/utils fastify: 3.29.0 graphql: 16.5.0 @@ -17925,13 +17856,13 @@ packages: optional: true dependencies: '@graphql-ez/utils': link:packages/core/utils - '@graphql-tools/schema': 8.3.11_graphql@16.5.0 - '@graphql-tools/utils': 8.6.10_graphql@16.5.0 + '@graphql-tools/schema': 8.3.14_graphql@16.5.0 + '@graphql-tools/utils': 8.6.13_graphql@16.5.0 graphql: 16.5.0 graphql-ez: file:packages/core/main_graphql@16.5.0 dev: false - file:packages/plugin/schema_kti5umutftx32khads4w5km74i: + file:packages/plugin/schema_g2hnhyfkisbf3ovuj245she75a: resolution: {directory: packages/plugin/schema, type: directory} id: file:packages/plugin/schema name: '@graphql-ez/plugin-schema' @@ -17945,13 +17876,13 @@ packages: optional: true dependencies: '@graphql-ez/utils': link:packages/core/utils - '@graphql-tools/schema': 8.3.11_graphql@15.8.0 - '@graphql-tools/utils': 8.6.10_graphql@15.8.0 - graphql: 15.8.0 - graphql-ez: file:packages/core/main_graphql@15.8.0 + '@graphql-tools/schema': 8.3.14_graphql-esm@16.5.0 + '@graphql-tools/utils': 8.6.13_graphql-esm@16.5.0 + graphql: /graphql-esm/16.5.0 + graphql-ez: file:packages/core/main_graphql-esm@16.5.0 dev: false - file:packages/plugin/schema_ntu2nbgjp7fa2wks34g2v2mela: + file:packages/plugin/schema_kti5umutftx32khads4w5km74i: resolution: {directory: packages/plugin/schema, type: directory} id: file:packages/plugin/schema name: '@graphql-ez/plugin-schema' @@ -17965,13 +17896,13 @@ packages: optional: true dependencies: '@graphql-ez/utils': link:packages/core/utils - '@graphql-tools/schema': 8.3.11_ptiko6tsqj7cmirxhjfetabnhu - '@graphql-tools/utils': 8.6.10_ptiko6tsqj7cmirxhjfetabnhu - graphql: 16.1.0-experimental-stream-defer.6 - graphql-ez: file:packages/core/main_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/schema': 8.3.14_graphql@15.8.0 + '@graphql-tools/utils': 8.6.13_graphql@15.8.0 + graphql: 15.8.0 + graphql-ez: file:packages/core/main_graphql@15.8.0 dev: false - file:packages/plugin/schema_qhijyrxvxpoo6bhcorgljnrg3e: + file:packages/plugin/schema_ntu2nbgjp7fa2wks34g2v2mela: resolution: {directory: packages/plugin/schema, type: directory} id: file:packages/plugin/schema name: '@graphql-ez/plugin-schema' @@ -17985,10 +17916,10 @@ packages: optional: true dependencies: '@graphql-ez/utils': link:packages/core/utils - '@graphql-tools/schema': 8.3.11_graphql-esm@16.0.1 - '@graphql-tools/utils': 8.6.10_graphql-esm@16.0.1 - graphql: /graphql-esm/16.0.1 - graphql-ez: file:packages/core/main_graphql-esm@16.0.1 + '@graphql-tools/schema': 8.3.14_ptiko6tsqj7cmirxhjfetabnhu + '@graphql-tools/utils': 8.6.13_ptiko6tsqj7cmirxhjfetabnhu + graphql: 16.1.0-experimental-stream-defer.6 + graphql-ez: file:packages/core/main_ptiko6tsqj7cmirxhjfetabnhu dev: false file:packages/plugin/schema_wht7zxvd4mbl2ro6p5fyb4elme: @@ -18005,8 +17936,8 @@ packages: optional: true dependencies: '@graphql-ez/utils': link:packages/core/utils - '@graphql-tools/schema': 8.3.11_gtorhqsyh7roiqmmeoqngd6dra - '@graphql-tools/utils': 8.6.10_gtorhqsyh7roiqmmeoqngd6dra + '@graphql-tools/schema': 8.3.14_gtorhqsyh7roiqmmeoqngd6dra + '@graphql-tools/utils': 8.6.13_gtorhqsyh7roiqmmeoqngd6dra graphql: 15.4.0-experimental-stream-defer.1 graphql-ez: file:packages/core/main_gtorhqsyh7roiqmmeoqngd6dra dev: false