@@ -2464,9 +2464,13 @@ export * from "./gql.js";`);
2464
2464
implements DocumentTypeDecoration<TResult, TVariables>
2465
2465
{
2466
2466
__apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType'];
2467
+ private value: string;
2468
+ public __meta__?: Record<string, any> | undefined;
2467
2469
2468
- constructor(private value: string, public __meta__?: Record<string, any> | undefined) {
2470
+ constructor(value: string, __meta__?: Record<string, any> | undefined) {
2469
2471
super(value);
2472
+ this.value = value;
2473
+ this.__meta__ = __meta__;
2470
2474
}
2471
2475
2472
2476
toString(): string & DocumentTypeDecoration<TResult, TVariables> {
@@ -2605,9 +2609,13 @@ export * from "./gql.js";`);
2605
2609
implements DocumentTypeDecoration<TResult, TVariables>
2606
2610
{
2607
2611
__apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType'];
2612
+ private value: string;
2613
+ public __meta__?: Record<string, any> | undefined;
2608
2614
2609
- constructor(private value: string, public __meta__?: Record<string, any> | undefined) {
2615
+ constructor(value: string, __meta__?: Record<string, any> | undefined) {
2610
2616
super(value);
2617
+ this.value = value;
2618
+ this.__meta__ = __meta__;
2611
2619
}
2612
2620
2613
2621
toString(): string & DocumentTypeDecoration<TResult, TVariables> {
@@ -2741,9 +2749,13 @@ export * from "./gql.js";`);
2741
2749
implements DocumentTypeDecoration<TResult, TVariables>
2742
2750
{
2743
2751
__apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType'];
2752
+ private value: string;
2753
+ public __meta__?: Record<string, any> | undefined;
2744
2754
2745
- constructor(private value: string, public __meta__?: Record<string, any> | undefined) {
2755
+ constructor(value: string, __meta__?: Record<string, any> | undefined) {
2746
2756
super(value);
2757
+ this.value = value;
2758
+ this.__meta__ = __meta__;
2747
2759
}
2748
2760
2749
2761
toString(): string & DocumentTypeDecoration<TResult, TVariables> {
@@ -3036,9 +3048,13 @@ export * from "./gql.js";`);
3036
3048
implements DocumentTypeDecoration<TResult, TVariables>
3037
3049
{
3038
3050
__apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType'];
3051
+ private value: string;
3052
+ public __meta__?: Record<string, any> | undefined;
3039
3053
3040
- constructor(private value: string, public __meta__?: Record<string, any> | undefined) {
3054
+ constructor(value: string, __meta__?: Record<string, any> | undefined) {
3041
3055
super(value);
3056
+ this.value = value;
3057
+ this.__meta__ = __meta__;
3042
3058
}
3043
3059
3044
3060
toString(): string & DocumentTypeDecoration<TResult, TVariables> {
0 commit comments