From fbacd6bda078eab2e9cfa380e22ade3690506caa Mon Sep 17 00:00:00 2001 From: Gareth Fuller Date: Fri, 20 Dec 2024 09:56:56 +0000 Subject: [PATCH 1/4] Update dependabot.yml --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 14ace57a..34d6d996 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,7 +5,7 @@ version: 2 updates: - - package-ecosystem: "pnpm" + - package-ecosystem: "npm" directories: - / - /apps/frontend-v3 From b31c08dcefbaf24cc0c2b06fa4924a0e9bdcfe91 Mon Sep 17 00:00:00 2001 From: Gareth Fuller Date: Fri, 20 Dec 2024 10:46:39 +0000 Subject: [PATCH 2/4] fix: Token inputs (#365) * chore: Init * chore: Add logoURI to schema --- .../modules/pool/actions/add-liquidity/form/TokenInputs.tsx | 6 +++--- packages/lib/modules/pool/pool.helpers.ts | 2 +- packages/lib/modules/pool/pool.types.ts | 1 + packages/lib/modules/tokens/TokenInput/TokenInput.tsx | 1 + packages/lib/modules/tokens/token.helpers.ts | 4 +++- packages/lib/shared/services/api/pool-tokens.graphql | 3 +++ 6 files changed, 12 insertions(+), 5 deletions(-) diff --git a/packages/lib/modules/pool/actions/add-liquidity/form/TokenInputs.tsx b/packages/lib/modules/pool/actions/add-liquidity/form/TokenInputs.tsx index e5c212a2..cdeac0de 100644 --- a/packages/lib/modules/pool/actions/add-liquidity/form/TokenInputs.tsx +++ b/packages/lib/modules/pool/actions/add-liquidity/form/TokenInputs.tsx @@ -31,9 +31,8 @@ export function TokenInputs({ tokenSelectDisclosureOpen, customSetAmountIn }: Pr function weightFor(tokenAddress: string) { return ( - pool.poolTokens.find(token => - isSameAddress(token.address as Address, tokenAddress as Address) - )?.weight ?? undefined + tokens.find(token => isSameAddress(token.address as Address, tokenAddress as Address)) + ?.weight ?? undefined ) } @@ -44,6 +43,7 @@ export function TokenInputs({ tokenSelectDisclosureOpen, customSetAmountIn }: Pr return ( shouldUseUnderlyingToken(token, pool) - ? [token.underlyingToken as ApiToken] + ? [{ ...token, ...token.underlyingToken } as ApiToken] : [token as ApiToken] ) .filter((token): token is ApiToken => token !== undefined) diff --git a/packages/lib/modules/pool/pool.types.ts b/packages/lib/modules/pool/pool.types.ts index 309a33c1..aafe2089 100644 --- a/packages/lib/modules/pool/pool.types.ts +++ b/packages/lib/modules/pool/pool.types.ts @@ -149,6 +149,7 @@ export type TokenCore = { export type ApiToken = Omit & { nestedTokens?: ApiToken[] underlyingToken?: ApiToken + weight?: string } export enum PoolListDisplayType { diff --git a/packages/lib/modules/tokens/TokenInput/TokenInput.tsx b/packages/lib/modules/tokens/TokenInput/TokenInput.tsx index d9faaf10..e1198c5d 100644 --- a/packages/lib/modules/tokens/TokenInput/TokenInput.tsx +++ b/packages/lib/modules/tokens/TokenInput/TokenInput.tsx @@ -212,6 +212,7 @@ export const TokenInput = forwardRef( const { colors } = useTheme() const { getToken } = useTokens() const tokenFromAddress = address && chain ? getToken(address, chain) : undefined + const token = apiToken || tokenFromAddress const { hasValidationError } = useTokenInputsValidation() diff --git a/packages/lib/modules/tokens/token.helpers.ts b/packages/lib/modules/tokens/token.helpers.ts index 1f470339..8450d101 100644 --- a/packages/lib/modules/tokens/token.helpers.ts +++ b/packages/lib/modules/tokens/token.helpers.ts @@ -163,5 +163,7 @@ function buildApiToken(poolToken: PoolToken): ApiToken { chain: poolToken.chain as GqlChain, priority: poolToken.priority as number, tradable: poolToken.tradable as boolean, - } as ApiToken + weight: poolToken?.weight ?? undefined, + underlyingToken: poolToken?.underlyingToken ?? undefined, + } } diff --git a/packages/lib/shared/services/api/pool-tokens.graphql b/packages/lib/shared/services/api/pool-tokens.graphql index 003c6c1a..2ce54f2b 100644 --- a/packages/lib/shared/services/api/pool-tokens.graphql +++ b/packages/lib/shared/services/api/pool-tokens.graphql @@ -11,6 +11,7 @@ fragment UnderlyingToken on GqlToken { tradable isErc4626 isBufferAllowed + logoURI } fragment Erc4626ReviewData on Erc4626ReviewData { @@ -40,6 +41,7 @@ fragment PoolTokens on GqlPoolTokenDetail { hasNestedPool isAllowed priceRateProvider + logoURI priceRateProviderData { address name @@ -72,6 +74,7 @@ fragment PoolTokens on GqlPoolTokenDetail { weight isErc4626 isBufferAllowed + logoURI underlyingToken { ...UnderlyingToken } From d189dc4af7e21e501a64577f8e932a8ced0c4983 Mon Sep 17 00:00:00 2001 From: Gareth Fuller Date: Fri, 20 Dec 2024 11:03:50 +0000 Subject: [PATCH 3/4] Update dependabot.yml --- .github/dependabot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 34d6d996..a7fe9378 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -13,3 +13,4 @@ updates: - /packages/lib schedule: interval: "weekly" + open-pull-requests-limit: 4 From e313738852153bb25e665cfdc6e2ec7d2d96c3e8 Mon Sep 17 00:00:00 2001 From: Gareth Fuller Date: Fri, 20 Dec 2024 11:26:33 +0000 Subject: [PATCH 4/4] chore: bump graphql (#372) * chore: bump graphql * skip flaky test * fix integration test --------- Co-authored-by: Alberto Gualis --- ...LiquidityActionHelpers.integration.spec.ts | 1 + ...alAddLiquidity.handler.integration.spec.ts | 8 +- packages/lib/package.json | 2 +- pnpm-lock.yaml | 475 +++++++++--------- 4 files changed, 245 insertions(+), 241 deletions(-) diff --git a/packages/lib/modules/pool/actions/LiquidityActionHelpers.integration.spec.ts b/packages/lib/modules/pool/actions/LiquidityActionHelpers.integration.spec.ts index 293b3c71..aa042f02 100644 --- a/packages/lib/modules/pool/actions/LiquidityActionHelpers.integration.spec.ts +++ b/packages/lib/modules/pool/actions/LiquidityActionHelpers.integration.spec.ts @@ -485,6 +485,7 @@ describe('Liquidity helpers for GNOSIS V3 Boosted pools', async () => { "index": 0, "isBufferAllowed": true, "isErc4626": false, + "logoURI": "https://raw.githubusercontent.com/balancer/tokenlists/main/src/assets/images/tokens/0x9c58bacc331c9aa871afd802db6379a98e80cedb.png", "name": "Gnosis Token on xDai", "priority": 0, "symbol": "GNO", diff --git a/packages/lib/modules/pool/actions/add-liquidity/handlers/ProportionalAddLiquidity.handler.integration.spec.ts b/packages/lib/modules/pool/actions/add-liquidity/handlers/ProportionalAddLiquidity.handler.integration.spec.ts index 98406808..96eb826a 100644 --- a/packages/lib/modules/pool/actions/add-liquidity/handlers/ProportionalAddLiquidity.handler.integration.spec.ts +++ b/packages/lib/modules/pool/actions/add-liquidity/handlers/ProportionalAddLiquidity.handler.integration.spec.ts @@ -15,7 +15,9 @@ function selectProportionalHandler(pool: Pool) { return selectAddLiquidityHandler(pool) as ProportionalAddLiquidityHandler } -describe('When adding proportional liquidity for a CoW AMM pool', async () => { +// Skip until we find the root cause of this issue: +// Error: Unable to get pool state with balances for v2 pool. +describe.skip('When adding proportional liquidity for a CoW AMM pool', async () => { const cowAMMPoolId = '0xf08d4dea369c456d26a3168ff0024b904f2d8b91' const cowAmmPool = await getPoolMock(cowAMMPoolId, GqlChain.Mainnet) // USDC-WETH @@ -69,7 +71,9 @@ describe('When adding proportional liquidity for a CoW AMM pool', async () => { }) }) -describe('When adding proportional liquidity for a gyro pool', () => { +// Skip until we find the root cause of this issue: +// Error: Unable to get pool state with balances for v2 pool. +describe.skip('When adding proportional liquidity for a gyro pool', () => { // USDC address in polygon const polygonUsdcAddress = '0x2791bca1f2de4661ed88a30c99a7a9449aa84174' as const const polygonDaiAddress = '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063' as const diff --git a/packages/lib/package.json b/packages/lib/package.json index 4e3dfb01..51ef49f0 100644 --- a/packages/lib/package.json +++ b/packages/lib/package.json @@ -51,7 +51,7 @@ "echarts-for-react": "^3.0.2", "fathom-client": "^3.7.0", "framer-motion": "^10.13.0", - "graphql": "^16.7.1", + "graphql": "^16.10.0", "graphql-request": "^6.1.0", "graphql-tag": "^2.12.6", "lodash": "^4.17.21", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8ea059d8..5d0dc349 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -336,7 +336,7 @@ importers: dependencies: '@apollo/client': specifier: ^3.11.8 - version: 3.11.8(@types/react@18.2.34)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 3.11.8(@types/react@18.2.34)(graphql-ws@5.16.0(graphql@16.10.0))(graphql@16.10.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@balancer/sdk': specifier: 1.0.1 version: 1.0.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.24.1) @@ -434,14 +434,14 @@ importers: specifier: ^10.13.0 version: 10.18.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) graphql: - specifier: ^16.7.1 - version: 16.9.0 + specifier: ^16.10.0 + version: 16.10.0 graphql-request: specifier: ^6.1.0 - version: 6.1.0(graphql@16.9.0) + version: 6.1.0(graphql@16.10.0) graphql-tag: specifier: ^2.12.6 - version: 2.12.6(graphql@16.9.0) + version: 2.12.6(graphql@16.10.0) lodash: specifier: ^4.17.21 version: 4.17.21 @@ -520,7 +520,7 @@ importers: devDependencies: '@apollo/experimental-nextjs-app-support': specifier: ^0.11.3 - version: 0.11.3(@apollo/client@3.11.8(@types/react@18.2.34)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.2.15(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + version: 0.11.3(@apollo/client@3.11.8(@types/react@18.2.34)(graphql-ws@5.16.0(graphql@16.10.0))(graphql@16.10.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.2.15(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/cli': specifier: ^2.4.1 version: 2.4.1 @@ -529,22 +529,22 @@ importers: version: 2.9.2 '@graphql-codegen/cli': specifier: ^5.0.0 - version: 5.0.2(@parcel/watcher@2.4.1)(@types/node@20.3.2)(bufferutil@4.0.8)(graphql@16.9.0)(typescript@5.4.5)(utf-8-validate@5.0.10) + version: 5.0.2(@parcel/watcher@2.4.1)(@types/node@20.3.2)(bufferutil@4.0.8)(graphql@16.10.0)(typescript@5.4.5)(utf-8-validate@5.0.10) '@graphql-codegen/client-preset': specifier: ^4.1.0 - version: 4.3.3(graphql@16.9.0) + version: 4.3.3(graphql@16.10.0) '@graphql-codegen/schema-ast': specifier: ^4.0.0 - version: 4.1.0(graphql@16.9.0) + version: 4.1.0(graphql@16.10.0) '@graphql-codegen/typescript-document-nodes': specifier: ^4.0.1 - version: 4.0.9(graphql@16.9.0) + version: 4.0.9(graphql@16.10.0) '@graphql-codegen/typescript-msw': specifier: ^1.1.6 - version: 1.1.6(graphql@16.9.0) + version: 1.1.6(graphql@16.10.0) '@graphql-typed-document-node/core': specifier: ^3.2.0 - version: 3.2.0(graphql@16.9.0) + version: 3.2.0(graphql@16.10.0) '@repo/eslint-config': specifier: workspace:* version: link:../eslint-config @@ -7030,8 +7030,8 @@ packages: peerDependencies: graphql: '>=0.11 <=16' - graphql@16.9.0: - resolution: {integrity: sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==} + graphql@16.10.0: + resolution: {integrity: sha512-AjqGKbDGUFRKIRCP9tCKiIGHyriz2oHEbPIbEtcSLSs4YjReZOIPQQWek4+6hjw62H9QShXHyaGivGiYVLeYFQ==} engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} h3@1.12.0: @@ -10652,20 +10652,20 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@apollo/client-react-streaming@0.11.3(@apollo/client@3.11.8(@types/react@18.2.34)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@apollo/client-react-streaming@0.11.3(@apollo/client@3.11.8(@types/react@18.2.34)(graphql-ws@5.16.0(graphql@16.10.0))(graphql@16.10.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@apollo/client': 3.11.8(@types/react@18.2.34)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@apollo/client': 3.11.8(@types/react@18.2.34)(graphql-ws@5.16.0(graphql@16.10.0))(graphql@16.10.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 ts-invariant: 0.10.3 - '@apollo/client@3.11.8(@types/react@18.2.34)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@apollo/client@3.11.8(@types/react@18.2.34)(graphql-ws@5.16.0(graphql@16.10.0))(graphql@16.10.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0) '@wry/caches': 1.0.1 '@wry/equality': 0.5.7 '@wry/trie': 0.5.0 - graphql: 16.9.0 - graphql-tag: 2.12.6(graphql@16.9.0) + graphql: 16.10.0 + graphql-tag: 2.12.6(graphql@16.10.0) hoist-non-react-statics: 3.3.2 optimism: 0.18.0 prop-types: 15.8.1 @@ -10676,20 +10676,20 @@ snapshots: tslib: 2.7.0 zen-observable-ts: 1.2.5 optionalDependencies: - graphql-ws: 5.16.0(graphql@16.9.0) + graphql-ws: 5.16.0(graphql@16.10.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@apollo/experimental-nextjs-app-support@0.11.3(@apollo/client@3.11.8(@types/react@18.2.34)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.2.15(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@apollo/experimental-nextjs-app-support@0.11.3(@apollo/client@3.11.8(@types/react@18.2.34)(graphql-ws@5.16.0(graphql@16.10.0))(graphql@16.10.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.2.15(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@apollo/client': 3.11.8(@types/react@18.2.34)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@apollo/client-react-streaming': 0.11.3(@apollo/client@3.11.8(@types/react@18.2.34)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@apollo/client': 3.11.8(@types/react@18.2.34)(graphql-ws@5.16.0(graphql@16.10.0))(graphql@16.10.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@apollo/client-react-streaming': 0.11.3(@apollo/client@3.11.8(@types/react@18.2.34)(graphql-ws@5.16.0(graphql@16.10.0))(graphql@16.10.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) next: 14.2.15(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 - '@ardatan/relay-compiler@12.0.0(graphql@16.9.0)': + '@ardatan/relay-compiler@12.0.0(graphql@16.10.0)': dependencies: '@babel/core': 7.25.2 '@babel/generator': 7.25.6 @@ -10702,7 +10702,7 @@ snapshots: fb-watchman: 2.0.2 fbjs: 3.0.5 glob: 7.2.3 - graphql: 16.9.0 + graphql: 16.10.0 immutable: 3.7.6 invariant: 2.2.4 nullthrows: 1.1.1 @@ -14146,37 +14146,37 @@ snapshots: '@floating-ui/utils@0.2.8': {} - '@graphql-codegen/add@5.0.3(graphql@16.9.0)': + '@graphql-codegen/add@5.0.3(graphql@16.10.0)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) - graphql: 16.9.0 + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.10.0) + graphql: 16.10.0 tslib: 2.6.2 - '@graphql-codegen/cli@5.0.2(@parcel/watcher@2.4.1)(@types/node@20.3.2)(bufferutil@4.0.8)(graphql@16.9.0)(typescript@5.4.5)(utf-8-validate@5.0.10)': + '@graphql-codegen/cli@5.0.2(@parcel/watcher@2.4.1)(@types/node@20.3.2)(bufferutil@4.0.8)(graphql@16.10.0)(typescript@5.4.5)(utf-8-validate@5.0.10)': dependencies: '@babel/generator': 7.25.6 '@babel/template': 7.25.0 '@babel/types': 7.25.6 - '@graphql-codegen/client-preset': 4.3.3(graphql@16.9.0) - '@graphql-codegen/core': 4.0.2(graphql@16.9.0) - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) - '@graphql-tools/apollo-engine-loader': 8.0.1(graphql@16.9.0) - '@graphql-tools/code-file-loader': 8.1.3(graphql@16.9.0) - '@graphql-tools/git-loader': 8.0.7(graphql@16.9.0) - '@graphql-tools/github-loader': 8.0.1(@types/node@20.3.2)(graphql@16.9.0) - '@graphql-tools/graphql-file-loader': 8.0.1(graphql@16.9.0) - '@graphql-tools/json-file-loader': 8.0.1(graphql@16.9.0) - '@graphql-tools/load': 8.0.2(graphql@16.9.0) - '@graphql-tools/prisma-loader': 8.0.4(@types/node@20.3.2)(bufferutil@4.0.8)(graphql@16.9.0)(utf-8-validate@5.0.10) - '@graphql-tools/url-loader': 8.0.2(@types/node@20.3.2)(bufferutil@4.0.8)(graphql@16.9.0)(utf-8-validate@5.0.10) - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) + '@graphql-codegen/client-preset': 4.3.3(graphql@16.10.0) + '@graphql-codegen/core': 4.0.2(graphql@16.10.0) + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.10.0) + '@graphql-tools/apollo-engine-loader': 8.0.1(graphql@16.10.0) + '@graphql-tools/code-file-loader': 8.1.3(graphql@16.10.0) + '@graphql-tools/git-loader': 8.0.7(graphql@16.10.0) + '@graphql-tools/github-loader': 8.0.1(@types/node@20.3.2)(graphql@16.10.0) + '@graphql-tools/graphql-file-loader': 8.0.1(graphql@16.10.0) + '@graphql-tools/json-file-loader': 8.0.1(graphql@16.10.0) + '@graphql-tools/load': 8.0.2(graphql@16.10.0) + '@graphql-tools/prisma-loader': 8.0.4(@types/node@20.3.2)(bufferutil@4.0.8)(graphql@16.10.0)(utf-8-validate@5.0.10) + '@graphql-tools/url-loader': 8.0.2(@types/node@20.3.2)(bufferutil@4.0.8)(graphql@16.10.0)(utf-8-validate@5.0.10) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) '@whatwg-node/fetch': 0.8.8 chalk: 4.1.2 cosmiconfig: 8.3.6(typescript@5.4.5) debounce: 1.2.1 detect-indent: 6.1.0 - graphql: 16.9.0 - graphql-config: 5.1.2(@types/node@20.3.2)(bufferutil@4.0.8)(graphql@16.9.0)(typescript@5.4.5)(utf-8-validate@5.0.10) + graphql: 16.10.0 + graphql-config: 5.1.2(@types/node@20.3.2)(bufferutil@4.0.8)(graphql@16.10.0)(typescript@5.4.5)(utf-8-validate@5.0.10) inquirer: 8.2.6 is-glob: 4.0.3 jiti: 1.21.6 @@ -14202,218 +14202,218 @@ snapshots: - typescript - utf-8-validate - '@graphql-codegen/client-preset@4.3.3(graphql@16.9.0)': + '@graphql-codegen/client-preset@4.3.3(graphql@16.10.0)': dependencies: '@babel/helper-plugin-utils': 7.24.8 '@babel/template': 7.25.0 - '@graphql-codegen/add': 5.0.3(graphql@16.9.0) - '@graphql-codegen/gql-tag-operations': 4.0.9(graphql@16.9.0) - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) - '@graphql-codegen/typed-document-node': 5.0.9(graphql@16.9.0) - '@graphql-codegen/typescript': 4.0.9(graphql@16.9.0) - '@graphql-codegen/typescript-operations': 4.2.3(graphql@16.9.0) - '@graphql-codegen/visitor-plugin-common': 5.3.1(graphql@16.9.0) - '@graphql-tools/documents': 1.0.1(graphql@16.9.0) - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0) - graphql: 16.9.0 + '@graphql-codegen/add': 5.0.3(graphql@16.10.0) + '@graphql-codegen/gql-tag-operations': 4.0.9(graphql@16.10.0) + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.10.0) + '@graphql-codegen/typed-document-node': 5.0.9(graphql@16.10.0) + '@graphql-codegen/typescript': 4.0.9(graphql@16.10.0) + '@graphql-codegen/typescript-operations': 4.2.3(graphql@16.10.0) + '@graphql-codegen/visitor-plugin-common': 5.3.1(graphql@16.10.0) + '@graphql-tools/documents': 1.0.1(graphql@16.10.0) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0) + graphql: 16.10.0 tslib: 2.6.2 transitivePeerDependencies: - encoding - supports-color - '@graphql-codegen/core@4.0.2(graphql@16.9.0)': + '@graphql-codegen/core@4.0.2(graphql@16.10.0)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) - '@graphql-tools/schema': 10.0.6(graphql@16.9.0) - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) - graphql: 16.9.0 + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.10.0) + '@graphql-tools/schema': 10.0.6(graphql@16.10.0) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) + graphql: 16.10.0 tslib: 2.6.2 - '@graphql-codegen/gql-tag-operations@4.0.9(graphql@16.9.0)': + '@graphql-codegen/gql-tag-operations@4.0.9(graphql@16.10.0)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) - '@graphql-codegen/visitor-plugin-common': 5.3.1(graphql@16.9.0) - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.10.0) + '@graphql-codegen/visitor-plugin-common': 5.3.1(graphql@16.10.0) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) auto-bind: 4.0.0 - graphql: 16.9.0 + graphql: 16.10.0 tslib: 2.6.2 transitivePeerDependencies: - encoding - supports-color - '@graphql-codegen/plugin-helpers@2.7.2(graphql@16.9.0)': + '@graphql-codegen/plugin-helpers@2.7.2(graphql@16.10.0)': dependencies: - '@graphql-tools/utils': 8.13.1(graphql@16.9.0) + '@graphql-tools/utils': 8.13.1(graphql@16.10.0) change-case-all: 1.0.14 common-tags: 1.8.2 - graphql: 16.9.0 + graphql: 16.10.0 import-from: 4.0.0 lodash: 4.17.21 tslib: 2.4.1 - '@graphql-codegen/plugin-helpers@5.0.4(graphql@16.9.0)': + '@graphql-codegen/plugin-helpers@5.0.4(graphql@16.10.0)': dependencies: - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) change-case-all: 1.0.15 common-tags: 1.8.2 - graphql: 16.9.0 + graphql: 16.10.0 import-from: 4.0.0 lodash: 4.17.21 tslib: 2.6.2 - '@graphql-codegen/schema-ast@4.1.0(graphql@16.9.0)': + '@graphql-codegen/schema-ast@4.1.0(graphql@16.10.0)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) - graphql: 16.9.0 + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.10.0) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) + graphql: 16.10.0 tslib: 2.6.2 - '@graphql-codegen/typed-document-node@5.0.9(graphql@16.9.0)': + '@graphql-codegen/typed-document-node@5.0.9(graphql@16.10.0)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) - '@graphql-codegen/visitor-plugin-common': 5.3.1(graphql@16.9.0) + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.10.0) + '@graphql-codegen/visitor-plugin-common': 5.3.1(graphql@16.10.0) auto-bind: 4.0.0 change-case-all: 1.0.15 - graphql: 16.9.0 + graphql: 16.10.0 tslib: 2.6.2 transitivePeerDependencies: - encoding - supports-color - '@graphql-codegen/typescript-document-nodes@4.0.9(graphql@16.9.0)': + '@graphql-codegen/typescript-document-nodes@4.0.9(graphql@16.10.0)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) - '@graphql-codegen/visitor-plugin-common': 5.3.1(graphql@16.9.0) + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.10.0) + '@graphql-codegen/visitor-plugin-common': 5.3.1(graphql@16.10.0) auto-bind: 4.0.0 - graphql: 16.9.0 + graphql: 16.10.0 tslib: 2.6.2 transitivePeerDependencies: - encoding - supports-color - '@graphql-codegen/typescript-msw@1.1.6(graphql@16.9.0)': + '@graphql-codegen/typescript-msw@1.1.6(graphql@16.10.0)': dependencies: - '@graphql-codegen/plugin-helpers': 2.7.2(graphql@16.9.0) - '@graphql-codegen/visitor-plugin-common': 2.13.1(graphql@16.9.0) + '@graphql-codegen/plugin-helpers': 2.7.2(graphql@16.10.0) + '@graphql-codegen/visitor-plugin-common': 2.13.1(graphql@16.10.0) auto-bind: 4.0.0 change-case-all: 1.0.14 - graphql: 16.9.0 + graphql: 16.10.0 tslib: 2.4.1 transitivePeerDependencies: - encoding - supports-color - '@graphql-codegen/typescript-operations@4.2.3(graphql@16.9.0)': + '@graphql-codegen/typescript-operations@4.2.3(graphql@16.10.0)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) - '@graphql-codegen/typescript': 4.0.9(graphql@16.9.0) - '@graphql-codegen/visitor-plugin-common': 5.3.1(graphql@16.9.0) + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.10.0) + '@graphql-codegen/typescript': 4.0.9(graphql@16.10.0) + '@graphql-codegen/visitor-plugin-common': 5.3.1(graphql@16.10.0) auto-bind: 4.0.0 - graphql: 16.9.0 + graphql: 16.10.0 tslib: 2.6.2 transitivePeerDependencies: - encoding - supports-color - '@graphql-codegen/typescript@4.0.9(graphql@16.9.0)': + '@graphql-codegen/typescript@4.0.9(graphql@16.10.0)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) - '@graphql-codegen/schema-ast': 4.1.0(graphql@16.9.0) - '@graphql-codegen/visitor-plugin-common': 5.3.1(graphql@16.9.0) + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.10.0) + '@graphql-codegen/schema-ast': 4.1.0(graphql@16.10.0) + '@graphql-codegen/visitor-plugin-common': 5.3.1(graphql@16.10.0) auto-bind: 4.0.0 - graphql: 16.9.0 + graphql: 16.10.0 tslib: 2.6.2 transitivePeerDependencies: - encoding - supports-color - '@graphql-codegen/visitor-plugin-common@2.13.1(graphql@16.9.0)': + '@graphql-codegen/visitor-plugin-common@2.13.1(graphql@16.10.0)': dependencies: - '@graphql-codegen/plugin-helpers': 2.7.2(graphql@16.9.0) - '@graphql-tools/optimize': 1.4.0(graphql@16.9.0) - '@graphql-tools/relay-operation-optimizer': 6.5.18(graphql@16.9.0) - '@graphql-tools/utils': 8.13.1(graphql@16.9.0) + '@graphql-codegen/plugin-helpers': 2.7.2(graphql@16.10.0) + '@graphql-tools/optimize': 1.4.0(graphql@16.10.0) + '@graphql-tools/relay-operation-optimizer': 6.5.18(graphql@16.10.0) + '@graphql-tools/utils': 8.13.1(graphql@16.10.0) auto-bind: 4.0.0 change-case-all: 1.0.14 dependency-graph: 0.11.0 - graphql: 16.9.0 - graphql-tag: 2.12.6(graphql@16.9.0) + graphql: 16.10.0 + graphql-tag: 2.12.6(graphql@16.10.0) parse-filepath: 1.0.2 tslib: 2.4.1 transitivePeerDependencies: - encoding - supports-color - '@graphql-codegen/visitor-plugin-common@5.3.1(graphql@16.9.0)': + '@graphql-codegen/visitor-plugin-common@5.3.1(graphql@16.10.0)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) - '@graphql-tools/optimize': 2.0.0(graphql@16.9.0) - '@graphql-tools/relay-operation-optimizer': 7.0.1(graphql@16.9.0) - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.10.0) + '@graphql-tools/optimize': 2.0.0(graphql@16.10.0) + '@graphql-tools/relay-operation-optimizer': 7.0.1(graphql@16.10.0) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 0.11.0 - graphql: 16.9.0 - graphql-tag: 2.12.6(graphql@16.9.0) + graphql: 16.10.0 + graphql-tag: 2.12.6(graphql@16.10.0) parse-filepath: 1.0.2 tslib: 2.6.2 transitivePeerDependencies: - encoding - supports-color - '@graphql-tools/apollo-engine-loader@8.0.1(graphql@16.9.0)': + '@graphql-tools/apollo-engine-loader@8.0.1(graphql@16.10.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) '@whatwg-node/fetch': 0.9.21 - graphql: 16.9.0 + graphql: 16.10.0 tslib: 2.7.0 transitivePeerDependencies: - encoding - '@graphql-tools/batch-execute@9.0.4(graphql@16.9.0)': + '@graphql-tools/batch-execute@9.0.4(graphql@16.10.0)': dependencies: - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) dataloader: 2.2.2 - graphql: 16.9.0 + graphql: 16.10.0 tslib: 2.8.1 value-or-promise: 1.0.12 - '@graphql-tools/code-file-loader@8.1.3(graphql@16.9.0)': + '@graphql-tools/code-file-loader@8.1.3(graphql@16.10.0)': dependencies: - '@graphql-tools/graphql-tag-pluck': 8.3.2(graphql@16.9.0) - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) + '@graphql-tools/graphql-tag-pluck': 8.3.2(graphql@16.10.0) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) globby: 11.1.0 - graphql: 16.9.0 + graphql: 16.10.0 tslib: 2.7.0 unixify: 1.0.0 transitivePeerDependencies: - supports-color - '@graphql-tools/delegate@10.0.21(graphql@16.9.0)': + '@graphql-tools/delegate@10.0.21(graphql@16.10.0)': dependencies: - '@graphql-tools/batch-execute': 9.0.4(graphql@16.9.0) - '@graphql-tools/executor': 1.3.1(graphql@16.9.0) - '@graphql-tools/schema': 10.0.6(graphql@16.9.0) - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) + '@graphql-tools/batch-execute': 9.0.4(graphql@16.10.0) + '@graphql-tools/executor': 1.3.1(graphql@16.10.0) + '@graphql-tools/schema': 10.0.6(graphql@16.10.0) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) '@repeaterjs/repeater': 3.0.6 dataloader: 2.2.2 - graphql: 16.9.0 + graphql: 16.10.0 tslib: 2.8.1 - '@graphql-tools/documents@1.0.1(graphql@16.9.0)': + '@graphql-tools/documents@1.0.1(graphql@16.10.0)': dependencies: - graphql: 16.9.0 + graphql: 16.10.0 lodash.sortby: 4.7.0 tslib: 2.7.0 - '@graphql-tools/executor-graphql-ws@1.2.0(bufferutil@4.0.8)(graphql@16.9.0)(utf-8-validate@5.0.10)': + '@graphql-tools/executor-graphql-ws@1.2.0(bufferutil@4.0.8)(graphql@16.10.0)(utf-8-validate@5.0.10)': dependencies: - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) '@types/ws': 8.5.12 - graphql: 16.9.0 - graphql-ws: 5.16.0(graphql@16.9.0) + graphql: 16.10.0 + graphql-ws: 5.16.0(graphql@16.10.0) isomorphic-ws: 5.0.0(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) tslib: 2.8.1 ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -14421,24 +14421,24 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.1.6(@types/node@20.3.2)(graphql@16.9.0)': + '@graphql-tools/executor-http@1.1.6(@types/node@20.3.2)(graphql@16.10.0)': dependencies: - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.9.21 extract-files: 11.0.0 - graphql: 16.9.0 + graphql: 16.10.0 meros: 1.3.0(@types/node@20.3.2) tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: - '@types/node' - '@graphql-tools/executor-legacy-ws@1.1.0(bufferutil@4.0.8)(graphql@16.9.0)(utf-8-validate@5.0.10)': + '@graphql-tools/executor-legacy-ws@1.1.0(bufferutil@4.0.8)(graphql@16.10.0)(utf-8-validate@5.0.10)': dependencies: - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) '@types/ws': 8.5.12 - graphql: 16.9.0 + graphql: 16.10.0 isomorphic-ws: 5.0.0(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) tslib: 2.8.1 ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -14446,20 +14446,20 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor@1.3.1(graphql@16.9.0)': + '@graphql-tools/executor@1.3.1(graphql@16.10.0)': dependencies: - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0) '@repeaterjs/repeater': 3.0.6 - graphql: 16.9.0 + graphql: 16.10.0 tslib: 2.8.1 value-or-promise: 1.0.12 - '@graphql-tools/git-loader@8.0.7(graphql@16.9.0)': + '@graphql-tools/git-loader@8.0.7(graphql@16.10.0)': dependencies: - '@graphql-tools/graphql-tag-pluck': 8.3.2(graphql@16.9.0) - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) - graphql: 16.9.0 + '@graphql-tools/graphql-tag-pluck': 8.3.2(graphql@16.10.0) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) + graphql: 16.10.0 is-glob: 4.0.3 micromatch: 4.0.5 tslib: 2.7.0 @@ -14467,14 +14467,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.1(@types/node@20.3.2)(graphql@16.9.0)': + '@graphql-tools/github-loader@8.0.1(@types/node@20.3.2)(graphql@16.10.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.1.6(@types/node@20.3.2)(graphql@16.9.0) - '@graphql-tools/graphql-tag-pluck': 8.3.2(graphql@16.9.0) - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) + '@graphql-tools/executor-http': 1.1.6(@types/node@20.3.2)(graphql@16.10.0) + '@graphql-tools/graphql-tag-pluck': 8.3.2(graphql@16.10.0) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) '@whatwg-node/fetch': 0.9.21 - graphql: 16.9.0 + graphql: 16.10.0 tslib: 2.7.0 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -14482,78 +14482,78 @@ snapshots: - encoding - supports-color - '@graphql-tools/graphql-file-loader@8.0.1(graphql@16.9.0)': + '@graphql-tools/graphql-file-loader@8.0.1(graphql@16.10.0)': dependencies: - '@graphql-tools/import': 7.0.1(graphql@16.9.0) - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) + '@graphql-tools/import': 7.0.1(graphql@16.10.0) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) globby: 11.1.0 - graphql: 16.9.0 + graphql: 16.10.0 tslib: 2.7.0 unixify: 1.0.0 - '@graphql-tools/graphql-tag-pluck@8.3.2(graphql@16.9.0)': + '@graphql-tools/graphql-tag-pluck@8.3.2(graphql@16.10.0)': dependencies: '@babel/core': 7.25.2 '@babel/parser': 7.25.6 '@babel/plugin-syntax-import-assertions': 7.25.6(@babel/core@7.25.2) '@babel/traverse': 7.25.6 '@babel/types': 7.25.6 - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) - graphql: 16.9.0 + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) + graphql: 16.10.0 tslib: 2.8.1 transitivePeerDependencies: - supports-color - '@graphql-tools/import@7.0.1(graphql@16.9.0)': + '@graphql-tools/import@7.0.1(graphql@16.10.0)': dependencies: - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) - graphql: 16.9.0 + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) + graphql: 16.10.0 resolve-from: 5.0.0 tslib: 2.8.1 - '@graphql-tools/json-file-loader@8.0.1(graphql@16.9.0)': + '@graphql-tools/json-file-loader@8.0.1(graphql@16.10.0)': dependencies: - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) globby: 11.1.0 - graphql: 16.9.0 + graphql: 16.10.0 tslib: 2.7.0 unixify: 1.0.0 - '@graphql-tools/load@8.0.2(graphql@16.9.0)': + '@graphql-tools/load@8.0.2(graphql@16.10.0)': dependencies: - '@graphql-tools/schema': 10.0.6(graphql@16.9.0) - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) - graphql: 16.9.0 + '@graphql-tools/schema': 10.0.6(graphql@16.10.0) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) + graphql: 16.10.0 p-limit: 3.1.0 tslib: 2.7.0 - '@graphql-tools/merge@9.0.7(graphql@16.9.0)': + '@graphql-tools/merge@9.0.7(graphql@16.10.0)': dependencies: - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) - graphql: 16.9.0 + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) + graphql: 16.10.0 tslib: 2.8.1 - '@graphql-tools/optimize@1.4.0(graphql@16.9.0)': + '@graphql-tools/optimize@1.4.0(graphql@16.10.0)': dependencies: - graphql: 16.9.0 + graphql: 16.10.0 tslib: 2.8.1 - '@graphql-tools/optimize@2.0.0(graphql@16.9.0)': + '@graphql-tools/optimize@2.0.0(graphql@16.10.0)': dependencies: - graphql: 16.9.0 + graphql: 16.10.0 tslib: 2.8.1 - '@graphql-tools/prisma-loader@8.0.4(@types/node@20.3.2)(bufferutil@4.0.8)(graphql@16.9.0)(utf-8-validate@5.0.10)': + '@graphql-tools/prisma-loader@8.0.4(@types/node@20.3.2)(bufferutil@4.0.8)(graphql@16.10.0)(utf-8-validate@5.0.10)': dependencies: - '@graphql-tools/url-loader': 8.0.2(@types/node@20.3.2)(bufferutil@4.0.8)(graphql@16.9.0)(utf-8-validate@5.0.10) - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) + '@graphql-tools/url-loader': 8.0.2(@types/node@20.3.2)(bufferutil@4.0.8)(graphql@16.10.0)(utf-8-validate@5.0.10) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) '@types/js-yaml': 4.0.9 '@whatwg-node/fetch': 0.9.21 chalk: 4.1.2 debug: 4.3.7 dotenv: 16.4.5 - graphql: 16.9.0 - graphql-request: 6.1.0(graphql@16.9.0) + graphql: 16.10.0 + graphql-request: 6.1.0(graphql@16.10.0) http-proxy-agent: 7.0.0 https-proxy-agent: 7.0.1 jose: 5.9.2 @@ -14569,46 +14569,46 @@ snapshots: - supports-color - utf-8-validate - '@graphql-tools/relay-operation-optimizer@6.5.18(graphql@16.9.0)': + '@graphql-tools/relay-operation-optimizer@6.5.18(graphql@16.10.0)': dependencies: - '@ardatan/relay-compiler': 12.0.0(graphql@16.9.0) - '@graphql-tools/utils': 9.2.1(graphql@16.9.0) - graphql: 16.9.0 + '@ardatan/relay-compiler': 12.0.0(graphql@16.10.0) + '@graphql-tools/utils': 9.2.1(graphql@16.10.0) + graphql: 16.10.0 tslib: 2.8.1 transitivePeerDependencies: - encoding - supports-color - '@graphql-tools/relay-operation-optimizer@7.0.1(graphql@16.9.0)': + '@graphql-tools/relay-operation-optimizer@7.0.1(graphql@16.10.0)': dependencies: - '@ardatan/relay-compiler': 12.0.0(graphql@16.9.0) - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) - graphql: 16.9.0 + '@ardatan/relay-compiler': 12.0.0(graphql@16.10.0) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) + graphql: 16.10.0 tslib: 2.8.1 transitivePeerDependencies: - encoding - supports-color - '@graphql-tools/schema@10.0.6(graphql@16.9.0)': + '@graphql-tools/schema@10.0.6(graphql@16.10.0)': dependencies: - '@graphql-tools/merge': 9.0.7(graphql@16.9.0) - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) - graphql: 16.9.0 + '@graphql-tools/merge': 9.0.7(graphql@16.10.0) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) + graphql: 16.10.0 tslib: 2.8.1 value-or-promise: 1.0.12 - '@graphql-tools/url-loader@8.0.2(@types/node@20.3.2)(bufferutil@4.0.8)(graphql@16.9.0)(utf-8-validate@5.0.10)': + '@graphql-tools/url-loader@8.0.2(@types/node@20.3.2)(bufferutil@4.0.8)(graphql@16.10.0)(utf-8-validate@5.0.10)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/delegate': 10.0.21(graphql@16.9.0) - '@graphql-tools/executor-graphql-ws': 1.2.0(bufferutil@4.0.8)(graphql@16.9.0)(utf-8-validate@5.0.10) - '@graphql-tools/executor-http': 1.1.6(@types/node@20.3.2)(graphql@16.9.0) - '@graphql-tools/executor-legacy-ws': 1.1.0(bufferutil@4.0.8)(graphql@16.9.0)(utf-8-validate@5.0.10) - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) - '@graphql-tools/wrap': 10.0.5(graphql@16.9.0) + '@graphql-tools/delegate': 10.0.21(graphql@16.10.0) + '@graphql-tools/executor-graphql-ws': 1.2.0(bufferutil@4.0.8)(graphql@16.10.0)(utf-8-validate@5.0.10) + '@graphql-tools/executor-http': 1.1.6(@types/node@20.3.2)(graphql@16.10.0) + '@graphql-tools/executor-legacy-ws': 1.1.0(bufferutil@4.0.8)(graphql@16.10.0)(utf-8-validate@5.0.10) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) + '@graphql-tools/wrap': 10.0.5(graphql@16.10.0) '@types/ws': 8.5.12 '@whatwg-node/fetch': 0.9.21 - graphql: 16.9.0 + graphql: 16.10.0 isomorphic-ws: 5.0.0(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) tslib: 2.7.0 value-or-promise: 1.0.12 @@ -14619,37 +14619,37 @@ snapshots: - encoding - utf-8-validate - '@graphql-tools/utils@10.5.4(graphql@16.9.0)': + '@graphql-tools/utils@10.5.4(graphql@16.10.0)': dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0) cross-inspect: 1.0.1 dset: 3.1.4 - graphql: 16.9.0 + graphql: 16.10.0 tslib: 2.7.0 - '@graphql-tools/utils@8.13.1(graphql@16.9.0)': + '@graphql-tools/utils@8.13.1(graphql@16.10.0)': dependencies: - graphql: 16.9.0 + graphql: 16.10.0 tslib: 2.8.1 - '@graphql-tools/utils@9.2.1(graphql@16.9.0)': + '@graphql-tools/utils@9.2.1(graphql@16.10.0)': dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0) - graphql: 16.9.0 + '@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0) + graphql: 16.10.0 tslib: 2.8.1 - '@graphql-tools/wrap@10.0.5(graphql@16.9.0)': + '@graphql-tools/wrap@10.0.5(graphql@16.10.0)': dependencies: - '@graphql-tools/delegate': 10.0.21(graphql@16.9.0) - '@graphql-tools/schema': 10.0.6(graphql@16.9.0) - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) - graphql: 16.9.0 + '@graphql-tools/delegate': 10.0.21(graphql@16.10.0) + '@graphql-tools/schema': 10.0.6(graphql@16.10.0) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) + graphql: 16.10.0 tslib: 2.8.1 value-or-promise: 1.0.12 - '@graphql-typed-document-node/core@3.2.0(graphql@16.9.0)': + '@graphql-typed-document-node/core@3.2.0(graphql@16.10.0)': dependencies: - graphql: 16.9.0 + graphql: 16.10.0 '@hapi/hoek@9.3.0': {} @@ -19277,7 +19277,7 @@ snapshots: debug: 4.3.7 enhanced-resolve: 5.17.1 eslint: 8.43.0 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.17.0(eslint@8.43.0)(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0) + eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.17.0(eslint@8.43.0)(typescript@5.3.3))(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0) eslint-plugin-import: 2.29.0(@typescript-eslint/parser@7.1.0(eslint@8.43.0)(typescript@5.3.3))(eslint@8.43.0) fast-glob: 3.3.2 get-tsconfig: 4.7.2 @@ -19289,13 +19289,12 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-module-utils@2.8.0(@typescript-eslint/parser@6.17.0(eslint@8.43.0)(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0): + eslint-module-utils@2.8.0(@typescript-eslint/parser@6.17.0(eslint@8.43.0)(typescript@5.3.3))(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0): dependencies: debug: 3.2.7 optionalDependencies: '@typescript-eslint/parser': 6.17.0(eslint@8.43.0)(typescript@5.3.3) eslint: 8.43.0 - eslint-import-resolver-node: 0.3.9 eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.17.0(eslint@8.43.0)(typescript@5.3.3))(eslint-plugin-import@2.29.0)(eslint@8.43.0) transitivePeerDependencies: - supports-color @@ -20028,16 +20027,16 @@ snapshots: graphemer@1.4.0: {} - graphql-config@5.1.2(@types/node@20.3.2)(bufferutil@4.0.8)(graphql@16.9.0)(typescript@5.4.5)(utf-8-validate@5.0.10): + graphql-config@5.1.2(@types/node@20.3.2)(bufferutil@4.0.8)(graphql@16.10.0)(typescript@5.4.5)(utf-8-validate@5.0.10): dependencies: - '@graphql-tools/graphql-file-loader': 8.0.1(graphql@16.9.0) - '@graphql-tools/json-file-loader': 8.0.1(graphql@16.9.0) - '@graphql-tools/load': 8.0.2(graphql@16.9.0) - '@graphql-tools/merge': 9.0.7(graphql@16.9.0) - '@graphql-tools/url-loader': 8.0.2(@types/node@20.3.2)(bufferutil@4.0.8)(graphql@16.9.0)(utf-8-validate@5.0.10) - '@graphql-tools/utils': 10.5.4(graphql@16.9.0) + '@graphql-tools/graphql-file-loader': 8.0.1(graphql@16.10.0) + '@graphql-tools/json-file-loader': 8.0.1(graphql@16.10.0) + '@graphql-tools/load': 8.0.2(graphql@16.10.0) + '@graphql-tools/merge': 9.0.7(graphql@16.10.0) + '@graphql-tools/url-loader': 8.0.2(@types/node@20.3.2)(bufferutil@4.0.8)(graphql@16.10.0)(utf-8-validate@5.0.10) + '@graphql-tools/utils': 10.5.4(graphql@16.10.0) cosmiconfig: 9.0.0(typescript@5.4.5) - graphql: 16.9.0 + graphql: 16.10.0 jiti: 1.21.6 minimatch: 9.0.5 string-env-interpolation: 1.0.1 @@ -20049,24 +20048,24 @@ snapshots: - typescript - utf-8-validate - graphql-request@6.1.0(graphql@16.9.0): + graphql-request@6.1.0(graphql@16.10.0): dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0) cross-fetch: 3.1.8 - graphql: 16.9.0 + graphql: 16.10.0 transitivePeerDependencies: - encoding - graphql-tag@2.12.6(graphql@16.9.0): + graphql-tag@2.12.6(graphql@16.10.0): dependencies: - graphql: 16.9.0 + graphql: 16.10.0 tslib: 2.7.0 - graphql-ws@5.16.0(graphql@16.9.0): + graphql-ws@5.16.0(graphql@16.10.0): dependencies: - graphql: 16.9.0 + graphql: 16.10.0 - graphql@16.9.0: {} + graphql@16.10.0: {} h3@1.12.0: dependencies: @@ -21358,7 +21357,7 @@ snapshots: '@types/statuses': 2.0.5 chalk: 4.1.2 chokidar: 3.6.0 - graphql: 16.9.0 + graphql: 16.10.0 headers-polyfill: 4.0.3 inquirer: 8.2.6 is-node-process: 1.2.0