@odg/tls 1.1.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/interceptors/TlsAxiosInterceptorRequest.d.ts +7 -0
- package/dist/interceptors/TlsAxiosInterceptorRequest.js +10 -0
- package/dist/interceptors/TlsAxiosInterceptorRequest.js.map +1 -0
- package/dist/interceptors/TlsAxiosInterceptorResponse.d.ts +6 -0
- package/dist/interceptors/TlsAxiosInterceptorResponse.js +10 -0
- package/dist/interceptors/TlsAxiosInterceptorResponse.js.map +1 -0
- package/dist/interfaces/TlsOptionsInterface.d.ts +7 -2
- package/dist/messages/TlsMessage.d.ts +13 -10
- package/dist/messages/TlsMessage.js +25 -53
- package/dist/messages/TlsMessage.js.map +1 -1
- package/dist/parser/TlsAxiosRequestParser.d.ts +26 -0
- package/dist/parser/TlsAxiosRequestParser.js +84 -0
- package/dist/parser/TlsAxiosRequestParser.js.map +1 -0
- package/dist/parser/TlsAxiosResponseParser.d.ts +5 -0
- package/dist/parser/TlsAxiosResponseParser.js +10 -0
- package/dist/parser/TlsAxiosResponseParser.js.map +1 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +19 -13
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from "./messages/TlsMessage";
|
|
2
|
-
export * from "./interfaces/TlsOptionsInterface";
|
|
2
|
+
export type * from "./interfaces/TlsOptionsInterface";
|
package/dist/index.js
CHANGED
|
@@ -15,5 +15,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./messages/TlsMessage"), exports);
|
|
18
|
-
__exportStar(require("./interfaces/TlsOptionsInterface"), exports);
|
|
19
18
|
//# 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,wDAAsC
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wDAAsC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { AxiosInterceptorRequest } from "@odg/axios";
|
|
2
|
+
import { type InterceptorManager } from "@odg/message";
|
|
3
|
+
import { type TlsRequestInterface } from "src/interfaces/TlsOptionsInterface";
|
|
4
|
+
import { TlsAxiosRequestParser } from "../parser/TlsAxiosRequestParser";
|
|
5
|
+
export declare class TlsAxiosInterceptorRequest<RequestData> extends AxiosInterceptorRequest<RequestData> implements InterceptorManager<TlsRequestInterface<RequestData>> {
|
|
6
|
+
protected readonly parser: typeof TlsAxiosRequestParser;
|
|
7
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TlsAxiosInterceptorRequest = void 0;
|
|
4
|
+
const axios_1 = require("@odg/axios");
|
|
5
|
+
const TlsAxiosRequestParser_1 = require("../parser/TlsAxiosRequestParser");
|
|
6
|
+
class TlsAxiosInterceptorRequest extends axios_1.AxiosInterceptorRequest {
|
|
7
|
+
parser = TlsAxiosRequestParser_1.TlsAxiosRequestParser;
|
|
8
|
+
}
|
|
9
|
+
exports.TlsAxiosInterceptorRequest = TlsAxiosInterceptorRequest;
|
|
10
|
+
//# sourceMappingURL=TlsAxiosInterceptorRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TlsAxiosInterceptorRequest.js","sourceRoot":"","sources":["../../src/interceptors/TlsAxiosInterceptorRequest.ts"],"names":[],"mappings":";;;AAAA,sCAAqD;AAOrD,2EAAwE;AAExE,MAAa,0BAEX,SAAQ,+BAEL;IAEkB,MAAM,GAAG,6CAAqB,CAAC;CAErD;AARD,gEAQC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { AxiosInterceptorResponse } from "@odg/axios";
|
|
2
|
+
import { type InterceptorManager, type ResponseInterface } from "@odg/message";
|
|
3
|
+
import { TlsAxiosResponseParser } from "../parser/TlsAxiosResponseParser";
|
|
4
|
+
export declare class TlsAxiosInterceptorResponse<RequestData, ResponseData> extends AxiosInterceptorResponse<RequestData, ResponseData> implements InterceptorManager<ResponseInterface<RequestData, ResponseData>> {
|
|
5
|
+
protected readonly parser: typeof TlsAxiosResponseParser;
|
|
6
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TlsAxiosInterceptorResponse = void 0;
|
|
4
|
+
const axios_1 = require("@odg/axios");
|
|
5
|
+
const TlsAxiosResponseParser_1 = require("../parser/TlsAxiosResponseParser");
|
|
6
|
+
class TlsAxiosInterceptorResponse extends axios_1.AxiosInterceptorResponse {
|
|
7
|
+
parser = TlsAxiosResponseParser_1.TlsAxiosResponseParser;
|
|
8
|
+
}
|
|
9
|
+
exports.TlsAxiosInterceptorResponse = TlsAxiosInterceptorResponse;
|
|
10
|
+
//# sourceMappingURL=TlsAxiosInterceptorResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TlsAxiosInterceptorResponse.js","sourceRoot":"","sources":["../../src/interceptors/TlsAxiosInterceptorResponse.ts"],"names":[],"mappings":";;;AAAA,sCAAsD;AAMtD,6EAA0E;AAE1E,MAAa,2BAGX,SAAQ,gCAGL;IAEkB,MAAM,GAAG,+CAAsB,CAAC;CAEtD;AAVD,kEAUC"}
|
|
@@ -1,12 +1,17 @@
|
|
|
1
|
-
|
|
1
|
+
import { type AxiosRequestConfigExtra } from "@odg/axios/dist/interfaces";
|
|
2
|
+
import { type RequestOptionsParametersInterface, type RequestInterface } from "@odg/message";
|
|
3
|
+
export interface TlsRequestInterface<RequestData, ExtraData extends Record<string, unknown> = Record<string, unknown>> extends RequestInterface<RequestData, ExtraData> {
|
|
2
4
|
tls?: {
|
|
3
5
|
url?: string;
|
|
4
6
|
allowRedirect?: boolean;
|
|
5
7
|
};
|
|
6
8
|
}
|
|
7
|
-
export interface TlsOptionsConstructorInterface extends
|
|
9
|
+
export interface TlsOptionsConstructorInterface<RequestData, ExtraData extends Record<string, unknown> = Record<string, unknown>> extends RequestOptionsParametersInterface<RequestData, ExtraData> {
|
|
8
10
|
tls: {
|
|
9
11
|
url: string;
|
|
10
12
|
allowRedirect?: boolean;
|
|
11
13
|
};
|
|
12
14
|
}
|
|
15
|
+
export interface TlsAxiosRequestConfigExtra<RequestData> extends AxiosRequestConfigExtra<RequestData> {
|
|
16
|
+
tlsOptions: RequestInterface<unknown>["extras"];
|
|
17
|
+
}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { AxiosMessage } from "@odg/axios";
|
|
2
|
-
import { type
|
|
3
|
-
import { type TlsOptionsConstructorInterface, type
|
|
2
|
+
import { type InterceptorsInterface, type ProxyConfigInterface, type ResponseInterface } from "@odg/message";
|
|
3
|
+
import { type TlsOptionsConstructorInterface, type TlsRequestInterface } from "../interfaces/TlsOptionsInterface";
|
|
4
|
+
import { TlsAxiosRequestParser } from "../parser/TlsAxiosRequestParser";
|
|
5
|
+
import { TlsAxiosResponseParser } from "../parser/TlsAxiosResponseParser";
|
|
4
6
|
/**
|
|
5
7
|
* Tls Message class
|
|
6
8
|
*
|
|
@@ -8,13 +10,14 @@ import { type TlsOptionsConstructorInterface, type TlsOptionsInterface } from ".
|
|
|
8
10
|
* @template {any} ResponseData Data of response
|
|
9
11
|
*/
|
|
10
12
|
export declare class TlsMessage<RequestData, ResponseData> extends AxiosMessage<RequestData, ResponseData> {
|
|
11
|
-
|
|
13
|
+
readonly interceptors: InterceptorsInterface<RequestData, ResponseData>;
|
|
14
|
+
protected readonly requestParser: typeof TlsAxiosRequestParser;
|
|
15
|
+
protected readonly responseParser: typeof TlsAxiosResponseParser;
|
|
16
|
+
protected config: TlsOptionsConstructorInterface<RequestData>;
|
|
12
17
|
protected proxy?: ProxyConfigInterface | false;
|
|
13
|
-
constructor(config:
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
private
|
|
18
|
-
private getUrl;
|
|
19
|
-
private getTimeInSeconds;
|
|
18
|
+
constructor(config: TlsOptionsConstructorInterface<RequestData>);
|
|
19
|
+
setDefaultOptions(config: TlsOptionsConstructorInterface<RequestData>): this;
|
|
20
|
+
getDefaultOptions(): Partial<TlsOptionsConstructorInterface<RequestData>>;
|
|
21
|
+
request<RequestD = RequestData, ResponseD = ResponseData>(options: TlsRequestInterface<RequestD>): Promise<ResponseInterface<RequestD, ResponseD>>;
|
|
22
|
+
private getNewOptions;
|
|
20
23
|
}
|
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.TlsMessage = void 0;
|
|
4
4
|
const axios_1 = require("@odg/axios");
|
|
5
|
+
const TlsAxiosInterceptorRequest_1 = require("../interceptors/TlsAxiosInterceptorRequest");
|
|
6
|
+
const TlsAxiosInterceptorResponse_1 = require("../interceptors/TlsAxiosInterceptorResponse");
|
|
7
|
+
const TlsAxiosRequestParser_1 = require("../parser/TlsAxiosRequestParser");
|
|
8
|
+
const TlsAxiosResponseParser_1 = require("../parser/TlsAxiosResponseParser");
|
|
5
9
|
/**
|
|
6
10
|
* Tls Message class
|
|
7
11
|
*
|
|
@@ -9,69 +13,37 @@ const axios_1 = require("@odg/axios");
|
|
|
9
13
|
* @template {any} ResponseData Data of response
|
|
10
14
|
*/
|
|
11
15
|
class TlsMessage extends axios_1.AxiosMessage {
|
|
16
|
+
interceptors;
|
|
17
|
+
requestParser = TlsAxiosRequestParser_1.TlsAxiosRequestParser;
|
|
18
|
+
responseParser = TlsAxiosResponseParser_1.TlsAxiosResponseParser;
|
|
12
19
|
config;
|
|
13
20
|
proxy;
|
|
14
21
|
constructor(config) {
|
|
15
|
-
super(
|
|
22
|
+
super({});
|
|
16
23
|
this.proxy = config.proxy;
|
|
17
24
|
this.config = config;
|
|
25
|
+
this.interceptors = Object.freeze({
|
|
26
|
+
request: new TlsAxiosInterceptorRequest_1.TlsAxiosInterceptorRequest(this.client.interceptors.request),
|
|
27
|
+
response: new TlsAxiosInterceptorResponse_1.TlsAxiosInterceptorResponse(this.client.interceptors.response),
|
|
28
|
+
});
|
|
18
29
|
}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
...options,
|
|
23
|
-
url: this.config.tls.url,
|
|
24
|
-
headers: {
|
|
25
|
-
"poptls-url": this.getUrl(options),
|
|
26
|
-
"poptls-proxy": TlsMessage.getProxyUrl([
|
|
27
|
-
options.proxy,
|
|
28
|
-
this.proxy,
|
|
29
|
-
]),
|
|
30
|
-
"poptls-allowredirect": String(this.getAllowRedirect(options)),
|
|
31
|
-
},
|
|
32
|
-
};
|
|
33
|
-
if (timeout)
|
|
34
|
-
newOptions.headers["poptls-timeout"] = String(timeout);
|
|
35
|
-
newOptions.headers = {
|
|
36
|
-
...newOptions.headers,
|
|
37
|
-
...options.headers,
|
|
38
|
-
};
|
|
39
|
-
delete newOptions.proxy;
|
|
40
|
-
return super.request(newOptions);
|
|
30
|
+
setDefaultOptions(config) {
|
|
31
|
+
this.config = config;
|
|
32
|
+
return this;
|
|
41
33
|
}
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
...config,
|
|
34
|
+
getDefaultOptions() {
|
|
35
|
+
return {
|
|
36
|
+
...this.config,
|
|
45
37
|
};
|
|
46
|
-
delete newConfig.proxy;
|
|
47
|
-
delete newConfig.baseURL;
|
|
48
|
-
delete newConfig.url;
|
|
49
|
-
return newConfig;
|
|
50
38
|
}
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
if (!proxy)
|
|
54
|
-
return;
|
|
55
|
-
const proxyPort = proxy.port ? `:${proxy.port}` : "";
|
|
56
|
-
if (proxy.auth?.username) {
|
|
57
|
-
return `${proxy.protocol}://${proxy.auth.username}:${proxy.auth.password}@${proxy.host}${proxyPort}`;
|
|
58
|
-
}
|
|
59
|
-
return `${proxy.protocol}://${proxy.host}${proxyPort}`;
|
|
60
|
-
}
|
|
61
|
-
getAllowRedirect(options) {
|
|
62
|
-
return options.tls?.allowRedirect ?? this.config.tls.allowRedirect ?? true;
|
|
63
|
-
}
|
|
64
|
-
getUrl(options) {
|
|
65
|
-
return `${options.baseURL ?? this.config.baseURL ?? ""}${options.url ?? this.config.url ?? ""}`;
|
|
39
|
+
async request(options) {
|
|
40
|
+
return super.request(await this.getNewOptions(options));
|
|
66
41
|
}
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
return newTimeout > 0 ? newTimeout : 0;
|
|
73
|
-
}
|
|
74
|
-
return timeout;
|
|
42
|
+
async getNewOptions(options) {
|
|
43
|
+
return {
|
|
44
|
+
...this.config,
|
|
45
|
+
...options,
|
|
46
|
+
};
|
|
75
47
|
}
|
|
76
48
|
}
|
|
77
49
|
exports.TlsMessage = TlsMessage;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TlsMessage.js","sourceRoot":"","sources":["../../src/messages/TlsMessage.ts"],"names":[],"mappings":";;;AAAA,sCAA0C;
|
|
1
|
+
{"version":3,"file":"TlsMessage.js","sourceRoot":"","sources":["../../src/messages/TlsMessage.ts"],"names":[],"mappings":";;;AAAA,sCAA0C;AAW1C,2FAAwF;AACxF,6FAA0F;AAE1F,2EAAwE;AACxE,6EAA0E;AAE1E;;;;;GAKG;AACH,MAAa,UAAsC,SAAQ,oBAAuC;IAE9E,YAAY,CAAmD;IAE5D,aAAa,GAAG,6CAAqB,CAAC;IAEtC,cAAc,GAAG,+CAAsB,CAAC;IAEjD,MAAM,CAA8C;IAEpD,KAAK,CAAgC;IAE/C,YAAmB,MAAmD;QAClE,KAAK,CAAC,EAAE,CAAC,CAAC;QACV,IAAI,CAAC,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC;QAC1B,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QAErB,IAAI,CAAC,YAAY,GAAG,MAAM,CAAC,MAAM,CAAC;YAC9B,OAAO,EAAE,IAAI,uDAA0B,CACnC,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,OAAmE,CAC/F;YACD,QAAQ,EAAE,IAAI,yDAA2B,CACrC,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,QAAQ,CACpC;SACJ,CAAC,CAAC;IACP,CAAC;IAEM,iBAAiB,CAAC,MAAmD;QACxE,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QAErB,OAAO,IAAI,CAAC;IAChB,CAAC;IAEM,iBAAiB;QACpB,OAAO;YACH,GAAG,IAAI,CAAC,MAAM;SACjB,CAAC;IACN,CAAC;IAEM,KAAK,CAAC,OAAO,CAChB,OAAsC;QAEtC,OAAO,KAAK,CAAC,OAAO,CAAsB,MAAM,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC,CAAC;IACjF,CAAC;IAEO,KAAK,CAAC,aAAa,CACvB,OAAsC;QAEtC,OAAO;YACH,GAAG,IAAI,CAAC,MAAuC;YAC/C,GAAG,OAAO;SACb,CAAC;IACN,CAAC;CAEJ;AAtDD,gCAsDC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { AxiosRequestParser } from "@odg/axios";
|
|
2
|
+
import { type AxiosRequestConfig } from "axios";
|
|
3
|
+
import { type TlsAxiosRequestConfigExtra, type TlsRequestInterface } from "../interfaces/TlsOptionsInterface";
|
|
4
|
+
export declare class TlsAxiosRequestParser extends AxiosRequestParser {
|
|
5
|
+
/**
|
|
6
|
+
* Parse MessageInterface to Axios
|
|
7
|
+
*
|
|
8
|
+
* @template {any} RequestD Dados Request Axios
|
|
9
|
+
* @template {Record<string, unknown>} ExtraData Dados Request Axios extras
|
|
10
|
+
* @param {Partial<TlsRequestInterface<RequestD>>} options Dados Request
|
|
11
|
+
* @returns {AxiosRequestConfig<RequestD>}
|
|
12
|
+
*/
|
|
13
|
+
static parseMessageToLibrary<RequestD>(options: Partial<TlsRequestInterface<RequestD>>): AxiosRequestConfig<RequestD>;
|
|
14
|
+
/**
|
|
15
|
+
* Parse Request Axios configuration
|
|
16
|
+
*
|
|
17
|
+
* @template {any} RequestD Dados Request Axios
|
|
18
|
+
* @param {TlsAxiosRequestConfigExtra<RequestD>} config Dados Request
|
|
19
|
+
* @returns {TlsRequestInterface<RequestD>}
|
|
20
|
+
*/
|
|
21
|
+
static parseLibraryToMessage<RequestD>(config: TlsAxiosRequestConfigExtra<RequestD>): TlsRequestInterface<RequestD>;
|
|
22
|
+
private static getUrl;
|
|
23
|
+
private static getProxyUrl;
|
|
24
|
+
private static getAllowRedirect;
|
|
25
|
+
private static getTimeInSeconds;
|
|
26
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TlsAxiosRequestParser = void 0;
|
|
4
|
+
const axios_1 = require("@odg/axios");
|
|
5
|
+
class TlsAxiosRequestParser extends axios_1.AxiosRequestParser {
|
|
6
|
+
/**
|
|
7
|
+
* Parse MessageInterface to Axios
|
|
8
|
+
*
|
|
9
|
+
* @template {any} RequestD Dados Request Axios
|
|
10
|
+
* @template {Record<string, unknown>} ExtraData Dados Request Axios extras
|
|
11
|
+
* @param {Partial<TlsRequestInterface<RequestD>>} options Dados Request
|
|
12
|
+
* @returns {AxiosRequestConfig<RequestD>}
|
|
13
|
+
*/
|
|
14
|
+
static parseMessageToLibrary(options) {
|
|
15
|
+
return Object.fromEntries(Object.entries({
|
|
16
|
+
...super.parseMessageToLibrary(options),
|
|
17
|
+
url: options.tls.url,
|
|
18
|
+
proxy: undefined,
|
|
19
|
+
baseURL: undefined,
|
|
20
|
+
headers: {
|
|
21
|
+
...options.headers,
|
|
22
|
+
"poptls-url": this.getUrl(options),
|
|
23
|
+
"poptls-proxy": this.getProxyUrl(options.proxy),
|
|
24
|
+
"poptls-allowredirect": String(this.getAllowRedirect(options)),
|
|
25
|
+
"poptls-timeout": this.getTimeInSeconds(options),
|
|
26
|
+
},
|
|
27
|
+
tlsOptions: {
|
|
28
|
+
url: options.url,
|
|
29
|
+
baseUrl: options.baseURL,
|
|
30
|
+
proxy: options.proxy,
|
|
31
|
+
tls: options.tls,
|
|
32
|
+
},
|
|
33
|
+
}).filter(([, value]) => value !== undefined));
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Parse Request Axios configuration
|
|
37
|
+
*
|
|
38
|
+
* @template {any} RequestD Dados Request Axios
|
|
39
|
+
* @param {TlsAxiosRequestConfigExtra<RequestD>} config Dados Request
|
|
40
|
+
* @returns {TlsRequestInterface<RequestD>}
|
|
41
|
+
*/
|
|
42
|
+
static parseLibraryToMessage(config) {
|
|
43
|
+
return Object.fromEntries(Object.entries({
|
|
44
|
+
...super.parseLibraryToMessage(config),
|
|
45
|
+
url: config.tlsOptions?.url,
|
|
46
|
+
baseURL: config.tlsOptions?.baseUrl,
|
|
47
|
+
proxy: config.tlsOptions?.proxy,
|
|
48
|
+
tls: config.tlsOptions?.tls,
|
|
49
|
+
headers: {
|
|
50
|
+
...config.headers,
|
|
51
|
+
"poptls-url": undefined,
|
|
52
|
+
"poptls-proxy": undefined,
|
|
53
|
+
"poptls-allowredirect": undefined,
|
|
54
|
+
"poptls-timeout": undefined,
|
|
55
|
+
},
|
|
56
|
+
}).filter(([, value]) => value !== undefined));
|
|
57
|
+
}
|
|
58
|
+
static getUrl(options) {
|
|
59
|
+
return `${options.baseURL ?? ""}${options.url ?? ""}`;
|
|
60
|
+
}
|
|
61
|
+
static getProxyUrl(proxy) {
|
|
62
|
+
if (!proxy)
|
|
63
|
+
return;
|
|
64
|
+
const proxyPort = proxy.port ? `:${proxy.port}` : "";
|
|
65
|
+
if (proxy.auth?.username) {
|
|
66
|
+
return `${proxy.protocol}://${proxy.auth.username}:${proxy.auth.password}@${proxy.host}${proxyPort}`;
|
|
67
|
+
}
|
|
68
|
+
return `${proxy.protocol}://${proxy.host}${proxyPort}`;
|
|
69
|
+
}
|
|
70
|
+
static getAllowRedirect(options) {
|
|
71
|
+
return options.tls?.allowRedirect ?? true;
|
|
72
|
+
}
|
|
73
|
+
static getTimeInSeconds(options) {
|
|
74
|
+
const { timeout } = options;
|
|
75
|
+
if (typeof timeout === "number") {
|
|
76
|
+
const miliSecondsToSeconds = 1000;
|
|
77
|
+
const newTimeout = Math.trunc(timeout / miliSecondsToSeconds);
|
|
78
|
+
return newTimeout > 0 ? newTimeout : 0;
|
|
79
|
+
}
|
|
80
|
+
return undefined;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
exports.TlsAxiosRequestParser = TlsAxiosRequestParser;
|
|
84
|
+
//# sourceMappingURL=TlsAxiosRequestParser.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TlsAxiosRequestParser.js","sourceRoot":"","sources":["../../src/parser/TlsAxiosRequestParser.ts"],"names":[],"mappings":";;;AAAA,sCAAgD;AAMhD,MAAa,qBAAsB,SAAQ,0BAAkB;IAEzD;;;;;;;OAOG;IACI,MAAM,CAAC,qBAAqB,CAC/B,OAA+C;QAE/C,OAAO,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,OAAO,CAAC;YACrC,GAAG,KAAK,CAAC,qBAAqB,CAAC,OAAO,CAAC;YACvC,GAAG,EAAE,OAAO,CAAC,GAAI,CAAC,GAAG;YACrB,KAAK,EAAE,SAAS;YAChB,OAAO,EAAE,SAAS;YAClB,OAAO,EAAE;gBACL,GAAG,OAAO,CAAC,OAAO;gBAClB,YAAY,EAAE,IAAI,CAAC,MAAM,CAAW,OAAO,CAAC;gBAC5C,cAAc,EAAE,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,KAAK,CAAC;gBAC/C,sBAAsB,EAAE,MAAM,CAAC,IAAI,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC;gBAC9D,gBAAgB,EAAE,IAAI,CAAC,gBAAgB,CAAC,OAAO,CAAC;aACnD;YACD,UAAU,EAAE;gBACR,GAAG,EAAE,OAAO,CAAC,GAAG;gBAChB,OAAO,EAAE,OAAO,CAAC,OAAO;gBACxB,KAAK,EAAE,OAAO,CAAC,KAAK;gBACpB,GAAG,EAAE,OAAO,CAAC,GAAG;aACnB;SAC4B,CAAC,CAAC,MAAM,CAAC,CAAC,CAAE,AAAD,EAAG,KAAK,CAAE,EAAE,EAAE,CAAC,KAAK,KAAK,SAAS,CAAC,CAAC,CAAC;IACrF,CAAC;IAED;;;;;;OAMG;IACI,MAAM,CAAC,qBAAqB,CAC/B,MAA4C;QAE5C,OAAO,MAAM,CAAC,WAAW,CACrB,MAAM,CAAC,OAAO,CAAC;YACX,GAAG,KAAK,CAAC,qBAAqB,CAAC,MAAM,CAAC;YACtC,GAAG,EAAE,MAAM,CAAC,UAAU,EAAE,GAAG;YAC3B,OAAO,EAAE,MAAM,CAAC,UAAU,EAAE,OAAO;YACnC,KAAK,EAAE,MAAM,CAAC,UAAU,EAAE,KAAK;YAC/B,GAAG,EAAE,MAAM,CAAC,UAAU,EAAE,GAAG;YAC3B,OAAO,EAAE;gBACL,GAAG,MAAM,CAAC,OAAO;gBACjB,YAAY,EAAE,SAAS;gBACvB,cAAc,EAAE,SAAS;gBACzB,sBAAsB,EAAE,SAAS;gBACjC,gBAAgB,EAAE,SAAS;aAC9B;SAC6B,CAAC,CAAC,MAAM,CAAC,CAAC,CAAE,AAAD,EAAG,KAAK,CAAE,EAAE,EAAE,CAAC,KAAK,KAAK,SAAS,CAAC,CAClD,CAAC;IACvC,CAAC;IAEO,MAAM,CAAC,MAAM,CACjB,OAA+C;QAE/C,OAAO,GAAG,OAAO,CAAC,OAAO,IAAI,EAAE,GAAG,OAAO,CAAC,GAAG,IAAI,EAAE,EAAE,CAAC;IAC1D,CAAC;IAEO,MAAM,CAAC,WAAW,CAAC,KAA+C;QACtE,IAAI,CAAC,KAAK;YAAE,OAAO;QAEnB,MAAM,SAAS,GAAG,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;QACrD,IAAI,KAAK,CAAC,IAAI,EAAE,QAAQ,EAAE,CAAC;YACvB,OAAO,GAAG,KAAK,CAAC,QAAQ,MAAM,KAAK,CAAC,IAAI,CAAC,QAAQ,IAAI,KAAK,CAAC,IAAI,CAAC,QAAQ,IAAI,KAAK,CAAC,IAAI,GAAG,SAAS,EAAE,CAAC;QACzG,CAAC;QAED,OAAO,GAAG,KAAK,CAAC,QAAQ,MAAM,KAAK,CAAC,IAAI,GAAG,SAAS,EAAE,CAAC;IAC3D,CAAC;IAEO,MAAM,CAAC,gBAAgB,CAC3B,OAA+C;QAE/C,OAAO,OAAO,CAAC,GAAG,EAAE,aAAa,IAAI,IAAI,CAAC;IAC9C,CAAC;IAEO,MAAM,CAAC,gBAAgB,CAC3B,OAA+C;QAE/C,MAAM,EAAE,OAAO,EAAE,GAAG,OAAO,CAAC;QAE5B,IAAI,OAAO,OAAO,KAAK,QAAQ,EAAE,CAAC;YAC9B,MAAM,oBAAoB,GAAG,IAAI,CAAC;YAClC,MAAM,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,GAAG,oBAAoB,CAAC,CAAC;YAE9D,OAAO,UAAU,GAAG,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;QAC3C,CAAC;QAED,OAAO,SAAS,CAAC;IACrB,CAAC;CAEJ;AApGD,sDAoGC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TlsAxiosResponseParser = void 0;
|
|
4
|
+
const axios_1 = require("@odg/axios");
|
|
5
|
+
const TlsAxiosRequestParser_1 = require("./TlsAxiosRequestParser");
|
|
6
|
+
class TlsAxiosResponseParser extends axios_1.AxiosResponseParser {
|
|
7
|
+
static requestParser = TlsAxiosRequestParser_1.TlsAxiosRequestParser;
|
|
8
|
+
}
|
|
9
|
+
exports.TlsAxiosResponseParser = TlsAxiosResponseParser;
|
|
10
|
+
//# sourceMappingURL=TlsAxiosResponseParser.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TlsAxiosResponseParser.js","sourceRoot":"","sources":["../../src/parser/TlsAxiosResponseParser.ts"],"names":[],"mappings":";;;AAAA,sCAAiD;AAEjD,mEAAgE;AAEhE,MAAa,sBAAuB,SAAQ,2BAAmB;IAEjD,MAAM,CAAC,aAAa,GAAG,6CAAqB,CAAC;;AAF3D,wDAIC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/@odg/axios/dist/register.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/@odg/axios/dist/AxiosMessage.d.ts","../node_modules/@odg/axios/dist/index.d.ts","../src/interfaces/TlsOptionsInterface.ts","../src/messages/TlsMessage.ts","../src/index.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/buffer/index.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","impliedFormat":1},{"version":"bed7b7ba0eb5a160b69af72814b4dde371968e40b6c5e73d3a9f7bee407d158c","impliedFormat":1},{"version":"21e41a76098aa7a191028256e52a726baafd45a925ea5cf0222eb430c96c1d83","affectsGlobalScope":true,"impliedFormat":1},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0275cd0e42990dc3a16f0b7c8bca3efe87f1c8ad404f80c6db1c7c0b828c59f","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true,"impliedFormat":1},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"acae90d417bee324b1372813b5a00829d31c7eb670d299cd7f8f9a648ac05688","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true,"impliedFormat":1},{"version":"62a4966981264d1f04c44eb0f4b5bdc3d81c1a54725608861e44755aa24ad6a5","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"86a34c7a13de9cabc43161348f663624b56871ed80986e41d214932ddd8d6719","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true,"impliedFormat":1},{"version":"08a58483392df5fcc1db57d782e87734f77ae9eab42516028acbfe46f29a3ef7","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true,"impliedFormat":1},{"version":"4350e5922fecd4bedda2964d69c213a1436349d0b8d260dd902795f5b94dc74b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","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":"851935e6368d49d15e6d89779331e4d6531950e5e7c327650e6b1f7a7a90488a","impliedFormat":1},{"version":"47feec369636acf149ab251f8e46eed48a69f90b8fbe1b13c9feb494f1bd200f","impliedFormat":1},{"version":"22a7c9452c08e9b8389c735403d02676094a115ac3dd694d7c4a1f2130352d0b","signature":"e0b1a80fb0222310df125d59c876c4443bce4b8c9281bf16710cc3d3ec0eb003","impliedFormat":1},{"version":"722f52cdd1d574ecb06fe1d7e29ccd89f74cc6aa7e14e9523799042530553cec","signature":"7e4cd149de315edbd42159d49ae2156d5da6032ffdc6b505fe1a4fdf12d35634","impliedFormat":1},{"version":"da3b03067e2bccd7f65e905ee7a8a91dbceb42e92f2fd882b3497a336ed912f2","impliedFormat":1},{"version":"efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","impliedFormat":1},{"version":"3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","impliedFormat":1},{"version":"e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","impliedFormat":1},{"version":"471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","impliedFormat":1},{"version":"c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","impliedFormat":1},{"version":"40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","impliedFormat":1},{"version":"8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","impliedFormat":1},{"version":"4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1","impliedFormat":1},{"version":"cc5e65fb1729463665074b9d7163e78a4225b7af7f3a6b3c74492f415166612f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c","impliedFormat":1},{"version":"185282b122cbca820c297a02a57b89cf5967ab43e220e3e174d872d3f9a94d2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"16d74fe4d8e183344d3beb15d48b123c5980ff32ff0cc8c3b96614ddcdf9b239","impliedFormat":1},{"version":"7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba","impliedFormat":1},{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"e8968b394e4365588f8f89cfff86435258cf10062585c1d2224627ab92acda22","impliedFormat":1},{"version":"285e512c7a0db217a0599e18c462d565fa35be4a5153dd7b80bee88c83e83ddf","impliedFormat":1},{"version":"b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","impliedFormat":1},{"version":"8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","impliedFormat":1},{"version":"af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","impliedFormat":1},{"version":"b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e","impliedFormat":1},{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ae9dc7dbb58cd843065639707815df85c044babaa0947116f97bdb824d07204","affectsGlobalScope":true,"impliedFormat":1},{"version":"7aae1df2053572c2cfc2089a77847aadbb38eedbaa837a846c6a49fb37c6e5bd","impliedFormat":1},{"version":"313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","impliedFormat":1},{"version":"1f758340b027b18ae8773ac3d33a60648a2af49eaae9e4fde18d0a0dd608642c","impliedFormat":1},{"version":"87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","impliedFormat":1},{"version":"396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","impliedFormat":1},{"version":"21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac","impliedFormat":1},{"version":"dea4c00820d4fac5e530d4842aed2fb20d6744d75a674b95502cbd433f88bcb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","impliedFormat":1},{"version":"45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","impliedFormat":1},{"version":"0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7","impliedFormat":1},{"version":"0d832a0650a74aafc276cb3f7bb26bde2e2270a6f87e6c871a64122e9203079b","affectsGlobalScope":true,"impliedFormat":1},{"version":"c6f3869f12bb5c3bb8ecd0b050ea20342b89b944eae18d313cde6b0ccc0925d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","impliedFormat":1},{"version":"d742ed2db6d5425b3b6ac5fb1f2e4b1ed2ae74fbeee8d0030d852121a4b05d2f","impliedFormat":1},{"version":"d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","impliedFormat":1},{"version":"8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","impliedFormat":1},{"version":"01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","impliedFormat":1},{"version":"458b216959c231df388a5de9dcbcafd4b4ca563bc3784d706d0455467d7d4942","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","impliedFormat":1},{"version":"831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12","impliedFormat":1},{"version":"2225100373ca3d63bcc7f206e1177152d2e2161285a0bd83c8374db1503a0d1f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true,"impliedFormat":1},{"version":"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","impliedFormat":1},{"version":"eefcdf86cefff36e5d87de36a3638ab5f7d16c2b68932be4a72c14bb924e43c1","impliedFormat":1},{"version":"7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","impliedFormat":1},{"version":"7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df","impliedFormat":1},{"version":"4d0405568cf6e0ff36a4861c4a77e641366feaefa751600b0a4d12a5e8f730a8","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true,"impliedFormat":1},{"version":"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","impliedFormat":1},{"version":"79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","impliedFormat":1},{"version":"4a34b074b11c3597fb2ff890bc8f1484375b3b80793ab01f974534808d5777c7","impliedFormat":1},{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","impliedFormat":1}],"root":[[79,81]],"options":{"allowJs":false,"alwaysStrict":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":100,"newLine":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","preserveConstEnums":true,"removeComments":false,"sourceMap":true,"strict":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":9},"fileIdsList":[[76],[65,77],[68],[66,67],[69,70,71,72,73,74,75],[68,71,72],[69,70,71],[69,72],[82],[118],[119,124,152],[120,131,132,139,149,160],[120,121,131,139],[122,161],[123,124,132,140],[124,149,157],[125,127,131,139],[126],[127,128],[131],[129,131],[118,131],[131,132,133,149,160],[131,132,133,146,149,152],[116,119,165],[127,131,134,139,149,160],[131,132,134,135,139,149,157,160],[134,136,149,157,160],[82,83,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167],[131,137],[138,160,165],[127,131,139,149],[140],[141],[118,142],[143,159,165],[144],[145],[131,146,147],[146,148,161,163],[119,131,149,150,151,152],[119,149,151],[149,150],[152],[153],[118,149],[131,155,156],[155,156],[124,139,149,157],[158],[139,159],[119,134,145,160],[124,161],[149,162],[138,163],[164],[119,124,131,133,142,149,160,163,165],[149,166],[93,97,160],[93,149,160],[88],[90,93,157,160],[139,157],[168],[88,168],[90,93,139,160],[85,86,89,92,119,131,149,160],[85,91],[89,93,119,152,160,168],[119,168],[109,119,168],[87,88,168],[93],[87,88,89,90,91,92,93,94,95,97,98,99,100,101,102,103,104,105,106,107,108,110,111,112,113,114,115],[93,100,101],[91,93,101,102],[92],[85,88,93],[93,97,101,102],[97],[91,93,96,160],[85,90,91,93,97,100],[119,149],[88,93,109,119,165,168],[79,80],[76,78,79]],"referencedMap":[[77,1],[78,2],[67,3],[68,4],[76,5],[73,6],[72,7],[71,8],[74,6],[75,6],[82,9],[83,9],[118,10],[119,11],[120,12],[121,13],[122,14],[123,15],[124,16],[125,17],[126,18],[127,19],[128,19],[130,20],[129,21],[131,22],[132,23],[133,24],[117,25],[134,26],[135,27],[136,28],[168,29],[137,30],[138,31],[139,32],[140,33],[141,34],[142,35],[143,36],[144,37],[145,38],[146,39],[147,39],[148,40],[149,41],[151,42],[150,43],[152,44],[153,45],[154,46],[155,47],[156,48],[157,49],[158,50],[159,51],[160,52],[161,53],[162,54],[163,55],[164,56],[165,57],[166,58],[100,59],[107,60],[99,59],[114,61],[91,62],[90,63],[113,64],[108,65],[111,66],[93,67],[92,68],[88,69],[87,70],[110,71],[89,72],[94,73],[98,73],[116,74],[115,73],[102,75],[103,76],[105,77],[101,78],[104,79],[109,64],[96,80],[97,81],[106,82],[86,83],[112,84],[81,85],[80,86]],"exportedModulesMap":[[77,1],[78,2],[67,3],[68,4],[76,5],[73,6],[72,7],[71,8],[74,6],[75,6],[82,9],[83,9],[118,10],[119,11],[120,12],[121,13],[122,14],[123,15],[124,16],[125,17],[126,18],[127,19],[128,19],[130,20],[129,21],[131,22],[132,23],[133,24],[117,25],[134,26],[135,27],[136,28],[168,29],[137,30],[138,31],[139,32],[140,33],[141,34],[142,35],[143,36],[144,37],[145,38],[146,39],[147,39],[148,40],[149,41],[151,42],[150,43],[152,44],[153,45],[154,46],[155,47],[156,48],[157,49],[158,50],[159,51],[160,52],[161,53],[162,54],[163,55],[164,56],[165,57],[166,58],[100,59],[107,60],[99,59],[114,61],[91,62],[90,63],[113,64],[108,65],[111,66],[93,67],[92,68],[88,69],[87,70],[110,71],[89,72],[94,73],[98,73],[116,74],[115,73],[102,75],[103,76],[105,77],[101,78],[104,79],[109,64],[96,80],[97,81],[106,82],[86,83],[112,84],[81,85],[80,86]],"semanticDiagnosticsPerFile":[77,78,65,66,67,68,76,73,69,70,72,71,74,75,82,83,118,119,120,121,122,123,124,125,126,127,128,130,129,131,132,133,117,167,134,135,136,168,137,138,139,140,141,142,143,144,145,146,147,148,149,151,150,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,84,63,64,12,14,13,2,15,16,17,18,19,20,21,22,3,4,23,27,24,25,26,28,29,30,5,31,32,33,34,6,38,35,36,37,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,53,54,57,55,56,58,59,10,1,11,62,61,60,100,107,99,114,91,90,113,108,111,93,92,88,87,110,89,94,95,98,85,116,115,102,103,105,101,104,109,96,97,106,86,112,81,79,80]},"version":"5.3.2"}
|
|
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/axios/dist/register.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","../node_modules/@odg/axios/dist/interceptors/AxiosInterceptor.d.ts","../node_modules/@odg/axios/dist/interfaces/AxiosInterfaceExtra.d.ts","../node_modules/@odg/axios/dist/interfaces/index.d.ts","../node_modules/@odg/axios/dist/parser/AxiosRequestParser.d.ts","../node_modules/@odg/axios/dist/interceptors/AxiosInterceptorRequest.d.ts","../node_modules/@odg/axios/dist/parser/AxiosResponseParser.d.ts","../node_modules/@odg/axios/dist/interceptors/AxiosInterceptorResponse.d.ts","../node_modules/@odg/axios/dist/AxiosMessage.d.ts","../node_modules/@odg/axios/dist/index.d.ts","../src/interfaces/TlsOptionsInterface.ts","../src/parser/TlsAxiosRequestParser.ts","../src/interceptors/TlsAxiosInterceptorRequest.ts","../src/parser/TlsAxiosResponseParser.ts","../src/interceptors/TlsAxiosInterceptorResponse.ts","../src/messages/TlsMessage.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":[[93,94,98,100,116,158],[80,95,98,99,100,101,102,116,158],[93,94,116,158],[93,95,97,98,116,158],[93,94,95,100,116,158],[96,116,158],[93,96,116,158],[93,94,98,116,158],[116,158],[84,116,158],[81,82,83,116,158],[85,86,87,88,89,90,91,92,116,158],[84,87,88,116,158],[85,86,87,116,158],[85,88,116,158],[90,91,116,158],[116,155,158],[116,157,158],[158],[116,158,163,193],[116,158,159,164,170,171,178,190,201],[116,158,159,160,170,178],[111,112,113,116,158],[116,158,161,202],[116,158,162,163,171,179],[116,158,163,190,198],[116,158,164,166,170,178],[116,157,158,165],[116,158,166,167],[116,158,170],[116,158,168,170],[116,157,158,170],[116,158,170,171,172,190,201],[116,158,170,171,172,185,190,193],[116,153,158,206],[116,153,158,166,170,173,178,190,201],[116,158,170,171,173,174,178,190,198,201],[116,158,173,175,190,198,201],[114,115,116,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,202,203,204,205,206,207],[116,158,170,176],[116,158,177,201],[116,158,166,170,178,190],[116,158,179],[116,158,180],[116,157,158,181],[116,155,156,157,158,159,160,161,162,163,164,165,166,167,168,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,202,203,204,205,206,207],[116,158,183],[116,158,184],[116,158,170,185,186],[116,158,185,187,202,204],[116,158,170,190,191,193],[116,158,192,193],[116,158,190,191],[116,158,193],[116,158,194],[116,155,158,190],[116,158,170,196,197],[116,158,196,197],[116,158,163,178,190,198],[116,158,199],[116,158,178,200],[116,158,173,184,201],[116,158,163,202],[116,158,190,203],[116,158,177,204],[116,158,205],[116,158,163,170,172,181,190,201,204,206],[116,158,190,207],[116,125,129,158,201],[116,125,158,190,201],[116,120,158],[116,122,125,158,198,201],[116,158,178,198],[116,158,208],[116,120,158,208],[116,122,125,158,178,201],[116,117,118,121,124,158,170,190,201],[116,125,132,158],[116,117,123,158],[116,125,146,147,158],[116,121,125,158,193,201,208],[116,146,158,208],[116,119,120,158,208],[116,125,158],[116,119,120,121,122,123,124,125,126,127,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152,158],[116,125,140,158],[116,125,132,133,158],[116,123,125,133,134,158],[116,124,158],[116,117,120,125,158],[116,125,129,133,134,158],[116,129,158],[116,123,125,128,158,201],[116,117,122,125,132,158],[116,158,190],[116,120,125,146,158,206,208],[104,109,116,158],[93,103,104,105,116,158],[93,103,107,116,158],[93,97,116,158],[93,94,103,104,105,106,107,108,116,158],[93,94,103,104,116,158],[103,105,116,158]],"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":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","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":"27d88ffffc950d35f0daffa6cb81f82e7146ae3ddb116bca46b8616a44967397","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":"614cba6f8f35e9c2489774ad8b69481e70d1a88a468dc7d321d42677c145eeec","impliedFormat":1},{"version":"3d3d4f0ccd050c068b31d74cb49a4de3bc3246833f7644d2b6d3378a3e6459bf","impliedFormat":1},{"version":"ec9d3119203a592c8ec81ac2bf07f4e78d01946d02cc6f64d91e8523428f1c01","impliedFormat":1},{"version":"dec2d47ba00b27370b88916e77c4dd96ddf34f59e60e76844cba2b856604ec5d","impliedFormat":1},{"version":"a09aa6725709080e98b84648248bdaf58355a609772ccdafdd966ec3282250af","impliedFormat":1},{"version":"2eee00e0e355377c892d71e3cf04996b0f77c22775046b866df0696e83efd5f7","impliedFormat":1},{"version":"bcc8371437144d88eb06eb1acc15ee09a05cd69512ee71946b46f7c1b7ec8fa5","impliedFormat":1},{"version":"a4a1f1e50051f55861bfa64edcdd79c3cd32d486aa3a06a6ff15a49d37e306e3","impliedFormat":1},{"version":"8868d8a610ea2eaaac7e941da0e694e4cdd73a1aa1c7b6bd165e264ccc316710","impliedFormat":1},{"version":"3f3c71339689a98ab441846e3b8949e9fcc07df985d4d9a2ef06df96d625f457","signature":"f1412bd034a4d0731a1b53c17fbf590a87a27d8d8f147c340919fbf9f6b3a14c","impliedFormat":1},{"version":"45f14f26c873a6f472529eb3dcc080652e9a223563a87c585cb2bea1050d3035","signature":"180a0969512de5d32fa4fe0ebabbf95a3f8011409dac7161042cb6a215e4ea72","impliedFormat":1},{"version":"5d53335f3b2252dbae7188a51f4ba140d2d1270529ada5418471362d34a3b7e5","signature":"2786ce38336e3e9739f687e9a35df341b0f96702ba639da6b60b0b98bd540974","impliedFormat":1},{"version":"0cc22f0dab12ae750e3dbab2938be3d53f286e80929a3e18bad0f0bb45298501","signature":"e1c0bd17b8060e3afcb62f32d9d51379c7d7ed10d4a7c76b87a57d6559f7224c","impliedFormat":1},{"version":"3a2bcc3d7c246f3b4db2252baf8d4739e8af406e41de9bf0592a7ce92325b88d","signature":"fc3e6dd82b657f31e9b4ff3406c6fa0ade8a56b7472029e736be56a2aa9d6a83","impliedFormat":1},{"version":"db3c46adf6fe5e4ba8619cbe88c16e3794c5fa2fb62db5448844528373b6537e","signature":"3fb07423eaba68f384b00cc156e46e4afda8a3c4821af9fca1d3cf5354d461d7","impliedFormat":1},{"version":"b4fee0b9e0f10455d65da7ba5149e918bde0f73e696738cece2c66213994fe11","signature":"c3e99f22328b77d4b904a71734ac221561b07d1fbc9cd4826751a3a2d8563ede","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":[[104,110]],"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":[[102,1],[103,2],[95,3],[99,4],[101,5],[96,3],[97,6],[98,7],[100,8],[80,9],[82,10],[81,10],[83,10],[84,11],[93,12],[89,13],[85,9],[86,9],[88,14],[87,15],[90,13],[91,13],[92,16],[155,17],[156,17],[157,18],[116,19],[158,20],[159,21],[160,22],[111,9],[114,23],[112,9],[113,9],[161,24],[162,25],[163,26],[164,27],[165,28],[166,29],[167,29],[169,30],[168,31],[170,32],[171,33],[172,34],[154,35],[115,9],[173,36],[174,37],[175,38],[208,39],[176,40],[177,41],[178,42],[179,43],[180,44],[181,45],[182,46],[183,47],[184,48],[185,49],[186,49],[187,50],[188,9],[189,9],[190,51],[192,52],[191,53],[193,54],[194,55],[195,56],[196,57],[197,58],[198,59],[199,60],[200,61],[201,62],[202,63],[203,64],[204,65],[205,66],[206,67],[207,68],[94,9],[78,9],[79,9],[13,9],[15,9],[14,9],[2,9],[16,9],[17,9],[18,9],[19,9],[20,9],[21,9],[22,9],[23,9],[3,9],[24,9],[25,9],[4,9],[26,9],[30,9],[27,9],[28,9],[29,9],[31,9],[32,9],[33,9],[5,9],[34,9],[35,9],[36,9],[37,9],[6,9],[41,9],[38,9],[39,9],[40,9],[42,9],[7,9],[43,9],[48,9],[49,9],[44,9],[45,9],[46,9],[47,9],[8,9],[53,9],[50,9],[51,9],[52,9],[54,9],[9,9],[55,9],[56,9],[57,9],[59,9],[58,9],[60,9],[61,9],[10,9],[62,9],[63,9],[64,9],[11,9],[65,9],[66,9],[67,9],[68,9],[69,9],[1,9],[70,9],[71,9],[12,9],[75,9],[73,9],[77,9],[72,9],[76,9],[74,9],[132,69],[142,70],[131,69],[152,71],[123,72],[122,73],[151,74],[145,75],[150,76],[125,77],[139,78],[124,79],[148,80],[120,81],[119,74],[149,82],[121,83],[126,84],[127,9],[130,84],[117,9],[153,85],[143,86],[134,87],[135,88],[137,89],[133,90],[136,91],[146,74],[128,92],[129,93],[138,94],[118,95],[141,86],[140,84],[144,9],[147,96],[110,97],[106,98],[108,99],[104,100],[109,101],[105,102],[107,103]],"version":"5.8.2"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odg/tls",
|
|
3
|
-
"version": "1.1
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "Stanley TheTemplate for typescript project",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"start": "node ./dist/index.js",
|
|
13
13
|
"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",
|
|
14
14
|
"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",
|
|
15
|
-
"prepare": "husky
|
|
15
|
+
"prepare": "husky",
|
|
16
16
|
"test": "vitest run",
|
|
17
17
|
"test:ci": "vitest run --passWithNoTests",
|
|
18
18
|
"test:watch": "vitest --watch"
|
|
@@ -57,21 +57,27 @@
|
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@odg/eslint-config": "*",
|
|
59
59
|
"@odg/tsconfig": "*",
|
|
60
|
-
"@types/node": ">=
|
|
61
|
-
"@vitest/coverage-
|
|
62
|
-
"concurrently": "^
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"vite-tsconfig-paths": "*",
|
|
60
|
+
"@types/node": ">=20",
|
|
61
|
+
"@vitest/coverage-istanbul": "^1",
|
|
62
|
+
"concurrently": "^9.1.2",
|
|
63
|
+
"husky": "^9.1.7",
|
|
64
|
+
"lint-staged": "^15.5.0",
|
|
65
|
+
"rimraf": "*",
|
|
66
|
+
"tsc-alias": "^1.8.11",
|
|
67
|
+
"tsx": "^4.19.3",
|
|
68
|
+
"typescript": "^5.8.2",
|
|
69
|
+
"vite-tsconfig-paths": "^4",
|
|
71
70
|
"vitest": "^1.0.1"
|
|
72
71
|
},
|
|
73
72
|
"dependencies": {
|
|
74
73
|
"@odg/axios": "*",
|
|
74
|
+
"@odg/exception": "*",
|
|
75
75
|
"@odg/message": "*"
|
|
76
|
+
},
|
|
77
|
+
"peerDependencies": {
|
|
78
|
+
"@odg/axios": "*",
|
|
79
|
+
"@odg/exception": "*",
|
|
80
|
+
"@odg/message": "*",
|
|
81
|
+
"axios": "*"
|
|
76
82
|
}
|
|
77
83
|
}
|