Skip to content

Commit d60690b

Browse files
authored
build(deps-dev): bump @graphql-codegen/client-preset from 4.8.2 to 4.8.3 in /frontend in the graphql-codegen group (#4724)
2 parents 3fef9a8 + 6353cf6 commit d60690b

File tree

3 files changed

+12
-15
lines changed

3 files changed

+12
-15
lines changed

frontend/package-lock.json

Lines changed: 9 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"@browser-logos/safari": "^2.1.0",
4646
"@codecov/vite-plugin": "^1.9.1",
4747
"@graphql-codegen/cli": "^5.0.7",
48-
"@graphql-codegen/client-preset": "^4.8.2",
48+
"@graphql-codegen/client-preset": "^4.8.3",
4949
"@graphql-codegen/typescript-msw": "^3.0.1",
5050
"@storybook/addon-docs": "^9.0.15",
5151
"@storybook/react-vite": "^9.0.15",

frontend/src/gql/graphql.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2040,7 +2040,7 @@ export class TypedDocumentString<TResult, TVariables>
20402040
extends String
20412041
implements DocumentTypeDecoration<TResult, TVariables>
20422042
{
2043-
__apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType'];
2043+
__apiType?: NonNullable<DocumentTypeDecoration<TResult, TVariables>['__apiType']>;
20442044
private value: string;
20452045
public __meta__?: Record<string, any> | undefined;
20462046

@@ -2050,7 +2050,7 @@ export class TypedDocumentString<TResult, TVariables>
20502050
this.__meta__ = __meta__;
20512051
}
20522052

2053-
toString(): string & DocumentTypeDecoration<TResult, TVariables> {
2053+
override toString(): string & DocumentTypeDecoration<TResult, TVariables> {
20542054
return this.value;
20552055
}
20562056
}

0 commit comments

Comments
 (0)