build(deps-dev): bump @graphql-codegen/client-preset from 4.6.4 to 4.7.0 in /frontend in the graphql-codegen group (#4162)

This commit is contained in:
Quentin Gliech
2025-03-10 10:35:24 +01:00
committed by GitHub
3 changed files with 14 additions and 10 deletions
+8 -8
View File
@@ -35,7 +35,7 @@
"@browser-logos/safari": "^2.1.0",
"@codecov/vite-plugin": "^1.9.0",
"@graphql-codegen/cli": "^5.0.5",
"@graphql-codegen/client-preset": "^4.6.4",
"@graphql-codegen/client-preset": "^4.7.0",
"@graphql-codegen/typescript-msw": "^3.0.0",
"@storybook/addon-essentials": "^8.6.4",
"@storybook/addon-interactions": "^8.6.4",
@@ -1984,9 +1984,9 @@
}
},
"node_modules/@graphql-codegen/client-preset": {
"version": "4.6.4",
"resolved": "https://registry.npmjs.org/@graphql-codegen/client-preset/-/client-preset-4.6.4.tgz",
"integrity": "sha512-xV9jovI3zpyJfXYm6gc9YBSmMQViRp5GF7EkLS0XOPwo8YO8P40fX363p/SVwG8tYKhGNcnUq+yCzBuwVPV7Fg==",
"version": "4.7.0",
"resolved": "https://registry.npmjs.org/@graphql-codegen/client-preset/-/client-preset-4.7.0.tgz",
"integrity": "sha512-U15GrsvSd0k6Wgo3vFN/oJMTMWUtbEkjQhifrfzkJpvUK+cqyB+C/SgLdSbzyxKd3GyMl8kfwgGr5K+yfksQ/g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1995,7 +1995,7 @@
"@graphql-codegen/add": "^5.0.3",
"@graphql-codegen/gql-tag-operations": "4.0.16",
"@graphql-codegen/plugin-helpers": "^5.1.0",
"@graphql-codegen/typed-document-node": "^5.0.15",
"@graphql-codegen/typed-document-node": "^5.1.0",
"@graphql-codegen/typescript": "^4.1.5",
"@graphql-codegen/typescript-operations": "^4.5.1",
"@graphql-codegen/visitor-plugin-common": "^5.7.1",
@@ -2119,9 +2119,9 @@
"license": "0BSD"
},
"node_modules/@graphql-codegen/typed-document-node": {
"version": "5.0.15",
"resolved": "https://registry.npmjs.org/@graphql-codegen/typed-document-node/-/typed-document-node-5.0.15.tgz",
"integrity": "sha512-zU6U/96NeZKdGdMb4OKQURIkBS4qOK28NwP1UB2cbCMcsrAm/IOt18ihaqu8USVdC5knuMjpZ63vPjsHDX77dw==",
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/@graphql-codegen/typed-document-node/-/typed-document-node-5.1.0.tgz",
"integrity": "sha512-CkMI1zmVd6nCoynzr3GO7RawWJIkt4AdCmS3wPxb3u8lwElcKTK7QCKA2d/fveC8OM0cATur+l0hyAkIkMft9g==",
"dev": true,
"license": "MIT",
"dependencies": {
+1 -1
View File
@@ -45,7 +45,7 @@
"@browser-logos/safari": "^2.1.0",
"@codecov/vite-plugin": "^1.9.0",
"@graphql-codegen/cli": "^5.0.5",
"@graphql-codegen/client-preset": "^4.6.4",
"@graphql-codegen/client-preset": "^4.7.0",
"@graphql-codegen/typescript-msw": "^3.0.0",
"@storybook/addon-essentials": "^8.6.4",
"@storybook/addon-interactions": "^8.6.4",
+5 -1
View File
@@ -1893,9 +1893,13 @@ export class TypedDocumentString<TResult, TVariables>
implements DocumentTypeDecoration<TResult, TVariables>
{
__apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType'];
private value: string;
public __meta__?: Record<string, any> | undefined;
constructor(private value: string, public __meta__?: Record<string, any> | undefined) {
constructor(value: string, __meta__?: Record<string, any> | undefined) {
super(value);
this.value = value;
this.__meta__ = __meta__;
}
toString(): string & DocumentTypeDecoration<TResult, TVariables> {