@redocly/cli 1.0.0-beta.107 → 1.0.0-beta.108

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.
@@ -73,8 +73,8 @@ function handleJoin(argv, packageVersion) {
73
73
  yield validateApi(document, config.styleguide, externalRefResolver, packageVersion);
74
74
  }
75
75
  }
76
- let joinedDef = {};
77
- let potentialConflicts = {
76
+ const joinedDef = {};
77
+ const potentialConflicts = {
78
78
  tags: {},
79
79
  paths: {},
80
80
  components: {},
@@ -236,9 +236,7 @@ function handleJoin(argv, packageVersion) {
236
236
  if (!potentialConflicts.paths.hasOwnProperty(path)) {
237
237
  potentialConflicts.paths[path] = {};
238
238
  }
239
- for (const operation of Object.keys(paths[path])) {
240
- // @ts-ignore
241
- const pathOperation = paths[path][operation];
239
+ for (const [operation, pathOperation] of Object.entries(paths[path])) {
242
240
  joinedDef.paths[path][operation] = pathOperation;
243
241
  potentialConflicts.paths[path][operation] = [
244
242
  ...(potentialConflicts.paths[path][operation] || []),
@@ -254,7 +252,7 @@ function handleJoin(argv, packageVersion) {
254
252
  api,
255
253
  ];
256
254
  }
257
- let { tags, security } = joinedDef.paths[path][operation];
255
+ const { tags, security } = joinedDef.paths[path][operation];
258
256
  if (tags) {
259
257
  joinedDef.paths[path][operation].tags = tags.map((tag) => addPrefix(tag, tagsPrefix));
260
258
  populateTags({
@@ -295,13 +293,11 @@ function handleJoin(argv, packageVersion) {
295
293
  if (!joinedDef.hasOwnProperty(COMPONENTS)) {
296
294
  joinedDef[COMPONENTS] = {};
297
295
  }
298
- for (const component of Object.keys(components)) {
296
+ for (const [component, componentObj] of Object.entries(components)) {
299
297
  if (!potentialConflicts[COMPONENTS].hasOwnProperty(component)) {
300
298
  potentialConflicts[COMPONENTS][component] = {};
301
299
  joinedDef[COMPONENTS][component] = {};
302
300
  }
303
- // @ts-ignore
304
- const componentObj = components[component];
305
301
  for (const item of Object.keys(componentObj)) {
306
302
  const componentPrefix = addPrefix(item, componentsPrefix);
307
303
  potentialConflicts.components[component][componentPrefix] = [
@@ -315,7 +311,6 @@ function handleJoin(argv, packageVersion) {
315
311
  }
316
312
  function collectXWebhooks(openapi, { apiFilename, api, potentialConflicts, tagsPrefix, componentsPrefix }) {
317
313
  const xWebhooks = 'x-webhooks';
318
- // @ts-ignore
319
314
  const openapiXWebhooks = openapi[xWebhooks];
320
315
  if (openapiXWebhooks) {
321
316
  if (!joinedDef.hasOwnProperty(xWebhooks)) {
@@ -333,7 +328,7 @@ function handleJoin(argv, packageVersion) {
333
328
  ];
334
329
  }
335
330
  for (const operationKey of Object.keys(joinedDef[xWebhooks][webhook])) {
336
- let { tags } = joinedDef[xWebhooks][webhook][operationKey];
331
+ const { tags } = joinedDef[xWebhooks][webhook][operationKey];
337
332
  if (tags) {
338
333
  joinedDef[xWebhooks][webhook][operationKey].tags = tags.map((tag) => addPrefix(tag, tagsPrefix));
339
334
  populateTags({
@@ -373,7 +368,7 @@ function doesComponentsDiffer(curr, next) {
373
368
  function validateComponentsDifference(files) {
374
369
  let isDiffer = false;
375
370
  for (let i = 0, len = files.length; i < len; i++) {
376
- let next = files[i + 1];
371
+ const next = files[i + 1];
377
372
  if (next && doesComponentsDiffer(files[i], next)) {
378
373
  isDiffer = true;
379
374
  }
@@ -47,7 +47,7 @@ function handleLint(argv, version) {
47
47
  totals.warnings += fileTotals.warnings;
48
48
  totals.ignored += fileTotals.ignored;
49
49
  if (argv['generate-ignore-file']) {
50
- for (let m of results) {
50
+ for (const m of results) {
51
51
  config.styleguide.addIgnore(m);
52
52
  totalIgnored++;
53
53
  }
@@ -94,7 +94,7 @@ function previewDocs(argv) {
94
94
  });
95
95
  function reloadConfig() {
96
96
  return __awaiter(this, void 0, void 0, function* () {
97
- let config = yield openapi_core_1.loadConfig(argv.config);
97
+ const config = yield openapi_core_1.loadConfig(argv.config);
98
98
  const redoclyClient = new openapi_core_1.RedoclyClient();
99
99
  isAuthorizedWithRedocly = yield redoclyClient.isAuthorizedWithRedocly();
100
100
  const resolvedConfig = openapi_core_1.getMergedConfig(config, argv.api);
@@ -112,7 +112,9 @@ exports.previewDocs = previewDocs;
112
112
  function debounce(func, wait, immediate) {
113
113
  let timeout;
114
114
  return function executedFunction(...args) {
115
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
115
116
  // @ts-ignore
117
+ // eslint-disable-next-line @typescript-eslint/no-this-alias
116
118
  const context = this;
117
119
  const later = () => {
118
120
  timeout = null;
@@ -79,6 +79,7 @@ function startPreviewServer(port, host, { getBundle, getOptions, useRedocPro, })
79
79
  }
80
80
  else {
81
81
  let filePath =
82
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
82
83
  // @ts-ignore
83
84
  {
84
85
  '/hot.js': path.join(__dirname, 'hot.js'),
@@ -112,7 +113,7 @@ function startPreviewServer(port, host, { getBundle, getOptions, useRedocPro, })
112
113
  }
113
114
  console.timeEnd(colorette.dim(`GET ${request.url}`));
114
115
  });
115
- let wsPort = yield portfinder.getPortPromise({ port: 32201 });
116
+ const wsPort = yield portfinder.getPortPromise({ port: 32201 });
116
117
  const server = server_1.startHttpServer(port, host, handler);
117
118
  server.on('listening', () => {
118
119
  process.stdout.write(`\n 🔎 Preview server running at ${colorette.blue(`http://${host}:${port}\n`)}`);
@@ -75,7 +75,7 @@ function handlePush(argv) {
75
75
  const filesHash = hashFiles(filesToUpload.files);
76
76
  process.stdout.write(`Uploading ${filesToUpload.files.length} ${utils_1.pluralize('file', filesToUpload.files.length)}:\n`);
77
77
  let uploaded = 0;
78
- for (let file of filesToUpload.files) {
78
+ for (const file of filesToUpload.files) {
79
79
  const { signedUploadUrl, filePath } = yield client.registryApi.prepareFileUpload({
80
80
  organizationId,
81
81
  name,
@@ -142,7 +142,7 @@ function getFilesList(dir, files) {
142
142
  }
143
143
  function collectFilesToUpload(api, config) {
144
144
  return __awaiter(this, void 0, void 0, function* () {
145
- let files = [];
145
+ const files = [];
146
146
  const [{ path: apiPath }] = yield utils_1.getFallbackApisOrExit([api], config);
147
147
  process.stdout.write('Bundling definition\n');
148
148
  const { bundle: openapiBundle, problems } = yield openapi_core_1.bundle({
@@ -173,7 +173,7 @@ function collectFilesToUpload(api, config) {
173
173
  const fileList = getFilesList(dir, []);
174
174
  files.push(...fileList.map((f) => getFileEntry(f)));
175
175
  }
176
- let pluginFiles = new Set();
176
+ const pluginFiles = new Set();
177
177
  for (const plugin of config.styleguide.pluginPaths) {
178
178
  if (typeof plugin !== 'string')
179
179
  continue;
@@ -207,7 +207,7 @@ function getFolder(filePath) {
207
207
  return path.resolve(path.dirname(filePath));
208
208
  }
209
209
  function hashFiles(filePaths) {
210
- let sum = crypto_1.createHash('sha256');
210
+ const sum = crypto_1.createHash('sha256');
211
211
  filePaths.forEach((file) => sum.update(fs.readFileSync(file.filePath)));
212
212
  return sum.digest('hex');
213
213
  }
@@ -229,7 +229,7 @@ function getDestinationProps(destination, organization) {
229
229
  exports.getDestinationProps = getDestinationProps;
230
230
  const transformPush = (callback) => (_a) => {
231
231
  var { maybeApiOrDestination, maybeDestination, maybeBranchName, branch } = _a, rest = __rest(_a, ["maybeApiOrDestination", "maybeDestination", "maybeBranchName", "branch"]);
232
- if (!!maybeBranchName) {
232
+ if (maybeBranchName) {
233
233
  process.stderr.write(colorette_1.yellow('Deprecation warning: Do not use the third parameter as a branch name. Please use a separate --branch option instead.'));
234
234
  }
235
235
  const api = maybeDestination ? maybeApiOrDestination : undefined;
@@ -247,7 +247,7 @@ function uploadFileToS3(url, filePathOrBuffer) {
247
247
  const fileSizeInBytes = typeof filePathOrBuffer === 'string'
248
248
  ? fs.statSync(filePathOrBuffer).size
249
249
  : filePathOrBuffer.byteLength;
250
- let readStream = typeof filePathOrBuffer === 'string' ? fs.createReadStream(filePathOrBuffer) : filePathOrBuffer;
250
+ const readStream = typeof filePathOrBuffer === 'string' ? fs.createReadStream(filePathOrBuffer) : filePathOrBuffer;
251
251
  return node_fetch_1.default(url, {
252
252
  method: 'PUT',
253
253
  headers: {
@@ -198,8 +198,8 @@ function gatherComponentsFiles(components, componentsFiles, componentType, compo
198
198
  let inherits = [];
199
199
  if (componentType === types_1.OPENAPI3_COMPONENT.Schemas) {
200
200
  inherits = (((_b = (_a = components === null || components === void 0 ? void 0 : components[componentType]) === null || _a === void 0 ? void 0 : _a[componentName]) === null || _b === void 0 ? void 0 : _b.allOf) || [])
201
- .map((s) => s.$ref)
202
- .filter(Boolean);
201
+ .map(({ $ref }) => $ref)
202
+ .filter(openapi_core_1.isTruthy);
203
203
  }
204
204
  componentsFiles[componentType] = componentsFiles[componentType] || {};
205
205
  componentsFiles[componentType][componentName] = { inherits, filename };
@@ -225,6 +225,7 @@ function iteratePathItems(pathItems, openapiDir, outDir, componentsFiles, pathSe
225
225
  const sampleFileName = path.join(openapiDir, 'code_samples', utils_1.escapeLanguageName(sample.lang), codeSamplesPathPrefix + utils_1.pathToFilename(pathName, pathSeparator), method + langToExt(sample.lang));
226
226
  fs.mkdirSync(path.dirname(sampleFileName), { recursive: true });
227
227
  fs.writeFileSync(sampleFileName, sample.source);
228
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
228
229
  // @ts-ignore
229
230
  sample.source = {
230
231
  $ref: openapi_core_1.slash(path.relative(outDir, sampleFileName)),
@@ -247,6 +248,7 @@ function iterateComponents(openapi, openapiDir, componentsFiles) {
247
248
  const componentTypes = findComponentTypes(components);
248
249
  componentTypes.forEach(iterateAndGatherComponentsFiles);
249
250
  componentTypes.forEach(iterateComponentTypes);
251
+ // eslint-disable-next-line no-inner-declarations
250
252
  function iterateAndGatherComponentsFiles(componentType) {
251
253
  const componentDirPath = path.join(componentsDir, componentType);
252
254
  for (const componentName of Object.keys((components === null || components === void 0 ? void 0 : components[componentType]) || {})) {
@@ -254,6 +256,7 @@ function iterateComponents(openapi, openapiDir, componentsFiles) {
254
256
  gatherComponentsFiles(components, componentsFiles, componentType, componentName, filename);
255
257
  }
256
258
  }
259
+ // eslint-disable-next-line no-inner-declarations
257
260
  function iterateComponentTypes(componentType) {
258
261
  var _a, _b, _c;
259
262
  const componentDirPath = path.join(componentsDir, componentType);
package/lib/index.js CHANGED
@@ -33,7 +33,10 @@ yargs
33
33
  choices: ['stylish', 'json'],
34
34
  default: 'stylish',
35
35
  },
36
- }), stats_1.handleStats)
36
+ }), (argv) => {
37
+ process.env.REDOCLY_CLI_COMMAND = 'stats';
38
+ stats_1.handleStats(argv);
39
+ })
37
40
  .command('split [api]', 'Split definition into a multi-file structure.', (yargs) => yargs
38
41
  .positional('api', {
39
42
  description: 'API definition file that you want to split',
@@ -52,7 +55,10 @@ yargs
52
55
  default: '_',
53
56
  },
54
57
  })
55
- .demandOption('api'), split_1.handleSplit)
58
+ .demandOption('api'), (argv) => {
59
+ process.env.REDOCLY_CLI_COMMAND = 'split';
60
+ split_1.handleSplit(argv);
61
+ })
56
62
  .command('join [apis...]', 'Join definitions [experimental].', (yargs) => yargs
57
63
  .positional('apis', {
58
64
  array: true,
@@ -81,6 +87,7 @@ yargs
81
87
  type: 'boolean',
82
88
  },
83
89
  }), (argv) => {
90
+ process.env.REDOCLY_CLI_COMMAND = 'join';
84
91
  join_1.handleJoin(argv, version);
85
92
  })
86
93
  .command('push [maybeApiOrDestination] [maybeDestination] [maybeBranchName]', 'Push an API definition to the Redocly API registry.', (yargs) => yargs
@@ -112,7 +119,10 @@ yargs
112
119
  },
113
120
  })
114
121
  .implies('batch-id', 'batch-size')
115
- .implies('batch-size', 'batch-id'), push_1.transformPush(push_1.handlePush))
122
+ .implies('batch-size', 'batch-id'), (argv) => {
123
+ process.env.REDOCLY_CLI_COMMAND = 'push';
124
+ push_1.transformPush(push_1.handlePush)(argv);
125
+ })
116
126
  .command('lint [apis...]', 'Lint definition.', (yargs) => yargs.positional('apis', { array: true, type: 'string', demandOption: true }).option({
117
127
  format: {
118
128
  description: 'Use a specific output format.',
@@ -162,6 +172,7 @@ yargs
162
172
  type: 'string',
163
173
  },
164
174
  }), (argv) => {
175
+ process.env.REDOCLY_CLI_COMMAND = 'lint';
165
176
  lint_1.handleLint(argv, version);
166
177
  })
167
178
  .command('bundle [apis...]', 'Bundle definition.', (yargs) => yargs.positional('apis', { array: true, type: 'string', demandOption: true }).options({
@@ -232,6 +243,7 @@ yargs
232
243
  default: false,
233
244
  },
234
245
  }), (argv) => {
246
+ process.env.REDOCLY_CLI_COMMAND = 'bundle';
235
247
  bundle_1.handleBundle(argv, version);
236
248
  })
237
249
  .command('login', 'Login to the Redocly API registry with an access token.', (yargs) => __awaiter(void 0, void 0, void 0, function* () {
@@ -246,8 +258,12 @@ yargs
246
258
  choices: types_1.regionChoices,
247
259
  },
248
260
  });
249
- }), login_1.handleLogin)
261
+ }), (argv) => {
262
+ process.env.REDOCLY_CLI_COMMAND = 'login';
263
+ login_1.handleLogin(argv);
264
+ })
250
265
  .command('logout', 'Clear your stored credentials for the Redocly API registry.', (yargs) => yargs, () => __awaiter(void 0, void 0, void 0, function* () {
266
+ process.env.REDOCLY_CLI_COMMAND = 'logout';
251
267
  const client = new openapi_core_1.RedoclyClient();
252
268
  client.logout();
253
269
  process.stdout.write('Logged out from the Redocly account. ✋\n');
@@ -288,7 +304,10 @@ yargs
288
304
  description: 'Specify path to the config file.',
289
305
  type: 'string',
290
306
  },
291
- }), preview_docs_1.previewDocs)
307
+ }), (argv) => {
308
+ process.env.REDOCLY_CLI_COMMAND = 'preview-docs';
309
+ preview_docs_1.previewDocs(argv);
310
+ })
292
311
  .completion('completion', 'Generate completion script.')
293
312
  .demandCommand(1)
294
313
  .strict().argv;
package/lib/utils.js CHANGED
@@ -175,7 +175,6 @@ function handleError(e, ref) {
175
175
  // TODO: codeframe
176
176
  }
177
177
  else {
178
- // @ts-ignore
179
178
  if (e instanceof CircularJSONNotSupportedError) {
180
179
  process.stderr.write(colorette_1.red(`Detected circular reference which can't be converted to JSON.\n`) +
181
180
  `Try to use ${colorette_1.blue('yaml')} output or remove ${colorette_1.blue('--dereferenced')}.\n\n`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redocly/cli",
3
- "version": "1.0.0-beta.107",
3
+ "version": "1.0.0-beta.108",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -35,7 +35,7 @@
35
35
  "Andriy Leliv <andriy@redoc.ly> (https://redoc.ly/)"
36
36
  ],
37
37
  "dependencies": {
38
- "@redocly/openapi-core": "1.0.0-beta.107",
38
+ "@redocly/openapi-core": "1.0.0-beta.108",
39
39
  "assert-node-version": "^1.0.3",
40
40
  "chokidar": "^3.5.1",
41
41
  "colorette": "^1.2.0",
@@ -131,8 +131,8 @@ export async function handleJoin(argv: JoinArgv, packageVersion: string) {
131
131
  }
132
132
  }
133
133
 
134
- let joinedDef: any = {};
135
- let potentialConflicts = {
134
+ const joinedDef: any = {};
135
+ const potentialConflicts = {
136
136
  tags: {},
137
137
  paths: {},
138
138
  components: {},
@@ -343,9 +343,7 @@ export async function handleJoin(argv: JoinArgv, packageVersion: string) {
343
343
  if (!potentialConflicts.paths.hasOwnProperty(path)) {
344
344
  potentialConflicts.paths[path] = {};
345
345
  }
346
- for (const operation of Object.keys(paths[path])) {
347
- // @ts-ignore
348
- const pathOperation = paths[path][operation];
346
+ for (const [operation, pathOperation] of Object.entries(paths[path])) {
349
347
  joinedDef.paths[path][operation] = pathOperation;
350
348
  potentialConflicts.paths[path][operation] = [
351
349
  ...(potentialConflicts.paths[path][operation] || []),
@@ -361,7 +359,7 @@ export async function handleJoin(argv: JoinArgv, packageVersion: string) {
361
359
  api,
362
360
  ];
363
361
  }
364
- let { tags, security } = joinedDef.paths[path][operation];
362
+ const { tags, security } = joinedDef.paths[path][operation];
365
363
  if (tags) {
366
364
  joinedDef.paths[path][operation].tags = tags.map((tag: string) =>
367
365
  addPrefix(tag, tagsPrefix)
@@ -412,13 +410,11 @@ export async function handleJoin(argv: JoinArgv, packageVersion: string) {
412
410
  if (!joinedDef.hasOwnProperty(COMPONENTS)) {
413
411
  joinedDef[COMPONENTS] = {};
414
412
  }
415
- for (const component of Object.keys(components)) {
413
+ for (const [component, componentObj] of Object.entries(components)) {
416
414
  if (!potentialConflicts[COMPONENTS].hasOwnProperty(component)) {
417
415
  potentialConflicts[COMPONENTS][component] = {};
418
416
  joinedDef[COMPONENTS][component] = {};
419
417
  }
420
- // @ts-ignore
421
- const componentObj = components[component];
422
418
  for (const item of Object.keys(componentObj)) {
423
419
  const componentPrefix = addPrefix(item, componentsPrefix!);
424
420
  potentialConflicts.components[component][componentPrefix] = [
@@ -436,7 +432,6 @@ export async function handleJoin(argv: JoinArgv, packageVersion: string) {
436
432
  { apiFilename, api, potentialConflicts, tagsPrefix, componentsPrefix }: JoinDocumentContext
437
433
  ) {
438
434
  const xWebhooks = 'x-webhooks';
439
- // @ts-ignore
440
435
  const openapiXWebhooks = openapi[xWebhooks];
441
436
  if (openapiXWebhooks) {
442
437
  if (!joinedDef.hasOwnProperty(xWebhooks)) {
@@ -455,7 +450,7 @@ export async function handleJoin(argv: JoinArgv, packageVersion: string) {
455
450
  ];
456
451
  }
457
452
  for (const operationKey of Object.keys(joinedDef[xWebhooks][webhook])) {
458
- let { tags } = joinedDef[xWebhooks][webhook][operationKey];
453
+ const { tags } = joinedDef[xWebhooks][webhook][operationKey];
459
454
  if (tags) {
460
455
  joinedDef[xWebhooks][webhook][operationKey].tags = tags.map((tag: string) =>
461
456
  addPrefix(tag, tagsPrefix)
@@ -498,7 +493,7 @@ function doesComponentsDiffer(curr: object, next: object) {
498
493
  function validateComponentsDifference(files: any) {
499
494
  let isDiffer = false;
500
495
  for (let i = 0, len = files.length; i < len; i++) {
501
- let next = files[i + 1];
496
+ const next = files[i + 1];
502
497
  if (next && doesComponentsDiffer(files[i], next)) {
503
498
  isDiffer = true;
504
499
  }
@@ -84,7 +84,7 @@ export async function handleLint(argv: LintOptions, version: string) {
84
84
  totals.ignored += fileTotals.ignored;
85
85
 
86
86
  if (argv['generate-ignore-file']) {
87
- for (let m of results) {
87
+ for (const m of results) {
88
88
  config.styleguide.addIgnore(m);
89
89
  totalIgnored++;
90
90
  }
@@ -23,7 +23,7 @@ export async function previewDocs(
23
23
  force?: boolean;
24
24
  } & Omit<Skips, 'skip-rule'>
25
25
  ) {
26
- let isAuthorizedWithRedocly: boolean = false;
26
+ let isAuthorizedWithRedocly = false;
27
27
  let redocOptions: any = {};
28
28
  let config = await reloadConfig();
29
29
 
@@ -129,7 +129,7 @@ export async function previewDocs(
129
129
  });
130
130
 
131
131
  async function reloadConfig() {
132
- let config = await loadConfig(argv.config);
132
+ const config = await loadConfig(argv.config);
133
133
  const redoclyClient = new RedoclyClient();
134
134
  isAuthorizedWithRedocly = await redoclyClient.isAuthorizedWithRedocly();
135
135
  const resolvedConfig = getMergedConfig(config, argv.api);
@@ -152,7 +152,9 @@ export function debounce(func: Function, wait: number, immediate?: boolean) {
152
152
  let timeout: NodeJS.Timeout | null;
153
153
 
154
154
  return function executedFunction(...args: any[]) {
155
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
155
156
  // @ts-ignore
157
+ // eslint-disable-next-line @typescript-eslint/no-this-alias
156
158
  const context = this;
157
159
 
158
160
  const later = () => {
@@ -99,6 +99,7 @@ export default async function startPreviewServer(
99
99
  }
100
100
  } else {
101
101
  let filePath =
102
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
102
103
  // @ts-ignore
103
104
  {
104
105
  '/hot.js': path.join(__dirname, 'hot.js'),
@@ -142,7 +143,7 @@ export default async function startPreviewServer(
142
143
  console.timeEnd(colorette.dim(`GET ${request.url}`));
143
144
  };
144
145
 
145
- let wsPort = await portfinder.getPortPromise({ port: 32201 });
146
+ const wsPort = await portfinder.getPortPromise({ port: 32201 });
146
147
 
147
148
  const server = startHttpServer(port, host, handler);
148
149
  server.on('listening', () => {
@@ -119,7 +119,7 @@ export async function handlePush(argv: PushArgs): Promise<void> {
119
119
 
120
120
  let uploaded = 0;
121
121
 
122
- for (let file of filesToUpload.files) {
122
+ for (const file of filesToUpload.files) {
123
123
  const { signedUploadUrl, filePath } = await client.registryApi.prepareFileUpload({
124
124
  organizationId,
125
125
  name,
@@ -206,7 +206,7 @@ function getFilesList(dir: string, files?: any): string[] {
206
206
  }
207
207
 
208
208
  async function collectFilesToUpload(api: string, config: Config) {
209
- let files: { filePath: string; keyOnS3: string; contents?: Buffer }[] = [];
209
+ const files: { filePath: string; keyOnS3: string; contents?: Buffer }[] = [];
210
210
  const [{ path: apiPath }] = await getFallbackApisOrExit([api], config);
211
211
 
212
212
  process.stdout.write('Bundling definition\n');
@@ -246,7 +246,7 @@ async function collectFilesToUpload(api: string, config: Config) {
246
246
  const fileList = getFilesList(dir, []);
247
247
  files.push(...fileList.map((f) => getFileEntry(f)));
248
248
  }
249
- let pluginFiles = new Set<string>();
249
+ const pluginFiles = new Set<string>();
250
250
  for (const plugin of config.styleguide.pluginPaths) {
251
251
  if (typeof plugin !== 'string') continue;
252
252
  const fileList = getFilesList(getFolder(plugin), []);
@@ -282,7 +282,7 @@ function getFolder(filePath: string) {
282
282
  }
283
283
 
284
284
  function hashFiles(filePaths: { filePath: string }[]) {
285
- let sum = createHash('sha256');
285
+ const sum = createHash('sha256');
286
286
  filePaths.forEach((file) => sum.update(fs.readFileSync(file.filePath)));
287
287
  return sum.digest('hex');
288
288
  }
@@ -318,7 +318,7 @@ type BarePushArgs = Omit<PushArgs, 'api' | 'destination' | 'branchName'> & {
318
318
  export const transformPush =
319
319
  (callback: typeof handlePush) =>
320
320
  ({ maybeApiOrDestination, maybeDestination, maybeBranchName, branch, ...rest }: BarePushArgs) => {
321
- if (!!maybeBranchName) {
321
+ if (maybeBranchName) {
322
322
  process.stderr.write(
323
323
  yellow(
324
324
  'Deprecation warning: Do not use the third parameter as a branch name. Please use a separate --branch option instead.'
@@ -353,7 +353,7 @@ function uploadFileToS3(url: string, filePathOrBuffer: string | Buffer) {
353
353
  typeof filePathOrBuffer === 'string'
354
354
  ? fs.statSync(filePathOrBuffer).size
355
355
  : filePathOrBuffer.byteLength;
356
- let readStream =
356
+ const readStream =
357
357
  typeof filePathOrBuffer === 'string' ? fs.createReadStream(filePathOrBuffer) : filePathOrBuffer;
358
358
 
359
359
  return fetch(url, {
@@ -1,6 +1,7 @@
1
1
  import { red, blue, yellow, green } from 'colorette';
2
2
  import * as fs from 'fs';
3
- import { parseYaml, slash, isRef } from '@redocly/openapi-core';
3
+ import { parseYaml, slash, isRef, isTruthy } from '@redocly/openapi-core';
4
+ import type { OasRef } from '@redocly/openapi-core';
4
5
  import * as path from 'path';
5
6
  import { performance } from 'perf_hooks';
6
7
  const isEqual = require('lodash.isequal');
@@ -267,11 +268,11 @@ function gatherComponentsFiles(
267
268
  componentName: string,
268
269
  filename: string
269
270
  ) {
270
- let inherits = [];
271
+ let inherits: string[] = [];
271
272
  if (componentType === OPENAPI3_COMPONENT.Schemas) {
272
273
  inherits = ((components?.[componentType]?.[componentName] as Oas3Schema)?.allOf || [])
273
- .map((s: any) => s.$ref)
274
- .filter(Boolean);
274
+ .map(({ $ref }) => $ref)
275
+ .filter(isTruthy);
275
276
  }
276
277
  componentsFiles[componentType] = componentsFiles[componentType] || {};
277
278
  componentsFiles[componentType][componentName] = { inherits, filename };
@@ -301,7 +302,7 @@ function iteratePathItems(
301
302
  continue;
302
303
  }
303
304
  for (const sample of methodDataXCode) {
304
- if (sample.source && (sample.source as any).$ref) continue;
305
+ if (sample.source && (sample.source as unknown as OasRef).$ref) continue;
305
306
  const sampleFileName = path.join(
306
307
  openapiDir,
307
308
  'code_samples',
@@ -312,6 +313,7 @@ function iteratePathItems(
312
313
 
313
314
  fs.mkdirSync(path.dirname(sampleFileName), { recursive: true });
314
315
  fs.writeFileSync(sampleFileName, sample.source);
316
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
315
317
  // @ts-ignore
316
318
  sample.source = {
317
319
  $ref: slash(path.relative(outDir, sampleFileName)),
@@ -340,6 +342,7 @@ function iterateComponents(
340
342
  componentTypes.forEach(iterateAndGatherComponentsFiles);
341
343
  componentTypes.forEach(iterateComponentTypes);
342
344
 
345
+ // eslint-disable-next-line no-inner-declarations
343
346
  function iterateAndGatherComponentsFiles(componentType: Oas3ComponentName) {
344
347
  const componentDirPath = path.join(componentsDir, componentType);
345
348
  for (const componentName of Object.keys(components?.[componentType] || {})) {
@@ -348,6 +351,7 @@ function iterateComponents(
348
351
  }
349
352
  }
350
353
 
354
+ // eslint-disable-next-line no-inner-declarations
351
355
  function iterateComponentTypes(componentType: Oas3ComponentName) {
352
356
  const componentDirPath = path.join(componentsDir, componentType);
353
357
  createComponentDir(componentDirPath, componentType);
package/src/index.ts CHANGED
@@ -29,7 +29,10 @@ yargs
29
29
  default: 'stylish' as OutputFormat,
30
30
  },
31
31
  }),
32
- handleStats
32
+ (argv) => {
33
+ process.env.REDOCLY_CLI_COMMAND = 'stats';
34
+ handleStats(argv);
35
+ }
33
36
  )
34
37
  .command(
35
38
  'split [api]',
@@ -54,7 +57,10 @@ yargs
54
57
  },
55
58
  })
56
59
  .demandOption('api'),
57
- handleSplit
60
+ (argv) => {
61
+ process.env.REDOCLY_CLI_COMMAND = 'split';
62
+ handleSplit(argv);
63
+ }
58
64
  )
59
65
  .command(
60
66
  'join [apis...]',
@@ -89,6 +95,7 @@ yargs
89
95
  },
90
96
  }),
91
97
  (argv) => {
98
+ process.env.REDOCLY_CLI_COMMAND = 'join';
92
99
  handleJoin(argv, version);
93
100
  }
94
101
  )
@@ -127,7 +134,10 @@ yargs
127
134
  })
128
135
  .implies('batch-id', 'batch-size')
129
136
  .implies('batch-size', 'batch-id'),
130
- transformPush(handlePush)
137
+ (argv) => {
138
+ process.env.REDOCLY_CLI_COMMAND = 'push';
139
+ transformPush(handlePush)(argv);
140
+ }
131
141
  )
132
142
  .command(
133
143
  'lint [apis...]',
@@ -183,6 +193,7 @@ yargs
183
193
  },
184
194
  }),
185
195
  (argv) => {
196
+ process.env.REDOCLY_CLI_COMMAND = 'lint';
186
197
  handleLint(argv, version);
187
198
  }
188
199
  )
@@ -259,6 +270,7 @@ yargs
259
270
  },
260
271
  }),
261
272
  (argv) => {
273
+ process.env.REDOCLY_CLI_COMMAND = 'bundle';
262
274
  handleBundle(argv, version);
263
275
  }
264
276
  )
@@ -277,13 +289,17 @@ yargs
277
289
  choices: regionChoices,
278
290
  },
279
291
  }),
280
- handleLogin
292
+ (argv) => {
293
+ process.env.REDOCLY_CLI_COMMAND = 'login';
294
+ handleLogin(argv);
295
+ }
281
296
  )
282
297
  .command(
283
298
  'logout',
284
299
  'Clear your stored credentials for the Redocly API registry.',
285
300
  (yargs) => yargs,
286
301
  async () => {
302
+ process.env.REDOCLY_CLI_COMMAND = 'logout';
287
303
  const client = new RedoclyClient();
288
304
  client.logout();
289
305
  process.stdout.write('Logged out from the Redocly account. ✋\n');
@@ -330,7 +346,10 @@ yargs
330
346
  type: 'string',
331
347
  },
332
348
  }),
333
- previewDocs
349
+ (argv) => {
350
+ process.env.REDOCLY_CLI_COMMAND = 'preview-docs';
351
+ previewDocs(argv);
352
+ }
334
353
  )
335
354
  .completion('completion', 'Generate completion script.')
336
355
  .demandCommand(1)
package/src/utils.ts CHANGED
@@ -177,7 +177,6 @@ export function handleError(e: Error, ref: string) {
177
177
  process.stderr.write(`Failed to parse api definition at ${ref}:\n\n - ${e.message}.\n\n`);
178
178
  // TODO: codeframe
179
179
  } else {
180
- // @ts-ignore
181
180
  if (e instanceof CircularJSONNotSupportedError) {
182
181
  process.stderr.write(
183
182
  red(`Detected circular reference which can't be converted to JSON.\n`) +
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/colorette/index.d.ts","../core/node_modules/@types/node/assert.d.ts","../core/node_modules/@types/node/globals.d.ts","../core/node_modules/@types/node/async_hooks.d.ts","../core/node_modules/@types/node/buffer.d.ts","../core/node_modules/@types/node/child_process.d.ts","../core/node_modules/@types/node/cluster.d.ts","../core/node_modules/@types/node/console.d.ts","../core/node_modules/@types/node/constants.d.ts","../core/node_modules/@types/node/crypto.d.ts","../core/node_modules/@types/node/dgram.d.ts","../core/node_modules/@types/node/dns.d.ts","../core/node_modules/@types/node/domain.d.ts","../core/node_modules/@types/node/events.d.ts","../core/node_modules/@types/node/fs.d.ts","../core/node_modules/@types/node/fs/promises.d.ts","../core/node_modules/@types/node/http.d.ts","../core/node_modules/@types/node/http2.d.ts","../core/node_modules/@types/node/https.d.ts","../core/node_modules/@types/node/inspector.d.ts","../core/node_modules/@types/node/module.d.ts","../core/node_modules/@types/node/net.d.ts","../core/node_modules/@types/node/os.d.ts","../core/node_modules/@types/node/path.d.ts","../core/node_modules/@types/node/perf_hooks.d.ts","../core/node_modules/@types/node/process.d.ts","../core/node_modules/@types/node/punycode.d.ts","../core/node_modules/@types/node/querystring.d.ts","../core/node_modules/@types/node/readline.d.ts","../core/node_modules/@types/node/repl.d.ts","../core/node_modules/@types/node/stream.d.ts","../core/node_modules/@types/node/string_decoder.d.ts","../core/node_modules/@types/node/timers.d.ts","../core/node_modules/@types/node/tls.d.ts","../core/node_modules/@types/node/trace_events.d.ts","../core/node_modules/@types/node/tty.d.ts","../core/node_modules/@types/node/url.d.ts","../core/node_modules/@types/node/util.d.ts","../core/node_modules/@types/node/v8.d.ts","../core/node_modules/@types/node/vm.d.ts","../core/node_modules/@types/node/wasi.d.ts","../core/node_modules/@types/node/worker_threads.d.ts","../core/node_modules/@types/node/zlib.d.ts","../core/node_modules/@types/node/globals.global.d.ts","../core/node_modules/@types/node/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/glob-promise/lib/index.d.ts","../core/lib/typings/openapi.d.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","../core/lib/types/index.d.ts","../../node_modules/@types/js-yaml/index.d.ts","../core/lib/typings/swagger.d.ts","../core/lib/visitors.d.ts","../core/lib/oas-types.d.ts","../core/lib/config/types.d.ts","../core/lib/resolve.d.ts","../core/lib/ref-utils.d.ts","../core/lib/config/config.d.ts","../core/lib/config/rules.d.ts","../core/lib/config/builtIn.d.ts","../core/lib/config/load.d.ts","../core/lib/config/utils.d.ts","../core/lib/config/config-resolvers.d.ts","../core/lib/config/index.d.ts","../core/lib/walk.d.ts","../core/lib/js-yaml/index.d.ts","../core/lib/utils.d.ts","../core/lib/types/oas3_1.d.ts","../core/lib/types/oas3.d.ts","../core/lib/types/oas2.d.ts","../core/lib/types/redocly-yaml.d.ts","../core/lib/typings/common.d.ts","../core/lib/rules/other/stats.d.ts","../core/lib/redocly/registry-api-types.d.ts","../core/lib/redocly/registry-api.d.ts","../core/lib/redocly/redocly-client-types.d.ts","../core/lib/redocly/index.d.ts","../core/lib/format/codeframes.d.ts","../core/lib/format/format.d.ts","../core/lib/lint.d.ts","../core/lib/bundle.d.ts","../core/lib/index.d.ts","./src/types.ts","./src/utils.ts","./src/assert-node-version.ts","../../node_modules/@types/yargs-parser/index.d.ts","./node_modules/@types/yargs/index.d.ts","../../node_modules/anymatch/index.d.ts","../../node_modules/chokidar/types/index.d.ts","../../node_modules/handlebars/types/index.d.ts","../../node_modules/portfinder/lib/portfinder.d.ts","./src/commands/preview-docs/preview-server/server.ts","./src/commands/preview-docs/preview-server/preview-server.ts","./src/commands/preview-docs/index.ts","./src/commands/stats.ts","./src/js-utils.ts","./src/commands/split/types.ts","./src/commands/split/index.ts","./src/commands/join.ts","../../node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","./src/commands/login.ts","./src/commands/push.ts","./src/commands/lint.ts","./src/commands/bundle.ts","./src/index.ts","./src/__mocks__/fs.ts","./src/__mocks__/perf_hooks.ts","./src/__mocks__/utils.ts","./src/__tests__/fixtures/config.ts","./src/__mocks__/@redocly/openapi-core.ts","./src/__tests__/utils.test.ts","./src/__tests__/commands/bundle.test.ts","./src/__tests__/commands/join.test.ts","./src/__tests__/commands/lint.test.ts","./src/__tests__/commands/push-region.test.ts","./src/__tests__/commands/push.test.ts","./src/commands/split/__tests__/index.test.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/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/js-levenshtein/index.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/normalize-package-data/index.d.ts","../../node_modules/@types/pluralize/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"ac3a8c4040e183ce38da69d23b96939112457d1936198e6542672b7963cf0fce","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"cce43d02223f8049864f8568bed322c39424013275cd3bcc3f51492d8b546cb3","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"8dff1b4c2df638fcd976cbb0e636f23ab5968e836cd45084cc31d47d1ab19c49","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"8f4c9f651c8294a2eb1cbd12581fe25bfb901ab1d474bb93cd38c7e2f4be7a30","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"60761e6ea886034af0f294f025a7199360ce4e2c8ba4ec6408bc049cf9b89799","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e","affectsGlobalScope":true},"a456dd94a596de621bd25cf3c91278101ea62782c3ac4435aef9190a2336ddde","4c2c4f53e8eedd970f8afa369d7371544fb6231bf95e659f8602e09abe74d5a5",{"version":"32ddf2b046fa7269050f64a87f1f3d2db10b92ad6302460681915af1207b1222","affectsGlobalScope":true},"c2b5085f47e41d6940bbc5b0d3bd7cc0037c752efb18aecd243c9cf83ad0c0b7","3143a5add0467b83150961ecd33773b561a1207aec727002aa1d70333068eb1b","9b2a8f604e7c0482a9061755f00b287cc99bd8718dc82d8207dd74c599b6dc43","d0fc76a91c828fbe3f0be5d683273634b7b101068333ceed975a8a9ac464137b",{"version":"1a048ff164b8d9609f5de3139d4e37f6e8a82af82087ac414b9208f52ef8aac7","affectsGlobalScope":true},"3111079f3cb5f2b9c812ca3f46161562bce5bfb355e915f46ed46c41714dc1c3","db86f82fac051ae344b47e8fe7ac7990174b41db79b2b220a49dc5a47c71a9b5","b32b6b16cb0bda68199582ad6f22242d07ee75fac9b1f28a98cd838afc5eea45","4441ee4119824bfaebc49308559edd7545978f9cb41a40f115074e1031dde75f",{"version":"60693a88462d0e97900123b5bf7c73e146ce0cc94da46a61fe6775b430d2ff05","affectsGlobalScope":true},{"version":"588c69eda58b9202676ec7ca11a72c3762819b46a0ed72462c769846153c447c","affectsGlobalScope":true},"ae064ed4f855716b7ff348639ddcd6a6d354a72fae82f506608a7dc9266aa24c","8e63e656267f767e6c15b47776f641d30ef29690581ab9bdddff5b83885d1a43","53d2c24a3cbc00a88ebaf8ab8e1b6e206bc3a6647d544f877241684ea3d484e3","ecee890ff04b70d8e8815fb753c20f24f95203426267a577823d375009c1ace7","0ce99c641ea20b0c0c09d093fc28f18f5ab31dc80033707a1ac3154399de2559","7dc9ed91e245cf0c4f8add7f6845d0cb08cceec4408ce3398c51e1f6dd7679ec","44e42ed6ec9c4451ebe89524e80ac8564e9dd0988c56e6c58f393c810730595d","d79fda68cbfb361c4ee9cd9ea169babb65887534d64017726cd01f54783d20a5","1606ea615c0a5ea9f5c1376a33e34c0e1112e8dee31a5b3b8a74ce781893aa6f","9fef9de633d01cb7f01f68195626a890ededd25cf96a1e785617d08c8668230d","4455c78d226d061b1203c7614c6c6eb5f4f9db5f00d44ff47d0112de8766fbc4",{"version":"ec369bb9d97c4dc09dd2a4093b7ca3ba69ad284831fccac8a1977785e9e38ce5","affectsGlobalScope":true},"4465a636f5f6e9665a90e30691862c9e0a3ac2edc0e66296704f10865e924f2a","9af781f03d44f5635ed7844be0ce370d9d595d4b4ec67cad88f0fac03255257e","f9fd4c3ef6de27fa0e256f4e75b61711c4be05a3399f7714621d3edc832e36b0","e49290b7a927995c0d7e6b2b9c8296284b68a9036d9966531de65185269258d7","c3689f70ce7563c2299f2dcb3c72efdf6f87ae510e7456fa6223c767d0ca99fc","874ca809b79276460011480a2829f4c8d4db29416dd411f71efbf8f497f0ac09","6c903bceaf3f3bc04f2d4c7dcd89ce9fb148b3ba0a5f5408d8f6de2b7eecc7ea","c65a0eeb867ff5c41debade8e2e8e63ec5367172d121afa726a598111d348816","23a28f834a078986bbf58f4e3705956983ff81c3c2493f3db3e5f0e8a9507779","4febdf7f3ec92706c58e0b4e8159cd6de718284ef384260b07c9641c13fc70ce",{"version":"eabefc2999c1489cf870e0c85af908900462fa245822d9a4616780a1a129945d","affectsGlobalScope":true},"7335933d9f30dcfd2c4b6080a8b78e81912a7fcefb1dafccb67ca4cb4b3ac23d","a6bfe9de9adef749010c118104b071d14943802ff0614732b47ce4f1c3e383cd","4c3d0e10396646db4a1e917fb852077ee77ae62e512913bef9cccc2bb0f8bd0e","3b220849d58140dcc6718f5b52dcd29fdb79c45bc28f561cbd29eb1cac6cce13","0ee22fce41f7417a24c808d266e91b850629113c104713a35854393d55994beb","22d1b1d965baba05766613e2e6c753bb005d4386c448cafd72c309ba689e8c24",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"79d679a1d56574cc5cef92be1f0e5e8fb4af62fb55933b236670a0e0a23c83f6","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","ad7118e1b64e20fabb52ad24c16add91835d4fa79fa344e8260fc4a3a79a3a41","98ff615c968cfa7c9fd52d0b79180d71de471ddadc81dd47e764694ca887f1dd","8d1539367a9f5a03698f4c37111251eb76433ea8fcb5f1e546571b8513cac822","9ad71085f8ab35282a341995f85c6e06a19e6d5ab73b39f634b444ce8742a664","ee94d8f60c253d9994559ad325e9cb8a7af6bd36176884cb869ee5a40daa766c","606de01a4212a48518a219585f673504d3c0c26b361706006038a71bf8b9f42c","76de776e227ad01b703ce076b32177da31a765d5b5a681d5bb4c4e0f4876840f","aa4c984c8f2919742d06f305b1870bf180275cbe015490451a6374e6f6b9998a","46b9cdcd62e90f604876c143481ac7ff2c89cdfb902179bda0d8ee44c0695beb","81127b3f21bcd96bb7807088521312b0d86dada31c32a87f31be086daa5a1e8e","686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","07dba097a66bf3b0bb04497bc136dba51a9cdb94cd8ad663eab82f5f6f83c21e","07981dc93c563507c26821c74a49bbbe2352b310fe74f91599c33d90c4acb376","60c67218e451d0a4644389c5902d4ec99bd63572f94c3d41dd86a4367de0d80e","0fa50c305cc5b446ecd3140933723558881a85268749431c888b67f39012eabf","f0433d6c3e0d3ea7d957535c338c82fdb0c10b2c6fa759ee323438747d006929","b5e4fa898ff7e7a88489f9b7b47294cf78d986ab96c7d25807ff3e5e9fec6465","d4eb3b5456caf01852d08f20c048bc50cc7b220b407dc40b4305eb063980fe4e","fde7061f24bcf1484d4218ce686c3242029b4ec1a12a7388b55336b5d04c6987","17f9e75615fd0513576b5eee93ee82872fb01cc790930d724038fb6d875973a1","b0cdff23b01a4af5dcc5d06f7e49c08ff9bab21df3469ed4417da669d5b03dfa","04ea2ff658d91443b0bf2c06a0d5986cd822642c7d3e446c72ad554d5dcfaf35","3242acd4946c865213b143509229759b7d66af644fafb71f7f8f462fb52fce71","88dc0dcab75df96583b348f379c7aec6712561d17d8ce208d36ab492b23ae46d","e9926a124a8073d59069389631cf8c46bfa6b5305223e6aa2cde291013de5d01","ec3bc0a0573da655bab5c8f96c6e905b25e2fcf799996ea025eea985656e0bc4","5d92cad7a07b3baf877303eb81fcb935ba730d17a1214e88f124f60ac4ab451f","fdb7f9800267358d093879ae8ebe6322fec83a7f3c1f9b53fc27f85af4cd8723","c2bff909cb7d9a3939b3dbb2b1e3ce0fec7b747c74b9c47648c42b40a0724fa3","de41964adcdb5316152314f126b999cd651719d90b9d7fca50f8461c256b4e2b","fbbedd7745fef1135414280adf758927576b94d0cadba64d5c7ec24cdbc9c37a","1f7d50dbb3ea1f13f7ef1c82e0d77017660da61daf75ba427de32f67f25ace0c","7d74698235b0646f1d0217fa509d2731a855b420137355347dcf463e72fcd479","69f2c3b09dae8f35e67bf1c634e928687ca3832b4ab21ec57f2e528dbe7541e9","2df9ae4e0191593acfc5af4212327b485875c38e22de88d82565599a3f2dfe91","de964a6cafbc7909ec88f74393327f89fc3e4b309e90639f7102df4e0edb5e06","036c607f3926e7e7704c4c1a497bc130f3257523e22bf0c0748e311c50f284cb","d5531816f67bb2247ecd105ddfa30f3e399ed2cb5ebb40c3d7ad2922405b5fe1","704fcfe996ab3b59214f9283f7515890972a075742121f1d1bf44aad05cd966d","58b4b050ba53e493e6f45c7e29329771c7c939ba186728227f06e790844e4071","fa4497cce33ebd8665e2ce6e8b4f8369218cf32f673b7b91bc3e63999947f5ee","dd9dd7d97e4fe25f6f4b6e88cf581b4ded50cabd9ade5f616d0e171180989c77","18cc6b99db758987a63cd610d2872ddb0217f74a0585905814284aac50200daa","199022ab74f802e23ca7219d483ea95a2559170d48630e5e966d045e8b6f5230","ba37366c716b76a402bddee0e3974ad55d69943aabdb25bd4602e5172f7a7c15","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","99bbadcf4153b61d79a2616b377da8f42a16fcb41d2136f1f6c2cf070b084216","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","a7e430e32eaefba6b1ebf23a94a4562bfe7051cc83558d33ddc8ff342f3c18e9",{"version":"f3a68054f682f21cec1eb6bc37d3c4c7f73b7723c7256f8a1ccc75873024aaa6","affectsGlobalScope":true},"5b72d384b825756c53642e763bae92e03623950dc1b4c132938364cb0c5e577d","ff26938d9ac91758eaffcc1c59bed58ddb11042e33c33eb3b5baf42ed5d5a844","e43d354db4bf77b3e770c1750bc37eba7258dc391d20bfb30cdf63c40dc71b42","a32e07c4a24f8072a78534c364225c8493a49421d961b095c8a2b91439b2066c","b6ca138b44e5f2f9152ccdb43ef81a961051b8dbfdea1b707044236128cd7ef7","c636583897ed08290635252cb78ad4207f13f8398124f7906078b47e32b0a598","127653bc470c23606296b8635568c892c1c992975a019cb10b72cdbfdb09966e","3f95a3403c7e12e6bd2644e5b2bb5845bc38ae2966a03f8483dfa3b5690b4d66","82894b5ab08a41d1b2659a1de4da567669e5756c08996b6d9d9c3958a212a146","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","3898e3dbe94b6fe529fbe8f0faee1309c1923100516d7a014b301955e52ece77","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","498284920b7ba0915fcb91614f73732eaed7e3eb4e436b8261f7935dfbe8c86c","fe390e1adeb276b4b950b969aea1d11ddb8f446144d3dc1fadaf979e45175dbf","d0d6ca0029ce49cc164319ef82580705593a3f6d01ba492b97d7c138f644d7c4","fa1564b1546a32a339c226f2aefc3ba77bf090f77a9b5fae5dfaf6e847deb503","b3b9ad1c8de9d68bf6f305fe2ca73753c5fdc0365f2fac3ebd50f8418c518b3a","6bcd7d885b9c22c3b319fd7413d23fc97293d75c642e14c496b752af78726b87","4f8334efc7839619123a096e92516ebdd46501248a6b475f7fe68ddc975f2d0e","c05ad16e982c4257619ddfd1cbff718ddca2136cc4f727fafb4349e4a50ff832","604e93788679ab97bb6424258763e42e1fcd1aba60974bf4a0a21c592d2a6c8b","770a11d85d3c4370454b1caf5c54c9d7276a1305c63fac20b94521b97b5ae3b7","94fd9b5919de7a2892a0bbdba8cd316866745b6571de81c0554fb5d259e8cb84","f0c657e4e6117f007e6e955bf5dc8426c856f80d7d32d58592a58111daf0f689","be9cbef0e88da2f202a0dc6e25f272a0e7cf8d7daf92857abfb490d782eec901","89a0d2c1280ba3fe74c4f50a50f0d2e18dee35b2fbc3d1586c6627ed31d6bece","b989c4bac4d15d2834dea821d63ff26813718e589eeb90b9276cbd847dc79c6f","c070763d36169522fa4bc5d3add25b1af291299b7e008493f28b9a20a811a6d8","34b775da1b35975467069d858cefbda13af8b0eef2675f918a1739fa67ee38f9","67633388f50fe010a7b4d892721437d0fac88a282ef46217137d263a8a6651ed","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","a46a2e69d12afe63876ec1e58d70e5dbee6d3e74132f4468f570c3d69f809f1c","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","fc72135da24040641388fb5f2c2a7a99aa5b962c0fa125bd96fabeec63dd2e63","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","c6297435733f252a9c0e2297fab3b58014b8fde5fa097a4102dae4e12522bccd","e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"21bb8dda75eb025927e9d62d8fa619e349ebc5ba0b8b9dddd8fdfc9ff058e2b8","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"6bb8d7433a29fbd33df8e9693f1788a273a9eb90b96c8f99c745678c7db623f1","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","8f7a2387ecc680872d09a6edbca1612d699f77ee5a5129944935c3798a613d04","f1d8b21cdf08726021c8cce0cd6159486236cf1d633eeabbc435b5b2e5869c2e","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298"],"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":[[165],[165,166,167,168,169],[165,167],[172,174],[171,172,173],[52,53,83,84],[53,83],[177],[178],[184,186],[201],[189,191,192,193,194,195,196,197,198,199,200,201],[189,190,192,193,194,195,196,197,198,199,200,201],[190,191,192,193,194,195,196,197,198,199,200,201],[189,190,191,193,194,195,196,197,198,199,200,201],[189,190,191,192,194,195,196,197,198,199,200,201],[189,190,191,192,193,195,196,197,198,199,200,201],[189,190,191,192,193,194,196,197,198,199,200,201],[189,190,191,192,193,194,195,197,198,199,200,201],[189,190,191,192,193,194,195,196,198,199,200,201],[189,190,191,192,193,194,195,196,197,199,200,201],[189,190,191,192,193,194,195,196,197,198,200,201],[189,190,191,192,193,194,195,196,197,198,199,201],[189,190,191,192,193,194,195,196,197,198,199,200],[55,75,83,145,146],[52,53,133,207],[55,69,83],[85],[180,181],[180,181,182,183],[185],[88],[89,90,91,92,93],[90],[89],[131],[156],[127,129,151],[39,129,144],[63,127,129,150,156],[127,148,149],[127,129,149],[39,127,129],[62,129],[39,53,63,127,128,129],[39,62,63,127,129,141],[39,63,127,128,129],[39,127,128,129,134,138],[39,53,55,62,129,135,136,137],[53,55,81],[39,48,53,62,63,127,129,147,148],[39,62,127,142,143],[39,53,62,63,127,129,141,142],[127],[39,63,127,129],[127,128,130,132,139,140,143,144,148,149,150,151],[39,53,62,63,67,69,86,127,128],[95,98,99,101,109,110],[100],[100,101,103],[83,95,99,100,110],[100,103,104,105,106,107,108],[100,103],[99,100,103],[95,99,110],[94,110],[110],[87,95,97,98,99,101,102,109,110,111,112,113,114,115,116,117,118,122,123,124,125,126],[96],[95,101,109,110],[98],[100,120,121],[100,119],[87,101],[94,95,100],[87,97,117],[95],[87,96],[109,110,111],[87,95,97,102,110,112],[87,95,98,99,101,102,109],[40],[42],[43,48],[44,52,53,60,69],[44,45,52,60],[46,76],[47,48,53,61],[48,69],[49,50,52,60],[50],[51,52],[52],[52,53,54,69,75],[53,54],[55,60,69,75],[52,53,55,56,60,69,72,75],[55,57,69,72,75],[40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82],[52,58],[59,75],[50,52,60,69],[61],[62],[42,63],[64,74],[65],[66],[52,67],[67,68,76,78],[52,69],[70],[71],[60,69,72],[73],[60,74],[66,75],[76],[69,77],[78],[79],[52,54,69,75,78,80],[69,81]],"referencedMap":[[167,1],[170,2],[166,1],[168,3],[169,1],[175,4],[174,5],[85,6],[176,7],[178,8],[179,9],[187,10],[202,11],[190,12],[191,13],[189,14],[192,15],[193,16],[194,17],[195,18],[196,19],[197,20],[198,21],[199,22],[200,23],[201,24],[147,25],[134,26],[145,27],[86,28],[182,29],[184,30],[183,29],[186,31],[89,32],[94,33],[91,34],[93,34],[90,35],[132,36],[157,37],[159,38],[160,39],[161,40],[162,41],[163,42],[158,43],[130,44],[151,45],[144,46],[150,47],[148,43],[139,48],[138,49],[137,50],[149,51],[164,52],[143,53],[142,54],[140,55],[152,56],[128,54],[129,57],[126,58],[105,59],[108,60],[103,61],[109,62],[106,63],[104,64],[100,65],[107,63],[123,66],[124,67],[127,68],[111,69],[125,70],[99,71],[122,72],[121,59],[120,73],[102,74],[101,75],[118,76],[115,77],[114,77],[113,77],[116,77],[97,78],[112,79],[98,80],[110,81],[40,82],[42,83],[43,84],[44,85],[45,86],[46,87],[47,88],[48,89],[49,90],[50,91],[51,92],[52,93],[53,94],[54,95],[55,96],[56,97],[57,98],[83,99],[58,100],[59,101],[60,102],[61,103],[62,104],[63,105],[64,106],[65,107],[66,108],[67,109],[68,110],[69,111],[70,112],[71,113],[72,114],[73,115],[74,116],[75,117],[76,118],[77,119],[78,120],[79,121],[80,122],[81,123]],"exportedModulesMap":[[167,1],[170,2],[166,1],[168,3],[169,1],[175,4],[174,5],[85,6],[176,7],[178,8],[179,9],[187,10],[202,11],[190,12],[191,13],[189,14],[192,15],[193,16],[194,17],[195,18],[196,19],[197,20],[198,21],[199,22],[200,23],[201,24],[147,25],[134,26],[145,27],[86,28],[182,29],[184,30],[183,29],[186,31],[89,32],[94,33],[91,34],[93,34],[90,35],[132,36],[157,37],[159,38],[160,39],[161,40],[162,41],[163,42],[158,43],[130,44],[151,45],[144,46],[150,47],[148,43],[139,48],[138,49],[137,50],[149,51],[164,52],[143,53],[142,54],[140,55],[152,56],[128,54],[129,57],[126,58],[105,59],[108,60],[103,61],[109,62],[106,63],[104,64],[100,65],[107,63],[123,66],[124,67],[127,68],[111,69],[125,70],[99,71],[122,72],[121,59],[120,73],[102,74],[101,75],[118,76],[115,77],[114,77],[113,77],[116,77],[97,78],[112,79],[98,80],[110,81],[40,82],[42,83],[43,84],[44,85],[45,86],[46,87],[47,88],[48,89],[49,90],[50,91],[51,92],[52,93],[53,94],[54,95],[55,96],[56,97],[57,98],[83,99],[58,100],[59,101],[60,102],[61,103],[62,104],[63,105],[64,106],[65,107],[66,108],[67,109],[68,110],[69,111],[70,112],[71,113],[72,114],[73,115],[74,116],[75,117],[76,118],[77,119],[78,120],[79,121],[80,122],[81,123]],"semanticDiagnosticsPerFile":[167,165,170,166,168,169,175,171,174,172,85,176,177,178,179,187,188,96,173,202,190,191,189,192,193,194,195,196,197,198,199,200,201,84,146,147,203,204,205,206,131,133,134,39,145,86,135,180,182,184,183,181,136,186,185,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,7,37,33,34,35,36,1,38,92,89,94,91,88,93,90,132,157,153,154,155,159,160,161,162,163,156,158,130,151,144,150,148,139,138,137,149,164,143,142,140,152,141,128,129,126,105,108,103,109,106,104,100,107,123,124,127,111,125,99,122,121,119,120,102,101,118,95,115,114,113,116,117,87,97,112,98,110,40,42,43,44,45,46,47,48,49,50,51,52,53,54,41,82,55,56,57,83,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81]},"version":"4.3.3"}
1
+ {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/colorette/index.d.ts","../core/node_modules/@types/node/assert.d.ts","../core/node_modules/@types/node/globals.d.ts","../core/node_modules/@types/node/async_hooks.d.ts","../core/node_modules/@types/node/buffer.d.ts","../core/node_modules/@types/node/child_process.d.ts","../core/node_modules/@types/node/cluster.d.ts","../core/node_modules/@types/node/console.d.ts","../core/node_modules/@types/node/constants.d.ts","../core/node_modules/@types/node/crypto.d.ts","../core/node_modules/@types/node/dgram.d.ts","../core/node_modules/@types/node/dns.d.ts","../core/node_modules/@types/node/domain.d.ts","../core/node_modules/@types/node/events.d.ts","../core/node_modules/@types/node/fs.d.ts","../core/node_modules/@types/node/fs/promises.d.ts","../core/node_modules/@types/node/http.d.ts","../core/node_modules/@types/node/http2.d.ts","../core/node_modules/@types/node/https.d.ts","../core/node_modules/@types/node/inspector.d.ts","../core/node_modules/@types/node/module.d.ts","../core/node_modules/@types/node/net.d.ts","../core/node_modules/@types/node/os.d.ts","../core/node_modules/@types/node/path.d.ts","../core/node_modules/@types/node/perf_hooks.d.ts","../core/node_modules/@types/node/process.d.ts","../core/node_modules/@types/node/punycode.d.ts","../core/node_modules/@types/node/querystring.d.ts","../core/node_modules/@types/node/readline.d.ts","../core/node_modules/@types/node/repl.d.ts","../core/node_modules/@types/node/stream.d.ts","../core/node_modules/@types/node/string_decoder.d.ts","../core/node_modules/@types/node/timers.d.ts","../core/node_modules/@types/node/tls.d.ts","../core/node_modules/@types/node/trace_events.d.ts","../core/node_modules/@types/node/tty.d.ts","../core/node_modules/@types/node/url.d.ts","../core/node_modules/@types/node/util.d.ts","../core/node_modules/@types/node/v8.d.ts","../core/node_modules/@types/node/vm.d.ts","../core/node_modules/@types/node/wasi.d.ts","../core/node_modules/@types/node/worker_threads.d.ts","../core/node_modules/@types/node/zlib.d.ts","../core/node_modules/@types/node/globals.global.d.ts","../core/node_modules/@types/node/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/glob-promise/lib/index.d.ts","../core/lib/typings/openapi.d.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","../core/lib/types/index.d.ts","../../node_modules/@types/js-yaml/index.d.ts","../core/lib/typings/swagger.d.ts","../core/lib/visitors.d.ts","../core/lib/oas-types.d.ts","../core/lib/config/types.d.ts","../core/lib/resolve.d.ts","../core/lib/ref-utils.d.ts","../core/lib/config/config.d.ts","../core/lib/config/rules.d.ts","../core/lib/config/builtIn.d.ts","../core/lib/redocly/redocly-client-types.d.ts","../core/lib/config/load.d.ts","../core/lib/config/utils.d.ts","../core/lib/config/config-resolvers.d.ts","../core/lib/config/index.d.ts","../core/lib/walk.d.ts","../core/lib/js-yaml/index.d.ts","../core/lib/utils.d.ts","../core/lib/types/oas3_1.d.ts","../core/lib/types/oas3.d.ts","../core/lib/types/oas2.d.ts","../core/lib/types/redocly-yaml.d.ts","../core/lib/typings/common.d.ts","../core/lib/rules/other/stats.d.ts","../core/lib/redocly/registry-api-types.d.ts","../core/lib/redocly/registry-api.d.ts","../core/lib/redocly/index.d.ts","../core/lib/format/codeframes.d.ts","../core/lib/format/format.d.ts","../core/lib/lint.d.ts","../core/lib/bundle.d.ts","../core/lib/index.d.ts","./src/types.ts","./src/utils.ts","./src/assert-node-version.ts","../../node_modules/@types/yargs-parser/index.d.ts","./node_modules/@types/yargs/index.d.ts","../../node_modules/anymatch/index.d.ts","../../node_modules/chokidar/types/index.d.ts","../../node_modules/handlebars/types/index.d.ts","../../node_modules/portfinder/lib/portfinder.d.ts","./src/commands/preview-docs/preview-server/server.ts","./src/commands/preview-docs/preview-server/preview-server.ts","./src/commands/preview-docs/index.ts","./src/commands/stats.ts","./src/js-utils.ts","./src/commands/split/types.ts","./src/commands/split/index.ts","./src/commands/join.ts","../../node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","./src/commands/login.ts","./src/commands/push.ts","./src/commands/lint.ts","./src/commands/bundle.ts","./src/index.ts","./src/__mocks__/fs.ts","./src/__mocks__/perf_hooks.ts","./src/__mocks__/utils.ts","./src/__tests__/fixtures/config.ts","./src/__mocks__/@redocly/openapi-core.ts","./src/__tests__/utils.test.ts","./src/__tests__/commands/bundle.test.ts","./src/__tests__/commands/join.test.ts","./src/__tests__/commands/lint.test.ts","./src/__tests__/commands/push-region.test.ts","./src/__tests__/commands/push.test.ts","./src/commands/split/__tests__/index.test.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/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/js-levenshtein/index.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/normalize-package-data/index.d.ts","../../node_modules/@types/pluralize/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"ac3a8c4040e183ce38da69d23b96939112457d1936198e6542672b7963cf0fce","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"cce43d02223f8049864f8568bed322c39424013275cd3bcc3f51492d8b546cb3","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"8dff1b4c2df638fcd976cbb0e636f23ab5968e836cd45084cc31d47d1ab19c49","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"8f4c9f651c8294a2eb1cbd12581fe25bfb901ab1d474bb93cd38c7e2f4be7a30","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"60761e6ea886034af0f294f025a7199360ce4e2c8ba4ec6408bc049cf9b89799","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e","affectsGlobalScope":true},"a456dd94a596de621bd25cf3c91278101ea62782c3ac4435aef9190a2336ddde","4c2c4f53e8eedd970f8afa369d7371544fb6231bf95e659f8602e09abe74d5a5",{"version":"32ddf2b046fa7269050f64a87f1f3d2db10b92ad6302460681915af1207b1222","affectsGlobalScope":true},"c2b5085f47e41d6940bbc5b0d3bd7cc0037c752efb18aecd243c9cf83ad0c0b7","3143a5add0467b83150961ecd33773b561a1207aec727002aa1d70333068eb1b","9b2a8f604e7c0482a9061755f00b287cc99bd8718dc82d8207dd74c599b6dc43","d0fc76a91c828fbe3f0be5d683273634b7b101068333ceed975a8a9ac464137b",{"version":"1a048ff164b8d9609f5de3139d4e37f6e8a82af82087ac414b9208f52ef8aac7","affectsGlobalScope":true},"3111079f3cb5f2b9c812ca3f46161562bce5bfb355e915f46ed46c41714dc1c3","db86f82fac051ae344b47e8fe7ac7990174b41db79b2b220a49dc5a47c71a9b5","b32b6b16cb0bda68199582ad6f22242d07ee75fac9b1f28a98cd838afc5eea45","4441ee4119824bfaebc49308559edd7545978f9cb41a40f115074e1031dde75f",{"version":"60693a88462d0e97900123b5bf7c73e146ce0cc94da46a61fe6775b430d2ff05","affectsGlobalScope":true},{"version":"588c69eda58b9202676ec7ca11a72c3762819b46a0ed72462c769846153c447c","affectsGlobalScope":true},"ae064ed4f855716b7ff348639ddcd6a6d354a72fae82f506608a7dc9266aa24c","92f019c55b21c939616f6a48f678e714ac7b109444cbbf23ad69310ce66ecbdc","53d2c24a3cbc00a88ebaf8ab8e1b6e206bc3a6647d544f877241684ea3d484e3","ecee890ff04b70d8e8815fb753c20f24f95203426267a577823d375009c1ace7","0ce99c641ea20b0c0c09d093fc28f18f5ab31dc80033707a1ac3154399de2559","f614c3f61e46ccc2cb58702d5a158338ea57ee09099fde5db4cfc63ed0ce4d74","44e42ed6ec9c4451ebe89524e80ac8564e9dd0988c56e6c58f393c810730595d","d79fda68cbfb361c4ee9cd9ea169babb65887534d64017726cd01f54783d20a5","1606ea615c0a5ea9f5c1376a33e34c0e1112e8dee31a5b3b8a74ce781893aa6f","dde6c10c7673da8dce5af747f809a532f43421f85a146d603fe10c8d9ee02846","4455c78d226d061b1203c7614c6c6eb5f4f9db5f00d44ff47d0112de8766fbc4",{"version":"ec369bb9d97c4dc09dd2a4093b7ca3ba69ad284831fccac8a1977785e9e38ce5","affectsGlobalScope":true},"4465a636f5f6e9665a90e30691862c9e0a3ac2edc0e66296704f10865e924f2a","9af781f03d44f5635ed7844be0ce370d9d595d4b4ec67cad88f0fac03255257e","f9fd4c3ef6de27fa0e256f4e75b61711c4be05a3399f7714621d3edc832e36b0","e49290b7a927995c0d7e6b2b9c8296284b68a9036d9966531de65185269258d7","c3689f70ce7563c2299f2dcb3c72efdf6f87ae510e7456fa6223c767d0ca99fc","874ca809b79276460011480a2829f4c8d4db29416dd411f71efbf8f497f0ac09","6c903bceaf3f3bc04f2d4c7dcd89ce9fb148b3ba0a5f5408d8f6de2b7eecc7ea","c65a0eeb867ff5c41debade8e2e8e63ec5367172d121afa726a598111d348816","23a28f834a078986bbf58f4e3705956983ff81c3c2493f3db3e5f0e8a9507779","4febdf7f3ec92706c58e0b4e8159cd6de718284ef384260b07c9641c13fc70ce",{"version":"eabefc2999c1489cf870e0c85af908900462fa245822d9a4616780a1a129945d","affectsGlobalScope":true},"7335933d9f30dcfd2c4b6080a8b78e81912a7fcefb1dafccb67ca4cb4b3ac23d","a6bfe9de9adef749010c118104b071d14943802ff0614732b47ce4f1c3e383cd","4c3d0e10396646db4a1e917fb852077ee77ae62e512913bef9cccc2bb0f8bd0e","3b220849d58140dcc6718f5b52dcd29fdb79c45bc28f561cbd29eb1cac6cce13","0ee22fce41f7417a24c808d266e91b850629113c104713a35854393d55994beb","22d1b1d965baba05766613e2e6c753bb005d4386c448cafd72c309ba689e8c24",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"79d679a1d56574cc5cef92be1f0e5e8fb4af62fb55933b236670a0e0a23c83f6","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","ad7118e1b64e20fabb52ad24c16add91835d4fa79fa344e8260fc4a3a79a3a41","98ff615c968cfa7c9fd52d0b79180d71de471ddadc81dd47e764694ca887f1dd","8d1539367a9f5a03698f4c37111251eb76433ea8fcb5f1e546571b8513cac822","9ad71085f8ab35282a341995f85c6e06a19e6d5ab73b39f634b444ce8742a664","ee94d8f60c253d9994559ad325e9cb8a7af6bd36176884cb869ee5a40daa766c","606de01a4212a48518a219585f673504d3c0c26b361706006038a71bf8b9f42c","76de776e227ad01b703ce076b32177da31a765d5b5a681d5bb4c4e0f4876840f","aa4c984c8f2919742d06f305b1870bf180275cbe015490451a6374e6f6b9998a","46b9cdcd62e90f604876c143481ac7ff2c89cdfb902179bda0d8ee44c0695beb","81127b3f21bcd96bb7807088521312b0d86dada31c32a87f31be086daa5a1e8e","686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","07dba097a66bf3b0bb04497bc136dba51a9cdb94cd8ad663eab82f5f6f83c21e","d7c529e4169c01c9b8922d552f687f5900e3d2bbceda42998f142df2d89d3f14","60c67218e451d0a4644389c5902d4ec99bd63572f94c3d41dd86a4367de0d80e","0fa50c305cc5b446ecd3140933723558881a85268749431c888b67f39012eabf","7311bd8d30645057278a4f1af63c5d17e8849cb0f556ef49b18ccb5c43299876","b5e4fa898ff7e7a88489f9b7b47294cf78d986ab96c7d25807ff3e5e9fec6465","927e9a210c580b279a147e30ba2b25c87e7263f5ee21bd66ea6b03230af8ce60","e4ff0f80ad220acd6b560b5694ef9a94a5be016e757397fa537e01ad01a9a322","17f9e75615fd0513576b5eee93ee82872fb01cc790930d724038fb6d875973a1","de964a6cafbc7909ec88f74393327f89fc3e4b309e90639f7102df4e0edb5e06","4e28dbdb3deb299916d93e001c6f9120467ad3cb9df0b865d7b9e275f6698766","04ea2ff658d91443b0bf2c06a0d5986cd822642c7d3e446c72ad554d5dcfaf35","3242acd4946c865213b143509229759b7d66af644fafb71f7f8f462fb52fce71","88dc0dcab75df96583b348f379c7aec6712561d17d8ce208d36ab492b23ae46d","e9926a124a8073d59069389631cf8c46bfa6b5305223e6aa2cde291013de5d01","ec3bc0a0573da655bab5c8f96c6e905b25e2fcf799996ea025eea985656e0bc4","67668255f397a25dbdcc96bff6be33f1092be678ad6f91751792dde317d4dc10","fdb7f9800267358d093879ae8ebe6322fec83a7f3c1f9b53fc27f85af4cd8723","c2bff909cb7d9a3939b3dbb2b1e3ce0fec7b747c74b9c47648c42b40a0724fa3","de41964adcdb5316152314f126b999cd651719d90b9d7fca50f8461c256b4e2b","fbbedd7745fef1135414280adf758927576b94d0cadba64d5c7ec24cdbc9c37a","1f7d50dbb3ea1f13f7ef1c82e0d77017660da61daf75ba427de32f67f25ace0c","7d74698235b0646f1d0217fa509d2731a855b420137355347dcf463e72fcd479","43b695b21946e2379aacec7b4b989b0fbcfbc2e46416ee4ab7937647adc1126f","39dcf227ad7adf77109ae370d026a4cadb824cf458165e22d7c1981903fe5659","036c607f3926e7e7704c4c1a497bc130f3257523e22bf0c0748e311c50f284cb","d5531816f67bb2247ecd105ddfa30f3e399ed2cb5ebb40c3d7ad2922405b5fe1","704fcfe996ab3b59214f9283f7515890972a075742121f1d1bf44aad05cd966d","58b4b050ba53e493e6f45c7e29329771c7c939ba186728227f06e790844e4071","fa4497cce33ebd8665e2ce6e8b4f8369218cf32f673b7b91bc3e63999947f5ee","f43df255ab3b8a9474d33f12eea6554282246f38869a9196058c201d9f7c9b86","18cc6b99db758987a63cd610d2872ddb0217f74a0585905814284aac50200daa","3c8a2722c7742af42ed3ef418a409fea3ca990ebafeba727092095d85012df06","ba37366c716b76a402bddee0e3974ad55d69943aabdb25bd4602e5172f7a7c15","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","99bbadcf4153b61d79a2616b377da8f42a16fcb41d2136f1f6c2cf070b084216","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","a7e430e32eaefba6b1ebf23a94a4562bfe7051cc83558d33ddc8ff342f3c18e9",{"version":"f3a68054f682f21cec1eb6bc37d3c4c7f73b7723c7256f8a1ccc75873024aaa6","affectsGlobalScope":true},"b1088b8de09aba83403a188387b25bdd2a08bc67468b481b9d39fb9e2db7a4a3","ff26938d9ac91758eaffcc1c59bed58ddb11042e33c33eb3b5baf42ed5d5a844","677a6950f0bf6a98ab474406be30e3e9493559f0170d90d036f34c623233e93a","5ad3a88962bfa95386aa09f8044704b020ffd4e37118b87ee6a0d9e81420e29d","b6ca138b44e5f2f9152ccdb43ef81a961051b8dbfdea1b707044236128cd7ef7","c636583897ed08290635252cb78ad4207f13f8398124f7906078b47e32b0a598","127653bc470c23606296b8635568c892c1c992975a019cb10b72cdbfdb09966e","bb8f599517f574365d60b0eb63dbbbc59ecd9feb6641153dcbfd67a1b733b354","73b496b20559d0452552de4fcdb756bdb84cdcb5fe565d1e92d491e56b3ff89e","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","3898e3dbe94b6fe529fbe8f0faee1309c1923100516d7a014b301955e52ece77","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","498284920b7ba0915fcb91614f73732eaed7e3eb4e436b8261f7935dfbe8c86c","3e9c9483e92e8ec0ac38828f9ffe709028876a4e007dd75c9813b6fe2702fd57","1f177b79186f7ab38e067416fa2efc15cb026a9ea0b83d85213ce931aab1e968","fa1564b1546a32a339c226f2aefc3ba77bf090f77a9b5fae5dfaf6e847deb503","41312cf6f6ef499b2f27a431a4f059f391762429da0f6809f5ac91264adcf983","6bcd7d885b9c22c3b319fd7413d23fc97293d75c642e14c496b752af78726b87","4f8334efc7839619123a096e92516ebdd46501248a6b475f7fe68ddc975f2d0e","c05ad16e982c4257619ddfd1cbff718ddca2136cc4f727fafb4349e4a50ff832","604e93788679ab97bb6424258763e42e1fcd1aba60974bf4a0a21c592d2a6c8b","770a11d85d3c4370454b1caf5c54c9d7276a1305c63fac20b94521b97b5ae3b7","94fd9b5919de7a2892a0bbdba8cd316866745b6571de81c0554fb5d259e8cb84","f0c657e4e6117f007e6e955bf5dc8426c856f80d7d32d58592a58111daf0f689","be9cbef0e88da2f202a0dc6e25f272a0e7cf8d7daf92857abfb490d782eec901","89a0d2c1280ba3fe74c4f50a50f0d2e18dee35b2fbc3d1586c6627ed31d6bece","b989c4bac4d15d2834dea821d63ff26813718e589eeb90b9276cbd847dc79c6f","c070763d36169522fa4bc5d3add25b1af291299b7e008493f28b9a20a811a6d8","34b775da1b35975467069d858cefbda13af8b0eef2675f918a1739fa67ee38f9","9b6d2a9f610aac2dc6c3fcc45a90dbbde0411dd677bdc956d76f484f397640f1","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","a46a2e69d12afe63876ec1e58d70e5dbee6d3e74132f4468f570c3d69f809f1c","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","c7597e9b1b1eac80e5bca7d136321ab80804ff37f026bc84a8a8553904db9847","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","c84d0f714fe122193c21c0f0917e873beb3a03fa3422ceb2fbd1ebc0558790a0","e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"21bb8dda75eb025927e9d62d8fa619e349ebc5ba0b8b9dddd8fdfc9ff058e2b8","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","6702a1cd8818cb22ee95c85dcf2c31c117bde892e1afd2bc254bd720f4c6263c","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"6bb8d7433a29fbd33df8e9693f1788a273a9eb90b96c8f99c745678c7db623f1","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","8f7a2387ecc680872d09a6edbca1612d699f77ee5a5129944935c3798a613d04","93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298"],"options":{"composite":true,"declaration":true,"module":1,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"outDir":"./lib","rootDir":"./src","strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":3},"fileIdsList":[[165],[165,166,167,168,169],[165,167],[172,174],[171,172,173],[52,53,83,84],[53,83],[177],[178],[184,186],[201],[189,191,192,193,194,195,196,197,198,199,200,201],[189,190,192,193,194,195,196,197,198,199,200,201],[190,191,192,193,194,195,196,197,198,199,200,201],[189,190,191,193,194,195,196,197,198,199,200,201],[189,190,191,192,194,195,196,197,198,199,200,201],[189,190,191,192,193,195,196,197,198,199,200,201],[189,190,191,192,193,194,196,197,198,199,200,201],[189,190,191,192,193,194,195,197,198,199,200,201],[189,190,191,192,193,194,195,196,198,199,200,201],[189,190,191,192,193,194,195,196,197,199,200,201],[189,190,191,192,193,194,195,196,197,198,200,201],[189,190,191,192,193,194,195,196,197,198,199,201],[189,190,191,192,193,194,195,196,197,198,199,200],[55,75,83,145,146],[52,53,133,207],[55,69,83],[85],[180,181],[180,181,182,183],[185],[88],[89,90,91,92,93],[90],[89],[131],[156],[127,129,151],[39,129,144],[63,127,129,150,156],[127,148,149],[127,129,149],[39,127,129],[62,129],[39,53,63,127,128,129],[39,62,63,127,129,141],[39,63,127,128,129],[39,127,128,129,134,138],[39,53,55,62,129,135,136,137],[53,55,81],[39,48,53,62,63,127,129,147,148],[39,62,127,142,143],[39,53,62,63,127,129,141,142],[127],[39,63,127,129],[127,128,130,132,139,140,143,144,148,149,150,151],[39,53,62,63,67,69,86,127,128],[95,98,99,101,110,111],[100],[100,101,103],[95,99,100,111],[100,103,104,105,107,108,109],[100,103,106],[99,103],[95,99,111],[100,103],[94,111],[111],[87,95,97,98,99,101,102,110,111,112,113,114,115,116,117,118,119,122,123,124,125,126],[96],[95,101,110,111],[98],[100,106,121],[100,120],[87,101],[94,95,100],[87,97,118],[95],[87,96],[110,111,112],[87,95,97,102,111,113],[87,95,98,99,101,102,110],[40],[42],[43,48],[44,52,53,60,69],[44,45,52,60],[46,76],[47,48,53,61],[48,69],[49,50,52,60],[50],[51,52],[52],[52,53,54,69,75],[53,54],[55,60,69,75],[52,53,55,56,60,69,72,75],[55,57,69,72,75],[40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82],[52,58],[59,75],[50,52,60,69],[61],[62],[42,63],[64,74],[65],[66],[52,67],[67,68,76,78],[52,69],[70],[71],[60,69,72],[73],[60,74],[66,75],[76],[69,77],[78],[79],[52,54,69,75,78,80],[69,81]],"referencedMap":[[167,1],[170,2],[166,1],[168,3],[169,1],[175,4],[174,5],[85,6],[176,7],[178,8],[179,9],[187,10],[202,11],[190,12],[191,13],[189,14],[192,15],[193,16],[194,17],[195,18],[196,19],[197,20],[198,21],[199,22],[200,23],[201,24],[147,25],[134,26],[145,27],[86,28],[182,29],[184,30],[183,29],[186,31],[89,32],[94,33],[91,34],[93,34],[90,35],[132,36],[157,37],[159,38],[160,39],[161,40],[162,41],[163,42],[158,43],[130,44],[151,45],[144,46],[150,47],[148,43],[139,48],[138,49],[137,50],[149,51],[164,52],[143,53],[142,54],[140,55],[152,56],[128,54],[129,57],[126,58],[105,59],[109,60],[103,61],[110,62],[107,63],[104,64],[100,65],[108,66],[123,67],[124,68],[127,69],[112,70],[125,71],[99,72],[122,73],[106,59],[121,74],[102,75],[101,76],[119,77],[116,78],[115,78],[114,78],[117,78],[97,79],[113,80],[98,81],[111,82],[40,83],[42,84],[43,85],[44,86],[45,87],[46,88],[47,89],[48,90],[49,91],[50,92],[51,93],[52,94],[53,95],[54,96],[55,97],[56,98],[57,99],[83,100],[58,101],[59,102],[60,103],[61,104],[62,105],[63,106],[64,107],[65,108],[66,109],[67,110],[68,111],[69,112],[70,113],[71,114],[72,115],[73,116],[74,117],[75,118],[76,119],[77,120],[78,121],[79,122],[80,123],[81,124]],"exportedModulesMap":[[167,1],[170,2],[166,1],[168,3],[169,1],[175,4],[174,5],[85,6],[176,7],[178,8],[179,9],[187,10],[202,11],[190,12],[191,13],[189,14],[192,15],[193,16],[194,17],[195,18],[196,19],[197,20],[198,21],[199,22],[200,23],[201,24],[147,25],[134,26],[145,27],[86,28],[182,29],[184,30],[183,29],[186,31],[89,32],[94,33],[91,34],[93,34],[90,35],[132,36],[157,37],[159,38],[160,39],[161,40],[162,41],[163,42],[158,43],[130,44],[151,45],[144,46],[150,47],[148,43],[139,48],[138,49],[137,50],[149,51],[164,52],[143,53],[142,54],[140,55],[152,56],[128,54],[129,57],[126,58],[105,59],[109,60],[103,61],[110,62],[107,63],[104,64],[100,65],[108,66],[123,67],[124,68],[127,69],[112,70],[125,71],[99,72],[122,73],[106,59],[121,74],[102,75],[101,76],[119,77],[116,78],[115,78],[114,78],[117,78],[97,79],[113,80],[98,81],[111,82],[40,83],[42,84],[43,85],[44,86],[45,87],[46,88],[47,89],[48,90],[49,91],[50,92],[51,93],[52,94],[53,95],[54,96],[55,97],[56,98],[57,99],[83,100],[58,101],[59,102],[60,103],[61,104],[62,105],[63,106],[64,107],[65,108],[66,109],[67,110],[68,111],[69,112],[70,113],[71,114],[72,115],[73,116],[74,117],[75,118],[76,119],[77,120],[78,121],[79,122],[80,123],[81,124]],"semanticDiagnosticsPerFile":[167,165,170,166,168,169,175,171,174,172,85,176,177,178,179,187,188,96,173,202,190,191,189,192,193,194,195,196,197,198,199,200,201,84,146,147,203,204,205,206,131,133,134,39,145,86,135,180,182,184,183,181,136,186,185,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,7,37,33,34,35,36,1,38,92,89,94,91,88,93,90,132,157,153,154,155,159,160,161,162,163,156,158,130,151,144,150,148,139,138,137,149,164,143,142,140,152,141,128,129,126,105,109,103,110,107,104,100,108,123,124,127,112,125,99,122,106,120,121,102,101,119,95,116,115,114,117,118,87,97,113,98,111,40,42,43,44,45,46,47,48,49,50,51,52,53,54,41,82,55,56,57,83,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81]},"version":"4.3.3"}