@toa.io/extensions.configuration 0.20.0-dev.39 → 0.20.0-dev.40

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toa.io/extensions.configuration",
3
- "version": "0.20.0-dev.39",
3
+ "version": "0.20.0-dev.40",
4
4
  "description": "Toa Configuration",
5
5
  "author": "temich <tema.gurtovoy@gmail.com>",
6
6
  "homepage": "https://github.com/toa-io/toa#readme",
@@ -24,10 +24,10 @@
24
24
  "preset": "ts-jest",
25
25
  "testEnvironment": "node"
26
26
  },
27
- "gitHead": "501be16de01f5ad46b3425eff85d6c641f81b885",
27
+ "gitHead": "594543488de934deba3598ec5805744af1b3f4c0",
28
28
  "dependencies": {
29
- "@toa.io/core": "0.20.0-dev.39",
30
- "@toa.io/generic": "0.20.0-dev.39",
31
- "@toa.io/schemas": "0.20.0-dev.39"
29
+ "@toa.io/core": "0.20.0-dev.40",
30
+ "@toa.io/generic": "0.20.0-dev.40",
31
+ "@toa.io/schemas": "0.20.0-dev.40"
32
32
  }
33
33
  }
@@ -1,7 +0,0 @@
1
- import { Connector, type extensions } from '@toa.io/core';
2
- export declare class Aspect extends Connector implements extensions.Aspect {
3
- readonly name = "configuration";
4
- private readonly value;
5
- constructor(value: object);
6
- invoke(path: string[]): any;
7
- }
@@ -1,21 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Aspect = void 0;
4
- const core_1 = require("@toa.io/core");
5
- class Aspect extends core_1.Connector {
6
- name = 'configuration';
7
- value;
8
- constructor(value) {
9
- super();
10
- this.value = value;
11
- }
12
- invoke(path) {
13
- let cursor = this.value;
14
- if (path !== undefined)
15
- for (const segment of path)
16
- cursor = cursor[segment];
17
- return cursor;
18
- }
19
- }
20
- exports.Aspect = Aspect;
21
- //# sourceMappingURL=Aspect.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Aspect.js","sourceRoot":"","sources":["../source/Aspect.ts"],"names":[],"mappings":";;;AAAA,uCAAyD;AAEzD,MAAa,MAAO,SAAQ,gBAAS;IACnB,IAAI,GAAG,eAAe,CAAA;IAErB,KAAK,CAAQ;IAE9B,YAAoB,KAAa;QAC/B,KAAK,EAAE,CAAA;QAEP,IAAI,CAAC,KAAK,GAAG,KAAK,CAAA;IACpB,CAAC;IAEM,MAAM,CAAE,IAAc;QAC3B,IAAI,MAAM,GAAQ,IAAI,CAAC,KAAK,CAAA;QAE5B,IAAI,IAAI,KAAK,SAAS;YACpB,KAAK,MAAM,OAAO,IAAI,IAAI;gBACxB,MAAM,GAAG,MAAM,CAAC,OAAO,CAAC,CAAA;QAE5B,OAAO,MAAM,CAAA;IACf,CAAC;CACF;AApBD,wBAoBC"}
@@ -1 +0,0 @@
1
- export {};
@@ -1,15 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const Aspect_1 = require("./Aspect");
4
- it('should return value', async () => {
5
- const configuration = {
6
- foo: 'bar',
7
- bar: {
8
- baz: 'quux'
9
- }
10
- };
11
- const aspect = new Aspect_1.Aspect(configuration);
12
- expect(aspect.invoke(['foo'])).toStrictEqual(configuration.foo);
13
- expect(aspect.invoke(['bar', 'baz'])).toStrictEqual(configuration.bar.baz);
14
- });
15
- //# sourceMappingURL=Aspect.test.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Aspect.test.js","sourceRoot":"","sources":["../source/Aspect.test.ts"],"names":[],"mappings":";;AAAA,qCAAiC;AAEjC,EAAE,CAAC,qBAAqB,EAAE,KAAK,IAAI,EAAE;IACnC,MAAM,aAAa,GAAG;QACpB,GAAG,EAAE,KAAK;QACV,GAAG,EAAE;YACH,GAAG,EAAE,MAAM;SACZ;KACF,CAAA;IAED,MAAM,MAAM,GAAG,IAAI,eAAM,CAAC,aAAa,CAAC,CAAA;IAExC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,aAAa,CAAC,aAAa,CAAC,GAAG,CAAC,CAAA;IAC/D,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,aAAa,CAAC,aAAa,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;AAC5E,CAAC,CAAC,CAAA"}
@@ -1,5 +0,0 @@
1
- import { type Locator, type extensions } from '@toa.io/core';
2
- import { type Manifest } from './manifest';
3
- export declare class Factory implements extensions.Factory {
4
- aspect(locator: Locator, manifest: Manifest): extensions.Aspect;
5
- }
@@ -1,13 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Factory = void 0;
4
- const Aspect_1 = require("./Aspect");
5
- const configuration_1 = require("./configuration");
6
- class Factory {
7
- aspect(locator, manifest) {
8
- const value = (0, configuration_1.get)(locator, manifest);
9
- return new Aspect_1.Aspect(value);
10
- }
11
- }
12
- exports.Factory = Factory;
13
- //# sourceMappingURL=Factory.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Factory.js","sourceRoot":"","sources":["../source/Factory.ts"],"names":[],"mappings":";;;AACA,qCAAiC;AAEjC,mDAAqC;AAErC,MAAa,OAAO;IACX,MAAM,CAAE,OAAgB,EAAE,QAAkB;QACjD,MAAM,KAAK,GAAG,IAAA,mBAAG,EAAC,OAAO,EAAE,QAAQ,CAAC,CAAA;QAEpC,OAAO,IAAI,eAAM,CAAC,KAAK,CAAC,CAAA;IAC1B,CAAC;CACF;AAND,0BAMC"}
@@ -1,4 +0,0 @@
1
- import { type Locator } from '@toa.io/core';
2
- import { type Manifest } from './manifest';
3
- export declare function get(locator: Locator, manifest: Manifest): Configuration;
4
- export type Configuration = Record<string, any>;
@@ -1,66 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
25
- Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.get = void 0;
27
- const generic_1 = require("@toa.io/generic");
28
- const schemas = __importStar(require("@toa.io/schemas"));
29
- const deployment_1 = require("./deployment");
30
- function get(locator, manifest) {
31
- const values = getConfiguration(locator.uppercase);
32
- substituteSecrets(values);
33
- if (manifest.defaults !== undefined)
34
- (0, generic_1.add)(values, manifest.defaults);
35
- const schema = schemas.schema(manifest.schema);
36
- schema.validate(values);
37
- return values;
38
- }
39
- exports.get = get;
40
- function getConfiguration(suffix) {
41
- const variable = deployment_1.PREFIX + suffix;
42
- const string = process.env[variable];
43
- if (string === undefined)
44
- return {};
45
- else
46
- return (0, generic_1.decode)(string);
47
- }
48
- function substituteSecrets(configuration) {
49
- for (const [key, value] of Object.entries(configuration)) {
50
- if (typeof value !== 'string')
51
- continue;
52
- const match = value.match(deployment_1.SECRET_RX);
53
- if (match === null)
54
- continue;
55
- const name = match.groups?.variable;
56
- configuration[key] = getSecret(name);
57
- }
58
- }
59
- function getSecret(name) {
60
- const variable = deployment_1.PREFIX + '_' + name;
61
- const value = process.env[variable];
62
- if (value === undefined)
63
- throw new Error(`${variable} is not set.`);
64
- return value;
65
- }
66
- //# sourceMappingURL=configuration.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"configuration.js","sourceRoot":"","sources":["../source/configuration.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AACA,6CAA6C;AAC7C,yDAA0C;AAC1C,6CAAgD;AAGhD,SAAgB,GAAG,CAAE,OAAgB,EAAE,QAAkB;IACvD,MAAM,MAAM,GAAG,gBAAgB,CAAC,OAAO,CAAC,SAAS,CAAC,CAAA;IAElD,iBAAiB,CAAC,MAAM,CAAC,CAAA;IAEzB,IAAI,QAAQ,CAAC,QAAQ,KAAK,SAAS;QAAE,IAAA,aAAG,EAAC,MAAM,EAAE,QAAQ,CAAC,QAAQ,CAAC,CAAA;IAEnE,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAA;IAE9C,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAA;IAEvB,OAAO,MAAM,CAAA;AACf,CAAC;AAZD,kBAYC;AAED,SAAS,gBAAgB,CAAE,MAAc;IACvC,MAAM,QAAQ,GAAG,mBAAM,GAAG,MAAM,CAAA;IAChC,MAAM,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAA;IAEpC,IAAI,MAAM,KAAK,SAAS;QAAE,OAAO,EAAE,CAAA;;QAC9B,OAAO,IAAA,gBAAM,EAAC,MAAM,CAAC,CAAA;AAC5B,CAAC;AAED,SAAS,iBAAiB,CAAE,aAA4B;IACtD,KAAK,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,aAAa,CAAC,EAAE;QACxD,IAAI,OAAO,KAAK,KAAK,QAAQ;YAAE,SAAQ;QAEvC,MAAM,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC,sBAAS,CAAC,CAAA;QAEpC,IAAI,KAAK,KAAK,IAAI;YAAE,SAAQ;QAE5B,MAAM,IAAI,GAAG,KAAK,CAAC,MAAM,EAAE,QAAkB,CAAA;QAE7C,aAAa,CAAC,GAAG,CAAC,GAAG,SAAS,CAAC,IAAI,CAAC,CAAA;KACrC;AACH,CAAC;AAED,SAAS,SAAS,CAAE,IAAY;IAC9B,MAAM,QAAQ,GAAG,mBAAM,GAAG,GAAG,GAAG,IAAI,CAAA;IACpC,MAAM,KAAK,GAAG,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAA;IAEnC,IAAI,KAAK,KAAK,SAAS;QAAE,MAAM,IAAI,KAAK,CAAC,GAAG,QAAQ,cAAc,CAAC,CAAA;IAEnE,OAAO,KAAK,CAAA;AACd,CAAC"}
@@ -1 +0,0 @@
1
- export {};
@@ -1,64 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const generic_1 = require("@toa.io/generic");
4
- const core_1 = require("@toa.io/core");
5
- const randomstring_1 = require("randomstring");
6
- const configuration_1 = require("./configuration");
7
- let locator;
8
- let manifest;
9
- beforeEach(() => {
10
- locator = new core_1.Locator((0, randomstring_1.generate)(), (0, randomstring_1.generate)());
11
- manifest = { schema: { foo: 'string' } };
12
- });
13
- afterEach(() => {
14
- for (const name of used)
15
- process.env[name] = undefined;
16
- used = [];
17
- });
18
- it('should read value', async () => {
19
- manifest.schema = { foo: 'string' };
20
- const value = { foo: (0, randomstring_1.generate)() };
21
- set(value);
22
- const result = (0, configuration_1.get)(locator, manifest);
23
- expect(result).toStrictEqual(value);
24
- });
25
- it('should return empty object if no value set', async () => {
26
- expect((0, configuration_1.get)(locator, manifest)).toStrictEqual({});
27
- });
28
- it('should substitute secrets', async () => {
29
- const value = { foo: '$BAR' };
30
- set(value);
31
- set('bar', '_BAR');
32
- const result = (0, configuration_1.get)(locator, manifest);
33
- expect(result).toStrictEqual({ foo: 'bar' });
34
- });
35
- it('should use defaults', async () => {
36
- manifest.schema = { foo: 'string', bar: ['number'], 'baz?': 'string' };
37
- manifest.defaults = { foo: 'bar', bar: [1] };
38
- const values = { bar: [2], baz: 'foo' };
39
- set(values);
40
- const result = (0, configuration_1.get)(locator, manifest);
41
- expect(result).toStrictEqual({
42
- foo: 'bar',
43
- bar: [2],
44
- baz: 'foo'
45
- });
46
- });
47
- it('should validate', async () => {
48
- manifest.schema = { foo: 'hello', bar: 'number' };
49
- const values = { bar: 5 };
50
- set(values);
51
- const result = (0, configuration_1.get)(locator, manifest);
52
- expect(result).toStrictEqual({
53
- foo: 'hello',
54
- bar: 5
55
- });
56
- });
57
- function set(value, key = locator.uppercase) {
58
- const string = typeof value === 'string' ? value : (0, generic_1.encode)(value);
59
- const name = 'TOA_CONFIGURATION_' + key;
60
- process.env[name] = string;
61
- used.push(name);
62
- }
63
- let used = [];
64
- //# sourceMappingURL=configuration.test.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"configuration.test.js","sourceRoot":"","sources":["../source/configuration.test.ts"],"names":[],"mappings":";;AAAA,6CAAwC;AACxC,uCAAsC;AACtC,+CAAuC;AACvC,mDAAqC;AAGrC,IAAI,OAAgB,CAAA;AACpB,IAAI,QAAkB,CAAA;AAEtB,UAAU,CAAC,GAAG,EAAE;IACd,OAAO,GAAG,IAAI,cAAO,CAAC,IAAA,uBAAQ,GAAE,EAAE,IAAA,uBAAQ,GAAE,CAAC,CAAA;IAC7C,QAAQ,GAAG,EAAE,MAAM,EAAE,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,CAAA;AAC1C,CAAC,CAAC,CAAA;AAEF,SAAS,CAAC,GAAG,EAAE;IACb,KAAK,MAAM,IAAI,IAAI,IAAI;QACrB,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,SAAS,CAAA;IAE/B,IAAI,GAAG,EAAE,CAAA;AACX,CAAC,CAAC,CAAA;AAEF,EAAE,CAAC,mBAAmB,EAAE,KAAK,IAAI,EAAE;IACjC,QAAQ,CAAC,MAAM,GAAG,EAAE,GAAG,EAAE,QAAQ,EAAE,CAAA;IACnC,MAAM,KAAK,GAAW,EAAE,GAAG,EAAE,IAAA,uBAAQ,GAAE,EAAE,CAAA;IAEzC,GAAG,CAAC,KAAK,CAAC,CAAA;IAEV,MAAM,MAAM,GAAG,IAAA,mBAAG,EAAC,OAAO,EAAE,QAAQ,CAAC,CAAA;IAErC,MAAM,CAAC,MAAM,CAAC,CAAC,aAAa,CAAC,KAAK,CAAC,CAAA;AACrC,CAAC,CAAC,CAAA;AAEF,EAAE,CAAC,4CAA4C,EAAE,KAAK,IAAI,EAAE;IAC1D,MAAM,CAAC,IAAA,mBAAG,EAAC,OAAO,EAAE,QAAQ,CAAC,CAAC,CAAC,aAAa,CAAC,EAAE,CAAC,CAAA;AAClD,CAAC,CAAC,CAAA;AAEF,EAAE,CAAC,2BAA2B,EAAE,KAAK,IAAI,EAAE;IACzC,MAAM,KAAK,GAAW,EAAE,GAAG,EAAE,MAAM,EAAE,CAAA;IAErC,GAAG,CAAC,KAAK,CAAC,CAAA;IACV,GAAG,CAAC,KAAK,EAAE,MAAM,CAAC,CAAA;IAElB,MAAM,MAAM,GAAG,IAAA,mBAAG,EAAC,OAAO,EAAE,QAAQ,CAAC,CAAA;IAErC,MAAM,CAAC,MAAM,CAAC,CAAC,aAAa,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,CAAC,CAAA;AAC9C,CAAC,CAAC,CAAA;AAEF,EAAE,CAAC,qBAAqB,EAAE,KAAK,IAAI,EAAE;IACnC,QAAQ,CAAC,MAAM,GAAG,EAAE,GAAG,EAAE,QAAQ,EAAE,GAAG,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAA;IACtE,QAAQ,CAAC,QAAQ,GAAG,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,EAAE,CAAA;IAE5C,MAAM,MAAM,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,CAAA;IAEvC,GAAG,CAAC,MAAM,CAAC,CAAA;IAEX,MAAM,MAAM,GAAG,IAAA,mBAAG,EAAC,OAAO,EAAE,QAAQ,CAAC,CAAA;IAErC,MAAM,CAAC,MAAM,CAAC,CAAC,aAAa,CAAC;QAC3B,GAAG,EAAE,KAAK;QACV,GAAG,EAAE,CAAC,CAAC,CAAC;QACR,GAAG,EAAE,KAAK;KACX,CAAC,CAAA;AACJ,CAAC,CAAC,CAAA;AAEF,EAAE,CAAC,iBAAiB,EAAE,KAAK,IAAI,EAAE;IAC/B,QAAQ,CAAC,MAAM,GAAG,EAAE,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,CAAA;IAEjD,MAAM,MAAM,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,CAAA;IAEzB,GAAG,CAAC,MAAM,CAAC,CAAA;IAEX,MAAM,MAAM,GAAG,IAAA,mBAAG,EAAC,OAAO,EAAE,QAAQ,CAAC,CAAA;IAErC,MAAM,CAAC,MAAM,CAAC,CAAC,aAAa,CAAC;QAC3B,GAAG,EAAE,OAAO;QACZ,GAAG,EAAE,CAAC;KACP,CAAC,CAAA;AACJ,CAAC,CAAC,CAAA;AAEF,SAAS,GAAG,CAAE,KAAsB,EAAE,GAAG,GAAG,OAAO,CAAC,SAAS;IAC3D,MAAM,MAAM,GAAG,OAAO,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAA,gBAAM,EAAC,KAAK,CAAC,CAAA;IAChE,MAAM,IAAI,GAAG,oBAAoB,GAAG,GAAG,CAAA;IAEvC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,MAAM,CAAA;IAE1B,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;AACjB,CAAC;AAED,IAAI,IAAI,GAAa,EAAE,CAAA"}
@@ -1,8 +0,0 @@
1
- import { type Dependency } from '@toa.io/operations';
2
- import { type Manifest } from './manifest';
3
- import type { context } from '@toa.io/norm';
4
- export declare function deployment(instances: Instance[], annotation?: Annotation): Dependency;
5
- export declare const SECRET_RX: RegExp;
6
- export declare const PREFIX = "TOA_CONFIGURATION_";
7
- export type Annotation = Record<string, object>;
8
- export type Instance = context.Dependency<Manifest>;
@@ -1,75 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
25
- Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.PREFIX = exports.SECRET_RX = exports.deployment = void 0;
27
- const schemas = __importStar(require("@toa.io/schemas"));
28
- const generic_1 = require("@toa.io/generic");
29
- const validators = __importStar(require("./schemas"));
30
- function deployment(instances, annotation = {}) {
31
- validators.annotation.validate(annotation);
32
- const variables = {};
33
- for (const instance of instances) {
34
- const values = annotation[instance.locator.id];
35
- if (values === undefined)
36
- continue;
37
- validate(instance, values);
38
- variables[instance.locator.label] = [{
39
- name: exports.PREFIX + instance.locator.uppercase,
40
- value: (0, generic_1.encode)(values)
41
- }];
42
- const secrets = createSecrets(values);
43
- variables[instance.locator.label].push(...secrets);
44
- }
45
- return { variables };
46
- }
47
- exports.deployment = deployment;
48
- function createSecrets(values) {
49
- const secrets = [];
50
- for (const value of Object.values(values)) {
51
- if (typeof value !== 'string')
52
- continue;
53
- const match = value.match(exports.SECRET_RX);
54
- if (match === null)
55
- continue;
56
- const name = match.groups?.variable;
57
- secrets.push({
58
- name: exports.PREFIX + '_' + name,
59
- secret: {
60
- name: 'toa-configuration',
61
- key: name
62
- }
63
- });
64
- }
65
- return secrets;
66
- }
67
- function validate(instace, values) {
68
- const defaults = instace.manifest.defaults ?? {};
69
- const configuration = (0, generic_1.overwrite)(defaults, values);
70
- const schema = schemas.schema(instace.manifest.schema);
71
- schema.validate(configuration);
72
- }
73
- exports.SECRET_RX = /^\$(?<variable>[A-Z0-9_]{1,32})$/;
74
- exports.PREFIX = 'TOA_CONFIGURATION_';
75
- //# sourceMappingURL=deployment.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"deployment.js","sourceRoot":"","sources":["../source/deployment.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AACA,yDAA0C;AAC1C,6CAAmD;AAEnD,sDAAuC;AAGvC,SAAgB,UAAU,CAAE,SAAqB,EAAE,aAAyB,EAAE;IAC5E,UAAU,CAAC,UAAU,CAAC,QAAQ,CAAC,UAAU,CAAC,CAAA;IAE1C,MAAM,SAAS,GAAc,EAAE,CAAA;IAE/B,KAAK,MAAM,QAAQ,IAAI,SAAS,EAAE;QAChC,MAAM,MAAM,GAAG,UAAU,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE,CAAC,CAAA;QAE9C,IAAI,MAAM,KAAK,SAAS;YAAE,SAAQ;QAElC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAA;QAE1B,SAAS,CAAC,QAAQ,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC;gBACnC,IAAI,EAAE,cAAM,GAAG,QAAQ,CAAC,OAAO,CAAC,SAAS;gBACzC,KAAK,EAAE,IAAA,gBAAM,EAAC,MAAM,CAAC;aACtB,CAAC,CAAA;QAEF,MAAM,OAAO,GAAG,aAAa,CAAC,MAAM,CAAC,CAAA;QAErC,SAAS,CAAC,QAAQ,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,GAAG,OAAO,CAAC,CAAA;KACnD;IAED,OAAO,EAAE,SAAS,EAAE,CAAA;AACtB,CAAC;AAvBD,gCAuBC;AAED,SAAS,aAAa,CAAE,MAAc;IACpC,MAAM,OAAO,GAAe,EAAE,CAAA;IAE9B,KAAK,MAAM,KAAK,IAAI,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE;QACzC,IAAI,OAAO,KAAK,KAAK,QAAQ;YAAE,SAAQ;QAEvC,MAAM,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC,iBAAS,CAAC,CAAA;QAEpC,IAAI,KAAK,KAAK,IAAI;YAAE,SAAQ;QAE5B,MAAM,IAAI,GAAG,KAAK,CAAC,MAAM,EAAE,QAAkB,CAAA;QAE7C,OAAO,CAAC,IAAI,CAAC;YACX,IAAI,EAAE,cAAM,GAAG,GAAG,GAAG,IAAI;YACzB,MAAM,EAAE;gBACN,IAAI,EAAE,mBAAmB;gBACzB,GAAG,EAAE,IAAI;aACV;SACF,CAAC,CAAA;KACH;IAED,OAAO,OAAO,CAAA;AAChB,CAAC;AAED,SAAS,QAAQ,CAAE,OAAiB,EAAE,MAAc;IAClD,MAAM,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAC,QAAQ,IAAI,EAAE,CAAA;IAChD,MAAM,aAAa,GAAG,IAAA,mBAAS,EAAC,QAAQ,EAAE,MAAM,CAAC,CAAA;IACjD,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAA;IAEtD,MAAM,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAA;AAChC,CAAC;AAEY,QAAA,SAAS,GAAG,kCAAkC,CAAA;AAC9C,QAAA,MAAM,GAAG,oBAAoB,CAAA"}
@@ -1 +0,0 @@
1
- export {};
@@ -1,18 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const deployment_1 = require("./deployment");
4
- it('should validate annotation', async () => {
5
- const wrongType = 'not ok';
6
- expect(() => (0, deployment_1.deployment)([], wrongType)).toThrow('object');
7
- });
8
- it('should validate values', async () => {
9
- const manifest = {
10
- schema: { foo: 'string', bar: 'number' },
11
- defaults: { foo: 'ok', bar: 0 }
12
- };
13
- const locator = { id: 'component' };
14
- const instances = [{ manifest, locator }];
15
- const annotation = { [locator.id]: { bar: 'not a number' } };
16
- expect(() => (0, deployment_1.deployment)(instances, annotation)).toThrow('number');
17
- });
18
- //# sourceMappingURL=deployment.test.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"deployment.test.js","sourceRoot":"","sources":["../source/deployment.test.ts"],"names":[],"mappings":";;AAAA,6CAAyE;AAGzE,EAAE,CAAC,4BAA4B,EAAE,KAAK,IAAI,EAAE;IAC1C,MAAM,SAAS,GAAG,QAAiC,CAAA;IAEnD,MAAM,CAAC,GAAG,EAAE,CAAC,IAAA,uBAAU,EAAC,EAAE,EAAE,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAA;AAC3D,CAAC,CAAC,CAAA;AAEF,EAAE,CAAC,wBAAwB,EAAE,KAAK,IAAI,EAAE;IACtC,MAAM,QAAQ,GAAa;QACzB,MAAM,EAAE,EAAE,GAAG,EAAE,QAAQ,EAAE,GAAG,EAAE,QAAQ,EAAE;QACxC,QAAQ,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,EAAE;KAChC,CAAA;IAED,MAAM,OAAO,GAAG,EAAE,EAAE,EAAE,WAAW,EAAE,CAAA;IACnC,MAAM,SAAS,GAAG,CAAC,EAAE,QAAQ,EAAE,OAAO,EAAE,CAA0B,CAAA;IAClE,MAAM,UAAU,GAAe,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE,EAAE,GAAG,EAAE,cAAc,EAAE,EAAE,CAAA;IAExE,MAAM,CAAC,GAAG,EAAE,CAAC,IAAA,uBAAU,EAAC,SAAS,EAAE,UAAU,CAAC,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAA;AACnE,CAAC,CAAC,CAAA"}
@@ -1,3 +0,0 @@
1
- export { manifest } from './manifest';
2
- export { deployment } from './deployment';
3
- export { Factory } from './Factory';
@@ -1,10 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Factory = exports.deployment = exports.manifest = void 0;
4
- var manifest_1 = require("./manifest");
5
- Object.defineProperty(exports, "manifest", { enumerable: true, get: function () { return manifest_1.manifest; } });
6
- var deployment_1 = require("./deployment");
7
- Object.defineProperty(exports, "deployment", { enumerable: true, get: function () { return deployment_1.deployment; } });
8
- var Factory_1 = require("./Factory");
9
- Object.defineProperty(exports, "Factory", { enumerable: true, get: function () { return Factory_1.Factory; } });
10
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../source/index.ts"],"names":[],"mappings":";;;AAAA,uCAAqC;AAA5B,oGAAA,QAAQ,OAAA;AACjB,2CAAyC;AAAhC,wGAAA,UAAU,OAAA;AACnB,qCAAmC;AAA1B,kGAAA,OAAO,OAAA"}
@@ -1,6 +0,0 @@
1
- import { type Configuration } from './configuration';
2
- export declare function manifest(manifest: Manifest): Manifest;
3
- export interface Manifest {
4
- schema: object;
5
- defaults?: Configuration;
6
- }
@@ -1,35 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
25
- Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.manifest = void 0;
27
- const schemas = __importStar(require("./schemas"));
28
- function manifest(manifest) {
29
- if (manifest.schema === undefined)
30
- manifest = { schema: manifest };
31
- schemas.manifest.validate(manifest);
32
- return manifest;
33
- }
34
- exports.manifest = manifest;
35
- //# sourceMappingURL=manifest.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"manifest.js","sourceRoot":"","sources":["../source/manifest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,mDAAoC;AAGpC,SAAgB,QAAQ,CAAE,QAAkB;IAC1C,IAAI,QAAQ,CAAC,MAAM,KAAK,SAAS;QAAE,QAAQ,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAA;IAElE,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAA;IAEnC,OAAO,QAAQ,CAAA;AACjB,CAAC;AAND,4BAMC"}
@@ -1 +0,0 @@
1
- export {};
@@ -1,14 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const manifest_1 = require("./manifest");
4
- it('should validate', async () => {
5
- const additional = { schema: {}, foo: 'bar' };
6
- expect(() => {
7
- (0, manifest_1.manifest)(additional);
8
- }).toThrow('additional');
9
- const wrongType = { schema: 'not ok' };
10
- expect(() => {
11
- (0, manifest_1.manifest)(wrongType);
12
- }).toThrow('object');
13
- });
14
- //# sourceMappingURL=manifest.test.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"manifest.test.js","sourceRoot":"","sources":["../source/manifest.test.ts"],"names":[],"mappings":";;AAAA,yCAAoD;AAEpD,EAAE,CAAC,iBAAiB,EAAE,KAAK,IAAI,EAAE;IAC/B,MAAM,UAAU,GAAG,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,EAAE,KAAK,EAAyB,CAAA;IAEpE,MAAM,CAAC,GAAG,EAAE;QACV,IAAA,mBAAQ,EAAC,UAAU,CAAC,CAAA;IACtB,CAAC,CAAC,CAAC,OAAO,CAAC,YAAY,CAAC,CAAA;IAExB,MAAM,SAAS,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAyB,CAAA;IAE7D,MAAM,CAAC,GAAG,EAAE;QACV,IAAA,mBAAQ,EAAC,SAAS,CAAC,CAAA;IACrB,CAAC,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAA;AACtB,CAAC,CAAC,CAAA"}
@@ -1,2 +0,0 @@
1
- export declare const manifest: import("@toa.io/schemas/types/schema").toa.schemas.Schema;
2
- export declare const annotation: import("@toa.io/schemas/types/schema").toa.schemas.Schema;
@@ -1,33 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
25
- Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.annotation = exports.manifest = void 0;
27
- const node_path_1 = require("node:path");
28
- const schemas = __importStar(require("@toa.io/schemas"));
29
- const path = (0, node_path_1.resolve)(__dirname, '../schemas');
30
- const namespace = schemas.namespace(path);
31
- exports.manifest = namespace.schema('manifest');
32
- exports.annotation = namespace.schema('annotation');
33
- //# sourceMappingURL=schemas.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"schemas.js","sourceRoot":"","sources":["../source/schemas.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAAmC;AACnC,yDAA0C;AAE1C,MAAM,IAAI,GAAG,IAAA,mBAAO,EAAC,SAAS,EAAE,YAAY,CAAC,CAAA;AAC7C,MAAM,SAAS,GAAG,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,CAAA;AAE5B,QAAA,QAAQ,GAAG,SAAS,CAAC,MAAM,CAAC,UAAU,CAAC,CAAA;AACvC,QAAA,UAAU,GAAG,SAAS,CAAC,MAAM,CAAC,YAAY,CAAC,CAAA"}
@@ -1 +0,0 @@
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.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/typescript/lib/lib.scripthost.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.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.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.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.full.d.ts","../../../runtime/core/types/bindings.d.ts","../../../runtime/core/types/connector.d.ts","../../../runtime/core/types/locator.d.ts","../../../runtime/core/types/request.d.ts","../../../runtime/core/types/exception.d.ts","../../../runtime/core/types/reply.d.ts","../../../runtime/core/types/component.d.ts","../../../runtime/core/types/context.d.ts","../../../runtime/core/types/storages.d.ts","../../../runtime/core/types/extensions.d.ts","../../../runtime/core/types/bridges.d.ts","../../../runtime/core/types/message.d.ts","../../../runtime/core/types/receiver.d.ts","../../../runtime/core/types/index.d.ts","../source/aspect.ts","../source/aspect.test.ts","../../../libraries/schemas/types/schema.d.ts","../../../libraries/schemas/types/namespace.d.ts","../../../libraries/schemas/types/index.d.ts","../source/schemas.ts","../../../libraries/generic/types/promex.d.ts","../../../libraries/generic/types/merge.d.ts","../../../libraries/generic/types/map.d.ts","../../../libraries/generic/types/index.d.ts","../../../operations/types/dependency.d.ts","../../../operations/types/index.d.ts","../../../runtime/norm/types/component.d.ts","../../../runtime/norm/types/context/declaration.d.ts","../../../runtime/norm/types/context.d.ts","../../../runtime/norm/types/index.d.ts","../source/deployment.ts","../source/configuration.ts","../source/manifest.ts","../source/factory.ts","../../../node_modules/@types/randomstring/index.d.ts","../source/configuration.test.ts","../source/deployment.test.ts","../source/index.ts","../source/manifest.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/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.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/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.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/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.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/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/mime/mime.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/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-matcher-utils/node_modules/chalk/index.d.ts","../../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../../node_modules/pretty-format/build/types.d.ts","../../../node_modules/pretty-format/build/index.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/jest-matcher-utils/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/json5/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/minimist/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/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/uuid/index.d.ts","../../../node_modules/@types/webidl-conversions/index.d.ts","../../../node_modules/@types/whatwg-url/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"d96fa8a56871904776165ceb8e00bd56127e1a017bb2664cae76223b5f815141","5c705ea6d923f75118d05b15d9277a792534f537f3f0e3bd558706b7719e0b4b","4b0bbac779edb0daa8ac8c983a5bc3dcb22a7831efc9c3b0e1c09fb7871d5e78","f7d594d8d16c7e9fa2e0dd3635e4ad8ed3b5cf9e8cf4a0ed2b91771b91ff79d2","f215f4a31cde19ad564123449d598e8f5d54ee01723c9f2e08a6551603796c99","425a8261e16e3e5c1b4e21efbdb8b12ac26b70b1932427732840b527d9725b33","290a1a95e7f4311064d71b5307e157e2922ba6498584c77a58c2285b0e2d7886","5e1ebcc9c30ad16e8a375e471d1bdf2346aae0a7f8749ce54a85eabb98985978","eccae7a0380fece7bedcce018b5429da725a59c76eaf1f29d9483ea909115ea0","863a16bffa4414a6784927eec1b17523521761b2b2344a0b98f140c91d659859","066564658ae9be383db8fee383c4b13485924b566c48adcc7be14c0358aa69da","2ece68fc449934b9b5988584816a997bd94e8960bc28ba83b58c0b79b639447b","67f637033109e2ae0272428c6b27a0be1c323b43b37e3ac55d09c993b205867b","a06788dcbb350c361b23aad1671f6818641850ab75050e7abc0ae42f6ae49090","436a237807dbe653fffafdba822497101474034aa46d5a69fca5ecd6290964fe",{"version":"2b5bc93657640cee37e253c94153fcddf8e8b5723811a8e0f6f93935a2b35825","signature":"d8bcc4d2541a543589b609c0efd0a752a6bd8cf4828a102695ba1825f92c9262"},{"version":"0caf04d86cd2d4fbfa05f19445ff959e44daeac8472b113cd2e7988f888a40d2","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"fb2be9f927c3a43265b4ca090a72fe4701455fce5532e57dc94d93919ad484b8","15a134b3be788325ea13d4d018fcd9b7137dda29105953af10b4f2231a6652f0","560909f90c010fb7bbf04ca8aafa802a577952d76055a46df1f79bcbeb30077c",{"version":"a14a7ffea3f4975ab89c2de44331d0d16ac9fc88c1d8fcca3378e4c7603f662d","signature":"1cb30b2f3e1e7f03961be1e91d0435046f84e3d198366fd6ae269657aaf96952"},"349327a3c59d23ddd1ba33ca88b73b194e16be7d0c7865d4b3227b1e7fb51b41","6c898f2bb237aee867bc2f89a2d9201b4c336c10320d083371ecf148bb0ffd54","937cbc9ffa856e3e4811c23481bf5416112fd6c8e6f31bbd2525cfff22fb8905","4a7c8ebddf6d7290deb71051e65f8e406e38772d22ef5be04fd837648ffcba0c","b58986684afb62bf350474b924d15c873a504de447f1e109ccdabffe502ec5be","6e77fb2250275d3945569ac61104a29927624b5a7ba0e905e7e1defd1f2ed151","76ac98764b6a936d05a6e20e5fb1862f225d192ba2bed9727456ac5b7f06c0e6","71e46111f57a5c82031adbac22eb542b5f63a8be4d5ee9253036cafe81d16112","a81bed88a08bcbcb5c00b045c880dd751854145a91f8bb4c0e00fad06d164c99","2c477c8745f634853a063e08af9951f1cc4f858c324a95796f191e6a623e3d12",{"version":"5adfe6bb59b9624c6c4378d618683c2e964c02cd78112187f6afeb0ea117cf3a","signature":"25d09e88394391bfc2c38938c3df7dfcd25a3545b88f6c83afa022227875c00d"},{"version":"5841835d50b4d6b9836105fb4109605b808ef90d5efecdfc0a5c20d70cc89e03","signature":"063c2c19244968a76c8ba6f3e364fdda5acc055faf1fee4320dbc06cb845e0aa"},{"version":"54c5ca02fecc77f357106c0afca349f50c6e92eaea1a9ff860d886a16df38ca0","signature":"c72e3717c72fbd37bd14a1b1482e08a1730c3184b61cf0b9a2c3179512b7e526"},{"version":"c300a7bd253ddda087e0482167967e536e681abc20da50fef2e10e5ef4577170","signature":"f32bf2017669796ea273989ee8d48c179f362aa83ff45216c7d0227ed7d15d37"},{"version":"4698841dc5a91fe716dd41ec7136867bbde9a274ce21031e5ef6ce2d8a552ceb","affectsGlobalScope":true},{"version":"04839e5863ac880c4dfeba9ae9e105eb90bf068ccd965b310909777e7e2fcbad","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"044a1eb0d111bb271e392ba164887e87a008ad850cfc9805ac0abfc46f1767ad","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"264114e932147a278841c9fcce0bcb4ac945a9baaa8936cae3627068ef469570","signature":"efcab92a18575f6d860703e3e4491b4618e863db6d9b95db7e3e4fc425968823"},{"version":"8d5d5277c187d7a59d8b7e48be45ad021e03efff646a9bdce64f8769fa26ca1a","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"3078727fed04c123165efdb42deeac5dceaa42ac62216ca13cb809dc7e13415f","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","b4f76b34637d79cefad486127115fed843762c69512d7101b7096e1293699679","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","dae3d1adc67ac3dbd1cd471889301339ec439837b5df565982345be20c8fca9a","b6ddf3a46ccfa4441d8be84d2e9bf3087573c48804196faedbd4a25b60631beb","587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true},"7a435e0c814f58f23e9a0979045ec0ef5909aac95a70986e8bcce30c27dff228",{"version":"a7534271773a27ff7d136d550e86b41894d8090fa857ba4c02b5bb18d2eb1c8e","affectsGlobalScope":true},"db71be322f07f769200108aa19b79a75dd19a187c9dca2a30c4537b233aa2863","57135ce61976a8b1dadd01bb412406d1805b90db6e8ecb726d0d78e0b5f76050",{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","b8e431e9b9bb2dc832b23d4e3e02774e953d5537998923f215ea446169e9a61e","3690133deae19c8127c5505fcb67b04bdc9eb053796008538a9b9abbb70d85aa","5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"b85c02e14ecb2a873dad5a1de72319b265160ba48f1b83661aeb3bba1366c1bc","affectsGlobalScope":true},"7a2ba0c9af860ac3e77b35ed01fd96d15986f17aa22fe40f188ae556fb1070df","fc3764040518a1008dd04bdc80964591b566b896283e00df85c95851c1f46237","55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","790623a47c5eda62910098884ecb154dc0e5f3a23fc36c1bfb3b5b9ed44e2c2d","42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","354612fe1d49ecc9551ea3a27d94eef2887b64ef4a71f72ca444efe0f2f0ba80",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"f5490f53d40291cc8607f5463434d1ac6c5564bc4fbb03abceb03a8f6b014457","5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d",{"version":"14a50dafe3f45713f7f27cb6320dff07c6ac31678f07959c2134260061bf91ff","affectsGlobalScope":true},{"version":"19da7150ca062323b1db6311a6ef058c9b0a39cc64d836b5e9b75d301869653b","affectsGlobalScope":true},"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","0cab4d7d4edc40cd3af9eea7c3ed6d1016910c0954c49c4297e479bf3822a625","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270","1fb6c5ec52332a8b531a8d7a5300ac9301f98c4fe62f68e744e0841ccba65e7e",{"version":"ab294c4b7279318ee2a8fdf681305457ecc05970c94108d304933f18823eeac1","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","bbda6ea452a2386093a1eda18a6e26a989e98869f1b9f37e46f510a986d2e740","812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","993325544790073f77e945bee046d53988c0bc3ac5695c9cf8098166feb82661",{"version":"75dd741ca6a6c8d2437a6ca8349b64b816421dbf9fe82dd026afaba965576962","affectsGlobalScope":true},{"version":"8799401a7ab57764f0d464513a7fa7c72e1d70a226b172ec60fff534ea94d108","affectsGlobalScope":true},"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","92db194ef7d208d5e4b6242a3434573fd142a621ff996d84cc9dbba3553277d0","16a3080e885ed52d4017c902227a8d0d8daf723d062bec9e45627c6fdcd6699b",{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true},"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"247aa3419c98713231952b33801d4f46563fe542e03604acd8c63ac45a32409c","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"c5dd1fef4cd4aaffc78786047bed5ae6fc1200d19a1946cbc4e2d3ed4d62c8fa","affectsGlobalScope":true},"5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","e6f0cb9d8cb2e38bec66e032e73caa3e7c6671f21ed7196acb821aec462051f2","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","bf88ef4208a770ca39a844b182b3695df536326ea566893fdc5b8418702a331e","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"af9b69886a3c5cf847341a3f777d47984152051a82fffe72a97158e4ffa94780","affectsGlobalScope":true},"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","dca41e86e89dfb2e85e6935260250f02eb6683b86c2fa16bec729ddd1bcd9b4b","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","3898e3dbe94b6fe529fbe8f0faee1309c1923100516d7a014b301955e52ece77","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","bc88e4049153bc4dddb4503ed7e624eb141edfa9064b3659d6c86e900fe9e621","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","ea2d34766aa08df002a696e27d2140c0834cb8d7e9cb35687ecfd578253c196c","67483628398336d0f9368578a9514bd8cc823a4f3b3ab784f3942077e5047335","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","e9eb1b173aa166892f3eddab182e49cfe59aa2e14d33aedb6b49d175ed6a3750"],"options":{"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"noImplicitOverride":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":99},"fileIdsList":[[74,151],[73,151],[73,83,91,92,94,151],[73,78,83,90,92,151],[90,92,151],[78,79,83,85,89,92,151],[73,74,91,92,151],[90,92,93,151],[92,151],[79,91,151],[78,131,151],[80,81,82,139,151],[151],[76,77,151],[76,151],[99,151],[99,100,101,102,103,151],[99,101,151],[124,151,158,159],[124,151,158],[121,124,151,158,161,162],[151,160,162,163,166],[122,151,158],[151,169],[151,170],[151,175,180],[151,185,187,188,189,190,191,192,193,194,195,196,197],[151,185,186,188,189,190,191,192,193,194,195,196,197],[151,186,187,188,189,190,191,192,193,194,195,196,197],[151,185,186,187,189,190,191,192,193,194,195,196,197],[151,185,186,187,188,190,191,192,193,194,195,196,197],[151,185,186,187,188,189,191,192,193,194,195,196,197],[151,185,186,187,188,189,190,192,193,194,195,196,197],[151,185,186,187,188,189,190,191,193,194,195,196,197],[151,185,186,187,188,189,190,191,192,194,195,196,197],[151,185,186,187,188,189,190,191,192,193,195,196,197],[151,185,186,187,188,189,190,191,192,193,194,196,197],[151,185,186,187,188,189,190,191,192,193,194,195,197],[151,185,186,187,188,189,190,191,192,193,194,195,196],[151,164],[151,165],[124,150,151,158,199,200],[105,151],[108,151],[109,114,142,151],[110,121,122,129,139,150,151],[110,111,121,129,151],[112,151],[113,114,122,130,151],[114,139,147,151],[115,117,121,129,151],[116,151],[117,118,151],[121,151],[119,121,151],[121,122,123,139,150,151],[121,122,123,136,139,142,151],[151,155],[117,121,124,129,139,150,151],[121,122,124,125,129,139,147,150,151],[124,126,139,147,150,151],[105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,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],[121,127,151],[128,150,151],[117,121,129,139,151],[130,151],[131,151],[108,132,151],[133,149,151,155],[134,151],[135,151],[121,136,137,151],[136,138,151,153],[109,121,139,140,141,142,151],[109,139,141,151],[139,140,151],[142,151],[143,151],[139,151],[121,145,146,151],[145,146,151],[114,129,139,147,151],[148,151],[129,149,151],[109,124,135,150,151],[114,151],[139,151,152],[151,153],[151,154],[109,114,121,123,132,139,150,151,153,155],[139,151,156],[151,205,244],[151,205,229,244],[151,244],[151,205],[151,205,230,244],[151,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243],[151,230,244],[124,151,158,165],[151,158],[151,249],[124,139,151,158],[151,173,176],[151,173,176,177,178],[151,175],[151,172,179],[151,174],[84,151],[61,65,67,73,151],[61,62,63,65,151],[61,63,65,69,151],[60,66,67,68,73,151],[60,61,62,63,64,65,66,67,68,69,70,71,72,151],[61,71,151],[64,151],[61,62,151],[73,86,87,151],[88,151],[86,88,151],[73],[73,92],[85,89,92],[90,92,93],[91],[76]],"referencedMap":[[75,1],[74,2],[95,3],[91,4],[96,5],[90,6],[93,7],[97,8],[98,9],[92,10],[79,11],[83,12],[82,13],[81,13],[80,13],[78,14],[77,15],[76,13],[101,16],[99,13],[104,17],[100,16],[102,18],[103,16],[160,19],[159,20],[163,21],[167,22],[168,23],[169,13],[170,24],[171,25],[181,26],[182,13],[183,13],[184,13],[186,27],[187,28],[185,29],[188,30],[189,31],[190,32],[191,33],[192,34],[193,35],[194,36],[195,37],[196,38],[197,39],[165,40],[164,41],[198,13],[200,13],[201,42],[105,43],[106,43],[108,44],[109,45],[110,46],[111,47],[112,48],[113,49],[114,50],[115,51],[116,52],[117,53],[118,53],[120,54],[119,55],[121,54],[122,56],[123,57],[107,58],[157,13],[124,59],[125,60],[126,61],[158,62],[127,63],[128,64],[129,65],[130,66],[131,67],[132,68],[133,69],[134,70],[135,71],[136,72],[137,72],[138,73],[139,74],[141,75],[140,76],[142,77],[143,78],[144,79],[145,80],[146,81],[147,82],[148,83],[149,84],[150,85],[151,86],[152,87],[153,88],[154,89],[155,90],[156,91],[202,13],[203,13],[204,13],[162,13],[94,13],[161,13],[229,92],[230,93],[205,94],[208,94],[227,92],[228,92],[218,92],[217,95],[215,92],[210,92],[223,92],[221,92],[225,92],[209,92],[222,92],[226,92],[211,92],[212,92],[224,92],[206,92],[213,92],[214,92],[216,92],[220,92],[231,96],[219,92],[207,92],[244,97],[243,13],[238,96],[240,98],[239,96],[232,96],[233,96],[235,96],[237,96],[241,98],[242,98],[234,98],[236,98],[166,99],[245,13],[246,13],[247,13],[248,100],[249,13],[250,101],[199,102],[173,13],[177,103],[179,104],[178,103],[176,105],[180,106],[172,13],[175,107],[174,13],[11,13],[12,13],[16,13],[15,13],[2,13],[17,13],[18,13],[19,13],[20,13],[21,13],[22,13],[23,13],[24,13],[3,13],[4,13],[28,13],[25,13],[26,13],[27,13],[29,13],[30,13],[31,13],[5,13],[32,13],[33,13],[34,13],[35,13],[6,13],[39,13],[36,13],[37,13],[38,13],[40,13],[7,13],[41,13],[46,13],[47,13],[42,13],[43,13],[44,13],[45,13],[8,13],[51,13],[48,13],[49,13],[50,13],[52,13],[9,13],[53,13],[54,13],[55,13],[56,13],[57,13],[1,13],[10,13],[59,13],[58,13],[14,13],[13,13],[84,13],[85,108],[60,2],[70,109],[66,110],[61,13],[67,111],[64,13],[69,112],[73,113],[62,13],[71,13],[72,114],[65,115],[63,13],[68,116],[86,2],[88,117],[87,118],[89,119]],"exportedModulesMap":[[74,120],[91,121],[90,122],[93,121],[97,123],[92,124],[79,125],[83,12],[82,13],[81,13],[80,13],[78,14],[77,15],[76,13],[101,16],[99,13],[104,17],[100,16],[102,18],[103,16],[160,19],[159,20],[163,21],[167,22],[168,23],[169,13],[170,24],[171,25],[181,26],[182,13],[183,13],[184,13],[186,27],[187,28],[185,29],[188,30],[189,31],[190,32],[191,33],[192,34],[193,35],[194,36],[195,37],[196,38],[197,39],[165,40],[164,41],[198,13],[200,13],[201,42],[105,43],[106,43],[108,44],[109,45],[110,46],[111,47],[112,48],[113,49],[114,50],[115,51],[116,52],[117,53],[118,53],[120,54],[119,55],[121,54],[122,56],[123,57],[107,58],[157,13],[124,59],[125,60],[126,61],[158,62],[127,63],[128,64],[129,65],[130,66],[131,67],[132,68],[133,69],[134,70],[135,71],[136,72],[137,72],[138,73],[139,74],[141,75],[140,76],[142,77],[143,78],[144,79],[145,80],[146,81],[147,82],[148,83],[149,84],[150,85],[151,86],[152,87],[153,88],[154,89],[155,90],[156,91],[202,13],[203,13],[204,13],[162,13],[94,13],[161,13],[229,92],[230,93],[205,94],[208,94],[227,92],[228,92],[218,92],[217,95],[215,92],[210,92],[223,92],[221,92],[225,92],[209,92],[222,92],[226,92],[211,92],[212,92],[224,92],[206,92],[213,92],[214,92],[216,92],[220,92],[231,96],[219,92],[207,92],[244,97],[243,13],[238,96],[240,98],[239,96],[232,96],[233,96],[235,96],[237,96],[241,98],[242,98],[234,98],[236,98],[166,99],[245,13],[246,13],[247,13],[248,100],[249,13],[250,101],[199,102],[173,13],[177,103],[179,104],[178,103],[176,105],[180,106],[172,13],[175,107],[174,13],[11,13],[12,13],[16,13],[15,13],[2,13],[17,13],[18,13],[19,13],[20,13],[21,13],[22,13],[23,13],[24,13],[3,13],[4,13],[28,13],[25,13],[26,13],[27,13],[29,13],[30,13],[31,13],[5,13],[32,13],[33,13],[34,13],[35,13],[6,13],[39,13],[36,13],[37,13],[38,13],[40,13],[7,13],[41,13],[46,13],[47,13],[42,13],[43,13],[44,13],[45,13],[8,13],[51,13],[48,13],[49,13],[50,13],[52,13],[9,13],[53,13],[54,13],[55,13],[56,13],[57,13],[1,13],[10,13],[59,13],[58,13],[14,13],[13,13],[84,13],[85,108],[60,2],[70,109],[66,110],[61,13],[67,111],[64,13],[69,112],[73,113],[62,13],[71,13],[72,114],[65,115],[63,13],[68,116],[86,2],[88,117],[87,118],[89,119]],"semanticDiagnosticsPerFile":[75,74,95,91,96,90,93,97,98,92,79,83,82,81,80,78,77,76,101,99,104,100,102,103,160,159,163,167,168,169,170,171,181,182,183,184,186,187,185,188,189,190,191,192,193,194,195,196,197,165,164,198,200,201,105,106,108,109,110,111,112,113,114,115,116,117,118,120,119,121,122,123,107,157,124,125,126,158,127,128,129,130,131,132,133,134,135,136,137,138,139,141,140,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,202,203,204,162,94,161,229,230,205,208,227,228,218,217,215,210,223,221,225,209,222,226,211,212,224,206,213,214,216,220,231,219,207,244,243,238,240,239,232,233,235,237,241,242,234,236,166,245,246,247,248,249,250,199,173,177,179,178,176,180,172,175,174,11,12,16,15,2,17,18,19,20,21,22,23,24,3,4,28,25,26,27,29,30,31,5,32,33,34,35,6,39,36,37,38,40,7,41,46,47,42,43,44,45,8,51,48,49,50,52,9,53,54,55,56,57,1,10,59,58,14,13,84,85,60,70,66,61,67,64,69,73,62,71,72,65,63,68,86,88,87,89]},"version":"4.9.5"}