@odg/json-log 1.1.0 → 1.2.1

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/README.md CHANGED
@@ -86,6 +86,9 @@ const processor = new JSONLoggerPlugin(
86
86
  logger.pushHandler(consoleLogger);
87
87
  logger.pushProcessor(processor);
88
88
 
89
+ // If you need convert Request and response request headers body, params in string before log
90
+ logger.pushProcessor(RequestStringPlugin);
91
+
89
92
  plugin.setIdentifier(randomUUID());
90
93
  ```
91
94
 
@@ -123,7 +126,9 @@ LOG JSON Return
123
126
  "url": "string",
124
127
  "baseURL": "string",
125
128
  "method": "Methods | string",
126
- "headers": "HttpHeadersInterface",
129
+ "headers": {
130
+ "header-key": "header-value"
131
+ },
127
132
  "params": "ParametersInterface",
128
133
  "data": "RequestData",
129
134
  "timeout": "number",
@@ -0,0 +1,3 @@
1
+ import { UnknownException } from "@odg/exception";
2
+ export declare class JSONParserException extends UnknownException {
3
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.JSONParserException = void 0;
4
+ const exception_1 = require("@odg/exception");
5
+ class JSONParserException extends exception_1.UnknownException {
6
+ }
7
+ exports.JSONParserException = JSONParserException;
8
+ //# sourceMappingURL=JSONParserException.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"JSONParserException.js","sourceRoot":"","sources":["../../src/Exceptions/JSONParserException.ts"],"names":[],"mappings":";;;AAAA,8CAAkD;AAElD,MAAa,mBAAoB,SAAQ,4BAAgB;CAExD;AAFD,kDAEC"}
@@ -1 +1,2 @@
1
1
  export * from "./JSONParserUnknownException";
2
+ export * from "./JSONParserException";
@@ -15,4 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./JSONParserUnknownException"), exports);
18
+ __exportStar(require("./JSONParserException"), exports);
18
19
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Exceptions/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+DAA6C"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Exceptions/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+DAA6C;AAC7C,wDAAsC"}
@@ -13,15 +13,33 @@ export interface ExceptionObjectLoggerInterface {
13
13
  export type LoggerObjectRequestInterface = RequestInterface<unknown> & {
14
14
  response?: Omit<ResponseInterface<unknown, unknown>, "request">;
15
15
  };
16
+ export interface GitLoggerInterface {
17
+ release?: string;
18
+ branch?: string;
19
+ }
16
20
  export interface LoggerObjectInterface {
17
21
  type: LogLevel;
18
22
  index: string;
19
23
  instance: string;
24
+ message: string;
20
25
  identifier?: string;
21
- gitRelease?: string;
22
- gitBranch?: string;
26
+ git?: GitLoggerInterface;
23
27
  exception?: ExceptionObjectLoggerInterface;
24
28
  exceptionPreview?: ExceptionObjectLoggerInterface[];
25
29
  request?: LoggerObjectRequestInterface;
26
30
  createdAt: Date;
27
31
  }
32
+ export interface LoggerStringInterface extends Omit<LoggerObjectInterface, "request"> {
33
+ request?: LoggerRequestStringInterface;
34
+ }
35
+ export interface LoggerRequestStringInterface extends Omit<LoggerObjectRequestInterface, "data" | "headers" | "params" | "proxy" | "response"> {
36
+ headers: string;
37
+ data: string;
38
+ params: string;
39
+ proxy: string;
40
+ response?: {
41
+ data: string;
42
+ status: number;
43
+ headers: string;
44
+ };
45
+ }
@@ -1,16 +1,15 @@
1
1
  import { type LogLevel } from "@odg/log";
2
- import { type LoggerObjectInterface, type ExceptionObjectLoggerInterface, type LoggerObjectRequestInterface } from "..";
2
+ import { type GitLoggerInterface, type LoggerObjectInterface, type ExceptionObjectLoggerInterface, type LoggerObjectRequestInterface } from "..";
3
3
  export declare class JSONLogger implements LoggerObjectInterface {
4
4
  type: LogLevel;
5
5
  index: string;
6
6
  instance: string;
7
- message: unknown;
7
+ message: string;
8
8
  createdAt: Date;
9
- identifier?: string | undefined;
10
- gitRelease?: string | undefined;
11
- gitBranch?: string | undefined;
12
- exception?: ExceptionObjectLoggerInterface | undefined;
13
- exceptionPreview?: ExceptionObjectLoggerInterface[] | undefined;
14
- request?: LoggerObjectRequestInterface | undefined;
15
- constructor(type: LogLevel, index: string, instance: string, message: unknown, createdAt: Date, identifier?: string | undefined, gitRelease?: string | undefined, gitBranch?: string | undefined, exception?: ExceptionObjectLoggerInterface | undefined, exceptionPreview?: ExceptionObjectLoggerInterface[] | undefined, request?: LoggerObjectRequestInterface | undefined);
9
+ identifier?: string;
10
+ git?: GitLoggerInterface;
11
+ exception?: ExceptionObjectLoggerInterface;
12
+ exceptionPreview?: ExceptionObjectLoggerInterface[];
13
+ request?: LoggerObjectRequestInterface;
14
+ constructor(options: LoggerObjectInterface);
16
15
  }
@@ -8,24 +8,22 @@ class JSONLogger {
8
8
  message;
9
9
  createdAt;
10
10
  identifier;
11
- gitRelease;
12
- gitBranch;
11
+ git;
13
12
  exception;
14
13
  exceptionPreview;
15
14
  request;
16
- // eslint-disable-next-line better-max-params/better-max-params
17
- constructor(type, index, instance, message, createdAt, identifier, gitRelease, gitBranch, exception, exceptionPreview, request) {
18
- this.type = type;
19
- this.index = index;
20
- this.instance = instance;
21
- this.message = message;
22
- this.createdAt = createdAt;
23
- this.identifier = identifier;
24
- this.gitRelease = gitRelease;
25
- this.gitBranch = gitBranch;
26
- this.exception = exception;
27
- this.exceptionPreview = exceptionPreview;
28
- this.request = request;
15
+ // eslint-disable-next-line max-statements
16
+ constructor(options) {
17
+ this.type = options.type;
18
+ this.index = options.index;
19
+ this.instance = options.instance;
20
+ this.message = options.message;
21
+ this.createdAt = options.createdAt;
22
+ this.identifier = options.identifier;
23
+ this.git = options.git;
24
+ this.exception = options.exception;
25
+ this.exceptionPreview = options.exceptionPreview;
26
+ this.request = options.request;
29
27
  }
30
28
  }
31
29
  exports.JSONLogger = JSONLogger;
@@ -1 +1 @@
1
- {"version":3,"file":"JSONLogger.js","sourceRoot":"","sources":["../../src/Packages/JSONLogger.ts"],"names":[],"mappings":";;;AAIA,MAAa,UAAU;IAIR;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAZX,+DAA+D;IAC/D,YACW,IAAc,EACd,KAAa,EACb,QAAgB,EAChB,OAAgB,EAChB,SAAe,EACf,UAAmB,EACnB,UAAmB,EACnB,SAAkB,EAClB,SAA0C,EAC1C,gBAAmD,EACnD,OAAsC;QAVtC,SAAI,GAAJ,IAAI,CAAU;QACd,UAAK,GAAL,KAAK,CAAQ;QACb,aAAQ,GAAR,QAAQ,CAAQ;QAChB,YAAO,GAAP,OAAO,CAAS;QAChB,cAAS,GAAT,SAAS,CAAM;QACf,eAAU,GAAV,UAAU,CAAS;QACnB,eAAU,GAAV,UAAU,CAAS;QACnB,cAAS,GAAT,SAAS,CAAS;QAClB,cAAS,GAAT,SAAS,CAAiC;QAC1C,qBAAgB,GAAhB,gBAAgB,CAAmC;QACnD,YAAO,GAAP,OAAO,CAA+B;IAEjD,CAAC;CAEJ;AAlBD,gCAkBC"}
1
+ {"version":3,"file":"JSONLogger.js","sourceRoot":"","sources":["../../src/Packages/JSONLogger.ts"],"names":[],"mappings":";;;AASA,MAAa,UAAU;IAEZ,IAAI,CAAW;IAEf,KAAK,CAAS;IAEd,QAAQ,CAAS;IAEjB,OAAO,CAAS;IAEhB,SAAS,CAAO;IAEhB,UAAU,CAAU;IAEpB,GAAG,CAAsB;IAEzB,SAAS,CAAkC;IAE3C,gBAAgB,CAAoC;IAEpD,OAAO,CAAgC;IAE9C,0CAA0C;IAC1C,YAAmB,OAA8B;QAC7C,IAAI,CAAC,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;QACzB,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC;QAC3B,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAC;QACjC,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;QAC/B,IAAI,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS,CAAC;QACnC,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU,CAAC;QACrC,IAAI,CAAC,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC;QACvB,IAAI,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS,CAAC;QACnC,IAAI,CAAC,gBAAgB,GAAG,OAAO,CAAC,gBAAgB,CAAC;QACjD,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;IACnC,CAAC;CAEJ;AApCD,gCAoCC"}
@@ -67,7 +67,21 @@ class JSONLoggerPlugin {
67
67
  }
68
68
  }
69
69
  async logJSON(level, message) {
70
- return new JSONLogger_1.JSONLogger(level, this.appName, this.getInstance(), JSON.stringify(message) || node_util_1.default.format(message), new Date(), this.identifier, await this.getGitRelease().catch(() => void 0), await this.getGitBranch().catch(() => void 0), await this.parseException(message), await this.parseExceptionPreview(message), await this.parseRequest(message));
70
+ return new JSONLogger_1.JSONLogger({
71
+ type: level,
72
+ index: this.appName,
73
+ instance: this.getInstance(),
74
+ message: JSON.stringify(message) || node_util_1.default.format(message),
75
+ createdAt: new Date(),
76
+ identifier: this.identifier,
77
+ git: {
78
+ release: await this.getGitRelease().catch(() => void 0),
79
+ branch: await this.getGitBranch().catch(() => void 0),
80
+ },
81
+ exception: await this.parseException(message),
82
+ exceptionPreview: await this.parseExceptionPreview(message),
83
+ request: await this.parseRequest(message),
84
+ });
71
85
  }
72
86
  /**
73
87
  * Define a unique identifier for the current request, for
@@ -1 +1 @@
1
- {"version":3,"file":"JSONLoggerPlugin.js","sourceRoot":"","sources":["../../src/Packages/JSONLoggerPlugin.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"JSONLoggerPlugin.js","sourceRoot":"","sources":["../../src/Packages/JSONLoggerPlugin.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,15 @@
1
+ import { type LogLevel } from "@odg/log";
2
+ import { type LoggerStringInterface, type LoggerRequestStringInterface, type GitLoggerInterface, type ExceptionObjectLoggerInterface } from "..";
3
+ export declare class JSONLoggerString {
4
+ type: LogLevel;
5
+ index: string;
6
+ instance: string;
7
+ message: string;
8
+ createdAt: Date;
9
+ identifier?: string;
10
+ git?: GitLoggerInterface;
11
+ exception?: ExceptionObjectLoggerInterface;
12
+ exceptionPreview?: ExceptionObjectLoggerInterface[];
13
+ request?: LoggerRequestStringInterface;
14
+ constructor(options: LoggerStringInterface);
15
+ }
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.JSONLoggerString = void 0;
4
+ class JSONLoggerString {
5
+ type;
6
+ index;
7
+ instance;
8
+ message;
9
+ createdAt;
10
+ identifier;
11
+ git;
12
+ exception;
13
+ exceptionPreview;
14
+ // eslint-disable-next-line max-statements
15
+ constructor(options) {
16
+ this.type = options.type;
17
+ this.index = options.index;
18
+ this.instance = options.instance;
19
+ this.message = options.message;
20
+ this.createdAt = options.createdAt;
21
+ this.identifier = options.identifier;
22
+ this.git = options.git;
23
+ this.exception = options.exception;
24
+ this.exceptionPreview = options.exceptionPreview;
25
+ this.request = options.request;
26
+ }
27
+ }
28
+ exports.JSONLoggerString = JSONLoggerString;
29
+ //# sourceMappingURL=JSONLoggerString.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"JSONLoggerString.js","sourceRoot":"","sources":["../../src/Packages/JSONLoggerString.ts"],"names":[],"mappings":";;;AASA,MAAa,gBAAgB;IAElB,IAAI,CAAW;IAEf,KAAK,CAAS;IAEd,QAAQ,CAAS;IAEjB,OAAO,CAAS;IAEhB,SAAS,CAAO;IAEhB,UAAU,CAAU;IAEpB,GAAG,CAAsB;IAEzB,SAAS,CAAkC;IAE3C,gBAAgB,CAAoC;IAI3D,0CAA0C;IAC1C,YAAmB,OAA8B;QAC7C,IAAI,CAAC,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;QACzB,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC;QAC3B,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAC;QACjC,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;QAC/B,IAAI,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS,CAAC;QACnC,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU,CAAC;QACrC,IAAI,CAAC,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC;QACvB,IAAI,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS,CAAC;QACnC,IAAI,CAAC,gBAAgB,GAAG,OAAO,CAAC,gBAAgB,CAAC;QACjD,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;IACnC,CAAC;CAEJ;AApCD,4CAoCC"}
@@ -0,0 +1,12 @@
1
+ import { type LoggerParserInterface, type LoggerPluginInterface } from "@odg/log";
2
+ export declare class RequestStringPlugin implements LoggerPluginInterface {
3
+ /**
4
+ * Plugin parse request params Headers/Query/Body to String
5
+ *
6
+ * @param {LoggerParserInterface} data Received Data params
7
+ * @returns {Promise<LoggerParserInterface>}
8
+ */
9
+ parser(data: LoggerParserInterface): Promise<LoggerParserInterface>;
10
+ private requestToString;
11
+ private recordToStringValues;
12
+ }
@@ -0,0 +1,48 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RequestStringPlugin = void 0;
4
+ const Exceptions_1 = require("../Exceptions");
5
+ const JSONLoggerString_1 = require("./JSONLoggerString");
6
+ const _1 = require(".");
7
+ class RequestStringPlugin {
8
+ /**
9
+ * Plugin parse request params Headers/Query/Body to String
10
+ *
11
+ * @param {LoggerParserInterface} data Received Data params
12
+ * @returns {Promise<LoggerParserInterface>}
13
+ */
14
+ async parser(data) {
15
+ const { message } = data;
16
+ if (!(message instanceof _1.JSONLogger)) {
17
+ throw new Exceptions_1.JSONParserException("Register JSONLogger before RequestStringPlugin");
18
+ }
19
+ try {
20
+ return {
21
+ ...data,
22
+ message: new JSONLoggerString_1.JSONLoggerString({
23
+ ...message,
24
+ request: this.requestToString(message.request),
25
+ }),
26
+ };
27
+ }
28
+ catch (error) {
29
+ throw new Exceptions_1.JSONParserUnknownException("JSON String Plugin Parser exception", error);
30
+ }
31
+ }
32
+ requestToString(request) {
33
+ if (!request)
34
+ return;
35
+ return Object.fromEntries(Object.entries(request).map(([key, value]) => {
36
+ if (key === "response") {
37
+ return [key, this.recordToStringValues(request.response)];
38
+ }
39
+ return [key, typeof value === "object" ? JSON.stringify(value) : value];
40
+ }));
41
+ }
42
+ recordToStringValues(response) {
43
+ return Object.fromEntries(Object.entries(response)
44
+ .map(([key, value]) => [key, typeof value === "object" ? JSON.stringify(value) : value]));
45
+ }
46
+ }
47
+ exports.RequestStringPlugin = RequestStringPlugin;
48
+ //# sourceMappingURL=RequestStringPlugin.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RequestStringPlugin.js","sourceRoot":"","sources":["../../src/Packages/RequestStringPlugin.ts"],"names":[],"mappings":";;;AAEA,8CAAgF;AAGhF,yDAAsD;AAEtD,wBAA+B;AAE/B,MAAa,mBAAmB;IAE5B;;;;;OAKG;IACI,KAAK,CAAC,MAAM,CAAC,IAA2B;QAC3C,MAAM,EAAE,OAAO,EAAE,GAAG,IAAI,CAAC;QACzB,IAAI,CAAC,CAAC,OAAO,YAAY,aAAU,CAAC,EAAE;YAClC,MAAM,IAAI,gCAAmB,CAAC,gDAAgD,CAAC,CAAC;SACnF;QAED,IAAI;YACA,OAAO;gBACH,GAAG,IAAI;gBACP,OAAO,EAAE,IAAI,mCAAgB,CAAC;oBAC1B,GAAG,OAAO;oBACV,OAAO,EAAE,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,OAAO,CAAC;iBACjD,CAAC;aACL,CAAC;SACL;QAAC,OAAO,KAAK,EAAE;YACZ,MAAM,IAAI,uCAA0B,CAAC,qCAAqC,EAAE,KAAK,CAAC,CAAC;SACtF;IACL,CAAC;IAEO,eAAe,CAAC,OAAsC;QAC1D,IAAI,CAAC,OAAO;YAAE,OAAO;QAErB,OAAO,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,CAAE,GAAG,EAAE,KAAK,CAAE,EAAE,EAAE;YACrE,IAAI,GAAG,KAAK,UAAU,EAAE;gBACpB,OAAO,CAAE,GAAG,EAAE,IAAI,CAAC,oBAAoB,CAAC,OAAO,CAAC,QAAS,CAAC,CAAE,CAAC;aAChE;YAED,OAAO,CAAE,GAAG,EAAE,OAAO,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAE,CAAC;QAC9E,CAAC,CAAC,CAAiC,CAAC;IACxC,CAAC;IAEO,oBAAoB,CAAC,QAAiC;QAC1D,OAAO,MAAM,CAAC,WAAW,CACrB,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC;aACnB,GAAG,CAAC,CAAC,CAAE,GAAG,EAAE,KAAK,CAAE,EAAE,EAAE,CAAC,CAAE,GAAG,EAAE,OAAO,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAE,CAAC,CACnG,CAAC;IACN,CAAC;CAEJ;AA9CD,kDA8CC"}
@@ -1,2 +1,4 @@
1
1
  export * from "./JSONLoggerPlugin";
2
2
  export * from "./JSONLogger";
3
+ export * from "./RequestStringPlugin";
4
+ export * from "./JSONLoggerString";
@@ -16,4 +16,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./JSONLoggerPlugin"), exports);
18
18
  __exportStar(require("./JSONLogger"), exports);
19
+ __exportStar(require("./RequestStringPlugin"), exports);
20
+ __exportStar(require("./JSONLoggerString"), exports);
19
21
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Packages/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qDAAmC;AACnC,+CAA6B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Packages/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qDAAmC;AACnC,+CAA6B;AAC7B,wDAAsC;AACtC,qDAAmC"}
@@ -1 +1 @@
1
- {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.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.date.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.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/@odg/exception/dist/exceptions/Exception.d.ts","../node_modules/@odg/exception/dist/exceptions/UnknownException.d.ts","../node_modules/@odg/exception/dist/index.d.ts","../src/Exceptions/JSONParserUnknownException.ts","../src/Exceptions/index.ts","../node_modules/@odg/log/dist/logs/AbstractLogger.d.ts","../node_modules/@odg/log/dist/logs/NullLogger.d.ts","../node_modules/@odg/log/dist/Interfaces/LogLevel.d.ts","../node_modules/@odg/log/dist/Interfaces/LoggerInterface.d.ts","../node_modules/@odg/log/dist/logs/ConsoleLogger.d.ts","../node_modules/@odg/log/dist/logs/index.d.ts","../node_modules/@odg/log/dist/Interfaces/LoggerAwareInterface.d.ts","../node_modules/@odg/log/dist/Interfaces/LoggerPluginInterface.d.ts","../node_modules/@odg/log/dist/Interfaces/index.d.ts","../node_modules/@odg/log/dist/Exceptions/InvalidArgumentException.d.ts","../node_modules/@odg/log/dist/Exceptions/index.d.ts","../node_modules/@odg/log/dist/index.d.ts","../node_modules/@odg/message/dist/interfaces/headers.d.ts","../node_modules/@odg/message/dist/interfaces/options.d.ts","../node_modules/@odg/message/dist/interfaces/response.d.ts","../node_modules/@odg/message/dist/interfaces/request.d.ts","../node_modules/@odg/message/dist/interfaces/MessageInterface.d.ts","../node_modules/@odg/message/dist/messages/MessageException.d.ts","../node_modules/@odg/message/dist/messages/MessageUnknownException.d.ts","../node_modules/@odg/message/dist/index.d.ts","../src/Interfaces/LoggerObjectInterface.ts","../src/Interfaces/index.ts","../node_modules/stackframe/stackframe.d.ts","../node_modules/error-stack-parser/error-stack-parser.d.ts","../src/Packages/JSONLogger.ts","../src/Packages/JSONLoggerPlugin.ts","../src/Packages/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":"2ac9cdcfb8f8875c18d14ec5796a8b029c426f73ad6dc3ffb580c228b58d1c44","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","impliedFormat":1},{"version":"bed7b7ba0eb5a160b69af72814b4dde371968e40b6c5e73d3a9f7bee407d158c","impliedFormat":1},{"version":"0075fa5ceda385bcdf3488e37786b5a33be730e8bc4aa3cf1e78c63891752ce8","affectsGlobalScope":true,"impliedFormat":1},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true,"impliedFormat":1},{"version":"09226e53d1cfda217317074a97724da3e71e2c545e18774484b61562afc53cd2","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b41361862022eb72fcc8a7f34680ac842aca802cf4bc1f915e8c620c9ce4331","affectsGlobalScope":true,"impliedFormat":1},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true,"impliedFormat":1},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true,"impliedFormat":1},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc496ef4377553e461efcf7cc5a5a57cf59f9962aea06b5e722d54a36bf66ea1","affectsGlobalScope":true,"impliedFormat":1},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true,"impliedFormat":1},{"version":"930b0e15811f84e203d3c23508674d5ded88266df4b10abee7b31b2ac77632d2","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true,"impliedFormat":1},{"version":"65be38e881453e16f128a12a8d36f8b012aa279381bf3d4dc4332a4905ceec83","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true,"impliedFormat":1},{"version":"e1913f656c156a9e4245aa111fbb436d357d9e1fe0379b9a802da7fe3f03d736","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"f35a831e4f0fe3b3697f4a0fe0e3caa7624c92b78afbecaf142c0f93abfaf379","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"12c82dbc857502e3f867f0a567388d4291cb20ddb2906cc9fbeff253662c9112","impliedFormat":1},{"version":"57dfec185a3d2984b6f7c0f57f3e0f6b74d33f122f339c00eae96c87ea7e06e1","impliedFormat":1},{"version":"1df58ba1cc41c4166dcbe53efd88611b9ddf5a27f33f4eb88a9189ea2ea56473","impliedFormat":1},{"version":"92a8178a01f555f766bff40621ca1381eff839edd0d66d9e4879b83f44fc40b7","signature":"adf607fa837098598651cc92a101668112dcf831c0213c7a44b89017834c9771","impliedFormat":1},{"version":"745445cd33c18051cafbef6fc9439d4ff2fdec799ed2ea570e0039b51711a3a8","impliedFormat":1},{"version":"5fb7425c689328382447529bef2266aef3df6285e47c5f15bb03eacf947cdf07","impliedFormat":1},{"version":"6c0a1d6a8c59dbb104947bfe184955e7f0578da4d1294caeef8ce42a92831a89","impliedFormat":1},{"version":"f4090ec12a125e50604ff28d3f56b86298de938e8b993509fb4c579654283445","impliedFormat":1},{"version":"55b7ba27bdae9a9fbcef436e8c7b7921d7bcd6190fce73771826e02ef11a2284","impliedFormat":1},{"version":"4d4b2fd5d19e2d9a38a92bb277413ec5c10a3c90c31e10c21281d4b6942bf569","impliedFormat":1},{"version":"4c14264476c3b884c937115ed077ef4193a41f6b1a06d7bd92f25ec7a75fdef7","impliedFormat":1},{"version":"3780d6f73250d8e84041ad49ecddb6eb31c0b9a40ed1fa170778423cf22b39c2","impliedFormat":1},{"version":"d7e4de0c0f74ff1f5f7e9fbc1a1893a1cb004d7e2ca9a591a189de036ac19e14","impliedFormat":1},{"version":"2a30b6d92bd7796269cab865938a54f6839d1d1785d3228a5de39fc7ce824954","impliedFormat":1},{"version":"37a843978dfb875ce02c1193f16a228ee42a4d7e30cca6e066be86b4f53c3e31","impliedFormat":1},{"version":"008268eb10d9fae42574458105d571a6af93d529dd377fa2e942763d5d1cc7ba","impliedFormat":1},{"version":"02223fcf090480f55977fbae1bc0ca6694d113e5e2d09adff92e031e6a8ca0f9","impliedFormat":1},{"version":"8047e110c20591b472d8986eeed76bb7656ec4ce295a64a31a31141ae4c2e941","impliedFormat":1},{"version":"acff1c12ae48618e334f5e5c554ef0e2db3b4e8ab57240a4e4ebaec69af111eb","impliedFormat":1},{"version":"111bcb69339040b4ab26a0c8a9e672e1530cd788f3a6d10119aabd073b67268a","impliedFormat":1},{"version":"eca0bfdfabc8e5f79844be1015f5ea06c5850b69214ca0e340d23f76440c192a","impliedFormat":1},{"version":"e44c07ac368df2479ca68215a55ec1c7a9ad32b1f2ab193d03af8c0334d810e4","impliedFormat":1},{"version":"df314da1a78365c92f1c47129b4a06441b1d5387ef2c6d93877a393b56292222","impliedFormat":1},{"version":"553f8a0a55f54c7bc9b90dc5b1222bb2b7fd6f0e523a6ee2401d21252962a83f","impliedFormat":1},{"version":"400b0f4132200ec79e221ab388117e6f0680d5ab3f6bae4e96089fe4d8d3532c","impliedFormat":1},{"version":"6bc890a8f28ebfe850d0ed286ef08cb5cbcc7814f3526043517ba41b30191188","signature":"6ce6e994182a43674aad9dcce0a0f554a99f8df2a2341e3daacfb8f2e5ac8f27","impliedFormat":1},{"version":"2afdb55ab35f7810d9139c746865a639d52daff6468bfa718039e17b67961b04","impliedFormat":1},{"version":"c9781854fc9f983ea3fcef49fd066341461a0446a66c524e96ae79fb3a6ca965","impliedFormat":1},{"version":"9946a41faae574e77456ae5d725ef16e29f429111046062adebab99002d670e4","impliedFormat":1},{"version":"aa6f576ce6eb855335dd309ca2544a315d8aae5bdb16eabef55fcb49055e7826","signature":"bdc4abd091f8b6a796ca067c780565fc7dc720c70ebd19eff7156ea6b06ba887","impliedFormat":1},{"version":"43833dd17897ccfe2f74f6cebd501b69b07950bb4b099818fe383e7fe0aac5a0","signature":"93476221f4ccd1ce897abc6d395fbe450d080a400b12a9549a5f7867d158ae3d","impliedFormat":1},{"version":"ec1718f86c1e30bf637052f7463b1a6644d7a414cbb01465f3414e1c2444f869","impliedFormat":1},{"version":"56a8fb0ba676d83bfeb0c8b09cb33b4cdb0d2a540ad21e3fea1f8b2d4fed19e7","impliedFormat":1},{"version":"ba8691cf6bea9d53e6bf6cbc22af964a9633a21793981a1be3dce65e7a714d8b","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"afddd0617cc7ef650f743c75b868df9d53f17f9ff0cccc255fb5f632e857be38","impliedFormat":1},{"version":"7c387a02bf156d8d45667134d32518ac3ca1b99ca50ca9deff2c1a03eb6d1a81","affectsGlobalScope":true,"impliedFormat":1},{"version":"3719525a8f6ab731e3dfd585d9f87df55ec7d50d461df84f74eb4d68bb165244","impliedFormat":1},{"version":"f993522fd7d01ae1ead930091fe35130b8415720d6c2123dc2a7e8eb11bb3cba","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"b787b5b54349a24f07d089b612a9fb8ff024dbbe991ff52ea2b188a6b1230644","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"1cdcfc1f624d6c08aa12c73935f6e13f095919cd99edf95752951796eb225729","impliedFormat":1},{"version":"df6d4b6ba1e64f682091862faa30104e93891f9e7202d006bf5e7a88ab4a0dbe","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"c2fcbd6fad600e96fee8c5df1a62e908d477f5b47a9374b2bab7e74f52cfcc92","affectsGlobalScope":true,"impliedFormat":1},{"version":"7070d7c36e429a4f7d6f2d37110c8bd669d89b16843c0271a56a808255ab19e8","impliedFormat":1},{"version":"195f480a21390edf72d383e9368b9a0af75c674cf92d489fcf91b8c3da94779e","impliedFormat":1},{"version":"91d3d8f536f22dcaeeace0fc6f3544d3562e266a27cf3a2fe280b8051af5d006","impliedFormat":1},{"version":"9503113febdd737095465792cc074d541902c82c0aea3922f940de18784812ad","impliedFormat":1},{"version":"8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","impliedFormat":1},{"version":"7e5307e29dfd5d5b827203b85cb665d8d5bf932a6c6f393457da8e9ed1906761","impliedFormat":1},{"version":"987b3a9098738f5f40efe9fee5734b55f4c8ac599a045922b1470bb325183ed6","affectsGlobalScope":true,"impliedFormat":1},{"version":"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","impliedFormat":1},{"version":"7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","impliedFormat":1},{"version":"b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30","impliedFormat":1},{"version":"69e93290f59948789d5fce61cb0b89dde93747a4576744d0d6fae41ee3991646","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d319604ab444d77b25dc531ace1811795c676834e564497e4b90ba1b77aafd5","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"b7998044b77ef376a39c07f038f317d875b3f51b5f8f733384d85ecd083182e7","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"a4a2a5596dd7e531ab0ce785ed1c8f6940e0632e5bcaa7e8c144bd0e41029297","affectsGlobalScope":true,"impliedFormat":1},{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true,"impliedFormat":1},{"version":"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","impliedFormat":1},{"version":"1422cd9e705adcc09088fda85a900c2b70e3ad36ea85846f68bd1a884cdf4e2b","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"22d7b95cb63dead43834ae20ee492c9c8b6d90db3957d21665199f0efb1d3e26","affectsGlobalScope":true,"impliedFormat":1},{"version":"a9fc1469744055a3435f203123246b96c094e7ff8c4e1c3863829d9b705b7a34","affectsGlobalScope":true,"impliedFormat":1},{"version":"868831cab82b65dfe1d68180e898af1f2101e89ba9b754d1db6fb8cc2fac1921","impliedFormat":1},{"version":"5d842e3acce41c978af367a28163cef799170dadd06edf2111cc9ecab6eae968","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"52120bb7e4583612225bdf08e7c12559548170f11e660d33a33623bae9bbdbba","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d5be4343a9ace4611f04a6fffd91ceba91265fa15bfb0149306e0a6963e1a015","impliedFormat":1}],"root":[68,69,90,91,[94,97]],"options":{"alwaysStrict":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":100,"newLine":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","preserveConstEnums":true,"removeComments":false,"sourceMap":true,"strict":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":9},"fileIdsList":[[144],[67,144],[65,66,144],[79,144],[73,144],[72,144],[78,144],[72,73,76,77,144],[75,78,80,144],[81,144],[70,73,81,144],[70,144],[70,71,74,144],[82,83,84,85,86,87,88,144],[67,84,85,144],[82,83,84,144],[82,85,144],[98,144],[101,144],[102,107,135,144],[103,114,115,122,132,143,144],[103,104,114,122,144],[105,144],[106,107,115,123,144],[107,132,140,144],[108,110,114,122,144],[109,144],[110,111,144],[114,144],[112,114,144],[114,115,116,132,143,144],[114,115,116,129,132,135,144],[144,148],[110,114,117,122,132,143,144],[114,115,117,118,122,132,140,143,144],[117,119,132,140,143,144],[98,99,100,101,102,103,104,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],[114,120,144],[121,143,144,148],[110,114,122,132,144],[123,144],[124,144],[101,125,144],[126,142,144,148],[127,144],[128,144],[114,129,130,144],[129,131,144,146],[102,114,132,133,134,135,144],[102,132,134,144],[132,133,144],[135,144],[136,144],[101,132,144],[114,138,139,144],[138,139,144],[107,122,132,140,144],[141,144],[122,142,144],[102,117,128,143,144],[107,144],[132,144,145],[121,144,146],[144,147],[102,107,114,116,125,132,143,144,146,148],[132,144,149],[92,144],[68,144],[81,84,89,144],[90,144],[81,97,144],[67,68,81,89,91,93,94,103,144],[94,95,144],[69,91,96,144],[67],[81,84,89],[81,97],[81,89,91,94]],"referencedMap":[[65,1],[66,2],[67,3],[79,2],[80,4],[72,1],[76,5],[73,6],[77,7],[78,8],[81,9],[70,10],[74,11],[71,12],[75,13],[89,14],[86,15],[82,1],[83,1],[85,16],[84,17],[87,15],[88,15],[98,18],[99,18],[101,19],[102,20],[103,21],[104,22],[105,23],[106,24],[107,25],[108,26],[109,27],[110,28],[111,28],[113,29],[112,30],[114,29],[115,31],[116,32],[100,33],[150,1],[117,34],[118,35],[119,36],[151,37],[120,38],[121,39],[122,40],[123,41],[124,42],[125,43],[126,44],[127,45],[128,46],[129,47],[130,47],[131,48],[132,49],[134,50],[133,51],[135,52],[136,53],[137,54],[138,55],[139,56],[140,57],[141,58],[142,59],[143,60],[144,61],[145,62],[146,63],[147,64],[148,65],[149,66],[93,67],[92,1],[63,1],[64,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[4,1],[23,1],[27,1],[24,1],[25,1],[26,1],[28,1],[29,1],[30,1],[5,1],[31,1],[32,1],[33,1],[34,1],[6,1],[38,1],[35,1],[36,1],[37,1],[39,1],[7,1],[40,1],[45,1],[46,1],[41,1],[42,1],[43,1],[44,1],[8,1],[50,1],[47,1],[48,1],[49,1],[51,1],[9,1],[52,1],[53,1],[54,1],[57,1],[55,1],[56,1],[58,1],[59,1],[10,1],[1,1],[11,1],[62,1],[61,1],[60,1],[68,2],[69,68],[90,69],[91,70],[94,71],[95,72],[96,73],[97,74]],"exportedModulesMap":[[65,1],[66,2],[67,3],[79,2],[80,4],[72,1],[76,5],[73,6],[77,7],[78,8],[81,9],[70,10],[74,11],[71,12],[75,13],[89,14],[86,15],[82,1],[83,1],[85,16],[84,17],[87,15],[88,15],[98,18],[99,18],[101,19],[102,20],[103,21],[104,22],[105,23],[106,24],[107,25],[108,26],[109,27],[110,28],[111,28],[113,29],[112,30],[114,29],[115,31],[116,32],[100,33],[150,1],[117,34],[118,35],[119,36],[151,37],[120,38],[121,39],[122,40],[123,41],[124,42],[125,43],[126,44],[127,45],[128,46],[129,47],[130,47],[131,48],[132,49],[134,50],[133,51],[135,52],[136,53],[137,54],[138,55],[139,56],[140,57],[141,58],[142,59],[143,60],[144,61],[145,62],[146,63],[147,64],[148,65],[149,66],[93,67],[92,1],[63,1],[64,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[4,1],[23,1],[27,1],[24,1],[25,1],[26,1],[28,1],[29,1],[30,1],[5,1],[31,1],[32,1],[33,1],[34,1],[6,1],[38,1],[35,1],[36,1],[37,1],[39,1],[7,1],[40,1],[45,1],[46,1],[41,1],[42,1],[43,1],[44,1],[8,1],[50,1],[47,1],[48,1],[49,1],[51,1],[9,1],[52,1],[53,1],[54,1],[57,1],[55,1],[56,1],[58,1],[59,1],[10,1],[1,1],[11,1],[62,1],[61,1],[60,1],[68,75],[69,68],[90,76],[91,70],[94,77],[95,78],[96,73],[97,74]],"semanticDiagnosticsPerFile":[65,66,67,79,80,72,76,73,77,78,81,70,74,71,75,89,86,82,83,85,84,87,88,98,99,101,102,103,104,105,106,107,108,109,110,111,113,112,114,115,116,100,150,117,118,119,151,120,121,122,123,124,125,126,127,128,129,130,131,132,134,133,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,93,92,63,64,12,14,13,2,15,16,17,18,19,20,21,22,3,4,23,27,24,25,26,28,29,30,5,31,32,33,34,6,38,35,36,37,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,53,54,57,55,56,58,59,10,1,11,62,61,60,68,69,90,91,94,95,96,97]},"version":"5.2.2"}
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.es2023.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.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.date.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.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/@odg/exception/dist/exceptions/Exception.d.ts","../node_modules/@odg/exception/dist/exceptions/UnknownException.d.ts","../node_modules/@odg/exception/dist/index.d.ts","../src/Exceptions/JSONParserUnknownException.ts","../src/Exceptions/JSONParserException.ts","../src/Exceptions/index.ts","../node_modules/@odg/log/dist/logs/AbstractLogger.d.ts","../node_modules/@odg/log/dist/logs/NullLogger.d.ts","../node_modules/@odg/log/dist/Interfaces/LogLevel.d.ts","../node_modules/@odg/log/dist/Interfaces/LoggerInterface.d.ts","../node_modules/@odg/log/dist/logs/ConsoleLogger.d.ts","../node_modules/@odg/log/dist/Interfaces/LoggerAwareInterface.d.ts","../node_modules/@odg/log/dist/Interfaces/LoggerPluginInterface.d.ts","../node_modules/@odg/log/dist/Interfaces/index.d.ts","../node_modules/@odg/log/dist/logs/Logger.d.ts","../node_modules/@odg/log/dist/logs/index.d.ts","../node_modules/@odg/log/dist/Exceptions/InvalidArgumentException.d.ts","../node_modules/@odg/log/dist/Exceptions/index.d.ts","../node_modules/@odg/log/dist/index.d.ts","../node_modules/@odg/message/dist/interfaces/headers.d.ts","../node_modules/@odg/message/dist/interfaces/options.d.ts","../node_modules/@odg/message/dist/interfaces/response.d.ts","../node_modules/@odg/message/dist/interfaces/request.d.ts","../node_modules/@odg/message/dist/interfaces/MessageInterface.d.ts","../node_modules/@odg/message/dist/messages/MessageException.d.ts","../node_modules/@odg/message/dist/messages/MessageUnknownException.d.ts","../node_modules/@odg/message/dist/index.d.ts","../src/Interfaces/LoggerObjectInterface.ts","../src/Interfaces/index.ts","../node_modules/stackframe/stackframe.d.ts","../node_modules/error-stack-parser/error-stack-parser.d.ts","../src/Packages/JSONLogger.ts","../src/Packages/JSONLoggerPlugin.ts","../src/Packages/JSONLoggerString.ts","../src/Packages/RequestStringPlugin.ts","../src/Packages/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":"2ac9cdcfb8f8875c18d14ec5796a8b029c426f73ad6dc3ffb580c228b58d1c44","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","impliedFormat":1},{"version":"bed7b7ba0eb5a160b69af72814b4dde371968e40b6c5e73d3a9f7bee407d158c","impliedFormat":1},{"version":"0075fa5ceda385bcdf3488e37786b5a33be730e8bc4aa3cf1e78c63891752ce8","affectsGlobalScope":true,"impliedFormat":1},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true,"impliedFormat":1},{"version":"09226e53d1cfda217317074a97724da3e71e2c545e18774484b61562afc53cd2","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b41361862022eb72fcc8a7f34680ac842aca802cf4bc1f915e8c620c9ce4331","affectsGlobalScope":true,"impliedFormat":1},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true,"impliedFormat":1},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true,"impliedFormat":1},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc496ef4377553e461efcf7cc5a5a57cf59f9962aea06b5e722d54a36bf66ea1","affectsGlobalScope":true,"impliedFormat":1},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true,"impliedFormat":1},{"version":"930b0e15811f84e203d3c23508674d5ded88266df4b10abee7b31b2ac77632d2","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true,"impliedFormat":1},{"version":"65be38e881453e16f128a12a8d36f8b012aa279381bf3d4dc4332a4905ceec83","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true,"impliedFormat":1},{"version":"e1913f656c156a9e4245aa111fbb436d357d9e1fe0379b9a802da7fe3f03d736","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"f35a831e4f0fe3b3697f4a0fe0e3caa7624c92b78afbecaf142c0f93abfaf379","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"12c82dbc857502e3f867f0a567388d4291cb20ddb2906cc9fbeff253662c9112","impliedFormat":1},{"version":"57dfec185a3d2984b6f7c0f57f3e0f6b74d33f122f339c00eae96c87ea7e06e1","impliedFormat":1},{"version":"1df58ba1cc41c4166dcbe53efd88611b9ddf5a27f33f4eb88a9189ea2ea56473","impliedFormat":1},{"version":"92a8178a01f555f766bff40621ca1381eff839edd0d66d9e4879b83f44fc40b7","signature":"adf607fa837098598651cc92a101668112dcf831c0213c7a44b89017834c9771","impliedFormat":1},{"version":"8e5ae3f02edf484dec2101f3e39d229ec491077cbb67d21708720b889605eaec","signature":"76e269f8560ca9b42a4d380d83b005b419bd1eaa59f8e4d8f42c3a4fe349d239","impliedFormat":1},{"version":"86550addfc6b3d0c2ea308db6bddbf3c05c595fa00700959a96d24b203a76337","impliedFormat":1},{"version":"5fb7425c689328382447529bef2266aef3df6285e47c5f15bb03eacf947cdf07","impliedFormat":1},{"version":"6c0a1d6a8c59dbb104947bfe184955e7f0578da4d1294caeef8ce42a92831a89","impliedFormat":1},{"version":"f4090ec12a125e50604ff28d3f56b86298de938e8b993509fb4c579654283445","impliedFormat":1},{"version":"55b7ba27bdae9a9fbcef436e8c7b7921d7bcd6190fce73771826e02ef11a2284","impliedFormat":1},{"version":"4d4b2fd5d19e2d9a38a92bb277413ec5c10a3c90c31e10c21281d4b6942bf569","impliedFormat":1},{"version":"3780d6f73250d8e84041ad49ecddb6eb31c0b9a40ed1fa170778423cf22b39c2","impliedFormat":1},{"version":"d7e4de0c0f74ff1f5f7e9fbc1a1893a1cb004d7e2ca9a591a189de036ac19e14","impliedFormat":1},{"version":"2a30b6d92bd7796269cab865938a54f6839d1d1785d3228a5de39fc7ce824954","impliedFormat":1},{"version":"184a4427afee07dcc4842a5f0c6a2f67493fe0479813d7478e016b425adfa7f4","impliedFormat":1},{"version":"219cee76ad18f2244c2be1d0473ff3aca74a7124292506c39af390b0f06bdc68","impliedFormat":1},{"version":"37a843978dfb875ce02c1193f16a228ee42a4d7e30cca6e066be86b4f53c3e31","impliedFormat":1},{"version":"008268eb10d9fae42574458105d571a6af93d529dd377fa2e942763d5d1cc7ba","impliedFormat":1},{"version":"02223fcf090480f55977fbae1bc0ca6694d113e5e2d09adff92e031e6a8ca0f9","impliedFormat":1},{"version":"8047e110c20591b472d8986eeed76bb7656ec4ce295a64a31a31141ae4c2e941","impliedFormat":1},{"version":"acff1c12ae48618e334f5e5c554ef0e2db3b4e8ab57240a4e4ebaec69af111eb","impliedFormat":1},{"version":"111bcb69339040b4ab26a0c8a9e672e1530cd788f3a6d10119aabd073b67268a","impliedFormat":1},{"version":"eca0bfdfabc8e5f79844be1015f5ea06c5850b69214ca0e340d23f76440c192a","impliedFormat":1},{"version":"e44c07ac368df2479ca68215a55ec1c7a9ad32b1f2ab193d03af8c0334d810e4","impliedFormat":1},{"version":"df314da1a78365c92f1c47129b4a06441b1d5387ef2c6d93877a393b56292222","impliedFormat":1},{"version":"553f8a0a55f54c7bc9b90dc5b1222bb2b7fd6f0e523a6ee2401d21252962a83f","impliedFormat":1},{"version":"400b0f4132200ec79e221ab388117e6f0680d5ab3f6bae4e96089fe4d8d3532c","impliedFormat":1},{"version":"0aacc5442bc3ccac0483c452fa0d6589ce3b313bd243d94344c34637ff247f1f","signature":"2c559fd30b946faa474a63cc167a555cd0111a682e20c4b47c70fc616bf315d4","impliedFormat":1},{"version":"2afdb55ab35f7810d9139c746865a639d52daff6468bfa718039e17b67961b04","impliedFormat":1},{"version":"c9781854fc9f983ea3fcef49fd066341461a0446a66c524e96ae79fb3a6ca965","impliedFormat":1},{"version":"9946a41faae574e77456ae5d725ef16e29f429111046062adebab99002d670e4","impliedFormat":1},{"version":"de494f8c9280bed00e080f6456ec708aef522798011d18d5cf80134985f7e322","signature":"d7951085e6a2c6b8816a3b2b926343e04e0fdbafe6aff0c8b930e72dcc486202","impliedFormat":1},{"version":"51ef834774239c714165b60565ca50e311d01d55f33227fe6f535ade25fee6ef","signature":"93476221f4ccd1ce897abc6d395fbe450d080a400b12a9549a5f7867d158ae3d","impliedFormat":1},{"version":"36dea7f4e46a6cb10a01c39b48bc148a66c17e82183b2a00573ffb11301ba748","signature":"58ea48ee84877f0bd3438c4f0306eb262d02d395415e580325a16de7c2529eaa","impliedFormat":1},{"version":"74f77315494323a9b8f28b886672757d136c65350a92032f6afb2a1ff7d6186e","signature":"6dd2006db7ad11757f25547ef9d3bdf0a20de483523eb0269d251de1f59c97d7","impliedFormat":1},{"version":"4dd9ee2cfce54355f88237aefa1cae1981f3f561702df9dbc24f6692439073ca","impliedFormat":1},{"version":"56a8fb0ba676d83bfeb0c8b09cb33b4cdb0d2a540ad21e3fea1f8b2d4fed19e7","impliedFormat":1},{"version":"9004b6757fde33f153c3a7694c15b017531a0261fafb99e0542a8a6f61be1708","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"32465ea19404cb188e84cf08c6b1f6b12d739140436402cdbc184a3fd20a7d81","affectsGlobalScope":true,"impliedFormat":1},{"version":"39b1a50d543770780b0409a4caacb87f3ff1d510aedfeb7dc06ed44188256f89","impliedFormat":1},{"version":"da5afd11bfce6e59d63f28fcf1ce25cd099188de33c08f9fad297186713fb17c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1f2d8573577ad731813e4358b913b667923a94e6456f645918fba11134040d13","impliedFormat":1},{"version":"fe39ceafa361b6d339b518936275eff89a77e7dfe92f2efa5fb97abf9a95ca49","impliedFormat":1},{"version":"815c751d4afee4651d61edf6204187372a55ca8e0126a906986b4859ec51f192","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"8a67dc9edddace374b1a96852ab5bbb87b631d439a928e6df326587d1f4fe9f0","impliedFormat":1},{"version":"fbcf2c3cde728761b05dbf8e7a9b8be1f5514dc324c6f83b87ba5c0668119b98","impliedFormat":1},{"version":"7eb0662b995994db248290a0f0a1d8ed685991a162ff9eb4dee36f099cccd0d9","impliedFormat":1},{"version":"16bbaee4dd96ec8b67026329a4f5fdef6313e42a5c305ddeb498c3d65fb557b8","impliedFormat":1},{"version":"37a36483218b24a50be2548a71557603e01ce38154c9f3f635c6c8275abd9fb1","impliedFormat":1},{"version":"c6cf9428f45f3d78b07df7d7aab1569994c177d36549e3a962f952d89f026bc4","impliedFormat":1},{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d30c9292ff36b2af594109d4413f34b952b1258c50b0361a3db1f7d94ec1e193","affectsGlobalScope":true,"impliedFormat":1},{"version":"d617229425b25df2046a9c1e321dd1b50825abc8e3b38048453345483f8601e1","impliedFormat":1},{"version":"badd4f5fe0cca51915ef597852d07598ca490f6d1d9d68d505a159f18cde792d","impliedFormat":1},{"version":"4b846e4951415068e2cf1bdb8bfb8d6373b2815ba72b1986c95bac3aec37bca7","impliedFormat":1},{"version":"e6d2e297c73016fc98095238b25428591d129481c50eb1b6e575d35f3f8c621e","impliedFormat":1},{"version":"e3baa0c5780c2c805ec33a999722a2f740b572eb3746fd0a5f93a0a5c3dbf7f6","impliedFormat":1},{"version":"7e5307e29dfd5d5b827203b85cb665d8d5bf932a6c6f393457da8e9ed1906761","impliedFormat":1},{"version":"e492737de7f023b47ff14ca54b9635ba3dcd64816ed3316c9f3a784cf5897173","affectsGlobalScope":true,"impliedFormat":1},{"version":"40798238bc2e17ee787a815dbce4f2c89c161e5ad2fde062fb50454c093fa433","impliedFormat":1},{"version":"30b15efd2b52c7e5f0f7c1e360afc43f487a2cffad5c01756f06eb323eee3efd","impliedFormat":1},{"version":"323506ce173f7f865f42f493885ee3dacd18db6359ea1141d57676d3781ce10c","impliedFormat":1},{"version":"e7391fb34deecd321ae15af659cbfb0b9abc995c5ed4b3d703ba768e44b89670","affectsGlobalScope":true,"impliedFormat":1},{"version":"0900d10c17bae29648b266c0ae7cef0c95ebb2a1d81541b833833ed0996ac85a","affectsGlobalScope":true,"impliedFormat":1},{"version":"58520d6ae3a339cd22ffc528b50b21e4e8f5247a87913eb1c697c1af62eb0395","impliedFormat":1},{"version":"186614c0f9ca0ec3cfa988f1dc01c6f392a798710072ff4bdf20ce56e09a6dfd","impliedFormat":1},{"version":"2de7a21c92226fb8abbeed7a0a9bd8aa6d37e4c68a8c7ff7938c644267e9fcc1","impliedFormat":1},{"version":"6d6070c5c81ba0bfe58988c69e3ba3149fc86421fd383f253aeb071cbf29cd41","impliedFormat":1},{"version":"48dab0d6e633b8052e7eaa0efb0bb3d58a733777b248765eafcb0b0349439834","impliedFormat":1},{"version":"6e4b2642721462bf62d19593770659f268a6ca1e9fd15543747efb3ac471cee3","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"8258e69a3b0de494ea55eeea7a4d3216ac112c12006c74dfd381c0d5e42a2607","impliedFormat":1},{"version":"cdaaf046791d7d588f28f32197c5d6acc43343e62540a67eed194c9c20535fdc","impliedFormat":1},{"version":"4b1ff655bd8edd879dd4f04f15338ce0109f58ccb424165d44fa07e7ea39c4bf","impliedFormat":1},{"version":"6fa3d3f427475a5d21fed826d6457e7f9ee3a0abeb3124fc41f385f112368d2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"b85e57e102a1df14980b46d745c9fe8e16a9b0a69a98fb1a2c558c9137ab30d6","affectsGlobalScope":true,"impliedFormat":1},{"version":"4e228e78c1e9b0a75c70588d59288f63a6258e8b1fe4a67b0c53fe03461421d9","impliedFormat":1},{"version":"e5ce801ce5e85d7281807d8a65a21ee9767c122c87da262891582b4afead5ec0","impliedFormat":1},{"version":"76a89af04f2ba1807309320dab5169c0d1243b80738b4a2005989e40a136733e","impliedFormat":1},{"version":"c045b664abf3fc2a4750fa96117ab2735e4ed45ddd571b2a6a91b9917e231a02","impliedFormat":1},{"version":"057d7f56aacd575a6240838d2684d34a340acde815f84190ea5e9afd611aeee6","affectsGlobalScope":true,"impliedFormat":1},{"version":"40ed27386f21a739bd0d2e2cfed563760588f2aeaa7ad149c1bf1454a7ec743a","affectsGlobalScope":true,"impliedFormat":1},{"version":"d1ef1d8516286380fd0a6f498f1650d374a8cb5f03d91633b6124e4fb8fb131d","impliedFormat":1},{"version":"6244a29671c12a54fc5b1393dde60bac655bd778d84758a4db847f684d4da3a5","impliedFormat":1},{"version":"8bc733ffd630d49d495663bfecf590281c8f5412b33657430ab471b558206705","impliedFormat":1},{"version":"171c1840775746917e7b813c9df0fc0b84876f96623a6cfef3b3de7ea816b8c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"f2b9440f98d6f94c8105883a2b65aee2fce0248f71f41beafd0a80636f3a565d","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"872201e32a629152e8bc7118e8977ac37a1a62ab6756c2ac3e6b53859f0a8fa1","impliedFormat":1}],"root":[[68,70],92,93,[96,101]],"options":{"alwaysStrict":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":100,"newLine":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","preserveConstEnums":true,"removeComments":false,"sourceMap":true,"strict":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":9},"fileIdsList":[[148],[67,148],[65,66,148],[81,148],[74,148],[73,148],[78,148],[73,74,76,77,148],[78,80,82,148],[83,148],[71,74,83,148],[71,78,148],[71,148],[71,72,75,79,148],[84,85,86,87,88,89,90,148],[67,86,87,148],[84,85,86,148],[84,87,148],[102,148],[105,148],[106,111,139,148],[107,118,119,126,136,147,148],[107,108,118,126,148],[109,148],[110,111,119,127,148],[111,136,144,148],[112,114,118,126,148],[113,148],[114,115,148],[118,148],[116,118,148],[118,119,120,136,147,148],[118,119,120,133,136,139,148],[148,152],[114,118,121,126,136,147,148],[118,119,121,122,126,136,144,147,148],[121,123,136,144,147,148],[102,103,104,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],[118,124,148],[125,147,148,152],[114,118,126,136,148],[127,148],[128,148],[105,129,148],[130,146,148,152],[131,148],[132,148],[118,133,134,148],[133,135,148,150],[106,118,136,137,138,139,148],[106,136,138,148],[136,137,148],[139,148],[140,148],[105,136,148],[118,142,143,148],[142,143,148],[111,126,136,144,148],[145,148],[126,146,148],[106,121,132,147,148],[111,148],[136,148,149],[125,148,150],[148,151],[106,111,118,120,129,136,147,148,150,152],[136,148,153],[94,148],[68,69,148],[83,86,91,148],[92,148],[83,101,148],[67,68,83,91,93,95,96,107,148],[70,83,93,98,100,148],[96,97,98,99,148],[70,93,100,148],[67],[83,86,91],[83,101],[83,91,93,96],[83]],"referencedMap":[[65,1],[66,2],[67,3],[81,2],[82,4],[73,1],[76,5],[74,6],[77,7],[78,8],[83,9],[71,10],[75,11],[79,12],[72,13],[80,14],[91,15],[88,16],[84,1],[85,1],[87,17],[86,18],[89,16],[90,16],[102,19],[103,19],[105,20],[106,21],[107,22],[108,23],[109,24],[110,25],[111,26],[112,27],[113,28],[114,29],[115,29],[117,30],[116,31],[118,30],[119,32],[120,33],[104,34],[154,1],[121,35],[122,36],[123,37],[155,38],[124,39],[125,40],[126,41],[127,42],[128,43],[129,44],[130,45],[131,46],[132,47],[133,48],[134,48],[135,49],[136,50],[138,51],[137,52],[139,53],[140,54],[141,55],[142,56],[143,57],[144,58],[145,59],[146,60],[147,61],[148,62],[149,63],[150,64],[151,65],[152,66],[153,67],[95,68],[94,1],[63,1],[64,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[4,1],[23,1],[27,1],[24,1],[25,1],[26,1],[28,1],[29,1],[30,1],[5,1],[31,1],[32,1],[33,1],[34,1],[6,1],[38,1],[35,1],[36,1],[37,1],[39,1],[7,1],[40,1],[45,1],[46,1],[41,1],[42,1],[43,1],[44,1],[8,1],[50,1],[47,1],[48,1],[49,1],[51,1],[9,1],[52,1],[53,1],[54,1],[57,1],[55,1],[56,1],[58,1],[59,1],[10,1],[1,1],[11,1],[62,1],[61,1],[60,1],[69,2],[68,2],[70,69],[92,70],[93,71],[96,72],[97,73],[98,72],[99,74],[100,75],[101,76]],"exportedModulesMap":[[65,1],[66,2],[67,3],[81,2],[82,4],[73,1],[76,5],[74,6],[77,7],[78,8],[83,9],[71,10],[75,11],[79,12],[72,13],[80,14],[91,15],[88,16],[84,1],[85,1],[87,17],[86,18],[89,16],[90,16],[102,19],[103,19],[105,20],[106,21],[107,22],[108,23],[109,24],[110,25],[111,26],[112,27],[113,28],[114,29],[115,29],[117,30],[116,31],[118,30],[119,32],[120,33],[104,34],[154,1],[121,35],[122,36],[123,37],[155,38],[124,39],[125,40],[126,41],[127,42],[128,43],[129,44],[130,45],[131,46],[132,47],[133,48],[134,48],[135,49],[136,50],[138,51],[137,52],[139,53],[140,54],[141,55],[142,56],[143,57],[144,58],[145,59],[146,60],[147,61],[148,62],[149,63],[150,64],[151,65],[152,66],[153,67],[95,68],[94,1],[63,1],[64,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[4,1],[23,1],[27,1],[24,1],[25,1],[26,1],[28,1],[29,1],[30,1],[5,1],[31,1],[32,1],[33,1],[34,1],[6,1],[38,1],[35,1],[36,1],[37,1],[39,1],[7,1],[40,1],[45,1],[46,1],[41,1],[42,1],[43,1],[44,1],[8,1],[50,1],[47,1],[48,1],[49,1],[51,1],[9,1],[52,1],[53,1],[54,1],[57,1],[55,1],[56,1],[58,1],[59,1],[10,1],[1,1],[11,1],[62,1],[61,1],[60,1],[69,77],[68,77],[70,69],[92,78],[93,71],[96,79],[97,80],[98,79],[99,81],[100,75],[101,76]],"semanticDiagnosticsPerFile":[65,66,67,81,82,73,76,74,77,78,83,71,75,79,72,80,91,88,84,85,87,86,89,90,102,103,105,106,107,108,109,110,111,112,113,114,115,117,116,118,119,120,104,154,121,122,123,155,124,125,126,127,128,129,130,131,132,133,134,135,136,138,137,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,95,94,63,64,12,14,13,2,15,16,17,18,19,20,21,22,3,4,23,27,24,25,26,28,29,30,5,31,32,33,34,6,38,35,36,37,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,53,54,57,55,56,58,59,10,1,11,62,61,60,69,68,70,92,93,96,97,98,99,100,101]},"version":"5.2.2"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odg/json-log",
3
- "version": "1.1.0",
3
+ "version": "1.2.1",
4
4
  "description": "parse your log in JSON formatter",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",