@edirect/template 1.0.11 → 1.0.12
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.
|
@@ -1,16 +1,18 @@
|
|
|
1
|
-
import { ITransformer } from "./interfaces";
|
|
2
|
-
export declare class TemplateModule {
|
|
1
|
+
import { ITemplateModule, ITransformer } from "./interfaces";
|
|
2
|
+
export declare class TemplateModule implements ITemplateModule {
|
|
3
3
|
private context;
|
|
4
4
|
private template;
|
|
5
5
|
private transformers;
|
|
6
6
|
setContext(context: Record<string, unknown>): void;
|
|
7
7
|
setTemplate(template: Record<string, unknown>): void;
|
|
8
8
|
setTransformers(transformers: ITransformer): void;
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
verifyTransformer(transformer: ITransformer, methodName: string): boolean;
|
|
10
|
+
runTransformer(transformer: string, value?: unknown): unknown | null;
|
|
11
|
+
setValueByCondition<U>(object: U, key: string, value: unknown): U;
|
|
12
|
+
isTransformer(object: Record<string, unknown>): boolean;
|
|
13
|
+
isStaticArrayMapper(object: Record<string, unknown>): boolean;
|
|
14
|
+
isDynamicArrayMapper(object: Record<string, unknown>): boolean;
|
|
15
|
+
isValidObject(object: object): boolean;
|
|
16
|
+
checkValue(value: any): boolean;
|
|
17
|
+
transformPayload<T, U>(dataSource: T, template?: Record<string, unknown>): U;
|
|
16
18
|
}
|
|
@@ -27,9 +27,6 @@ class TemplateModule {
|
|
|
27
27
|
return this.transformers[transformer]({ context: this.context, value });
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
|
-
checkValue(value) {
|
|
31
|
-
return !!(value || typeof value === "boolean" || typeof value === "number");
|
|
32
|
-
}
|
|
33
30
|
setValueByCondition(object, key, value) {
|
|
34
31
|
return this.checkValue(value)
|
|
35
32
|
? Object.assign(Object.assign({}, object), { [key]: value })
|
|
@@ -40,36 +37,64 @@ class TemplateModule {
|
|
|
40
37
|
(0, lodash_1.has)(object, "fields") ||
|
|
41
38
|
(0, lodash_1.has)(object, "defaultValue"));
|
|
42
39
|
}
|
|
43
|
-
|
|
40
|
+
isStaticArrayMapper(object) {
|
|
41
|
+
return Array.isArray(object);
|
|
42
|
+
}
|
|
43
|
+
isDynamicArrayMapper(object) {
|
|
44
44
|
return !!((0, lodash_1.has)(object, "arraySource") && (0, lodash_1.has)(object, "arrayTemplate"));
|
|
45
45
|
}
|
|
46
|
-
|
|
47
|
-
|
|
46
|
+
isValidObject(object) {
|
|
47
|
+
return (!!object &&
|
|
48
|
+
typeof object === "object" &&
|
|
49
|
+
Object.keys(object).length > 0 &&
|
|
50
|
+
Object.getPrototypeOf(object) !== null &&
|
|
51
|
+
Object.getPrototypeOf(object) === Object.prototype);
|
|
52
|
+
}
|
|
53
|
+
checkValue(value) {
|
|
54
|
+
return !!(value ||
|
|
55
|
+
typeof value === "boolean" ||
|
|
56
|
+
typeof value === "number" ||
|
|
57
|
+
typeof value === "string");
|
|
58
|
+
}
|
|
59
|
+
transformPayload(dataSource, template = this.template) {
|
|
48
60
|
if (!template)
|
|
49
|
-
|
|
61
|
+
return {};
|
|
50
62
|
return Object.keys(template).reduce((acc, key) => {
|
|
51
63
|
const target = template[key];
|
|
52
|
-
let value = (0, lodash_1.get)(
|
|
53
|
-
if (this.
|
|
64
|
+
let value = (0, lodash_1.get)(dataSource, target);
|
|
65
|
+
if (this.isStaticArrayMapper(target)) {
|
|
66
|
+
const finalArray = [];
|
|
67
|
+
for (const arrayTemplate of target) {
|
|
68
|
+
if (this.isValidObject(arrayTemplate)) {
|
|
69
|
+
value = this.transformPayload(dataSource, arrayTemplate);
|
|
70
|
+
if (this.checkValue(value) && this.isValidObject(value))
|
|
71
|
+
finalArray.push(value);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
return this.setValueByCondition(acc, key, finalArray);
|
|
75
|
+
}
|
|
76
|
+
if (this.isDynamicArrayMapper(target)) {
|
|
54
77
|
const { arraySource, arrayTemplate } = target;
|
|
55
|
-
value = (0, lodash_1.get)(
|
|
78
|
+
value = (0, lodash_1.get)(dataSource, arraySource);
|
|
56
79
|
if ((0, lodash_1.isArray)(value)) {
|
|
57
80
|
const finalArray = [];
|
|
58
|
-
for (
|
|
59
|
-
|
|
81
|
+
for (const dataSource of value) {
|
|
82
|
+
value = this.transformPayload(dataSource, arrayTemplate);
|
|
83
|
+
if (this.checkValue(value) && this.isValidObject(value))
|
|
84
|
+
finalArray.push(value);
|
|
60
85
|
}
|
|
61
86
|
return this.setValueByCondition(acc, key, finalArray);
|
|
62
87
|
}
|
|
63
88
|
return this.setValueByCondition(acc, key, []);
|
|
64
89
|
}
|
|
65
|
-
if (
|
|
90
|
+
if (this.isValidObject(target)) {
|
|
66
91
|
if (!this.isTransformer(target)) {
|
|
67
|
-
return this.setValueByCondition(acc, key, this.transformPayload(
|
|
92
|
+
return this.setValueByCondition(acc, key, this.transformPayload(dataSource, target));
|
|
68
93
|
}
|
|
69
94
|
const { fields, transformer, defaultValue } = target;
|
|
70
95
|
if (fields && Array.isArray(fields)) {
|
|
71
|
-
for (
|
|
72
|
-
value = (0, lodash_1.get)(
|
|
96
|
+
for (const field of fields) {
|
|
97
|
+
value = (0, lodash_1.get)(dataSource, field);
|
|
73
98
|
if (transformer)
|
|
74
99
|
value = this.runTransformer(transformer, value);
|
|
75
100
|
if (this.checkValue(value))
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/templateModule/index.ts"],"names":[],"mappings":";;;AAAA,mCAA2C;AAG3C,MAAa,cAAc;IAA3B;QACU,YAAO,GAA4B,EAAE,CAAC;QACtC,aAAQ,GAA4B,EAAE,CAAC;QACvC,iBAAY,GAAiB,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/templateModule/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -5,3 +5,17 @@ export interface ITransformerParams {
|
|
|
5
5
|
export interface ITransformer {
|
|
6
6
|
[x: string]: ({ context, value }: ITransformerParams, ...params: any) => any;
|
|
7
7
|
}
|
|
8
|
+
export interface ITemplateModule {
|
|
9
|
+
setContext(context: Record<string, unknown>): void;
|
|
10
|
+
setTemplate(template: Record<string, unknown>): void;
|
|
11
|
+
setTransformers(transformers: ITransformer): void;
|
|
12
|
+
verifyTransformer(transformer: ITransformer, methodName: string): boolean;
|
|
13
|
+
runTransformer(transformer: string, value?: unknown): unknown | null;
|
|
14
|
+
setValueByCondition<U>(object: U, key: string, value: unknown): U;
|
|
15
|
+
isTransformer(object: Record<string, unknown>): boolean;
|
|
16
|
+
isStaticArrayMapper(object: Record<string, unknown>): boolean;
|
|
17
|
+
isDynamicArrayMapper(object: Record<string, unknown>): boolean;
|
|
18
|
+
isValidObject(object: object): boolean;
|
|
19
|
+
checkValue(value: any): boolean;
|
|
20
|
+
transformPayload<T, U>(obj: T, template?: Record<string, unknown>): U;
|
|
21
|
+
}
|
|
@@ -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.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.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/typescript/lib/lib.es2017.full.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","../src/templateModule/interfaces.ts","../src/templateModule/index.ts","../src/index.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3",{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true},{"version":"9a60b92bca4c1257db03b349d58e63e4868cfc0d1c8d0ba60c2dbc63f4e6c9f6","affectsGlobalScope":true},{"version":"c5c5565225fce2ede835725a92a28ece149f83542aa4866cfb10290bff7b8996","affectsGlobalScope":true},{"version":"7d2dbc2a0250400af0809b0ad5f84686e84c73526de931f84560e483eb16b03c","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"994c234848afc14a2586b6565777f4c0b05dc479ede0a041bfd5becf6dceb586","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},{"version":"0a614c10884200ac9e75264373ff6141e7045107100b134562183360e8fc01df","signature":"64e60fd91c75a7d76f552a7006ce85a8c27605bfa5c23e8ade0f96046c519f1e"},{"version":"e995292098251ee5c98f294eb5a0ddc0ad9db3ee55e504205cf95dc899b0d0e3","signature":"e69c98447e6f34e7f9053a54d2156a8df7b067d598a8b716ca00032cff233ab9"},"d2e3a5e97ca0bf568106173181629e1a03b8f6905a3cf923409f9a4329a459ff"],"root":[42],"options":{"declaration":true,"module":1,"outDir":"./","removeComments":true,"sourceMap":true,"target":4},"fileIdsList":[[27,29,30,31,32,33,34,35,36,37,38,39],[27,28,30,31,32,33,34,35,36,37,38,39],[28,29,30,31,32,33,34,35,36,37,38,39],[27,28,29,31,32,33,34,35,36,37,38,39],[27,28,29,30,32,33,34,35,36,37,38,39],[27,28,29,30,31,33,34,35,36,37,38,39],[27,28,29,30,31,32,34,35,36,37,38,39],[27,28,29,30,31,32,33,35,36,37,38,39],[27,28,29,30,31,32,33,34,36,37,38,39],[27,28,29,30,31,32,33,34,35,37,38,39],[27,28,29,30,31,32,33,34,35,36,38,39],[27,28,29,30,31,32,33,34,35,36,37,39],[27,28,29,30,31,32,33,34,35,36,37,38],[40,41],[39,40],[40]],"referencedMap":[[28,1],[29,2],[27,3],[30,4],[31,5],[32,6],[33,7],[34,8],[35,9],[36,10],[37,11],[38,12],[39,13],[42,14],[41,15]],"exportedModulesMap":[[28,1],[29,2],[27,3],[30,4],[31,5],[32,6],[33,7],[34,8],[35,9],[36,10],[37,11],[38,12],[39,13],[42,14],[41,16]],"semanticDiagnosticsPerFile":[28,29,27,30,31,32,33,34,35,36,37,38,39,24,25,5,6,10,9,2,11,12,13,14,15,16,17,18,3,4,26,22,19,20,21,23,1,8,7,42,41,40]},"version":"5.0.4"}
|
|
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.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.esnext.intl.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/typescript/lib/lib.es2017.full.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","../src/templateModule/interfaces.ts","../src/templateModule/index.ts","../src/index.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"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true},{"version":"9a60b92bca4c1257db03b349d58e63e4868cfc0d1c8d0ba60c2dbc63f4e6c9f6","affectsGlobalScope":true},{"version":"c5c5565225fce2ede835725a92a28ece149f83542aa4866cfb10290bff7b8996","affectsGlobalScope":true},{"version":"7d2dbc2a0250400af0809b0ad5f84686e84c73526de931f84560e483eb16b03c","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"994c234848afc14a2586b6565777f4c0b05dc479ede0a041bfd5becf6dceb586","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},{"version":"9b28da82397533ce8b3b14a1376452df6fde35814fc8bbbe4523daef521f226c","signature":"a637eaef9a2ab9a55a12c88ec49be110240a89dea0c1c3a88d37e014bfea7906"},{"version":"31e0367cd865e23015b3477365330eb840ca28d97ac4681e8e0d5438112fb89a","signature":"e835333fdca658276b53cb23a9108814de0dffd66a246923dd72f4d5dc405648"},"d2e3a5e97ca0bf568106173181629e1a03b8f6905a3cf923409f9a4329a459ff","587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true},"7a435e0c814f58f23e9a0979045ec0ef5909aac95a70986e8bcce30c27dff228",{"version":"241a2e19e03fd1d884e0f304429378d05bc2c1b26b5693c84868f7ad0674982d","affectsGlobalScope":true},"db71be322f07f769200108aa19b79a75dd19a187c9dca2a30c4537b233aa2863","0b70ce7a20fa21c7201a5a972b7f2288cb90ace8a2dde9f3344b5dfc6504abaf",{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","3fd0f1af75fb7abe0ea376aa71541daaf489f3d87c394b1165db684ea44b48be","3690133deae19c8127c5505fcb67b04bdc9eb053796008538a9b9abbb70d85aa","5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"b85c02e14ecb2a873dad5a1de72319b265160ba48f1b83661aeb3bba1366c1bc","affectsGlobalScope":true},"f1a0b2dde686cb8a995d4ed11848be5eaf76fd5d56532942e0737b39d4a02c6d","fc3764040518a1008dd04bdc80964591b566b896283e00df85c95851c1f46237","55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","790623a47c5eda62910098884ecb154dc0e5f3a23fc36c1bfb3b5b9ed44e2c2d","42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","354612fe1d49ecc9551ea3a27d94eef2887b64ef4a71f72ca444efe0f2f0ba80",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"6a325d4c96569bdd5a9a59f819a672e2d5644ee6cf98ab910e0064402557af8d","5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d",{"version":"14a50dafe3f45713f7f27cb6320dff07c6ac31678f07959c2134260061bf91ff","affectsGlobalScope":true},{"version":"5761c90b0cabdd6bd1f5fb1c3bf942088fdd39e18ed35dbe39b0c34bc733bf13","affectsGlobalScope":true},"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","0cab4d7d4edc40cd3af9eea7c3ed6d1016910c0954c49c4297e479bf3822a625","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270","1fb6c5ec52332a8b531a8d7a5300ac9301f98c4fe62f68e744e0841ccba65e7e",{"version":"ab294c4b7279318ee2a8fdf681305457ecc05970c94108d304933f18823eeac1","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","bbda6ea452a2386093a1eda18a6e26a989e98869f1b9f37e46f510a986d2e740","812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","244cdeb8c344eb42e6142cbb0727752b9b735443fba7007c11b14ca06ebed97c",{"version":"75dd741ca6a6c8d2437a6ca8349b64b816421dbf9fe82dd026afaba965576962","affectsGlobalScope":true},{"version":"8799401a7ab57764f0d464513a7fa7c72e1d70a226b172ec60fff534ea94d108","affectsGlobalScope":true},"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","92db194ef7d208d5e4b6242a3434573fd142a621ff996d84cc9dbba3553277d0","69f5747ad0887c24c76858ed458712101771349f2287e21871fcd1562daa7dc0",{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true},"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"220717df86539e219f619d31965d177e7235185e4bc6f6e6ed7e11a9b004d5ca"],"root":[64],"options":{"declaration":true,"module":1,"outDir":"./","removeComments":true,"sourceMap":true,"target":4},"fileIdsList":[[49,51,52,53,54,55,56,57,58,59,60,61,111],[49,50,52,53,54,55,56,57,58,59,60,61,111],[50,51,52,53,54,55,56,57,58,59,60,61,111],[49,50,51,53,54,55,56,57,58,59,60,61,111],[49,50,51,52,54,55,56,57,58,59,60,61,111],[49,50,51,52,53,55,56,57,58,59,60,61,111],[49,50,51,52,53,54,56,57,58,59,60,61,111],[49,50,51,52,53,54,55,57,58,59,60,61,111],[49,50,51,52,53,54,55,56,58,59,60,61,111],[49,50,51,52,53,54,55,56,57,59,60,61,111],[49,50,51,52,53,54,55,56,57,58,60,61,111],[49,50,51,52,53,54,55,56,57,58,59,61,111],[49,50,51,52,53,54,55,56,57,58,59,60,111],[65,111],[68,111],[69,74,102,111],[70,81,82,89,99,110,111],[70,71,81,89,111],[72,111],[73,74,82,90,111],[74,99,107,111],[75,77,81,89,111],[76,111],[77,78,111],[81,111],[79,81,111],[81,82,83,99,110,111],[81,82,83,96,99,102,111],[111,115],[111],[77,81,84,89,99,110,111],[81,82,84,85,89,99,107,110,111],[84,86,99,107,110,111],[65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117],[81,87,111],[88,110,111],[77,81,89,99,111],[90,111],[91,111],[68,92,111],[93,109,111,115],[94,111],[95,111],[81,96,97,111],[96,98,111,113],[69,81,99,100,101,102,111],[69,99,101,111],[99,100,111],[102,111],[103,111],[99,111],[81,105,106,111],[105,106,111],[74,89,99,107,111],[108,111],[89,109,111],[69,84,95,110,111],[74,111],[99,111,112],[111,113],[111,114],[69,74,81,83,92,99,110,111,113,115],[99,111,116],[62,63,111],[61,62,111],[62]],"referencedMap":[[50,1],[51,2],[49,3],[52,4],[53,5],[54,6],[55,7],[56,8],[57,9],[58,10],[59,11],[60,12],[61,13],[65,14],[66,14],[68,15],[69,16],[70,17],[71,18],[72,19],[73,20],[74,21],[75,22],[76,23],[77,24],[78,24],[80,25],[79,26],[81,25],[82,27],[83,28],[67,29],[117,30],[84,31],[85,32],[86,33],[118,34],[87,35],[88,36],[89,37],[90,38],[91,39],[92,40],[93,41],[94,42],[95,43],[96,44],[97,44],[98,45],[99,46],[101,47],[100,48],[102,49],[103,50],[104,51],[105,52],[106,53],[107,54],[108,55],[109,56],[110,57],[111,58],[112,59],[113,60],[114,61],[115,62],[116,63],[46,30],[47,30],[8,30],[9,30],[13,30],[12,30],[2,30],[14,30],[15,30],[16,30],[17,30],[18,30],[19,30],[20,30],[21,30],[3,30],[4,30],[48,30],[25,30],[22,30],[23,30],[24,30],[26,30],[27,30],[28,30],[5,30],[29,30],[30,30],[31,30],[32,30],[6,30],[36,30],[33,30],[34,30],[35,30],[37,30],[7,30],[38,30],[43,30],[44,30],[39,30],[40,30],[41,30],[42,30],[1,30],[45,30],[11,30],[10,30],[64,64],[63,65],[62,30]],"exportedModulesMap":[[50,1],[51,2],[49,3],[52,4],[53,5],[54,6],[55,7],[56,8],[57,9],[58,10],[59,11],[60,12],[61,13],[65,14],[66,14],[68,15],[69,16],[70,17],[71,18],[72,19],[73,20],[74,21],[75,22],[76,23],[77,24],[78,24],[80,25],[79,26],[81,25],[82,27],[83,28],[67,29],[117,30],[84,31],[85,32],[86,33],[118,34],[87,35],[88,36],[89,37],[90,38],[91,39],[92,40],[93,41],[94,42],[95,43],[96,44],[97,44],[98,45],[99,46],[101,47],[100,48],[102,49],[103,50],[104,51],[105,52],[106,53],[107,54],[108,55],[109,56],[110,57],[111,58],[112,59],[113,60],[114,61],[115,62],[116,63],[46,30],[47,30],[8,30],[9,30],[13,30],[12,30],[2,30],[14,30],[15,30],[16,30],[17,30],[18,30],[19,30],[20,30],[21,30],[3,30],[4,30],[48,30],[25,30],[22,30],[23,30],[24,30],[26,30],[27,30],[28,30],[5,30],[29,30],[30,30],[31,30],[32,30],[6,30],[36,30],[33,30],[34,30],[35,30],[37,30],[7,30],[38,30],[43,30],[44,30],[39,30],[40,30],[41,30],[42,30],[1,30],[45,30],[11,30],[10,30],[64,64],[63,66]],"semanticDiagnosticsPerFile":[50,51,49,52,53,54,55,56,57,58,59,60,61,65,66,68,69,70,71,72,73,74,75,76,77,78,80,79,81,82,83,67,117,84,85,86,118,87,88,89,90,91,92,93,94,95,96,97,98,99,101,100,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,46,47,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,48,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,1,45,11,10,64,63,62]},"version":"5.0.4"}
|