From 0920027be198ba67adff284955443f88debf10d5 Mon Sep 17 00:00:00 2001 From: Saeed Akasteh Date: Sat, 13 Apr 2024 01:01:09 +0330 Subject: [PATCH 1/4] feat(root-level-limitation): add max root fields limitation plugin --- .../__tests__/root-level-limitation.spec.ts | 67 +++ .../root-level-limitation/package.json | 60 +++ .../root-level-limitation/src/index.ts | 79 ++++ pnpm-lock.yaml | 440 +++++++++--------- website/route-lockfile.txt | 1 + website/src/pages/docs/features/_meta.ts | 1 + .../docs/features/root-level-limitation.mdx | 60 +++ 7 files changed, 476 insertions(+), 232 deletions(-) create mode 100644 packages/plugins/root-level-limitation/__tests__/root-level-limitation.spec.ts create mode 100644 packages/plugins/root-level-limitation/package.json create mode 100644 packages/plugins/root-level-limitation/src/index.ts create mode 100644 website/src/pages/docs/features/root-level-limitation.mdx diff --git a/packages/plugins/root-level-limitation/__tests__/root-level-limitation.spec.ts b/packages/plugins/root-level-limitation/__tests__/root-level-limitation.spec.ts new file mode 100644 index 0000000000..243e34dff9 --- /dev/null +++ b/packages/plugins/root-level-limitation/__tests__/root-level-limitation.spec.ts @@ -0,0 +1,67 @@ +import { createSchema, createYoga } from 'graphql-yoga'; +import { rootLevelQueryLimit } from '../src/index.js'; + +describe('root-level-limitation', () => { + const schema = createSchema({ + typeDefs: /* GraphQL */ ` + type Query { + topProducts: GetTopProducts + topBooks: GetTopBooks + } + type GetTopBooks { + id: Int + } + type GetTopProducts { + id: Int + } + `, + }); + + const yoga = createYoga({ + schema, + plugins: [rootLevelQueryLimit({ maxRootLevelFields: 1 })], + maskedErrors: false, + }); + + it('should not allow requests with max root level query', async () => { + const res = await yoga.fetch('http://yoga/graphql', { + method: 'POST', + body: JSON.stringify({ + query: /* GraphQL */ ` + { + topBooks { + id + } + topProducts { + id + } + } + `, + }), + headers: { + 'Content-Type': 'application/json', + }, + }); + + expect(res.status).toBe(400); + }); + + it('should allow requests with max root level query', async () => { + const res = await yoga.fetch('http://yoga/graphql', { + method: 'POST', + body: JSON.stringify({ + query: /* GraphQL */ ` + { + topProducts { + id + } + } + `, + }), + headers: { + 'Content-Type': 'application/json', + }, + }); + expect(res.status).toBe(200); + }); +}); diff --git a/packages/plugins/root-level-limitation/package.json b/packages/plugins/root-level-limitation/package.json new file mode 100644 index 0000000000..dd27d84058 --- /dev/null +++ b/packages/plugins/root-level-limitation/package.json @@ -0,0 +1,60 @@ +{ + "name": "@graphql-yoga/plugin-root-level-limitation", + "version": "1.0.0", + "type": "module", + "description": "Apollo's federated check max root values plugin for GraphQL Yoga.", + "repository": { + "type": "git", + "url": "https://github.com/dotansimha/graphql-yoga.git", + "directory": "packages/plugins/root-level-limitation" + }, + "author": "Saeed Akasteh ", + "license": "MIT", + "engines": { + "node": ">=18.0.0" + }, + "main": "dist/cjs/index.js", + "module": "dist/esm/index.js", + "exports": { + ".": { + "require": { + "types": "./dist/typings/index.d.cts", + "default": "./dist/cjs/index.js" + }, + "import": { + "types": "./dist/typings/index.d.ts", + "default": "./dist/esm/index.js" + }, + "default": { + "types": "./dist/typings/index.d.ts", + "default": "./dist/esm/index.js" + } + }, + "./package.json": "./package.json" + }, + "typings": "dist/typings/index.d.ts", + "scripts": { + "check": "tsc --pretty --noEmit" + }, + "peerDependencies": { + "@graphql-tools/utils": "^10.1.0", + "@whatwg-node/server": "^0.9.32", + "graphql": "^15.2.0 || ^16.0.0", + "graphql-yoga": "^5.3.0" + }, + "dependencies": { + "tslib": "^2.5.2" + }, + "devDependencies": { + "@whatwg-node/fetch": "^0.9.17", + "graphql": "^16.6.0", + "graphql-yoga": "5.3.0" + }, + "publishConfig": { + "directory": "dist", + "access": "public" + }, + "typescript": { + "definition": "dist/typings/index.d.ts" + } +} diff --git a/packages/plugins/root-level-limitation/src/index.ts b/packages/plugins/root-level-limitation/src/index.ts new file mode 100644 index 0000000000..05c9917764 --- /dev/null +++ b/packages/plugins/root-level-limitation/src/index.ts @@ -0,0 +1,79 @@ +import { createGraphQLError } from '@graphql-tools/utils'; + +interface GraphQLParams { + operationName?: string; + query?: string; +} + +export function rootLevelQueryLimit({ maxRootLevelFields }: { maxRootLevelFields: number }) { + return { + onParams({ params }: unknown) { + const { query, operationName } = params as GraphQLParams; + + if (operationName?.includes('IntrospectionQuery')) return true; + + const newQuery = formatQuery(query || ''); + const linesArray = newQuery.split('\n'); + + let countLeadingSpacesTwo = 0; + + for (const line of linesArray) { + const leadingSpaces = line?.match(/^\s*/)?.[0]?.length || 0; + + if (leadingSpaces === 4 && line[leadingSpaces] !== ')') { + countLeadingSpacesTwo++; + + if (countLeadingSpacesTwo > maxRootLevelFields * 2) { + throw createGraphQLError('Query is too complex.', { + extensions: { + http: { + spec: false, + status: 400, + headers: { + Allow: 'POST', + }, + }, + }, + }); + } + } + } + + return true; + }, + }; +} + +function formatQuery(queryString: string) { + queryString = queryString.replace(/^\s+/gm, ''); + + let indentLevel = 0; + let formattedString = ''; + + for (let i = 0; i < queryString.length; i++) { + const char = queryString[i]; + + if (char === '{' || char === '(') { + formattedString += char; + indentLevel++; + // formattedString += ' '.repeat(indentLevel * 4); + } else if (char === '}' || char === ')') { + indentLevel--; + + if (formattedString[formattedString.length - 1] !== '\n') + formattedString = formattedString.trim().replace(/\n$/, ''); + + if (char === ')') formattedString += char; + + if (char === '}') formattedString += '\n' + ' '.repeat(indentLevel * 4) + char; + } else if (char === '\n') { + if (queryString[i + 1] !== '\n' && queryString[i + 1] !== undefined) { + formattedString += char + ' '.repeat(indentLevel * 4); + } + } else { + formattedString += char; + } + } + + return formattedString; +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index eed2ea1c19..868402d468 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: '6.1' +lockfileVersion: '6.0' settings: autoInstallPeers: true @@ -132,7 +132,7 @@ importers: dependencies: '@envelop/graphql-jit': specifier: 8.0.0 - version: 8.0.0(@envelop/core@5.0.0)(graphql@16.6.0) + version: 8.0.0(@envelop/core@4.0.0)(graphql@16.6.0) '@faker-js/faker': specifier: 8.0.2 version: 8.0.2 @@ -234,7 +234,7 @@ importers: version: 2.4.7(graphql@16.6.0) '@envelop/apollo-federation': specifier: 5.0.0 - version: 5.0.0(@apollo/gateway@2.4.7)(@envelop/core@5.0.0)(graphql@16.6.0) + version: 5.0.0(@apollo/gateway@2.4.7)(@envelop/core@4.0.0)(graphql@16.6.0) graphql: specifier: 16.6.0 version: 16.6.0 @@ -520,7 +520,7 @@ importers: dependencies: '@envelop/graphql-modules': specifier: 6.0.0 - version: 6.0.0(@envelop/core@5.0.0)(graphql-modules@2.1.2)(graphql@16.6.0) + version: 6.0.0(@envelop/core@4.0.0)(graphql-modules@2.1.2)(graphql@16.6.0) '@graphql-tools/load-files': specifier: 7.0.0 version: 7.0.0(graphql@16.6.0) @@ -679,7 +679,7 @@ importers: dependencies: '@envelop/generic-auth': specifier: 7.0.0 - version: 7.0.0(@envelop/core@5.0.0)(graphql@16.6.0) + version: 7.0.0(@envelop/core@4.0.0)(graphql@16.6.0) graphql: specifier: 16.6.0 version: 16.6.0 @@ -903,7 +903,7 @@ importers: dependencies: '@envelop/live-query': specifier: 7.0.0 - version: 7.0.0(@envelop/core@5.0.0)(graphql@16.6.0) + version: 7.0.0(@envelop/core@4.0.0)(graphql@16.6.0) '@graphql-tools/utils': specifier: 10.0.1 version: 10.0.1(graphql@16.6.0) @@ -1393,7 +1393,7 @@ importers: dependencies: '@envelop/graphql-jit': specifier: 8.0.0 - version: 8.0.0(@envelop/core@5.0.0)(graphql@16.6.0) + version: 8.0.0(@envelop/core@4.0.0)(graphql@16.6.0) '@graphql-yoga/render-graphiql': specifier: 5.3.0 version: link:../../packages/render-graphiql/dist @@ -1502,7 +1502,7 @@ importers: specifier: ^1.0.4 version: 1.0.4(@types/node@18.16.16)(graphql@16.6.0) graphql: - specifier: ^15.2.0 || ^16.0.0 + specifier: 16.6.0 version: 16.6.0 tslib: specifier: ^2.5.2 @@ -1525,7 +1525,7 @@ importers: specifier: ^1.0.0 version: 1.0.0(@urql/core@4.0.10)(graphql@16.6.0)(wonka@6.3.2) graphql: - specifier: ^15.2.0 || ^16.0.0 + specifier: 16.6.0 version: 16.6.0 tslib: specifier: ^2.5.2 @@ -1821,7 +1821,7 @@ importers: dependencies: '@envelop/on-resolve': specifier: ^4.0.0 - version: 4.0.0(@envelop/core@5.0.0)(graphql@16.6.0) + version: 4.0.0(@envelop/core@4.0.0)(graphql@16.6.0) '@graphql-tools/utils': specifier: ^10.0.0 version: 10.0.0(graphql@16.6.0) @@ -1906,7 +1906,7 @@ importers: packages/plugins/graphql-sse: dependencies: graphql: - specifier: ^15.2.0 || ^16.0.0 + specifier: 16.6.0 version: 16.6.0 graphql-sse: specifier: ^2.0.0 @@ -1964,9 +1964,9 @@ importers: dependencies: '@envelop/prometheus': specifier: ^9.4.0 - version: 9.4.0(@envelop/core@5.0.0)(graphql@16.6.0)(prom-client@15.0.0) + version: 9.4.0(@envelop/core@4.0.0)(graphql@16.6.0)(prom-client@15.0.0) graphql: - specifier: ^15.2.0 || ^16.0.0 + specifier: 16.6.0 version: 16.6.0 graphql-yoga: specifier: ^5.3.0 @@ -1981,7 +1981,7 @@ importers: dependencies: '@envelop/response-cache': specifier: ^6.1.2 - version: 6.1.2(@envelop/core@5.0.0)(graphql@16.6.0) + version: 6.1.2(@envelop/core@4.0.0)(graphql@16.6.0) graphql-yoga: specifier: ^5.3.0 version: link:../../graphql-yoga/dist @@ -1994,10 +1994,33 @@ importers: version: 2.6.2 publishDirectory: dist + packages/plugins/root-level-limitation: + dependencies: + '@graphql-tools/utils': + specifier: ^10.1.0 + version: 10.1.1(graphql@16.6.0) + '@whatwg-node/server': + specifier: ^0.9.32 + version: 0.9.32 + tslib: + specifier: ^2.5.2 + version: 2.6.2 + devDependencies: + '@whatwg-node/fetch': + specifier: ^0.9.17 + version: 0.9.17 + graphql: + specifier: 16.6.0 + version: 16.6.0 + graphql-yoga: + specifier: 5.3.0 + version: link:../../graphql-yoga/dist + publishDirectory: dist + packages/plugins/sofa: dependencies: graphql: - specifier: ^15.2.0 || ^16.0.0 + specifier: 16.6.0 version: 16.6.0 graphql-yoga: specifier: ^5.3.0 @@ -2097,7 +2120,7 @@ packages: /@0no-co/graphql.web@1.0.1(graphql@16.6.0): resolution: {integrity: sha512-6Yaxyv6rOwRkLIvFaL0NrLDgfNqC/Ng9QOPmTmlqW4mORXMEKmh5NYGkIvvt5Yw8fZesnMAqkj8cIqTj8f40cQ==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 peerDependenciesMeta: graphql: optional: true @@ -2285,14 +2308,14 @@ packages: /@apollo/cache-control-types@1.0.2(graphql@16.6.0): resolution: {integrity: sha512-Por80co1eUm4ATsvjCOoS/tIR8PHxqVjsA6z76I6Vw0rFn4cgyVElQcmQDIZiYsy41k8e5xkrMRECkM2WR8pNw==} peerDependencies: - graphql: 14.x || 15.x || 16.x + graphql: 16.6.0 dependencies: graphql: 16.6.0 /@apollo/client@3.7.15(graphql@16.6.0): resolution: {integrity: sha512-pLScjo4GAQRWKWyEg2J3FlQr9fbUAuADT0EI2+JlLf2BjaU9I7WUaZVD9w+0qNPE8BZqs53MRQq0OCm1QCW+eg==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 graphql-ws: ^5.5.5 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -2325,7 +2348,7 @@ packages: /@apollo/client@3.8.2(graphql@16.6.0): resolution: {integrity: sha512-SSxRTHlHdlR65mvV5j5e3JkYs9z/eFQfJPgSfqTeKa3jgHKofBaMb+UWxJPInqV5MqBFAkPFt8fYEBZwM7oGZA==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 graphql-ws: ^5.5.5 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -2360,7 +2383,7 @@ packages: resolution: {integrity: sha512-sAVJwv1YJpqbZzS8E1IFItXsiJPag57g3hvwj8n/sn5LGgRRSS05WxhQl7U3NJEjwD0+4LpXqGrIvpCcRFLsvQ==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: ^16.5.0 + graphql: 16.6.0 dependencies: '@apollo/federation-internals': 2.4.0(graphql@16.6.0) '@apollo/query-graphs': 2.4.0(graphql@16.6.0) @@ -2371,7 +2394,7 @@ packages: resolution: {integrity: sha512-eXRTG6J5ywwXsWgP0Wgic4zeBXO8jBBvI0FM4t/gay4DI+1zEL5qmoF2HN/jFik0dnd/ud5kh4djvFLmWEwbeA==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: ^16.5.0 + graphql: 16.6.0 dependencies: '@apollo/federation-internals': 2.4.7(graphql@16.6.0) '@apollo/query-graphs': 2.4.7(graphql@16.6.0) @@ -2381,7 +2404,7 @@ packages: resolution: {integrity: sha512-ovfYwpq3s2LKNvLGg6bxcNlyrCllbF1JhNgQEOEOeAoy3TTmnYuxqd00H3bkT/5xpXvMpBc6+Di6qMkYcQM+Ww==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: ^16.5.0 + graphql: 16.6.0 dependencies: '@types/uuid': 9.0.1 chalk: 4.1.2 @@ -2393,7 +2416,7 @@ packages: resolution: {integrity: sha512-a4iH+72yVd0zNGC5ZGEDfbqI81wktE7qAHjH4rQzJTqMQ74By3PoMD2DefOArcweonvd4b/h4oQJXGvLK2V4Ew==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: ^16.5.0 + graphql: 16.6.0 dependencies: '@types/uuid': 9.0.1 chalk: 4.1.2 @@ -2405,7 +2428,7 @@ packages: resolution: {integrity: sha512-Jt1HiFwe94AfjVj1h53GRwz26Bfp6Y0+yyHQ6/CqEJxQWbAHvEiBFKpzwFQQF9O/OshZx8oedmuAXA6RSFRxSg==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: ^16.5.0 + graphql: 16.6.0 dependencies: '@apollo/composition': 2.4.0(graphql@16.6.0) '@apollo/federation-internals': 2.4.0(graphql@16.6.0) @@ -2436,7 +2459,7 @@ packages: resolution: {integrity: sha512-ZcqSJEUxVJqqPKJ97q72Hyp0YEQfHW+oCRP9osF6XKkrGX1C7nxLm6EzO261+m1bUwkdtjk5CLfXxa9yxIDRdA==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: ^16.5.0 + graphql: 16.6.0 dependencies: '@apollo/composition': 2.4.7(graphql@16.6.0) '@apollo/federation-internals': 2.4.7(graphql@16.6.0) @@ -2504,7 +2527,7 @@ packages: resolution: {integrity: sha512-xyixv288KQ1/qeRbGayNN+4kbv0oHCZV/iLTu1x/Vb5iZTD0LPlMar2rh7ffGLoCmLLAzP+65le0wRXU581hHQ==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: ^16.5.0 + graphql: 16.6.0 dependencies: '@apollo/federation-internals': 2.4.0(graphql@16.6.0) deep-equal: 2.0.5 @@ -2517,7 +2540,7 @@ packages: resolution: {integrity: sha512-LLoY0GgP3mcF+8zp3cf701ixHrsFh1WH1R8HPtO0NOgArmVMTl0bvsEHzFqUNdMd/PcU2b9SMcCmPwN7dKRs+A==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: ^16.5.0 + graphql: 16.6.0 dependencies: '@apollo/federation-internals': 2.4.7(graphql@16.6.0) deep-equal: 2.0.5 @@ -2529,7 +2552,7 @@ packages: resolution: {integrity: sha512-sVBHJ5SW32w6YdeAJCcB23ct5sb/myhv7ebbr9tObmncBR/QOj0n45XyJGXPC3LP8J3h3ICVWehNXDFyV2wOHQ==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: ^16.5.0 + graphql: 16.6.0 dependencies: '@apollo/federation-internals': 2.4.0(graphql@16.6.0) '@apollo/query-graphs': 2.4.0(graphql@16.6.0) @@ -2544,7 +2567,7 @@ packages: resolution: {integrity: sha512-0fTA1W5NKtfxLq5+GY9ORPSQB/MRH1xOt3SbSS8o9yhR9GKzzE3yYNc88HgYAe2lfdDOesCME2t1kKrE76uzdA==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: ^16.5.0 + graphql: 16.6.0 dependencies: '@apollo/federation-internals': 2.4.7(graphql@16.6.0) '@apollo/query-graphs': 2.4.7(graphql@16.6.0) @@ -2557,7 +2580,7 @@ packages: /@apollo/server-gateway-interface@1.1.0(graphql@16.6.0): resolution: {integrity: sha512-0rhG++QtGfr4YhhIHgxZ9BdMFthaPY6LbhI9Au90osbfLMiZ7f8dmZsEX1mp7O1h8MJwCu6Dp0I/KcGbSvfUGA==} peerDependencies: - graphql: 14.x || 15.x || 16.x + graphql: 16.6.0 dependencies: '@apollo/usage-reporting-protobuf': 4.1.0 '@apollo/utils.fetcher': 2.0.0 @@ -2570,7 +2593,7 @@ packages: engines: {node: '>=14.16.0'} requiresBuild: true peerDependencies: - graphql: ^16.6.0 + graphql: 16.6.0 dependencies: '@apollo/cache-control-types': 1.0.2(graphql@16.6.0) '@apollo/server-gateway-interface': 1.1.0(graphql@16.6.0) @@ -2609,7 +2632,7 @@ packages: resolution: {integrity: sha512-/njjzPkyzkh0FO2WvLV+I9mlsDWk3DhfOtCc+cmMx9p4mixgyyaRvYvx3tPjSPkMvkPw/cNidCVymuWJVOAu5A==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: ^16.5.0 + graphql: 16.6.0 dependencies: '@apollo/cache-control-types': 1.0.2(graphql@16.6.0) '@apollo/federation-internals': 2.4.0(graphql@16.6.0) @@ -2632,7 +2655,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 14.x || 15.x || 16.x + graphql: 16.6.0 dependencies: graphql: 16.6.0 dev: false @@ -2673,7 +2696,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 14.x || 15.x || 16.x + graphql: 16.6.0 dependencies: graphql: 16.6.0 dev: false @@ -2684,7 +2707,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 14.x || 15.x || 16.x + graphql: 16.6.0 dependencies: graphql: 16.6.0 dev: false @@ -2695,7 +2718,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 14.x || 15.x || 16.x + graphql: 16.6.0 dependencies: graphql: 16.6.0 lodash.sortby: 4.7.0 @@ -2707,7 +2730,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 14.x || 15.x || 16.x + graphql: 16.6.0 dependencies: graphql: 16.6.0 dev: false @@ -2718,7 +2741,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 14.x || 15.x || 16.x + graphql: 16.6.0 dependencies: '@apollo/usage-reporting-protobuf': 4.1.0 '@apollo/utils.dropunuseddefinitions': 2.0.0(graphql@16.6.0) @@ -2754,7 +2777,7 @@ packages: resolution: {integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==} hasBin: true peerDependencies: - graphql: '*' + graphql: 16.6.0 dependencies: '@babel/core': 7.22.1 '@babel/generator': 7.23.5 @@ -6459,8 +6482,8 @@ packages: engines: {node: '>=18.0.0'} peerDependencies: '@apollo/gateway': ^0.54.0 - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + '@envelop/core': 4.0.0 + graphql: 16.6.0 dependencies: '@apollo/gateway': 2.4.0(graphql@16.6.0) '@envelop/core': 4.0.0 @@ -6472,16 +6495,16 @@ packages: - encoding dev: false - /@envelop/apollo-federation@5.0.0(@apollo/gateway@2.4.7)(@envelop/core@5.0.0)(graphql@16.6.0): + /@envelop/apollo-federation@5.0.0(@apollo/gateway@2.4.7)(@envelop/core@4.0.0)(graphql@16.6.0): resolution: {integrity: sha512-mbe0bqn6mv9WVs5Kk4+IWRZuvxfzjkmuJliAuFJjUuIOn1pMUeCAzjhDTWCHEeCnS0s+TcCtKGFOdAfNtuxbvA==} engines: {node: '>=18.0.0'} peerDependencies: '@apollo/gateway': ^0.54.0 - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + '@envelop/core': 4.0.0 + graphql: 16.6.0 dependencies: '@apollo/gateway': 2.4.7(graphql@16.6.0) - '@envelop/core': 5.0.0 + '@envelop/core': 4.0.0 apollo-server-caching: 3.3.0 apollo-server-types: 3.6.3(graphql@16.6.0) graphql: 16.6.0 @@ -6495,50 +6518,42 @@ packages: engines: {node: '>=16.0.0'} dependencies: '@envelop/types': 4.0.0 - tslib: 2.5.3 - - /@envelop/core@5.0.0: - resolution: {integrity: sha512-aJdnH/ptv+cvwfvciCBe7TSvccBwo9g0S5f6u35TBVzRVqIGkK03lFlIL+x1cnfZgN9EfR2b1PH2galrT1CdCQ==} - engines: {node: '>=18.0.0'} - dependencies: - '@envelop/types': 5.0.0 tslib: 2.6.2 - dev: false /@envelop/disable-introspection@6.0.0(@envelop/core@4.0.0)(graphql@16.6.0): resolution: {integrity: sha512-+DxCvKdzsHat/aWr6dqDsebbGk6ZGiM7VZlnpwKS8g4+PDHg7AfMBnDP8CtUODgifU+kgZME4TFzU288MNpNDg==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + '@envelop/core': 4.0.0 + graphql: 16.6.0 dependencies: '@envelop/core': 4.0.0 graphql: 16.6.0 tslib: 2.6.2 dev: true - /@envelop/extended-validation@4.0.0(@envelop/core@5.0.0)(graphql@16.6.0): + /@envelop/extended-validation@4.0.0(@envelop/core@4.0.0)(graphql@16.6.0): resolution: {integrity: sha512-pvJ/OL+C+lpNiiCXezHT+vP3PTq37MQicoOB1l5MdgOOZZWRAp0NDOgvEKcXUY7AWNpvNHgSE0QFSRfGwsfwFQ==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + '@envelop/core': 4.0.0 + graphql: 16.6.0 dependencies: - '@envelop/core': 5.0.0 + '@envelop/core': 4.0.0 '@graphql-tools/utils': 10.1.1(graphql@16.6.0) graphql: 16.6.0 tslib: 2.6.2 dev: false - /@envelop/generic-auth@7.0.0(@envelop/core@5.0.0)(graphql@16.6.0): + /@envelop/generic-auth@7.0.0(@envelop/core@4.0.0)(graphql@16.6.0): resolution: {integrity: sha512-FxGzoSjIXJlv+aiVyhQ8oHoz41ol4gJe8KAzNX7FP3qrhldbrqcC5Q+J/VtNlo5jXYX0YuLHH6ehF80tQDZJ4Q==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + '@envelop/core': 4.0.0 + graphql: 16.6.0 dependencies: - '@envelop/core': 5.0.0 - '@envelop/extended-validation': 4.0.0(@envelop/core@5.0.0)(graphql@16.6.0) + '@envelop/core': 4.0.0 + '@envelop/extended-validation': 4.0.0(@envelop/core@4.0.0)(graphql@16.6.0) '@graphql-tools/utils': 10.0.6(graphql@16.6.0) graphql: 16.6.0 tslib: 2.6.2 @@ -6548,39 +6563,24 @@ packages: resolution: {integrity: sha512-+Sfp5DON/krxr4fP1kT6GQeQYqphP2g69CybqAMLRTALCCKs/ZfATvK/Bx+ysPV5K8g/tRwVuDbub1JAuLDxSw==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 - dependencies: '@envelop/core': 4.0.0 graphql: 16.6.0 - graphql-jit: 0.8.4(graphql@16.6.0) - tslib: 2.6.2 - value-or-promise: 1.0.12 - dev: true - - /@envelop/graphql-jit@8.0.0(@envelop/core@5.0.0)(graphql@16.6.0): - resolution: {integrity: sha512-+Sfp5DON/krxr4fP1kT6GQeQYqphP2g69CybqAMLRTALCCKs/ZfATvK/Bx+ysPV5K8g/tRwVuDbub1JAuLDxSw==} - engines: {node: '>=18.0.0'} - peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@envelop/core': 5.0.0 + '@envelop/core': 4.0.0 graphql: 16.6.0 graphql-jit: 0.8.4(graphql@16.6.0) tslib: 2.6.2 value-or-promise: 1.0.12 - dev: false - /@envelop/graphql-modules@6.0.0(@envelop/core@5.0.0)(graphql-modules@2.1.2)(graphql@16.6.0): + /@envelop/graphql-modules@6.0.0(@envelop/core@4.0.0)(graphql-modules@2.1.2)(graphql@16.6.0): resolution: {integrity: sha512-U6LoSMFd/eVt/vcI+6cj3OWciPnCTCIz+7Frc+oJ3Bg2utDIba3ngepzQPYb9t2da+AjCw+O2NmBwoUHWH0mAQ==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + '@envelop/core': 4.0.0 + graphql: 16.6.0 graphql-modules: ^1 || ^2.0.0 dependencies: - '@envelop/core': 5.0.0 + '@envelop/core': 4.0.0 graphql: 16.6.0 graphql-modules: 2.1.2(graphql@16.6.0) tslib: 2.6.2 @@ -6590,79 +6590,62 @@ packages: resolution: {integrity: sha512-rLnSN1B+5zcy3FsWE+16/CMiqjD/LXXcRUXJ0RaXRjzHClpQxgSzrAixNeOmx1vXLff4AgkjOZANJl39rD4dwQ==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 - dependencies: '@envelop/core': 4.0.0 - '@graphql-tools/utils': 10.0.1(graphql@16.6.0) - '@n1ru4l/graphql-live-query': 0.10.0(graphql@16.6.0) - '@n1ru4l/graphql-live-query-patch': 0.7.0(graphql@16.6.0) - '@n1ru4l/in-memory-live-query-store': 0.10.0(graphql@16.6.0) graphql: 16.6.0 - tslib: 2.6.2 - dev: true - - /@envelop/live-query@7.0.0(@envelop/core@5.0.0)(graphql@16.6.0): - resolution: {integrity: sha512-rLnSN1B+5zcy3FsWE+16/CMiqjD/LXXcRUXJ0RaXRjzHClpQxgSzrAixNeOmx1vXLff4AgkjOZANJl39rD4dwQ==} - engines: {node: '>=18.0.0'} - peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@envelop/core': 5.0.0 + '@envelop/core': 4.0.0 '@graphql-tools/utils': 10.0.1(graphql@16.6.0) '@n1ru4l/graphql-live-query': 0.10.0(graphql@16.6.0) '@n1ru4l/graphql-live-query-patch': 0.7.0(graphql@16.6.0) '@n1ru4l/in-memory-live-query-store': 0.10.0(graphql@16.6.0) graphql: 16.6.0 tslib: 2.6.2 - dev: false - /@envelop/on-resolve@4.0.0(@envelop/core@5.0.0)(graphql@16.6.0): + /@envelop/on-resolve@4.0.0(@envelop/core@4.0.0)(graphql@16.6.0): resolution: {integrity: sha512-EBGJoaN7eqpDxhH/EFnjx5CgK8d7XKs6/2scuqGmEnVptW+8sicxPdvt5nZielZRT6spRK14ZGWmn2o8qf8GjQ==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + '@envelop/core': 4.0.0 + graphql: 16.6.0 dependencies: - '@envelop/core': 5.0.0 + '@envelop/core': 4.0.0 graphql: 16.6.0 dev: false - /@envelop/on-resolve@4.1.0(@envelop/core@5.0.0)(graphql@16.6.0): + /@envelop/on-resolve@4.1.0(@envelop/core@4.0.0)(graphql@16.6.0): resolution: {integrity: sha512-2AXxf8jbBIepBUiY0KQtyCO6gnT7LKBEYdaARZBJ7ujy1+iQHQPORKvAwl51kIdD6v5x38eldZnm7A19jFimOg==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + '@envelop/core': 4.0.0 + graphql: 16.6.0 dependencies: - '@envelop/core': 5.0.0 + '@envelop/core': 4.0.0 graphql: 16.6.0 dev: false - /@envelop/prometheus@9.4.0(@envelop/core@5.0.0)(graphql@16.6.0)(prom-client@15.0.0): + /@envelop/prometheus@9.4.0(@envelop/core@4.0.0)(graphql@16.6.0)(prom-client@15.0.0): resolution: {integrity: sha512-r+BoQhDl/7qV8iZ0jOAumuMw3zi+IiFC5NFtgPSWwf3YFDH9PG1Y4WTh2qi+2GAFp/Z6CPv1TWePs3DHyz3v4w==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + '@envelop/core': 4.0.0 + graphql: 16.6.0 prom-client: ^15.0.0 dependencies: - '@envelop/core': 5.0.0 - '@envelop/on-resolve': 4.1.0(@envelop/core@5.0.0)(graphql@16.6.0) + '@envelop/core': 4.0.0 + '@envelop/on-resolve': 4.1.0(@envelop/core@4.0.0)(graphql@16.6.0) graphql: 16.6.0 prom-client: 15.0.0 tslib: 2.6.2 dev: false - /@envelop/response-cache@6.1.2(@envelop/core@5.0.0)(graphql@16.6.0): + /@envelop/response-cache@6.1.2(@envelop/core@4.0.0)(graphql@16.6.0): resolution: {integrity: sha512-vBX6z/TxBZSNReVn69VJVkdGHpGzHyeQNMz9LXobczl55KCZaf2inBWguSdGq+vx6PlB068GhLeg+a7kseiF1Q==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + '@envelop/core': 4.0.0 + graphql: 16.6.0 dependencies: - '@envelop/core': 5.0.0 + '@envelop/core': 4.0.0 '@graphql-tools/utils': 10.1.0(graphql@16.6.0) '@whatwg-node/fetch': 0.9.17 fast-json-stable-stringify: 2.1.0 @@ -6677,13 +6660,6 @@ packages: dependencies: tslib: 2.6.2 - /@envelop/types@5.0.0: - resolution: {integrity: sha512-IPjmgSc4KpQRlO4qbEDnBEixvtb06WDmjKfi/7fkZaryh5HuOmTtixe1EupQI5XfXO8joc3d27uUZ0QdC++euA==} - engines: {node: '>=18.0.0'} - dependencies: - tslib: 2.6.2 - dev: false - /@esbuild-kit/cjs-loader@2.4.2: resolution: {integrity: sha512-BDXFbYOJzT/NBEtp71cvsrGPwGAMGRB/349rwKuoxNSiKjPraNNnlK6MIIabViCjqZugu6j+xeMDlEkWdHHJSg==} dependencies: @@ -7559,7 +7535,7 @@ packages: /@graphiql/plugin-explorer@0.1.4(@codemirror/language@6.0.0)(@types/react@18.2.8)(graphql@16.6.0)(react-dom@18.2.0)(react-is@17.0.2)(react@18.2.0): resolution: {integrity: sha512-sjP2W5mf9ZR/GAMs2kg2NkIa8shGZWFQu6LYHmTjWuOP2V1gTgEAgJYvr36InE1Bj9gnBHQhqGFP9lYjdB6Ncw==} peerDependencies: - graphql: ^15.5.0 || ^16.0.0 + graphql: 16.6.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: @@ -7579,7 +7555,7 @@ packages: /@graphiql/react@0.13.3(patch_hash=yqm362ey3efuxzwgojxfo6tq5i)(@codemirror/language@6.0.0)(@types/react@18.2.8)(graphql@16.6.0)(react-dom@18.2.0)(react-is@17.0.2)(react@18.2.0): resolution: {integrity: sha512-BIOaahIxVHGQjoVbECIiSzEtETZVMyhG83ysVpoFKCVj27KxDbh/Yk9w23L0aYQWuWEU7C02Kzl5gi+Zwx/K3A==} peerDependencies: - graphql: ^15.5.0 || ^16.0.0 + graphql: 16.6.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: @@ -7611,7 +7587,7 @@ packages: /@graphiql/toolkit@0.8.4(graphql@16.6.0): resolution: {integrity: sha512-cFUGqh3Dau+SD3Vq9EFlZrhzYfaHKyOJveFtaCR+U5Cn/S68p7oy+vQBIdwtO6J2J58FncnwBbVRfr+IvVfZqQ==} peerDependencies: - graphql: ^15.5.0 || ^16.0.0 + graphql: 16.6.0 graphql-ws: '>= 4.5.0' peerDependenciesMeta: graphql-ws: @@ -7629,7 +7605,7 @@ packages: hasBin: true peerDependencies: '@parcel/watcher': ^2.1.0 - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 peerDependenciesMeta: '@parcel/watcher': optional: true @@ -7683,7 +7659,7 @@ packages: /@graphql-codegen/core@4.0.0(graphql@16.6.0): resolution: {integrity: sha512-JAGRn49lEtSsZVxeIlFVIRxts2lWObR+OQo7V2LHDJ7ohYYw3ilv7nJ8pf8P4GTg/w6ptcYdSdVVdkI8kUHB/Q==} peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.6.0) '@graphql-tools/schema': 10.0.0(graphql@16.6.0) @@ -7695,7 +7671,7 @@ packages: /@graphql-codegen/plugin-helpers@5.0.1(graphql@16.6.0): resolution: {integrity: sha512-6L5sb9D8wptZhnhLLBcheSPU7Tg//DGWgc5tQBWX46KYTOTQHGqDpv50FxAJJOyFVJrveN9otWk9UT9/yfY4ww==} peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) change-case-all: 1.0.15 @@ -7709,7 +7685,7 @@ packages: /@graphql-codegen/plugin-helpers@5.0.3(graphql@16.6.0): resolution: {integrity: sha512-yZ1rpULIWKBZqCDlvGIJRSyj1B2utkEdGmXZTBT/GVayP4hyRYlkd36AJV/LfEsVD8dnsKL5rLz2VTYmRNlJ5Q==} peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) change-case-all: 1.0.15 @@ -7723,7 +7699,7 @@ packages: /@graphql-codegen/schema-ast@4.0.2(graphql@16.6.0): resolution: {integrity: sha512-5mVAOQQK3Oz7EtMl/l3vOQdc2aYClUzVDHHkMvZlunc+KlGgl81j8TLa+X7ANIllqU4fUEsQU3lJmk4hXP6K7Q==} peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -7734,7 +7710,7 @@ packages: /@graphql-codegen/typescript-resolvers@4.0.6(graphql@16.6.0): resolution: {integrity: sha512-7OBFzZ2xSkYgMgcc1A3xNqbBHHSQXBesLrG86Sh+Jj0PQQB3Om8j1HSFs64PD/l5Kri2dXgm3oim/89l3Rl3lw==} peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.6.0) '@graphql-codegen/typescript': 4.0.6(graphql@16.6.0) @@ -7751,7 +7727,7 @@ packages: /@graphql-codegen/typescript@4.0.6(graphql@16.6.0): resolution: {integrity: sha512-IBG4N+Blv7KAL27bseruIoLTjORFCT3r+QYyMC3g11uY3/9TPpaUyjSdF70yBe5GIQ6dAgDU+ENUC1v7EPi0rw==} peerDependencies: - graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.6.0) '@graphql-codegen/schema-ast': 4.0.2(graphql@16.6.0) @@ -7767,7 +7743,7 @@ packages: /@graphql-codegen/visitor-plugin-common@5.1.0(graphql@16.6.0): resolution: {integrity: sha512-eamQxtA9bjJqI2lU5eYoA1GbdMIRT2X8m8vhWYsVQVWD3qM7sx/IqJU0kx0J3Vd4/CSd36BzL6RKwksibytDIg==} peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.6.0) '@graphql-tools/optimize': 2.0.0(graphql@16.6.0) @@ -7789,7 +7765,7 @@ packages: resolution: {integrity: sha512-axQTbN5+Yxs1rJ6cWQBOfw3AEeC+fvIuZSfJLPLLvFJLj4pUm9fhxey/g6oQZAAQJqKPfw+tLDUQvnfvRK8Kmg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -7803,7 +7779,7 @@ packages: /@graphql-tools/batch-execute@8.5.19(graphql@16.6.0): resolution: {integrity: sha512-eqofTMYPygg9wVPdA+p8lk4NBpaPTcDut6SlnDk9IiYdY23Yfo6pY7mzZ3b27GugI7HDtB2OZUxzZJSGsk6Qew==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 9.2.1(graphql@16.6.0) dataloader: 2.2.2 @@ -7816,7 +7792,7 @@ packages: resolution: {integrity: sha512-lT9/1XmPSYzBcEybXPLsuA6C5E0t8438PVUELABcqdvwHgZ3VOOx29MLBEqhr2oewOlDChH6PXNkfxoOoAuzRg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) dataloader: 2.2.2 @@ -7828,7 +7804,7 @@ packages: resolution: {integrity: sha512-nq36yQnUVp6Roti+RFatInRogZzbwdFKZK1YBCmP3XpUvoOBbWaHaLKxVE9mU5lb9nL99zKzhq6gfh5syzxjJQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/graphql-tag-pluck': 8.0.0(@babel/core@7.22.1)(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -7845,7 +7821,7 @@ packages: resolution: {integrity: sha512-ZW5/7Q0JqUM+guwn8/cM/1Hz16Zvj6WR6r3gnOwoPO7a9bCbe8QTCk4itT/EO+RiGT8RLUPYaunWR9jxfNqqOA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/batch-execute': 9.0.0(graphql@16.6.0) '@graphql-tools/executor': 1.2.5(graphql@16.6.0) @@ -7859,7 +7835,7 @@ packages: /@graphql-tools/delegate@9.0.28(graphql@16.6.0): resolution: {integrity: sha512-8j23JCs2mgXqnp+5K0v4J3QBQU/5sXd9miaLvMfRf/6963DznOXTECyS9Gcvj1VEeR5CXIw6+aX/BvRDKDdN1g==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/batch-execute': 8.5.19(graphql@16.6.0) '@graphql-tools/executor': 0.0.15(graphql@16.6.0) @@ -7876,7 +7852,7 @@ packages: engines: {node: '>=16.0.0'} peerDependencies: '@apollo/client': ^3.5.9 - graphql: ^15.2.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@apollo/client': 3.7.15(graphql@16.6.0) '@graphql-tools/utils': 10.0.1(graphql@16.6.0) @@ -7888,7 +7864,7 @@ packages: resolution: {integrity: sha512-voczXmNcEzZKk6dS4pCwN0XCXvDiAVm9rj+54oz7X04IsHBJmTUul1YhCbJie1xUvN1jmgEJ14lfD92tMMMTmQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) '@repeaterjs/repeater': 3.0.4 @@ -7906,7 +7882,7 @@ packages: resolution: {integrity: sha512-lSoPFWrGU6XT9nGGBogUI8bSOtP0yce2FhXTrU5akMZ35BDCNWbkmgryzRhxoAH/yDOaZtKkHQB3xrYX3uo5zA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 10.0.6(graphql@16.6.0) '@repeaterjs/repeater': 3.0.4 @@ -7923,7 +7899,7 @@ packages: resolution: {integrity: sha512-roQyDLOAywyaCTPOhwXiT/WDr0bfuVhqOXjECsnrIl/1TMPDUYjiT2sW6Gz6pqnYMmokdhyvlV6D5d7WtIrKsA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) '@repeaterjs/repeater': 3.0.4 @@ -7940,7 +7916,7 @@ packages: resolution: {integrity: sha512-8c0wlhYz7G6imuWqHqjpveflN8IVL3gXIxel5lzpAvPvxsSXpiNig3jADkIBB+eaxzR9R1lbwxqonxPUGI4CdQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) '@types/ws': 8.5.4 @@ -7957,7 +7933,7 @@ packages: engines: {node: '>=16.0.0'} peerDependencies: '@urql/core': ^3.0.0 || ^4.0.0 - graphql: ^15.2.0 || ^16.0.0 + graphql: 16.6.0 wonka: ^6.0.0 dependencies: '@graphql-tools/utils': 10.0.1(graphql@16.6.0) @@ -7970,7 +7946,7 @@ packages: /@graphql-tools/executor@0.0.15(graphql@16.6.0): resolution: {integrity: sha512-6U7QLZT8cEUxAMXDP4xXVplLi6RBwx7ih7TevlBto66A/qFp3PDb6o/VFo07yBKozr8PGMZ4jMfEWBGxmbGdxA==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 9.2.1(graphql@16.6.0) '@graphql-typed-document-node/core': 3.1.2(graphql@16.6.0) @@ -7984,7 +7960,7 @@ packages: resolution: {integrity: sha512-s7sW4K3BUNsk9sjq+vNicwb9KwcR3G55uS/CI8KZQ4x0ZdeYMIwpeU9MVeORCCpHuQyTaV+/VnO0hFrS/ygzsg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) @@ -7997,7 +7973,7 @@ packages: resolution: {integrity: sha512-0QAzWywOdWC4vozYFi4OuAxv1QvHo6PwLY+D8DCQn+knxWZAsJe86SESxBkQ5R03yHFWPaiBVWKDB+lxxgC7Uw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/graphql-tag-pluck': 8.0.0(@babel/core@7.22.1)(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -8015,7 +7991,7 @@ packages: resolution: {integrity: sha512-VuroArWKcG4yaOWzV0r19ElVIV6iH6UKDQn1MXemND0xu5TzrFme0kf3U9o0YwNo0kUYEk9CyFM0BYg4he17FA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-http': 1.0.4(@types/node@18.16.16)(graphql@16.6.0) @@ -8036,7 +8012,7 @@ packages: resolution: {integrity: sha512-wRXj9Z1IFL3+zJG1HWEY0S4TXal7+s1vVhbZva96MSp0kbb/3JBF7j0cnJ44Eq0ClccMgGCDFqPFXty4JlpaPg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/import': 7.0.0(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -8050,7 +8026,7 @@ packages: resolution: {integrity: sha512-/xFXF7RwWf1UDAnUN/984Q1clRxRcWwO7lxi+BDzuwN14DJb424FVAmFOroBeeFWQNdj8qtNGLWhAbx23khvHQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@babel/parser': 7.23.5 '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.22.1) @@ -8068,7 +8044,7 @@ packages: resolution: {integrity: sha512-NVZiTO8o1GZs6OXzNfjB+5CtQtqsZZpQOq+Uu0w57kdUkT4RlQKlwhT8T81arEsbV55KpzkpFsOZP7J1wdmhBw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) graphql: 16.6.0 @@ -8080,7 +8056,7 @@ packages: resolution: {integrity: sha512-ki6EF/mobBWJjAAC84xNrFMhNfnUFD6Y0rQMGXekrUgY0NdeYXHU0ZUgHzC9O5+55FslqUmAUHABePDHTyZsLg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) globby: 11.1.0 @@ -8093,7 +8069,7 @@ packages: resolution: {integrity: sha512-P98amERIwI7FD8Bsq6xUbz9Mj63W8qucfrE/WQjad5jFMZYdFFt46a99FFdfx8S/ZYgpAlj/AZbaTtWLitMgNQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: globby: 11.1.0 graphql: 16.6.0 @@ -8105,7 +8081,7 @@ packages: resolution: {integrity: sha512-Cy874bQJH0FP2Az7ELPM49iDzOljQmK1PPH6IuxsWzLSTxwTqd8dXA09dcVZrI7/LsN26heTY2R8q2aiiv0GxQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/schema': 10.0.0(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -8117,7 +8093,7 @@ packages: /@graphql-tools/merge@8.4.0(graphql@16.6.0): resolution: {integrity: sha512-3XYCWe0d3I4F1azNj1CdShlbHfTIfiDgj00R9uvFH8tHKh7i1IWN3F7QQYovcHKhayaR6zPok3YYMESYQcBoaA==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 9.2.1(graphql@16.6.0) graphql: 16.6.0 @@ -8127,7 +8103,7 @@ packages: /@graphql-tools/merge@8.4.2(graphql@16.6.0): resolution: {integrity: sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 9.2.1(graphql@16.6.0) graphql: 16.6.0 @@ -8138,7 +8114,7 @@ packages: resolution: {integrity: sha512-J7/xqjkGTTwOJmaJQJ2C+VDBDOWJL3lKrHJN4yMaRLAJH3PosB7GiPRaSDZdErs0+F77sH2MKs2haMMkywzx7Q==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) graphql: 16.6.0 @@ -8148,7 +8124,7 @@ packages: resolution: {integrity: sha512-nhdT+CRGDZ+bk68ic+Jw1OZ99YCDIKYA5AlVAnBHJvMawSx9YQqQAIj4refNc1/LRieGiuWvhbG3jvPVYho0Dg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: graphql: 16.6.0 tslib: 2.6.2 @@ -8158,7 +8134,7 @@ packages: resolution: {integrity: sha512-AvvVFj+E+e8kG5QaVcitLTr7VZOa5CmvJ8HwlZslmg9OD1qoVDvhroGoR5/3y5e6n1xUjCWlO1xoo3QBseMuSw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/url-loader': 8.0.1(@types/node@18.16.16)(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -8191,7 +8167,7 @@ packages: resolution: {integrity: sha512-UNlJi5y3JylhVWU4MBpL0Hun4Q7IoJwv9xYtmAz+CgRa066szzY7dcuPfxrA7cIGgG/Q6TVsKsYaiF4OHPs1Fw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@ardatan/relay-compiler': 12.0.0(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -8206,7 +8182,7 @@ packages: resolution: {integrity: sha512-kf3qOXMFcMs2f/S8Y3A8fm/2w+GaHAkfr3Gnhh2LOug/JgpY/ywgFVxO3jOeSpSEdoYcDKLcXVjMigNbY4AdQg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/merge': 9.0.0(graphql@16.6.0) '@graphql-tools/utils': 10.0.1(graphql@16.6.0) @@ -8217,7 +8193,7 @@ packages: /@graphql-tools/schema@9.0.17(graphql@16.6.0): resolution: {integrity: sha512-HVLq0ecbkuXhJlpZ50IHP5nlISqH2GbNgjBJhhRzHeXhfwlUOT4ISXGquWTmuq61K0xSaO0aCjMpxe4QYbKTng==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/merge': 8.4.0(graphql@16.6.0) '@graphql-tools/utils': 9.2.1(graphql@16.6.0) @@ -8229,7 +8205,7 @@ packages: /@graphql-tools/schema@9.0.19(graphql@16.6.0): resolution: {integrity: sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/merge': 8.4.2(graphql@16.6.0) '@graphql-tools/utils': 9.2.1(graphql@16.6.0) @@ -8242,7 +8218,7 @@ packages: resolution: {integrity: sha512-rPc9oDzMnycvz+X+wrN3PLrhMBQkG4+sd8EzaFN6dypcssiefgWKToXtRKI8HHK68n2xEq1PyrOpkjHFJB+GwA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/delegate': 10.0.0(graphql@16.6.0) @@ -8269,7 +8245,7 @@ packages: resolution: {integrity: sha512-B2k8KQEkEQmfV1zhurT5GLoXo8jbXP+YQHUayhCSxKYlRV7j/1Fhp1b21PDM8LXIDGlDRXaZ0FbWKOs7eYXDuQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/delegate': 10.0.0(graphql@16.6.0) @@ -8295,7 +8271,7 @@ packages: resolution: {integrity: sha512-ndBPc6zgR+eGU/jHLpuojrs61kYN3Z89JyMLwK3GCRkPv4EQn9EOr1UWqF1JO0iM+/jAVHY0mvfUxyrFFN9DUQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) graphql: 16.6.0 @@ -8306,7 +8282,7 @@ packages: resolution: {integrity: sha512-i1FozbDGHgdsFA47V/JvQZ0FE8NAy0Eiz7HGCJO2MkNdZAKNnwei66gOq0JWYVFztwpwbVQ09GkKhq7Kjcq5Cw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) graphql: 16.6.0 @@ -8316,7 +8292,7 @@ packages: resolution: {integrity: sha512-hZMjl/BbX10iagovakgf3IiqArx8TPsotq5pwBld37uIX1JiZoSbgbCIFol7u55bh32o6cfDEiiJgfAD5fbeyQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) dset: 3.1.2 @@ -8327,7 +8303,7 @@ packages: resolution: {integrity: sha512-wLPqhgeZ9BZJPRoaQbsDN/CtJDPd/L4qmmtPkjI3NuYJ39x+Eqz1Sh34EAGMuDh+xlOHqBwHczkZUpoK9tvzjw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) cross-inspect: 1.0.0 @@ -8340,7 +8316,7 @@ packages: resolution: {integrity: sha512-1kNkZsND12hPkb+YpuUeTRt8f9ZTGhYOfu23V5Z21HegYDjl1k9eX+Inher/eiHCf1eXCk5rKWL9Liol8MWixA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) cross-inspect: 1.0.0 @@ -8351,7 +8327,7 @@ packages: /@graphql-tools/utils@8.13.1(graphql@16.6.0): resolution: {integrity: sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: graphql: 16.6.0 tslib: 2.6.2 @@ -8359,7 +8335,7 @@ packages: /@graphql-tools/utils@9.2.1(graphql@16.6.0): resolution: {integrity: sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) graphql: 16.6.0 @@ -8370,7 +8346,7 @@ packages: resolution: {integrity: sha512-HDOeUUh6UhpiH0WPJUQl44ODt1x5pnMUbOJZ7GjTdGQ7LK0AgVt3ftaAQ9duxLkiAtYJmu5YkULirfZGj4HzDg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/delegate': 10.0.0(graphql@16.6.0) '@graphql-tools/schema': 10.0.0(graphql@16.6.0) @@ -8382,7 +8358,7 @@ packages: /@graphql-tools/wrap@9.3.8(graphql@16.6.0): resolution: {integrity: sha512-MGsExYPiILMw4Qff7HcvE9MMSYdjb/tr5IQYJbxJIU4/TrBHox1/smne8HG+Bd7kmDlTTj7nU/Z8sxmoRd0hOQ==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/delegate': 9.0.28(graphql@16.6.0) '@graphql-tools/schema': 9.0.17(graphql@16.6.0) @@ -8395,7 +8371,7 @@ packages: /@graphql-typed-document-node/core@3.1.2(graphql@16.6.0): resolution: {integrity: sha512-9anpBMM9mEgZN4wr2v8wHJI2/u5TnnggewRN6OlvXTTnuVyoY19X6rOv9XTqKRw6dcGKwZsBi8n0kDE2I5i4VA==} peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: graphql: 16.6.0 dev: false @@ -8403,7 +8379,7 @@ packages: /@graphql-typed-document-node/core@3.2.0(graphql@16.6.0): resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==} peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: graphql: 16.6.0 @@ -9525,7 +9501,7 @@ packages: /@mdx-js/react@3.0.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==} peerDependencies: - '@types/react': '>=16' + '@types/react': 18.2.8 react: '>=16' dependencies: '@types/mdx': 2.0.3 @@ -9536,7 +9512,7 @@ packages: /@n1ru4l/graphql-live-query-patch@0.7.0(graphql@16.6.0): resolution: {integrity: sha512-1q49iNxqEIbmUp+qFAEVEn4ts344Cw72g5OtAuFeTwKtJT3V91kTPGMcRk5Pxb5FPHbvn52q+PCVKOAyVrtPwQ==} peerDependencies: - graphql: ^15.4.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@repeaterjs/repeater': 3.0.4 graphql: 16.6.0 @@ -9544,14 +9520,14 @@ packages: /@n1ru4l/graphql-live-query@0.10.0(graphql@16.6.0): resolution: {integrity: sha512-qZ7OHH/NB0NcG/Xa7irzgjE63UH0CkofZT0Bw4Ko6iRFagPRHBM8RgFXwTt/6JbFGIEUS4STRtaFoc/Eq/ZtzQ==} peerDependencies: - graphql: ^15.4.0 || ^16.0.0 + graphql: 16.6.0 dependencies: graphql: 16.6.0 /@n1ru4l/in-memory-live-query-store@0.10.0(graphql@16.6.0): resolution: {integrity: sha512-pt7bZgTPz9dk7ceoOp76KIbVFFlAPe0e5A07UiZ19fQy3JPvvoLRdjmnKbUh3VsEUUh8MyytFcFRguaeiidAYA==} peerDependencies: - graphql: ^15.4.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 8.13.1(graphql@16.6.0) '@n1ru4l/graphql-live-query': 0.10.0(graphql@16.6.0) @@ -9866,7 +9842,7 @@ packages: '@nestjs/core': ^9.3.8 || ^10.0.0 class-transformer: '*' class-validator: '*' - graphql: ^16.6.0 + graphql: 16.6.0 reflect-metadata: ^0.1.13 ts-morph: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: @@ -9911,7 +9887,7 @@ packages: '@nestjs/core': ^9.3.8 || ^10.0.0 class-transformer: '*' class-validator: '*' - graphql: ^16.6.0 + graphql: 16.6.0 reflect-metadata: ^0.1.13 ts-morph: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: @@ -9958,7 +9934,7 @@ packages: '@nestjs/core': ^9.3.8 || ^10.0.0 class-transformer: '*' class-validator: '*' - graphql: ^16.6.0 + graphql: 16.6.0 reflect-metadata: ^0.1.13 ts-morph: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: @@ -12079,7 +12055,7 @@ packages: /@pothos/core@3.30.0(graphql@16.6.0): resolution: {integrity: sha512-ZUL2YTv3ODeKBkhkVcEO03lcERdqQaG2zfylNpkrY9ryAIhOuN9Pbo+VnfqhqEQx7jM/56Rro7i9AuhzF0Q3tA==} peerDependencies: - graphql: '>=15.1.0' + graphql: 16.6.0 dependencies: graphql: 16.6.0 dev: false @@ -12407,7 +12383,7 @@ packages: /@radix-ui/react-collection@1.0.3(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==} peerDependencies: - '@types/react': '*' + '@types/react': 18.2.8 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -12430,7 +12406,7 @@ packages: /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==} peerDependencies: - '@types/react': '*' + '@types/react': 18.2.8 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -12444,7 +12420,7 @@ packages: /@radix-ui/react-context@1.0.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==} peerDependencies: - '@types/react': '*' + '@types/react': 18.2.8 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -12458,7 +12434,7 @@ packages: /@radix-ui/react-direction@1.0.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==} peerDependencies: - '@types/react': '*' + '@types/react': 18.2.8 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -12472,7 +12448,7 @@ packages: /@radix-ui/react-dismissable-layer@1.0.5(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==} peerDependencies: - '@types/react': '*' + '@types/react': 18.2.8 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -12496,7 +12472,7 @@ packages: /@radix-ui/react-id@1.0.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==} peerDependencies: - '@types/react': '*' + '@types/react': 18.2.8 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -12511,7 +12487,7 @@ packages: /@radix-ui/react-navigation-menu@1.1.4(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-Cc+seCS3PmWmjI51ufGG7zp1cAAIRqHVw7C9LOA2TZ+R4hG6rDvHcTqIsEEFLmZO3zNVH72jOOE7kKNy8W+RtA==} peerDependencies: - '@types/react': '*' + '@types/react': 18.2.8 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -12544,7 +12520,7 @@ packages: /@radix-ui/react-presence@1.0.1(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==} peerDependencies: - '@types/react': '*' + '@types/react': 18.2.8 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -12565,7 +12541,7 @@ packages: /@radix-ui/react-primitive@1.0.3(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==} peerDependencies: - '@types/react': '*' + '@types/react': 18.2.8 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -12585,7 +12561,7 @@ packages: /@radix-ui/react-slot@1.0.2(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} peerDependencies: - '@types/react': '*' + '@types/react': 18.2.8 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -12600,7 +12576,7 @@ packages: /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==} peerDependencies: - '@types/react': '*' + '@types/react': 18.2.8 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -12614,7 +12590,7 @@ packages: /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==} peerDependencies: - '@types/react': '*' + '@types/react': 18.2.8 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -12629,7 +12605,7 @@ packages: /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==} peerDependencies: - '@types/react': '*' + '@types/react': 18.2.8 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -12644,7 +12620,7 @@ packages: /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==} peerDependencies: - '@types/react': '*' + '@types/react': 18.2.8 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -12658,7 +12634,7 @@ packages: /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==} peerDependencies: - '@types/react': '*' + '@types/react': 18.2.8 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -12672,7 +12648,7 @@ packages: /@radix-ui/react-visually-hidden@1.0.3(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==} peerDependencies: - '@types/react': '*' + '@types/react': 18.2.8 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -15306,7 +15282,7 @@ packages: engines: {node: '>=12.0'} deprecated: The `apollo-server-types` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. peerDependencies: - graphql: ^15.3.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@apollo/utils.keyvaluecache': 1.0.1 '@apollo/utils.logger': 1.0.1 @@ -17234,7 +17210,7 @@ packages: peerDependencies: '@codemirror/language': 6.0.0 codemirror: ^5.65.3 - graphql: ^15.5.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@codemirror/language': 6.0.0 '@types/codemirror': 0.0.90 @@ -22002,7 +21978,7 @@ packages: /graphiql-explorer@0.9.0(graphql@16.6.0)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-fZC/wsuatqiQDO2otchxriFO0LaWIo/ovF/CQJ1yOudmY0P7pzDiP+l9CEHUiWbizk3e99x6DQG4XG1VxA+d6A==} peerDependencies: - graphql: ^0.6.0 || ^0.7.0 || ^0.8.0-b || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 + graphql: 16.6.0 react: ^15.6.0 || ^16.0.0 react-dom: ^15.6.0 || ^16.0.0 dependencies: @@ -22014,7 +21990,7 @@ packages: /graphiql@2.0.7(@codemirror/language@6.0.0)(@types/react@18.2.8)(graphql@16.6.0)(react-dom@18.2.0)(react-is@17.0.2)(react@18.2.0): resolution: {integrity: sha512-vHZeCS+KKbMQAWJ0CDdnCPmVOG0d48BeoZJjBlm2H5WlCpNjVMm0WVpfL7dG3aP4k+eF+800sMpUx3VVFt7LYw==} peerDependencies: - graphql: ^15.5.0 || ^16.0.0 + graphql: 16.6.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: @@ -22039,7 +22015,7 @@ packages: engines: {node: '>= 16.0.0'} peerDependencies: cosmiconfig-toml-loader: ^1.0.0 - graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 peerDependenciesMeta: cosmiconfig-toml-loader: optional: true @@ -22067,7 +22043,7 @@ packages: resolution: {integrity: sha512-r2sIo6jCTQi1aj7s+Srg7oU3+r5pUUgxgDD5JDZOmFzrbXVGz+yMhIKhvqW0cV10DcnVIFCOzuFuc1qvnjJ7yQ==} engines: {node: '>=12'} peerDependencies: - graphql: '>=0.11 <=16' + graphql: 16.6.0 dependencies: graphql: 16.6.0 dev: true @@ -22075,7 +22051,7 @@ packages: /graphql-jit@0.8.4(graphql@16.6.0): resolution: {integrity: sha512-4KRrJ1ROy3Usgbl3eAoUMfdfZCRjkcw9cCGT7QwTUIHm9dPGaSaldxzGUttyjErU0rsYEb6WWyb6mMh5r6lEoQ==} peerDependencies: - graphql: '>=15' + graphql: 16.6.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) fast-json-stringify: 5.7.0 @@ -22089,7 +22065,7 @@ packages: resolution: {integrity: sha512-APffigZ/l2me6soek+Yq5Us3HBwmfw4vns4QoqsTePXkK3knVO8rn0uAC6PmTyglb1pmFFPbYaRIzW4wmcnnGQ==} hasBin: true peerDependencies: - graphql: ^15.5.0 || ^16.0.0 + graphql: 16.6.0 dependencies: graphql: 16.6.0 nullthrows: 1.1.1 @@ -22100,7 +22076,7 @@ packages: resolution: {integrity: sha512-o/ZgTS0pBxWm3hSF4+6GwiV1//DxzoLWEbS38+jqpzzy1d/QXBidwQuVYTOksclbtOJZ3KR/tZ8fi/tI6VpVMg==} hasBin: true peerDependencies: - graphql: ^15.5.0 || ^16.0.0 + graphql: 16.6.0 dependencies: graphql: 16.6.0 nullthrows: 1.1.1 @@ -22110,7 +22086,7 @@ packages: /graphql-modules@2.1.2(graphql@16.6.0): resolution: {integrity: sha512-GWxPom0iv4TXyLkuPqEHdRtJRdWCrUOGRMpXWmly1eY2T2MKAdCNya5iY/Ezb3d0Z2BzQBRUXdOgdkFPe2UDjg==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/schema': 9.0.19(graphql@16.6.0) '@graphql-tools/wrap': 9.3.8(graphql@16.6.0) @@ -22122,7 +22098,7 @@ packages: /graphql-request@6.1.0(graphql@16.6.0): resolution: {integrity: sha512-p+XPfS4q7aIpKVcgmnZKhMNqhltk20hfXtkaIkTfjjmiKMJ5xrt5c743cL03y/K7y1rg3WrIC49xGiEQ4mxdNw==} peerDependencies: - graphql: 14 - 16 + graphql: 16.6.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) cross-fetch: 3.1.5 @@ -22135,7 +22111,7 @@ packages: resolution: {integrity: sha512-my9FB4GtghqXqi/lWSVAOPiTzTnnEzdOXCsAC2bb5V7EFNQjVjwy3cSSbUvgYOtDuDibd+ZsCDhz+4eykYOlhQ==} engines: {node: '>=10'} peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 dependencies: graphql: 16.6.0 tslib: 2.5.3 @@ -22145,7 +22121,7 @@ packages: resolution: {integrity: sha512-TTdFwxGM9RY68s22XWyhc+SyQn3PLbELDD2So0K6Cc6EIlBAyPuNV8VlPfNKa/la7gEf2SwHY7JoJplOmOY4LA==} engines: {node: '>=12'} peerDependencies: - graphql: '>=0.11 <=16' + graphql: 16.6.0 dependencies: graphql: 16.6.0 dev: false @@ -22154,7 +22130,7 @@ packages: resolution: {integrity: sha512-NZ4bek4VBlsEDSCnibq9MddbZ2AU4rAusTwUg3sbux4J3WOcZ6zB6Ysrw6rzfJq771wEmwPEMtXPVbOYZnnFUw==} engines: {node: '>=12'} peerDependencies: - graphql: '>=0.11 <=16' + graphql: 16.6.0 dependencies: graphql: 16.6.0 dev: true @@ -22163,7 +22139,7 @@ packages: resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} engines: {node: '>=10'} peerDependencies: - graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 dependencies: graphql: 16.6.0 tslib: 2.6.2 @@ -22172,7 +22148,7 @@ packages: resolution: {integrity: sha512-fU8zwSgAX2noXAsuFiCZ8BtXeXZOzXyK5u1LloCdacsVth4skdBMPO74EG51lBoWSIZ8beUocdpV8+cQHBODnQ==} engines: {node: '>=10'} peerDependencies: - graphql: '>=0.11 <=16' + graphql: 16.6.0 dependencies: graphql: 16.6.0 @@ -22180,7 +22156,7 @@ packages: resolution: {integrity: sha512-eiX7ES/ZQr0q7hSM5UBOEIFfaAUmAY9/CSDyAnsETuybByU7l/v46drRg9DQoTvVABEHp3QnrvwgTRMhqy7zxQ==} engines: {node: '>=10'} peerDependencies: - graphql: '>=0.11 <=16' + graphql: 16.6.0 dependencies: graphql: 16.6.0 @@ -28009,7 +27985,7 @@ packages: /nexus@1.3.0(graphql@16.6.0): resolution: {integrity: sha512-w/s19OiNOs0LrtP7pBmD9/FqJHvZLmCipVRt6v1PM8cRUYIbhEswyNKGHVoC4eHZGPSnD+bOf5A3+gnbt0A5/A==} peerDependencies: - graphql: 15.x || 16.x + graphql: 16.6.0 dependencies: graphql: 16.6.0 iterall: 1.3.0 @@ -30466,7 +30442,7 @@ packages: /react-focus-lock@2.9.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-pSWOQrUmiKLkffPO6BpMXN7SNKXMsuOakl652IBuALAu1esk+IcpJyM+ALcYzPTTFz1rD0R54aB9A4HuP5t1Wg==} peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': 18.2.8 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -30530,7 +30506,7 @@ packages: resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} engines: {node: '>=10'} peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': 18.2.8 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -30546,7 +30522,7 @@ packages: resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} engines: {node: '>=10'} peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': 18.2.8 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -30565,7 +30541,7 @@ packages: resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': 18.2.8 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -32036,9 +32012,9 @@ packages: /sofa-api@0.18.0(graphql@16.6.0): resolution: {integrity: sha512-x1AabBvr91Uvncx3STVZb6jmr2jfZzu/+rzPZuTjmQNC/Q5UMWQLNR85HfGROgIytX6rMzgSq2wfixWVoenNdA==} peerDependencies: - graphql: ^15.0.0 || ^16.0.0 + graphql: 16.6.0 dependencies: - '@graphql-tools/utils': 10.1.0(graphql@16.6.0) + '@graphql-tools/utils': 10.1.1(graphql@16.6.0) '@whatwg-node/fetch': 0.9.17 ansi-colors: 4.1.3 fets: 0.2.0 @@ -32665,7 +32641,7 @@ packages: /subscriptions-transport-ws@0.11.0(graphql@16.6.0): resolution: {integrity: sha512-8D4C6DIH5tGiAIpp5I0wD/xRlNiZAPGHygzCe7VzyzUoxHtawzjNAY9SUTXU05/EY2NMY9/9GF0ycizkXr1CWQ==} peerDependencies: - graphql: ^15.7.2 || ^16.0.0 + graphql: 16.6.0 dependencies: backo2: 1.0.2 eventemitter3: 3.1.2 @@ -34561,7 +34537,7 @@ packages: resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==} engines: {node: '>=10'} peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': 18.2.8 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -34576,7 +34552,7 @@ packages: resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} engines: {node: '>=10'} peerDependencies: - '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 + '@types/react': 18.2.8 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': diff --git a/website/route-lockfile.txt b/website/route-lockfile.txt index 3512515d17..3054e5c4a8 100644 --- a/website/route-lockfile.txt +++ b/website/route-lockfile.txt @@ -23,6 +23,7 @@ /docs/features/persisted-operations /docs/features/request-batching /docs/features/response-caching +/docs/features/root-level-limitation /docs/features/schema /docs/features/sofa-api /docs/features/subscriptions diff --git a/website/src/pages/docs/features/_meta.ts b/website/src/pages/docs/features/_meta.ts index d457841485..eed139d4ff 100644 --- a/website/src/pages/docs/features/_meta.ts +++ b/website/src/pages/docs/features/_meta.ts @@ -9,6 +9,7 @@ export default { 'file-uploads': 'File Uploads', 'defer-stream': 'Defer and Stream', 'request-batching': 'Request Batching', + 'root-level-limitation': 'Root Level Limitation', cors: 'CORS', 'csrf-prevention': 'CSRF Prevention', 'parsing-and-validation-caching': 'Parsing and Validation Caching', diff --git a/website/src/pages/docs/features/root-level-limitation.mdx b/website/src/pages/docs/features/root-level-limitation.mdx new file mode 100644 index 0000000000..fc6078257b --- /dev/null +++ b/website/src/pages/docs/features/root-level-limitation.mdx @@ -0,0 +1,60 @@ +--- +description: + This plugin enforces a limit on the number of root fields allowed in a GraphQL query, similar to + the `maxRootFields` option in Apollo Router. This can help to improve the performance and + stability of your GraphQL server by preventing overly complex queries. +--- + +# Root Fields + +This plugin enforces a limit on the number of root fields allowed in a GraphQL query, similar to the +`maxRootFields` option in Apollo Router. This can help to improve the performance and stability of +your GraphQL server by preventing overly complex queries. + +Here's an example query that fetches two root fields, `field1`, `field2` and `field3`: + +``` +query GetAllFields { + field { # 1 + id + } + field2 { # 2 + id + } + field3 { # 3 + id + } +} +``` + +# Limit Root Fields + +## Installation + +```sh npm2yarn +npm i @graphql-yoga/root-level-limitation +``` + +## Quick Start + +```ts +import { createServer } from 'node:http' +import { createSchema, createYoga } from 'graphql-yoga' +import { rootLevelQueryLimit } from '@graphql-yoga/root-level-limitation' + +export const yoga = createYoga({ + schema: createSchema({ + typeDefs: /* GraphQL */ ` + type Query { + hello: String! + } + ` + }), + plugins: [rootLevelQueryLimit({ maxRootLevelFields: 1 })] +}) + +const server = createServer(yoga) +server.listen(4000, () => { + console.info('Server is running on http://localhost:4000/graphql') +}) +``` From df83676d8fb022fb62776dfd9bcf5d1f7ed035d5 Mon Sep 17 00:00:00 2001 From: Saeed Akasteh Date: Sat, 13 Apr 2024 15:03:03 +0330 Subject: [PATCH 2/4] revert(pnpm-lock.yml): revert according conflict --- pnpm-lock.yaml | 440 ++++++++++++++++++++++++++----------------------- 1 file changed, 232 insertions(+), 208 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 868402d468..eed2ea1c19 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: '6.0' +lockfileVersion: '6.1' settings: autoInstallPeers: true @@ -132,7 +132,7 @@ importers: dependencies: '@envelop/graphql-jit': specifier: 8.0.0 - version: 8.0.0(@envelop/core@4.0.0)(graphql@16.6.0) + version: 8.0.0(@envelop/core@5.0.0)(graphql@16.6.0) '@faker-js/faker': specifier: 8.0.2 version: 8.0.2 @@ -234,7 +234,7 @@ importers: version: 2.4.7(graphql@16.6.0) '@envelop/apollo-federation': specifier: 5.0.0 - version: 5.0.0(@apollo/gateway@2.4.7)(@envelop/core@4.0.0)(graphql@16.6.0) + version: 5.0.0(@apollo/gateway@2.4.7)(@envelop/core@5.0.0)(graphql@16.6.0) graphql: specifier: 16.6.0 version: 16.6.0 @@ -520,7 +520,7 @@ importers: dependencies: '@envelop/graphql-modules': specifier: 6.0.0 - version: 6.0.0(@envelop/core@4.0.0)(graphql-modules@2.1.2)(graphql@16.6.0) + version: 6.0.0(@envelop/core@5.0.0)(graphql-modules@2.1.2)(graphql@16.6.0) '@graphql-tools/load-files': specifier: 7.0.0 version: 7.0.0(graphql@16.6.0) @@ -679,7 +679,7 @@ importers: dependencies: '@envelop/generic-auth': specifier: 7.0.0 - version: 7.0.0(@envelop/core@4.0.0)(graphql@16.6.0) + version: 7.0.0(@envelop/core@5.0.0)(graphql@16.6.0) graphql: specifier: 16.6.0 version: 16.6.0 @@ -903,7 +903,7 @@ importers: dependencies: '@envelop/live-query': specifier: 7.0.0 - version: 7.0.0(@envelop/core@4.0.0)(graphql@16.6.0) + version: 7.0.0(@envelop/core@5.0.0)(graphql@16.6.0) '@graphql-tools/utils': specifier: 10.0.1 version: 10.0.1(graphql@16.6.0) @@ -1393,7 +1393,7 @@ importers: dependencies: '@envelop/graphql-jit': specifier: 8.0.0 - version: 8.0.0(@envelop/core@4.0.0)(graphql@16.6.0) + version: 8.0.0(@envelop/core@5.0.0)(graphql@16.6.0) '@graphql-yoga/render-graphiql': specifier: 5.3.0 version: link:../../packages/render-graphiql/dist @@ -1502,7 +1502,7 @@ importers: specifier: ^1.0.4 version: 1.0.4(@types/node@18.16.16)(graphql@16.6.0) graphql: - specifier: 16.6.0 + specifier: ^15.2.0 || ^16.0.0 version: 16.6.0 tslib: specifier: ^2.5.2 @@ -1525,7 +1525,7 @@ importers: specifier: ^1.0.0 version: 1.0.0(@urql/core@4.0.10)(graphql@16.6.0)(wonka@6.3.2) graphql: - specifier: 16.6.0 + specifier: ^15.2.0 || ^16.0.0 version: 16.6.0 tslib: specifier: ^2.5.2 @@ -1821,7 +1821,7 @@ importers: dependencies: '@envelop/on-resolve': specifier: ^4.0.0 - version: 4.0.0(@envelop/core@4.0.0)(graphql@16.6.0) + version: 4.0.0(@envelop/core@5.0.0)(graphql@16.6.0) '@graphql-tools/utils': specifier: ^10.0.0 version: 10.0.0(graphql@16.6.0) @@ -1906,7 +1906,7 @@ importers: packages/plugins/graphql-sse: dependencies: graphql: - specifier: 16.6.0 + specifier: ^15.2.0 || ^16.0.0 version: 16.6.0 graphql-sse: specifier: ^2.0.0 @@ -1964,9 +1964,9 @@ importers: dependencies: '@envelop/prometheus': specifier: ^9.4.0 - version: 9.4.0(@envelop/core@4.0.0)(graphql@16.6.0)(prom-client@15.0.0) + version: 9.4.0(@envelop/core@5.0.0)(graphql@16.6.0)(prom-client@15.0.0) graphql: - specifier: 16.6.0 + specifier: ^15.2.0 || ^16.0.0 version: 16.6.0 graphql-yoga: specifier: ^5.3.0 @@ -1981,7 +1981,7 @@ importers: dependencies: '@envelop/response-cache': specifier: ^6.1.2 - version: 6.1.2(@envelop/core@4.0.0)(graphql@16.6.0) + version: 6.1.2(@envelop/core@5.0.0)(graphql@16.6.0) graphql-yoga: specifier: ^5.3.0 version: link:../../graphql-yoga/dist @@ -1994,33 +1994,10 @@ importers: version: 2.6.2 publishDirectory: dist - packages/plugins/root-level-limitation: - dependencies: - '@graphql-tools/utils': - specifier: ^10.1.0 - version: 10.1.1(graphql@16.6.0) - '@whatwg-node/server': - specifier: ^0.9.32 - version: 0.9.32 - tslib: - specifier: ^2.5.2 - version: 2.6.2 - devDependencies: - '@whatwg-node/fetch': - specifier: ^0.9.17 - version: 0.9.17 - graphql: - specifier: 16.6.0 - version: 16.6.0 - graphql-yoga: - specifier: 5.3.0 - version: link:../../graphql-yoga/dist - publishDirectory: dist - packages/plugins/sofa: dependencies: graphql: - specifier: 16.6.0 + specifier: ^15.2.0 || ^16.0.0 version: 16.6.0 graphql-yoga: specifier: ^5.3.0 @@ -2120,7 +2097,7 @@ packages: /@0no-co/graphql.web@1.0.1(graphql@16.6.0): resolution: {integrity: sha512-6Yaxyv6rOwRkLIvFaL0NrLDgfNqC/Ng9QOPmTmlqW4mORXMEKmh5NYGkIvvt5Yw8fZesnMAqkj8cIqTj8f40cQ==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 peerDependenciesMeta: graphql: optional: true @@ -2308,14 +2285,14 @@ packages: /@apollo/cache-control-types@1.0.2(graphql@16.6.0): resolution: {integrity: sha512-Por80co1eUm4ATsvjCOoS/tIR8PHxqVjsA6z76I6Vw0rFn4cgyVElQcmQDIZiYsy41k8e5xkrMRECkM2WR8pNw==} peerDependencies: - graphql: 16.6.0 + graphql: 14.x || 15.x || 16.x dependencies: graphql: 16.6.0 /@apollo/client@3.7.15(graphql@16.6.0): resolution: {integrity: sha512-pLScjo4GAQRWKWyEg2J3FlQr9fbUAuADT0EI2+JlLf2BjaU9I7WUaZVD9w+0qNPE8BZqs53MRQq0OCm1QCW+eg==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 graphql-ws: ^5.5.5 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -2348,7 +2325,7 @@ packages: /@apollo/client@3.8.2(graphql@16.6.0): resolution: {integrity: sha512-SSxRTHlHdlR65mvV5j5e3JkYs9z/eFQfJPgSfqTeKa3jgHKofBaMb+UWxJPInqV5MqBFAkPFt8fYEBZwM7oGZA==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 graphql-ws: ^5.5.5 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -2383,7 +2360,7 @@ packages: resolution: {integrity: sha512-sAVJwv1YJpqbZzS8E1IFItXsiJPag57g3hvwj8n/sn5LGgRRSS05WxhQl7U3NJEjwD0+4LpXqGrIvpCcRFLsvQ==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^16.5.0 dependencies: '@apollo/federation-internals': 2.4.0(graphql@16.6.0) '@apollo/query-graphs': 2.4.0(graphql@16.6.0) @@ -2394,7 +2371,7 @@ packages: resolution: {integrity: sha512-eXRTG6J5ywwXsWgP0Wgic4zeBXO8jBBvI0FM4t/gay4DI+1zEL5qmoF2HN/jFik0dnd/ud5kh4djvFLmWEwbeA==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^16.5.0 dependencies: '@apollo/federation-internals': 2.4.7(graphql@16.6.0) '@apollo/query-graphs': 2.4.7(graphql@16.6.0) @@ -2404,7 +2381,7 @@ packages: resolution: {integrity: sha512-ovfYwpq3s2LKNvLGg6bxcNlyrCllbF1JhNgQEOEOeAoy3TTmnYuxqd00H3bkT/5xpXvMpBc6+Di6qMkYcQM+Ww==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^16.5.0 dependencies: '@types/uuid': 9.0.1 chalk: 4.1.2 @@ -2416,7 +2393,7 @@ packages: resolution: {integrity: sha512-a4iH+72yVd0zNGC5ZGEDfbqI81wktE7qAHjH4rQzJTqMQ74By3PoMD2DefOArcweonvd4b/h4oQJXGvLK2V4Ew==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^16.5.0 dependencies: '@types/uuid': 9.0.1 chalk: 4.1.2 @@ -2428,7 +2405,7 @@ packages: resolution: {integrity: sha512-Jt1HiFwe94AfjVj1h53GRwz26Bfp6Y0+yyHQ6/CqEJxQWbAHvEiBFKpzwFQQF9O/OshZx8oedmuAXA6RSFRxSg==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^16.5.0 dependencies: '@apollo/composition': 2.4.0(graphql@16.6.0) '@apollo/federation-internals': 2.4.0(graphql@16.6.0) @@ -2459,7 +2436,7 @@ packages: resolution: {integrity: sha512-ZcqSJEUxVJqqPKJ97q72Hyp0YEQfHW+oCRP9osF6XKkrGX1C7nxLm6EzO261+m1bUwkdtjk5CLfXxa9yxIDRdA==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^16.5.0 dependencies: '@apollo/composition': 2.4.7(graphql@16.6.0) '@apollo/federation-internals': 2.4.7(graphql@16.6.0) @@ -2527,7 +2504,7 @@ packages: resolution: {integrity: sha512-xyixv288KQ1/qeRbGayNN+4kbv0oHCZV/iLTu1x/Vb5iZTD0LPlMar2rh7ffGLoCmLLAzP+65le0wRXU581hHQ==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^16.5.0 dependencies: '@apollo/federation-internals': 2.4.0(graphql@16.6.0) deep-equal: 2.0.5 @@ -2540,7 +2517,7 @@ packages: resolution: {integrity: sha512-LLoY0GgP3mcF+8zp3cf701ixHrsFh1WH1R8HPtO0NOgArmVMTl0bvsEHzFqUNdMd/PcU2b9SMcCmPwN7dKRs+A==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^16.5.0 dependencies: '@apollo/federation-internals': 2.4.7(graphql@16.6.0) deep-equal: 2.0.5 @@ -2552,7 +2529,7 @@ packages: resolution: {integrity: sha512-sVBHJ5SW32w6YdeAJCcB23ct5sb/myhv7ebbr9tObmncBR/QOj0n45XyJGXPC3LP8J3h3ICVWehNXDFyV2wOHQ==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^16.5.0 dependencies: '@apollo/federation-internals': 2.4.0(graphql@16.6.0) '@apollo/query-graphs': 2.4.0(graphql@16.6.0) @@ -2567,7 +2544,7 @@ packages: resolution: {integrity: sha512-0fTA1W5NKtfxLq5+GY9ORPSQB/MRH1xOt3SbSS8o9yhR9GKzzE3yYNc88HgYAe2lfdDOesCME2t1kKrE76uzdA==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^16.5.0 dependencies: '@apollo/federation-internals': 2.4.7(graphql@16.6.0) '@apollo/query-graphs': 2.4.7(graphql@16.6.0) @@ -2580,7 +2557,7 @@ packages: /@apollo/server-gateway-interface@1.1.0(graphql@16.6.0): resolution: {integrity: sha512-0rhG++QtGfr4YhhIHgxZ9BdMFthaPY6LbhI9Au90osbfLMiZ7f8dmZsEX1mp7O1h8MJwCu6Dp0I/KcGbSvfUGA==} peerDependencies: - graphql: 16.6.0 + graphql: 14.x || 15.x || 16.x dependencies: '@apollo/usage-reporting-protobuf': 4.1.0 '@apollo/utils.fetcher': 2.0.0 @@ -2593,7 +2570,7 @@ packages: engines: {node: '>=14.16.0'} requiresBuild: true peerDependencies: - graphql: 16.6.0 + graphql: ^16.6.0 dependencies: '@apollo/cache-control-types': 1.0.2(graphql@16.6.0) '@apollo/server-gateway-interface': 1.1.0(graphql@16.6.0) @@ -2632,7 +2609,7 @@ packages: resolution: {integrity: sha512-/njjzPkyzkh0FO2WvLV+I9mlsDWk3DhfOtCc+cmMx9p4mixgyyaRvYvx3tPjSPkMvkPw/cNidCVymuWJVOAu5A==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^16.5.0 dependencies: '@apollo/cache-control-types': 1.0.2(graphql@16.6.0) '@apollo/federation-internals': 2.4.0(graphql@16.6.0) @@ -2655,7 +2632,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 16.6.0 + graphql: 14.x || 15.x || 16.x dependencies: graphql: 16.6.0 dev: false @@ -2696,7 +2673,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 16.6.0 + graphql: 14.x || 15.x || 16.x dependencies: graphql: 16.6.0 dev: false @@ -2707,7 +2684,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 16.6.0 + graphql: 14.x || 15.x || 16.x dependencies: graphql: 16.6.0 dev: false @@ -2718,7 +2695,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 16.6.0 + graphql: 14.x || 15.x || 16.x dependencies: graphql: 16.6.0 lodash.sortby: 4.7.0 @@ -2730,7 +2707,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 16.6.0 + graphql: 14.x || 15.x || 16.x dependencies: graphql: 16.6.0 dev: false @@ -2741,7 +2718,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 16.6.0 + graphql: 14.x || 15.x || 16.x dependencies: '@apollo/usage-reporting-protobuf': 4.1.0 '@apollo/utils.dropunuseddefinitions': 2.0.0(graphql@16.6.0) @@ -2777,7 +2754,7 @@ packages: resolution: {integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==} hasBin: true peerDependencies: - graphql: 16.6.0 + graphql: '*' dependencies: '@babel/core': 7.22.1 '@babel/generator': 7.23.5 @@ -6482,8 +6459,8 @@ packages: engines: {node: '>=18.0.0'} peerDependencies: '@apollo/gateway': ^0.54.0 - '@envelop/core': 4.0.0 - graphql: 16.6.0 + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@apollo/gateway': 2.4.0(graphql@16.6.0) '@envelop/core': 4.0.0 @@ -6495,16 +6472,16 @@ packages: - encoding dev: false - /@envelop/apollo-federation@5.0.0(@apollo/gateway@2.4.7)(@envelop/core@4.0.0)(graphql@16.6.0): + /@envelop/apollo-federation@5.0.0(@apollo/gateway@2.4.7)(@envelop/core@5.0.0)(graphql@16.6.0): resolution: {integrity: sha512-mbe0bqn6mv9WVs5Kk4+IWRZuvxfzjkmuJliAuFJjUuIOn1pMUeCAzjhDTWCHEeCnS0s+TcCtKGFOdAfNtuxbvA==} engines: {node: '>=18.0.0'} peerDependencies: '@apollo/gateway': ^0.54.0 - '@envelop/core': 4.0.0 - graphql: 16.6.0 + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@apollo/gateway': 2.4.7(graphql@16.6.0) - '@envelop/core': 4.0.0 + '@envelop/core': 5.0.0 apollo-server-caching: 3.3.0 apollo-server-types: 3.6.3(graphql@16.6.0) graphql: 16.6.0 @@ -6518,42 +6495,50 @@ packages: engines: {node: '>=16.0.0'} dependencies: '@envelop/types': 4.0.0 + tslib: 2.5.3 + + /@envelop/core@5.0.0: + resolution: {integrity: sha512-aJdnH/ptv+cvwfvciCBe7TSvccBwo9g0S5f6u35TBVzRVqIGkK03lFlIL+x1cnfZgN9EfR2b1PH2galrT1CdCQ==} + engines: {node: '>=18.0.0'} + dependencies: + '@envelop/types': 5.0.0 tslib: 2.6.2 + dev: false /@envelop/disable-introspection@6.0.0(@envelop/core@4.0.0)(graphql@16.6.0): resolution: {integrity: sha512-+DxCvKdzsHat/aWr6dqDsebbGk6ZGiM7VZlnpwKS8g4+PDHg7AfMBnDP8CtUODgifU+kgZME4TFzU288MNpNDg==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': 4.0.0 - graphql: 16.6.0 + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@envelop/core': 4.0.0 graphql: 16.6.0 tslib: 2.6.2 dev: true - /@envelop/extended-validation@4.0.0(@envelop/core@4.0.0)(graphql@16.6.0): + /@envelop/extended-validation@4.0.0(@envelop/core@5.0.0)(graphql@16.6.0): resolution: {integrity: sha512-pvJ/OL+C+lpNiiCXezHT+vP3PTq37MQicoOB1l5MdgOOZZWRAp0NDOgvEKcXUY7AWNpvNHgSE0QFSRfGwsfwFQ==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': 4.0.0 - graphql: 16.6.0 + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@envelop/core': 4.0.0 + '@envelop/core': 5.0.0 '@graphql-tools/utils': 10.1.1(graphql@16.6.0) graphql: 16.6.0 tslib: 2.6.2 dev: false - /@envelop/generic-auth@7.0.0(@envelop/core@4.0.0)(graphql@16.6.0): + /@envelop/generic-auth@7.0.0(@envelop/core@5.0.0)(graphql@16.6.0): resolution: {integrity: sha512-FxGzoSjIXJlv+aiVyhQ8oHoz41ol4gJe8KAzNX7FP3qrhldbrqcC5Q+J/VtNlo5jXYX0YuLHH6ehF80tQDZJ4Q==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': 4.0.0 - graphql: 16.6.0 + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@envelop/core': 4.0.0 - '@envelop/extended-validation': 4.0.0(@envelop/core@4.0.0)(graphql@16.6.0) + '@envelop/core': 5.0.0 + '@envelop/extended-validation': 4.0.0(@envelop/core@5.0.0)(graphql@16.6.0) '@graphql-tools/utils': 10.0.6(graphql@16.6.0) graphql: 16.6.0 tslib: 2.6.2 @@ -6563,24 +6548,39 @@ packages: resolution: {integrity: sha512-+Sfp5DON/krxr4fP1kT6GQeQYqphP2g69CybqAMLRTALCCKs/ZfATvK/Bx+ysPV5K8g/tRwVuDbub1JAuLDxSw==} engines: {node: '>=18.0.0'} peerDependencies: + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: '@envelop/core': 4.0.0 graphql: 16.6.0 + graphql-jit: 0.8.4(graphql@16.6.0) + tslib: 2.6.2 + value-or-promise: 1.0.12 + dev: true + + /@envelop/graphql-jit@8.0.0(@envelop/core@5.0.0)(graphql@16.6.0): + resolution: {integrity: sha512-+Sfp5DON/krxr4fP1kT6GQeQYqphP2g69CybqAMLRTALCCKs/ZfATvK/Bx+ysPV5K8g/tRwVuDbub1JAuLDxSw==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@envelop/core': 4.0.0 + '@envelop/core': 5.0.0 graphql: 16.6.0 graphql-jit: 0.8.4(graphql@16.6.0) tslib: 2.6.2 value-or-promise: 1.0.12 + dev: false - /@envelop/graphql-modules@6.0.0(@envelop/core@4.0.0)(graphql-modules@2.1.2)(graphql@16.6.0): + /@envelop/graphql-modules@6.0.0(@envelop/core@5.0.0)(graphql-modules@2.1.2)(graphql@16.6.0): resolution: {integrity: sha512-U6LoSMFd/eVt/vcI+6cj3OWciPnCTCIz+7Frc+oJ3Bg2utDIba3ngepzQPYb9t2da+AjCw+O2NmBwoUHWH0mAQ==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': 4.0.0 - graphql: 16.6.0 + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 graphql-modules: ^1 || ^2.0.0 dependencies: - '@envelop/core': 4.0.0 + '@envelop/core': 5.0.0 graphql: 16.6.0 graphql-modules: 2.1.2(graphql@16.6.0) tslib: 2.6.2 @@ -6590,62 +6590,79 @@ packages: resolution: {integrity: sha512-rLnSN1B+5zcy3FsWE+16/CMiqjD/LXXcRUXJ0RaXRjzHClpQxgSzrAixNeOmx1vXLff4AgkjOZANJl39rD4dwQ==} engines: {node: '>=18.0.0'} peerDependencies: + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: '@envelop/core': 4.0.0 + '@graphql-tools/utils': 10.0.1(graphql@16.6.0) + '@n1ru4l/graphql-live-query': 0.10.0(graphql@16.6.0) + '@n1ru4l/graphql-live-query-patch': 0.7.0(graphql@16.6.0) + '@n1ru4l/in-memory-live-query-store': 0.10.0(graphql@16.6.0) graphql: 16.6.0 + tslib: 2.6.2 + dev: true + + /@envelop/live-query@7.0.0(@envelop/core@5.0.0)(graphql@16.6.0): + resolution: {integrity: sha512-rLnSN1B+5zcy3FsWE+16/CMiqjD/LXXcRUXJ0RaXRjzHClpQxgSzrAixNeOmx1vXLff4AgkjOZANJl39rD4dwQ==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@envelop/core': 4.0.0 + '@envelop/core': 5.0.0 '@graphql-tools/utils': 10.0.1(graphql@16.6.0) '@n1ru4l/graphql-live-query': 0.10.0(graphql@16.6.0) '@n1ru4l/graphql-live-query-patch': 0.7.0(graphql@16.6.0) '@n1ru4l/in-memory-live-query-store': 0.10.0(graphql@16.6.0) graphql: 16.6.0 tslib: 2.6.2 + dev: false - /@envelop/on-resolve@4.0.0(@envelop/core@4.0.0)(graphql@16.6.0): + /@envelop/on-resolve@4.0.0(@envelop/core@5.0.0)(graphql@16.6.0): resolution: {integrity: sha512-EBGJoaN7eqpDxhH/EFnjx5CgK8d7XKs6/2scuqGmEnVptW+8sicxPdvt5nZielZRT6spRK14ZGWmn2o8qf8GjQ==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': 4.0.0 - graphql: 16.6.0 + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@envelop/core': 4.0.0 + '@envelop/core': 5.0.0 graphql: 16.6.0 dev: false - /@envelop/on-resolve@4.1.0(@envelop/core@4.0.0)(graphql@16.6.0): + /@envelop/on-resolve@4.1.0(@envelop/core@5.0.0)(graphql@16.6.0): resolution: {integrity: sha512-2AXxf8jbBIepBUiY0KQtyCO6gnT7LKBEYdaARZBJ7ujy1+iQHQPORKvAwl51kIdD6v5x38eldZnm7A19jFimOg==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': 4.0.0 - graphql: 16.6.0 + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@envelop/core': 4.0.0 + '@envelop/core': 5.0.0 graphql: 16.6.0 dev: false - /@envelop/prometheus@9.4.0(@envelop/core@4.0.0)(graphql@16.6.0)(prom-client@15.0.0): + /@envelop/prometheus@9.4.0(@envelop/core@5.0.0)(graphql@16.6.0)(prom-client@15.0.0): resolution: {integrity: sha512-r+BoQhDl/7qV8iZ0jOAumuMw3zi+IiFC5NFtgPSWwf3YFDH9PG1Y4WTh2qi+2GAFp/Z6CPv1TWePs3DHyz3v4w==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': 4.0.0 - graphql: 16.6.0 + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 prom-client: ^15.0.0 dependencies: - '@envelop/core': 4.0.0 - '@envelop/on-resolve': 4.1.0(@envelop/core@4.0.0)(graphql@16.6.0) + '@envelop/core': 5.0.0 + '@envelop/on-resolve': 4.1.0(@envelop/core@5.0.0)(graphql@16.6.0) graphql: 16.6.0 prom-client: 15.0.0 tslib: 2.6.2 dev: false - /@envelop/response-cache@6.1.2(@envelop/core@4.0.0)(graphql@16.6.0): + /@envelop/response-cache@6.1.2(@envelop/core@5.0.0)(graphql@16.6.0): resolution: {integrity: sha512-vBX6z/TxBZSNReVn69VJVkdGHpGzHyeQNMz9LXobczl55KCZaf2inBWguSdGq+vx6PlB068GhLeg+a7kseiF1Q==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': 4.0.0 - graphql: 16.6.0 + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@envelop/core': 4.0.0 + '@envelop/core': 5.0.0 '@graphql-tools/utils': 10.1.0(graphql@16.6.0) '@whatwg-node/fetch': 0.9.17 fast-json-stable-stringify: 2.1.0 @@ -6660,6 +6677,13 @@ packages: dependencies: tslib: 2.6.2 + /@envelop/types@5.0.0: + resolution: {integrity: sha512-IPjmgSc4KpQRlO4qbEDnBEixvtb06WDmjKfi/7fkZaryh5HuOmTtixe1EupQI5XfXO8joc3d27uUZ0QdC++euA==} + engines: {node: '>=18.0.0'} + dependencies: + tslib: 2.6.2 + dev: false + /@esbuild-kit/cjs-loader@2.4.2: resolution: {integrity: sha512-BDXFbYOJzT/NBEtp71cvsrGPwGAMGRB/349rwKuoxNSiKjPraNNnlK6MIIabViCjqZugu6j+xeMDlEkWdHHJSg==} dependencies: @@ -7535,7 +7559,7 @@ packages: /@graphiql/plugin-explorer@0.1.4(@codemirror/language@6.0.0)(@types/react@18.2.8)(graphql@16.6.0)(react-dom@18.2.0)(react-is@17.0.2)(react@18.2.0): resolution: {integrity: sha512-sjP2W5mf9ZR/GAMs2kg2NkIa8shGZWFQu6LYHmTjWuOP2V1gTgEAgJYvr36InE1Bj9gnBHQhqGFP9lYjdB6Ncw==} peerDependencies: - graphql: 16.6.0 + graphql: ^15.5.0 || ^16.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: @@ -7555,7 +7579,7 @@ packages: /@graphiql/react@0.13.3(patch_hash=yqm362ey3efuxzwgojxfo6tq5i)(@codemirror/language@6.0.0)(@types/react@18.2.8)(graphql@16.6.0)(react-dom@18.2.0)(react-is@17.0.2)(react@18.2.0): resolution: {integrity: sha512-BIOaahIxVHGQjoVbECIiSzEtETZVMyhG83ysVpoFKCVj27KxDbh/Yk9w23L0aYQWuWEU7C02Kzl5gi+Zwx/K3A==} peerDependencies: - graphql: 16.6.0 + graphql: ^15.5.0 || ^16.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: @@ -7587,7 +7611,7 @@ packages: /@graphiql/toolkit@0.8.4(graphql@16.6.0): resolution: {integrity: sha512-cFUGqh3Dau+SD3Vq9EFlZrhzYfaHKyOJveFtaCR+U5Cn/S68p7oy+vQBIdwtO6J2J58FncnwBbVRfr+IvVfZqQ==} peerDependencies: - graphql: 16.6.0 + graphql: ^15.5.0 || ^16.0.0 graphql-ws: '>= 4.5.0' peerDependenciesMeta: graphql-ws: @@ -7605,7 +7629,7 @@ packages: hasBin: true peerDependencies: '@parcel/watcher': ^2.1.0 - graphql: 16.6.0 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 peerDependenciesMeta: '@parcel/watcher': optional: true @@ -7659,7 +7683,7 @@ packages: /@graphql-codegen/core@4.0.0(graphql@16.6.0): resolution: {integrity: sha512-JAGRn49lEtSsZVxeIlFVIRxts2lWObR+OQo7V2LHDJ7ohYYw3ilv7nJ8pf8P4GTg/w6ptcYdSdVVdkI8kUHB/Q==} peerDependencies: - graphql: 16.6.0 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.6.0) '@graphql-tools/schema': 10.0.0(graphql@16.6.0) @@ -7671,7 +7695,7 @@ packages: /@graphql-codegen/plugin-helpers@5.0.1(graphql@16.6.0): resolution: {integrity: sha512-6L5sb9D8wptZhnhLLBcheSPU7Tg//DGWgc5tQBWX46KYTOTQHGqDpv50FxAJJOyFVJrveN9otWk9UT9/yfY4ww==} peerDependencies: - graphql: 16.6.0 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) change-case-all: 1.0.15 @@ -7685,7 +7709,7 @@ packages: /@graphql-codegen/plugin-helpers@5.0.3(graphql@16.6.0): resolution: {integrity: sha512-yZ1rpULIWKBZqCDlvGIJRSyj1B2utkEdGmXZTBT/GVayP4hyRYlkd36AJV/LfEsVD8dnsKL5rLz2VTYmRNlJ5Q==} peerDependencies: - graphql: 16.6.0 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) change-case-all: 1.0.15 @@ -7699,7 +7723,7 @@ packages: /@graphql-codegen/schema-ast@4.0.2(graphql@16.6.0): resolution: {integrity: sha512-5mVAOQQK3Oz7EtMl/l3vOQdc2aYClUzVDHHkMvZlunc+KlGgl81j8TLa+X7ANIllqU4fUEsQU3lJmk4hXP6K7Q==} peerDependencies: - graphql: 16.6.0 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -7710,7 +7734,7 @@ packages: /@graphql-codegen/typescript-resolvers@4.0.6(graphql@16.6.0): resolution: {integrity: sha512-7OBFzZ2xSkYgMgcc1A3xNqbBHHSQXBesLrG86Sh+Jj0PQQB3Om8j1HSFs64PD/l5Kri2dXgm3oim/89l3Rl3lw==} peerDependencies: - graphql: 16.6.0 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.6.0) '@graphql-codegen/typescript': 4.0.6(graphql@16.6.0) @@ -7727,7 +7751,7 @@ packages: /@graphql-codegen/typescript@4.0.6(graphql@16.6.0): resolution: {integrity: sha512-IBG4N+Blv7KAL27bseruIoLTjORFCT3r+QYyMC3g11uY3/9TPpaUyjSdF70yBe5GIQ6dAgDU+ENUC1v7EPi0rw==} peerDependencies: - graphql: 16.6.0 + graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.6.0) '@graphql-codegen/schema-ast': 4.0.2(graphql@16.6.0) @@ -7743,7 +7767,7 @@ packages: /@graphql-codegen/visitor-plugin-common@5.1.0(graphql@16.6.0): resolution: {integrity: sha512-eamQxtA9bjJqI2lU5eYoA1GbdMIRT2X8m8vhWYsVQVWD3qM7sx/IqJU0kx0J3Vd4/CSd36BzL6RKwksibytDIg==} peerDependencies: - graphql: 16.6.0 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.6.0) '@graphql-tools/optimize': 2.0.0(graphql@16.6.0) @@ -7765,7 +7789,7 @@ packages: resolution: {integrity: sha512-axQTbN5+Yxs1rJ6cWQBOfw3AEeC+fvIuZSfJLPLLvFJLj4pUm9fhxey/g6oQZAAQJqKPfw+tLDUQvnfvRK8Kmg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -7779,7 +7803,7 @@ packages: /@graphql-tools/batch-execute@8.5.19(graphql@16.6.0): resolution: {integrity: sha512-eqofTMYPygg9wVPdA+p8lk4NBpaPTcDut6SlnDk9IiYdY23Yfo6pY7mzZ3b27GugI7HDtB2OZUxzZJSGsk6Qew==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 9.2.1(graphql@16.6.0) dataloader: 2.2.2 @@ -7792,7 +7816,7 @@ packages: resolution: {integrity: sha512-lT9/1XmPSYzBcEybXPLsuA6C5E0t8438PVUELABcqdvwHgZ3VOOx29MLBEqhr2oewOlDChH6PXNkfxoOoAuzRg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) dataloader: 2.2.2 @@ -7804,7 +7828,7 @@ packages: resolution: {integrity: sha512-nq36yQnUVp6Roti+RFatInRogZzbwdFKZK1YBCmP3XpUvoOBbWaHaLKxVE9mU5lb9nL99zKzhq6gfh5syzxjJQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/graphql-tag-pluck': 8.0.0(@babel/core@7.22.1)(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -7821,7 +7845,7 @@ packages: resolution: {integrity: sha512-ZW5/7Q0JqUM+guwn8/cM/1Hz16Zvj6WR6r3gnOwoPO7a9bCbe8QTCk4itT/EO+RiGT8RLUPYaunWR9jxfNqqOA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/batch-execute': 9.0.0(graphql@16.6.0) '@graphql-tools/executor': 1.2.5(graphql@16.6.0) @@ -7835,7 +7859,7 @@ packages: /@graphql-tools/delegate@9.0.28(graphql@16.6.0): resolution: {integrity: sha512-8j23JCs2mgXqnp+5K0v4J3QBQU/5sXd9miaLvMfRf/6963DznOXTECyS9Gcvj1VEeR5CXIw6+aX/BvRDKDdN1g==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/batch-execute': 8.5.19(graphql@16.6.0) '@graphql-tools/executor': 0.0.15(graphql@16.6.0) @@ -7852,7 +7876,7 @@ packages: engines: {node: '>=16.0.0'} peerDependencies: '@apollo/client': ^3.5.9 - graphql: 16.6.0 + graphql: ^15.2.0 || ^16.0.0 dependencies: '@apollo/client': 3.7.15(graphql@16.6.0) '@graphql-tools/utils': 10.0.1(graphql@16.6.0) @@ -7864,7 +7888,7 @@ packages: resolution: {integrity: sha512-voczXmNcEzZKk6dS4pCwN0XCXvDiAVm9rj+54oz7X04IsHBJmTUul1YhCbJie1xUvN1jmgEJ14lfD92tMMMTmQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) '@repeaterjs/repeater': 3.0.4 @@ -7882,7 +7906,7 @@ packages: resolution: {integrity: sha512-lSoPFWrGU6XT9nGGBogUI8bSOtP0yce2FhXTrU5akMZ35BDCNWbkmgryzRhxoAH/yDOaZtKkHQB3xrYX3uo5zA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 10.0.6(graphql@16.6.0) '@repeaterjs/repeater': 3.0.4 @@ -7899,7 +7923,7 @@ packages: resolution: {integrity: sha512-roQyDLOAywyaCTPOhwXiT/WDr0bfuVhqOXjECsnrIl/1TMPDUYjiT2sW6Gz6pqnYMmokdhyvlV6D5d7WtIrKsA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) '@repeaterjs/repeater': 3.0.4 @@ -7916,7 +7940,7 @@ packages: resolution: {integrity: sha512-8c0wlhYz7G6imuWqHqjpveflN8IVL3gXIxel5lzpAvPvxsSXpiNig3jADkIBB+eaxzR9R1lbwxqonxPUGI4CdQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) '@types/ws': 8.5.4 @@ -7933,7 +7957,7 @@ packages: engines: {node: '>=16.0.0'} peerDependencies: '@urql/core': ^3.0.0 || ^4.0.0 - graphql: 16.6.0 + graphql: ^15.2.0 || ^16.0.0 wonka: ^6.0.0 dependencies: '@graphql-tools/utils': 10.0.1(graphql@16.6.0) @@ -7946,7 +7970,7 @@ packages: /@graphql-tools/executor@0.0.15(graphql@16.6.0): resolution: {integrity: sha512-6U7QLZT8cEUxAMXDP4xXVplLi6RBwx7ih7TevlBto66A/qFp3PDb6o/VFo07yBKozr8PGMZ4jMfEWBGxmbGdxA==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 9.2.1(graphql@16.6.0) '@graphql-typed-document-node/core': 3.1.2(graphql@16.6.0) @@ -7960,7 +7984,7 @@ packages: resolution: {integrity: sha512-s7sW4K3BUNsk9sjq+vNicwb9KwcR3G55uS/CI8KZQ4x0ZdeYMIwpeU9MVeORCCpHuQyTaV+/VnO0hFrS/ygzsg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) @@ -7973,7 +7997,7 @@ packages: resolution: {integrity: sha512-0QAzWywOdWC4vozYFi4OuAxv1QvHo6PwLY+D8DCQn+knxWZAsJe86SESxBkQ5R03yHFWPaiBVWKDB+lxxgC7Uw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/graphql-tag-pluck': 8.0.0(@babel/core@7.22.1)(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -7991,7 +8015,7 @@ packages: resolution: {integrity: sha512-VuroArWKcG4yaOWzV0r19ElVIV6iH6UKDQn1MXemND0xu5TzrFme0kf3U9o0YwNo0kUYEk9CyFM0BYg4he17FA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-http': 1.0.4(@types/node@18.16.16)(graphql@16.6.0) @@ -8012,7 +8036,7 @@ packages: resolution: {integrity: sha512-wRXj9Z1IFL3+zJG1HWEY0S4TXal7+s1vVhbZva96MSp0kbb/3JBF7j0cnJ44Eq0ClccMgGCDFqPFXty4JlpaPg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/import': 7.0.0(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -8026,7 +8050,7 @@ packages: resolution: {integrity: sha512-/xFXF7RwWf1UDAnUN/984Q1clRxRcWwO7lxi+BDzuwN14DJb424FVAmFOroBeeFWQNdj8qtNGLWhAbx23khvHQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@babel/parser': 7.23.5 '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.22.1) @@ -8044,7 +8068,7 @@ packages: resolution: {integrity: sha512-NVZiTO8o1GZs6OXzNfjB+5CtQtqsZZpQOq+Uu0w57kdUkT4RlQKlwhT8T81arEsbV55KpzkpFsOZP7J1wdmhBw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) graphql: 16.6.0 @@ -8056,7 +8080,7 @@ packages: resolution: {integrity: sha512-ki6EF/mobBWJjAAC84xNrFMhNfnUFD6Y0rQMGXekrUgY0NdeYXHU0ZUgHzC9O5+55FslqUmAUHABePDHTyZsLg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) globby: 11.1.0 @@ -8069,7 +8093,7 @@ packages: resolution: {integrity: sha512-P98amERIwI7FD8Bsq6xUbz9Mj63W8qucfrE/WQjad5jFMZYdFFt46a99FFdfx8S/ZYgpAlj/AZbaTtWLitMgNQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: globby: 11.1.0 graphql: 16.6.0 @@ -8081,7 +8105,7 @@ packages: resolution: {integrity: sha512-Cy874bQJH0FP2Az7ELPM49iDzOljQmK1PPH6IuxsWzLSTxwTqd8dXA09dcVZrI7/LsN26heTY2R8q2aiiv0GxQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/schema': 10.0.0(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -8093,7 +8117,7 @@ packages: /@graphql-tools/merge@8.4.0(graphql@16.6.0): resolution: {integrity: sha512-3XYCWe0d3I4F1azNj1CdShlbHfTIfiDgj00R9uvFH8tHKh7i1IWN3F7QQYovcHKhayaR6zPok3YYMESYQcBoaA==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 9.2.1(graphql@16.6.0) graphql: 16.6.0 @@ -8103,7 +8127,7 @@ packages: /@graphql-tools/merge@8.4.2(graphql@16.6.0): resolution: {integrity: sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 9.2.1(graphql@16.6.0) graphql: 16.6.0 @@ -8114,7 +8138,7 @@ packages: resolution: {integrity: sha512-J7/xqjkGTTwOJmaJQJ2C+VDBDOWJL3lKrHJN4yMaRLAJH3PosB7GiPRaSDZdErs0+F77sH2MKs2haMMkywzx7Q==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) graphql: 16.6.0 @@ -8124,7 +8148,7 @@ packages: resolution: {integrity: sha512-nhdT+CRGDZ+bk68ic+Jw1OZ99YCDIKYA5AlVAnBHJvMawSx9YQqQAIj4refNc1/LRieGiuWvhbG3jvPVYho0Dg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: graphql: 16.6.0 tslib: 2.6.2 @@ -8134,7 +8158,7 @@ packages: resolution: {integrity: sha512-AvvVFj+E+e8kG5QaVcitLTr7VZOa5CmvJ8HwlZslmg9OD1qoVDvhroGoR5/3y5e6n1xUjCWlO1xoo3QBseMuSw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/url-loader': 8.0.1(@types/node@18.16.16)(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -8167,7 +8191,7 @@ packages: resolution: {integrity: sha512-UNlJi5y3JylhVWU4MBpL0Hun4Q7IoJwv9xYtmAz+CgRa066szzY7dcuPfxrA7cIGgG/Q6TVsKsYaiF4OHPs1Fw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/relay-compiler': 12.0.0(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -8182,7 +8206,7 @@ packages: resolution: {integrity: sha512-kf3qOXMFcMs2f/S8Y3A8fm/2w+GaHAkfr3Gnhh2LOug/JgpY/ywgFVxO3jOeSpSEdoYcDKLcXVjMigNbY4AdQg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/merge': 9.0.0(graphql@16.6.0) '@graphql-tools/utils': 10.0.1(graphql@16.6.0) @@ -8193,7 +8217,7 @@ packages: /@graphql-tools/schema@9.0.17(graphql@16.6.0): resolution: {integrity: sha512-HVLq0ecbkuXhJlpZ50IHP5nlISqH2GbNgjBJhhRzHeXhfwlUOT4ISXGquWTmuq61K0xSaO0aCjMpxe4QYbKTng==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/merge': 8.4.0(graphql@16.6.0) '@graphql-tools/utils': 9.2.1(graphql@16.6.0) @@ -8205,7 +8229,7 @@ packages: /@graphql-tools/schema@9.0.19(graphql@16.6.0): resolution: {integrity: sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/merge': 8.4.2(graphql@16.6.0) '@graphql-tools/utils': 9.2.1(graphql@16.6.0) @@ -8218,7 +8242,7 @@ packages: resolution: {integrity: sha512-rPc9oDzMnycvz+X+wrN3PLrhMBQkG4+sd8EzaFN6dypcssiefgWKToXtRKI8HHK68n2xEq1PyrOpkjHFJB+GwA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/delegate': 10.0.0(graphql@16.6.0) @@ -8245,7 +8269,7 @@ packages: resolution: {integrity: sha512-B2k8KQEkEQmfV1zhurT5GLoXo8jbXP+YQHUayhCSxKYlRV7j/1Fhp1b21PDM8LXIDGlDRXaZ0FbWKOs7eYXDuQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/delegate': 10.0.0(graphql@16.6.0) @@ -8271,7 +8295,7 @@ packages: resolution: {integrity: sha512-ndBPc6zgR+eGU/jHLpuojrs61kYN3Z89JyMLwK3GCRkPv4EQn9EOr1UWqF1JO0iM+/jAVHY0mvfUxyrFFN9DUQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) graphql: 16.6.0 @@ -8282,7 +8306,7 @@ packages: resolution: {integrity: sha512-i1FozbDGHgdsFA47V/JvQZ0FE8NAy0Eiz7HGCJO2MkNdZAKNnwei66gOq0JWYVFztwpwbVQ09GkKhq7Kjcq5Cw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) graphql: 16.6.0 @@ -8292,7 +8316,7 @@ packages: resolution: {integrity: sha512-hZMjl/BbX10iagovakgf3IiqArx8TPsotq5pwBld37uIX1JiZoSbgbCIFol7u55bh32o6cfDEiiJgfAD5fbeyQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) dset: 3.1.2 @@ -8303,7 +8327,7 @@ packages: resolution: {integrity: sha512-wLPqhgeZ9BZJPRoaQbsDN/CtJDPd/L4qmmtPkjI3NuYJ39x+Eqz1Sh34EAGMuDh+xlOHqBwHczkZUpoK9tvzjw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) cross-inspect: 1.0.0 @@ -8316,7 +8340,7 @@ packages: resolution: {integrity: sha512-1kNkZsND12hPkb+YpuUeTRt8f9ZTGhYOfu23V5Z21HegYDjl1k9eX+Inher/eiHCf1eXCk5rKWL9Liol8MWixA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) cross-inspect: 1.0.0 @@ -8327,7 +8351,7 @@ packages: /@graphql-tools/utils@8.13.1(graphql@16.6.0): resolution: {integrity: sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: graphql: 16.6.0 tslib: 2.6.2 @@ -8335,7 +8359,7 @@ packages: /@graphql-tools/utils@9.2.1(graphql@16.6.0): resolution: {integrity: sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) graphql: 16.6.0 @@ -8346,7 +8370,7 @@ packages: resolution: {integrity: sha512-HDOeUUh6UhpiH0WPJUQl44ODt1x5pnMUbOJZ7GjTdGQ7LK0AgVt3ftaAQ9duxLkiAtYJmu5YkULirfZGj4HzDg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/delegate': 10.0.0(graphql@16.6.0) '@graphql-tools/schema': 10.0.0(graphql@16.6.0) @@ -8358,7 +8382,7 @@ packages: /@graphql-tools/wrap@9.3.8(graphql@16.6.0): resolution: {integrity: sha512-MGsExYPiILMw4Qff7HcvE9MMSYdjb/tr5IQYJbxJIU4/TrBHox1/smne8HG+Bd7kmDlTTj7nU/Z8sxmoRd0hOQ==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/delegate': 9.0.28(graphql@16.6.0) '@graphql-tools/schema': 9.0.17(graphql@16.6.0) @@ -8371,7 +8395,7 @@ packages: /@graphql-typed-document-node/core@3.1.2(graphql@16.6.0): resolution: {integrity: sha512-9anpBMM9mEgZN4wr2v8wHJI2/u5TnnggewRN6OlvXTTnuVyoY19X6rOv9XTqKRw6dcGKwZsBi8n0kDE2I5i4VA==} peerDependencies: - graphql: 16.6.0 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: graphql: 16.6.0 dev: false @@ -8379,7 +8403,7 @@ packages: /@graphql-typed-document-node/core@3.2.0(graphql@16.6.0): resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==} peerDependencies: - graphql: 16.6.0 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: graphql: 16.6.0 @@ -9501,7 +9525,7 @@ packages: /@mdx-js/react@3.0.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==} peerDependencies: - '@types/react': 18.2.8 + '@types/react': '>=16' react: '>=16' dependencies: '@types/mdx': 2.0.3 @@ -9512,7 +9536,7 @@ packages: /@n1ru4l/graphql-live-query-patch@0.7.0(graphql@16.6.0): resolution: {integrity: sha512-1q49iNxqEIbmUp+qFAEVEn4ts344Cw72g5OtAuFeTwKtJT3V91kTPGMcRk5Pxb5FPHbvn52q+PCVKOAyVrtPwQ==} peerDependencies: - graphql: 16.6.0 + graphql: ^15.4.0 || ^16.0.0 dependencies: '@repeaterjs/repeater': 3.0.4 graphql: 16.6.0 @@ -9520,14 +9544,14 @@ packages: /@n1ru4l/graphql-live-query@0.10.0(graphql@16.6.0): resolution: {integrity: sha512-qZ7OHH/NB0NcG/Xa7irzgjE63UH0CkofZT0Bw4Ko6iRFagPRHBM8RgFXwTt/6JbFGIEUS4STRtaFoc/Eq/ZtzQ==} peerDependencies: - graphql: 16.6.0 + graphql: ^15.4.0 || ^16.0.0 dependencies: graphql: 16.6.0 /@n1ru4l/in-memory-live-query-store@0.10.0(graphql@16.6.0): resolution: {integrity: sha512-pt7bZgTPz9dk7ceoOp76KIbVFFlAPe0e5A07UiZ19fQy3JPvvoLRdjmnKbUh3VsEUUh8MyytFcFRguaeiidAYA==} peerDependencies: - graphql: 16.6.0 + graphql: ^15.4.0 || ^16.0.0 dependencies: '@graphql-tools/utils': 8.13.1(graphql@16.6.0) '@n1ru4l/graphql-live-query': 0.10.0(graphql@16.6.0) @@ -9842,7 +9866,7 @@ packages: '@nestjs/core': ^9.3.8 || ^10.0.0 class-transformer: '*' class-validator: '*' - graphql: 16.6.0 + graphql: ^16.6.0 reflect-metadata: ^0.1.13 ts-morph: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: @@ -9887,7 +9911,7 @@ packages: '@nestjs/core': ^9.3.8 || ^10.0.0 class-transformer: '*' class-validator: '*' - graphql: 16.6.0 + graphql: ^16.6.0 reflect-metadata: ^0.1.13 ts-morph: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: @@ -9934,7 +9958,7 @@ packages: '@nestjs/core': ^9.3.8 || ^10.0.0 class-transformer: '*' class-validator: '*' - graphql: 16.6.0 + graphql: ^16.6.0 reflect-metadata: ^0.1.13 ts-morph: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: @@ -12055,7 +12079,7 @@ packages: /@pothos/core@3.30.0(graphql@16.6.0): resolution: {integrity: sha512-ZUL2YTv3ODeKBkhkVcEO03lcERdqQaG2zfylNpkrY9ryAIhOuN9Pbo+VnfqhqEQx7jM/56Rro7i9AuhzF0Q3tA==} peerDependencies: - graphql: 16.6.0 + graphql: '>=15.1.0' dependencies: graphql: 16.6.0 dev: false @@ -12383,7 +12407,7 @@ packages: /@radix-ui/react-collection@1.0.3(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==} peerDependencies: - '@types/react': 18.2.8 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -12406,7 +12430,7 @@ packages: /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==} peerDependencies: - '@types/react': 18.2.8 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -12420,7 +12444,7 @@ packages: /@radix-ui/react-context@1.0.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==} peerDependencies: - '@types/react': 18.2.8 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -12434,7 +12458,7 @@ packages: /@radix-ui/react-direction@1.0.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==} peerDependencies: - '@types/react': 18.2.8 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -12448,7 +12472,7 @@ packages: /@radix-ui/react-dismissable-layer@1.0.5(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==} peerDependencies: - '@types/react': 18.2.8 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -12472,7 +12496,7 @@ packages: /@radix-ui/react-id@1.0.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==} peerDependencies: - '@types/react': 18.2.8 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -12487,7 +12511,7 @@ packages: /@radix-ui/react-navigation-menu@1.1.4(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-Cc+seCS3PmWmjI51ufGG7zp1cAAIRqHVw7C9LOA2TZ+R4hG6rDvHcTqIsEEFLmZO3zNVH72jOOE7kKNy8W+RtA==} peerDependencies: - '@types/react': 18.2.8 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -12520,7 +12544,7 @@ packages: /@radix-ui/react-presence@1.0.1(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==} peerDependencies: - '@types/react': 18.2.8 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -12541,7 +12565,7 @@ packages: /@radix-ui/react-primitive@1.0.3(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==} peerDependencies: - '@types/react': 18.2.8 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -12561,7 +12585,7 @@ packages: /@radix-ui/react-slot@1.0.2(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} peerDependencies: - '@types/react': 18.2.8 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -12576,7 +12600,7 @@ packages: /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==} peerDependencies: - '@types/react': 18.2.8 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -12590,7 +12614,7 @@ packages: /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==} peerDependencies: - '@types/react': 18.2.8 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -12605,7 +12629,7 @@ packages: /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==} peerDependencies: - '@types/react': 18.2.8 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -12620,7 +12644,7 @@ packages: /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==} peerDependencies: - '@types/react': 18.2.8 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -12634,7 +12658,7 @@ packages: /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==} peerDependencies: - '@types/react': 18.2.8 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -12648,7 +12672,7 @@ packages: /@radix-ui/react-visually-hidden@1.0.3(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==} peerDependencies: - '@types/react': 18.2.8 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -15282,7 +15306,7 @@ packages: engines: {node: '>=12.0'} deprecated: The `apollo-server-types` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. peerDependencies: - graphql: 16.6.0 + graphql: ^15.3.0 || ^16.0.0 dependencies: '@apollo/utils.keyvaluecache': 1.0.1 '@apollo/utils.logger': 1.0.1 @@ -17210,7 +17234,7 @@ packages: peerDependencies: '@codemirror/language': 6.0.0 codemirror: ^5.65.3 - graphql: 16.6.0 + graphql: ^15.5.0 || ^16.0.0 dependencies: '@codemirror/language': 6.0.0 '@types/codemirror': 0.0.90 @@ -21978,7 +22002,7 @@ packages: /graphiql-explorer@0.9.0(graphql@16.6.0)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-fZC/wsuatqiQDO2otchxriFO0LaWIo/ovF/CQJ1yOudmY0P7pzDiP+l9CEHUiWbizk3e99x6DQG4XG1VxA+d6A==} peerDependencies: - graphql: 16.6.0 + graphql: ^0.6.0 || ^0.7.0 || ^0.8.0-b || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 react: ^15.6.0 || ^16.0.0 react-dom: ^15.6.0 || ^16.0.0 dependencies: @@ -21990,7 +22014,7 @@ packages: /graphiql@2.0.7(@codemirror/language@6.0.0)(@types/react@18.2.8)(graphql@16.6.0)(react-dom@18.2.0)(react-is@17.0.2)(react@18.2.0): resolution: {integrity: sha512-vHZeCS+KKbMQAWJ0CDdnCPmVOG0d48BeoZJjBlm2H5WlCpNjVMm0WVpfL7dG3aP4k+eF+800sMpUx3VVFt7LYw==} peerDependencies: - graphql: 16.6.0 + graphql: ^15.5.0 || ^16.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: @@ -22015,7 +22039,7 @@ packages: engines: {node: '>= 16.0.0'} peerDependencies: cosmiconfig-toml-loader: ^1.0.0 - graphql: 16.6.0 + graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 peerDependenciesMeta: cosmiconfig-toml-loader: optional: true @@ -22043,7 +22067,7 @@ packages: resolution: {integrity: sha512-r2sIo6jCTQi1aj7s+Srg7oU3+r5pUUgxgDD5JDZOmFzrbXVGz+yMhIKhvqW0cV10DcnVIFCOzuFuc1qvnjJ7yQ==} engines: {node: '>=12'} peerDependencies: - graphql: 16.6.0 + graphql: '>=0.11 <=16' dependencies: graphql: 16.6.0 dev: true @@ -22051,7 +22075,7 @@ packages: /graphql-jit@0.8.4(graphql@16.6.0): resolution: {integrity: sha512-4KRrJ1ROy3Usgbl3eAoUMfdfZCRjkcw9cCGT7QwTUIHm9dPGaSaldxzGUttyjErU0rsYEb6WWyb6mMh5r6lEoQ==} peerDependencies: - graphql: 16.6.0 + graphql: '>=15' dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) fast-json-stringify: 5.7.0 @@ -22065,7 +22089,7 @@ packages: resolution: {integrity: sha512-APffigZ/l2me6soek+Yq5Us3HBwmfw4vns4QoqsTePXkK3knVO8rn0uAC6PmTyglb1pmFFPbYaRIzW4wmcnnGQ==} hasBin: true peerDependencies: - graphql: 16.6.0 + graphql: ^15.5.0 || ^16.0.0 dependencies: graphql: 16.6.0 nullthrows: 1.1.1 @@ -22076,7 +22100,7 @@ packages: resolution: {integrity: sha512-o/ZgTS0pBxWm3hSF4+6GwiV1//DxzoLWEbS38+jqpzzy1d/QXBidwQuVYTOksclbtOJZ3KR/tZ8fi/tI6VpVMg==} hasBin: true peerDependencies: - graphql: 16.6.0 + graphql: ^15.5.0 || ^16.0.0 dependencies: graphql: 16.6.0 nullthrows: 1.1.1 @@ -22086,7 +22110,7 @@ packages: /graphql-modules@2.1.2(graphql@16.6.0): resolution: {integrity: sha512-GWxPom0iv4TXyLkuPqEHdRtJRdWCrUOGRMpXWmly1eY2T2MKAdCNya5iY/Ezb3d0Z2BzQBRUXdOgdkFPe2UDjg==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-tools/schema': 9.0.19(graphql@16.6.0) '@graphql-tools/wrap': 9.3.8(graphql@16.6.0) @@ -22098,7 +22122,7 @@ packages: /graphql-request@6.1.0(graphql@16.6.0): resolution: {integrity: sha512-p+XPfS4q7aIpKVcgmnZKhMNqhltk20hfXtkaIkTfjjmiKMJ5xrt5c743cL03y/K7y1rg3WrIC49xGiEQ4mxdNw==} peerDependencies: - graphql: 16.6.0 + graphql: 14 - 16 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) cross-fetch: 3.1.5 @@ -22111,7 +22135,7 @@ packages: resolution: {integrity: sha512-my9FB4GtghqXqi/lWSVAOPiTzTnnEzdOXCsAC2bb5V7EFNQjVjwy3cSSbUvgYOtDuDibd+ZsCDhz+4eykYOlhQ==} engines: {node: '>=10'} peerDependencies: - graphql: 16.6.0 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: graphql: 16.6.0 tslib: 2.5.3 @@ -22121,7 +22145,7 @@ packages: resolution: {integrity: sha512-TTdFwxGM9RY68s22XWyhc+SyQn3PLbELDD2So0K6Cc6EIlBAyPuNV8VlPfNKa/la7gEf2SwHY7JoJplOmOY4LA==} engines: {node: '>=12'} peerDependencies: - graphql: 16.6.0 + graphql: '>=0.11 <=16' dependencies: graphql: 16.6.0 dev: false @@ -22130,7 +22154,7 @@ packages: resolution: {integrity: sha512-NZ4bek4VBlsEDSCnibq9MddbZ2AU4rAusTwUg3sbux4J3WOcZ6zB6Ysrw6rzfJq771wEmwPEMtXPVbOYZnnFUw==} engines: {node: '>=12'} peerDependencies: - graphql: 16.6.0 + graphql: '>=0.11 <=16' dependencies: graphql: 16.6.0 dev: true @@ -22139,7 +22163,7 @@ packages: resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} engines: {node: '>=10'} peerDependencies: - graphql: 16.6.0 + graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: graphql: 16.6.0 tslib: 2.6.2 @@ -22148,7 +22172,7 @@ packages: resolution: {integrity: sha512-fU8zwSgAX2noXAsuFiCZ8BtXeXZOzXyK5u1LloCdacsVth4skdBMPO74EG51lBoWSIZ8beUocdpV8+cQHBODnQ==} engines: {node: '>=10'} peerDependencies: - graphql: 16.6.0 + graphql: '>=0.11 <=16' dependencies: graphql: 16.6.0 @@ -22156,7 +22180,7 @@ packages: resolution: {integrity: sha512-eiX7ES/ZQr0q7hSM5UBOEIFfaAUmAY9/CSDyAnsETuybByU7l/v46drRg9DQoTvVABEHp3QnrvwgTRMhqy7zxQ==} engines: {node: '>=10'} peerDependencies: - graphql: 16.6.0 + graphql: '>=0.11 <=16' dependencies: graphql: 16.6.0 @@ -27985,7 +28009,7 @@ packages: /nexus@1.3.0(graphql@16.6.0): resolution: {integrity: sha512-w/s19OiNOs0LrtP7pBmD9/FqJHvZLmCipVRt6v1PM8cRUYIbhEswyNKGHVoC4eHZGPSnD+bOf5A3+gnbt0A5/A==} peerDependencies: - graphql: 16.6.0 + graphql: 15.x || 16.x dependencies: graphql: 16.6.0 iterall: 1.3.0 @@ -30442,7 +30466,7 @@ packages: /react-focus-lock@2.9.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-pSWOQrUmiKLkffPO6BpMXN7SNKXMsuOakl652IBuALAu1esk+IcpJyM+ALcYzPTTFz1rD0R54aB9A4HuP5t1Wg==} peerDependencies: - '@types/react': 18.2.8 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -30506,7 +30530,7 @@ packages: resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} engines: {node: '>=10'} peerDependencies: - '@types/react': 18.2.8 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -30522,7 +30546,7 @@ packages: resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} engines: {node: '>=10'} peerDependencies: - '@types/react': 18.2.8 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -30541,7 +30565,7 @@ packages: resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: - '@types/react': 18.2.8 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -32012,9 +32036,9 @@ packages: /sofa-api@0.18.0(graphql@16.6.0): resolution: {integrity: sha512-x1AabBvr91Uvncx3STVZb6jmr2jfZzu/+rzPZuTjmQNC/Q5UMWQLNR85HfGROgIytX6rMzgSq2wfixWVoenNdA==} peerDependencies: - graphql: 16.6.0 + graphql: ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/utils': 10.1.1(graphql@16.6.0) + '@graphql-tools/utils': 10.1.0(graphql@16.6.0) '@whatwg-node/fetch': 0.9.17 ansi-colors: 4.1.3 fets: 0.2.0 @@ -32641,7 +32665,7 @@ packages: /subscriptions-transport-ws@0.11.0(graphql@16.6.0): resolution: {integrity: sha512-8D4C6DIH5tGiAIpp5I0wD/xRlNiZAPGHygzCe7VzyzUoxHtawzjNAY9SUTXU05/EY2NMY9/9GF0ycizkXr1CWQ==} peerDependencies: - graphql: 16.6.0 + graphql: ^15.7.2 || ^16.0.0 dependencies: backo2: 1.0.2 eventemitter3: 3.1.2 @@ -34537,7 +34561,7 @@ packages: resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==} engines: {node: '>=10'} peerDependencies: - '@types/react': 18.2.8 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -34552,7 +34576,7 @@ packages: resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} engines: {node: '>=10'} peerDependencies: - '@types/react': 18.2.8 + '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': From 181d7ede3fad9c367256a9147ca772381b17c61e Mon Sep 17 00:00:00 2001 From: Saeed Akasteh Date: Sat, 13 Apr 2024 15:06:32 +0330 Subject: [PATCH 3/4] fix(root-level-limitation): fix conflicts with last updated main branch --- pnpm-lock.yaml | 408 +++++++++++++++++++++++-------------------------- 1 file changed, 192 insertions(+), 216 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index daca3ff25a..7e170e6645 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: '6.1' +lockfileVersion: '6.0' settings: autoInstallPeers: true @@ -132,7 +132,7 @@ importers: dependencies: '@envelop/graphql-jit': specifier: 8.0.0 - version: 8.0.0(@envelop/core@5.0.0)(graphql@16.6.0) + version: 8.0.0(@envelop/core@4.0.0)(graphql@16.6.0) '@faker-js/faker': specifier: 8.0.2 version: 8.0.2 @@ -234,7 +234,7 @@ importers: version: 2.4.7(graphql@16.6.0) '@envelop/apollo-federation': specifier: 5.0.0 - version: 5.0.0(@apollo/gateway@2.4.7)(@envelop/core@5.0.0)(graphql@16.6.0) + version: 5.0.0(@apollo/gateway@2.4.7)(@envelop/core@4.0.0)(graphql@16.6.0) graphql: specifier: 16.6.0 version: 16.6.0 @@ -520,7 +520,7 @@ importers: dependencies: '@envelop/graphql-modules': specifier: 6.0.0 - version: 6.0.0(@envelop/core@5.0.0)(graphql-modules@2.1.2)(graphql@16.6.0) + version: 6.0.0(@envelop/core@4.0.0)(graphql-modules@2.1.2)(graphql@16.6.0) '@graphql-tools/load-files': specifier: 7.0.0 version: 7.0.0(graphql@16.6.0) @@ -679,7 +679,7 @@ importers: dependencies: '@envelop/generic-auth': specifier: 7.0.0 - version: 7.0.0(@envelop/core@5.0.0)(graphql@16.6.0) + version: 7.0.0(@envelop/core@4.0.0)(graphql@16.6.0) graphql: specifier: 16.6.0 version: 16.6.0 @@ -903,7 +903,7 @@ importers: dependencies: '@envelop/live-query': specifier: 7.0.0 - version: 7.0.0(@envelop/core@5.0.0)(graphql@16.6.0) + version: 7.0.0(@envelop/core@4.0.0)(graphql@16.6.0) '@graphql-tools/utils': specifier: 10.0.1 version: 10.0.1(graphql@16.6.0) @@ -1393,7 +1393,7 @@ importers: dependencies: '@envelop/graphql-jit': specifier: 8.0.0 - version: 8.0.0(@envelop/core@5.0.0)(graphql@16.6.0) + version: 8.0.0(@envelop/core@4.0.0)(graphql@16.6.0) '@graphql-yoga/render-graphiql': specifier: 5.3.0 version: link:../../packages/render-graphiql/dist @@ -1502,7 +1502,7 @@ importers: specifier: ^1.0.4 version: 1.0.4(@types/node@18.16.16)(graphql@16.6.0) graphql: - specifier: ^15.2.0 || ^16.0.0 + specifier: 16.6.0 version: 16.6.0 tslib: specifier: ^2.5.2 @@ -1525,7 +1525,7 @@ importers: specifier: ^1.0.0 version: 1.0.0(@urql/core@4.0.10)(graphql@16.6.0)(wonka@6.3.2) graphql: - specifier: ^15.2.0 || ^16.0.0 + specifier: 16.6.0 version: 16.6.0 tslib: specifier: ^2.5.2 @@ -1821,7 +1821,7 @@ importers: dependencies: '@envelop/on-resolve': specifier: ^4.0.0 - version: 4.0.0(@envelop/core@5.0.0)(graphql@16.6.0) + version: 4.0.0(@envelop/core@4.0.0)(graphql@16.6.0) '@graphql-tools/utils': specifier: ^10.0.0 version: 10.0.0(graphql@16.6.0) @@ -1906,7 +1906,7 @@ importers: packages/plugins/graphql-sse: dependencies: graphql: - specifier: ^15.2.0 || ^16.0.0 + specifier: 16.6.0 version: 16.6.0 graphql-sse: specifier: ^2.0.0 @@ -1964,9 +1964,9 @@ importers: dependencies: '@envelop/prometheus': specifier: ^9.4.0 - version: 9.4.0(@envelop/core@5.0.0)(graphql@16.6.0)(prom-client@15.0.0) + version: 9.4.0(@envelop/core@4.0.0)(graphql@16.6.0)(prom-client@15.0.0) graphql: - specifier: ^15.2.0 || ^16.0.0 + specifier: 16.6.0 version: 16.6.0 graphql-yoga: specifier: ^5.3.0 @@ -1981,7 +1981,7 @@ importers: dependencies: '@envelop/response-cache': specifier: ^6.1.2 - version: 6.1.2(@envelop/core@5.0.0)(graphql@16.6.0) + version: 6.1.2(@envelop/core@4.0.0)(graphql@16.6.0) graphql-yoga: specifier: ^5.3.0 version: link:../../graphql-yoga/dist @@ -1994,10 +1994,33 @@ importers: version: 2.6.2 publishDirectory: dist + packages/plugins/root-level-limitation: + dependencies: + '@graphql-tools/utils': + specifier: ^10.1.0 + version: 10.1.1(graphql@16.6.0) + '@whatwg-node/server': + specifier: ^0.9.32 + version: 0.9.32 + tslib: + specifier: ^2.5.2 + version: 2.6.2 + devDependencies: + '@whatwg-node/fetch': + specifier: ^0.9.17 + version: 0.9.17 + graphql: + specifier: 16.6.0 + version: 16.6.0 + graphql-yoga: + specifier: 5.3.0 + version: link:../../graphql-yoga/dist + publishDirectory: dist + packages/plugins/sofa: dependencies: graphql: - specifier: ^15.2.0 || ^16.0.0 + specifier: 16.6.0 version: 16.6.0 graphql-yoga: specifier: ^5.3.0 @@ -2094,7 +2117,7 @@ packages: /@0no-co/graphql.web@1.0.1(graphql@16.6.0): resolution: {integrity: sha512-6Yaxyv6rOwRkLIvFaL0NrLDgfNqC/Ng9QOPmTmlqW4mORXMEKmh5NYGkIvvt5Yw8fZesnMAqkj8cIqTj8f40cQ==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 peerDependenciesMeta: graphql: optional: true @@ -2192,14 +2215,14 @@ packages: /@apollo/cache-control-types@1.0.2(graphql@16.6.0): resolution: {integrity: sha512-Por80co1eUm4ATsvjCOoS/tIR8PHxqVjsA6z76I6Vw0rFn4cgyVElQcmQDIZiYsy41k8e5xkrMRECkM2WR8pNw==} peerDependencies: - graphql: 14.x || 15.x || 16.x + graphql: 16.6.0 dependencies: graphql: 16.6.0 /@apollo/client@3.7.15(graphql@16.6.0): resolution: {integrity: sha512-pLScjo4GAQRWKWyEg2J3FlQr9fbUAuADT0EI2+JlLf2BjaU9I7WUaZVD9w+0qNPE8BZqs53MRQq0OCm1QCW+eg==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 graphql-ws: ^5.5.5 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -2232,7 +2255,7 @@ packages: /@apollo/client@3.8.2(graphql@16.6.0): resolution: {integrity: sha512-SSxRTHlHdlR65mvV5j5e3JkYs9z/eFQfJPgSfqTeKa3jgHKofBaMb+UWxJPInqV5MqBFAkPFt8fYEBZwM7oGZA==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 graphql-ws: ^5.5.5 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -2267,7 +2290,7 @@ packages: resolution: {integrity: sha512-sAVJwv1YJpqbZzS8E1IFItXsiJPag57g3hvwj8n/sn5LGgRRSS05WxhQl7U3NJEjwD0+4LpXqGrIvpCcRFLsvQ==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: ^16.5.0 + graphql: 16.6.0 dependencies: '@apollo/federation-internals': 2.4.0(graphql@16.6.0) '@apollo/query-graphs': 2.4.0(graphql@16.6.0) @@ -2278,7 +2301,7 @@ packages: resolution: {integrity: sha512-eXRTG6J5ywwXsWgP0Wgic4zeBXO8jBBvI0FM4t/gay4DI+1zEL5qmoF2HN/jFik0dnd/ud5kh4djvFLmWEwbeA==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: ^16.5.0 + graphql: 16.6.0 dependencies: '@apollo/federation-internals': 2.4.7(graphql@16.6.0) '@apollo/query-graphs': 2.4.7(graphql@16.6.0) @@ -2288,7 +2311,7 @@ packages: resolution: {integrity: sha512-ovfYwpq3s2LKNvLGg6bxcNlyrCllbF1JhNgQEOEOeAoy3TTmnYuxqd00H3bkT/5xpXvMpBc6+Di6qMkYcQM+Ww==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: ^16.5.0 + graphql: 16.6.0 dependencies: '@types/uuid': 9.0.1 chalk: 4.1.2 @@ -2300,7 +2323,7 @@ packages: resolution: {integrity: sha512-a4iH+72yVd0zNGC5ZGEDfbqI81wktE7qAHjH4rQzJTqMQ74By3PoMD2DefOArcweonvd4b/h4oQJXGvLK2V4Ew==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: ^16.5.0 + graphql: 16.6.0 dependencies: '@types/uuid': 9.0.1 chalk: 4.1.2 @@ -2312,7 +2335,7 @@ packages: resolution: {integrity: sha512-Jt1HiFwe94AfjVj1h53GRwz26Bfp6Y0+yyHQ6/CqEJxQWbAHvEiBFKpzwFQQF9O/OshZx8oedmuAXA6RSFRxSg==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: ^16.5.0 + graphql: 16.6.0 dependencies: '@apollo/composition': 2.4.0(graphql@16.6.0) '@apollo/federation-internals': 2.4.0(graphql@16.6.0) @@ -2343,7 +2366,7 @@ packages: resolution: {integrity: sha512-ZcqSJEUxVJqqPKJ97q72Hyp0YEQfHW+oCRP9osF6XKkrGX1C7nxLm6EzO261+m1bUwkdtjk5CLfXxa9yxIDRdA==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: ^16.5.0 + graphql: 16.6.0 dependencies: '@apollo/composition': 2.4.7(graphql@16.6.0) '@apollo/federation-internals': 2.4.7(graphql@16.6.0) @@ -2411,7 +2434,7 @@ packages: resolution: {integrity: sha512-xyixv288KQ1/qeRbGayNN+4kbv0oHCZV/iLTu1x/Vb5iZTD0LPlMar2rh7ffGLoCmLLAzP+65le0wRXU581hHQ==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: ^16.5.0 + graphql: 16.6.0 dependencies: '@apollo/federation-internals': 2.4.0(graphql@16.6.0) deep-equal: 2.0.5 @@ -2424,7 +2447,7 @@ packages: resolution: {integrity: sha512-LLoY0GgP3mcF+8zp3cf701ixHrsFh1WH1R8HPtO0NOgArmVMTl0bvsEHzFqUNdMd/PcU2b9SMcCmPwN7dKRs+A==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: ^16.5.0 + graphql: 16.6.0 dependencies: '@apollo/federation-internals': 2.4.7(graphql@16.6.0) deep-equal: 2.0.5 @@ -2436,7 +2459,7 @@ packages: resolution: {integrity: sha512-sVBHJ5SW32w6YdeAJCcB23ct5sb/myhv7ebbr9tObmncBR/QOj0n45XyJGXPC3LP8J3h3ICVWehNXDFyV2wOHQ==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: ^16.5.0 + graphql: 16.6.0 dependencies: '@apollo/federation-internals': 2.4.0(graphql@16.6.0) '@apollo/query-graphs': 2.4.0(graphql@16.6.0) @@ -2451,7 +2474,7 @@ packages: resolution: {integrity: sha512-0fTA1W5NKtfxLq5+GY9ORPSQB/MRH1xOt3SbSS8o9yhR9GKzzE3yYNc88HgYAe2lfdDOesCME2t1kKrE76uzdA==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: ^16.5.0 + graphql: 16.6.0 dependencies: '@apollo/federation-internals': 2.4.7(graphql@16.6.0) '@apollo/query-graphs': 2.4.7(graphql@16.6.0) @@ -2464,7 +2487,7 @@ packages: /@apollo/server-gateway-interface@1.1.0(graphql@16.6.0): resolution: {integrity: sha512-0rhG++QtGfr4YhhIHgxZ9BdMFthaPY6LbhI9Au90osbfLMiZ7f8dmZsEX1mp7O1h8MJwCu6Dp0I/KcGbSvfUGA==} peerDependencies: - graphql: 14.x || 15.x || 16.x + graphql: 16.6.0 dependencies: '@apollo/usage-reporting-protobuf': 4.1.0 '@apollo/utils.fetcher': 2.0.0 @@ -2477,7 +2500,7 @@ packages: engines: {node: '>=14.16.0'} requiresBuild: true peerDependencies: - graphql: ^16.6.0 + graphql: 16.6.0 dependencies: '@apollo/cache-control-types': 1.0.2(graphql@16.6.0) '@apollo/server-gateway-interface': 1.1.0(graphql@16.6.0) @@ -2516,7 +2539,7 @@ packages: resolution: {integrity: sha512-/njjzPkyzkh0FO2WvLV+I9mlsDWk3DhfOtCc+cmMx9p4mixgyyaRvYvx3tPjSPkMvkPw/cNidCVymuWJVOAu5A==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: ^16.5.0 + graphql: 16.6.0 dependencies: '@apollo/cache-control-types': 1.0.2(graphql@16.6.0) '@apollo/federation-internals': 2.4.0(graphql@16.6.0) @@ -2539,7 +2562,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 14.x || 15.x || 16.x + graphql: 16.6.0 dependencies: graphql: 16.6.0 dev: false @@ -2580,7 +2603,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 14.x || 15.x || 16.x + graphql: 16.6.0 dependencies: graphql: 16.6.0 dev: false @@ -2591,7 +2614,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 14.x || 15.x || 16.x + graphql: 16.6.0 dependencies: graphql: 16.6.0 dev: false @@ -2602,7 +2625,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 14.x || 15.x || 16.x + graphql: 16.6.0 dependencies: graphql: 16.6.0 lodash.sortby: 4.7.0 @@ -2614,7 +2637,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 14.x || 15.x || 16.x + graphql: 16.6.0 dependencies: graphql: 16.6.0 dev: false @@ -2625,7 +2648,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 14.x || 15.x || 16.x + graphql: 16.6.0 dependencies: '@apollo/usage-reporting-protobuf': 4.1.0 '@apollo/utils.dropunuseddefinitions': 2.0.0(graphql@16.6.0) @@ -2661,7 +2684,7 @@ packages: resolution: {integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==} hasBin: true peerDependencies: - graphql: '*' + graphql: 16.6.0 dependencies: '@babel/core': 7.22.1 '@babel/generator': 7.23.5 @@ -6366,8 +6389,8 @@ packages: engines: {node: '>=18.0.0'} peerDependencies: '@apollo/gateway': ^0.54.0 - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + '@envelop/core': 4.0.0 + graphql: 16.6.0 dependencies: '@apollo/gateway': 2.4.0(graphql@16.6.0) '@envelop/core': 4.0.0 @@ -6379,16 +6402,16 @@ packages: - encoding dev: false - /@envelop/apollo-federation@5.0.0(@apollo/gateway@2.4.7)(@envelop/core@5.0.0)(graphql@16.6.0): + /@envelop/apollo-federation@5.0.0(@apollo/gateway@2.4.7)(@envelop/core@4.0.0)(graphql@16.6.0): resolution: {integrity: sha512-mbe0bqn6mv9WVs5Kk4+IWRZuvxfzjkmuJliAuFJjUuIOn1pMUeCAzjhDTWCHEeCnS0s+TcCtKGFOdAfNtuxbvA==} engines: {node: '>=18.0.0'} peerDependencies: '@apollo/gateway': ^0.54.0 - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + '@envelop/core': 4.0.0 + graphql: 16.6.0 dependencies: '@apollo/gateway': 2.4.7(graphql@16.6.0) - '@envelop/core': 5.0.0 + '@envelop/core': 4.0.0 apollo-server-caching: 3.3.0 apollo-server-types: 3.6.3(graphql@16.6.0) graphql: 16.6.0 @@ -6402,50 +6425,42 @@ packages: engines: {node: '>=16.0.0'} dependencies: '@envelop/types': 4.0.0 - tslib: 2.5.3 - - /@envelop/core@5.0.0: - resolution: {integrity: sha512-aJdnH/ptv+cvwfvciCBe7TSvccBwo9g0S5f6u35TBVzRVqIGkK03lFlIL+x1cnfZgN9EfR2b1PH2galrT1CdCQ==} - engines: {node: '>=18.0.0'} - dependencies: - '@envelop/types': 5.0.0 tslib: 2.6.2 - dev: false /@envelop/disable-introspection@6.0.0(@envelop/core@4.0.0)(graphql@16.6.0): resolution: {integrity: sha512-+DxCvKdzsHat/aWr6dqDsebbGk6ZGiM7VZlnpwKS8g4+PDHg7AfMBnDP8CtUODgifU+kgZME4TFzU288MNpNDg==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + '@envelop/core': 4.0.0 + graphql: 16.6.0 dependencies: '@envelop/core': 4.0.0 graphql: 16.6.0 tslib: 2.6.2 dev: true - /@envelop/extended-validation@4.0.0(@envelop/core@5.0.0)(graphql@16.6.0): + /@envelop/extended-validation@4.0.0(@envelop/core@4.0.0)(graphql@16.6.0): resolution: {integrity: sha512-pvJ/OL+C+lpNiiCXezHT+vP3PTq37MQicoOB1l5MdgOOZZWRAp0NDOgvEKcXUY7AWNpvNHgSE0QFSRfGwsfwFQ==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + '@envelop/core': 4.0.0 + graphql: 16.6.0 dependencies: - '@envelop/core': 5.0.0 + '@envelop/core': 4.0.0 '@graphql-tools/utils': 10.1.1(graphql@16.6.0) graphql: 16.6.0 tslib: 2.6.2 dev: false - /@envelop/generic-auth@7.0.0(@envelop/core@5.0.0)(graphql@16.6.0): + /@envelop/generic-auth@7.0.0(@envelop/core@4.0.0)(graphql@16.6.0): resolution: {integrity: sha512-FxGzoSjIXJlv+aiVyhQ8oHoz41ol4gJe8KAzNX7FP3qrhldbrqcC5Q+J/VtNlo5jXYX0YuLHH6ehF80tQDZJ4Q==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + '@envelop/core': 4.0.0 + graphql: 16.6.0 dependencies: - '@envelop/core': 5.0.0 - '@envelop/extended-validation': 4.0.0(@envelop/core@5.0.0)(graphql@16.6.0) + '@envelop/core': 4.0.0 + '@envelop/extended-validation': 4.0.0(@envelop/core@4.0.0)(graphql@16.6.0) '@graphql-tools/utils': 10.0.6(graphql@16.6.0) graphql: 16.6.0 tslib: 2.6.2 @@ -6455,39 +6470,24 @@ packages: resolution: {integrity: sha512-+Sfp5DON/krxr4fP1kT6GQeQYqphP2g69CybqAMLRTALCCKs/ZfATvK/Bx+ysPV5K8g/tRwVuDbub1JAuLDxSw==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 - dependencies: '@envelop/core': 4.0.0 graphql: 16.6.0 - graphql-jit: 0.8.4(graphql@16.6.0) - tslib: 2.6.2 - value-or-promise: 1.0.12 - dev: true - - /@envelop/graphql-jit@8.0.0(@envelop/core@5.0.0)(graphql@16.6.0): - resolution: {integrity: sha512-+Sfp5DON/krxr4fP1kT6GQeQYqphP2g69CybqAMLRTALCCKs/ZfATvK/Bx+ysPV5K8g/tRwVuDbub1JAuLDxSw==} - engines: {node: '>=18.0.0'} - peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@envelop/core': 5.0.0 + '@envelop/core': 4.0.0 graphql: 16.6.0 graphql-jit: 0.8.4(graphql@16.6.0) tslib: 2.6.2 value-or-promise: 1.0.12 - dev: false - /@envelop/graphql-modules@6.0.0(@envelop/core@5.0.0)(graphql-modules@2.1.2)(graphql@16.6.0): + /@envelop/graphql-modules@6.0.0(@envelop/core@4.0.0)(graphql-modules@2.1.2)(graphql@16.6.0): resolution: {integrity: sha512-U6LoSMFd/eVt/vcI+6cj3OWciPnCTCIz+7Frc+oJ3Bg2utDIba3ngepzQPYb9t2da+AjCw+O2NmBwoUHWH0mAQ==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + '@envelop/core': 4.0.0 + graphql: 16.6.0 graphql-modules: ^1 || ^2.0.0 dependencies: - '@envelop/core': 5.0.0 + '@envelop/core': 4.0.0 graphql: 16.6.0 graphql-modules: 2.1.2(graphql@16.6.0) tslib: 2.6.2 @@ -6497,79 +6497,62 @@ packages: resolution: {integrity: sha512-rLnSN1B+5zcy3FsWE+16/CMiqjD/LXXcRUXJ0RaXRjzHClpQxgSzrAixNeOmx1vXLff4AgkjOZANJl39rD4dwQ==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 - dependencies: '@envelop/core': 4.0.0 - '@graphql-tools/utils': 10.0.1(graphql@16.6.0) - '@n1ru4l/graphql-live-query': 0.10.0(graphql@16.6.0) - '@n1ru4l/graphql-live-query-patch': 0.7.0(graphql@16.6.0) - '@n1ru4l/in-memory-live-query-store': 0.10.0(graphql@16.6.0) graphql: 16.6.0 - tslib: 2.6.2 - dev: true - - /@envelop/live-query@7.0.0(@envelop/core@5.0.0)(graphql@16.6.0): - resolution: {integrity: sha512-rLnSN1B+5zcy3FsWE+16/CMiqjD/LXXcRUXJ0RaXRjzHClpQxgSzrAixNeOmx1vXLff4AgkjOZANJl39rD4dwQ==} - engines: {node: '>=18.0.0'} - peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@envelop/core': 5.0.0 + '@envelop/core': 4.0.0 '@graphql-tools/utils': 10.0.1(graphql@16.6.0) '@n1ru4l/graphql-live-query': 0.10.0(graphql@16.6.0) '@n1ru4l/graphql-live-query-patch': 0.7.0(graphql@16.6.0) '@n1ru4l/in-memory-live-query-store': 0.10.0(graphql@16.6.0) graphql: 16.6.0 tslib: 2.6.2 - dev: false - /@envelop/on-resolve@4.0.0(@envelop/core@5.0.0)(graphql@16.6.0): + /@envelop/on-resolve@4.0.0(@envelop/core@4.0.0)(graphql@16.6.0): resolution: {integrity: sha512-EBGJoaN7eqpDxhH/EFnjx5CgK8d7XKs6/2scuqGmEnVptW+8sicxPdvt5nZielZRT6spRK14ZGWmn2o8qf8GjQ==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + '@envelop/core': 4.0.0 + graphql: 16.6.0 dependencies: - '@envelop/core': 5.0.0 + '@envelop/core': 4.0.0 graphql: 16.6.0 dev: false - /@envelop/on-resolve@4.1.0(@envelop/core@5.0.0)(graphql@16.6.0): + /@envelop/on-resolve@4.1.0(@envelop/core@4.0.0)(graphql@16.6.0): resolution: {integrity: sha512-2AXxf8jbBIepBUiY0KQtyCO6gnT7LKBEYdaARZBJ7ujy1+iQHQPORKvAwl51kIdD6v5x38eldZnm7A19jFimOg==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + '@envelop/core': 4.0.0 + graphql: 16.6.0 dependencies: - '@envelop/core': 5.0.0 + '@envelop/core': 4.0.0 graphql: 16.6.0 dev: false - /@envelop/prometheus@9.4.0(@envelop/core@5.0.0)(graphql@16.6.0)(prom-client@15.0.0): + /@envelop/prometheus@9.4.0(@envelop/core@4.0.0)(graphql@16.6.0)(prom-client@15.0.0): resolution: {integrity: sha512-r+BoQhDl/7qV8iZ0jOAumuMw3zi+IiFC5NFtgPSWwf3YFDH9PG1Y4WTh2qi+2GAFp/Z6CPv1TWePs3DHyz3v4w==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + '@envelop/core': 4.0.0 + graphql: 16.6.0 prom-client: ^15.0.0 dependencies: - '@envelop/core': 5.0.0 - '@envelop/on-resolve': 4.1.0(@envelop/core@5.0.0)(graphql@16.6.0) + '@envelop/core': 4.0.0 + '@envelop/on-resolve': 4.1.0(@envelop/core@4.0.0)(graphql@16.6.0) graphql: 16.6.0 prom-client: 15.0.0 tslib: 2.6.2 dev: false - /@envelop/response-cache@6.1.2(@envelop/core@5.0.0)(graphql@16.6.0): + /@envelop/response-cache@6.1.2(@envelop/core@4.0.0)(graphql@16.6.0): resolution: {integrity: sha512-vBX6z/TxBZSNReVn69VJVkdGHpGzHyeQNMz9LXobczl55KCZaf2inBWguSdGq+vx6PlB068GhLeg+a7kseiF1Q==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': ^5.0.0 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + '@envelop/core': 4.0.0 + graphql: 16.6.0 dependencies: - '@envelop/core': 5.0.0 + '@envelop/core': 4.0.0 '@graphql-tools/utils': 10.1.0(graphql@16.6.0) '@whatwg-node/fetch': 0.9.17 fast-json-stable-stringify: 2.1.0 @@ -6584,13 +6567,6 @@ packages: dependencies: tslib: 2.6.2 - /@envelop/types@5.0.0: - resolution: {integrity: sha512-IPjmgSc4KpQRlO4qbEDnBEixvtb06WDmjKfi/7fkZaryh5HuOmTtixe1EupQI5XfXO8joc3d27uUZ0QdC++euA==} - engines: {node: '>=18.0.0'} - dependencies: - tslib: 2.6.2 - dev: false - /@esbuild-kit/cjs-loader@2.4.2: resolution: {integrity: sha512-BDXFbYOJzT/NBEtp71cvsrGPwGAMGRB/349rwKuoxNSiKjPraNNnlK6MIIabViCjqZugu6j+xeMDlEkWdHHJSg==} dependencies: @@ -7428,7 +7404,7 @@ packages: /@graphiql/plugin-explorer@0.1.4(@codemirror/language@6.0.0)(@types/react@18.2.8)(graphql@16.6.0)(react-dom@18.2.0)(react-is@17.0.2)(react@18.2.0): resolution: {integrity: sha512-sjP2W5mf9ZR/GAMs2kg2NkIa8shGZWFQu6LYHmTjWuOP2V1gTgEAgJYvr36InE1Bj9gnBHQhqGFP9lYjdB6Ncw==} peerDependencies: - graphql: ^15.5.0 || ^16.0.0 + graphql: 16.6.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: @@ -7448,7 +7424,7 @@ packages: /@graphiql/react@0.13.3(patch_hash=yqm362ey3efuxzwgojxfo6tq5i)(@codemirror/language@6.0.0)(@types/react@18.2.8)(graphql@16.6.0)(react-dom@18.2.0)(react-is@17.0.2)(react@18.2.0): resolution: {integrity: sha512-BIOaahIxVHGQjoVbECIiSzEtETZVMyhG83ysVpoFKCVj27KxDbh/Yk9w23L0aYQWuWEU7C02Kzl5gi+Zwx/K3A==} peerDependencies: - graphql: ^15.5.0 || ^16.0.0 + graphql: 16.6.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: @@ -7480,7 +7456,7 @@ packages: /@graphiql/toolkit@0.8.4(graphql@16.6.0): resolution: {integrity: sha512-cFUGqh3Dau+SD3Vq9EFlZrhzYfaHKyOJveFtaCR+U5Cn/S68p7oy+vQBIdwtO6J2J58FncnwBbVRfr+IvVfZqQ==} peerDependencies: - graphql: ^15.5.0 || ^16.0.0 + graphql: 16.6.0 graphql-ws: '>= 4.5.0' peerDependenciesMeta: graphql-ws: @@ -7498,7 +7474,7 @@ packages: hasBin: true peerDependencies: '@parcel/watcher': ^2.1.0 - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 peerDependenciesMeta: '@parcel/watcher': optional: true @@ -7552,7 +7528,7 @@ packages: /@graphql-codegen/core@4.0.0(graphql@16.6.0): resolution: {integrity: sha512-JAGRn49lEtSsZVxeIlFVIRxts2lWObR+OQo7V2LHDJ7ohYYw3ilv7nJ8pf8P4GTg/w6ptcYdSdVVdkI8kUHB/Q==} peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.6.0) '@graphql-tools/schema': 10.0.0(graphql@16.6.0) @@ -7564,7 +7540,7 @@ packages: /@graphql-codegen/plugin-helpers@5.0.1(graphql@16.6.0): resolution: {integrity: sha512-6L5sb9D8wptZhnhLLBcheSPU7Tg//DGWgc5tQBWX46KYTOTQHGqDpv50FxAJJOyFVJrveN9otWk9UT9/yfY4ww==} peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) change-case-all: 1.0.15 @@ -7578,7 +7554,7 @@ packages: /@graphql-codegen/plugin-helpers@5.0.3(graphql@16.6.0): resolution: {integrity: sha512-yZ1rpULIWKBZqCDlvGIJRSyj1B2utkEdGmXZTBT/GVayP4hyRYlkd36AJV/LfEsVD8dnsKL5rLz2VTYmRNlJ5Q==} peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) change-case-all: 1.0.15 @@ -7592,7 +7568,7 @@ packages: /@graphql-codegen/schema-ast@4.0.2(graphql@16.6.0): resolution: {integrity: sha512-5mVAOQQK3Oz7EtMl/l3vOQdc2aYClUzVDHHkMvZlunc+KlGgl81j8TLa+X7ANIllqU4fUEsQU3lJmk4hXP6K7Q==} peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -7603,7 +7579,7 @@ packages: /@graphql-codegen/typescript-resolvers@4.0.6(graphql@16.6.0): resolution: {integrity: sha512-7OBFzZ2xSkYgMgcc1A3xNqbBHHSQXBesLrG86Sh+Jj0PQQB3Om8j1HSFs64PD/l5Kri2dXgm3oim/89l3Rl3lw==} peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.6.0) '@graphql-codegen/typescript': 4.0.6(graphql@16.6.0) @@ -7620,7 +7596,7 @@ packages: /@graphql-codegen/typescript@4.0.6(graphql@16.6.0): resolution: {integrity: sha512-IBG4N+Blv7KAL27bseruIoLTjORFCT3r+QYyMC3g11uY3/9TPpaUyjSdF70yBe5GIQ6dAgDU+ENUC1v7EPi0rw==} peerDependencies: - graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.6.0) '@graphql-codegen/schema-ast': 4.0.2(graphql@16.6.0) @@ -7636,7 +7612,7 @@ packages: /@graphql-codegen/visitor-plugin-common@5.1.0(graphql@16.6.0): resolution: {integrity: sha512-eamQxtA9bjJqI2lU5eYoA1GbdMIRT2X8m8vhWYsVQVWD3qM7sx/IqJU0kx0J3Vd4/CSd36BzL6RKwksibytDIg==} peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.6.0) '@graphql-tools/optimize': 2.0.0(graphql@16.6.0) @@ -7658,7 +7634,7 @@ packages: resolution: {integrity: sha512-axQTbN5+Yxs1rJ6cWQBOfw3AEeC+fvIuZSfJLPLLvFJLj4pUm9fhxey/g6oQZAAQJqKPfw+tLDUQvnfvRK8Kmg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -7672,7 +7648,7 @@ packages: /@graphql-tools/batch-execute@8.5.19(graphql@16.6.0): resolution: {integrity: sha512-eqofTMYPygg9wVPdA+p8lk4NBpaPTcDut6SlnDk9IiYdY23Yfo6pY7mzZ3b27GugI7HDtB2OZUxzZJSGsk6Qew==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 9.2.1(graphql@16.6.0) dataloader: 2.2.2 @@ -7685,7 +7661,7 @@ packages: resolution: {integrity: sha512-lT9/1XmPSYzBcEybXPLsuA6C5E0t8438PVUELABcqdvwHgZ3VOOx29MLBEqhr2oewOlDChH6PXNkfxoOoAuzRg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) dataloader: 2.2.2 @@ -7697,7 +7673,7 @@ packages: resolution: {integrity: sha512-nq36yQnUVp6Roti+RFatInRogZzbwdFKZK1YBCmP3XpUvoOBbWaHaLKxVE9mU5lb9nL99zKzhq6gfh5syzxjJQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/graphql-tag-pluck': 8.0.0(@babel/core@7.22.1)(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -7714,7 +7690,7 @@ packages: resolution: {integrity: sha512-ZW5/7Q0JqUM+guwn8/cM/1Hz16Zvj6WR6r3gnOwoPO7a9bCbe8QTCk4itT/EO+RiGT8RLUPYaunWR9jxfNqqOA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/batch-execute': 9.0.0(graphql@16.6.0) '@graphql-tools/executor': 1.2.5(graphql@16.6.0) @@ -7728,7 +7704,7 @@ packages: /@graphql-tools/delegate@9.0.28(graphql@16.6.0): resolution: {integrity: sha512-8j23JCs2mgXqnp+5K0v4J3QBQU/5sXd9miaLvMfRf/6963DznOXTECyS9Gcvj1VEeR5CXIw6+aX/BvRDKDdN1g==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/batch-execute': 8.5.19(graphql@16.6.0) '@graphql-tools/executor': 0.0.15(graphql@16.6.0) @@ -7745,7 +7721,7 @@ packages: engines: {node: '>=16.0.0'} peerDependencies: '@apollo/client': ^3.5.9 - graphql: ^15.2.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@apollo/client': 3.7.15(graphql@16.6.0) '@graphql-tools/utils': 10.0.1(graphql@16.6.0) @@ -7757,7 +7733,7 @@ packages: resolution: {integrity: sha512-voczXmNcEzZKk6dS4pCwN0XCXvDiAVm9rj+54oz7X04IsHBJmTUul1YhCbJie1xUvN1jmgEJ14lfD92tMMMTmQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) '@repeaterjs/repeater': 3.0.4 @@ -7775,7 +7751,7 @@ packages: resolution: {integrity: sha512-lSoPFWrGU6XT9nGGBogUI8bSOtP0yce2FhXTrU5akMZ35BDCNWbkmgryzRhxoAH/yDOaZtKkHQB3xrYX3uo5zA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 10.0.6(graphql@16.6.0) '@repeaterjs/repeater': 3.0.4 @@ -7792,7 +7768,7 @@ packages: resolution: {integrity: sha512-roQyDLOAywyaCTPOhwXiT/WDr0bfuVhqOXjECsnrIl/1TMPDUYjiT2sW6Gz6pqnYMmokdhyvlV6D5d7WtIrKsA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) '@repeaterjs/repeater': 3.0.4 @@ -7809,7 +7785,7 @@ packages: resolution: {integrity: sha512-8c0wlhYz7G6imuWqHqjpveflN8IVL3gXIxel5lzpAvPvxsSXpiNig3jADkIBB+eaxzR9R1lbwxqonxPUGI4CdQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) '@types/ws': 8.5.4 @@ -7826,7 +7802,7 @@ packages: engines: {node: '>=16.0.0'} peerDependencies: '@urql/core': ^3.0.0 || ^4.0.0 - graphql: ^15.2.0 || ^16.0.0 + graphql: 16.6.0 wonka: ^6.0.0 dependencies: '@graphql-tools/utils': 10.0.1(graphql@16.6.0) @@ -7839,7 +7815,7 @@ packages: /@graphql-tools/executor@0.0.15(graphql@16.6.0): resolution: {integrity: sha512-6U7QLZT8cEUxAMXDP4xXVplLi6RBwx7ih7TevlBto66A/qFp3PDb6o/VFo07yBKozr8PGMZ4jMfEWBGxmbGdxA==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 9.2.1(graphql@16.6.0) '@graphql-typed-document-node/core': 3.1.2(graphql@16.6.0) @@ -7853,7 +7829,7 @@ packages: resolution: {integrity: sha512-s7sW4K3BUNsk9sjq+vNicwb9KwcR3G55uS/CI8KZQ4x0ZdeYMIwpeU9MVeORCCpHuQyTaV+/VnO0hFrS/ygzsg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) @@ -7866,7 +7842,7 @@ packages: resolution: {integrity: sha512-0QAzWywOdWC4vozYFi4OuAxv1QvHo6PwLY+D8DCQn+knxWZAsJe86SESxBkQ5R03yHFWPaiBVWKDB+lxxgC7Uw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/graphql-tag-pluck': 8.0.0(@babel/core@7.22.1)(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -7884,7 +7860,7 @@ packages: resolution: {integrity: sha512-VuroArWKcG4yaOWzV0r19ElVIV6iH6UKDQn1MXemND0xu5TzrFme0kf3U9o0YwNo0kUYEk9CyFM0BYg4he17FA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-http': 1.0.4(@types/node@18.16.16)(graphql@16.6.0) @@ -7905,7 +7881,7 @@ packages: resolution: {integrity: sha512-wRXj9Z1IFL3+zJG1HWEY0S4TXal7+s1vVhbZva96MSp0kbb/3JBF7j0cnJ44Eq0ClccMgGCDFqPFXty4JlpaPg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/import': 7.0.0(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -7919,7 +7895,7 @@ packages: resolution: {integrity: sha512-/xFXF7RwWf1UDAnUN/984Q1clRxRcWwO7lxi+BDzuwN14DJb424FVAmFOroBeeFWQNdj8qtNGLWhAbx23khvHQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@babel/parser': 7.23.5 '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.22.1) @@ -7937,7 +7913,7 @@ packages: resolution: {integrity: sha512-NVZiTO8o1GZs6OXzNfjB+5CtQtqsZZpQOq+Uu0w57kdUkT4RlQKlwhT8T81arEsbV55KpzkpFsOZP7J1wdmhBw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) graphql: 16.6.0 @@ -7949,7 +7925,7 @@ packages: resolution: {integrity: sha512-ki6EF/mobBWJjAAC84xNrFMhNfnUFD6Y0rQMGXekrUgY0NdeYXHU0ZUgHzC9O5+55FslqUmAUHABePDHTyZsLg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) globby: 11.1.0 @@ -7962,7 +7938,7 @@ packages: resolution: {integrity: sha512-P98amERIwI7FD8Bsq6xUbz9Mj63W8qucfrE/WQjad5jFMZYdFFt46a99FFdfx8S/ZYgpAlj/AZbaTtWLitMgNQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: globby: 11.1.0 graphql: 16.6.0 @@ -7974,7 +7950,7 @@ packages: resolution: {integrity: sha512-Cy874bQJH0FP2Az7ELPM49iDzOljQmK1PPH6IuxsWzLSTxwTqd8dXA09dcVZrI7/LsN26heTY2R8q2aiiv0GxQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/schema': 10.0.0(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -7986,7 +7962,7 @@ packages: /@graphql-tools/merge@8.4.0(graphql@16.6.0): resolution: {integrity: sha512-3XYCWe0d3I4F1azNj1CdShlbHfTIfiDgj00R9uvFH8tHKh7i1IWN3F7QQYovcHKhayaR6zPok3YYMESYQcBoaA==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 9.2.1(graphql@16.6.0) graphql: 16.6.0 @@ -7996,7 +7972,7 @@ packages: /@graphql-tools/merge@8.4.2(graphql@16.6.0): resolution: {integrity: sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 9.2.1(graphql@16.6.0) graphql: 16.6.0 @@ -8007,7 +7983,7 @@ packages: resolution: {integrity: sha512-J7/xqjkGTTwOJmaJQJ2C+VDBDOWJL3lKrHJN4yMaRLAJH3PosB7GiPRaSDZdErs0+F77sH2MKs2haMMkywzx7Q==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) graphql: 16.6.0 @@ -8017,7 +7993,7 @@ packages: resolution: {integrity: sha512-nhdT+CRGDZ+bk68ic+Jw1OZ99YCDIKYA5AlVAnBHJvMawSx9YQqQAIj4refNc1/LRieGiuWvhbG3jvPVYho0Dg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: graphql: 16.6.0 tslib: 2.6.2 @@ -8027,7 +8003,7 @@ packages: resolution: {integrity: sha512-AvvVFj+E+e8kG5QaVcitLTr7VZOa5CmvJ8HwlZslmg9OD1qoVDvhroGoR5/3y5e6n1xUjCWlO1xoo3QBseMuSw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/url-loader': 8.0.1(@types/node@18.16.16)(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -8060,7 +8036,7 @@ packages: resolution: {integrity: sha512-UNlJi5y3JylhVWU4MBpL0Hun4Q7IoJwv9xYtmAz+CgRa066szzY7dcuPfxrA7cIGgG/Q6TVsKsYaiF4OHPs1Fw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@ardatan/relay-compiler': 12.0.0(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -8075,7 +8051,7 @@ packages: resolution: {integrity: sha512-kf3qOXMFcMs2f/S8Y3A8fm/2w+GaHAkfr3Gnhh2LOug/JgpY/ywgFVxO3jOeSpSEdoYcDKLcXVjMigNbY4AdQg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/merge': 9.0.0(graphql@16.6.0) '@graphql-tools/utils': 10.0.1(graphql@16.6.0) @@ -8086,7 +8062,7 @@ packages: /@graphql-tools/schema@9.0.17(graphql@16.6.0): resolution: {integrity: sha512-HVLq0ecbkuXhJlpZ50IHP5nlISqH2GbNgjBJhhRzHeXhfwlUOT4ISXGquWTmuq61K0xSaO0aCjMpxe4QYbKTng==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/merge': 8.4.0(graphql@16.6.0) '@graphql-tools/utils': 9.2.1(graphql@16.6.0) @@ -8098,7 +8074,7 @@ packages: /@graphql-tools/schema@9.0.19(graphql@16.6.0): resolution: {integrity: sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/merge': 8.4.2(graphql@16.6.0) '@graphql-tools/utils': 9.2.1(graphql@16.6.0) @@ -8111,7 +8087,7 @@ packages: resolution: {integrity: sha512-rPc9oDzMnycvz+X+wrN3PLrhMBQkG4+sd8EzaFN6dypcssiefgWKToXtRKI8HHK68n2xEq1PyrOpkjHFJB+GwA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/delegate': 10.0.0(graphql@16.6.0) @@ -8138,7 +8114,7 @@ packages: resolution: {integrity: sha512-B2k8KQEkEQmfV1zhurT5GLoXo8jbXP+YQHUayhCSxKYlRV7j/1Fhp1b21PDM8LXIDGlDRXaZ0FbWKOs7eYXDuQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/delegate': 10.0.0(graphql@16.6.0) @@ -8164,7 +8140,7 @@ packages: resolution: {integrity: sha512-ndBPc6zgR+eGU/jHLpuojrs61kYN3Z89JyMLwK3GCRkPv4EQn9EOr1UWqF1JO0iM+/jAVHY0mvfUxyrFFN9DUQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) graphql: 16.6.0 @@ -8175,7 +8151,7 @@ packages: resolution: {integrity: sha512-i1FozbDGHgdsFA47V/JvQZ0FE8NAy0Eiz7HGCJO2MkNdZAKNnwei66gOq0JWYVFztwpwbVQ09GkKhq7Kjcq5Cw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) graphql: 16.6.0 @@ -8185,7 +8161,7 @@ packages: resolution: {integrity: sha512-hZMjl/BbX10iagovakgf3IiqArx8TPsotq5pwBld37uIX1JiZoSbgbCIFol7u55bh32o6cfDEiiJgfAD5fbeyQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) dset: 3.1.2 @@ -8196,7 +8172,7 @@ packages: resolution: {integrity: sha512-wLPqhgeZ9BZJPRoaQbsDN/CtJDPd/L4qmmtPkjI3NuYJ39x+Eqz1Sh34EAGMuDh+xlOHqBwHczkZUpoK9tvzjw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) cross-inspect: 1.0.0 @@ -8209,7 +8185,7 @@ packages: resolution: {integrity: sha512-1kNkZsND12hPkb+YpuUeTRt8f9ZTGhYOfu23V5Z21HegYDjl1k9eX+Inher/eiHCf1eXCk5rKWL9Liol8MWixA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) cross-inspect: 1.0.0 @@ -8220,7 +8196,7 @@ packages: /@graphql-tools/utils@8.13.1(graphql@16.6.0): resolution: {integrity: sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: graphql: 16.6.0 tslib: 2.6.2 @@ -8228,7 +8204,7 @@ packages: /@graphql-tools/utils@9.2.1(graphql@16.6.0): resolution: {integrity: sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) graphql: 16.6.0 @@ -8239,7 +8215,7 @@ packages: resolution: {integrity: sha512-HDOeUUh6UhpiH0WPJUQl44ODt1x5pnMUbOJZ7GjTdGQ7LK0AgVt3ftaAQ9duxLkiAtYJmu5YkULirfZGj4HzDg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/delegate': 10.0.0(graphql@16.6.0) '@graphql-tools/schema': 10.0.0(graphql@16.6.0) @@ -8251,7 +8227,7 @@ packages: /@graphql-tools/wrap@9.3.8(graphql@16.6.0): resolution: {integrity: sha512-MGsExYPiILMw4Qff7HcvE9MMSYdjb/tr5IQYJbxJIU4/TrBHox1/smne8HG+Bd7kmDlTTj7nU/Z8sxmoRd0hOQ==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/delegate': 9.0.28(graphql@16.6.0) '@graphql-tools/schema': 9.0.17(graphql@16.6.0) @@ -8264,7 +8240,7 @@ packages: /@graphql-typed-document-node/core@3.1.2(graphql@16.6.0): resolution: {integrity: sha512-9anpBMM9mEgZN4wr2v8wHJI2/u5TnnggewRN6OlvXTTnuVyoY19X6rOv9XTqKRw6dcGKwZsBi8n0kDE2I5i4VA==} peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: graphql: 16.6.0 dev: false @@ -8272,7 +8248,7 @@ packages: /@graphql-typed-document-node/core@3.2.0(graphql@16.6.0): resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==} peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + graphql: 16.6.0 dependencies: graphql: 16.6.0 @@ -9394,7 +9370,7 @@ packages: /@mdx-js/react@3.0.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==} peerDependencies: - '@types/react': '>=16' + '@types/react': 18.2.8 react: '>=16' dependencies: '@types/mdx': 2.0.3 @@ -9405,7 +9381,7 @@ packages: /@n1ru4l/graphql-live-query-patch@0.7.0(graphql@16.6.0): resolution: {integrity: sha512-1q49iNxqEIbmUp+qFAEVEn4ts344Cw72g5OtAuFeTwKtJT3V91kTPGMcRk5Pxb5FPHbvn52q+PCVKOAyVrtPwQ==} peerDependencies: - graphql: ^15.4.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@repeaterjs/repeater': 3.0.4 graphql: 16.6.0 @@ -9413,14 +9389,14 @@ packages: /@n1ru4l/graphql-live-query@0.10.0(graphql@16.6.0): resolution: {integrity: sha512-qZ7OHH/NB0NcG/Xa7irzgjE63UH0CkofZT0Bw4Ko6iRFagPRHBM8RgFXwTt/6JbFGIEUS4STRtaFoc/Eq/ZtzQ==} peerDependencies: - graphql: ^15.4.0 || ^16.0.0 + graphql: 16.6.0 dependencies: graphql: 16.6.0 /@n1ru4l/in-memory-live-query-store@0.10.0(graphql@16.6.0): resolution: {integrity: sha512-pt7bZgTPz9dk7ceoOp76KIbVFFlAPe0e5A07UiZ19fQy3JPvvoLRdjmnKbUh3VsEUUh8MyytFcFRguaeiidAYA==} peerDependencies: - graphql: ^15.4.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/utils': 8.13.1(graphql@16.6.0) '@n1ru4l/graphql-live-query': 0.10.0(graphql@16.6.0) @@ -9735,7 +9711,7 @@ packages: '@nestjs/core': ^9.3.8 || ^10.0.0 class-transformer: '*' class-validator: '*' - graphql: ^16.6.0 + graphql: 16.6.0 reflect-metadata: ^0.1.13 ts-morph: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: @@ -9780,7 +9756,7 @@ packages: '@nestjs/core': ^9.3.8 || ^10.0.0 class-transformer: '*' class-validator: '*' - graphql: ^16.6.0 + graphql: 16.6.0 reflect-metadata: ^0.1.13 ts-morph: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: @@ -9827,7 +9803,7 @@ packages: '@nestjs/core': ^9.3.8 || ^10.0.0 class-transformer: '*' class-validator: '*' - graphql: ^16.6.0 + graphql: 16.6.0 reflect-metadata: ^0.1.13 ts-morph: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: @@ -11948,7 +11924,7 @@ packages: /@pothos/core@3.30.0(graphql@16.6.0): resolution: {integrity: sha512-ZUL2YTv3ODeKBkhkVcEO03lcERdqQaG2zfylNpkrY9ryAIhOuN9Pbo+VnfqhqEQx7jM/56Rro7i9AuhzF0Q3tA==} peerDependencies: - graphql: '>=15.1.0' + graphql: 16.6.0 dependencies: graphql: 16.6.0 dev: false @@ -14829,7 +14805,7 @@ packages: engines: {node: '>=12.0'} deprecated: The `apollo-server-types` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. peerDependencies: - graphql: ^15.3.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@apollo/utils.keyvaluecache': 1.0.1 '@apollo/utils.logger': 1.0.1 @@ -16730,7 +16706,7 @@ packages: peerDependencies: '@codemirror/language': 6.0.0 codemirror: ^5.65.3 - graphql: ^15.5.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@codemirror/language': 6.0.0 '@types/codemirror': 0.0.90 @@ -21311,7 +21287,7 @@ packages: /graphiql-explorer@0.9.0(graphql@16.6.0)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-fZC/wsuatqiQDO2otchxriFO0LaWIo/ovF/CQJ1yOudmY0P7pzDiP+l9CEHUiWbizk3e99x6DQG4XG1VxA+d6A==} peerDependencies: - graphql: ^0.6.0 || ^0.7.0 || ^0.8.0-b || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 + graphql: 16.6.0 react: ^15.6.0 || ^16.0.0 react-dom: ^15.6.0 || ^16.0.0 dependencies: @@ -21323,7 +21299,7 @@ packages: /graphiql@2.0.7(@codemirror/language@6.0.0)(@types/react@18.2.8)(graphql@16.6.0)(react-dom@18.2.0)(react-is@17.0.2)(react@18.2.0): resolution: {integrity: sha512-vHZeCS+KKbMQAWJ0CDdnCPmVOG0d48BeoZJjBlm2H5WlCpNjVMm0WVpfL7dG3aP4k+eF+800sMpUx3VVFt7LYw==} peerDependencies: - graphql: ^15.5.0 || ^16.0.0 + graphql: 16.6.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: @@ -21348,7 +21324,7 @@ packages: engines: {node: '>= 16.0.0'} peerDependencies: cosmiconfig-toml-loader: ^1.0.0 - graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 peerDependenciesMeta: cosmiconfig-toml-loader: optional: true @@ -21376,7 +21352,7 @@ packages: resolution: {integrity: sha512-r2sIo6jCTQi1aj7s+Srg7oU3+r5pUUgxgDD5JDZOmFzrbXVGz+yMhIKhvqW0cV10DcnVIFCOzuFuc1qvnjJ7yQ==} engines: {node: '>=12'} peerDependencies: - graphql: '>=0.11 <=16' + graphql: 16.6.0 dependencies: graphql: 16.6.0 dev: true @@ -21384,7 +21360,7 @@ packages: /graphql-jit@0.8.4(graphql@16.6.0): resolution: {integrity: sha512-4KRrJ1ROy3Usgbl3eAoUMfdfZCRjkcw9cCGT7QwTUIHm9dPGaSaldxzGUttyjErU0rsYEb6WWyb6mMh5r6lEoQ==} peerDependencies: - graphql: '>=15' + graphql: 16.6.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) fast-json-stringify: 5.7.0 @@ -21398,7 +21374,7 @@ packages: resolution: {integrity: sha512-APffigZ/l2me6soek+Yq5Us3HBwmfw4vns4QoqsTePXkK3knVO8rn0uAC6PmTyglb1pmFFPbYaRIzW4wmcnnGQ==} hasBin: true peerDependencies: - graphql: ^15.5.0 || ^16.0.0 + graphql: 16.6.0 dependencies: graphql: 16.6.0 nullthrows: 1.1.1 @@ -21409,7 +21385,7 @@ packages: resolution: {integrity: sha512-o/ZgTS0pBxWm3hSF4+6GwiV1//DxzoLWEbS38+jqpzzy1d/QXBidwQuVYTOksclbtOJZ3KR/tZ8fi/tI6VpVMg==} hasBin: true peerDependencies: - graphql: ^15.5.0 || ^16.0.0 + graphql: 16.6.0 dependencies: graphql: 16.6.0 nullthrows: 1.1.1 @@ -21419,7 +21395,7 @@ packages: /graphql-modules@2.1.2(graphql@16.6.0): resolution: {integrity: sha512-GWxPom0iv4TXyLkuPqEHdRtJRdWCrUOGRMpXWmly1eY2T2MKAdCNya5iY/Ezb3d0Z2BzQBRUXdOgdkFPe2UDjg==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 dependencies: '@graphql-tools/schema': 9.0.19(graphql@16.6.0) '@graphql-tools/wrap': 9.3.8(graphql@16.6.0) @@ -21431,7 +21407,7 @@ packages: /graphql-request@6.1.0(graphql@16.6.0): resolution: {integrity: sha512-p+XPfS4q7aIpKVcgmnZKhMNqhltk20hfXtkaIkTfjjmiKMJ5xrt5c743cL03y/K7y1rg3WrIC49xGiEQ4mxdNw==} peerDependencies: - graphql: 14 - 16 + graphql: 16.6.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) cross-fetch: 3.1.5 @@ -21444,7 +21420,7 @@ packages: resolution: {integrity: sha512-my9FB4GtghqXqi/lWSVAOPiTzTnnEzdOXCsAC2bb5V7EFNQjVjwy3cSSbUvgYOtDuDibd+ZsCDhz+4eykYOlhQ==} engines: {node: '>=10'} peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 dependencies: graphql: 16.6.0 tslib: 2.5.3 @@ -21454,7 +21430,7 @@ packages: resolution: {integrity: sha512-TTdFwxGM9RY68s22XWyhc+SyQn3PLbELDD2So0K6Cc6EIlBAyPuNV8VlPfNKa/la7gEf2SwHY7JoJplOmOY4LA==} engines: {node: '>=12'} peerDependencies: - graphql: '>=0.11 <=16' + graphql: 16.6.0 dependencies: graphql: 16.6.0 dev: false @@ -21463,7 +21439,7 @@ packages: resolution: {integrity: sha512-NZ4bek4VBlsEDSCnibq9MddbZ2AU4rAusTwUg3sbux4J3WOcZ6zB6Ysrw6rzfJq771wEmwPEMtXPVbOYZnnFUw==} engines: {node: '>=12'} peerDependencies: - graphql: '>=0.11 <=16' + graphql: 16.6.0 dependencies: graphql: 16.6.0 dev: true @@ -21472,7 +21448,7 @@ packages: resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} engines: {node: '>=10'} peerDependencies: - graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: 16.6.0 dependencies: graphql: 16.6.0 tslib: 2.6.2 @@ -21481,7 +21457,7 @@ packages: resolution: {integrity: sha512-fU8zwSgAX2noXAsuFiCZ8BtXeXZOzXyK5u1LloCdacsVth4skdBMPO74EG51lBoWSIZ8beUocdpV8+cQHBODnQ==} engines: {node: '>=10'} peerDependencies: - graphql: '>=0.11 <=16' + graphql: 16.6.0 dependencies: graphql: 16.6.0 @@ -21489,7 +21465,7 @@ packages: resolution: {integrity: sha512-eiX7ES/ZQr0q7hSM5UBOEIFfaAUmAY9/CSDyAnsETuybByU7l/v46drRg9DQoTvVABEHp3QnrvwgTRMhqy7zxQ==} engines: {node: '>=10'} peerDependencies: - graphql: '>=0.11 <=16' + graphql: 16.6.0 dependencies: graphql: 16.6.0 @@ -27315,7 +27291,7 @@ packages: /nexus@1.3.0(graphql@16.6.0): resolution: {integrity: sha512-w/s19OiNOs0LrtP7pBmD9/FqJHvZLmCipVRt6v1PM8cRUYIbhEswyNKGHVoC4eHZGPSnD+bOf5A3+gnbt0A5/A==} peerDependencies: - graphql: 15.x || 16.x + graphql: 16.6.0 dependencies: graphql: 16.6.0 iterall: 1.3.0 @@ -29744,7 +29720,7 @@ packages: /react-focus-lock@2.9.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-pSWOQrUmiKLkffPO6BpMXN7SNKXMsuOakl652IBuALAu1esk+IcpJyM+ALcYzPTTFz1rD0R54aB9A4HuP5t1Wg==} peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': 18.2.8 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -29808,7 +29784,7 @@ packages: resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} engines: {node: '>=10'} peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': 18.2.8 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -29824,7 +29800,7 @@ packages: resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} engines: {node: '>=10'} peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': 18.2.8 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -29843,7 +29819,7 @@ packages: resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': 18.2.8 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -31307,9 +31283,9 @@ packages: /sofa-api@0.18.0(graphql@16.6.0): resolution: {integrity: sha512-x1AabBvr91Uvncx3STVZb6jmr2jfZzu/+rzPZuTjmQNC/Q5UMWQLNR85HfGROgIytX6rMzgSq2wfixWVoenNdA==} peerDependencies: - graphql: ^15.0.0 || ^16.0.0 + graphql: 16.6.0 dependencies: - '@graphql-tools/utils': 10.1.0(graphql@16.6.0) + '@graphql-tools/utils': 10.1.1(graphql@16.6.0) '@whatwg-node/fetch': 0.9.17 ansi-colors: 4.1.3 fets: 0.2.0 @@ -31933,7 +31909,7 @@ packages: /subscriptions-transport-ws@0.11.0(graphql@16.6.0): resolution: {integrity: sha512-8D4C6DIH5tGiAIpp5I0wD/xRlNiZAPGHygzCe7VzyzUoxHtawzjNAY9SUTXU05/EY2NMY9/9GF0ycizkXr1CWQ==} peerDependencies: - graphql: ^15.7.2 || ^16.0.0 + graphql: 16.6.0 dependencies: backo2: 1.0.2 eventemitter3: 3.1.2 @@ -33787,7 +33763,7 @@ packages: resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==} engines: {node: '>=10'} peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': 18.2.8 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -33802,7 +33778,7 @@ packages: resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} engines: {node: '>=10'} peerDependencies: - '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 + '@types/react': 18.2.8 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': From e83084c766622f1a3f4b6cc174c5d9f00d94d36a Mon Sep 17 00:00:00 2001 From: Arda TANRIKULU Date: Mon, 15 Apr 2024 10:56:40 +0300 Subject: [PATCH 4/4] Root Level Limit: different take with onValidate --- .../__tests__/root-level-limitation.spec.ts | 47 +++ .../root-level-limitation/package.json | 7 +- .../root-level-limitation/src/index.ts | 88 ++-- pnpm-lock.yaml | 392 ++++++++++-------- 4 files changed, 296 insertions(+), 238 deletions(-) diff --git a/packages/plugins/root-level-limitation/__tests__/root-level-limitation.spec.ts b/packages/plugins/root-level-limitation/__tests__/root-level-limitation.spec.ts index 243e34dff9..be922710a7 100644 --- a/packages/plugins/root-level-limitation/__tests__/root-level-limitation.spec.ts +++ b/packages/plugins/root-level-limitation/__tests__/root-level-limitation.spec.ts @@ -64,4 +64,51 @@ describe('root-level-limitation', () => { }); expect(res.status).toBe(200); }); + + it('should not allow requests with max root level query and nested fragments', async () => { + const res = await yoga.fetch('http://yoga/graphql', { + method: 'POST', + body: JSON.stringify({ + query: /* GraphQL */ ` + fragment QueryFragment on Query { + topBooks { + id + } + topProducts { + id + } + } + { + ...QueryFragment + } + `, + }), + headers: { + 'Content-Type': 'application/json', + }, + }); + }) + + it('should allow requests with max root level query in comments', async () => { + const res = await yoga.fetch('http://yoga/graphql', { + method: 'POST', + body: JSON.stringify({ + query: /* GraphQL */ ` + { + # topBooks { + # id + # } + topProducts { + id + } + } + `, + }), + headers: { + 'Content-Type': 'application/json', + }, + }); + + expect(res.status).toBe(200); + }) }); diff --git a/packages/plugins/root-level-limitation/package.json b/packages/plugins/root-level-limitation/package.json index dd27d84058..8b0e62d6e4 100644 --- a/packages/plugins/root-level-limitation/package.json +++ b/packages/plugins/root-level-limitation/package.json @@ -38,15 +38,14 @@ }, "peerDependencies": { "@graphql-tools/utils": "^10.1.0", - "@whatwg-node/server": "^0.9.32", - "graphql": "^15.2.0 || ^16.0.0", - "graphql-yoga": "^5.3.0" + "@envelop/core": "^5.0.0", + "graphql": "^15.2.0 || ^16.0.0" }, "dependencies": { "tslib": "^2.5.2" }, "devDependencies": { - "@whatwg-node/fetch": "^0.9.17", + "@envelop/core": "^5.0.0", "graphql": "^16.6.0", "graphql-yoga": "5.3.0" }, diff --git a/packages/plugins/root-level-limitation/src/index.ts b/packages/plugins/root-level-limitation/src/index.ts index 05c9917764..3af0eb06ee 100644 --- a/packages/plugins/root-level-limitation/src/index.ts +++ b/packages/plugins/root-level-limitation/src/index.ts @@ -1,79 +1,47 @@ -import { createGraphQLError } from '@graphql-tools/utils'; +import { createGraphQLError, getRootTypes } from '@graphql-tools/utils'; +import { Plugin } from '@envelop/core'; +import type { ValidationRule } from 'graphql/validation/ValidationContext'; +import { isObjectType } from 'graphql'; -interface GraphQLParams { - operationName?: string; - query?: string; +export interface RootLevelQueryLimitOptions { + maxRootLevelFields: number; } -export function rootLevelQueryLimit({ maxRootLevelFields }: { maxRootLevelFields: number }) { - return { - onParams({ params }: unknown) { - const { query, operationName } = params as GraphQLParams; - - if (operationName?.includes('IntrospectionQuery')) return true; - - const newQuery = formatQuery(query || ''); - const linesArray = newQuery.split('\n'); - - let countLeadingSpacesTwo = 0; - - for (const line of linesArray) { - const leadingSpaces = line?.match(/^\s*/)?.[0]?.length || 0; - - if (leadingSpaces === 4 && line[leadingSpaces] !== ')') { - countLeadingSpacesTwo++; - - if (countLeadingSpacesTwo > maxRootLevelFields * 2) { +export function createRootLevelQueryLimitRule(opts: RootLevelQueryLimitOptions): ValidationRule { + const { maxRootLevelFields } = opts; + + return function rootLevelQueryLimitRule (context) { + const rootTypes = getRootTypes(context.getSchema()); + let rootFieldCount = 0; + return { + Field() { + const parentType = context.getParentType(); + if (isObjectType(parentType) && rootTypes.has(parentType)) { + rootFieldCount++; + if (rootFieldCount > maxRootLevelFields) { throw createGraphQLError('Query is too complex.', { extensions: { http: { spec: false, status: 400, - headers: { - Allow: 'POST', - }, }, }, }); } } - } - - return true; - }, + }, + }; }; -} -function formatQuery(queryString: string) { - queryString = queryString.replace(/^\s+/gm, ''); - - let indentLevel = 0; - let formattedString = ''; - - for (let i = 0; i < queryString.length; i++) { - const char = queryString[i]; - - if (char === '{' || char === '(') { - formattedString += char; - indentLevel++; - // formattedString += ' '.repeat(indentLevel * 4); - } else if (char === '}' || char === ')') { - indentLevel--; - - if (formattedString[formattedString.length - 1] !== '\n') - formattedString = formattedString.trim().replace(/\n$/, ''); - - if (char === ')') formattedString += char; +} - if (char === '}') formattedString += '\n' + ' '.repeat(indentLevel * 4) + char; - } else if (char === '\n') { - if (queryString[i + 1] !== '\n' && queryString[i + 1] !== undefined) { - formattedString += char + ' '.repeat(indentLevel * 4); - } - } else { - formattedString += char; +export function rootLevelQueryLimit(opts: RootLevelQueryLimitOptions): Plugin { + const rootLevelQueryLimitRule = createRootLevelQueryLimitRule(opts); + return { + onValidate({ addValidationRule }) { + addValidationRule( + rootLevelQueryLimitRule + ) } } - - return formattedString; } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7e170e6645..5d092d2c8e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: '6.0' +lockfileVersion: '6.1' settings: autoInstallPeers: true @@ -132,7 +132,7 @@ importers: dependencies: '@envelop/graphql-jit': specifier: 8.0.0 - version: 8.0.0(@envelop/core@4.0.0)(graphql@16.6.0) + version: 8.0.0(@envelop/core@5.0.0)(graphql@16.6.0) '@faker-js/faker': specifier: 8.0.2 version: 8.0.2 @@ -234,7 +234,7 @@ importers: version: 2.4.7(graphql@16.6.0) '@envelop/apollo-federation': specifier: 5.0.0 - version: 5.0.0(@apollo/gateway@2.4.7)(@envelop/core@4.0.0)(graphql@16.6.0) + version: 5.0.0(@apollo/gateway@2.4.7)(@envelop/core@5.0.0)(graphql@16.6.0) graphql: specifier: 16.6.0 version: 16.6.0 @@ -520,7 +520,7 @@ importers: dependencies: '@envelop/graphql-modules': specifier: 6.0.0 - version: 6.0.0(@envelop/core@4.0.0)(graphql-modules@2.1.2)(graphql@16.6.0) + version: 6.0.0(@envelop/core@5.0.0)(graphql-modules@2.1.2)(graphql@16.6.0) '@graphql-tools/load-files': specifier: 7.0.0 version: 7.0.0(graphql@16.6.0) @@ -679,7 +679,7 @@ importers: dependencies: '@envelop/generic-auth': specifier: 7.0.0 - version: 7.0.0(@envelop/core@4.0.0)(graphql@16.6.0) + version: 7.0.0(@envelop/core@5.0.0)(graphql@16.6.0) graphql: specifier: 16.6.0 version: 16.6.0 @@ -903,7 +903,7 @@ importers: dependencies: '@envelop/live-query': specifier: 7.0.0 - version: 7.0.0(@envelop/core@4.0.0)(graphql@16.6.0) + version: 7.0.0(@envelop/core@5.0.0)(graphql@16.6.0) '@graphql-tools/utils': specifier: 10.0.1 version: 10.0.1(graphql@16.6.0) @@ -1393,7 +1393,7 @@ importers: dependencies: '@envelop/graphql-jit': specifier: 8.0.0 - version: 8.0.0(@envelop/core@4.0.0)(graphql@16.6.0) + version: 8.0.0(@envelop/core@5.0.0)(graphql@16.6.0) '@graphql-yoga/render-graphiql': specifier: 5.3.0 version: link:../../packages/render-graphiql/dist @@ -1502,7 +1502,7 @@ importers: specifier: ^1.0.4 version: 1.0.4(@types/node@18.16.16)(graphql@16.6.0) graphql: - specifier: 16.6.0 + specifier: ^15.2.0 || ^16.0.0 version: 16.6.0 tslib: specifier: ^2.5.2 @@ -1525,7 +1525,7 @@ importers: specifier: ^1.0.0 version: 1.0.0(@urql/core@4.0.10)(graphql@16.6.0)(wonka@6.3.2) graphql: - specifier: 16.6.0 + specifier: ^15.2.0 || ^16.0.0 version: 16.6.0 tslib: specifier: ^2.5.2 @@ -1821,7 +1821,7 @@ importers: dependencies: '@envelop/on-resolve': specifier: ^4.0.0 - version: 4.0.0(@envelop/core@4.0.0)(graphql@16.6.0) + version: 4.0.0(@envelop/core@5.0.0)(graphql@16.6.0) '@graphql-tools/utils': specifier: ^10.0.0 version: 10.0.0(graphql@16.6.0) @@ -1906,7 +1906,7 @@ importers: packages/plugins/graphql-sse: dependencies: graphql: - specifier: 16.6.0 + specifier: ^15.2.0 || ^16.0.0 version: 16.6.0 graphql-sse: specifier: ^2.0.0 @@ -1964,9 +1964,9 @@ importers: dependencies: '@envelop/prometheus': specifier: ^9.4.0 - version: 9.4.0(@envelop/core@4.0.0)(graphql@16.6.0)(prom-client@15.0.0) + version: 9.4.0(@envelop/core@5.0.0)(graphql@16.6.0)(prom-client@15.0.0) graphql: - specifier: 16.6.0 + specifier: ^15.2.0 || ^16.0.0 version: 16.6.0 graphql-yoga: specifier: ^5.3.0 @@ -1981,7 +1981,7 @@ importers: dependencies: '@envelop/response-cache': specifier: ^6.1.2 - version: 6.1.2(@envelop/core@4.0.0)(graphql@16.6.0) + version: 6.1.2(@envelop/core@5.0.0)(graphql@16.6.0) graphql-yoga: specifier: ^5.3.0 version: link:../../graphql-yoga/dist @@ -1999,16 +1999,13 @@ importers: '@graphql-tools/utils': specifier: ^10.1.0 version: 10.1.1(graphql@16.6.0) - '@whatwg-node/server': - specifier: ^0.9.32 - version: 0.9.32 tslib: specifier: ^2.5.2 version: 2.6.2 devDependencies: - '@whatwg-node/fetch': - specifier: ^0.9.17 - version: 0.9.17 + '@envelop/core': + specifier: 4.0.0 + version: 4.0.0 graphql: specifier: 16.6.0 version: 16.6.0 @@ -2020,7 +2017,7 @@ importers: packages/plugins/sofa: dependencies: graphql: - specifier: 16.6.0 + specifier: ^15.2.0 || ^16.0.0 version: 16.6.0 graphql-yoga: specifier: ^5.3.0 @@ -2117,7 +2114,7 @@ packages: /@0no-co/graphql.web@1.0.1(graphql@16.6.0): resolution: {integrity: sha512-6Yaxyv6rOwRkLIvFaL0NrLDgfNqC/Ng9QOPmTmlqW4mORXMEKmh5NYGkIvvt5Yw8fZesnMAqkj8cIqTj8f40cQ==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 peerDependenciesMeta: graphql: optional: true @@ -2215,14 +2212,14 @@ packages: /@apollo/cache-control-types@1.0.2(graphql@16.6.0): resolution: {integrity: sha512-Por80co1eUm4ATsvjCOoS/tIR8PHxqVjsA6z76I6Vw0rFn4cgyVElQcmQDIZiYsy41k8e5xkrMRECkM2WR8pNw==} peerDependencies: - graphql: 16.6.0 + graphql: 14.x || 15.x || 16.x dependencies: graphql: 16.6.0 /@apollo/client@3.7.15(graphql@16.6.0): resolution: {integrity: sha512-pLScjo4GAQRWKWyEg2J3FlQr9fbUAuADT0EI2+JlLf2BjaU9I7WUaZVD9w+0qNPE8BZqs53MRQq0OCm1QCW+eg==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 graphql-ws: ^5.5.5 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -2255,7 +2252,7 @@ packages: /@apollo/client@3.8.2(graphql@16.6.0): resolution: {integrity: sha512-SSxRTHlHdlR65mvV5j5e3JkYs9z/eFQfJPgSfqTeKa3jgHKofBaMb+UWxJPInqV5MqBFAkPFt8fYEBZwM7oGZA==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 graphql-ws: ^5.5.5 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -2290,7 +2287,7 @@ packages: resolution: {integrity: sha512-sAVJwv1YJpqbZzS8E1IFItXsiJPag57g3hvwj8n/sn5LGgRRSS05WxhQl7U3NJEjwD0+4LpXqGrIvpCcRFLsvQ==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^16.5.0 dependencies: '@apollo/federation-internals': 2.4.0(graphql@16.6.0) '@apollo/query-graphs': 2.4.0(graphql@16.6.0) @@ -2301,7 +2298,7 @@ packages: resolution: {integrity: sha512-eXRTG6J5ywwXsWgP0Wgic4zeBXO8jBBvI0FM4t/gay4DI+1zEL5qmoF2HN/jFik0dnd/ud5kh4djvFLmWEwbeA==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^16.5.0 dependencies: '@apollo/federation-internals': 2.4.7(graphql@16.6.0) '@apollo/query-graphs': 2.4.7(graphql@16.6.0) @@ -2311,7 +2308,7 @@ packages: resolution: {integrity: sha512-ovfYwpq3s2LKNvLGg6bxcNlyrCllbF1JhNgQEOEOeAoy3TTmnYuxqd00H3bkT/5xpXvMpBc6+Di6qMkYcQM+Ww==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^16.5.0 dependencies: '@types/uuid': 9.0.1 chalk: 4.1.2 @@ -2323,7 +2320,7 @@ packages: resolution: {integrity: sha512-a4iH+72yVd0zNGC5ZGEDfbqI81wktE7qAHjH4rQzJTqMQ74By3PoMD2DefOArcweonvd4b/h4oQJXGvLK2V4Ew==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^16.5.0 dependencies: '@types/uuid': 9.0.1 chalk: 4.1.2 @@ -2335,7 +2332,7 @@ packages: resolution: {integrity: sha512-Jt1HiFwe94AfjVj1h53GRwz26Bfp6Y0+yyHQ6/CqEJxQWbAHvEiBFKpzwFQQF9O/OshZx8oedmuAXA6RSFRxSg==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^16.5.0 dependencies: '@apollo/composition': 2.4.0(graphql@16.6.0) '@apollo/federation-internals': 2.4.0(graphql@16.6.0) @@ -2366,7 +2363,7 @@ packages: resolution: {integrity: sha512-ZcqSJEUxVJqqPKJ97q72Hyp0YEQfHW+oCRP9osF6XKkrGX1C7nxLm6EzO261+m1bUwkdtjk5CLfXxa9yxIDRdA==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^16.5.0 dependencies: '@apollo/composition': 2.4.7(graphql@16.6.0) '@apollo/federation-internals': 2.4.7(graphql@16.6.0) @@ -2434,7 +2431,7 @@ packages: resolution: {integrity: sha512-xyixv288KQ1/qeRbGayNN+4kbv0oHCZV/iLTu1x/Vb5iZTD0LPlMar2rh7ffGLoCmLLAzP+65le0wRXU581hHQ==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^16.5.0 dependencies: '@apollo/federation-internals': 2.4.0(graphql@16.6.0) deep-equal: 2.0.5 @@ -2447,7 +2444,7 @@ packages: resolution: {integrity: sha512-LLoY0GgP3mcF+8zp3cf701ixHrsFh1WH1R8HPtO0NOgArmVMTl0bvsEHzFqUNdMd/PcU2b9SMcCmPwN7dKRs+A==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^16.5.0 dependencies: '@apollo/federation-internals': 2.4.7(graphql@16.6.0) deep-equal: 2.0.5 @@ -2459,7 +2456,7 @@ packages: resolution: {integrity: sha512-sVBHJ5SW32w6YdeAJCcB23ct5sb/myhv7ebbr9tObmncBR/QOj0n45XyJGXPC3LP8J3h3ICVWehNXDFyV2wOHQ==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^16.5.0 dependencies: '@apollo/federation-internals': 2.4.0(graphql@16.6.0) '@apollo/query-graphs': 2.4.0(graphql@16.6.0) @@ -2474,7 +2471,7 @@ packages: resolution: {integrity: sha512-0fTA1W5NKtfxLq5+GY9ORPSQB/MRH1xOt3SbSS8o9yhR9GKzzE3yYNc88HgYAe2lfdDOesCME2t1kKrE76uzdA==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^16.5.0 dependencies: '@apollo/federation-internals': 2.4.7(graphql@16.6.0) '@apollo/query-graphs': 2.4.7(graphql@16.6.0) @@ -2487,7 +2484,7 @@ packages: /@apollo/server-gateway-interface@1.1.0(graphql@16.6.0): resolution: {integrity: sha512-0rhG++QtGfr4YhhIHgxZ9BdMFthaPY6LbhI9Au90osbfLMiZ7f8dmZsEX1mp7O1h8MJwCu6Dp0I/KcGbSvfUGA==} peerDependencies: - graphql: 16.6.0 + graphql: 14.x || 15.x || 16.x dependencies: '@apollo/usage-reporting-protobuf': 4.1.0 '@apollo/utils.fetcher': 2.0.0 @@ -2500,7 +2497,7 @@ packages: engines: {node: '>=14.16.0'} requiresBuild: true peerDependencies: - graphql: 16.6.0 + graphql: ^16.6.0 dependencies: '@apollo/cache-control-types': 1.0.2(graphql@16.6.0) '@apollo/server-gateway-interface': 1.1.0(graphql@16.6.0) @@ -2539,7 +2536,7 @@ packages: resolution: {integrity: sha512-/njjzPkyzkh0FO2WvLV+I9mlsDWk3DhfOtCc+cmMx9p4mixgyyaRvYvx3tPjSPkMvkPw/cNidCVymuWJVOAu5A==} engines: {node: '>=14.15.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^16.5.0 dependencies: '@apollo/cache-control-types': 1.0.2(graphql@16.6.0) '@apollo/federation-internals': 2.4.0(graphql@16.6.0) @@ -2562,7 +2559,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 16.6.0 + graphql: 14.x || 15.x || 16.x dependencies: graphql: 16.6.0 dev: false @@ -2603,7 +2600,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 16.6.0 + graphql: 14.x || 15.x || 16.x dependencies: graphql: 16.6.0 dev: false @@ -2614,7 +2611,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 16.6.0 + graphql: 14.x || 15.x || 16.x dependencies: graphql: 16.6.0 dev: false @@ -2625,7 +2622,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 16.6.0 + graphql: 14.x || 15.x || 16.x dependencies: graphql: 16.6.0 lodash.sortby: 4.7.0 @@ -2637,7 +2634,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 16.6.0 + graphql: 14.x || 15.x || 16.x dependencies: graphql: 16.6.0 dev: false @@ -2648,7 +2645,7 @@ packages: engines: {node: '>=14'} requiresBuild: true peerDependencies: - graphql: 16.6.0 + graphql: 14.x || 15.x || 16.x dependencies: '@apollo/usage-reporting-protobuf': 4.1.0 '@apollo/utils.dropunuseddefinitions': 2.0.0(graphql@16.6.0) @@ -2684,7 +2681,7 @@ packages: resolution: {integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==} hasBin: true peerDependencies: - graphql: 16.6.0 + graphql: '*' dependencies: '@babel/core': 7.22.1 '@babel/generator': 7.23.5 @@ -6389,8 +6386,8 @@ packages: engines: {node: '>=18.0.0'} peerDependencies: '@apollo/gateway': ^0.54.0 - '@envelop/core': 4.0.0 - graphql: 16.6.0 + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@apollo/gateway': 2.4.0(graphql@16.6.0) '@envelop/core': 4.0.0 @@ -6402,16 +6399,16 @@ packages: - encoding dev: false - /@envelop/apollo-federation@5.0.0(@apollo/gateway@2.4.7)(@envelop/core@4.0.0)(graphql@16.6.0): + /@envelop/apollo-federation@5.0.0(@apollo/gateway@2.4.7)(@envelop/core@5.0.0)(graphql@16.6.0): resolution: {integrity: sha512-mbe0bqn6mv9WVs5Kk4+IWRZuvxfzjkmuJliAuFJjUuIOn1pMUeCAzjhDTWCHEeCnS0s+TcCtKGFOdAfNtuxbvA==} engines: {node: '>=18.0.0'} peerDependencies: '@apollo/gateway': ^0.54.0 - '@envelop/core': 4.0.0 - graphql: 16.6.0 + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@apollo/gateway': 2.4.7(graphql@16.6.0) - '@envelop/core': 4.0.0 + '@envelop/core': 5.0.0 apollo-server-caching: 3.3.0 apollo-server-types: 3.6.3(graphql@16.6.0) graphql: 16.6.0 @@ -6427,40 +6424,48 @@ packages: '@envelop/types': 4.0.0 tslib: 2.6.2 + /@envelop/core@5.0.0: + resolution: {integrity: sha512-aJdnH/ptv+cvwfvciCBe7TSvccBwo9g0S5f6u35TBVzRVqIGkK03lFlIL+x1cnfZgN9EfR2b1PH2galrT1CdCQ==} + engines: {node: '>=18.0.0'} + dependencies: + '@envelop/types': 5.0.0 + tslib: 2.6.2 + dev: false + /@envelop/disable-introspection@6.0.0(@envelop/core@4.0.0)(graphql@16.6.0): resolution: {integrity: sha512-+DxCvKdzsHat/aWr6dqDsebbGk6ZGiM7VZlnpwKS8g4+PDHg7AfMBnDP8CtUODgifU+kgZME4TFzU288MNpNDg==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': 4.0.0 - graphql: 16.6.0 + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@envelop/core': 4.0.0 graphql: 16.6.0 tslib: 2.6.2 dev: true - /@envelop/extended-validation@4.0.0(@envelop/core@4.0.0)(graphql@16.6.0): + /@envelop/extended-validation@4.0.0(@envelop/core@5.0.0)(graphql@16.6.0): resolution: {integrity: sha512-pvJ/OL+C+lpNiiCXezHT+vP3PTq37MQicoOB1l5MdgOOZZWRAp0NDOgvEKcXUY7AWNpvNHgSE0QFSRfGwsfwFQ==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': 4.0.0 - graphql: 16.6.0 + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@envelop/core': 4.0.0 + '@envelop/core': 5.0.0 '@graphql-tools/utils': 10.1.1(graphql@16.6.0) graphql: 16.6.0 tslib: 2.6.2 dev: false - /@envelop/generic-auth@7.0.0(@envelop/core@4.0.0)(graphql@16.6.0): + /@envelop/generic-auth@7.0.0(@envelop/core@5.0.0)(graphql@16.6.0): resolution: {integrity: sha512-FxGzoSjIXJlv+aiVyhQ8oHoz41ol4gJe8KAzNX7FP3qrhldbrqcC5Q+J/VtNlo5jXYX0YuLHH6ehF80tQDZJ4Q==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': 4.0.0 - graphql: 16.6.0 + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@envelop/core': 4.0.0 - '@envelop/extended-validation': 4.0.0(@envelop/core@4.0.0)(graphql@16.6.0) + '@envelop/core': 5.0.0 + '@envelop/extended-validation': 4.0.0(@envelop/core@5.0.0)(graphql@16.6.0) '@graphql-tools/utils': 10.0.6(graphql@16.6.0) graphql: 16.6.0 tslib: 2.6.2 @@ -6470,24 +6475,39 @@ packages: resolution: {integrity: sha512-+Sfp5DON/krxr4fP1kT6GQeQYqphP2g69CybqAMLRTALCCKs/ZfATvK/Bx+ysPV5K8g/tRwVuDbub1JAuLDxSw==} engines: {node: '>=18.0.0'} peerDependencies: + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: '@envelop/core': 4.0.0 graphql: 16.6.0 + graphql-jit: 0.8.4(graphql@16.6.0) + tslib: 2.6.2 + value-or-promise: 1.0.12 + dev: true + + /@envelop/graphql-jit@8.0.0(@envelop/core@5.0.0)(graphql@16.6.0): + resolution: {integrity: sha512-+Sfp5DON/krxr4fP1kT6GQeQYqphP2g69CybqAMLRTALCCKs/ZfATvK/Bx+ysPV5K8g/tRwVuDbub1JAuLDxSw==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@envelop/core': 4.0.0 + '@envelop/core': 5.0.0 graphql: 16.6.0 graphql-jit: 0.8.4(graphql@16.6.0) tslib: 2.6.2 value-or-promise: 1.0.12 + dev: false - /@envelop/graphql-modules@6.0.0(@envelop/core@4.0.0)(graphql-modules@2.1.2)(graphql@16.6.0): + /@envelop/graphql-modules@6.0.0(@envelop/core@5.0.0)(graphql-modules@2.1.2)(graphql@16.6.0): resolution: {integrity: sha512-U6LoSMFd/eVt/vcI+6cj3OWciPnCTCIz+7Frc+oJ3Bg2utDIba3ngepzQPYb9t2da+AjCw+O2NmBwoUHWH0mAQ==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': 4.0.0 - graphql: 16.6.0 + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 graphql-modules: ^1 || ^2.0.0 dependencies: - '@envelop/core': 4.0.0 + '@envelop/core': 5.0.0 graphql: 16.6.0 graphql-modules: 2.1.2(graphql@16.6.0) tslib: 2.6.2 @@ -6497,62 +6517,79 @@ packages: resolution: {integrity: sha512-rLnSN1B+5zcy3FsWE+16/CMiqjD/LXXcRUXJ0RaXRjzHClpQxgSzrAixNeOmx1vXLff4AgkjOZANJl39rD4dwQ==} engines: {node: '>=18.0.0'} peerDependencies: + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: '@envelop/core': 4.0.0 + '@graphql-tools/utils': 10.0.1(graphql@16.6.0) + '@n1ru4l/graphql-live-query': 0.10.0(graphql@16.6.0) + '@n1ru4l/graphql-live-query-patch': 0.7.0(graphql@16.6.0) + '@n1ru4l/in-memory-live-query-store': 0.10.0(graphql@16.6.0) graphql: 16.6.0 + tslib: 2.6.2 + dev: true + + /@envelop/live-query@7.0.0(@envelop/core@5.0.0)(graphql@16.6.0): + resolution: {integrity: sha512-rLnSN1B+5zcy3FsWE+16/CMiqjD/LXXcRUXJ0RaXRjzHClpQxgSzrAixNeOmx1vXLff4AgkjOZANJl39rD4dwQ==} + engines: {node: '>=18.0.0'} + peerDependencies: + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@envelop/core': 4.0.0 + '@envelop/core': 5.0.0 '@graphql-tools/utils': 10.0.1(graphql@16.6.0) '@n1ru4l/graphql-live-query': 0.10.0(graphql@16.6.0) '@n1ru4l/graphql-live-query-patch': 0.7.0(graphql@16.6.0) '@n1ru4l/in-memory-live-query-store': 0.10.0(graphql@16.6.0) graphql: 16.6.0 tslib: 2.6.2 + dev: false - /@envelop/on-resolve@4.0.0(@envelop/core@4.0.0)(graphql@16.6.0): + /@envelop/on-resolve@4.0.0(@envelop/core@5.0.0)(graphql@16.6.0): resolution: {integrity: sha512-EBGJoaN7eqpDxhH/EFnjx5CgK8d7XKs6/2scuqGmEnVptW+8sicxPdvt5nZielZRT6spRK14ZGWmn2o8qf8GjQ==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': 4.0.0 - graphql: 16.6.0 + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@envelop/core': 4.0.0 + '@envelop/core': 5.0.0 graphql: 16.6.0 dev: false - /@envelop/on-resolve@4.1.0(@envelop/core@4.0.0)(graphql@16.6.0): + /@envelop/on-resolve@4.1.0(@envelop/core@5.0.0)(graphql@16.6.0): resolution: {integrity: sha512-2AXxf8jbBIepBUiY0KQtyCO6gnT7LKBEYdaARZBJ7ujy1+iQHQPORKvAwl51kIdD6v5x38eldZnm7A19jFimOg==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': 4.0.0 - graphql: 16.6.0 + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@envelop/core': 4.0.0 + '@envelop/core': 5.0.0 graphql: 16.6.0 dev: false - /@envelop/prometheus@9.4.0(@envelop/core@4.0.0)(graphql@16.6.0)(prom-client@15.0.0): + /@envelop/prometheus@9.4.0(@envelop/core@5.0.0)(graphql@16.6.0)(prom-client@15.0.0): resolution: {integrity: sha512-r+BoQhDl/7qV8iZ0jOAumuMw3zi+IiFC5NFtgPSWwf3YFDH9PG1Y4WTh2qi+2GAFp/Z6CPv1TWePs3DHyz3v4w==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': 4.0.0 - graphql: 16.6.0 + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 prom-client: ^15.0.0 dependencies: - '@envelop/core': 4.0.0 - '@envelop/on-resolve': 4.1.0(@envelop/core@4.0.0)(graphql@16.6.0) + '@envelop/core': 5.0.0 + '@envelop/on-resolve': 4.1.0(@envelop/core@5.0.0)(graphql@16.6.0) graphql: 16.6.0 prom-client: 15.0.0 tslib: 2.6.2 dev: false - /@envelop/response-cache@6.1.2(@envelop/core@4.0.0)(graphql@16.6.0): + /@envelop/response-cache@6.1.2(@envelop/core@5.0.0)(graphql@16.6.0): resolution: {integrity: sha512-vBX6z/TxBZSNReVn69VJVkdGHpGzHyeQNMz9LXobczl55KCZaf2inBWguSdGq+vx6PlB068GhLeg+a7kseiF1Q==} engines: {node: '>=18.0.0'} peerDependencies: - '@envelop/core': 4.0.0 - graphql: 16.6.0 + '@envelop/core': ^5.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@envelop/core': 4.0.0 + '@envelop/core': 5.0.0 '@graphql-tools/utils': 10.1.0(graphql@16.6.0) '@whatwg-node/fetch': 0.9.17 fast-json-stable-stringify: 2.1.0 @@ -6567,6 +6604,13 @@ packages: dependencies: tslib: 2.6.2 + /@envelop/types@5.0.0: + resolution: {integrity: sha512-IPjmgSc4KpQRlO4qbEDnBEixvtb06WDmjKfi/7fkZaryh5HuOmTtixe1EupQI5XfXO8joc3d27uUZ0QdC++euA==} + engines: {node: '>=18.0.0'} + dependencies: + tslib: 2.6.2 + dev: false + /@esbuild-kit/cjs-loader@2.4.2: resolution: {integrity: sha512-BDXFbYOJzT/NBEtp71cvsrGPwGAMGRB/349rwKuoxNSiKjPraNNnlK6MIIabViCjqZugu6j+xeMDlEkWdHHJSg==} dependencies: @@ -7404,7 +7448,7 @@ packages: /@graphiql/plugin-explorer@0.1.4(@codemirror/language@6.0.0)(@types/react@18.2.8)(graphql@16.6.0)(react-dom@18.2.0)(react-is@17.0.2)(react@18.2.0): resolution: {integrity: sha512-sjP2W5mf9ZR/GAMs2kg2NkIa8shGZWFQu6LYHmTjWuOP2V1gTgEAgJYvr36InE1Bj9gnBHQhqGFP9lYjdB6Ncw==} peerDependencies: - graphql: 16.6.0 + graphql: ^15.5.0 || ^16.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: @@ -7424,7 +7468,7 @@ packages: /@graphiql/react@0.13.3(patch_hash=yqm362ey3efuxzwgojxfo6tq5i)(@codemirror/language@6.0.0)(@types/react@18.2.8)(graphql@16.6.0)(react-dom@18.2.0)(react-is@17.0.2)(react@18.2.0): resolution: {integrity: sha512-BIOaahIxVHGQjoVbECIiSzEtETZVMyhG83ysVpoFKCVj27KxDbh/Yk9w23L0aYQWuWEU7C02Kzl5gi+Zwx/K3A==} peerDependencies: - graphql: 16.6.0 + graphql: ^15.5.0 || ^16.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: @@ -7456,7 +7500,7 @@ packages: /@graphiql/toolkit@0.8.4(graphql@16.6.0): resolution: {integrity: sha512-cFUGqh3Dau+SD3Vq9EFlZrhzYfaHKyOJveFtaCR+U5Cn/S68p7oy+vQBIdwtO6J2J58FncnwBbVRfr+IvVfZqQ==} peerDependencies: - graphql: 16.6.0 + graphql: ^15.5.0 || ^16.0.0 graphql-ws: '>= 4.5.0' peerDependenciesMeta: graphql-ws: @@ -7474,7 +7518,7 @@ packages: hasBin: true peerDependencies: '@parcel/watcher': ^2.1.0 - graphql: 16.6.0 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 peerDependenciesMeta: '@parcel/watcher': optional: true @@ -7528,7 +7572,7 @@ packages: /@graphql-codegen/core@4.0.0(graphql@16.6.0): resolution: {integrity: sha512-JAGRn49lEtSsZVxeIlFVIRxts2lWObR+OQo7V2LHDJ7ohYYw3ilv7nJ8pf8P4GTg/w6ptcYdSdVVdkI8kUHB/Q==} peerDependencies: - graphql: 16.6.0 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.6.0) '@graphql-tools/schema': 10.0.0(graphql@16.6.0) @@ -7540,7 +7584,7 @@ packages: /@graphql-codegen/plugin-helpers@5.0.1(graphql@16.6.0): resolution: {integrity: sha512-6L5sb9D8wptZhnhLLBcheSPU7Tg//DGWgc5tQBWX46KYTOTQHGqDpv50FxAJJOyFVJrveN9otWk9UT9/yfY4ww==} peerDependencies: - graphql: 16.6.0 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) change-case-all: 1.0.15 @@ -7554,7 +7598,7 @@ packages: /@graphql-codegen/plugin-helpers@5.0.3(graphql@16.6.0): resolution: {integrity: sha512-yZ1rpULIWKBZqCDlvGIJRSyj1B2utkEdGmXZTBT/GVayP4hyRYlkd36AJV/LfEsVD8dnsKL5rLz2VTYmRNlJ5Q==} peerDependencies: - graphql: 16.6.0 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) change-case-all: 1.0.15 @@ -7568,7 +7612,7 @@ packages: /@graphql-codegen/schema-ast@4.0.2(graphql@16.6.0): resolution: {integrity: sha512-5mVAOQQK3Oz7EtMl/l3vOQdc2aYClUzVDHHkMvZlunc+KlGgl81j8TLa+X7ANIllqU4fUEsQU3lJmk4hXP6K7Q==} peerDependencies: - graphql: 16.6.0 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -7579,7 +7623,7 @@ packages: /@graphql-codegen/typescript-resolvers@4.0.6(graphql@16.6.0): resolution: {integrity: sha512-7OBFzZ2xSkYgMgcc1A3xNqbBHHSQXBesLrG86Sh+Jj0PQQB3Om8j1HSFs64PD/l5Kri2dXgm3oim/89l3Rl3lw==} peerDependencies: - graphql: 16.6.0 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.6.0) '@graphql-codegen/typescript': 4.0.6(graphql@16.6.0) @@ -7596,7 +7640,7 @@ packages: /@graphql-codegen/typescript@4.0.6(graphql@16.6.0): resolution: {integrity: sha512-IBG4N+Blv7KAL27bseruIoLTjORFCT3r+QYyMC3g11uY3/9TPpaUyjSdF70yBe5GIQ6dAgDU+ENUC1v7EPi0rw==} peerDependencies: - graphql: 16.6.0 + graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.6.0) '@graphql-codegen/schema-ast': 4.0.2(graphql@16.6.0) @@ -7612,7 +7656,7 @@ packages: /@graphql-codegen/visitor-plugin-common@5.1.0(graphql@16.6.0): resolution: {integrity: sha512-eamQxtA9bjJqI2lU5eYoA1GbdMIRT2X8m8vhWYsVQVWD3qM7sx/IqJU0kx0J3Vd4/CSd36BzL6RKwksibytDIg==} peerDependencies: - graphql: 16.6.0 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.6.0) '@graphql-tools/optimize': 2.0.0(graphql@16.6.0) @@ -7634,7 +7678,7 @@ packages: resolution: {integrity: sha512-axQTbN5+Yxs1rJ6cWQBOfw3AEeC+fvIuZSfJLPLLvFJLj4pUm9fhxey/g6oQZAAQJqKPfw+tLDUQvnfvRK8Kmg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -7648,7 +7692,7 @@ packages: /@graphql-tools/batch-execute@8.5.19(graphql@16.6.0): resolution: {integrity: sha512-eqofTMYPygg9wVPdA+p8lk4NBpaPTcDut6SlnDk9IiYdY23Yfo6pY7mzZ3b27GugI7HDtB2OZUxzZJSGsk6Qew==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 9.2.1(graphql@16.6.0) dataloader: 2.2.2 @@ -7661,7 +7705,7 @@ packages: resolution: {integrity: sha512-lT9/1XmPSYzBcEybXPLsuA6C5E0t8438PVUELABcqdvwHgZ3VOOx29MLBEqhr2oewOlDChH6PXNkfxoOoAuzRg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) dataloader: 2.2.2 @@ -7673,7 +7717,7 @@ packages: resolution: {integrity: sha512-nq36yQnUVp6Roti+RFatInRogZzbwdFKZK1YBCmP3XpUvoOBbWaHaLKxVE9mU5lb9nL99zKzhq6gfh5syzxjJQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/graphql-tag-pluck': 8.0.0(@babel/core@7.22.1)(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -7690,7 +7734,7 @@ packages: resolution: {integrity: sha512-ZW5/7Q0JqUM+guwn8/cM/1Hz16Zvj6WR6r3gnOwoPO7a9bCbe8QTCk4itT/EO+RiGT8RLUPYaunWR9jxfNqqOA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/batch-execute': 9.0.0(graphql@16.6.0) '@graphql-tools/executor': 1.2.5(graphql@16.6.0) @@ -7704,7 +7748,7 @@ packages: /@graphql-tools/delegate@9.0.28(graphql@16.6.0): resolution: {integrity: sha512-8j23JCs2mgXqnp+5K0v4J3QBQU/5sXd9miaLvMfRf/6963DznOXTECyS9Gcvj1VEeR5CXIw6+aX/BvRDKDdN1g==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/batch-execute': 8.5.19(graphql@16.6.0) '@graphql-tools/executor': 0.0.15(graphql@16.6.0) @@ -7721,7 +7765,7 @@ packages: engines: {node: '>=16.0.0'} peerDependencies: '@apollo/client': ^3.5.9 - graphql: 16.6.0 + graphql: ^15.2.0 || ^16.0.0 dependencies: '@apollo/client': 3.7.15(graphql@16.6.0) '@graphql-tools/utils': 10.0.1(graphql@16.6.0) @@ -7733,7 +7777,7 @@ packages: resolution: {integrity: sha512-voczXmNcEzZKk6dS4pCwN0XCXvDiAVm9rj+54oz7X04IsHBJmTUul1YhCbJie1xUvN1jmgEJ14lfD92tMMMTmQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) '@repeaterjs/repeater': 3.0.4 @@ -7751,7 +7795,7 @@ packages: resolution: {integrity: sha512-lSoPFWrGU6XT9nGGBogUI8bSOtP0yce2FhXTrU5akMZ35BDCNWbkmgryzRhxoAH/yDOaZtKkHQB3xrYX3uo5zA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 10.0.6(graphql@16.6.0) '@repeaterjs/repeater': 3.0.4 @@ -7768,7 +7812,7 @@ packages: resolution: {integrity: sha512-roQyDLOAywyaCTPOhwXiT/WDr0bfuVhqOXjECsnrIl/1TMPDUYjiT2sW6Gz6pqnYMmokdhyvlV6D5d7WtIrKsA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) '@repeaterjs/repeater': 3.0.4 @@ -7785,7 +7829,7 @@ packages: resolution: {integrity: sha512-8c0wlhYz7G6imuWqHqjpveflN8IVL3gXIxel5lzpAvPvxsSXpiNig3jADkIBB+eaxzR9R1lbwxqonxPUGI4CdQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) '@types/ws': 8.5.4 @@ -7802,7 +7846,7 @@ packages: engines: {node: '>=16.0.0'} peerDependencies: '@urql/core': ^3.0.0 || ^4.0.0 - graphql: 16.6.0 + graphql: ^15.2.0 || ^16.0.0 wonka: ^6.0.0 dependencies: '@graphql-tools/utils': 10.0.1(graphql@16.6.0) @@ -7815,7 +7859,7 @@ packages: /@graphql-tools/executor@0.0.15(graphql@16.6.0): resolution: {integrity: sha512-6U7QLZT8cEUxAMXDP4xXVplLi6RBwx7ih7TevlBto66A/qFp3PDb6o/VFo07yBKozr8PGMZ4jMfEWBGxmbGdxA==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 9.2.1(graphql@16.6.0) '@graphql-typed-document-node/core': 3.1.2(graphql@16.6.0) @@ -7829,7 +7873,7 @@ packages: resolution: {integrity: sha512-s7sW4K3BUNsk9sjq+vNicwb9KwcR3G55uS/CI8KZQ4x0ZdeYMIwpeU9MVeORCCpHuQyTaV+/VnO0hFrS/ygzsg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) @@ -7842,7 +7886,7 @@ packages: resolution: {integrity: sha512-0QAzWywOdWC4vozYFi4OuAxv1QvHo6PwLY+D8DCQn+knxWZAsJe86SESxBkQ5R03yHFWPaiBVWKDB+lxxgC7Uw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/graphql-tag-pluck': 8.0.0(@babel/core@7.22.1)(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -7860,7 +7904,7 @@ packages: resolution: {integrity: sha512-VuroArWKcG4yaOWzV0r19ElVIV6iH6UKDQn1MXemND0xu5TzrFme0kf3U9o0YwNo0kUYEk9CyFM0BYg4he17FA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-http': 1.0.4(@types/node@18.16.16)(graphql@16.6.0) @@ -7881,7 +7925,7 @@ packages: resolution: {integrity: sha512-wRXj9Z1IFL3+zJG1HWEY0S4TXal7+s1vVhbZva96MSp0kbb/3JBF7j0cnJ44Eq0ClccMgGCDFqPFXty4JlpaPg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/import': 7.0.0(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -7895,7 +7939,7 @@ packages: resolution: {integrity: sha512-/xFXF7RwWf1UDAnUN/984Q1clRxRcWwO7lxi+BDzuwN14DJb424FVAmFOroBeeFWQNdj8qtNGLWhAbx23khvHQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@babel/parser': 7.23.5 '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.22.1) @@ -7913,7 +7957,7 @@ packages: resolution: {integrity: sha512-NVZiTO8o1GZs6OXzNfjB+5CtQtqsZZpQOq+Uu0w57kdUkT4RlQKlwhT8T81arEsbV55KpzkpFsOZP7J1wdmhBw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) graphql: 16.6.0 @@ -7925,7 +7969,7 @@ packages: resolution: {integrity: sha512-ki6EF/mobBWJjAAC84xNrFMhNfnUFD6Y0rQMGXekrUgY0NdeYXHU0ZUgHzC9O5+55FslqUmAUHABePDHTyZsLg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) globby: 11.1.0 @@ -7938,7 +7982,7 @@ packages: resolution: {integrity: sha512-P98amERIwI7FD8Bsq6xUbz9Mj63W8qucfrE/WQjad5jFMZYdFFt46a99FFdfx8S/ZYgpAlj/AZbaTtWLitMgNQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: globby: 11.1.0 graphql: 16.6.0 @@ -7950,7 +7994,7 @@ packages: resolution: {integrity: sha512-Cy874bQJH0FP2Az7ELPM49iDzOljQmK1PPH6IuxsWzLSTxwTqd8dXA09dcVZrI7/LsN26heTY2R8q2aiiv0GxQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/schema': 10.0.0(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -7962,7 +8006,7 @@ packages: /@graphql-tools/merge@8.4.0(graphql@16.6.0): resolution: {integrity: sha512-3XYCWe0d3I4F1azNj1CdShlbHfTIfiDgj00R9uvFH8tHKh7i1IWN3F7QQYovcHKhayaR6zPok3YYMESYQcBoaA==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 9.2.1(graphql@16.6.0) graphql: 16.6.0 @@ -7972,7 +8016,7 @@ packages: /@graphql-tools/merge@8.4.2(graphql@16.6.0): resolution: {integrity: sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 9.2.1(graphql@16.6.0) graphql: 16.6.0 @@ -7983,7 +8027,7 @@ packages: resolution: {integrity: sha512-J7/xqjkGTTwOJmaJQJ2C+VDBDOWJL3lKrHJN4yMaRLAJH3PosB7GiPRaSDZdErs0+F77sH2MKs2haMMkywzx7Q==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) graphql: 16.6.0 @@ -7993,7 +8037,7 @@ packages: resolution: {integrity: sha512-nhdT+CRGDZ+bk68ic+Jw1OZ99YCDIKYA5AlVAnBHJvMawSx9YQqQAIj4refNc1/LRieGiuWvhbG3jvPVYho0Dg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: graphql: 16.6.0 tslib: 2.6.2 @@ -8003,7 +8047,7 @@ packages: resolution: {integrity: sha512-AvvVFj+E+e8kG5QaVcitLTr7VZOa5CmvJ8HwlZslmg9OD1qoVDvhroGoR5/3y5e6n1xUjCWlO1xoo3QBseMuSw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/url-loader': 8.0.1(@types/node@18.16.16)(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -8036,7 +8080,7 @@ packages: resolution: {integrity: sha512-UNlJi5y3JylhVWU4MBpL0Hun4Q7IoJwv9xYtmAz+CgRa066szzY7dcuPfxrA7cIGgG/Q6TVsKsYaiF4OHPs1Fw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/relay-compiler': 12.0.0(graphql@16.6.0) '@graphql-tools/utils': 10.1.1(graphql@16.6.0) @@ -8051,7 +8095,7 @@ packages: resolution: {integrity: sha512-kf3qOXMFcMs2f/S8Y3A8fm/2w+GaHAkfr3Gnhh2LOug/JgpY/ywgFVxO3jOeSpSEdoYcDKLcXVjMigNbY4AdQg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/merge': 9.0.0(graphql@16.6.0) '@graphql-tools/utils': 10.0.1(graphql@16.6.0) @@ -8062,7 +8106,7 @@ packages: /@graphql-tools/schema@9.0.17(graphql@16.6.0): resolution: {integrity: sha512-HVLq0ecbkuXhJlpZ50IHP5nlISqH2GbNgjBJhhRzHeXhfwlUOT4ISXGquWTmuq61K0xSaO0aCjMpxe4QYbKTng==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/merge': 8.4.0(graphql@16.6.0) '@graphql-tools/utils': 9.2.1(graphql@16.6.0) @@ -8074,7 +8118,7 @@ packages: /@graphql-tools/schema@9.0.19(graphql@16.6.0): resolution: {integrity: sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/merge': 8.4.2(graphql@16.6.0) '@graphql-tools/utils': 9.2.1(graphql@16.6.0) @@ -8087,7 +8131,7 @@ packages: resolution: {integrity: sha512-rPc9oDzMnycvz+X+wrN3PLrhMBQkG4+sd8EzaFN6dypcssiefgWKToXtRKI8HHK68n2xEq1PyrOpkjHFJB+GwA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/delegate': 10.0.0(graphql@16.6.0) @@ -8114,7 +8158,7 @@ packages: resolution: {integrity: sha512-B2k8KQEkEQmfV1zhurT5GLoXo8jbXP+YQHUayhCSxKYlRV7j/1Fhp1b21PDM8LXIDGlDRXaZ0FbWKOs7eYXDuQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/delegate': 10.0.0(graphql@16.6.0) @@ -8140,7 +8184,7 @@ packages: resolution: {integrity: sha512-ndBPc6zgR+eGU/jHLpuojrs61kYN3Z89JyMLwK3GCRkPv4EQn9EOr1UWqF1JO0iM+/jAVHY0mvfUxyrFFN9DUQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) graphql: 16.6.0 @@ -8151,7 +8195,7 @@ packages: resolution: {integrity: sha512-i1FozbDGHgdsFA47V/JvQZ0FE8NAy0Eiz7HGCJO2MkNdZAKNnwei66gOq0JWYVFztwpwbVQ09GkKhq7Kjcq5Cw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) graphql: 16.6.0 @@ -8161,7 +8205,7 @@ packages: resolution: {integrity: sha512-hZMjl/BbX10iagovakgf3IiqArx8TPsotq5pwBld37uIX1JiZoSbgbCIFol7u55bh32o6cfDEiiJgfAD5fbeyQ==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) dset: 3.1.2 @@ -8172,7 +8216,7 @@ packages: resolution: {integrity: sha512-wLPqhgeZ9BZJPRoaQbsDN/CtJDPd/L4qmmtPkjI3NuYJ39x+Eqz1Sh34EAGMuDh+xlOHqBwHczkZUpoK9tvzjw==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) cross-inspect: 1.0.0 @@ -8185,7 +8229,7 @@ packages: resolution: {integrity: sha512-1kNkZsND12hPkb+YpuUeTRt8f9ZTGhYOfu23V5Z21HegYDjl1k9eX+Inher/eiHCf1eXCk5rKWL9Liol8MWixA==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) cross-inspect: 1.0.0 @@ -8196,7 +8240,7 @@ packages: /@graphql-tools/utils@8.13.1(graphql@16.6.0): resolution: {integrity: sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: graphql: 16.6.0 tslib: 2.6.2 @@ -8204,7 +8248,7 @@ packages: /@graphql-tools/utils@9.2.1(graphql@16.6.0): resolution: {integrity: sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) graphql: 16.6.0 @@ -8215,7 +8259,7 @@ packages: resolution: {integrity: sha512-HDOeUUh6UhpiH0WPJUQl44ODt1x5pnMUbOJZ7GjTdGQ7LK0AgVt3ftaAQ9duxLkiAtYJmu5YkULirfZGj4HzDg==} engines: {node: '>=16.0.0'} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/delegate': 10.0.0(graphql@16.6.0) '@graphql-tools/schema': 10.0.0(graphql@16.6.0) @@ -8227,7 +8271,7 @@ packages: /@graphql-tools/wrap@9.3.8(graphql@16.6.0): resolution: {integrity: sha512-MGsExYPiILMw4Qff7HcvE9MMSYdjb/tr5IQYJbxJIU4/TrBHox1/smne8HG+Bd7kmDlTTj7nU/Z8sxmoRd0hOQ==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-tools/delegate': 9.0.28(graphql@16.6.0) '@graphql-tools/schema': 9.0.17(graphql@16.6.0) @@ -8240,7 +8284,7 @@ packages: /@graphql-typed-document-node/core@3.1.2(graphql@16.6.0): resolution: {integrity: sha512-9anpBMM9mEgZN4wr2v8wHJI2/u5TnnggewRN6OlvXTTnuVyoY19X6rOv9XTqKRw6dcGKwZsBi8n0kDE2I5i4VA==} peerDependencies: - graphql: 16.6.0 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: graphql: 16.6.0 dev: false @@ -8248,7 +8292,7 @@ packages: /@graphql-typed-document-node/core@3.2.0(graphql@16.6.0): resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==} peerDependencies: - graphql: 16.6.0 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: graphql: 16.6.0 @@ -9370,7 +9414,7 @@ packages: /@mdx-js/react@3.0.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==} peerDependencies: - '@types/react': 18.2.8 + '@types/react': '>=16' react: '>=16' dependencies: '@types/mdx': 2.0.3 @@ -9381,7 +9425,7 @@ packages: /@n1ru4l/graphql-live-query-patch@0.7.0(graphql@16.6.0): resolution: {integrity: sha512-1q49iNxqEIbmUp+qFAEVEn4ts344Cw72g5OtAuFeTwKtJT3V91kTPGMcRk5Pxb5FPHbvn52q+PCVKOAyVrtPwQ==} peerDependencies: - graphql: 16.6.0 + graphql: ^15.4.0 || ^16.0.0 dependencies: '@repeaterjs/repeater': 3.0.4 graphql: 16.6.0 @@ -9389,14 +9433,14 @@ packages: /@n1ru4l/graphql-live-query@0.10.0(graphql@16.6.0): resolution: {integrity: sha512-qZ7OHH/NB0NcG/Xa7irzgjE63UH0CkofZT0Bw4Ko6iRFagPRHBM8RgFXwTt/6JbFGIEUS4STRtaFoc/Eq/ZtzQ==} peerDependencies: - graphql: 16.6.0 + graphql: ^15.4.0 || ^16.0.0 dependencies: graphql: 16.6.0 /@n1ru4l/in-memory-live-query-store@0.10.0(graphql@16.6.0): resolution: {integrity: sha512-pt7bZgTPz9dk7ceoOp76KIbVFFlAPe0e5A07UiZ19fQy3JPvvoLRdjmnKbUh3VsEUUh8MyytFcFRguaeiidAYA==} peerDependencies: - graphql: 16.6.0 + graphql: ^15.4.0 || ^16.0.0 dependencies: '@graphql-tools/utils': 8.13.1(graphql@16.6.0) '@n1ru4l/graphql-live-query': 0.10.0(graphql@16.6.0) @@ -9711,7 +9755,7 @@ packages: '@nestjs/core': ^9.3.8 || ^10.0.0 class-transformer: '*' class-validator: '*' - graphql: 16.6.0 + graphql: ^16.6.0 reflect-metadata: ^0.1.13 ts-morph: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: @@ -9756,7 +9800,7 @@ packages: '@nestjs/core': ^9.3.8 || ^10.0.0 class-transformer: '*' class-validator: '*' - graphql: 16.6.0 + graphql: ^16.6.0 reflect-metadata: ^0.1.13 ts-morph: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: @@ -9803,7 +9847,7 @@ packages: '@nestjs/core': ^9.3.8 || ^10.0.0 class-transformer: '*' class-validator: '*' - graphql: 16.6.0 + graphql: ^16.6.0 reflect-metadata: ^0.1.13 ts-morph: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: @@ -11924,7 +11968,7 @@ packages: /@pothos/core@3.30.0(graphql@16.6.0): resolution: {integrity: sha512-ZUL2YTv3ODeKBkhkVcEO03lcERdqQaG2zfylNpkrY9ryAIhOuN9Pbo+VnfqhqEQx7jM/56Rro7i9AuhzF0Q3tA==} peerDependencies: - graphql: 16.6.0 + graphql: '>=15.1.0' dependencies: graphql: 16.6.0 dev: false @@ -14805,7 +14849,7 @@ packages: engines: {node: '>=12.0'} deprecated: The `apollo-server-types` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. peerDependencies: - graphql: 16.6.0 + graphql: ^15.3.0 || ^16.0.0 dependencies: '@apollo/utils.keyvaluecache': 1.0.1 '@apollo/utils.logger': 1.0.1 @@ -16706,7 +16750,7 @@ packages: peerDependencies: '@codemirror/language': 6.0.0 codemirror: ^5.65.3 - graphql: 16.6.0 + graphql: ^15.5.0 || ^16.0.0 dependencies: '@codemirror/language': 6.0.0 '@types/codemirror': 0.0.90 @@ -21287,7 +21331,7 @@ packages: /graphiql-explorer@0.9.0(graphql@16.6.0)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-fZC/wsuatqiQDO2otchxriFO0LaWIo/ovF/CQJ1yOudmY0P7pzDiP+l9CEHUiWbizk3e99x6DQG4XG1VxA+d6A==} peerDependencies: - graphql: 16.6.0 + graphql: ^0.6.0 || ^0.7.0 || ^0.8.0-b || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 react: ^15.6.0 || ^16.0.0 react-dom: ^15.6.0 || ^16.0.0 dependencies: @@ -21299,7 +21343,7 @@ packages: /graphiql@2.0.7(@codemirror/language@6.0.0)(@types/react@18.2.8)(graphql@16.6.0)(react-dom@18.2.0)(react-is@17.0.2)(react@18.2.0): resolution: {integrity: sha512-vHZeCS+KKbMQAWJ0CDdnCPmVOG0d48BeoZJjBlm2H5WlCpNjVMm0WVpfL7dG3aP4k+eF+800sMpUx3VVFt7LYw==} peerDependencies: - graphql: 16.6.0 + graphql: ^15.5.0 || ^16.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: @@ -21324,7 +21368,7 @@ packages: engines: {node: '>= 16.0.0'} peerDependencies: cosmiconfig-toml-loader: ^1.0.0 - graphql: 16.6.0 + graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 peerDependenciesMeta: cosmiconfig-toml-loader: optional: true @@ -21352,7 +21396,7 @@ packages: resolution: {integrity: sha512-r2sIo6jCTQi1aj7s+Srg7oU3+r5pUUgxgDD5JDZOmFzrbXVGz+yMhIKhvqW0cV10DcnVIFCOzuFuc1qvnjJ7yQ==} engines: {node: '>=12'} peerDependencies: - graphql: 16.6.0 + graphql: '>=0.11 <=16' dependencies: graphql: 16.6.0 dev: true @@ -21360,7 +21404,7 @@ packages: /graphql-jit@0.8.4(graphql@16.6.0): resolution: {integrity: sha512-4KRrJ1ROy3Usgbl3eAoUMfdfZCRjkcw9cCGT7QwTUIHm9dPGaSaldxzGUttyjErU0rsYEb6WWyb6mMh5r6lEoQ==} peerDependencies: - graphql: 16.6.0 + graphql: '>=15' dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) fast-json-stringify: 5.7.0 @@ -21374,7 +21418,7 @@ packages: resolution: {integrity: sha512-APffigZ/l2me6soek+Yq5Us3HBwmfw4vns4QoqsTePXkK3knVO8rn0uAC6PmTyglb1pmFFPbYaRIzW4wmcnnGQ==} hasBin: true peerDependencies: - graphql: 16.6.0 + graphql: ^15.5.0 || ^16.0.0 dependencies: graphql: 16.6.0 nullthrows: 1.1.1 @@ -21385,7 +21429,7 @@ packages: resolution: {integrity: sha512-o/ZgTS0pBxWm3hSF4+6GwiV1//DxzoLWEbS38+jqpzzy1d/QXBidwQuVYTOksclbtOJZ3KR/tZ8fi/tI6VpVMg==} hasBin: true peerDependencies: - graphql: 16.6.0 + graphql: ^15.5.0 || ^16.0.0 dependencies: graphql: 16.6.0 nullthrows: 1.1.1 @@ -21395,7 +21439,7 @@ packages: /graphql-modules@2.1.2(graphql@16.6.0): resolution: {integrity: sha512-GWxPom0iv4TXyLkuPqEHdRtJRdWCrUOGRMpXWmly1eY2T2MKAdCNya5iY/Ezb3d0Z2BzQBRUXdOgdkFPe2UDjg==} peerDependencies: - graphql: 16.6.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-tools/schema': 9.0.19(graphql@16.6.0) '@graphql-tools/wrap': 9.3.8(graphql@16.6.0) @@ -21407,7 +21451,7 @@ packages: /graphql-request@6.1.0(graphql@16.6.0): resolution: {integrity: sha512-p+XPfS4q7aIpKVcgmnZKhMNqhltk20hfXtkaIkTfjjmiKMJ5xrt5c743cL03y/K7y1rg3WrIC49xGiEQ4mxdNw==} peerDependencies: - graphql: 16.6.0 + graphql: 14 - 16 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) cross-fetch: 3.1.5 @@ -21420,7 +21464,7 @@ packages: resolution: {integrity: sha512-my9FB4GtghqXqi/lWSVAOPiTzTnnEzdOXCsAC2bb5V7EFNQjVjwy3cSSbUvgYOtDuDibd+ZsCDhz+4eykYOlhQ==} engines: {node: '>=10'} peerDependencies: - graphql: 16.6.0 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: graphql: 16.6.0 tslib: 2.5.3 @@ -21430,7 +21474,7 @@ packages: resolution: {integrity: sha512-TTdFwxGM9RY68s22XWyhc+SyQn3PLbELDD2So0K6Cc6EIlBAyPuNV8VlPfNKa/la7gEf2SwHY7JoJplOmOY4LA==} engines: {node: '>=12'} peerDependencies: - graphql: 16.6.0 + graphql: '>=0.11 <=16' dependencies: graphql: 16.6.0 dev: false @@ -21439,7 +21483,7 @@ packages: resolution: {integrity: sha512-NZ4bek4VBlsEDSCnibq9MddbZ2AU4rAusTwUg3sbux4J3WOcZ6zB6Ysrw6rzfJq771wEmwPEMtXPVbOYZnnFUw==} engines: {node: '>=12'} peerDependencies: - graphql: 16.6.0 + graphql: '>=0.11 <=16' dependencies: graphql: 16.6.0 dev: true @@ -21448,7 +21492,7 @@ packages: resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} engines: {node: '>=10'} peerDependencies: - graphql: 16.6.0 + graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: graphql: 16.6.0 tslib: 2.6.2 @@ -21457,7 +21501,7 @@ packages: resolution: {integrity: sha512-fU8zwSgAX2noXAsuFiCZ8BtXeXZOzXyK5u1LloCdacsVth4skdBMPO74EG51lBoWSIZ8beUocdpV8+cQHBODnQ==} engines: {node: '>=10'} peerDependencies: - graphql: 16.6.0 + graphql: '>=0.11 <=16' dependencies: graphql: 16.6.0 @@ -21465,7 +21509,7 @@ packages: resolution: {integrity: sha512-eiX7ES/ZQr0q7hSM5UBOEIFfaAUmAY9/CSDyAnsETuybByU7l/v46drRg9DQoTvVABEHp3QnrvwgTRMhqy7zxQ==} engines: {node: '>=10'} peerDependencies: - graphql: 16.6.0 + graphql: '>=0.11 <=16' dependencies: graphql: 16.6.0 @@ -27291,7 +27335,7 @@ packages: /nexus@1.3.0(graphql@16.6.0): resolution: {integrity: sha512-w/s19OiNOs0LrtP7pBmD9/FqJHvZLmCipVRt6v1PM8cRUYIbhEswyNKGHVoC4eHZGPSnD+bOf5A3+gnbt0A5/A==} peerDependencies: - graphql: 16.6.0 + graphql: 15.x || 16.x dependencies: graphql: 16.6.0 iterall: 1.3.0 @@ -29720,7 +29764,7 @@ packages: /react-focus-lock@2.9.1(@types/react@18.2.8)(react@18.2.0): resolution: {integrity: sha512-pSWOQrUmiKLkffPO6BpMXN7SNKXMsuOakl652IBuALAu1esk+IcpJyM+ALcYzPTTFz1rD0R54aB9A4HuP5t1Wg==} peerDependencies: - '@types/react': 18.2.8 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -29784,7 +29828,7 @@ packages: resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} engines: {node: '>=10'} peerDependencies: - '@types/react': 18.2.8 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -29800,7 +29844,7 @@ packages: resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} engines: {node: '>=10'} peerDependencies: - '@types/react': 18.2.8 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -29819,7 +29863,7 @@ packages: resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: - '@types/react': 18.2.8 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -31283,7 +31327,7 @@ packages: /sofa-api@0.18.0(graphql@16.6.0): resolution: {integrity: sha512-x1AabBvr91Uvncx3STVZb6jmr2jfZzu/+rzPZuTjmQNC/Q5UMWQLNR85HfGROgIytX6rMzgSq2wfixWVoenNdA==} peerDependencies: - graphql: 16.6.0 + graphql: ^15.0.0 || ^16.0.0 dependencies: '@graphql-tools/utils': 10.1.1(graphql@16.6.0) '@whatwg-node/fetch': 0.9.17 @@ -31909,7 +31953,7 @@ packages: /subscriptions-transport-ws@0.11.0(graphql@16.6.0): resolution: {integrity: sha512-8D4C6DIH5tGiAIpp5I0wD/xRlNiZAPGHygzCe7VzyzUoxHtawzjNAY9SUTXU05/EY2NMY9/9GF0ycizkXr1CWQ==} peerDependencies: - graphql: 16.6.0 + graphql: ^15.7.2 || ^16.0.0 dependencies: backo2: 1.0.2 eventemitter3: 3.1.2 @@ -33763,7 +33807,7 @@ packages: resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==} engines: {node: '>=10'} peerDependencies: - '@types/react': 18.2.8 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -33778,7 +33822,7 @@ packages: resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} engines: {node: '>=10'} peerDependencies: - '@types/react': 18.2.8 + '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react':