@odg/axios 1.5.1 → 1.6.0
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/dist/AxiosMessage.d.ts +0 -8
- package/dist/AxiosMessage.js +2 -29
- package/dist/AxiosMessage.js.map +1 -1
- package/dist/interceptors/AxiosInterceptor.js +6 -3
- package/dist/interceptors/AxiosInterceptor.js.map +1 -1
- package/dist/interceptors/AxiosInterceptorRequest.js +1 -1
- package/dist/interceptors/AxiosInterceptorRequest.js.map +1 -1
- package/dist/interceptors/AxiosInterceptorResponse.js +2 -2
- package/dist/interceptors/AxiosInterceptorResponse.js.map +1 -1
- package/dist/parser/AxiosParser.js.map +1 -1
- package/dist/parser/AxiosRequestParser.d.ts +2 -2
- package/dist/parser/AxiosRequestParser.js +3 -3
- package/dist/parser/AxiosRequestParser.js.map +1 -1
- package/dist/parser/AxiosResponseParser.d.ts +4 -4
- package/dist/parser/AxiosResponseParser.js +5 -5
- package/dist/parser/AxiosResponseParser.js.map +1 -1
- package/dist/register.js +9 -3
- package/dist/register.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +4 -4
package/dist/AxiosMessage.d.ts
CHANGED
|
@@ -15,12 +15,4 @@ export declare class AxiosMessage<RequestData, ResponseData> implements MessageI
|
|
|
15
15
|
* @returns {Promise<ResponseInterface<RequestD, ResponseD>>}
|
|
16
16
|
*/
|
|
17
17
|
request<RequestD = RequestData, ResponseD = ResponseData>(options: RequestInterface<RequestD>): Promise<ResponseInterface<RequestD, ResponseD>>;
|
|
18
|
-
/**
|
|
19
|
-
* Request Exception parse MessageException
|
|
20
|
-
*
|
|
21
|
-
* @param {unknown} error Error Exception
|
|
22
|
-
* @throws {MessageException} Convert Message Exception class
|
|
23
|
-
* @returns {Promise<Error>}
|
|
24
|
-
*/
|
|
25
|
-
private requestException;
|
|
26
18
|
}
|
package/dist/AxiosMessage.js
CHANGED
|
@@ -5,7 +5,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.AxiosMessage = void 0;
|
|
7
7
|
const exception_1 = require("@odg/exception");
|
|
8
|
-
const message_1 = require("@odg/message");
|
|
9
8
|
const axios_1 = __importDefault(require("axios"));
|
|
10
9
|
const AxiosInterceptorRequest_1 = require("./interceptors/AxiosInterceptorRequest");
|
|
11
10
|
const AxiosInterceptorResponse_1 = require("./interceptors/AxiosInterceptorResponse");
|
|
@@ -32,38 +31,12 @@ class AxiosMessage {
|
|
|
32
31
|
async request(options) {
|
|
33
32
|
try {
|
|
34
33
|
const response = await this.client.request(AxiosRequestParser_1.AxiosRequestParser.parseMessageToLibrary(options));
|
|
35
|
-
return
|
|
34
|
+
return AxiosResponseParser_1.AxiosResponseParser.parseLibraryToMessage(response);
|
|
36
35
|
}
|
|
37
36
|
catch (error) {
|
|
38
|
-
throw
|
|
37
|
+
throw exception_1.Exception.parse(error);
|
|
39
38
|
}
|
|
40
39
|
}
|
|
41
|
-
/**
|
|
42
|
-
* Request Exception parse MessageException
|
|
43
|
-
*
|
|
44
|
-
* @param {unknown} error Error Exception
|
|
45
|
-
* @throws {MessageException} Convert Message Exception class
|
|
46
|
-
* @returns {Promise<Error>}
|
|
47
|
-
*/
|
|
48
|
-
async requestException(error) {
|
|
49
|
-
const exceptionConverted = exception_1.Exception.parse(error);
|
|
50
|
-
if (!exceptionConverted)
|
|
51
|
-
return error;
|
|
52
|
-
const requestParser = axios_1.default.isAxiosError(error) && error.config
|
|
53
|
-
? await AxiosRequestParser_1.AxiosRequestParser.parseLibraryToMessage(error.config)
|
|
54
|
-
: undefined;
|
|
55
|
-
const responseParser = axios_1.default.isAxiosError(error) && "response" in error && error.response
|
|
56
|
-
? await AxiosResponseParser_1.AxiosResponseParser.parseLibraryToMessage(error.response)
|
|
57
|
-
: undefined;
|
|
58
|
-
const exception = new message_1.MessageException(exceptionConverted.message, exceptionConverted.preview, undefined, requestParser, responseParser);
|
|
59
|
-
Object.defineProperty(exception, "isAxiosError", {
|
|
60
|
-
configurable: true,
|
|
61
|
-
enumerable: false,
|
|
62
|
-
value: axios_1.default.isAxiosError(error),
|
|
63
|
-
writable: true,
|
|
64
|
-
});
|
|
65
|
-
return exception;
|
|
66
|
-
}
|
|
67
40
|
}
|
|
68
41
|
exports.AxiosMessage = AxiosMessage;
|
|
69
42
|
//# sourceMappingURL=AxiosMessage.js.map
|
package/dist/AxiosMessage.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AxiosMessage.js","sourceRoot":"","sources":["../src/AxiosMessage.ts"],"names":[],"mappings":";;;;;;AAAA,8CAA2C;
|
|
1
|
+
{"version":3,"file":"AxiosMessage.js","sourceRoot":"","sources":["../src/AxiosMessage.ts"],"names":[],"mappings":";;;;;;AAAA,8CAA2C;AAQ3C,kDAGe;AAEf,oFAAiF;AACjF,sFAAmF;AACnF,oEAAiE;AACjE,sEAAmE;AAEnE,MAAa,YAAY;IAEL,YAAY,CAG1B;IAEe,MAAM,CAAgB;IAEvC,YAAmB,MAA+C;QAC9D,IAAI,CAAC,MAAM,GAAG,eAAK,CAAC,MAAM,CAAC,MAAM,IAAI,uCAAkB,CAAC,qBAAqB,CAAC,MAAM,CAAC,CAAC,CAAC;QAEvF,IAAI,CAAC,YAAY,GAAG;YAChB,OAAO,EAAE,IAAI,iDAAuB,CAChC,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,OAAO,CACnC;YACD,QAAQ,EAAE,IAAI,mDAAwB,CAClC,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,QAAQ,CACpC;SACJ,CAAC;IACN,CAAC;IAED;;;;;;;OAOG;IACI,KAAK,CAAC,OAAO,CAGlB,OAAmC;QACjC,IAAI,CAAC;YACD,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,OAAO,CACtC,uCAAkB,CAAC,qBAAqB,CAAC,OAAO,CAAC,CACpD,CAAC;YAEF,OAAO,yCAAmB,CAAC,qBAAqB,CAAC,QAAQ,CAAC,CAAC;QAC/D,CAAC;QAAC,OAAO,KAAc,EAAE,CAAC;YACtB,MAAM,qBAAS,CAAC,KAAK,CAAC,KAAK,CAAU,CAAC;QAC1C,CAAC;IACL,CAAC;CAEJ;AA7CD,oCA6CC"}
|
|
@@ -17,9 +17,12 @@ class AxiosInterceptor {
|
|
|
17
17
|
}
|
|
18
18
|
onRejected(onRejected) {
|
|
19
19
|
return async (error) => {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
const parserError = message_1.MessageException.parse(error)
|
|
21
|
+
?? new message_1.MessageUnknownException("Axios Message empty error", error);
|
|
22
|
+
if (!onRejected) {
|
|
23
|
+
throw parserError;
|
|
24
|
+
}
|
|
25
|
+
return onRejected(parserError);
|
|
23
26
|
};
|
|
24
27
|
}
|
|
25
28
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AxiosInterceptor.js","sourceRoot":"","sources":["../../src/interceptors/AxiosInterceptor.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"AxiosInterceptor.js","sourceRoot":"","sources":["../../src/interceptors/AxiosInterceptor.ts"],"names":[],"mappings":";;;AAAA,0CAA8F;AAG9F,MAAsB,gBAAgB;IAGX;IADvB,YACuB,WAAsD;QAAtD,gBAAW,GAAX,WAAW,CAA2C;IAE7E,CAAC;IAEM,KAAK,CAAC,EAAU;QACnB,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;IAC/B,CAAC;IAEM,KAAK;QACR,IAAI,OAAO,IAAI,IAAI,CAAC,WAAW,EAAE,CAAC;YAC7B,IAAI,CAAC,WAAW,CAAC,KAA0B,EAAE,CAAC;QACnD,CAAC;IACL,CAAC;IAES,UAAU,CAAC,UAA2B;QAC5C,OAAO,KAAK,EAAE,KAAc,EAAkB,EAAE;YAC5C,MAAM,WAAW,GAAG,0BAAgB,CAAC,KAAK,CAAC,KAAK,CAAC;mBAC1C,IAAI,iCAAuB,CAAC,2BAA2B,EAAE,KAAK,CAAC,CAAC;YACvE,IAAI,CAAC,UAAU,EAAE,CAAC;gBACd,MAAM,WAAW,CAAC;YACtB,CAAC;YAED,OAAO,UAAU,CACb,WAAW,CACd,CAAC;QACN,CAAC,CAAC;IACN,CAAC;CAEJ;AA/BD,4CA+BC"}
|
|
@@ -10,7 +10,7 @@ class AxiosInterceptorRequest extends AxiosInterceptor_1.AxiosInterceptor {
|
|
|
10
10
|
return config;
|
|
11
11
|
return {
|
|
12
12
|
...config,
|
|
13
|
-
...AxiosRequestParser_1.AxiosRequestParser.parseMessageToLibrary(await onFulfilled(
|
|
13
|
+
...AxiosRequestParser_1.AxiosRequestParser.parseMessageToLibrary(await onFulfilled(AxiosRequestParser_1.AxiosRequestParser.parseLibraryToMessage(config))),
|
|
14
14
|
};
|
|
15
15
|
}, this.onRejected(onRejected), {
|
|
16
16
|
synchronous: options?.synchronous,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AxiosInterceptorRequest.js","sourceRoot":"","sources":["../../src/interceptors/AxiosInterceptorRequest.ts"],"names":[],"mappings":";;;AASA,qEAAkE;AAElE,yDAAsD;AAEtD,MAAa,uBAEX,SAAQ,mCAET;IAEU,GAAG,CACN,WAA4D,EAC5D,UAA2B,EAC3B,OAAmC;QAEnC,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CACvB,KAAK,EAAE,MAAuC,EAAE,EAAE;YAC9C,IAAI,CAAC,WAAW;gBAAE,OAAO,MAAM,CAAC;YAEhC,OAAO;gBACH,GAAG,MAAM;gBACT,GAAG,uCAAkB,CAAC,qBAAqB,CACvC,MAAM,WAAW,CAAC,
|
|
1
|
+
{"version":3,"file":"AxiosInterceptorRequest.js","sourceRoot":"","sources":["../../src/interceptors/AxiosInterceptorRequest.ts"],"names":[],"mappings":";;;AASA,qEAAkE;AAElE,yDAAsD;AAEtD,MAAa,uBAEX,SAAQ,mCAET;IAEU,GAAG,CACN,WAA4D,EAC5D,UAA2B,EAC3B,OAAmC;QAEnC,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CACvB,KAAK,EAAE,MAAuC,EAAE,EAAE;YAC9C,IAAI,CAAC,WAAW;gBAAE,OAAO,MAAM,CAAC;YAEhC,OAAO;gBACH,GAAG,MAAM;gBACT,GAAG,uCAAkB,CAAC,qBAAqB,CACvC,MAAM,WAAW,CAAC,uCAAkB,CAAC,qBAAqB,CAAC,MAAM,CAAC,CAAC,CACtE;aACJ,CAAC;QACN,CAAC,EACD,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,EAC3B;YACI,WAAW,EAAE,OAAO,EAAE,WAAW;SACpC,CACJ,CAAC;IACN,CAAC;CAEJ;AA7BD,0DA6BC"}
|
|
@@ -12,8 +12,8 @@ class AxiosInterceptorResponse extends AxiosInterceptor_1.AxiosInterceptor {
|
|
|
12
12
|
}
|
|
13
13
|
onFulfilledResponse(onFulfilled) {
|
|
14
14
|
return async (response) => {
|
|
15
|
-
const responseMessage =
|
|
16
|
-
const messageResponse =
|
|
15
|
+
const responseMessage = AxiosResponseParser_1.AxiosResponseParser.parseLibraryToMessage(response);
|
|
16
|
+
const messageResponse = AxiosResponseParser_1.AxiosResponseParser.parseMessageToLibrary(await onFulfilled(responseMessage));
|
|
17
17
|
return {
|
|
18
18
|
...response,
|
|
19
19
|
...messageResponse,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AxiosInterceptorResponse.js","sourceRoot":"","sources":["../../src/interceptors/AxiosInterceptorResponse.ts"],"names":[],"mappings":";;;AASA,uEAAoE;AAEpE,yDAAsD;AAMtD,MAAa,wBAGX,SAAQ,mCAET;IAEU,GAAG,CACN,WAAqE,EACrE,UAA2B,EAC3B,OAAmC;QAEnC,MAAM,QAAQ,GAAG,WAAW,IAAI,IAAI,CAAC,mBAAmB,CAAsB,WAAW,CAAC,CAAC;QAE3F,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CACvB,QAAQ,EACR,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,EAC3B;YACI,WAAW,EAAE,OAAO,EAAE,WAAW;SACpC,CACJ,CAAC;IACN,CAAC;IAEO,mBAAmB,CACvB,WAAoE;QAEpE,OAAO,KAAK,EAAE,QAA4C,EAA+C,EAAE;YACvG,MAAM,eAAe,GAAG,
|
|
1
|
+
{"version":3,"file":"AxiosInterceptorResponse.js","sourceRoot":"","sources":["../../src/interceptors/AxiosInterceptorResponse.ts"],"names":[],"mappings":";;;AASA,uEAAoE;AAEpE,yDAAsD;AAMtD,MAAa,wBAGX,SAAQ,mCAET;IAEU,GAAG,CACN,WAAqE,EACrE,UAA2B,EAC3B,OAAmC;QAEnC,MAAM,QAAQ,GAAG,WAAW,IAAI,IAAI,CAAC,mBAAmB,CAAsB,WAAW,CAAC,CAAC;QAE3F,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CACvB,QAAQ,EACR,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,EAC3B;YACI,WAAW,EAAE,OAAO,EAAE,WAAW;SACpC,CACJ,CAAC;IACN,CAAC;IAEO,mBAAmB,CACvB,WAAoE;QAEpE,OAAO,KAAK,EAAE,QAA4C,EAA+C,EAAE;YACvG,MAAM,eAAe,GAAG,yCAAmB,CAAC,qBAAqB,CAAC,QAAQ,CAAC,CAAC;YAC5E,MAAM,eAAe,GAAG,yCAAmB,CAAC,qBAAqB,CAC7D,MAAM,WAAW,CAAC,eAAe,CAAC,CACrC,CAAC;YAEF,OAAO;gBACH,GAAG,QAAQ;gBACX,GAAG,eAAe;aACrB,CAAC;QACN,CAAC,CAAC;IACN,CAAC;CAEJ;AAvCD,4DAuCC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AxiosParser.js","sourceRoot":"","sources":["../../src/parser/AxiosParser.ts"],"names":[],"mappings":";;;AAGA,MAAa,WAAW;IAEpB;;;;;OAKG;IACI,MAAM,CAAC,YAAY,CAAC,OAAiB;QACxC,IAAI,WAAW,CAAC,cAAc,CAAC,OAAO,CAAC,IAAI,OAAO,OAAO,CAAC,MAAM,KAAK,UAAU,EAAE;
|
|
1
|
+
{"version":3,"file":"AxiosParser.js","sourceRoot":"","sources":["../../src/parser/AxiosParser.ts"],"names":[],"mappings":";;;AAGA,MAAa,WAAW;IAEpB;;;;;OAKG;IACI,MAAM,CAAC,YAAY,CAAC,OAAiB;QACxC,IAAI,WAAW,CAAC,cAAc,CAAC,OAAO,CAAC,IAAI,OAAO,OAAO,CAAC,MAAM,KAAK,UAAU,EAAE,CAAC;YAC9E,OAAQ,OAAO,CAAC,MAA2B,CAAC,IAAI,CAAyB,CAAC;QAC9E,CAAC;QAED,OAAO,OAA+B,CAAC;IAC3C,CAAC;IAED;;;;;OAKG;IACO,MAAM,CAAC,cAAc,CAAC,OAAgB;QAC5C,OAAO,CAAC,CAAC,CACL,OAAO;eACJ,OAAO,OAAO,KAAK,QAAQ,CACjC,CAAC;IACN,CAAC;CAEJ;AA7BD,kCA6BC"}
|
|
@@ -14,7 +14,7 @@ export declare class AxiosRequestParser {
|
|
|
14
14
|
*
|
|
15
15
|
* @template {any} RequestD Dados Request Axios
|
|
16
16
|
* @param {AxiosRequestConfig<RequestD>} config Dados Request
|
|
17
|
-
* @returns {
|
|
17
|
+
* @returns {RequestInterface<RequestD>}
|
|
18
18
|
*/
|
|
19
|
-
static parseLibraryToMessage<RequestD>(config: AxiosRequestConfig<RequestD>):
|
|
19
|
+
static parseLibraryToMessage<RequestD>(config: AxiosRequestConfig<RequestD>): RequestInterface<RequestD>;
|
|
20
20
|
}
|
|
@@ -33,15 +33,15 @@ class AxiosRequestParser {
|
|
|
33
33
|
*
|
|
34
34
|
* @template {any} RequestD Dados Request Axios
|
|
35
35
|
* @param {AxiosRequestConfig<RequestD>} config Dados Request
|
|
36
|
-
* @returns {
|
|
36
|
+
* @returns {RequestInterface<RequestD>}
|
|
37
37
|
*/
|
|
38
|
-
static
|
|
38
|
+
static parseLibraryToMessage(config) {
|
|
39
39
|
return Object.fromEntries(Object.entries({
|
|
40
40
|
url: config.url,
|
|
41
41
|
baseURL: config.baseURL,
|
|
42
42
|
method: config.method,
|
|
43
43
|
headers: AxiosParser_1.AxiosParser.parseHeaders(config.headers),
|
|
44
|
-
|
|
44
|
+
params: config.params,
|
|
45
45
|
data: config.data,
|
|
46
46
|
timeout: config.timeout,
|
|
47
47
|
responseType: config.responseType,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AxiosRequestParser.js","sourceRoot":"","sources":["../../src/parser/AxiosRequestParser.ts"],"names":[],"mappings":";;;AAGA,+CAA4C;AAE5C,MAAa,kBAAkB;IAE3B;;;;;;OAMG;IACI,MAAM,CAAC,qBAAqB,CAC/B,MAAkC;QAElC,OAAO,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,OAAO,CAAC;YACrC,GAAG,EAAE,MAAM,CAAC,GAAG;YACf,OAAO,EAAE,MAAM,CAAC,OAAO;YACvB,MAAM,EAAE,MAAM,CAAC,MAAM;YACrB,OAAO,EAAE,MAAM,CAAC,OAAO;YACvB,MAAM,EAAE,MAAM,CAAC,MAAM;YACrB,IAAI,EAAE,MAAM,CAAC,IAAI;YACjB,OAAO,EAAE,MAAM,CAAC,OAAO;YACvB,YAAY,EAAE,MAAM,CAAC,YAAY;YACjC,gBAAgB,EAAE,MAAM,CAAC,gBAAgB;YACzC,cAAc,EAAE,MAAM,CAAC,cAAc;YACrC,aAAa,EAAE,MAAM,CAAC,aAAa;YACnC,YAAY,EAAE,MAAM,CAAC,YAAY;YACjC,UAAU,EAAE,MAAM,CAAC,UAAU;YAC7B,KAAK,EAAE,MAAM,CAAC,KAAK;SACtB,CAAC,CAAC,MAAM,CAAC,CAAC,CAAE,AAAD,EAAG,KAAK,CAAE,EAAE,EAAE,CAAC,KAAK,KAAK,SAAS,CAAC,CAAC,CAAC;IACrD,CAAC;IAED;;;;;;OAMG;IACI,MAAM,CAAC,
|
|
1
|
+
{"version":3,"file":"AxiosRequestParser.js","sourceRoot":"","sources":["../../src/parser/AxiosRequestParser.ts"],"names":[],"mappings":";;;AAGA,+CAA4C;AAE5C,MAAa,kBAAkB;IAE3B;;;;;;OAMG;IACI,MAAM,CAAC,qBAAqB,CAC/B,MAAkC;QAElC,OAAO,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,OAAO,CAAC;YACrC,GAAG,EAAE,MAAM,CAAC,GAAG;YACf,OAAO,EAAE,MAAM,CAAC,OAAO;YACvB,MAAM,EAAE,MAAM,CAAC,MAAM;YACrB,OAAO,EAAE,MAAM,CAAC,OAAO;YACvB,MAAM,EAAE,MAAM,CAAC,MAAM;YACrB,IAAI,EAAE,MAAM,CAAC,IAAI;YACjB,OAAO,EAAE,MAAM,CAAC,OAAO;YACvB,YAAY,EAAE,MAAM,CAAC,YAAY;YACjC,gBAAgB,EAAE,MAAM,CAAC,gBAAgB;YACzC,cAAc,EAAE,MAAM,CAAC,cAAc;YACrC,aAAa,EAAE,MAAM,CAAC,aAAa;YACnC,YAAY,EAAE,MAAM,CAAC,YAAY;YACjC,UAAU,EAAE,MAAM,CAAC,UAAU;YAC7B,KAAK,EAAE,MAAM,CAAC,KAAK;SACtB,CAAC,CAAC,MAAM,CAAC,CAAC,CAAE,AAAD,EAAG,KAAK,CAAE,EAAE,EAAE,CAAC,KAAK,KAAK,SAAS,CAAC,CAAC,CAAC;IACrD,CAAC;IAED;;;;;;OAMG;IACI,MAAM,CAAC,qBAAqB,CAC/B,MAAoC;QAEpC,OAAO,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,OAAO,CAAC;YACrC,GAAG,EAAE,MAAM,CAAC,GAAG;YACf,OAAO,EAAE,MAAM,CAAC,OAAO;YACvB,MAAM,EAAE,MAAM,CAAC,MAAM;YACrB,OAAO,EAAE,yBAAW,CAAC,YAAY,CAAC,MAAM,CAAC,OAAO,CAAC;YACjD,MAAM,EAAE,MAAM,CAAC,MAA6B;YAC5C,IAAI,EAAE,MAAM,CAAC,IAAI;YACjB,OAAO,EAAE,MAAM,CAAC,OAAO;YACvB,YAAY,EAAE,MAAM,CAAC,YAAY;YACjC,gBAAgB,EAAE,MAAM,CAAC,gBAAgB;YACzC,cAAc,EAAE,MAAM,CAAC,cAAc;YACrC,aAAa,EAAE,MAAM,CAAC,aAAa;YACnC,YAAY,EAAE,MAAM,CAAC,YAAY;YACjC,UAAU,EAAE,MAAM,CAAC,UAAU;YAC7B,KAAK,EAAE,MAAM,CAAC,KAAK;SACtB,CAAC,CAAC,MAAM,CAAC,CAAC,CAAE,AAAD,EAAG,KAAK,CAAE,EAAE,EAAE,CAAC,KAAK,KAAK,SAAS,CAAC,CAAC,CAAC;IACrD,CAAC;CAEJ;AA1DD,gDA0DC"}
|
|
@@ -7,16 +7,16 @@ export declare class AxiosResponseParser {
|
|
|
7
7
|
* @template {any} RequestD Data Request
|
|
8
8
|
* @template {any} ResponseD Data Response
|
|
9
9
|
* @param {ResponseInterface<RequestD, ResponseD>} response axios Response Object
|
|
10
|
-
* @returns {
|
|
10
|
+
* @returns {AxiosResponse<ResponseD, RequestD>}
|
|
11
11
|
*/
|
|
12
|
-
static parseMessageToLibrary<RequestD, ResponseD>(response: ResponseInterface<RequestD, ResponseD>):
|
|
12
|
+
static parseMessageToLibrary<RequestD, ResponseD>(response: ResponseInterface<RequestD, ResponseD>): AxiosResponse<ResponseD, RequestD>;
|
|
13
13
|
/**
|
|
14
14
|
* Cast AxiosResponse axios To ResponseInterface
|
|
15
15
|
*
|
|
16
16
|
* @template {any} RequestD Data Request
|
|
17
17
|
* @template {any} ResponseD Data Response
|
|
18
18
|
* @param {AxiosResponse<ResponseD, RequestD>} response axios Response Object
|
|
19
|
-
* @returns {
|
|
19
|
+
* @returns {ResponseInterface<RequestD, ResponseD>}
|
|
20
20
|
*/
|
|
21
|
-
static parseLibraryToMessage<RequestD, ResponseD>(response: AxiosResponse<ResponseD, RequestD>):
|
|
21
|
+
static parseLibraryToMessage<RequestD, ResponseD>(response: AxiosResponse<ResponseD, RequestD>): ResponseInterface<RequestD, ResponseD>;
|
|
22
22
|
}
|
|
@@ -14,9 +14,9 @@ class AxiosResponseParser {
|
|
|
14
14
|
* @template {any} RequestD Data Request
|
|
15
15
|
* @template {any} ResponseD Data Response
|
|
16
16
|
* @param {ResponseInterface<RequestD, ResponseD>} response axios Response Object
|
|
17
|
-
* @returns {
|
|
17
|
+
* @returns {AxiosResponse<ResponseD, RequestD>}
|
|
18
18
|
*/
|
|
19
|
-
static
|
|
19
|
+
static parseMessageToLibrary(response) {
|
|
20
20
|
return {
|
|
21
21
|
data: response.data,
|
|
22
22
|
status: response.status,
|
|
@@ -33,14 +33,14 @@ class AxiosResponseParser {
|
|
|
33
33
|
* @template {any} RequestD Data Request
|
|
34
34
|
* @template {any} ResponseD Data Response
|
|
35
35
|
* @param {AxiosResponse<ResponseD, RequestD>} response axios Response Object
|
|
36
|
-
* @returns {
|
|
36
|
+
* @returns {ResponseInterface<RequestD, ResponseD>}
|
|
37
37
|
*/
|
|
38
|
-
static
|
|
38
|
+
static parseLibraryToMessage(response) {
|
|
39
39
|
return {
|
|
40
40
|
data: response.data,
|
|
41
41
|
status: response.status,
|
|
42
42
|
headers: AxiosParser_1.AxiosParser.parseHeaders(response.headers),
|
|
43
|
-
request:
|
|
43
|
+
request: AxiosRequestParser_1.AxiosRequestParser.parseLibraryToMessage({
|
|
44
44
|
...response.config,
|
|
45
45
|
headers: AxiosParser_1.AxiosParser.parseHeaders(response.config.headers),
|
|
46
46
|
}),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AxiosResponseParser.js","sourceRoot":"","sources":["../../src/parser/AxiosResponseParser.ts"],"names":[],"mappings":";;;;;;AAAA,0DAA6B;AAO7B,+CAA4C;AAC5C,6DAA0D;AAE1D,MAAa,mBAAmB;IAE5B;;;;;;;OAOG;IACI,MAAM,CAAC,
|
|
1
|
+
{"version":3,"file":"AxiosResponseParser.js","sourceRoot":"","sources":["../../src/parser/AxiosResponseParser.ts"],"names":[],"mappings":";;;;;;AAAA,0DAA6B;AAO7B,+CAA4C;AAC5C,6DAA0D;AAE1D,MAAa,mBAAmB;IAE5B;;;;;;;OAOG;IACI,MAAM,CAAC,qBAAqB,CAC/B,QAAgD;QAEhD,OAAO;YACH,IAAI,EAAE,QAAQ,CAAC,IAAI;YACnB,MAAM,EAAE,QAAQ,CAAC,MAAM;YACvB,UAAU,EAAE,mBAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,qBAAqB;YACvE,OAAO,EAAE,yBAAW,CAAC,YAAY,CAAC,QAAQ,CAAC,OAAO,CAAoC;YACtF,MAAM,EAAE,uCAAkB,CAAC,qBAAqB,CAAC;gBAC7C,GAAG,QAAQ,CAAC,OAAO;aACtB,CAAyC;SAC7C,CAAC;IACN,CAAC;IAED;;;;;;;OAOG;IACI,MAAM,CAAC,qBAAqB,CAC/B,QAA4C;QAE5C,OAAO;YACH,IAAI,EAAE,QAAQ,CAAC,IAAI;YACnB,MAAM,EAAE,QAAQ,CAAC,MAAM;YACvB,OAAO,EAAE,yBAAW,CAAC,YAAY,CAAC,QAAQ,CAAC,OAAO,CAAC;YACnD,OAAO,EAAE,uCAAkB,CAAC,qBAAqB,CAAW;gBACxD,GAAG,QAAQ,CAAC,MAAM;gBAClB,OAAO,EAAE,yBAAW,CAAC,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,OAAO,CAAuC;aACnG,CAAC;SACL,CAAC;IACN,CAAC;CAEJ;AA9CD,kDA8CC"}
|
package/dist/register.js
CHANGED
|
@@ -4,15 +4,21 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
const exception_1 = require("@odg/exception");
|
|
7
|
+
const message_1 = require("@odg/message");
|
|
7
8
|
const axios_1 = __importDefault(require("axios"));
|
|
9
|
+
const AxiosRequestParser_1 = require("./parser/AxiosRequestParser");
|
|
10
|
+
const AxiosResponseParser_1 = require("./parser/AxiosResponseParser");
|
|
8
11
|
exception_1.Exception.$parsers.add((exception, original) => {
|
|
9
|
-
if (
|
|
10
|
-
|
|
12
|
+
if (axios_1.default.isAxiosError(original)) {
|
|
13
|
+
const newException = new message_1.MessageException(exception.message, exception.preview, original.code, original.config ? AxiosRequestParser_1.AxiosRequestParser.parseLibraryToMessage(original.config) : undefined, original.response ? AxiosResponseParser_1.AxiosResponseParser.parseLibraryToMessage(original.response) : undefined);
|
|
14
|
+
newException.stack = original.stack;
|
|
15
|
+
Object.defineProperty(newException, "isAxiosError", {
|
|
11
16
|
configurable: true,
|
|
12
17
|
enumerable: false,
|
|
13
|
-
value:
|
|
18
|
+
value: true,
|
|
14
19
|
writable: true,
|
|
15
20
|
});
|
|
21
|
+
return newException;
|
|
16
22
|
}
|
|
17
23
|
return exception;
|
|
18
24
|
});
|
package/dist/register.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"register.js","sourceRoot":"","sources":["../src/register.ts"],"names":[],"mappings":";;;;;AAAA,8CAA2C;AAC3C,kDAA0B;AAE1B,qBAAS,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,SAAS,EAAE,QAAQ,EAAE,EAAE;IAC3C,IAAI,
|
|
1
|
+
{"version":3,"file":"register.js","sourceRoot":"","sources":["../src/register.ts"],"names":[],"mappings":";;;;;AAAA,8CAA2C;AAC3C,0CAAgD;AAChD,kDAA0B;AAE1B,oEAAiE;AACjE,sEAAmE;AAEnE,qBAAS,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,SAAS,EAAE,QAAQ,EAAE,EAAE;IAC3C,IAAI,eAAK,CAAC,YAAY,CAAC,QAAQ,CAAC,EAAE,CAAC;QAC/B,MAAM,YAAY,GAAG,IAAI,0BAAgB,CACrC,SAAS,CAAC,OAAO,EACjB,SAAS,CAAC,OAAO,EACjB,QAAQ,CAAC,IAAI,EACb,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,uCAAkB,CAAC,qBAAqB,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,SAAS,EACvF,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,yCAAmB,CAAC,qBAAqB,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,CAC/F,CAAC;QACF,YAAY,CAAC,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;QAEpC,MAAM,CAAC,cAAc,CAAC,YAAY,EAAE,cAAc,EAAE;YAChD,YAAY,EAAE,IAAI;YAClB,UAAU,EAAE,KAAK;YACjB,KAAK,EAAE,IAAI;YACX,QAAQ,EAAE,IAAI;SACjB,CAAC,CAAC;QAEH,OAAO,YAAY,CAAC;IACxB,CAAC;IAED,OAAO,SAAS,CAAC;AACrB,CAAC,CAAC,CAAC"}
|
|
@@ -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","../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","../node_modules/axios/index.d.cts","../src/parser/AxiosParser.ts","../src/parser/AxiosRequestParser.ts","../src/interceptors/AxiosInterceptor.ts","../src/interceptors/AxiosInterceptorRequest.ts","../src/parser/AxiosResponseParser.ts","../src/interceptors/AxiosInterceptorResponse.ts","../src/AxiosMessage.ts","../src/register.ts","../src/index.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/buffer/index.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/index.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":"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":"42babe160bff1a61cc447858faf99539734707a81aeb2d6e06be14ebe1d4ef79","impliedFormat":1},{"version":"824cfbd433389e0f80232d4463ffbfea394babdda7a2759113a1f8efcc2ed629","signature":"4ae4b67f63be1eb083b53f78d5100b5ce588a77c5d5ff0a9e11572aebcea128d","impliedFormat":1},{"version":"14044e220854615e64f12605d710addf6e362133bcc9933255c4ff818115a1d3","signature":"2d719e166cc0b45e41f63181080895e7c8bf57574826eb39c4db25ca4726e377","impliedFormat":1},{"version":"4cdfa2c40cb17297e04c304d6c36899c9d7121a5c86e0515a55e9dd2dd5814e8","signature":"27062ab6dd4f70497894e7e07848d398fe8103572a5623fbebbd5e65d1277a1c","impliedFormat":1},{"version":"3ea25fddd403cab3686b52c0791e57e571b11274b895fe714097ab97c3830799","signature":"3f6b36c3173459b1dad437b1890e5264dbe5208f99904e72ac61d59a3ba2ed28","impliedFormat":1},{"version":"f076593aba0d59193184389222902ceddbe5093014c803efd5bbf4ea5673e65a","signature":"13c78ace1f997b5b91cc7e8702401561fa8f948d9506920ae952f20e8f3fc15a","impliedFormat":1},{"version":"1a2b6eb0eee0de54719a5d94da6e58e2849c682efadcd067fec232ae86eebee9","signature":"60ba396ccd5aaf4689f6ab9d9e3e59abd209685f7a93154f1243bdecb7e643c9","impliedFormat":1},{"version":"9eb81d99ee8e6540e4462226d3987b7b452032050d59ea39d3dc9e1a018a9f27","signature":"851935e6368d49d15e6d89779331e4d6531950e5e7c327650e6b1f7a7a90488a","impliedFormat":1},{"version":"bd6ce3691d872fb875152e4a89b3adbc7445f6103de2d9a243472c51f16eed76","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":1},{"version":"74f71373bd3492c6b10c077522aabcbdeb7219af86fd8df8a7f12fd916b8a7d8","signature":"47feec369636acf149ab251f8e46eed48a69f90b8fbe1b13c9feb494f1bd200f","impliedFormat":1},{"version":"09df3b4f1c937f02e7fee2836d4c4d7a63e66db70fd4d4e97126f4542cc21d9d","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","impliedFormat":1},{"version":"3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","impliedFormat":1},{"version":"adda9e3915c6bf15e360356a41d950881a51dbe44f9a6088155836b040820663","impliedFormat":1},{"version":"b4855526ac5a822d6e0005e4b62ee49c599bf89897e4109135283d660e60291c","impliedFormat":1},{"version":"e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","impliedFormat":1},{"version":"471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","impliedFormat":1},{"version":"c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","impliedFormat":1},{"version":"40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","impliedFormat":1},{"version":"80ad053918e96087d9da8d092ff9f90520c9fc199c8bfd9340266dd8f38f364e","impliedFormat":1},{"version":"3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","impliedFormat":1},{"version":"8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","impliedFormat":1},{"version":"d70119390aece1794bf4988f10ea750d13455f5286977d35027d43dd2e9841cf","impliedFormat":1},{"version":"4d719cfab49ae4045d15cb6bed0f38ad3d7d6eb7f277d2603502a0f862ca3182","affectsGlobalScope":true,"impliedFormat":1},{"version":"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c","impliedFormat":1},{"version":"5a856afb15f9dc9983faa391dde989826995a33983c1cccb173e9606688e9709","affectsGlobalScope":true,"impliedFormat":1},{"version":"546ab07e19116d935ad982e76a223275b53bff7771dab94f433b7ab04652936e","impliedFormat":1},{"version":"7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba","impliedFormat":1},{"version":"aefb5a4a209f756b580eb53ea771cca8aad411603926f307a5e5b8ec6b16dcf6","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"f5a8b7ec4b798c88679194a8ebc25dcb6f5368e6e5811fcda9fe12b0d445b8db","impliedFormat":1},{"version":"b86e1a45b29437f3a99bad4147cb9fe2357617e8008c0484568e5bb5138d6e13","impliedFormat":1},{"version":"b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","impliedFormat":1},{"version":"42c431e7965b641106b5e25ab3283aa4865ca7bb9909610a2abfa6226e4348be","impliedFormat":1},{"version":"0b7e732af0a9599be28c091d6bd1cb22c856ec0d415d4749c087c3881ca07a56","impliedFormat":1},{"version":"b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e","impliedFormat":1},{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d6138a264ddc6f94f16e99d4e117a2d6eb31b217891cf091b6437a2f114d561","affectsGlobalScope":true,"impliedFormat":1},{"version":"3b4c85eea12187de9929a76792b98406e8778ce575caca8c574f06da82622c54","impliedFormat":1},{"version":"f788131a39c81e0c9b9e463645dd7132b5bc1beb609b0e31e5c1ceaea378b4df","impliedFormat":1},{"version":"0c236069ce7bded4f6774946e928e4b3601894d294054af47a553f7abcafe2c1","impliedFormat":1},{"version":"21894466693f64957b9bd4c80fa3ec7fdfd4efa9d1861e070aca23f10220c9b2","impliedFormat":1},{"version":"396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","impliedFormat":1},{"version":"ad8848c289c0b633452e58179f46edccd14b5a0fe90ebce411f79ff040b803e0","impliedFormat":1},{"version":"6ec93c745c5e3e25e278fa35451bf18ef857f733de7e57c15e7920ac463baa2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"91f8b5abcdff8f9ecb9656b9852878718416fb7700b2c4fad8331e5b97c080bb","impliedFormat":1},{"version":"59d8f064f86a4a2be03b33c0efcc9e7a268ad27b22f82dce16899f3364f70ba8","impliedFormat":1},{"version":"0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7","impliedFormat":1},{"version":"f49fb15c4aa06b65b0dce4db4584bfd8a9f74644baef1511b404dc95be34af00","affectsGlobalScope":true,"impliedFormat":1},{"version":"d48009cbe8a30a504031cc82e1286f78fed33b7a42abf7602c23b5547b382563","affectsGlobalScope":true,"impliedFormat":1},{"version":"7aaeb5e62f90e1b2be0fc4844df78cdb1be15c22b427bc6c39d57308785b8f10","impliedFormat":1},{"version":"3ba30205a029ebc0c91d7b1ab4da73f6277d730ca1fc6692d5a9144c6772c76b","impliedFormat":1},{"version":"d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","impliedFormat":1},{"version":"8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","impliedFormat":1},{"version":"01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","impliedFormat":1},{"version":"458b216959c231df388a5de9dcbcafd4b4ca563bc3784d706d0455467d7d4942","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","impliedFormat":1},{"version":"831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12","impliedFormat":1},{"version":"24ba151e213906027e2b1f5223d33575a3612b0234a0e2b56119520bbe0e594b","affectsGlobalScope":true,"impliedFormat":1},{"version":"cbf046714f3a3ba2544957e1973ac94aa819fa8aa668846fa8de47eb1c41b0b2","affectsGlobalScope":true,"impliedFormat":1},{"version":"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","impliedFormat":1},{"version":"eae74e3d50820f37c72c0679fed959cd1e63c98f6a146a55b8c4361582fa6a52","impliedFormat":1},{"version":"7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","impliedFormat":1},{"version":"7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df","impliedFormat":1},{"version":"aed89e3c18f4c659ee8153a76560dffda23e2d801e1e60d7a67abd84bc555f8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ed13c80faeb2b7160bffb4926ff299c468e67a37a645b3ae0917ba0db633c1b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","impliedFormat":1},{"version":"2f940651c2f30e6b29f8743fae3f40b7b1c03615184f837132b56ea75edad08b","impliedFormat":1},{"version":"5749c327c3f789f658072f8340786966c8b05ea124a56c1d8d60e04649495a4d","impliedFormat":1},{"version":"c9d62b2a51b2ff166314d8be84f6881a7fcbccd37612442cf1c70d27d5352f50","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3f4c342fb62f348f25f54b473b0ab7371828cbf637134194fa9cdf04856f87b","impliedFormat":1}],"root":[[77,85]],"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":[[165],[67,165],[65,66,165],[68,69,70,71,72,73,74,165],[67,70,71,165],[68,69,70,165],[68,71,165],[86,165],[122,165],[123,128,156,165],[124,135,136,143,153,164,165],[124,125,135,143,165],[126,165],[127,128,136,144,165],[128,153,161,165],[129,131,135,143,165],[130,165],[131,132,165],[135,165],[133,135,165],[122,135,165],[135,136,137,153,164,165],[135,136,137,150,153,156,165],[120,165,169],[131,135,138,143,153,164,165],[135,136,138,139,143,153,161,164,165],[138,140,153,161,164,165],[86,87,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171],[135,141,165],[142,164,165,169],[131,135,143,153,165],[144,165],[145,165],[122,146,165],[147,163,165,169],[148,165],[149,165],[135,150,151,165],[150,152,165,167],[123,135,153,154,155,156,165],[123,153,155,165],[153,154,165],[156,165],[157,165],[122,153,165],[135,159,160,165],[159,160,165],[128,143,153,161,165],[162,165],[143,163,165],[123,138,149,164,165],[128,165],[153,165,166],[142,165,167],[165,168],[123,128,135,137,146,153,164,165,167,169],[153,165,170],[97,101,164,165],[97,153,164,165],[92,165],[94,97,161,164,165],[143,161,165],[165,172],[92,165,172],[94,97,143,164,165],[89,90,93,96,123,135,153,164,165],[89,95,165],[93,97,123,156,164,165,172],[123,165,172],[113,123,165,172],[91,92,165,172],[97,165],[91,92,93,94,95,96,97,98,99,101,102,103,104,105,106,107,108,109,110,111,112,114,115,116,117,118,119,165],[97,104,105,165],[95,97,105,106,165],[96,165],[89,92,97,165],[97,101,105,106,165],[101,165],[95,97,100,164,165],[89,94,95,97,101,104,165],[123,153,165],[92,97,113,123,165,169,172],[67,75,76,78,80,81,82,165],[83,84,165],[75,76,165],[75,76,78,79,165],[75,76,79,81,165],[75,76,77,165],[75,76,77,78,138,165],[67,76,165],[75],[83,84],[75,76],[75,76,79]],"referencedMap":[[65,1],[66,2],[67,3],[75,4],[72,5],[68,1],[69,1],[71,6],[70,7],[73,5],[74,5],[86,8],[87,8],[122,9],[123,10],[124,11],[125,12],[126,13],[127,14],[128,15],[129,16],[130,17],[131,18],[132,18],[134,19],[133,20],[135,21],[136,22],[137,23],[121,24],[171,1],[138,25],[139,26],[140,27],[172,28],[141,29],[142,30],[143,31],[144,32],[145,33],[146,34],[147,35],[148,36],[149,37],[150,38],[151,38],[152,39],[153,40],[155,41],[154,42],[156,43],[157,44],[158,45],[159,46],[160,47],[161,48],[162,49],[163,50],[164,51],[165,52],[166,53],[167,54],[168,55],[169,56],[170,57],[76,1],[88,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],[104,58],[111,59],[103,58],[118,60],[95,61],[94,62],[117,63],[112,64],[115,65],[97,66],[96,67],[92,68],[91,69],[114,70],[93,71],[98,72],[99,1],[102,72],[89,1],[120,73],[119,72],[106,74],[107,75],[109,76],[105,77],[108,78],[113,63],[100,79],[101,80],[110,81],[90,82],[116,83],[83,84],[85,85],[79,86],[80,87],[82,88],[77,86],[78,89],[81,90],[84,91]],"exportedModulesMap":[[65,1],[66,2],[67,3],[75,4],[72,5],[68,1],[69,1],[71,6],[70,7],[73,5],[74,5],[86,8],[87,8],[122,9],[123,10],[124,11],[125,12],[126,13],[127,14],[128,15],[129,16],[130,17],[131,18],[132,18],[134,19],[133,20],[135,21],[136,22],[137,23],[121,24],[171,1],[138,25],[139,26],[140,27],[172,28],[141,29],[142,30],[143,31],[144,32],[145,33],[146,34],[147,35],[148,36],[149,37],[150,38],[151,38],[152,39],[153,40],[155,41],[154,42],[156,43],[157,44],[158,45],[159,46],[160,47],[161,48],[162,49],[163,50],[164,51],[165,52],[166,53],[167,54],[168,55],[169,56],[170,57],[76,1],[88,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],[104,58],[111,59],[103,58],[118,60],[95,61],[94,62],[117,63],[112,64],[115,65],[97,66],[96,67],[92,68],[91,69],[114,70],[93,71],[98,72],[99,1],[102,72],[89,1],[120,73],[119,72],[106,74],[107,75],[109,76],[105,77],[108,78],[113,63],[100,79],[101,80],[110,81],[90,82],[116,83],[83,92],[85,93],[79,94],[80,95],[82,95],[77,94],[78,94],[81,94]],"semanticDiagnosticsPerFile":[65,66,67,75,72,68,69,71,70,73,74,86,87,122,123,124,125,126,127,128,129,130,131,132,134,133,135,136,137,121,171,138,139,140,172,141,142,143,144,145,146,147,148,149,150,151,152,153,155,154,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,76,88,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,104,111,103,118,95,94,117,112,115,97,96,92,91,114,93,98,99,102,89,120,119,106,107,109,105,108,113,100,101,110,90,116,83,85,79,80,82,77,78,81,84]},"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.es2016.intl.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.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.promise.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.esnext.object.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","../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","../node_modules/axios/index.d.cts","../src/parser/AxiosParser.ts","../src/parser/AxiosRequestParser.ts","../src/interceptors/AxiosInterceptor.ts","../src/interceptors/AxiosInterceptorRequest.ts","../src/parser/AxiosResponseParser.ts","../src/interceptors/AxiosInterceptorResponse.ts","../src/AxiosMessage.ts","../src/register.ts","../src/index.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/buffer/index.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/index.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":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","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":"886e50ef125efb7878f744e86908884c0133e7a6d9d80013f421b0cd8fb2af94","impliedFormat":1},{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true,"impliedFormat":1},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true,"impliedFormat":1},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true,"impliedFormat":1},{"version":"08a58483392df5fcc1db57d782e87734f77ae9eab42516028acbfe46f29a3ef7","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true,"impliedFormat":1},{"version":"15b98a533864d324e5f57cd3cfc0579b231df58c1c0f6063ea0fcb13c3c74ff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"12c82dbc857502e3f867f0a567388d4291cb20ddb2906cc9fbeff253662c9112","impliedFormat":1},{"version":"57dfec185a3d2984b6f7c0f57f3e0f6b74d33f122f339c00eae96c87ea7e06e1","impliedFormat":1},{"version":"1df58ba1cc41c4166dcbe53efd88611b9ddf5a27f33f4eb88a9189ea2ea56473","impliedFormat":1},{"version":"8047e110c20591b472d8986eeed76bb7656ec4ce295a64a31a31141ae4c2e941","impliedFormat":1},{"version":"acff1c12ae48618e334f5e5c554ef0e2db3b4e8ab57240a4e4ebaec69af111eb","impliedFormat":1},{"version":"111bcb69339040b4ab26a0c8a9e672e1530cd788f3a6d10119aabd073b67268a","impliedFormat":1},{"version":"0234dd2a2570ea614372fe9dc67ffb845aca853b943d2030e018936ee8712264","impliedFormat":1},{"version":"e44c07ac368df2479ca68215a55ec1c7a9ad32b1f2ab193d03af8c0334d810e4","impliedFormat":1},{"version":"df314da1a78365c92f1c47129b4a06441b1d5387ef2c6d93877a393b56292222","impliedFormat":1},{"version":"553f8a0a55f54c7bc9b90dc5b1222bb2b7fd6f0e523a6ee2401d21252962a83f","impliedFormat":1},{"version":"400b0f4132200ec79e221ab388117e6f0680d5ab3f6bae4e96089fe4d8d3532c","impliedFormat":1},{"version":"d810b24a5c8e2c993e96991061f20609ca065c86446881a7ced21a90510b03b5","impliedFormat":1},{"version":"824cfbd433389e0f80232d4463ffbfea394babdda7a2759113a1f8efcc2ed629","signature":"4ae4b67f63be1eb083b53f78d5100b5ce588a77c5d5ff0a9e11572aebcea128d","impliedFormat":1},{"version":"4be9cd153f8951dd8bfc3c2599058ac9befc9cd4000d9f94731a672c75c4f00c","signature":"dca02aabd6ab26ee84da26ce6fe7102d3583c4e324c416252117eb1b2bd3ff2e","impliedFormat":1},{"version":"545a64d52b9b34a5be45029994d1b0567de6308480109cc2d4309a1b906ec320","signature":"27062ab6dd4f70497894e7e07848d398fe8103572a5623fbebbd5e65d1277a1c","impliedFormat":1},{"version":"57b0df8e71e639b1b6214dcd6a05723b73e2e0cab2d0088c7544a42e8cc6a0d3","signature":"3f6b36c3173459b1dad437b1890e5264dbe5208f99904e72ac61d59a3ba2ed28","impliedFormat":1},{"version":"a3d58fd09278baf31f80f72ac67a4a1652222c24c45d7a36a9bccf22ee52431c","signature":"96a1efb079b0bec24ed84fc5a840cb347b33e53ebd6d518731694aa57c98ad0e","impliedFormat":1},{"version":"4d9120695f88739ce67b5c2d17be776131e4be1dd6f9c76ef2755303352c60cb","signature":"60ba396ccd5aaf4689f6ab9d9e3e59abd209685f7a93154f1243bdecb7e643c9","impliedFormat":1},{"version":"49c6cb726a1450e99d2d9f440cee591d6ccf79a548893e67a8e00d79a7764224","signature":"86bfdd6739f508e99f41225b6b3350b8a81a4df0de2558ee9c21cebf4d153b3b","impliedFormat":1},{"version":"9d90e7eb6d17c08efbb6b2b4a93581fd433b3c203515bdb6ecb7b56df1a0725e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":1},{"version":"74f71373bd3492c6b10c077522aabcbdeb7219af86fd8df8a7f12fd916b8a7d8","signature":"47feec369636acf149ab251f8e46eed48a69f90b8fbe1b13c9feb494f1bd200f","impliedFormat":1},{"version":"efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","impliedFormat":1},{"version":"3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","impliedFormat":1},{"version":"e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","impliedFormat":1},{"version":"471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","impliedFormat":1},{"version":"c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","impliedFormat":1},{"version":"40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","impliedFormat":1},{"version":"8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","impliedFormat":1},{"version":"4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1","impliedFormat":1},{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true,"impliedFormat":1},{"version":"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c","impliedFormat":1},{"version":"7fd7fcbf021a5845bdd9397d4649fcf2fe17152d2098140fc723099a215d19ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df3389f71a71a38bc931aaf1ef97a65fada98f0a27f19dd12f8b8de2b0f4e461","impliedFormat":1},{"version":"7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba","impliedFormat":1},{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"a1d2988ad9d2aef7b9915a22b5e52c165c83a878f2851c35621409046bbe3c05","affectsGlobalScope":true,"impliedFormat":1},{"version":"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","impliedFormat":1},{"version":"4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","impliedFormat":1},{"version":"8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","impliedFormat":1},{"version":"af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","impliedFormat":1},{"version":"b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e","impliedFormat":1},{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"674168aa3db414ea0a19b2a31d901b2d49705c7a495e43ffdc96928543010f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","impliedFormat":1},{"version":"313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","impliedFormat":1},{"version":"afb1701fd4be413a8a5a88df6befdd4510c30a31372c07a4138facf61594c66d","impliedFormat":1},{"version":"87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","impliedFormat":1},{"version":"396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","impliedFormat":1},{"version":"21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac","impliedFormat":1},{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true,"impliedFormat":1},{"version":"c07146dbbbd8b347241b5df250a51e48f2d7bef19b1e187b1a3f20c849988ff1","impliedFormat":1},{"version":"45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","impliedFormat":1},{"version":"0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7","impliedFormat":1},{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true,"impliedFormat":1},{"version":"0666f4c99b8688c7be5956df8fecf5d1779d3b22f8f2a88258ae7072c7b6026f","affectsGlobalScope":true,"impliedFormat":1},{"version":"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","impliedFormat":1},{"version":"54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","impliedFormat":1},{"version":"d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","impliedFormat":1},{"version":"8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","impliedFormat":1},{"version":"01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","impliedFormat":1},{"version":"8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"7424817d5eb498771e6d1808d726ec38f75d2eaf3fa359edd5c0c540c52725c1","impliedFormat":1},{"version":"9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024","impliedFormat":1},{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true,"impliedFormat":1},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true,"impliedFormat":1},{"version":"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","impliedFormat":1},{"version":"4b55240c2a03b2c71e98a7fc528b16136faa762211c92e781a01c37821915ea6","impliedFormat":1},{"version":"7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","impliedFormat":1},{"version":"7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df","impliedFormat":1},{"version":"94c086dff8dbc5998749326bc69b520e8e4273fb5b7b58b50e0210e0885dfcde","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebe5facd12fd7745cda5f4bc3319f91fb29dc1f96e57e9c6f8b260a7cc5b67ee","impliedFormat":1},{"version":"79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","impliedFormat":1},{"version":"37dc027f781c75f0f546e329cfac7cf92a6b289f42458f47a9adc25e516b6839","impliedFormat":1},{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","impliedFormat":1}],"root":[[81,89]],"options":{"allowJs":false,"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":[[71],[69,70],[72,73,74,75,76,77,78],[71,74,75],[72,73,74],[72,75],[90],[126],[127,132,160],[128,139,140,147,157,168],[128,129,139,147],[130,169],[131,132,140,148],[132,157,165],[133,135,139,147],[126,134],[135,136],[139],[137,139],[126,139],[139,140,141,157,168],[139,140,141,154,157,160],[124,127,173],[135,139,142,147,157,168],[139,140,142,143,147,157,165,168],[142,144,157,165,168],[90,91,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[139,145],[146,168,173],[135,139,147,157],[148],[149],[126,150],[151,167,173],[152],[153],[139,154,155],[154,156,169,171],[127,139,157,158,159,160],[127,157,159],[157,158],[160],[161],[126,157],[139,163,164],[163,164],[132,147,157,165],[166],[147,167],[127,142,153,168],[132,169],[157,170],[146,171],[172],[127,132,139,141,150,157,168,171,173],[157,174],[101,105,168],[101,157,168],[96],[98,101,165,168],[147,165],[176],[96,176],[98,101,147,168],[93,94,97,100,127,139,157,168],[93,99],[97,101,127,160,168,176],[127,176],[117,127,176],[95,96,176],[101],[95,96,97,98,99,100,101,102,103,105,106,107,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123],[101,108,109],[99,101,109,110],[100],[93,96,101],[101,105,109,110],[105],[99,101,104,168],[93,98,99,101,105,108],[127,157],[96,101,117,127,173,176],[71,79,80,82,84,85,86],[87,88],[79,80],[79,80,82,83],[79,80,83,85],[79,80,81],[79,80,81,82,142],[71,79,80,82,85],[79],[79,80,83]],"referencedMap":[[70,1],[71,2],[79,3],[76,4],[75,5],[74,6],[77,4],[78,4],[90,7],[91,7],[126,8],[127,9],[128,10],[129,11],[130,12],[131,13],[132,14],[133,15],[134,16],[135,17],[136,17],[138,18],[137,19],[139,20],[140,21],[141,22],[125,23],[142,24],[143,25],[144,26],[176,27],[145,28],[146,29],[147,30],[148,31],[149,32],[150,33],[151,34],[152,35],[153,36],[154,37],[155,37],[156,38],[157,39],[159,40],[158,41],[160,42],[161,43],[162,44],[163,45],[164,46],[165,47],[166,48],[167,49],[168,50],[169,51],[170,52],[171,53],[172,54],[173,55],[174,56],[108,57],[115,58],[107,57],[122,59],[99,60],[98,61],[121,62],[116,63],[119,64],[101,65],[100,66],[96,67],[95,68],[118,69],[97,70],[102,71],[106,71],[124,72],[123,71],[110,73],[111,74],[113,75],[109,76],[112,77],[117,62],[104,78],[105,79],[114,80],[94,81],[120,82],[87,83],[89,84],[83,85],[84,86],[86,87],[81,85],[82,88],[85,89],[88,90]],"exportedModulesMap":[[70,1],[71,2],[79,3],[76,4],[75,5],[74,6],[77,4],[78,4],[90,7],[91,7],[126,8],[127,9],[128,10],[129,11],[130,12],[131,13],[132,14],[133,15],[134,16],[135,17],[136,17],[138,18],[137,19],[139,20],[140,21],[141,22],[125,23],[142,24],[143,25],[144,26],[176,27],[145,28],[146,29],[147,30],[148,31],[149,32],[150,33],[151,34],[152,35],[153,36],[154,37],[155,37],[156,38],[157,39],[159,40],[158,41],[160,42],[161,43],[162,44],[163,45],[164,46],[165,47],[166,48],[167,49],[168,50],[169,51],[170,52],[171,53],[172,54],[173,55],[174,56],[108,57],[115,58],[107,57],[122,59],[99,60],[98,61],[121,62],[116,63],[119,64],[101,65],[100,66],[96,67],[95,68],[118,69],[97,70],[102,71],[106,71],[124,72],[123,71],[110,73],[111,74],[113,75],[109,76],[112,77],[117,62],[104,78],[105,79],[114,80],[94,81],[120,82],[87,91],[89,84],[83,85],[84,92],[86,92],[81,85],[82,85],[85,85]],"semanticDiagnosticsPerFile":[69,70,71,79,76,72,73,75,74,77,78,90,91,126,127,128,129,130,131,132,133,134,135,136,138,137,139,140,141,125,175,142,143,144,176,145,146,147,148,149,150,151,152,153,154,155,156,157,159,158,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,80,92,67,68,12,14,13,2,15,16,17,18,19,20,21,22,3,23,4,24,28,25,26,27,29,30,31,5,32,33,34,35,6,39,36,37,38,40,7,41,46,47,42,43,44,45,8,51,48,49,50,52,9,53,54,55,58,56,57,59,60,10,1,61,11,65,63,62,66,64,108,115,107,122,99,98,121,116,119,101,100,96,95,118,97,102,103,106,93,124,123,110,111,113,109,112,117,104,105,114,94,120,87,89,83,84,86,81,82,85,88]},"version":"5.4.2"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odg/axios",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "Project Axios using IoC and DI",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -55,13 +55,13 @@
|
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@odg/eslint-config": "*",
|
|
57
57
|
"@odg/tsconfig": "*",
|
|
58
|
-
"@types/node": ">=
|
|
58
|
+
"@types/node": ">=20",
|
|
59
59
|
"@vitest/coverage-v8": "*",
|
|
60
60
|
"eslint": "*",
|
|
61
61
|
"rimraf": "*",
|
|
62
|
-
"typescript": "^5.
|
|
62
|
+
"typescript": "^5.4.2",
|
|
63
63
|
"vite-tsconfig-paths": "*",
|
|
64
|
-
"vitest": "^
|
|
64
|
+
"vitest": "^1.3.1"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
67
|
"@odg/exception": "*",
|