@odg/axios 1.7.1 → 1.9.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 +13 -11
- package/dist/AxiosMessage.js +15 -11
- package/dist/AxiosMessage.js.map +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/dist/interceptors/AxiosInterceptor.d.ts +3 -2
- package/dist/interceptors/AxiosInterceptor.js +1 -3
- package/dist/interceptors/AxiosInterceptor.js.map +1 -1
- package/dist/interceptors/AxiosInterceptorRequest.d.ts +6 -3
- package/dist/interceptors/AxiosInterceptorRequest.js +9 -8
- package/dist/interceptors/AxiosInterceptorRequest.js.map +1 -1
- package/dist/interceptors/AxiosInterceptorResponse.d.ts +2 -1
- package/dist/interceptors/AxiosInterceptorResponse.js +7 -10
- package/dist/interceptors/AxiosInterceptorResponse.js.map +1 -1
- package/dist/interfaces/AxiosInterfaceExtra.d.ts +8 -0
- package/dist/interfaces/AxiosInterfaceExtra.js +3 -0
- package/dist/interfaces/AxiosInterfaceExtra.js.map +1 -0
- package/dist/interfaces/index.d.ts +1 -0
- package/dist/interfaces/index.js +3 -0
- package/dist/interfaces/index.js.map +1 -0
- package/dist/parser/AxiosRequestParser.d.ts +7 -6
- package/dist/parser/AxiosRequestParser.js +44 -33
- package/dist/parser/AxiosRequestParser.js.map +1 -1
- package/dist/parser/AxiosResponseParser.d.ts +2 -0
- package/dist/parser/AxiosResponseParser.js +5 -2
- package/dist/parser/AxiosResponseParser.js.map +1 -1
- package/dist/register.js +10 -1
- package/dist/register.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +23 -9
package/dist/AxiosMessage.d.ts
CHANGED
|
@@ -1,20 +1,22 @@
|
|
|
1
|
-
import { type
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
import { type RequestOptionsParametersInterface, type InterceptorsInterface, type RequestInterface, type ResponseInterface, type MessageInterface, ODGMessage } from "@odg/message";
|
|
2
|
+
import { type AxiosInstance } from "axios";
|
|
3
|
+
import { AxiosRequestParser } from "./parser/AxiosRequestParser";
|
|
4
|
+
import { AxiosResponseParser } from "./parser/AxiosResponseParser";
|
|
5
|
+
export declare class AxiosMessage<RequestData, ResponseData> extends ODGMessage implements MessageInterface<RequestData, ResponseData> {
|
|
6
|
+
readonly interceptors: Readonly<InterceptorsInterface<RequestData, ResponseData>>;
|
|
7
|
+
protected readonly client: AxiosInstance;
|
|
8
|
+
protected readonly requestParser: typeof AxiosRequestParser;
|
|
9
|
+
protected readonly responseParser: typeof AxiosResponseParser;
|
|
10
|
+
constructor(options?: RequestOptionsParametersInterface<RequestData>);
|
|
11
|
+
setDefaultOptions(config?: RequestOptionsParametersInterface<RequestData>): this;
|
|
10
12
|
getDefaultOptions(): RequestInterface<RequestData>;
|
|
11
13
|
/**
|
|
12
14
|
* Request Abstract
|
|
13
15
|
*
|
|
14
16
|
* @template {any} RequestD Request Data
|
|
15
17
|
* @template {any} ResponseD Response Data
|
|
16
|
-
* @param {
|
|
18
|
+
* @param {RequestOptionsParametersInterface<RequestD>} options Opções de requisição
|
|
17
19
|
* @returns {Promise<ResponseInterface<RequestD, ResponseD>>}
|
|
18
20
|
*/
|
|
19
|
-
request<RequestD = RequestData, ResponseD = ResponseData>(options:
|
|
21
|
+
request<RequestD = RequestData, ResponseD = ResponseData>(options: RequestOptionsParametersInterface<RequestD>): Promise<ResponseInterface<RequestD, ResponseD>>;
|
|
20
22
|
}
|
package/dist/AxiosMessage.js
CHANGED
|
@@ -5,24 +5,28 @@ 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");
|
|
8
9
|
const axios_1 = __importDefault(require("axios"));
|
|
9
|
-
const AxiosParser_1 = require("./parser/AxiosParser");
|
|
10
10
|
const AxiosInterceptorRequest_1 = require("./interceptors/AxiosInterceptorRequest");
|
|
11
11
|
const AxiosInterceptorResponse_1 = require("./interceptors/AxiosInterceptorResponse");
|
|
12
|
+
const AxiosParser_1 = require("./parser/AxiosParser");
|
|
12
13
|
const AxiosRequestParser_1 = require("./parser/AxiosRequestParser");
|
|
13
14
|
const AxiosResponseParser_1 = require("./parser/AxiosResponseParser");
|
|
14
|
-
class AxiosMessage {
|
|
15
|
+
class AxiosMessage extends message_1.ODGMessage {
|
|
15
16
|
interceptors;
|
|
16
17
|
client;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
requestParser = AxiosRequestParser_1.AxiosRequestParser;
|
|
19
|
+
responseParser = AxiosResponseParser_1.AxiosResponseParser;
|
|
20
|
+
constructor(options) {
|
|
21
|
+
super();
|
|
22
|
+
this.client = axios_1.default.create(options && this.requestParser.parseMessageToLibrary(options));
|
|
23
|
+
this.interceptors = Object.freeze({
|
|
20
24
|
request: new AxiosInterceptorRequest_1.AxiosInterceptorRequest(this.client.interceptors.request),
|
|
21
25
|
response: new AxiosInterceptorResponse_1.AxiosInterceptorResponse(this.client.interceptors.response),
|
|
22
|
-
};
|
|
26
|
+
});
|
|
23
27
|
}
|
|
24
28
|
setDefaultOptions(config) {
|
|
25
|
-
const defaults =
|
|
29
|
+
const defaults = this.requestParser.parseMessageToLibrary({
|
|
26
30
|
...config,
|
|
27
31
|
headers: AxiosParser_1.AxiosParser.parseHeaders(config?.headers),
|
|
28
32
|
});
|
|
@@ -33,7 +37,7 @@ class AxiosMessage {
|
|
|
33
37
|
}
|
|
34
38
|
getDefaultOptions() {
|
|
35
39
|
const config = this.client.defaults;
|
|
36
|
-
return
|
|
40
|
+
return this.requestParser.parseLibraryToMessage({
|
|
37
41
|
...config,
|
|
38
42
|
headers: AxiosParser_1.AxiosParser.parseHeaders(config.headers),
|
|
39
43
|
});
|
|
@@ -43,13 +47,13 @@ class AxiosMessage {
|
|
|
43
47
|
*
|
|
44
48
|
* @template {any} RequestD Request Data
|
|
45
49
|
* @template {any} ResponseD Response Data
|
|
46
|
-
* @param {
|
|
50
|
+
* @param {RequestOptionsParametersInterface<RequestD>} options Opções de requisição
|
|
47
51
|
* @returns {Promise<ResponseInterface<RequestD, ResponseD>>}
|
|
48
52
|
*/
|
|
49
53
|
async request(options) {
|
|
50
54
|
try {
|
|
51
|
-
const response = await this.client.request(
|
|
52
|
-
return
|
|
55
|
+
const response = await this.client.request(this.requestParser.parseMessageToLibrary(options));
|
|
56
|
+
return this.responseParser.parseLibraryToMessage(response);
|
|
53
57
|
}
|
|
54
58
|
catch (error) {
|
|
55
59
|
// eslint-disable-next-line no-throw-literal
|
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;AAC3C,0CAOsB;AACtB,kDAMe;AAEf,oFAAiF;AACjF,sFAAmF;AACnF,sDAAmD;AACnD,oEAAiE;AACjE,sEAAmE;AAEnE,MAAa,YAGX,SAAQ,oBAAU;IAEA,YAAY,CAA8D;IAEvE,MAAM,CAAgB;IAEtB,aAAa,GAAG,uCAAkB,CAAC;IAEnC,cAAc,GAAG,yCAAmB,CAAC;IAExD,YAAmB,OAAwD;QACvE,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,MAAM,GAAG,eAAK,CAAC,MAAM,CAAC,OAAO,IAAI,IAAI,CAAC,aAAa,CAAC,qBAAqB,CAAC,OAAO,CAAC,CAAC,CAAC;QAEzF,IAAI,CAAC,YAAY,GAAG,MAAM,CAAC,MAAM,CAAC;YAC9B,OAAO,EAAE,IAAI,iDAAuB,CAChC,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,OAAmE,CAC/F;YACD,QAAQ,EAAE,IAAI,mDAAwB,CAClC,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,QAAQ,CACpC;SACJ,CAAC,CAAC;IACP,CAAC;IAEM,iBAAiB,CAAC,MAAuD;QAC5E,MAAM,QAAQ,GAAG,IAAI,CAAC,aAAa,CAAC,qBAAqB,CAAC;YACtD,GAAG,MAAM;YACT,OAAO,EAAE,yBAAW,CAAC,YAAY,CAAC,MAAM,EAAE,OAAO,CAAC;SACrD,CAAC,CAAC;QAEH,KAAK,MAAM,CAAE,GAAG,EAAE,KAAK,CAAE,IAAI,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE,CAAC;YACpD,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,GAA+B,CAAC,GAAG,KAAgB,CAAC;QAC7E,CAAC;QAED,OAAO,IAAI,CAAC;IAChB,CAAC;IAEM,iBAAiB;QACpB,MAAM,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC;QAEpC,OAAO,IAAI,CAAC,aAAa,CAAC,qBAAqB,CAAc;YACzD,GAAG,MAAM;YACT,OAAO,EAAE,yBAAW,CAAC,YAAY,CAAC,MAAM,CAAC,OAAO,CAAuC;SAC1F,CAAC,CAAC;IACP,CAAC;IAED;;;;;;;OAOG;IACI,KAAK,CAAC,OAAO,CAIhB,OAAoD;QAEpD,IAAI,CAAC;YACD,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,OAAO,CACtC,IAAI,CAAC,aAAa,CAAC,qBAAqB,CAAC,OAAO,CAAC,CACpD,CAAC;YAEF,OAAO,IAAI,CAAC,cAAc,CAAC,qBAAqB,CAAC,QAAQ,CAAC,CAAC;QAC/D,CAAC;QAAC,OAAO,KAAc,EAAE,CAAC;YACtB,4CAA4C;YAC5C,MAAM,qBAAS,CAAC,KAAK,CAAC,KAAK,CAAE,CAAC;QAClC,CAAC;IACL,CAAC;CAEJ;AA3ED,oCA2EC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,7 @@
|
|
|
1
1
|
import "./register";
|
|
2
|
+
export * from "./interceptors/AxiosInterceptor";
|
|
3
|
+
export * from "./interceptors/AxiosInterceptorRequest";
|
|
4
|
+
export * from "./interceptors/AxiosInterceptorResponse";
|
|
5
|
+
export * from "./parser/AxiosRequestParser";
|
|
6
|
+
export * from "./parser/AxiosResponseParser";
|
|
2
7
|
export * from "./AxiosMessage";
|
package/dist/index.js
CHANGED
|
@@ -15,5 +15,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
require("./register");
|
|
18
|
+
__exportStar(require("./interceptors/AxiosInterceptor"), exports);
|
|
19
|
+
__exportStar(require("./interceptors/AxiosInterceptorRequest"), exports);
|
|
20
|
+
__exportStar(require("./interceptors/AxiosInterceptorResponse"), exports);
|
|
21
|
+
__exportStar(require("./parser/AxiosRequestParser"), exports);
|
|
22
|
+
__exportStar(require("./parser/AxiosResponseParser"), exports);
|
|
18
23
|
__exportStar(require("./AxiosMessage"), exports);
|
|
19
24
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sBAAoB;AAEpB,iDAA+B"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sBAAoB;AAEpB,kEAAgD;AAEhD,yEAAuD;AAEvD,0EAAwD;AAExD,8DAA4C;AAE5C,+DAA6C;AAE7C,iDAA+B"}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { type onRejectedType } from "@odg/message";
|
|
1
|
+
import { type MessageInterceptorOptions, type onFulfilledType, type InterceptorManager, type onRejectedType } from "@odg/message";
|
|
2
2
|
import { type AxiosInterceptorManager } from "axios";
|
|
3
|
-
export declare abstract class AxiosInterceptor<AxiosInterceptor> {
|
|
3
|
+
export declare abstract class AxiosInterceptor<AxiosInterceptor> implements InterceptorManager<unknown> {
|
|
4
4
|
protected readonly interceptor: AxiosInterceptorManager<AxiosInterceptor>;
|
|
5
5
|
constructor(interceptor: AxiosInterceptorManager<AxiosInterceptor>);
|
|
6
6
|
eject(id: number): void;
|
|
7
7
|
clear(): void;
|
|
8
8
|
protected onRejected(onRejected?: onRejectedType): (error: unknown) => Promise<never>;
|
|
9
|
+
abstract use(onFulfilled?: onFulfilledType<unknown>, onRejected?: onRejectedType, options?: MessageInterceptorOptions): number;
|
|
9
10
|
}
|
|
@@ -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,0CAOsB;AAGtB,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,CAAC,WAAW,CAAC,KAAK,EAAE,CAAC;IAC7B,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;CAQJ;AAnCD,4CAmCC"}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { type MessageInterceptorOptions, type onFulfilledType, type onRejectedType, type InterceptorManager, type RequestInterface } from "@odg/message";
|
|
2
|
-
import { type
|
|
2
|
+
import { type AxiosRequestConfigExtra } from "../interfaces";
|
|
3
|
+
import { AxiosRequestParser } from "../parser/AxiosRequestParser";
|
|
3
4
|
import { AxiosInterceptor } from "./AxiosInterceptor";
|
|
4
|
-
export declare class AxiosInterceptorRequest<RequestData> extends AxiosInterceptor<
|
|
5
|
-
|
|
5
|
+
export declare class AxiosInterceptorRequest<RequestData> extends AxiosInterceptor<AxiosRequestConfigExtra<RequestData>> implements InterceptorManager<RequestInterface<RequestData>> {
|
|
6
|
+
protected readonly parser: typeof AxiosRequestParser;
|
|
7
|
+
use<RequestD = RequestData>(onFulfilled?: onFulfilledType<RequestInterface<RequestD>>, onRejected?: onRejectedType, options?: MessageInterceptorOptions): number;
|
|
8
|
+
private onFulfilledRequest;
|
|
6
9
|
}
|
|
@@ -4,18 +4,19 @@ exports.AxiosInterceptorRequest = void 0;
|
|
|
4
4
|
const AxiosRequestParser_1 = require("../parser/AxiosRequestParser");
|
|
5
5
|
const AxiosInterceptor_1 = require("./AxiosInterceptor");
|
|
6
6
|
class AxiosInterceptorRequest extends AxiosInterceptor_1.AxiosInterceptor {
|
|
7
|
+
parser = AxiosRequestParser_1.AxiosRequestParser;
|
|
7
8
|
use(onFulfilled, onRejected, options) {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
return config;
|
|
11
|
-
return {
|
|
12
|
-
...config,
|
|
13
|
-
...AxiosRequestParser_1.AxiosRequestParser.parseMessageToLibrary(await onFulfilled(AxiosRequestParser_1.AxiosRequestParser.parseLibraryToMessage(config))),
|
|
14
|
-
};
|
|
15
|
-
}, this.onRejected(onRejected), {
|
|
9
|
+
const requestIntercept = onFulfilled && this.onFulfilledRequest(onFulfilled);
|
|
10
|
+
return this.interceptor.use(requestIntercept, this.onRejected(onRejected), {
|
|
16
11
|
synchronous: options?.synchronous,
|
|
17
12
|
});
|
|
18
13
|
}
|
|
14
|
+
onFulfilledRequest(onFulfilled) {
|
|
15
|
+
return async (config) => ({
|
|
16
|
+
...config,
|
|
17
|
+
...this.parser.parseMessageToLibrary(await onFulfilled(this.parser.parseLibraryToMessage(config))),
|
|
18
|
+
});
|
|
19
|
+
}
|
|
19
20
|
}
|
|
20
21
|
exports.AxiosInterceptorRequest = AxiosInterceptorRequest;
|
|
21
22
|
//# 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":";;;AAUA,qEAAkE;AAElE,yDAAsD;AAEtD,MAAa,uBAEX,SAAQ,mCAEL;IAEkB,MAAM,GAAG,uCAAkB,CAAC;IAExC,GAAG,CACN,WAAyD,EACzD,UAA2B,EAC3B,OAAmC;QAEnC,MAAM,gBAAgB,GAAG,WAAW,IAAI,IAAI,CAAC,kBAAkB,CAAW,WAAW,CAAC,CAAC;QAEvF,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CACvB,gBAAgB,EAChB,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,EAC3B;YACI,WAAW,EAAE,OAAO,EAAE,WAAW;SACpC,CACJ,CAAC;IACN,CAAC;IAEO,kBAAkB,CACtB,WAAwD;QAExD,OAAO,KAAK,EAAE,MAAyC,EAA8C,EAAE,CAAC,CAAC;YACrG,GAAG,MAAM;YACT,GAAG,IAAI,CAAC,MAAM,CAAC,qBAAqB,CAChC,MAAM,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,qBAAqB,CAAC,MAAM,CAAC,CAAC,CAC/D;SACJ,CAAC,CAAC;IACP,CAAC;CAEJ;AAnCD,0DAmCC"}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { type MessageInterceptorOptions, type onFulfilledType, type onRejectedType, type InterceptorManager, type ResponseInterface } from "@odg/message";
|
|
2
2
|
import { type AxiosResponse } from "axios";
|
|
3
|
+
import { AxiosResponseParser } from "../parser/AxiosResponseParser";
|
|
3
4
|
import { AxiosInterceptor } from "./AxiosInterceptor";
|
|
4
|
-
export type onFulfilledFunctionType<RequestData, ResponseData> = (response: AxiosResponse<ResponseData, RequestData>) => Promise<AxiosResponse<ResponseData, RequestData>>;
|
|
5
5
|
export declare class AxiosInterceptorResponse<RequestData, ResponseData> extends AxiosInterceptor<AxiosResponse> implements InterceptorManager<ResponseInterface<RequestData, ResponseData>> {
|
|
6
|
+
protected readonly parser: typeof AxiosResponseParser;
|
|
6
7
|
use<RequestD = RequestData, ResponseD = ResponseData>(onFulfilled?: onFulfilledType<ResponseInterface<RequestD, ResponseD>>, onRejected?: onRejectedType, _options?: MessageInterceptorOptions): number;
|
|
7
8
|
private onFulfilledResponse;
|
|
8
9
|
}
|
|
@@ -4,19 +4,16 @@ exports.AxiosInterceptorResponse = void 0;
|
|
|
4
4
|
const AxiosResponseParser_1 = require("../parser/AxiosResponseParser");
|
|
5
5
|
const AxiosInterceptor_1 = require("./AxiosInterceptor");
|
|
6
6
|
class AxiosInterceptorResponse extends AxiosInterceptor_1.AxiosInterceptor {
|
|
7
|
+
parser = AxiosResponseParser_1.AxiosResponseParser;
|
|
7
8
|
use(onFulfilled, onRejected, _options) {
|
|
8
|
-
const
|
|
9
|
-
return this.interceptor.use(
|
|
9
|
+
const responseIntercept = onFulfilled && this.onFulfilledResponse(onFulfilled);
|
|
10
|
+
return this.interceptor.use(responseIntercept, this.onRejected(onRejected));
|
|
10
11
|
}
|
|
11
12
|
onFulfilledResponse(onFulfilled) {
|
|
12
|
-
return async (response) => {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
...response,
|
|
17
|
-
...messageResponse,
|
|
18
|
-
};
|
|
19
|
-
};
|
|
13
|
+
return async (response) => ({
|
|
14
|
+
...response,
|
|
15
|
+
...this.parser.parseMessageToLibrary(await onFulfilled(this.parser.parseLibraryToMessage(response))),
|
|
16
|
+
});
|
|
20
17
|
}
|
|
21
18
|
}
|
|
22
19
|
exports.AxiosInterceptorResponse = AxiosInterceptorResponse;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AxiosInterceptorResponse.js","sourceRoot":"","sources":["../../src/interceptors/AxiosInterceptorResponse.ts"],"names":[],"mappings":";;;AASA,uEAAoE;AAEpE,yDAAsD;
|
|
1
|
+
{"version":3,"file":"AxiosInterceptorResponse.js","sourceRoot":"","sources":["../../src/interceptors/AxiosInterceptorResponse.ts"],"names":[],"mappings":";;;AASA,uEAAoE;AAEpE,yDAAsD;AAEtD,MAAa,wBAGX,SAAQ,mCAEL;IAEkB,MAAM,GAAG,yCAAmB,CAAC;IAEzC,GAAG,CACN,WAAqE,EACrE,UAA2B,EAC3B,QAAoC;QAEpC,MAAM,iBAAiB,GAAG,WAAW,IAAI,IAAI,CAAC,mBAAmB,CAAsB,WAAW,CAAC,CAAC;QAEpG,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CACvB,iBAAiB,EACjB,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,CAC9B,CAAC;IACN,CAAC;IAEO,mBAAmB,CACvB,WAAoE;QAEpE,OAAO,KAAK,EAAE,QAA4C,EAA+C,EAAE,CAAC,CAAC;YACzG,GAAG,QAAQ;YACX,GAAG,IAAI,CAAC,MAAM,CAAC,qBAAqB,CAChC,MAAM,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,qBAAqB,CAAC,QAAQ,CAAC,CAAC,CACjE;SACJ,CAAC,CAAC;IACP,CAAC;CAEJ;AAjCD,4DAiCC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { type RequestInterface } from "@odg/message";
|
|
2
|
+
import { type AxiosRequestConfig } from "axios";
|
|
3
|
+
export interface AxiosRequestConfigExtra<RequestData> extends AxiosRequestConfig<RequestData> {
|
|
4
|
+
startTime?: number;
|
|
5
|
+
endTime?: number;
|
|
6
|
+
timestamps?: number;
|
|
7
|
+
extras?: RequestInterface<unknown>["extras"];
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AxiosInterfaceExtra.js","sourceRoot":"","sources":["../../src/interfaces/AxiosInterfaceExtra.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type * from "./AxiosInterfaceExtra";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/interfaces/index.ts"],"names":[],"mappings":""}
|
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
import { type RequestInterface } from "@odg/message";
|
|
2
|
-
import { type
|
|
2
|
+
import { type AxiosRequestConfigExtra } from "../interfaces/AxiosInterfaceExtra";
|
|
3
3
|
export declare class AxiosRequestParser {
|
|
4
4
|
/**
|
|
5
5
|
* Parse MessageInterface to Axios
|
|
6
6
|
*
|
|
7
7
|
* @template {any} RequestD Dados Request Axios
|
|
8
|
-
* @
|
|
9
|
-
* @
|
|
8
|
+
* @template {Record<string, unknown>} ExtraData Dados Request Axios extras
|
|
9
|
+
* @param {Partial<RequestInterface<RequestD, ExtraData>>} options Dados Request
|
|
10
|
+
* @returns {AxiosRequestConfigExtra<RequestD>}
|
|
10
11
|
*/
|
|
11
|
-
static parseMessageToLibrary<RequestD>(
|
|
12
|
+
static parseMessageToLibrary<RequestD, ExtraData extends Record<string, unknown> = Record<string, unknown>>(options: Partial<RequestInterface<RequestD, ExtraData>>): AxiosRequestConfigExtra<RequestD>;
|
|
12
13
|
/**
|
|
13
14
|
* Parse Request Axios configuration
|
|
14
15
|
*
|
|
15
16
|
* @template {any} RequestD Dados Request Axios
|
|
16
|
-
* @param {
|
|
17
|
+
* @param {AxiosRequestConfigExtra<RequestD>} options Dados Request
|
|
17
18
|
* @returns {RequestInterface<RequestD>}
|
|
18
19
|
*/
|
|
19
|
-
static parseLibraryToMessage<RequestD>(
|
|
20
|
+
static parseLibraryToMessage<RequestD>(options: AxiosRequestConfigExtra<RequestD>): RequestInterface<RequestD>;
|
|
20
21
|
}
|
|
@@ -7,50 +7,61 @@ class AxiosRequestParser {
|
|
|
7
7
|
* Parse MessageInterface to Axios
|
|
8
8
|
*
|
|
9
9
|
* @template {any} RequestD Dados Request Axios
|
|
10
|
-
* @
|
|
11
|
-
* @
|
|
10
|
+
* @template {Record<string, unknown>} ExtraData Dados Request Axios extras
|
|
11
|
+
* @param {Partial<RequestInterface<RequestD, ExtraData>>} options Dados Request
|
|
12
|
+
* @returns {AxiosRequestConfigExtra<RequestD>}
|
|
12
13
|
*/
|
|
13
|
-
static parseMessageToLibrary(
|
|
14
|
+
static parseMessageToLibrary(options) {
|
|
14
15
|
return Object.fromEntries(Object.entries({
|
|
15
|
-
url:
|
|
16
|
-
baseURL:
|
|
17
|
-
method:
|
|
18
|
-
headers:
|
|
19
|
-
params:
|
|
20
|
-
data:
|
|
21
|
-
timeout:
|
|
22
|
-
responseType:
|
|
23
|
-
maxContentLength:
|
|
24
|
-
validateStatus:
|
|
25
|
-
maxBodyLength:
|
|
26
|
-
maxRedirects:
|
|
27
|
-
socketPath:
|
|
28
|
-
proxy:
|
|
16
|
+
url: options.url,
|
|
17
|
+
baseURL: options.baseURL,
|
|
18
|
+
method: options.method,
|
|
19
|
+
headers: options.headers,
|
|
20
|
+
params: options.params,
|
|
21
|
+
data: options.data,
|
|
22
|
+
timeout: options.timeout,
|
|
23
|
+
responseType: options.responseType,
|
|
24
|
+
maxContentLength: options.maxContentLength,
|
|
25
|
+
validateStatus: options.validateStatus,
|
|
26
|
+
maxBodyLength: options.maxBodyLength,
|
|
27
|
+
maxRedirects: options.maxRedirects,
|
|
28
|
+
socketPath: options.socketPath,
|
|
29
|
+
proxy: options.proxy,
|
|
30
|
+
signal: options.signal,
|
|
31
|
+
startTime: options.startTime ?? Date.now(),
|
|
32
|
+
endTime: options.endTime,
|
|
33
|
+
timestamps: options.endTime && options.startTime ? options.endTime - options.startTime : undefined,
|
|
34
|
+
extras: options.extras,
|
|
29
35
|
}).filter(([, value]) => value !== undefined));
|
|
30
36
|
}
|
|
31
37
|
/**
|
|
32
38
|
* Parse Request Axios configuration
|
|
33
39
|
*
|
|
34
40
|
* @template {any} RequestD Dados Request Axios
|
|
35
|
-
* @param {
|
|
41
|
+
* @param {AxiosRequestConfigExtra<RequestD>} options Dados Request
|
|
36
42
|
* @returns {RequestInterface<RequestD>}
|
|
37
43
|
*/
|
|
38
|
-
static parseLibraryToMessage(
|
|
44
|
+
static parseLibraryToMessage(options) {
|
|
39
45
|
return Object.fromEntries(Object.entries({
|
|
40
|
-
url:
|
|
41
|
-
baseURL:
|
|
42
|
-
method:
|
|
43
|
-
headers: AxiosParser_1.AxiosParser.parseHeaders(
|
|
44
|
-
params:
|
|
45
|
-
data:
|
|
46
|
-
timeout:
|
|
47
|
-
responseType:
|
|
48
|
-
maxContentLength:
|
|
49
|
-
validateStatus:
|
|
50
|
-
maxBodyLength:
|
|
51
|
-
maxRedirects:
|
|
52
|
-
socketPath:
|
|
53
|
-
proxy:
|
|
46
|
+
url: options.url,
|
|
47
|
+
baseURL: options.baseURL,
|
|
48
|
+
method: options.method,
|
|
49
|
+
headers: AxiosParser_1.AxiosParser.parseHeaders(options.headers),
|
|
50
|
+
params: options.params,
|
|
51
|
+
data: options.data,
|
|
52
|
+
timeout: options.timeout,
|
|
53
|
+
responseType: options.responseType,
|
|
54
|
+
maxContentLength: options.maxContentLength,
|
|
55
|
+
validateStatus: options.validateStatus,
|
|
56
|
+
maxBodyLength: options.maxBodyLength,
|
|
57
|
+
maxRedirects: options.maxRedirects,
|
|
58
|
+
socketPath: options.socketPath,
|
|
59
|
+
proxy: options.proxy,
|
|
60
|
+
signal: options.signal,
|
|
61
|
+
startTime: options.startTime ?? Date.now(),
|
|
62
|
+
endTime: options.endTime,
|
|
63
|
+
timestamps: options.endTime && options.startTime ? options.endTime - options.startTime : undefined,
|
|
64
|
+
extras: options.extras,
|
|
54
65
|
}).filter(([, value]) => value !== undefined));
|
|
55
66
|
}
|
|
56
67
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AxiosRequestParser.js","sourceRoot":"","sources":["../../src/parser/AxiosRequestParser.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"AxiosRequestParser.js","sourceRoot":"","sources":["../../src/parser/AxiosRequestParser.ts"],"names":[],"mappings":";;;AAIA,+CAA4C;AAE5C,MAAa,kBAAkB;IAE3B;;;;;;;OAOG;IACI,MAAM,CAAC,qBAAqB,CAC/B,OAAuD;QAEvD,OAAO,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,OAAO,CAAC;YACrC,GAAG,EAAE,OAAO,CAAC,GAAG;YAChB,OAAO,EAAE,OAAO,CAAC,OAAO;YACxB,MAAM,EAAE,OAAO,CAAC,MAAM;YACtB,OAAO,EAAE,OAAO,CAAC,OAAO;YACxB,MAAM,EAAE,OAAO,CAAC,MAAM;YACtB,IAAI,EAAE,OAAO,CAAC,IAAI;YAClB,OAAO,EAAE,OAAO,CAAC,OAAO;YACxB,YAAY,EAAE,OAAO,CAAC,YAAY;YAClC,gBAAgB,EAAE,OAAO,CAAC,gBAAgB;YAC1C,cAAc,EAAE,OAAO,CAAC,cAAc;YACtC,aAAa,EAAE,OAAO,CAAC,aAAa;YACpC,YAAY,EAAE,OAAO,CAAC,YAAY;YAClC,UAAU,EAAE,OAAO,CAAC,UAAU;YAC9B,KAAK,EAAE,OAAO,CAAC,KAAK;YACpB,MAAM,EAAE,OAAO,CAAC,MAAM;YACtB,SAAS,EAAE,OAAO,CAAC,SAAS,IAAI,IAAI,CAAC,GAAG,EAAE;YAC1C,OAAO,EAAE,OAAO,CAAC,OAAO;YACxB,UAAU,EAAE,OAAO,CAAC,OAAO,IAAI,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,OAAO,GAAG,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS;YAClG,MAAM,EAAE,OAAO,CAAC,MAAM;SACY,CAAC,CAAC,MAAM,CAAC,CAAC,CAAE,AAAD,EAAG,KAAK,CAAE,EAAE,EAAE,CAAC,KAAK,KAAK,SAAS,CAAC,CAAC,CAAC;IAC1F,CAAC;IAED;;;;;;OAMG;IACI,MAAM,CAAC,qBAAqB,CAC/B,OAA0C;QAE1C,OAAO,MAAM,CAAC,WAAW,CACrB,MAAM,CAAC,OAAO,CAAC;YACX,GAAG,EAAE,OAAO,CAAC,GAAG;YAChB,OAAO,EAAE,OAAO,CAAC,OAAO;YACxB,MAAM,EAAE,OAAO,CAAC,MAAM;YACtB,OAAO,EAAE,yBAAW,CAAC,YAAY,CAAC,OAAO,CAAC,OAAO,CAAC;YAClD,MAAM,EAAE,OAAO,CAAC,MAA6B;YAC7C,IAAI,EAAE,OAAO,CAAC,IAAI;YAClB,OAAO,EAAE,OAAO,CAAC,OAAO;YACxB,YAAY,EAAE,OAAO,CAAC,YAAY;YAClC,gBAAgB,EAAE,OAAO,CAAC,gBAAgB;YAC1C,cAAc,EAAE,OAAO,CAAC,cAAc;YACtC,aAAa,EAAE,OAAO,CAAC,aAAa;YACpC,YAAY,EAAE,OAAO,CAAC,YAAY;YAClC,UAAU,EAAE,OAAO,CAAC,UAAU;YAC9B,KAAK,EAAE,OAAO,CAAC,KAAK;YACpB,MAAM,EAAE,OAAO,CAAC,MAAM;YACtB,SAAS,EAAE,OAAO,CAAC,SAAS,IAAI,IAAI,CAAC,GAAG,EAAE;YAC1C,OAAO,EAAE,OAAO,CAAC,OAAO;YACxB,UAAU,EAAE,OAAO,CAAC,OAAO,IAAI,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,OAAO,GAAG,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS;YAClG,MAAM,EAAE,OAAO,CAAC,MAAM;SACK,CAAC,CAAC,MAAM,CAAC,CAAC,CAAE,AAAD,EAAG,KAAK,CAAE,EAAE,EAAE,CAAC,KAAK,KAAK,SAAS,CAAC,CAClD,CAAC;IACpC,CAAC;CAEJ;AAvED,gDAuEC"}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { type ResponseInterface } from "@odg/message";
|
|
2
2
|
import { type AxiosResponse } from "axios";
|
|
3
|
+
import { AxiosRequestParser } from "./AxiosRequestParser";
|
|
3
4
|
export declare class AxiosResponseParser {
|
|
5
|
+
protected static requestParser: typeof AxiosRequestParser;
|
|
4
6
|
/**
|
|
5
7
|
* Cast ResponseInterface To AxiosResponse
|
|
6
8
|
*
|
|
@@ -8,6 +8,7 @@ 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
|
+
static requestParser = AxiosRequestParser_1.AxiosRequestParser;
|
|
11
12
|
/**
|
|
12
13
|
* Cast ResponseInterface To AxiosResponse
|
|
13
14
|
*
|
|
@@ -22,8 +23,9 @@ class AxiosResponseParser {
|
|
|
22
23
|
status: response.status,
|
|
23
24
|
statusText: node_http_1.default.STATUS_CODES[response.status] ?? "Unknown Status Code",
|
|
24
25
|
headers: AxiosParser_1.AxiosParser.parseHeaders(response.headers),
|
|
25
|
-
config:
|
|
26
|
+
config: this.requestParser.parseMessageToLibrary({
|
|
26
27
|
...response.request,
|
|
28
|
+
endTime: Date.now(),
|
|
27
29
|
}),
|
|
28
30
|
};
|
|
29
31
|
}
|
|
@@ -40,8 +42,9 @@ class AxiosResponseParser {
|
|
|
40
42
|
data: response.data,
|
|
41
43
|
status: response.status,
|
|
42
44
|
headers: AxiosParser_1.AxiosParser.parseHeaders(response.headers),
|
|
43
|
-
request:
|
|
45
|
+
request: this.requestParser.parseLibraryToMessage({
|
|
44
46
|
...response.config,
|
|
47
|
+
endTime: Date.now(),
|
|
45
48
|
headers: AxiosParser_1.AxiosParser.parseHeaders(response.config.headers),
|
|
46
49
|
}),
|
|
47
50
|
};
|
|
@@ -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;
|
|
1
|
+
{"version":3,"file":"AxiosResponseParser.js","sourceRoot":"","sources":["../../src/parser/AxiosResponseParser.ts"],"names":[],"mappings":";;;;;;AAAA,0DAA6B;AAO7B,+CAA4C;AAC5C,6DAA0D;AAE1D,MAAa,mBAAmB;IAElB,MAAM,CAAC,aAAa,GAAG,uCAAkB,CAAC;IAEpD;;;;;;;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,IAAI,CAAC,aAAa,CAAC,qBAAqB,CAAC;gBAC7C,GAAG,QAAQ,CAAC,OAAO;gBACnB,OAAO,EAAE,IAAI,CAAC,GAAG,EAAE;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,IAAI,CAAC,aAAa,CAAC,qBAAqB,CAAW;gBACxD,GAAG,QAAQ,CAAC,MAAM;gBAClB,OAAO,EAAE,IAAI,CAAC,GAAG,EAAE;gBACnB,OAAO,EAAE,yBAAW,CAAC,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,OAAO,CAAuC;aACnG,CAAC;SACL,CAAC;IACN,CAAC;;AAhDL,kDAkDC"}
|
package/dist/register.js
CHANGED
|
@@ -10,7 +10,16 @@ const AxiosRequestParser_1 = require("./parser/AxiosRequestParser");
|
|
|
10
10
|
const AxiosResponseParser_1 = require("./parser/AxiosResponseParser");
|
|
11
11
|
exception_1.Exception.$parsers.add((exception, original) => {
|
|
12
12
|
if (axios_1.default.isAxiosError(original)) {
|
|
13
|
-
const
|
|
13
|
+
const response = original.response
|
|
14
|
+
? AxiosResponseParser_1.AxiosResponseParser.parseLibraryToMessage(original.response)
|
|
15
|
+
: undefined;
|
|
16
|
+
const config = original.config
|
|
17
|
+
? AxiosRequestParser_1.AxiosRequestParser.parseLibraryToMessage({
|
|
18
|
+
...original.config,
|
|
19
|
+
endTime: Date.now(),
|
|
20
|
+
})
|
|
21
|
+
: undefined;
|
|
22
|
+
const newException = new message_1.MessageException(exception.message, exception.preview, original.code, response?.request ?? config, response);
|
|
14
23
|
newException.stack = original.stack;
|
|
15
24
|
Object.defineProperty(newException, "isAxiosError", {
|
|
16
25
|
configurable: true,
|
package/dist/register.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
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,
|
|
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,QAAQ,GAAG,QAAQ,CAAC,QAAQ;YAC9B,CAAC,CAAC,yCAAmB,CAAC,qBAAqB,CAAC,QAAQ,CAAC,QAAQ,CAAC;YAC9D,CAAC,CAAC,SAAS,CAAC;QAChB,MAAM,MAAM,GAAG,QAAQ,CAAC,MAAM;YAC1B,CAAC,CAAC,uCAAkB,CAAC,qBAAqB,CAAC;gBACvC,GAAG,QAAQ,CAAC,MAAM;gBAClB,OAAO,EAAE,IAAI,CAAC,GAAG,EAAE;aACtB,CAAC;YACF,CAAC,CAAC,SAAS,CAAC;QAChB,MAAM,YAAY,GAAG,IAAI,0BAAgB,CACrC,SAAS,CAAC,OAAO,EACjB,SAAS,CAAC,OAAO,EACjB,QAAQ,CAAC,IAAI,EACb,QAAQ,EAAE,OAAO,IAAI,MAAM,EAC3B,QAAQ,CACX,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
|
-
{"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.es2024.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.arraybuffer.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.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.es2023.intl.d.ts","../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2024.collection.d.ts","../node_modules/typescript/lib/lib.es2024.object.d.ts","../node_modules/typescript/lib/lib.es2024.promise.d.ts","../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2024.string.d.ts","../node_modules/typescript/lib/lib.esnext.array.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.decorators.d.ts","../node_modules/typescript/lib/lib.esnext.iterator.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/compatibility/disposable.d.ts","../node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/compatibility/index.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.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/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.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/sea.d.ts","../node_modules/@types/node/sqlite.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/index.d.ts"],"fileIdsList":[[104,146],[80,104,146],[78,79,104,146],[81,82,83,84,85,86,87,104,146],[80,83,84,104,146],[81,82,83,104,146],[81,84,104,146],[104,143,146],[104,145,146],[146],[104,146,151,181],[104,146,147,152,158,159,166,178,189],[104,146,147,148,158,166],[99,100,101,104,146],[104,146,149,190],[104,146,150,151,159,167],[104,146,151,178,186],[104,146,152,154,158,166],[104,145,146,153],[104,146,154,155],[104,146,158],[104,146,156,158],[104,145,146,158],[104,146,158,159,160,178,189],[104,146,158,159,160,173,178,181],[104,141,146,194],[104,141,146,154,158,161,166,178,189],[104,146,158,159,161,162,166,178,186,189],[104,146,161,163,178,186,189],[102,103,104,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,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195],[104,146,158,164],[104,146,165,189],[104,146,154,158,166,178],[104,146,167],[104,146,168],[104,145,146,169],[104,143,144,145,146,147,148,149,150,151,152,153,154,155,156,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195],[104,146,171],[104,146,172],[104,146,158,173,174],[104,146,173,175,190,192],[104,146,158,178,179,180,181],[104,146,178,180],[104,146,178,179],[104,146,181],[104,146,182],[104,143,146,178],[104,146,158,184,185],[104,146,184,185],[104,146,151,166,178,186],[104,146,187],[104,146,166,188],[104,146,161,172,189],[104,146,151,190],[104,146,178,191],[104,146,165,192],[104,146,193],[104,146,151,158,160,169,178,189,192,194],[104,146,178,195],[104,113,117,146,189],[104,113,146,178,189],[104,108,146],[104,110,113,146,186,189],[104,146,166,186],[104,146,196],[104,108,146,196],[104,110,113,146,166,189],[104,105,106,109,112,146,158,178,189],[104,113,120,146],[104,105,111,146],[104,113,134,135,146],[104,109,113,146,181,189,196],[104,134,146,196],[104,107,108,146,196],[104,113,146],[104,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,135,136,137,138,139,140,146],[104,113,128,146],[104,113,120,121,146],[104,111,113,121,122,146],[104,112,146],[104,105,108,113,146],[104,113,117,121,122,146],[104,117,146],[104,111,113,116,146,189],[104,105,110,113,120,146],[104,146,178],[104,108,113,134,146,194,196],[80,88,89,90,91,93,94,95,104,146],[96,97,104,146],[88,89,104,146],[88,89,91,92,104,146],[88,89,92,94,104,146],[88,89,90,104,146],[88,89,90,91,104,146,161],[80,88,89,91,94,104,146]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"e12a46ce14b817d4c9e6b2b478956452330bf00c9801b79de46f7a1815b5bd40","impliedFormat":1},{"version":"4fd3f3422b2d2a3dfd5cdd0f387b3a8ec45f006c6ea896a4cb41264c2100bb2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","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":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","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":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1e2a172204962276504466a6393426d2ca9c54894b1ad0a6c9dad867a65f876","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"bab26767638ab3557de12c900f0b91f710c7dc40ee9793d5a27d32c04f0bf646","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"61d6a2092f48af66dbfb220e31eea8b10bc02b6932d6e529005fd2d7b3281290","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","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":"e8bff5e4b2522686bb7e34f83b1e2ec9fee351f885f3a3e926c1ea8bc1e13f2b","impliedFormat":1},{"version":"c455478fdb6f8896973510f312497c59d3d743e65dab4b99a4c9384968e20538","signature":"4ae4b67f63be1eb083b53f78d5100b5ce588a77c5d5ff0a9e11572aebcea128d","impliedFormat":1},{"version":"4be9cd153f8951dd8bfc3c2599058ac9befc9cd4000d9f94731a672c75c4f00c","signature":"dca02aabd6ab26ee84da26ce6fe7102d3583c4e324c416252117eb1b2bd3ff2e","impliedFormat":1},{"version":"a5544cac5786f187e324feab839185b8984b623ed0055c85943234636a28622b","signature":"27062ab6dd4f70497894e7e07848d398fe8103572a5623fbebbd5e65d1277a1c","impliedFormat":1},{"version":"3c59ec70c705f05115d0198780c908e4121441d258b7052d2f127d068ade1326","signature":"3f6b36c3173459b1dad437b1890e5264dbe5208f99904e72ac61d59a3ba2ed28","impliedFormat":1},{"version":"a3d58fd09278baf31f80f72ac67a4a1652222c24c45d7a36a9bccf22ee52431c","signature":"96a1efb079b0bec24ed84fc5a840cb347b33e53ebd6d518731694aa57c98ad0e","impliedFormat":1},{"version":"de187479cb96efa2036f1318fd7c48ae83c4a02f0f86ceb120f555840d22f429","signature":"a836e6778f6fd14fb6a43f9bc1ec4b39702716b03d7b8097b3f82ad4e7250ce4","impliedFormat":1},{"version":"ad3af263e4a1dd88109a627e30efa1a17dae0188ee2066a772e00cc64a2defce","signature":"20236730a31eb06154f5084eea205bb11f5abd676bea0c71c0a4b6c93c571adf","impliedFormat":1},{"version":"9d90e7eb6d17c08efbb6b2b4a93581fd433b3c203515bdb6ecb7b56df1a0725e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":1},{"version":"74f71373bd3492c6b10c077522aabcbdeb7219af86fd8df8a7f12fd916b8a7d8","signature":"47feec369636acf149ab251f8e46eed48a69f90b8fbe1b13c9feb494f1bd200f","impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"030e350db2525514580ed054f712ffb22d273e6bc7eddc1bb7eda1e0ba5d395e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fd06258805d26c72f5997e07a23155d322d5f05387adb3744a791fe6a0b042d","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"d2bc987ae352271d0d615a420dcf98cc886aa16b87fb2b569358c1fe0ca0773d","affectsGlobalScope":true,"impliedFormat":1},{"version":"f52e8dacc97d71dcc96af29e49584353f9c54cb916d132e3e768d8b8129c928d","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"76103716ba397bbb61f9fa9c9090dca59f39f9047cb1352b2179c5d8e7f4e8d0","impliedFormat":1},{"version":"53eac70430b30089a3a1959d8306b0f9cfaf0de75224b68ef25243e0b5ad1ca3","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"86956cc2eb9dd371d6fab493d326a574afedebf76eef3fa7833b8e0d9b52d6f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"91c1a729db5b28b2fc32bafa7a53611d417bc3f03f649278d4fd948aa4dec898","impliedFormat":1},{"version":"e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ff5a53a58e756d2661b73ba60ffe274231a4432d21f7a2d0d9e4f6aa99f4283","impliedFormat":1},{"version":"eaf9ee1d90a35d56264f0bf39842282c58b9219e112ac7d0c1bce98c6c5da672","impliedFormat":1},{"version":"c15c4427ae7fd1dcd7f312a8a447ac93581b0d4664ddf151ecd07de4bf2bb9d7","impliedFormat":1},{"version":"5135bdd72cc05a8192bd2e92f0914d7fc43ee077d1293dc622a049b7035a0afb","impliedFormat":1},{"version":"4f80de3a11c0d2f1329a72e92c7416b2f7eab14f67e92cac63bb4e8d01c6edc8","impliedFormat":1},{"version":"6d386bc0d7f3afa1d401afc3e00ed6b09205a354a9795196caed937494a713e6","impliedFormat":1},{"version":"c72ccc191348ac1933226cab7a814cfda8b29a827d1df5dbebfe516a6fd734a8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8bea55446a296d289fbc762f61954a0e3e38ffbcacc06e47e0cba491030e3235","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"3eb62baae4df08c9173e6903d3ca45942ccec8c3659b0565684a75f3292cffbb","affectsGlobalScope":true,"impliedFormat":1},{"version":"42aaa94addeed66a04b61e433c14e829c43d1efd653cf2fda480c5fb3d722ed8","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","impliedFormat":1},{"version":"fab29e6d649aa074a6b91e3bdf2bff484934a46067f6ee97a30fcd9762ae2213","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"15c5e91b5f08be34a78e3d976179bf5b7a9cc28dc0ef1ffebffeb3c7812a2dca","impliedFormat":1},{"version":"d63ff33a2fa221b36a4da0dd5a3dad3156f3dd0fe1baf43a186e607d4ba5af99","impliedFormat":1},{"version":"553870e516f8c772b89f3820576152ebc70181d7994d96917bb943e37da7f8a7","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"745c4240220559bd340c8aeb6e3c5270a709d3565e934dc22a69c304703956bc","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"9212c6e9d80cb45441a3614e95afd7235a55a18584c2ed32d6c1aca5a0c53d93","affectsGlobalScope":true,"impliedFormat":1},{"version":"bef91efa0baea5d0e0f0f27b574a8bc100ce62a6d7e70220a0d58af6acab5e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"282fd2a1268a25345b830497b4b7bf5037a5e04f6a9c44c840cb605e19fea841","impliedFormat":1},{"version":"5360a27d3ebca11b224d7d3e38e3e2c63f8290cb1fcf6c3610401898f8e68bc3","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true,"impliedFormat":1},{"version":"1f58ebc40c84046ba4c25cf7e86e1ae92c3f064fb641af6c46a5acebf0b8b20b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f689c4237b70ae6be5f0e4180e8833f34ace40529d1acc0676ab8fb8f70457d7","impliedFormat":1},{"version":"ae25afbbf1ed5df63a177d67b9048bf7481067f1b8dc9c39212e59db94fc9fc6","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"52a8e7e8a1454b6d1b5ad428efae3870ffc56f2c02d923467f2940c454aa9aec","affectsGlobalScope":true,"impliedFormat":1},{"version":"78dc0513cc4f1642906b74dda42146bcbd9df7401717d6e89ea6d72d12ecb539","impliedFormat":1},{"version":"ad90122e1cb599b3bc06a11710eb5489101be678f2920f2322b0ac3e195af78d","impliedFormat":1}],"root":[[90,98]],"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},"referencedMap":[[78,1],[79,2],[80,3],[88,4],[85,5],[81,1],[82,1],[84,6],[83,7],[86,5],[87,5],[143,8],[144,8],[145,9],[104,10],[146,11],[147,12],[148,13],[99,1],[102,14],[100,1],[101,1],[149,15],[150,16],[151,17],[152,18],[153,19],[154,20],[155,20],[157,21],[156,22],[158,23],[159,24],[160,25],[142,26],[103,1],[161,27],[162,28],[163,29],[196,30],[164,31],[165,32],[166,33],[167,34],[168,35],[169,36],[170,37],[171,38],[172,39],[173,40],[174,40],[175,41],[176,1],[177,1],[178,42],[180,43],[179,44],[181,45],[182,46],[183,47],[184,48],[185,49],[186,50],[187,51],[188,52],[189,53],[190,54],[191,55],[192,56],[193,57],[194,58],[195,59],[89,1],[76,1],[77,1],[13,1],[15,1],[14,1],[2,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[3,1],[24,1],[25,1],[4,1],[26,1],[30,1],[27,1],[28,1],[29,1],[31,1],[32,1],[33,1],[5,1],[34,1],[35,1],[36,1],[37,1],[6,1],[41,1],[38,1],[39,1],[40,1],[42,1],[7,1],[43,1],[48,1],[49,1],[44,1],[45,1],[46,1],[47,1],[8,1],[53,1],[50,1],[51,1],[52,1],[54,1],[9,1],[55,1],[56,1],[57,1],[59,1],[58,1],[60,1],[61,1],[10,1],[62,1],[63,1],[64,1],[11,1],[65,1],[66,1],[67,1],[68,1],[69,1],[1,1],[70,1],[71,1],[12,1],[74,1],[73,1],[72,1],[75,1],[120,60],[130,61],[119,60],[140,62],[111,63],[110,64],[139,65],[133,66],[138,67],[113,68],[127,69],[112,70],[136,71],[108,72],[107,65],[137,73],[109,74],[114,75],[115,1],[118,75],[105,1],[141,76],[131,77],[122,78],[123,79],[125,80],[121,81],[124,82],[134,65],[116,83],[117,84],[126,85],[106,86],[129,77],[128,75],[132,1],[135,87],[96,88],[98,89],[92,90],[93,91],[95,92],[90,90],[91,93],[94,94],[97,95]],"version":"5.7.3"}
|
|
1
|
+
{"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.es2024.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.arraybuffer.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.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.es2023.intl.d.ts","../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2024.collection.d.ts","../node_modules/typescript/lib/lib.es2024.object.d.ts","../node_modules/typescript/lib/lib.es2024.promise.d.ts","../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2024.string.d.ts","../node_modules/typescript/lib/lib.esnext.array.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.iterator.d.ts","../node_modules/typescript/lib/lib.esnext.float16.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/AbortException.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/messages/ODGMessage.d.ts","../node_modules/@odg/message/dist/index.d.ts","../node_modules/axios/index.d.cts","../src/interfaces/AxiosInterfaceExtra.ts","../src/interfaces/index.ts","../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/compatibility/disposable.d.ts","../node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/compatibility/index.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.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/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.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/sea.d.ts","../node_modules/@types/node/sqlite.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/index.d.ts"],"fileIdsList":[[83,110,152],[80,81,82,110,152],[84,85,86,87,88,89,90,91,110,152],[83,86,87,110,152],[110,152],[84,85,86,110,152],[84,87,110,152],[89,90,110,152],[110,149,152],[110,151,152],[152],[110,152,157,187],[110,152,153,158,164,165,172,184,195],[110,152,153,154,164,172],[105,106,107,110,152],[110,152,155,196],[110,152,156,157,165,173],[110,152,157,184,192],[110,152,158,160,164,172],[110,151,152,159],[110,152,160,161],[110,152,164],[110,152,162,164],[110,151,152,164],[110,152,164,165,166,184,195],[110,152,164,165,166,179,184,187],[110,147,152,200],[110,147,152,160,164,167,172,184,195],[110,152,164,165,167,168,172,184,192,195],[110,152,167,169,184,192,195],[108,109,110,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,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201],[110,152,164,170],[110,152,171,195],[110,152,160,164,172,184],[110,152,173],[110,152,174],[110,151,152,175],[110,149,150,151,152,153,154,155,156,157,158,159,160,161,162,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201],[110,152,177],[110,152,178],[110,152,164,179,180],[110,152,179,181,196,198],[110,152,164,184,185,187],[110,152,186,187],[110,152,184,185],[110,152,187],[110,152,188],[110,149,152,184],[110,152,164,190,191],[110,152,190,191],[110,152,157,172,184,192],[110,152,193],[110,152,172,194],[110,152,167,178,195],[110,152,157,196],[110,152,184,197],[110,152,171,198],[110,152,199],[110,152,157,164,166,175,184,195,198,200],[110,152,184,201],[110,119,123,152,195],[110,119,152,184,195],[110,114,152],[110,116,119,152,192,195],[110,152,172,192],[110,152,202],[110,114,152,202],[110,116,119,152,172,195],[110,111,112,115,118,152,164,184,195],[110,119,126,152],[110,111,117,152],[110,119,140,141,152],[110,115,119,152,187,195,202],[110,140,152,202],[110,113,114,152,202],[110,119,152],[110,113,114,115,116,117,118,119,120,121,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,141,142,143,144,145,146,152],[110,119,134,152],[110,119,126,127,152],[110,117,119,127,128,152],[110,118,152],[110,111,114,119,152],[110,119,123,127,128,152],[110,123,152],[110,117,119,122,152,195],[110,111,116,119,126,152],[110,152,184],[110,114,119,140,152,200,202],[83,92,93,96,97,99,100,101,110,152],[97,98,99,100,101,102,103,110,152],[92,93,110,152],[92,93,95,97,98,110,152],[92,93,98,100,110,152],[94,110,152],[92,94,96,110,152],[92,93,96,97,110,152,167],[83,92,93,97,100,110,152]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"8bf8b5e44e3c9c36f98e1007e8b7018c0f38d8adc07aecef42f5200114547c70","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","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":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","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":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"daa0f7d475ffeed7a411dda4105b41b72ba40a35d4bc96401cec4df882b539aa","impliedFormat":1},{"version":"c20483f7ddf6c9eca06972f8fe011484dbfc3f0fcecc99bd7fd14a7782582107","impliedFormat":1},{"version":"879df2101ebd6bb3e29509b2976900e765b3e7728c855d56b17f62a790994f84","impliedFormat":1},{"version":"b61a9ded766ea51fbfc981141d241b9bf06c67ba4609d3ec5ae7c2b2de2e4dc4","impliedFormat":1},{"version":"e6502d1ca73415aa18e3acc410020a55e6b04fa2aeb1f732c94b86b35c888ce6","impliedFormat":1},{"version":"acff1c12ae48618e334f5e5c554ef0e2db3b4e8ab57240a4e4ebaec69af111eb","impliedFormat":1},{"version":"111bcb69339040b4ab26a0c8a9e672e1530cd788f3a6d10119aabd073b67268a","impliedFormat":1},{"version":"aeccdae354a6add9b54c4bf7a5507e41961fd3ee9e421bb0033f57950df3f5c9","impliedFormat":1},{"version":"e1a37581c62bdb09cfc431c7124251cfc78d0bbf3ccb5a48acfd5826e7dfdb22","impliedFormat":1},{"version":"df314da1a78365c92f1c47129b4a06441b1d5387ef2c6d93877a393b56292222","impliedFormat":1},{"version":"553f8a0a55f54c7bc9b90dc5b1222bb2b7fd6f0e523a6ee2401d21252962a83f","impliedFormat":1},{"version":"7e924a9c6487c1cc4cd89a1819aca6b24e540644ab7fa27b975eeb22c2b5f6a3","impliedFormat":1},{"version":"7a8f621f3fbdddaa8b40990946176d0a585c8782f4be00bae6ffd913c7cf1455","impliedFormat":1},{"version":"22588e0164314bd52ab66e6de987083ed0c571eecaae452826f7d34bdde0a728","impliedFormat":1},{"version":"4cda888222eab1cd807782fd2c474f2a10d6a78fee5783a0740cd971e9add0b8","signature":"3d3d4f0ccd050c068b31d74cb49a4de3bc3246833f7644d2b6d3378a3e6459bf","impliedFormat":1},{"version":"ec9d3119203a592c8ec81ac2bf07f4e78d01946d02cc6f64d91e8523428f1c01","impliedFormat":1},{"version":"c455478fdb6f8896973510f312497c59d3d743e65dab4b99a4c9384968e20538","signature":"4ae4b67f63be1eb083b53f78d5100b5ce588a77c5d5ff0a9e11572aebcea128d","impliedFormat":1},{"version":"cb9549ff4a5d6f23feac970d33d2f16055e4ec45b3206bb2a07f305d0cb42c82","signature":"dec2d47ba00b27370b88916e77c4dd96ddf34f59e60e76844cba2b856604ec5d","impliedFormat":1},{"version":"efbe0bbe04d23cf5cceba9835fd4ee7262c918c2d403f48f4cd0107732f57c40","signature":"614cba6f8f35e9c2489774ad8b69481e70d1a88a468dc7d321d42677c145eeec","impliedFormat":1},{"version":"2d9bb05aaa72f2b1f7d255dfd7ef1cea8b5fc5fccdf64a1a72719c0f124df12b","signature":"a09aa6725709080e98b84648248bdaf58355a609772ccdafdd966ec3282250af","impliedFormat":1},{"version":"8e353686f204072155c2aca39034a1e7dcefbbf8fdd6f062f8453eabe683adc3","signature":"2eee00e0e355377c892d71e3cf04996b0f77c22775046b866df0696e83efd5f7","impliedFormat":1},{"version":"d595ff881bca926b3ca1b13843c136906481ec43feac30ed536defd354f3e888","signature":"bcc8371437144d88eb06eb1acc15ee09a05cd69512ee71946b46f7c1b7ec8fa5","impliedFormat":1},{"version":"0cb9f1f7e2c604dd4c79e0dd4bcf785ca1459ccfdff529a6516a9567e3d54f42","signature":"4adfa17212f7fd06a5678a086a65bb029e6226d05732bbc922f8bbda0bf1a593","impliedFormat":1},{"version":"f79cfc9330e729a16e9f16bcdeb3a1f1834ae0d40924f9a65df22560b8a2730d","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":1},{"version":"bfc87f0924b8ce2def03808983b924b220e124f3f5db791469a819ffc32ed074","signature":"8868d8a610ea2eaaac7e941da0e694e4cdd73a1aa1c7b6bd165e264ccc316710","impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"030e350db2525514580ed054f712ffb22d273e6bc7eddc1bb7eda1e0ba5d395e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"8fa51737611c21ba3a5ac02c4e1535741d58bec67c9bdf94b1837a31c97a2263","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"d2bc987ae352271d0d615a420dcf98cc886aa16b87fb2b569358c1fe0ca0773d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4f0539c58717cbc8b73acb29f9e992ab5ff20adba5f9b57130691c7f9b186a4d","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"76103716ba397bbb61f9fa9c9090dca59f39f9047cb1352b2179c5d8e7f4e8d0","impliedFormat":1},{"version":"f9677e434b7a3b14f0a9367f9dfa1227dfe3ee661792d0085523c3191ae6a1a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"9057f224b79846e3a95baf6dad2c8103278de2b0c5eebda23fc8188171ad2398","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true,"impliedFormat":1},{"version":"8fb11e675f5cc648bc6c344e1311e36b8dfffea8bffe575bedc0e41af77eca99","impliedFormat":1},{"version":"1e289f30a48126935a5d408a91129a13a59c9b0f8c007a816f9f16ef821e144e","impliedFormat":1},{"version":"f96a023e442f02cf551b4cfe435805ccb0a7e13c81619d4da61ec835d03fe512","impliedFormat":1},{"version":"5135bdd72cc05a8192bd2e92f0914d7fc43ee077d1293dc622a049b7035a0afb","impliedFormat":1},{"version":"4f80de3a11c0d2f1329a72e92c7416b2f7eab14f67e92cac63bb4e8d01c6edc8","impliedFormat":1},{"version":"6d386bc0d7f3afa1d401afc3e00ed6b09205a354a9795196caed937494a713e6","impliedFormat":1},{"version":"f579f267a2f4c2278cca2ec84613e95059368b503ce96586972d304e5e40125b","affectsGlobalScope":true,"impliedFormat":1},{"version":"23459c1915878a7c1e86e8bdb9c187cddd3aea105b8b1dfce512f093c969bc7e","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"1dc73f8854e5c4506131c4d95b3a6c24d0c80336d3758e95110f4c7b5cb16397","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f6f1d54779d0b9ed152b0516b0958cd34889764c1190434bbf18e7a8bb884cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","impliedFormat":1},{"version":"fab29e6d649aa074a6b91e3bdf2bff484934a46067f6ee97a30fcd9762ae2213","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"f7b1df115dbd1b8522cba4f404a9f4fdcd5169e2137129187ffeee9d287e4fd1","impliedFormat":1},{"version":"c878f74b6d10b267f6075c51ac1d8becd15b4aa6a58f79c0cfe3b24908357f60","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"fbf68fc8057932b1c30107ebc37420f8d8dc4bef1253c4c2f9e141886c0df5ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"993985beef40c7d113f6dd8f0ba26eed63028b691fbfeb6a5b63f26408dd2c6d","affectsGlobalScope":true,"impliedFormat":1},{"version":"bef91efa0baea5d0e0f0f27b574a8bc100ce62a6d7e70220a0d58af6acab5e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"282fd2a1268a25345b830497b4b7bf5037a5e04f6a9c44c840cb605e19fea841","impliedFormat":1},{"version":"5360a27d3ebca11b224d7d3e38e3e2c63f8290cb1fcf6c3610401898f8e68bc3","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb094bb347d7df3380299eb69836c2c8758626ecf45917577707c03cf816b6f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"f689c4237b70ae6be5f0e4180e8833f34ace40529d1acc0676ab8fb8f70457d7","impliedFormat":1},{"version":"b02784111b3fc9c38590cd4339ff8718f9329a6f4d3fd66e9744a1dcd1d7e191","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"52a8e7e8a1454b6d1b5ad428efae3870ffc56f2c02d923467f2940c454aa9aec","affectsGlobalScope":true,"impliedFormat":1},{"version":"78dc0513cc4f1642906b74dda42146bcbd9df7401717d6e89ea6d72d12ecb539","impliedFormat":1},{"version":"ad90122e1cb599b3bc06a11710eb5489101be678f2920f2322b0ac3e195af78d","impliedFormat":1}],"root":[[94,104]],"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},"referencedMap":[[81,1],[80,1],[82,1],[83,2],[92,3],[88,4],[84,5],[85,5],[87,6],[86,7],[89,4],[90,4],[91,8],[149,9],[150,9],[151,10],[110,11],[152,12],[153,13],[154,14],[105,5],[108,15],[106,5],[107,5],[155,16],[156,17],[157,18],[158,19],[159,20],[160,21],[161,21],[163,22],[162,23],[164,24],[165,25],[166,26],[148,27],[109,5],[167,28],[168,29],[169,30],[202,31],[170,32],[171,33],[172,34],[173,35],[174,36],[175,37],[176,38],[177,39],[178,40],[179,41],[180,41],[181,42],[182,5],[183,5],[184,43],[186,44],[185,45],[187,46],[188,47],[189,48],[190,49],[191,50],[192,51],[193,52],[194,53],[195,54],[196,55],[197,56],[198,57],[199,58],[200,59],[201,60],[93,5],[78,5],[79,5],[13,5],[15,5],[14,5],[2,5],[16,5],[17,5],[18,5],[19,5],[20,5],[21,5],[22,5],[23,5],[3,5],[24,5],[25,5],[4,5],[26,5],[30,5],[27,5],[28,5],[29,5],[31,5],[32,5],[33,5],[5,5],[34,5],[35,5],[36,5],[37,5],[6,5],[41,5],[38,5],[39,5],[40,5],[42,5],[7,5],[43,5],[48,5],[49,5],[44,5],[45,5],[46,5],[47,5],[8,5],[53,5],[50,5],[51,5],[52,5],[54,5],[9,5],[55,5],[56,5],[57,5],[59,5],[58,5],[60,5],[61,5],[10,5],[62,5],[63,5],[64,5],[11,5],[65,5],[66,5],[67,5],[68,5],[69,5],[1,5],[70,5],[71,5],[12,5],[75,5],[73,5],[77,5],[72,5],[76,5],[74,5],[126,61],[136,62],[125,61],[146,63],[117,64],[116,65],[145,66],[139,67],[144,68],[119,69],[133,70],[118,71],[142,72],[114,73],[113,66],[143,74],[115,75],[120,76],[121,5],[124,76],[111,5],[147,77],[137,78],[128,79],[129,80],[131,81],[127,82],[130,83],[140,66],[122,84],[123,85],[132,86],[112,87],[135,78],[134,76],[138,5],[141,88],[102,89],[104,90],[98,91],[99,92],[101,93],[94,91],[95,94],[96,91],[97,95],[100,96],[103,97]],"version":"5.8.2"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odg/axios",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.0",
|
|
4
4
|
"description": "Project Axios using IoC and DI",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,12 +10,13 @@
|
|
|
10
10
|
"url": "https://github.com/ODGodinho/ODGAxios"
|
|
11
11
|
},
|
|
12
12
|
"scripts": {
|
|
13
|
-
"build": "rimraf dist && tsc --project ./tsconfig.build.json",
|
|
14
|
-
"build:watch": "
|
|
15
|
-
"dev": "
|
|
16
|
-
"
|
|
17
|
-
"lint
|
|
18
|
-
"
|
|
13
|
+
"build": "rimraf dist/ && tsc --project ./tsconfig.build.json && tsc-alias -p tsconfig.build.json",
|
|
14
|
+
"build:watch": "npm run build && (concurrently \"tsc --project ./tsconfig.build.json -w\" \"tsc-alias -p tsconfig.build.json -w\")",
|
|
15
|
+
"dev": "tsx ./src/index.ts",
|
|
16
|
+
"start": "node ./dist/index.js",
|
|
17
|
+
"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,.eslintrc",
|
|
18
|
+
"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,.eslintrc --fix",
|
|
19
|
+
"prepare": "husky",
|
|
19
20
|
"test": "vitest run",
|
|
20
21
|
"test:ci": "vitest run --passWithNoTests",
|
|
21
22
|
"test:watch": "vitest --watch"
|
|
@@ -23,6 +24,11 @@
|
|
|
23
24
|
"publishConfig": {
|
|
24
25
|
"access": "public"
|
|
25
26
|
},
|
|
27
|
+
"lint-staged": {
|
|
28
|
+
"*": [
|
|
29
|
+
"npm run lint:fix"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
26
32
|
"release": {
|
|
27
33
|
"branches": [
|
|
28
34
|
"+([0-9])?(.{+([0-9]),x}).x",
|
|
@@ -56,9 +62,13 @@
|
|
|
56
62
|
"@odg/eslint-config": "*",
|
|
57
63
|
"@odg/tsconfig": "*",
|
|
58
64
|
"@types/node": ">=20",
|
|
59
|
-
"@vitest/coverage-
|
|
65
|
+
"@vitest/coverage-istanbul": "^1",
|
|
66
|
+
"concurrently": "^9.1.2",
|
|
67
|
+
"husky": "^9.1.7",
|
|
60
68
|
"rimraf": "*",
|
|
61
|
-
"
|
|
69
|
+
"tsc-alias": "^1.8.11",
|
|
70
|
+
"tsx": "^4.19.3",
|
|
71
|
+
"typescript": "^5.8.2",
|
|
62
72
|
"vite-tsconfig-paths": "^4",
|
|
63
73
|
"vitest": "^1"
|
|
64
74
|
},
|
|
@@ -66,5 +76,9 @@
|
|
|
66
76
|
"@odg/exception": "*",
|
|
67
77
|
"@odg/message": "*",
|
|
68
78
|
"axios": "*"
|
|
79
|
+
},
|
|
80
|
+
"peerDependencies": {
|
|
81
|
+
"@odg/exception": "*",
|
|
82
|
+
"@odg/message": "*"
|
|
69
83
|
}
|
|
70
84
|
}
|