@apollo/federation-internals 2.1.2-alpha.1 → 2.1.2-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/error.d.ts +0 -1
- package/dist/error.d.ts.map +1 -1
- package/dist/error.js +1 -2
- package/dist/error.js.map +1 -1
- package/dist/federation.d.ts +4 -3
- package/dist/federation.d.ts.map +1 -1
- package/dist/federation.js +101 -39
- package/dist/federation.js.map +1 -1
- package/dist/operations.d.ts +1 -0
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +11 -2
- package/dist/operations.js.map +1 -1
- package/dist/values.js +2 -2
- package/dist/values.js.map +1 -1
- package/package.json +2 -2
- package/src/__tests__/subgraphValidation.test.ts +55 -16
- package/src/error.ts +1 -2
- package/src/federation.ts +122 -61
- package/src/operations.ts +17 -2
- package/src/values.ts +2 -2
- package/tsconfig.test.tsbuildinfo +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/src/federation.ts
CHANGED
|
@@ -116,14 +116,23 @@ const FEDERATION_SPECIFIC_VALIDATION_RULES = [
|
|
|
116
116
|
const FEDERATION_VALIDATION_RULES = specifiedSDLRules.filter(rule => !FEDERATION_OMITTED_VALIDATION_RULES.includes(rule)).concat(FEDERATION_SPECIFIC_VALIDATION_RULES);
|
|
117
117
|
|
|
118
118
|
|
|
119
|
-
function validateFieldSetSelections(
|
|
119
|
+
function validateFieldSetSelections({
|
|
120
|
+
directiveName,
|
|
121
|
+
selectionSet,
|
|
122
|
+
hasExternalInParents,
|
|
123
|
+
metadata,
|
|
124
|
+
onError,
|
|
125
|
+
allowOnNonExternalLeafFields,
|
|
126
|
+
allowFieldsWithArguments,
|
|
127
|
+
}: {
|
|
120
128
|
directiveName: string,
|
|
121
129
|
selectionSet: SelectionSet,
|
|
122
130
|
hasExternalInParents: boolean,
|
|
123
|
-
|
|
131
|
+
metadata: FederationMetadata,
|
|
124
132
|
onError: (error: GraphQLError) => void,
|
|
125
133
|
allowOnNonExternalLeafFields: boolean,
|
|
126
|
-
|
|
134
|
+
allowFieldsWithArguments: boolean,
|
|
135
|
+
}): void {
|
|
127
136
|
for (const selection of selectionSet.selections()) {
|
|
128
137
|
const appliedDirectives = selection.element().appliedDirectives;
|
|
129
138
|
if (appliedDirectives.length > 0) {
|
|
@@ -134,8 +143,8 @@ function validateFieldSetSelections(
|
|
|
134
143
|
|
|
135
144
|
if (selection.kind === 'FieldSelection') {
|
|
136
145
|
const field = selection.element().definition;
|
|
137
|
-
const isExternal =
|
|
138
|
-
if (field.hasArguments()) {
|
|
146
|
+
const isExternal = metadata.isFieldExternal(field);
|
|
147
|
+
if (!allowFieldsWithArguments && field.hasArguments()) {
|
|
139
148
|
onError(ERROR_CATEGORIES.FIELDS_HAS_ARGS.get(directiveName).err(
|
|
140
149
|
`field ${field.coordinate} cannot be included because it has arguments (fields with argument are not allowed in @${directiveName})`,
|
|
141
150
|
{ nodes: field.sourceAST },
|
|
@@ -145,7 +154,7 @@ function validateFieldSetSelections(
|
|
|
145
154
|
const mustBeExternal = !selection.selectionSet && !allowOnNonExternalLeafFields && !hasExternalInParents;
|
|
146
155
|
if (!isExternal && mustBeExternal) {
|
|
147
156
|
const errorCode = ERROR_CATEGORIES.DIRECTIVE_FIELDS_MISSING_EXTERNAL.get(directiveName);
|
|
148
|
-
if (
|
|
157
|
+
if (metadata.isFieldFakeExternal(field)) {
|
|
149
158
|
onError(errorCode.err(
|
|
150
159
|
`field "${field.coordinate}" should not be part of a @${directiveName} since it is already "effectively" provided by this subgraph `
|
|
151
160
|
+ `(while it is marked @${externalDirectiveSpec.name}, it is a @${keyDirectiveSpec.name} field of an extension type, which are not internally considered external for historical/backward compatibility reasons)`,
|
|
@@ -167,28 +176,53 @@ function validateFieldSetSelections(
|
|
|
167
176
|
if (!newHasExternalInParents && isInterfaceType(parentType)) {
|
|
168
177
|
for (const implem of parentType.possibleRuntimeTypes()) {
|
|
169
178
|
const fieldInImplem = implem.field(field.name);
|
|
170
|
-
if (fieldInImplem &&
|
|
179
|
+
if (fieldInImplem && metadata.isFieldExternal(fieldInImplem)) {
|
|
171
180
|
newHasExternalInParents = true;
|
|
172
181
|
break;
|
|
173
182
|
}
|
|
174
183
|
}
|
|
175
184
|
}
|
|
176
|
-
validateFieldSetSelections(
|
|
185
|
+
validateFieldSetSelections({
|
|
186
|
+
directiveName,
|
|
187
|
+
selectionSet: selection.selectionSet,
|
|
188
|
+
hasExternalInParents: newHasExternalInParents,
|
|
189
|
+
metadata,
|
|
190
|
+
onError,
|
|
191
|
+
allowOnNonExternalLeafFields,
|
|
192
|
+
allowFieldsWithArguments,
|
|
193
|
+
});
|
|
177
194
|
}
|
|
178
195
|
} else {
|
|
179
|
-
validateFieldSetSelections(
|
|
196
|
+
validateFieldSetSelections({
|
|
197
|
+
directiveName,
|
|
198
|
+
selectionSet: selection.selectionSet,
|
|
199
|
+
hasExternalInParents,
|
|
200
|
+
metadata,
|
|
201
|
+
onError,
|
|
202
|
+
allowOnNonExternalLeafFields,
|
|
203
|
+
allowFieldsWithArguments,
|
|
204
|
+
});
|
|
180
205
|
}
|
|
181
206
|
}
|
|
182
207
|
}
|
|
183
208
|
|
|
184
|
-
function validateFieldSet(
|
|
209
|
+
function validateFieldSet({
|
|
210
|
+
type,
|
|
211
|
+
directive,
|
|
212
|
+
metadata,
|
|
213
|
+
errorCollector,
|
|
214
|
+
allowOnNonExternalLeafFields,
|
|
215
|
+
allowFieldsWithArguments,
|
|
216
|
+
onFields,
|
|
217
|
+
}: {
|
|
185
218
|
type: CompositeType,
|
|
186
219
|
directive: Directive<any, {fields: any}>,
|
|
187
|
-
|
|
220
|
+
metadata: FederationMetadata,
|
|
188
221
|
errorCollector: GraphQLError[],
|
|
189
222
|
allowOnNonExternalLeafFields: boolean,
|
|
223
|
+
allowFieldsWithArguments: boolean,
|
|
190
224
|
onFields?: (field: FieldDefinition<any>) => void,
|
|
191
|
-
): void {
|
|
225
|
+
}): void {
|
|
192
226
|
try {
|
|
193
227
|
// Note that `parseFieldSetArgument` already properly format the error, hence the separate try-catch.
|
|
194
228
|
// TODO: `parseFieldSetArgument` throws on the first issue found and never accumulate multiple
|
|
@@ -206,14 +240,15 @@ function validateFieldSet(
|
|
|
206
240
|
}
|
|
207
241
|
: undefined;
|
|
208
242
|
const selectionSet = parseFieldSetArgument({parentType: type, directive, fieldAccessor});
|
|
209
|
-
validateFieldSetSelections(
|
|
210
|
-
directive.name,
|
|
243
|
+
validateFieldSetSelections({
|
|
244
|
+
directiveName: directive.name,
|
|
211
245
|
selectionSet,
|
|
212
|
-
false,
|
|
213
|
-
|
|
214
|
-
(error) => errorCollector.push(handleFieldSetValidationError(directive, error)),
|
|
246
|
+
hasExternalInParents: false,
|
|
247
|
+
metadata,
|
|
248
|
+
onError: (error) => errorCollector.push(handleFieldSetValidationError(directive, error)),
|
|
215
249
|
allowOnNonExternalLeafFields,
|
|
216
|
-
|
|
250
|
+
allowFieldsWithArguments,
|
|
251
|
+
});
|
|
217
252
|
} catch (e) {
|
|
218
253
|
if (e instanceof GraphQLError) {
|
|
219
254
|
errorCollector.push(e);
|
|
@@ -267,15 +302,25 @@ function fieldSetTargetDescription(directive: Directive<any, {fields: any}>): st
|
|
|
267
302
|
return `${targetKind} "${directive.parent?.coordinate}"`;
|
|
268
303
|
}
|
|
269
304
|
|
|
270
|
-
function validateAllFieldSet<TParent extends SchemaElement<any, any>>(
|
|
305
|
+
function validateAllFieldSet<TParent extends SchemaElement<any, any>>({
|
|
306
|
+
definition,
|
|
307
|
+
targetTypeExtractor,
|
|
308
|
+
errorCollector,
|
|
309
|
+
metadata,
|
|
310
|
+
isOnParentType = false,
|
|
311
|
+
allowOnNonExternalLeafFields = false,
|
|
312
|
+
allowFieldsWithArguments = false,
|
|
313
|
+
onFields,
|
|
314
|
+
}: {
|
|
271
315
|
definition: DirectiveDefinition<{fields: any}>,
|
|
272
316
|
targetTypeExtractor: (element: TParent) => CompositeType,
|
|
273
317
|
errorCollector: GraphQLError[],
|
|
274
|
-
|
|
275
|
-
isOnParentType
|
|
276
|
-
allowOnNonExternalLeafFields
|
|
318
|
+
metadata: FederationMetadata,
|
|
319
|
+
isOnParentType?: boolean,
|
|
320
|
+
allowOnNonExternalLeafFields?: boolean,
|
|
321
|
+
allowFieldsWithArguments?: boolean,
|
|
277
322
|
onFields?: (field: FieldDefinition<any>) => void,
|
|
278
|
-
): void {
|
|
323
|
+
}): void {
|
|
279
324
|
for (const application of definition.applications()) {
|
|
280
325
|
const elt = application.parent as TParent;
|
|
281
326
|
const type = targetTypeExtractor(elt);
|
|
@@ -289,14 +334,15 @@ function validateAllFieldSet<TParent extends SchemaElement<any, any>>(
|
|
|
289
334
|
{ nodes: sourceASTs(application).concat(isOnParentType ? [] : sourceASTs(type)) },
|
|
290
335
|
));
|
|
291
336
|
}
|
|
292
|
-
validateFieldSet(
|
|
337
|
+
validateFieldSet({
|
|
293
338
|
type,
|
|
294
|
-
application,
|
|
295
|
-
|
|
339
|
+
directive: application,
|
|
340
|
+
metadata,
|
|
296
341
|
errorCollector,
|
|
297
342
|
allowOnNonExternalLeafFields,
|
|
343
|
+
allowFieldsWithArguments,
|
|
298
344
|
onFields,
|
|
299
|
-
);
|
|
345
|
+
});
|
|
300
346
|
}
|
|
301
347
|
}
|
|
302
348
|
|
|
@@ -717,7 +763,7 @@ export class FederationBlueprint extends SchemaBlueprint {
|
|
|
717
763
|
}
|
|
718
764
|
|
|
719
765
|
onValidation(schema: Schema): GraphQLError[] {
|
|
720
|
-
const
|
|
766
|
+
const errorCollector = super.onValidation(schema);
|
|
721
767
|
|
|
722
768
|
// We rename all root type to their default names (we do here rather than in `prepareValidation` because
|
|
723
769
|
// that can actually fail).
|
|
@@ -730,7 +776,7 @@ export class FederationBlueprint extends SchemaBlueprint {
|
|
|
730
776
|
// composition error.
|
|
731
777
|
const existing = schema.type(defaultName);
|
|
732
778
|
if (existing) {
|
|
733
|
-
|
|
779
|
+
errorCollector.push(ERROR_CATEGORIES.ROOT_TYPE_USED.get(k).err(
|
|
734
780
|
`The schema has a type named "${defaultName}" but it is not set as the ${k} root type ("${type.name}" is instead): `
|
|
735
781
|
+ 'this is not supported by federation. '
|
|
736
782
|
+ 'If a root type does not use its default name, there should be no other type with that default name.',
|
|
@@ -748,19 +794,19 @@ export class FederationBlueprint extends SchemaBlueprint {
|
|
|
748
794
|
// accepted, and some of those issues are fixed by `SchemaUpgrader`. So insofar as any fed 1 scheam is ultimately converted
|
|
749
795
|
// to a fed 2 one before composition, then skipping some validation on fed 1 schema is fine.
|
|
750
796
|
if (!metadata.isFed2Schema()) {
|
|
751
|
-
return
|
|
797
|
+
return errorCollector;
|
|
752
798
|
}
|
|
753
799
|
|
|
754
800
|
// We validate the @key, @requires and @provides.
|
|
755
801
|
const keyDirective = metadata.keyDirective();
|
|
756
|
-
validateAllFieldSet<CompositeType>(
|
|
757
|
-
keyDirective,
|
|
758
|
-
type => type,
|
|
759
|
-
|
|
802
|
+
validateAllFieldSet<CompositeType>({
|
|
803
|
+
definition: keyDirective,
|
|
804
|
+
targetTypeExtractor: type => type,
|
|
805
|
+
errorCollector,
|
|
760
806
|
metadata,
|
|
761
|
-
true,
|
|
762
|
-
true,
|
|
763
|
-
field => {
|
|
807
|
+
isOnParentType: true,
|
|
808
|
+
allowOnNonExternalLeafFields: true,
|
|
809
|
+
onFields: field => {
|
|
764
810
|
const type = baseType(field.type!);
|
|
765
811
|
if (isUnionType(type) || isInterfaceType(type)) {
|
|
766
812
|
let kind: string = type.kind;
|
|
@@ -770,7 +816,7 @@ export class FederationBlueprint extends SchemaBlueprint {
|
|
|
770
816
|
);
|
|
771
817
|
}
|
|
772
818
|
}
|
|
773
|
-
);
|
|
819
|
+
});
|
|
774
820
|
// Note that we currently reject @requires where a leaf field of the selection is not external,
|
|
775
821
|
// because if it's provided by the current subgraph, why "requires" it? That said, it's not 100%
|
|
776
822
|
// nonsensical if you wanted a local field to be part of the subgraph fetch even if it's not
|
|
@@ -778,21 +824,20 @@ export class FederationBlueprint extends SchemaBlueprint {
|
|
|
778
824
|
// rejecting it as it also make it less likely user misunderstand what @requires actually do.
|
|
779
825
|
// But we could consider lifting that limitation if users comes with a good rational for allowing
|
|
780
826
|
// it.
|
|
781
|
-
validateAllFieldSet<FieldDefinition<CompositeType>>(
|
|
782
|
-
metadata.requiresDirective(),
|
|
783
|
-
field => field.parent,
|
|
784
|
-
|
|
827
|
+
validateAllFieldSet<FieldDefinition<CompositeType>>({
|
|
828
|
+
definition: metadata.requiresDirective(),
|
|
829
|
+
targetTypeExtractor: field => field.parent,
|
|
830
|
+
errorCollector,
|
|
785
831
|
metadata,
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
);
|
|
832
|
+
allowFieldsWithArguments: true,
|
|
833
|
+
});
|
|
789
834
|
// Note that like for @requires above, we error out if a leaf field of the selection is not
|
|
790
835
|
// external in a @provides (we pass `false` for the `allowOnNonExternalLeafFields` parameter),
|
|
791
836
|
// but contrarily to @requires, there is probably no reason to ever change this, as a @provides
|
|
792
837
|
// of a field already provides is 100% nonsensical.
|
|
793
|
-
validateAllFieldSet<FieldDefinition<CompositeType>>(
|
|
794
|
-
metadata.providesDirective(),
|
|
795
|
-
field => {
|
|
838
|
+
validateAllFieldSet<FieldDefinition<CompositeType>>({
|
|
839
|
+
definition: metadata.providesDirective(),
|
|
840
|
+
targetTypeExtractor: field => {
|
|
796
841
|
if (metadata.isFieldExternal(field)) {
|
|
797
842
|
throw ERRORS.EXTERNAL_COLLISION_WITH_ANOTHER_DIRECTIVE.err(
|
|
798
843
|
`Cannot have both @provides and @external on field "${field.coordinate}"`,
|
|
@@ -808,29 +853,27 @@ export class FederationBlueprint extends SchemaBlueprint {
|
|
|
808
853
|
}
|
|
809
854
|
return type;
|
|
810
855
|
},
|
|
811
|
-
|
|
856
|
+
errorCollector,
|
|
812
857
|
metadata,
|
|
813
|
-
|
|
814
|
-
false,
|
|
815
|
-
);
|
|
858
|
+
});
|
|
816
859
|
|
|
817
|
-
validateNoExternalOnInterfaceFields(metadata,
|
|
818
|
-
validateAllExternalFieldsUsed(metadata,
|
|
860
|
+
validateNoExternalOnInterfaceFields(metadata, errorCollector);
|
|
861
|
+
validateAllExternalFieldsUsed(metadata, errorCollector);
|
|
819
862
|
|
|
820
863
|
// If tag is redefined by the user, make sure the definition is compatible with what we expect
|
|
821
864
|
const tagDirective = metadata.tagDirective();
|
|
822
865
|
if (tagDirective) {
|
|
823
866
|
const error = tagSpec.checkCompatibleDirective(tagDirective);
|
|
824
867
|
if (error) {
|
|
825
|
-
|
|
868
|
+
errorCollector.push(error);
|
|
826
869
|
}
|
|
827
870
|
}
|
|
828
871
|
|
|
829
872
|
for (const itf of schema.interfaceTypes()) {
|
|
830
|
-
validateInterfaceRuntimeImplementationFieldsTypes(itf, metadata,
|
|
873
|
+
validateInterfaceRuntimeImplementationFieldsTypes(itf, metadata, errorCollector);
|
|
831
874
|
}
|
|
832
875
|
|
|
833
|
-
return
|
|
876
|
+
return errorCollector;
|
|
834
877
|
}
|
|
835
878
|
|
|
836
879
|
validationRules(): readonly SDLValidationRule[] {
|
|
@@ -1144,21 +1187,32 @@ export function parseFieldSetArgument({
|
|
|
1144
1187
|
directive,
|
|
1145
1188
|
fieldAccessor,
|
|
1146
1189
|
validate,
|
|
1190
|
+
decorateValidationErrors = true,
|
|
1147
1191
|
}: {
|
|
1148
1192
|
parentType: CompositeType,
|
|
1149
|
-
directive: Directive<
|
|
1193
|
+
directive: Directive<SchemaElement<any, any>, {fields: any}>,
|
|
1150
1194
|
fieldAccessor?: (type: CompositeType, fieldName: string) => FieldDefinition<any> | undefined,
|
|
1151
1195
|
validate?: boolean,
|
|
1196
|
+
decorateValidationErrors?: boolean,
|
|
1152
1197
|
}): SelectionSet {
|
|
1153
1198
|
try {
|
|
1154
|
-
|
|
1199
|
+
const selectionSet = parseSelectionSet({
|
|
1155
1200
|
parentType,
|
|
1156
1201
|
source: validateFieldSetValue(directive),
|
|
1157
1202
|
fieldAccessor,
|
|
1158
1203
|
validate,
|
|
1159
1204
|
});
|
|
1205
|
+
if (validate ?? true) {
|
|
1206
|
+
selectionSet.forEachElement((elt) => {
|
|
1207
|
+
if (elt.kind === 'Field' && elt.alias) {
|
|
1208
|
+
// Note that this will be caught by the surrounding catch and "decorated".
|
|
1209
|
+
throw new GraphQLError(`Cannot use alias "${elt.alias}" in "${elt}": aliases are not currently supported in @${directive.name}`);
|
|
1210
|
+
}
|
|
1211
|
+
});
|
|
1212
|
+
}
|
|
1213
|
+
return selectionSet;
|
|
1160
1214
|
} catch (e) {
|
|
1161
|
-
if (!(e instanceof GraphQLError)) {
|
|
1215
|
+
if (!(e instanceof GraphQLError) || !decorateValidationErrors) {
|
|
1162
1216
|
throw e;
|
|
1163
1217
|
}
|
|
1164
1218
|
|
|
@@ -1226,7 +1280,7 @@ export function collectTargetFields({
|
|
|
1226
1280
|
return fields;
|
|
1227
1281
|
}
|
|
1228
1282
|
|
|
1229
|
-
function validateFieldSetValue(directive: Directive<
|
|
1283
|
+
function validateFieldSetValue(directive: Directive<SchemaElement<any, any>, {fields: any}>): string {
|
|
1230
1284
|
const fields = directive.arguments().fields;
|
|
1231
1285
|
const nodes = directive.sourceAST;
|
|
1232
1286
|
if (typeof fields !== 'string') {
|
|
@@ -1501,6 +1555,13 @@ export class Subgraph {
|
|
|
1501
1555
|
export type SubgraphASTNode = ASTNode & { subgraph: string };
|
|
1502
1556
|
|
|
1503
1557
|
export function addSubgraphToASTNode(node: ASTNode, subgraph: string): SubgraphASTNode {
|
|
1558
|
+
// We won't override a existing subgraph info: it's not like the subgraph an ASTNode can come
|
|
1559
|
+
// from can ever change and this allow the provided to act as a "default" rather than a
|
|
1560
|
+
// hard setter, which is convenient in `addSubgraphToError` below if some of the AST of
|
|
1561
|
+
// the provided error already have a subgraph "origin".
|
|
1562
|
+
if ('subgraph' in (node as any)) {
|
|
1563
|
+
return node as SubgraphASTNode;
|
|
1564
|
+
}
|
|
1504
1565
|
return {
|
|
1505
1566
|
...node,
|
|
1506
1567
|
subgraph
|
package/src/operations.ts
CHANGED
|
@@ -182,7 +182,7 @@ export class Field<TArgs extends {[key: string]: any} = {[key: string]: any}> ex
|
|
|
182
182
|
if (appliedValue === undefined) {
|
|
183
183
|
validate(
|
|
184
184
|
argDef.defaultValue !== undefined || isNullableType(argDef.type!),
|
|
185
|
-
() => `Missing mandatory value "${argDef.name}"
|
|
185
|
+
() => `Missing mandatory value for argument "${argDef.name}" of field "${this.definition.coordinate}" in selection "${this}"`);
|
|
186
186
|
} else {
|
|
187
187
|
validate(
|
|
188
188
|
isValidValue(appliedValue, argDef, this.variableDefinitions),
|
|
@@ -921,7 +921,7 @@ export class SelectionSet extends Freezable<SelectionSet> {
|
|
|
921
921
|
this._cachedSelections = selections;
|
|
922
922
|
}
|
|
923
923
|
assert(this._cachedSelections, 'Cache should have been populated');
|
|
924
|
-
if (reversedOrder) {
|
|
924
|
+
if (reversedOrder && this._cachedSelections.length > 1) {
|
|
925
925
|
const reversed = new Array(this._selectionCount);
|
|
926
926
|
for (let i = 0; i < this._selectionCount; i++) {
|
|
927
927
|
reversed[i] = this._cachedSelections[this._selectionCount - i - 1];
|
|
@@ -1284,6 +1284,21 @@ export class SelectionSet extends Freezable<SelectionSet> {
|
|
|
1284
1284
|
});
|
|
1285
1285
|
}
|
|
1286
1286
|
|
|
1287
|
+
/**
|
|
1288
|
+
* Calls the provided callback on all the "elements" (including nested ones) of this selection set.
|
|
1289
|
+
* The specific order of traversal should not be relied on.
|
|
1290
|
+
*/
|
|
1291
|
+
forEachElement(callback: (elt: OperationElement) => void) {
|
|
1292
|
+
const stack = this.selections().concat();
|
|
1293
|
+
while (stack.length > 0) {
|
|
1294
|
+
const selection = stack.pop()!;
|
|
1295
|
+
callback(selection.element());
|
|
1296
|
+
// Note: we reserve to preserver ordering (since the stack re-reverse). Not a big cost in general
|
|
1297
|
+
// and make output a bit more intuitive.
|
|
1298
|
+
selection.selectionSet?.selections(true).forEach((s) => stack.push(s));
|
|
1299
|
+
}
|
|
1300
|
+
}
|
|
1301
|
+
|
|
1287
1302
|
clone(): SelectionSet {
|
|
1288
1303
|
const cloned = new SelectionSet(this.parentType);
|
|
1289
1304
|
for (const selection of this.selections()) {
|
package/src/values.ts
CHANGED
|
@@ -701,14 +701,14 @@ export function argumentsFromAST(
|
|
|
701
701
|
const expectedType = argsDefiner.argument(name)?.type;
|
|
702
702
|
if (!expectedType) {
|
|
703
703
|
throw ERRORS.INVALID_GRAPHQL.err(
|
|
704
|
-
`Unknown argument "${name}" found in value: ${context} has no argument named "${name}"`
|
|
704
|
+
`Unknown argument "${name}" found in value: "${context}" has no argument named "${name}"`
|
|
705
705
|
);
|
|
706
706
|
}
|
|
707
707
|
try {
|
|
708
708
|
values[name] = valueFromAST(argNode.value, expectedType);
|
|
709
709
|
} catch (e) {
|
|
710
710
|
if (e instanceof GraphQLError) {
|
|
711
|
-
throw ERRORS.INVALID_GRAPHQL.err(`Invalid value for argument ${name}: ${e.message}`);
|
|
711
|
+
throw ERRORS.INVALID_GRAPHQL.err(`Invalid value for argument "${name}": ${e.message}`);
|
|
712
712
|
}
|
|
713
713
|
throw e;
|
|
714
714
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/graphql/version.d.ts","../node_modules/graphql/jsutils/Maybe.d.ts","../node_modules/graphql/language/source.d.ts","../node_modules/graphql/jsutils/ObjMap.d.ts","../node_modules/graphql/jsutils/Path.d.ts","../node_modules/graphql/jsutils/PromiseOrValue.d.ts","../node_modules/graphql/language/kinds.d.ts","../node_modules/graphql/language/tokenKind.d.ts","../node_modules/graphql/language/ast.d.ts","../node_modules/graphql/language/location.d.ts","../node_modules/graphql/error/GraphQLError.d.ts","../node_modules/graphql/language/directiveLocation.d.ts","../node_modules/graphql/type/directives.d.ts","../node_modules/graphql/type/schema.d.ts","../node_modules/graphql/type/definition.d.ts","../node_modules/graphql/execution/execute.d.ts","../node_modules/graphql/graphql.d.ts","../node_modules/graphql/type/scalars.d.ts","../node_modules/graphql/type/introspection.d.ts","../node_modules/graphql/type/validate.d.ts","../node_modules/graphql/type/assertName.d.ts","../node_modules/graphql/type/index.d.ts","../node_modules/graphql/language/printLocation.d.ts","../node_modules/graphql/language/lexer.d.ts","../node_modules/graphql/language/parser.d.ts","../node_modules/graphql/language/printer.d.ts","../node_modules/graphql/language/visitor.d.ts","../node_modules/graphql/language/predicates.d.ts","../node_modules/graphql/language/index.d.ts","../node_modules/graphql/execution/subscribe.d.ts","../node_modules/graphql/execution/values.d.ts","../node_modules/graphql/execution/index.d.ts","../node_modules/graphql/subscription/index.d.ts","../node_modules/graphql/utilities/TypeInfo.d.ts","../node_modules/graphql/validation/ValidationContext.d.ts","../node_modules/graphql/validation/validate.d.ts","../node_modules/graphql/validation/specifiedRules.d.ts","../node_modules/graphql/validation/rules/ExecutableDefinitionsRule.d.ts","../node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.d.ts","../node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.d.ts","../node_modules/graphql/validation/rules/KnownArgumentNamesRule.d.ts","../node_modules/graphql/validation/rules/KnownDirectivesRule.d.ts","../node_modules/graphql/validation/rules/KnownFragmentNamesRule.d.ts","../node_modules/graphql/validation/rules/KnownTypeNamesRule.d.ts","../node_modules/graphql/validation/rules/LoneAnonymousOperationRule.d.ts","../node_modules/graphql/validation/rules/NoFragmentCyclesRule.d.ts","../node_modules/graphql/validation/rules/NoUndefinedVariablesRule.d.ts","../node_modules/graphql/validation/rules/NoUnusedFragmentsRule.d.ts","../node_modules/graphql/validation/rules/NoUnusedVariablesRule.d.ts","../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.d.ts","../node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.d.ts","../node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.d.ts","../node_modules/graphql/validation/rules/ScalarLeafsRule.d.ts","../node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.d.ts","../node_modules/graphql/validation/rules/UniqueArgumentNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.d.ts","../node_modules/graphql/validation/rules/UniqueFragmentNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueOperationNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueVariableNamesRule.d.ts","../node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.d.ts","../node_modules/graphql/validation/rules/VariablesAreInputTypesRule.d.ts","../node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.d.ts","../node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.d.ts","../node_modules/graphql/validation/rules/UniqueOperationTypesRule.d.ts","../node_modules/graphql/validation/rules/UniqueTypeNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueArgumentDefinitionNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.d.ts","../node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.d.ts","../node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.d.ts","../node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.d.ts","../node_modules/graphql/validation/index.d.ts","../node_modules/graphql/error/syntaxError.d.ts","../node_modules/graphql/error/locatedError.d.ts","../node_modules/graphql/error/index.d.ts","../node_modules/graphql/utilities/getIntrospectionQuery.d.ts","../node_modules/graphql/utilities/getOperationAST.d.ts","../node_modules/graphql/utilities/getOperationRootType.d.ts","../node_modules/graphql/utilities/introspectionFromSchema.d.ts","../node_modules/graphql/utilities/buildClientSchema.d.ts","../node_modules/graphql/utilities/buildASTSchema.d.ts","../node_modules/graphql/utilities/extendSchema.d.ts","../node_modules/graphql/utilities/lexicographicSortSchema.d.ts","../node_modules/graphql/utilities/printSchema.d.ts","../node_modules/graphql/utilities/typeFromAST.d.ts","../node_modules/graphql/utilities/valueFromAST.d.ts","../node_modules/graphql/utilities/valueFromASTUntyped.d.ts","../node_modules/graphql/utilities/astFromValue.d.ts","../node_modules/graphql/utilities/coerceInputValue.d.ts","../node_modules/graphql/utilities/concatAST.d.ts","../node_modules/graphql/utilities/separateOperations.d.ts","../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts","../node_modules/graphql/utilities/typeComparators.d.ts","../node_modules/graphql/utilities/assertValidName.d.ts","../node_modules/graphql/utilities/findBreakingChanges.d.ts","../node_modules/graphql/utilities/typedQueryDocumentNode.d.ts","../node_modules/graphql/utilities/index.d.ts","../node_modules/graphql/index.d.ts","../node_modules/graphql-tag/lib/index.d.ts","./dist/directiveAndTypeSpecification.d.ts","./dist/coreSpec.d.ts","./dist/utils.d.ts","./dist/definitions.d.ts","./dist/operations.d.ts","./dist/error.d.ts","./dist/print.d.ts","./dist/federation.d.ts","./dist/buildSchema.d.ts","./src/__tests__/coreSpec.test.ts","./src/__tests__/matchers/toMatchString.ts","./src/__tests__/matchers/index.ts","./src/__tests__/definitions.test.ts","./dist/values.d.ts","./dist/types.d.ts","./dist/debug.d.ts","./dist/joinSpec.d.ts","./dist/tagSpec.d.ts","./dist/inaccessibleSpec.d.ts","./dist/federationSpec.d.ts","./dist/supergraphs.d.ts","./dist/extractSubgraphsFromSupergraph.d.ts","./dist/schemaUpgrader.d.ts","./dist/suggestions.d.ts","./dist/graphQLJSSchemaToAST.d.ts","./dist/index.d.ts","./src/__tests__/extractSubgraphsFromSupergraph.test.ts","./src/__tests__/federation.test.ts","./src/__tests__/graphQLJSSchemaToAST.test.ts","./src/__tests__/operations.test.ts","./src/__tests__/removeInaccessibleElements.test.ts","./src/__tests__/schemaUpgrader.test.ts","./src/__tests__/subgraphValidation.test.ts","./src/__tests__/toAPISchema.test.ts","./src/__tests__/utils.test.ts","./src/__tests__/values.test.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"78647004e18e4c16b8a2e8345fca9267573d1c5a29e11ddfee71858fd077ef6e","0804044cd0488cb7212ddbc1d0f8e1a5bd32970335dbfc613052304a1b0318f9","b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","85084ae98c1d319e38ef99b1216d3372a9afd7a368022c01c3351b339d52cb58","898ec2410fae172e0a9416448b0838bed286322a5c0c8959e8e39400cd4c5697","692345a43bac37c507fa7065c554258435ab821bbe4fb44b513a70063e932b45","cddd50d7bd9d7fddda91a576db9f61655d1a55e2d870f154485812f6e39d4c15","0539583b089247b73a21eb4a5f7e43208a129df6300d6b829dc1039b79b6c8c4","7aba43bc7764fcd02232382c780c3e99ef8dbfdac3c58605a0b3781fab3d8044","522edc786ed48304671b935cf7d3ed63acc6636ab9888c6e130b97a6aea92b46","1e1ed5600d80406a10428e349af8b6f09949cd5054043ea8588903e8f9e8d705","de21641eb8edcbc08dd0db4ee70eea907cd07fe72267340b5571c92647f10a77","a53039ba614075aeb702271701981babbd0d4f4dcbf319ddee4c08fb8196cc7a","6758f7b72fa4d38f4f4b865516d3d031795c947a45cc24f2cfba43c91446d678","da679a5bb46df3c6d84f637f09e6689d6c2d07e907ea16adc161e4529a4954d6","dc1a664c33f6ddd2791569999db2b3a476e52c5eeb5474768ffa542b136d78c0","bdf7abbd7df4f29b3e0728684c790e80590b69d92ed8d3bf8e66d4bd713941fe","8decb32fc5d44b403b46c3bb4741188df4fbc3c66d6c65669000c5c9cd506523","4beaf337ee755b8c6115ff8a17e22ceab986b588722a52c776b8834af64e0f38","c26dd198f2793bbdcc55103823a2767d6223a7fdb92486c18b86deaf63208354","93551b302a808f226f0846ad8012354f2d53d6dedc33b540d6ca69836781a574","f0ff1c010d5046af3874d3b4df746c6f3921e4b3fbdec61dee0792fc0cb36ccd","778b684ebc6b006fcffeab77d25b34bf6e400100e0ec0c76056e165c6399ab05","463851fa993af55fb0296e0d6afa27407ef91bf6917098dd665aba1200d250c7","67c6de7a9c490bda48eb401bea93904b6bbfc60e47427e887e6a3da6195540be","be8f369f8d7e887eab87a3e4e41f1afcf61bf06056801383152aa83bda1f6a72","352bfb5f3a9d8a9c2464ad2dc0b2dc56a8212650a541fb550739c286dd341de1","a5aae636d9afdacb22d98e4242487436d8296e5a345348325ccc68481fe1b690","d007c769e33e72e51286b816d82cd7c3a280cba714e7f958691155068bd7150a","764150c107451d2fd5b6de305cff0a9dcecf799e08e6f14b5a6748724db46d8a","b04cf223c338c09285010f5308b980ee6d8bfa203824ed2537516f15e92e8c43","4b387f208d1e468193a45a51005b1ed5b666010fc22a15dc1baf4234078b636e","70441eda704feffd132be0c1541f2c7f6bbaafce25cb9b54b181e26af3068e79","d1addb12403afea87a1603121396261a45190886c486c88e1a5d456be17c2049","15d43873064dc8787ca1e4c39149be59183c404d48a8cd5a0ea019bb5fdf8d58","ea4b5d319625203a5a96897b057fddf6017d0f9a902c16060466fe69cc007243","3d06897c536b4aad2b2b015d529270439f2cadd89ca2ff7bd8898ee84898dd88","ab01d8fcb89fae8eda22075153053fefac69f7d9571a389632099e7a53f1922d","bac0ec1f4c61abc7c54ccebb0f739acb0cdbc22b1b19c91854dc142019492961","566b0806f9016fa067b7fecf3951fcc295c30127e5141223393bde16ad04aa4a","8e801abfeda45b1b93e599750a0a8d25074d30d4cc01e3563e56c0ff70edeb68","902997f91b09620835afd88e292eb217fbd55d01706b82b9a014ff408f357559","a3727a926e697919fb59407938bd8573964b3bf543413b685996a47df5645863","83f36c0792d352f641a213ee547d21ea02084a148355aa26b6ef82c4f61c1280","dce7d69c17a438554c11bbf930dec2bee5b62184c0494d74da336daee088ab69","1e8f2cda9735002728017933c54ccea7ebee94b9c68a59a4aac1c9a58aa7da7d","e327a2b222cf9e5c93d7c1ed6468ece2e7b9d738e5da04897f1a99f49d42cca1","65165246b59654ec4e1501dd87927a0ef95d57359709e00e95d1154ad8443bc7","f1bacba19e2fa2eb26c499e36b5ab93d6764f2dba44be3816f12d2bc9ac9a35b","bce38da5fd851520d0cb4d1e6c3c04968cec2faa674ed321c118e97e59872edc","3398f46037f21fb6c33560ceca257259bd6d2ea03737179b61ea9e17cbe07455","6e14fc6c27cb2cb203fe1727bb3a923588f0be8c2604673ad9f879182548daca","12b9bcf8395d33837f301a8e6d545a24dfff80db9e32f8e8e6cf4b11671bb442","04295cc38689e32a4ea194c954ea6604e6afb6f1c102104f74737cb8cf744422","7418f434c136734b23f634e711cf44613ca4c74e63a5ae7429acaee46c7024c8","27d40290b7caba1c04468f2b53cf7112f247f8acdd7c20589cd7decf9f762ad0","2608b8b83639baf3f07316df29202eead703102f1a7e32f74a1b18cf1eee54b5","c93657567a39bd589effe89e863aaadbc339675fca6805ae4d97eafbcce0a05d","909d5db5b3b19f03dfb4a8f1d00cf41d2f679857c28775faf1f10794cbbe9db9","e4504bffce13574bab83ab900b843590d85a0fd38faab7eff83d84ec55de4aff","8ab707f3c833fc1e8a51106b8746c8bc0ce125083ea6200ad881625ae35ce11e","730ddc2386276ac66312edbcc60853fedbb1608a99cb0b1ff82ebf26911dba1f","c1b3fa201aa037110c43c05ea97800eb66fea3f2ecc5f07c6fd47f2b6b5b21d2","636b44188dc6eb326fd566085e6c1c6035b71f839d62c343c299a35888c6f0a9","3b2105bf9823b53c269cabb38011c5a71360c8daabc618fec03102c9514d230c","f96e63eb56e736304c3aef6c745b9fe93db235ddd1fec10b45319c479de1a432","acb4f3cee79f38ceba975e7ee3114eb5cd96ccc02742b0a4c7478b4619f87cd6","cfc85d17c1493b6217bad9052a8edc332d1fde81a919228edab33c14aa762939","eebda441c4486c26de7a8a7343ebbc361d2b0109abff34c2471e45e34a93020a","727b4b8eb62dd98fa4e3a0937172c1a0041eb715b9071c3de96dad597deddcab","708e2a347a1b9868ccdb48f3e43647c6eccec47b8591b220afcafc9e7eeb3784","6bb598e2d45a170f302f113a5b68e518c8d7661ae3b59baf076be9120afa4813","c28e058db8fed2c81d324546f53d2a7aaefff380cbe70f924276dbad89acd7d1","ebe8f07bb402102c5a764b0f8e34bd92d6f50bd7ac61a2452e76b80e02f9bb4b","826a98cb79deab45ccc4e5a8b90fa64510b2169781a7cbb83c4a0a8867f4cc58","618189f94a473b7fdc5cb5ba8b94d146a0d58834cd77cd24d56995f41643ccd5","5baadaca408128671536b3cb77fea44330e169ada70ce50b902c8d992fe64cf1","a4cc469f3561ea3edc57e091f4c9dcaf7485a70d3836be23a6945db46f0acd0b","91b0965538a5eaafa8c09cf9f62b46d6125aa1b3c0e0629dce871f5f41413f90","2978e33a00b4b5fb98337c5e473ab7337030b2f69d1480eccef0290814af0d51","ba71e9777cb5460e3278f0934fd6354041cb25853feca542312807ce1f18e611","608dbaf8c8bb64f4024013e73d7107c16dba4664999a8c6e58f3e71545e48f66","61937cefd7f4d6fa76013d33d5a3c5f9b0fc382e90da34790764a0d17d6277fb","af7db74826f455bfef6a55a188eb6659fd85fdc16f720a89a515c48724ee4c42","d6ce98a960f1b99a72de771fb0ba773cb202c656b8483f22d47d01d68f59ea86","2a47dc4a362214f31689870f809c7d62024afb4297a37b22cb86f679c4d04088","42d907ac511459d7c4828ee4f3f81cc331a08dc98d7b3cb98e3ff5797c095d2e","63d010bff70619e0cdf7900e954a7e188d3175461182f887b869c312a77ecfbd","1452816d619e636de512ca98546aafb9a48382d570af1473f0432a9178c4b1ff","9e3e3932fe16b9288ec8c948048aef4edf1295b09a5412630d63f4a42265370e","8bdba132259883bac06056f7bacd29a4dcf07e3f14ce89edb022fe9b78dcf9b3","5a5406107d9949d83e1225273bcee1f559bb5588942907d923165d83251a0e37","ca0ca4ca5ad4772161ee2a99741d616fea780d777549ba9f05f4a24493ab44e1","e7ee7be996db0d7cce41a85e4cae3a5fc86cf26501ad94e0a20f8b6c1c55b2d4","72263ae386d6a49392a03bde2f88660625da1eca5df8d95120d8ccf507483d20","b498375d015f01585269588b6221008aae6f0c0dc53ead8796ace64bdfcf62ea","c37aa3657fa4d1e7d22565ae609b1370c6b92bafb8c92b914403d45f0e610ddc","34534c0ead52cc753bdfdd486430ef67f615ace54a4c0e5a3652b4116af84d6d","a1079b54643537f75fa4f4bb963d787a302bddbe3a6001c4b0a524b746e6a9de","7fc9b18b6aafa8a1fc1441670c6c9da63e3d7942c7f451300c48bafd988545e9","5dcd41aeb5f7119177adab46147589a1618f2b35bd976e6c3a20ec328f58d1bd","107b40e93c4161733d41c710e897ed21dc13996fb38e4da3bbbef94d130e9ada","655fb6112bfdd97351e7ad3b23c01c83b14d86491ff7f0adb68ba4aac816235d","624cd133bd577052da185db8ea37f6d44b1808f0b3b94ec36407fc55055fd88c","f301031a340f7fd0641a8a62c0dcbe97559855bc9d347cb2f733005a963ab66f","4005afd417aee97ad03be0bdca984392eca19e5f69e9b21f25b9bf10456ef4c8","334ee8abc7317ba9425254c3e2142b6aa4bff9544b6d6879a4905ae3fd7809cd","da483a71b86f77047a0bf52382359ef6f4c787aa7d7388287f1343f0c5e11df6","f4b3a7f3da8bc865fb45f5678a98c66e9c4f05233636b5ffa7e93e0b6149a7e7","f2a1220b9e7cb83b20723cb051df79c5d42fc225f38d5067353ea7f0b9dcfcfe","7e424af14dc0edeba55fe0424d303d2dfa2704ee8ecd1f59c2563d036ba77219",{"version":"f0e9582ccedc02ec2e1f1a67180ad0e1eba5229952c5e28373ed591069833beb","affectsGlobalScope":true},"ebb11e1c3b8d4a1c4300aa9b6f89990943de2e6d05589986a6b8ace43dbb4002",{"version":"c7805a25c6f87d4846484c45fcf0158db6639b751f29ed8a7fa3767d9fed28b6","affectsGlobalScope":true},"a9c38c0558b64b8919ee10bf38e7bfc694fab8a572c6ef410b8e6d382a14675a","88c96ac3783f83241e91e38c87b8bb5a85e22499ddf69aefdd3b5f5e9bc4a82d","012603f603e5521eae205501e1954aa94d32ca9d56879e540d586f00ca61a060","da1fd066e1e629b127562accabbb234187be6e31ba914fcd528c20b5fbba2cbd","5254c7eb26959d862d02fe22cf81fba42cc69e838df2200a826ef6276c51724a","618831709b8cfc18b25bf497e9c713ab29217c1df4089c199a38300c2267c411","f8d066ed09a0e333e14d5963561d0699f61b534d4c95526c8a0218719a647abb","282534d06201babdf61dc4ffe6e8682b6085d8d4b420b4c6226e6297080eeb52","a89dcecfc252440d43023ff12ed08eb644b2ebac4e4cb90c933f687032787d82","1338a88a9a3de326952a5e5aed43a8be7522f2e43cdf36814f5d641e632f954d","10bb8f5d76e2b36efbf61d821e14b16ee2eec7538948374910724d05174c7be7","1687cbce61b28be4ad5a815ab1637088d9fe3faa428ddf7d8b4fb3e2a236d456","a1f75866cc7cb23a7297275205d5ca9e31a13c5558fd33977745b0606a893a1e","9b558c17a3acd4194c99207cebfd9a389f21d79e6f3b5c96ba21698897a76b87","03d959cd2c259545afa4a381ccf215b1c66008a2348c0db85033101b8cab1080","61583eb129192ca2aabbc9372f0773ac89f8d6c3dc186560dfa75c8711895ec5","9b254fbe79b937512df7df2fa6d9410df3db138c761fbc8149c79300487bca3c","c28a44cb600b7737d3de6778dc191428f64666f7fb977bea659b4641348e98d4","0eb5344bc1a03b3420290c2e6d00a90e2976b9171eb6c4eace6ab208bcc6f7ef","dccf855c7e2d59ef6b0d18fbbf08d2cccbb49f61aa1a50b53a9bac4914ac3227","8c9d95d7978a39434e5ffbb773b0d09a4f37763acb47de693027852438aef873","0097e331e71cc93d99356c0643f867bfe9c626cfdc54740473e377da248940e8","2de5a450fc61279f92d53b26b250645c138bd9397eaa95d615cfb4f2c291c27b","0ce65cf5b36034006f2b315f379179f07bd5a6027f6538c7aed4ac5be6742fc7",{"version":"d986829b45b39bec6d65e343bf924e9d75cb4c0c1f69a7288c7d269b8c1f6290","affectsGlobalScope":true},"870050f5632fa286a3fffcf24ac496d72cea13787baf2ad5d9c28c8165fcddeb","97b39f33e966bcf9762bccdaca76c94825199f3fef153ebea9bdfd3fcd2413b6","78650a1b5800e82b6914260e9ca0fe9ea744e4333c3bec51b08f91525718d7fa","c41eff6b8e1f91104ae974ccd2bc37c723a462b30ca1df942b2c5b0158ef1df3","2e341737e0711c12040e83047487240b1693a6774253b8142d1a0500a805b7a1","e08e97c2865750e880fea09b150a702ccfa84163382daa0221f5597185a554bf","2f2cfea08a6fb75b878340af66cfaff37c5dec35d1c844e3c9eab5ff36dba323","4a1a19573176829708dc03efea508e7c364f6fa30098a5100bd9d93fc9cd38ee","8296198bc72e7ef2221b0e140738ce56004e8d1323cd08b0ac1a15295fe911b5","baeda1fadac9fd31920480b85340ab9c4266a25ad08403dee8e15fd0751101fb","12c4e8e811f4310b0dcaa3d1f843a35dc985f78941886cad4950453ad6753959","17f69594bc7be2023bb09b27d48e6d18606628e6ec20ff38e35cc75d6eb96998","8698062058cbdc84171bd576315a5eecab2bf46d7d034144653ae78864889683","b3e4f2772da66bac2144ca8cd63f70d211d2f970c93fcb789d03e8a046d47c93","a3586135924c800f21f739a1da43acace1acfdba124deb0871cbd6d04d7dfd1b","4062f2f8aa6942f60086c41261effce3f6f542031237a0fb649ca54c0e3f2ceb","4ec74fe565d13fd219884cfacf903c89477cc54148887e51c5bead4dae7dc4fd","499dfdb281e9db3c12298d66d7d77661240c986d3da27a92ea07473bb0d248bd","a46d8aa9e561fb135d253e1657a0cd0f6c18377676305eb0ca28e418358b229c","5a168a15e7a423011b10da472ee3b6d92b27227c192cdaf1e09b30f58806856d","ad107fa472d28e615af522b31653e75caad12b834b257c1a83f6c4acff2de9bf",{"version":"07cfc938dfbb5a7b5ba3c363366db93d5728b0fcad1aa08a12052a1b3b72817a","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","67cf04da598e6407427a17d828e9e02d8f5ae5a8466dc73d1585073b8dc29160","fa960168e0650a987d5738376a22a1969b5dff2112b9653f9f1efddf8ba7d5bb","140b05c89cbd5fc75c4e9c1780d85dfb4ea73a2b11dd345f8f944afd002ad74f","ece46d0e5702e9c269aa71b42d02c934c10d4d24545b1d8594a8115f23a9011f","5b0df2143d96172bf207ed187627e8c58b15a1a8f97bdbc2ede942b36b39fc98","dfa10c970bc18c29bb48de6704c9c32438c974f581f80cf04d63bc9ab38d0d2c","4ffc6b5b9366b25b55b54a7dfe89cfbcfcc264a1225113250fa6bcddd68a38ff","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5",{"version":"fd240b48ab1e78082c96c1faca62df02c0b8befa1fd98d031fab4f75c90feee6","affectsGlobalScope":true},"3d87bdaed72f86b91f99401e6e04729afbb5916064778cf324b3d9b51c3a6d91","8ca837d16a31d6d01b13328ca9e6a39e424b4bf294d3b73349dccacea51be730","a9d40247ec6c68a47effbb1d8acd8df288bcee7b6bf29c17cf4161e5ef609a0c","caf38c850b924a0af08a893d06f68fcae3d5a41780b50cc6df9481beeca8e9a3","7152c46a63e7f9ac7db6cd8d4dbf85d90f051a0db60e650573fae576580cbf9a","496370c58ed054e51a68517846c28a695bf84df2873556cca7fe51e297b32420",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"25ca51ea953e6312cfe3d1a28dfa6be44409c8fe73e07431c73b4f92919156ed","763e521cf114b80e0dd0e21ca49b9f8ae62e8999555a5e7bade8ce36b33001c2","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d982cdd2610155b3cbcbfa62ccabcf2d2b739f821518ef113348d160ef0010d9","ffcc5500e77223169833fc6eb59b3a507944a1f89574e0a1276b0ea7fc22c4a4","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","f72f8428f3c1caa22e9c247d046603b85b442c0dae7b77a7a0bc092c18867cb7",{"version":"195f63105abc03e72b6a176e3e34dfb5ac932b55db378fdc7874b1617e24b465","affectsGlobalScope":true}],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"removeComments":true,"sourceMap":true,"strict":true,"target":6,"useUnknownInCatchVariables":false},"fileIdsList":[[134,139],[134,136,139],[69,134,137,138],[134],[139,143],[69,134,136,139,140,141,142],[134,136,137,139],[137,138,139,140,141,142,143,144,149,150,151,152,153,154,155,156,157,158,159,160],[134,137,139,143],[134,138,139],[139],[134,138,143],[134,139,152],[134,135,137,138,141,143,144],[134,139,142,143,144,147],[161],[135,161],[134,147,160],[146],[134,139,140,144,147],[134,139,141,144,154],[139,143,147,158,161],[134,135,142,143,147,161],[139,144,185,193],[138],[135,139,140,142,144,168],[217],[219,222],[184,191,200],[176,184,191],[200],[182,184,191],[184],[184,200,206],[191,200,206],[184,185,186,191,200,203,206],[186,200,203,206],[172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213],[182,184,200],[174],[205],[198,207,209],[191,200],[191],[197,206],[184,185,200,209],[215,221],[43,135],[36,37,43,44],[45,109,110],[36,43,45],[37,45],[36,38,39,40,43,45,48,49],[39,50,64,65],[36,43,48,49,50],[36,38,43,45,47,48,49],[36,37,48,49,50],[35,51,56,63,66,67,108,111,133],[36],[37,41,42],[37,41,42,43,44,46,57,58,59,60,61,62],[37,42,43],[37],[36,37,42,43,45,58],[43],[37,43,44],[41,43],[50,64],[36,38,39,40,43,48],[36,43,46,49],[39,47,48,49,52,53,54,55],[49],[36,38,43,45,47,49],[45,48],[36,43,47,48,49,61],[45],[36,43,49],[37,43,48,59],[48,112],[45,49],[43,48],[48],[36,46],[36,43],[43,48,49],[68,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132],[48,49],[38,43],[36,38,43,49],[36,38,43],[36,43,45,47,48,49,61,68],[69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107],[61,69],[69],[36,43,45,48,68,69],[219],[216,220],[218]],"referencedMap":[[144,1],[137,2],[139,3],[136,1],[141,4],[157,5],[143,6],[155,7],[160,4],[154,7],[161,8],[152,9],[140,10],[142,11],[158,12],[156,13],[153,7],[150,11],[149,1],[145,14],[148,15],[162,16],[163,17],[164,18],[147,19],[165,20],[166,21],[167,22],[168,23],[169,24],[170,25],[171,26],[218,27],[223,28],[176,29],[177,30],[180,31],[181,32],[183,33],[184,33],[185,34],[186,35],[187,36],[188,37],[214,38],[189,33],[191,39],[194,40],[195,41],[198,33],[199,42],[200,33],[203,43],[205,44],[206,45],[208,31],[211,46],[212,31],[222,47],[135,48],[45,49],[111,50],[110,51],[109,52],[50,53],[66,54],[64,55],[65,56],[51,57],[134,58],[39,59],[43,60],[63,61],[58,62],[44,63],[59,64],[62,65],[57,66],[60,65],[61,67],[67,68],[49,69],[47,70],[56,71],[53,72],[52,72],[48,73],[54,74],[68,75],[130,76],[124,77],[117,78],[116,79],[125,80],[126,65],[118,81],[131,82],[112,83],[113,84],[114,85],[133,86],[115,79],[119,82],[120,87],[127,88],[128,63],[129,87],[121,85],[132,65],[122,89],[123,90],[69,91],[108,92],[72,93],[73,93],[74,93],[75,93],[76,93],[77,93],[78,93],[79,93],[98,93],[80,93],[81,93],[82,93],[83,93],[84,93],[85,93],[105,93],[86,93],[87,93],[88,93],[103,93],[89,93],[104,93],[90,93],[101,93],[102,93],[91,93],[92,93],[93,93],[99,93],[100,93],[94,93],[95,93],[96,93],[97,93],[106,93],[107,93],[71,94],[70,95],[220,96],[221,97],[219,98]],"exportedModulesMap":[[144,1],[137,2],[139,3],[136,1],[141,4],[157,5],[143,6],[155,7],[160,4],[154,7],[161,8],[152,9],[140,10],[142,11],[158,12],[156,13],[153,7],[150,11],[149,1],[145,14],[148,15],[162,16],[163,17],[164,18],[147,19],[165,20],[166,21],[167,22],[168,23],[169,24],[170,25],[171,26],[218,27],[223,28],[176,29],[177,30],[180,31],[181,32],[183,33],[184,33],[185,34],[186,35],[187,36],[188,37],[214,38],[189,33],[191,39],[194,40],[195,41],[198,33],[199,42],[200,33],[203,43],[205,44],[206,45],[208,31],[211,46],[212,31],[222,47],[135,48],[45,49],[111,50],[110,51],[109,52],[50,53],[66,54],[64,55],[65,56],[51,57],[134,58],[39,59],[43,60],[63,61],[58,62],[44,63],[59,64],[62,65],[57,66],[60,65],[61,67],[67,68],[49,69],[47,70],[56,71],[53,72],[52,72],[48,73],[54,74],[68,75],[130,76],[124,77],[117,78],[116,79],[125,80],[126,65],[118,81],[131,82],[112,83],[113,84],[114,85],[133,86],[115,79],[119,82],[120,87],[127,88],[128,63],[129,87],[121,85],[132,65],[122,89],[123,90],[69,91],[108,92],[72,93],[73,93],[74,93],[75,93],[76,93],[77,93],[78,93],[79,93],[98,93],[80,93],[81,93],[82,93],[83,93],[84,93],[85,93],[105,93],[86,93],[87,93],[88,93],[103,93],[89,93],[104,93],[90,93],[101,93],[102,93],[91,93],[92,93],[93,93],[99,93],[100,93],[94,93],[95,93],[96,93],[97,93],[106,93],[107,93],[71,94],[70,95],[220,96],[221,97],[219,98]],"semanticDiagnosticsPerFile":[144,137,151,139,136,141,157,143,155,160,154,161,152,140,142,158,159,156,153,150,138,149,145,148,162,163,164,147,146,165,166,167,168,169,170,171,215,218,217,223,172,174,175,176,177,178,179,180,181,182,183,184,185,173,213,186,187,188,214,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,216,222,135,45,111,110,109,50,66,64,65,51,134,36,38,39,40,43,46,63,41,58,44,59,62,57,60,37,42,61,67,55,49,47,56,53,52,48,54,68,130,124,117,116,125,126,118,131,112,113,114,133,115,119,120,127,128,129,121,132,122,123,69,108,72,73,74,75,76,77,78,79,98,80,81,82,83,84,85,105,86,87,88,103,89,104,90,101,102,91,92,93,99,100,94,95,96,97,106,107,71,70,35,220,221,219,7,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,33,1,34],"affectedFilesPendingEmit":[[144,1],[137,1],[151,1],[139,1],[136,1],[141,1],[157,1],[143,1],[155,1],[160,1],[154,1],[161,1],[152,1],[140,1],[142,1],[158,1],[159,1],[156,1],[153,1],[150,1],[138,1],[149,1],[145,1],[148,1],[162,1],[163,1],[164,1],[147,1],[146,1],[165,1],[166,1],[167,1],[168,1],[169,1],[170,1],[171,1],[215,1],[218,1],[217,1],[223,1],[172,1],[174,1],[175,1],[176,1],[177,1],[178,1],[179,1],[180,1],[181,1],[182,1],[183,1],[184,1],[185,1],[173,1],[213,1],[186,1],[187,1],[188,1],[214,1],[189,1],[190,1],[191,1],[192,1],[193,1],[194,1],[195,1],[196,1],[197,1],[198,1],[199,1],[200,1],[201,1],[202,1],[203,1],[204,1],[205,1],[206,1],[207,1],[208,1],[209,1],[210,1],[211,1],[212,1],[216,1],[222,1],[135,1],[45,1],[111,1],[110,1],[109,1],[50,1],[66,1],[64,1],[65,1],[51,1],[134,1],[36,1],[38,1],[39,1],[40,1],[43,1],[46,1],[63,1],[41,1],[58,1],[44,1],[59,1],[62,1],[57,1],[60,1],[37,1],[42,1],[61,1],[67,1],[55,1],[49,1],[47,1],[56,1],[53,1],[52,1],[48,1],[54,1],[68,1],[130,1],[124,1],[117,1],[116,1],[125,1],[126,1],[118,1],[131,1],[112,1],[113,1],[114,1],[133,1],[115,1],[119,1],[120,1],[127,1],[128,1],[129,1],[121,1],[132,1],[122,1],[123,1],[69,1],[108,1],[72,1],[73,1],[74,1],[75,1],[76,1],[77,1],[78,1],[79,1],[98,1],[80,1],[81,1],[82,1],[83,1],[84,1],[85,1],[105,1],[86,1],[87,1],[88,1],[103,1],[89,1],[104,1],[90,1],[101,1],[102,1],[91,1],[92,1],[93,1],[99,1],[100,1],[94,1],[95,1],[96,1],[97,1],[106,1],[107,1],[71,1],[70,1],[35,1],[220,1],[221,1],[219,1],[2,1],[3,1],[4,1],[5,1],[6,1]],"emitSignatures":[145,146,147,148,162,163,164,165,166,167,168,169,170,171]},"version":"4.8.2"}
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/graphql/version.d.ts","../node_modules/graphql/jsutils/Maybe.d.ts","../node_modules/graphql/language/source.d.ts","../node_modules/graphql/jsutils/ObjMap.d.ts","../node_modules/graphql/jsutils/Path.d.ts","../node_modules/graphql/jsutils/PromiseOrValue.d.ts","../node_modules/graphql/language/kinds.d.ts","../node_modules/graphql/language/tokenKind.d.ts","../node_modules/graphql/language/ast.d.ts","../node_modules/graphql/language/location.d.ts","../node_modules/graphql/error/GraphQLError.d.ts","../node_modules/graphql/language/directiveLocation.d.ts","../node_modules/graphql/type/directives.d.ts","../node_modules/graphql/type/schema.d.ts","../node_modules/graphql/type/definition.d.ts","../node_modules/graphql/execution/execute.d.ts","../node_modules/graphql/graphql.d.ts","../node_modules/graphql/type/scalars.d.ts","../node_modules/graphql/type/introspection.d.ts","../node_modules/graphql/type/validate.d.ts","../node_modules/graphql/type/assertName.d.ts","../node_modules/graphql/type/index.d.ts","../node_modules/graphql/language/printLocation.d.ts","../node_modules/graphql/language/lexer.d.ts","../node_modules/graphql/language/parser.d.ts","../node_modules/graphql/language/printer.d.ts","../node_modules/graphql/language/visitor.d.ts","../node_modules/graphql/language/predicates.d.ts","../node_modules/graphql/language/index.d.ts","../node_modules/graphql/execution/subscribe.d.ts","../node_modules/graphql/execution/values.d.ts","../node_modules/graphql/execution/index.d.ts","../node_modules/graphql/subscription/index.d.ts","../node_modules/graphql/utilities/TypeInfo.d.ts","../node_modules/graphql/validation/ValidationContext.d.ts","../node_modules/graphql/validation/validate.d.ts","../node_modules/graphql/validation/specifiedRules.d.ts","../node_modules/graphql/validation/rules/ExecutableDefinitionsRule.d.ts","../node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.d.ts","../node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.d.ts","../node_modules/graphql/validation/rules/KnownArgumentNamesRule.d.ts","../node_modules/graphql/validation/rules/KnownDirectivesRule.d.ts","../node_modules/graphql/validation/rules/KnownFragmentNamesRule.d.ts","../node_modules/graphql/validation/rules/KnownTypeNamesRule.d.ts","../node_modules/graphql/validation/rules/LoneAnonymousOperationRule.d.ts","../node_modules/graphql/validation/rules/NoFragmentCyclesRule.d.ts","../node_modules/graphql/validation/rules/NoUndefinedVariablesRule.d.ts","../node_modules/graphql/validation/rules/NoUnusedFragmentsRule.d.ts","../node_modules/graphql/validation/rules/NoUnusedVariablesRule.d.ts","../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.d.ts","../node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.d.ts","../node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.d.ts","../node_modules/graphql/validation/rules/ScalarLeafsRule.d.ts","../node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.d.ts","../node_modules/graphql/validation/rules/UniqueArgumentNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.d.ts","../node_modules/graphql/validation/rules/UniqueFragmentNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueOperationNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueVariableNamesRule.d.ts","../node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.d.ts","../node_modules/graphql/validation/rules/VariablesAreInputTypesRule.d.ts","../node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.d.ts","../node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.d.ts","../node_modules/graphql/validation/rules/UniqueOperationTypesRule.d.ts","../node_modules/graphql/validation/rules/UniqueTypeNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueArgumentDefinitionNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.d.ts","../node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.d.ts","../node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.d.ts","../node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.d.ts","../node_modules/graphql/validation/index.d.ts","../node_modules/graphql/error/syntaxError.d.ts","../node_modules/graphql/error/locatedError.d.ts","../node_modules/graphql/error/index.d.ts","../node_modules/graphql/utilities/getIntrospectionQuery.d.ts","../node_modules/graphql/utilities/getOperationAST.d.ts","../node_modules/graphql/utilities/getOperationRootType.d.ts","../node_modules/graphql/utilities/introspectionFromSchema.d.ts","../node_modules/graphql/utilities/buildClientSchema.d.ts","../node_modules/graphql/utilities/buildASTSchema.d.ts","../node_modules/graphql/utilities/extendSchema.d.ts","../node_modules/graphql/utilities/lexicographicSortSchema.d.ts","../node_modules/graphql/utilities/printSchema.d.ts","../node_modules/graphql/utilities/typeFromAST.d.ts","../node_modules/graphql/utilities/valueFromAST.d.ts","../node_modules/graphql/utilities/valueFromASTUntyped.d.ts","../node_modules/graphql/utilities/astFromValue.d.ts","../node_modules/graphql/utilities/coerceInputValue.d.ts","../node_modules/graphql/utilities/concatAST.d.ts","../node_modules/graphql/utilities/separateOperations.d.ts","../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts","../node_modules/graphql/utilities/typeComparators.d.ts","../node_modules/graphql/utilities/assertValidName.d.ts","../node_modules/graphql/utilities/findBreakingChanges.d.ts","../node_modules/graphql/utilities/typedQueryDocumentNode.d.ts","../node_modules/graphql/utilities/index.d.ts","../node_modules/graphql/index.d.ts","../node_modules/graphql-tag/lib/index.d.ts","./dist/directiveAndTypeSpecification.d.ts","./dist/coreSpec.d.ts","./dist/utils.d.ts","./dist/definitions.d.ts","./dist/operations.d.ts","./dist/error.d.ts","./dist/print.d.ts","./dist/federation.d.ts","./dist/buildSchema.d.ts","./src/__tests__/coreSpec.test.ts","./src/__tests__/matchers/toMatchString.ts","./src/__tests__/matchers/index.ts","./src/__tests__/definitions.test.ts","./dist/values.d.ts","./dist/types.d.ts","./dist/debug.d.ts","./dist/joinSpec.d.ts","./dist/tagSpec.d.ts","./dist/inaccessibleSpec.d.ts","./dist/federationSpec.d.ts","./dist/supergraphs.d.ts","./dist/extractSubgraphsFromSupergraph.d.ts","./dist/schemaUpgrader.d.ts","./dist/suggestions.d.ts","./dist/graphQLJSSchemaToAST.d.ts","./dist/index.d.ts","./src/__tests__/extractSubgraphsFromSupergraph.test.ts","./src/__tests__/federation.test.ts","./src/__tests__/graphQLJSSchemaToAST.test.ts","./src/__tests__/operations.test.ts","./src/__tests__/removeInaccessibleElements.test.ts","./src/__tests__/schemaUpgrader.test.ts","./src/__tests__/subgraphValidation.test.ts","./src/__tests__/toAPISchema.test.ts","./src/__tests__/utils.test.ts","./src/__tests__/values.test.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"78647004e18e4c16b8a2e8345fca9267573d1c5a29e11ddfee71858fd077ef6e","0804044cd0488cb7212ddbc1d0f8e1a5bd32970335dbfc613052304a1b0318f9","b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","85084ae98c1d319e38ef99b1216d3372a9afd7a368022c01c3351b339d52cb58","898ec2410fae172e0a9416448b0838bed286322a5c0c8959e8e39400cd4c5697","692345a43bac37c507fa7065c554258435ab821bbe4fb44b513a70063e932b45","cddd50d7bd9d7fddda91a576db9f61655d1a55e2d870f154485812f6e39d4c15","0539583b089247b73a21eb4a5f7e43208a129df6300d6b829dc1039b79b6c8c4","7aba43bc7764fcd02232382c780c3e99ef8dbfdac3c58605a0b3781fab3d8044","522edc786ed48304671b935cf7d3ed63acc6636ab9888c6e130b97a6aea92b46","1e1ed5600d80406a10428e349af8b6f09949cd5054043ea8588903e8f9e8d705","de21641eb8edcbc08dd0db4ee70eea907cd07fe72267340b5571c92647f10a77","a53039ba614075aeb702271701981babbd0d4f4dcbf319ddee4c08fb8196cc7a","6758f7b72fa4d38f4f4b865516d3d031795c947a45cc24f2cfba43c91446d678","da679a5bb46df3c6d84f637f09e6689d6c2d07e907ea16adc161e4529a4954d6","dc1a664c33f6ddd2791569999db2b3a476e52c5eeb5474768ffa542b136d78c0","bdf7abbd7df4f29b3e0728684c790e80590b69d92ed8d3bf8e66d4bd713941fe","8decb32fc5d44b403b46c3bb4741188df4fbc3c66d6c65669000c5c9cd506523","4beaf337ee755b8c6115ff8a17e22ceab986b588722a52c776b8834af64e0f38","c26dd198f2793bbdcc55103823a2767d6223a7fdb92486c18b86deaf63208354","93551b302a808f226f0846ad8012354f2d53d6dedc33b540d6ca69836781a574","f0ff1c010d5046af3874d3b4df746c6f3921e4b3fbdec61dee0792fc0cb36ccd","778b684ebc6b006fcffeab77d25b34bf6e400100e0ec0c76056e165c6399ab05","463851fa993af55fb0296e0d6afa27407ef91bf6917098dd665aba1200d250c7","67c6de7a9c490bda48eb401bea93904b6bbfc60e47427e887e6a3da6195540be","be8f369f8d7e887eab87a3e4e41f1afcf61bf06056801383152aa83bda1f6a72","352bfb5f3a9d8a9c2464ad2dc0b2dc56a8212650a541fb550739c286dd341de1","a5aae636d9afdacb22d98e4242487436d8296e5a345348325ccc68481fe1b690","d007c769e33e72e51286b816d82cd7c3a280cba714e7f958691155068bd7150a","764150c107451d2fd5b6de305cff0a9dcecf799e08e6f14b5a6748724db46d8a","b04cf223c338c09285010f5308b980ee6d8bfa203824ed2537516f15e92e8c43","4b387f208d1e468193a45a51005b1ed5b666010fc22a15dc1baf4234078b636e","70441eda704feffd132be0c1541f2c7f6bbaafce25cb9b54b181e26af3068e79","d1addb12403afea87a1603121396261a45190886c486c88e1a5d456be17c2049","15d43873064dc8787ca1e4c39149be59183c404d48a8cd5a0ea019bb5fdf8d58","ea4b5d319625203a5a96897b057fddf6017d0f9a902c16060466fe69cc007243","3d06897c536b4aad2b2b015d529270439f2cadd89ca2ff7bd8898ee84898dd88","ab01d8fcb89fae8eda22075153053fefac69f7d9571a389632099e7a53f1922d","bac0ec1f4c61abc7c54ccebb0f739acb0cdbc22b1b19c91854dc142019492961","566b0806f9016fa067b7fecf3951fcc295c30127e5141223393bde16ad04aa4a","8e801abfeda45b1b93e599750a0a8d25074d30d4cc01e3563e56c0ff70edeb68","902997f91b09620835afd88e292eb217fbd55d01706b82b9a014ff408f357559","a3727a926e697919fb59407938bd8573964b3bf543413b685996a47df5645863","83f36c0792d352f641a213ee547d21ea02084a148355aa26b6ef82c4f61c1280","dce7d69c17a438554c11bbf930dec2bee5b62184c0494d74da336daee088ab69","1e8f2cda9735002728017933c54ccea7ebee94b9c68a59a4aac1c9a58aa7da7d","e327a2b222cf9e5c93d7c1ed6468ece2e7b9d738e5da04897f1a99f49d42cca1","65165246b59654ec4e1501dd87927a0ef95d57359709e00e95d1154ad8443bc7","f1bacba19e2fa2eb26c499e36b5ab93d6764f2dba44be3816f12d2bc9ac9a35b","bce38da5fd851520d0cb4d1e6c3c04968cec2faa674ed321c118e97e59872edc","3398f46037f21fb6c33560ceca257259bd6d2ea03737179b61ea9e17cbe07455","6e14fc6c27cb2cb203fe1727bb3a923588f0be8c2604673ad9f879182548daca","12b9bcf8395d33837f301a8e6d545a24dfff80db9e32f8e8e6cf4b11671bb442","04295cc38689e32a4ea194c954ea6604e6afb6f1c102104f74737cb8cf744422","7418f434c136734b23f634e711cf44613ca4c74e63a5ae7429acaee46c7024c8","27d40290b7caba1c04468f2b53cf7112f247f8acdd7c20589cd7decf9f762ad0","2608b8b83639baf3f07316df29202eead703102f1a7e32f74a1b18cf1eee54b5","c93657567a39bd589effe89e863aaadbc339675fca6805ae4d97eafbcce0a05d","909d5db5b3b19f03dfb4a8f1d00cf41d2f679857c28775faf1f10794cbbe9db9","e4504bffce13574bab83ab900b843590d85a0fd38faab7eff83d84ec55de4aff","8ab707f3c833fc1e8a51106b8746c8bc0ce125083ea6200ad881625ae35ce11e","730ddc2386276ac66312edbcc60853fedbb1608a99cb0b1ff82ebf26911dba1f","c1b3fa201aa037110c43c05ea97800eb66fea3f2ecc5f07c6fd47f2b6b5b21d2","636b44188dc6eb326fd566085e6c1c6035b71f839d62c343c299a35888c6f0a9","3b2105bf9823b53c269cabb38011c5a71360c8daabc618fec03102c9514d230c","f96e63eb56e736304c3aef6c745b9fe93db235ddd1fec10b45319c479de1a432","acb4f3cee79f38ceba975e7ee3114eb5cd96ccc02742b0a4c7478b4619f87cd6","cfc85d17c1493b6217bad9052a8edc332d1fde81a919228edab33c14aa762939","eebda441c4486c26de7a8a7343ebbc361d2b0109abff34c2471e45e34a93020a","727b4b8eb62dd98fa4e3a0937172c1a0041eb715b9071c3de96dad597deddcab","708e2a347a1b9868ccdb48f3e43647c6eccec47b8591b220afcafc9e7eeb3784","6bb598e2d45a170f302f113a5b68e518c8d7661ae3b59baf076be9120afa4813","c28e058db8fed2c81d324546f53d2a7aaefff380cbe70f924276dbad89acd7d1","ebe8f07bb402102c5a764b0f8e34bd92d6f50bd7ac61a2452e76b80e02f9bb4b","826a98cb79deab45ccc4e5a8b90fa64510b2169781a7cbb83c4a0a8867f4cc58","618189f94a473b7fdc5cb5ba8b94d146a0d58834cd77cd24d56995f41643ccd5","5baadaca408128671536b3cb77fea44330e169ada70ce50b902c8d992fe64cf1","a4cc469f3561ea3edc57e091f4c9dcaf7485a70d3836be23a6945db46f0acd0b","91b0965538a5eaafa8c09cf9f62b46d6125aa1b3c0e0629dce871f5f41413f90","2978e33a00b4b5fb98337c5e473ab7337030b2f69d1480eccef0290814af0d51","ba71e9777cb5460e3278f0934fd6354041cb25853feca542312807ce1f18e611","608dbaf8c8bb64f4024013e73d7107c16dba4664999a8c6e58f3e71545e48f66","61937cefd7f4d6fa76013d33d5a3c5f9b0fc382e90da34790764a0d17d6277fb","af7db74826f455bfef6a55a188eb6659fd85fdc16f720a89a515c48724ee4c42","d6ce98a960f1b99a72de771fb0ba773cb202c656b8483f22d47d01d68f59ea86","2a47dc4a362214f31689870f809c7d62024afb4297a37b22cb86f679c4d04088","42d907ac511459d7c4828ee4f3f81cc331a08dc98d7b3cb98e3ff5797c095d2e","63d010bff70619e0cdf7900e954a7e188d3175461182f887b869c312a77ecfbd","1452816d619e636de512ca98546aafb9a48382d570af1473f0432a9178c4b1ff","9e3e3932fe16b9288ec8c948048aef4edf1295b09a5412630d63f4a42265370e","8bdba132259883bac06056f7bacd29a4dcf07e3f14ce89edb022fe9b78dcf9b3","5a5406107d9949d83e1225273bcee1f559bb5588942907d923165d83251a0e37","ca0ca4ca5ad4772161ee2a99741d616fea780d777549ba9f05f4a24493ab44e1","e7ee7be996db0d7cce41a85e4cae3a5fc86cf26501ad94e0a20f8b6c1c55b2d4","72263ae386d6a49392a03bde2f88660625da1eca5df8d95120d8ccf507483d20","b498375d015f01585269588b6221008aae6f0c0dc53ead8796ace64bdfcf62ea","c37aa3657fa4d1e7d22565ae609b1370c6b92bafb8c92b914403d45f0e610ddc","34534c0ead52cc753bdfdd486430ef67f615ace54a4c0e5a3652b4116af84d6d","a1079b54643537f75fa4f4bb963d787a302bddbe3a6001c4b0a524b746e6a9de","7fc9b18b6aafa8a1fc1441670c6c9da63e3d7942c7f451300c48bafd988545e9","5dcd41aeb5f7119177adab46147589a1618f2b35bd976e6c3a20ec328f58d1bd","107b40e93c4161733d41c710e897ed21dc13996fb38e4da3bbbef94d130e9ada","655fb6112bfdd97351e7ad3b23c01c83b14d86491ff7f0adb68ba4aac816235d","624cd133bd577052da185db8ea37f6d44b1808f0b3b94ec36407fc55055fd88c","f301031a340f7fd0641a8a62c0dcbe97559855bc9d347cb2f733005a963ab66f","948bcc32b6cf9eadac51c988779faea20cc25e5b61a67d32b8ba86253e404850","a8f0ab4471dcaf35b13192f54a72653e778b8416998608eb0d724c4f981a83de","da483a71b86f77047a0bf52382359ef6f4c787aa7d7388287f1343f0c5e11df6","9ec74d91ea795cae99ce53e3785e32f1405e5b068b8fb3cb23384304d2dbb57a","f2a1220b9e7cb83b20723cb051df79c5d42fc225f38d5067353ea7f0b9dcfcfe","7e424af14dc0edeba55fe0424d303d2dfa2704ee8ecd1f59c2563d036ba77219",{"version":"f0e9582ccedc02ec2e1f1a67180ad0e1eba5229952c5e28373ed591069833beb","affectsGlobalScope":true},"ebb11e1c3b8d4a1c4300aa9b6f89990943de2e6d05589986a6b8ace43dbb4002",{"version":"c7805a25c6f87d4846484c45fcf0158db6639b751f29ed8a7fa3767d9fed28b6","affectsGlobalScope":true},"a9c38c0558b64b8919ee10bf38e7bfc694fab8a572c6ef410b8e6d382a14675a","88c96ac3783f83241e91e38c87b8bb5a85e22499ddf69aefdd3b5f5e9bc4a82d","012603f603e5521eae205501e1954aa94d32ca9d56879e540d586f00ca61a060","da1fd066e1e629b127562accabbb234187be6e31ba914fcd528c20b5fbba2cbd","5254c7eb26959d862d02fe22cf81fba42cc69e838df2200a826ef6276c51724a","618831709b8cfc18b25bf497e9c713ab29217c1df4089c199a38300c2267c411","f8d066ed09a0e333e14d5963561d0699f61b534d4c95526c8a0218719a647abb","282534d06201babdf61dc4ffe6e8682b6085d8d4b420b4c6226e6297080eeb52","a89dcecfc252440d43023ff12ed08eb644b2ebac4e4cb90c933f687032787d82","1338a88a9a3de326952a5e5aed43a8be7522f2e43cdf36814f5d641e632f954d","10bb8f5d76e2b36efbf61d821e14b16ee2eec7538948374910724d05174c7be7","1687cbce61b28be4ad5a815ab1637088d9fe3faa428ddf7d8b4fb3e2a236d456","a1f75866cc7cb23a7297275205d5ca9e31a13c5558fd33977745b0606a893a1e","9b558c17a3acd4194c99207cebfd9a389f21d79e6f3b5c96ba21698897a76b87","03d959cd2c259545afa4a381ccf215b1c66008a2348c0db85033101b8cab1080","61583eb129192ca2aabbc9372f0773ac89f8d6c3dc186560dfa75c8711895ec5","9b254fbe79b937512df7df2fa6d9410df3db138c761fbc8149c79300487bca3c","c28a44cb600b7737d3de6778dc191428f64666f7fb977bea659b4641348e98d4","0eb5344bc1a03b3420290c2e6d00a90e2976b9171eb6c4eace6ab208bcc6f7ef","6c3dadb19d0c76272e8cfc9374f1eee3f7dca3f6d7ca7c854d3565ac2981ae5d","8c9d95d7978a39434e5ffbb773b0d09a4f37763acb47de693027852438aef873","0097e331e71cc93d99356c0643f867bfe9c626cfdc54740473e377da248940e8","2de5a450fc61279f92d53b26b250645c138bd9397eaa95d615cfb4f2c291c27b","0ce65cf5b36034006f2b315f379179f07bd5a6027f6538c7aed4ac5be6742fc7",{"version":"d986829b45b39bec6d65e343bf924e9d75cb4c0c1f69a7288c7d269b8c1f6290","affectsGlobalScope":true},"870050f5632fa286a3fffcf24ac496d72cea13787baf2ad5d9c28c8165fcddeb","97b39f33e966bcf9762bccdaca76c94825199f3fef153ebea9bdfd3fcd2413b6","78650a1b5800e82b6914260e9ca0fe9ea744e4333c3bec51b08f91525718d7fa","c41eff6b8e1f91104ae974ccd2bc37c723a462b30ca1df942b2c5b0158ef1df3","2e341737e0711c12040e83047487240b1693a6774253b8142d1a0500a805b7a1","e08e97c2865750e880fea09b150a702ccfa84163382daa0221f5597185a554bf","2f2cfea08a6fb75b878340af66cfaff37c5dec35d1c844e3c9eab5ff36dba323","4a1a19573176829708dc03efea508e7c364f6fa30098a5100bd9d93fc9cd38ee","8296198bc72e7ef2221b0e140738ce56004e8d1323cd08b0ac1a15295fe911b5","baeda1fadac9fd31920480b85340ab9c4266a25ad08403dee8e15fd0751101fb","12c4e8e811f4310b0dcaa3d1f843a35dc985f78941886cad4950453ad6753959","17f69594bc7be2023bb09b27d48e6d18606628e6ec20ff38e35cc75d6eb96998","8698062058cbdc84171bd576315a5eecab2bf46d7d034144653ae78864889683","b3e4f2772da66bac2144ca8cd63f70d211d2f970c93fcb789d03e8a046d47c93","a3586135924c800f21f739a1da43acace1acfdba124deb0871cbd6d04d7dfd1b","4062f2f8aa6942f60086c41261effce3f6f542031237a0fb649ca54c0e3f2ceb","4ec74fe565d13fd219884cfacf903c89477cc54148887e51c5bead4dae7dc4fd","499dfdb281e9db3c12298d66d7d77661240c986d3da27a92ea07473bb0d248bd","a46d8aa9e561fb135d253e1657a0cd0f6c18377676305eb0ca28e418358b229c","5a168a15e7a423011b10da472ee3b6d92b27227c192cdaf1e09b30f58806856d","ad107fa472d28e615af522b31653e75caad12b834b257c1a83f6c4acff2de9bf",{"version":"07cfc938dfbb5a7b5ba3c363366db93d5728b0fcad1aa08a12052a1b3b72817a","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","67cf04da598e6407427a17d828e9e02d8f5ae5a8466dc73d1585073b8dc29160","fa960168e0650a987d5738376a22a1969b5dff2112b9653f9f1efddf8ba7d5bb","140b05c89cbd5fc75c4e9c1780d85dfb4ea73a2b11dd345f8f944afd002ad74f","ece46d0e5702e9c269aa71b42d02c934c10d4d24545b1d8594a8115f23a9011f","5b0df2143d96172bf207ed187627e8c58b15a1a8f97bdbc2ede942b36b39fc98","dfa10c970bc18c29bb48de6704c9c32438c974f581f80cf04d63bc9ab38d0d2c","4ffc6b5b9366b25b55b54a7dfe89cfbcfcc264a1225113250fa6bcddd68a38ff","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5",{"version":"fd240b48ab1e78082c96c1faca62df02c0b8befa1fd98d031fab4f75c90feee6","affectsGlobalScope":true},"3d87bdaed72f86b91f99401e6e04729afbb5916064778cf324b3d9b51c3a6d91","8ca837d16a31d6d01b13328ca9e6a39e424b4bf294d3b73349dccacea51be730","a9d40247ec6c68a47effbb1d8acd8df288bcee7b6bf29c17cf4161e5ef609a0c","caf38c850b924a0af08a893d06f68fcae3d5a41780b50cc6df9481beeca8e9a3","7152c46a63e7f9ac7db6cd8d4dbf85d90f051a0db60e650573fae576580cbf9a","496370c58ed054e51a68517846c28a695bf84df2873556cca7fe51e297b32420",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"25ca51ea953e6312cfe3d1a28dfa6be44409c8fe73e07431c73b4f92919156ed","763e521cf114b80e0dd0e21ca49b9f8ae62e8999555a5e7bade8ce36b33001c2","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d982cdd2610155b3cbcbfa62ccabcf2d2b739f821518ef113348d160ef0010d9","ffcc5500e77223169833fc6eb59b3a507944a1f89574e0a1276b0ea7fc22c4a4","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","f72f8428f3c1caa22e9c247d046603b85b442c0dae7b77a7a0bc092c18867cb7",{"version":"195f63105abc03e72b6a176e3e34dfb5ac932b55db378fdc7874b1617e24b465","affectsGlobalScope":true}],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"removeComments":true,"sourceMap":true,"strict":true,"target":6,"useUnknownInCatchVariables":false},"fileIdsList":[[134,139],[134,136,139],[69,134,137,138],[134],[139,143],[69,134,136,139,140,141,142],[134,136,137,139],[137,138,139,140,141,142,143,144,149,150,151,152,153,154,155,156,157,158,159,160],[134,137,139,143],[134,138,139],[139],[134,138,143],[134,139,152],[134,135,137,138,141,143,144],[134,139,142,143,144,147],[161],[135,161],[134,147,160],[146],[134,139,140,144,147],[134,139,141,144,154],[139,143,147,158,161],[134,135,142,143,147,161],[139,144,185,193],[138],[135,139,140,142,144,168],[217],[219,222],[184,191,200],[176,184,191],[200],[182,184,191],[184],[184,200,206],[191,200,206],[184,185,186,191,200,203,206],[186,200,203,206],[172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213],[182,184,200],[174],[205],[198,207,209],[191,200],[191],[197,206],[184,185,200,209],[215,221],[43,135],[36,37,43,44],[45,109,110],[36,43,45],[37,45],[36,38,39,40,43,45,48,49],[39,50,64,65],[36,43,48,49,50],[36,38,43,45,47,48,49],[36,37,48,49,50],[35,51,56,63,66,67,108,111,133],[36],[37,41,42],[37,41,42,43,44,46,57,58,59,60,61,62],[37,42,43],[37],[36,37,42,43,45,58],[43],[37,43,44],[41,43],[50,64],[36,38,39,40,43,48],[36,43,46,49],[39,47,48,49,52,53,54,55],[49],[36,38,43,45,47,49],[45,48],[36,43,47,48,49,61],[45],[36,43,49],[37,43,48,59],[48,112],[45,49],[43,48],[48],[36,46],[36,43],[43,48,49],[68,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132],[48,49],[38,43],[36,38,43,49],[36,38,43],[36,43,45,47,48,49,61,68],[69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107],[61,69],[69],[36,43,45,48,68,69],[219],[216,220],[218]],"referencedMap":[[144,1],[137,2],[139,3],[136,1],[141,4],[157,5],[143,6],[155,7],[160,4],[154,7],[161,8],[152,9],[140,10],[142,11],[158,12],[156,13],[153,7],[150,11],[149,1],[145,14],[148,15],[162,16],[163,17],[164,18],[147,19],[165,20],[166,21],[167,22],[168,23],[169,24],[170,25],[171,26],[218,27],[223,28],[176,29],[177,30],[180,31],[181,32],[183,33],[184,33],[185,34],[186,35],[187,36],[188,37],[214,38],[189,33],[191,39],[194,40],[195,41],[198,33],[199,42],[200,33],[203,43],[205,44],[206,45],[208,31],[211,46],[212,31],[222,47],[135,48],[45,49],[111,50],[110,51],[109,52],[50,53],[66,54],[64,55],[65,56],[51,57],[134,58],[39,59],[43,60],[63,61],[58,62],[44,63],[59,64],[62,65],[57,66],[60,65],[61,67],[67,68],[49,69],[47,70],[56,71],[53,72],[52,72],[48,73],[54,74],[68,75],[130,76],[124,77],[117,78],[116,79],[125,80],[126,65],[118,81],[131,82],[112,83],[113,84],[114,85],[133,86],[115,79],[119,82],[120,87],[127,88],[128,63],[129,87],[121,85],[132,65],[122,89],[123,90],[69,91],[108,92],[72,93],[73,93],[74,93],[75,93],[76,93],[77,93],[78,93],[79,93],[98,93],[80,93],[81,93],[82,93],[83,93],[84,93],[85,93],[105,93],[86,93],[87,93],[88,93],[103,93],[89,93],[104,93],[90,93],[101,93],[102,93],[91,93],[92,93],[93,93],[99,93],[100,93],[94,93],[95,93],[96,93],[97,93],[106,93],[107,93],[71,94],[70,95],[220,96],[221,97],[219,98]],"exportedModulesMap":[[144,1],[137,2],[139,3],[136,1],[141,4],[157,5],[143,6],[155,7],[160,4],[154,7],[161,8],[152,9],[140,10],[142,11],[158,12],[156,13],[153,7],[150,11],[149,1],[145,14],[148,15],[162,16],[163,17],[164,18],[147,19],[165,20],[166,21],[167,22],[168,23],[169,24],[170,25],[171,26],[218,27],[223,28],[176,29],[177,30],[180,31],[181,32],[183,33],[184,33],[185,34],[186,35],[187,36],[188,37],[214,38],[189,33],[191,39],[194,40],[195,41],[198,33],[199,42],[200,33],[203,43],[205,44],[206,45],[208,31],[211,46],[212,31],[222,47],[135,48],[45,49],[111,50],[110,51],[109,52],[50,53],[66,54],[64,55],[65,56],[51,57],[134,58],[39,59],[43,60],[63,61],[58,62],[44,63],[59,64],[62,65],[57,66],[60,65],[61,67],[67,68],[49,69],[47,70],[56,71],[53,72],[52,72],[48,73],[54,74],[68,75],[130,76],[124,77],[117,78],[116,79],[125,80],[126,65],[118,81],[131,82],[112,83],[113,84],[114,85],[133,86],[115,79],[119,82],[120,87],[127,88],[128,63],[129,87],[121,85],[132,65],[122,89],[123,90],[69,91],[108,92],[72,93],[73,93],[74,93],[75,93],[76,93],[77,93],[78,93],[79,93],[98,93],[80,93],[81,93],[82,93],[83,93],[84,93],[85,93],[105,93],[86,93],[87,93],[88,93],[103,93],[89,93],[104,93],[90,93],[101,93],[102,93],[91,93],[92,93],[93,93],[99,93],[100,93],[94,93],[95,93],[96,93],[97,93],[106,93],[107,93],[71,94],[70,95],[220,96],[221,97],[219,98]],"semanticDiagnosticsPerFile":[144,137,151,139,136,141,157,143,155,160,154,161,152,140,142,158,159,156,153,150,138,149,145,148,162,163,164,147,146,165,166,167,168,169,170,171,215,218,217,223,172,174,175,176,177,178,179,180,181,182,183,184,185,173,213,186,187,188,214,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,216,222,135,45,111,110,109,50,66,64,65,51,134,36,38,39,40,43,46,63,41,58,44,59,62,57,60,37,42,61,67,55,49,47,56,53,52,48,54,68,130,124,117,116,125,126,118,131,112,113,114,133,115,119,120,127,128,129,121,132,122,123,69,108,72,73,74,75,76,77,78,79,98,80,81,82,83,84,85,105,86,87,88,103,89,104,90,101,102,91,92,93,99,100,94,95,96,97,106,107,71,70,35,220,221,219,7,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,33,1,34],"affectedFilesPendingEmit":[[144,1],[137,1],[151,1],[139,1],[136,1],[141,1],[157,1],[143,1],[155,1],[160,1],[154,1],[161,1],[152,1],[140,1],[142,1],[158,1],[159,1],[156,1],[153,1],[150,1],[138,1],[149,1],[145,1],[148,1],[162,1],[163,1],[164,1],[147,1],[146,1],[165,1],[166,1],[167,1],[168,1],[169,1],[170,1],[171,1],[215,1],[218,1],[217,1],[223,1],[172,1],[174,1],[175,1],[176,1],[177,1],[178,1],[179,1],[180,1],[181,1],[182,1],[183,1],[184,1],[185,1],[173,1],[213,1],[186,1],[187,1],[188,1],[214,1],[189,1],[190,1],[191,1],[192,1],[193,1],[194,1],[195,1],[196,1],[197,1],[198,1],[199,1],[200,1],[201,1],[202,1],[203,1],[204,1],[205,1],[206,1],[207,1],[208,1],[209,1],[210,1],[211,1],[212,1],[216,1],[222,1],[135,1],[45,1],[111,1],[110,1],[109,1],[50,1],[66,1],[64,1],[65,1],[51,1],[134,1],[36,1],[38,1],[39,1],[40,1],[43,1],[46,1],[63,1],[41,1],[58,1],[44,1],[59,1],[62,1],[57,1],[60,1],[37,1],[42,1],[61,1],[67,1],[55,1],[49,1],[47,1],[56,1],[53,1],[52,1],[48,1],[54,1],[68,1],[130,1],[124,1],[117,1],[116,1],[125,1],[126,1],[118,1],[131,1],[112,1],[113,1],[114,1],[133,1],[115,1],[119,1],[120,1],[127,1],[128,1],[129,1],[121,1],[132,1],[122,1],[123,1],[69,1],[108,1],[72,1],[73,1],[74,1],[75,1],[76,1],[77,1],[78,1],[79,1],[98,1],[80,1],[81,1],[82,1],[83,1],[84,1],[85,1],[105,1],[86,1],[87,1],[88,1],[103,1],[89,1],[104,1],[90,1],[101,1],[102,1],[91,1],[92,1],[93,1],[99,1],[100,1],[94,1],[95,1],[96,1],[97,1],[106,1],[107,1],[71,1],[70,1],[35,1],[220,1],[221,1],[219,1],[2,1],[3,1],[4,1],[5,1],[6,1]],"emitSignatures":[145,146,147,148,162,163,164,165,166,167,168,169,170,171]},"version":"4.8.2"}
|