azure-kusto-data 3.3.1 → 3.3.2
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/index.d.ts +2 -1
- package/index.js +26 -1
- package/package.json +17 -12
- package/source/client.js +9 -1
- package/source/clientRequestProperties.js +2 -2
- package/source/errors.d.ts +4 -0
- package/source/errors.js +9 -1
- package/source/models.js +0 -2
- package/source/response.js +0 -2
- package/source/tokenProvider.js +0 -1
- package/tsconfig.tsbuildinfo +1 -1
- package/.eslintignore +0 -5
- package/.eslintrc.js +0 -247
- package/.prettierignore +0 -7
- package/.prettierrc.json +0 -5
- package/index.js.map +0 -1
- package/source/client.js.map +0 -1
- package/source/clientRequestProperties.js.map +0 -1
- package/source/cloudSettings.js.map +0 -1
- package/source/connectionBuilder.js.map +0 -1
- package/source/errors.js.map +0 -1
- package/source/models.js.map +0 -1
- package/source/response.js.map +0 -1
- package/source/security.js.map +0 -1
- package/source/tokenProvider.js.map +0 -1
- package/source/typeUtilts.js.map +0 -1
- package/tsconfig.json +0 -17
package/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import KustoClient from "./source/client";
|
|
2
2
|
import ClientRequestProperties from "./source/clientRequestProperties";
|
|
3
3
|
import KustoConnectionStringBuilder from "./source/connectionBuilder";
|
|
4
|
-
|
|
4
|
+
import * as KustoDataErrors from "./source/errors";
|
|
5
|
+
export { KustoClient as Client, ClientRequestProperties, KustoConnectionStringBuilder, KustoDataErrors };
|
package/index.js
CHANGED
|
@@ -1,15 +1,40 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Copyright (c) Microsoft Corporation.
|
|
3
3
|
// Licensed under the MIT License.
|
|
4
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
16
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
17
|
+
}) : function(o, v) {
|
|
18
|
+
o["default"] = v;
|
|
19
|
+
});
|
|
20
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
21
|
+
if (mod && mod.__esModule) return mod;
|
|
22
|
+
var result = {};
|
|
23
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
24
|
+
__setModuleDefault(result, mod);
|
|
25
|
+
return result;
|
|
26
|
+
};
|
|
4
27
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5
28
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
6
29
|
};
|
|
7
30
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
-
exports.KustoConnectionStringBuilder = exports.ClientRequestProperties = exports.Client = void 0;
|
|
31
|
+
exports.KustoDataErrors = exports.KustoConnectionStringBuilder = exports.ClientRequestProperties = exports.Client = void 0;
|
|
9
32
|
const client_1 = __importDefault(require("./source/client"));
|
|
10
33
|
exports.Client = client_1.default;
|
|
11
34
|
const clientRequestProperties_1 = __importDefault(require("./source/clientRequestProperties"));
|
|
12
35
|
exports.ClientRequestProperties = clientRequestProperties_1.default;
|
|
13
36
|
const connectionBuilder_1 = __importDefault(require("./source/connectionBuilder"));
|
|
14
37
|
exports.KustoConnectionStringBuilder = connectionBuilder_1.default;
|
|
38
|
+
const KustoDataErrors = __importStar(require("./source/errors"));
|
|
39
|
+
exports.KustoDataErrors = KustoDataErrors;
|
|
15
40
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "azure-kusto-data",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.2",
|
|
4
4
|
"description": "Azure Data Explorer Query SDK",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "tsc"
|
|
9
|
+
},
|
|
7
10
|
"engines": {
|
|
8
11
|
"node": ">= 14.0.0"
|
|
9
12
|
},
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public"
|
|
15
|
+
},
|
|
10
16
|
"tags": [
|
|
11
17
|
"azure",
|
|
12
18
|
"kusto",
|
|
@@ -17,21 +23,19 @@
|
|
|
17
23
|
"azure",
|
|
18
24
|
"kusto"
|
|
19
25
|
],
|
|
20
|
-
"scripts": {
|
|
21
|
-
"build": "tsc -b",
|
|
22
|
-
"prepublish": "npm run build ",
|
|
23
|
-
"example": "npm run build && node example.js",
|
|
24
|
-
"lint": "npx eslint -c .eslintrc.js --ext .ts .",
|
|
25
|
-
"test": "npm run build && mocha --parallel",
|
|
26
|
-
"testPipeline": "npm run build && nyc --reporter lcovonly mocha --reporter mocha-junit-reporter",
|
|
27
|
-
"format": "npx prettier --write .",
|
|
28
|
-
"checkFormat": "npx prettier --check --end-of-line lf ."
|
|
29
|
-
},
|
|
30
26
|
"repository": {
|
|
31
27
|
"type": "git",
|
|
32
28
|
"url": "https://github.com/Azure/azure-kusto-node.git",
|
|
33
29
|
"directory": "azure-kusto-data"
|
|
34
30
|
},
|
|
31
|
+
"files": [
|
|
32
|
+
"source/**/*.js",
|
|
33
|
+
"source/**/*.d.ts",
|
|
34
|
+
"index.js",
|
|
35
|
+
"index.d.ts",
|
|
36
|
+
"tsconfig.tsbuildinfo",
|
|
37
|
+
"example.js"
|
|
38
|
+
],
|
|
35
39
|
"author": "",
|
|
36
40
|
"license": "ISC",
|
|
37
41
|
"homepage": "https://github.com/Azure/azure-kusto-node/blob/master/azure-kusto-data/README.md",
|
|
@@ -43,7 +47,8 @@
|
|
|
43
47
|
"axios": "^0.24.0",
|
|
44
48
|
"follow-redirects": "^1.14.8",
|
|
45
49
|
"moment": "^2.25.3",
|
|
50
|
+
"ts-node": "^10.7.0",
|
|
46
51
|
"uuid": "^8.3.2"
|
|
47
52
|
},
|
|
48
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "98353bc492ff277e385181c1034d878c8bfb3119"
|
|
49
54
|
}
|
package/source/client.js
CHANGED
|
@@ -21,6 +21,7 @@ const security_1 = __importDefault(require("./security"));
|
|
|
21
21
|
const response_1 = require("./response");
|
|
22
22
|
const connectionBuilder_1 = __importDefault(require("./connectionBuilder"));
|
|
23
23
|
const clientRequestProperties_1 = __importDefault(require("./clientRequestProperties"));
|
|
24
|
+
const errors_1 = require("./errors");
|
|
24
25
|
const package_json_1 = __importDefault(require("../package.json"));
|
|
25
26
|
const axios_1 = __importDefault(require("axios"));
|
|
26
27
|
const http_1 = __importDefault(require("http"));
|
|
@@ -39,7 +40,11 @@ var ExecutionType;
|
|
|
39
40
|
class KustoClient {
|
|
40
41
|
constructor(kcsb) {
|
|
41
42
|
this.connectionString = typeof kcsb === "string" ? new connectionBuilder_1.default(kcsb) : kcsb;
|
|
42
|
-
|
|
43
|
+
if (!this.connectionString.dataSource) {
|
|
44
|
+
throw new Error("Cluster url is required");
|
|
45
|
+
}
|
|
46
|
+
const url = new URL(this.connectionString.dataSource);
|
|
47
|
+
this.cluster = `${url.protocol}//${url.hostname}${url.port ? `:${url.port}` : ""}`;
|
|
43
48
|
this.defaultDatabase = this.connectionString.initialCatalog;
|
|
44
49
|
this.endpoints = {
|
|
45
50
|
[ExecutionType.Mgmt]: `${this.cluster}/v1/rest/mgmt`,
|
|
@@ -169,6 +174,9 @@ class KustoClient {
|
|
|
169
174
|
}
|
|
170
175
|
catch (error) {
|
|
171
176
|
if (axios_1.default.isAxiosError(error) && error.response) {
|
|
177
|
+
if (error.response.status === 429) {
|
|
178
|
+
throw new errors_1.ThrottlingError("POST request failed with status 429 (Too Many Requests)", error);
|
|
179
|
+
}
|
|
172
180
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
|
|
173
181
|
throw ((_a = error.response.data) === null || _a === void 0 ? void 0 : _a.error) || error.response.data;
|
|
174
182
|
}
|
|
@@ -55,13 +55,13 @@ class ClientRequestProperties {
|
|
|
55
55
|
toJSON() {
|
|
56
56
|
const json = {};
|
|
57
57
|
if (Object.keys(this._options).length !== 0) {
|
|
58
|
-
json.Options = this._options;
|
|
58
|
+
json.Options = Object.assign({}, this._options);
|
|
59
59
|
if (json.Options.servertimeout) {
|
|
60
60
|
json.Options.servertimeout = this._msToTimespan(json.Options.servertimeout);
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
63
|
if (Object.keys(this._parameters).length !== 0) {
|
|
64
|
-
json.Parameters = this._parameters;
|
|
64
|
+
json.Parameters = Object.assign({}, this._parameters);
|
|
65
65
|
}
|
|
66
66
|
return Object.keys(json).length !== 0 ? json : null;
|
|
67
67
|
}
|
package/source/errors.d.ts
CHANGED
|
@@ -4,3 +4,7 @@ export declare class KustoAuthenticationError extends Error {
|
|
|
4
4
|
context: Record<string, any>;
|
|
5
5
|
constructor(message: string, inner: Error | undefined, tokenProviderName: string, context: Record<string, any>);
|
|
6
6
|
}
|
|
7
|
+
export declare class ThrottlingError extends Error {
|
|
8
|
+
inner: Error | undefined;
|
|
9
|
+
constructor(message: string, inner: Error | undefined);
|
|
10
|
+
}
|
package/source/errors.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) Microsoft Corporation.
|
|
3
3
|
// Licensed under the MIT License.
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.KustoAuthenticationError = void 0;
|
|
5
|
+
exports.ThrottlingError = exports.KustoAuthenticationError = void 0;
|
|
6
6
|
class KustoAuthenticationError extends Error {
|
|
7
7
|
constructor(message, inner, tokenProviderName, context) {
|
|
8
8
|
super(message);
|
|
@@ -13,4 +13,12 @@ class KustoAuthenticationError extends Error {
|
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
exports.KustoAuthenticationError = KustoAuthenticationError;
|
|
16
|
+
class ThrottlingError extends Error {
|
|
17
|
+
constructor(message, inner) {
|
|
18
|
+
super(message);
|
|
19
|
+
this.inner = inner;
|
|
20
|
+
this.name = "ThrottlingError";
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
exports.ThrottlingError = ThrottlingError;
|
|
16
24
|
//# sourceMappingURL=errors.js.map
|
package/source/models.js
CHANGED
|
@@ -6,8 +6,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
6
6
|
};
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
8
|
exports.KustoResultTable = exports.KustoResultColumn = exports.KustoResultRow = exports.WellKnownDataSet = void 0;
|
|
9
|
-
// We want all the Kusto table models in this file
|
|
10
|
-
/* eslint-disable max-classes-per-file */
|
|
11
9
|
const moment_1 = __importDefault(require("moment"));
|
|
12
10
|
var WellKnownDataSet;
|
|
13
11
|
(function (WellKnownDataSet) {
|
package/source/response.js
CHANGED
|
@@ -3,8 +3,6 @@
|
|
|
3
3
|
// Licensed under the MIT License.
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
5
|
exports.KustoResponseDataSetV2 = exports.KustoResponseDataSetV1 = exports.KustoResponseDataSet = void 0;
|
|
6
|
-
// We want all the Response models to be in this file
|
|
7
|
-
/* eslint-disable max-classes-per-file */
|
|
8
6
|
const models_1 = require("./models");
|
|
9
7
|
var ErrorLevels;
|
|
10
8
|
(function (ErrorLevels) {
|
package/source/tokenProvider.js
CHANGED
|
@@ -12,7 +12,6 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
12
12
|
};
|
|
13
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
14
|
exports.ApplicationCertificateTokenProvider = exports.ApplicationKeyTokenProvider = exports.DeviceLoginTokenProvider = exports.UserPassTokenProvider = exports.UserPromptProvider = exports.AzCliTokenProvider = exports.MsiTokenProvider = exports.AzureIdentityProvider = exports.CallbackTokenProvider = exports.BasicTokenProvider = exports.TokenProviderBase = void 0;
|
|
15
|
-
/* eslint-disable max-classes-per-file -- We want all the Token Providers in this file */
|
|
16
15
|
const msal_node_1 = require("@azure/msal-node");
|
|
17
16
|
const identity_1 = require("@azure/identity");
|
|
18
17
|
const cloudSettings_1 = require("./cloudSettings");
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es6.d.ts","../../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.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/moment/ts3.1-typings/moment.d.ts","./node_modules/@types/uuid/index.d.ts","./node_modules/@azure/msal-common/dist/network/RequestThumbprint.d.ts","./node_modules/@azure/msal-common/dist/authority/AuthorityType.d.ts","./node_modules/@azure/msal-common/dist/authority/OpenIdConfigResponse.d.ts","./node_modules/@azure/msal-common/dist/url/IUri.d.ts","./node_modules/@azure/msal-common/dist/authority/ProtocolMode.d.ts","./node_modules/@azure/msal-common/dist/utils/Constants.d.ts","./node_modules/@azure/msal-common/dist/cache/entities/CredentialEntity.d.ts","./node_modules/@azure/msal-common/dist/cache/entities/IdTokenEntity.d.ts","./node_modules/@azure/msal-common/dist/request/BaseAuthRequest.d.ts","./node_modules/@azure/msal-common/dist/crypto/SignedHttpRequest.d.ts","./node_modules/@azure/msal-common/dist/crypto/ICrypto.d.ts","./node_modules/@azure/msal-common/dist/cache/entities/AccessTokenEntity.d.ts","./node_modules/@azure/msal-common/dist/cache/entities/RefreshTokenEntity.d.ts","./node_modules/@azure/msal-common/dist/cache/entities/AppMetadataEntity.d.ts","./node_modules/@azure/msal-common/dist/cache/entities/CacheRecord.d.ts","./node_modules/@azure/msal-common/dist/account/AccountInfo.d.ts","./node_modules/@azure/msal-common/dist/cache/entities/ServerTelemetryEntity.d.ts","./node_modules/@azure/msal-common/dist/cache/entities/ThrottlingEntity.d.ts","./node_modules/@azure/msal-common/dist/authority/CloudDiscoveryMetadata.d.ts","./node_modules/@azure/msal-common/dist/cache/entities/AuthorityMetadataEntity.d.ts","./node_modules/@azure/msal-common/dist/cache/interface/ICacheManager.d.ts","./node_modules/@azure/msal-common/dist/authority/AzureRegion.d.ts","./node_modules/@azure/msal-common/dist/authority/AzureRegionConfiguration.d.ts","./node_modules/@azure/msal-common/dist/authority/AuthorityOptions.d.ts","./node_modules/@azure/msal-common/dist/authority/RegionDiscoveryMetadata.d.ts","./node_modules/@azure/msal-common/dist/authority/Authority.d.ts","./node_modules/@azure/msal-common/dist/account/TokenClaims.d.ts","./node_modules/@azure/msal-common/dist/account/AuthToken.d.ts","./node_modules/@azure/msal-common/dist/logger/Logger.d.ts","./node_modules/@azure/msal-common/dist/cache/entities/AccountEntity.d.ts","./node_modules/@azure/msal-common/dist/cache/utils/CacheTypes.d.ts","./node_modules/@azure/msal-common/dist/request/ScopeSet.d.ts","./node_modules/@azure/msal-common/dist/cache/CacheManager.d.ts","./node_modules/@azure/msal-common/dist/network/NetworkManager.d.ts","./node_modules/@azure/msal-common/dist/network/INetworkModule.d.ts","./node_modules/@azure/msal-common/dist/error/AuthError.d.ts","./node_modules/@azure/msal-common/dist/telemetry/server/ServerTelemetryRequest.d.ts","./node_modules/@azure/msal-common/dist/telemetry/server/ServerTelemetryManager.d.ts","./node_modules/@azure/msal-common/dist/cache/interface/ISerializableTokenCache.d.ts","./node_modules/@azure/msal-common/dist/cache/persistence/TokenCacheContext.d.ts","./node_modules/@azure/msal-common/dist/cache/interface/ICachePlugin.d.ts","./node_modules/@azure/msal-common/dist/config/ClientConfiguration.d.ts","./node_modules/@azure/msal-common/dist/response/ServerAuthorizationTokenResponse.d.ts","./node_modules/@azure/msal-common/dist/account/CcsCredential.d.ts","./node_modules/@azure/msal-common/dist/client/BaseClient.d.ts","./node_modules/@azure/msal-common/dist/utils/MsalTypes.d.ts","./node_modules/@azure/msal-common/dist/request/CommonAuthorizationUrlRequest.d.ts","./node_modules/@azure/msal-common/dist/request/CommonAuthorizationCodeRequest.d.ts","./node_modules/@azure/msal-common/dist/response/AuthenticationResult.d.ts","./node_modules/@azure/msal-common/dist/request/CommonEndSessionRequest.d.ts","./node_modules/@azure/msal-common/dist/response/AuthorizationCodePayload.d.ts","./node_modules/@azure/msal-common/dist/client/AuthorizationCodeClient.d.ts","./node_modules/@azure/msal-common/dist/response/DeviceCodeResponse.d.ts","./node_modules/@azure/msal-common/dist/request/CommonDeviceCodeRequest.d.ts","./node_modules/@azure/msal-common/dist/client/DeviceCodeClient.d.ts","./node_modules/@azure/msal-common/dist/request/CommonRefreshTokenRequest.d.ts","./node_modules/@azure/msal-common/dist/request/CommonSilentFlowRequest.d.ts","./node_modules/@azure/msal-common/dist/client/RefreshTokenClient.d.ts","./node_modules/@azure/msal-common/dist/request/CommonClientCredentialRequest.d.ts","./node_modules/@azure/msal-common/dist/client/ClientCredentialClient.d.ts","./node_modules/@azure/msal-common/dist/request/CommonOnBehalfOfRequest.d.ts","./node_modules/@azure/msal-common/dist/client/OnBehalfOfClient.d.ts","./node_modules/@azure/msal-common/dist/client/SilentFlowClient.d.ts","./node_modules/@azure/msal-common/dist/request/CommonUsernamePasswordRequest.d.ts","./node_modules/@azure/msal-common/dist/client/UsernamePasswordClient.d.ts","./node_modules/@azure/msal-common/dist/authority/AuthorityFactory.d.ts","./node_modules/@azure/msal-common/dist/network/ThrottlingUtils.d.ts","./node_modules/@azure/msal-common/dist/response/ServerAuthorizationCodeResponse.d.ts","./node_modules/@azure/msal-common/dist/url/UrlString.d.ts","./node_modules/@azure/msal-common/dist/error/ServerError.d.ts","./node_modules/@azure/msal-common/dist/error/InteractionRequiredAuthError.d.ts","./node_modules/@azure/msal-common/dist/error/ClientAuthError.d.ts","./node_modules/@azure/msal-common/dist/error/ClientConfigurationError.d.ts","./node_modules/@azure/msal-common/dist/account/DecodedAuthToken.d.ts","./node_modules/@azure/msal-common/dist/utils/StringUtils.d.ts","./node_modules/@azure/msal-common/dist/utils/ProtocolUtils.d.ts","./node_modules/@azure/msal-common/dist/utils/TimeUtils.d.ts","./node_modules/@azure/msal-common/dist/index.d.ts","./source/typeUtilts.ts","./source/connectionBuilder.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/utils/Constants.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/network/RequestThumbprint.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/authority/AuthorityType.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/authority/OpenIdConfigResponse.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/url/IUri.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/authority/ProtocolMode.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/entities/CredentialEntity.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/entities/IdTokenEntity.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/BaseAuthRequest.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/crypto/SignedHttpRequest.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/crypto/ICrypto.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/entities/AccessTokenEntity.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/entities/RefreshTokenEntity.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/entities/AppMetadataEntity.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/entities/CacheRecord.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/account/AccountInfo.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/entities/ServerTelemetryEntity.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/entities/ThrottlingEntity.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/authority/CloudDiscoveryMetadata.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/entities/AuthorityMetadataEntity.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/interface/ICacheManager.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/authority/AzureRegion.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/authority/AzureRegionConfiguration.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/authority/AuthorityOptions.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/authority/RegionDiscoveryMetadata.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/authority/Authority.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/account/TokenClaims.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/account/AuthToken.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/logger/Logger.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/entities/AccountEntity.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/utils/CacheTypes.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/CacheManager.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/network/NetworkManager.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/network/INetworkModule.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/error/AuthError.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/telemetry/server/ServerTelemetryRequest.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/telemetry/server/ServerTelemetryManager.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/interface/ISerializableTokenCache.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/persistence/TokenCacheContext.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/interface/ICachePlugin.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/config/ClientConfiguration.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/response/ServerAuthorizationTokenResponse.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/account/CcsCredential.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/client/BaseClient.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/utils/MsalTypes.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/CommonAuthorizationUrlRequest.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/CommonAuthorizationCodeRequest.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/response/AuthenticationResult.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/CommonEndSessionRequest.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/response/AuthorizationCodePayload.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/client/AuthorizationCodeClient.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/response/DeviceCodeResponse.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/CommonDeviceCodeRequest.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/client/DeviceCodeClient.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/CommonRefreshTokenRequest.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/CommonSilentFlowRequest.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/client/RefreshTokenClient.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/CommonClientCredentialRequest.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/client/ClientCredentialClient.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/CommonOnBehalfOfRequest.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/client/OnBehalfOfClient.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/client/SilentFlowClient.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/CommonUsernamePasswordRequest.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/client/UsernamePasswordClient.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/authority/AuthorityFactory.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/network/ThrottlingUtils.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/response/ServerAuthorizationCodeResponse.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/url/UrlString.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/crypto/IGuidGenerator.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/response/ExternalTokenResponse.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/ScopeSet.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/AuthenticationHeaderParser.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/error/InteractionRequiredAuthError.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/error/ServerError.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/error/ClientAuthError.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/error/ClientConfigurationError.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/account/DecodedAuthToken.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/utils/StringUtils.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/utils/ProtocolUtils.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/utils/TimeUtils.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/telemetry/performance/PerformanceEvent.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/telemetry/performance/IPerformanceMeasurement.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/telemetry/performance/IPerformanceClient.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/telemetry/performance/PerformanceClient.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/telemetry/performance/StubPerformanceClient.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/crypto/PopTokenGenerator.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/packageMetadata.d.ts","./node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/index.d.ts","./node_modules/@azure/msal-node/dist/request/AuthorizationCodeRequest.d.ts","./node_modules/@azure/msal-node/dist/request/AuthorizationUrlRequest.d.ts","./node_modules/@azure/msal-node/dist/request/DeviceCodeRequest.d.ts","./node_modules/@azure/msal-node/dist/request/RefreshTokenRequest.d.ts","./node_modules/@azure/msal-node/dist/request/SilentFlowRequest.d.ts","./node_modules/@azure/msal-node/dist/request/UsernamePasswordRequest.d.ts","./node_modules/@azure/msal-node/dist/cache/serializer/SerializerTypes.d.ts","./node_modules/@azure/msal-node/dist/cache/NodeStorage.d.ts","./node_modules/@azure/msal-node/dist/cache/ITokenCache.d.ts","./node_modules/@azure/msal-node/dist/cache/TokenCache.d.ts","./node_modules/@azure/msal-node/dist/client/IPublicClientApplication.d.ts","./node_modules/@azure/msal-node/dist/request/ClientCredentialRequest.d.ts","./node_modules/@azure/msal-node/dist/request/OnBehalfOfRequest.d.ts","./node_modules/@azure/msal-node/dist/client/IConfidentialClientApplication.d.ts","./node_modules/@azure/msal-node/dist/cache/distributed/ICacheClient.d.ts","./node_modules/@azure/msal-node/dist/cache/distributed/IPartitionManager.d.ts","./node_modules/@azure/msal-node/dist/config/Configuration.d.ts","./node_modules/@azure/msal-node/dist/crypto/CryptoProvider.d.ts","./node_modules/@azure/msal-node/dist/client/ClientAssertion.d.ts","./node_modules/@azure/msal-node/dist/client/ClientApplication.d.ts","./node_modules/@azure/msal-node/dist/client/PublicClientApplication.d.ts","./node_modules/@azure/msal-node/dist/client/ConfidentialClientApplication.d.ts","./node_modules/@azure/msal-node/dist/cache/distributed/DistributedCachePlugin.d.ts","./node_modules/@azure/msal-node/dist/packageMetadata.d.ts","./node_modules/@azure/msal-node/dist/index.d.ts","./node_modules/@azure/abort-controller/shims-public.d.ts","./node_modules/@azure/abort-controller/types/src/AbortSignal.d.ts","./node_modules/@azure/abort-controller/types/src/AbortController.d.ts","./node_modules/@azure/abort-controller/types/src/index.d.ts","./node_modules/@azure/core-auth/types/latest/core-auth.d.ts","./node_modules/@azure/logger/types/logger.d.ts","./node_modules/@types/node/assert.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/dns.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/index.d.ts","./node_modules/@azure/core-tracing/types/core-tracing.d.ts","./node_modules/@azure/core-rest-pipeline/types/latest/core-rest-pipeline.d.ts","./node_modules/@azure/core-rest-pipeline/core-rest-pipeline.shims.d.ts","./node_modules/@azure/core-client/types/latest/core-client.d.ts","./node_modules/@azure/identity/types/identity.d.ts","./node_modules/axios/index.d.ts","./source/cloudSettings.ts","./source/tokenProvider.ts","./source/errors.ts","./source/security.ts","./source/models.ts","./source/response.ts","./source/clientRequestProperties.ts","./package.json","./source/client.ts","./test/data/response/v2.json","./test/data/response/v2error.json","./test/data/response/v1.json","./test/data/response/v1_2.json","./test/clientTest.ts","./test/connectionBuilderTest.ts","./test/data/response/v2.ts","./test/modelsTest.ts","./test/responseTest.ts","./index.ts","./test/data/testUtils.ts","./test/securityTest.ts","./test/tokenProviderTest.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/mocha/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts"],"fileInfos":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"dbb73d4d99be496175cb432c74c2615f78c76f4272f1d83cba11ee0ed6dbddf0","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"4051f6311deb0ce6052329eeb1cd4b1b104378fe52f882f483130bea75f92197","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","744be9a0ebdad89b5e8b3281be2dd81323d82317b5fecb1e107e90ce1d70a990","9e92d69857df6c0669e93269acf5cceb0ffb3510f0cfd81351f7dc3d2b67cf9a","f4d58d10033a080db12fa73ff3fff440ebf0392f80d7aa063fe7711d26b73d9d","862843747fa837649bd721feacd2d936e2221a85e35790cc67e2cffbca0dd1a8","724065c2f83560a069b8eade809bb29575df50bd7a32760b1ec533dc2deb5a0c","93b5b81c99f52ba9d0cc58e006c265f14c22b8e4fd8507b6551cf15e8e34e79f","d21096c2e204017bbf8e61de3f3419baa6b4f9e4f2676cae003abc409f1fb34a","5629e94b389ad5eb4b16556a0555d52a4166ef368a03ab3d4c1abbf44d23d842","86f9ddbd56e148c482010861282a4303c314bfac077de5b1eebe69b46373f7f8","5ef97ac040d2c2288a166dbbde55242940f6c7dd7847c8280132c25b6b3f99f1","69547accb36efb4f760cacaebc4845864da536bdcce2405ff6a00113f2b1a90a","be40b0f46cf4ecfa11848afc69db9ae7a3f705205079e1cfedd1f4cb6480db50","80ab1dcf773696ec49adb521f03d1b3d0c6cfe04cc86b2ab7b77e55190d5be26","9a1effdd0b12461ce95b95e58c77930b37e299b36cf8b0e307d62c4336faa11f","fb0bd3555b8af1497b0e0acd42c467ce0a40e9a9ed743c0f7722d6fab027c4d0","ed7617168896ae57a108a5757a92c30658c93bd15b4c44a556260962ca159d2f","43140e0fcffc94424c4b9c4c7173e490cfb83df68d2e8ef9a6f34a16efa4e1ac","be85fb1199efb6c24dbf3aa5b985f21d649723fce53b9a6e8cab64bb72bcdc3c","7edc1c45b3d6089c75e1b70c3b4935d369ec8c6cd85fdff85d23fcac5c41f545","a922f4d20e9479133627c6a62f6df2c0135136b96c85f8fa936801953cfcd798","5a61f2b04da4fcfc386e8131da6b5a97552a3634e04d8b0ad67578ab92f36aae","1e582ffea4ea269732c37e1da2301fbf3c5e8d5bbed8032ca3a55b280f290782","4ede63c7a565c849b103331d7f1b43bd05cd4114ddda2f6f2e0b5c5bbbaa3428","9de90271f0196284ee611470f659520d6a320ddbf36db45b1d4add237c5a38ea","e4b3abb570762d826201a6aed31b37e47e0a9cf710411da86017215983b18578","0a99880312b2f8ae7b2fc528e8c62deb0bc477b51ef02f496c14d7fc747b00fc","50a8046bfd3ed76d22c201f17246d0a075d8323c05dda848b595871fdb984911","3e6e41efebb93007dcd11d0366b5d543feca02cbdcefb8368f7069df3a03f476","1cf65f4aca8aea00fc829b47f95b38f137e998bf1a34073cee12b1acabd42d28","3bb3b742bcb47663df2d52c7bfdd7a16a829a7fc7e3442c58c4d7d85ab9f1115","53ac640117ce7f1a3708c9435df605d53fef29dcb282179813075757adb2e4ab","e1770ba658557bf50ff5731c7224aa556875b127f376fd1015e6e87602b39395","ebec411fdb040958c09854cc32203207f087e372b4ab664d3e9ba80bdad942c6","c40b9f91ffe4b3f33196a9b42fc48473e9501572c38aee624ef2b8c6dba95431","076d64a913524038222cabf00c1c3a543ffaf13c57d15bd0c680a55d46c95be6","c304a4f4aff1dfef9f11f0f9e4fae014e1f8cb9065ade5c7e4662b0ca9e7b16f","e56c9b3b251e612c1a53d663077d51dd1925bfb472897b17d30a4ce7491b46b8","0846379270e11ab2a35b53359ce061232e753f44e2b17143645a8120338e7ca3","dd87e240c0115e6e75635fecac4d76ca829a73c4ab5bb74bf18380b394830b39","dd93626fbc255c1439093574aed0806f3aec4baf9ce99c9867ef7951b616d89c","38c468fd15ab0b0d979625adfa3562aa3113277823f54bdc4072cf43691faf59","81675552f0e4768ffe35bdf49e222e6cfd6483c333871af469d584966fbf7cd5","912ef5fec96a33cb505be8835e3fd9e9541bee0ce1ff11a26353d49a0af1e51b","48e20455a4fae530630fbfc6f24aac9bb22b26a469c31bff45d18d69ffe8988c","57b427a3ce5058a9d543812724ed2ef68158309b14b61ba938053012f072825e","6d51ea871a772853324ad35a1ccab7f31ee4bec539762f67e6f269a115709160","fef0166651997225cf8f8f7c2f9c23652fd493a8c5fa3accc482c58d36834228","03c16165677b42409f4206d17f4749b3cda77a5c3b5f3582511e335638eaa826","8b810039a54e241bb61e095af79ed191b8d88646067adc9e4d61676b0fd6e900","d212bd05001e9b413bcc4c7b06a259900671d6eeea398e636889d9b7cd80899e","d01075c0d1fbca3c8571354d42c6741cc3b29f724fc3627766cf6339d8595a1d","d812eb6471db6fb226e66066c06851aff90a3ca28f4a003ffc3b626f1f6ca930","b196d5a165f762ea95ac67eb78b0d846f8f5cfacebdae7c8d4251119489cd200","e80c1758c48339b3b9f075fce26ec0b9b21423a73bccd815a55c79dcd6c3dd56","fa59d931313c10f1005484e632e297c869fb797975b0d6c8808e4c899ad6fb78","9d532b81d7946cc4d3b452239e6bac9f8b417915f452739aef31fab00fd6b473","2aa5e973c9c1f81c6d018db6a9220051fe6e42db57a77b861b647518e4cbb473","fb435046958315eef70baecf7409bed31582b6e4307518d788a6518738bb3825","ffe332b4a614ed9205a579d3bd029b8dbaceb3fad95d346d226752100751b1b0","f2118ca37e2d1ecada89b4f3ba2a5dfece4da7fcab32e6a83781081a5f7a0e8b","54c758feb6a82db2497b2f294e0c8aa684efaecb32c6bc8d2f9f0a27a7c4f61d","712cb4cc55e817252e2dd9c7ab072bed3936baf3e3b18e8ecac8be27f9362f71","10737db84413dc4ecc0b8d582cc21b617520ca210d7997845081d2188ee32e89","65e5d299b2cd8b8225855907a8496db5450d7f515b60ca81c2b7b2300102f416","b8efd28d4222b4cdcc7700aefee15314424b7e2d89880175a2274cd639fb8347","189901d3585a565210966cdfcd7aebccc9935c23f88dafb187e7417881e8dab9","e2727354078808c1ab94c5ea8593ebe0c1496ce206c997ad1aa102d7c6c4b190","ef32abb40ee505170d8f3dec856d7e93dece97a177a0d95aba1f9c2690f4e05a","549c3464d306378a63019cd52fd29cf59291790ae89ab267c03234ca95b6715b","c7bb3d343635262f28289a380344885cc2d1178c4f2dc11e6e52eb6ec9fabff3","681e82f20c21ead5098e9c1d04dd071f89b02f08fa9df14f86ac81a3236a2923","4359909397e70d982dcb3bd2a3992ca3d36d20debd5f183053769f3b4837a4da","bab8491749a201f36a5a0e594fc2a66dd6cb511e28e8b3890f5bb5e6624b7a0e","36592459ea33688b09cc82689b506ea58ab6f9785d4d9b85dd368325801faeb5","00595ab91d01d295a2a1fa5ca7ac8a976846d59fe7ca901a50c1605a48f30db1","6803646e4548e924737d029973832bd8f9d183da2b5da5c0bda063935915e054","9585005cf0ada58ee1024cec39d99fc9993f3e0a54011cfc2eebf7cf9ca875a6","46127816b5e10034434c8ebcd81092d7306088a62647369cde06096172279451","4d9586c77b05b0ec2714878468b1ddcaca99827b5ebfc1241b34e933858e2b4c","b48d7d768a9220bd89df4efb07a9bdcd55914492efed571ab0c9acc3f32ccd22","13ba7faef69097b03cec268df645610541accddf62443877caab5fe185d5b9e0","bab25e53eaebce489121489a9d4066b6fd063456ae5398aa0caeb0cf8aae213c","9e92d69857df6c0669e93269acf5cceb0ffb3510f0cfd81351f7dc3d2b67cf9a","78a5ab02c2f8ee14ff2e04f89f92bb5276f170c87d1077d0fa6637c9db1a1976","862843747fa837649bd721feacd2d936e2221a85e35790cc67e2cffbca0dd1a8","724065c2f83560a069b8eade809bb29575df50bd7a32760b1ec533dc2deb5a0c","e704d40226be0b82b8b0641a6477bfbdeddd4abce15278309e80941b9f47775a","5629e94b389ad5eb4b16556a0555d52a4166ef368a03ab3d4c1abbf44d23d842","a3d0f5fe0aa9848eadb5a6f2acb2ad8f18e1dd95e1c920b27b5cf0d782f1e0b2","5ef97ac040d2c2288a166dbbde55242940f6c7dd7847c8280132c25b6b3f99f1","a9d717361c0e162fc3f329716339d54e711591c8131929ba128bd3c137ea5a55","277510d9cd8ec22f0eabcf009c5f6482b824400954a85a0f096fe86cef2e85c0","80ab1dcf773696ec49adb521f03d1b3d0c6cfe04cc86b2ab7b77e55190d5be26","9a1effdd0b12461ce95b95e58c77930b37e299b36cf8b0e307d62c4336faa11f","fb0bd3555b8af1497b0e0acd42c467ce0a40e9a9ed743c0f7722d6fab027c4d0","ed7617168896ae57a108a5757a92c30658c93bd15b4c44a556260962ca159d2f","43140e0fcffc94424c4b9c4c7173e490cfb83df68d2e8ef9a6f34a16efa4e1ac","be85fb1199efb6c24dbf3aa5b985f21d649723fce53b9a6e8cab64bb72bcdc3c","7edc1c45b3d6089c75e1b70c3b4935d369ec8c6cd85fdff85d23fcac5c41f545","15e81f1b2438a9be75f23ff8e6e4771fa0371901c6f4c28af426d3f54d244fa2","f33c65b328eac32717deb6cbae80351567eb02096ce78478aa376920d83dc9cb","1e582ffea4ea269732c37e1da2301fbf3c5e8d5bbed8032ca3a55b280f290782","4ede63c7a565c849b103331d7f1b43bd05cd4114ddda2f6f2e0b5c5bbbaa3428","f9a365c4dff4db43ddff8c9e26e5c5bb597820c994473ad2ff93184b6a60227f","e4b3abb570762d826201a6aed31b37e47e0a9cf710411da86017215983b18578","565f96717f4c7089c68fffdae09d13bff91cf4a09f7cb40cb78b032c8bd67df2","fca2f5fafcb06eaa58021730d62169782770fff1e14f48619f33c5b760917436","3e6e41efebb93007dcd11d0366b5d543feca02cbdcefb8368f7069df3a03f476","1cf65f4aca8aea00fc829b47f95b38f137e998bf1a34073cee12b1acabd42d28","4870f8772f06305b16ce2b9945e86645cb1e4857cdfe892f98b71708b62212a3","cd762e6881fce6bc89ceb25e449f79d76fe547688eb15d5bf4fadaded7388f9e","f70c1ce36f76f22e94b5ab67799041ed767b7655ab137a372d8a58ddc60e32b1","c40b9f91ffe4b3f33196a9b42fc48473e9501572c38aee624ef2b8c6dba95431","6a239b31e2c8b5dc451f9e72b16186df8aebc2e40c56d6a5305cd93c8c955feb","871e93aa233565da44f659f56b9236b38ef99ab65f3f310cc65e7fb36504006b","e56c9b3b251e612c1a53d663077d51dd1925bfb472897b17d30a4ce7491b46b8","0846379270e11ab2a35b53359ce061232e753f44e2b17143645a8120338e7ca3","dd87e240c0115e6e75635fecac4d76ca829a73c4ab5bb74bf18380b394830b39","dd93626fbc255c1439093574aed0806f3aec4baf9ce99c9867ef7951b616d89c","38c468fd15ab0b0d979625adfa3562aa3113277823f54bdc4072cf43691faf59","02c40f26e0fdee38a547d877c4440d4afd2393d544ed1ae64e430f659da43bab","ad5ce7a0b732a83ec2dfee2e35da8ae2ca89a79f17703bfa1e863b7bd3f09f76","48e20455a4fae530630fbfc6f24aac9bb22b26a469c31bff45d18d69ffe8988c","57b427a3ce5058a9d543812724ed2ef68158309b14b61ba938053012f072825e","6d51ea871a772853324ad35a1ccab7f31ee4bec539762f67e6f269a115709160","fef0166651997225cf8f8f7c2f9c23652fd493a8c5fa3accc482c58d36834228","a48ca5761517ff6f5b629c427ed7d9b1ecab9eddc7e731ec51bc1e36d99a1dd4","5adf804c2f305faa07ed75a45bacf5c34302bdb16398ab8c1a72440d460934f2","42d26f09b179ca5d8217671e36e68975b87a3799051886f7d12a7131ddea3e1d","d01075c0d1fbca3c8571354d42c6741cc3b29f724fc3627766cf6339d8595a1d","237108a3bfaff27a1a4659db8683ab550b0da948099521ecf399ec899c3c8312","b196d5a165f762ea95ac67eb78b0d846f8f5cfacebdae7c8d4251119489cd200","e80c1758c48339b3b9f075fce26ec0b9b21423a73bccd815a55c79dcd6c3dd56","fa59d931313c10f1005484e632e297c869fb797975b0d6c8808e4c899ad6fb78","9d532b81d7946cc4d3b452239e6bac9f8b417915f452739aef31fab00fd6b473","2aa5e973c9c1f81c6d018db6a9220051fe6e42db57a77b861b647518e4cbb473","fb435046958315eef70baecf7409bed31582b6e4307518d788a6518738bb3825","ffe332b4a614ed9205a579d3bd029b8dbaceb3fad95d346d226752100751b1b0","f2118ca37e2d1ecada89b4f3ba2a5dfece4da7fcab32e6a83781081a5f7a0e8b","54c758feb6a82db2497b2f294e0c8aa684efaecb32c6bc8d2f9f0a27a7c4f61d","712cb4cc55e817252e2dd9c7ab072bed3936baf3e3b18e8ecac8be27f9362f71","10737db84413dc4ecc0b8d582cc21b617520ca210d7997845081d2188ee32e89","65e5d299b2cd8b8225855907a8496db5450d7f515b60ca81c2b7b2300102f416","b8efd28d4222b4cdcc7700aefee15314424b7e2d89880175a2274cd639fb8347","fef78aa51334122b36c3eb4c87c7244fe97b312b87273ec970df2288621dbd9f","7139211a77ff4f5684fe13762c49a681e27dbe407bebf89ec54ced92a539927e","ef32abb40ee505170d8f3dec856d7e93dece97a177a0d95aba1f9c2690f4e05a","f52143c8e03046a1f5827c12684e5e3051ca81d8057173980e56e1984ee46e8a","612c84d13df19cc411b683a84df4a6401587afe703facbba3fc64ca933538fba","bf197ab5c2ec3d5b92723dd60ace5e2ea7fe16e1ae161aef65700a9d0e79c8c1","e1770ba658557bf50ff5731c7224aa556875b127f376fd1015e6e87602b39395","c22e086a091cfc8ccea49c0a23d7f59a70e61eff979662a0094e23aca97a9dcb","fad864df240dad88029023c09d765349761dc87fd9ab01dc236c86c159888c0b","c7bb3d343635262f28289a380344885cc2d1178c4f2dc11e6e52eb6ec9fabff3","f0f50b2b5930cfe79d5e116eb58f9a09b3664d677cde6fb4c244b5ef19a5ab07","07885dee25c5ef1a3aa8706bf5dee042d5fd8ff2aa084ad576364996558e6aac","36592459ea33688b09cc82689b506ea58ab6f9785d4d9b85dd368325801faeb5","00595ab91d01d295a2a1fa5ca7ac8a976846d59fe7ca901a50c1605a48f30db1","6803646e4548e924737d029973832bd8f9d183da2b5da5c0bda063935915e054","9585005cf0ada58ee1024cec39d99fc9993f3e0a54011cfc2eebf7cf9ca875a6","97bae58cb27765a737ae4c3c367c5a2c914823b2874b6c21f4dd87db55d35586","c22e784c6b2d47979cdf84bfe1b18f80532bc94265f62123870b755150067ac2","21ec7a198f50d6e8e44674c361c1f18306446d7b1a967138f4a45a60af3fce59","1628eb7547a45da3c76419eb8be9458048ffad6ca07e23ddd55baa49752b5221","d02adff6abb3c9a04f321a96986bcca173429655d260a1f9d8b6c8dc19bf8a72","fae76bd32ddd69b944dde57086e70ff063e9314f13de18c4a66e7206437e9ccf","8030e0c0e9eeeb2432f8b7648ddb57bfa88f748ca3684b9fd2de2069f8c21a6e","f31701d0e9f2a472f00e193b9907f164e04f2d2075e8a33dd3079587ac357a6f","890dd05f03323a289816b3b414d2430fcf193c0af61cb57366bfe15c9c1594d2","c03f8c57ceefeb868015ecdcf444079965e39e95192c9deb1586c12a6b45e307","31a1d157f01acfb6b0f526c163c517bc31c959533fa87630618bf297ea6f5b7a","916c68006baf294267e139f0b65a560e7a23787a72bd018bf41f40997cee3dab","28854a159032d877e76ab1d48a08197aaf4b6c1f54554f02b112a2a1cd34703a","518006e394b5616fb25d3ff60ba671f712dfef0375d734f08899538b60a770f8","5c38b0016bad71d2c3a16ac4897579a0b524499ab180c3c4dbbab57a21ccb5de","c1bd7c267c8dbea9b2323ef7024d212ab22461d637aedc138b52853144dc23f2","0d85ae43e3231d6dddfafb6ff13ce3f677089b2d67df0321659eaee0fc627f72","7cc8919229593d5ee7b7de64c9e6274d20f25a6f0eae7ac5bcfcc8902704f34b","7b73c321c5b6506aa8e4d040026cc1cee35d2edc890eb9f5e3a8bbbd57daa6c6","dc0899aa9b36bcd5baef6024d3941f5cd0c18934fc7271d5621564c4a28306e4","238c761711d6d5a4abac4a896ca25748d0add2b7bf872ea7fe27cea5bbf53e23","db287b97bc4d8170f713959b87a66928359972f2c68df46de6cca322d86df97b","65384e10395411423b65756d19688f3b6fe0bdeb85b09d66cf06ba6598165afc","9ce7c73138ddd5cd45f19697c9031008fa14295b2d1ee8982bdc94f38ccad584","74b8fc64dedfa8a14986115fd27d46d9120a323cfb5a5b3d6b891c625110bb55","9fbe89b2072670f3b082592991ce9f73985b9fbee71c988197bf246df1643c4f","7cf791793f589e29dca312ebc2a4f7b0aa6ed98b17585aec29d73853b3b2ec3a","218b950758ec4fe1718a09c74d17a87966265e0ed47ffdec3ca145dc9da3f664","fb67ce4e4c856d354bfdba3762bca204375047ef2f618ca1ba94123b49fdce60","648492d2f7b5c6e543874d6217dc2a566d8e121499bfdb5087c614d94a346c09","3b1aaaded64d108e30d45bca20f5add7a22cd675ef249d9d99fd3d8e6c9bb358","26db0c6ba2b13869f4f07814508274ba1a0230f152afbe68c4a607740d24a5cb","4b3144622bd57f34c7794d433b06d68a707df4757639af15a43b4b25cb0cfd56",{"version":"d21099f23d447a1f8e63b3dc47b83ac67561d93798b4457d8531d509bb0f2c00","affectsGlobalScope":true},"88c707774240f65efb716905c6b7a8896e42fa40c67c017fc2618e95f5f808d8","12056f7e1b2a280094beb21f07bd37a4f72b25c0ecbaa248e1ff59a81e6e4d48","7323fcebcda9163216615a63c784946a24926380a55f013d8706541dcc1317a0","6eed41c98a95c99d239a580542dccc9ba9e1383694d09524d2fea56c20b6daa2","1ff81fdd29468ce57e615201511e082f805ebca9348649b3a050fe8a5fde1067","4c2c4f53e8eedd970f8afa369d7371544fb6231bf95e659f8602e09abe74d5a5",{"version":"e71aa3dcef67c4e22d57a8ff085806b986818c27d515a6c548547dbb06153c01","affectsGlobalScope":true},"64e2803203b14d7f104f570f2152fde13abb6edc17b2ddb33d81ad86cf43d494","3143a5add0467b83150961ecd33773b561a1207aec727002aa1d70333068eb1b","9b2a8f604e7c0482a9061755f00b287cc99bd8718dc82d8207dd74c599b6dc43","d0fc76a91c828fbe3f0be5d683273634b7b101068333ceed975a8a9ac464137b",{"version":"1a048ff164b8d9609f5de3139d4e37f6e8a82af82087ac414b9208f52ef8aac7","affectsGlobalScope":true},"3111079f3cb5f2b9c812ca3f46161562bce5bfb355e915f46ed46c41714dc1c3","64576aba4ff801004122056ccd049f0597aa471dcfd7670a6a0b877ee8dd97c0","b32b6b16cb0bda68199582ad6f22242d07ee75fac9b1f28a98cd838afc5eea45","4441ee4119824bfaebc49308559edd7545978f9cb41a40f115074e1031dde75f",{"version":"60693a88462d0e97900123b5bf7c73e146ce0cc94da46a61fe6775b430d2ff05","affectsGlobalScope":true},{"version":"588c69eda58b9202676ec7ca11a72c3762819b46a0ed72462c769846153c447c","affectsGlobalScope":true},"cc829932ffaf5c49092f878bec18af1fa5d8591b45a45e2b7f757f793cb3b4ed","47db10fdc4e76c4f4598cf7c91ba6bfde6cf6d8082c51860fe751643bf359739","53d2c24a3cbc00a88ebaf8ab8e1b6e206bc3a6647d544f877241684ea3d484e3","3be5ff21956db30c674bf2a98eb348e4ce7b4635cd9673413d86fbce761b77d8","0ce99c641ea20b0c0c09d093fc28f18f5ab31dc80033707a1ac3154399de2559","f0c33a0b325d3499cc9aded7d32886f998c9a27b465097c6cc136944d0aafdaa","44e42ed6ec9c4451ebe89524e80ac8564e9dd0988c56e6c58f393c810730595d","d4a0c39ece1e7c99d701e9c02a7dde8e3b75e03405f78d58d48dfea797ddbbac","1606ea615c0a5ea9f5c1376a33e34c0e1112e8dee31a5b3b8a74ce781893aa6f","9fef9de633d01cb7f01f68195626a890ededd25cf96a1e785617d08c8668230d","4455c78d226d061b1203c7614c6c6eb5f4f9db5f00d44ff47d0112de8766fbc4",{"version":"ec369bb9d97c4dc09dd2a4093b7ca3ba69ad284831fccac8a1977785e9e38ce5","affectsGlobalScope":true},"4465a636f5f6e9665a90e30691862c9e0a3ac2edc0e66296704f10865e924f2a","9af781f03d44f5635ed7844be0ce370d9d595d4b4ec67cad88f0fac03255257e","f9fd4c3ef6de27fa0e256f4e75b61711c4be05a3399f7714621d3edc832e36b0","e49290b7a927995c0d7e6b2b9c8296284b68a9036d9966531de65185269258d7","c3689f70ce7563c2299f2dcb3c72efdf6f87ae510e7456fa6223c767d0ca99fc","874ca809b79276460011480a2829f4c8d4db29416dd411f71efbf8f497f0ac09","82e1723b20fa0b15a7da0d1a03fec88348f82f640f7a2f308d6c0fac780cfc7c","605c24042a348b033b30121cff64380eb5d6d82853c5608f1f94ef72385cf5c9","23a28f834a078986bbf58f4e3705956983ff81c3c2493f3db3e5f0e8a9507779","4febdf7f3ec92706c58e0b4e8159cd6de718284ef384260b07c9641c13fc70ce",{"version":"eabefc2999c1489cf870e0c85af908900462fa245822d9a4616780a1a129945d","affectsGlobalScope":true},"7335933d9f30dcfd2c4b6080a8b78e81912a7fcefb1dafccb67ca4cb4b3ac23d","a6bfe9de9adef749010c118104b071d14943802ff0614732b47ce4f1c3e383cd","4c3d0e10396646db4a1e917fb852077ee77ae62e512913bef9cccc2bb0f8bd0e","3b220849d58140dcc6718f5b52dcd29fdb79c45bc28f561cbd29eb1cac6cce13","0ee22fce41f7417a24c808d266e91b850629113c104713a35854393d55994beb","22d1b1d965baba05766613e2e6c753bb005d4386c448cafd72c309ba689e8c24",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"79d679a1d56574cc5cef92be1f0e5e8fb4af62fb55933b236670a0e0a23c83f6","b619cf04251e42a34a6ad0adccee96ae79ff5dc34a16986e646c69b721c4b8ef","b3a4fd26163d87e6ca2dc021e64ec0ba8d361d342c1f84ef303986e645f2b48e",{"version":"a294f8c5d1bcbdff29870aff277603b36c320616a7745f112e195f7851cdb53d","affectsGlobalScope":true},"89afeb6f87af13e9a900b356c79439e0b0a8cd34841d81423878d2b49c2616d2","f639a4af5ce12557562ba445a958f562efdc942ac6709d0951b6f227a78bddce","644c59289eb29590d65062c5b64dda9ef2797ce120071265a9099436f0d41a16","594fe201c6ae717068058d3718a6875abc983390a0248caccb6d7be2ffdf5fdf","a525c77c2dc8ac80f67255086dc739bb8d1319a3ed536766921b8d6c8fc1f8ce","0cd6e7c59b6180e4caca441237634433e01b8854621eeadfcccedcfc51122638","ad9f957796343373c42cffb12220e220e14a0dfb32b79001109688a9f9f374e7","8d8a2cb236c43d85a938a90b7ba6279d24e445569a92cb8c6b110be5bf60eefa","88373eab4bdf95e0577428804cffd193ea5c7c8cdf4f595538e1a8784e8d6e12","4aac6024ba8ad87f2293c2912ed11e185d001beb2f0f2fd2d77f400e1216a2fc","7962a976d1d5a86194cf5b1144fd1f9588b0870d21cecdf7acbe58638c04e899","95f08ad08ff9782f444f3f9b9f16d4c68c32385f13b7133efd1121bc25b23aa6","92d18fd610fd1d5a058c89af5ec4897a6ad43909d89fe6f0fe362c81f41cde7d","47ac8a5e394619d8210ed6cd5a9ad61d6c5086280e531300d42ad4ded7103513","26d2483ed86c8e5ea16ef347780d7e8f9abefdc59cdaed04de13dcb124817c5f","53455a4335368a05579c72875803238849a2231d3dc14049d5a3f281bf553c40","d744cc6cd95f2e9f950ff992cc37d7ac3669d90b5717b9b78eec332eec2ef97a","75fac75a62e54251017673149114a5a1e057864780b8b2fe0623274e72755712","4bb6944ec5768263f4453ffcdfb9226ba0959dd4525887ea3fe3e1c9f31fc029","5db56366f11039866b7f0c07d3b91f8e16d7586fa494a86fc61670bb4989bd77","3436f6383310ff3747495769eb8ba051c70758505b6021fef4e9322bd50e1fab","0035a42ee2adc512e10860426a796400047973bb1f449aed6651fdda06ced120","d7ce0afc6959f7e09a5ff733d21eb400f466adb49c0b3026f6b5dc97a83ad44f","f690cdf9ac0245dacb2ac21c779a88a7660752b2b4ba06f1ce3aa7706dad3127","9c76c7b22c5727c4decc051fa28877854c38431671424e368d09d2ed8c2316b8","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"5f186a758a616c107c70e8918db4630d063bd782f22e6e0b17573b125765b40b","affectsGlobalScope":true},"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":true,"module":1,"noUnusedLocals":true,"noUnusedParameters":true,"sourceMap":true,"strict":true,"target":2},"fileIdsList":[[114,290,292],[229],[228],[229,230],[231],[231,232,278,280],[279],[231,232,233,277,278],[232,233,281],[45,61],[36,37,38,39,53,55,58,59,69],[55,58,60,69],[39,57],[56],[40],[40,41,42,45,46,47,48,49,50,51,52,54,55,64,65,66],[41,45],[36,45,50,60,61,62,63],[37,53],[42,46,47,48,64],[41],[41,42,46,47,48,49,50,51,52,54,64,65],[74],[73],[42,46,47,48,51,52,54,64],[76,79,81,82,83,84,85],[35,45,60,63,67,68,69,72,76,77,78],[76,79,83,93],[76,79,83,88],[76,79,83,95],[76,79,83,90,91],[76,79,83,91],[76,79,83,98],[45,60,63,67,69,72,73,75],[43,44],[70],[106],[104],[35,36,38,39,40,41,42,43,44,45,46,47,48,50,51,52,54,56,57,58,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,109,110,111],[76],[68],[35,67,69],[35,67,68,77],[43,78,80],[40,43,50,80],[43,56],[43,87],[50],[43],[43,50,80],[40,51,59,67,70,71],[38,102],[45],[108],[202],[202,209],[202,209,210,211],[202,217,218],[202,203,204,206,207,208,210,212,219,221],[220],[202,214,215,216,219,222],[202,203,204,206,207,208,212,214,215],[202,203,204,205,206,207,208,212],[202,205,213,219,222],[202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226],[125,141],[117,118,119,120,133,135,138,139,148,155],[135,138,140,148],[120,137],[136],[115],[121,122,123,125,126,127,128,129,130,131,132,134,135,144,145],[115,121,125],[117,125,130,140,141,142,143],[118,133],[122,126,127,128,144],[121],[121,122,126,127,128,129,130,131,132,134,144,145],[153],[152],[115,122,126,127,128,131,132,134,144],[155,158,160,161,162,163,164],[116,125,140,143,146,147,148,151,155,156,157],[155,158,162,172],[155,158,162,167],[155,158,162,174],[155,158,162,169,170],[155,158,162,170],[155,158,162,177],[125,138,140,143,146,148,151,152,154],[123,124],[125],[149],[189],[115,116,117,119,120,121,122,123,124,125,126,127,128,130,131,132,134,136,137,138,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,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,192,193,194,195,196,197,198,199,200,201],[155],[147],[116,146,148],[116,123,146,147,156],[115,155],[123,157,159],[115,123,130,159],[123,136],[123,166],[130,159],[123],[123,130,159],[130],[156],[195,196],[143,155,195,196,197],[196,197,198],[115,131,139,146,149,150],[119,181],[191],[234],[236],[237,242],[238,246,247,254,263],[238,239,246,254],[240,270],[241,242,247,255],[242,263],[243,244,246,254],[244],[245,246],[246],[246,247,248,263,269],[247,248],[249,254,263,269],[246,247,249,250,254,263,266,269],[249,251,263,266,269],[234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276],[246,252],[253,269],[244,246,254,263],[255],[256],[236,257],[258,268],[259],[260],[246,261],[261,262,270,272],[246,263],[264],[265],[254,263,266],[267],[254,268],[260,269],[270],[263,271],[272],[273],[246,248,263,269,272,274],[263,275],[33,34,114,249,251,283,287,289,290,291],[283],[112,113],[33],[288],[114,285,286],[112,227,232,282,284],[33,34,114,234,263,289,290,292,293,294,295,296],[34,112,114,234],[33,234,288,299],[234,289,293],[227,234,282,284,286,287,302,303],[234,284,285]],"referencedMap":[[302,1],[230,2],[229,3],[231,4],[232,5],[281,6],[280,7],[279,8],[282,9],[62,10],[60,11],[100,12],[58,13],[57,14],[59,15],[67,16],[46,17],[64,18],[54,19],[49,20],[41,15],[42,21],[47,21],[55,22],[75,23],[74,24],[65,25],[86,26],[79,27],[94,28],[89,29],[96,30],[92,31],[97,32],[99,33],[76,34],[45,35],[106,36],[107,37],[105,38],[104,36],[112,39],[63,40],[69,41],[68,42],[101,43],[43,15],[82,44],[81,45],[93,46],[88,47],[84,48],[95,49],[90,44],[91,50],[98,49],[83,48],[72,51],[103,52],[110,53],[109,54],[211,55],[210,56],[212,57],[225,58],[218,55],[209,55],[222,59],[221,60],[224,61],[216,62],[213,63],[223,64],[219,55],[220,55],[227,65],[203,55],[204,55],[214,55],[205,55],[215,55],[206,55],[207,55],[208,55],[142,66],[140,67],[179,68],[138,69],[137,70],[139,71],[146,72],[126,73],[144,74],[134,75],[129,76],[121,71],[122,77],[127,77],[135,78],[154,79],[153,80],[145,81],[165,82],[158,83],[173,84],[168,85],[175,86],[171,87],[176,88],[178,89],[155,90],[125,91],[200,92],[189,93],[190,94],[187,93],[188,93],[202,95],[143,96],[148,97],[147,98],[116,71],[180,99],[123,100],[161,101],[160,102],[172,103],[167,104],[163,105],[174,106],[169,101],[170,107],[177,106],[162,108],[184,109],[156,71],[197,110],[198,111],[199,112],[151,113],[182,114],[193,92],[192,115],[234,116],[236,117],[237,118],[238,119],[239,120],[240,121],[241,122],[242,123],[243,124],[244,125],[245,126],[246,127],[247,128],[248,129],[249,130],[250,131],[251,132],[277,133],[252,134],[253,135],[254,136],[255,137],[256,138],[257,139],[258,140],[259,141],[260,142],[261,143],[262,144],[263,145],[264,146],[265,147],[266,148],[267,149],[268,150],[269,151],[270,152],[271,153],[272,154],[273,155],[274,156],[275,157],[292,158],[284,159],[114,160],[288,161],[289,162],[287,163],[285,164],[297,165],[298,166],[300,167],[301,168],[304,169],[305,170]],"exportedModulesMap":[[302,1],[230,2],[229,3],[231,4],[232,5],[281,6],[280,7],[279,8],[282,9],[62,10],[60,11],[100,12],[58,13],[57,14],[59,15],[67,16],[46,17],[64,18],[54,19],[49,20],[41,15],[42,21],[47,21],[55,22],[75,23],[74,24],[65,25],[86,26],[79,27],[94,28],[89,29],[96,30],[92,31],[97,32],[99,33],[76,34],[45,35],[106,36],[107,37],[105,38],[104,36],[112,39],[63,40],[69,41],[68,42],[101,43],[43,15],[82,44],[81,45],[93,46],[88,47],[84,48],[95,49],[90,44],[91,50],[98,49],[83,48],[72,51],[103,52],[110,53],[109,54],[211,55],[210,56],[212,57],[225,58],[218,55],[209,55],[222,59],[221,60],[224,61],[216,62],[213,63],[223,64],[219,55],[220,55],[227,65],[203,55],[204,55],[214,55],[205,55],[215,55],[206,55],[207,55],[208,55],[142,66],[140,67],[179,68],[138,69],[137,70],[139,71],[146,72],[126,73],[144,74],[134,75],[129,76],[121,71],[122,77],[127,77],[135,78],[154,79],[153,80],[145,81],[165,82],[158,83],[173,84],[168,85],[175,86],[171,87],[176,88],[178,89],[155,90],[125,91],[200,92],[189,93],[190,94],[187,93],[188,93],[202,95],[143,96],[148,97],[147,98],[116,71],[180,99],[123,100],[161,101],[160,102],[172,103],[167,104],[163,105],[174,106],[169,101],[170,107],[177,106],[162,108],[184,109],[156,71],[197,110],[198,111],[199,112],[151,113],[182,114],[193,92],[192,115],[234,116],[236,117],[237,118],[238,119],[239,120],[240,121],[241,122],[242,123],[243,124],[244,125],[245,126],[246,127],[247,128],[248,129],[249,130],[250,131],[251,132],[277,133],[252,134],[253,135],[254,136],[255,137],[256,138],[257,139],[258,140],[259,141],[260,142],[261,143],[262,144],[263,145],[264,146],[265,147],[266,148],[267,149],[268,150],[269,151],[270,152],[271,153],[272,154],[273,155],[274,156],[275,157],[292,158],[284,159],[114,160],[288,161],[289,162],[287,163],[285,164],[297,165],[298,166],[300,167],[301,168],[304,169],[305,170]],"semanticDiagnosticsPerFile":[306,307,308,309,310,311,7,8,12,11,3,13,14,15,16,17,18,19,20,4,5,24,21,22,23,25,26,27,6,28,29,30,31,2,1,32,10,9,302,228,230,229,231,232,281,280,279,278,282,233,50,62,78,108,61,60,100,58,36,56,57,53,37,39,59,67,46,64,48,54,49,41,42,47,51,52,55,75,73,74,65,86,79,94,89,96,92,97,99,76,45,44,70,106,107,105,104,112,63,69,68,35,101,43,82,81,93,88,84,95,90,91,98,66,83,85,87,102,77,72,71,38,103,40,80,110,109,111,211,210,212,225,217,218,209,222,221,224,216,213,223,219,220,227,226,203,204,214,205,215,206,207,208,130,142,157,191,141,140,179,138,117,136,137,133,118,120,139,146,126,144,128,134,129,121,122,127,131,132,135,154,152,153,145,165,158,173,168,175,171,176,178,155,125,183,200,124,149,189,190,187,188,202,143,148,147,116,180,201,186,123,161,160,172,167,163,174,169,170,177,185,162,164,166,184,181,156,197,196,198,195,199,151,150,119,182,115,159,193,192,194,234,236,237,238,239,240,241,242,243,244,245,246,247,248,235,276,249,250,251,277,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,34,283,33,291,292,290,284,114,286,288,289,287,285,113,297,298,295,296,293,299,294,303,300,301,304,305]},"version":"4.6.3"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es6.d.ts","../../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.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/moment/ts3.1-typings/moment.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@azure/msal-common/dist/network/RequestThumbprint.d.ts","../../node_modules/@azure/msal-common/dist/authority/AuthorityType.d.ts","../../node_modules/@azure/msal-common/dist/authority/OpenIdConfigResponse.d.ts","../../node_modules/@azure/msal-common/dist/url/IUri.d.ts","../../node_modules/@azure/msal-common/dist/authority/ProtocolMode.d.ts","../../node_modules/@azure/msal-common/dist/utils/Constants.d.ts","../../node_modules/@azure/msal-common/dist/cache/entities/CredentialEntity.d.ts","../../node_modules/@azure/msal-common/dist/cache/entities/IdTokenEntity.d.ts","../../node_modules/@azure/msal-common/dist/request/BaseAuthRequest.d.ts","../../node_modules/@azure/msal-common/dist/crypto/SignedHttpRequest.d.ts","../../node_modules/@azure/msal-common/dist/crypto/ICrypto.d.ts","../../node_modules/@azure/msal-common/dist/cache/entities/AccessTokenEntity.d.ts","../../node_modules/@azure/msal-common/dist/cache/entities/RefreshTokenEntity.d.ts","../../node_modules/@azure/msal-common/dist/cache/entities/AppMetadataEntity.d.ts","../../node_modules/@azure/msal-common/dist/cache/entities/CacheRecord.d.ts","../../node_modules/@azure/msal-common/dist/account/AccountInfo.d.ts","../../node_modules/@azure/msal-common/dist/cache/entities/ServerTelemetryEntity.d.ts","../../node_modules/@azure/msal-common/dist/cache/entities/ThrottlingEntity.d.ts","../../node_modules/@azure/msal-common/dist/authority/CloudDiscoveryMetadata.d.ts","../../node_modules/@azure/msal-common/dist/cache/entities/AuthorityMetadataEntity.d.ts","../../node_modules/@azure/msal-common/dist/cache/interface/ICacheManager.d.ts","../../node_modules/@azure/msal-common/dist/authority/AzureRegion.d.ts","../../node_modules/@azure/msal-common/dist/authority/AzureRegionConfiguration.d.ts","../../node_modules/@azure/msal-common/dist/authority/AuthorityOptions.d.ts","../../node_modules/@azure/msal-common/dist/authority/RegionDiscoveryMetadata.d.ts","../../node_modules/@azure/msal-common/dist/authority/Authority.d.ts","../../node_modules/@azure/msal-common/dist/account/TokenClaims.d.ts","../../node_modules/@azure/msal-common/dist/account/AuthToken.d.ts","../../node_modules/@azure/msal-common/dist/logger/Logger.d.ts","../../node_modules/@azure/msal-common/dist/cache/entities/AccountEntity.d.ts","../../node_modules/@azure/msal-common/dist/cache/utils/CacheTypes.d.ts","../../node_modules/@azure/msal-common/dist/request/ScopeSet.d.ts","../../node_modules/@azure/msal-common/dist/cache/CacheManager.d.ts","../../node_modules/@azure/msal-common/dist/network/NetworkManager.d.ts","../../node_modules/@azure/msal-common/dist/network/INetworkModule.d.ts","../../node_modules/@azure/msal-common/dist/error/AuthError.d.ts","../../node_modules/@azure/msal-common/dist/telemetry/server/ServerTelemetryRequest.d.ts","../../node_modules/@azure/msal-common/dist/telemetry/server/ServerTelemetryManager.d.ts","../../node_modules/@azure/msal-common/dist/cache/interface/ISerializableTokenCache.d.ts","../../node_modules/@azure/msal-common/dist/cache/persistence/TokenCacheContext.d.ts","../../node_modules/@azure/msal-common/dist/cache/interface/ICachePlugin.d.ts","../../node_modules/@azure/msal-common/dist/config/ClientConfiguration.d.ts","../../node_modules/@azure/msal-common/dist/response/ServerAuthorizationTokenResponse.d.ts","../../node_modules/@azure/msal-common/dist/account/CcsCredential.d.ts","../../node_modules/@azure/msal-common/dist/client/BaseClient.d.ts","../../node_modules/@azure/msal-common/dist/utils/MsalTypes.d.ts","../../node_modules/@azure/msal-common/dist/request/CommonAuthorizationUrlRequest.d.ts","../../node_modules/@azure/msal-common/dist/request/CommonAuthorizationCodeRequest.d.ts","../../node_modules/@azure/msal-common/dist/response/AuthenticationResult.d.ts","../../node_modules/@azure/msal-common/dist/request/CommonEndSessionRequest.d.ts","../../node_modules/@azure/msal-common/dist/response/AuthorizationCodePayload.d.ts","../../node_modules/@azure/msal-common/dist/client/AuthorizationCodeClient.d.ts","../../node_modules/@azure/msal-common/dist/response/DeviceCodeResponse.d.ts","../../node_modules/@azure/msal-common/dist/request/CommonDeviceCodeRequest.d.ts","../../node_modules/@azure/msal-common/dist/client/DeviceCodeClient.d.ts","../../node_modules/@azure/msal-common/dist/request/CommonRefreshTokenRequest.d.ts","../../node_modules/@azure/msal-common/dist/request/CommonSilentFlowRequest.d.ts","../../node_modules/@azure/msal-common/dist/client/RefreshTokenClient.d.ts","../../node_modules/@azure/msal-common/dist/request/CommonClientCredentialRequest.d.ts","../../node_modules/@azure/msal-common/dist/client/ClientCredentialClient.d.ts","../../node_modules/@azure/msal-common/dist/request/CommonOnBehalfOfRequest.d.ts","../../node_modules/@azure/msal-common/dist/client/OnBehalfOfClient.d.ts","../../node_modules/@azure/msal-common/dist/client/SilentFlowClient.d.ts","../../node_modules/@azure/msal-common/dist/request/CommonUsernamePasswordRequest.d.ts","../../node_modules/@azure/msal-common/dist/client/UsernamePasswordClient.d.ts","../../node_modules/@azure/msal-common/dist/authority/AuthorityFactory.d.ts","../../node_modules/@azure/msal-common/dist/network/ThrottlingUtils.d.ts","../../node_modules/@azure/msal-common/dist/response/ServerAuthorizationCodeResponse.d.ts","../../node_modules/@azure/msal-common/dist/url/UrlString.d.ts","../../node_modules/@azure/msal-common/dist/error/ServerError.d.ts","../../node_modules/@azure/msal-common/dist/error/InteractionRequiredAuthError.d.ts","../../node_modules/@azure/msal-common/dist/error/ClientAuthError.d.ts","../../node_modules/@azure/msal-common/dist/error/ClientConfigurationError.d.ts","../../node_modules/@azure/msal-common/dist/account/DecodedAuthToken.d.ts","../../node_modules/@azure/msal-common/dist/utils/StringUtils.d.ts","../../node_modules/@azure/msal-common/dist/utils/ProtocolUtils.d.ts","../../node_modules/@azure/msal-common/dist/utils/TimeUtils.d.ts","../../node_modules/@azure/msal-common/dist/index.d.ts","./source/typeUtilts.ts","./source/connectionBuilder.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/utils/Constants.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/network/RequestThumbprint.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/authority/AuthorityType.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/authority/OpenIdConfigResponse.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/url/IUri.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/authority/ProtocolMode.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/entities/CredentialEntity.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/entities/IdTokenEntity.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/BaseAuthRequest.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/crypto/SignedHttpRequest.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/crypto/ICrypto.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/entities/AccessTokenEntity.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/entities/RefreshTokenEntity.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/entities/AppMetadataEntity.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/entities/CacheRecord.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/account/AccountInfo.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/entities/ServerTelemetryEntity.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/entities/ThrottlingEntity.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/authority/CloudDiscoveryMetadata.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/entities/AuthorityMetadataEntity.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/interface/ICacheManager.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/authority/AzureRegion.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/authority/AzureRegionConfiguration.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/authority/AuthorityOptions.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/authority/RegionDiscoveryMetadata.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/authority/Authority.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/account/TokenClaims.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/account/AuthToken.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/logger/Logger.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/entities/AccountEntity.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/utils/CacheTypes.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/CacheManager.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/network/NetworkManager.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/network/INetworkModule.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/error/AuthError.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/telemetry/server/ServerTelemetryRequest.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/telemetry/server/ServerTelemetryManager.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/interface/ISerializableTokenCache.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/persistence/TokenCacheContext.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/cache/interface/ICachePlugin.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/config/ClientConfiguration.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/response/ServerAuthorizationTokenResponse.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/account/CcsCredential.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/client/BaseClient.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/utils/MsalTypes.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/CommonAuthorizationUrlRequest.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/CommonAuthorizationCodeRequest.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/response/AuthenticationResult.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/CommonEndSessionRequest.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/response/AuthorizationCodePayload.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/client/AuthorizationCodeClient.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/response/DeviceCodeResponse.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/CommonDeviceCodeRequest.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/client/DeviceCodeClient.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/CommonRefreshTokenRequest.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/CommonSilentFlowRequest.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/client/RefreshTokenClient.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/CommonClientCredentialRequest.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/client/ClientCredentialClient.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/CommonOnBehalfOfRequest.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/client/OnBehalfOfClient.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/client/SilentFlowClient.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/CommonUsernamePasswordRequest.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/client/UsernamePasswordClient.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/authority/AuthorityFactory.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/network/ThrottlingUtils.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/response/ServerAuthorizationCodeResponse.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/url/UrlString.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/crypto/IGuidGenerator.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/response/ExternalTokenResponse.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/ScopeSet.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/request/AuthenticationHeaderParser.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/error/InteractionRequiredAuthError.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/error/ServerError.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/error/ClientAuthError.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/error/ClientConfigurationError.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/account/DecodedAuthToken.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/utils/StringUtils.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/utils/ProtocolUtils.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/utils/TimeUtils.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/telemetry/performance/PerformanceEvent.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/telemetry/performance/IPerformanceMeasurement.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/telemetry/performance/IPerformanceClient.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/telemetry/performance/PerformanceClient.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/telemetry/performance/StubPerformanceClient.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/crypto/PopTokenGenerator.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/packageMetadata.d.ts","../../node_modules/@azure/msal-node/node_modules/@azure/msal-common/dist/index.d.ts","../../node_modules/@azure/msal-node/dist/request/AuthorizationCodeRequest.d.ts","../../node_modules/@azure/msal-node/dist/request/AuthorizationUrlRequest.d.ts","../../node_modules/@azure/msal-node/dist/request/DeviceCodeRequest.d.ts","../../node_modules/@azure/msal-node/dist/request/RefreshTokenRequest.d.ts","../../node_modules/@azure/msal-node/dist/request/SilentFlowRequest.d.ts","../../node_modules/@azure/msal-node/dist/request/UsernamePasswordRequest.d.ts","../../node_modules/@azure/msal-node/dist/cache/serializer/SerializerTypes.d.ts","../../node_modules/@azure/msal-node/dist/cache/NodeStorage.d.ts","../../node_modules/@azure/msal-node/dist/cache/ITokenCache.d.ts","../../node_modules/@azure/msal-node/dist/cache/TokenCache.d.ts","../../node_modules/@azure/msal-node/dist/client/IPublicClientApplication.d.ts","../../node_modules/@azure/msal-node/dist/request/ClientCredentialRequest.d.ts","../../node_modules/@azure/msal-node/dist/request/OnBehalfOfRequest.d.ts","../../node_modules/@azure/msal-node/dist/client/IConfidentialClientApplication.d.ts","../../node_modules/@azure/msal-node/dist/cache/distributed/ICacheClient.d.ts","../../node_modules/@azure/msal-node/dist/cache/distributed/IPartitionManager.d.ts","../../node_modules/@azure/msal-node/dist/config/Configuration.d.ts","../../node_modules/@azure/msal-node/dist/crypto/CryptoProvider.d.ts","../../node_modules/@azure/msal-node/dist/client/ClientAssertion.d.ts","../../node_modules/@azure/msal-node/dist/client/ClientApplication.d.ts","../../node_modules/@azure/msal-node/dist/client/PublicClientApplication.d.ts","../../node_modules/@azure/msal-node/dist/client/ConfidentialClientApplication.d.ts","../../node_modules/@azure/msal-node/dist/cache/distributed/DistributedCachePlugin.d.ts","../../node_modules/@azure/msal-node/dist/packageMetadata.d.ts","../../node_modules/@azure/msal-node/dist/index.d.ts","../../node_modules/@azure/abort-controller/shims-public.d.ts","../../node_modules/@azure/abort-controller/types/src/AbortSignal.d.ts","../../node_modules/@azure/abort-controller/types/src/AbortController.d.ts","../../node_modules/@azure/abort-controller/types/src/index.d.ts","../../node_modules/@azure/core-auth/types/latest/core-auth.d.ts","../../node_modules/@azure/logger/types/logger.d.ts","../../node_modules/@types/node/assert.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/dns.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@azure/core-tracing/types/core-tracing.d.ts","../../node_modules/@azure/core-rest-pipeline/types/latest/core-rest-pipeline.d.ts","../../node_modules/@azure/core-rest-pipeline/core-rest-pipeline.shims.d.ts","../../node_modules/@azure/core-client/types/latest/core-client.d.ts","../../node_modules/@azure/identity/types/identity.d.ts","../../node_modules/axios/index.d.ts","./source/cloudSettings.ts","./source/tokenProvider.ts","./source/errors.ts","./source/security.ts","./source/models.ts","./source/response.ts","./source/clientRequestProperties.ts","./package.json","./source/client.ts","./test/data/response/v2.json","./test/data/response/v2error.json","./test/data/response/v1.json","./test/data/response/v1_2.json","./test/clientTest.ts","./test/connectionBuilderTest.ts","./test/data/response/v2.ts","./test/modelsTest.ts","./test/responseTest.ts","./index.ts","./test/data/testUtils.ts","./test/securityTest.ts","./test/tokenProviderTest.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/mocha/index.d.ts","../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../node_modules/@types/sinon/index.d.ts","../../node_modules/@types/stream-array/index.d.ts","../../node_modules/@types/stream-to-array/index.d.ts","../../node_modules/@types/tunnel/index.d.ts","../../node_modules/@types/uuid-validate/index.d.ts"],"fileInfos":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"dbb73d4d99be496175cb432c74c2615f78c76f4272f1d83cba11ee0ed6dbddf0","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"4051f6311deb0ce6052329eeb1cd4b1b104378fe52f882f483130bea75f92197","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","744be9a0ebdad89b5e8b3281be2dd81323d82317b5fecb1e107e90ce1d70a990","9e92d69857df6c0669e93269acf5cceb0ffb3510f0cfd81351f7dc3d2b67cf9a","f4d58d10033a080db12fa73ff3fff440ebf0392f80d7aa063fe7711d26b73d9d","862843747fa837649bd721feacd2d936e2221a85e35790cc67e2cffbca0dd1a8","724065c2f83560a069b8eade809bb29575df50bd7a32760b1ec533dc2deb5a0c","93b5b81c99f52ba9d0cc58e006c265f14c22b8e4fd8507b6551cf15e8e34e79f","d21096c2e204017bbf8e61de3f3419baa6b4f9e4f2676cae003abc409f1fb34a","5629e94b389ad5eb4b16556a0555d52a4166ef368a03ab3d4c1abbf44d23d842","86f9ddbd56e148c482010861282a4303c314bfac077de5b1eebe69b46373f7f8","5ef97ac040d2c2288a166dbbde55242940f6c7dd7847c8280132c25b6b3f99f1","69547accb36efb4f760cacaebc4845864da536bdcce2405ff6a00113f2b1a90a","be40b0f46cf4ecfa11848afc69db9ae7a3f705205079e1cfedd1f4cb6480db50","80ab1dcf773696ec49adb521f03d1b3d0c6cfe04cc86b2ab7b77e55190d5be26","9a1effdd0b12461ce95b95e58c77930b37e299b36cf8b0e307d62c4336faa11f","fb0bd3555b8af1497b0e0acd42c467ce0a40e9a9ed743c0f7722d6fab027c4d0","ed7617168896ae57a108a5757a92c30658c93bd15b4c44a556260962ca159d2f","43140e0fcffc94424c4b9c4c7173e490cfb83df68d2e8ef9a6f34a16efa4e1ac","be85fb1199efb6c24dbf3aa5b985f21d649723fce53b9a6e8cab64bb72bcdc3c","7edc1c45b3d6089c75e1b70c3b4935d369ec8c6cd85fdff85d23fcac5c41f545","a922f4d20e9479133627c6a62f6df2c0135136b96c85f8fa936801953cfcd798","5a61f2b04da4fcfc386e8131da6b5a97552a3634e04d8b0ad67578ab92f36aae","1e582ffea4ea269732c37e1da2301fbf3c5e8d5bbed8032ca3a55b280f290782","4ede63c7a565c849b103331d7f1b43bd05cd4114ddda2f6f2e0b5c5bbbaa3428","9de90271f0196284ee611470f659520d6a320ddbf36db45b1d4add237c5a38ea","e4b3abb570762d826201a6aed31b37e47e0a9cf710411da86017215983b18578","0a99880312b2f8ae7b2fc528e8c62deb0bc477b51ef02f496c14d7fc747b00fc","50a8046bfd3ed76d22c201f17246d0a075d8323c05dda848b595871fdb984911","3e6e41efebb93007dcd11d0366b5d543feca02cbdcefb8368f7069df3a03f476","1cf65f4aca8aea00fc829b47f95b38f137e998bf1a34073cee12b1acabd42d28","3bb3b742bcb47663df2d52c7bfdd7a16a829a7fc7e3442c58c4d7d85ab9f1115","53ac640117ce7f1a3708c9435df605d53fef29dcb282179813075757adb2e4ab","e1770ba658557bf50ff5731c7224aa556875b127f376fd1015e6e87602b39395","ebec411fdb040958c09854cc32203207f087e372b4ab664d3e9ba80bdad942c6","c40b9f91ffe4b3f33196a9b42fc48473e9501572c38aee624ef2b8c6dba95431","076d64a913524038222cabf00c1c3a543ffaf13c57d15bd0c680a55d46c95be6","c304a4f4aff1dfef9f11f0f9e4fae014e1f8cb9065ade5c7e4662b0ca9e7b16f","e56c9b3b251e612c1a53d663077d51dd1925bfb472897b17d30a4ce7491b46b8","0846379270e11ab2a35b53359ce061232e753f44e2b17143645a8120338e7ca3","dd87e240c0115e6e75635fecac4d76ca829a73c4ab5bb74bf18380b394830b39","dd93626fbc255c1439093574aed0806f3aec4baf9ce99c9867ef7951b616d89c","38c468fd15ab0b0d979625adfa3562aa3113277823f54bdc4072cf43691faf59","81675552f0e4768ffe35bdf49e222e6cfd6483c333871af469d584966fbf7cd5","912ef5fec96a33cb505be8835e3fd9e9541bee0ce1ff11a26353d49a0af1e51b","48e20455a4fae530630fbfc6f24aac9bb22b26a469c31bff45d18d69ffe8988c","57b427a3ce5058a9d543812724ed2ef68158309b14b61ba938053012f072825e","6d51ea871a772853324ad35a1ccab7f31ee4bec539762f67e6f269a115709160","fef0166651997225cf8f8f7c2f9c23652fd493a8c5fa3accc482c58d36834228","03c16165677b42409f4206d17f4749b3cda77a5c3b5f3582511e335638eaa826","8b810039a54e241bb61e095af79ed191b8d88646067adc9e4d61676b0fd6e900","d212bd05001e9b413bcc4c7b06a259900671d6eeea398e636889d9b7cd80899e","d01075c0d1fbca3c8571354d42c6741cc3b29f724fc3627766cf6339d8595a1d","d812eb6471db6fb226e66066c06851aff90a3ca28f4a003ffc3b626f1f6ca930","b196d5a165f762ea95ac67eb78b0d846f8f5cfacebdae7c8d4251119489cd200","e80c1758c48339b3b9f075fce26ec0b9b21423a73bccd815a55c79dcd6c3dd56","fa59d931313c10f1005484e632e297c869fb797975b0d6c8808e4c899ad6fb78","9d532b81d7946cc4d3b452239e6bac9f8b417915f452739aef31fab00fd6b473","2aa5e973c9c1f81c6d018db6a9220051fe6e42db57a77b861b647518e4cbb473","fb435046958315eef70baecf7409bed31582b6e4307518d788a6518738bb3825","ffe332b4a614ed9205a579d3bd029b8dbaceb3fad95d346d226752100751b1b0","f2118ca37e2d1ecada89b4f3ba2a5dfece4da7fcab32e6a83781081a5f7a0e8b","54c758feb6a82db2497b2f294e0c8aa684efaecb32c6bc8d2f9f0a27a7c4f61d","712cb4cc55e817252e2dd9c7ab072bed3936baf3e3b18e8ecac8be27f9362f71","10737db84413dc4ecc0b8d582cc21b617520ca210d7997845081d2188ee32e89","65e5d299b2cd8b8225855907a8496db5450d7f515b60ca81c2b7b2300102f416","b8efd28d4222b4cdcc7700aefee15314424b7e2d89880175a2274cd639fb8347","189901d3585a565210966cdfcd7aebccc9935c23f88dafb187e7417881e8dab9","e2727354078808c1ab94c5ea8593ebe0c1496ce206c997ad1aa102d7c6c4b190","ef32abb40ee505170d8f3dec856d7e93dece97a177a0d95aba1f9c2690f4e05a","549c3464d306378a63019cd52fd29cf59291790ae89ab267c03234ca95b6715b","c7bb3d343635262f28289a380344885cc2d1178c4f2dc11e6e52eb6ec9fabff3","681e82f20c21ead5098e9c1d04dd071f89b02f08fa9df14f86ac81a3236a2923","4359909397e70d982dcb3bd2a3992ca3d36d20debd5f183053769f3b4837a4da","bab8491749a201f36a5a0e594fc2a66dd6cb511e28e8b3890f5bb5e6624b7a0e","36592459ea33688b09cc82689b506ea58ab6f9785d4d9b85dd368325801faeb5","00595ab91d01d295a2a1fa5ca7ac8a976846d59fe7ca901a50c1605a48f30db1","6803646e4548e924737d029973832bd8f9d183da2b5da5c0bda063935915e054","9585005cf0ada58ee1024cec39d99fc9993f3e0a54011cfc2eebf7cf9ca875a6","46127816b5e10034434c8ebcd81092d7306088a62647369cde06096172279451","4d9586c77b05b0ec2714878468b1ddcaca99827b5ebfc1241b34e933858e2b4c","b48d7d768a9220bd89df4efb07a9bdcd55914492efed571ab0c9acc3f32ccd22","13ba7faef69097b03cec268df645610541accddf62443877caab5fe185d5b9e0","bab25e53eaebce489121489a9d4066b6fd063456ae5398aa0caeb0cf8aae213c","9e92d69857df6c0669e93269acf5cceb0ffb3510f0cfd81351f7dc3d2b67cf9a","78a5ab02c2f8ee14ff2e04f89f92bb5276f170c87d1077d0fa6637c9db1a1976","862843747fa837649bd721feacd2d936e2221a85e35790cc67e2cffbca0dd1a8","724065c2f83560a069b8eade809bb29575df50bd7a32760b1ec533dc2deb5a0c","e704d40226be0b82b8b0641a6477bfbdeddd4abce15278309e80941b9f47775a","5629e94b389ad5eb4b16556a0555d52a4166ef368a03ab3d4c1abbf44d23d842","a3d0f5fe0aa9848eadb5a6f2acb2ad8f18e1dd95e1c920b27b5cf0d782f1e0b2","5ef97ac040d2c2288a166dbbde55242940f6c7dd7847c8280132c25b6b3f99f1","a9d717361c0e162fc3f329716339d54e711591c8131929ba128bd3c137ea5a55","277510d9cd8ec22f0eabcf009c5f6482b824400954a85a0f096fe86cef2e85c0","80ab1dcf773696ec49adb521f03d1b3d0c6cfe04cc86b2ab7b77e55190d5be26","9a1effdd0b12461ce95b95e58c77930b37e299b36cf8b0e307d62c4336faa11f","fb0bd3555b8af1497b0e0acd42c467ce0a40e9a9ed743c0f7722d6fab027c4d0","ed7617168896ae57a108a5757a92c30658c93bd15b4c44a556260962ca159d2f","43140e0fcffc94424c4b9c4c7173e490cfb83df68d2e8ef9a6f34a16efa4e1ac","be85fb1199efb6c24dbf3aa5b985f21d649723fce53b9a6e8cab64bb72bcdc3c","7edc1c45b3d6089c75e1b70c3b4935d369ec8c6cd85fdff85d23fcac5c41f545","15e81f1b2438a9be75f23ff8e6e4771fa0371901c6f4c28af426d3f54d244fa2","f33c65b328eac32717deb6cbae80351567eb02096ce78478aa376920d83dc9cb","1e582ffea4ea269732c37e1da2301fbf3c5e8d5bbed8032ca3a55b280f290782","4ede63c7a565c849b103331d7f1b43bd05cd4114ddda2f6f2e0b5c5bbbaa3428","f9a365c4dff4db43ddff8c9e26e5c5bb597820c994473ad2ff93184b6a60227f","e4b3abb570762d826201a6aed31b37e47e0a9cf710411da86017215983b18578","565f96717f4c7089c68fffdae09d13bff91cf4a09f7cb40cb78b032c8bd67df2","fca2f5fafcb06eaa58021730d62169782770fff1e14f48619f33c5b760917436","3e6e41efebb93007dcd11d0366b5d543feca02cbdcefb8368f7069df3a03f476","1cf65f4aca8aea00fc829b47f95b38f137e998bf1a34073cee12b1acabd42d28","4870f8772f06305b16ce2b9945e86645cb1e4857cdfe892f98b71708b62212a3","cd762e6881fce6bc89ceb25e449f79d76fe547688eb15d5bf4fadaded7388f9e","f70c1ce36f76f22e94b5ab67799041ed767b7655ab137a372d8a58ddc60e32b1","c40b9f91ffe4b3f33196a9b42fc48473e9501572c38aee624ef2b8c6dba95431","6a239b31e2c8b5dc451f9e72b16186df8aebc2e40c56d6a5305cd93c8c955feb","871e93aa233565da44f659f56b9236b38ef99ab65f3f310cc65e7fb36504006b","e56c9b3b251e612c1a53d663077d51dd1925bfb472897b17d30a4ce7491b46b8","0846379270e11ab2a35b53359ce061232e753f44e2b17143645a8120338e7ca3","dd87e240c0115e6e75635fecac4d76ca829a73c4ab5bb74bf18380b394830b39","dd93626fbc255c1439093574aed0806f3aec4baf9ce99c9867ef7951b616d89c","38c468fd15ab0b0d979625adfa3562aa3113277823f54bdc4072cf43691faf59","02c40f26e0fdee38a547d877c4440d4afd2393d544ed1ae64e430f659da43bab","ad5ce7a0b732a83ec2dfee2e35da8ae2ca89a79f17703bfa1e863b7bd3f09f76","48e20455a4fae530630fbfc6f24aac9bb22b26a469c31bff45d18d69ffe8988c","57b427a3ce5058a9d543812724ed2ef68158309b14b61ba938053012f072825e","6d51ea871a772853324ad35a1ccab7f31ee4bec539762f67e6f269a115709160","fef0166651997225cf8f8f7c2f9c23652fd493a8c5fa3accc482c58d36834228","a48ca5761517ff6f5b629c427ed7d9b1ecab9eddc7e731ec51bc1e36d99a1dd4","5adf804c2f305faa07ed75a45bacf5c34302bdb16398ab8c1a72440d460934f2","42d26f09b179ca5d8217671e36e68975b87a3799051886f7d12a7131ddea3e1d","d01075c0d1fbca3c8571354d42c6741cc3b29f724fc3627766cf6339d8595a1d","237108a3bfaff27a1a4659db8683ab550b0da948099521ecf399ec899c3c8312","b196d5a165f762ea95ac67eb78b0d846f8f5cfacebdae7c8d4251119489cd200","e80c1758c48339b3b9f075fce26ec0b9b21423a73bccd815a55c79dcd6c3dd56","fa59d931313c10f1005484e632e297c869fb797975b0d6c8808e4c899ad6fb78","9d532b81d7946cc4d3b452239e6bac9f8b417915f452739aef31fab00fd6b473","2aa5e973c9c1f81c6d018db6a9220051fe6e42db57a77b861b647518e4cbb473","fb435046958315eef70baecf7409bed31582b6e4307518d788a6518738bb3825","ffe332b4a614ed9205a579d3bd029b8dbaceb3fad95d346d226752100751b1b0","f2118ca37e2d1ecada89b4f3ba2a5dfece4da7fcab32e6a83781081a5f7a0e8b","54c758feb6a82db2497b2f294e0c8aa684efaecb32c6bc8d2f9f0a27a7c4f61d","712cb4cc55e817252e2dd9c7ab072bed3936baf3e3b18e8ecac8be27f9362f71","10737db84413dc4ecc0b8d582cc21b617520ca210d7997845081d2188ee32e89","65e5d299b2cd8b8225855907a8496db5450d7f515b60ca81c2b7b2300102f416","b8efd28d4222b4cdcc7700aefee15314424b7e2d89880175a2274cd639fb8347","fef78aa51334122b36c3eb4c87c7244fe97b312b87273ec970df2288621dbd9f","7139211a77ff4f5684fe13762c49a681e27dbe407bebf89ec54ced92a539927e","ef32abb40ee505170d8f3dec856d7e93dece97a177a0d95aba1f9c2690f4e05a","f52143c8e03046a1f5827c12684e5e3051ca81d8057173980e56e1984ee46e8a","612c84d13df19cc411b683a84df4a6401587afe703facbba3fc64ca933538fba","bf197ab5c2ec3d5b92723dd60ace5e2ea7fe16e1ae161aef65700a9d0e79c8c1","e1770ba658557bf50ff5731c7224aa556875b127f376fd1015e6e87602b39395","c22e086a091cfc8ccea49c0a23d7f59a70e61eff979662a0094e23aca97a9dcb","fad864df240dad88029023c09d765349761dc87fd9ab01dc236c86c159888c0b","c7bb3d343635262f28289a380344885cc2d1178c4f2dc11e6e52eb6ec9fabff3","f0f50b2b5930cfe79d5e116eb58f9a09b3664d677cde6fb4c244b5ef19a5ab07","07885dee25c5ef1a3aa8706bf5dee042d5fd8ff2aa084ad576364996558e6aac","36592459ea33688b09cc82689b506ea58ab6f9785d4d9b85dd368325801faeb5","00595ab91d01d295a2a1fa5ca7ac8a976846d59fe7ca901a50c1605a48f30db1","6803646e4548e924737d029973832bd8f9d183da2b5da5c0bda063935915e054","9585005cf0ada58ee1024cec39d99fc9993f3e0a54011cfc2eebf7cf9ca875a6","97bae58cb27765a737ae4c3c367c5a2c914823b2874b6c21f4dd87db55d35586","c22e784c6b2d47979cdf84bfe1b18f80532bc94265f62123870b755150067ac2","21ec7a198f50d6e8e44674c361c1f18306446d7b1a967138f4a45a60af3fce59","1628eb7547a45da3c76419eb8be9458048ffad6ca07e23ddd55baa49752b5221","d02adff6abb3c9a04f321a96986bcca173429655d260a1f9d8b6c8dc19bf8a72","fae76bd32ddd69b944dde57086e70ff063e9314f13de18c4a66e7206437e9ccf","8030e0c0e9eeeb2432f8b7648ddb57bfa88f748ca3684b9fd2de2069f8c21a6e","f31701d0e9f2a472f00e193b9907f164e04f2d2075e8a33dd3079587ac357a6f","890dd05f03323a289816b3b414d2430fcf193c0af61cb57366bfe15c9c1594d2","c03f8c57ceefeb868015ecdcf444079965e39e95192c9deb1586c12a6b45e307","31a1d157f01acfb6b0f526c163c517bc31c959533fa87630618bf297ea6f5b7a","916c68006baf294267e139f0b65a560e7a23787a72bd018bf41f40997cee3dab","28854a159032d877e76ab1d48a08197aaf4b6c1f54554f02b112a2a1cd34703a","518006e394b5616fb25d3ff60ba671f712dfef0375d734f08899538b60a770f8","5c38b0016bad71d2c3a16ac4897579a0b524499ab180c3c4dbbab57a21ccb5de","c1bd7c267c8dbea9b2323ef7024d212ab22461d637aedc138b52853144dc23f2","0d85ae43e3231d6dddfafb6ff13ce3f677089b2d67df0321659eaee0fc627f72","7cc8919229593d5ee7b7de64c9e6274d20f25a6f0eae7ac5bcfcc8902704f34b","7b73c321c5b6506aa8e4d040026cc1cee35d2edc890eb9f5e3a8bbbd57daa6c6","dc0899aa9b36bcd5baef6024d3941f5cd0c18934fc7271d5621564c4a28306e4","238c761711d6d5a4abac4a896ca25748d0add2b7bf872ea7fe27cea5bbf53e23","db287b97bc4d8170f713959b87a66928359972f2c68df46de6cca322d86df97b","65384e10395411423b65756d19688f3b6fe0bdeb85b09d66cf06ba6598165afc","9ce7c73138ddd5cd45f19697c9031008fa14295b2d1ee8982bdc94f38ccad584","74b8fc64dedfa8a14986115fd27d46d9120a323cfb5a5b3d6b891c625110bb55","9fbe89b2072670f3b082592991ce9f73985b9fbee71c988197bf246df1643c4f","7cf791793f589e29dca312ebc2a4f7b0aa6ed98b17585aec29d73853b3b2ec3a","218b950758ec4fe1718a09c74d17a87966265e0ed47ffdec3ca145dc9da3f664","fb67ce4e4c856d354bfdba3762bca204375047ef2f618ca1ba94123b49fdce60","648492d2f7b5c6e543874d6217dc2a566d8e121499bfdb5087c614d94a346c09","3b1aaaded64d108e30d45bca20f5add7a22cd675ef249d9d99fd3d8e6c9bb358","26db0c6ba2b13869f4f07814508274ba1a0230f152afbe68c4a607740d24a5cb","4b3144622bd57f34c7794d433b06d68a707df4757639af15a43b4b25cb0cfd56",{"version":"d21099f23d447a1f8e63b3dc47b83ac67561d93798b4457d8531d509bb0f2c00","affectsGlobalScope":true},"88c707774240f65efb716905c6b7a8896e42fa40c67c017fc2618e95f5f808d8","12056f7e1b2a280094beb21f07bd37a4f72b25c0ecbaa248e1ff59a81e6e4d48","7323fcebcda9163216615a63c784946a24926380a55f013d8706541dcc1317a0","6eed41c98a95c99d239a580542dccc9ba9e1383694d09524d2fea56c20b6daa2","1ff81fdd29468ce57e615201511e082f805ebca9348649b3a050fe8a5fde1067","4c2c4f53e8eedd970f8afa369d7371544fb6231bf95e659f8602e09abe74d5a5",{"version":"e71aa3dcef67c4e22d57a8ff085806b986818c27d515a6c548547dbb06153c01","affectsGlobalScope":true},"64e2803203b14d7f104f570f2152fde13abb6edc17b2ddb33d81ad86cf43d494","3143a5add0467b83150961ecd33773b561a1207aec727002aa1d70333068eb1b","9b2a8f604e7c0482a9061755f00b287cc99bd8718dc82d8207dd74c599b6dc43","d0fc76a91c828fbe3f0be5d683273634b7b101068333ceed975a8a9ac464137b",{"version":"1a048ff164b8d9609f5de3139d4e37f6e8a82af82087ac414b9208f52ef8aac7","affectsGlobalScope":true},"3111079f3cb5f2b9c812ca3f46161562bce5bfb355e915f46ed46c41714dc1c3","50ae84dc0183f9f69b4d0933e240fb76cc77fddb2ec223dd070d12420b6ccfa6","b32b6b16cb0bda68199582ad6f22242d07ee75fac9b1f28a98cd838afc5eea45","4441ee4119824bfaebc49308559edd7545978f9cb41a40f115074e1031dde75f",{"version":"60693a88462d0e97900123b5bf7c73e146ce0cc94da46a61fe6775b430d2ff05","affectsGlobalScope":true},{"version":"588c69eda58b9202676ec7ca11a72c3762819b46a0ed72462c769846153c447c","affectsGlobalScope":true},"cc829932ffaf5c49092f878bec18af1fa5d8591b45a45e2b7f757f793cb3b4ed","47db10fdc4e76c4f4598cf7c91ba6bfde6cf6d8082c51860fe751643bf359739","53d2c24a3cbc00a88ebaf8ab8e1b6e206bc3a6647d544f877241684ea3d484e3","3be5ff21956db30c674bf2a98eb348e4ce7b4635cd9673413d86fbce761b77d8","0ce99c641ea20b0c0c09d093fc28f18f5ab31dc80033707a1ac3154399de2559","f0c33a0b325d3499cc9aded7d32886f998c9a27b465097c6cc136944d0aafdaa","44e42ed6ec9c4451ebe89524e80ac8564e9dd0988c56e6c58f393c810730595d","9878d10740b7a3ab6f0e9a8df3a9660fa3f51eb5e84ab2f8cf7e12a775268b08","1606ea615c0a5ea9f5c1376a33e34c0e1112e8dee31a5b3b8a74ce781893aa6f","9fef9de633d01cb7f01f68195626a890ededd25cf96a1e785617d08c8668230d","4455c78d226d061b1203c7614c6c6eb5f4f9db5f00d44ff47d0112de8766fbc4",{"version":"ec369bb9d97c4dc09dd2a4093b7ca3ba69ad284831fccac8a1977785e9e38ce5","affectsGlobalScope":true},"4465a636f5f6e9665a90e30691862c9e0a3ac2edc0e66296704f10865e924f2a","9af781f03d44f5635ed7844be0ce370d9d595d4b4ec67cad88f0fac03255257e","f9fd4c3ef6de27fa0e256f4e75b61711c4be05a3399f7714621d3edc832e36b0","e49290b7a927995c0d7e6b2b9c8296284b68a9036d9966531de65185269258d7","c3689f70ce7563c2299f2dcb3c72efdf6f87ae510e7456fa6223c767d0ca99fc","874ca809b79276460011480a2829f4c8d4db29416dd411f71efbf8f497f0ac09","82e1723b20fa0b15a7da0d1a03fec88348f82f640f7a2f308d6c0fac780cfc7c","605c24042a348b033b30121cff64380eb5d6d82853c5608f1f94ef72385cf5c9","23a28f834a078986bbf58f4e3705956983ff81c3c2493f3db3e5f0e8a9507779","4febdf7f3ec92706c58e0b4e8159cd6de718284ef384260b07c9641c13fc70ce",{"version":"eabefc2999c1489cf870e0c85af908900462fa245822d9a4616780a1a129945d","affectsGlobalScope":true},"7335933d9f30dcfd2c4b6080a8b78e81912a7fcefb1dafccb67ca4cb4b3ac23d","a6bfe9de9adef749010c118104b071d14943802ff0614732b47ce4f1c3e383cd","4c3d0e10396646db4a1e917fb852077ee77ae62e512913bef9cccc2bb0f8bd0e","3b220849d58140dcc6718f5b52dcd29fdb79c45bc28f561cbd29eb1cac6cce13","0ee22fce41f7417a24c808d266e91b850629113c104713a35854393d55994beb","22d1b1d965baba05766613e2e6c753bb005d4386c448cafd72c309ba689e8c24",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"79d679a1d56574cc5cef92be1f0e5e8fb4af62fb55933b236670a0e0a23c83f6","b619cf04251e42a34a6ad0adccee96ae79ff5dc34a16986e646c69b721c4b8ef","b3a4fd26163d87e6ca2dc021e64ec0ba8d361d342c1f84ef303986e645f2b48e",{"version":"a294f8c5d1bcbdff29870aff277603b36c320616a7745f112e195f7851cdb53d","affectsGlobalScope":true},"89afeb6f87af13e9a900b356c79439e0b0a8cd34841d81423878d2b49c2616d2","f639a4af5ce12557562ba445a958f562efdc942ac6709d0951b6f227a78bddce","644c59289eb29590d65062c5b64dda9ef2797ce120071265a9099436f0d41a16","594fe201c6ae717068058d3718a6875abc983390a0248caccb6d7be2ffdf5fdf","beafee2837c6e5af065393603c2b5916973f7df97d238131571eda4cd95d6bdf","c0e521e4c20a32d08b24e4e2656aa8a047d983811049209cad94487d5153ea72","ad9f957796343373c42cffb12220e220e14a0dfb32b79001109688a9f9f374e7","1ccdafc6d081ff37aada2ef4859a10f162e9ed321b81af83005de1eb80436f7c","e1155280973ee80c8b7555681b7f47569537f741673bf963f9d8bf86397aceb2","c927ad4d6959c9775bb99b23706dea8dc617c6be8085af7533ae2b2a8e8e8b69",{"version":"8b182486a0442e82a12d6f790502795e0b14cf071f991aec1b48a71634eba1eb","signature":"651f620a087050830fa2523b101c2ca35653964252576957d8ac4c8e81aa1d1f"},{"version":"69535292f0bc98ee8308fd46ddb2fc781ce8109aa56eeda6968dc760e8b9f768","signature":"0189f20d799b6d50cb94051eb4e10830136df55a9ae13d525738aeb18efc9ab4"},"92d18fd610fd1d5a058c89af5ec4897a6ad43909d89fe6f0fe362c81f41cde7d","47ac8a5e394619d8210ed6cd5a9ad61d6c5086280e531300d42ad4ded7103513","26d2483ed86c8e5ea16ef347780d7e8f9abefdc59cdaed04de13dcb124817c5f","53455a4335368a05579c72875803238849a2231d3dc14049d5a3f281bf553c40",{"version":"a5ee026c2d630e38ebd0bfe8d586870f21766a2283391f3c6616b41d4127a665","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"75fac75a62e54251017673149114a5a1e057864780b8b2fe0623274e72755712","4bb6944ec5768263f4453ffcdfb9226ba0959dd4525887ea3fe3e1c9f31fc029","5db56366f11039866b7f0c07d3b91f8e16d7586fa494a86fc61670bb4989bd77","3436f6383310ff3747495769eb8ba051c70758505b6021fef4e9322bd50e1fab",{"version":"69ff5dbaf5d645d0adaaafd29134086d0d88da4776f4de8bcbeb76ac8c044b1d","signature":"8dd8e9ec5acd532bd223565e3eba9a16fbecb20e2f0f3ede9beaea0fdcbe0c6a"},"d7ce0afc6959f7e09a5ff733d21eb400f466adb49c0b3026f6b5dc97a83ad44f",{"version":"f690cdf9ac0245dacb2ac21c779a88a7660752b2b4ba06f1ce3aa7706dad3127","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"9c76c7b22c5727c4decc051fa28877854c38431671424e368d09d2ed8c2316b8","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"5f186a758a616c107c70e8918db4630d063bd782f22e6e0b17573b125765b40b","affectsGlobalScope":true},"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","9d92b037978bb9525bc4b673ebddd443277542e010c0aef019c03a170ccdaa73","05c43ebe9301cb4288069255323aab749253a37b2616ef3fd0d732bd3ba0345a","9f18d174aa4cd0688a9651ab4915a2fc36003d6b00d949b704bf289429f6f269","166bfd32f444e0505b9dfcccce99a2c99f04fba1f1e232e93a8ff72660973a87","f5b3e0557ad67f756a329f9a0e9d0e46bde1f46a5a0f16dfa1d9d26bdcb6019d"],"options":{"declaration":true,"esModuleInterop":true,"module":1,"noUnusedLocals":true,"noUnusedParameters":true,"sourceMap":true,"strict":true,"target":2},"fileIdsList":[[229],[228],[229,230],[231],[231,232,278,280],[279],[231,232,233,277,278],[232,233,281],[45,61],[36,37,38,39,53,55,58,59,69],[55,58,60,69],[39,57],[56],[40],[40,41,42,45,46,47,48,49,50,51,52,54,55,64,65,66],[41,45],[36,45,50,60,61,62,63],[37,53],[42,46,47,48,64],[41],[41,42,46,47,48,49,50,51,52,54,64,65],[74],[73],[42,46,47,48,51,52,54,64],[76,79,81,82,83,84,85],[35,45,60,63,67,68,69,72,76,77,78],[76,79,83,93],[76,79,83,88],[76,79,83,95],[76,79,83,90,91],[76,79,83,91],[76,79,83,98],[45,60,63,67,69,72,73,75],[43,44],[70],[106],[104],[35,36,38,39,40,41,42,43,44,45,46,47,48,50,51,52,54,56,57,58,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,109,110,111],[76],[68],[35,67,69],[35,67,68,77],[43,78,80],[40,43,50,80],[43,56],[43,87],[50],[43],[43,50,80],[40,51,59,67,70,71],[38,102],[45],[108],[202],[202,209],[202,209,210,211],[202,217,218],[202,203,204,206,207,208,210,212,219,221],[220],[202,214,215,216,219,222],[202,203,204,206,207,208,212,214,215],[202,203,204,205,206,207,208,212],[202,205,213,219,222],[202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226],[125,141],[117,118,119,120,133,135,138,139,148,155],[135,138,140,148],[120,137],[136],[115],[121,122,123,125,126,127,128,129,130,131,132,134,135,144,145],[115,121,125],[117,125,130,140,141,142,143],[118,133],[122,126,127,128,144],[121],[121,122,126,127,128,129,130,131,132,134,144,145],[153],[152],[115,122,126,127,128,131,132,134,144],[155,158,160,161,162,163,164],[116,125,140,143,146,147,148,151,155,156,157],[155,158,162,172],[155,158,162,167],[155,158,162,174],[155,158,162,169,170],[155,158,162,170],[155,158,162,177],[125,138,140,143,146,148,151,152,154],[123,124],[125],[149],[189],[115,116,117,119,120,121,122,123,124,125,126,127,128,130,131,132,134,136,137,138,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,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,192,193,194,195,196,197,198,199,200,201],[155],[147],[116,146,148],[116,123,146,147,156],[115,155],[123,157,159],[115,123,130,159],[123,136],[123,166],[130,159],[123],[123,130,159],[130],[156],[195,196],[143,155,195,196,197],[196,197,198],[115,131,139,146,149,150],[119,181],[191],[249,269,277,310,311],[249,263,277],[234],[236],[237,242],[238,246,247,254,263],[238,239,246,254],[240,270],[241,242,247,255],[242,263],[243,244,246,254],[244],[245,246],[246],[246,247,248,263,269],[247,248],[249,254,263,269],[246,247,249,250,254,263,266,269],[249,251,263,266,269],[234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276],[246,252],[253,269],[244,246,254,263],[255],[256],[236,257],[258,268],[259],[260],[246,261],[261,262,270,272],[246,263],[264],[265],[254,263,266],[267],[254,268],[260,269],[270],[263,271],[272],[273],[246,248,263,269,272,274],[263,275],[315],[263,277],[277],[249,277],[114,286,290,292],[33,34,114,249,251,283,286,287,289,290,291],[283],[112,113],[33],[288],[114,285,286],[112,227,232,282,284],[33,34,114,234,263,289,290,292,293,294,295,296],[34,112,114,234],[33,234,288,299],[234,289,293],[227,234,282,284,286,287,302,303],[234,284,285],[114,283,287,289,290]],"referencedMap":[[230,1],[229,2],[231,3],[232,4],[281,5],[280,6],[279,7],[282,8],[62,9],[60,10],[100,11],[58,12],[57,13],[59,14],[67,15],[46,16],[64,17],[54,18],[49,19],[41,14],[42,20],[47,20],[55,21],[75,22],[74,23],[65,24],[86,25],[79,26],[94,27],[89,28],[96,29],[92,30],[97,31],[99,32],[76,33],[45,34],[106,35],[107,36],[105,37],[104,35],[112,38],[63,39],[69,40],[68,41],[101,42],[43,14],[82,43],[81,44],[93,45],[88,46],[84,47],[95,48],[90,43],[91,49],[98,48],[83,47],[72,50],[103,51],[110,52],[109,53],[211,54],[210,55],[212,56],[225,57],[218,54],[209,54],[222,58],[221,59],[224,60],[216,61],[213,62],[223,63],[219,54],[220,54],[227,64],[203,54],[204,54],[214,54],[205,54],[215,54],[206,54],[207,54],[208,54],[142,65],[140,66],[179,67],[138,68],[137,69],[139,70],[146,71],[126,72],[144,73],[134,74],[129,75],[121,70],[122,76],[127,76],[135,77],[154,78],[153,79],[145,80],[165,81],[158,82],[173,83],[168,84],[175,85],[171,86],[176,87],[178,88],[155,89],[125,90],[200,91],[189,92],[190,93],[187,92],[188,92],[202,94],[143,95],[148,96],[147,97],[116,70],[180,98],[123,99],[161,100],[160,101],[172,102],[167,103],[163,104],[174,105],[169,100],[170,106],[177,105],[162,107],[184,108],[156,70],[197,109],[198,110],[199,111],[151,112],[182,113],[193,91],[192,114],[312,115],[310,116],[234,117],[236,118],[237,119],[238,120],[239,121],[240,122],[241,123],[242,124],[243,125],[244,126],[245,127],[246,128],[247,129],[248,130],[249,131],[250,132],[251,133],[277,134],[252,135],[253,136],[254,137],[255,138],[256,139],[257,140],[258,141],[259,142],[260,143],[261,144],[262,145],[263,146],[264,147],[265,148],[266,149],[267,150],[268,151],[269,152],[270,153],[271,154],[272,155],[273,156],[274,157],[275,158],[316,159],[317,160],[318,161],[319,162],[302,163],[292,164],[284,165],[114,166],[288,167],[289,168],[287,169],[285,170],[297,171],[298,172],[300,173],[301,174],[304,175],[305,176]],"exportedModulesMap":[[230,1],[229,2],[231,3],[232,4],[281,5],[280,6],[279,7],[282,8],[62,9],[60,10],[100,11],[58,12],[57,13],[59,14],[67,15],[46,16],[64,17],[54,18],[49,19],[41,14],[42,20],[47,20],[55,21],[75,22],[74,23],[65,24],[86,25],[79,26],[94,27],[89,28],[96,29],[92,30],[97,31],[99,32],[76,33],[45,34],[106,35],[107,36],[105,37],[104,35],[112,38],[63,39],[69,40],[68,41],[101,42],[43,14],[82,43],[81,44],[93,45],[88,46],[84,47],[95,48],[90,43],[91,49],[98,48],[83,47],[72,50],[103,51],[110,52],[109,53],[211,54],[210,55],[212,56],[225,57],[218,54],[209,54],[222,58],[221,59],[224,60],[216,61],[213,62],[223,63],[219,54],[220,54],[227,64],[203,54],[204,54],[214,54],[205,54],[215,54],[206,54],[207,54],[208,54],[142,65],[140,66],[179,67],[138,68],[137,69],[139,70],[146,71],[126,72],[144,73],[134,74],[129,75],[121,70],[122,76],[127,76],[135,77],[154,78],[153,79],[145,80],[165,81],[158,82],[173,83],[168,84],[175,85],[171,86],[176,87],[178,88],[155,89],[125,90],[200,91],[189,92],[190,93],[187,92],[188,92],[202,94],[143,95],[148,96],[147,97],[116,70],[180,98],[123,99],[161,100],[160,101],[172,102],[167,103],[163,104],[174,105],[169,100],[170,106],[177,105],[162,107],[184,108],[156,70],[197,109],[198,110],[199,111],[151,112],[182,113],[193,91],[192,114],[312,115],[310,116],[234,117],[236,118],[237,119],[238,120],[239,121],[240,122],[241,123],[242,124],[243,125],[244,126],[245,127],[246,128],[247,129],[248,130],[249,131],[250,132],[251,133],[277,134],[252,135],[253,136],[254,137],[255,138],[256,139],[257,140],[258,141],[259,142],[260,143],[261,144],[262,145],[263,146],[264,147],[265,148],[266,149],[267,150],[268,151],[269,152],[270,153],[271,154],[272,155],[273,156],[274,157],[275,158],[316,159],[317,160],[318,161],[319,162],[302,163],[292,177],[284,165],[114,166],[288,167],[289,168],[287,169],[285,170],[298,172],[300,173],[301,174],[305,176]],"semanticDiagnosticsPerFile":[228,230,229,231,232,281,280,279,278,282,233,50,62,78,108,61,60,100,58,36,56,57,53,37,39,59,67,46,64,48,54,49,41,42,47,51,52,55,75,73,74,65,86,79,94,89,96,92,97,99,76,45,44,70,106,107,105,104,112,63,69,68,35,101,43,82,81,93,88,84,95,90,91,98,66,83,85,87,102,77,72,71,38,103,40,80,110,109,111,211,210,212,225,217,218,209,222,221,224,216,213,223,219,220,227,226,203,204,214,205,215,206,207,208,130,142,157,191,141,140,179,138,117,136,137,133,118,120,139,146,126,144,128,134,129,121,122,127,131,132,135,154,152,153,145,165,158,173,168,175,171,176,178,155,125,183,200,124,149,189,190,187,188,202,143,148,147,116,180,201,186,123,161,160,172,167,163,174,169,170,177,185,162,164,166,184,181,156,197,196,198,195,199,151,150,119,182,115,159,193,192,194,306,307,308,309,311,312,310,234,236,237,238,239,240,241,242,243,244,245,246,247,248,235,276,249,250,251,277,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,313,314,316,315,317,318,319,320,34,283,33,7,8,12,11,3,13,14,15,16,17,18,19,20,4,5,24,21,22,23,25,26,27,6,28,29,30,31,2,1,32,10,9,302,291,292,290,284,114,286,288,289,287,285,113,297,298,295,296,293,299,294,303,300,301,304,305]},"version":"4.6.3"}
|
package/.eslintignore
DELETED
package/.eslintrc.js
DELETED
|
@@ -1,247 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
👋 Hi! This file was autogenerated by tslint-to-eslint-config.
|
|
3
|
-
https://github.com/typescript-eslint/tslint-to-eslint-config
|
|
4
|
-
|
|
5
|
-
It represents the closest reasonable ESLint configuration to this
|
|
6
|
-
project's original TSLint configuration.
|
|
7
|
-
|
|
8
|
-
We recommend eventually switching this configuration to extend from
|
|
9
|
-
the recommended rulesets in typescript-eslint.
|
|
10
|
-
https://github.com/typescript-eslint/tslint-to-eslint-config/blob/master/docs/FAQs.md
|
|
11
|
-
|
|
12
|
-
Happy linting! 💖
|
|
13
|
-
*/
|
|
14
|
-
module.exports = {
|
|
15
|
-
"env": {
|
|
16
|
-
"browser": true,
|
|
17
|
-
"es6": true,
|
|
18
|
-
"node": true
|
|
19
|
-
},
|
|
20
|
-
"extends": [
|
|
21
|
-
"eslint:recommended",
|
|
22
|
-
"plugin:@typescript-eslint/recommended",
|
|
23
|
-
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
|
24
|
-
"prettier"
|
|
25
|
-
],
|
|
26
|
-
"ignorePatterns": [
|
|
27
|
-
"node_modules",
|
|
28
|
-
"**/*.d.ts",
|
|
29
|
-
"**/*.js"
|
|
30
|
-
],
|
|
31
|
-
"parser": "@typescript-eslint/parser",
|
|
32
|
-
"parserOptions": {
|
|
33
|
-
"project": "tsconfig.json",
|
|
34
|
-
"sourceType": "module"
|
|
35
|
-
},
|
|
36
|
-
"plugins": [
|
|
37
|
-
"eslint-plugin-jsdoc",
|
|
38
|
-
"eslint-plugin-prefer-arrow",
|
|
39
|
-
"@typescript-eslint",
|
|
40
|
-
"header"
|
|
41
|
-
],
|
|
42
|
-
"rules": {
|
|
43
|
-
"@typescript-eslint/adjacent-overload-signatures": "error",
|
|
44
|
-
"@typescript-eslint/array-type": [
|
|
45
|
-
"error",
|
|
46
|
-
{
|
|
47
|
-
"default": "array"
|
|
48
|
-
}
|
|
49
|
-
],
|
|
50
|
-
"@typescript-eslint/ban-ts-comment": "error",
|
|
51
|
-
"@typescript-eslint/ban-types": [
|
|
52
|
-
"error",
|
|
53
|
-
{
|
|
54
|
-
"types": {
|
|
55
|
-
"Object": {
|
|
56
|
-
"message": "Avoid using the `Object` type. Did you mean `object`?"
|
|
57
|
-
},
|
|
58
|
-
"Function": {
|
|
59
|
-
"message": "Avoid using the `Function` type. Prefer a specific function type, like `() => void`."
|
|
60
|
-
},
|
|
61
|
-
"Boolean": {
|
|
62
|
-
"message": "Avoid using the `Boolean` type. Did you mean `boolean`?"
|
|
63
|
-
},
|
|
64
|
-
"Number": {
|
|
65
|
-
"message": "Avoid using the `Number` type. Did you mean `number`?"
|
|
66
|
-
},
|
|
67
|
-
"String": {
|
|
68
|
-
"message": "Avoid using the `String` type. Did you mean `string`?"
|
|
69
|
-
},
|
|
70
|
-
"Symbol": {
|
|
71
|
-
"message": "Avoid using the `Symbol` type. Did you mean `symbol`?"
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
],
|
|
76
|
-
"@typescript-eslint/consistent-type-assertions": "error",
|
|
77
|
-
"@typescript-eslint/dot-notation": "error",
|
|
78
|
-
"@typescript-eslint/no-array-constructor": "error",
|
|
79
|
-
"@typescript-eslint/no-empty-interface": "error",
|
|
80
|
-
"@typescript-eslint/no-explicit-any": "off",
|
|
81
|
-
"@typescript-eslint/no-extra-non-null-assertion": "error",
|
|
82
|
-
"@typescript-eslint/no-extra-semi": "error",
|
|
83
|
-
"@typescript-eslint/no-loss-of-precision": "error",
|
|
84
|
-
"@typescript-eslint/no-misused-new": "error",
|
|
85
|
-
"@typescript-eslint/no-namespace": "error",
|
|
86
|
-
"@typescript-eslint/no-non-null-asserted-optional-chain": "error",
|
|
87
|
-
"@typescript-eslint/no-parameter-properties": "off",
|
|
88
|
-
"@typescript-eslint/no-shadow": [
|
|
89
|
-
"error",
|
|
90
|
-
{
|
|
91
|
-
"hoist": "all"
|
|
92
|
-
}
|
|
93
|
-
],
|
|
94
|
-
"@typescript-eslint/no-this-alias": "error",
|
|
95
|
-
"@typescript-eslint/no-unnecessary-type-constraint": "error",
|
|
96
|
-
"@typescript-eslint/no-unused-expressions": "error",
|
|
97
|
-
"@typescript-eslint/no-unused-vars": "warn",
|
|
98
|
-
"@typescript-eslint/no-use-before-define": "off",
|
|
99
|
-
"@typescript-eslint/no-var-requires": "error",
|
|
100
|
-
"@typescript-eslint/prefer-as-const": "error",
|
|
101
|
-
"@typescript-eslint/prefer-for-of": "error",
|
|
102
|
-
"@typescript-eslint/prefer-function-type": "error",
|
|
103
|
-
"@typescript-eslint/prefer-namespace-keyword": "error",
|
|
104
|
-
"@typescript-eslint/triple-slash-reference": [
|
|
105
|
-
"error",
|
|
106
|
-
{
|
|
107
|
-
"path": "always",
|
|
108
|
-
"types": "prefer-import",
|
|
109
|
-
"lib": "always"
|
|
110
|
-
}
|
|
111
|
-
],
|
|
112
|
-
"@typescript-eslint/unified-signatures": "error",
|
|
113
|
-
"complexity": "off",
|
|
114
|
-
"constructor-super": "error",
|
|
115
|
-
"dot-notation": "error",
|
|
116
|
-
"eqeqeq": [
|
|
117
|
-
"error",
|
|
118
|
-
"smart"
|
|
119
|
-
],
|
|
120
|
-
"for-direction": "error",
|
|
121
|
-
"getter-return": "error",
|
|
122
|
-
"guard-for-in": "error",
|
|
123
|
-
"id-denylist": [
|
|
124
|
-
"error",
|
|
125
|
-
"any",
|
|
126
|
-
"Number",
|
|
127
|
-
"number",
|
|
128
|
-
"String",
|
|
129
|
-
"string",
|
|
130
|
-
"Boolean",
|
|
131
|
-
"boolean",
|
|
132
|
-
"Undefined",
|
|
133
|
-
"undefined"
|
|
134
|
-
],
|
|
135
|
-
"id-match": "error",
|
|
136
|
-
"jsdoc/check-alignment": "error",
|
|
137
|
-
"jsdoc/check-indentation": "error",
|
|
138
|
-
"jsdoc/newline-after-description": "error",
|
|
139
|
-
"max-classes-per-file": [
|
|
140
|
-
"error",
|
|
141
|
-
1
|
|
142
|
-
],
|
|
143
|
-
"new-parens": "error",
|
|
144
|
-
"no-array-constructor": "off",
|
|
145
|
-
"no-async-promise-executor": "error",
|
|
146
|
-
"no-bitwise": "error",
|
|
147
|
-
"no-caller": "error",
|
|
148
|
-
"no-case-declarations": "error",
|
|
149
|
-
"no-class-assign": "error",
|
|
150
|
-
"no-compare-neg-zero": "error",
|
|
151
|
-
"no-cond-assign": "error",
|
|
152
|
-
"no-console": "error",
|
|
153
|
-
"no-const-assign": "error",
|
|
154
|
-
"no-control-regex": "error",
|
|
155
|
-
"no-debugger": "error",
|
|
156
|
-
"no-delete-var": "error",
|
|
157
|
-
"no-dupe-args": "error",
|
|
158
|
-
"no-dupe-class-members": "error",
|
|
159
|
-
"no-dupe-else-if": "error",
|
|
160
|
-
"no-dupe-keys": "error",
|
|
161
|
-
"no-duplicate-case": "error",
|
|
162
|
-
"no-empty": "error",
|
|
163
|
-
"no-empty-character-class": "error",
|
|
164
|
-
"no-empty-pattern": "error",
|
|
165
|
-
"no-eval": "error",
|
|
166
|
-
"no-ex-assign": "error",
|
|
167
|
-
"no-extra-boolean-cast": "error",
|
|
168
|
-
"no-extra-semi": "off",
|
|
169
|
-
"no-fallthrough": "off",
|
|
170
|
-
"no-func-assign": "error",
|
|
171
|
-
"no-global-assign": "error",
|
|
172
|
-
"no-import-assign": "error",
|
|
173
|
-
"no-inner-declarations": "error",
|
|
174
|
-
"no-invalid-regexp": "error",
|
|
175
|
-
"no-invalid-this": "off",
|
|
176
|
-
"no-irregular-whitespace": "error",
|
|
177
|
-
"no-loss-of-precision": "off",
|
|
178
|
-
"no-misleading-character-class": "error",
|
|
179
|
-
"no-mixed-spaces-and-tabs": "error",
|
|
180
|
-
"no-new-symbol": "error",
|
|
181
|
-
"no-new-wrappers": "error",
|
|
182
|
-
"no-nonoctal-decimal-escape": "error",
|
|
183
|
-
"no-obj-calls": "error",
|
|
184
|
-
"no-octal": "error",
|
|
185
|
-
"no-prototype-builtins": "error",
|
|
186
|
-
"no-redeclare": "error",
|
|
187
|
-
"no-regex-spaces": "error",
|
|
188
|
-
"no-self-assign": "error",
|
|
189
|
-
"no-setter-return": "error",
|
|
190
|
-
"no-shadow-restricted-names": "error",
|
|
191
|
-
"no-sparse-arrays": "error",
|
|
192
|
-
"no-this-before-super": "error",
|
|
193
|
-
"no-throw-literal": "error",
|
|
194
|
-
"no-trailing-spaces": "error",
|
|
195
|
-
"no-undef-init": "error",
|
|
196
|
-
"no-unexpected-multiline": "error",
|
|
197
|
-
"no-unreachable": "error",
|
|
198
|
-
"no-unsafe-finally": "error",
|
|
199
|
-
"no-unsafe-negation": "error",
|
|
200
|
-
"no-unsafe-optional-chaining": "error",
|
|
201
|
-
"no-unused-expressions": "error",
|
|
202
|
-
"no-unused-labels": "error",
|
|
203
|
-
"no-unused-vars": "off",
|
|
204
|
-
"no-use-before-define": "off",
|
|
205
|
-
"no-useless-backreference": "error",
|
|
206
|
-
"no-useless-catch": "error",
|
|
207
|
-
"no-useless-escape": "error",
|
|
208
|
-
"no-var": "error",
|
|
209
|
-
"no-with": "error",
|
|
210
|
-
"object-shorthand": "error",
|
|
211
|
-
"one-var": [
|
|
212
|
-
"error",
|
|
213
|
-
"never"
|
|
214
|
-
],
|
|
215
|
-
"prefer-arrow/prefer-arrow-functions": "error",
|
|
216
|
-
"prefer-const": "error",
|
|
217
|
-
"radix": "error",
|
|
218
|
-
"require-yield": "error",
|
|
219
|
-
"spaced-comment": [
|
|
220
|
-
"error",
|
|
221
|
-
"always",
|
|
222
|
-
{
|
|
223
|
-
"markers": [
|
|
224
|
-
"/"
|
|
225
|
-
]
|
|
226
|
-
}
|
|
227
|
-
],
|
|
228
|
-
"use-isnan": "error",
|
|
229
|
-
"valid-typeof": "off",
|
|
230
|
-
|
|
231
|
-
// Rules that were added manually
|
|
232
|
-
|
|
233
|
-
"header/header": ["error", "line", " Copyright (c) Microsoft Corporation.\n Licensed under the MIT License."],
|
|
234
|
-
|
|
235
|
-
// Disabled rules to avoid too many changes, consider re-enabling in the future
|
|
236
|
-
"@typescript-eslint/no-unsafe-assignment": "off",
|
|
237
|
-
"@typescript-eslint/no-unsafe-argument": "off",
|
|
238
|
-
"@typescript-eslint/no-unsafe-return": "off",
|
|
239
|
-
"@typescript-eslint/restrict-template-expressions": "off",
|
|
240
|
-
"@typescript-eslint/no-empty-function": "off",
|
|
241
|
-
"@typescript-eslint/no-inferrable-types": "off",
|
|
242
|
-
"no-undef":"off",
|
|
243
|
-
"@typescript-eslint/no-non-null-assertion":"off",
|
|
244
|
-
"@typescript-eslint/no-unnecessary-type-assertion":"off",
|
|
245
|
-
"no-constant-condition": "off",
|
|
246
|
-
}
|
|
247
|
-
};
|
package/.prettierignore
DELETED
package/.prettierrc.json
DELETED
package/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":";AAAA,uCAAuC;AACvC,kCAAkC;;;;;;AAElC,6DAA0C;AAIlB,iBAJjB,gBAAW,CAIY;AAH9B,+FAAuE;AAGvC,kCAHzB,iCAAuB,CAGyB;AAFvD,mFAAsE;AAEb,uCAFlD,2BAA4B,CAEkD"}
|
package/source/client.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"client.js","sourceRoot":"","sources":["client.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"clientRequestProperties.js","sourceRoot":"","sources":["clientRequestProperties.ts"],"names":[],"mappings":";AAAA,uCAAuC;AACvC,kCAAkC;;;AAElC,MAAa,uBAAuB;IAShC,YAAY,OAAiC,EAAE,UAAoC,EAAE,eAAwB,EAAE,IAAa,EAAE,WAAoB;QAC9I,IAAI,CAAC,QAAQ,GAAG,OAAO,IAAI,EAAE,CAAC;QAC9B,IAAI,CAAC,WAAW,GAAG,UAAU,IAAI,EAAE,CAAC;QACpC,IAAI,CAAC,eAAe,GAAG,eAAe,IAAI,IAAI,CAAC;QAC/C,IAAI,CAAC,IAAI,GAAG,IAAI,IAAI,IAAI,CAAC;QACzB,IAAI,CAAC,WAAW,GAAG,WAAW,IAAI,IAAI,CAAC;IAC3C,CAAC;IAED,SAAS,CAAC,IAAY,EAAE,KAAU;QAC9B,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC;IAChC,CAAC;IAED,SAAS,CAAC,IAAY,EAAE,YAAkB;QACtC,IAAI,CAAC,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,SAAS;YAAE,OAAO,YAAY,CAAC;QAE7E,OAAO,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;IAC/B,CAAC;IAED,YAAY,CAAC,IAAY,EAAE,KAAU;QACjC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC;IACnC,CAAC;IAED,YAAY,CAAC,IAAY,EAAE,YAAkB;QACzC,IAAI,CAAC,IAAI,CAAC,WAAW,IAAI,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,KAAK,SAAS,EAAE;YAC3D,OAAO,YAAY,CAAC;SACvB;QAED,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;IAClC,CAAC;IAED,eAAe;QACX,IAAI,CAAC,WAAW,GAAG,EAAE,CAAC;IAC1B,CAAC;IAED,UAAU,CAAC,aAAqB;QAC5B,IAAI,CAAC,SAAS,CAAC,eAAe,EAAE,aAAa,CAAC,CAAC;IACnD,CAAC;IAED,UAAU;QACN,OAAO,IAAI,CAAC,SAAS,CAAC,eAAe,CAAC,CAAC;IAC3C,CAAC;IAED,gBAAgB,CAAC,aAAqB;QAClC,IAAI,CAAC,cAAc,GAAG,aAAa,CAAC;IACxC,CAAC;IAED,gBAAgB;QACZ,OAAO,IAAI,CAAC,cAAc,CAAC;IAC/B,CAAC;IAED,YAAY;QACR,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAC;IACvB,CAAC;IAED;;OAEG;IACH,MAAM;QACF,OAAO,IAAI,CAAC,MAAM,EAAE,CAAC;IACzB,CAAC;IAED,MAAM;QACF,MAAM,IAAI,GAGN,EAAE,CAAC;QAEP,IAAI,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,MAAM,KAAK,CAAC,EAAE;YACzC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC;YAC7B,IAAI,IAAI,CAAC,OAAO,CAAC,aAAa,EAAE;gBAC5B,IAAI,CAAC,OAAO,CAAC,aAAa,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,aAAuB,CAAC,CAAC;aACzF;SACJ;QAED,IAAI,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,MAAM,KAAK,CAAC,EAAE;YAC5C,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,WAAW,CAAC;SACtC;QAED,OAAO,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC;IACxD,CAAC;IAED,QAAQ;QACJ,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,CAAC;IACzC,CAAC;IAED,aAAa,CAAC,QAAgB;QAC1B,MAAM,YAAY,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,QAAQ,GAAG,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACzD,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,QAAQ,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;QACnD,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,QAAQ,GAAG,CAAC,IAAI,GAAG,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC;QAC1D,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,QAAQ,GAAG,CAAC,IAAI,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC;QAE7D,MAAM,QAAQ,GAAG,KAAK,GAAG,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QAC1D,MAAM,UAAU,GAAG,OAAO,GAAG,EAAE,CAAC,CAAC,CAAC,IAAI,OAAO,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;QAClE,MAAM,UAAU,GAAG,OAAO,GAAG,EAAE,CAAC,CAAC,CAAC,IAAI,OAAO,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;QAElE,OAAO,GAAG,QAAQ,IAAI,UAAU,IAAI,UAAU,IAAI,YAAY,EAAE,CAAC;IACrE,CAAC;CACJ;AA1GD,0DA0GC;AAED,kBAAe,uBAAuB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"cloudSettings.js","sourceRoot":"","sources":["cloudSettings.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,uCAAuC;AACvC,kCAAkC;AAClC,kDAA0B;AAW1B;;GAEG;AACH,MAAa,aAAa;IAatB;QAXA,sBAAiB,GAAG,wBAAwB,CAAC;QAC7C,qBAAgB,GAAc;YAC1B,aAAa,EAAE,OAAO,CAAC,GAAG,CAAC,eAAe,IAAI,mCAAmC;YACjF,gBAAgB,EAAE,KAAK;YACvB,gBAAgB,EAAE,sCAAsC;YACxD,sBAAsB,EAAE,+BAA+B;YACvD,sBAAsB,EAAE,iCAAiC;YACzD,sBAAsB,EAAE,wEAAwE;SACnG,CAAC;QACF,eAAU,GAAsC,EAAE,CAAC;IAE5B,CAAC;IAExB,MAAM,CAAC,WAAW;QACd,IAAI,CAAC,aAAa,CAAC,QAAQ,EAAE;YACzB,aAAa,CAAC,QAAQ,GAAG,IAAI,aAAa,EAAE,CAAC;SAChD;QAED,OAAO,aAAa,CAAC,QAAQ,CAAC;IAClC,CAAC;IAEK,sBAAsB,CAAC,QAAgB;;;YACzC,IAAI,QAAQ,IAAI,IAAI,CAAC,UAAU,EAAE;gBAC7B,OAAO,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC;aACpC;YAED,IAAI;gBACA,MAAM,QAAQ,GAAG,MAAM,eAAK,CAAC,GAAG,CAAqC,QAAQ,GAAG,IAAI,CAAC,iBAAiB,CAAC,CAAC;gBACxG,IAAI,QAAQ,CAAC,MAAM,KAAK,GAAG,EAAE;oBACzB,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,GAAG,QAAQ,CAAC,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC,gBAAgB,CAAC;iBAC9E;qBAAM;oBACH,MAAM,IAAI,KAAK,CAAC,uDAAuD,QAAQ,EAAE,CAAC,CAAC;iBACtF;aACJ;YAAC,OAAO,EAAE,EAAE;gBACT,IAAI,eAAK,CAAC,YAAY,CAAC,EAAE,CAAC,IAAI,CAAA,MAAA,EAAE,CAAC,QAAQ,0CAAE,MAAM,MAAK,GAAG,EAAE;oBACvD,kHAAkH;oBAClH,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,gBAAgB,CAAC;iBACrD;qBAAM;oBACH,MAAM,IAAI,KAAK,CAAC,wCAAwC,QAAQ,MAAM,EAAE,EAAE,CAAC,CAAC;iBAC/E;aACJ;YACD,OAAO,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC;;KACpC;IAED,MAAM,CAAC,eAAe,CAAC,SAAoB,EAAE,WAAoB;QAC7D,OAAO,SAAS,CAAC,aAAa,GAAG,GAAG,GAAG,CAAC,WAAW,IAAI,eAAe,CAAC,CAAC;IAC5E,CAAC;CACJ;AAjDD,sCAiDC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"connectionBuilder.js","sourceRoot":"","sources":["connectionBuilder.ts"],"names":[],"mappings":"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"}
|
package/source/errors.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"errors.js","sourceRoot":"","sources":["errors.ts"],"names":[],"mappings":";AAAA,uCAAuC;AACvC,kCAAkC;;;AAElC,MAAa,wBAAyB,SAAQ,KAAK;IAC/C,YAAY,OAAe,EAAS,KAAwB,EAAS,iBAAyB,EAAS,OAA4B;QAC/H,KAAK,CAAC,OAAO,CAAC,CAAC;QADiB,UAAK,GAAL,KAAK,CAAmB;QAAS,sBAAiB,GAAjB,iBAAiB,CAAQ;QAAS,YAAO,GAAP,OAAO,CAAqB;QAE/H,IAAI,CAAC,IAAI,GAAG,0BAA0B,CAAC;IAC3C,CAAC;CACJ;AALD,4DAKC"}
|
package/source/models.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"models.js","sourceRoot":"","sources":["models.ts"],"names":[],"mappings":"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"}
|
package/source/response.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"response.js","sourceRoot":"","sources":["response.ts"],"names":[],"mappings":"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"}
|
package/source/security.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"security.js","sourceRoot":"","sources":["security.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tokenProvider.js","sourceRoot":"","sources":["tokenProvider.ts"],"names":[],"mappings":"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"}
|
package/source/typeUtilts.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"typeUtilts.js","sourceRoot":"","sources":["typeUtilts.ts"],"names":[],"mappings":";AAAA,uCAAuC;AACvC,kCAAkC"}
|
package/tsconfig.json
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "es6",
|
|
4
|
-
"module": "commonjs",
|
|
5
|
-
"esModuleInterop": true,
|
|
6
|
-
"strict": true,
|
|
7
|
-
"incremental": true,
|
|
8
|
-
"sourceMap": true,
|
|
9
|
-
"resolveJsonModule": true,
|
|
10
|
-
"allowJs": false,
|
|
11
|
-
"allowSyntheticDefaultImports": true,
|
|
12
|
-
"declaration": true,
|
|
13
|
-
"noUnusedParameters": true,
|
|
14
|
-
"noUnusedLocals": true
|
|
15
|
-
},
|
|
16
|
-
"include": ["source/**/*.ts", "test/**/*.ts", "index.ts"]
|
|
17
|
-
}
|