@odg/axios 1.1.0 → 1.2.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 +23 -0
- package/dist/AxiosMessage.js +32 -2
- package/dist/AxiosMessage.js.map +1 -1
- package/dist/interceptors/AxiosInterceptor.d.ts +7 -0
- package/dist/interceptors/AxiosInterceptor.js +18 -0
- package/dist/interceptors/AxiosInterceptor.js.map +1 -0
- package/dist/interceptors/AxiosInterceptorRequest.d.ts +5 -8
- package/dist/interceptors/AxiosInterceptorRequest.js +2 -12
- package/dist/interceptors/AxiosInterceptorRequest.js.map +1 -1
- package/dist/interceptors/AxiosInterceptorResponse.d.ts +7 -8
- package/dist/interceptors/AxiosInterceptorResponse.js +13 -15
- package/dist/interceptors/AxiosInterceptorResponse.js.map +1 -1
- package/dist/parser/AxiosParser.d.ts +12 -0
- package/dist/parser/AxiosParser.js +12 -0
- package/dist/parser/AxiosParser.js.map +1 -1
- package/dist/parser/AxiosRequestParser.d.ts +14 -0
- package/dist/parser/AxiosRequestParser.js +15 -0
- package/dist/parser/AxiosRequestParser.js.map +1 -1
- package/dist/parser/AxiosResponseParser.d.ts +16 -0
- package/dist/parser/AxiosResponseParser.js +17 -1
- package/dist/parser/AxiosResponseParser.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +16 -17
package/dist/AxiosMessage.d.ts
CHANGED
|
@@ -7,7 +7,30 @@ export declare class AxiosMessage<RequestData, ResponseData> implements MessageI
|
|
|
7
7
|
};
|
|
8
8
|
private readonly client;
|
|
9
9
|
constructor(config?: DefaultMessageConstructor<RequestData>);
|
|
10
|
+
/**
|
|
11
|
+
* Request Abstract
|
|
12
|
+
*
|
|
13
|
+
* @template {any} RequestD Request Data
|
|
14
|
+
* @template {any} ResponseD Response Data
|
|
15
|
+
* @param {RequestInterface<RequestD>} options Opções de requisição
|
|
16
|
+
* @returns {Promise<ResponseInterface<RequestD, ResponseD>>}
|
|
17
|
+
*/
|
|
10
18
|
request<RequestD = RequestData, ResponseD = ResponseData>(options: RequestInterface<RequestD>): Promise<ResponseInterface<RequestD, ResponseD>>;
|
|
19
|
+
/**
|
|
20
|
+
* Cast Response axios To ResponseInterface
|
|
21
|
+
*
|
|
22
|
+
* @template {any} RequestD Data Request
|
|
23
|
+
* @template {any} ResponseD Data Response
|
|
24
|
+
* @param {AxiosResponse<ResponseD, RequestD>} response axios Response Object
|
|
25
|
+
* @returns {Promise<ResponseInterface<RequestD, ResponseD>>}
|
|
26
|
+
*/
|
|
11
27
|
parseResponseData<RequestD, ResponseD>(response: AxiosResponse<ResponseD, RequestD>): Promise<ResponseInterface<RequestD, ResponseD>>;
|
|
28
|
+
/**
|
|
29
|
+
* Request Exception parse MessageException
|
|
30
|
+
*
|
|
31
|
+
* @param {unknown} error Error Exception
|
|
32
|
+
* @throws {MessageException} Convert Message Exception class
|
|
33
|
+
* @returns {Promise<Error>}
|
|
34
|
+
*/
|
|
12
35
|
private requestException;
|
|
13
36
|
}
|
package/dist/AxiosMessage.js
CHANGED
|
@@ -11,6 +11,7 @@ const AxiosInterceptorRequest_1 = require("./interceptors/AxiosInterceptorReques
|
|
|
11
11
|
const AxiosInterceptorResponse_1 = require("./interceptors/AxiosInterceptorResponse");
|
|
12
12
|
const AxiosParser_1 = require("./parser/AxiosParser");
|
|
13
13
|
const AxiosRequestParser_1 = require("./parser/AxiosRequestParser");
|
|
14
|
+
const AxiosResponseParser_1 = require("./parser/AxiosResponseParser");
|
|
14
15
|
class AxiosMessage {
|
|
15
16
|
constructor(config) {
|
|
16
17
|
this.client = axios_1.default.create(config && AxiosRequestParser_1.AxiosRequestParser.parseMessageToLibrary(config));
|
|
@@ -19,6 +20,14 @@ class AxiosMessage {
|
|
|
19
20
|
response: new AxiosInterceptorResponse_1.AxiosInterceptorResponse(this.client.interceptors.response),
|
|
20
21
|
};
|
|
21
22
|
}
|
|
23
|
+
/**
|
|
24
|
+
* Request Abstract
|
|
25
|
+
*
|
|
26
|
+
* @template {any} RequestD Request Data
|
|
27
|
+
* @template {any} ResponseD Response Data
|
|
28
|
+
* @param {RequestInterface<RequestD>} options Opções de requisição
|
|
29
|
+
* @returns {Promise<ResponseInterface<RequestD, ResponseD>>}
|
|
30
|
+
*/
|
|
22
31
|
async request(options) {
|
|
23
32
|
try {
|
|
24
33
|
const response = await this.client.request(AxiosRequestParser_1.AxiosRequestParser.parseMessageToLibrary(options));
|
|
@@ -28,6 +37,14 @@ class AxiosMessage {
|
|
|
28
37
|
throw await this.requestException(error);
|
|
29
38
|
}
|
|
30
39
|
}
|
|
40
|
+
/**
|
|
41
|
+
* Cast Response axios To ResponseInterface
|
|
42
|
+
*
|
|
43
|
+
* @template {any} RequestD Data Request
|
|
44
|
+
* @template {any} ResponseD Data Response
|
|
45
|
+
* @param {AxiosResponse<ResponseD, RequestD>} response axios Response Object
|
|
46
|
+
* @returns {Promise<ResponseInterface<RequestD, ResponseD>>}
|
|
47
|
+
*/
|
|
31
48
|
async parseResponseData(response) {
|
|
32
49
|
return {
|
|
33
50
|
data: response.data,
|
|
@@ -39,11 +56,24 @@ class AxiosMessage {
|
|
|
39
56
|
},
|
|
40
57
|
};
|
|
41
58
|
}
|
|
59
|
+
/**
|
|
60
|
+
* Request Exception parse MessageException
|
|
61
|
+
*
|
|
62
|
+
* @param {unknown} error Error Exception
|
|
63
|
+
* @throws {MessageException} Convert Message Exception class
|
|
64
|
+
* @returns {Promise<Error>}
|
|
65
|
+
*/
|
|
42
66
|
async requestException(error) {
|
|
43
|
-
const exceptionConverted = exception_1.Exception.
|
|
67
|
+
const exceptionConverted = exception_1.Exception.parse(error);
|
|
44
68
|
if (!exceptionConverted)
|
|
45
69
|
return error;
|
|
46
|
-
const
|
|
70
|
+
const requestParser = axios_1.default.isAxiosError(error) && error.config
|
|
71
|
+
? await AxiosRequestParser_1.AxiosRequestParser.parseLibraryToMessage(error.config)
|
|
72
|
+
: undefined;
|
|
73
|
+
const responseParser = axios_1.default.isAxiosError(error) && "response" in error && error.response
|
|
74
|
+
? await AxiosResponseParser_1.AxiosResponseParser.parseLibraryToMessage(error.response)
|
|
75
|
+
: undefined;
|
|
76
|
+
const exception = new message_1.MessageException(exceptionConverted.message, exceptionConverted.preview, undefined, requestParser, responseParser);
|
|
47
77
|
Object.defineProperty(exception, "isAxiosError", {
|
|
48
78
|
configurable: true,
|
|
49
79
|
enumerable: false,
|
package/dist/AxiosMessage.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AxiosMessage.js","sourceRoot":"","sources":["../src/AxiosMessage.ts"],"names":[],"mappings":";;;;;;
|
|
1
|
+
{"version":3,"file":"AxiosMessage.js","sourceRoot":"","sources":["../src/AxiosMessage.ts"],"names":[],"mappings":";;;;;;AAAA,8CAA2C;AAC3C,0CAOsB;AACtB,kDAGe;AAEf,oFAAiF;AACjF,sFAAmF;AACnF,sDAAmD;AACnD,oEAAiE;AACjE,sEAAmE;AAEnE,MAAa,YAAY;IASrB,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;YACA,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,OAAO,CACtC,uCAAkB,CAAC,qBAAqB,CAAC,OAAO,CAAC,CACpD,CAAC;YAEF,OAAO,MAAM,IAAI,CAAC,iBAAiB,CAAC,QAAQ,CAAC,CAAC;SACjD;QAAC,OAAO,KAAc,EAAE;YACrB,MAAM,MAAM,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAC;SAC5C;IACL,CAAC;IAED;;;;;;;OAOG;IACI,KAAK,CAAC,iBAAiB,CAC1B,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;gBACL,GAAG,QAAQ,CAAC,MAAM;gBAClB,OAAO,EAAE,yBAAW,CAAC,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,OAAO,CAAC;aAC7D;SACJ,CAAC;IACN,CAAC;IAED;;;;;;OAMG;IACK,KAAK,CAAC,gBAAgB,CAAC,KAAc;QACzC,MAAM,kBAAkB,GAAG,qBAAS,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;QAClD,IAAI,CAAC,kBAAkB;YAAE,OAAO,KAAc,CAAC;QAE/C,MAAM,aAAa,GAAG,eAAK,CAAC,YAAY,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,MAAM;YAC3D,CAAC,CAAC,MAAM,uCAAkB,CAAC,qBAAqB,CAAC,KAAK,CAAC,MAAM,CAAC;YAC9D,CAAC,CAAC,SAAS,CAAC;QAEhB,MAAM,cAAc,GAAG,eAAK,CAAC,YAAY,CAAC,KAAK,CAAC,IAAI,UAAU,IAAI,KAAK,IAAI,KAAK,CAAC,QAAQ;YACrF,CAAC,CAAC,MAAM,yCAAmB,CAAC,qBAAqB,CAAC,KAAK,CAAC,QAAQ,CAAC;YACjE,CAAC,CAAC,SAAS,CAAC;QAEhB,MAAM,SAAS,GAAG,IAAI,0BAAgB,CAClC,kBAAkB,CAAC,OAAO,EAC1B,kBAAkB,CAAC,OAAO,EAC1B,SAAS,EACT,aAAa,EACb,cAAc,CACjB,CAAC;QACF,MAAM,CAAC,cAAc,CAAC,SAAS,EAAE,cAAc,EAAE;YAC7C,YAAY,EAAE,IAAI;YAClB,UAAU,EAAE,KAAK;YACjB,KAAK,EAAE,eAAK,CAAC,YAAY,CAAC,KAAK,CAAC;YAChC,QAAQ,EAAE,IAAI;SACjB,CAAC,CAAC;QAEH,OAAO,SAAS,CAAC;IACrB,CAAC;CAEJ;AAvGD,oCAuGC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type AxiosInterceptorManager } from "axios";
|
|
2
|
+
export declare abstract class AxiosInterceptor<AxiosInterceptor> {
|
|
3
|
+
protected readonly interceptor: AxiosInterceptorManager<AxiosInterceptor>;
|
|
4
|
+
constructor(interceptor: AxiosInterceptorManager<AxiosInterceptor>);
|
|
5
|
+
eject(id: number): void;
|
|
6
|
+
clear(): void;
|
|
7
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AxiosInterceptor = void 0;
|
|
4
|
+
class AxiosInterceptor {
|
|
5
|
+
constructor(interceptor) {
|
|
6
|
+
this.interceptor = interceptor;
|
|
7
|
+
}
|
|
8
|
+
eject(id) {
|
|
9
|
+
this.interceptor.eject(id);
|
|
10
|
+
}
|
|
11
|
+
clear() {
|
|
12
|
+
if ("clear" in this.interceptor) {
|
|
13
|
+
this.interceptor.clear();
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
exports.AxiosInterceptor = AxiosInterceptor;
|
|
18
|
+
//# sourceMappingURL=AxiosInterceptor.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AxiosInterceptor.js","sourceRoot":"","sources":["../../src/interceptors/AxiosInterceptor.ts"],"names":[],"mappings":";;;AAEA,MAAsB,gBAAgB;IAElC,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;YAC5B,IAAI,CAAC,WAAW,CAAC,KAA0B,EAAE,CAAC;SAClD;IACL,CAAC;CAEJ;AAjBD,4CAiBC"}
|
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
import { type MessageInterceptorOptions, type
|
|
2
|
-
import { type AxiosRequestConfig
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
use(onFulfilled?: onFulfilledTypo<RequestInterface<RequestData>>, onRejected?: onRejectedTypo, options?: MessageInterceptorOptions): number;
|
|
7
|
-
eject(id: number): void;
|
|
8
|
-
clear(): void;
|
|
1
|
+
import { type MessageInterceptorOptions, type onFulfilledType, type onRejectedType, type InterceptorManager, type RequestInterface } from "@odg/message";
|
|
2
|
+
import { type AxiosRequestConfig } from "axios";
|
|
3
|
+
import { AxiosInterceptor } from "./AxiosInterceptor";
|
|
4
|
+
export declare class AxiosInterceptorRequest<RequestData> extends AxiosInterceptor<AxiosRequestConfig<RequestData>> implements InterceptorManager<RequestInterface<RequestData>> {
|
|
5
|
+
use(onFulfilled?: onFulfilledType<RequestInterface<RequestData>>, onRejected?: onRejectedType, options?: MessageInterceptorOptions): number;
|
|
9
6
|
}
|
|
@@ -2,10 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.AxiosInterceptorRequest = void 0;
|
|
4
4
|
const AxiosRequestParser_1 = require("../parser/AxiosRequestParser");
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
this.interceptor = interceptor;
|
|
8
|
-
}
|
|
5
|
+
const AxiosInterceptor_1 = require("./AxiosInterceptor");
|
|
6
|
+
class AxiosInterceptorRequest extends AxiosInterceptor_1.AxiosInterceptor {
|
|
9
7
|
use(onFulfilled, onRejected, options) {
|
|
10
8
|
return this.interceptor.use(async (config) => {
|
|
11
9
|
if (!onFulfilled)
|
|
@@ -18,14 +16,6 @@ class AxiosInterceptorRequest {
|
|
|
18
16
|
synchronous: options === null || options === void 0 ? void 0 : options.synchronous,
|
|
19
17
|
});
|
|
20
18
|
}
|
|
21
|
-
eject(id) {
|
|
22
|
-
this.interceptor.eject(id);
|
|
23
|
-
}
|
|
24
|
-
clear() {
|
|
25
|
-
if ("clear" in this.interceptor) {
|
|
26
|
-
this.interceptor.clear();
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
19
|
}
|
|
30
20
|
exports.AxiosInterceptorRequest = AxiosInterceptorRequest;
|
|
31
21
|
//# sourceMappingURL=AxiosInterceptorRequest.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AxiosInterceptorRequest.js","sourceRoot":"","sources":["../../src/interceptors/AxiosInterceptorRequest.ts"],"names":[],"mappings":";;;
|
|
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,MAAM,uCAAkB,CAAC,qBAAqB,CAAC,MAAM,CAAC,CAAC,CAC5E;aACJ,CAAC;QACN,CAAC,EACD,UAAU,EACV;YACI,WAAW,EAAE,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,WAAW;SACpC,CACJ,CAAC;IACN,CAAC;CAEJ;AA7BD,0DA6BC"}
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import { type MessageInterceptorOptions, type
|
|
2
|
-
import { type
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
use(onFulfilled?:
|
|
7
|
-
|
|
8
|
-
clear(): void;
|
|
1
|
+
import { type MessageInterceptorOptions, type onFulfilledType, type onRejectedType, type InterceptorManager, type ResponseInterface } from "@odg/message";
|
|
2
|
+
import { type AxiosResponse } from "axios";
|
|
3
|
+
import { AxiosInterceptor } from "./AxiosInterceptor";
|
|
4
|
+
export type onFulfilledFunctionType<RequestData, ResponseData> = (response: AxiosResponse<ResponseData, RequestData>) => Promise<AxiosResponse<ResponseData, RequestData>>;
|
|
5
|
+
export declare class AxiosInterceptorResponse<RequestData, ResponseData> extends AxiosInterceptor<AxiosResponse> implements InterceptorManager<ResponseInterface<RequestData, ResponseData>> {
|
|
6
|
+
use<RequestD = RequestData, ResponseD = ResponseData>(onFulfilled?: onFulfilledType<ResponseInterface<RequestD, ResponseD>>, onRejected?: onRejectedType, options?: MessageInterceptorOptions): number;
|
|
7
|
+
private onFulfilledResponse;
|
|
9
8
|
}
|
|
@@ -2,25 +2,23 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.AxiosInterceptorResponse = void 0;
|
|
4
4
|
const AxiosResponseParser_1 = require("../parser/AxiosResponseParser");
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
this.interceptor = interceptor;
|
|
8
|
-
}
|
|
5
|
+
const AxiosInterceptor_1 = require("./AxiosInterceptor");
|
|
6
|
+
class AxiosInterceptorResponse extends AxiosInterceptor_1.AxiosInterceptor {
|
|
9
7
|
use(onFulfilled, onRejected, options) {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
...await AxiosResponseParser_1.AxiosResponseParser.parseMessageToLibrary(await onFulfilled(await AxiosResponseParser_1.AxiosResponseParser.parseLibraryToMessage(config))),
|
|
13
|
-
})), onRejected, {
|
|
8
|
+
const response = onFulfilled && this.onFulfilledResponse(onFulfilled);
|
|
9
|
+
return this.interceptor.use(response, onRejected, {
|
|
14
10
|
synchronous: options === null || options === void 0 ? void 0 : options.synchronous,
|
|
15
11
|
});
|
|
16
12
|
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
13
|
+
onFulfilledResponse(onFulfilled) {
|
|
14
|
+
return async (response) => {
|
|
15
|
+
const responseMessage = await AxiosResponseParser_1.AxiosResponseParser.parseLibraryToMessage(response);
|
|
16
|
+
const messageResponse = await AxiosResponseParser_1.AxiosResponseParser.parseMessageToLibrary(await onFulfilled(responseMessage));
|
|
17
|
+
return {
|
|
18
|
+
...response,
|
|
19
|
+
...messageResponse,
|
|
20
|
+
};
|
|
21
|
+
};
|
|
24
22
|
}
|
|
25
23
|
}
|
|
26
24
|
exports.AxiosInterceptorResponse = AxiosInterceptorResponse;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AxiosInterceptorResponse.js","sourceRoot":"","sources":["../../src/interceptors/AxiosInterceptorResponse.ts"],"names":[],"mappings":";;;AASA,uEAAoE;AAEpE,
|
|
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,UAAU,EACV;YACI,WAAW,EAAE,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,WAAW;SACpC,CACJ,CAAC;IACN,CAAC;IAEO,mBAAmB,CACvB,WAAoE;QAEpE,OAAO,KAAK,EAAE,QAA4C,EAA+C,EAAE;YACvG,MAAM,eAAe,GAAG,MAAM,yCAAmB,CAAC,qBAAqB,CAAC,QAAQ,CAAC,CAAC;YAClF,MAAM,eAAe,GAAG,MAAM,yCAAmB,CAAC,qBAAqB,CACnE,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,6 +1,18 @@
|
|
|
1
1
|
import { type HttpHeadersInterface } from "@odg/message";
|
|
2
2
|
import { type AxiosResponseHeaders } from "axios";
|
|
3
3
|
export declare class AxiosParser {
|
|
4
|
+
/**
|
|
5
|
+
* Add support axios 1.0 headers
|
|
6
|
+
*
|
|
7
|
+
* @param {unknown | undefined} headers Axios Headers Object
|
|
8
|
+
* @returns {HttpHeadersInterface}
|
|
9
|
+
*/
|
|
4
10
|
static parseHeaders(headers?: unknown): HttpHeadersInterface;
|
|
11
|
+
/**
|
|
12
|
+
* Check if headers is Axios Headers
|
|
13
|
+
*
|
|
14
|
+
* @param {unknown} headers Axios Headers
|
|
15
|
+
* @returns {headers is AxiosResponseHeaders}
|
|
16
|
+
*/
|
|
5
17
|
protected static isAxiosHeaders(headers: unknown): headers is AxiosResponseHeaders;
|
|
6
18
|
}
|
|
@@ -2,12 +2,24 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.AxiosParser = void 0;
|
|
4
4
|
class AxiosParser {
|
|
5
|
+
/**
|
|
6
|
+
* Add support axios 1.0 headers
|
|
7
|
+
*
|
|
8
|
+
* @param {unknown | undefined} headers Axios Headers Object
|
|
9
|
+
* @returns {HttpHeadersInterface}
|
|
10
|
+
*/
|
|
5
11
|
static parseHeaders(headers) {
|
|
6
12
|
if (AxiosParser.isAxiosHeaders(headers) && typeof headers.toJSON === "function") {
|
|
7
13
|
return headers.toJSON(true);
|
|
8
14
|
}
|
|
9
15
|
return headers;
|
|
10
16
|
}
|
|
17
|
+
/**
|
|
18
|
+
* Check if headers is Axios Headers
|
|
19
|
+
*
|
|
20
|
+
* @param {unknown} headers Axios Headers
|
|
21
|
+
* @returns {headers is AxiosResponseHeaders}
|
|
22
|
+
*/
|
|
11
23
|
static isAxiosHeaders(headers) {
|
|
12
24
|
return !!(headers
|
|
13
25
|
&& typeof headers === "object");
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AxiosParser.js","sourceRoot":"","sources":["../../src/parser/AxiosParser.ts"],"names":[],"mappings":";;;AAGA,MAAa,WAAW;
|
|
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;YAC7E,OAAQ,OAAO,CAAC,MAA2B,CAAC,IAAI,CAAyB,CAAC;SAC7E;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"}
|
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
import { type RequestInterface } from "@odg/message";
|
|
2
2
|
import { type AxiosRequestConfig } from "axios";
|
|
3
3
|
export declare class AxiosRequestParser {
|
|
4
|
+
/**
|
|
5
|
+
* Parse MessageInterface to Axios
|
|
6
|
+
*
|
|
7
|
+
* @template {any} RequestD Dados Request Axios
|
|
8
|
+
* @param {RequestInterface<RequestD>} config Dados Request
|
|
9
|
+
* @returns {AxiosRequestConfig<RequestD>}
|
|
10
|
+
*/
|
|
4
11
|
static parseMessageToLibrary<RequestD>(config: RequestInterface<RequestD>): AxiosRequestConfig<RequestD>;
|
|
12
|
+
/**
|
|
13
|
+
* Parse Request Axios configuration
|
|
14
|
+
*
|
|
15
|
+
* @template {any} RequestD Dados Request Axios
|
|
16
|
+
* @param {AxiosRequestConfig<RequestD>} config Dados Request
|
|
17
|
+
* @returns {Promise<RequestInterface<RequestD>>}
|
|
18
|
+
*/
|
|
5
19
|
static parseLibraryToMessage<RequestD>(config: AxiosRequestConfig<RequestD>): Promise<RequestInterface<RequestD>>;
|
|
6
20
|
}
|
|
@@ -3,6 +3,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.AxiosRequestParser = void 0;
|
|
4
4
|
const AxiosParser_1 = require("./AxiosParser");
|
|
5
5
|
class AxiosRequestParser {
|
|
6
|
+
/**
|
|
7
|
+
* Parse MessageInterface to Axios
|
|
8
|
+
*
|
|
9
|
+
* @template {any} RequestD Dados Request Axios
|
|
10
|
+
* @param {RequestInterface<RequestD>} config Dados Request
|
|
11
|
+
* @returns {AxiosRequestConfig<RequestD>}
|
|
12
|
+
*/
|
|
6
13
|
static parseMessageToLibrary(config) {
|
|
7
14
|
return Object.fromEntries(Object.entries({
|
|
8
15
|
url: config.url,
|
|
@@ -21,12 +28,20 @@ class AxiosRequestParser {
|
|
|
21
28
|
proxy: config.proxy,
|
|
22
29
|
}).filter(([, value]) => value !== undefined));
|
|
23
30
|
}
|
|
31
|
+
/**
|
|
32
|
+
* Parse Request Axios configuration
|
|
33
|
+
*
|
|
34
|
+
* @template {any} RequestD Dados Request Axios
|
|
35
|
+
* @param {AxiosRequestConfig<RequestD>} config Dados Request
|
|
36
|
+
* @returns {Promise<RequestInterface<RequestD>>}
|
|
37
|
+
*/
|
|
24
38
|
static async parseLibraryToMessage(config) {
|
|
25
39
|
return Object.fromEntries(Object.entries({
|
|
26
40
|
url: config.url,
|
|
27
41
|
baseURL: config.baseURL,
|
|
28
42
|
method: config.method,
|
|
29
43
|
headers: AxiosParser_1.AxiosParser.parseHeaders(config.headers),
|
|
44
|
+
// TODO: params: config.params,
|
|
30
45
|
data: config.data,
|
|
31
46
|
timeout: config.timeout,
|
|
32
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;
|
|
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,KAAK,CAAC,qBAAqB,CACrC,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;YAEjD,+BAA+B;YAC/B,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;AA3DD,gDA2DC"}
|
|
@@ -1,6 +1,22 @@
|
|
|
1
1
|
import { type ResponseInterface } from "@odg/message";
|
|
2
2
|
import { type AxiosResponse } from "axios";
|
|
3
3
|
export declare class AxiosResponseParser {
|
|
4
|
+
/**
|
|
5
|
+
* Cast ResponseInterface To AxiosResponse
|
|
6
|
+
*
|
|
7
|
+
* @template {any} RequestD Data Request
|
|
8
|
+
* @template {any} ResponseD Data Response
|
|
9
|
+
* @param {ResponseInterface<RequestD, ResponseD>} response axios Response Object
|
|
10
|
+
* @returns {Promise<AxiosResponse<ResponseD, RequestD>>}
|
|
11
|
+
*/
|
|
4
12
|
static parseMessageToLibrary<RequestD, ResponseD>(response: ResponseInterface<RequestD, ResponseD>): Promise<AxiosResponse<ResponseD, RequestD>>;
|
|
13
|
+
/**
|
|
14
|
+
* Cast AxiosResponse axios To ResponseInterface
|
|
15
|
+
*
|
|
16
|
+
* @template {any} RequestD Data Request
|
|
17
|
+
* @template {any} ResponseD Data Response
|
|
18
|
+
* @param {AxiosResponse<ResponseD, RequestD>} response axios Response Object
|
|
19
|
+
* @returns {Promise<ResponseInterface<RequestD, ResponseD>>}
|
|
20
|
+
*/
|
|
5
21
|
static parseLibraryToMessage<RequestD, ResponseD>(response: AxiosResponse<ResponseD, RequestD>): Promise<ResponseInterface<RequestD, ResponseD>>;
|
|
6
22
|
}
|
|
@@ -8,6 +8,14 @@ const node_http_1 = __importDefault(require("node:http"));
|
|
|
8
8
|
const AxiosParser_1 = require("./AxiosParser");
|
|
9
9
|
const AxiosRequestParser_1 = require("./AxiosRequestParser");
|
|
10
10
|
class AxiosResponseParser {
|
|
11
|
+
/**
|
|
12
|
+
* Cast ResponseInterface To AxiosResponse
|
|
13
|
+
*
|
|
14
|
+
* @template {any} RequestD Data Request
|
|
15
|
+
* @template {any} ResponseD Data Response
|
|
16
|
+
* @param {ResponseInterface<RequestD, ResponseD>} response axios Response Object
|
|
17
|
+
* @returns {Promise<AxiosResponse<ResponseD, RequestD>>}
|
|
18
|
+
*/
|
|
11
19
|
static async parseMessageToLibrary(response) {
|
|
12
20
|
var _a;
|
|
13
21
|
return {
|
|
@@ -20,11 +28,19 @@ class AxiosResponseParser {
|
|
|
20
28
|
}),
|
|
21
29
|
};
|
|
22
30
|
}
|
|
31
|
+
/**
|
|
32
|
+
* Cast AxiosResponse axios To ResponseInterface
|
|
33
|
+
*
|
|
34
|
+
* @template {any} RequestD Data Request
|
|
35
|
+
* @template {any} ResponseD Data Response
|
|
36
|
+
* @param {AxiosResponse<ResponseD, RequestD>} response axios Response Object
|
|
37
|
+
* @returns {Promise<ResponseInterface<RequestD, ResponseD>>}
|
|
38
|
+
*/
|
|
23
39
|
static async parseLibraryToMessage(response) {
|
|
24
40
|
return {
|
|
25
41
|
data: response.data,
|
|
26
42
|
status: response.status,
|
|
27
|
-
headers: response.headers,
|
|
43
|
+
headers: AxiosParser_1.AxiosParser.parseHeaders(response.headers),
|
|
28
44
|
request: await AxiosRequestParser_1.AxiosRequestParser.parseLibraryToMessage({
|
|
29
45
|
...response.config,
|
|
30
46
|
headers: AxiosParser_1.AxiosParser.parseHeaders(response.config.headers),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AxiosResponseParser.js","sourceRoot":"","sources":["../../src/parser/AxiosResponseParser.ts"],"names":[],"mappings":";;;;;;AAAA,0DAA6B;
|
|
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,KAAK,CAAC,qBAAqB,CACrC,QAAgD;;QAEhD,OAAO;YACH,IAAI,EAAE,QAAQ,CAAC,IAAI;YACnB,MAAM,EAAE,QAAQ,CAAC,MAAM;YACvB,UAAU,EAAE,MAAA,mBAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,mCAAI,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,KAAK,CAAC,qBAAqB,CACrC,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,MAAM,uCAAkB,CAAC,qBAAqB,CAAW;gBAC9D,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"}
|
|
@@ -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.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.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/@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/index.d.ts","../node_modules/axios/index.d.cts","../src/parser/AxiosParser.ts","../src/parser/AxiosRequestParser.ts","../src/interceptors/AxiosInterceptorRequest.ts","../src/parser/AxiosResponseParser.ts","../src/interceptors/AxiosInterceptorResponse.ts","../src/AxiosMessage.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/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/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","impliedFormat":1},{"version":"d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","impliedFormat":1},{"version":"aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c","impliedFormat":1},{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true,"impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true,"impliedFormat":1},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true,"impliedFormat":1},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true,"impliedFormat":1},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true,"impliedFormat":1},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true,"impliedFormat":1},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true,"impliedFormat":1},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"efe61d7b21583bf2b54e1a628d4255d7e6d9cc3452bd15ade174f729e6f047a0","impliedFormat":1},{"version":"6bb8480771517b68dc8c48553fe615e0bc38d9df1572bfa45e5db9844ef76776","impliedFormat":1},{"version":"1df58ba1cc41c4166dcbe53efd88611b9ddf5a27f33f4eb88a9189ea2ea56473","impliedFormat":1},{"version":"59ca51b028bd2f73ee8bae61cad63337d8dac1dca7df3e387dab041c7246c60e","impliedFormat":1},{"version":"444c5719fedd51a6caf386f951caa39b26106fd020519d40b1f9b40a42327e5b","impliedFormat":1},{"version":"111bcb69339040b4ab26a0c8a9e672e1530cd788f3a6d10119aabd073b67268a","impliedFormat":1},{"version":"f3e0bbbb1905f3aa7870140a725ffefda948747cbf67fbe8e037bfa65ce1e6b5","impliedFormat":1},{"version":"d83ef2663cabe4cb5dec0f9936caac60f7efe02f94b8775cc0df16f31b6a6835","impliedFormat":1},{"version":"df314da1a78365c92f1c47129b4a06441b1d5387ef2c6d93877a393b56292222","impliedFormat":1},{"version":"b2883435956fe5edc9fe692b8d00630e96c5f7e1bd2204591d0efb9b4c7c9420","impliedFormat":1},{"version":"b3db97d0c42500141db9f93525d27ba8bdae17eb87fa29c940b5345ee9308ab9","impliedFormat":1},{"version":"999ecabd77bf04d6e398d6392134ef0a4ee842f984899abab6030bc50090d03b","signature":"fa31331388a633ec3a70455cea954f4962c2cf1a889cfac9239fdbce2ff92e99","impliedFormat":1},{"version":"e5bb8bf4d45def380d73c1c2d166050c16a714286d14b938b18ca8813baac941","signature":"73ba17946917cb56a4897ee1e666984ca97ad6f2d51e69e241dc5316b4512c15","impliedFormat":1},{"version":"c61ecc41dfcfe9ea172939e1f67fdf201d95192d4b74d9d52a59be81c1ffb6c5","signature":"236cf1d9a538a5133b55e5c3d551ca6933e757662c68b53d35c0d75cf91b5393","impliedFormat":1},{"version":"5e7448b6cc635791f95f7cc6572269d3724c6e6084d1a6ab11cbec9d1d07dc10","signature":"8fb16f43bffbca6f53ead423225ce09c9b022b94193379c47031f4105552cd88","impliedFormat":1},{"version":"ca6524dbd56f5fe873ca6662dc6f02ab31b96ac0bbffff57ab647d058a08f301","signature":"fe0e5449c94755c07d4099e6a5b72dab7a388d0894797fdf1c0663ff0b44046e","impliedFormat":1},{"version":"68a06b7c1227d38975b8fe1a0d12b13a5e6961aff93b909195099c147b166962","signature":"b00807be77c6d146462545ff50fe7da1f2fc49f69ae041dfb58e70ffb9a525e9","impliedFormat":1},{"version":"ad447c18ab716926aea7b3aedfe8c2b158e26034a8a46ec5c358a74c0969a363","impliedFormat":1},{"version":"4911d4c3a7f7c11bad0e2cec329a19a385d10ea83b0b69c76e032359e388f624","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"4f6463a60e5754bbc4a864b2aaf8fecb7706b96a21b88f27b534589b801978b6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56d13f223ab40f71840795f5bef2552a397a70666ee60878222407f3893fb8d0","impliedFormat":1},{"version":"4ffef5c4698e94e49dcf150e3270bad2b24a2aeab48b24acbe7c1366edff377d","affectsGlobalScope":true,"impliedFormat":1},{"version":"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","impliedFormat":1},{"version":"afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565","impliedFormat":1},{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"062c2c62d4fdd3a7968346fe113ad66fac6a7fc2ca52244c4433db611a1e4ef7","impliedFormat":1},{"version":"f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","impliedFormat":1},{"version":"8bd106053ee0345dde7f626ed1f6100a89fb85f13ea65352627cf78c5f30c553","impliedFormat":1},{"version":"76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","impliedFormat":1},{"version":"0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","impliedFormat":1},{"version":"06ccebc2c2db57d6bdbca63b71c4ae5e6ddc42d972fd8f122d4c1a28aa111b25","impliedFormat":1},{"version":"81e8508d1e82278f5d3fee936f267e00c308af36219bfcee2631f9513c9c4017","affectsGlobalScope":true,"impliedFormat":1},{"version":"413a4be7f94f631235bbc83dad36c4d15e5a2ff02bca1efdbd03636d6454631b","impliedFormat":1},{"version":"20c468256fd68d3ef1fa53526e76d51d6aa91711e84d72c0343589b99238287e","impliedFormat":1},{"version":"4198acced75d48a039c078734c4efca7788ff8c78609c270a2b63ec20e3e1676","impliedFormat":1},{"version":"8d4c16a26d59e3ce49741a7d4a6e8206b884e226cf308667c7778a0b2c0fee7f","impliedFormat":1},{"version":"ee3bad055a79f188626b1a7046f04ab151fdd3581e55c51d32face175bd9d06f","impliedFormat":1},{"version":"d61c7c41eb1960b1285e242fd102c162b65c0522985b839fadda59874308a170","impliedFormat":1},{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true,"impliedFormat":1},{"version":"1805e0e4d1ed00f6361db25dff6887c7fa9b5b39f32599a34e8551da7daaa9c2","impliedFormat":1},{"version":"abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","impliedFormat":1},{"version":"fb0989383c6109f20281b3d31265293daefdd76d0d30551782c1654e93704f48","impliedFormat":1},{"version":"a4210a84a82b3e7a8cec5b2f3616e46d523f4f10cc1576d8f2fb89d0987b341e","impliedFormat":1},{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","impliedFormat":1},{"version":"22d48bfb37261136423ac687f1fa7bd4dda3083f767416d409a8260cf92bc8fc","impliedFormat":1},{"version":"29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","impliedFormat":1},{"version":"0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","impliedFormat":1},{"version":"95518ff86843e226b62a800f679f6968ad8dac8ccbe30fbfe63de3afb13761a2","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"698ab660b477b9c2cd5ccbd99e7e7df8b4a6134c1f5711fa615ed7aab51cb7f7","impliedFormat":1},{"version":"33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","impliedFormat":1},{"version":"c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637","impliedFormat":1},{"version":"a4471d2bdba495b2a6a30b8765d5e0282fa7009d88345a9528f73c37869d3b93","impliedFormat":1},{"version":"aee7013623e7632fba449d4df1da92925b27d9b816cb05546044dbfe54c88ef4","affectsGlobalScope":true,"impliedFormat":1},{"version":"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","impliedFormat":1},{"version":"c9d70d3d7191a66a81cb554557f8ed1cf736ea8397c44a864fe52689de18865a","impliedFormat":1},{"version":"998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","impliedFormat":1},{"version":"ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","impliedFormat":1},{"version":"1aad825534c73852a1f3275e527d729a2c0640f539198fdfdfeb83b839851910","affectsGlobalScope":true,"impliedFormat":1},{"version":"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","impliedFormat":1},{"version":"c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","impliedFormat":1},{"version":"235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","impliedFormat":1},{"version":"bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","impliedFormat":1},{"version":"9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","impliedFormat":1},{"version":"c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"88003d9ab15507806f41b120be6d407c1afe566c2f6689ebe3a034dd5ec0c8dc","impliedFormat":1},{"version":"a7321c0e96eecb19dcbf178493836474cef21ee3f9345384ce9d74e4be31228d","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"3054ef91b855e005b9c4681399e9d64d2a7b07a22d539314d794f09e53b876a7","impliedFormat":1},{"version":"427ce5854885cfc34387e09de05c1d5c1acf94c2143e1693f1d9ff54880573e7","impliedFormat":1},{"version":"bed2c4f96fab3348be4a34d88dcb12578c1b2475b07c6acd369e99e227718d81","impliedFormat":1},{"version":"e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","impliedFormat":1},{"version":"9ac9b7b349a96ff204f4172183cca1672cc402e1ee7277bfcdec96c000b7d818","impliedFormat":1},{"version":"ac127e4c6f2b5220b293cc9d2e64ba49781225b792a51cda50f3db8eafba550c","impliedFormat":1},{"version":"0c3b45b6a42c0074fadd59c5d370592ca48c89a706d903452565ca89b1b2c164","affectsGlobalScope":true,"impliedFormat":1}],"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":true,"sourceMap":true,"strict":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":5},"fileIdsList":[[118],[118,128],[56,118],[56,57,118],[59,60,61,62,63,64,118],[61,62,118],[59,60,61,118],[59,62,118],[58,61,62,118],[118,130,133],[74,118],[77,118],[78,83,109,118],[79,89,90,97,106,117,118],[79,80,89,97,118],[81,118],[82,83,90,98,118],[83,106,114,118],[84,86,89,97,118],[85,118],[86,87,118],[88,89,118],[89,118],[89,90,91,106,117,118],[89,90,91,106,118],[92,97,106,117,118],[89,90,92,93,97,106,114,117,118],[92,94,106,114,117,118],[74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124],[89,95,118],[96,117,118],[86,89,97,106,118],[98,118],[99,118],[77,100,118],[101,116,118,122],[102,118],[103,118],[89,104,118],[104,105,118,120],[78,89,106,107,108,118],[78,106,108,118],[106,107,118],[109,118],[110,118],[89,112,113,118],[112,113,118],[83,97,114,118],[115,118],[97,116,118],[78,92,103,117,118],[83,118],[106,118,119],[118,120],[118,121],[78,83,89,91,100,106,117,118,120,122],[106,118,123],[118,126,132],[118,130],[118,127,131],[118,129],[58,65,66,67,68,69,71,118],[72,118],[65,66,68,118],[65,66,70,118],[65,66,118],[65,66,67,118],[65,66,67,68,92,118],[65,66]],"referencedMap":[[126,1],[129,2],[56,1],[57,3],[58,4],[65,5],[63,6],[59,1],[60,1],[62,7],[61,8],[64,9],[128,1],[134,10],[74,11],[75,11],[77,12],[78,13],[79,14],[80,15],[81,16],[82,17],[83,18],[84,19],[85,20],[86,21],[87,21],[88,22],[89,23],[90,24],[91,25],[76,1],[124,1],[92,26],[93,27],[94,28],[125,29],[95,30],[96,31],[97,32],[98,33],[99,34],[100,35],[101,36],[102,37],[103,38],[104,39],[105,40],[106,41],[108,42],[107,43],[109,44],[110,45],[111,1],[112,46],[113,47],[114,48],[115,49],[116,50],[117,51],[118,52],[119,53],[120,54],[121,55],[122,56],[123,57],[66,1],[127,1],[133,58],[131,59],[132,60],[130,61],[11,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[53,1],[54,1],[1,1],[10,1],[55,1],[72,62],[73,63],[69,64],[71,65],[67,66],[68,67],[70,68]],"exportedModulesMap":[[126,1],[129,2],[56,1],[57,3],[58,4],[65,5],[63,6],[59,1],[60,1],[62,7],[61,8],[64,9],[128,1],[134,10],[74,11],[75,11],[77,12],[78,13],[79,14],[80,15],[81,16],[82,17],[83,18],[84,19],[85,20],[86,21],[87,21],[88,22],[89,23],[90,24],[91,25],[76,1],[124,1],[92,26],[93,27],[94,28],[125,29],[95,30],[96,31],[97,32],[98,33],[99,34],[100,35],[101,36],[102,37],[103,38],[104,39],[105,40],[106,41],[108,42],[107,43],[109,44],[110,45],[111,1],[112,46],[113,47],[114,48],[115,49],[116,50],[117,51],[118,52],[119,53],[120,54],[121,55],[122,56],[123,57],[66,1],[127,1],[133,58],[131,59],[132,60],[130,61],[11,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[53,1],[54,1],[1,1],[10,1],[55,1],[72,69],[73,63],[69,69],[71,69],[67,69],[68,69],[70,69]],"semanticDiagnosticsPerFile":[126,129,56,57,58,65,63,59,60,62,61,64,128,134,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,76,124,92,93,94,125,95,96,97,98,99,100,101,102,103,104,105,106,108,107,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,66,127,133,131,132,130,11,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,53,54,1,10,55,72,73,69,71,67,68,70]},"version":"4.9.4"}
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.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.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.esnext.intl.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/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/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":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","impliedFormat":1},{"version":"27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"f4e736d6c8d69ae5b3ab0ddfcaa3dc365c3e76909d6660af5b4e979b3934ac20","impliedFormat":1},{"version":"eeeb3aca31fbadef8b82502484499dfd1757204799a6f5b33116201c810676ec","impliedFormat":1},{"version":"3dda5344576193a4ae48b8d03f105c86f20b2f2aff0a1d1fd7935f5d68649654","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","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":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true,"impliedFormat":1},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","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":"f06948deb2a51aae25184561c9640fb66afeddb34531a9212d011792b1d19e0a","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":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","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":"25de46552b782d43cb7284df22fe2a265de387cf0248b747a7a1b647d81861f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true,"impliedFormat":1},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"26c73c122a410b363632919067345d82ea5fbff776e063319001f9e714d7de72","impliedFormat":1},{"version":"72b9c9f40c1fe32fa9bd1e1f4546905aafd3275b4053ccea8a223d3134f5d775","impliedFormat":1},{"version":"1df58ba1cc41c4166dcbe53efd88611b9ddf5a27f33f4eb88a9189ea2ea56473","impliedFormat":1},{"version":"8047e110c20591b472d8986eeed76bb7656ec4ce295a64a31a31141ae4c2e941","impliedFormat":1},{"version":"f69635d37dbab18c4459e6b84d1b72b7203dd65a35f2fd46e7d463b3a7b7258f","impliedFormat":1},{"version":"111bcb69339040b4ab26a0c8a9e672e1530cd788f3a6d10119aabd073b67268a","impliedFormat":1},{"version":"eca0bfdfabc8e5f79844be1015f5ea06c5850b69214ca0e340d23f76440c192a","impliedFormat":1},{"version":"2f0060121b88abb75c1fdbb9df77c21102e414beea5d6662ea22e628c7a66d6d","impliedFormat":1},{"version":"df314da1a78365c92f1c47129b4a06441b1d5387ef2c6d93877a393b56292222","impliedFormat":1},{"version":"b2883435956fe5edc9fe692b8d00630e96c5f7e1bd2204591d0efb9b4c7c9420","impliedFormat":1},{"version":"d82407b6d2982d5a319c7eb123ac35052886ac2fdd9e8a8bc584faf64f984de8","impliedFormat":1},{"version":"824cfbd433389e0f80232d4463ffbfea394babdda7a2759113a1f8efcc2ed629","signature":"4ae4b67f63be1eb083b53f78d5100b5ce588a77c5d5ff0a9e11572aebcea128d","impliedFormat":1},{"version":"14044e220854615e64f12605d710addf6e362133bcc9933255c4ff818115a1d3","signature":"2d719e166cc0b45e41f63181080895e7c8bf57574826eb39c4db25ca4726e377","impliedFormat":1},{"version":"621b6ae3dd088c0233508bd86cdcea818507c3e8c1cfdb12a3fcdfa4405a4971","signature":"41d9c702b2777256fda624e6b131a220b052add45c9a7805a48f1a5edfbf16e4","impliedFormat":1},{"version":"18a4e2cef7fd5c5037f6e181e4fca80faa175da88ad282730c63f11162014247","signature":"3f6b36c3173459b1dad437b1890e5264dbe5208f99904e72ac61d59a3ba2ed28","impliedFormat":1},{"version":"f076593aba0d59193184389222902ceddbe5093014c803efd5bbf4ea5673e65a","signature":"13c78ace1f997b5b91cc7e8702401561fa8f948d9506920ae952f20e8f3fc15a","impliedFormat":1},{"version":"4129027c3996669866e4aa7a7afb57eba6798894465fc81fcac4af36bd055a9d","signature":"60ba396ccd5aaf4689f6ab9d9e3e59abd209685f7a93154f1243bdecb7e643c9","impliedFormat":1},{"version":"7a8c219d48dbb8298865022f94539c9317c30a3c7a6809e7809904f73f532ab3","signature":"d8c8cc32ffe6aa17034cf275a1b72fdb74651c7db64e81dd1f779f36ff09b432","impliedFormat":1},{"version":"ad447c18ab716926aea7b3aedfe8c2b158e26034a8a46ec5c358a74c0969a363","impliedFormat":1},{"version":"ba8691cf6bea9d53e6bf6cbc22af964a9633a21793981a1be3dce65e7a714d8b","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"7d2e3fea24c712c99c03ad8f556abedbfe105f87f1be10b95dbd409d24bc05a3","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":"4eaff3d8e10676fd7913d8c108890e71c688e1e7d52f6d1d55c39514f493dc47","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"00dee7cdca8b8420c47ea4a31a34b8e8294013ebc4f463fd941e867e7bf05029","affectsGlobalScope":true,"impliedFormat":1},{"version":"7abd2623cdd8148233c0c6b9da0289e124f1718bc58dcb8da4262432e9ce0f0a","impliedFormat":1},{"version":"f4a3088770ba56a4c72e9907bc9798706ab1575097cd024503f57966df2d3d3a","impliedFormat":1},{"version":"7f138842074d0a40681775af008c8452093b68c383c94de31759e853c6d06b5c","impliedFormat":1},{"version":"a3d541d303ee505053f5dcbf9fafb65cac3d5631037501cd616195863a6c5740","impliedFormat":1},{"version":"8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","impliedFormat":1},{"version":"2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58","impliedFormat":1},{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true,"impliedFormat":1},{"version":"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","impliedFormat":1},{"version":"7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","impliedFormat":1},{"version":"b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30","impliedFormat":1},{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0715e4cd28ad471b2a93f3e552ff51a3ae423417a01a10aa1d3bc7c6b95059d6","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":"4f3fdeba4e28e21aa719c081b8dc8f91d47e12e773389b9d35679c08151c9d37","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"5629c03c44d1e07698c31d04318c9950d78940461269c0f692a42091cedea142","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":"c6b124041039647ff446e19ea0e90a7a83256593d64f23c66b4fda6e0c5b968e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a9fc1469744055a3435f203123246b96c094e7ff8c4e1c3863829d9b705b7a34","affectsGlobalScope":true,"impliedFormat":1},{"version":"868831cab82b65dfe1d68180e898af1f2101e89ba9b754d1db6fb8cc2fac1921","impliedFormat":1},{"version":"0fe8985a28f82c450a04a6edf1279d7181c0893f37da7d2a27f8efd4fd5edb03","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"52120bb7e4583612225bdf08e7c12559548170f11e660d33a33623bae9bbdbba","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6dd3dba8e665ac43d279e0fdf5219edda0eed69b5e9a5061f46cd6a65c4f7a1","impliedFormat":1}],"root":[[72,79]],"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":5},"fileIdsList":[[126],[61,126],[61,62,126],[64,65,66,67,68,69,126],[66,67,126],[64,65,66,126],[64,67,126],[63,66,67,126],[80,126],[83,126],[84,89,117,126],[85,96,97,104,114,125,126],[85,86,96,104,126],[87,126],[88,89,97,105,126],[89,114,122,126],[90,92,96,104,126],[91,126],[92,93,126],[96,126],[94,96,126],[96,97,98,114,125,126],[96,97,98,111,114,117,126],[126,130],[92,96,99,104,114,125,126],[96,97,99,100,104,114,122,125,126],[99,101,114,122,125,126],[80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132],[96,102,126],[103,125,126],[92,96,104,114,126],[105,126],[106,126],[83,107,126],[108,124,126,130],[109,126],[110,126],[96,111,112,126],[111,113,126,128],[84,96,114,115,116,117,126],[84,114,116,126],[114,115,126],[117,126],[118,126],[96,120,121,126],[120,121,126],[89,104,114,122,126],[123,126],[104,124,126],[84,99,110,125,126],[89,126],[114,126,127],[126,128],[126,129],[84,89,96,98,107,114,125,126,128,130],[114,126,131],[63,70,71,72,73,75,76,77,126],[78,126],[71,126],[70,71,73,74,126],[70,71,74,76,126],[70,71,126],[70,71,72,126],[70,71,72,73,99,126],[70,71],[71],[70,71,74]],"referencedMap":[[61,1],[62,2],[63,3],[70,4],[68,5],[64,1],[65,1],[67,6],[66,7],[69,8],[80,9],[81,9],[83,10],[84,11],[85,12],[86,13],[87,14],[88,15],[89,16],[90,17],[91,18],[92,19],[93,19],[95,20],[94,21],[96,20],[97,22],[98,23],[82,24],[132,1],[99,25],[100,26],[101,27],[133,28],[102,29],[103,30],[104,31],[105,32],[106,33],[107,34],[108,35],[109,36],[110,37],[111,38],[112,38],[113,39],[114,40],[116,41],[115,42],[117,43],[118,44],[119,1],[120,45],[121,46],[122,47],[123,48],[124,49],[125,50],[126,51],[127,52],[128,53],[129,54],[130,55],[131,56],[71,1],[59,1],[60,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],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[5,1],[30,1],[31,1],[32,1],[33,1],[6,1],[37,1],[34,1],[35,1],[36,1],[38,1],[7,1],[39,1],[44,1],[45,1],[40,1],[41,1],[42,1],[43,1],[8,1],[49,1],[46,1],[47,1],[48,1],[50,1],[9,1],[51,1],[52,1],[53,1],[56,1],[54,1],[55,1],[57,1],[10,1],[1,1],[11,1],[58,1],[78,57],[79,58],[74,59],[75,60],[77,61],[72,62],[73,63],[76,64]],"exportedModulesMap":[[61,1],[62,2],[63,3],[70,4],[68,5],[64,1],[65,1],[67,6],[66,7],[69,8],[80,9],[81,9],[83,10],[84,11],[85,12],[86,13],[87,14],[88,15],[89,16],[90,17],[91,18],[92,19],[93,19],[95,20],[94,21],[96,20],[97,22],[98,23],[82,24],[132,1],[99,25],[100,26],[101,27],[133,28],[102,29],[103,30],[104,31],[105,32],[106,33],[107,34],[108,35],[109,36],[110,37],[111,38],[112,38],[113,39],[114,40],[116,41],[115,42],[117,43],[118,44],[119,1],[120,45],[121,46],[122,47],[123,48],[124,49],[125,50],[126,51],[127,52],[128,53],[129,54],[130,55],[131,56],[71,1],[59,1],[60,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],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[5,1],[30,1],[31,1],[32,1],[33,1],[6,1],[37,1],[34,1],[35,1],[36,1],[38,1],[7,1],[39,1],[44,1],[45,1],[40,1],[41,1],[42,1],[43,1],[8,1],[49,1],[46,1],[47,1],[48,1],[50,1],[9,1],[51,1],[52,1],[53,1],[56,1],[54,1],[55,1],[57,1],[10,1],[1,1],[11,1],[58,1],[78,65],[79,58],[74,66],[75,67],[77,67],[72,65],[73,65],[76,65]],"semanticDiagnosticsPerFile":[61,62,63,70,68,64,65,67,66,69,80,81,83,84,85,86,87,88,89,90,91,92,93,95,94,96,97,98,82,132,99,100,101,133,102,103,104,105,106,107,108,109,110,111,112,113,114,116,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,71,59,60,12,14,13,2,15,16,17,18,19,20,21,22,3,4,26,23,24,25,27,28,29,5,30,31,32,33,6,37,34,35,36,38,7,39,44,45,40,41,42,43,8,49,46,47,48,50,9,51,52,53,56,54,55,57,10,1,11,58,78,79,74,75,77,72,73,76]},"version":"5.1.6"}
|
package/package.json
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odg/axios",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Project Axios using IoC and DI",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
|
-
"homepage": "",
|
|
7
|
+
"homepage": "https://github.com/ODGodinho/ODGAxios",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": ""
|
|
10
|
+
"url": "https://github.com/ODGodinho/ODGAxios"
|
|
11
11
|
},
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "rimraf build && tsc --project ./tsconfig.build.json",
|
|
14
14
|
"build:watch": "rimraf build && tsc --project ./tsconfig.build.json -w",
|
|
15
15
|
"dev": "ts-node ./src/index.ts",
|
|
16
|
+
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json,.jsonc,.json5,.yml,.yaml,.xml,.txt,.svg,.properties,.gradle,.java,.cpp,.c,.cs,.html,.css,.groovy,.gitignore,.npmignore,.toml,.env,.example,.sample,.ini,.php,.bat,.powershell,.ps1,.sh,.bash",
|
|
17
|
+
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx,.json,.jsonc,.json5,.yml,.yaml,.xml,.txt,.svg,.properties,.gradle,.java,.cpp,.c,.cs,.html,.css,.groovy,.gitignore,.npmignore,.toml,.env,.example,.sample,.ini,.php,.bat,.powershell,.ps1,.sh,.bash --fix",
|
|
16
18
|
"start": "node ./dist/index.ts",
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"test": "
|
|
20
|
-
"test:ci": "jest --ci --passWithNoTests",
|
|
21
|
-
"test:watch": "jest --watchAll"
|
|
19
|
+
"test": "vitest run",
|
|
20
|
+
"test:ci": "vitest run --passWithNoTests",
|
|
21
|
+
"test:watch": "vitest --watch"
|
|
22
22
|
},
|
|
23
23
|
"publishConfig": {
|
|
24
24
|
"access": "public"
|
|
@@ -54,20 +54,19 @@
|
|
|
54
54
|
"license": "MIT",
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@odg/eslint-config": "*",
|
|
57
|
-
"@
|
|
58
|
-
"@types/node": "^
|
|
57
|
+
"@odg/tsconfig": "^1.1.0",
|
|
58
|
+
"@types/node": "^18",
|
|
59
|
+
"@vitest/coverage-v8": "^0.33.0",
|
|
59
60
|
"eslint": "*",
|
|
60
|
-
"
|
|
61
|
-
"rimraf": "^3.0.2",
|
|
62
|
-
"semantic-release": "^19.0.5",
|
|
63
|
-
"ts-jest": "^29.0.3",
|
|
61
|
+
"rimraf": "^5.0.1",
|
|
64
62
|
"ts-node": "^10.9.1",
|
|
65
|
-
"typescript": "^
|
|
63
|
+
"typescript": "^5.1.6",
|
|
64
|
+
"vite-tsconfig-paths": "^4.2.0",
|
|
65
|
+
"vitest": "^0.33.0"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@odg/exception": "
|
|
68
|
+
"@odg/exception": "*",
|
|
69
69
|
"@odg/message": "*",
|
|
70
|
-
"@odg/tsconfig": "*",
|
|
71
70
|
"axios": "*"
|
|
72
71
|
}
|
|
73
72
|
}
|