@@ -2209,7 +2209,7 @@ export * from "./gql.js";`);
22092209 {
22102210 __apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType'];
22112211
2212- constructor(private value: string, public __meta__?: Record<string, any>) {
2212+ constructor(private value: string, public __meta__?: Record<string, any> | undefined ) {
22132213 super(value);
22142214 }
22152215
@@ -2338,7 +2338,7 @@ export * from "./gql.js";`);
23382338 {
23392339 __apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType'];
23402340
2341- constructor(private value: string, public __meta__?: Record<string, any>) {
2341+ constructor(private value: string, public __meta__?: Record<string, any> | undefined ) {
23422342 super(value);
23432343 }
23442344
@@ -2463,7 +2463,7 @@ export * from "./gql.js";`);
24632463 {
24642464 __apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType'];
24652465
2466- constructor(private value: string, public __meta__?: Record<string, any>) {
2466+ constructor(private value: string, public __meta__?: Record<string, any> | undefined ) {
24672467 super(value);
24682468 }
24692469
@@ -2727,7 +2727,7 @@ export * from "./gql.js";`);
27272727 {
27282728 __apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType'];
27292729
2730- constructor(private value: string, public __meta__?: Record<string, any>) {
2730+ constructor(private value: string, public __meta__?: Record<string, any> | undefined ) {
27312731 super(value);
27322732 }
27332733
0 commit comments