@redocly/openapi-core 1.0.0-beta.106 → 1.0.0-beta.107
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/lib/config/minimal.js +2 -1
- package/lib/config/recommended.js +2 -1
- package/lib/config/utils.js +2 -2
- package/lib/rules/ajv.d.ts +1 -1
- package/lib/rules/ajv.js +6 -6
- package/lib/rules/common/no-invalid-parameter-examples.js +3 -3
- package/lib/rules/common/no-invalid-schema-examples.js +3 -3
- package/lib/rules/oas3/no-invalid-media-type-examples.js +2 -2
- package/lib/rules/utils.d.ts +2 -1
- package/lib/rules/utils.js +15 -3
- package/lib/utils.d.ts +2 -0
- package/lib/utils.js +10 -1
- package/lib/walk.d.ts +2 -1
- package/lib/walk.js +6 -3
- package/package.json +2 -2
- package/src/config/__tests__/__snapshots__/config-resolvers.test.ts.snap +2 -0
- package/src/config/minimal.ts +2 -1
- package/src/config/recommended.ts +2 -1
- package/src/config/utils.ts +8 -8
- package/src/rules/__tests__/utils.test.ts +39 -1
- package/src/rules/ajv.ts +6 -6
- package/src/rules/common/no-invalid-parameter-examples.ts +4 -4
- package/src/rules/common/no-invalid-schema-examples.ts +4 -4
- package/src/rules/oas3/__tests__/no-invalid-media-type-examples.test.ts +5 -5
- package/src/rules/oas3/no-invalid-media-type-examples.ts +3 -3
- package/src/rules/utils.ts +16 -2
- package/src/utils.ts +13 -0
- package/src/walk.ts +15 -11
- package/tsconfig.tsbuildinfo +1 -1
package/lib/config/minimal.js
CHANGED
|
@@ -36,7 +36,7 @@ exports.default = {
|
|
|
36
36
|
oas3_0Rules: {
|
|
37
37
|
'no-invalid-media-type-examples': {
|
|
38
38
|
severity: 'warn',
|
|
39
|
-
|
|
39
|
+
allowAdditionalProperties: false,
|
|
40
40
|
},
|
|
41
41
|
'no-server-example.com': 'warn',
|
|
42
42
|
'no-server-trailing-slash': 'error',
|
|
@@ -47,6 +47,7 @@ exports.default = {
|
|
|
47
47
|
'no-servers-empty-enum': 'error',
|
|
48
48
|
},
|
|
49
49
|
oas3_1Rules: {
|
|
50
|
+
'no-invalid-media-type-examples': 'warn',
|
|
50
51
|
'no-server-example.com': 'warn',
|
|
51
52
|
'no-server-trailing-slash': 'error',
|
|
52
53
|
'no-empty-servers': 'warn',
|
|
@@ -36,7 +36,7 @@ exports.default = {
|
|
|
36
36
|
oas3_0Rules: {
|
|
37
37
|
'no-invalid-media-type-examples': {
|
|
38
38
|
severity: 'warn',
|
|
39
|
-
|
|
39
|
+
allowAdditionalProperties: false,
|
|
40
40
|
},
|
|
41
41
|
'no-server-example.com': 'warn',
|
|
42
42
|
'no-server-trailing-slash': 'error',
|
|
@@ -47,6 +47,7 @@ exports.default = {
|
|
|
47
47
|
'no-servers-empty-enum': 'error',
|
|
48
48
|
},
|
|
49
49
|
oas3_1Rules: {
|
|
50
|
+
'no-invalid-media-type-examples': 'warn',
|
|
50
51
|
'no-server-example.com': 'warn',
|
|
51
52
|
'no-server-trailing-slash': 'error',
|
|
52
53
|
'no-empty-servers': 'error',
|
package/lib/config/utils.js
CHANGED
|
@@ -131,10 +131,10 @@ function checkForDeprecatedFields(deprecatedField, updatedField, rawConfig) {
|
|
|
131
131
|
const isDeprecatedFieldInApis = rawConfig.apis &&
|
|
132
132
|
Object.values(rawConfig.apis).some((api) => api[deprecatedField]);
|
|
133
133
|
if (rawConfig[deprecatedField] && rawConfig[updatedField]) {
|
|
134
|
-
|
|
134
|
+
utils_1.showErrorForDeprecatedField(deprecatedField, updatedField);
|
|
135
135
|
}
|
|
136
136
|
if (rawConfig[deprecatedField] || isDeprecatedFieldInApis) {
|
|
137
|
-
|
|
137
|
+
utils_1.showWarningForDeprecatedField(deprecatedField, updatedField);
|
|
138
138
|
}
|
|
139
139
|
}
|
|
140
140
|
function transformConfig(rawConfig) {
|
package/lib/rules/ajv.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { ErrorObject } from '@redocly/ajv';
|
|
|
2
2
|
import { Location } from '../ref-utils';
|
|
3
3
|
import { ResolveFn } from '../walk';
|
|
4
4
|
export declare function releaseAjvInstance(): void;
|
|
5
|
-
export declare function validateJsonSchema(data: any, schema: any, schemaLoc: Location, instancePath: string, resolve: ResolveFn,
|
|
5
|
+
export declare function validateJsonSchema(data: any, schema: any, schemaLoc: Location, instancePath: string, resolve: ResolveFn, allowAdditionalProperties: boolean): {
|
|
6
6
|
valid: boolean;
|
|
7
7
|
errors: (ErrorObject & {
|
|
8
8
|
suggest?: string[];
|
package/lib/rules/ajv.js
CHANGED
|
@@ -8,7 +8,7 @@ function releaseAjvInstance() {
|
|
|
8
8
|
ajvInstance = null;
|
|
9
9
|
}
|
|
10
10
|
exports.releaseAjvInstance = releaseAjvInstance;
|
|
11
|
-
function getAjv(resolve,
|
|
11
|
+
function getAjv(resolve, allowAdditionalProperties) {
|
|
12
12
|
if (!ajvInstance) {
|
|
13
13
|
ajvInstance = new ajv_1.default({
|
|
14
14
|
schemaId: '$id',
|
|
@@ -20,7 +20,7 @@ function getAjv(resolve, disallowAdditionalProperties) {
|
|
|
20
20
|
discriminator: true,
|
|
21
21
|
allowUnionTypes: true,
|
|
22
22
|
validateFormats: false,
|
|
23
|
-
defaultAdditionalProperties:
|
|
23
|
+
defaultAdditionalProperties: allowAdditionalProperties,
|
|
24
24
|
loadSchemaSync(base, $ref) {
|
|
25
25
|
const resolvedRef = resolve({ $ref }, base.split('#')[0]);
|
|
26
26
|
if (!resolvedRef || !resolvedRef.location)
|
|
@@ -32,15 +32,15 @@ function getAjv(resolve, disallowAdditionalProperties) {
|
|
|
32
32
|
}
|
|
33
33
|
return ajvInstance;
|
|
34
34
|
}
|
|
35
|
-
function getAjvValidator(schema, loc, resolve,
|
|
36
|
-
const ajv = getAjv(resolve,
|
|
35
|
+
function getAjvValidator(schema, loc, resolve, allowAdditionalProperties) {
|
|
36
|
+
const ajv = getAjv(resolve, allowAdditionalProperties);
|
|
37
37
|
if (!ajv.getSchema(loc.absolutePointer)) {
|
|
38
38
|
ajv.addSchema(Object.assign({ $id: loc.absolutePointer }, schema), loc.absolutePointer);
|
|
39
39
|
}
|
|
40
40
|
return ajv.getSchema(loc.absolutePointer);
|
|
41
41
|
}
|
|
42
|
-
function validateJsonSchema(data, schema, schemaLoc, instancePath, resolve,
|
|
43
|
-
const validate = getAjvValidator(schema, schemaLoc, resolve,
|
|
42
|
+
function validateJsonSchema(data, schema, schemaLoc, instancePath, resolve, allowAdditionalProperties) {
|
|
43
|
+
const validate = getAjvValidator(schema, schemaLoc, resolve, allowAdditionalProperties);
|
|
44
44
|
if (!validate)
|
|
45
45
|
return { valid: true, errors: [] }; // unresolved refs are reported
|
|
46
46
|
const valid = validate(data, {
|
|
@@ -4,17 +4,17 @@ exports.NoInvalidParameterExamples = void 0;
|
|
|
4
4
|
const utils_1 = require("../utils");
|
|
5
5
|
const NoInvalidParameterExamples = (opts) => {
|
|
6
6
|
var _a;
|
|
7
|
-
const
|
|
7
|
+
const allowAdditionalProperties = (_a = utils_1.getAdditionalPropertiesOption(opts)) !== null && _a !== void 0 ? _a : false;
|
|
8
8
|
return {
|
|
9
9
|
Parameter: {
|
|
10
10
|
leave(parameter, ctx) {
|
|
11
11
|
if (parameter.example) {
|
|
12
|
-
utils_1.validateExample(parameter.example, parameter.schema, ctx.location.child('example'), ctx,
|
|
12
|
+
utils_1.validateExample(parameter.example, parameter.schema, ctx.location.child('example'), ctx, allowAdditionalProperties);
|
|
13
13
|
}
|
|
14
14
|
if (parameter.examples) {
|
|
15
15
|
for (const [key, example] of Object.entries(parameter.examples)) {
|
|
16
16
|
if ('value' in example) {
|
|
17
|
-
utils_1.validateExample(example.value, parameter.schema, ctx.location.child(['examples', key]), ctx,
|
|
17
|
+
utils_1.validateExample(example.value, parameter.schema, ctx.location.child(['examples', key]), ctx, true);
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
20
|
}
|
|
@@ -4,17 +4,17 @@ exports.NoInvalidSchemaExamples = void 0;
|
|
|
4
4
|
const utils_1 = require("../utils");
|
|
5
5
|
const NoInvalidSchemaExamples = (opts) => {
|
|
6
6
|
var _a;
|
|
7
|
-
const
|
|
7
|
+
const allowAdditionalProperties = (_a = utils_1.getAdditionalPropertiesOption(opts)) !== null && _a !== void 0 ? _a : false;
|
|
8
8
|
return {
|
|
9
9
|
Schema: {
|
|
10
10
|
leave(schema, ctx) {
|
|
11
11
|
if (schema.examples) {
|
|
12
12
|
for (const example of schema.examples) {
|
|
13
|
-
utils_1.validateExample(example, schema, ctx.location.child(['examples', schema.examples.indexOf(example)]), ctx,
|
|
13
|
+
utils_1.validateExample(example, schema, ctx.location.child(['examples', schema.examples.indexOf(example)]), ctx, allowAdditionalProperties);
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
16
|
if (schema.example) {
|
|
17
|
-
utils_1.validateExample(schema.example, schema, ctx.location.child('example'), ctx,
|
|
17
|
+
utils_1.validateExample(schema.example, schema, ctx.location.child('example'), ctx, true);
|
|
18
18
|
}
|
|
19
19
|
},
|
|
20
20
|
},
|
|
@@ -5,7 +5,7 @@ const ref_utils_1 = require("../../ref-utils");
|
|
|
5
5
|
const utils_1 = require("../utils");
|
|
6
6
|
const ValidContentExamples = (opts) => {
|
|
7
7
|
var _a;
|
|
8
|
-
const
|
|
8
|
+
const allowAdditionalProperties = (_a = utils_1.getAdditionalPropertiesOption(opts)) !== null && _a !== void 0 ? _a : false;
|
|
9
9
|
return {
|
|
10
10
|
MediaType: {
|
|
11
11
|
leave(mediaType, ctx) {
|
|
@@ -28,7 +28,7 @@ const ValidContentExamples = (opts) => {
|
|
|
28
28
|
location = isMultiple ? resolved.location.child('value') : resolved.location;
|
|
29
29
|
example = resolved.node;
|
|
30
30
|
}
|
|
31
|
-
utils_1.validateExample(isMultiple ? example.value : example, mediaType.schema, location, ctx,
|
|
31
|
+
utils_1.validateExample(isMultiple ? example.value : example, mediaType.schema, location, ctx, allowAdditionalProperties);
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
},
|
package/lib/rules/utils.d.ts
CHANGED
|
@@ -14,4 +14,5 @@ export declare function missingRequiredField(type: string, field: string): strin
|
|
|
14
14
|
export declare function fieldNonEmpty(type: string, field: string): string;
|
|
15
15
|
export declare function validateDefinedAndNonEmpty(fieldName: string, value: any, ctx: UserContext): void;
|
|
16
16
|
export declare function getSuggest(given: string, variants: string[]): string[];
|
|
17
|
-
export declare function validateExample(example: any, schema: Referenced<Oas3Schema>, dataLoc: Location, { resolve, location, report }: UserContext,
|
|
17
|
+
export declare function validateExample(example: any, schema: Referenced<Oas3Schema>, dataLoc: Location, { resolve, location, report }: UserContext, allowAdditionalProperties: boolean): void;
|
|
18
|
+
export declare function getAdditionalPropertiesOption(opts: Record<string, any>): boolean;
|
package/lib/rules/utils.js
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.validateExample = exports.getSuggest = exports.validateDefinedAndNonEmpty = exports.fieldNonEmpty = exports.missingRequiredField = exports.matchesJsonSchemaType = exports.oasTypeOf = void 0;
|
|
3
|
+
exports.getAdditionalPropertiesOption = exports.validateExample = exports.getSuggest = exports.validateDefinedAndNonEmpty = exports.fieldNonEmpty = exports.missingRequiredField = exports.matchesJsonSchemaType = exports.oasTypeOf = void 0;
|
|
4
4
|
const levenshtein = require("js-levenshtein");
|
|
5
5
|
const ref_utils_1 = require("../ref-utils");
|
|
6
6
|
const ajv_1 = require("./ajv");
|
|
7
|
+
const utils_1 = require("../utils");
|
|
7
8
|
function oasTypeOf(value) {
|
|
8
9
|
if (Array.isArray(value)) {
|
|
9
10
|
return 'array';
|
|
@@ -85,9 +86,9 @@ function getSuggest(given, variants) {
|
|
|
85
86
|
return distances.map((d) => d.variant);
|
|
86
87
|
}
|
|
87
88
|
exports.getSuggest = getSuggest;
|
|
88
|
-
function validateExample(example, schema, dataLoc, { resolve, location, report },
|
|
89
|
+
function validateExample(example, schema, dataLoc, { resolve, location, report }, allowAdditionalProperties) {
|
|
89
90
|
try {
|
|
90
|
-
const { valid, errors } = ajv_1.validateJsonSchema(example, schema, location.child('schema'), dataLoc.pointer, resolve,
|
|
91
|
+
const { valid, errors } = ajv_1.validateJsonSchema(example, schema, location.child('schema'), dataLoc.pointer, resolve, allowAdditionalProperties);
|
|
91
92
|
if (!valid) {
|
|
92
93
|
for (let error of errors) {
|
|
93
94
|
report({
|
|
@@ -108,3 +109,14 @@ function validateExample(example, schema, dataLoc, { resolve, location, report }
|
|
|
108
109
|
}
|
|
109
110
|
}
|
|
110
111
|
exports.validateExample = validateExample;
|
|
112
|
+
function getAdditionalPropertiesOption(opts) {
|
|
113
|
+
if (opts.disallowAdditionalProperties === undefined) {
|
|
114
|
+
return opts.allowAdditionalProperties;
|
|
115
|
+
}
|
|
116
|
+
if (opts.allowAdditionalProperties !== undefined) {
|
|
117
|
+
utils_1.showErrorForDeprecatedField('disallowAdditionalProperties', 'allowAdditionalProperties');
|
|
118
|
+
}
|
|
119
|
+
utils_1.showWarningForDeprecatedField('disallowAdditionalProperties', 'allowAdditionalProperties');
|
|
120
|
+
return !opts.disallowAdditionalProperties;
|
|
121
|
+
}
|
|
122
|
+
exports.getAdditionalPropertiesOption = getAdditionalPropertiesOption;
|
package/lib/utils.d.ts
CHANGED
|
@@ -41,3 +41,5 @@ export declare function assignExisting<T>(target: Record<string, T>, obj: Record
|
|
|
41
41
|
export declare function getMatchingStatusCodeRange(code: number | string): string;
|
|
42
42
|
export declare function isCustomRuleId(id: string): boolean;
|
|
43
43
|
export declare function doesYamlFileExist(filePath: string): boolean;
|
|
44
|
+
export declare function showWarningForDeprecatedField(deprecatedField: string, updatedField: string): void;
|
|
45
|
+
export declare function showErrorForDeprecatedField(deprecatedField: string, updatedField: string): void;
|
package/lib/utils.js
CHANGED
|
@@ -9,7 +9,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
9
9
|
});
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.doesYamlFileExist = exports.isCustomRuleId = exports.getMatchingStatusCodeRange = exports.assignExisting = exports.isNotString = exports.isString = exports.isNotEmptyObject = exports.slash = exports.isPathParameter = exports.readFileAsStringSync = exports.isSingular = exports.validateMimeTypeOAS3 = exports.validateMimeType = exports.splitCamelCaseIntoWords = exports.omitObjectProps = exports.pickObjectProps = exports.readFileFromUrl = exports.isEmptyArray = exports.isEmptyObject = exports.isPlainObject = exports.notUndefined = exports.loadYaml = exports.popStack = exports.pushStack = exports.stringifyYaml = exports.parseYaml = void 0;
|
|
12
|
+
exports.showErrorForDeprecatedField = exports.showWarningForDeprecatedField = exports.doesYamlFileExist = exports.isCustomRuleId = exports.getMatchingStatusCodeRange = exports.assignExisting = exports.isNotString = exports.isString = exports.isNotEmptyObject = exports.slash = exports.isPathParameter = exports.readFileAsStringSync = exports.isSingular = exports.validateMimeTypeOAS3 = exports.validateMimeType = exports.splitCamelCaseIntoWords = exports.omitObjectProps = exports.pickObjectProps = exports.readFileFromUrl = exports.isEmptyArray = exports.isEmptyObject = exports.isPlainObject = exports.notUndefined = exports.loadYaml = exports.popStack = exports.pushStack = exports.stringifyYaml = exports.parseYaml = void 0;
|
|
13
13
|
const fs = require("fs");
|
|
14
14
|
const path_1 = require("path");
|
|
15
15
|
const minimatch = require("minimatch");
|
|
@@ -17,6 +17,7 @@ const node_fetch_1 = require("node-fetch");
|
|
|
17
17
|
const pluralize = require("pluralize");
|
|
18
18
|
const js_yaml_1 = require("./js-yaml");
|
|
19
19
|
const config_1 = require("./config");
|
|
20
|
+
const colorette_1 = require("colorette");
|
|
20
21
|
var js_yaml_2 = require("./js-yaml");
|
|
21
22
|
Object.defineProperty(exports, "parseYaml", { enumerable: true, get: function () { return js_yaml_2.parseYaml; } });
|
|
22
23
|
Object.defineProperty(exports, "stringifyYaml", { enumerable: true, get: function () { return js_yaml_2.stringifyYaml; } });
|
|
@@ -188,3 +189,11 @@ function doesYamlFileExist(filePath) {
|
|
|
188
189
|
fs.existsSync(filePath));
|
|
189
190
|
}
|
|
190
191
|
exports.doesYamlFileExist = doesYamlFileExist;
|
|
192
|
+
function showWarningForDeprecatedField(deprecatedField, updatedField) {
|
|
193
|
+
process.stderr.write(`The ${colorette_1.yellow(deprecatedField)} field is deprecated. Use ${colorette_1.green(updatedField)} instead. Read more about this change: https://redocly.com/docs/api-registry/guides/migration-guide-config-file/#changed-properties\n`);
|
|
194
|
+
}
|
|
195
|
+
exports.showWarningForDeprecatedField = showWarningForDeprecatedField;
|
|
196
|
+
function showErrorForDeprecatedField(deprecatedField, updatedField) {
|
|
197
|
+
throw new Error(`Do not use '${deprecatedField}' field. Use '${updatedField}' instead.\n`);
|
|
198
|
+
}
|
|
199
|
+
exports.showErrorForDeprecatedField = showErrorForDeprecatedField;
|
package/lib/walk.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { NormalizedOasVisitors } from './visitors';
|
|
|
4
4
|
import { ResolvedRefMap, Document, ResolveError, YamlParseError, Source } from './resolve';
|
|
5
5
|
import { OasVersion } from './oas-types';
|
|
6
6
|
import { NormalizedNodeType } from './types';
|
|
7
|
+
import type { RuleSeverity } from './config';
|
|
7
8
|
declare type NonUndefined = string | number | boolean | symbol | bigint | object | Record<string, any>;
|
|
8
9
|
export declare type ResolveResult<T extends NonUndefined> = {
|
|
9
10
|
node: T;
|
|
@@ -49,7 +50,7 @@ export declare type Problem = {
|
|
|
49
50
|
suggest?: string[];
|
|
50
51
|
location?: Partial<LocationObject> | Array<Partial<LocationObject>>;
|
|
51
52
|
from?: LocationObject;
|
|
52
|
-
forceSeverity?:
|
|
53
|
+
forceSeverity?: RuleSeverity;
|
|
53
54
|
ruleId?: string;
|
|
54
55
|
};
|
|
55
56
|
export declare type NormalizedProblem = {
|
package/lib/walk.js
CHANGED
|
@@ -249,9 +249,12 @@ function walkDocument(opts) {
|
|
|
249
249
|
? opts.location
|
|
250
250
|
: [opts.location]
|
|
251
251
|
: [Object.assign(Object.assign({}, currentLocation), { reportOnKey: false })];
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
})
|
|
252
|
+
const ruleSeverity = opts.forceSeverity || severity;
|
|
253
|
+
if (ruleSeverity !== 'off') {
|
|
254
|
+
ctx.problems.push(Object.assign(Object.assign({ ruleId: opts.ruleId || ruleId, severity: ruleSeverity }, opts), { suggest: opts.suggest || [], location: loc.map((loc) => {
|
|
255
|
+
return Object.assign(Object.assign(Object.assign({}, currentLocation), { reportOnKey: false }), loc);
|
|
256
|
+
}) }));
|
|
257
|
+
}
|
|
255
258
|
}
|
|
256
259
|
function getVisitorDataFn(ruleId) {
|
|
257
260
|
ctx.visitorsData[ruleId] = ctx.visitorsData[ruleId] || {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@redocly/openapi-core",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.107",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"engines": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"Andriy Leliv <andriy@redoc.ly> (https://redoc.ly/)"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@redocly/ajv": "^8.6.
|
|
37
|
+
"@redocly/ajv": "^8.6.5",
|
|
38
38
|
"@types/node": "^14.11.8",
|
|
39
39
|
"colorette": "^1.2.0",
|
|
40
40
|
"js-levenshtein": "^1.1.6",
|
|
@@ -24,6 +24,7 @@ Object {
|
|
|
24
24
|
"oas3_1Rules": Object {
|
|
25
25
|
"no-empty-servers": "error",
|
|
26
26
|
"no-example-value-and-externalValue": "error",
|
|
27
|
+
"no-invalid-media-type-examples": "error",
|
|
27
28
|
"no-server-example.com": "warn",
|
|
28
29
|
"no-server-trailing-slash": "error",
|
|
29
30
|
"no-servers-empty-enum": "error",
|
|
@@ -94,6 +95,7 @@ Object {
|
|
|
94
95
|
"oas3_1Rules": Object {
|
|
95
96
|
"no-empty-servers": "error",
|
|
96
97
|
"no-example-value-and-externalValue": "error",
|
|
98
|
+
"no-invalid-media-type-examples": "warn",
|
|
97
99
|
"no-server-example.com": "warn",
|
|
98
100
|
"no-server-trailing-slash": "error",
|
|
99
101
|
"no-servers-empty-enum": "error",
|
package/src/config/minimal.ts
CHANGED
|
@@ -36,7 +36,7 @@ export default {
|
|
|
36
36
|
oas3_0Rules: {
|
|
37
37
|
'no-invalid-media-type-examples': {
|
|
38
38
|
severity: 'warn',
|
|
39
|
-
|
|
39
|
+
allowAdditionalProperties: false,
|
|
40
40
|
},
|
|
41
41
|
'no-server-example.com': 'warn',
|
|
42
42
|
'no-server-trailing-slash': 'error',
|
|
@@ -47,6 +47,7 @@ export default {
|
|
|
47
47
|
'no-servers-empty-enum': 'error',
|
|
48
48
|
},
|
|
49
49
|
oas3_1Rules: {
|
|
50
|
+
'no-invalid-media-type-examples': 'warn',
|
|
50
51
|
'no-server-example.com': 'warn',
|
|
51
52
|
'no-server-trailing-slash': 'error',
|
|
52
53
|
'no-empty-servers': 'warn',
|
|
@@ -36,7 +36,7 @@ export default {
|
|
|
36
36
|
oas3_0Rules: {
|
|
37
37
|
'no-invalid-media-type-examples': {
|
|
38
38
|
severity: 'warn',
|
|
39
|
-
|
|
39
|
+
allowAdditionalProperties: false,
|
|
40
40
|
},
|
|
41
41
|
'no-server-example.com': 'warn',
|
|
42
42
|
'no-server-trailing-slash': 'error',
|
|
@@ -47,6 +47,7 @@ export default {
|
|
|
47
47
|
'no-servers-empty-enum': 'error',
|
|
48
48
|
},
|
|
49
49
|
oas3_1Rules: {
|
|
50
|
+
'no-invalid-media-type-examples': 'warn',
|
|
50
51
|
'no-server-example.com': 'warn',
|
|
51
52
|
'no-server-trailing-slash': 'error',
|
|
52
53
|
'no-empty-servers': 'error',
|
package/src/config/utils.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { yellow } from 'colorette';
|
|
2
|
+
import {
|
|
3
|
+
assignExisting,
|
|
4
|
+
showErrorForDeprecatedField,
|
|
5
|
+
showWarningForDeprecatedField,
|
|
6
|
+
} from '../utils';
|
|
3
7
|
import { Config } from './config';
|
|
4
8
|
|
|
5
9
|
import type {
|
|
@@ -171,15 +175,11 @@ function checkForDeprecatedFields(
|
|
|
171
175
|
);
|
|
172
176
|
|
|
173
177
|
if (rawConfig[deprecatedField] && rawConfig[updatedField]) {
|
|
174
|
-
|
|
178
|
+
showErrorForDeprecatedField(deprecatedField, updatedField);
|
|
175
179
|
}
|
|
176
180
|
|
|
177
181
|
if (rawConfig[deprecatedField] || isDeprecatedFieldInApis) {
|
|
178
|
-
|
|
179
|
-
`The ${yellow(deprecatedField)} field is deprecated. Use ${green(
|
|
180
|
-
updatedField
|
|
181
|
-
)} instead. Read more about this change: https://redocly.com/docs/api-registry/guides/migration-guide-config-file/#changed-properties\n`
|
|
182
|
-
);
|
|
182
|
+
showWarningForDeprecatedField(deprecatedField, updatedField);
|
|
183
183
|
}
|
|
184
184
|
}
|
|
185
185
|
|
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
fieldNonEmpty,
|
|
3
|
+
matchesJsonSchemaType,
|
|
4
|
+
missingRequiredField,
|
|
5
|
+
oasTypeOf,
|
|
6
|
+
getAdditionalPropertiesOption,
|
|
7
|
+
} from '../utils';
|
|
2
8
|
|
|
3
9
|
describe('field-non-empty', () => {
|
|
4
10
|
it('should match expected message', () => {
|
|
@@ -120,3 +126,35 @@ describe('oas-type-of', () => {
|
|
|
120
126
|
expect(results).toBe('object');
|
|
121
127
|
});
|
|
122
128
|
});
|
|
129
|
+
|
|
130
|
+
describe('get-additional-properties-option', () => {
|
|
131
|
+
it('should return actual option', () => {
|
|
132
|
+
const options = {
|
|
133
|
+
allowAdditionalProperties: true,
|
|
134
|
+
};
|
|
135
|
+
expect(getAdditionalPropertiesOption(options)).toBeTruthy();
|
|
136
|
+
});
|
|
137
|
+
|
|
138
|
+
it('should reverse option', () => {
|
|
139
|
+
const options = {
|
|
140
|
+
disallowAdditionalProperties: true,
|
|
141
|
+
};
|
|
142
|
+
expect(getAdditionalPropertiesOption(options)).toBeFalsy();
|
|
143
|
+
});
|
|
144
|
+
|
|
145
|
+
it('should throw error with message', () => {
|
|
146
|
+
const options = {
|
|
147
|
+
allowAdditionalProperties: true,
|
|
148
|
+
disallowAdditionalProperties: false,
|
|
149
|
+
};
|
|
150
|
+
|
|
151
|
+
try {
|
|
152
|
+
getAdditionalPropertiesOption(options);
|
|
153
|
+
} catch (error) {
|
|
154
|
+
expect(error).toBeInstanceOf(Error);
|
|
155
|
+
expect(error.message).toEqual(
|
|
156
|
+
"Do not use 'disallowAdditionalProperties' field. Use 'allowAdditionalProperties' instead.\n"
|
|
157
|
+
);
|
|
158
|
+
}
|
|
159
|
+
});
|
|
160
|
+
});
|
package/src/rules/ajv.ts
CHANGED
|
@@ -8,7 +8,7 @@ export function releaseAjvInstance() {
|
|
|
8
8
|
ajvInstance = null;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
function getAjv(resolve: ResolveFn,
|
|
11
|
+
function getAjv(resolve: ResolveFn, allowAdditionalProperties: boolean) {
|
|
12
12
|
if (!ajvInstance) {
|
|
13
13
|
ajvInstance = new Ajv({
|
|
14
14
|
schemaId: '$id',
|
|
@@ -20,7 +20,7 @@ function getAjv(resolve: ResolveFn, disallowAdditionalProperties: boolean) {
|
|
|
20
20
|
discriminator: true,
|
|
21
21
|
allowUnionTypes: true,
|
|
22
22
|
validateFormats: false, // TODO: fix it
|
|
23
|
-
defaultAdditionalProperties:
|
|
23
|
+
defaultAdditionalProperties: allowAdditionalProperties,
|
|
24
24
|
loadSchemaSync(base: string, $ref: string) {
|
|
25
25
|
const resolvedRef = resolve({ $ref }, base.split('#')[0]);
|
|
26
26
|
if (!resolvedRef || !resolvedRef.location) return false;
|
|
@@ -36,9 +36,9 @@ function getAjvValidator(
|
|
|
36
36
|
schema: any,
|
|
37
37
|
loc: Location,
|
|
38
38
|
resolve: ResolveFn,
|
|
39
|
-
|
|
39
|
+
allowAdditionalProperties: boolean
|
|
40
40
|
): ValidateFunction | undefined {
|
|
41
|
-
const ajv = getAjv(resolve,
|
|
41
|
+
const ajv = getAjv(resolve, allowAdditionalProperties);
|
|
42
42
|
|
|
43
43
|
if (!ajv.getSchema(loc.absolutePointer)) {
|
|
44
44
|
ajv.addSchema({ $id: loc.absolutePointer, ...schema }, loc.absolutePointer);
|
|
@@ -53,9 +53,9 @@ export function validateJsonSchema(
|
|
|
53
53
|
schemaLoc: Location,
|
|
54
54
|
instancePath: string,
|
|
55
55
|
resolve: ResolveFn,
|
|
56
|
-
|
|
56
|
+
allowAdditionalProperties: boolean
|
|
57
57
|
): { valid: boolean; errors: (ErrorObject & { suggest?: string[] })[] } {
|
|
58
|
-
const validate = getAjvValidator(schema, schemaLoc, resolve,
|
|
58
|
+
const validate = getAjvValidator(schema, schemaLoc, resolve, allowAdditionalProperties);
|
|
59
59
|
if (!validate) return { valid: true, errors: [] }; // unresolved refs are reported
|
|
60
60
|
|
|
61
61
|
const valid = validate(data, {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { UserContext } from '../../walk';
|
|
2
2
|
import { Oas3Parameter } from '../../typings/openapi';
|
|
3
|
-
import { validateExample } from '../utils';
|
|
3
|
+
import { getAdditionalPropertiesOption, validateExample } from '../utils';
|
|
4
4
|
|
|
5
5
|
export const NoInvalidParameterExamples: any = (opts: any) => {
|
|
6
|
-
const
|
|
6
|
+
const allowAdditionalProperties = getAdditionalPropertiesOption(opts) ?? false;
|
|
7
7
|
return {
|
|
8
8
|
Parameter: {
|
|
9
9
|
leave(parameter: Oas3Parameter, ctx: UserContext) {
|
|
@@ -13,7 +13,7 @@ export const NoInvalidParameterExamples: any = (opts: any) => {
|
|
|
13
13
|
parameter.schema!,
|
|
14
14
|
ctx.location.child('example'),
|
|
15
15
|
ctx,
|
|
16
|
-
|
|
16
|
+
allowAdditionalProperties
|
|
17
17
|
);
|
|
18
18
|
}
|
|
19
19
|
|
|
@@ -25,7 +25,7 @@ export const NoInvalidParameterExamples: any = (opts: any) => {
|
|
|
25
25
|
parameter.schema!,
|
|
26
26
|
ctx.location.child(['examples', key]),
|
|
27
27
|
ctx,
|
|
28
|
-
|
|
28
|
+
true
|
|
29
29
|
);
|
|
30
30
|
}
|
|
31
31
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { UserContext } from '../../walk';
|
|
2
2
|
import { Oas3_1Schema } from '../../typings/openapi';
|
|
3
|
-
import { validateExample } from '../utils';
|
|
3
|
+
import { getAdditionalPropertiesOption, validateExample } from '../utils';
|
|
4
4
|
|
|
5
5
|
export const NoInvalidSchemaExamples: any = (opts: any) => {
|
|
6
|
-
const
|
|
6
|
+
const allowAdditionalProperties = getAdditionalPropertiesOption(opts) ?? false;
|
|
7
7
|
return {
|
|
8
8
|
Schema: {
|
|
9
9
|
leave(schema: Oas3_1Schema, ctx: UserContext) {
|
|
@@ -14,12 +14,12 @@ export const NoInvalidSchemaExamples: any = (opts: any) => {
|
|
|
14
14
|
schema,
|
|
15
15
|
ctx.location.child(['examples', schema.examples.indexOf(example)]),
|
|
16
16
|
ctx,
|
|
17
|
-
|
|
17
|
+
allowAdditionalProperties
|
|
18
18
|
);
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
if (schema.example) {
|
|
22
|
-
validateExample(schema.example, schema, ctx.location.child('example'), ctx,
|
|
22
|
+
validateExample(schema.example, schema, ctx.location.child('example'), ctx, true);
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
},
|
|
@@ -76,7 +76,7 @@ describe('no-invalid-media-type-examples', () => {
|
|
|
76
76
|
`);
|
|
77
77
|
});
|
|
78
78
|
|
|
79
|
-
it('should report on invalid example with
|
|
79
|
+
it('should report on invalid example with allowAdditionalProperties', async () => {
|
|
80
80
|
const document = parseYamlToDocument(
|
|
81
81
|
outdent`
|
|
82
82
|
openapi: 3.0.0
|
|
@@ -109,7 +109,7 @@ describe('no-invalid-media-type-examples', () => {
|
|
|
109
109
|
config: await makeConfig({
|
|
110
110
|
'no-invalid-media-type-examples': {
|
|
111
111
|
severity: 'error',
|
|
112
|
-
|
|
112
|
+
allowAdditionalProperties: false,
|
|
113
113
|
},
|
|
114
114
|
}),
|
|
115
115
|
});
|
|
@@ -137,7 +137,7 @@ describe('no-invalid-media-type-examples', () => {
|
|
|
137
137
|
`);
|
|
138
138
|
});
|
|
139
139
|
|
|
140
|
-
it('should not on invalid example with
|
|
140
|
+
it('should not on invalid example with allowAdditionalProperties', async () => {
|
|
141
141
|
const document = parseYamlToDocument(
|
|
142
142
|
outdent`
|
|
143
143
|
openapi: 3.0.0
|
|
@@ -169,7 +169,7 @@ describe('no-invalid-media-type-examples', () => {
|
|
|
169
169
|
config: await makeConfig({
|
|
170
170
|
'no-invalid-media-type-examples': {
|
|
171
171
|
severity: 'error',
|
|
172
|
-
|
|
172
|
+
allowAdditionalProperties: false,
|
|
173
173
|
},
|
|
174
174
|
}),
|
|
175
175
|
});
|
|
@@ -219,7 +219,7 @@ describe('no-invalid-media-type-examples', () => {
|
|
|
219
219
|
config: await makeConfig({
|
|
220
220
|
'no-invalid-media-type-examples': {
|
|
221
221
|
severity: 'error',
|
|
222
|
-
|
|
222
|
+
allowAdditionalProperties: false,
|
|
223
223
|
},
|
|
224
224
|
}),
|
|
225
225
|
});
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { Oas3Rule } from '../../visitors';
|
|
2
2
|
import { Location, isRef } from '../../ref-utils';
|
|
3
3
|
import { Oas3Example } from '../../typings/openapi';
|
|
4
|
-
import { validateExample } from '../utils';
|
|
4
|
+
import { getAdditionalPropertiesOption, validateExample } from '../utils';
|
|
5
5
|
import { UserContext } from '../../walk';
|
|
6
6
|
|
|
7
7
|
export const ValidContentExamples: Oas3Rule = (opts) => {
|
|
8
|
-
const
|
|
8
|
+
const allowAdditionalProperties = getAdditionalPropertiesOption(opts) ?? false;
|
|
9
9
|
|
|
10
10
|
return {
|
|
11
11
|
MediaType: {
|
|
@@ -40,7 +40,7 @@ export const ValidContentExamples: Oas3Rule = (opts) => {
|
|
|
40
40
|
mediaType.schema!,
|
|
41
41
|
location,
|
|
42
42
|
ctx,
|
|
43
|
-
|
|
43
|
+
allowAdditionalProperties
|
|
44
44
|
);
|
|
45
45
|
}
|
|
46
46
|
},
|
package/src/rules/utils.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { UserContext } from '../walk';
|
|
|
3
3
|
import { Location } from '../ref-utils';
|
|
4
4
|
import { validateJsonSchema } from './ajv';
|
|
5
5
|
import { Oas3Schema, Referenced } from '../typings/openapi';
|
|
6
|
+
import { showErrorForDeprecatedField, showWarningForDeprecatedField } from '../utils';
|
|
6
7
|
|
|
7
8
|
export function oasTypeOf(value: unknown) {
|
|
8
9
|
if (Array.isArray(value)) {
|
|
@@ -91,7 +92,7 @@ export function validateExample(
|
|
|
91
92
|
schema: Referenced<Oas3Schema>,
|
|
92
93
|
dataLoc: Location,
|
|
93
94
|
{ resolve, location, report }: UserContext,
|
|
94
|
-
|
|
95
|
+
allowAdditionalProperties: boolean
|
|
95
96
|
) {
|
|
96
97
|
try {
|
|
97
98
|
const { valid, errors } = validateJsonSchema(
|
|
@@ -100,7 +101,7 @@ export function validateExample(
|
|
|
100
101
|
location.child('schema'),
|
|
101
102
|
dataLoc.pointer,
|
|
102
103
|
resolve,
|
|
103
|
-
|
|
104
|
+
allowAdditionalProperties
|
|
104
105
|
);
|
|
105
106
|
if (!valid) {
|
|
106
107
|
for (let error of errors) {
|
|
@@ -123,3 +124,16 @@ export function validateExample(
|
|
|
123
124
|
});
|
|
124
125
|
}
|
|
125
126
|
}
|
|
127
|
+
|
|
128
|
+
export function getAdditionalPropertiesOption(opts: Record<string, any>): boolean {
|
|
129
|
+
if (opts.disallowAdditionalProperties === undefined) {
|
|
130
|
+
return opts.allowAdditionalProperties;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
if (opts.allowAdditionalProperties !== undefined) {
|
|
134
|
+
showErrorForDeprecatedField('disallowAdditionalProperties', 'allowAdditionalProperties');
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
showWarningForDeprecatedField('disallowAdditionalProperties', 'allowAdditionalProperties');
|
|
138
|
+
return !opts.disallowAdditionalProperties;
|
|
139
|
+
}
|
package/src/utils.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { parseYaml } from './js-yaml';
|
|
|
7
7
|
import { UserContext } from './walk';
|
|
8
8
|
import { HttpResolveConfig } from './config';
|
|
9
9
|
import { env } from './config';
|
|
10
|
+
import { green, yellow } from 'colorette';
|
|
10
11
|
|
|
11
12
|
export { parseYaml, stringifyYaml } from './js-yaml';
|
|
12
13
|
|
|
@@ -204,3 +205,15 @@ export function doesYamlFileExist(filePath: string): boolean {
|
|
|
204
205
|
fs.existsSync(filePath)
|
|
205
206
|
);
|
|
206
207
|
}
|
|
208
|
+
|
|
209
|
+
export function showWarningForDeprecatedField(deprecatedField: string, updatedField: string) {
|
|
210
|
+
process.stderr.write(
|
|
211
|
+
`The ${yellow(deprecatedField)} field is deprecated. Use ${green(
|
|
212
|
+
updatedField
|
|
213
|
+
)} instead. Read more about this change: https://redocly.com/docs/api-registry/guides/migration-guide-config-file/#changed-properties\n`
|
|
214
|
+
);
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
export function showErrorForDeprecatedField(deprecatedField: string, updatedField: string) {
|
|
218
|
+
throw new Error(`Do not use '${deprecatedField}' field. Use '${updatedField}' instead.\n`);
|
|
219
|
+
}
|
package/src/walk.ts
CHANGED
|
@@ -18,6 +18,8 @@ import {
|
|
|
18
18
|
import { pushStack, popStack } from './utils';
|
|
19
19
|
import { OasVersion } from './oas-types';
|
|
20
20
|
import { NormalizedNodeType, isNamedType } from './types';
|
|
21
|
+
import type { RuleSeverity } from './config';
|
|
22
|
+
|
|
21
23
|
type NonUndefined = string | number | boolean | symbol | bigint | object | Record<string, any>;
|
|
22
24
|
|
|
23
25
|
export type ResolveResult<T extends NonUndefined> =
|
|
@@ -66,7 +68,7 @@ export type Problem = {
|
|
|
66
68
|
suggest?: string[];
|
|
67
69
|
location?: Partial<LocationObject> | Array<Partial<LocationObject>>;
|
|
68
70
|
from?: LocationObject;
|
|
69
|
-
forceSeverity?:
|
|
71
|
+
forceSeverity?: RuleSeverity;
|
|
70
72
|
ruleId?: string;
|
|
71
73
|
};
|
|
72
74
|
|
|
@@ -409,17 +411,19 @@ export function walkDocument<T>(opts: {
|
|
|
409
411
|
: [opts.location]
|
|
410
412
|
: [{ ...currentLocation, reportOnKey: false }];
|
|
411
413
|
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
414
|
+
const ruleSeverity = opts.forceSeverity || severity;
|
|
415
|
+
if (ruleSeverity !== 'off') {
|
|
416
|
+
ctx.problems.push({
|
|
417
|
+
ruleId: opts.ruleId || ruleId,
|
|
418
|
+
severity: ruleSeverity,
|
|
419
|
+
...opts,
|
|
420
|
+
suggest: opts.suggest || [],
|
|
421
|
+
location: loc.map((loc: any) => {
|
|
422
|
+
return { ...currentLocation, reportOnKey: false, ...loc };
|
|
423
|
+
}),
|
|
424
|
+
});
|
|
425
|
+
}
|
|
421
426
|
}
|
|
422
|
-
|
|
423
427
|
function getVisitorDataFn(ruleId: string) {
|
|
424
428
|
ctx.visitorsData[ruleId] = ctx.visitorsData[ruleId] || {};
|
|
425
429
|
return ctx.visitorsData[ruleId];
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -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.es2020.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.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/lodash.isequal/index.d.ts","./src/typings/openapi.ts","./src/ref-utils.ts","../../node_modules/yaml-ast-parser/dist/src/mark.d.ts","../../node_modules/yaml-ast-parser/dist/src/exception.d.ts","../../node_modules/yaml-ast-parser/dist/src/yamlAST.d.ts","../../node_modules/yaml-ast-parser/dist/src/loader.d.ts","../../node_modules/yaml-ast-parser/dist/src/dumper.d.ts","../../node_modules/yaml-ast-parser/dist/src/scalarInference.d.ts","../../node_modules/yaml-ast-parser/dist/src/index.d.ts","./src/types/index.ts","../../node_modules/@types/minimatch/index.d.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/fs/promises.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/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","../../node_modules/@types/pluralize/index.d.ts","../../node_modules/@types/js-yaml/index.d.ts","./src/js-yaml/index.ts","./src/typings/swagger.ts","./src/visitors.ts","./src/oas-types.ts","./src/walk.ts","./src/config/types.ts","../../node_modules/colorette/index.d.ts","./src/config/utils.ts","./src/config/config.ts","./src/config/rules.ts","./src/config/recommended.ts","./src/config/all.ts","./src/config/minimal.ts","../../node_modules/@types/js-levenshtein/index.d.ts","../../node_modules/@redocly/ajv/dist/compile/codegen/code.d.ts","../../node_modules/@redocly/ajv/dist/compile/codegen/scope.d.ts","../../node_modules/@redocly/ajv/dist/compile/codegen/index.d.ts","../../node_modules/@redocly/ajv/dist/compile/rules.d.ts","../../node_modules/@redocly/ajv/dist/compile/util.d.ts","../../node_modules/@redocly/ajv/dist/compile/validate/subschema.d.ts","../../node_modules/@redocly/ajv/dist/compile/errors.d.ts","../../node_modules/@redocly/ajv/dist/compile/validate/index.d.ts","../../node_modules/@redocly/ajv/dist/compile/validate/dataType.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/applicator/additionalItems.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/applicator/items2020.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/applicator/contains.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/applicator/dependencies.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/applicator/propertyNames.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/applicator/additionalProperties.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/applicator/not.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/applicator/anyOf.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/applicator/oneOf.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/applicator/if.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/applicator/index.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/validation/limitNumber.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/validation/multipleOf.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/validation/pattern.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/validation/required.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/validation/uniqueItems.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/validation/const.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/validation/enum.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/validation/index.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/format/format.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/validation/dependentRequired.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/discriminator/types.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/discriminator/index.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/errors.d.ts","../../node_modules/@redocly/ajv/dist/types/json-schema.d.ts","../../node_modules/@redocly/ajv/dist/types/jtd-schema.d.ts","../../node_modules/@redocly/ajv/dist/runtime/validation_error.d.ts","../../node_modules/@redocly/ajv/dist/compile/ref_error.d.ts","../../node_modules/@redocly/ajv/dist/core.d.ts","../../node_modules/uri-js/dist/es5/uri.all.d.ts","../../node_modules/@redocly/ajv/dist/compile/resolve.d.ts","../../node_modules/@redocly/ajv/dist/compile/index.d.ts","../../node_modules/@redocly/ajv/dist/types/index.d.ts","../../node_modules/@redocly/ajv/dist/ajv.d.ts","./src/rules/ajv.ts","./src/rules/utils.ts","./src/rules/common/spec.ts","./src/rules/common/operation-2xx-response.ts","./src/rules/common/operation-4xx-response.ts","./src/rules/common/assertions/utils.ts","./src/rules/common/assertions/asserts.ts","./src/rules/common/assertions/index.ts","./src/rules/common/operation-operationId-unique.ts","./src/rules/common/operation-parameters-unique.ts","./src/rules/common/path-params-defined.ts","./src/rules/common/operation-tag-defined.ts","./src/rules/oas3/no-example-value-and-externalValue.ts","./src/rules/common/no-enum-type-mismatch.ts","./src/rules/common/no-path-trailing-slash.ts","./src/rules/common/path-declaration-must-exist.ts","./src/rules/common/operation-operationId-url-safe.ts","./src/rules/common/tags-alphabetical.ts","./src/rules/oas3/no-server-example.com.ts","./src/rules/oas3/no-server-trailing-slash.ts","./src/rules/common/info-description.ts","./src/rules/common/tag-description.ts","./src/rules/common/info-contact.ts","./src/rules/common/info-license.ts","./src/rules/common/info-license-url.ts","./src/rules/common/operation-description.ts","./src/rules/oas3/no-unused-components.ts","./src/rules/common/path-not-include-query.ts","./src/rules/common/parameter-description.ts","./src/rules/common/operation-singular-tag.ts","./src/rules/common/operation-security-defined.ts","./src/rules/no-unresolved-refs.ts","./src/rules/oas3/boolean-parameter-prefixes.ts","./src/rules/common/paths-kebab-case.ts","./src/rules/common/path-http-verbs-order.ts","./src/rules/oas3/no-empty-servers.ts","./src/rules/oas3/no-invalid-media-type-examples.ts","./src/rules/common/no-identical-paths.ts","./src/rules/oas3/no-undefined-server-variable.ts","./src/rules/common/operation-operationId.ts","./src/rules/common/operation-summary.ts","./src/rules/common/no-ambiguous-paths.ts","./src/rules/oas3/no-servers-empty-enum.ts","./src/rules/common/no-http-verbs-in-paths.ts","./src/rules/oas3/request-mime-type.ts","./src/rules/oas3/response-mime-type.ts","./src/rules/common/path-segment-plural.ts","./src/rules/common/path-excludes-patterns.ts","./src/rules/common/no-invalid-schema-examples.ts","./src/rules/common/no-invalid-parameter-examples.ts","./src/rules/common/response-contains-header.ts","./src/rules/oas3/response-contains-property.ts","./src/rules/common/scalar-property-missing-example.ts","./src/rules/oas3/index.ts","./src/rules/oas2/boolean-parameter-prefixes.ts","./src/rules/oas2/request-mime-type.ts","./src/rules/oas2/response-mime-type.ts","./src/rules/oas2/response-contains-property.ts","./src/rules/oas2/index.ts","./src/redocly/registry-api-types.ts","./src/redocly/registry-api.ts","./src/redocly/redocly-client-types.ts","./src/redocly/index.ts","./src/decorators/common/registry-dependencies.ts","./src/decorators/common/operation-description-override.ts","./src/decorators/common/tag-description-override.ts","./src/decorators/common/info-description-override.ts","./src/decorators/common/remove-x-internal.ts","./src/decorators/common/filters/filter-helper.ts","./src/decorators/common/filters/filter-in.ts","./src/decorators/common/filters/filter-out.ts","./src/decorators/oas3/index.ts","./src/decorators/oas2/index.ts","./src/config/builtIn.ts","./src/config/config-resolvers.ts","./src/config/load.ts","./src/config/index.ts","./src/utils.ts","./src/resolve.ts","./src/types/oas3.ts","./src/types/oas2.ts","./src/types/oas3_1.ts","./src/rules/oas2/remove-unused-components.ts","./src/rules/oas3/remove-unused-components.ts","./src/bundle.ts","./src/types/redocly-yaml.ts","./src/typings/common.ts","./src/rules/other/stats.ts","./src/format/codeframes.ts","./src/format/format.ts","./src/lint.ts","./src/index.ts","./src/benchmark/utils.ts","./src/benchmark/benches/lint-with-many-rules.bench.ts","./src/benchmark/benches/lint-with-nested-rule.bench.ts","./src/benchmark/benches/lint-with-no-rules.bench.ts","./src/benchmark/benches/lint-with-top-level-rule-report.bench.ts","./src/benchmark/benches/lint-with-top-level-rule.bench.ts","./src/benchmark/benches/recommended-oas3.bench.ts","./src/benchmark/benches/resolve-with-no-external.bench.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/jest-diff/build/cleanupSemantic.d.ts","../../node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-diff/build/diffLines.d.ts","../../node_modules/jest-diff/build/printDiffs.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/pretty-format/build/types.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"ac3a8c4040e183ce38da69d23b96939112457d1936198e6542672b7963cf0fce","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"cce43d02223f8049864f8568bed322c39424013275cd3bcc3f51492d8b546cb3","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"8dff1b4c2df638fcd976cbb0e636f23ab5968e836cd45084cc31d47d1ab19c49","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"8f4c9f651c8294a2eb1cbd12581fe25bfb901ab1d474bb93cd38c7e2f4be7a30","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"60761e6ea886034af0f294f025a7199360ce4e2c8ba4ec6408bc049cf9b89799","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e","affectsGlobalScope":true},"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"6bb8d7433a29fbd33df8e9693f1788a273a9eb90b96c8f99c745678c7db623f1","85ea2788ccd91b3a5b2517801f5f5aff2b771e0d44ffe6f7d94d7857e005cf42","fe86e0fe2a0ecd4e03f80043dcc5ed8e300d14e6a8b8e462a7f1dc2e2428e76b","8d1539367a9f5a03698f4c37111251eb76433ea8fcb5f1e546571b8513cac822","9ad71085f8ab35282a341995f85c6e06a19e6d5ab73b39f634b444ce8742a664","ee94d8f60c253d9994559ad325e9cb8a7af6bd36176884cb869ee5a40daa766c","606de01a4212a48518a219585f673504d3c0c26b361706006038a71bf8b9f42c","76de776e227ad01b703ce076b32177da31a765d5b5a681d5bb4c4e0f4876840f","aa4c984c8f2919742d06f305b1870bf180275cbe015490451a6374e6f6b9998a","46b9cdcd62e90f604876c143481ac7ff2c89cdfb902179bda0d8ee44c0695beb","35db4fbbdb6d715072006ab4eaf4fd396144d87c8335efbe904449c43b4f12c9","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","4c2c4f53e8eedd970f8afa369d7371544fb6231bf95e659f8602e09abe74d5a5",{"version":"32ddf2b046fa7269050f64a87f1f3d2db10b92ad6302460681915af1207b1222","affectsGlobalScope":true},"c2b5085f47e41d6940bbc5b0d3bd7cc0037c752efb18aecd243c9cf83ad0c0b7","3143a5add0467b83150961ecd33773b561a1207aec727002aa1d70333068eb1b","9b2a8f604e7c0482a9061755f00b287cc99bd8718dc82d8207dd74c599b6dc43","d0fc76a91c828fbe3f0be5d683273634b7b101068333ceed975a8a9ac464137b",{"version":"1a048ff164b8d9609f5de3139d4e37f6e8a82af82087ac414b9208f52ef8aac7","affectsGlobalScope":true},"3111079f3cb5f2b9c812ca3f46161562bce5bfb355e915f46ed46c41714dc1c3","db86f82fac051ae344b47e8fe7ac7990174b41db79b2b220a49dc5a47c71a9b5","b32b6b16cb0bda68199582ad6f22242d07ee75fac9b1f28a98cd838afc5eea45","4441ee4119824bfaebc49308559edd7545978f9cb41a40f115074e1031dde75f",{"version":"60693a88462d0e97900123b5bf7c73e146ce0cc94da46a61fe6775b430d2ff05","affectsGlobalScope":true},{"version":"588c69eda58b9202676ec7ca11a72c3762819b46a0ed72462c769846153c447c","affectsGlobalScope":true},"ae064ed4f855716b7ff348639ddcd6a6d354a72fae82f506608a7dc9266aa24c","8e63e656267f767e6c15b47776f641d30ef29690581ab9bdddff5b83885d1a43","53d2c24a3cbc00a88ebaf8ab8e1b6e206bc3a6647d544f877241684ea3d484e3","ecee890ff04b70d8e8815fb753c20f24f95203426267a577823d375009c1ace7","0ce99c641ea20b0c0c09d093fc28f18f5ab31dc80033707a1ac3154399de2559","7dc9ed91e245cf0c4f8add7f6845d0cb08cceec4408ce3398c51e1f6dd7679ec","44e42ed6ec9c4451ebe89524e80ac8564e9dd0988c56e6c58f393c810730595d","d79fda68cbfb361c4ee9cd9ea169babb65887534d64017726cd01f54783d20a5","1606ea615c0a5ea9f5c1376a33e34c0e1112e8dee31a5b3b8a74ce781893aa6f","9fef9de633d01cb7f01f68195626a890ededd25cf96a1e785617d08c8668230d","4455c78d226d061b1203c7614c6c6eb5f4f9db5f00d44ff47d0112de8766fbc4",{"version":"ec369bb9d97c4dc09dd2a4093b7ca3ba69ad284831fccac8a1977785e9e38ce5","affectsGlobalScope":true},"4465a636f5f6e9665a90e30691862c9e0a3ac2edc0e66296704f10865e924f2a","9af781f03d44f5635ed7844be0ce370d9d595d4b4ec67cad88f0fac03255257e","f9fd4c3ef6de27fa0e256f4e75b61711c4be05a3399f7714621d3edc832e36b0","e49290b7a927995c0d7e6b2b9c8296284b68a9036d9966531de65185269258d7","c3689f70ce7563c2299f2dcb3c72efdf6f87ae510e7456fa6223c767d0ca99fc","874ca809b79276460011480a2829f4c8d4db29416dd411f71efbf8f497f0ac09","6c903bceaf3f3bc04f2d4c7dcd89ce9fb148b3ba0a5f5408d8f6de2b7eecc7ea","c65a0eeb867ff5c41debade8e2e8e63ec5367172d121afa726a598111d348816","23a28f834a078986bbf58f4e3705956983ff81c3c2493f3db3e5f0e8a9507779","4febdf7f3ec92706c58e0b4e8159cd6de718284ef384260b07c9641c13fc70ce",{"version":"eabefc2999c1489cf870e0c85af908900462fa245822d9a4616780a1a129945d","affectsGlobalScope":true},"7335933d9f30dcfd2c4b6080a8b78e81912a7fcefb1dafccb67ca4cb4b3ac23d","a6bfe9de9adef749010c118104b071d14943802ff0614732b47ce4f1c3e383cd","4c3d0e10396646db4a1e917fb852077ee77ae62e512913bef9cccc2bb0f8bd0e","3b220849d58140dcc6718f5b52dcd29fdb79c45bc28f561cbd29eb1cac6cce13","0ee22fce41f7417a24c808d266e91b850629113c104713a35854393d55994beb","22d1b1d965baba05766613e2e6c753bb005d4386c448cafd72c309ba689e8c24",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"79d679a1d56574cc5cef92be1f0e5e8fb4af62fb55933b236670a0e0a23c83f6","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","3898e3dbe94b6fe529fbe8f0faee1309c1923100516d7a014b301955e52ece77","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","8f7a2387ecc680872d09a6edbca1612d699f77ee5a5129944935c3798a613d04","686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","1184ca20fae54cd6821689f64ec85f98edcb2d393d98bdf30b66ea7059d94baa","5dd3362a43459f9da722b4fa519be37c2d0cd5f7e5f3fc29b57ec4b86733ccb3","9b61b4f76725ef9c68e37280b5e53f6b53f80cf48c7814a4b0bea2aa818fafaf","fac66aed5683e1397b16b387cf8ebe49157dfa6d137104632b7e219ec2d3e32b","4f1766d66e673e0c7bdb10dd84d9022c5434d1648725f19506e39368169ac9d4","52febc2cc0b46e5c1ed4c969d5d76da97ab85d8cd7b822f0052fb72982700caa","a456dd94a596de621bd25cf3c91278101ea62782c3ac4435aef9190a2336ddde","fc91ee187d6dc5cb3c213d8c76351dc9d8ed4c737fd979dd59ff74b96cb2947f","c7cda9eb828a1265f60fc54bb1c45875dc6be664cd60e7783fe4df85173007ce","603abc79a4bab27d7c5c5b235151b3c00a70c9cd13cafa7f0f10a14412aaeb07","cef2fa114cb8c397c4ee0819796c9609c7832bc6ef4b35d004ab64d4c01905e8","23057160e288e2f81c4feca239392ff59e88a9e3b5bed6eeafffc7ada897c601","52cf7147092a8dccda4d9d541d8ca979d8790ce22a67cbcff515d03c3d30ae70","21bb8dda75eb025927e9d62d8fa619e349ebc5ba0b8b9dddd8fdfc9ff058e2b8","e6ada7804df8cd574c66660fdc6abc584a31692293636d1626573e476699bcf0","60bb0e47502bf8716d1230288b4e6387c1d34cded12752ab5338108e2e662e67","b8870b5155d11a273c75718a4f19026da49f91c548703858cd3400d06c3bd3b8","b3ae4ded82f27cabba780b9af9647f6e08c9a4cabe8fbb7a0cca69c7add9ef4b","8d26ae32e5c9c080e44aee4a67e5ef02b5fda0604e6fecbb7b753c537e5282d9","05c4e792dae38912ba333725cdf8c42d242337d006c0d887f4ce5a7787871a95","cd44995ee13d5d23df17a10213fed7b483fabfd5ea08f267ab52c07ce0b6b4da","1490dc5531e1d5efb8a52d1b3d946c572e270836f0f1490cfadf8fcf87a6b4a4","1a23b521db8d7ec9e2b96c6fbd4c7e96d12f408b1e03661b3b9f7da7291103e6","d3d0d11d30c9878ada3356b9c36a2754b8c7b6204a41c86bfb1488c08ce263b0","a6493f1f479637ed89a3ebec03f6dc117e3b1851d7e938ac4c8501396b8639a8","ae0951e44973e928fe2e999b11960493835d094b16adac0b085a79cff181bcb9","9d00e3a59eff68fa8c40e89953083eeaad1c5b2580ed7da2304424b249ecb237","1609ad4d488c356ee91eba7d7aa87cc6fb59bc8ac05c1a8f08665285ba3b71ad","8add088f72326098d68d622ddb024c00ae56a912383efe96b03f0481db88f7c9","dd17fe6332567b8f13e33dd3ff8926553cdcea2ad32d4350ce0063a2addaa764","4091d56a4622480549350b8811ec64c7826cd41a70ce5d9c1cc20384bb144049","353c0125b9e50c2a71e18394d46be5ccb37161cc0f0e7c69216aa6932c8cdafb","9c5d5f167e86b6ddf7142559a17d13fd39c34e868ae947c40381db866eed6609","4430dea494b0ee77bf823d9a7c4850a539e1060d5d865316bb23fb393e4f01d7","aae698ceead4edad0695b9ea87e43f274e698bdb302c8cb5fd2cab4dc496ccf0","51631e9a0c041e12479ab01f5801d8a237327d19e9ee37d5f1f66be912631425","c9d5d8adb1455f49182751ce885745dcc5f9697e9c260388bc3ae9d1860d5d10","f64289e3fa8d5719eaf5ba1bb02dd32dbbf7c603dda75c16770a6bc6e9c6b6d9","b1aa0e2e3511a8d10990f35866405c64c9e576258ef99eeb9ebafed980fd7506","2d255a5287f2fb5295688cb25bd18e1cd59866179f795f3f1fd6b71b7f0edf8f","43c1dbb78d5277a5fdd8fddce8b257f84ffa2b4253f58b95c04a310710d19e97","6c669d7e080344c1574aa276a89e57c3b9f0e97fab96a09427e7dfb19ca261bf","b71ac126853867d8e64c910f47d46d05c5ea797987d2604f63d401507dc43b6d","9a37238558d28b7ee06d08599e92eab30b90704541cc85e6448009d6d55fffa9","120b14d66a061910309ff97e7b06b5c6c09444218178b80b687a92af4d22d5dc","3de958065e3a44cbe0bfa667813bc59c63e63c9ce522af8dc1b64714910fa9ba","66e655f7c43558bae6703242cbd6c0551a94d0a97204bd4c4bbf7e77f24d1f85","72f7b32e023814078046c036ed4b7ad92414be0aebb63e805c682e14103ae38a","a89d8e67966d085ff971c9900cfa1abdd9732bab66d9c1914ecc15befdf8623d","396ce3137bb6388b71bbd7d88071c71c9b3333cd20cd04bf6a40cd6ee88c531d","2887a41f8373ff8443ac2bb9d898b398687621830465643ad131ad1a43e2678e","cde493e09daad4bb29922fe633f760be9f0e8e2f39cdca999cce3b8690b5e13a","18cc75193738e5c88f89facc31481024911f04da53bb3294930ecacd112a8f6e","f4eeac349468d231cc2968dac0cb744b2fd834010c6c1860e9fa2a8713907941","9f3c5498245c38c9016a369795ec5ef1768d09db63643c8dba9656e5ab294825","8f35095ce6914b0e95d563adae6f2546dddd8f85c4034d9050530076d860b5b8","b34bf09a55a5049f1f741a32360633f7569447f193b02e7b9a428ef8bc7fb9fe","ba1f5ad0e2df2c17351247ef47d8819713be50a1b7ad0520b15c6070d280b15b","821e64ddbdfa10fac5f0aed1c1d4e1f275840400caa96357ddfd15d02e5afba1","da1a05d266c8aa425ca66123c663070b793ca2ffbf396faec232f03946e9c37e","a4f01d00a8c3e9bd12d244fd96c0ffb082a42c4602eea066478042f68f7acca1","782cea53a4f992a7eaf9ccb6302e5989480ffbafa4b1e2f4f987ccd4b230d6f1","cc9f0665f4555a6f818dcaf79de44ff3f9e93211458548dd6260506e27b38025","a0be06b87b35dfe34748f797a7644f41fe0d00720907b4d93233bdb04f248f42","92e6b6b1498925ee5c145429db6aa865be29fb66997973fb33fb62204027de97","6638d2286829ad67464cbfd9018167b199e0dd21f7efcdcd56a1e206b2aa190b","841ab3bf48be1021eb63c3f59b7813c26d8f6f925d7ced1410bf435f6d23d792","e8b5d684b18772f93fd7ac85652a9dd8c3c4ac42d255ebc676ddd75d213a60eb","e9b215c7ee7d0425172e4c70de8d4a6334dcafb8e2ee8c613ce9132faa12146c","eba136cc9eb2294901b6752f147ca1c4d0ed24b7d59069585bad511d412d433e","6e3a3b59f2b4ebf3c4ca906f7f56d3d53f707eda7ed10be0863029d814b51583","329318845916f35128387bb291f2f252ccc80fe968ae6f6ee7a7bd644b9af509","3fa4cccc267fb6076b9e0845f17677e78c72342bb5151d361da7774a1f0a45c5","8e8d8e11136d8c5a59360e90455356a41c8006129f7e459fbbf8a4551379f23a","a959db7039a615c94a9c236d0664463fd8fcc7c08e68c01bd7de4b49116c2b2c","3144d082b0efd80551c4b9ff1dd29ba6b0f0bb0709d481ed5285313e0845ee36","a9319c8e234166988f24be3a12d8845a5d43f34d31f72621ca311384ee7a56ae","37106a318a9b70352fc7fb06ed9a31c218342402f194355ad7c3e83c226b8b84","8d6b668236eb00f3942aa43d87ad361448b34ad335446fb9f4915ee612c1c372","232fe9b0f859a921132d464999ff9d2f979e29636dfd2225989e638a43bc5630","679f01be7caf9e091684d1f0fdabc8837991ed589a4c2617c72799c4aed0b60e","a3f88fc187a30877572d86ca78bfbad1ce1f7f081a13f4a1a3de12fc19172763","66d74d867bddeb432fb11821c818d712fa2142b5d4e8e415e33cd1001422e304","53e922fc5556e9825e10ebc780ea40088404abb4f1a76251bb5fac18eb20fc93","099e32d949572f34338bcc5a9bf84b09966b5b347b0462154eaf1679968ff74e","b72ac783938f2f9522af3694262d6112b061c0fa2b8c4c5df226efd0550fcba9","93a9e32ced227f7ff4410a258829bc31439182d367e6b3d0cabf421422aa02b8","576815ad63894f88f18c36c239e23562b35033e0dab57ff665dc0410db4a8b54","d23b6230c10ffb27b8cec7f0aef6443f8736620ce07bf7a991efb02e0f599d42","cb2796cb7a19f4a50dea47a54885c072578c08efdf3c0f1f3f766c9c4d5b414f","ca2546e775a426dbbd1d7834a9926441ad9da4ca4c1f92dd355b2a2e08ce45cf","d0b2d3ab2b3934d5ea2d1ca2973fce9c031bec115c37e437b32bad32c0d79196","b1a34ec7490c02b8b491435ae2becd70782c826cab2aee20037c9af4e35b8762","8434dc2a1f866e713703e6d8ccc85168d92c07049138a3f2895e63f1b0d0ff8a","661cba882f946bd31df69ead293de6fc637bfbde3d53aff73276bf79bfa73760","69b1c8eced1701eccabb8e0a05f2cb20e0faf7676b4c0db5ebbcd2059ef0f4bb","d83f1778cc95256ae503c326ea6804cffef5e5d6310e0d8b8dc56a2107abc7ae","fd1531c043404c41a9554cc39c1af2738f53edc508e450a17c246f3c5e881889","4c056133f7e870900b2350a0f2780390d9244103b869b961b5235bb8ba66f8c8","56d135e85dcc15aa982d8ca85f8021859447db147c51123e3811b3a48cb7d90b","b7b10c1fd8cd66c7869aa491531e2f329b9112ffcadbd561ce646955f559a5ad","4dc2b938436d21366b99241a23997e77b326a767e750063bb6e2f3a9df4ac74e","6779e161b87b79684bbcf4514e8e2372d87d066930be098425539b64cf47351f","84af506cbec2a4666b02c573f601dad8d43fa7582bc4a675278b0d905ca9a851","df41f874a075a75dd3148c5a2e2980c7e7aff23f33212c2427e20c763501fed1","bc7711d24df78e5dbedb9b206cdc72e1880a757328bd5e094b582dcf572bb273","63f0634d9c4ce2d509e81033b88f5a565c5151876300616dd07958b54f944b14","619ad3aab84f0e925e55212d1a412a58923406b0e9482952dfd6dc43c70cca42","54d1016886d3f39bbad919915d9d8919ccdc699b1111978b7d85a1b7f3556986","414f1d6c0816373b377eead2175227089eaaae0737f6bfc2d8897aa8e022789b","ed959779509febe0bfb0a9d40506e810a10dee27b66cb00792866c58e15d06fd","67b3f1d8f68aa2201c9cf0f72873cf4f813f53a8b3fc657983091af0b50b198d","86d54bcf44da0601fd519a8b887df605a1d80dbb6375df1042e99a1d1a0c0804","41d545e5d36083f5bf6432c93dc2d3cb29ed4f8deae03b9dec59c55e02fbe597","0b4cc0ce5b20bc61ab6191013d258d109c9c8c6bb973368bb9ec57fce8b5ff97","9814894f88bc9283fa344d1a075913da647a36a7aa5f6d3080ce5df057d2b2d3","ec80247b577af5053d4846f8f72efc5e05c5d3c6e5eb76111656d2cf22f01584","252034dc90f6e28b019557880b9c23308d9f3b98a801c37c6e8f7df74d01f5b1","a1f6b76764e8658554cc3e25da387286662a3c5a856bfbeac68e76d0759bb7fa","380bb63c393834a26b1627c36d0a1b372bffbc8b020f92591cb85478bfe358c0","a3443a2339b42c762d7980f11195fe1bede24f567d3052700cf62ea89c465588","3293d92b4c1e3262f0977860d86cf3d6cf1fff98e8c0b333e0bfaeebdcbf7005","19e6bf4146329b9217fa9de9706d67af25ed9dfdeb4f313793121d753894d95a","74b69859cd51d2abe97aa8dcf5d03b0e05f32c530d6582d42b21eb31fcb05ab3","246dc494a9f2e58c45b0854c0dab413a45f0d986e11afc3d88a2d33afa9dc55c","5fed2f78a6d019ee3da2e07aaf10247b0fe3658deddf463d9665363acd707fe6","e40227411ee27967433e6ded58b9545552068da77e22ca92f1858d5366c1c4b1","d6fc5b9dc7c56f856465db6d3584a44d93921bf741eb232581425d136a7bfa46","d337952248ee720900b65df385893c5886d56d2f879825d0b7d057451469c6e5","87f6b8ff466092632ce6223aa379077a9510c2abb8eb170056c446f2d2008bac","cdb1f76cdb1911a0b87a98ee4946ffc4a738d4d3426ab5b14b1dc5a37e54f187","c5f3fe1311a7d3cb2ea45a83a7fc1876c2f83dc2f910adb0e504292b8d7c24c4","ecd26733e59d19dc4920914c3d54682dcebf269f5d66f13c07a1b23cc85aceeb","5bfc817939abb84ca9fa0f18029ffb809d212fa86413803d0b10e47470c46ad8","1a14a6e672f205c6811042ea3e634d0d0b95cb5d56125a0d316d95501fc9b127","88dc0dcab75df96583b348f379c7aec6712561d17d8ce208d36ab492b23ae46d","063f8be598e502ab26d6609306d765ccf56774f8b0db39e0e0ebe067f02c84b5","674c67063d663ddf85575d8234dce1845c5569ec9449b8399845078c58a6b1b5","f1b150383951e3658c2df4335782e7314313c6d8c19f16d7e772e2b6d516d67c","8f2beab1be8f92d9fceb4a4be151a1073a6c15ed928e8adca731184908f28363","430dff101c72b6e6580608c2c981e6fe4bb2ba41b27935b65dfa3e2f21f4abfa","3d0d0346b338705a5b0b11ac9d3b0d23230661d232b87342741ea5ea3551bbbc","5d153364e32770d60f1c6b71ec4c7409e52b3142302ba0c814123ea1bff43b3a","6997ab930e67ad2c22cb4a96d630ffa680a9a23ea64bf55ee0ffe6e518aa3874","c7baf24c9df21b7bcc5809b4519ffdd10d9d8924b0514116c3befb7e97627a5e","0eda506c24ee190c7203710e9e55905704acb219bb06ce69df0f7ba08857e8b3","ecbbdc4064e052eb2d36ca7eb826e1515e125fe16a5f9e9e2f08e988952d8812","ce22ecbb6e51bad11b47fa4ae17f0896279760853a8c82c79f231996c6fdfb41","c43e4623bc6596ef75243bc57a4cb072c9c384baf5d8971465157302ad18361e","60fe92b0d083765361126428c7879406d1eff45829b042be27a49827360c000d","d9114e7c6139eff0575a2068e492e6c5c026a4e6c47f4afdfc440c72493af990","39cf517b69d90fda2f9c9a10b860ed1465fc22d50c25889ed5e4b757fbbcd01d","8dde57b83dcb3175234a3e853eb3e4f7ca94cf9aaeda962c4112569d3cd32e5e","24adf051c683dd54bddd75d069d722668207f8cc82d4801155233ac4447a6b27","0c6cd93f3cae88f1dff9fcab9389f272e9235560ccf38a19f88edc376d021558","0938b1c9e612edb9c5b3dfd49f8db5a5fc344a88ed23daf83e8516455e86742e","a41314eb87962254133595c841fb39e47e9e493943c7e3165d44bf5bd14db34f","9e5e3201ca8d962247b747892f65478092a2d3842ed2e09e0f6d7993f215a181","f3a7da43f24660f03984dfb64773bcf0d367638df673c7d1852ec6941d535dcb","67633388f50fe010a7b4d892721437d0fac88a282ef46217137d263a8a6651ed","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","a46a2e69d12afe63876ec1e58d70e5dbee6d3e74132f4468f570c3d69f809f1c","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","fc72135da24040641388fb5f2c2a7a99aa5b962c0fa125bd96fabeec63dd2e63","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","c6297435733f252a9c0e2297fab3b58014b8fde5fa097a4102dae4e12522bccd","e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","f1d8b21cdf08726021c8cce0cd6159486236cf1d633eeabbc435b5b2e5869c2e","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","09c4b2e2d3070239d563fc690f0cc5db04a2d9b66a23e61aef8b5274e3e9910c"],"options":{"composite":true,"declaration":true,"module":1,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./lib","rootDir":"./src","strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":3},"fileIdsList":[[272],[129,130,134,161,162,166,169,170],[127,128],[127],[129,170],[129,130,166,168,170],[167,170,171],[170],[129,130,169,170],[129,130,132,133,169,170],[129,130,131,169,170],[129,130,134,161,162,163,164,165,169,170],[129,130,134,166,169],[134,170],[136,137,138,139,140,141,142,143,144,145,170],[159,170],[135,146,154,155,156,157,158,160],[139,170],[147,148,149,150,151,152,153,170],[272,273,274,275,276],[272,274],[279,281],[278,279,280],[63,76,77,107],[77,107],[285],[286],[292,294],[51],[39,41,42,43,44,45,46,47,48,49,50,51],[39,40,42,43,44,45,46,47,48,49,50,51],[40,41,42,43,44,45,46,47,48,49,50,51],[39,40,41,43,44,45,46,47,48,49,50,51],[39,40,41,42,44,45,46,47,48,49,50,51],[39,40,41,42,43,45,46,47,48,49,50,51],[39,40,41,42,43,44,46,47,48,49,50,51],[39,40,41,42,43,44,45,47,48,49,50,51],[39,40,41,42,43,44,45,46,48,49,50,51],[39,40,41,42,43,44,45,46,47,49,50,51],[39,40,41,42,43,44,45,46,47,48,50,51],[39,40,41,42,43,44,45,46,47,48,49,51],[39,40,41,42,43,44,45,46,47,48,49,50],[79,99,107,108,109],[299],[79,93,107],[288,289],[288,289,290,291],[293],[55],[56,57,58,59,60],[57],[56],[64],[66],[67,72],[68,76,77,84,93],[68,69,76,84],[70,100],[71,72,77,85],[72,93],[73,74,76,84],[74],[75,76],[76],[76,77,78,93,99],[77,78],[79,84,93,99],[76,77,79,80,84,93,96,99],[79,81,93,96,99],[64,65,66,67,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],[76,82],[83,99],[74,76,84,93],[85],[86],[66,87],[88,98],[89],[90],[76,91],[91,92,100,102],[76,93],[94],[95],[84,93,96],[97],[84,98],[90,99],[100],[93,101],[102],[103],[76,78,93,99,102,104],[93,105],[77,86,250,262,264],[77,86,248,250,262,264],[62,77,86,250,251,264],[113,116,118,248,250],[52,53,54,62,115,116,117,122,203,234,248,249,250,251,252,253,254,255],[118],[118,123,124,125,225,230,243,244],[54,86,118,119,120,121,245,249,250],[62,77,86,113,116,117,118,120,249],[118,120,121,122,245,246,247],[77,86,118,120,121,234,246,249],[116,121,249],[62,116,117],[118,119,121,249],[54,117,249],[115,240],[115,117,249],[53,114,115,117,249],[115,117,234],[54,115,117,249],[115,235,236,237,238,239,241,242],[54,61,117,119],[86,117,119,248,260],[53,54,62,113,114,115,116,117,234,248,249,250,251,252,253,256,257,258,259,260,261,262],[112],[62,115,116,117,172,174,248,250,251,252,253,257],[115],[77,85,86,118,119,121,232,233,249],[110,118,121,231,249],[53,250],[53,54,61,62,77,86,118,249],[54,117,171],[54,177,249],[115,177,178],[54,117,178],[115,173],[53,114,115,117],[53,114,115,117,173],[53,117,173],[115,117],[53,54,114,115,117],[53,114,115,116,117],[54,62,115,173,249],[54,115,117,250],[115,174,175,176,179,180,181,182,183,185,186,187,188,189,192,193,194,195,196,197,199,200,201,202,203,205,206,209,211,212,213,215,218,219,220,221,222,224,226,227,228,229],[54,114,115,249],[114,115,117,249],[116,174,175,176,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,214,215,216,217,218,219,220,221,222,223,224],[53,54,115,117,173],[53,115],[54,115],[53,54,115,249],[53,115,117,249],[53,114,258],[53,54,117,126,172],[62],[54,62],[62,251],[62,249],[53,112],[63,77,86,110,111,113,117,248],[53,54,62,114,117,249],[53,54,62,115,116,249,250]],"referencedMap":[[274,1],[171,2],[129,3],[128,4],[133,5],[169,6],[168,7],[130,8],[131,9],[135,9],[134,10],[132,11],[166,12],[164,8],[170,13],[136,14],[141,8],[143,8],[138,8],[139,14],[145,8],[146,15],[137,8],[142,8],[144,8],[140,8],[160,16],[159,8],[161,17],[155,8],[157,8],[156,8],[152,8],[158,18],[153,8],[154,19],[147,8],[148,8],[149,8],[150,8],[151,8],[277,20],[273,1],[275,21],[276,1],[282,22],[281,23],[283,24],[284,25],[286,26],[287,27],[295,28],[52,29],[40,30],[41,31],[39,32],[42,33],[43,34],[44,35],[45,36],[46,37],[47,38],[48,39],[49,40],[50,41],[51,42],[110,43],[300,44],[108,45],[290,46],[292,47],[291,46],[294,48],[56,49],[61,50],[58,51],[60,51],[57,52],[64,53],[66,54],[67,55],[68,56],[69,57],[70,58],[71,59],[72,60],[73,61],[74,62],[75,63],[76,64],[77,65],[78,66],[79,67],[80,68],[81,69],[107,70],[82,71],[83,72],[84,73],[85,74],[86,75],[87,76],[88,77],[89,78],[90,79],[91,80],[92,81],[93,82],[94,83],[95,84],[96,85],[97,86],[98,87],[99,88],[100,89],[101,90],[102,91],[103,92],[104,93],[105,94],[265,95],[266,95],[267,95],[268,95],[269,95],[270,96],[271,97],[264,98],[256,99],[124,100],[245,101],[246,102],[121,103],[248,104],[247,105],[125,100],[123,100],[122,106],[118,107],[120,108],[240,109],[241,110],[242,110],[238,111],[236,112],[235,113],[239,114],[237,111],[244,115],[243,115],[260,116],[261,117],[263,118],[113,119],[262,120],[116,121],[234,122],[233,100],[232,123],[54,124],[250,125],[172,126],[178,127],[179,128],[177,129],[194,130],[192,130],[196,130],[195,130],[213,131],[185,132],[215,112],[209,131],[221,133],[220,133],[186,134],[175,134],[176,134],[197,132],[180,131],[188,131],[211,132],[181,131],[202,135],[201,131],[212,132],[183,131],[200,131],[187,134],[219,131],[206,131],[199,134],[182,131],[218,111],[205,134],[222,112],[224,136],[174,137],[193,130],[189,131],[203,138],[226,121],[230,139],[254,140],[227,141],[229,111],[228,141],[204,121],[225,142],[207,121],[184,121],[208,143],[190,121],[191,121],[214,144],[210,121],[198,145],[255,146],[216,147],[223,111],[217,147],[259,148],[173,149],[252,150],[251,151],[253,152],[257,153],[114,154],[249,155],[115,156],[117,157]],"exportedModulesMap":[[274,1],[171,2],[129,3],[128,4],[133,5],[169,6],[168,7],[130,8],[131,9],[135,9],[134,10],[132,11],[166,12],[164,8],[170,13],[136,14],[141,8],[143,8],[138,8],[139,14],[145,8],[146,15],[137,8],[142,8],[144,8],[140,8],[160,16],[159,8],[161,17],[155,8],[157,8],[156,8],[152,8],[158,18],[153,8],[154,19],[147,8],[148,8],[149,8],[150,8],[151,8],[277,20],[273,1],[275,21],[276,1],[282,22],[281,23],[283,24],[284,25],[286,26],[287,27],[295,28],[52,29],[40,30],[41,31],[39,32],[42,33],[43,34],[44,35],[45,36],[46,37],[47,38],[48,39],[49,40],[50,41],[51,42],[110,43],[300,44],[108,45],[290,46],[292,47],[291,46],[294,48],[56,49],[61,50],[58,51],[60,51],[57,52],[64,53],[66,54],[67,55],[68,56],[69,57],[70,58],[71,59],[72,60],[73,61],[74,62],[75,63],[76,64],[77,65],[78,66],[79,67],[80,68],[81,69],[107,70],[82,71],[83,72],[84,73],[85,74],[86,75],[87,76],[88,77],[89,78],[90,79],[91,80],[92,81],[93,82],[94,83],[95,84],[96,85],[97,86],[98,87],[99,88],[100,89],[101,90],[102,91],[103,92],[104,93],[105,94],[265,95],[266,95],[267,95],[268,95],[269,95],[270,96],[271,97],[264,98],[256,99],[124,100],[245,101],[246,102],[121,103],[248,104],[247,105],[125,100],[123,100],[122,106],[118,107],[120,108],[240,109],[241,110],[242,110],[238,111],[236,112],[235,113],[239,114],[237,111],[244,115],[243,115],[260,116],[261,117],[263,118],[113,119],[262,120],[116,121],[234,122],[233,100],[232,123],[54,124],[250,125],[172,126],[178,127],[179,128],[177,129],[194,130],[192,130],[196,130],[195,130],[213,131],[185,132],[215,112],[209,131],[221,133],[220,133],[186,134],[175,134],[176,134],[197,132],[180,131],[188,131],[211,132],[181,131],[202,135],[201,131],[212,132],[183,131],[200,131],[187,134],[219,131],[206,131],[199,134],[182,131],[218,111],[205,134],[222,112],[224,136],[174,137],[193,130],[189,131],[203,138],[226,121],[230,139],[254,140],[227,141],[229,111],[228,141],[204,121],[225,142],[207,121],[184,121],[208,143],[190,121],[191,121],[214,144],[210,121],[198,145],[255,146],[216,147],[223,111],[217,147],[259,148],[173,149],[252,150],[251,151],[253,152],[257,153],[114,154],[249,155],[115,156],[117,157]],"semanticDiagnosticsPerFile":[274,272,171,127,129,128,133,169,165,168,130,131,135,134,132,166,164,170,162,163,136,141,143,138,139,145,146,137,142,144,140,160,159,161,155,157,156,152,158,153,154,147,148,149,150,151,277,273,275,276,282,278,281,279,283,284,285,286,287,295,126,112,280,52,40,41,39,42,43,44,45,46,47,48,49,50,51,63,109,110,296,111,297,298,299,300,119,108,288,290,292,291,289,294,293,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,7,37,33,34,35,36,1,38,167,59,56,61,58,55,60,57,64,66,67,68,69,70,71,72,73,74,75,76,77,78,65,106,79,80,81,107,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,265,266,267,268,269,270,271,264,256,124,245,246,121,248,247,125,123,122,118,120,240,241,242,238,236,235,239,237,244,243,260,261,263,113,262,116,234,233,231,232,54,250,172,178,179,177,194,192,196,195,213,185,215,209,221,220,186,175,176,197,180,188,211,181,202,201,212,183,200,187,219,206,199,182,218,205,222,224,174,193,189,203,226,230,254,227,229,228,204,225,207,184,208,190,191,214,210,198,255,216,223,217,259,173,62,252,251,253,257,258,53,114,249,115,117]},"version":"4.3.3"}
|
|
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.es2020.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.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/lodash.isequal/index.d.ts","./src/typings/openapi.ts","./src/ref-utils.ts","../../node_modules/yaml-ast-parser/dist/src/mark.d.ts","../../node_modules/yaml-ast-parser/dist/src/exception.d.ts","../../node_modules/yaml-ast-parser/dist/src/yamlAST.d.ts","../../node_modules/yaml-ast-parser/dist/src/loader.d.ts","../../node_modules/yaml-ast-parser/dist/src/dumper.d.ts","../../node_modules/yaml-ast-parser/dist/src/scalarInference.d.ts","../../node_modules/yaml-ast-parser/dist/src/index.d.ts","./src/types/index.ts","../../node_modules/@types/minimatch/index.d.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/fs/promises.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/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","../../node_modules/@types/pluralize/index.d.ts","../../node_modules/@types/js-yaml/index.d.ts","./src/js-yaml/index.ts","./src/typings/swagger.ts","./src/visitors.ts","./src/oas-types.ts","./src/config/types.ts","../../node_modules/colorette/index.d.ts","./src/config/utils.ts","./src/config/config.ts","./src/config/rules.ts","./src/config/recommended.ts","./src/config/all.ts","./src/config/minimal.ts","../../node_modules/@types/js-levenshtein/index.d.ts","../../node_modules/@redocly/ajv/dist/compile/codegen/code.d.ts","../../node_modules/@redocly/ajv/dist/compile/codegen/scope.d.ts","../../node_modules/@redocly/ajv/dist/compile/codegen/index.d.ts","../../node_modules/@redocly/ajv/dist/compile/rules.d.ts","../../node_modules/@redocly/ajv/dist/compile/util.d.ts","../../node_modules/@redocly/ajv/dist/compile/validate/subschema.d.ts","../../node_modules/@redocly/ajv/dist/compile/errors.d.ts","../../node_modules/@redocly/ajv/dist/compile/validate/index.d.ts","../../node_modules/@redocly/ajv/dist/compile/validate/dataType.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/applicator/additionalItems.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/applicator/items2020.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/applicator/contains.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/applicator/dependencies.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/applicator/propertyNames.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/applicator/additionalProperties.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/applicator/not.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/applicator/anyOf.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/applicator/oneOf.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/applicator/if.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/applicator/index.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/validation/limitNumber.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/validation/multipleOf.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/validation/pattern.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/validation/required.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/validation/uniqueItems.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/validation/const.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/validation/enum.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/validation/index.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/format/format.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/validation/dependentRequired.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/discriminator/types.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/discriminator/index.d.ts","../../node_modules/@redocly/ajv/dist/vocabularies/errors.d.ts","../../node_modules/@redocly/ajv/dist/types/json-schema.d.ts","../../node_modules/@redocly/ajv/dist/types/jtd-schema.d.ts","../../node_modules/@redocly/ajv/dist/runtime/validation_error.d.ts","../../node_modules/@redocly/ajv/dist/compile/ref_error.d.ts","../../node_modules/@redocly/ajv/dist/core.d.ts","../../node_modules/uri-js/dist/es5/uri.all.d.ts","../../node_modules/@redocly/ajv/dist/compile/resolve.d.ts","../../node_modules/@redocly/ajv/dist/compile/index.d.ts","../../node_modules/@redocly/ajv/dist/types/index.d.ts","../../node_modules/@redocly/ajv/dist/ajv.d.ts","./src/rules/ajv.ts","./src/rules/utils.ts","./src/rules/common/spec.ts","./src/rules/common/operation-2xx-response.ts","./src/rules/common/operation-4xx-response.ts","./src/rules/common/assertions/utils.ts","./src/rules/common/assertions/asserts.ts","./src/rules/common/assertions/index.ts","./src/rules/common/operation-operationId-unique.ts","./src/rules/common/operation-parameters-unique.ts","./src/rules/common/path-params-defined.ts","./src/rules/common/operation-tag-defined.ts","./src/rules/oas3/no-example-value-and-externalValue.ts","./src/rules/common/no-enum-type-mismatch.ts","./src/rules/common/no-path-trailing-slash.ts","./src/rules/common/path-declaration-must-exist.ts","./src/rules/common/operation-operationId-url-safe.ts","./src/rules/common/tags-alphabetical.ts","./src/rules/oas3/no-server-example.com.ts","./src/rules/oas3/no-server-trailing-slash.ts","./src/rules/common/info-description.ts","./src/rules/common/tag-description.ts","./src/rules/common/info-contact.ts","./src/rules/common/info-license.ts","./src/rules/common/info-license-url.ts","./src/rules/common/operation-description.ts","./src/rules/oas3/no-unused-components.ts","./src/rules/common/path-not-include-query.ts","./src/rules/common/parameter-description.ts","./src/rules/common/operation-singular-tag.ts","./src/rules/common/operation-security-defined.ts","./src/rules/no-unresolved-refs.ts","./src/rules/oas3/boolean-parameter-prefixes.ts","./src/rules/common/paths-kebab-case.ts","./src/rules/common/path-http-verbs-order.ts","./src/rules/oas3/no-empty-servers.ts","./src/rules/oas3/no-invalid-media-type-examples.ts","./src/rules/common/no-identical-paths.ts","./src/rules/oas3/no-undefined-server-variable.ts","./src/rules/common/operation-operationId.ts","./src/rules/common/operation-summary.ts","./src/rules/common/no-ambiguous-paths.ts","./src/rules/oas3/no-servers-empty-enum.ts","./src/rules/common/no-http-verbs-in-paths.ts","./src/rules/oas3/request-mime-type.ts","./src/rules/oas3/response-mime-type.ts","./src/rules/common/path-segment-plural.ts","./src/rules/common/path-excludes-patterns.ts","./src/rules/common/no-invalid-schema-examples.ts","./src/rules/common/no-invalid-parameter-examples.ts","./src/rules/common/response-contains-header.ts","./src/rules/oas3/response-contains-property.ts","./src/rules/common/scalar-property-missing-example.ts","./src/rules/oas3/index.ts","./src/rules/oas2/boolean-parameter-prefixes.ts","./src/rules/oas2/request-mime-type.ts","./src/rules/oas2/response-mime-type.ts","./src/rules/oas2/response-contains-property.ts","./src/rules/oas2/index.ts","./src/redocly/registry-api-types.ts","./src/redocly/registry-api.ts","./src/redocly/redocly-client-types.ts","./src/redocly/index.ts","./src/decorators/common/registry-dependencies.ts","./src/decorators/common/operation-description-override.ts","./src/decorators/common/tag-description-override.ts","./src/decorators/common/info-description-override.ts","./src/decorators/common/remove-x-internal.ts","./src/decorators/common/filters/filter-helper.ts","./src/decorators/common/filters/filter-in.ts","./src/decorators/common/filters/filter-out.ts","./src/decorators/oas3/index.ts","./src/decorators/oas2/index.ts","./src/config/builtIn.ts","./src/config/config-resolvers.ts","./src/config/load.ts","./src/config/index.ts","./src/walk.ts","./src/utils.ts","./src/resolve.ts","./src/types/oas3.ts","./src/types/oas2.ts","./src/types/oas3_1.ts","./src/rules/oas2/remove-unused-components.ts","./src/rules/oas3/remove-unused-components.ts","./src/bundle.ts","./src/types/redocly-yaml.ts","./src/typings/common.ts","./src/rules/other/stats.ts","./src/format/codeframes.ts","./src/format/format.ts","./src/lint.ts","./src/index.ts","./src/benchmark/utils.ts","./src/benchmark/benches/lint-with-many-rules.bench.ts","./src/benchmark/benches/lint-with-nested-rule.bench.ts","./src/benchmark/benches/lint-with-no-rules.bench.ts","./src/benchmark/benches/lint-with-top-level-rule-report.bench.ts","./src/benchmark/benches/lint-with-top-level-rule.bench.ts","./src/benchmark/benches/recommended-oas3.bench.ts","./src/benchmark/benches/resolve-with-no-external.bench.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/jest-diff/build/cleanupSemantic.d.ts","../../node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-diff/build/diffLines.d.ts","../../node_modules/jest-diff/build/printDiffs.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/pretty-format/build/types.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"ac3a8c4040e183ce38da69d23b96939112457d1936198e6542672b7963cf0fce","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"cce43d02223f8049864f8568bed322c39424013275cd3bcc3f51492d8b546cb3","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"8dff1b4c2df638fcd976cbb0e636f23ab5968e836cd45084cc31d47d1ab19c49","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"8f4c9f651c8294a2eb1cbd12581fe25bfb901ab1d474bb93cd38c7e2f4be7a30","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"60761e6ea886034af0f294f025a7199360ce4e2c8ba4ec6408bc049cf9b89799","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e","affectsGlobalScope":true},"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"6bb8d7433a29fbd33df8e9693f1788a273a9eb90b96c8f99c745678c7db623f1","85ea2788ccd91b3a5b2517801f5f5aff2b771e0d44ffe6f7d94d7857e005cf42","fe86e0fe2a0ecd4e03f80043dcc5ed8e300d14e6a8b8e462a7f1dc2e2428e76b","8d1539367a9f5a03698f4c37111251eb76433ea8fcb5f1e546571b8513cac822","9ad71085f8ab35282a341995f85c6e06a19e6d5ab73b39f634b444ce8742a664","ee94d8f60c253d9994559ad325e9cb8a7af6bd36176884cb869ee5a40daa766c","606de01a4212a48518a219585f673504d3c0c26b361706006038a71bf8b9f42c","76de776e227ad01b703ce076b32177da31a765d5b5a681d5bb4c4e0f4876840f","aa4c984c8f2919742d06f305b1870bf180275cbe015490451a6374e6f6b9998a","46b9cdcd62e90f604876c143481ac7ff2c89cdfb902179bda0d8ee44c0695beb","35db4fbbdb6d715072006ab4eaf4fd396144d87c8335efbe904449c43b4f12c9","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","4c2c4f53e8eedd970f8afa369d7371544fb6231bf95e659f8602e09abe74d5a5",{"version":"32ddf2b046fa7269050f64a87f1f3d2db10b92ad6302460681915af1207b1222","affectsGlobalScope":true},"c2b5085f47e41d6940bbc5b0d3bd7cc0037c752efb18aecd243c9cf83ad0c0b7","3143a5add0467b83150961ecd33773b561a1207aec727002aa1d70333068eb1b","9b2a8f604e7c0482a9061755f00b287cc99bd8718dc82d8207dd74c599b6dc43","d0fc76a91c828fbe3f0be5d683273634b7b101068333ceed975a8a9ac464137b",{"version":"1a048ff164b8d9609f5de3139d4e37f6e8a82af82087ac414b9208f52ef8aac7","affectsGlobalScope":true},"3111079f3cb5f2b9c812ca3f46161562bce5bfb355e915f46ed46c41714dc1c3","db86f82fac051ae344b47e8fe7ac7990174b41db79b2b220a49dc5a47c71a9b5","b32b6b16cb0bda68199582ad6f22242d07ee75fac9b1f28a98cd838afc5eea45","4441ee4119824bfaebc49308559edd7545978f9cb41a40f115074e1031dde75f",{"version":"60693a88462d0e97900123b5bf7c73e146ce0cc94da46a61fe6775b430d2ff05","affectsGlobalScope":true},{"version":"588c69eda58b9202676ec7ca11a72c3762819b46a0ed72462c769846153c447c","affectsGlobalScope":true},"ae064ed4f855716b7ff348639ddcd6a6d354a72fae82f506608a7dc9266aa24c","8e63e656267f767e6c15b47776f641d30ef29690581ab9bdddff5b83885d1a43","53d2c24a3cbc00a88ebaf8ab8e1b6e206bc3a6647d544f877241684ea3d484e3","ecee890ff04b70d8e8815fb753c20f24f95203426267a577823d375009c1ace7","0ce99c641ea20b0c0c09d093fc28f18f5ab31dc80033707a1ac3154399de2559","7dc9ed91e245cf0c4f8add7f6845d0cb08cceec4408ce3398c51e1f6dd7679ec","44e42ed6ec9c4451ebe89524e80ac8564e9dd0988c56e6c58f393c810730595d","d79fda68cbfb361c4ee9cd9ea169babb65887534d64017726cd01f54783d20a5","1606ea615c0a5ea9f5c1376a33e34c0e1112e8dee31a5b3b8a74ce781893aa6f","9fef9de633d01cb7f01f68195626a890ededd25cf96a1e785617d08c8668230d","4455c78d226d061b1203c7614c6c6eb5f4f9db5f00d44ff47d0112de8766fbc4",{"version":"ec369bb9d97c4dc09dd2a4093b7ca3ba69ad284831fccac8a1977785e9e38ce5","affectsGlobalScope":true},"4465a636f5f6e9665a90e30691862c9e0a3ac2edc0e66296704f10865e924f2a","9af781f03d44f5635ed7844be0ce370d9d595d4b4ec67cad88f0fac03255257e","f9fd4c3ef6de27fa0e256f4e75b61711c4be05a3399f7714621d3edc832e36b0","e49290b7a927995c0d7e6b2b9c8296284b68a9036d9966531de65185269258d7","c3689f70ce7563c2299f2dcb3c72efdf6f87ae510e7456fa6223c767d0ca99fc","874ca809b79276460011480a2829f4c8d4db29416dd411f71efbf8f497f0ac09","6c903bceaf3f3bc04f2d4c7dcd89ce9fb148b3ba0a5f5408d8f6de2b7eecc7ea","c65a0eeb867ff5c41debade8e2e8e63ec5367172d121afa726a598111d348816","23a28f834a078986bbf58f4e3705956983ff81c3c2493f3db3e5f0e8a9507779","4febdf7f3ec92706c58e0b4e8159cd6de718284ef384260b07c9641c13fc70ce",{"version":"eabefc2999c1489cf870e0c85af908900462fa245822d9a4616780a1a129945d","affectsGlobalScope":true},"7335933d9f30dcfd2c4b6080a8b78e81912a7fcefb1dafccb67ca4cb4b3ac23d","a6bfe9de9adef749010c118104b071d14943802ff0614732b47ce4f1c3e383cd","4c3d0e10396646db4a1e917fb852077ee77ae62e512913bef9cccc2bb0f8bd0e","3b220849d58140dcc6718f5b52dcd29fdb79c45bc28f561cbd29eb1cac6cce13","0ee22fce41f7417a24c808d266e91b850629113c104713a35854393d55994beb","22d1b1d965baba05766613e2e6c753bb005d4386c448cafd72c309ba689e8c24",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"79d679a1d56574cc5cef92be1f0e5e8fb4af62fb55933b236670a0e0a23c83f6","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","3898e3dbe94b6fe529fbe8f0faee1309c1923100516d7a014b301955e52ece77","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","8f7a2387ecc680872d09a6edbca1612d699f77ee5a5129944935c3798a613d04","686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","1184ca20fae54cd6821689f64ec85f98edcb2d393d98bdf30b66ea7059d94baa","5dd3362a43459f9da722b4fa519be37c2d0cd5f7e5f3fc29b57ec4b86733ccb3","9b61b4f76725ef9c68e37280b5e53f6b53f80cf48c7814a4b0bea2aa818fafaf","fac66aed5683e1397b16b387cf8ebe49157dfa6d137104632b7e219ec2d3e32b","52febc2cc0b46e5c1ed4c969d5d76da97ab85d8cd7b822f0052fb72982700caa","a456dd94a596de621bd25cf3c91278101ea62782c3ac4435aef9190a2336ddde","e09b89ef9f09cf906aebaf34a5fe9c012bfa8fca8bc1cdc09122183388b66096","c7cda9eb828a1265f60fc54bb1c45875dc6be664cd60e7783fe4df85173007ce","603abc79a4bab27d7c5c5b235151b3c00a70c9cd13cafa7f0f10a14412aaeb07","4232fe21fcb4749a4d951b78b851b4b347b85915ea047dc65d21f0dbadf425e8","23057160e288e2f81c4feca239392ff59e88a9e3b5bed6eeafffc7ada897c601","914062d0cab4d2780efa49e20d6a81e04e54dd39483e8f8b182ce59456ac9daf","21bb8dda75eb025927e9d62d8fa619e349ebc5ba0b8b9dddd8fdfc9ff058e2b8","e6ada7804df8cd574c66660fdc6abc584a31692293636d1626573e476699bcf0","60bb0e47502bf8716d1230288b4e6387c1d34cded12752ab5338108e2e662e67","b8870b5155d11a273c75718a4f19026da49f91c548703858cd3400d06c3bd3b8","b3ae4ded82f27cabba780b9af9647f6e08c9a4cabe8fbb7a0cca69c7add9ef4b","8d26ae32e5c9c080e44aee4a67e5ef02b5fda0604e6fecbb7b753c537e5282d9","05c4e792dae38912ba333725cdf8c42d242337d006c0d887f4ce5a7787871a95","cd44995ee13d5d23df17a10213fed7b483fabfd5ea08f267ab52c07ce0b6b4da","1490dc5531e1d5efb8a52d1b3d946c572e270836f0f1490cfadf8fcf87a6b4a4","1a23b521db8d7ec9e2b96c6fbd4c7e96d12f408b1e03661b3b9f7da7291103e6","d3d0d11d30c9878ada3356b9c36a2754b8c7b6204a41c86bfb1488c08ce263b0","a6493f1f479637ed89a3ebec03f6dc117e3b1851d7e938ac4c8501396b8639a8","ae0951e44973e928fe2e999b11960493835d094b16adac0b085a79cff181bcb9","9d00e3a59eff68fa8c40e89953083eeaad1c5b2580ed7da2304424b249ecb237","1609ad4d488c356ee91eba7d7aa87cc6fb59bc8ac05c1a8f08665285ba3b71ad","8add088f72326098d68d622ddb024c00ae56a912383efe96b03f0481db88f7c9","dd17fe6332567b8f13e33dd3ff8926553cdcea2ad32d4350ce0063a2addaa764","4091d56a4622480549350b8811ec64c7826cd41a70ce5d9c1cc20384bb144049","353c0125b9e50c2a71e18394d46be5ccb37161cc0f0e7c69216aa6932c8cdafb","9c5d5f167e86b6ddf7142559a17d13fd39c34e868ae947c40381db866eed6609","4430dea494b0ee77bf823d9a7c4850a539e1060d5d865316bb23fb393e4f01d7","aae698ceead4edad0695b9ea87e43f274e698bdb302c8cb5fd2cab4dc496ccf0","51631e9a0c041e12479ab01f5801d8a237327d19e9ee37d5f1f66be912631425","c9d5d8adb1455f49182751ce885745dcc5f9697e9c260388bc3ae9d1860d5d10","f64289e3fa8d5719eaf5ba1bb02dd32dbbf7c603dda75c16770a6bc6e9c6b6d9","b1aa0e2e3511a8d10990f35866405c64c9e576258ef99eeb9ebafed980fd7506","2d255a5287f2fb5295688cb25bd18e1cd59866179f795f3f1fd6b71b7f0edf8f","43c1dbb78d5277a5fdd8fddce8b257f84ffa2b4253f58b95c04a310710d19e97","6c669d7e080344c1574aa276a89e57c3b9f0e97fab96a09427e7dfb19ca261bf","b71ac126853867d8e64c910f47d46d05c5ea797987d2604f63d401507dc43b6d","9a37238558d28b7ee06d08599e92eab30b90704541cc85e6448009d6d55fffa9","120b14d66a061910309ff97e7b06b5c6c09444218178b80b687a92af4d22d5dc","3de958065e3a44cbe0bfa667813bc59c63e63c9ce522af8dc1b64714910fa9ba","66e655f7c43558bae6703242cbd6c0551a94d0a97204bd4c4bbf7e77f24d1f85","72f7b32e023814078046c036ed4b7ad92414be0aebb63e805c682e14103ae38a","a89d8e67966d085ff971c9900cfa1abdd9732bab66d9c1914ecc15befdf8623d","396ce3137bb6388b71bbd7d88071c71c9b3333cd20cd04bf6a40cd6ee88c531d","2887a41f8373ff8443ac2bb9d898b398687621830465643ad131ad1a43e2678e","cde493e09daad4bb29922fe633f760be9f0e8e2f39cdca999cce3b8690b5e13a","18cc75193738e5c88f89facc31481024911f04da53bb3294930ecacd112a8f6e","f4eeac349468d231cc2968dac0cb744b2fd834010c6c1860e9fa2a8713907941","9f3c5498245c38c9016a369795ec5ef1768d09db63643c8dba9656e5ab294825","8f35095ce6914b0e95d563adae6f2546dddd8f85c4034d9050530076d860b5b8","b34bf09a55a5049f1f741a32360633f7569447f193b02e7b9a428ef8bc7fb9fe","ba1f5ad0e2df2c17351247ef47d8819713be50a1b7ad0520b15c6070d280b15b","821e64ddbdfa10fac5f0aed1c1d4e1f275840400caa96357ddfd15d02e5afba1","02117251cb4943bae34ba74f6a5586a37d8b634b60043e013ffcf01fe7d59d5f","73f7213497b51005bc2c4495009c54deaf11242c8cf1a11984c7f154a5ebdc6a","782cea53a4f992a7eaf9ccb6302e5989480ffbafa4b1e2f4f987ccd4b230d6f1","cc9f0665f4555a6f818dcaf79de44ff3f9e93211458548dd6260506e27b38025","a0be06b87b35dfe34748f797a7644f41fe0d00720907b4d93233bdb04f248f42","92e6b6b1498925ee5c145429db6aa865be29fb66997973fb33fb62204027de97","6638d2286829ad67464cbfd9018167b199e0dd21f7efcdcd56a1e206b2aa190b","841ab3bf48be1021eb63c3f59b7813c26d8f6f925d7ced1410bf435f6d23d792","e8b5d684b18772f93fd7ac85652a9dd8c3c4ac42d255ebc676ddd75d213a60eb","e9b215c7ee7d0425172e4c70de8d4a6334dcafb8e2ee8c613ce9132faa12146c","eba136cc9eb2294901b6752f147ca1c4d0ed24b7d59069585bad511d412d433e","6e3a3b59f2b4ebf3c4ca906f7f56d3d53f707eda7ed10be0863029d814b51583","329318845916f35128387bb291f2f252ccc80fe968ae6f6ee7a7bd644b9af509","3fa4cccc267fb6076b9e0845f17677e78c72342bb5151d361da7774a1f0a45c5","8e8d8e11136d8c5a59360e90455356a41c8006129f7e459fbbf8a4551379f23a","a959db7039a615c94a9c236d0664463fd8fcc7c08e68c01bd7de4b49116c2b2c","3144d082b0efd80551c4b9ff1dd29ba6b0f0bb0709d481ed5285313e0845ee36","a9319c8e234166988f24be3a12d8845a5d43f34d31f72621ca311384ee7a56ae","37106a318a9b70352fc7fb06ed9a31c218342402f194355ad7c3e83c226b8b84","8d6b668236eb00f3942aa43d87ad361448b34ad335446fb9f4915ee612c1c372","232fe9b0f859a921132d464999ff9d2f979e29636dfd2225989e638a43bc5630","679f01be7caf9e091684d1f0fdabc8837991ed589a4c2617c72799c4aed0b60e","a3f88fc187a30877572d86ca78bfbad1ce1f7f081a13f4a1a3de12fc19172763","66d74d867bddeb432fb11821c818d712fa2142b5d4e8e415e33cd1001422e304","53e922fc5556e9825e10ebc780ea40088404abb4f1a76251bb5fac18eb20fc93","099e32d949572f34338bcc5a9bf84b09966b5b347b0462154eaf1679968ff74e","b72ac783938f2f9522af3694262d6112b061c0fa2b8c4c5df226efd0550fcba9","93a9e32ced227f7ff4410a258829bc31439182d367e6b3d0cabf421422aa02b8","576815ad63894f88f18c36c239e23562b35033e0dab57ff665dc0410db4a8b54","d23b6230c10ffb27b8cec7f0aef6443f8736620ce07bf7a991efb02e0f599d42","cb2796cb7a19f4a50dea47a54885c072578c08efdf3c0f1f3f766c9c4d5b414f","ca2546e775a426dbbd1d7834a9926441ad9da4ca4c1f92dd355b2a2e08ce45cf","d0b2d3ab2b3934d5ea2d1ca2973fce9c031bec115c37e437b32bad32c0d79196","b1a34ec7490c02b8b491435ae2becd70782c826cab2aee20037c9af4e35b8762","8434dc2a1f866e713703e6d8ccc85168d92c07049138a3f2895e63f1b0d0ff8a","661cba882f946bd31df69ead293de6fc637bfbde3d53aff73276bf79bfa73760","9c3c88258a9755fd5f4b5287c4bc713b2bac7368f16c86f9f4a9001d762cd167","d83f1778cc95256ae503c326ea6804cffef5e5d6310e0d8b8dc56a2107abc7ae","fd1531c043404c41a9554cc39c1af2738f53edc508e450a17c246f3c5e881889","4c056133f7e870900b2350a0f2780390d9244103b869b961b5235bb8ba66f8c8","56d135e85dcc15aa982d8ca85f8021859447db147c51123e3811b3a48cb7d90b","b7b10c1fd8cd66c7869aa491531e2f329b9112ffcadbd561ce646955f559a5ad","4dc2b938436d21366b99241a23997e77b326a767e750063bb6e2f3a9df4ac74e","6779e161b87b79684bbcf4514e8e2372d87d066930be098425539b64cf47351f","84af506cbec2a4666b02c573f601dad8d43fa7582bc4a675278b0d905ca9a851","df41f874a075a75dd3148c5a2e2980c7e7aff23f33212c2427e20c763501fed1","bc7711d24df78e5dbedb9b206cdc72e1880a757328bd5e094b582dcf572bb273","63f0634d9c4ce2d509e81033b88f5a565c5151876300616dd07958b54f944b14","98bdb4dde3f730fb44223d73178f6b23ab1be6d8dcdf6eab75c33659daab5bc9","17654eeaa4ac100ea1ee697e2e1853e256f693404137945a8d89eebcbbf1c6fb","414f1d6c0816373b377eead2175227089eaaae0737f6bfc2d8897aa8e022789b","ed959779509febe0bfb0a9d40506e810a10dee27b66cb00792866c58e15d06fd","67b3f1d8f68aa2201c9cf0f72873cf4f813f53a8b3fc657983091af0b50b198d","86d54bcf44da0601fd519a8b887df605a1d80dbb6375df1042e99a1d1a0c0804","41d545e5d36083f5bf6432c93dc2d3cb29ed4f8deae03b9dec59c55e02fbe597","0b4cc0ce5b20bc61ab6191013d258d109c9c8c6bb973368bb9ec57fce8b5ff97","9814894f88bc9283fa344d1a075913da647a36a7aa5f6d3080ce5df057d2b2d3","ec80247b577af5053d4846f8f72efc5e05c5d3c6e5eb76111656d2cf22f01584","252034dc90f6e28b019557880b9c23308d9f3b98a801c37c6e8f7df74d01f5b1","a1f6b76764e8658554cc3e25da387286662a3c5a856bfbeac68e76d0759bb7fa","380bb63c393834a26b1627c36d0a1b372bffbc8b020f92591cb85478bfe358c0","a3443a2339b42c762d7980f11195fe1bede24f567d3052700cf62ea89c465588","3293d92b4c1e3262f0977860d86cf3d6cf1fff98e8c0b333e0bfaeebdcbf7005","19e6bf4146329b9217fa9de9706d67af25ed9dfdeb4f313793121d753894d95a","74b69859cd51d2abe97aa8dcf5d03b0e05f32c530d6582d42b21eb31fcb05ab3","246dc494a9f2e58c45b0854c0dab413a45f0d986e11afc3d88a2d33afa9dc55c","5fed2f78a6d019ee3da2e07aaf10247b0fe3658deddf463d9665363acd707fe6","e40227411ee27967433e6ded58b9545552068da77e22ca92f1858d5366c1c4b1","d6fc5b9dc7c56f856465db6d3584a44d93921bf741eb232581425d136a7bfa46","d337952248ee720900b65df385893c5886d56d2f879825d0b7d057451469c6e5","87f6b8ff466092632ce6223aa379077a9510c2abb8eb170056c446f2d2008bac","cdb1f76cdb1911a0b87a98ee4946ffc4a738d4d3426ab5b14b1dc5a37e54f187","c5f3fe1311a7d3cb2ea45a83a7fc1876c2f83dc2f910adb0e504292b8d7c24c4","ecd26733e59d19dc4920914c3d54682dcebf269f5d66f13c07a1b23cc85aceeb","5bfc817939abb84ca9fa0f18029ffb809d212fa86413803d0b10e47470c46ad8","1a14a6e672f205c6811042ea3e634d0d0b95cb5d56125a0d316d95501fc9b127","88dc0dcab75df96583b348f379c7aec6712561d17d8ce208d36ab492b23ae46d","1bbbde60b3efb9dad0f6b19b677472e9b7ae3820201446001342c2698b5a5369","ed1646ebfb1043c6b6055d1e0055fa451a5e4f0bdd0e1d219c3a5b858e29edfd","674c67063d663ddf85575d8234dce1845c5569ec9449b8399845078c58a6b1b5","f1b150383951e3658c2df4335782e7314313c6d8c19f16d7e772e2b6d516d67c","8f2beab1be8f92d9fceb4a4be151a1073a6c15ed928e8adca731184908f28363","430dff101c72b6e6580608c2c981e6fe4bb2ba41b27935b65dfa3e2f21f4abfa","3d0d0346b338705a5b0b11ac9d3b0d23230661d232b87342741ea5ea3551bbbc","5d153364e32770d60f1c6b71ec4c7409e52b3142302ba0c814123ea1bff43b3a","6997ab930e67ad2c22cb4a96d630ffa680a9a23ea64bf55ee0ffe6e518aa3874","c7baf24c9df21b7bcc5809b4519ffdd10d9d8924b0514116c3befb7e97627a5e","0eda506c24ee190c7203710e9e55905704acb219bb06ce69df0f7ba08857e8b3","ecbbdc4064e052eb2d36ca7eb826e1515e125fe16a5f9e9e2f08e988952d8812","ce22ecbb6e51bad11b47fa4ae17f0896279760853a8c82c79f231996c6fdfb41","c43e4623bc6596ef75243bc57a4cb072c9c384baf5d8971465157302ad18361e","60fe92b0d083765361126428c7879406d1eff45829b042be27a49827360c000d","d9114e7c6139eff0575a2068e492e6c5c026a4e6c47f4afdfc440c72493af990","39cf517b69d90fda2f9c9a10b860ed1465fc22d50c25889ed5e4b757fbbcd01d","8dde57b83dcb3175234a3e853eb3e4f7ca94cf9aaeda962c4112569d3cd32e5e","24adf051c683dd54bddd75d069d722668207f8cc82d4801155233ac4447a6b27","0c6cd93f3cae88f1dff9fcab9389f272e9235560ccf38a19f88edc376d021558","0938b1c9e612edb9c5b3dfd49f8db5a5fc344a88ed23daf83e8516455e86742e","a41314eb87962254133595c841fb39e47e9e493943c7e3165d44bf5bd14db34f","9e5e3201ca8d962247b747892f65478092a2d3842ed2e09e0f6d7993f215a181","f3a7da43f24660f03984dfb64773bcf0d367638df673c7d1852ec6941d535dcb","67633388f50fe010a7b4d892721437d0fac88a282ef46217137d263a8a6651ed","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","a46a2e69d12afe63876ec1e58d70e5dbee6d3e74132f4468f570c3d69f809f1c","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","fc72135da24040641388fb5f2c2a7a99aa5b962c0fa125bd96fabeec63dd2e63","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","c6297435733f252a9c0e2297fab3b58014b8fde5fa097a4102dae4e12522bccd","e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","f1d8b21cdf08726021c8cce0cd6159486236cf1d633eeabbc435b5b2e5869c2e","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","09c4b2e2d3070239d563fc690f0cc5db04a2d9b66a23e61aef8b5274e3e9910c"],"options":{"composite":true,"declaration":true,"module":1,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./lib","rootDir":"./src","strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":3},"fileIdsList":[[272],[128,129,133,160,161,165,168,169],[126,127],[126],[128,169],[128,129,165,167,169],[166,169,170],[169],[128,129,168,169],[128,129,131,132,168,169],[128,129,130,168,169],[128,129,133,160,161,162,163,164,168,169],[128,129,133,165,168],[133,169],[135,136,137,138,139,140,141,142,143,144,169],[158,169],[134,145,153,154,155,156,157,159],[138,169],[146,147,148,149,150,151,152,169],[272,273,274,275,276],[272,274],[279,281],[278,279,280],[63,76,77,107],[77,107],[285],[286],[292,294],[51],[39,41,42,43,44,45,46,47,48,49,50,51],[39,40,42,43,44,45,46,47,48,49,50,51],[40,41,42,43,44,45,46,47,48,49,50,51],[39,40,41,43,44,45,46,47,48,49,50,51],[39,40,41,42,44,45,46,47,48,49,50,51],[39,40,41,42,43,45,46,47,48,49,50,51],[39,40,41,42,43,44,46,47,48,49,50,51],[39,40,41,42,43,44,45,47,48,49,50,51],[39,40,41,42,43,44,45,46,48,49,50,51],[39,40,41,42,43,44,45,46,47,49,50,51],[39,40,41,42,43,44,45,46,47,48,50,51],[39,40,41,42,43,44,45,46,47,48,49,51],[39,40,41,42,43,44,45,46,47,48,49,50],[79,99,107,108,109],[299],[79,93,107],[288,289],[288,289,290,291],[293],[55],[56,57,58,59,60],[57],[56],[64],[66],[67,72],[68,76,77,84,93],[68,69,76,84],[70,100],[71,72,77,85],[72,93],[73,74,76,84],[74],[75,76],[76],[76,77,78,93,99],[77,78],[79,84,93,99],[76,77,79,80,84,93,96,99],[79,81,93,96,99],[64,65,66,67,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],[76,82],[83,99],[74,76,84,93],[85],[86],[66,87],[88,98],[89],[90],[76,91],[91,92,100,102],[76,93],[94],[95],[84,93,96],[97],[84,98],[90,99],[100],[93,101],[102],[103],[76,78,93,99,102,104],[93,105],[77,86,250,262,264],[77,86,247,250,262,264],[62,77,86,250,251,264],[113,116,117,247,250],[52,53,54,62,115,116,121,202,233,247,248,249,250,251,252,253,254,255],[117],[117,122,123,124,224,229,242,243],[54,86,117,118,119,120,244,249,250],[62,77,86,113,116,117,119,248,249],[117,119,120,121,244,245,246],[77,86,117,119,120,233,245,249],[116,120,249],[62,116,248],[117,118,120,249],[54,248,249],[115,239],[115,248,249],[53,114,115,248,249],[115,233,248],[54,115,248,249],[115,234,235,236,237,238,240,241],[54,61,118,248],[86,118,247,248,260],[53,54,62,113,114,115,116,233,247,248,249,250,251,252,253,256,257,258,259,260,261,262],[112],[62,115,116,171,173,247,248,250,251,252,253,257],[115],[77,85,86,117,118,120,231,232,249],[110,117,120,230,249],[53,250],[53,54,61,62,77,86,117,249],[54,170,248],[54,176,249],[115,176,177],[54,177,248],[115,172],[53,114,115,248],[53,114,115,172,248],[53,172,248],[115,248],[53,54,114,115,248],[53,114,115,116,248],[54,62,115,172,249],[54,115,248,250],[115,173,174,175,178,179,180,181,182,184,185,186,187,188,191,192,193,194,195,196,198,199,200,201,202,204,205,208,210,211,212,214,217,218,219,220,221,223,225,226,227,228],[54,114,115,249],[114,115,248,249],[116,173,174,175,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,214,215,216,217,218,219,220,221,222,223],[53,54,115,172,248],[53,115],[54,115],[53,54,115,249],[53,115,248,249],[53,114,258],[53,54,125,171,248,249],[62],[54,62],[62,251],[62,249],[53,112],[63,77,86,110,111,113,118,247,248],[53,54,62,114,248,249],[53,54,62,115,116,247,249,250]],"referencedMap":[[274,1],[170,2],[128,3],[127,4],[132,5],[168,6],[167,7],[129,8],[130,9],[134,9],[133,10],[131,11],[165,12],[163,8],[169,13],[135,14],[140,8],[142,8],[137,8],[138,14],[144,8],[145,15],[136,8],[141,8],[143,8],[139,8],[159,16],[158,8],[160,17],[154,8],[156,8],[155,8],[151,8],[157,18],[152,8],[153,19],[146,8],[147,8],[148,8],[149,8],[150,8],[277,20],[273,1],[275,21],[276,1],[282,22],[281,23],[283,24],[284,25],[286,26],[287,27],[295,28],[52,29],[40,30],[41,31],[39,32],[42,33],[43,34],[44,35],[45,36],[46,37],[47,38],[48,39],[49,40],[50,41],[51,42],[110,43],[300,44],[108,45],[290,46],[292,47],[291,46],[294,48],[56,49],[61,50],[58,51],[60,51],[57,52],[64,53],[66,54],[67,55],[68,56],[69,57],[70,58],[71,59],[72,60],[73,61],[74,62],[75,63],[76,64],[77,65],[78,66],[79,67],[80,68],[81,69],[107,70],[82,71],[83,72],[84,73],[85,74],[86,75],[87,76],[88,77],[89,78],[90,79],[91,80],[92,81],[93,82],[94,83],[95,84],[96,85],[97,86],[98,87],[99,88],[100,89],[101,90],[102,91],[103,92],[104,93],[105,94],[265,95],[266,95],[267,95],[268,95],[269,95],[270,96],[271,97],[264,98],[256,99],[123,100],[244,101],[245,102],[120,103],[247,104],[246,105],[124,100],[122,100],[121,106],[117,107],[119,108],[239,109],[240,110],[241,110],[237,111],[235,112],[234,113],[238,114],[236,111],[243,115],[242,115],[260,116],[261,117],[263,118],[113,119],[262,120],[116,121],[233,122],[232,100],[231,123],[54,124],[250,125],[171,126],[177,127],[178,128],[176,129],[193,130],[191,130],[195,130],[194,130],[212,131],[184,132],[214,112],[208,131],[220,133],[219,133],[185,134],[174,134],[175,134],[196,132],[179,131],[187,131],[210,132],[180,131],[201,135],[200,131],[211,132],[182,131],[199,131],[186,134],[218,131],[205,131],[198,134],[181,131],[217,111],[204,134],[221,112],[223,136],[173,137],[192,130],[188,131],[202,138],[225,121],[229,139],[254,140],[226,141],[228,111],[227,141],[203,121],[224,142],[206,121],[183,121],[207,143],[189,121],[190,121],[213,144],[209,121],[197,145],[255,146],[215,147],[222,111],[216,147],[259,148],[172,149],[252,150],[251,151],[253,152],[257,153],[114,154],[249,155],[115,156],[248,157]],"exportedModulesMap":[[274,1],[170,2],[128,3],[127,4],[132,5],[168,6],[167,7],[129,8],[130,9],[134,9],[133,10],[131,11],[165,12],[163,8],[169,13],[135,14],[140,8],[142,8],[137,8],[138,14],[144,8],[145,15],[136,8],[141,8],[143,8],[139,8],[159,16],[158,8],[160,17],[154,8],[156,8],[155,8],[151,8],[157,18],[152,8],[153,19],[146,8],[147,8],[148,8],[149,8],[150,8],[277,20],[273,1],[275,21],[276,1],[282,22],[281,23],[283,24],[284,25],[286,26],[287,27],[295,28],[52,29],[40,30],[41,31],[39,32],[42,33],[43,34],[44,35],[45,36],[46,37],[47,38],[48,39],[49,40],[50,41],[51,42],[110,43],[300,44],[108,45],[290,46],[292,47],[291,46],[294,48],[56,49],[61,50],[58,51],[60,51],[57,52],[64,53],[66,54],[67,55],[68,56],[69,57],[70,58],[71,59],[72,60],[73,61],[74,62],[75,63],[76,64],[77,65],[78,66],[79,67],[80,68],[81,69],[107,70],[82,71],[83,72],[84,73],[85,74],[86,75],[87,76],[88,77],[89,78],[90,79],[91,80],[92,81],[93,82],[94,83],[95,84],[96,85],[97,86],[98,87],[99,88],[100,89],[101,90],[102,91],[103,92],[104,93],[105,94],[265,95],[266,95],[267,95],[268,95],[269,95],[270,96],[271,97],[264,98],[256,99],[123,100],[244,101],[245,102],[120,103],[247,104],[246,105],[124,100],[122,100],[121,106],[117,107],[119,108],[239,109],[240,110],[241,110],[237,111],[235,112],[234,113],[238,114],[236,111],[243,115],[242,115],[260,116],[261,117],[263,118],[113,119],[262,120],[116,121],[233,122],[232,100],[231,123],[54,124],[250,125],[171,126],[177,127],[178,128],[176,129],[193,130],[191,130],[195,130],[194,130],[212,131],[184,132],[214,112],[208,131],[220,133],[219,133],[185,134],[174,134],[175,134],[196,132],[179,131],[187,131],[210,132],[180,131],[201,135],[200,131],[211,132],[182,131],[199,131],[186,134],[218,131],[205,131],[198,134],[181,131],[217,111],[204,134],[221,112],[223,136],[173,137],[192,130],[188,131],[202,138],[225,121],[229,139],[254,140],[226,141],[228,111],[227,141],[203,121],[224,142],[206,121],[183,121],[207,143],[189,121],[190,121],[213,144],[209,121],[197,145],[255,146],[215,147],[222,111],[216,147],[259,148],[172,149],[252,150],[251,151],[253,152],[257,153],[114,154],[249,155],[115,156],[248,157]],"semanticDiagnosticsPerFile":[274,272,170,126,128,127,132,168,164,167,129,130,134,133,131,165,163,169,161,162,135,140,142,137,138,144,145,136,141,143,139,159,158,160,154,156,155,151,157,152,153,146,147,148,149,150,277,273,275,276,282,278,281,279,283,284,285,286,287,295,125,112,280,52,40,41,39,42,43,44,45,46,47,48,49,50,51,63,109,110,296,111,297,298,299,300,118,108,288,290,292,291,289,294,293,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,7,37,33,34,35,36,1,38,166,59,56,61,58,55,60,57,64,66,67,68,69,70,71,72,73,74,75,76,77,78,65,106,79,80,81,107,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,265,266,267,268,269,270,271,264,256,123,244,245,120,247,246,124,122,121,117,119,239,240,241,237,235,234,238,236,243,242,260,261,263,113,262,116,233,232,230,231,54,250,171,177,178,176,193,191,195,194,212,184,214,208,220,219,185,174,175,196,179,187,210,180,201,200,211,182,199,186,218,205,198,181,217,204,221,223,173,192,188,202,225,229,254,226,228,227,203,224,206,183,207,189,190,213,209,197,255,215,222,216,259,172,62,252,251,253,257,258,53,114,249,115,248]},"version":"4.3.3"}
|