@redocly/openapi-core 1.0.0-beta.62 → 1.0.0-beta.63
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/__tests__/resolve.test.ts +10 -2
- package/__tests__/utils.ts +3 -5
- package/lib/benchmark/utils.js +2 -2
- package/lib/config/config.d.ts +1 -0
- package/lib/config/config.js +3 -3
- package/lib/index.d.ts +1 -0
- package/lib/index.js +4 -1
- package/lib/js-yaml/index.d.ts +3 -0
- package/lib/js-yaml/index.js +19 -0
- package/lib/resolve.d.ts +1 -1
- package/lib/resolve.js +3 -4
- package/lib/utils.d.ts +2 -1
- package/lib/utils.js +6 -3
- package/package.json +3 -3
- package/src/__tests__/js-yaml.test.ts +47 -0
- package/src/benchmark/utils.ts +2 -2
- package/src/config/config.ts +4 -3
- package/src/index.ts +2 -0
- package/src/js-yaml/index.ts +19 -0
- package/src/resolve.ts +5 -5
- package/src/rules/__tests__/no-unresolved-refs.test.ts +2 -2
- package/src/typings/swagger.ts +0 -1
- package/src/utils.ts +7 -3
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -192,7 +192,7 @@ describe('collect refs', () => {
|
|
|
192
192
|
|
|
193
193
|
expect(resolvedRefs).toBeDefined();
|
|
194
194
|
|
|
195
|
-
expect(Array.from(resolvedRefs.keys()).map((ref) => ref.substring(cwd.length + 1)))
|
|
195
|
+
expect(Array.from(resolvedRefs.keys()).map((ref) => ref.substring(cwd.length + 1)).sort())
|
|
196
196
|
.toMatchInlineSnapshot(`
|
|
197
197
|
Array [
|
|
198
198
|
"openapi-with-back.yaml::./schemas/type-a.yaml#/",
|
|
@@ -201,7 +201,15 @@ describe('collect refs', () => {
|
|
|
201
201
|
]
|
|
202
202
|
`);
|
|
203
203
|
|
|
204
|
-
expect(
|
|
204
|
+
expect(
|
|
205
|
+
Array.from(resolvedRefs.values())
|
|
206
|
+
.map((val) => val.node)
|
|
207
|
+
.sort((firstEl, secondEl) => {
|
|
208
|
+
const getKey = (el: any): string => el?.allOf?.type || el?.type || '';
|
|
209
|
+
|
|
210
|
+
return getKey(firstEl).localeCompare(getKey(secondEl));
|
|
211
|
+
})
|
|
212
|
+
).toMatchInlineSnapshot(`
|
|
205
213
|
Array [
|
|
206
214
|
Object {
|
|
207
215
|
"allOf": Array [
|
package/__tests__/utils.ts
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
|
-
import * as yaml from 'js-yaml';
|
|
2
1
|
import * as path from 'path';
|
|
3
2
|
|
|
4
|
-
import { Document, Source } from '../src
|
|
5
|
-
import { NormalizedProblem } from '../src/walk';
|
|
3
|
+
import { Document, Source, NormalizedProblem, parseYaml, stringifyYaml } from '../src';
|
|
6
4
|
import { RuleConfig, LintConfig, Plugin } from '../src/config/config';
|
|
7
5
|
import { Oas3RuleSet } from '../src/oas-types';
|
|
8
6
|
|
|
9
7
|
export function parseYamlToDocument(body: string, absoluteRef: string = ''): Document {
|
|
10
8
|
return {
|
|
11
9
|
source: new Source(absoluteRef, body),
|
|
12
|
-
parsed:
|
|
10
|
+
parsed: parseYaml(body, { filename: absoluteRef }),
|
|
13
11
|
};
|
|
14
12
|
}
|
|
15
13
|
|
|
@@ -41,7 +39,7 @@ export const yamlSerializer = {
|
|
|
41
39
|
return true;
|
|
42
40
|
},
|
|
43
41
|
print: (val: any) => {
|
|
44
|
-
return
|
|
42
|
+
return stringifyYaml(val);
|
|
45
43
|
},
|
|
46
44
|
};
|
|
47
45
|
|
package/lib/benchmark/utils.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.makeConfigForRuleset = exports.parseYamlToDocument = void 0;
|
|
4
|
-
const
|
|
4
|
+
const js_yaml_1 = require("../js-yaml");
|
|
5
5
|
const resolve_1 = require("../resolve");
|
|
6
6
|
const config_1 = require("../config/config");
|
|
7
7
|
function parseYamlToDocument(body, absoluteRef = '') {
|
|
8
8
|
return {
|
|
9
9
|
source: new resolve_1.Source(absoluteRef, body),
|
|
10
|
-
parsed:
|
|
10
|
+
parsed: js_yaml_1.parseYaml(body, { filename: absoluteRef }),
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
13
|
exports.parseYamlToDocument = parseYamlToDocument;
|
package/lib/config/config.d.ts
CHANGED
package/lib/config/config.js
CHANGED
|
@@ -3,9 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.Config = exports.LintConfig = exports.IGNORE_FILE = void 0;
|
|
4
4
|
const fs = require("fs");
|
|
5
5
|
const path = require("path");
|
|
6
|
-
const yaml = require("js-yaml");
|
|
7
6
|
const path_1 = require("path");
|
|
8
7
|
const colorette_1 = require("colorette");
|
|
8
|
+
const js_yaml_1 = require("../js-yaml");
|
|
9
9
|
const utils_1 = require("../utils");
|
|
10
10
|
const oas_types_1 = require("../oas-types");
|
|
11
11
|
const recommended_1 = require("./recommended");
|
|
@@ -57,7 +57,7 @@ class LintConfig {
|
|
|
57
57
|
if (fs.hasOwnProperty('existsSync') && fs.existsSync(ignoreFile)) {
|
|
58
58
|
// TODO: parse errors
|
|
59
59
|
this.ignore =
|
|
60
|
-
|
|
60
|
+
js_yaml_1.parseYaml(fs.readFileSync(ignoreFile, 'utf-8')) || {};
|
|
61
61
|
// resolve ignore paths
|
|
62
62
|
for (const fileName of Object.keys(this.ignore)) {
|
|
63
63
|
this.ignore[path.resolve(path_1.dirname(ignoreFile), fileName)] = this.ignore[fileName];
|
|
@@ -78,7 +78,7 @@ class LintConfig {
|
|
|
78
78
|
ignoredRules[ruleId] = Array.from(ignoredRules[ruleId]);
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
|
-
fs.writeFileSync(ignoreFile, IGNORE_BANNER +
|
|
81
|
+
fs.writeFileSync(ignoreFile, IGNORE_BANNER + js_yaml_1.stringifyYaml(mapped));
|
|
82
82
|
}
|
|
83
83
|
addIgnore(problem) {
|
|
84
84
|
const ignore = this.ignore;
|
package/lib/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export { Config, LintConfig, RawConfig, IGNORE_FILE } from './config/config';
|
|
|
12
12
|
export { loadConfig } from './config/load';
|
|
13
13
|
export { RedoclyClient } from './redocly';
|
|
14
14
|
export { Source, BaseResolver, Document, resolveDocument, ResolveError, YamlParseError, makeDocumentFromString, } from './resolve';
|
|
15
|
+
export { parseYaml, stringifyYaml } from './js-yaml';
|
|
15
16
|
export { unescapePointer } from './ref-utils';
|
|
16
17
|
export { detectOpenAPI, OasMajorVersion, openAPIMajor, OasVersion } from './oas-types';
|
|
17
18
|
export { normalizeVisitors } from './visitors';
|
package/lib/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.bundleDocument = exports.bundle = exports.lintConfig = exports.lintFromString = exports.lintDocument = exports.validate = exports.lint = exports.getTotals = exports.formatProblems = exports.getLineColLocation = exports.getAstNodeByPointer = exports.walkDocument = exports.normalizeVisitors = exports.OasVersion = exports.openAPIMajor = exports.OasMajorVersion = exports.detectOpenAPI = exports.unescapePointer = exports.makeDocumentFromString = exports.YamlParseError = exports.ResolveError = exports.resolveDocument = exports.BaseResolver = exports.Source = exports.RedoclyClient = exports.loadConfig = exports.IGNORE_FILE = exports.LintConfig = exports.Config = exports.Stats = exports.normalizeTypes = exports.ConfigTypes = exports.Oas2Types = exports.Oas3Types = exports.Oas3_1Types = exports.readFileFromUrl = void 0;
|
|
3
|
+
exports.bundleDocument = exports.bundle = exports.lintConfig = exports.lintFromString = exports.lintDocument = exports.validate = exports.lint = exports.getTotals = exports.formatProblems = exports.getLineColLocation = exports.getAstNodeByPointer = exports.walkDocument = exports.normalizeVisitors = exports.OasVersion = exports.openAPIMajor = exports.OasMajorVersion = exports.detectOpenAPI = exports.unescapePointer = exports.stringifyYaml = exports.parseYaml = exports.makeDocumentFromString = exports.YamlParseError = exports.ResolveError = exports.resolveDocument = exports.BaseResolver = exports.Source = exports.RedoclyClient = exports.loadConfig = exports.IGNORE_FILE = exports.LintConfig = exports.Config = exports.Stats = exports.normalizeTypes = exports.ConfigTypes = exports.Oas2Types = exports.Oas3Types = exports.Oas3_1Types = exports.readFileFromUrl = void 0;
|
|
4
4
|
var utils_1 = require("./utils");
|
|
5
5
|
Object.defineProperty(exports, "readFileFromUrl", { enumerable: true, get: function () { return utils_1.readFileFromUrl; } });
|
|
6
6
|
var oas3_1_1 = require("./types/oas3_1");
|
|
@@ -30,6 +30,9 @@ Object.defineProperty(exports, "resolveDocument", { enumerable: true, get: funct
|
|
|
30
30
|
Object.defineProperty(exports, "ResolveError", { enumerable: true, get: function () { return resolve_1.ResolveError; } });
|
|
31
31
|
Object.defineProperty(exports, "YamlParseError", { enumerable: true, get: function () { return resolve_1.YamlParseError; } });
|
|
32
32
|
Object.defineProperty(exports, "makeDocumentFromString", { enumerable: true, get: function () { return resolve_1.makeDocumentFromString; } });
|
|
33
|
+
var js_yaml_1 = require("./js-yaml");
|
|
34
|
+
Object.defineProperty(exports, "parseYaml", { enumerable: true, get: function () { return js_yaml_1.parseYaml; } });
|
|
35
|
+
Object.defineProperty(exports, "stringifyYaml", { enumerable: true, get: function () { return js_yaml_1.stringifyYaml; } });
|
|
33
36
|
var ref_utils_1 = require("./ref-utils");
|
|
34
37
|
Object.defineProperty(exports, "unescapePointer", { enumerable: true, get: function () { return ref_utils_1.unescapePointer; } });
|
|
35
38
|
var oas_types_1 = require("./oas-types");
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.stringifyYaml = exports.parseYaml = void 0;
|
|
4
|
+
// TODO: add a type for "types" https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/js-yaml/index.d.ts
|
|
5
|
+
// @ts-ignore
|
|
6
|
+
const js_yaml_1 = require("js-yaml");
|
|
7
|
+
const DEFAULT_SCHEMA_WITHOUT_TIMESTAMP = js_yaml_1.JSON_SCHEMA.extend({
|
|
8
|
+
implicit: [js_yaml_1.types.merge],
|
|
9
|
+
explicit: [
|
|
10
|
+
js_yaml_1.types.binary,
|
|
11
|
+
js_yaml_1.types.omap,
|
|
12
|
+
js_yaml_1.types.pairs,
|
|
13
|
+
js_yaml_1.types.set,
|
|
14
|
+
],
|
|
15
|
+
});
|
|
16
|
+
const parseYaml = (str, opts) => js_yaml_1.load(str, Object.assign({ schema: DEFAULT_SCHEMA_WITHOUT_TIMESTAMP }, opts));
|
|
17
|
+
exports.parseYaml = parseYaml;
|
|
18
|
+
const stringifyYaml = (obj, opts) => js_yaml_1.dump(obj, Object.assign({ schema: DEFAULT_SCHEMA_WITHOUT_TIMESTAMP }, opts));
|
|
19
|
+
exports.stringifyYaml = stringifyYaml;
|
package/lib/resolve.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ export declare type Document = {
|
|
|
29
29
|
};
|
|
30
30
|
export declare function makeDocumentFromString(sourceString: string, absoluteRef: string): {
|
|
31
31
|
source: Source;
|
|
32
|
-
parsed:
|
|
32
|
+
parsed: unknown;
|
|
33
33
|
};
|
|
34
34
|
export declare class BaseResolver {
|
|
35
35
|
private config;
|
package/lib/resolve.js
CHANGED
|
@@ -13,7 +13,6 @@ exports.resolveDocument = exports.BaseResolver = exports.makeDocumentFromString
|
|
|
13
13
|
const fs = require("fs");
|
|
14
14
|
const path = require("path");
|
|
15
15
|
const url = require("url");
|
|
16
|
-
const yaml = require("js-yaml");
|
|
17
16
|
const ref_utils_1 = require("./ref-utils");
|
|
18
17
|
const types_1 = require("./types");
|
|
19
18
|
const utils_1 = require("./utils");
|
|
@@ -56,7 +55,7 @@ class ResolveError extends Error {
|
|
|
56
55
|
}
|
|
57
56
|
}
|
|
58
57
|
exports.ResolveError = ResolveError;
|
|
59
|
-
const jsYamlErrorLineColRegexp =
|
|
58
|
+
const jsYamlErrorLineColRegexp = /\((\d+):(\d+)\)$/;
|
|
60
59
|
class YamlParseError extends Error {
|
|
61
60
|
constructor(originalError, source) {
|
|
62
61
|
super(originalError.message.split('\n')[0]);
|
|
@@ -75,7 +74,7 @@ function makeDocumentFromString(sourceString, absoluteRef) {
|
|
|
75
74
|
try {
|
|
76
75
|
return {
|
|
77
76
|
source,
|
|
78
|
-
parsed:
|
|
77
|
+
parsed: utils_1.parseYaml(sourceString, { filename: absoluteRef }),
|
|
79
78
|
};
|
|
80
79
|
}
|
|
81
80
|
catch (e) {
|
|
@@ -128,7 +127,7 @@ class BaseResolver {
|
|
|
128
127
|
try {
|
|
129
128
|
return {
|
|
130
129
|
source,
|
|
131
|
-
parsed:
|
|
130
|
+
parsed: utils_1.parseYaml(source.body, { filename: source.absoluteRef }),
|
|
132
131
|
};
|
|
133
132
|
}
|
|
134
133
|
catch (e) {
|
package/lib/utils.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { HttpResolveConfig } from './config/config';
|
|
2
|
+
export { parseYaml, stringifyYaml } from './js-yaml';
|
|
2
3
|
export declare type StackFrame<T> = {
|
|
3
4
|
prev: StackFrame<T> | null;
|
|
4
5
|
value: T;
|
|
@@ -11,7 +12,7 @@ export declare function pushStack<T, P extends Stack<T> = Stack<T>>(head: P, val
|
|
|
11
12
|
};
|
|
12
13
|
export declare function popStack<T, P extends Stack<T>>(head: P): StackFrame<T> | null;
|
|
13
14
|
export declare type BundleOutputFormat = 'json' | 'yml' | 'yaml';
|
|
14
|
-
export declare function loadYaml(filename: string): Promise<
|
|
15
|
+
export declare function loadYaml(filename: string): Promise<unknown>;
|
|
15
16
|
export declare function notUndefined<T>(x: T | undefined): x is T;
|
|
16
17
|
export declare function isPlainObject(value: any): value is object;
|
|
17
18
|
export declare function readFileFromUrl(url: string, config: HttpResolveConfig): Promise<{
|
package/lib/utils.js
CHANGED
|
@@ -9,11 +9,14 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
9
9
|
});
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.match = exports.readFileFromUrl = exports.isPlainObject = exports.notUndefined = exports.loadYaml = exports.popStack = exports.pushStack = void 0;
|
|
13
|
-
const yaml = require("js-yaml");
|
|
12
|
+
exports.match = exports.readFileFromUrl = exports.isPlainObject = exports.notUndefined = exports.loadYaml = exports.popStack = exports.pushStack = exports.stringifyYaml = exports.parseYaml = void 0;
|
|
14
13
|
const fs = require("fs");
|
|
15
14
|
const minimatch = require("minimatch");
|
|
16
15
|
const node_fetch_1 = require("node-fetch");
|
|
16
|
+
const js_yaml_1 = require("./js-yaml");
|
|
17
|
+
var js_yaml_2 = require("./js-yaml");
|
|
18
|
+
Object.defineProperty(exports, "parseYaml", { enumerable: true, get: function () { return js_yaml_2.parseYaml; } });
|
|
19
|
+
Object.defineProperty(exports, "stringifyYaml", { enumerable: true, get: function () { return js_yaml_2.stringifyYaml; } });
|
|
17
20
|
function pushStack(head, value) {
|
|
18
21
|
return { prev: head, value };
|
|
19
22
|
}
|
|
@@ -26,7 +29,7 @@ exports.popStack = popStack;
|
|
|
26
29
|
function loadYaml(filename) {
|
|
27
30
|
return __awaiter(this, void 0, void 0, function* () {
|
|
28
31
|
const contents = yield fs.promises.readFile(filename, 'utf-8');
|
|
29
|
-
return
|
|
32
|
+
return js_yaml_1.parseYaml(contents);
|
|
30
33
|
});
|
|
31
34
|
}
|
|
32
35
|
exports.loadYaml = loadYaml;
|
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.63",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"engines": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@types/node": "^14.11.8",
|
|
35
35
|
"colorette": "^1.2.0",
|
|
36
36
|
"js-levenshtein": "^1.1.6",
|
|
37
|
-
"js-yaml": "^
|
|
37
|
+
"js-yaml": "^4.1.0",
|
|
38
38
|
"lodash.isequal": "^4.5.0",
|
|
39
39
|
"minimatch": "^3.0.4",
|
|
40
40
|
"node-fetch": "^2.6.1",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/js-levenshtein": "^1.1.0",
|
|
45
|
-
"@types/js-yaml": "^
|
|
45
|
+
"@types/js-yaml": "^4.0.3",
|
|
46
46
|
"@types/lodash.isequal": "^4.5.5",
|
|
47
47
|
"@types/minimatch": "^3.0.3",
|
|
48
48
|
"@types/node-fetch": "^2.5.7",
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { parseYaml, stringifyYaml } from '../js-yaml';
|
|
2
|
+
|
|
3
|
+
const yaml = `
|
|
4
|
+
emptyValue:
|
|
5
|
+
spaces in keys: spaces in keys
|
|
6
|
+
numberString: '0123456789'
|
|
7
|
+
number: 1000
|
|
8
|
+
decimal: 12.34
|
|
9
|
+
boolean: true
|
|
10
|
+
date: 2020-01-01
|
|
11
|
+
array:
|
|
12
|
+
- 1
|
|
13
|
+
- 2
|
|
14
|
+
object:
|
|
15
|
+
key1: 1
|
|
16
|
+
key2: 2
|
|
17
|
+
`;
|
|
18
|
+
|
|
19
|
+
const jsObject = {
|
|
20
|
+
emptyValue: null,
|
|
21
|
+
'spaces in keys': 'spaces in keys',
|
|
22
|
+
numberString: '0123456789',
|
|
23
|
+
number: 1000,
|
|
24
|
+
decimal: 12.34,
|
|
25
|
+
boolean: true,
|
|
26
|
+
date: '2020-01-01',
|
|
27
|
+
array: [1, 2],
|
|
28
|
+
object: { key1: 1, key2: 2 },
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
describe('js-yaml', () => {
|
|
32
|
+
test('parseYaml', () => {
|
|
33
|
+
expect(parseYaml(yaml)).toEqual(jsObject);
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
test('parse and stringify', () => {
|
|
37
|
+
expect(parseYaml(stringifyYaml(jsObject))).toEqual(jsObject);
|
|
38
|
+
});
|
|
39
|
+
|
|
40
|
+
test('should throw an error for unsupported types', () => {
|
|
41
|
+
expect(() => stringifyYaml({ date: new Date() }))
|
|
42
|
+
.toThrow('unacceptable kind of an object to dump [object Date]');
|
|
43
|
+
|
|
44
|
+
expect(() => stringifyYaml({ foo: () => {} }))
|
|
45
|
+
.toThrow('unacceptable kind of an object to dump [object Function]');
|
|
46
|
+
});
|
|
47
|
+
});
|
package/src/benchmark/utils.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { parseYaml } from '../js-yaml';
|
|
2
2
|
import { Document, Source } from '../resolve';
|
|
3
3
|
import { Oas3RuleSet } from '../oas-types';
|
|
4
4
|
import { RuleConfig, LintConfig, Plugin } from '../config/config';
|
|
@@ -6,7 +6,7 @@ import { RuleConfig, LintConfig, Plugin } from '../config/config';
|
|
|
6
6
|
export function parseYamlToDocument(body: string, absoluteRef: string = ''): Document {
|
|
7
7
|
return {
|
|
8
8
|
source: new Source(absoluteRef, body),
|
|
9
|
-
parsed:
|
|
9
|
+
parsed: parseYaml(body, { filename: absoluteRef }),
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
12
|
|
package/src/config/config.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as fs from 'fs';
|
|
2
2
|
import * as path from 'path';
|
|
3
|
-
import * as yaml from 'js-yaml';
|
|
4
3
|
import { dirname } from 'path';
|
|
5
4
|
import { red, blue } from 'colorette';
|
|
6
5
|
|
|
6
|
+
import { parseYaml, stringifyYaml } from '../js-yaml';
|
|
7
7
|
import { notUndefined } from '../utils';
|
|
8
8
|
|
|
9
9
|
import {
|
|
@@ -190,7 +190,7 @@ export class LintConfig {
|
|
|
190
190
|
if (fs.hasOwnProperty('existsSync') && fs.existsSync(ignoreFile)) {
|
|
191
191
|
// TODO: parse errors
|
|
192
192
|
this.ignore =
|
|
193
|
-
(
|
|
193
|
+
(parseYaml(fs.readFileSync(ignoreFile, 'utf-8')) as Record<
|
|
194
194
|
string,
|
|
195
195
|
Record<string, Set<string>>
|
|
196
196
|
>) || {};
|
|
@@ -216,7 +216,7 @@ export class LintConfig {
|
|
|
216
216
|
ignoredRules[ruleId] = Array.from(ignoredRules[ruleId]) as any;
|
|
217
217
|
}
|
|
218
218
|
}
|
|
219
|
-
fs.writeFileSync(ignoreFile, IGNORE_BANNER +
|
|
219
|
+
fs.writeFileSync(ignoreFile, IGNORE_BANNER + stringifyYaml(mapped));
|
|
220
220
|
}
|
|
221
221
|
|
|
222
222
|
addIgnore(problem: NormalizedProblem) {
|
|
@@ -384,6 +384,7 @@ export class Config {
|
|
|
384
384
|
apiDefinitions: Record<string, string>;
|
|
385
385
|
lint: LintConfig;
|
|
386
386
|
resolve: ResolveConfig;
|
|
387
|
+
licenseKey?: string;
|
|
387
388
|
constructor(public rawConfig: RawConfig, public configFile?: string) {
|
|
388
389
|
this.apiDefinitions = rawConfig.apiDefinitions || {};
|
|
389
390
|
this.lint = new LintConfig(rawConfig.lint || {}, configFile);
|
package/src/index.ts
CHANGED
|
@@ -29,9 +29,11 @@ export {
|
|
|
29
29
|
YamlParseError,
|
|
30
30
|
makeDocumentFromString,
|
|
31
31
|
} from './resolve';
|
|
32
|
+
export { parseYaml, stringifyYaml } from './js-yaml';
|
|
32
33
|
export { unescapePointer } from './ref-utils';
|
|
33
34
|
export { detectOpenAPI, OasMajorVersion, openAPIMajor, OasVersion } from './oas-types';
|
|
34
35
|
export { normalizeVisitors } from './visitors';
|
|
36
|
+
|
|
35
37
|
export {
|
|
36
38
|
WalkContext,
|
|
37
39
|
walkDocument,
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// TODO: add a type for "types" https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/js-yaml/index.d.ts
|
|
2
|
+
// @ts-ignore
|
|
3
|
+
import { JSON_SCHEMA, types, LoadOptions, DumpOptions, load, dump } from 'js-yaml';
|
|
4
|
+
|
|
5
|
+
const DEFAULT_SCHEMA_WITHOUT_TIMESTAMP = JSON_SCHEMA.extend({
|
|
6
|
+
implicit: [types.merge],
|
|
7
|
+
explicit: [
|
|
8
|
+
types.binary,
|
|
9
|
+
types.omap,
|
|
10
|
+
types.pairs,
|
|
11
|
+
types.set,
|
|
12
|
+
],
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
export const parseYaml = (str: string, opts?: LoadOptions): unknown =>
|
|
16
|
+
load(str, {schema: DEFAULT_SCHEMA_WITHOUT_TIMESTAMP, ...opts});
|
|
17
|
+
|
|
18
|
+
export const stringifyYaml = (obj: any, opts?: DumpOptions): string =>
|
|
19
|
+
dump(obj, {schema: DEFAULT_SCHEMA_WITHOUT_TIMESTAMP, ...opts});
|
package/src/resolve.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as fs from 'fs';
|
|
2
2
|
import * as path from 'path';
|
|
3
3
|
import * as url from 'url';
|
|
4
|
-
|
|
4
|
+
|
|
5
5
|
import { OasRef } from './typings/openapi';
|
|
6
6
|
import { isRef, joinPointer, escapePointer, parseRef, isAbsoluteUrl } from './ref-utils';
|
|
7
7
|
import type { YAMLNode, LoadOptions } from 'yaml-ast-parser';
|
|
8
8
|
import { NormalizedNodeType, isNamedType } from './types';
|
|
9
|
-
import { readFileFromUrl } from './utils';
|
|
9
|
+
import { readFileFromUrl, parseYaml } from './utils';
|
|
10
10
|
import { ResolveConfig } from './config/config';
|
|
11
11
|
|
|
12
12
|
export type CollectedRefs = Map<string /* absoluteFilePath */, Document>;
|
|
@@ -52,7 +52,7 @@ export class ResolveError extends Error {
|
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
|
|
55
|
-
const jsYamlErrorLineColRegexp =
|
|
55
|
+
const jsYamlErrorLineColRegexp = /\((\d+):(\d+)\)$/;
|
|
56
56
|
|
|
57
57
|
export class YamlParseError extends Error {
|
|
58
58
|
col: number;
|
|
@@ -79,7 +79,7 @@ export function makeDocumentFromString(sourceString: string, absoluteRef: string
|
|
|
79
79
|
try {
|
|
80
80
|
return {
|
|
81
81
|
source,
|
|
82
|
-
parsed:
|
|
82
|
+
parsed: parseYaml(sourceString, { filename: absoluteRef }),
|
|
83
83
|
};
|
|
84
84
|
} catch (e) {
|
|
85
85
|
throw new YamlParseError(e, source);
|
|
@@ -133,7 +133,7 @@ export class BaseResolver {
|
|
|
133
133
|
try {
|
|
134
134
|
return {
|
|
135
135
|
source,
|
|
136
|
-
parsed:
|
|
136
|
+
parsed: parseYaml(source.body, { filename: source.absoluteRef }),
|
|
137
137
|
};
|
|
138
138
|
} catch (e) {
|
|
139
139
|
throw new YamlParseError(e, source);
|
|
@@ -83,7 +83,7 @@ describe('oas3 boolean-parameter-prefixes', () => {
|
|
|
83
83
|
},
|
|
84
84
|
},
|
|
85
85
|
],
|
|
86
|
-
"message": "Failed to parse: unexpected end of the stream within a single quoted scalar in \\"fixtures/invalid-yaml.yaml\\"
|
|
86
|
+
"message": "Failed to parse: unexpected end of the stream within a single quoted scalar in \\"fixtures/invalid-yaml.yaml\\" (2:1)",
|
|
87
87
|
"ruleId": "no-unresolved-refs",
|
|
88
88
|
"severity": "error",
|
|
89
89
|
"suggest": Array [],
|
|
@@ -96,7 +96,7 @@ describe('oas3 boolean-parameter-prefixes', () => {
|
|
|
96
96
|
"source": "foobar.yaml",
|
|
97
97
|
},
|
|
98
98
|
],
|
|
99
|
-
"message": "Can't resolve $ref: unexpected end of the stream within a single quoted scalar in \\"fixtures/invalid-yaml.yaml\\"
|
|
99
|
+
"message": "Can't resolve $ref: unexpected end of the stream within a single quoted scalar in \\"fixtures/invalid-yaml.yaml\\" (2:1)",
|
|
100
100
|
"ruleId": "no-unresolved-refs",
|
|
101
101
|
"severity": "error",
|
|
102
102
|
"suggest": Array [],
|
package/src/typings/swagger.ts
CHANGED
package/src/utils.ts
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import * as yaml from 'js-yaml';
|
|
2
1
|
import * as fs from 'fs';
|
|
3
2
|
import * as minimatch from 'minimatch';
|
|
4
3
|
import fetch from 'node-fetch';
|
|
4
|
+
|
|
5
|
+
import { parseYaml } from './js-yaml';
|
|
5
6
|
import { HttpResolveConfig } from './config/config';
|
|
6
7
|
|
|
8
|
+
export { parseYaml, stringifyYaml } from './js-yaml';
|
|
9
|
+
|
|
7
10
|
export type StackFrame<T> = {
|
|
8
11
|
prev: StackFrame<T> | null;
|
|
9
12
|
value: T;
|
|
@@ -23,7 +26,8 @@ export type BundleOutputFormat = 'json' | 'yml' | 'yaml';
|
|
|
23
26
|
|
|
24
27
|
export async function loadYaml(filename: string) {
|
|
25
28
|
const contents = await fs.promises.readFile(filename, 'utf-8');
|
|
26
|
-
|
|
29
|
+
|
|
30
|
+
return parseYaml(contents);
|
|
27
31
|
}
|
|
28
32
|
|
|
29
33
|
export function notUndefined<T>(x: T | undefined): x is T {
|
|
@@ -60,4 +64,4 @@ export function match(url: string, pattern: string) {
|
|
|
60
64
|
url = url.replace(/^https?:\/\//, '');
|
|
61
65
|
}
|
|
62
66
|
return minimatch(url, pattern);
|
|
63
|
-
}
|
|
67
|
+
}
|
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.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.string.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","../../node_modules/@types/js-yaml/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/colorette/index.d.ts","./src/typings/swagger.ts","./src/walk.ts","./src/visitors.ts","./src/oas-types.ts","./src/config/recommended.ts","./src/config/config.ts","./src/utils.ts","./src/resolve.ts","./src/types/oas3.ts","./src/types/oas2.ts","./src/types/oas3_1.ts","./src/config/rules.ts","./src/rules/no-unresolved-refs.ts","./src/bundle.ts","./src/types/redocly-yaml.ts","./src/typings/common.ts","./src/rules/other/stats.ts","./src/redocly/query.ts","./src/redocly/index.ts","./src/config/all.ts","./src/config/minimal.ts","../../node_modules/@types/js-levenshtein/index.d.ts","./src/rules/utils.ts","./src/rules/common/spec.ts","./src/rules/common/operation-2xx-response.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-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/license-url.ts","./src/rules/common/operation-security-defined.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","../../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/oas3/no-invalid-media-type-examples.ts","./src/rules/common/registry-dependencies.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/oas3/index.ts","./src/rules/oas2/boolean-parameter-prefixes.ts","./src/rules/oas2/index.ts","./src/rules/builtin.ts","./src/config/builtIn.ts","./src/config/load.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/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/json-schema/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",{"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":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e","affectsGlobalScope":true},"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"5e099389ceec44681b37d10470755cdc6d9f516851e53c731c6e7e17b39ad86f","10421aeac92bbd8f046392c58583d0e2619ec1a4bd1f3f83c4225bb9617e7cda","a2c008d98ee0b91c5d1e072bc54e85ca454e41a02c75661f09f6c0cf521df632","48053f3ef2a787b638d9b7496ce062b9c13025b7465f9c0471674c2b1d95ec3f","8d1539367a9f5a03698f4c37111251eb76433ea8fcb5f1e546571b8513cac822","9ad71085f8ab35282a341995f85c6e06a19e6d5ab73b39f634b444ce8742a664","ee94d8f60c253d9994559ad325e9cb8a7af6bd36176884cb869ee5a40daa766c","606de01a4212a48518a219585f673504d3c0c26b361706006038a71bf8b9f42c","76de776e227ad01b703ce076b32177da31a765d5b5a681d5bb4c4e0f4876840f","aa4c984c8f2919742d06f305b1870bf180275cbe015490451a6374e6f6b9998a","46b9cdcd62e90f604876c143481ac7ff2c89cdfb902179bda0d8ee44c0695beb","b6af336aa092d644862e8bb0c5c387c448390f2455a789b9921fb7fcbb80367b","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","d555cd63a3fc837840db192596273fdf52fb28092b0a33bec98e89a0334b3a4c",{"version":"f54d7a33bad768b50c8512d55f38499209d95038558fea231058465f680d1e1e","affectsGlobalScope":true},"85d545d430795d54a8b2896f67f9aeb7bf19fd74a1469ae0627311eb72f0dfa2","a473cf45c3d9809518f8af913312139d9f4db6887dc554e0d06d0f4e52722e6b","d5afcd002167b6b03d595fb8b9630a00456b6fb9d2c5e8b6aaa30cb31bc44e2b","3d68ecf05475492f041c88395372c3a01b30351619bebcd38287ab185be7f7e4",{"version":"36c956a3a6dc279f1e6b77aa4b97b7b229b7d828102573ef5002de456ff5e1d9","affectsGlobalScope":true},"45ac321f2e15d268fd74a90ddaa6467dcaaff2c5b13f95b4b85831520fb7a491","6e8b894365ab993dbb55c58542598d1548fdda072c974f98b89c218891e2ba09","ddd6169dff8e5263397a9399ba7ba92521d3959f8f9dcdc27f24403dc7b751ba","508e1e25ca40ea6cde332d3232c826fcd82f456f45ae535d817754684f048f9e",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"8f8f6ee2a0c94077f79439f51640a625ac7e2f5dd6866bd3b5a41705c836adfc","affectsGlobalScope":true},"ee97aed5b4667a5c3003a1da4b108827fc64b888391417617d89b02ff134de9a","839421b494b57cd2bc0074e914130277051850eba6def6c25870056e6652640b","e18a4b529c9a05593e612130554d93a2b78b949cf1cf48c0b183071258f0e95a","88587b5c94b0c4f5d78026e4beeb93383b3933c860d9840b55d6bf47d7b632bb","a473ecd14d9bafbd6a33105524b033237bbf1d6ce2cd81eb71cc54bec2d83d55","9e8947666e44137405fd378f3a8a0515a492e967e552406c02b991c98c78fc61","0cff7901aedfe78e314f7d44088f07e2afa1b6e4f0473a4169b8456ca2fb245d","7a2a3ff87ffd4313a6a2f3b012e801dd249ee58152cedf90c8718dcd2c811fe3","69640cc2e76dad52daeb9914e6b70c5c9a5591a3a65190a2d3ea432cf0015e16","a39a4c527b7a2dc7a2661b711a534c10c76852c5ad6ae320767d3f7d2621b67d","1bb5c9857b2ee32c199dd85bc0f4c0299112485d6e5dc91428eabfdee0dbd68c",{"version":"5daba568741c8ed283d67bf370c626a91e09fdfbc6d4abe22a7f93e2cf5138b9","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","662661bbf9ccd869f3bca82d34234b2abdc95c657e2187c35352d42dddb24c2d","5caa645cc390a0a8d5a031072b6b4e49218c17017cd80a63bd2557b19be13c5f","4c4334eb5d8fae83416a361d787b55a5743916aed8af812a909898bc7333e709","6feb6f75a3e4e017f8e6e12740cf06f18eefcf829284fa310da6c7f4d44fb2eb","4fd3c4debadce3e9ab9dec3eb45f7f5e2e3d4ad65cf975a6d938d883cfb25a50","0953427f9c2498f71dd912fdd8a81b19cf6925de3e1ad67ab9a77b9a0f79bf0b","b709ff1f6d6235f5e9c8dcbce3e683ff24ec35046b232d5a281af083026018d1","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","ee6a154ecccde26b413e89c97a0b824f25b253c4c50a3c392bcb2b4c6ba9c314","71d6da3b0150ecdcd16c08b3b546fe4cc7f53df642eccfeb03c813ee788fae0c","a364b4a8a015ae377052fa4fac94204d79a69d879567f444c7ceff1b7a18482d","c5ec3b97d9db756c689cd11f4a11eaa9e6077b2768e3e9b54ff727a93c03a909","c14e9e86f18189c7d32b5dd03b4cf3f40bed68f0509dec06d75d41b82c065fe2","bdb07038733b2d74a75ba9c381dcb92774cd6f161ee125bfa921eae7d883ccc9","ad93e960a3a07dff7394bf0c8a558006a9ff2d0725ab28fc33dec227d4cb251e",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"33f44d7dfe8ed95d42485149f97926d80d0f3a5d7ce7d6b5b21428a8286b51ea","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","a456dd94a596de621bd25cf3c91278101ea62782c3ac4435aef9190a2336ddde","a05051bd6b61b0c16eaf62b9b1e1fd669aea09a11e081fef018bbff28f8c95a4","e67625007c3a6e796cd083c12a18b5e04c4dec4e97117bb2800dacb29f0b37fc","d7a7d87e9d46564706bb143afa3cfb509c7ee61e07720e90dcc6a848c17f079a","55bbef138c80baec54672dfd879e74d98b84aef7145f5c8771b585af539e8ac4","150f4e8079d3e8bdeb37aee7a3919d01f30c9e366e378388a692da8428e91586","ab39063db8228049cc2387679f036b0b7b5f3fdbac976fe3b905e21cbcd4bd1c","a625413bc96efbac8916e8c29638c641e583a16d8da2922787de03e90cdbfc81","f6cfc8ddda1e371cfe93c0d39ca4f03585edd3d0543720fabcb829d2b591b846","aeb304db851b8309cb213778bffdc8a4006426c869e2488cce656dcb7872763a","61df3d80a97cc871e4c5837824ec9d9b8feb00e402c2744dc28a3ed5defd57bf","f7f74f4de065757b594569ee30e1c43ecc1e9c342896f494aedc8fd4c06cc31d","3989dd62591dc01e256c1553537693918450ef84da7f19a2e62cef52d5330d96","02b41251895e409555bc5688231b8c9801cf817b614bd7fa45c60b6ab5a415a4","a6c6b3d8c9a227c5a829ae7f623d8f258988c2e704715e0a38ba09dcf85f23ea","50b9bbcf2f581ef32f74ce898255b64d585be5a06927ce28e537947c8f271927","c528dad690c73e4f587cc897041ab729e20dc627c58ec0c2da9019a4e58a6c45","63ccc5dc211f97f78e352388c770a23b652ef408a8b337450c8a0c6d41fe26ea","4f2785ffaa3e8128484dd6525f2bc120ba08588907f45bfbb369023c8546bdaa","3ac4a2714c329c4805c311f182bf6d9fa9d7c56463950d5141ae61c12ba88383","06db5817264405b74afbbe9ff2f2e371c7cfe5278475864ffc3b27136125d975","1f683fda8fd8160d04770468c000b5a257bff3b7420700dad34dbc112418355c","15a58e61533036fb08dfd567fa7b1f799acdedf0cacf5cbc93bbed0f0520e87f","8c6e6807cec3720b21d4443d2e3f49714ca8b3f05e44195e05d6f4904c0e2573","4fa8794f32464ce397d6d88e4523530d7c695816fb6231c495ba71868575b48a","cc9f0665f4555a6f818dcaf79de44ff3f9e93211458548dd6260506e27b38025","e8b5d684b18772f93fd7ac85652a9dd8c3c4ac42d255ebc676ddd75d213a60eb","ebdf0fc327828cf8e59bcaec0b03a1f65dd5f5b4849636405b43e71fbdd014d4","88a90a39fde5c1d8021d1a1a9fd351018f3fad88beeb38881f06cbfaaa6b06fe","6e3a3b59f2b4ebf3c4ca906f7f56d3d53f707eda7ed10be0863029d814b51583","329318845916f35128387bb291f2f252ccc80fe968ae6f6ee7a7bd644b9af509","6188eef68c972ead267314945b8f8a059ee997c45d46180d088977d4849dd093","8e8d8e11136d8c5a59360e90455356a41c8006129f7e459fbbf8a4551379f23a","a959db7039a615c94a9c236d0664463fd8fcc7c08e68c01bd7de4b49116c2b2c","3144d082b0efd80551c4b9ff1dd29ba6b0f0bb0709d481ed5285313e0845ee36","a9319c8e234166988f24be3a12d8845a5d43f34d31f72621ca311384ee7a56ae","37106a318a9b70352fc7fb06ed9a31c218342402f194355ad7c3e83c226b8b84","ad56cfeb1a9c0ca0da5dc6f97552a866803b087baf50a2360f481b5747ca49cf","232fe9b0f859a921132d464999ff9d2f979e29636dfd2225989e638a43bc5630","679f01be7caf9e091684d1f0fdabc8837991ed589a4c2617c72799c4aed0b60e","a3f88fc187a30877572d86ca78bfbad1ce1f7f081a13f4a1a3de12fc19172763","244c79d63bdbd959a0b80d2a792ca4af5c9ad06d7a333451adf45e80cab4037f","099e32d949572f34338bcc5a9bf84b09966b5b347b0462154eaf1679968ff74e","b72ac783938f2f9522af3694262d6112b061c0fa2b8c4c5df226efd0550fcba9","efcf6bd086be2f68fc73f04109ce82b5d64b1a4b01606ecb28de046b8bafeb97","576815ad63894f88f18c36c239e23562b35033e0dab57ff665dc0410db4a8b54","d23b6230c10ffb27b8cec7f0aef6443f8736620ce07bf7a991efb02e0f599d42","53e922fc5556e9825e10ebc780ea40088404abb4f1a76251bb5fac18eb20fc93","20a5fe46b10fcfdbef32882afb98298121a734b05bfdb4e06e61ed476df76e62","d0b2d3ab2b3934d5ea2d1ca2973fce9c031bec115c37e437b32bad32c0d79196","b79ce369faacdc58665774b775f9c9604dfcc20216a0b66b4628225463b827c1","8434dc2a1f866e713703e6d8ccc85168d92c07049138a3f2895e63f1b0d0ff8a","d9be0ae1a460ba18c0bdeaa48ae1f6e637207796dd0b57afc540393b064db8df","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","3c4aa4e4602f5c746b6fb2d7934ca15f6cfb9eee48190a9eb103a885433efc95","6554a631612ff1c3d6d76a65d88b4d8889ad804cf6897c968fef4d1bcd3b005b","bddfd3a02c1dde94c33fe9f9e122559ae5b0f030e9350043b992e6dd16f561f7","d83f1778cc95256ae503c326ea6804cffef5e5d6310e0d8b8dc56a2107abc7ae","274814c52225bce5396c2c4968f2c1d1c08fb4e04b76bff0d9d070b35f23260e","9688010a836de8a1927fb20f325179c6ae3ee66a64a1d0e5c414b15502652359","56d135e85dcc15aa982d8ca85f8021859447db147c51123e3811b3a48cb7d90b","6c8a91aa5b37b93dbf757bd99da7befc145884a94dcfb5a74043b1df4d70bfec","a3515918d4a0b9f14b3fa2ce25e2468994f31a492107a6be31c7c19ac03b28f9","cf521709fb825468afa482f8c58019e9f474369339257118ea5fee1d9bec8951","41d545e5d36083f5bf6432c93dc2d3cb29ed4f8deae03b9dec59c55e02fbe597","c199f7b27a770e9c6108b17292c5195efcda1a14f88417348b11b990c4ee484b","8d8956db63e0870eac5abd8d3dc7be74653bda46319a16d826b95c7b6b8dfd7c","726e9edb130daf3a096bb585e4aebfe7ef1ce473fc37bbe1d98e1d8b741e6db8","68b25c02cb0e209ea615289bdf85ded14b74e4d53f8316e83fcc6ab72d67ff16","cbfe93fd48a60da61b2ce41c1966ea54b3c7f76d270b31afb37543051d776e75","d9c0723e8c23b58e07b73b91bac2077cb9b04471fa0a0b70e29f17d4b8ea8902","c081be059f1d42bcf3606e9aed118f495ab439ec8ee4a22e7a2faa33c0cf2e6d","b397b9b988c5c1248e70aa62016a206ed8209e2f099047931069d296634d4f98","36cf4431b0d4809c0376a81f1933f134943e4d435ea04d82d5f0a256369a6e12","0b304d474cf6ac7fc79a8115c724eb2c68cc0f36bc8649155cd8a65808042ee9","225591c9bda5ab3e0756bce43f4d5d35d6f673968dd82d30792d4c3c182e4a20","413d72d18cd0ce2bf60ec34eb68377c1924db6430b75c43d6b3fe818e99766f6","15f2bb8c8dbd4101c1ff26ffaef79d2b6ddfc79a8fd29bcaf2c9ac777549a333","b50bf43d558b33dd01fe7bd57b8b68c025db666561e893c9f1d3154a9a8d05cc","07b3d20fc1026eefabe20dbd7ff759dcc4b5bbc2ed3f732a3a91c814c9f5354c","41476c129af01db7691ce3fda6a8a581a9636980ba5f831f72554934a7b05911","f82348f8ac4f637d6ad76ef5d45577ccc0c59fbd25d8c44d55349a71a90e195a","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","4aaf84a5ac87bad3211f041fab85de5cc42e5954c3ed56842faf6f08167e6202","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","d0b0a00cf31968a33baeaadf974ce4e5e7edf58cea5288765293f41ba5e72b3a","725b884357ba84171341a8e4cc08edf11417854fd069842ca6d22afb2e340e45","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","65455ea1b00bae7bd26d3c8c2401eb3d10401c09c55192d6f3b8b2275eda20c2","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","99bbadcf4153b61d79a2616b377da8f42a16fcb41d2136f1f6c2cf070b084216"],"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":[[232],[162,163,167,194,195,199,202,203],[160,161],[160],[162,203],[162,163,199,201,203],[200,203,204],[203],[162,163,202,203],[162,163,165,166,202,203],[162,163,164,202,203],[162,163,167,194,195,196,197,198,202,203],[162,163,167,199,202],[167,203],[169,170,171,172,173,174,175,176,177,178,203],[192,203],[168,179,187,188,189,190,191,193],[172,203],[180,181,182,183,184,185,186,203],[232,233,234,235,236],[232,234],[59,72,103],[73,103],[240],[241],[247,249],[46],[34,36,37,38,39,40,41,42,43,44,45,46],[34,35,37,38,39,40,41,42,43,44,45,46],[35,36,37,38,39,40,41,42,43,44,45,46],[34,35,36,38,39,40,41,42,43,44,45,46],[34,35,36,37,39,40,41,42,43,44,45,46],[34,35,36,37,38,40,41,42,43,44,45,46],[34,35,36,37,38,39,41,42,43,44,45,46],[34,35,36,37,38,39,40,42,43,44,45,46],[34,35,36,37,38,39,40,41,43,44,45,46],[34,35,36,37,38,39,40,41,42,44,45,46],[34,35,36,37,38,39,40,41,42,43,45,46],[34,35,36,37,38,39,40,41,42,43,44,46],[34,35,36,37,38,39,40,41,42,43,44,45],[75,95,103,104,105],[72,73,80,89],[64,72,80],[96],[68,73,81],[89],[70,72,80],[72],[72,74,89,95],[73],[80,89,95],[72,73,75,80,89,92,95],[75,89,92,95],[60,61,62,63,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],[95],[70,72,89],[62],[94],[87,96,98],[80],[86],[72,74,89,95,98],[255],[75,89,103],[243,244],[243,244,245,246],[248],[51],[52,53,54,55,56],[53],[52],[73,82,115,222,224],[73,82,113,115,218,222,224],[58,73,82,115,116,224],[48,111,113,115],[47,49,50,58,109,110,111,113,114,115,116,117,118,119,120],[113],[112,113,127,128,217],[48,58,73,82,107,109,111,112,114],[73,113,114,126,218],[111,113,114],[50,57,107,109],[82,107,109,220],[49,50,58,108,109,110,111,113,114,115,116,117,118,121,122,123,124,126,219,220,221,222],[58,109,110,111,113,115,116,117,118,119,122,131,205,218],[110],[73,81,82,107,125],[106],[49,82,115],[48,49,50,57,58,73,82,95,113,114],[50,109,204],[113,214,216],[110,130],[49,108,109,110],[49,108,109,110,130],[109,110],[50,109,110],[110,126],[50,58,110,130],[50,109,110,115],[110,120,131,132,133,134,135,136,138,139,140,141,142,145,146,147,148,149,151,152,153,154,155,157,158,207,208,210,211,212,215],[110,111,120,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,206,207,208,209,210,211,212,213],[49,50,110,205],[49,110],[50,110],[49,108,123],[109,129],[58],[50,58],[58,116],[48,49],[48,59,73,106,113],[49,50,58,108,109,114],[49,50,58,110,111,114,115]],"referencedMap":[[234,1],[204,2],[162,3],[161,4],[166,5],[202,6],[201,7],[163,8],[164,9],[168,9],[167,10],[165,11],[199,12],[197,8],[203,13],[169,14],[174,8],[176,8],[171,8],[172,14],[178,8],[179,15],[170,8],[175,8],[177,8],[173,8],[193,16],[192,8],[194,17],[188,8],[190,8],[189,8],[185,8],[191,18],[186,8],[187,19],[180,8],[181,8],[182,8],[183,8],[184,8],[237,20],[233,1],[235,21],[236,1],[238,22],[239,23],[241,24],[242,25],[250,26],[47,27],[35,28],[36,29],[34,30],[37,31],[38,32],[39,33],[40,34],[41,35],[42,36],[43,37],[44,38],[45,39],[46,40],[106,41],[64,42],[65,43],[66,44],[67,45],[68,46],[69,47],[71,48],[72,48],[73,49],[74,50],[75,51],[76,52],[77,53],[103,54],[78,48],[79,55],[80,56],[83,57],[84,58],[87,48],[88,59],[89,48],[92,60],[94,60],[95,61],[97,46],[100,62],[101,46],[256,63],[104,64],[245,65],[247,66],[246,65],[249,67],[52,68],[57,69],[54,70],[56,70],[53,71],[225,72],[226,72],[227,72],[228,72],[229,72],[230,73],[231,74],[224,75],[121,76],[127,77],[218,78],[113,79],[219,80],[128,77],[112,77],[119,81],[220,82],[221,83],[223,84],[222,85],[111,86],[126,87],[125,88],[50,89],[115,90],[205,91],[217,92],[147,93],[145,93],[148,93],[154,93],[212,94],[138,95],[208,94],[139,96],[132,96],[149,95],[133,94],[141,94],[210,95],[134,94],[155,97],[153,94],[211,95],[136,94],[152,94],[140,96],[158,94],[151,96],[135,94],[157,96],[207,98],[131,99],[146,93],[142,94],[120,100],[215,86],[216,101],[156,86],[214,102],[159,86],[137,86],[206,103],[143,86],[144,86],[213,104],[209,86],[150,105],[124,106],[130,107],[117,108],[116,109],[118,110],[122,108],[108,111],[114,112],[110,113],[109,114]],"exportedModulesMap":[[234,1],[204,2],[162,3],[161,4],[166,5],[202,6],[201,7],[163,8],[164,9],[168,9],[167,10],[165,11],[199,12],[197,8],[203,13],[169,14],[174,8],[176,8],[171,8],[172,14],[178,8],[179,15],[170,8],[175,8],[177,8],[173,8],[193,16],[192,8],[194,17],[188,8],[190,8],[189,8],[185,8],[191,18],[186,8],[187,19],[180,8],[181,8],[182,8],[183,8],[184,8],[237,20],[233,1],[235,21],[236,1],[238,22],[239,23],[241,24],[242,25],[250,26],[47,27],[35,28],[36,29],[34,30],[37,31],[38,32],[39,33],[40,34],[41,35],[42,36],[43,37],[44,38],[45,39],[46,40],[106,41],[64,42],[65,43],[66,44],[67,45],[68,46],[69,47],[71,48],[72,48],[73,49],[74,50],[75,51],[76,52],[77,53],[103,54],[78,48],[79,55],[80,56],[83,57],[84,58],[87,48],[88,59],[89,48],[92,60],[94,60],[95,61],[97,46],[100,62],[101,46],[256,63],[104,64],[245,65],[247,66],[246,65],[249,67],[52,68],[57,69],[54,70],[56,70],[53,71],[225,72],[226,72],[227,72],[228,72],[229,72],[230,73],[231,74],[224,75],[121,76],[127,77],[218,78],[113,79],[219,80],[128,77],[112,77],[119,81],[220,82],[221,83],[223,84],[222,85],[111,86],[126,87],[125,88],[50,89],[115,90],[205,91],[217,92],[147,93],[145,93],[148,93],[154,93],[212,94],[138,95],[208,94],[139,96],[132,96],[149,95],[133,94],[141,94],[210,95],[134,94],[155,97],[153,94],[211,95],[136,94],[152,94],[140,96],[158,94],[151,96],[135,94],[157,96],[207,98],[131,99],[146,93],[142,94],[120,100],[215,86],[216,101],[156,86],[214,102],[159,86],[137,86],[206,103],[143,86],[144,86],[213,104],[209,86],[150,105],[124,106],[130,107],[117,108],[116,109],[118,110],[122,108],[108,111],[114,112],[110,113],[109,114]],"semanticDiagnosticsPerFile":[234,232,204,160,162,161,166,202,198,201,163,164,168,167,165,199,197,203,195,196,169,174,176,171,172,178,179,170,175,177,173,193,192,194,188,190,189,185,191,186,187,180,181,182,183,184,237,233,235,236,238,239,240,241,242,250,129,48,251,47,35,36,34,37,38,39,40,41,42,43,44,45,46,59,105,106,60,62,63,64,65,66,67,68,69,70,71,72,73,74,61,102,75,76,77,103,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,252,253,254,255,256,107,104,243,245,247,246,244,249,248,8,7,2,9,10,11,12,13,14,15,16,3,4,20,17,18,19,21,22,23,5,24,25,26,27,6,28,29,30,31,32,1,33,200,55,52,57,54,51,56,53,225,226,227,228,229,230,231,224,121,127,218,113,219,128,112,119,220,221,223,222,111,126,125,50,115,205,217,147,145,148,154,212,138,208,139,132,149,133,141,210,134,155,153,211,136,152,140,158,151,135,157,207,131,146,142,120,215,216,156,214,159,137,206,143,144,213,209,150,124,130,58,117,116,118,122,123,49,108,114,110,109]},"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.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.string.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/js-yaml/index.d.ts","./src/js-yaml/index.ts","../../node_modules/colorette/index.d.ts","./src/typings/swagger.ts","./src/walk.ts","./src/visitors.ts","./src/oas-types.ts","./src/config/recommended.ts","./src/config/config.ts","./src/utils.ts","./src/resolve.ts","./src/types/oas3.ts","./src/types/oas2.ts","./src/types/oas3_1.ts","./src/config/rules.ts","./src/rules/no-unresolved-refs.ts","./src/bundle.ts","./src/types/redocly-yaml.ts","./src/typings/common.ts","./src/rules/other/stats.ts","./src/redocly/query.ts","./src/redocly/index.ts","./src/config/all.ts","./src/config/minimal.ts","../../node_modules/@types/js-levenshtein/index.d.ts","./src/rules/utils.ts","./src/rules/common/spec.ts","./src/rules/common/operation-2xx-response.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-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/license-url.ts","./src/rules/common/operation-security-defined.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","../../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/oas3/no-invalid-media-type-examples.ts","./src/rules/common/registry-dependencies.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/oas3/index.ts","./src/rules/oas2/boolean-parameter-prefixes.ts","./src/rules/oas2/index.ts","./src/rules/builtin.ts","./src/config/builtIn.ts","./src/config/load.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/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/json-schema/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",{"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":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e","affectsGlobalScope":true},"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"5e099389ceec44681b37d10470755cdc6d9f516851e53c731c6e7e17b39ad86f","a2c008d98ee0b91c5d1e072bc54e85ca454e41a02c75661f09f6c0cf521df632","48053f3ef2a787b638d9b7496ce062b9c13025b7465f9c0471674c2b1d95ec3f","8d1539367a9f5a03698f4c37111251eb76433ea8fcb5f1e546571b8513cac822","9ad71085f8ab35282a341995f85c6e06a19e6d5ab73b39f634b444ce8742a664","ee94d8f60c253d9994559ad325e9cb8a7af6bd36176884cb869ee5a40daa766c","606de01a4212a48518a219585f673504d3c0c26b361706006038a71bf8b9f42c","76de776e227ad01b703ce076b32177da31a765d5b5a681d5bb4c4e0f4876840f","aa4c984c8f2919742d06f305b1870bf180275cbe015490451a6374e6f6b9998a","46b9cdcd62e90f604876c143481ac7ff2c89cdfb902179bda0d8ee44c0695beb","b6af336aa092d644862e8bb0c5c387c448390f2455a789b9921fb7fcbb80367b","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","d555cd63a3fc837840db192596273fdf52fb28092b0a33bec98e89a0334b3a4c",{"version":"f54d7a33bad768b50c8512d55f38499209d95038558fea231058465f680d1e1e","affectsGlobalScope":true},"85d545d430795d54a8b2896f67f9aeb7bf19fd74a1469ae0627311eb72f0dfa2","a473cf45c3d9809518f8af913312139d9f4db6887dc554e0d06d0f4e52722e6b","d5afcd002167b6b03d595fb8b9630a00456b6fb9d2c5e8b6aaa30cb31bc44e2b","3d68ecf05475492f041c88395372c3a01b30351619bebcd38287ab185be7f7e4",{"version":"36c956a3a6dc279f1e6b77aa4b97b7b229b7d828102573ef5002de456ff5e1d9","affectsGlobalScope":true},"45ac321f2e15d268fd74a90ddaa6467dcaaff2c5b13f95b4b85831520fb7a491","6e8b894365ab993dbb55c58542598d1548fdda072c974f98b89c218891e2ba09","ddd6169dff8e5263397a9399ba7ba92521d3959f8f9dcdc27f24403dc7b751ba","508e1e25ca40ea6cde332d3232c826fcd82f456f45ae535d817754684f048f9e",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"8f8f6ee2a0c94077f79439f51640a625ac7e2f5dd6866bd3b5a41705c836adfc","affectsGlobalScope":true},"ee97aed5b4667a5c3003a1da4b108827fc64b888391417617d89b02ff134de9a","839421b494b57cd2bc0074e914130277051850eba6def6c25870056e6652640b","e18a4b529c9a05593e612130554d93a2b78b949cf1cf48c0b183071258f0e95a","88587b5c94b0c4f5d78026e4beeb93383b3933c860d9840b55d6bf47d7b632bb","a473ecd14d9bafbd6a33105524b033237bbf1d6ce2cd81eb71cc54bec2d83d55","9e8947666e44137405fd378f3a8a0515a492e967e552406c02b991c98c78fc61","0cff7901aedfe78e314f7d44088f07e2afa1b6e4f0473a4169b8456ca2fb245d","7a2a3ff87ffd4313a6a2f3b012e801dd249ee58152cedf90c8718dcd2c811fe3","69640cc2e76dad52daeb9914e6b70c5c9a5591a3a65190a2d3ea432cf0015e16","a39a4c527b7a2dc7a2661b711a534c10c76852c5ad6ae320767d3f7d2621b67d","1bb5c9857b2ee32c199dd85bc0f4c0299112485d6e5dc91428eabfdee0dbd68c",{"version":"5daba568741c8ed283d67bf370c626a91e09fdfbc6d4abe22a7f93e2cf5138b9","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","662661bbf9ccd869f3bca82d34234b2abdc95c657e2187c35352d42dddb24c2d","5caa645cc390a0a8d5a031072b6b4e49218c17017cd80a63bd2557b19be13c5f","4c4334eb5d8fae83416a361d787b55a5743916aed8af812a909898bc7333e709","6feb6f75a3e4e017f8e6e12740cf06f18eefcf829284fa310da6c7f4d44fb2eb","4fd3c4debadce3e9ab9dec3eb45f7f5e2e3d4ad65cf975a6d938d883cfb25a50","0953427f9c2498f71dd912fdd8a81b19cf6925de3e1ad67ab9a77b9a0f79bf0b","b709ff1f6d6235f5e9c8dcbce3e683ff24ec35046b232d5a281af083026018d1","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","ee6a154ecccde26b413e89c97a0b824f25b253c4c50a3c392bcb2b4c6ba9c314","71d6da3b0150ecdcd16c08b3b546fe4cc7f53df642eccfeb03c813ee788fae0c","a364b4a8a015ae377052fa4fac94204d79a69d879567f444c7ceff1b7a18482d","c5ec3b97d9db756c689cd11f4a11eaa9e6077b2768e3e9b54ff727a93c03a909","c14e9e86f18189c7d32b5dd03b4cf3f40bed68f0509dec06d75d41b82c065fe2","bdb07038733b2d74a75ba9c381dcb92774cd6f161ee125bfa921eae7d883ccc9","ad93e960a3a07dff7394bf0c8a558006a9ff2d0725ab28fc33dec227d4cb251e",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"33f44d7dfe8ed95d42485149f97926d80d0f3a5d7ce7d6b5b21428a8286b51ea","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","5b89c37ff5dfea00195f8ea5e6fc8e086be68613297fc8152c08900a1d1fdb83","4bfd17e3cb59395bfcb32f04a6437034c4fbe9984a3c4edabe3b7fa4a3ed348e","a456dd94a596de621bd25cf3c91278101ea62782c3ac4435aef9190a2336ddde","810fd22abaa35308a2e2abe82bbaf2864332680548a3ca1cec6a1bad1174e708","e67625007c3a6e796cd083c12a18b5e04c4dec4e97117bb2800dacb29f0b37fc","d7a7d87e9d46564706bb143afa3cfb509c7ee61e07720e90dcc6a848c17f079a","55bbef138c80baec54672dfd879e74d98b84aef7145f5c8771b585af539e8ac4","150f4e8079d3e8bdeb37aee7a3919d01f30c9e366e378388a692da8428e91586","e3261f6cadb029bb0e70d26466392b1a9448160538a9c2541fb36dbf728ba4e7","633085496c069268eab53426c84621e521dd7ed0854c258946dff584f1100a72","8fb7aaf9e3abe80fb75769ceed9df8d653bd5cd864db9147a4f98114ff7ac0e8","aeb304db851b8309cb213778bffdc8a4006426c869e2488cce656dcb7872763a","61df3d80a97cc871e4c5837824ec9d9b8feb00e402c2744dc28a3ed5defd57bf","f7f74f4de065757b594569ee30e1c43ecc1e9c342896f494aedc8fd4c06cc31d","3989dd62591dc01e256c1553537693918450ef84da7f19a2e62cef52d5330d96","02b41251895e409555bc5688231b8c9801cf817b614bd7fa45c60b6ab5a415a4","a6c6b3d8c9a227c5a829ae7f623d8f258988c2e704715e0a38ba09dcf85f23ea","50b9bbcf2f581ef32f74ce898255b64d585be5a06927ce28e537947c8f271927","c528dad690c73e4f587cc897041ab729e20dc627c58ec0c2da9019a4e58a6c45","63ccc5dc211f97f78e352388c770a23b652ef408a8b337450c8a0c6d41fe26ea","4f2785ffaa3e8128484dd6525f2bc120ba08588907f45bfbb369023c8546bdaa","3ac4a2714c329c4805c311f182bf6d9fa9d7c56463950d5141ae61c12ba88383","06db5817264405b74afbbe9ff2f2e371c7cfe5278475864ffc3b27136125d975","1f683fda8fd8160d04770468c000b5a257bff3b7420700dad34dbc112418355c","15a58e61533036fb08dfd567fa7b1f799acdedf0cacf5cbc93bbed0f0520e87f","8c6e6807cec3720b21d4443d2e3f49714ca8b3f05e44195e05d6f4904c0e2573","4fa8794f32464ce397d6d88e4523530d7c695816fb6231c495ba71868575b48a","cc9f0665f4555a6f818dcaf79de44ff3f9e93211458548dd6260506e27b38025","e8b5d684b18772f93fd7ac85652a9dd8c3c4ac42d255ebc676ddd75d213a60eb","ebdf0fc327828cf8e59bcaec0b03a1f65dd5f5b4849636405b43e71fbdd014d4","88a90a39fde5c1d8021d1a1a9fd351018f3fad88beeb38881f06cbfaaa6b06fe","6e3a3b59f2b4ebf3c4ca906f7f56d3d53f707eda7ed10be0863029d814b51583","329318845916f35128387bb291f2f252ccc80fe968ae6f6ee7a7bd644b9af509","6188eef68c972ead267314945b8f8a059ee997c45d46180d088977d4849dd093","8e8d8e11136d8c5a59360e90455356a41c8006129f7e459fbbf8a4551379f23a","a959db7039a615c94a9c236d0664463fd8fcc7c08e68c01bd7de4b49116c2b2c","3144d082b0efd80551c4b9ff1dd29ba6b0f0bb0709d481ed5285313e0845ee36","a9319c8e234166988f24be3a12d8845a5d43f34d31f72621ca311384ee7a56ae","37106a318a9b70352fc7fb06ed9a31c218342402f194355ad7c3e83c226b8b84","ad56cfeb1a9c0ca0da5dc6f97552a866803b087baf50a2360f481b5747ca49cf","232fe9b0f859a921132d464999ff9d2f979e29636dfd2225989e638a43bc5630","679f01be7caf9e091684d1f0fdabc8837991ed589a4c2617c72799c4aed0b60e","a3f88fc187a30877572d86ca78bfbad1ce1f7f081a13f4a1a3de12fc19172763","244c79d63bdbd959a0b80d2a792ca4af5c9ad06d7a333451adf45e80cab4037f","099e32d949572f34338bcc5a9bf84b09966b5b347b0462154eaf1679968ff74e","b72ac783938f2f9522af3694262d6112b061c0fa2b8c4c5df226efd0550fcba9","efcf6bd086be2f68fc73f04109ce82b5d64b1a4b01606ecb28de046b8bafeb97","576815ad63894f88f18c36c239e23562b35033e0dab57ff665dc0410db4a8b54","d23b6230c10ffb27b8cec7f0aef6443f8736620ce07bf7a991efb02e0f599d42","53e922fc5556e9825e10ebc780ea40088404abb4f1a76251bb5fac18eb20fc93","20a5fe46b10fcfdbef32882afb98298121a734b05bfdb4e06e61ed476df76e62","d0b2d3ab2b3934d5ea2d1ca2973fce9c031bec115c37e437b32bad32c0d79196","b79ce369faacdc58665774b775f9c9604dfcc20216a0b66b4628225463b827c1","8434dc2a1f866e713703e6d8ccc85168d92c07049138a3f2895e63f1b0d0ff8a","d9be0ae1a460ba18c0bdeaa48ae1f6e637207796dd0b57afc540393b064db8df","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","3c4aa4e4602f5c746b6fb2d7934ca15f6cfb9eee48190a9eb103a885433efc95","6554a631612ff1c3d6d76a65d88b4d8889ad804cf6897c968fef4d1bcd3b005b","bddfd3a02c1dde94c33fe9f9e122559ae5b0f030e9350043b992e6dd16f561f7","d83f1778cc95256ae503c326ea6804cffef5e5d6310e0d8b8dc56a2107abc7ae","274814c52225bce5396c2c4968f2c1d1c08fb4e04b76bff0d9d070b35f23260e","9688010a836de8a1927fb20f325179c6ae3ee66a64a1d0e5c414b15502652359","56d135e85dcc15aa982d8ca85f8021859447db147c51123e3811b3a48cb7d90b","6c8a91aa5b37b93dbf757bd99da7befc145884a94dcfb5a74043b1df4d70bfec","a3515918d4a0b9f14b3fa2ce25e2468994f31a492107a6be31c7c19ac03b28f9","cf521709fb825468afa482f8c58019e9f474369339257118ea5fee1d9bec8951","41d545e5d36083f5bf6432c93dc2d3cb29ed4f8deae03b9dec59c55e02fbe597","c199f7b27a770e9c6108b17292c5195efcda1a14f88417348b11b990c4ee484b","8d8956db63e0870eac5abd8d3dc7be74653bda46319a16d826b95c7b6b8dfd7c","726e9edb130daf3a096bb585e4aebfe7ef1ce473fc37bbe1d98e1d8b741e6db8","68b25c02cb0e209ea615289bdf85ded14b74e4d53f8316e83fcc6ab72d67ff16","cbfe93fd48a60da61b2ce41c1966ea54b3c7f76d270b31afb37543051d776e75","d9c0723e8c23b58e07b73b91bac2077cb9b04471fa0a0b70e29f17d4b8ea8902","c081be059f1d42bcf3606e9aed118f495ab439ec8ee4a22e7a2faa33c0cf2e6d","f067ee613fb755d5211b12a880c4a3ce200c536b12594bad9de2c72dfa52c74e","979077d3aff73c5ba2aeb12306d4b36cca483e43943f5e749cc9decd8b812f84","0b304d474cf6ac7fc79a8115c724eb2c68cc0f36bc8649155cd8a65808042ee9","225591c9bda5ab3e0756bce43f4d5d35d6f673968dd82d30792d4c3c182e4a20","413d72d18cd0ce2bf60ec34eb68377c1924db6430b75c43d6b3fe818e99766f6","15f2bb8c8dbd4101c1ff26ffaef79d2b6ddfc79a8fd29bcaf2c9ac777549a333","b50bf43d558b33dd01fe7bd57b8b68c025db666561e893c9f1d3154a9a8d05cc","07b3d20fc1026eefabe20dbd7ff759dcc4b5bbc2ed3f732a3a91c814c9f5354c","41476c129af01db7691ce3fda6a8a581a9636980ba5f831f72554934a7b05911","f82348f8ac4f637d6ad76ef5d45577ccc0c59fbd25d8c44d55349a71a90e195a","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","4aaf84a5ac87bad3211f041fab85de5cc42e5954c3ed56842faf6f08167e6202","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","d0b0a00cf31968a33baeaadf974ce4e5e7edf58cea5288765293f41ba5e72b3a","725b884357ba84171341a8e4cc08edf11417854fd069842ca6d22afb2e340e45","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","65455ea1b00bae7bd26d3c8c2401eb3d10401c09c55192d6f3b8b2275eda20c2","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","99bbadcf4153b61d79a2616b377da8f42a16fcb41d2136f1f6c2cf070b084216"],"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":[[233],[163,164,168,195,196,200,203,204],[161,162],[161],[163,204],[163,164,200,202,204],[201,204,205],[204],[163,164,203,204],[163,164,166,167,203,204],[163,164,165,203,204],[163,164,168,195,196,197,198,199,203,204],[163,164,168,200,203],[168,204],[170,171,172,173,174,175,176,177,178,179,204],[193,204],[169,180,188,189,190,191,192,194],[173,204],[181,182,183,184,185,186,187,204],[233,234,235,236,237],[233,235],[58,71,102],[72,102],[241],[242],[248,250],[46],[34,36,37,38,39,40,41,42,43,44,45,46],[34,35,37,38,39,40,41,42,43,44,45,46],[35,36,37,38,39,40,41,42,43,44,45,46],[34,35,36,38,39,40,41,42,43,44,45,46],[34,35,36,37,39,40,41,42,43,44,45,46],[34,35,36,37,38,40,41,42,43,44,45,46],[34,35,36,37,38,39,41,42,43,44,45,46],[34,35,36,37,38,39,40,42,43,44,45,46],[34,35,36,37,38,39,40,41,43,44,45,46],[34,35,36,37,38,39,40,41,42,44,45,46],[34,35,36,37,38,39,40,41,42,43,45,46],[34,35,36,37,38,39,40,41,42,43,44,46],[34,35,36,37,38,39,40,41,42,43,44,45],[74,94,102,103,104],[71,72,79,88],[63,71,79],[95],[67,72,80],[88],[69,71,79],[71],[71,73,88,94],[72],[79,88,94],[71,72,74,79,88,91,94],[74,88,91,94],[59,60,61,62,63,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],[94],[69,71,88],[61],[93],[86,95,97],[79],[85],[71,73,88,94,97],[256],[74,88,102],[244,245],[244,245,246,247],[249],[50],[51,52,53,54,55],[52],[51],[72,81,116,223,225],[72,81,114,116,219,223,225],[57,72,81,116,117,225],[107,112,114,116],[47,48,49,57,110,111,112,114,115,116,117,118,119,120,121],[114],[113,114,128,129,218],[57,72,81,107,108,110,112,113,115],[72,114,115,127,219],[112,114,115],[49,56,108,110],[81,108,110,221],[48,49,57,107,109,110,111,112,114,115,116,117,118,119,122,123,124,125,127,220,221,222,223],[106],[57,110,111,112,114,116,117,118,119,120,123,132,206,219],[111],[72,80,81,108,126],[105],[48,81,116],[48,49,56,57,72,81,94,114,115],[49,110,205],[114,215,217],[111,131],[48,109,110,111],[48,109,110,111,131],[110,111],[49,110,111],[111,127],[49,57,111,131],[49,110,111,116],[111,121,132,133,134,135,136,137,139,140,141,142,143,146,147,148,149,150,152,153,154,155,156,158,159,208,209,211,212,213,216],[111,112,121,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,207,208,209,210,211,212,213,214],[48,49,111,206],[48,111],[49,111],[48,109,124],[110,130],[57],[49,57],[57,117],[48,106],[58,72,105,107,114],[48,49,57,109,110,115],[48,49,57,111,112,115,116]],"referencedMap":[[235,1],[205,2],[163,3],[162,4],[167,5],[203,6],[202,7],[164,8],[165,9],[169,9],[168,10],[166,11],[200,12],[198,8],[204,13],[170,14],[175,8],[177,8],[172,8],[173,14],[179,8],[180,15],[171,8],[176,8],[178,8],[174,8],[194,16],[193,8],[195,17],[189,8],[191,8],[190,8],[186,8],[192,18],[187,8],[188,19],[181,8],[182,8],[183,8],[184,8],[185,8],[238,20],[234,1],[236,21],[237,1],[239,22],[240,23],[242,24],[243,25],[251,26],[47,27],[35,28],[36,29],[34,30],[37,31],[38,32],[39,33],[40,34],[41,35],[42,36],[43,37],[44,38],[45,39],[46,40],[105,41],[63,42],[64,43],[65,44],[66,45],[67,46],[68,47],[70,48],[71,48],[72,49],[73,50],[74,51],[75,52],[76,53],[102,54],[77,48],[78,55],[79,56],[82,57],[83,58],[86,48],[87,59],[88,48],[91,60],[93,60],[94,61],[96,46],[99,62],[100,46],[257,63],[103,64],[246,65],[248,66],[247,65],[250,67],[51,68],[56,69],[53,70],[55,70],[52,71],[226,72],[227,72],[228,72],[229,72],[230,72],[231,73],[232,74],[225,75],[122,76],[128,77],[219,78],[114,79],[220,80],[129,77],[113,77],[120,81],[221,82],[222,83],[224,84],[107,85],[223,86],[112,87],[127,88],[126,89],[49,90],[116,91],[206,92],[218,93],[148,94],[146,94],[149,94],[155,94],[213,95],[139,96],[209,95],[140,97],[133,97],[150,96],[134,95],[142,95],[211,96],[135,95],[156,98],[154,95],[212,96],[137,95],[153,95],[141,97],[159,95],[152,97],[136,95],[158,97],[208,99],[132,100],[147,94],[143,95],[121,101],[216,87],[217,102],[157,87],[215,103],[160,87],[138,87],[207,104],[144,87],[145,87],[214,105],[210,87],[151,106],[125,107],[131,108],[118,109],[117,110],[119,111],[123,109],[109,112],[115,113],[111,114],[110,115]],"exportedModulesMap":[[235,1],[205,2],[163,3],[162,4],[167,5],[203,6],[202,7],[164,8],[165,9],[169,9],[168,10],[166,11],[200,12],[198,8],[204,13],[170,14],[175,8],[177,8],[172,8],[173,14],[179,8],[180,15],[171,8],[176,8],[178,8],[174,8],[194,16],[193,8],[195,17],[189,8],[191,8],[190,8],[186,8],[192,18],[187,8],[188,19],[181,8],[182,8],[183,8],[184,8],[185,8],[238,20],[234,1],[236,21],[237,1],[239,22],[240,23],[242,24],[243,25],[251,26],[47,27],[35,28],[36,29],[34,30],[37,31],[38,32],[39,33],[40,34],[41,35],[42,36],[43,37],[44,38],[45,39],[46,40],[105,41],[63,42],[64,43],[65,44],[66,45],[67,46],[68,47],[70,48],[71,48],[72,49],[73,50],[74,51],[75,52],[76,53],[102,54],[77,48],[78,55],[79,56],[82,57],[83,58],[86,48],[87,59],[88,48],[91,60],[93,60],[94,61],[96,46],[99,62],[100,46],[257,63],[103,64],[246,65],[248,66],[247,65],[250,67],[51,68],[56,69],[53,70],[55,70],[52,71],[226,72],[227,72],[228,72],[229,72],[230,72],[231,73],[232,74],[225,75],[122,76],[128,77],[219,78],[114,79],[220,80],[129,77],[113,77],[120,81],[221,82],[222,83],[224,84],[107,85],[223,86],[112,87],[127,88],[126,89],[49,90],[116,91],[206,92],[218,93],[148,94],[146,94],[149,94],[155,94],[213,95],[139,96],[209,95],[140,97],[133,97],[150,96],[134,95],[142,95],[211,96],[135,95],[156,98],[154,95],[212,96],[137,95],[153,95],[141,97],[159,95],[152,97],[136,95],[158,97],[208,99],[132,100],[147,94],[143,95],[121,101],[216,87],[217,102],[157,87],[215,103],[160,87],[138,87],[207,104],[144,87],[145,87],[214,105],[210,87],[151,106],[125,107],[131,108],[118,109],[117,110],[119,111],[123,109],[109,112],[115,113],[111,114],[110,115]],"semanticDiagnosticsPerFile":[235,233,205,161,163,162,167,203,199,202,164,165,169,168,166,200,198,204,196,197,170,175,177,172,173,179,180,171,176,178,174,194,193,195,189,191,190,186,192,187,188,181,182,183,184,185,238,234,236,237,239,240,241,242,243,251,130,106,252,47,35,36,34,37,38,39,40,41,42,43,44,45,46,58,104,105,59,61,62,63,64,65,66,67,68,69,70,71,72,73,60,101,74,75,76,102,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,253,254,255,256,257,108,103,244,246,248,247,245,250,249,8,7,2,9,10,11,12,13,14,15,16,3,4,20,17,18,19,21,22,23,5,24,25,26,27,6,28,29,30,31,32,1,33,201,54,51,56,53,50,55,52,226,227,228,229,230,231,232,225,122,128,219,114,220,129,113,120,221,222,224,107,223,112,127,126,49,116,206,218,148,146,149,155,213,139,209,140,133,150,134,142,211,135,156,154,212,137,153,141,159,152,136,158,208,132,147,143,121,216,217,157,215,160,138,207,144,145,214,210,151,125,131,57,118,117,119,123,124,48,109,115,111,110]},"version":"4.3.3"}
|