@aws-sdk/cloudfront-signer 3.224.0 → 3.229.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -0
- package/dist-cjs/sign.js +11 -8
- package/dist-es/sign.js +11 -8
- package/dist-types/sign.d.ts +4 -2
- package/dist-types/ts3.4/sign.d.ts +3 -0
- package/package.json +2 -2
- package/src/sign.spec.ts +19 -0
- package/src/sign.ts +22 -6
- package/tsconfig.cjs.tsbuildinfo +1 -1
- package/tsconfig.es.tsbuildinfo +1 -1
- package/tsconfig.types.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.229.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.228.0...v3.229.0) (2022-12-12)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **cloudfront-signer:** accept passphrase when signing ([#4232](https://github.com/aws/aws-sdk-js-v3/issues/4232)) ([fcfb59f](https://github.com/aws/aws-sdk-js-v3/commit/fcfb59fa3203c3357e4f88b4d201f06b1b9beb3a))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.226.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.225.0...v3.226.0) (2022-12-07)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/cloudfront-signer
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [3.224.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.223.0...v3.224.0) (2022-12-05)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @aws-sdk/cloudfront-signer
|
package/dist-cjs/sign.js
CHANGED
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getSignedCookies = exports.getSignedUrl = void 0;
|
|
4
4
|
const url_parser_1 = require("@aws-sdk/url-parser");
|
|
5
5
|
const crypto_1 = require("crypto");
|
|
6
|
-
function getSignedUrl({ dateLessThan, dateGreaterThan, url, keyPairId, privateKey, ipAddress, policy, }) {
|
|
6
|
+
function getSignedUrl({ dateLessThan, dateGreaterThan, url, keyPairId, privateKey, ipAddress, policy, passphrase, }) {
|
|
7
7
|
const parsedUrl = (0, url_parser_1.parseUrl)(url);
|
|
8
8
|
const queryParams = [];
|
|
9
9
|
for (const key in parsedUrl.query) {
|
|
@@ -12,6 +12,7 @@ function getSignedUrl({ dateLessThan, dateGreaterThan, url, keyPairId, privateKe
|
|
|
12
12
|
const cloudfrontSignBuilder = new CloudfrontSignBuilder({
|
|
13
13
|
keyPairId,
|
|
14
14
|
privateKey,
|
|
15
|
+
passphrase,
|
|
15
16
|
});
|
|
16
17
|
if (policy) {
|
|
17
18
|
cloudfrontSignBuilder.setCustomPolicy(policy);
|
|
@@ -41,10 +42,11 @@ function getSignedUrl({ dateLessThan, dateGreaterThan, url, keyPairId, privateKe
|
|
|
41
42
|
return urlWithNewQueryParams;
|
|
42
43
|
}
|
|
43
44
|
exports.getSignedUrl = getSignedUrl;
|
|
44
|
-
function getSignedCookies({ ipAddress, url, privateKey, keyPairId, dateLessThan, dateGreaterThan, policy, }) {
|
|
45
|
+
function getSignedCookies({ ipAddress, url, privateKey, keyPairId, dateLessThan, dateGreaterThan, policy, passphrase, }) {
|
|
45
46
|
const cloudfrontSignBuilder = new CloudfrontSignBuilder({
|
|
46
47
|
keyPairId,
|
|
47
48
|
privateKey,
|
|
49
|
+
passphrase,
|
|
48
50
|
});
|
|
49
51
|
if (policy) {
|
|
50
52
|
cloudfrontSignBuilder.setCustomPolicy(policy);
|
|
@@ -96,12 +98,13 @@ class CloudfrontURLParser {
|
|
|
96
98
|
}
|
|
97
99
|
}
|
|
98
100
|
class CloudfrontSignBuilder {
|
|
99
|
-
constructor({ privateKey, keyPairId }) {
|
|
101
|
+
constructor({ privateKey, keyPairId, passphrase, }) {
|
|
100
102
|
this.customPolicy = false;
|
|
101
103
|
this.urlParser = new CloudfrontURLParser();
|
|
102
104
|
this.keyPairId = keyPairId;
|
|
103
105
|
this.privateKey = privateKey;
|
|
104
106
|
this.policy = "";
|
|
107
|
+
this.passphrase = passphrase;
|
|
105
108
|
}
|
|
106
109
|
buildPolicy(args) {
|
|
107
110
|
const policy = {
|
|
@@ -206,13 +209,13 @@ class CloudfrontSignBuilder {
|
|
|
206
209
|
dateGreaterThan: this.parseDate(start),
|
|
207
210
|
};
|
|
208
211
|
}
|
|
209
|
-
signData(data, privateKey) {
|
|
212
|
+
signData(data, privateKey, passphrase) {
|
|
210
213
|
const sign = (0, crypto_1.createSign)("RSA-SHA1");
|
|
211
214
|
sign.update(data);
|
|
212
|
-
return sign.sign(privateKey, "base64");
|
|
215
|
+
return sign.sign({ key: privateKey, passphrase }, "base64");
|
|
213
216
|
}
|
|
214
|
-
signPolicy(policy, privateKey) {
|
|
215
|
-
return this.normalizeBase64(this.signData(policy, privateKey));
|
|
217
|
+
signPolicy(policy, privateKey, passphrase) {
|
|
218
|
+
return this.normalizeBase64(this.signData(policy, privateKey, passphrase));
|
|
216
219
|
}
|
|
217
220
|
setCustomPolicy(policy) {
|
|
218
221
|
this.customPolicy = true;
|
|
@@ -237,7 +240,7 @@ class CloudfrontSignBuilder {
|
|
|
237
240
|
if (!Boolean(this.policy)) {
|
|
238
241
|
throw new Error("Invalid policy");
|
|
239
242
|
}
|
|
240
|
-
const signature = this.signPolicy(this.policy, this.privateKey);
|
|
243
|
+
const signature = this.signPolicy(this.policy, this.privateKey, this.passphrase);
|
|
241
244
|
return {
|
|
242
245
|
Expires: this.customPolicy ? undefined : this.dateLessThan,
|
|
243
246
|
Policy: this.customPolicy ? this.encodeToBase64(this.policy) : undefined,
|
package/dist-es/sign.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { parseUrl } from "@aws-sdk/url-parser";
|
|
2
2
|
import { createSign } from "crypto";
|
|
3
|
-
export function getSignedUrl({ dateLessThan, dateGreaterThan, url, keyPairId, privateKey, ipAddress, policy, }) {
|
|
3
|
+
export function getSignedUrl({ dateLessThan, dateGreaterThan, url, keyPairId, privateKey, ipAddress, policy, passphrase, }) {
|
|
4
4
|
const parsedUrl = parseUrl(url);
|
|
5
5
|
const queryParams = [];
|
|
6
6
|
for (const key in parsedUrl.query) {
|
|
@@ -9,6 +9,7 @@ export function getSignedUrl({ dateLessThan, dateGreaterThan, url, keyPairId, pr
|
|
|
9
9
|
const cloudfrontSignBuilder = new CloudfrontSignBuilder({
|
|
10
10
|
keyPairId,
|
|
11
11
|
privateKey,
|
|
12
|
+
passphrase,
|
|
12
13
|
});
|
|
13
14
|
if (policy) {
|
|
14
15
|
cloudfrontSignBuilder.setCustomPolicy(policy);
|
|
@@ -37,10 +38,11 @@ export function getSignedUrl({ dateLessThan, dateGreaterThan, url, keyPairId, pr
|
|
|
37
38
|
}
|
|
38
39
|
return urlWithNewQueryParams;
|
|
39
40
|
}
|
|
40
|
-
export function getSignedCookies({ ipAddress, url, privateKey, keyPairId, dateLessThan, dateGreaterThan, policy, }) {
|
|
41
|
+
export function getSignedCookies({ ipAddress, url, privateKey, keyPairId, dateLessThan, dateGreaterThan, policy, passphrase, }) {
|
|
41
42
|
const cloudfrontSignBuilder = new CloudfrontSignBuilder({
|
|
42
43
|
keyPairId,
|
|
43
44
|
privateKey,
|
|
45
|
+
passphrase,
|
|
44
46
|
});
|
|
45
47
|
if (policy) {
|
|
46
48
|
cloudfrontSignBuilder.setCustomPolicy(policy);
|
|
@@ -91,12 +93,13 @@ class CloudfrontURLParser {
|
|
|
91
93
|
}
|
|
92
94
|
}
|
|
93
95
|
class CloudfrontSignBuilder {
|
|
94
|
-
constructor({ privateKey, keyPairId }) {
|
|
96
|
+
constructor({ privateKey, keyPairId, passphrase, }) {
|
|
95
97
|
this.customPolicy = false;
|
|
96
98
|
this.urlParser = new CloudfrontURLParser();
|
|
97
99
|
this.keyPairId = keyPairId;
|
|
98
100
|
this.privateKey = privateKey;
|
|
99
101
|
this.policy = "";
|
|
102
|
+
this.passphrase = passphrase;
|
|
100
103
|
}
|
|
101
104
|
buildPolicy(args) {
|
|
102
105
|
const policy = {
|
|
@@ -201,13 +204,13 @@ class CloudfrontSignBuilder {
|
|
|
201
204
|
dateGreaterThan: this.parseDate(start),
|
|
202
205
|
};
|
|
203
206
|
}
|
|
204
|
-
signData(data, privateKey) {
|
|
207
|
+
signData(data, privateKey, passphrase) {
|
|
205
208
|
const sign = createSign("RSA-SHA1");
|
|
206
209
|
sign.update(data);
|
|
207
|
-
return sign.sign(privateKey, "base64");
|
|
210
|
+
return sign.sign({ key: privateKey, passphrase }, "base64");
|
|
208
211
|
}
|
|
209
|
-
signPolicy(policy, privateKey) {
|
|
210
|
-
return this.normalizeBase64(this.signData(policy, privateKey));
|
|
212
|
+
signPolicy(policy, privateKey, passphrase) {
|
|
213
|
+
return this.normalizeBase64(this.signData(policy, privateKey, passphrase));
|
|
211
214
|
}
|
|
212
215
|
setCustomPolicy(policy) {
|
|
213
216
|
this.customPolicy = true;
|
|
@@ -232,7 +235,7 @@ class CloudfrontSignBuilder {
|
|
|
232
235
|
if (!Boolean(this.policy)) {
|
|
233
236
|
throw new Error("Invalid policy");
|
|
234
237
|
}
|
|
235
|
-
const signature = this.signPolicy(this.policy, this.privateKey);
|
|
238
|
+
const signature = this.signPolicy(this.policy, this.privateKey, this.passphrase);
|
|
236
239
|
return {
|
|
237
240
|
Expires: this.customPolicy ? undefined : this.dateLessThan,
|
|
238
241
|
Policy: this.customPolicy ? this.encodeToBase64(this.policy) : undefined,
|
package/dist-types/sign.d.ts
CHANGED
|
@@ -8,6 +8,8 @@ export interface CloudfrontSignInputBase {
|
|
|
8
8
|
keyPairId: string;
|
|
9
9
|
/** The content of the Cloudfront private key. */
|
|
10
10
|
privateKey: string | Buffer;
|
|
11
|
+
/** The passphrase of RSA-SHA1 key*/
|
|
12
|
+
passphrase?: string;
|
|
11
13
|
/** The date string for when the signed URL or cookie can no longer be accessed. */
|
|
12
14
|
dateLessThan?: string;
|
|
13
15
|
/** The IP address string to restrict signed URL access to. */
|
|
@@ -51,9 +53,9 @@ export interface CloudfrontSignedCookiesOutput {
|
|
|
51
53
|
* Creates a signed URL string using a canned or custom policy.
|
|
52
54
|
* @returns the input URL with signature attached as query parameters.
|
|
53
55
|
*/
|
|
54
|
-
export declare function getSignedUrl({ dateLessThan, dateGreaterThan, url, keyPairId, privateKey, ipAddress, policy, }: CloudfrontSignInput): string;
|
|
56
|
+
export declare function getSignedUrl({ dateLessThan, dateGreaterThan, url, keyPairId, privateKey, ipAddress, policy, passphrase, }: CloudfrontSignInput): string;
|
|
55
57
|
/**
|
|
56
58
|
* Creates signed cookies using a canned or custom policy.
|
|
57
59
|
* @returns an object with keys/values that can be added to cookies.
|
|
58
60
|
*/
|
|
59
|
-
export declare function getSignedCookies({ ipAddress, url, privateKey, keyPairId, dateLessThan, dateGreaterThan, policy, }: CloudfrontSignInput): CloudfrontSignedCookiesOutput;
|
|
61
|
+
export declare function getSignedCookies({ ipAddress, url, privateKey, keyPairId, dateLessThan, dateGreaterThan, policy, passphrase, }: CloudfrontSignInput): CloudfrontSignedCookiesOutput;
|
|
@@ -5,6 +5,7 @@ export interface CloudfrontSignInputBase {
|
|
|
5
5
|
url: string;
|
|
6
6
|
keyPairId: string;
|
|
7
7
|
privateKey: string | Buffer;
|
|
8
|
+
passphrase?: string;
|
|
8
9
|
dateLessThan?: string;
|
|
9
10
|
ipAddress?: string;
|
|
10
11
|
dateGreaterThan?: string;
|
|
@@ -34,6 +35,7 @@ export declare function getSignedUrl({
|
|
|
34
35
|
privateKey,
|
|
35
36
|
ipAddress,
|
|
36
37
|
policy,
|
|
38
|
+
passphrase,
|
|
37
39
|
}: CloudfrontSignInput): string;
|
|
38
40
|
export declare function getSignedCookies({
|
|
39
41
|
ipAddress,
|
|
@@ -43,4 +45,5 @@ export declare function getSignedCookies({
|
|
|
43
45
|
dateLessThan,
|
|
44
46
|
dateGreaterThan,
|
|
45
47
|
policy,
|
|
48
|
+
passphrase,
|
|
46
49
|
}: CloudfrontSignInput): CloudfrontSignedCookiesOutput;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/cloudfront-signer",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.229.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
6
6
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
"license": "Apache-2.0",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/url-parser": "3.226.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@tsconfig/recommended": "1.0.1",
|
package/src/sign.spec.ts
CHANGED
|
@@ -41,6 +41,7 @@ fC3JsQKBgANzZbf9D0lgQE1wsb45fzrAPAqRQHeVY7V8sZPQoJFcZ2Ymp/3L/UHc
|
|
|
41
41
|
NwfPmGXHQDQaK9I3XpHfbyOelD6ghHi/wZj0sKR3Uoo84n8sIpCdUvwitjlHlZBE
|
|
42
42
|
aoCHJ9c5Pnu6FwMAjP8aaKLQDvoHZKVWL2Ml6A6V3Ed95Itp/g2J
|
|
43
43
|
-----END RSA PRIVATE KEY-----`);
|
|
44
|
+
const passphrase = "SAMPLE";
|
|
44
45
|
|
|
45
46
|
function createSignature(data: string): string {
|
|
46
47
|
const signer = createSign("RSA-SHA1");
|
|
@@ -71,6 +72,7 @@ describe("getSignedUrl", () => {
|
|
|
71
72
|
keyPairId,
|
|
72
73
|
dateLessThan,
|
|
73
74
|
privateKey,
|
|
75
|
+
passphrase,
|
|
74
76
|
})
|
|
75
77
|
);
|
|
76
78
|
if (!result.query) {
|
|
@@ -86,6 +88,7 @@ describe("getSignedUrl", () => {
|
|
|
86
88
|
keyPairId,
|
|
87
89
|
dateLessThan,
|
|
88
90
|
privateKey,
|
|
91
|
+
passphrase,
|
|
89
92
|
})
|
|
90
93
|
);
|
|
91
94
|
if (!result.query) {
|
|
@@ -113,6 +116,7 @@ describe("getSignedUrl", () => {
|
|
|
113
116
|
keyPairId,
|
|
114
117
|
dateLessThan,
|
|
115
118
|
privateKey,
|
|
119
|
+
passphrase,
|
|
116
120
|
});
|
|
117
121
|
const policyStr = JSON.stringify({
|
|
118
122
|
Statement: [
|
|
@@ -140,6 +144,7 @@ describe("getSignedUrl", () => {
|
|
|
140
144
|
dateLessThan,
|
|
141
145
|
dateGreaterThan,
|
|
142
146
|
privateKey,
|
|
147
|
+
passphrase,
|
|
143
148
|
});
|
|
144
149
|
const policyStr = JSON.stringify({
|
|
145
150
|
Statement: [
|
|
@@ -170,6 +175,7 @@ describe("getSignedUrl", () => {
|
|
|
170
175
|
dateLessThan,
|
|
171
176
|
ipAddress,
|
|
172
177
|
privateKey,
|
|
178
|
+
passphrase,
|
|
173
179
|
});
|
|
174
180
|
const policyStr = JSON.stringify({
|
|
175
181
|
Statement: [
|
|
@@ -201,6 +207,7 @@ describe("getSignedUrl", () => {
|
|
|
201
207
|
dateGreaterThan,
|
|
202
208
|
ipAddress,
|
|
203
209
|
privateKey,
|
|
210
|
+
passphrase,
|
|
204
211
|
});
|
|
205
212
|
const policyStr = JSON.stringify({
|
|
206
213
|
Statement: [
|
|
@@ -233,6 +240,7 @@ describe("getSignedUrl", () => {
|
|
|
233
240
|
keyPairId,
|
|
234
241
|
dateLessThan,
|
|
235
242
|
privateKey,
|
|
243
|
+
passphrase,
|
|
236
244
|
};
|
|
237
245
|
expect(
|
|
238
246
|
getSignedUrl({
|
|
@@ -253,6 +261,7 @@ describe("getSignedUrl", () => {
|
|
|
253
261
|
keyPairId,
|
|
254
262
|
dateLessThan,
|
|
255
263
|
privateKey,
|
|
264
|
+
passphrase,
|
|
256
265
|
};
|
|
257
266
|
expect(() =>
|
|
258
267
|
getSignedUrl({
|
|
@@ -298,6 +307,7 @@ describe("getSignedUrl", () => {
|
|
|
298
307
|
keyPairId,
|
|
299
308
|
dateLessThan,
|
|
300
309
|
privateKey,
|
|
310
|
+
passphrase,
|
|
301
311
|
});
|
|
302
312
|
const policyStr = JSON.stringify({
|
|
303
313
|
Statement: [
|
|
@@ -324,6 +334,7 @@ describe("getSignedUrl", () => {
|
|
|
324
334
|
keyPairId,
|
|
325
335
|
privateKey,
|
|
326
336
|
policy,
|
|
337
|
+
passphrase,
|
|
327
338
|
});
|
|
328
339
|
const signature = createSignature(policy);
|
|
329
340
|
expect(result).toBe(`${url}?Policy=${encodeToBase64(policy)}&Key-Pair-Id=${keyPairId}&Signature=${signature}`);
|
|
@@ -339,6 +350,7 @@ describe("getSignedCookies", () => {
|
|
|
339
350
|
keyPairId,
|
|
340
351
|
dateLessThan,
|
|
341
352
|
privateKey,
|
|
353
|
+
passphrase,
|
|
342
354
|
};
|
|
343
355
|
expect(
|
|
344
356
|
getSignedCookies({
|
|
@@ -359,6 +371,7 @@ describe("getSignedCookies", () => {
|
|
|
359
371
|
keyPairId,
|
|
360
372
|
dateLessThan,
|
|
361
373
|
privateKey,
|
|
374
|
+
passphrase,
|
|
362
375
|
};
|
|
363
376
|
expect(() =>
|
|
364
377
|
getSignedCookies({
|
|
@@ -404,6 +417,7 @@ describe("getSignedCookies", () => {
|
|
|
404
417
|
keyPairId,
|
|
405
418
|
dateLessThan,
|
|
406
419
|
privateKey,
|
|
420
|
+
passphrase,
|
|
407
421
|
});
|
|
408
422
|
const policyStr = JSON.stringify({
|
|
409
423
|
Statement: [
|
|
@@ -425,6 +439,7 @@ describe("getSignedCookies", () => {
|
|
|
425
439
|
keyPairId,
|
|
426
440
|
dateLessThan,
|
|
427
441
|
privateKey,
|
|
442
|
+
passphrase,
|
|
428
443
|
});
|
|
429
444
|
const policyStr = JSON.stringify({
|
|
430
445
|
Statement: [
|
|
@@ -456,6 +471,7 @@ describe("getSignedCookies", () => {
|
|
|
456
471
|
dateLessThan,
|
|
457
472
|
dateGreaterThan,
|
|
458
473
|
privateKey,
|
|
474
|
+
passphrase,
|
|
459
475
|
});
|
|
460
476
|
const policyStr = JSON.stringify({
|
|
461
477
|
Statement: [
|
|
@@ -490,6 +506,7 @@ describe("getSignedCookies", () => {
|
|
|
490
506
|
dateLessThan,
|
|
491
507
|
ipAddress,
|
|
492
508
|
privateKey,
|
|
509
|
+
passphrase,
|
|
493
510
|
});
|
|
494
511
|
const policyStr = JSON.stringify({
|
|
495
512
|
Statement: [
|
|
@@ -525,6 +542,7 @@ describe("getSignedCookies", () => {
|
|
|
525
542
|
dateGreaterThan,
|
|
526
543
|
ipAddress,
|
|
527
544
|
privateKey,
|
|
545
|
+
passphrase,
|
|
528
546
|
});
|
|
529
547
|
const policyStr = JSON.stringify({
|
|
530
548
|
Statement: [
|
|
@@ -562,6 +580,7 @@ describe("getSignedCookies", () => {
|
|
|
562
580
|
keyPairId,
|
|
563
581
|
privateKey,
|
|
564
582
|
policy,
|
|
583
|
+
passphrase,
|
|
565
584
|
});
|
|
566
585
|
const signature = createSignature(policy);
|
|
567
586
|
const expected = {
|
package/src/sign.ts
CHANGED
|
@@ -11,6 +11,8 @@ export interface CloudfrontSignInputBase {
|
|
|
11
11
|
keyPairId: string;
|
|
12
12
|
/** The content of the Cloudfront private key. */
|
|
13
13
|
privateKey: string | Buffer;
|
|
14
|
+
/** The passphrase of RSA-SHA1 key*/
|
|
15
|
+
passphrase?: string;
|
|
14
16
|
/** The date string for when the signed URL or cookie can no longer be accessed. */
|
|
15
17
|
dateLessThan?: string;
|
|
16
18
|
/** The IP address string to restrict signed URL access to. */
|
|
@@ -66,6 +68,7 @@ export function getSignedUrl({
|
|
|
66
68
|
privateKey,
|
|
67
69
|
ipAddress,
|
|
68
70
|
policy,
|
|
71
|
+
passphrase,
|
|
69
72
|
}: CloudfrontSignInput): string {
|
|
70
73
|
const parsedUrl = parseUrl(url);
|
|
71
74
|
const queryParams: string[] = [];
|
|
@@ -75,6 +78,7 @@ export function getSignedUrl({
|
|
|
75
78
|
const cloudfrontSignBuilder = new CloudfrontSignBuilder({
|
|
76
79
|
keyPairId,
|
|
77
80
|
privateKey,
|
|
81
|
+
passphrase,
|
|
78
82
|
});
|
|
79
83
|
if (policy) {
|
|
80
84
|
cloudfrontSignBuilder.setCustomPolicy(policy);
|
|
@@ -115,10 +119,12 @@ export function getSignedCookies({
|
|
|
115
119
|
dateLessThan,
|
|
116
120
|
dateGreaterThan,
|
|
117
121
|
policy,
|
|
122
|
+
passphrase,
|
|
118
123
|
}: CloudfrontSignInput): CloudfrontSignedCookiesOutput {
|
|
119
124
|
const cloudfrontSignBuilder = new CloudfrontSignBuilder({
|
|
120
125
|
keyPairId,
|
|
121
126
|
privateKey,
|
|
127
|
+
passphrase,
|
|
122
128
|
});
|
|
123
129
|
if (policy) {
|
|
124
130
|
cloudfrontSignBuilder.setCustomPolicy(policy);
|
|
@@ -207,14 +213,24 @@ class CloudfrontURLParser {
|
|
|
207
213
|
class CloudfrontSignBuilder {
|
|
208
214
|
private keyPairId: string;
|
|
209
215
|
private privateKey: string | Buffer;
|
|
216
|
+
private passphrase?: string;
|
|
210
217
|
private policy: string;
|
|
211
218
|
private customPolicy = false;
|
|
212
219
|
private dateLessThan?: number | undefined;
|
|
213
220
|
private urlParser = new CloudfrontURLParser();
|
|
214
|
-
constructor({
|
|
221
|
+
constructor({
|
|
222
|
+
privateKey,
|
|
223
|
+
keyPairId,
|
|
224
|
+
passphrase,
|
|
225
|
+
}: {
|
|
226
|
+
keyPairId: string;
|
|
227
|
+
privateKey: string | Buffer;
|
|
228
|
+
passphrase?: string;
|
|
229
|
+
}) {
|
|
215
230
|
this.keyPairId = keyPairId;
|
|
216
231
|
this.privateKey = privateKey;
|
|
217
232
|
this.policy = "";
|
|
233
|
+
this.passphrase = passphrase;
|
|
218
234
|
}
|
|
219
235
|
|
|
220
236
|
private buildPolicy(args: BuildPolicyInput): Policy {
|
|
@@ -327,14 +343,14 @@ class CloudfrontSignBuilder {
|
|
|
327
343
|
};
|
|
328
344
|
}
|
|
329
345
|
|
|
330
|
-
private signData(data: string, privateKey: string | Buffer): string {
|
|
346
|
+
private signData(data: string, privateKey: string | Buffer, passphrase?: string): string {
|
|
331
347
|
const sign = createSign("RSA-SHA1");
|
|
332
348
|
sign.update(data);
|
|
333
|
-
return sign.sign(privateKey, "base64");
|
|
349
|
+
return sign.sign({ key: privateKey, passphrase }, "base64");
|
|
334
350
|
}
|
|
335
351
|
|
|
336
|
-
private signPolicy(policy: string, privateKey: string | Buffer): string {
|
|
337
|
-
return this.normalizeBase64(this.signData(policy, privateKey));
|
|
352
|
+
private signPolicy(policy: string, privateKey: string | Buffer, passphrase?: string): string {
|
|
353
|
+
return this.normalizeBase64(this.signData(policy, privateKey, passphrase));
|
|
338
354
|
}
|
|
339
355
|
|
|
340
356
|
setCustomPolicy(policy: string) {
|
|
@@ -374,7 +390,7 @@ class CloudfrontSignBuilder {
|
|
|
374
390
|
if (!Boolean(this.policy)) {
|
|
375
391
|
throw new Error("Invalid policy");
|
|
376
392
|
}
|
|
377
|
-
const signature = this.signPolicy(this.policy, this.privateKey);
|
|
393
|
+
const signature = this.signPolicy(this.policy, this.privateKey, this.passphrase);
|
|
378
394
|
return {
|
|
379
395
|
Expires: this.customPolicy ? undefined : this.dateLessThan,
|
|
380
396
|
Policy: this.customPolicy ? this.encodeToBase64(this.policy) : undefined,
|
package/tsconfig.cjs.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/tslib/tslib.d.ts","../types/dist-types/abort.d.ts","../types/dist-types/auth.d.ts","../types/dist-types/checksum.d.ts","../types/dist-types/endpoint.d.ts","../types/dist-types/logger.d.ts","../types/dist-types/http.d.ts","../types/dist-types/response.d.ts","../types/dist-types/util.d.ts","../types/dist-types/middleware.d.ts","../types/dist-types/command.d.ts","../types/dist-types/client.d.ts","../types/dist-types/identity/Identity.d.ts","../types/dist-types/identity/AnonymousIdentity.d.ts","../types/dist-types/identity/AwsCredentialIdentity.d.ts","../types/dist-types/identity/LoginIdentity.d.ts","../types/dist-types/identity/TokenIdentity.d.ts","../types/dist-types/identity/index.d.ts","../types/dist-types/credentials.d.ts","../types/dist-types/crypto.d.ts","../types/dist-types/eventStream.d.ts","../types/dist-types/pagination.d.ts","../types/dist-types/profile.d.ts","../types/dist-types/retry.d.ts","../types/dist-types/transfer.d.ts","../types/dist-types/serde.d.ts","../types/dist-types/shapes.d.ts","../types/dist-types/signature.d.ts","../types/dist-types/stream.d.ts","../types/dist-types/token.d.ts","../types/dist-types/waiter.d.ts","../types/dist-types/index.d.ts","../url-parser/dist-types/index.d.ts","./src/sign.ts","./src/index.ts","../../node_modules/@types/babel__generator/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@types/babel__core/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__core/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../node_modules/@types/chai-as-promised/index.d.ts","../../node_modules/@types/node/ts4.8/assert.d.ts","../../node_modules/@types/node/ts4.8/globals.d.ts","../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../node_modules/@types/node/ts4.8/buffer.d.ts","../../node_modules/@types/node/ts4.8/child_process.d.ts","../../node_modules/@types/node/ts4.8/cluster.d.ts","../../node_modules/@types/node/ts4.8/console.d.ts","../../node_modules/@types/node/ts4.8/constants.d.ts","../../node_modules/@types/node/ts4.8/crypto.d.ts","../../node_modules/@types/node/ts4.8/dgram.d.ts","../../node_modules/@types/node/ts4.8/dns.d.ts","../../node_modules/@types/node/ts4.8/domain.d.ts","../../node_modules/@types/node/ts4.8/events.d.ts","../../node_modules/@types/node/ts4.8/fs.d.ts","../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../node_modules/@types/node/ts4.8/http.d.ts","../../node_modules/@types/node/ts4.8/http2.d.ts","../../node_modules/@types/node/ts4.8/https.d.ts","../../node_modules/@types/node/ts4.8/inspector.d.ts","../../node_modules/@types/node/ts4.8/module.d.ts","../../node_modules/@types/node/ts4.8/net.d.ts","../../node_modules/@types/node/ts4.8/os.d.ts","../../node_modules/@types/node/ts4.8/path.d.ts","../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../node_modules/@types/node/ts4.8/process.d.ts","../../node_modules/@types/node/ts4.8/punycode.d.ts","../../node_modules/@types/node/ts4.8/querystring.d.ts","../../node_modules/@types/node/ts4.8/readline.d.ts","../../node_modules/@types/node/ts4.8/repl.d.ts","../../node_modules/@types/node/ts4.8/stream.d.ts","../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../node_modules/@types/node/ts4.8/timers.d.ts","../../node_modules/@types/node/ts4.8/tls.d.ts","../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../node_modules/@types/node/ts4.8/tty.d.ts","../../node_modules/@types/node/ts4.8/url.d.ts","../../node_modules/@types/node/ts4.8/util.d.ts","../../node_modules/@types/node/ts4.8/v8.d.ts","../../node_modules/@types/node/ts4.8/vm.d.ts","../../node_modules/@types/node/ts4.8/wasi.d.ts","../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../node_modules/@types/node/ts4.8/zlib.d.ts","../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../node_modules/@types/node/ts4.8/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/chalk/index.d.ts","../../node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/jsdom/base.d.ts","../../node_modules/@types/jsdom/ts4.0/index.d.ts","../../node_modules/@types/jsdom/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts","../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","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},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","4f1034eac6404cb69bedb8bb04cf246871d1aaebbb99d5617be54f54323464c7","6787283f0951cfd0f754513a5972671b4fa9e7b920801a664da59a9466f75b40","6a999cd8b53e061dfc91824536793090b02bf2d0a76a401043bb138218b7bcbf","1349f629828b11b27b2c17377c6e7146ec0cd2a2bd1acd91e2f4e8d08e885df5","9578e943c4c521ad6c8a14ef7718bd999021696f2686c9dd05b4fd3d9ccec6ae","f5f7aef15b83896663f619452e7cd7289c5b392d66e3a7a2c8b350043467eff7","2e04271499caec54dea75e7061de06b2549efbe1d652b9bdab2f74fd2572f61f","98f3adb0f3ecc1ba4ddbce13c935529e2ce47d49c9d8150fb43088d7c9b7ec1b","233c179ab943c8278d4bdb9339bbb752a4586807254c65f340c971f869728e75","a9367ec48d3b67800c69c890e616337935df67caad5bff99383949af561042a8","5c1a8d6754a7cceee2135728e8ce6a4f984966a2d16ff1cbed879f7527d55864","717e5230d9efcec258a44c32e9059cae1d247f181065dcf14ac9be0326de67b8","624d87d7c3f824061ccdfc3d1281b2d072b702566bd207d6062539a404dc2faf","19ed1aaecf2475afa9641870fd2b4ebd04ddafed7f12118b14548276d7080496","1e83e2b18d4bf8aa4c0f8cf87104a141fb7189c8223c001887fa508398937cd2","912b52617b549ee405c5633c673cb19b95cbe3e76f5767e8e285bd04be0d1875","363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","a986db7e35e5d91072dde730d901dbdefed4ec1860000866e5d99d1dc1707a93","ce2cc3721b1e728dc04bacd65fd1cae9d371279ee671d64065c7c4a5f6f0e283","755faacced24a8b40622b21a633ebe9b9a8d2819c3a7ebad49581dc691cccb18","1b5cdbebc6c8ba40a1f42a77862f5351335fbff405d80ee2294fccc2b4a94524","80a4392b91f32e0c71cb80f01b7061af617861326e56fe9019a595525a8972c6","2cb89647c4b26cc28514ac9173fd8131ceb1d095e59f1305be253cb161a7ecde","b14456a54e15ce24ff9e5ad3b70675b104a36eb35886e3ffaae614292c0908c4",{"version":"88d775360aff612a7f87bd1140fe97bd927858b3d4a616834e7ef99585ea6ff4","affectsGlobalScope":true},"2f7377d440f78f9e2bf08b8fc28a75a5580f17e9924ae32020a958fe68b8bcef","8a6c15bfa2a0a9e68005a53fb71b60f3769af0da81001b95e4861310e260b788","e1c3e03bea46253a244d88838f0575b242c3c91145c2291aafa3f3ae2ba38ecc","19a313067674180120f11274fc99bba7237571dfe3dca9f16c393a0a31703b1b","aaffeca0d82a3d862c5186af3ca707801e45cc8b2e7d31e430eb715648ffa839","61bb5b4d7328a484c1abc030e98d2bda69f166a517c77e6493f36d6903850e09","be1692ad8c4f71e961e22fc8c340f68c2e3d2b4d9ce1afbac49b0d91a159b8da","a35a5f637f260a51247dd95103c976ffb2cfa0002f2f6e1be6465c7b67027b40","0efa2a0e043f18e3ecda6aa1615a9209e6d44ee9b1adb46cbc225b3e5b602c4a","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669",{"version":"e9cf450600c496a87ab96d288157b79be6c193e8623bd93553d5d64755940dea","affectsGlobalScope":true},{"version":"c8a2f72f046b5efb790cc37cfe79dcf11ce8e35e7e7d9430e10e53e0aa05c7a2","affectsGlobalScope":true},"4c2c4f53e8eedd970f8afa369d7371544fb6231bf95e659f8602e09abe74d5a5",{"version":"32ddf2b046fa7269050f64a87f1f3d2db10b92ad6302460681915af1207b1222","affectsGlobalScope":true},"c2b5085f47e41d6940bbc5b0d3bd7cc0037c752efb18aecd243c9cf83ad0c0b7","3143a5add0467b83150961ecd33773b561a1207aec727002aa1d70333068eb1b","9b2a8f604e7c0482a9061755f00b287cc99bd8718dc82d8207dd74c599b6dc43","d0fc76a91c828fbe3f0be5d683273634b7b101068333ceed975a8a9ac464137b",{"version":"1a048ff164b8d9609f5de3139d4e37f6e8a82af82087ac414b9208f52ef8aac7","affectsGlobalScope":true},"3111079f3cb5f2b9c812ca3f46161562bce5bfb355e915f46ed46c41714dc1c3","db86f82fac051ae344b47e8fe7ac7990174b41db79b2b220a49dc5a47c71a9b5","b32b6b16cb0bda68199582ad6f22242d07ee75fac9b1f28a98cd838afc5eea45","4441ee4119824bfaebc49308559edd7545978f9cb41a40f115074e1031dde75f",{"version":"60693a88462d0e97900123b5bf7c73e146ce0cc94da46a61fe6775b430d2ff05","affectsGlobalScope":true},{"version":"588c69eda58b9202676ec7ca11a72c3762819b46a0ed72462c769846153c447c","affectsGlobalScope":true},"ae064ed4f855716b7ff348639ddcd6a6d354a72fae82f506608a7dc9266aa24c","92f019c55b21c939616f6a48f678e714ac7b109444cbbf23ad69310ce66ecbdc","cf0a69c71aedf2f8fe45925abd554fd3dc7301ce66d6ab7521fb8c3471c24dd8","56e6722c6013609b3e5e6ed4a8a7e01f41da6c5e3d6f0ecff3d09ef7a81414cf","3924e8b900c717cb4ddf663d996e0bc0918f01b2c2e8dccaa94e59a8ae6912ec","f614c3f61e46ccc2cb58702d5a158338ea57ee09099fde5db4cfc63ed0ce4d74","44e42ed6ec9c4451ebe89524e80ac8564e9dd0988c56e6c58f393c810730595d","d79fda68cbfb361c4ee9cd9ea169babb65887534d64017726cd01f54783d20a5","155865f5f76db0996cd5e20cc5760613ea170ee5ad594c1f3d76fcaa05382161","e92852d673c836fc64e10c38640abcd67c463456e5df55723ac699b8e6ab3a8a","4455c78d226d061b1203c7614c6c6eb5f4f9db5f00d44ff47d0112de8766fbc4",{"version":"ec369bb9d97c4dc09dd2a4093b7ca3ba69ad284831fccac8a1977785e9e38ce5","affectsGlobalScope":true},"4465a636f5f6e9665a90e30691862c9e0a3ac2edc0e66296704f10865e924f2a","9af781f03d44f5635ed7844be0ce370d9d595d4b4ec67cad88f0fac03255257e","f9fd4c3ef6de27fa0e256f4e75b61711c4be05a3399f7714621d3edc832e36b0","e49290b7a927995c0d7e6b2b9c8296284b68a9036d9966531de65185269258d7","c3689f70ce7563c2299f2dcb3c72efdf6f87ae510e7456fa6223c767d0ca99fc","874ca809b79276460011480a2829f4c8d4db29416dd411f71efbf8f497f0ac09","6c903bceaf3f3bc04f2d4c7dcd89ce9fb148b3ba0a5f5408d8f6de2b7eecc7ea","504d049d9e550a65466b73ca39da6469ab41786074ea1d16d37c8853f9f6ab2e","23a28f834a078986bbf58f4e3705956983ff81c3c2493f3db3e5f0e8a9507779","4febdf7f3ec92706c58e0b4e8159cd6de718284ef384260b07c9641c13fc70ce",{"version":"eabefc2999c1489cf870e0c85af908900462fa245822d9a4616780a1a129945d","affectsGlobalScope":true},"7335933d9f30dcfd2c4b6080a8b78e81912a7fcefb1dafccb67ca4cb4b3ac23d","a6bfe9de9adef749010c118104b071d14943802ff0614732b47ce4f1c3e383cd","4c3d0e10396646db4a1e917fb852077ee77ae62e512913bef9cccc2bb0f8bd0e","3b220849d58140dcc6718f5b52dcd29fdb79c45bc28f561cbd29eb1cac6cce13","0ee22fce41f7417a24c808d266e91b850629113c104713a35854393d55994beb","22d1b1d965baba05766613e2e6c753bb005d4386c448cafd72c309ba689e8c24",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"01c93adfc4c6555c559e7334b6b5f45b48c9e1f809144822088e45ba13e36d9f","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","2d474dfb84cd28ea43f27fe684da8c00382cbd40cee45e1dad4e9f41f6c437b6","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"61b60d145059c3c8e3c7b484713191b6d0b70999bcb11f2b26286b15926a2b5f","affectsGlobalScope":true},"5171627120eeb3a7e8afb8ed04ea9be7f0b53ba09bb1fc95172483e0fbb0740c","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","7980bf9d2972585cdf76b5a72105f7817be0723ccb2256090f6335f45b462abe","301d7466eb591139c7d456958f732153b3400f3243f68d3321956b43a64769e9","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2",{"version":"2abad7477cf6761b55c18bea4c21b5a5dcf319748c13696df3736b35f8ac149e","affectsGlobalScope":true},"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","96b49a9de749afcf92b5bce1d8cc42cfae6816cdf5ea36584fd9256b8b2e5292","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1","3845d3b64286c12c60d39fc90ac1cc5e47cbc951530658d2567d578b2faa1f26"],"options":{"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":1,"noEmitHelpers":true,"noFallthroughCasesInSwitch":true,"outDir":"./dist-cjs","preserveConstEnums":true,"removeComments":true,"rootDir":"./src","strict":true,"target":5,"useUnknownInCatchVariables":false},"fileIdsList":[[135,144,145,146],[144,145,146],[64,65,67,70,72,144,145,146],[64,144,145,146],[64,67,144,145,146],[74,144,145,146],[91,119,144,145,146],[122,124,144,145,146],[121,122,123,144,145,146],[88,91,119,126,127,144,145,146],[89,119,144,145,146],[131,144,145,146],[132,144,145,146],[137,139,144,145,146],[88,114,119,142,143,145,146],[144,145],[144,146],[144,145,146,148,150,151,152,153,154,155,156,157,158,159,160],[144,145,146,148,149,151,152,153,154,155,156,157,158,159,160],[144,145,146,149,150,151,152,153,154,155,156,157,158,159,160],[144,145,146,148,149,150,152,153,154,155,156,157,158,159,160],[144,145,146,148,149,150,151,153,154,155,156,157,158,159,160],[144,145,146,148,149,150,151,152,154,155,156,157,158,159,160],[144,145,146,148,149,150,151,152,153,155,156,157,158,159,160],[144,145,146,148,149,150,151,152,153,154,156,157,158,159,160],[144,145,146,148,149,150,151,152,153,154,155,157,158,159,160],[144,145,146,148,149,150,151,152,153,154,155,156,158,159,160],[144,145,146,148,149,150,151,152,153,154,155,156,157,159,160],[144,145,146,148,149,150,151,152,153,154,155,156,157,158,160],[144,145,146,148,149,150,151,152,153,154,155,156,157,158,159],[76,144,145,146],[78,144,145,146],[79,84,144,145,146],[80,88,89,96,105,144,145,146],[80,81,88,96,144,145,146],[82,112,144,145,146],[83,84,89,97,144,145,146],[84,105,144,145,146],[85,86,88,96,144,145,146],[86,144,145,146],[87,88,144,145,146],[88,144,145,146],[88,89,90,105,111,144,145,146],[89,90,144,145,146],[91,96,105,111,144,145,146],[88,89,91,92,96,105,108,111,144,145,146],[91,93,105,108,111,144,145,146],[76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,144,145,146],[88,94,144,145,146],[95,111,144,145,146],[86,88,96,105,144,145,146],[97,144,145,146],[98,144,145,146],[78,99,144,145,146],[100,110,144,145,146],[101,144,145,146],[102,144,145,146],[88,103,144,145,146],[103,104,112,114,144,145,146],[88,105,144,145,146],[106,144,145,146],[107,144,145,146],[96,105,108,144,145,146],[109,144,145,146],[96,110,144,145,146],[102,111,144,145,146],[112,144,145,146],[105,113,144,145,146],[114,144,145,146],[115,144,145,146],[88,90,105,111,114,116,144,145,146],[105,117,144,145,146],[141,144,145,146],[142,144,145,146],[88,91,93,96,105,108,111,117,119,144,145,146],[144,145,146,169],[88,105,119,144,145,146],[137,144,145,146],[134,138,144,145,146],[136,144,145,146],[29,62,144,145,146],[29,61,84,144,145,146],[36,38,39,144,145,146],[36,38,144,145,146],[37,46,144,145,146],[31,144,145,146],[35,36,38,144,145,146],[30,144,145,146],[41,144,145,146],[41,42,43,44,45,144,145,146],[30,31,32,33,34,35,36,37,38,39,40,46,47,48,49,50,51,52,53,54,55,56,57,58,59,144,145,146],[31,33,34,37,144,145,146],[40,144,145,146],[35,37,53,144,145,146],[35,36,144,145,146],[35,144,145,146],[37,48,144,145,146],[60,144,145,146]],"referencedMap":[[136,1],[135,2],[73,3],[67,4],[66,2],[65,4],[64,2],[70,5],[68,4],[69,2],[72,4],[71,2],[75,6],[74,2],[120,7],[125,8],[121,2],[124,9],[122,2],[128,10],[129,11],[130,11],[131,2],[132,12],[133,13],[140,14],[144,15],[146,16],[145,17],[123,2],[147,2],[149,18],[150,19],[148,20],[151,21],[152,22],[153,23],[154,24],[155,25],[156,26],[157,27],[158,28],[159,29],[160,30],[161,2],[162,2],[76,31],[78,32],[79,33],[80,34],[81,35],[82,36],[83,37],[84,38],[85,39],[86,40],[87,41],[88,42],[89,43],[90,44],[77,2],[118,2],[91,45],[92,46],[93,47],[119,48],[94,49],[95,50],[96,51],[97,52],[98,53],[99,54],[100,55],[101,56],[102,57],[103,58],[104,59],[105,60],[106,61],[107,62],[108,63],[109,64],[110,65],[111,66],[112,67],[113,68],[114,69],[115,70],[116,71],[117,72],[163,2],[164,2],[142,73],[141,74],[165,2],[127,2],[126,2],[166,2],[143,2],[167,2],[168,75],[169,2],[170,76],[171,77],[134,2],[138,78],[139,79],[137,80],[29,2],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[63,81],[62,82],[30,2],[31,2],[32,2],[40,83],[39,84],[47,85],[48,2],[33,86],[49,87],[35,88],[42,89],[43,89],[41,2],[44,89],[45,89],[46,90],[60,91],[34,2],[38,92],[50,93],[51,2],[36,2],[52,2],[54,94],[55,95],[56,96],[57,97],[58,85],[53,2],[37,87],[59,88],[61,98]],"exportedModulesMap":[[136,1],[135,2],[73,3],[67,4],[66,2],[65,4],[64,2],[70,5],[68,4],[69,2],[72,4],[71,2],[75,6],[74,2],[120,7],[125,8],[121,2],[124,9],[122,2],[128,10],[129,11],[130,11],[131,2],[132,12],[133,13],[140,14],[144,15],[146,16],[145,17],[123,2],[147,2],[149,18],[150,19],[148,20],[151,21],[152,22],[153,23],[154,24],[155,25],[156,26],[157,27],[158,28],[159,29],[160,30],[161,2],[162,2],[76,31],[78,32],[79,33],[80,34],[81,35],[82,36],[83,37],[84,38],[85,39],[86,40],[87,41],[88,42],[89,43],[90,44],[77,2],[118,2],[91,45],[92,46],[93,47],[119,48],[94,49],[95,50],[96,51],[97,52],[98,53],[99,54],[100,55],[101,56],[102,57],[103,58],[104,59],[105,60],[106,61],[107,62],[108,63],[109,64],[110,65],[111,66],[112,67],[113,68],[114,69],[115,70],[116,71],[117,72],[163,2],[164,2],[142,73],[141,74],[165,2],[127,2],[126,2],[166,2],[143,2],[167,2],[168,75],[169,2],[170,76],[171,77],[134,2],[138,78],[139,79],[137,80],[29,2],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[63,81],[62,82],[30,2],[31,2],[32,2],[40,83],[39,84],[47,85],[48,2],[33,86],[49,87],[35,88],[42,89],[43,89],[41,2],[44,89],[45,89],[46,90],[60,91],[34,2],[38,92],[50,93],[51,2],[36,2],[52,2],[54,94],[55,95],[56,96],[57,97],[58,85],[53,2],[37,87],[59,88],[61,98]],"semanticDiagnosticsPerFile":[136,135,73,67,66,65,64,70,68,69,72,71,75,74,120,125,121,124,122,128,129,130,131,132,133,140,144,146,145,123,147,149,150,148,151,152,153,154,155,156,157,158,159,160,161,162,76,78,79,80,81,82,83,84,85,86,87,88,89,90,77,118,91,92,93,119,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,163,164,142,141,165,127,126,166,143,167,168,169,170,171,134,138,139,137,29,6,8,7,2,9,10,11,12,13,14,15,16,3,4,20,17,18,19,21,22,23,5,24,25,26,27,1,28,63,62,30,31,32,40,39,47,48,33,49,35,42,43,41,44,45,46,60,34,38,50,51,36,52,54,55,56,57,58,53,37,59,61]},"version":"4.6.2"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/tslib/tslib.d.ts","../types/dist-types/abort.d.ts","../types/dist-types/auth.d.ts","../types/dist-types/checksum.d.ts","../types/dist-types/endpoint.d.ts","../types/dist-types/logger.d.ts","../types/dist-types/http.d.ts","../types/dist-types/response.d.ts","../types/dist-types/util.d.ts","../types/dist-types/middleware.d.ts","../types/dist-types/command.d.ts","../types/dist-types/client.d.ts","../types/dist-types/identity/Identity.d.ts","../types/dist-types/identity/AnonymousIdentity.d.ts","../types/dist-types/identity/AwsCredentialIdentity.d.ts","../types/dist-types/identity/LoginIdentity.d.ts","../types/dist-types/identity/TokenIdentity.d.ts","../types/dist-types/identity/index.d.ts","../types/dist-types/credentials.d.ts","../types/dist-types/crypto.d.ts","../types/dist-types/eventStream.d.ts","../types/dist-types/pagination.d.ts","../types/dist-types/profile.d.ts","../types/dist-types/retry.d.ts","../types/dist-types/transfer.d.ts","../types/dist-types/serde.d.ts","../types/dist-types/shapes.d.ts","../types/dist-types/signature.d.ts","../types/dist-types/stream.d.ts","../types/dist-types/token.d.ts","../types/dist-types/waiter.d.ts","../types/dist-types/index.d.ts","../url-parser/dist-types/index.d.ts","./src/sign.ts","./src/index.ts","../../node_modules/@types/babel__generator/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@types/babel__core/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__core/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../node_modules/@types/chai-as-promised/index.d.ts","../../node_modules/@types/node/ts4.8/assert.d.ts","../../node_modules/@types/node/ts4.8/globals.d.ts","../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../node_modules/@types/node/ts4.8/buffer.d.ts","../../node_modules/@types/node/ts4.8/child_process.d.ts","../../node_modules/@types/node/ts4.8/cluster.d.ts","../../node_modules/@types/node/ts4.8/console.d.ts","../../node_modules/@types/node/ts4.8/constants.d.ts","../../node_modules/@types/node/ts4.8/crypto.d.ts","../../node_modules/@types/node/ts4.8/dgram.d.ts","../../node_modules/@types/node/ts4.8/dns.d.ts","../../node_modules/@types/node/ts4.8/domain.d.ts","../../node_modules/@types/node/ts4.8/events.d.ts","../../node_modules/@types/node/ts4.8/fs.d.ts","../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../node_modules/@types/node/ts4.8/http.d.ts","../../node_modules/@types/node/ts4.8/http2.d.ts","../../node_modules/@types/node/ts4.8/https.d.ts","../../node_modules/@types/node/ts4.8/inspector.d.ts","../../node_modules/@types/node/ts4.8/module.d.ts","../../node_modules/@types/node/ts4.8/net.d.ts","../../node_modules/@types/node/ts4.8/os.d.ts","../../node_modules/@types/node/ts4.8/path.d.ts","../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../node_modules/@types/node/ts4.8/process.d.ts","../../node_modules/@types/node/ts4.8/punycode.d.ts","../../node_modules/@types/node/ts4.8/querystring.d.ts","../../node_modules/@types/node/ts4.8/readline.d.ts","../../node_modules/@types/node/ts4.8/repl.d.ts","../../node_modules/@types/node/ts4.8/stream.d.ts","../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../node_modules/@types/node/ts4.8/timers.d.ts","../../node_modules/@types/node/ts4.8/tls.d.ts","../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../node_modules/@types/node/ts4.8/tty.d.ts","../../node_modules/@types/node/ts4.8/url.d.ts","../../node_modules/@types/node/ts4.8/util.d.ts","../../node_modules/@types/node/ts4.8/v8.d.ts","../../node_modules/@types/node/ts4.8/vm.d.ts","../../node_modules/@types/node/ts4.8/wasi.d.ts","../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../node_modules/@types/node/ts4.8/zlib.d.ts","../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../node_modules/@types/node/ts4.8/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/chalk/index.d.ts","../../node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/jsdom/base.d.ts","../../node_modules/@types/jsdom/ts4.0/index.d.ts","../../node_modules/@types/jsdom/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts","../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","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},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","4f1034eac6404cb69bedb8bb04cf246871d1aaebbb99d5617be54f54323464c7","6787283f0951cfd0f754513a5972671b4fa9e7b920801a664da59a9466f75b40","6a999cd8b53e061dfc91824536793090b02bf2d0a76a401043bb138218b7bcbf","1349f629828b11b27b2c17377c6e7146ec0cd2a2bd1acd91e2f4e8d08e885df5","9578e943c4c521ad6c8a14ef7718bd999021696f2686c9dd05b4fd3d9ccec6ae","f5f7aef15b83896663f619452e7cd7289c5b392d66e3a7a2c8b350043467eff7","2e04271499caec54dea75e7061de06b2549efbe1d652b9bdab2f74fd2572f61f","98f3adb0f3ecc1ba4ddbce13c935529e2ce47d49c9d8150fb43088d7c9b7ec1b","233c179ab943c8278d4bdb9339bbb752a4586807254c65f340c971f869728e75","a9367ec48d3b67800c69c890e616337935df67caad5bff99383949af561042a8","5c1a8d6754a7cceee2135728e8ce6a4f984966a2d16ff1cbed879f7527d55864","717e5230d9efcec258a44c32e9059cae1d247f181065dcf14ac9be0326de67b8","624d87d7c3f824061ccdfc3d1281b2d072b702566bd207d6062539a404dc2faf","19ed1aaecf2475afa9641870fd2b4ebd04ddafed7f12118b14548276d7080496","1e83e2b18d4bf8aa4c0f8cf87104a141fb7189c8223c001887fa508398937cd2","912b52617b549ee405c5633c673cb19b95cbe3e76f5767e8e285bd04be0d1875","363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","a986db7e35e5d91072dde730d901dbdefed4ec1860000866e5d99d1dc1707a93","ce2cc3721b1e728dc04bacd65fd1cae9d371279ee671d64065c7c4a5f6f0e283","755faacced24a8b40622b21a633ebe9b9a8d2819c3a7ebad49581dc691cccb18","1b5cdbebc6c8ba40a1f42a77862f5351335fbff405d80ee2294fccc2b4a94524","80a4392b91f32e0c71cb80f01b7061af617861326e56fe9019a595525a8972c6","2cb89647c4b26cc28514ac9173fd8131ceb1d095e59f1305be253cb161a7ecde","b14456a54e15ce24ff9e5ad3b70675b104a36eb35886e3ffaae614292c0908c4",{"version":"88d775360aff612a7f87bd1140fe97bd927858b3d4a616834e7ef99585ea6ff4","affectsGlobalScope":true},"2f7377d440f78f9e2bf08b8fc28a75a5580f17e9924ae32020a958fe68b8bcef","8a6c15bfa2a0a9e68005a53fb71b60f3769af0da81001b95e4861310e260b788","e1c3e03bea46253a244d88838f0575b242c3c91145c2291aafa3f3ae2ba38ecc","19a313067674180120f11274fc99bba7237571dfe3dca9f16c393a0a31703b1b","aaffeca0d82a3d862c5186af3ca707801e45cc8b2e7d31e430eb715648ffa839","61bb5b4d7328a484c1abc030e98d2bda69f166a517c77e6493f36d6903850e09","be1692ad8c4f71e961e22fc8c340f68c2e3d2b4d9ce1afbac49b0d91a159b8da","4095dc9b360fbdda68075558a9cfe70eec0b468e0fa94f67001cad37bc4c776b","0efa2a0e043f18e3ecda6aa1615a9209e6d44ee9b1adb46cbc225b3e5b602c4a","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669",{"version":"e9cf450600c496a87ab96d288157b79be6c193e8623bd93553d5d64755940dea","affectsGlobalScope":true},{"version":"c8a2f72f046b5efb790cc37cfe79dcf11ce8e35e7e7d9430e10e53e0aa05c7a2","affectsGlobalScope":true},"4c2c4f53e8eedd970f8afa369d7371544fb6231bf95e659f8602e09abe74d5a5",{"version":"32ddf2b046fa7269050f64a87f1f3d2db10b92ad6302460681915af1207b1222","affectsGlobalScope":true},"c2b5085f47e41d6940bbc5b0d3bd7cc0037c752efb18aecd243c9cf83ad0c0b7","3143a5add0467b83150961ecd33773b561a1207aec727002aa1d70333068eb1b","9b2a8f604e7c0482a9061755f00b287cc99bd8718dc82d8207dd74c599b6dc43","d0fc76a91c828fbe3f0be5d683273634b7b101068333ceed975a8a9ac464137b",{"version":"1a048ff164b8d9609f5de3139d4e37f6e8a82af82087ac414b9208f52ef8aac7","affectsGlobalScope":true},"3111079f3cb5f2b9c812ca3f46161562bce5bfb355e915f46ed46c41714dc1c3","db86f82fac051ae344b47e8fe7ac7990174b41db79b2b220a49dc5a47c71a9b5","b32b6b16cb0bda68199582ad6f22242d07ee75fac9b1f28a98cd838afc5eea45","4441ee4119824bfaebc49308559edd7545978f9cb41a40f115074e1031dde75f",{"version":"60693a88462d0e97900123b5bf7c73e146ce0cc94da46a61fe6775b430d2ff05","affectsGlobalScope":true},{"version":"588c69eda58b9202676ec7ca11a72c3762819b46a0ed72462c769846153c447c","affectsGlobalScope":true},"ae064ed4f855716b7ff348639ddcd6a6d354a72fae82f506608a7dc9266aa24c","92f019c55b21c939616f6a48f678e714ac7b109444cbbf23ad69310ce66ecbdc","cf0a69c71aedf2f8fe45925abd554fd3dc7301ce66d6ab7521fb8c3471c24dd8","56e6722c6013609b3e5e6ed4a8a7e01f41da6c5e3d6f0ecff3d09ef7a81414cf","3924e8b900c717cb4ddf663d996e0bc0918f01b2c2e8dccaa94e59a8ae6912ec","f614c3f61e46ccc2cb58702d5a158338ea57ee09099fde5db4cfc63ed0ce4d74","44e42ed6ec9c4451ebe89524e80ac8564e9dd0988c56e6c58f393c810730595d","d79fda68cbfb361c4ee9cd9ea169babb65887534d64017726cd01f54783d20a5","155865f5f76db0996cd5e20cc5760613ea170ee5ad594c1f3d76fcaa05382161","e92852d673c836fc64e10c38640abcd67c463456e5df55723ac699b8e6ab3a8a","4455c78d226d061b1203c7614c6c6eb5f4f9db5f00d44ff47d0112de8766fbc4",{"version":"ec369bb9d97c4dc09dd2a4093b7ca3ba69ad284831fccac8a1977785e9e38ce5","affectsGlobalScope":true},"4465a636f5f6e9665a90e30691862c9e0a3ac2edc0e66296704f10865e924f2a","9af781f03d44f5635ed7844be0ce370d9d595d4b4ec67cad88f0fac03255257e","f9fd4c3ef6de27fa0e256f4e75b61711c4be05a3399f7714621d3edc832e36b0","e49290b7a927995c0d7e6b2b9c8296284b68a9036d9966531de65185269258d7","c3689f70ce7563c2299f2dcb3c72efdf6f87ae510e7456fa6223c767d0ca99fc","874ca809b79276460011480a2829f4c8d4db29416dd411f71efbf8f497f0ac09","6c903bceaf3f3bc04f2d4c7dcd89ce9fb148b3ba0a5f5408d8f6de2b7eecc7ea","504d049d9e550a65466b73ca39da6469ab41786074ea1d16d37c8853f9f6ab2e","23a28f834a078986bbf58f4e3705956983ff81c3c2493f3db3e5f0e8a9507779","4febdf7f3ec92706c58e0b4e8159cd6de718284ef384260b07c9641c13fc70ce",{"version":"eabefc2999c1489cf870e0c85af908900462fa245822d9a4616780a1a129945d","affectsGlobalScope":true},"7335933d9f30dcfd2c4b6080a8b78e81912a7fcefb1dafccb67ca4cb4b3ac23d","a6bfe9de9adef749010c118104b071d14943802ff0614732b47ce4f1c3e383cd","4c3d0e10396646db4a1e917fb852077ee77ae62e512913bef9cccc2bb0f8bd0e","3b220849d58140dcc6718f5b52dcd29fdb79c45bc28f561cbd29eb1cac6cce13","0ee22fce41f7417a24c808d266e91b850629113c104713a35854393d55994beb","22d1b1d965baba05766613e2e6c753bb005d4386c448cafd72c309ba689e8c24",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"01c93adfc4c6555c559e7334b6b5f45b48c9e1f809144822088e45ba13e36d9f","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","2d474dfb84cd28ea43f27fe684da8c00382cbd40cee45e1dad4e9f41f6c437b6","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"61b60d145059c3c8e3c7b484713191b6d0b70999bcb11f2b26286b15926a2b5f","affectsGlobalScope":true},"5171627120eeb3a7e8afb8ed04ea9be7f0b53ba09bb1fc95172483e0fbb0740c","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","7980bf9d2972585cdf76b5a72105f7817be0723ccb2256090f6335f45b462abe","301d7466eb591139c7d456958f732153b3400f3243f68d3321956b43a64769e9","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2",{"version":"2abad7477cf6761b55c18bea4c21b5a5dcf319748c13696df3736b35f8ac149e","affectsGlobalScope":true},"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","96b49a9de749afcf92b5bce1d8cc42cfae6816cdf5ea36584fd9256b8b2e5292","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1","3845d3b64286c12c60d39fc90ac1cc5e47cbc951530658d2567d578b2faa1f26"],"options":{"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":1,"noEmitHelpers":true,"noFallthroughCasesInSwitch":true,"outDir":"./dist-cjs","preserveConstEnums":true,"removeComments":true,"rootDir":"./src","strict":true,"target":5,"useUnknownInCatchVariables":false},"fileIdsList":[[135,144,145,146],[144,145,146],[64,65,67,70,72,144,145,146],[64,144,145,146],[64,67,144,145,146],[74,144,145,146],[91,119,144,145,146],[122,124,144,145,146],[121,122,123,144,145,146],[88,91,119,126,127,144,145,146],[89,119,144,145,146],[131,144,145,146],[132,144,145,146],[137,139,144,145,146],[88,114,119,142,143,145,146],[144,145],[144,146],[144,145,146,148,150,151,152,153,154,155,156,157,158,159,160],[144,145,146,148,149,151,152,153,154,155,156,157,158,159,160],[144,145,146,149,150,151,152,153,154,155,156,157,158,159,160],[144,145,146,148,149,150,152,153,154,155,156,157,158,159,160],[144,145,146,148,149,150,151,153,154,155,156,157,158,159,160],[144,145,146,148,149,150,151,152,154,155,156,157,158,159,160],[144,145,146,148,149,150,151,152,153,155,156,157,158,159,160],[144,145,146,148,149,150,151,152,153,154,156,157,158,159,160],[144,145,146,148,149,150,151,152,153,154,155,157,158,159,160],[144,145,146,148,149,150,151,152,153,154,155,156,158,159,160],[144,145,146,148,149,150,151,152,153,154,155,156,157,159,160],[144,145,146,148,149,150,151,152,153,154,155,156,157,158,160],[144,145,146,148,149,150,151,152,153,154,155,156,157,158,159],[76,144,145,146],[78,144,145,146],[79,84,144,145,146],[80,88,89,96,105,144,145,146],[80,81,88,96,144,145,146],[82,112,144,145,146],[83,84,89,97,144,145,146],[84,105,144,145,146],[85,86,88,96,144,145,146],[86,144,145,146],[87,88,144,145,146],[88,144,145,146],[88,89,90,105,111,144,145,146],[89,90,144,145,146],[91,96,105,111,144,145,146],[88,89,91,92,96,105,108,111,144,145,146],[91,93,105,108,111,144,145,146],[76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,144,145,146],[88,94,144,145,146],[95,111,144,145,146],[86,88,96,105,144,145,146],[97,144,145,146],[98,144,145,146],[78,99,144,145,146],[100,110,144,145,146],[101,144,145,146],[102,144,145,146],[88,103,144,145,146],[103,104,112,114,144,145,146],[88,105,144,145,146],[106,144,145,146],[107,144,145,146],[96,105,108,144,145,146],[109,144,145,146],[96,110,144,145,146],[102,111,144,145,146],[112,144,145,146],[105,113,144,145,146],[114,144,145,146],[115,144,145,146],[88,90,105,111,114,116,144,145,146],[105,117,144,145,146],[141,144,145,146],[142,144,145,146],[88,91,93,96,105,108,111,117,119,144,145,146],[144,145,146,169],[88,105,119,144,145,146],[137,144,145,146],[134,138,144,145,146],[136,144,145,146],[29,62,144,145,146],[29,61,84,144,145,146],[36,38,39,144,145,146],[36,38,144,145,146],[37,46,144,145,146],[31,144,145,146],[35,36,38,144,145,146],[30,144,145,146],[41,144,145,146],[41,42,43,44,45,144,145,146],[30,31,32,33,34,35,36,37,38,39,40,46,47,48,49,50,51,52,53,54,55,56,57,58,59,144,145,146],[31,33,34,37,144,145,146],[40,144,145,146],[35,37,53,144,145,146],[35,36,144,145,146],[35,144,145,146],[37,48,144,145,146],[60,144,145,146]],"referencedMap":[[136,1],[135,2],[73,3],[67,4],[66,2],[65,4],[64,2],[70,5],[68,4],[69,2],[72,4],[71,2],[75,6],[74,2],[120,7],[125,8],[121,2],[124,9],[122,2],[128,10],[129,11],[130,11],[131,2],[132,12],[133,13],[140,14],[144,15],[146,16],[145,17],[123,2],[147,2],[149,18],[150,19],[148,20],[151,21],[152,22],[153,23],[154,24],[155,25],[156,26],[157,27],[158,28],[159,29],[160,30],[161,2],[162,2],[76,31],[78,32],[79,33],[80,34],[81,35],[82,36],[83,37],[84,38],[85,39],[86,40],[87,41],[88,42],[89,43],[90,44],[77,2],[118,2],[91,45],[92,46],[93,47],[119,48],[94,49],[95,50],[96,51],[97,52],[98,53],[99,54],[100,55],[101,56],[102,57],[103,58],[104,59],[105,60],[106,61],[107,62],[108,63],[109,64],[110,65],[111,66],[112,67],[113,68],[114,69],[115,70],[116,71],[117,72],[163,2],[164,2],[142,73],[141,74],[165,2],[127,2],[126,2],[166,2],[143,2],[167,2],[168,75],[169,2],[170,76],[171,77],[134,2],[138,78],[139,79],[137,80],[29,2],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[63,81],[62,82],[30,2],[31,2],[32,2],[40,83],[39,84],[47,85],[48,2],[33,86],[49,87],[35,88],[42,89],[43,89],[41,2],[44,89],[45,89],[46,90],[60,91],[34,2],[38,92],[50,93],[51,2],[36,2],[52,2],[54,94],[55,95],[56,96],[57,97],[58,85],[53,2],[37,87],[59,88],[61,98]],"exportedModulesMap":[[136,1],[135,2],[73,3],[67,4],[66,2],[65,4],[64,2],[70,5],[68,4],[69,2],[72,4],[71,2],[75,6],[74,2],[120,7],[125,8],[121,2],[124,9],[122,2],[128,10],[129,11],[130,11],[131,2],[132,12],[133,13],[140,14],[144,15],[146,16],[145,17],[123,2],[147,2],[149,18],[150,19],[148,20],[151,21],[152,22],[153,23],[154,24],[155,25],[156,26],[157,27],[158,28],[159,29],[160,30],[161,2],[162,2],[76,31],[78,32],[79,33],[80,34],[81,35],[82,36],[83,37],[84,38],[85,39],[86,40],[87,41],[88,42],[89,43],[90,44],[77,2],[118,2],[91,45],[92,46],[93,47],[119,48],[94,49],[95,50],[96,51],[97,52],[98,53],[99,54],[100,55],[101,56],[102,57],[103,58],[104,59],[105,60],[106,61],[107,62],[108,63],[109,64],[110,65],[111,66],[112,67],[113,68],[114,69],[115,70],[116,71],[117,72],[163,2],[164,2],[142,73],[141,74],[165,2],[127,2],[126,2],[166,2],[143,2],[167,2],[168,75],[169,2],[170,76],[171,77],[134,2],[138,78],[139,79],[137,80],[29,2],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[63,81],[62,82],[30,2],[31,2],[32,2],[40,83],[39,84],[47,85],[48,2],[33,86],[49,87],[35,88],[42,89],[43,89],[41,2],[44,89],[45,89],[46,90],[60,91],[34,2],[38,92],[50,93],[51,2],[36,2],[52,2],[54,94],[55,95],[56,96],[57,97],[58,85],[53,2],[37,87],[59,88],[61,98]],"semanticDiagnosticsPerFile":[136,135,73,67,66,65,64,70,68,69,72,71,75,74,120,125,121,124,122,128,129,130,131,132,133,140,144,146,145,123,147,149,150,148,151,152,153,154,155,156,157,158,159,160,161,162,76,78,79,80,81,82,83,84,85,86,87,88,89,90,77,118,91,92,93,119,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,163,164,142,141,165,127,126,166,143,167,168,169,170,171,134,138,139,137,29,6,8,7,2,9,10,11,12,13,14,15,16,3,4,20,17,18,19,21,22,23,5,24,25,26,27,1,28,63,62,30,31,32,40,39,47,48,33,49,35,42,43,41,44,45,46,60,34,38,50,51,36,52,54,55,56,57,58,53,37,59,61]},"version":"4.6.2"}
|
package/tsconfig.es.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/tslib/tslib.d.ts","../types/dist-types/abort.d.ts","../types/dist-types/auth.d.ts","../types/dist-types/checksum.d.ts","../types/dist-types/endpoint.d.ts","../types/dist-types/logger.d.ts","../types/dist-types/http.d.ts","../types/dist-types/response.d.ts","../types/dist-types/util.d.ts","../types/dist-types/middleware.d.ts","../types/dist-types/command.d.ts","../types/dist-types/client.d.ts","../types/dist-types/identity/Identity.d.ts","../types/dist-types/identity/AnonymousIdentity.d.ts","../types/dist-types/identity/AwsCredentialIdentity.d.ts","../types/dist-types/identity/LoginIdentity.d.ts","../types/dist-types/identity/TokenIdentity.d.ts","../types/dist-types/identity/index.d.ts","../types/dist-types/credentials.d.ts","../types/dist-types/crypto.d.ts","../types/dist-types/eventStream.d.ts","../types/dist-types/pagination.d.ts","../types/dist-types/profile.d.ts","../types/dist-types/retry.d.ts","../types/dist-types/transfer.d.ts","../types/dist-types/serde.d.ts","../types/dist-types/shapes.d.ts","../types/dist-types/signature.d.ts","../types/dist-types/stream.d.ts","../types/dist-types/token.d.ts","../types/dist-types/waiter.d.ts","../types/dist-types/index.d.ts","../url-parser/dist-types/index.d.ts","./src/sign.ts","./src/index.ts","../../node_modules/@types/babel__generator/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@types/babel__core/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__core/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../node_modules/@types/chai-as-promised/index.d.ts","../../node_modules/@types/node/ts4.8/assert.d.ts","../../node_modules/@types/node/ts4.8/globals.d.ts","../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../node_modules/@types/node/ts4.8/buffer.d.ts","../../node_modules/@types/node/ts4.8/child_process.d.ts","../../node_modules/@types/node/ts4.8/cluster.d.ts","../../node_modules/@types/node/ts4.8/console.d.ts","../../node_modules/@types/node/ts4.8/constants.d.ts","../../node_modules/@types/node/ts4.8/crypto.d.ts","../../node_modules/@types/node/ts4.8/dgram.d.ts","../../node_modules/@types/node/ts4.8/dns.d.ts","../../node_modules/@types/node/ts4.8/domain.d.ts","../../node_modules/@types/node/ts4.8/events.d.ts","../../node_modules/@types/node/ts4.8/fs.d.ts","../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../node_modules/@types/node/ts4.8/http.d.ts","../../node_modules/@types/node/ts4.8/http2.d.ts","../../node_modules/@types/node/ts4.8/https.d.ts","../../node_modules/@types/node/ts4.8/inspector.d.ts","../../node_modules/@types/node/ts4.8/module.d.ts","../../node_modules/@types/node/ts4.8/net.d.ts","../../node_modules/@types/node/ts4.8/os.d.ts","../../node_modules/@types/node/ts4.8/path.d.ts","../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../node_modules/@types/node/ts4.8/process.d.ts","../../node_modules/@types/node/ts4.8/punycode.d.ts","../../node_modules/@types/node/ts4.8/querystring.d.ts","../../node_modules/@types/node/ts4.8/readline.d.ts","../../node_modules/@types/node/ts4.8/repl.d.ts","../../node_modules/@types/node/ts4.8/stream.d.ts","../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../node_modules/@types/node/ts4.8/timers.d.ts","../../node_modules/@types/node/ts4.8/tls.d.ts","../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../node_modules/@types/node/ts4.8/tty.d.ts","../../node_modules/@types/node/ts4.8/url.d.ts","../../node_modules/@types/node/ts4.8/util.d.ts","../../node_modules/@types/node/ts4.8/v8.d.ts","../../node_modules/@types/node/ts4.8/vm.d.ts","../../node_modules/@types/node/ts4.8/wasi.d.ts","../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../node_modules/@types/node/ts4.8/zlib.d.ts","../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../node_modules/@types/node/ts4.8/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/chalk/index.d.ts","../../node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/jsdom/base.d.ts","../../node_modules/@types/jsdom/ts4.0/index.d.ts","../../node_modules/@types/jsdom/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts","../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","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},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","4f1034eac6404cb69bedb8bb04cf246871d1aaebbb99d5617be54f54323464c7","6787283f0951cfd0f754513a5972671b4fa9e7b920801a664da59a9466f75b40","6a999cd8b53e061dfc91824536793090b02bf2d0a76a401043bb138218b7bcbf","1349f629828b11b27b2c17377c6e7146ec0cd2a2bd1acd91e2f4e8d08e885df5","9578e943c4c521ad6c8a14ef7718bd999021696f2686c9dd05b4fd3d9ccec6ae","f5f7aef15b83896663f619452e7cd7289c5b392d66e3a7a2c8b350043467eff7","2e04271499caec54dea75e7061de06b2549efbe1d652b9bdab2f74fd2572f61f","98f3adb0f3ecc1ba4ddbce13c935529e2ce47d49c9d8150fb43088d7c9b7ec1b","233c179ab943c8278d4bdb9339bbb752a4586807254c65f340c971f869728e75","a9367ec48d3b67800c69c890e616337935df67caad5bff99383949af561042a8","5c1a8d6754a7cceee2135728e8ce6a4f984966a2d16ff1cbed879f7527d55864","717e5230d9efcec258a44c32e9059cae1d247f181065dcf14ac9be0326de67b8","624d87d7c3f824061ccdfc3d1281b2d072b702566bd207d6062539a404dc2faf","19ed1aaecf2475afa9641870fd2b4ebd04ddafed7f12118b14548276d7080496","1e83e2b18d4bf8aa4c0f8cf87104a141fb7189c8223c001887fa508398937cd2","912b52617b549ee405c5633c673cb19b95cbe3e76f5767e8e285bd04be0d1875","363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","a986db7e35e5d91072dde730d901dbdefed4ec1860000866e5d99d1dc1707a93","ce2cc3721b1e728dc04bacd65fd1cae9d371279ee671d64065c7c4a5f6f0e283","755faacced24a8b40622b21a633ebe9b9a8d2819c3a7ebad49581dc691cccb18","1b5cdbebc6c8ba40a1f42a77862f5351335fbff405d80ee2294fccc2b4a94524","80a4392b91f32e0c71cb80f01b7061af617861326e56fe9019a595525a8972c6","2cb89647c4b26cc28514ac9173fd8131ceb1d095e59f1305be253cb161a7ecde","b14456a54e15ce24ff9e5ad3b70675b104a36eb35886e3ffaae614292c0908c4",{"version":"88d775360aff612a7f87bd1140fe97bd927858b3d4a616834e7ef99585ea6ff4","affectsGlobalScope":true},"2f7377d440f78f9e2bf08b8fc28a75a5580f17e9924ae32020a958fe68b8bcef","8a6c15bfa2a0a9e68005a53fb71b60f3769af0da81001b95e4861310e260b788","e1c3e03bea46253a244d88838f0575b242c3c91145c2291aafa3f3ae2ba38ecc","19a313067674180120f11274fc99bba7237571dfe3dca9f16c393a0a31703b1b","aaffeca0d82a3d862c5186af3ca707801e45cc8b2e7d31e430eb715648ffa839","61bb5b4d7328a484c1abc030e98d2bda69f166a517c77e6493f36d6903850e09","be1692ad8c4f71e961e22fc8c340f68c2e3d2b4d9ce1afbac49b0d91a159b8da","a35a5f637f260a51247dd95103c976ffb2cfa0002f2f6e1be6465c7b67027b40","0efa2a0e043f18e3ecda6aa1615a9209e6d44ee9b1adb46cbc225b3e5b602c4a","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669",{"version":"e9cf450600c496a87ab96d288157b79be6c193e8623bd93553d5d64755940dea","affectsGlobalScope":true},{"version":"c8a2f72f046b5efb790cc37cfe79dcf11ce8e35e7e7d9430e10e53e0aa05c7a2","affectsGlobalScope":true},"4c2c4f53e8eedd970f8afa369d7371544fb6231bf95e659f8602e09abe74d5a5",{"version":"32ddf2b046fa7269050f64a87f1f3d2db10b92ad6302460681915af1207b1222","affectsGlobalScope":true},"c2b5085f47e41d6940bbc5b0d3bd7cc0037c752efb18aecd243c9cf83ad0c0b7","3143a5add0467b83150961ecd33773b561a1207aec727002aa1d70333068eb1b","9b2a8f604e7c0482a9061755f00b287cc99bd8718dc82d8207dd74c599b6dc43","d0fc76a91c828fbe3f0be5d683273634b7b101068333ceed975a8a9ac464137b",{"version":"1a048ff164b8d9609f5de3139d4e37f6e8a82af82087ac414b9208f52ef8aac7","affectsGlobalScope":true},"3111079f3cb5f2b9c812ca3f46161562bce5bfb355e915f46ed46c41714dc1c3","db86f82fac051ae344b47e8fe7ac7990174b41db79b2b220a49dc5a47c71a9b5","b32b6b16cb0bda68199582ad6f22242d07ee75fac9b1f28a98cd838afc5eea45","4441ee4119824bfaebc49308559edd7545978f9cb41a40f115074e1031dde75f",{"version":"60693a88462d0e97900123b5bf7c73e146ce0cc94da46a61fe6775b430d2ff05","affectsGlobalScope":true},{"version":"588c69eda58b9202676ec7ca11a72c3762819b46a0ed72462c769846153c447c","affectsGlobalScope":true},"ae064ed4f855716b7ff348639ddcd6a6d354a72fae82f506608a7dc9266aa24c","92f019c55b21c939616f6a48f678e714ac7b109444cbbf23ad69310ce66ecbdc","cf0a69c71aedf2f8fe45925abd554fd3dc7301ce66d6ab7521fb8c3471c24dd8","56e6722c6013609b3e5e6ed4a8a7e01f41da6c5e3d6f0ecff3d09ef7a81414cf","3924e8b900c717cb4ddf663d996e0bc0918f01b2c2e8dccaa94e59a8ae6912ec","f614c3f61e46ccc2cb58702d5a158338ea57ee09099fde5db4cfc63ed0ce4d74","44e42ed6ec9c4451ebe89524e80ac8564e9dd0988c56e6c58f393c810730595d","d79fda68cbfb361c4ee9cd9ea169babb65887534d64017726cd01f54783d20a5","155865f5f76db0996cd5e20cc5760613ea170ee5ad594c1f3d76fcaa05382161","e92852d673c836fc64e10c38640abcd67c463456e5df55723ac699b8e6ab3a8a","4455c78d226d061b1203c7614c6c6eb5f4f9db5f00d44ff47d0112de8766fbc4",{"version":"ec369bb9d97c4dc09dd2a4093b7ca3ba69ad284831fccac8a1977785e9e38ce5","affectsGlobalScope":true},"4465a636f5f6e9665a90e30691862c9e0a3ac2edc0e66296704f10865e924f2a","9af781f03d44f5635ed7844be0ce370d9d595d4b4ec67cad88f0fac03255257e","f9fd4c3ef6de27fa0e256f4e75b61711c4be05a3399f7714621d3edc832e36b0","e49290b7a927995c0d7e6b2b9c8296284b68a9036d9966531de65185269258d7","c3689f70ce7563c2299f2dcb3c72efdf6f87ae510e7456fa6223c767d0ca99fc","874ca809b79276460011480a2829f4c8d4db29416dd411f71efbf8f497f0ac09","6c903bceaf3f3bc04f2d4c7dcd89ce9fb148b3ba0a5f5408d8f6de2b7eecc7ea","504d049d9e550a65466b73ca39da6469ab41786074ea1d16d37c8853f9f6ab2e","23a28f834a078986bbf58f4e3705956983ff81c3c2493f3db3e5f0e8a9507779","4febdf7f3ec92706c58e0b4e8159cd6de718284ef384260b07c9641c13fc70ce",{"version":"eabefc2999c1489cf870e0c85af908900462fa245822d9a4616780a1a129945d","affectsGlobalScope":true},"7335933d9f30dcfd2c4b6080a8b78e81912a7fcefb1dafccb67ca4cb4b3ac23d","a6bfe9de9adef749010c118104b071d14943802ff0614732b47ce4f1c3e383cd","4c3d0e10396646db4a1e917fb852077ee77ae62e512913bef9cccc2bb0f8bd0e","3b220849d58140dcc6718f5b52dcd29fdb79c45bc28f561cbd29eb1cac6cce13","0ee22fce41f7417a24c808d266e91b850629113c104713a35854393d55994beb","22d1b1d965baba05766613e2e6c753bb005d4386c448cafd72c309ba689e8c24",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"01c93adfc4c6555c559e7334b6b5f45b48c9e1f809144822088e45ba13e36d9f","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","2d474dfb84cd28ea43f27fe684da8c00382cbd40cee45e1dad4e9f41f6c437b6","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"61b60d145059c3c8e3c7b484713191b6d0b70999bcb11f2b26286b15926a2b5f","affectsGlobalScope":true},"5171627120eeb3a7e8afb8ed04ea9be7f0b53ba09bb1fc95172483e0fbb0740c","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","7980bf9d2972585cdf76b5a72105f7817be0723ccb2256090f6335f45b462abe","301d7466eb591139c7d456958f732153b3400f3243f68d3321956b43a64769e9","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2",{"version":"2abad7477cf6761b55c18bea4c21b5a5dcf319748c13696df3736b35f8ac149e","affectsGlobalScope":true},"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","96b49a9de749afcf92b5bce1d8cc42cfae6816cdf5ea36584fd9256b8b2e5292","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1","3845d3b64286c12c60d39fc90ac1cc5e47cbc951530658d2567d578b2faa1f26"],"options":{"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":99,"noEmitHelpers":true,"noFallthroughCasesInSwitch":true,"outDir":"./dist-es","preserveConstEnums":true,"removeComments":true,"rootDir":"./src","strict":true,"target":7,"useUnknownInCatchVariables":false},"fileIdsList":[[135,144,145,146],[144,145,146],[64,65,67,70,72,144,145,146],[64,144,145,146],[64,67,144,145,146],[74,144,145,146],[91,119,144,145,146],[122,124,144,145,146],[121,122,123,144,145,146],[88,91,119,126,127,144,145,146],[89,119,144,145,146],[131,144,145,146],[132,144,145,146],[137,139,144,145,146],[88,114,119,142,143,145,146],[144,145],[144,146],[144,145,146,148,150,151,152,153,154,155,156,157,158,159,160],[144,145,146,148,149,151,152,153,154,155,156,157,158,159,160],[144,145,146,149,150,151,152,153,154,155,156,157,158,159,160],[144,145,146,148,149,150,152,153,154,155,156,157,158,159,160],[144,145,146,148,149,150,151,153,154,155,156,157,158,159,160],[144,145,146,148,149,150,151,152,154,155,156,157,158,159,160],[144,145,146,148,149,150,151,152,153,155,156,157,158,159,160],[144,145,146,148,149,150,151,152,153,154,156,157,158,159,160],[144,145,146,148,149,150,151,152,153,154,155,157,158,159,160],[144,145,146,148,149,150,151,152,153,154,155,156,158,159,160],[144,145,146,148,149,150,151,152,153,154,155,156,157,159,160],[144,145,146,148,149,150,151,152,153,154,155,156,157,158,160],[144,145,146,148,149,150,151,152,153,154,155,156,157,158,159],[76,144,145,146],[78,144,145,146],[79,84,144,145,146],[80,88,89,96,105,144,145,146],[80,81,88,96,144,145,146],[82,112,144,145,146],[83,84,89,97,144,145,146],[84,105,144,145,146],[85,86,88,96,144,145,146],[86,144,145,146],[87,88,144,145,146],[88,144,145,146],[88,89,90,105,111,144,145,146],[89,90,144,145,146],[91,96,105,111,144,145,146],[88,89,91,92,96,105,108,111,144,145,146],[91,93,105,108,111,144,145,146],[76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,144,145,146],[88,94,144,145,146],[95,111,144,145,146],[86,88,96,105,144,145,146],[97,144,145,146],[98,144,145,146],[78,99,144,145,146],[100,110,144,145,146],[101,144,145,146],[102,144,145,146],[88,103,144,145,146],[103,104,112,114,144,145,146],[88,105,144,145,146],[106,144,145,146],[107,144,145,146],[96,105,108,144,145,146],[109,144,145,146],[96,110,144,145,146],[102,111,144,145,146],[112,144,145,146],[105,113,144,145,146],[114,144,145,146],[115,144,145,146],[88,90,105,111,114,116,144,145,146],[105,117,144,145,146],[141,144,145,146],[142,144,145,146],[88,91,93,96,105,108,111,117,119,144,145,146],[144,145,146,169],[88,105,119,144,145,146],[137,144,145,146],[134,138,144,145,146],[136,144,145,146],[29,62,144,145,146],[29,61,84,144,145,146],[36,38,39,144,145,146],[36,38,144,145,146],[37,46,144,145,146],[31,144,145,146],[35,36,38,144,145,146],[30,144,145,146],[41,144,145,146],[41,42,43,44,45,144,145,146],[30,31,32,33,34,35,36,37,38,39,40,46,47,48,49,50,51,52,53,54,55,56,57,58,59,144,145,146],[31,33,34,37,144,145,146],[40,144,145,146],[35,37,53,144,145,146],[35,36,144,145,146],[35,144,145,146],[37,48,144,145,146],[60,144,145,146]],"referencedMap":[[136,1],[135,2],[73,3],[67,4],[66,2],[65,4],[64,2],[70,5],[68,4],[69,2],[72,4],[71,2],[75,6],[74,2],[120,7],[125,8],[121,2],[124,9],[122,2],[128,10],[129,11],[130,11],[131,2],[132,12],[133,13],[140,14],[144,15],[146,16],[145,17],[123,2],[147,2],[149,18],[150,19],[148,20],[151,21],[152,22],[153,23],[154,24],[155,25],[156,26],[157,27],[158,28],[159,29],[160,30],[161,2],[162,2],[76,31],[78,32],[79,33],[80,34],[81,35],[82,36],[83,37],[84,38],[85,39],[86,40],[87,41],[88,42],[89,43],[90,44],[77,2],[118,2],[91,45],[92,46],[93,47],[119,48],[94,49],[95,50],[96,51],[97,52],[98,53],[99,54],[100,55],[101,56],[102,57],[103,58],[104,59],[105,60],[106,61],[107,62],[108,63],[109,64],[110,65],[111,66],[112,67],[113,68],[114,69],[115,70],[116,71],[117,72],[163,2],[164,2],[142,73],[141,74],[165,2],[127,2],[126,2],[166,2],[143,2],[167,2],[168,75],[169,2],[170,76],[171,77],[134,2],[138,78],[139,79],[137,80],[29,2],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[63,81],[62,82],[30,2],[31,2],[32,2],[40,83],[39,84],[47,85],[48,2],[33,86],[49,87],[35,88],[42,89],[43,89],[41,2],[44,89],[45,89],[46,90],[60,91],[34,2],[38,92],[50,93],[51,2],[36,2],[52,2],[54,94],[55,95],[56,96],[57,97],[58,85],[53,2],[37,87],[59,88],[61,98]],"exportedModulesMap":[[136,1],[135,2],[73,3],[67,4],[66,2],[65,4],[64,2],[70,5],[68,4],[69,2],[72,4],[71,2],[75,6],[74,2],[120,7],[125,8],[121,2],[124,9],[122,2],[128,10],[129,11],[130,11],[131,2],[132,12],[133,13],[140,14],[144,15],[146,16],[145,17],[123,2],[147,2],[149,18],[150,19],[148,20],[151,21],[152,22],[153,23],[154,24],[155,25],[156,26],[157,27],[158,28],[159,29],[160,30],[161,2],[162,2],[76,31],[78,32],[79,33],[80,34],[81,35],[82,36],[83,37],[84,38],[85,39],[86,40],[87,41],[88,42],[89,43],[90,44],[77,2],[118,2],[91,45],[92,46],[93,47],[119,48],[94,49],[95,50],[96,51],[97,52],[98,53],[99,54],[100,55],[101,56],[102,57],[103,58],[104,59],[105,60],[106,61],[107,62],[108,63],[109,64],[110,65],[111,66],[112,67],[113,68],[114,69],[115,70],[116,71],[117,72],[163,2],[164,2],[142,73],[141,74],[165,2],[127,2],[126,2],[166,2],[143,2],[167,2],[168,75],[169,2],[170,76],[171,77],[134,2],[138,78],[139,79],[137,80],[29,2],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[63,81],[62,82],[30,2],[31,2],[32,2],[40,83],[39,84],[47,85],[48,2],[33,86],[49,87],[35,88],[42,89],[43,89],[41,2],[44,89],[45,89],[46,90],[60,91],[34,2],[38,92],[50,93],[51,2],[36,2],[52,2],[54,94],[55,95],[56,96],[57,97],[58,85],[53,2],[37,87],[59,88],[61,98]],"semanticDiagnosticsPerFile":[136,135,73,67,66,65,64,70,68,69,72,71,75,74,120,125,121,124,122,128,129,130,131,132,133,140,144,146,145,123,147,149,150,148,151,152,153,154,155,156,157,158,159,160,161,162,76,78,79,80,81,82,83,84,85,86,87,88,89,90,77,118,91,92,93,119,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,163,164,142,141,165,127,126,166,143,167,168,169,170,171,134,138,139,137,29,6,8,7,2,9,10,11,12,13,14,15,16,3,4,20,17,18,19,21,22,23,5,24,25,26,27,1,28,63,62,30,31,32,40,39,47,48,33,49,35,42,43,41,44,45,46,60,34,38,50,51,36,52,54,55,56,57,58,53,37,59,61]},"version":"4.6.2"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/tslib/tslib.d.ts","../types/dist-types/abort.d.ts","../types/dist-types/auth.d.ts","../types/dist-types/checksum.d.ts","../types/dist-types/endpoint.d.ts","../types/dist-types/logger.d.ts","../types/dist-types/http.d.ts","../types/dist-types/response.d.ts","../types/dist-types/util.d.ts","../types/dist-types/middleware.d.ts","../types/dist-types/command.d.ts","../types/dist-types/client.d.ts","../types/dist-types/identity/Identity.d.ts","../types/dist-types/identity/AnonymousIdentity.d.ts","../types/dist-types/identity/AwsCredentialIdentity.d.ts","../types/dist-types/identity/LoginIdentity.d.ts","../types/dist-types/identity/TokenIdentity.d.ts","../types/dist-types/identity/index.d.ts","../types/dist-types/credentials.d.ts","../types/dist-types/crypto.d.ts","../types/dist-types/eventStream.d.ts","../types/dist-types/pagination.d.ts","../types/dist-types/profile.d.ts","../types/dist-types/retry.d.ts","../types/dist-types/transfer.d.ts","../types/dist-types/serde.d.ts","../types/dist-types/shapes.d.ts","../types/dist-types/signature.d.ts","../types/dist-types/stream.d.ts","../types/dist-types/token.d.ts","../types/dist-types/waiter.d.ts","../types/dist-types/index.d.ts","../url-parser/dist-types/index.d.ts","./src/sign.ts","./src/index.ts","../../node_modules/@types/babel__generator/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@types/babel__core/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__core/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../node_modules/@types/chai-as-promised/index.d.ts","../../node_modules/@types/node/ts4.8/assert.d.ts","../../node_modules/@types/node/ts4.8/globals.d.ts","../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../node_modules/@types/node/ts4.8/buffer.d.ts","../../node_modules/@types/node/ts4.8/child_process.d.ts","../../node_modules/@types/node/ts4.8/cluster.d.ts","../../node_modules/@types/node/ts4.8/console.d.ts","../../node_modules/@types/node/ts4.8/constants.d.ts","../../node_modules/@types/node/ts4.8/crypto.d.ts","../../node_modules/@types/node/ts4.8/dgram.d.ts","../../node_modules/@types/node/ts4.8/dns.d.ts","../../node_modules/@types/node/ts4.8/domain.d.ts","../../node_modules/@types/node/ts4.8/events.d.ts","../../node_modules/@types/node/ts4.8/fs.d.ts","../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../node_modules/@types/node/ts4.8/http.d.ts","../../node_modules/@types/node/ts4.8/http2.d.ts","../../node_modules/@types/node/ts4.8/https.d.ts","../../node_modules/@types/node/ts4.8/inspector.d.ts","../../node_modules/@types/node/ts4.8/module.d.ts","../../node_modules/@types/node/ts4.8/net.d.ts","../../node_modules/@types/node/ts4.8/os.d.ts","../../node_modules/@types/node/ts4.8/path.d.ts","../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../node_modules/@types/node/ts4.8/process.d.ts","../../node_modules/@types/node/ts4.8/punycode.d.ts","../../node_modules/@types/node/ts4.8/querystring.d.ts","../../node_modules/@types/node/ts4.8/readline.d.ts","../../node_modules/@types/node/ts4.8/repl.d.ts","../../node_modules/@types/node/ts4.8/stream.d.ts","../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../node_modules/@types/node/ts4.8/timers.d.ts","../../node_modules/@types/node/ts4.8/tls.d.ts","../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../node_modules/@types/node/ts4.8/tty.d.ts","../../node_modules/@types/node/ts4.8/url.d.ts","../../node_modules/@types/node/ts4.8/util.d.ts","../../node_modules/@types/node/ts4.8/v8.d.ts","../../node_modules/@types/node/ts4.8/vm.d.ts","../../node_modules/@types/node/ts4.8/wasi.d.ts","../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../node_modules/@types/node/ts4.8/zlib.d.ts","../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../node_modules/@types/node/ts4.8/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/chalk/index.d.ts","../../node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/jsdom/base.d.ts","../../node_modules/@types/jsdom/ts4.0/index.d.ts","../../node_modules/@types/jsdom/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts","../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","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},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","4f1034eac6404cb69bedb8bb04cf246871d1aaebbb99d5617be54f54323464c7","6787283f0951cfd0f754513a5972671b4fa9e7b920801a664da59a9466f75b40","6a999cd8b53e061dfc91824536793090b02bf2d0a76a401043bb138218b7bcbf","1349f629828b11b27b2c17377c6e7146ec0cd2a2bd1acd91e2f4e8d08e885df5","9578e943c4c521ad6c8a14ef7718bd999021696f2686c9dd05b4fd3d9ccec6ae","f5f7aef15b83896663f619452e7cd7289c5b392d66e3a7a2c8b350043467eff7","2e04271499caec54dea75e7061de06b2549efbe1d652b9bdab2f74fd2572f61f","98f3adb0f3ecc1ba4ddbce13c935529e2ce47d49c9d8150fb43088d7c9b7ec1b","233c179ab943c8278d4bdb9339bbb752a4586807254c65f340c971f869728e75","a9367ec48d3b67800c69c890e616337935df67caad5bff99383949af561042a8","5c1a8d6754a7cceee2135728e8ce6a4f984966a2d16ff1cbed879f7527d55864","717e5230d9efcec258a44c32e9059cae1d247f181065dcf14ac9be0326de67b8","624d87d7c3f824061ccdfc3d1281b2d072b702566bd207d6062539a404dc2faf","19ed1aaecf2475afa9641870fd2b4ebd04ddafed7f12118b14548276d7080496","1e83e2b18d4bf8aa4c0f8cf87104a141fb7189c8223c001887fa508398937cd2","912b52617b549ee405c5633c673cb19b95cbe3e76f5767e8e285bd04be0d1875","363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","a986db7e35e5d91072dde730d901dbdefed4ec1860000866e5d99d1dc1707a93","ce2cc3721b1e728dc04bacd65fd1cae9d371279ee671d64065c7c4a5f6f0e283","755faacced24a8b40622b21a633ebe9b9a8d2819c3a7ebad49581dc691cccb18","1b5cdbebc6c8ba40a1f42a77862f5351335fbff405d80ee2294fccc2b4a94524","80a4392b91f32e0c71cb80f01b7061af617861326e56fe9019a595525a8972c6","2cb89647c4b26cc28514ac9173fd8131ceb1d095e59f1305be253cb161a7ecde","b14456a54e15ce24ff9e5ad3b70675b104a36eb35886e3ffaae614292c0908c4",{"version":"88d775360aff612a7f87bd1140fe97bd927858b3d4a616834e7ef99585ea6ff4","affectsGlobalScope":true},"2f7377d440f78f9e2bf08b8fc28a75a5580f17e9924ae32020a958fe68b8bcef","8a6c15bfa2a0a9e68005a53fb71b60f3769af0da81001b95e4861310e260b788","e1c3e03bea46253a244d88838f0575b242c3c91145c2291aafa3f3ae2ba38ecc","19a313067674180120f11274fc99bba7237571dfe3dca9f16c393a0a31703b1b","aaffeca0d82a3d862c5186af3ca707801e45cc8b2e7d31e430eb715648ffa839","61bb5b4d7328a484c1abc030e98d2bda69f166a517c77e6493f36d6903850e09","be1692ad8c4f71e961e22fc8c340f68c2e3d2b4d9ce1afbac49b0d91a159b8da","4095dc9b360fbdda68075558a9cfe70eec0b468e0fa94f67001cad37bc4c776b","0efa2a0e043f18e3ecda6aa1615a9209e6d44ee9b1adb46cbc225b3e5b602c4a","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669",{"version":"e9cf450600c496a87ab96d288157b79be6c193e8623bd93553d5d64755940dea","affectsGlobalScope":true},{"version":"c8a2f72f046b5efb790cc37cfe79dcf11ce8e35e7e7d9430e10e53e0aa05c7a2","affectsGlobalScope":true},"4c2c4f53e8eedd970f8afa369d7371544fb6231bf95e659f8602e09abe74d5a5",{"version":"32ddf2b046fa7269050f64a87f1f3d2db10b92ad6302460681915af1207b1222","affectsGlobalScope":true},"c2b5085f47e41d6940bbc5b0d3bd7cc0037c752efb18aecd243c9cf83ad0c0b7","3143a5add0467b83150961ecd33773b561a1207aec727002aa1d70333068eb1b","9b2a8f604e7c0482a9061755f00b287cc99bd8718dc82d8207dd74c599b6dc43","d0fc76a91c828fbe3f0be5d683273634b7b101068333ceed975a8a9ac464137b",{"version":"1a048ff164b8d9609f5de3139d4e37f6e8a82af82087ac414b9208f52ef8aac7","affectsGlobalScope":true},"3111079f3cb5f2b9c812ca3f46161562bce5bfb355e915f46ed46c41714dc1c3","db86f82fac051ae344b47e8fe7ac7990174b41db79b2b220a49dc5a47c71a9b5","b32b6b16cb0bda68199582ad6f22242d07ee75fac9b1f28a98cd838afc5eea45","4441ee4119824bfaebc49308559edd7545978f9cb41a40f115074e1031dde75f",{"version":"60693a88462d0e97900123b5bf7c73e146ce0cc94da46a61fe6775b430d2ff05","affectsGlobalScope":true},{"version":"588c69eda58b9202676ec7ca11a72c3762819b46a0ed72462c769846153c447c","affectsGlobalScope":true},"ae064ed4f855716b7ff348639ddcd6a6d354a72fae82f506608a7dc9266aa24c","92f019c55b21c939616f6a48f678e714ac7b109444cbbf23ad69310ce66ecbdc","cf0a69c71aedf2f8fe45925abd554fd3dc7301ce66d6ab7521fb8c3471c24dd8","56e6722c6013609b3e5e6ed4a8a7e01f41da6c5e3d6f0ecff3d09ef7a81414cf","3924e8b900c717cb4ddf663d996e0bc0918f01b2c2e8dccaa94e59a8ae6912ec","f614c3f61e46ccc2cb58702d5a158338ea57ee09099fde5db4cfc63ed0ce4d74","44e42ed6ec9c4451ebe89524e80ac8564e9dd0988c56e6c58f393c810730595d","d79fda68cbfb361c4ee9cd9ea169babb65887534d64017726cd01f54783d20a5","155865f5f76db0996cd5e20cc5760613ea170ee5ad594c1f3d76fcaa05382161","e92852d673c836fc64e10c38640abcd67c463456e5df55723ac699b8e6ab3a8a","4455c78d226d061b1203c7614c6c6eb5f4f9db5f00d44ff47d0112de8766fbc4",{"version":"ec369bb9d97c4dc09dd2a4093b7ca3ba69ad284831fccac8a1977785e9e38ce5","affectsGlobalScope":true},"4465a636f5f6e9665a90e30691862c9e0a3ac2edc0e66296704f10865e924f2a","9af781f03d44f5635ed7844be0ce370d9d595d4b4ec67cad88f0fac03255257e","f9fd4c3ef6de27fa0e256f4e75b61711c4be05a3399f7714621d3edc832e36b0","e49290b7a927995c0d7e6b2b9c8296284b68a9036d9966531de65185269258d7","c3689f70ce7563c2299f2dcb3c72efdf6f87ae510e7456fa6223c767d0ca99fc","874ca809b79276460011480a2829f4c8d4db29416dd411f71efbf8f497f0ac09","6c903bceaf3f3bc04f2d4c7dcd89ce9fb148b3ba0a5f5408d8f6de2b7eecc7ea","504d049d9e550a65466b73ca39da6469ab41786074ea1d16d37c8853f9f6ab2e","23a28f834a078986bbf58f4e3705956983ff81c3c2493f3db3e5f0e8a9507779","4febdf7f3ec92706c58e0b4e8159cd6de718284ef384260b07c9641c13fc70ce",{"version":"eabefc2999c1489cf870e0c85af908900462fa245822d9a4616780a1a129945d","affectsGlobalScope":true},"7335933d9f30dcfd2c4b6080a8b78e81912a7fcefb1dafccb67ca4cb4b3ac23d","a6bfe9de9adef749010c118104b071d14943802ff0614732b47ce4f1c3e383cd","4c3d0e10396646db4a1e917fb852077ee77ae62e512913bef9cccc2bb0f8bd0e","3b220849d58140dcc6718f5b52dcd29fdb79c45bc28f561cbd29eb1cac6cce13","0ee22fce41f7417a24c808d266e91b850629113c104713a35854393d55994beb","22d1b1d965baba05766613e2e6c753bb005d4386c448cafd72c309ba689e8c24",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"01c93adfc4c6555c559e7334b6b5f45b48c9e1f809144822088e45ba13e36d9f","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","2d474dfb84cd28ea43f27fe684da8c00382cbd40cee45e1dad4e9f41f6c437b6","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"61b60d145059c3c8e3c7b484713191b6d0b70999bcb11f2b26286b15926a2b5f","affectsGlobalScope":true},"5171627120eeb3a7e8afb8ed04ea9be7f0b53ba09bb1fc95172483e0fbb0740c","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","7980bf9d2972585cdf76b5a72105f7817be0723ccb2256090f6335f45b462abe","301d7466eb591139c7d456958f732153b3400f3243f68d3321956b43a64769e9","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2",{"version":"2abad7477cf6761b55c18bea4c21b5a5dcf319748c13696df3736b35f8ac149e","affectsGlobalScope":true},"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","96b49a9de749afcf92b5bce1d8cc42cfae6816cdf5ea36584fd9256b8b2e5292","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1","3845d3b64286c12c60d39fc90ac1cc5e47cbc951530658d2567d578b2faa1f26"],"options":{"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":99,"noEmitHelpers":true,"noFallthroughCasesInSwitch":true,"outDir":"./dist-es","preserveConstEnums":true,"removeComments":true,"rootDir":"./src","strict":true,"target":7,"useUnknownInCatchVariables":false},"fileIdsList":[[135,144,145,146],[144,145,146],[64,65,67,70,72,144,145,146],[64,144,145,146],[64,67,144,145,146],[74,144,145,146],[91,119,144,145,146],[122,124,144,145,146],[121,122,123,144,145,146],[88,91,119,126,127,144,145,146],[89,119,144,145,146],[131,144,145,146],[132,144,145,146],[137,139,144,145,146],[88,114,119,142,143,145,146],[144,145],[144,146],[144,145,146,148,150,151,152,153,154,155,156,157,158,159,160],[144,145,146,148,149,151,152,153,154,155,156,157,158,159,160],[144,145,146,149,150,151,152,153,154,155,156,157,158,159,160],[144,145,146,148,149,150,152,153,154,155,156,157,158,159,160],[144,145,146,148,149,150,151,153,154,155,156,157,158,159,160],[144,145,146,148,149,150,151,152,154,155,156,157,158,159,160],[144,145,146,148,149,150,151,152,153,155,156,157,158,159,160],[144,145,146,148,149,150,151,152,153,154,156,157,158,159,160],[144,145,146,148,149,150,151,152,153,154,155,157,158,159,160],[144,145,146,148,149,150,151,152,153,154,155,156,158,159,160],[144,145,146,148,149,150,151,152,153,154,155,156,157,159,160],[144,145,146,148,149,150,151,152,153,154,155,156,157,158,160],[144,145,146,148,149,150,151,152,153,154,155,156,157,158,159],[76,144,145,146],[78,144,145,146],[79,84,144,145,146],[80,88,89,96,105,144,145,146],[80,81,88,96,144,145,146],[82,112,144,145,146],[83,84,89,97,144,145,146],[84,105,144,145,146],[85,86,88,96,144,145,146],[86,144,145,146],[87,88,144,145,146],[88,144,145,146],[88,89,90,105,111,144,145,146],[89,90,144,145,146],[91,96,105,111,144,145,146],[88,89,91,92,96,105,108,111,144,145,146],[91,93,105,108,111,144,145,146],[76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,144,145,146],[88,94,144,145,146],[95,111,144,145,146],[86,88,96,105,144,145,146],[97,144,145,146],[98,144,145,146],[78,99,144,145,146],[100,110,144,145,146],[101,144,145,146],[102,144,145,146],[88,103,144,145,146],[103,104,112,114,144,145,146],[88,105,144,145,146],[106,144,145,146],[107,144,145,146],[96,105,108,144,145,146],[109,144,145,146],[96,110,144,145,146],[102,111,144,145,146],[112,144,145,146],[105,113,144,145,146],[114,144,145,146],[115,144,145,146],[88,90,105,111,114,116,144,145,146],[105,117,144,145,146],[141,144,145,146],[142,144,145,146],[88,91,93,96,105,108,111,117,119,144,145,146],[144,145,146,169],[88,105,119,144,145,146],[137,144,145,146],[134,138,144,145,146],[136,144,145,146],[29,62,144,145,146],[29,61,84,144,145,146],[36,38,39,144,145,146],[36,38,144,145,146],[37,46,144,145,146],[31,144,145,146],[35,36,38,144,145,146],[30,144,145,146],[41,144,145,146],[41,42,43,44,45,144,145,146],[30,31,32,33,34,35,36,37,38,39,40,46,47,48,49,50,51,52,53,54,55,56,57,58,59,144,145,146],[31,33,34,37,144,145,146],[40,144,145,146],[35,37,53,144,145,146],[35,36,144,145,146],[35,144,145,146],[37,48,144,145,146],[60,144,145,146]],"referencedMap":[[136,1],[135,2],[73,3],[67,4],[66,2],[65,4],[64,2],[70,5],[68,4],[69,2],[72,4],[71,2],[75,6],[74,2],[120,7],[125,8],[121,2],[124,9],[122,2],[128,10],[129,11],[130,11],[131,2],[132,12],[133,13],[140,14],[144,15],[146,16],[145,17],[123,2],[147,2],[149,18],[150,19],[148,20],[151,21],[152,22],[153,23],[154,24],[155,25],[156,26],[157,27],[158,28],[159,29],[160,30],[161,2],[162,2],[76,31],[78,32],[79,33],[80,34],[81,35],[82,36],[83,37],[84,38],[85,39],[86,40],[87,41],[88,42],[89,43],[90,44],[77,2],[118,2],[91,45],[92,46],[93,47],[119,48],[94,49],[95,50],[96,51],[97,52],[98,53],[99,54],[100,55],[101,56],[102,57],[103,58],[104,59],[105,60],[106,61],[107,62],[108,63],[109,64],[110,65],[111,66],[112,67],[113,68],[114,69],[115,70],[116,71],[117,72],[163,2],[164,2],[142,73],[141,74],[165,2],[127,2],[126,2],[166,2],[143,2],[167,2],[168,75],[169,2],[170,76],[171,77],[134,2],[138,78],[139,79],[137,80],[29,2],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[63,81],[62,82],[30,2],[31,2],[32,2],[40,83],[39,84],[47,85],[48,2],[33,86],[49,87],[35,88],[42,89],[43,89],[41,2],[44,89],[45,89],[46,90],[60,91],[34,2],[38,92],[50,93],[51,2],[36,2],[52,2],[54,94],[55,95],[56,96],[57,97],[58,85],[53,2],[37,87],[59,88],[61,98]],"exportedModulesMap":[[136,1],[135,2],[73,3],[67,4],[66,2],[65,4],[64,2],[70,5],[68,4],[69,2],[72,4],[71,2],[75,6],[74,2],[120,7],[125,8],[121,2],[124,9],[122,2],[128,10],[129,11],[130,11],[131,2],[132,12],[133,13],[140,14],[144,15],[146,16],[145,17],[123,2],[147,2],[149,18],[150,19],[148,20],[151,21],[152,22],[153,23],[154,24],[155,25],[156,26],[157,27],[158,28],[159,29],[160,30],[161,2],[162,2],[76,31],[78,32],[79,33],[80,34],[81,35],[82,36],[83,37],[84,38],[85,39],[86,40],[87,41],[88,42],[89,43],[90,44],[77,2],[118,2],[91,45],[92,46],[93,47],[119,48],[94,49],[95,50],[96,51],[97,52],[98,53],[99,54],[100,55],[101,56],[102,57],[103,58],[104,59],[105,60],[106,61],[107,62],[108,63],[109,64],[110,65],[111,66],[112,67],[113,68],[114,69],[115,70],[116,71],[117,72],[163,2],[164,2],[142,73],[141,74],[165,2],[127,2],[126,2],[166,2],[143,2],[167,2],[168,75],[169,2],[170,76],[171,77],[134,2],[138,78],[139,79],[137,80],[29,2],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[63,81],[62,82],[30,2],[31,2],[32,2],[40,83],[39,84],[47,85],[48,2],[33,86],[49,87],[35,88],[42,89],[43,89],[41,2],[44,89],[45,89],[46,90],[60,91],[34,2],[38,92],[50,93],[51,2],[36,2],[52,2],[54,94],[55,95],[56,96],[57,97],[58,85],[53,2],[37,87],[59,88],[61,98]],"semanticDiagnosticsPerFile":[136,135,73,67,66,65,64,70,68,69,72,71,75,74,120,125,121,124,122,128,129,130,131,132,133,140,144,146,145,123,147,149,150,148,151,152,153,154,155,156,157,158,159,160,161,162,76,78,79,80,81,82,83,84,85,86,87,88,89,90,77,118,91,92,93,119,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,163,164,142,141,165,127,126,166,143,167,168,169,170,171,134,138,139,137,29,6,8,7,2,9,10,11,12,13,14,15,16,3,4,20,17,18,19,21,22,23,5,24,25,26,27,1,28,63,62,30,31,32,40,39,47,48,33,49,35,42,43,41,44,45,46,60,34,38,50,51,36,52,54,55,56,57,58,53,37,59,61]},"version":"4.6.2"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../types/dist-types/abort.d.ts","../types/dist-types/auth.d.ts","../types/dist-types/checksum.d.ts","../types/dist-types/endpoint.d.ts","../types/dist-types/logger.d.ts","../types/dist-types/http.d.ts","../types/dist-types/response.d.ts","../types/dist-types/util.d.ts","../types/dist-types/middleware.d.ts","../types/dist-types/command.d.ts","../types/dist-types/client.d.ts","../types/dist-types/identity/Identity.d.ts","../types/dist-types/identity/AnonymousIdentity.d.ts","../types/dist-types/identity/AwsCredentialIdentity.d.ts","../types/dist-types/identity/LoginIdentity.d.ts","../types/dist-types/identity/TokenIdentity.d.ts","../types/dist-types/identity/index.d.ts","../types/dist-types/credentials.d.ts","../types/dist-types/crypto.d.ts","../types/dist-types/eventStream.d.ts","../types/dist-types/pagination.d.ts","../types/dist-types/profile.d.ts","../types/dist-types/retry.d.ts","../types/dist-types/transfer.d.ts","../types/dist-types/serde.d.ts","../types/dist-types/shapes.d.ts","../types/dist-types/signature.d.ts","../types/dist-types/stream.d.ts","../types/dist-types/token.d.ts","../types/dist-types/waiter.d.ts","../types/dist-types/index.d.ts","../url-parser/dist-types/index.d.ts","./src/sign.ts","./src/index.ts","../../node_modules/@types/babel__generator/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@types/babel__core/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__core/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../node_modules/@types/chai-as-promised/index.d.ts","../../node_modules/@types/node/ts4.8/assert.d.ts","../../node_modules/@types/node/ts4.8/globals.d.ts","../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../node_modules/@types/node/ts4.8/buffer.d.ts","../../node_modules/@types/node/ts4.8/child_process.d.ts","../../node_modules/@types/node/ts4.8/cluster.d.ts","../../node_modules/@types/node/ts4.8/console.d.ts","../../node_modules/@types/node/ts4.8/constants.d.ts","../../node_modules/@types/node/ts4.8/crypto.d.ts","../../node_modules/@types/node/ts4.8/dgram.d.ts","../../node_modules/@types/node/ts4.8/dns.d.ts","../../node_modules/@types/node/ts4.8/domain.d.ts","../../node_modules/@types/node/ts4.8/events.d.ts","../../node_modules/@types/node/ts4.8/fs.d.ts","../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../node_modules/@types/node/ts4.8/http.d.ts","../../node_modules/@types/node/ts4.8/http2.d.ts","../../node_modules/@types/node/ts4.8/https.d.ts","../../node_modules/@types/node/ts4.8/inspector.d.ts","../../node_modules/@types/node/ts4.8/module.d.ts","../../node_modules/@types/node/ts4.8/net.d.ts","../../node_modules/@types/node/ts4.8/os.d.ts","../../node_modules/@types/node/ts4.8/path.d.ts","../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../node_modules/@types/node/ts4.8/process.d.ts","../../node_modules/@types/node/ts4.8/punycode.d.ts","../../node_modules/@types/node/ts4.8/querystring.d.ts","../../node_modules/@types/node/ts4.8/readline.d.ts","../../node_modules/@types/node/ts4.8/repl.d.ts","../../node_modules/@types/node/ts4.8/stream.d.ts","../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../node_modules/@types/node/ts4.8/timers.d.ts","../../node_modules/@types/node/ts4.8/tls.d.ts","../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../node_modules/@types/node/ts4.8/tty.d.ts","../../node_modules/@types/node/ts4.8/url.d.ts","../../node_modules/@types/node/ts4.8/util.d.ts","../../node_modules/@types/node/ts4.8/v8.d.ts","../../node_modules/@types/node/ts4.8/vm.d.ts","../../node_modules/@types/node/ts4.8/wasi.d.ts","../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../node_modules/@types/node/ts4.8/zlib.d.ts","../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../node_modules/@types/node/ts4.8/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/chalk/index.d.ts","../../node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/jsdom/base.d.ts","../../node_modules/@types/jsdom/ts4.0/index.d.ts","../../node_modules/@types/jsdom/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts","../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","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},"4f1034eac6404cb69bedb8bb04cf246871d1aaebbb99d5617be54f54323464c7","6787283f0951cfd0f754513a5972671b4fa9e7b920801a664da59a9466f75b40","6a999cd8b53e061dfc91824536793090b02bf2d0a76a401043bb138218b7bcbf","1349f629828b11b27b2c17377c6e7146ec0cd2a2bd1acd91e2f4e8d08e885df5","9578e943c4c521ad6c8a14ef7718bd999021696f2686c9dd05b4fd3d9ccec6ae","f5f7aef15b83896663f619452e7cd7289c5b392d66e3a7a2c8b350043467eff7","2e04271499caec54dea75e7061de06b2549efbe1d652b9bdab2f74fd2572f61f","98f3adb0f3ecc1ba4ddbce13c935529e2ce47d49c9d8150fb43088d7c9b7ec1b","233c179ab943c8278d4bdb9339bbb752a4586807254c65f340c971f869728e75","a9367ec48d3b67800c69c890e616337935df67caad5bff99383949af561042a8","5c1a8d6754a7cceee2135728e8ce6a4f984966a2d16ff1cbed879f7527d55864","717e5230d9efcec258a44c32e9059cae1d247f181065dcf14ac9be0326de67b8","624d87d7c3f824061ccdfc3d1281b2d072b702566bd207d6062539a404dc2faf","19ed1aaecf2475afa9641870fd2b4ebd04ddafed7f12118b14548276d7080496","1e83e2b18d4bf8aa4c0f8cf87104a141fb7189c8223c001887fa508398937cd2","912b52617b549ee405c5633c673cb19b95cbe3e76f5767e8e285bd04be0d1875","363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","a986db7e35e5d91072dde730d901dbdefed4ec1860000866e5d99d1dc1707a93","ce2cc3721b1e728dc04bacd65fd1cae9d371279ee671d64065c7c4a5f6f0e283","755faacced24a8b40622b21a633ebe9b9a8d2819c3a7ebad49581dc691cccb18","1b5cdbebc6c8ba40a1f42a77862f5351335fbff405d80ee2294fccc2b4a94524","80a4392b91f32e0c71cb80f01b7061af617861326e56fe9019a595525a8972c6","2cb89647c4b26cc28514ac9173fd8131ceb1d095e59f1305be253cb161a7ecde","b14456a54e15ce24ff9e5ad3b70675b104a36eb35886e3ffaae614292c0908c4",{"version":"88d775360aff612a7f87bd1140fe97bd927858b3d4a616834e7ef99585ea6ff4","affectsGlobalScope":true},"2f7377d440f78f9e2bf08b8fc28a75a5580f17e9924ae32020a958fe68b8bcef","8a6c15bfa2a0a9e68005a53fb71b60f3769af0da81001b95e4861310e260b788","e1c3e03bea46253a244d88838f0575b242c3c91145c2291aafa3f3ae2ba38ecc","19a313067674180120f11274fc99bba7237571dfe3dca9f16c393a0a31703b1b","aaffeca0d82a3d862c5186af3ca707801e45cc8b2e7d31e430eb715648ffa839","61bb5b4d7328a484c1abc030e98d2bda69f166a517c77e6493f36d6903850e09","be1692ad8c4f71e961e22fc8c340f68c2e3d2b4d9ce1afbac49b0d91a159b8da","a35a5f637f260a51247dd95103c976ffb2cfa0002f2f6e1be6465c7b67027b40","0efa2a0e043f18e3ecda6aa1615a9209e6d44ee9b1adb46cbc225b3e5b602c4a","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669",{"version":"e9cf450600c496a87ab96d288157b79be6c193e8623bd93553d5d64755940dea","affectsGlobalScope":true},{"version":"c8a2f72f046b5efb790cc37cfe79dcf11ce8e35e7e7d9430e10e53e0aa05c7a2","affectsGlobalScope":true},"4c2c4f53e8eedd970f8afa369d7371544fb6231bf95e659f8602e09abe74d5a5",{"version":"32ddf2b046fa7269050f64a87f1f3d2db10b92ad6302460681915af1207b1222","affectsGlobalScope":true},"c2b5085f47e41d6940bbc5b0d3bd7cc0037c752efb18aecd243c9cf83ad0c0b7","3143a5add0467b83150961ecd33773b561a1207aec727002aa1d70333068eb1b","9b2a8f604e7c0482a9061755f00b287cc99bd8718dc82d8207dd74c599b6dc43","d0fc76a91c828fbe3f0be5d683273634b7b101068333ceed975a8a9ac464137b",{"version":"1a048ff164b8d9609f5de3139d4e37f6e8a82af82087ac414b9208f52ef8aac7","affectsGlobalScope":true},"3111079f3cb5f2b9c812ca3f46161562bce5bfb355e915f46ed46c41714dc1c3","db86f82fac051ae344b47e8fe7ac7990174b41db79b2b220a49dc5a47c71a9b5","b32b6b16cb0bda68199582ad6f22242d07ee75fac9b1f28a98cd838afc5eea45","4441ee4119824bfaebc49308559edd7545978f9cb41a40f115074e1031dde75f",{"version":"60693a88462d0e97900123b5bf7c73e146ce0cc94da46a61fe6775b430d2ff05","affectsGlobalScope":true},{"version":"588c69eda58b9202676ec7ca11a72c3762819b46a0ed72462c769846153c447c","affectsGlobalScope":true},"ae064ed4f855716b7ff348639ddcd6a6d354a72fae82f506608a7dc9266aa24c","92f019c55b21c939616f6a48f678e714ac7b109444cbbf23ad69310ce66ecbdc","cf0a69c71aedf2f8fe45925abd554fd3dc7301ce66d6ab7521fb8c3471c24dd8","56e6722c6013609b3e5e6ed4a8a7e01f41da6c5e3d6f0ecff3d09ef7a81414cf","3924e8b900c717cb4ddf663d996e0bc0918f01b2c2e8dccaa94e59a8ae6912ec","f614c3f61e46ccc2cb58702d5a158338ea57ee09099fde5db4cfc63ed0ce4d74","44e42ed6ec9c4451ebe89524e80ac8564e9dd0988c56e6c58f393c810730595d","d79fda68cbfb361c4ee9cd9ea169babb65887534d64017726cd01f54783d20a5","155865f5f76db0996cd5e20cc5760613ea170ee5ad594c1f3d76fcaa05382161","e92852d673c836fc64e10c38640abcd67c463456e5df55723ac699b8e6ab3a8a","4455c78d226d061b1203c7614c6c6eb5f4f9db5f00d44ff47d0112de8766fbc4",{"version":"ec369bb9d97c4dc09dd2a4093b7ca3ba69ad284831fccac8a1977785e9e38ce5","affectsGlobalScope":true},"4465a636f5f6e9665a90e30691862c9e0a3ac2edc0e66296704f10865e924f2a","9af781f03d44f5635ed7844be0ce370d9d595d4b4ec67cad88f0fac03255257e","f9fd4c3ef6de27fa0e256f4e75b61711c4be05a3399f7714621d3edc832e36b0","e49290b7a927995c0d7e6b2b9c8296284b68a9036d9966531de65185269258d7","c3689f70ce7563c2299f2dcb3c72efdf6f87ae510e7456fa6223c767d0ca99fc","874ca809b79276460011480a2829f4c8d4db29416dd411f71efbf8f497f0ac09","6c903bceaf3f3bc04f2d4c7dcd89ce9fb148b3ba0a5f5408d8f6de2b7eecc7ea","504d049d9e550a65466b73ca39da6469ab41786074ea1d16d37c8853f9f6ab2e","23a28f834a078986bbf58f4e3705956983ff81c3c2493f3db3e5f0e8a9507779","4febdf7f3ec92706c58e0b4e8159cd6de718284ef384260b07c9641c13fc70ce",{"version":"eabefc2999c1489cf870e0c85af908900462fa245822d9a4616780a1a129945d","affectsGlobalScope":true},"7335933d9f30dcfd2c4b6080a8b78e81912a7fcefb1dafccb67ca4cb4b3ac23d","a6bfe9de9adef749010c118104b071d14943802ff0614732b47ce4f1c3e383cd","4c3d0e10396646db4a1e917fb852077ee77ae62e512913bef9cccc2bb0f8bd0e","3b220849d58140dcc6718f5b52dcd29fdb79c45bc28f561cbd29eb1cac6cce13","0ee22fce41f7417a24c808d266e91b850629113c104713a35854393d55994beb","22d1b1d965baba05766613e2e6c753bb005d4386c448cafd72c309ba689e8c24",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"01c93adfc4c6555c559e7334b6b5f45b48c9e1f809144822088e45ba13e36d9f","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","2d474dfb84cd28ea43f27fe684da8c00382cbd40cee45e1dad4e9f41f6c437b6","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"61b60d145059c3c8e3c7b484713191b6d0b70999bcb11f2b26286b15926a2b5f","affectsGlobalScope":true},"5171627120eeb3a7e8afb8ed04ea9be7f0b53ba09bb1fc95172483e0fbb0740c","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","7980bf9d2972585cdf76b5a72105f7817be0723ccb2256090f6335f45b462abe","301d7466eb591139c7d456958f732153b3400f3243f68d3321956b43a64769e9","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2",{"version":"2abad7477cf6761b55c18bea4c21b5a5dcf319748c13696df3736b35f8ac149e","affectsGlobalScope":true},"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","96b49a9de749afcf92b5bce1d8cc42cfae6816cdf5ea36584fd9256b8b2e5292","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1","3845d3b64286c12c60d39fc90ac1cc5e47cbc951530658d2567d578b2faa1f26"],"options":{"declaration":true,"declarationDir":"./dist-types","downlevelIteration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"preserveConstEnums":true,"removeComments":false,"rootDir":"./src","strict":true,"target":1,"useUnknownInCatchVariables":false},"fileIdsList":[[134,143,144,145],[143,144,145],[63,64,66,69,71,143,144,145],[63,143,144,145],[63,66,143,144,145],[73,143,144,145],[90,118,143,144,145],[121,123,143,144,145],[120,121,122,143,144,145],[87,90,118,125,126,143,144,145],[88,118,143,144,145],[130,143,144,145],[131,143,144,145],[136,138,143,144,145],[87,113,118,141,142,144,145],[143,144],[143,145],[143,144,145,147,149,150,151,152,153,154,155,156,157,158,159],[143,144,145,147,148,150,151,152,153,154,155,156,157,158,159],[143,144,145,148,149,150,151,152,153,154,155,156,157,158,159],[143,144,145,147,148,149,151,152,153,154,155,156,157,158,159],[143,144,145,147,148,149,150,152,153,154,155,156,157,158,159],[143,144,145,147,148,149,150,151,153,154,155,156,157,158,159],[143,144,145,147,148,149,150,151,152,154,155,156,157,158,159],[143,144,145,147,148,149,150,151,152,153,155,156,157,158,159],[143,144,145,147,148,149,150,151,152,153,154,156,157,158,159],[143,144,145,147,148,149,150,151,152,153,154,155,157,158,159],[143,144,145,147,148,149,150,151,152,153,154,155,156,158,159],[143,144,145,147,148,149,150,151,152,153,154,155,156,157,159],[143,144,145,147,148,149,150,151,152,153,154,155,156,157,158],[75,143,144,145],[77,143,144,145],[78,83,143,144,145],[79,87,88,95,104,143,144,145],[79,80,87,95,143,144,145],[81,111,143,144,145],[82,83,88,96,143,144,145],[83,104,143,144,145],[84,85,87,95,143,144,145],[85,143,144,145],[86,87,143,144,145],[87,143,144,145],[87,88,89,104,110,143,144,145],[88,89,143,144,145],[90,95,104,110,143,144,145],[87,88,90,91,95,104,107,110,143,144,145],[90,92,104,107,110,143,144,145],[75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,143,144,145],[87,93,143,144,145],[94,110,143,144,145],[85,87,95,104,143,144,145],[96,143,144,145],[97,143,144,145],[77,98,143,144,145],[99,109,143,144,145],[100,143,144,145],[101,143,144,145],[87,102,143,144,145],[102,103,111,113,143,144,145],[87,104,143,144,145],[105,143,144,145],[106,143,144,145],[95,104,107,143,144,145],[108,143,144,145],[95,109,143,144,145],[101,110,143,144,145],[111,143,144,145],[104,112,143,144,145],[113,143,144,145],[114,143,144,145],[87,89,104,110,113,115,143,144,145],[104,116,143,144,145],[140,143,144,145],[141,143,144,145],[87,90,92,95,104,107,110,116,118,143,144,145],[143,144,145,168],[87,104,118,143,144,145],[136,143,144,145],[133,137,143,144,145],[135,143,144,145],[61,143,144,145],[60,83,143,144,145],[35,37,38,143,144,145],[35,37,143,144,145],[36,45,143,144,145],[30,143,144,145],[34,35,37,143,144,145],[29,143,144,145],[40,143,144,145],[40,41,42,43,44,143,144,145],[29,30,31,32,33,34,35,36,37,38,39,45,46,47,48,49,50,51,52,53,54,55,56,57,58,143,144,145],[30,32,33,36,143,144,145],[39,143,144,145],[34,36,52,143,144,145],[34,35,143,144,145],[34,143,144,145],[36,47,143,144,145],[59,143,144,145]],"referencedMap":[[135,1],[134,2],[72,3],[66,4],[65,2],[64,4],[63,2],[69,5],[67,4],[68,2],[71,4],[70,2],[74,6],[73,2],[119,7],[124,8],[120,2],[123,9],[121,2],[127,10],[128,11],[129,11],[130,2],[131,12],[132,13],[139,14],[143,15],[145,16],[144,17],[122,2],[146,2],[148,18],[149,19],[147,20],[150,21],[151,22],[152,23],[153,24],[154,25],[155,26],[156,27],[157,28],[158,29],[159,30],[160,2],[161,2],[75,31],[77,32],[78,33],[79,34],[80,35],[81,36],[82,37],[83,38],[84,39],[85,40],[86,41],[87,42],[88,43],[89,44],[76,2],[117,2],[90,45],[91,46],[92,47],[118,48],[93,49],[94,50],[95,51],[96,52],[97,53],[98,54],[99,55],[100,56],[101,57],[102,58],[103,59],[104,60],[105,61],[106,62],[107,63],[108,64],[109,65],[110,66],[111,67],[112,68],[113,69],[114,70],[115,71],[116,72],[162,2],[163,2],[141,73],[140,74],[164,2],[126,2],[125,2],[165,2],[142,2],[166,2],[167,75],[168,2],[169,76],[170,77],[133,2],[137,78],[138,79],[136,80],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[62,81],[61,82],[29,2],[30,2],[31,2],[39,83],[38,84],[46,85],[47,2],[32,86],[48,87],[34,88],[41,89],[42,89],[40,2],[43,89],[44,89],[45,90],[59,91],[33,2],[37,92],[49,93],[50,2],[35,2],[51,2],[53,94],[54,95],[55,96],[56,97],[57,85],[52,2],[36,87],[58,88],[60,98]],"exportedModulesMap":[[135,1],[134,2],[72,3],[66,4],[65,2],[64,4],[63,2],[69,5],[67,4],[68,2],[71,4],[70,2],[74,6],[73,2],[119,7],[124,8],[120,2],[123,9],[121,2],[127,10],[128,11],[129,11],[130,2],[131,12],[132,13],[139,14],[143,15],[145,16],[144,17],[122,2],[146,2],[148,18],[149,19],[147,20],[150,21],[151,22],[152,23],[153,24],[154,25],[155,26],[156,27],[157,28],[158,29],[159,30],[160,2],[161,2],[75,31],[77,32],[78,33],[79,34],[80,35],[81,36],[82,37],[83,38],[84,39],[85,40],[86,41],[87,42],[88,43],[89,44],[76,2],[117,2],[90,45],[91,46],[92,47],[118,48],[93,49],[94,50],[95,51],[96,52],[97,53],[98,54],[99,55],[100,56],[101,57],[102,58],[103,59],[104,60],[105,61],[106,62],[107,63],[108,64],[109,65],[110,66],[111,67],[112,68],[113,69],[114,70],[115,71],[116,72],[162,2],[163,2],[141,73],[140,74],[164,2],[126,2],[125,2],[165,2],[142,2],[166,2],[167,75],[168,2],[169,76],[170,77],[133,2],[137,78],[138,79],[136,80],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[62,81],[61,82],[29,2],[30,2],[31,2],[39,83],[38,84],[46,85],[47,2],[32,86],[48,87],[34,88],[41,89],[42,89],[40,2],[43,89],[44,89],[45,90],[59,91],[33,2],[37,92],[49,93],[50,2],[35,2],[51,2],[53,94],[54,95],[55,96],[56,97],[57,85],[52,2],[36,87],[58,88],[60,98]],"semanticDiagnosticsPerFile":[135,134,72,66,65,64,63,69,67,68,71,70,74,73,119,124,120,123,121,127,128,129,130,131,132,139,143,145,144,122,146,148,149,147,150,151,152,153,154,155,156,157,158,159,160,161,75,77,78,79,80,81,82,83,84,85,86,87,88,89,76,117,90,91,92,118,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,162,163,141,140,164,126,125,165,142,166,167,168,169,170,133,137,138,136,6,8,7,2,9,10,11,12,13,14,15,16,3,4,20,17,18,19,21,22,23,5,24,25,26,27,1,28,62,61,29,30,31,39,38,46,47,32,48,34,41,42,40,43,44,45,59,33,37,49,50,35,51,53,54,55,56,57,52,36,58,60]},"version":"4.6.2"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../types/dist-types/abort.d.ts","../types/dist-types/auth.d.ts","../types/dist-types/checksum.d.ts","../types/dist-types/endpoint.d.ts","../types/dist-types/logger.d.ts","../types/dist-types/http.d.ts","../types/dist-types/response.d.ts","../types/dist-types/util.d.ts","../types/dist-types/middleware.d.ts","../types/dist-types/command.d.ts","../types/dist-types/client.d.ts","../types/dist-types/identity/Identity.d.ts","../types/dist-types/identity/AnonymousIdentity.d.ts","../types/dist-types/identity/AwsCredentialIdentity.d.ts","../types/dist-types/identity/LoginIdentity.d.ts","../types/dist-types/identity/TokenIdentity.d.ts","../types/dist-types/identity/index.d.ts","../types/dist-types/credentials.d.ts","../types/dist-types/crypto.d.ts","../types/dist-types/eventStream.d.ts","../types/dist-types/pagination.d.ts","../types/dist-types/profile.d.ts","../types/dist-types/retry.d.ts","../types/dist-types/transfer.d.ts","../types/dist-types/serde.d.ts","../types/dist-types/shapes.d.ts","../types/dist-types/signature.d.ts","../types/dist-types/stream.d.ts","../types/dist-types/token.d.ts","../types/dist-types/waiter.d.ts","../types/dist-types/index.d.ts","../url-parser/dist-types/index.d.ts","./src/sign.ts","./src/index.ts","../../node_modules/@types/babel__generator/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@types/babel__core/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__core/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../node_modules/@types/chai-as-promised/index.d.ts","../../node_modules/@types/node/ts4.8/assert.d.ts","../../node_modules/@types/node/ts4.8/globals.d.ts","../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../node_modules/@types/node/ts4.8/buffer.d.ts","../../node_modules/@types/node/ts4.8/child_process.d.ts","../../node_modules/@types/node/ts4.8/cluster.d.ts","../../node_modules/@types/node/ts4.8/console.d.ts","../../node_modules/@types/node/ts4.8/constants.d.ts","../../node_modules/@types/node/ts4.8/crypto.d.ts","../../node_modules/@types/node/ts4.8/dgram.d.ts","../../node_modules/@types/node/ts4.8/dns.d.ts","../../node_modules/@types/node/ts4.8/domain.d.ts","../../node_modules/@types/node/ts4.8/events.d.ts","../../node_modules/@types/node/ts4.8/fs.d.ts","../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../node_modules/@types/node/ts4.8/http.d.ts","../../node_modules/@types/node/ts4.8/http2.d.ts","../../node_modules/@types/node/ts4.8/https.d.ts","../../node_modules/@types/node/ts4.8/inspector.d.ts","../../node_modules/@types/node/ts4.8/module.d.ts","../../node_modules/@types/node/ts4.8/net.d.ts","../../node_modules/@types/node/ts4.8/os.d.ts","../../node_modules/@types/node/ts4.8/path.d.ts","../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../node_modules/@types/node/ts4.8/process.d.ts","../../node_modules/@types/node/ts4.8/punycode.d.ts","../../node_modules/@types/node/ts4.8/querystring.d.ts","../../node_modules/@types/node/ts4.8/readline.d.ts","../../node_modules/@types/node/ts4.8/repl.d.ts","../../node_modules/@types/node/ts4.8/stream.d.ts","../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../node_modules/@types/node/ts4.8/timers.d.ts","../../node_modules/@types/node/ts4.8/tls.d.ts","../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../node_modules/@types/node/ts4.8/tty.d.ts","../../node_modules/@types/node/ts4.8/url.d.ts","../../node_modules/@types/node/ts4.8/util.d.ts","../../node_modules/@types/node/ts4.8/v8.d.ts","../../node_modules/@types/node/ts4.8/vm.d.ts","../../node_modules/@types/node/ts4.8/wasi.d.ts","../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../node_modules/@types/node/ts4.8/zlib.d.ts","../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../node_modules/@types/node/ts4.8/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/chalk/index.d.ts","../../node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/jsdom/base.d.ts","../../node_modules/@types/jsdom/ts4.0/index.d.ts","../../node_modules/@types/jsdom/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts","../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","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},"4f1034eac6404cb69bedb8bb04cf246871d1aaebbb99d5617be54f54323464c7","6787283f0951cfd0f754513a5972671b4fa9e7b920801a664da59a9466f75b40","6a999cd8b53e061dfc91824536793090b02bf2d0a76a401043bb138218b7bcbf","1349f629828b11b27b2c17377c6e7146ec0cd2a2bd1acd91e2f4e8d08e885df5","9578e943c4c521ad6c8a14ef7718bd999021696f2686c9dd05b4fd3d9ccec6ae","f5f7aef15b83896663f619452e7cd7289c5b392d66e3a7a2c8b350043467eff7","2e04271499caec54dea75e7061de06b2549efbe1d652b9bdab2f74fd2572f61f","98f3adb0f3ecc1ba4ddbce13c935529e2ce47d49c9d8150fb43088d7c9b7ec1b","233c179ab943c8278d4bdb9339bbb752a4586807254c65f340c971f869728e75","a9367ec48d3b67800c69c890e616337935df67caad5bff99383949af561042a8","5c1a8d6754a7cceee2135728e8ce6a4f984966a2d16ff1cbed879f7527d55864","717e5230d9efcec258a44c32e9059cae1d247f181065dcf14ac9be0326de67b8","624d87d7c3f824061ccdfc3d1281b2d072b702566bd207d6062539a404dc2faf","19ed1aaecf2475afa9641870fd2b4ebd04ddafed7f12118b14548276d7080496","1e83e2b18d4bf8aa4c0f8cf87104a141fb7189c8223c001887fa508398937cd2","912b52617b549ee405c5633c673cb19b95cbe3e76f5767e8e285bd04be0d1875","363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","a986db7e35e5d91072dde730d901dbdefed4ec1860000866e5d99d1dc1707a93","ce2cc3721b1e728dc04bacd65fd1cae9d371279ee671d64065c7c4a5f6f0e283","755faacced24a8b40622b21a633ebe9b9a8d2819c3a7ebad49581dc691cccb18","1b5cdbebc6c8ba40a1f42a77862f5351335fbff405d80ee2294fccc2b4a94524","80a4392b91f32e0c71cb80f01b7061af617861326e56fe9019a595525a8972c6","2cb89647c4b26cc28514ac9173fd8131ceb1d095e59f1305be253cb161a7ecde","b14456a54e15ce24ff9e5ad3b70675b104a36eb35886e3ffaae614292c0908c4",{"version":"88d775360aff612a7f87bd1140fe97bd927858b3d4a616834e7ef99585ea6ff4","affectsGlobalScope":true},"2f7377d440f78f9e2bf08b8fc28a75a5580f17e9924ae32020a958fe68b8bcef","8a6c15bfa2a0a9e68005a53fb71b60f3769af0da81001b95e4861310e260b788","e1c3e03bea46253a244d88838f0575b242c3c91145c2291aafa3f3ae2ba38ecc","19a313067674180120f11274fc99bba7237571dfe3dca9f16c393a0a31703b1b","aaffeca0d82a3d862c5186af3ca707801e45cc8b2e7d31e430eb715648ffa839","61bb5b4d7328a484c1abc030e98d2bda69f166a517c77e6493f36d6903850e09","be1692ad8c4f71e961e22fc8c340f68c2e3d2b4d9ce1afbac49b0d91a159b8da","4095dc9b360fbdda68075558a9cfe70eec0b468e0fa94f67001cad37bc4c776b","0efa2a0e043f18e3ecda6aa1615a9209e6d44ee9b1adb46cbc225b3e5b602c4a","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669",{"version":"e9cf450600c496a87ab96d288157b79be6c193e8623bd93553d5d64755940dea","affectsGlobalScope":true},{"version":"c8a2f72f046b5efb790cc37cfe79dcf11ce8e35e7e7d9430e10e53e0aa05c7a2","affectsGlobalScope":true},"4c2c4f53e8eedd970f8afa369d7371544fb6231bf95e659f8602e09abe74d5a5",{"version":"32ddf2b046fa7269050f64a87f1f3d2db10b92ad6302460681915af1207b1222","affectsGlobalScope":true},"c2b5085f47e41d6940bbc5b0d3bd7cc0037c752efb18aecd243c9cf83ad0c0b7","3143a5add0467b83150961ecd33773b561a1207aec727002aa1d70333068eb1b","9b2a8f604e7c0482a9061755f00b287cc99bd8718dc82d8207dd74c599b6dc43","d0fc76a91c828fbe3f0be5d683273634b7b101068333ceed975a8a9ac464137b",{"version":"1a048ff164b8d9609f5de3139d4e37f6e8a82af82087ac414b9208f52ef8aac7","affectsGlobalScope":true},"3111079f3cb5f2b9c812ca3f46161562bce5bfb355e915f46ed46c41714dc1c3","db86f82fac051ae344b47e8fe7ac7990174b41db79b2b220a49dc5a47c71a9b5","b32b6b16cb0bda68199582ad6f22242d07ee75fac9b1f28a98cd838afc5eea45","4441ee4119824bfaebc49308559edd7545978f9cb41a40f115074e1031dde75f",{"version":"60693a88462d0e97900123b5bf7c73e146ce0cc94da46a61fe6775b430d2ff05","affectsGlobalScope":true},{"version":"588c69eda58b9202676ec7ca11a72c3762819b46a0ed72462c769846153c447c","affectsGlobalScope":true},"ae064ed4f855716b7ff348639ddcd6a6d354a72fae82f506608a7dc9266aa24c","92f019c55b21c939616f6a48f678e714ac7b109444cbbf23ad69310ce66ecbdc","cf0a69c71aedf2f8fe45925abd554fd3dc7301ce66d6ab7521fb8c3471c24dd8","56e6722c6013609b3e5e6ed4a8a7e01f41da6c5e3d6f0ecff3d09ef7a81414cf","3924e8b900c717cb4ddf663d996e0bc0918f01b2c2e8dccaa94e59a8ae6912ec","f614c3f61e46ccc2cb58702d5a158338ea57ee09099fde5db4cfc63ed0ce4d74","44e42ed6ec9c4451ebe89524e80ac8564e9dd0988c56e6c58f393c810730595d","d79fda68cbfb361c4ee9cd9ea169babb65887534d64017726cd01f54783d20a5","155865f5f76db0996cd5e20cc5760613ea170ee5ad594c1f3d76fcaa05382161","e92852d673c836fc64e10c38640abcd67c463456e5df55723ac699b8e6ab3a8a","4455c78d226d061b1203c7614c6c6eb5f4f9db5f00d44ff47d0112de8766fbc4",{"version":"ec369bb9d97c4dc09dd2a4093b7ca3ba69ad284831fccac8a1977785e9e38ce5","affectsGlobalScope":true},"4465a636f5f6e9665a90e30691862c9e0a3ac2edc0e66296704f10865e924f2a","9af781f03d44f5635ed7844be0ce370d9d595d4b4ec67cad88f0fac03255257e","f9fd4c3ef6de27fa0e256f4e75b61711c4be05a3399f7714621d3edc832e36b0","e49290b7a927995c0d7e6b2b9c8296284b68a9036d9966531de65185269258d7","c3689f70ce7563c2299f2dcb3c72efdf6f87ae510e7456fa6223c767d0ca99fc","874ca809b79276460011480a2829f4c8d4db29416dd411f71efbf8f497f0ac09","6c903bceaf3f3bc04f2d4c7dcd89ce9fb148b3ba0a5f5408d8f6de2b7eecc7ea","504d049d9e550a65466b73ca39da6469ab41786074ea1d16d37c8853f9f6ab2e","23a28f834a078986bbf58f4e3705956983ff81c3c2493f3db3e5f0e8a9507779","4febdf7f3ec92706c58e0b4e8159cd6de718284ef384260b07c9641c13fc70ce",{"version":"eabefc2999c1489cf870e0c85af908900462fa245822d9a4616780a1a129945d","affectsGlobalScope":true},"7335933d9f30dcfd2c4b6080a8b78e81912a7fcefb1dafccb67ca4cb4b3ac23d","a6bfe9de9adef749010c118104b071d14943802ff0614732b47ce4f1c3e383cd","4c3d0e10396646db4a1e917fb852077ee77ae62e512913bef9cccc2bb0f8bd0e","3b220849d58140dcc6718f5b52dcd29fdb79c45bc28f561cbd29eb1cac6cce13","0ee22fce41f7417a24c808d266e91b850629113c104713a35854393d55994beb","22d1b1d965baba05766613e2e6c753bb005d4386c448cafd72c309ba689e8c24",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"01c93adfc4c6555c559e7334b6b5f45b48c9e1f809144822088e45ba13e36d9f","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","2d474dfb84cd28ea43f27fe684da8c00382cbd40cee45e1dad4e9f41f6c437b6","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"61b60d145059c3c8e3c7b484713191b6d0b70999bcb11f2b26286b15926a2b5f","affectsGlobalScope":true},"5171627120eeb3a7e8afb8ed04ea9be7f0b53ba09bb1fc95172483e0fbb0740c","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","7980bf9d2972585cdf76b5a72105f7817be0723ccb2256090f6335f45b462abe","301d7466eb591139c7d456958f732153b3400f3243f68d3321956b43a64769e9","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2",{"version":"2abad7477cf6761b55c18bea4c21b5a5dcf319748c13696df3736b35f8ac149e","affectsGlobalScope":true},"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","96b49a9de749afcf92b5bce1d8cc42cfae6816cdf5ea36584fd9256b8b2e5292","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1","3845d3b64286c12c60d39fc90ac1cc5e47cbc951530658d2567d578b2faa1f26"],"options":{"declaration":true,"declarationDir":"./dist-types","downlevelIteration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"preserveConstEnums":true,"removeComments":false,"rootDir":"./src","strict":true,"target":1,"useUnknownInCatchVariables":false},"fileIdsList":[[134,143,144,145],[143,144,145],[63,64,66,69,71,143,144,145],[63,143,144,145],[63,66,143,144,145],[73,143,144,145],[90,118,143,144,145],[121,123,143,144,145],[120,121,122,143,144,145],[87,90,118,125,126,143,144,145],[88,118,143,144,145],[130,143,144,145],[131,143,144,145],[136,138,143,144,145],[87,113,118,141,142,144,145],[143,144],[143,145],[143,144,145,147,149,150,151,152,153,154,155,156,157,158,159],[143,144,145,147,148,150,151,152,153,154,155,156,157,158,159],[143,144,145,148,149,150,151,152,153,154,155,156,157,158,159],[143,144,145,147,148,149,151,152,153,154,155,156,157,158,159],[143,144,145,147,148,149,150,152,153,154,155,156,157,158,159],[143,144,145,147,148,149,150,151,153,154,155,156,157,158,159],[143,144,145,147,148,149,150,151,152,154,155,156,157,158,159],[143,144,145,147,148,149,150,151,152,153,155,156,157,158,159],[143,144,145,147,148,149,150,151,152,153,154,156,157,158,159],[143,144,145,147,148,149,150,151,152,153,154,155,157,158,159],[143,144,145,147,148,149,150,151,152,153,154,155,156,158,159],[143,144,145,147,148,149,150,151,152,153,154,155,156,157,159],[143,144,145,147,148,149,150,151,152,153,154,155,156,157,158],[75,143,144,145],[77,143,144,145],[78,83,143,144,145],[79,87,88,95,104,143,144,145],[79,80,87,95,143,144,145],[81,111,143,144,145],[82,83,88,96,143,144,145],[83,104,143,144,145],[84,85,87,95,143,144,145],[85,143,144,145],[86,87,143,144,145],[87,143,144,145],[87,88,89,104,110,143,144,145],[88,89,143,144,145],[90,95,104,110,143,144,145],[87,88,90,91,95,104,107,110,143,144,145],[90,92,104,107,110,143,144,145],[75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,143,144,145],[87,93,143,144,145],[94,110,143,144,145],[85,87,95,104,143,144,145],[96,143,144,145],[97,143,144,145],[77,98,143,144,145],[99,109,143,144,145],[100,143,144,145],[101,143,144,145],[87,102,143,144,145],[102,103,111,113,143,144,145],[87,104,143,144,145],[105,143,144,145],[106,143,144,145],[95,104,107,143,144,145],[108,143,144,145],[95,109,143,144,145],[101,110,143,144,145],[111,143,144,145],[104,112,143,144,145],[113,143,144,145],[114,143,144,145],[87,89,104,110,113,115,143,144,145],[104,116,143,144,145],[140,143,144,145],[141,143,144,145],[87,90,92,95,104,107,110,116,118,143,144,145],[143,144,145,168],[87,104,118,143,144,145],[136,143,144,145],[133,137,143,144,145],[135,143,144,145],[61,143,144,145],[60,83,143,144,145],[35,37,38,143,144,145],[35,37,143,144,145],[36,45,143,144,145],[30,143,144,145],[34,35,37,143,144,145],[29,143,144,145],[40,143,144,145],[40,41,42,43,44,143,144,145],[29,30,31,32,33,34,35,36,37,38,39,45,46,47,48,49,50,51,52,53,54,55,56,57,58,143,144,145],[30,32,33,36,143,144,145],[39,143,144,145],[34,36,52,143,144,145],[34,35,143,144,145],[34,143,144,145],[36,47,143,144,145],[59,143,144,145]],"referencedMap":[[135,1],[134,2],[72,3],[66,4],[65,2],[64,4],[63,2],[69,5],[67,4],[68,2],[71,4],[70,2],[74,6],[73,2],[119,7],[124,8],[120,2],[123,9],[121,2],[127,10],[128,11],[129,11],[130,2],[131,12],[132,13],[139,14],[143,15],[145,16],[144,17],[122,2],[146,2],[148,18],[149,19],[147,20],[150,21],[151,22],[152,23],[153,24],[154,25],[155,26],[156,27],[157,28],[158,29],[159,30],[160,2],[161,2],[75,31],[77,32],[78,33],[79,34],[80,35],[81,36],[82,37],[83,38],[84,39],[85,40],[86,41],[87,42],[88,43],[89,44],[76,2],[117,2],[90,45],[91,46],[92,47],[118,48],[93,49],[94,50],[95,51],[96,52],[97,53],[98,54],[99,55],[100,56],[101,57],[102,58],[103,59],[104,60],[105,61],[106,62],[107,63],[108,64],[109,65],[110,66],[111,67],[112,68],[113,69],[114,70],[115,71],[116,72],[162,2],[163,2],[141,73],[140,74],[164,2],[126,2],[125,2],[165,2],[142,2],[166,2],[167,75],[168,2],[169,76],[170,77],[133,2],[137,78],[138,79],[136,80],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[62,81],[61,82],[29,2],[30,2],[31,2],[39,83],[38,84],[46,85],[47,2],[32,86],[48,87],[34,88],[41,89],[42,89],[40,2],[43,89],[44,89],[45,90],[59,91],[33,2],[37,92],[49,93],[50,2],[35,2],[51,2],[53,94],[54,95],[55,96],[56,97],[57,85],[52,2],[36,87],[58,88],[60,98]],"exportedModulesMap":[[135,1],[134,2],[72,3],[66,4],[65,2],[64,4],[63,2],[69,5],[67,4],[68,2],[71,4],[70,2],[74,6],[73,2],[119,7],[124,8],[120,2],[123,9],[121,2],[127,10],[128,11],[129,11],[130,2],[131,12],[132,13],[139,14],[143,15],[145,16],[144,17],[122,2],[146,2],[148,18],[149,19],[147,20],[150,21],[151,22],[152,23],[153,24],[154,25],[155,26],[156,27],[157,28],[158,29],[159,30],[160,2],[161,2],[75,31],[77,32],[78,33],[79,34],[80,35],[81,36],[82,37],[83,38],[84,39],[85,40],[86,41],[87,42],[88,43],[89,44],[76,2],[117,2],[90,45],[91,46],[92,47],[118,48],[93,49],[94,50],[95,51],[96,52],[97,53],[98,54],[99,55],[100,56],[101,57],[102,58],[103,59],[104,60],[105,61],[106,62],[107,63],[108,64],[109,65],[110,66],[111,67],[112,68],[113,69],[114,70],[115,71],[116,72],[162,2],[163,2],[141,73],[140,74],[164,2],[126,2],[125,2],[165,2],[142,2],[166,2],[167,75],[168,2],[169,76],[170,77],[133,2],[137,78],[138,79],[136,80],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[62,81],[61,82],[29,2],[30,2],[31,2],[39,83],[38,84],[46,85],[47,2],[32,86],[48,87],[34,88],[41,89],[42,89],[40,2],[43,89],[44,89],[45,90],[59,91],[33,2],[37,92],[49,93],[50,2],[35,2],[51,2],[53,94],[54,95],[55,96],[56,97],[57,85],[52,2],[36,87],[58,88],[60,98]],"semanticDiagnosticsPerFile":[135,134,72,66,65,64,63,69,67,68,71,70,74,73,119,124,120,123,121,127,128,129,130,131,132,139,143,145,144,122,146,148,149,147,150,151,152,153,154,155,156,157,158,159,160,161,75,77,78,79,80,81,82,83,84,85,86,87,88,89,76,117,90,91,92,118,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,162,163,141,140,164,126,125,165,142,166,167,168,169,170,133,137,138,136,6,8,7,2,9,10,11,12,13,14,15,16,3,4,20,17,18,19,21,22,23,5,24,25,26,27,1,28,62,61,29,30,31,39,38,46,47,32,48,34,41,42,40,43,44,45,59,33,37,49,50,35,51,53,54,55,56,57,52,36,58,60]},"version":"4.6.2"}
|