@@ -2209,7 +2209,7 @@ export * from "./gql.js";`);
2209
2209
{
2210
2210
__apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType'];
2211
2211
2212
- constructor(private value: string, public __meta__?: Record<string, any>) {
2212
+ constructor(private value: string, public __meta__?: Record<string, any> | undefined ) {
2213
2213
super(value);
2214
2214
}
2215
2215
@@ -2338,7 +2338,7 @@ export * from "./gql.js";`);
2338
2338
{
2339
2339
__apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType'];
2340
2340
2341
- constructor(private value: string, public __meta__?: Record<string, any>) {
2341
+ constructor(private value: string, public __meta__?: Record<string, any> | undefined ) {
2342
2342
super(value);
2343
2343
}
2344
2344
@@ -2463,7 +2463,7 @@ export * from "./gql.js";`);
2463
2463
{
2464
2464
__apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType'];
2465
2465
2466
- constructor(private value: string, public __meta__?: Record<string, any>) {
2466
+ constructor(private value: string, public __meta__?: Record<string, any> | undefined ) {
2467
2467
super(value);
2468
2468
}
2469
2469
@@ -2727,7 +2727,7 @@ export * from "./gql.js";`);
2727
2727
{
2728
2728
__apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType'];
2729
2729
2730
- constructor(private value: string, public __meta__?: Record<string, any>) {
2730
+ constructor(private value: string, public __meta__?: Record<string, any> | undefined ) {
2731
2731
super(value);
2732
2732
}
2733
2733
0 commit comments