Skip to content

Commit

Permalink
fix(deps): update graphqlcodegenerator monorepo (#10856)
Browse files Browse the repository at this point in the history
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@graphql-codegen/client-preset](https://togithub.com/dotansimha/graphql-code-generator)
([source](https://togithub.com/dotansimha/graphql-code-generator/tree/HEAD/packages/presets/client))
| [`4.2.5` ->
`4.3.0`](https://renovatebot.com/diffs/npm/@graphql-codegen%2fclient-preset/4.2.5/4.3.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@graphql-codegen%2fclient-preset/4.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@graphql-codegen%2fclient-preset/4.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@graphql-codegen%2fclient-preset/4.2.5/4.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@graphql-codegen%2fclient-preset/4.2.5/4.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@graphql-codegen/typed-document-node](https://togithub.com/dotansimha/graphql-code-generator)
([source](https://togithub.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/typescript/typed-document-node))
| [`5.0.6` ->
`5.0.7`](https://renovatebot.com/diffs/npm/@graphql-codegen%2ftyped-document-node/5.0.6/5.0.7)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@graphql-codegen%2ftyped-document-node/5.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@graphql-codegen%2ftyped-document-node/5.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@graphql-codegen%2ftyped-document-node/5.0.6/5.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@graphql-codegen%2ftyped-document-node/5.0.6/5.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>dotansimha/graphql-code-generator
(@&#8203;graphql-codegen/client-preset)</summary>

###
[`v4.3.0`](https://togithub.com/dotansimha/graphql-code-generator/blob/HEAD/packages/presets/client/CHANGELOG.md#430)

[Compare
Source](https://togithub.com/dotansimha/graphql-code-generator/compare/@graphql-codegen/[email protected]...@graphql-codegen/[email protected])

##### Minor Changes

-
[#&#8203;10001](https://togithub.com/dotansimha/graphql-code-generator/pull/10001)
[`1be6e65`](https://togithub.com/dotansimha/graphql-code-generator/commit/1be6e65943b85162f3d465189d0a6df4b962df5d)
Thanks [@&#8203;n1ru4l](https://togithub.com/n1ru4l)! - Support
discriminating `null` and `undefined` within the `useFragment` function.

    ```ts
function MyComponent(props: FragmentType<typeof MyFragment> | null) {
      const data = useFragment(MyFragment, props);
      // data is `MyFragment | null`
    }

function MyComponent(props: FragmentType<typeof MyFragment> | undefined)
{
      const data = useFragment(MyFragment, props);
      // data is `MyFragment | undefined`
    }
    ```

Before, the returned type from `useFragment` was always `TType | null |
undefined`.

-
[#&#8203;9804](https://togithub.com/dotansimha/graphql-code-generator/pull/9804)
[`5e594ef`](https://togithub.com/dotansimha/graphql-code-generator/commit/5e594ef8f39b9e1036b6bcaa977f914a66fec03e)
Thanks [@&#8203;rachel-church](https://togithub.com/rachel-church)! -
Preserving `Array<T>` or `ReadonlyArray<T>` in `useFragment()` return
type.

##### Patch Changes

-
[#&#8203;9996](https://togithub.com/dotansimha/graphql-code-generator/pull/9996)
[`99f449c`](https://togithub.com/dotansimha/graphql-code-generator/commit/99f449c8dcd645d49eda26e4ddfcb8ad7056ecbf)
Thanks [@&#8203;nahn20](https://togithub.com/nahn20)! - Added
configuration to allow for custom hash functions for persisted documents
in the client preset

##### Example

```ts filename="codegen.ts" {10-12}
import { type CodegenConfig } from '@&#8203;graphql-codegen/cli';

const config: CodegenConfig = {
  schema: 'schema.graphql',
  documents: ['src/**/*.tsx'],
  generates: {
    './src/gql/': {
      preset: 'client',
      presetConfig: {
        persistedDocuments: {
          hashAlgorithm: operation => {
            const shasum = crypto.createHash('sha512');
            shasum.update(operation);
            return shasum.digest('hex');
          },
        },
      },
    },
  },
};
```

- Updated dependencies
\[[`5501c62`](https://togithub.com/dotansimha/graphql-code-generator/commit/5501c621f19eb5ef8e703a21f7367e07e41f199c)]:
-
[@&#8203;graphql-codegen/add](https://togithub.com/graphql-codegen/add)[@&#8203;5](https://togithub.com/5).0.3

###
[`v4.2.6`](https://togithub.com/dotansimha/graphql-code-generator/blob/HEAD/packages/presets/client/CHANGELOG.md#426)

[Compare
Source](https://togithub.com/dotansimha/graphql-code-generator/compare/@graphql-codegen/[email protected]...@graphql-codegen/[email protected])

##### Patch Changes

- Updated dependencies
\[[`dfc5310`](https://togithub.com/dotansimha/graphql-code-generator/commit/dfc5310ab476bed6deaefc608f311ff368722f7e),
[`156cc2b`](https://togithub.com/dotansimha/graphql-code-generator/commit/156cc2b9a2a5129beba121cfa987b04e29899431),
[`dfc5310`](https://togithub.com/dotansimha/graphql-code-generator/commit/dfc5310ab476bed6deaefc608f311ff368722f7e),
[`b49457b`](https://togithub.com/dotansimha/graphql-code-generator/commit/b49457b5f29328d2dc23c642788a2e697cb8966e)]:
-
[@&#8203;graphql-codegen/plugin-helpers](https://togithub.com/graphql-codegen/plugin-helpers)[@&#8203;5](https://togithub.com/5).0.4
-
[@&#8203;graphql-codegen/visitor-plugin-common](https://togithub.com/graphql-codegen/visitor-plugin-common)[@&#8203;5](https://togithub.com/5).2.0
-
[@&#8203;graphql-codegen/gql-tag-operations](https://togithub.com/graphql-codegen/gql-tag-operations)[@&#8203;4](https://togithub.com/4).0.7
-
[@&#8203;graphql-codegen/typescript-operations](https://togithub.com/graphql-codegen/typescript-operations)[@&#8203;4](https://togithub.com/4).2.1
-
[@&#8203;graphql-codegen/typed-document-node](https://togithub.com/graphql-codegen/typed-document-node)[@&#8203;5](https://togithub.com/5).0.7
-
[@&#8203;graphql-codegen/typescript](https://togithub.com/graphql-codegen/typescript)[@&#8203;4](https://togithub.com/4).0.7

</details>

<details>
<summary>dotansimha/graphql-code-generator
(@&#8203;graphql-codegen/typed-document-node)</summary>

###
[`v5.0.7`](https://togithub.com/dotansimha/graphql-code-generator/blob/HEAD/packages/plugins/typescript/typed-document-node/CHANGELOG.md#507)

[Compare
Source](https://togithub.com/dotansimha/graphql-code-generator/compare/@graphql-codegen/[email protected]...@graphql-codegen/[email protected])

##### Patch Changes

- Updated dependencies
\[[`dfc5310`](https://togithub.com/dotansimha/graphql-code-generator/commit/dfc5310ab476bed6deaefc608f311ff368722f7e),
[`156cc2b`](https://togithub.com/dotansimha/graphql-code-generator/commit/156cc2b9a2a5129beba121cfa987b04e29899431),
[`dfc5310`](https://togithub.com/dotansimha/graphql-code-generator/commit/dfc5310ab476bed6deaefc608f311ff368722f7e),
[`b49457b`](https://togithub.com/dotansimha/graphql-code-generator/commit/b49457b5f29328d2dc23c642788a2e697cb8966e)]:
-
[@&#8203;graphql-codegen/plugin-helpers](https://togithub.com/graphql-codegen/plugin-helpers)[@&#8203;5](https://togithub.com/5).0.4
-
[@&#8203;graphql-codegen/visitor-plugin-common](https://togithub.com/graphql-codegen/visitor-plugin-common)[@&#8203;5](https://togithub.com/5).2.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/redwoodjs/redwood).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MTAuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQxMy4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jun 24, 2024
1 parent a3879f3 commit efcc7bb
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 53 deletions.
4 changes: 2 additions & 2 deletions packages/internal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@
"@babel/traverse": "^7.22.20",
"@graphql-codegen/add": "4.0.1",
"@graphql-codegen/cli": "3.3.1",
"@graphql-codegen/client-preset": "4.2.5",
"@graphql-codegen/client-preset": "4.3.0",
"@graphql-codegen/core": "3.1.0",
"@graphql-codegen/fragment-matcher": "5.0.2",
"@graphql-codegen/schema-ast": "3.0.1",
"@graphql-codegen/typed-document-node": "5.0.6",
"@graphql-codegen/typed-document-node": "5.0.7",
"@graphql-codegen/typescript": "3.0.4",
"@graphql-codegen/typescript-operations": "3.0.4",
"@graphql-codegen/typescript-react-apollo": "3.3.7",
Expand Down
102 changes: 51 additions & 51 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3844,15 +3844,15 @@ __metadata:
languageName: node
linkType: hard

"@graphql-codegen/add@npm:^5.0.2":
version: 5.0.2
resolution: "@graphql-codegen/add@npm:5.0.2"
"@graphql-codegen/add@npm:^5.0.3":
version: 5.0.3
resolution: "@graphql-codegen/add@npm:5.0.3"
dependencies:
"@graphql-codegen/plugin-helpers": "npm:^5.0.3"
tslib: "npm:~2.6.0"
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
checksum: 10c0/667bacb3c4a1f1e041b54d96e802e89e057f20a4129fc1dd3ab72848f2531e8d74d415607d581630073bbc34831c8e6da4f9d669cb761ccc0cc4102c86eae5d0
checksum: 10c0/2ddb8b57a0b445f109b1d8e5611e838ff590dc3c6c210ba1c31e3967e6a58097bceaef79b501eace700cd6210dca0d1ef3d28519ed7b5a4f3ce6cfc8f1508c90
languageName: node
linkType: hard

Expand Down Expand Up @@ -3906,26 +3906,26 @@ __metadata:
languageName: node
linkType: hard

"@graphql-codegen/client-preset@npm:4.2.5":
version: 4.2.5
resolution: "@graphql-codegen/client-preset@npm:4.2.5"
"@graphql-codegen/client-preset@npm:4.3.0":
version: 4.3.0
resolution: "@graphql-codegen/client-preset@npm:4.3.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.20.2"
"@babel/template": "npm:^7.20.7"
"@graphql-codegen/add": "npm:^5.0.2"
"@graphql-codegen/gql-tag-operations": "npm:4.0.6"
"@graphql-codegen/plugin-helpers": "npm:^5.0.3"
"@graphql-codegen/typed-document-node": "npm:^5.0.6"
"@graphql-codegen/typescript": "npm:^4.0.6"
"@graphql-codegen/typescript-operations": "npm:^4.2.0"
"@graphql-codegen/visitor-plugin-common": "npm:^5.1.0"
"@graphql-codegen/add": "npm:^5.0.3"
"@graphql-codegen/gql-tag-operations": "npm:4.0.7"
"@graphql-codegen/plugin-helpers": "npm:^5.0.4"
"@graphql-codegen/typed-document-node": "npm:^5.0.7"
"@graphql-codegen/typescript": "npm:^4.0.7"
"@graphql-codegen/typescript-operations": "npm:^4.2.1"
"@graphql-codegen/visitor-plugin-common": "npm:^5.2.0"
"@graphql-tools/documents": "npm:^1.0.0"
"@graphql-tools/utils": "npm:^10.0.0"
"@graphql-typed-document-node/core": "npm:3.2.0"
tslib: "npm:~2.6.0"
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
checksum: 10c0/9b14edf422503d947839fa0818333c4ea4e368f7781b6ae409226747a5e7a159bfcc2f375d69aed18fe91ac72d554e93164c3c3e3d115e702e58c436b7da6c6e
checksum: 10c0/ac37744442b13daef724266763c624c57f553dae783bcacab77f48d3ac1ba8153360589d27717b5645dd4a5c3f8ee743277fbab75d9ced24a7595de012fffacf
languageName: node
linkType: hard

Expand Down Expand Up @@ -3955,18 +3955,18 @@ __metadata:
languageName: node
linkType: hard

"@graphql-codegen/gql-tag-operations@npm:4.0.6":
version: 4.0.6
resolution: "@graphql-codegen/gql-tag-operations@npm:4.0.6"
"@graphql-codegen/gql-tag-operations@npm:4.0.7":
version: 4.0.7
resolution: "@graphql-codegen/gql-tag-operations@npm:4.0.7"
dependencies:
"@graphql-codegen/plugin-helpers": "npm:^5.0.3"
"@graphql-codegen/visitor-plugin-common": "npm:5.1.0"
"@graphql-codegen/plugin-helpers": "npm:^5.0.4"
"@graphql-codegen/visitor-plugin-common": "npm:5.2.0"
"@graphql-tools/utils": "npm:^10.0.0"
auto-bind: "npm:~4.0.0"
tslib: "npm:~2.6.0"
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
checksum: 10c0/e974f167c1672e8db68ddff9bc563cfce33879cc5a8014e91d73e4968443bfc5fd60d40721d12b06eb4351e39efeb823aff1b0e71c6bd73f95594600e791143c
checksum: 10c0/ca309b51804dff67b7a46e4e60d4d29b2cb1a09477b66443216cd60f877964f469bd52b292310d00aba624e488953d5a5464c78d1dc8e50eb3d6e77ac060fb2e
languageName: node
linkType: hard

Expand Down Expand Up @@ -4002,9 +4002,9 @@ __metadata:
languageName: node
linkType: hard

"@graphql-codegen/plugin-helpers@npm:^5.0.3":
version: 5.0.3
resolution: "@graphql-codegen/plugin-helpers@npm:5.0.3"
"@graphql-codegen/plugin-helpers@npm:^5.0.3, @graphql-codegen/plugin-helpers@npm:^5.0.4":
version: 5.0.4
resolution: "@graphql-codegen/plugin-helpers@npm:5.0.4"
dependencies:
"@graphql-tools/utils": "npm:^10.0.0"
change-case-all: "npm:1.0.15"
Expand All @@ -4014,7 +4014,7 @@ __metadata:
tslib: "npm:~2.6.0"
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
checksum: 10c0/1ea0d46ccdf449f43afe8ee0222bf96769b3efdb8262688964f4eff725c43caac4caa36859bcbd6a2ba611aea2adaa6bb2e86bc1d06ec9636f11952ebe260036
checksum: 10c0/e1d7af8af8cfd5d8baa4fbf099fbe14ee45d43a2e66af38eb901348163e073a392e53cdd58aad27acf32d14da5b6a7bf06fe1daa793d99e462457f80025dec97
languageName: node
linkType: hard

Expand Down Expand Up @@ -4044,18 +4044,18 @@ __metadata:
languageName: node
linkType: hard

"@graphql-codegen/typed-document-node@npm:5.0.6, @graphql-codegen/typed-document-node@npm:^5.0.6":
version: 5.0.6
resolution: "@graphql-codegen/typed-document-node@npm:5.0.6"
"@graphql-codegen/typed-document-node@npm:5.0.7, @graphql-codegen/typed-document-node@npm:^5.0.7":
version: 5.0.7
resolution: "@graphql-codegen/typed-document-node@npm:5.0.7"
dependencies:
"@graphql-codegen/plugin-helpers": "npm:^5.0.3"
"@graphql-codegen/visitor-plugin-common": "npm:5.1.0"
"@graphql-codegen/plugin-helpers": "npm:^5.0.4"
"@graphql-codegen/visitor-plugin-common": "npm:5.2.0"
auto-bind: "npm:~4.0.0"
change-case-all: "npm:1.0.15"
tslib: "npm:~2.6.0"
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
checksum: 10c0/d4a0ab10df7f2a91b4b2bac9a8ac01c161263cb2b69053ada4f46f431e30feb7a3d82d0960d5eaeab06ce44bb2ddaabea2f487854beef077be1b669e17f3ebc0
checksum: 10c0/3ff8056e48c3436b8c44174e6195c4985643476d909d78978aa93e7dc59e35d7aa90a1bc4fdf2a198c333cf7cbe8fc1c936e247a990d5aee01475028588ee221
languageName: node
linkType: hard

Expand All @@ -4074,18 +4074,18 @@ __metadata:
languageName: node
linkType: hard

"@graphql-codegen/typescript-operations@npm:^4.2.0":
version: 4.2.0
resolution: "@graphql-codegen/typescript-operations@npm:4.2.0"
"@graphql-codegen/typescript-operations@npm:^4.2.1":
version: 4.2.1
resolution: "@graphql-codegen/typescript-operations@npm:4.2.1"
dependencies:
"@graphql-codegen/plugin-helpers": "npm:^5.0.3"
"@graphql-codegen/typescript": "npm:^4.0.6"
"@graphql-codegen/visitor-plugin-common": "npm:5.1.0"
"@graphql-codegen/plugin-helpers": "npm:^5.0.4"
"@graphql-codegen/typescript": "npm:^4.0.7"
"@graphql-codegen/visitor-plugin-common": "npm:5.2.0"
auto-bind: "npm:~4.0.0"
tslib: "npm:~2.6.0"
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
checksum: 10c0/40fdf8060a179e4403f16da1902f45332dbc3d02a7d0bda26e8901c42b9fec0cc4ca6c01d81983c2730b28ccacee3c6489039c50419fbb19eeae9cb88372719a
checksum: 10c0/f99f3fc9e2d75e7b33742f2fa0a0a08c4f59c5b1f732de6e2ba0b634b6987a777a9f3be58eb9a1e55b3106c90cdf4fef926abf7949868563c0af34a6ca258a78
languageName: node
linkType: hard

Expand Down Expand Up @@ -4136,18 +4136,18 @@ __metadata:
languageName: node
linkType: hard

"@graphql-codegen/typescript@npm:^4.0.6":
version: 4.0.6
resolution: "@graphql-codegen/typescript@npm:4.0.6"
"@graphql-codegen/typescript@npm:^4.0.7":
version: 4.0.7
resolution: "@graphql-codegen/typescript@npm:4.0.7"
dependencies:
"@graphql-codegen/plugin-helpers": "npm:^5.0.3"
"@graphql-codegen/plugin-helpers": "npm:^5.0.4"
"@graphql-codegen/schema-ast": "npm:^4.0.2"
"@graphql-codegen/visitor-plugin-common": "npm:5.1.0"
"@graphql-codegen/visitor-plugin-common": "npm:5.2.0"
auto-bind: "npm:~4.0.0"
tslib: "npm:~2.6.0"
peerDependencies:
graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
checksum: 10c0/68b6f1780d0c411e8fa1a1f62e03a2a2113fb00e51f6b09b03684e5bdefded7f320ecb78c1c8b24fe24f89a1af3362a498ed421e18168b44c9dce2d669e7c9c1
checksum: 10c0/20cc1702e7ee84866610c5327ba4bd286500357e1b7c69e7a88f78974eb0747bdea5275a8054ebecab96bca43b7119a11f5c3ab5b9340136bd31430b2c68585e
languageName: node
linkType: hard

Expand Down Expand Up @@ -4191,11 +4191,11 @@ __metadata:
languageName: node
linkType: hard

"@graphql-codegen/visitor-plugin-common@npm:5.1.0, @graphql-codegen/visitor-plugin-common@npm:^5.1.0":
version: 5.1.0
resolution: "@graphql-codegen/visitor-plugin-common@npm:5.1.0"
"@graphql-codegen/visitor-plugin-common@npm:5.2.0, @graphql-codegen/visitor-plugin-common@npm:^5.2.0":
version: 5.2.0
resolution: "@graphql-codegen/visitor-plugin-common@npm:5.2.0"
dependencies:
"@graphql-codegen/plugin-helpers": "npm:^5.0.3"
"@graphql-codegen/plugin-helpers": "npm:^5.0.4"
"@graphql-tools/optimize": "npm:^2.0.0"
"@graphql-tools/relay-operation-optimizer": "npm:^7.0.0"
"@graphql-tools/utils": "npm:^10.0.0"
Expand All @@ -4207,7 +4207,7 @@ __metadata:
tslib: "npm:~2.6.0"
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
checksum: 10c0/500b0da52c9e1aab514db3eb2481d5c780238a5382745f354779d69d17d5d2b0b9e07386690557f0c387d0634f02c7f93c71d4e228843db2c5292ac414ebc875
checksum: 10c0/86ca3f7dd68e308b014040534dff7393122974c32e14d8453ff9cf52449b168aac49fcf65c42b5788b9571528b1b948c593f16d48d0513fea9da44c2c841e9be
languageName: node
linkType: hard

Expand Down Expand Up @@ -8275,11 +8275,11 @@ __metadata:
"@babel/traverse": "npm:^7.22.20"
"@graphql-codegen/add": "npm:4.0.1"
"@graphql-codegen/cli": "npm:3.3.1"
"@graphql-codegen/client-preset": "npm:4.2.5"
"@graphql-codegen/client-preset": "npm:4.3.0"
"@graphql-codegen/core": "npm:3.1.0"
"@graphql-codegen/fragment-matcher": "npm:5.0.2"
"@graphql-codegen/schema-ast": "npm:3.0.1"
"@graphql-codegen/typed-document-node": "npm:5.0.6"
"@graphql-codegen/typed-document-node": "npm:5.0.7"
"@graphql-codegen/typescript": "npm:3.0.4"
"@graphql-codegen/typescript-operations": "npm:3.0.4"
"@graphql-codegen/typescript-react-apollo": "npm:3.3.7"
Expand Down

0 comments on commit efcc7bb

Please sign in to comment.