@aws-sdk/cloudfront-signer 3.90.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 +8 -0
- package/LICENSE +201 -0
- package/README.md +49 -0
- package/dist-cjs/index.js +4 -0
- package/dist-cjs/sign.js +248 -0
- package/dist-es/index.js +1 -0
- package/dist-es/sign.js +251 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/sign.d.ts +59 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/sign.d.ts +47 -0
- package/jest.config.js +6 -0
- package/package.json +48 -0
- package/src/index.ts +1 -0
- package/src/sign.spec.ts +577 -0
- package/src/sign.ts +385 -0
- package/tsconfig.cjs.json +9 -0
- package/tsconfig.cjs.tsbuildinfo +1 -0
- package/tsconfig.es.json +9 -0
- package/tsconfig.es.tsbuildinfo +1 -0
- package/tsconfig.types.json +9 -0
- package/tsconfig.types.tsbuildinfo +1 -0
package/src/sign.ts
ADDED
|
@@ -0,0 +1,385 @@
|
|
|
1
|
+
import { parseUrl } from "@aws-sdk/url-parser";
|
|
2
|
+
import { createSign } from "crypto";
|
|
3
|
+
|
|
4
|
+
/** Input type to getSignedUrl and getSignedCookies. */
|
|
5
|
+
export type CloudfrontSignInput = CloudfrontSignInputWithParameters | CloudfrontSignInputWithPolicy;
|
|
6
|
+
|
|
7
|
+
export interface CloudfrontSignInputBase {
|
|
8
|
+
/** The URL string to sign. */
|
|
9
|
+
url: string;
|
|
10
|
+
/** The ID of the Cloudfront key pair. */
|
|
11
|
+
keyPairId: string;
|
|
12
|
+
/** The content of the Cloudfront private key. */
|
|
13
|
+
privateKey: string | Buffer;
|
|
14
|
+
/** The date string for when the signed URL or cookie can no longer be accessed. */
|
|
15
|
+
dateLessThan?: string;
|
|
16
|
+
/** The IP address string to restrict signed URL access to. */
|
|
17
|
+
ipAddress?: string;
|
|
18
|
+
/** The date string for when the signed URL or cookie can start to be accessed. */
|
|
19
|
+
dateGreaterThan?: string;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export type CloudfrontSignInputWithParameters = CloudfrontSignInputBase & {
|
|
23
|
+
/** The date string for when the signed URL or cookie can no longer be accessed */
|
|
24
|
+
dateLessThan: string;
|
|
25
|
+
/** For this type policy should not be provided. */
|
|
26
|
+
policy?: never;
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export type CloudfrontSignInputWithPolicy = CloudfrontSignInputBase & {
|
|
30
|
+
/** The JSON-encoded policy string */
|
|
31
|
+
policy: string;
|
|
32
|
+
/**
|
|
33
|
+
* For this type dateLessThan should not be provided.
|
|
34
|
+
*/
|
|
35
|
+
dateLessThan?: never;
|
|
36
|
+
/**
|
|
37
|
+
* For this type ipAddress should not be provided.
|
|
38
|
+
*/
|
|
39
|
+
ipAddress?: string;
|
|
40
|
+
/**
|
|
41
|
+
* For this type dateGreaterThan should not be provided.
|
|
42
|
+
*/
|
|
43
|
+
dateGreaterThan?: never;
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
export interface CloudfrontSignedCookiesOutput {
|
|
47
|
+
/** ID of the Cloudfront key pair. */
|
|
48
|
+
"CloudFront-Key-Pair-Id": string;
|
|
49
|
+
/** Hashed, signed, and base64-encoded version of the JSON policy. */
|
|
50
|
+
"CloudFront-Signature": string;
|
|
51
|
+
/** The unix date time for when the signed URL or cookie can no longer be accessed. */
|
|
52
|
+
"CloudFront-Expires"?: number;
|
|
53
|
+
/** Base64-encoded version of the JSON policy. */
|
|
54
|
+
"CloudFront-Policy"?: string;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Creates a signed URL string using a canned or custom policy.
|
|
59
|
+
* @returns the input URL with signature attached as query parameters.
|
|
60
|
+
*/
|
|
61
|
+
export function getSignedUrl({
|
|
62
|
+
dateLessThan,
|
|
63
|
+
dateGreaterThan,
|
|
64
|
+
url,
|
|
65
|
+
keyPairId,
|
|
66
|
+
privateKey,
|
|
67
|
+
ipAddress,
|
|
68
|
+
policy,
|
|
69
|
+
}: CloudfrontSignInput): string {
|
|
70
|
+
const parsedUrl = parseUrl(url);
|
|
71
|
+
const queryParams: string[] = [];
|
|
72
|
+
for (const key in parsedUrl.query) {
|
|
73
|
+
queryParams.push(`${key}=${parsedUrl.query[key]}`);
|
|
74
|
+
}
|
|
75
|
+
const cloudfrontSignBuilder = new CloudfrontSignBuilder({
|
|
76
|
+
keyPairId,
|
|
77
|
+
privateKey,
|
|
78
|
+
});
|
|
79
|
+
if (policy) {
|
|
80
|
+
cloudfrontSignBuilder.setCustomPolicy(policy);
|
|
81
|
+
} else {
|
|
82
|
+
cloudfrontSignBuilder.setPolicyParameters({
|
|
83
|
+
url,
|
|
84
|
+
dateLessThan,
|
|
85
|
+
dateGreaterThan,
|
|
86
|
+
ipAddress,
|
|
87
|
+
});
|
|
88
|
+
}
|
|
89
|
+
const cloudfrontQueryParams = cloudfrontSignBuilder.createCloudfrontAttribute();
|
|
90
|
+
if (cloudfrontQueryParams["Expires"]) {
|
|
91
|
+
queryParams.push(`Expires=${cloudfrontQueryParams["Expires"]}`);
|
|
92
|
+
}
|
|
93
|
+
if (cloudfrontQueryParams["Policy"]) {
|
|
94
|
+
queryParams.push(`Policy=${cloudfrontQueryParams["Policy"]}`);
|
|
95
|
+
}
|
|
96
|
+
queryParams.push(`Key-Pair-Id=${keyPairId}`);
|
|
97
|
+
queryParams.push(`Signature=${cloudfrontQueryParams["Signature"]}`);
|
|
98
|
+
const urlWithNewQueryParams = `${url.split("?")[0]}?${queryParams.join("&")}`;
|
|
99
|
+
const urlParser = new CloudfrontURLParser();
|
|
100
|
+
if (urlParser.determineScheme(url) === "rtmp") {
|
|
101
|
+
return urlParser.getRtmpUrl(urlWithNewQueryParams);
|
|
102
|
+
}
|
|
103
|
+
return urlWithNewQueryParams;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* Creates signed cookies using a canned or custom policy.
|
|
108
|
+
* @returns an object with keys/values that can be added to cookies.
|
|
109
|
+
*/
|
|
110
|
+
export function getSignedCookies({
|
|
111
|
+
ipAddress,
|
|
112
|
+
url,
|
|
113
|
+
privateKey,
|
|
114
|
+
keyPairId,
|
|
115
|
+
dateLessThan,
|
|
116
|
+
dateGreaterThan,
|
|
117
|
+
policy,
|
|
118
|
+
}: CloudfrontSignInput): CloudfrontSignedCookiesOutput {
|
|
119
|
+
const cloudfrontSignBuilder = new CloudfrontSignBuilder({
|
|
120
|
+
keyPairId,
|
|
121
|
+
privateKey,
|
|
122
|
+
});
|
|
123
|
+
if (policy) {
|
|
124
|
+
cloudfrontSignBuilder.setCustomPolicy(policy);
|
|
125
|
+
} else {
|
|
126
|
+
cloudfrontSignBuilder.setPolicyParameters({
|
|
127
|
+
url,
|
|
128
|
+
dateLessThan,
|
|
129
|
+
dateGreaterThan,
|
|
130
|
+
ipAddress,
|
|
131
|
+
});
|
|
132
|
+
}
|
|
133
|
+
const cloudfrontCookieAttributes = cloudfrontSignBuilder.createCloudfrontAttribute();
|
|
134
|
+
const cookies: CloudfrontSignedCookiesOutput = {
|
|
135
|
+
"CloudFront-Key-Pair-Id": cloudfrontCookieAttributes["Key-Pair-Id"],
|
|
136
|
+
"CloudFront-Signature": cloudfrontCookieAttributes["Signature"],
|
|
137
|
+
};
|
|
138
|
+
if (cloudfrontCookieAttributes["Expires"]) {
|
|
139
|
+
cookies["CloudFront-Expires"] = cloudfrontCookieAttributes["Expires"];
|
|
140
|
+
}
|
|
141
|
+
if (cloudfrontCookieAttributes["Policy"]) {
|
|
142
|
+
cookies["CloudFront-Policy"] = cloudfrontCookieAttributes["Policy"];
|
|
143
|
+
}
|
|
144
|
+
return cookies;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
interface Policy {
|
|
148
|
+
Statement: Array<{
|
|
149
|
+
Resource: string;
|
|
150
|
+
Condition: {
|
|
151
|
+
DateLessThan: {
|
|
152
|
+
"AWS:EpochTime": number;
|
|
153
|
+
};
|
|
154
|
+
IpAddress?: {
|
|
155
|
+
"AWS:SourceIp": string;
|
|
156
|
+
};
|
|
157
|
+
DateGreaterThan?: {
|
|
158
|
+
"AWS:EpochTime": number;
|
|
159
|
+
};
|
|
160
|
+
};
|
|
161
|
+
}>;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
interface PolicyDates {
|
|
165
|
+
dateLessThan: number;
|
|
166
|
+
dateGreaterThan?: number;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
interface BuildPolicyInput extends PolicyDates, Pick<CloudfrontSignInput, "ipAddress"> {
|
|
170
|
+
resource: string;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
interface CloudfrontAttributes {
|
|
174
|
+
Expires?: number;
|
|
175
|
+
Policy?: string;
|
|
176
|
+
"Key-Pair-Id": string;
|
|
177
|
+
Signature: string;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
class CloudfrontURLParser {
|
|
181
|
+
public determineScheme(url: string) {
|
|
182
|
+
const parts = url.split("://");
|
|
183
|
+
if (parts.length < 2) {
|
|
184
|
+
throw new Error("Invalid URL.");
|
|
185
|
+
}
|
|
186
|
+
return parts[0].replace("*", "");
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
public getRtmpUrl(rtmpUrl: string) {
|
|
190
|
+
const parsed = new URL(rtmpUrl);
|
|
191
|
+
return parsed.pathname.replace(/^\//, "") + parsed.search + parsed.hash;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
public getResource(url: string): string {
|
|
195
|
+
switch (this.determineScheme(url)) {
|
|
196
|
+
case "http":
|
|
197
|
+
case "https":
|
|
198
|
+
return url;
|
|
199
|
+
case "rtmp":
|
|
200
|
+
return this.getRtmpUrl(url);
|
|
201
|
+
default:
|
|
202
|
+
throw new Error("Invalid URI scheme. Scheme must be one of http, https, or rtmp");
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
class CloudfrontSignBuilder {
|
|
208
|
+
private keyPairId: string;
|
|
209
|
+
private privateKey: string | Buffer;
|
|
210
|
+
private policy: string;
|
|
211
|
+
private customPolicy = false;
|
|
212
|
+
private dateLessThan?: number | undefined;
|
|
213
|
+
private urlParser = new CloudfrontURLParser();
|
|
214
|
+
constructor({ privateKey, keyPairId }: { keyPairId: string; privateKey: string | Buffer }) {
|
|
215
|
+
this.keyPairId = keyPairId;
|
|
216
|
+
this.privateKey = privateKey;
|
|
217
|
+
this.policy = "";
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
private buildPolicy(args: BuildPolicyInput): Policy {
|
|
221
|
+
const policy: Policy = {
|
|
222
|
+
Statement: [
|
|
223
|
+
{
|
|
224
|
+
Resource: args.resource,
|
|
225
|
+
Condition: {
|
|
226
|
+
DateLessThan: {
|
|
227
|
+
"AWS:EpochTime": args.dateLessThan,
|
|
228
|
+
},
|
|
229
|
+
},
|
|
230
|
+
},
|
|
231
|
+
],
|
|
232
|
+
};
|
|
233
|
+
if (args.dateGreaterThan) {
|
|
234
|
+
policy.Statement[0].Condition["DateGreaterThan"] = {
|
|
235
|
+
"AWS:EpochTime": args.dateGreaterThan,
|
|
236
|
+
};
|
|
237
|
+
}
|
|
238
|
+
if (args.ipAddress) {
|
|
239
|
+
const cidr = this.parseCIDR(args.ipAddress);
|
|
240
|
+
policy.Statement[0].Condition["IpAddress"] = {
|
|
241
|
+
"AWS:SourceIp": cidr,
|
|
242
|
+
};
|
|
243
|
+
}
|
|
244
|
+
return policy;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
private normalizeBase64(str: string): string {
|
|
248
|
+
const replacements = {
|
|
249
|
+
"+": "-",
|
|
250
|
+
"=": "_",
|
|
251
|
+
"/": "~",
|
|
252
|
+
} as Record<string, string>;
|
|
253
|
+
return str.replace(/[+=/]/g, function (match) {
|
|
254
|
+
return replacements[match];
|
|
255
|
+
});
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
private encodeToBase64(str: string): string {
|
|
259
|
+
return this.normalizeBase64(Buffer.from(str).toString("base64"));
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
private validateIP(ipStr: string): void {
|
|
263
|
+
const octets = ipStr.split(".");
|
|
264
|
+
if (octets.length !== 4) {
|
|
265
|
+
throw new Error(`IP does not contain four octets.`);
|
|
266
|
+
}
|
|
267
|
+
const isValid = octets.every((octet: string) => {
|
|
268
|
+
const num = Number(octet);
|
|
269
|
+
return Number.isInteger(num) && num >= 0 && num <= 255;
|
|
270
|
+
});
|
|
271
|
+
if (!isValid) {
|
|
272
|
+
throw new Error("invalid IP octets");
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
private validateMask(maskStr: string): void {
|
|
277
|
+
const mask = Number(maskStr);
|
|
278
|
+
const isValid = Number.isInteger(mask) && mask >= 0 && mask <= 32;
|
|
279
|
+
if (!isValid) {
|
|
280
|
+
throw new Error("invalid mask");
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
private parseCIDR(cidrStr: string): string {
|
|
285
|
+
try {
|
|
286
|
+
const cidrParts = cidrStr.split("/");
|
|
287
|
+
if (cidrParts.some((part: string) => part.length === 0)) {
|
|
288
|
+
throw new Error("missing ip or mask part of CIDR");
|
|
289
|
+
}
|
|
290
|
+
this.validateIP(cidrParts[0]);
|
|
291
|
+
let mask = "32";
|
|
292
|
+
if (cidrParts.length === 2) {
|
|
293
|
+
this.validateMask(cidrParts[1]);
|
|
294
|
+
mask = cidrParts[1];
|
|
295
|
+
}
|
|
296
|
+
return `${cidrParts[0]}/${mask}`;
|
|
297
|
+
} catch (error) {
|
|
298
|
+
const errMessage = `IP address "${cidrStr}" is invalid`;
|
|
299
|
+
if (error instanceof Error) {
|
|
300
|
+
throw new Error(`${errMessage} due to ${error.message}.`);
|
|
301
|
+
} else {
|
|
302
|
+
throw new Error(`${errMessage}.`);
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
private epochTime(date: Date): number {
|
|
308
|
+
return Math.round(date.getTime() / 1000);
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
private parseDate(date?: string): number | undefined {
|
|
312
|
+
if (!date) {
|
|
313
|
+
return undefined;
|
|
314
|
+
}
|
|
315
|
+
const parsedDate = Date.parse(date);
|
|
316
|
+
return isNaN(parsedDate) ? undefined : this.epochTime(new Date(parsedDate));
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
private parseDateWindow(expiration: string, start?: string): PolicyDates {
|
|
320
|
+
const dateLessThan = this.parseDate(expiration);
|
|
321
|
+
if (!dateLessThan) {
|
|
322
|
+
throw new Error("dateLessThan is invalid. Ensure the date string is compatible with the Date constructor.");
|
|
323
|
+
}
|
|
324
|
+
return {
|
|
325
|
+
dateLessThan,
|
|
326
|
+
dateGreaterThan: this.parseDate(start),
|
|
327
|
+
};
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
private signData(data: string, privateKey: string | Buffer): string {
|
|
331
|
+
const sign = createSign("RSA-SHA1");
|
|
332
|
+
sign.update(data);
|
|
333
|
+
return sign.sign(privateKey, "base64");
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
private signPolicy(policy: string, privateKey: string | Buffer): string {
|
|
337
|
+
return this.normalizeBase64(this.signData(policy, privateKey));
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
setCustomPolicy(policy: string) {
|
|
341
|
+
this.customPolicy = true;
|
|
342
|
+
this.policy = policy;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
setPolicyParameters({
|
|
346
|
+
url,
|
|
347
|
+
dateLessThan,
|
|
348
|
+
dateGreaterThan,
|
|
349
|
+
ipAddress,
|
|
350
|
+
}: {
|
|
351
|
+
url?: string;
|
|
352
|
+
dateLessThan?: string;
|
|
353
|
+
dateGreaterThan?: string;
|
|
354
|
+
ipAddress?: string;
|
|
355
|
+
}) {
|
|
356
|
+
if (!url || !dateLessThan) {
|
|
357
|
+
return false;
|
|
358
|
+
}
|
|
359
|
+
const resource = this.urlParser.getResource(url);
|
|
360
|
+
const parsedDates = this.parseDateWindow(dateLessThan, dateGreaterThan);
|
|
361
|
+
this.dateLessThan = parsedDates.dateLessThan;
|
|
362
|
+
this.customPolicy = Boolean(parsedDates.dateGreaterThan) || Boolean(ipAddress);
|
|
363
|
+
this.policy = JSON.stringify(
|
|
364
|
+
this.buildPolicy({
|
|
365
|
+
resource,
|
|
366
|
+
ipAddress,
|
|
367
|
+
dateLessThan: parsedDates.dateLessThan,
|
|
368
|
+
dateGreaterThan: parsedDates.dateGreaterThan,
|
|
369
|
+
})
|
|
370
|
+
);
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
createCloudfrontAttribute(): CloudfrontAttributes {
|
|
374
|
+
if (!Boolean(this.policy)) {
|
|
375
|
+
throw new Error("Invalid policy");
|
|
376
|
+
}
|
|
377
|
+
const signature = this.signPolicy(this.policy, this.privateKey);
|
|
378
|
+
return {
|
|
379
|
+
Expires: this.customPolicy ? undefined : this.dateLessThan,
|
|
380
|
+
Policy: this.customPolicy ? this.encodeToBase64(this.policy) : undefined,
|
|
381
|
+
"Key-Pair-Id": this.keyPairId,
|
|
382
|
+
Signature: signature,
|
|
383
|
+
};
|
|
384
|
+
}
|
|
385
|
+
}
|
|
@@ -0,0 +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/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/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/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/waiter.d.ts","../types/dist-types/index.d.ts","../url-parser/dist-types/index.d.ts","./src/sign.ts","./src/index.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/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/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/ts3.6/base.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/base.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/connect/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/minimatch/index.d.ts","../../node_modules/@types/glob/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/jest-diff/build/cleanupSemantic.d.ts","../../node_modules/pretty-format/build/types.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-diff/build/diffLines.d.ts","../../node_modules/jest-diff/build/printDiffs.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/json-schema/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/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","7cd63564034b5fbd0bd9a2853034440d9f902992d5245cb1c6fb0f3c8b9b1236","d71be3ec7ca8cf9aaf6a8b68653dd3b7d988678edc120a640fc0307967486cc5","2e04271499caec54dea75e7061de06b2549efbe1d652b9bdab2f74fd2572f61f","446786749a924d5f06ec17e950f2ade9a358443472bec874544733389f0e92e1","0b2fe702dda65d25d5e00ec95fc8952036e7e75870c376abeb2cd2150b0a3bed","a9367ec48d3b67800c69c890e616337935df67caad5bff99383949af561042a8","5c1a8d6754a7cceee2135728e8ce6a4f984966a2d16ff1cbed879f7527d55864","a99add785a8a06f19582501ca19e92949f6b840b3f91d880e73582c5efacccde","5a7bb8afd0a22b7754275793f5ca5aeea379a2aad6153a6d68af49a60a899f69","a604c1ae24a48ccdb36396f49a20677d32722f8fd461dfb47186a5b12fd88d60","1b5cdbebc6c8ba40a1f42a77862f5351335fbff405d80ee2294fccc2b4a94524","efe61feae5104143783880ee03a615dceba1b3080e859b1a3cf20651fed77ccc","b14456a54e15ce24ff9e5ad3b70675b104a36eb35886e3ffaae614292c0908c4","ed01aa50ff4fdbf0f6857596fc385587d87da4896c7980ea75527e098031c488","56ff5ced4cc63a5d48e5a85a4172422ca4501a8f0ef4dee24c383eadd99f0d8f","8a6c15bfa2a0a9e68005a53fb71b60f3769af0da81001b95e4861310e260b788","e1c3e03bea46253a244d88838f0575b242c3c91145c2291aafa3f3ae2ba38ecc","aaffeca0d82a3d862c5186af3ca707801e45cc8b2e7d31e430eb715648ffa839","09efcc3ed4f2466e04f49cd78f69e57385c7f9083a5d8ae04b3cac357ad6ab96","be1692ad8c4f71e961e22fc8c340f68c2e3d2b4d9ce1afbac49b0d91a159b8da","a35a5f637f260a51247dd95103c976ffb2cfa0002f2f6e1be6465c7b67027b40","0efa2a0e043f18e3ecda6aa1615a9209e6d44ee9b1adb46cbc225b3e5b602c4a","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669",{"version":"e9cf450600c496a87ab96d288157b79be6c193e8623bd93553d5d64755940dea","affectsGlobalScope":true},{"version":"c8a2f72f046b5efb790cc37cfe79dcf11ce8e35e7e7d9430e10e53e0aa05c7a2","affectsGlobalScope":true},{"version":"f7be6b47e03c43fa3ad1224b4fd995f3fd35bb29f0c2da5843c9dc04f4162fb3","affectsGlobalScope":true},"0829c48316ebcd238419d1ba2f142c866fe064a2452b449197dc85a9f43a3612","e63d5487b6d47f8abcbfdc3af9450d56118041805dd043febd249af0502dc9b1","5f505b075956d1c7db95d14e2e7a27d4e4a9d1ffc34b83b8273c51b074d575bd","458d55b08da524f900192dafb5837fcc2471cb59c0c149eea4754c180f943473","65409a1cc0ce6d0e4bc9a4dfd35e7df27b8b2646c9055230fdbb03f694b0cc88","e9339a66a8c672260b9c6b727f6d818c42a8d13bade07dfaf907103928e3c456","51d9197446e865a6919a2f217f4d0ad19f77483e5c7f2ebc520de4dc416dc5a3","b39ae9f0d9d0bdcde86891b047ac912602a59fa188c1d2c4bc201fc7c86cfaa9","f8a7a6d7af6267022984c5604ec31c4539fea5cb749e63ff3a0cf8a42fd19603","6570493ff2552919da1e6480f20d0b623b8007343a777922fca7788b6ce85ea1","d42d0bfd355a4f9f247789676137aec627d0b23122452c388a6c1a83105ae811","5efce49fe6c5e6c7211f4cfb93724adc1cf5783c63d608dca8cb61bfcbee29e6","bb05e8566a80f6e42df974e7523744b0af66aa9fafc721022156b202276c480e","9771ae64c7390ee98639ac79e9fb37b87a17de52b4bb705d48c9fc67af429e64","1939c52bd6e3fe0c5beacd7f5762f9847e86861059685fbdf471bd8afaf87944","d4fa2c2de99b1f4ff83aba4732c33fff918bf5869c04674aa2bfe927adfbd386","9cd5d57333119af9861227e2415a944d23ae7fa67706ac60a4c9a5cfde0a5a05","cf36f4557f363a203e39329aba07cc2f916ae181b4f71c61814db2e9ca6ca30c","b0d1073a8fbdd7b36fd048d82b1f148ce161ed54569a4b4b43007733ee643fff","311f6a6b6c05d334c29eb795d765bfbb596bb43a78fcb72bc23a6121eefb3924","b76f9cfe8fdfe10bb5ab1b540ea866771b89bb0e0acafbe119c9c8cbe398c092",{"version":"7e56a8722b9aeae9496e1278539f1b7da4651614b487346e225beba1c7b29fb5","affectsGlobalScope":true},"a7b43c69f9602d198825e403ee34e5d64f83c48b391b2897e8c0e6f72bca35f8","c567c7d3038a689bd3274285c3a421eaabc3289d38e8441e686a91db97a3d663","ae0784437911149dabe5cd245e5858305ebf2c30d44a80a037aa990b8500c5f3","133c3fe00db1cce01ae605753f88e29aa707c9a22c5f25c48d9d6e2ee6dab0c7","fe7b61b633d3c7ec4ebd8039f40e650adbe7ce872239de15da90d2452849c060","05af2a124f5a9113e7503539a3f1e1c72e92d9c756a2e5ad2e5afab11e0325d7","2f9c94d2805d249de1ed836937ce1c62dd051bae445661e62ecf238b69893b29","c1e031196368cb57b219684032865182384fcd3d60027783a42449f6e0a580d1","0b7733d83619ac4e3963e2a9f7c75dc1e9af6850cb2354c9554977813092c10a","3ce933f0c3955f67f67eb7d6b5c83c2c54a18472c1d6f2bb651e51dd40c84837","911690e5b1cdb5516785d9f811b5f9679fae1a2a1df5fad1f001e8d167c7fd98","bd180a2d4ada8a0e92ad33333933e2c96646ea94837bf80f68ec7f95e79b5e12","121cfafda904699b1abc90b7894128a78692a877380d70a9eca2e2b79207076a","8ef3d66d40dd2b5332b4e84bf591219a04d41a7fdb5237d470f7b2002557e427","e959c2855e83468c9b9f2bb73860f718dd80cc82a6d9b8793b81dedf7b1aa249","ce67e3dcf0f09888d0059fc61017ea22a7e5ac9112c727159fbff7937498e8dd",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"2580346168c485710cca0ae724e081c715dafaba9ee1f735aceecc2432427027","483b37cab381fe1a5c118f86ac931aebc4e1ad76f8867dc60c0f10c5c6a9305c","8ea1394bb5549f22e31c1896fb14d943185b72b14db2f39c8fc00e64e8b67361","e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b","23dca7e2d421cdf16f12144497b3da31302dfbe88d648eff16bf37944483f3bd","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"61b60d145059c3c8e3c7b484713191b6d0b70999bcb11f2b26286b15926a2b5f","affectsGlobalScope":true},"5171627120eeb3a7e8afb8ed04ea9be7f0b53ba09bb1fc95172483e0fbb0740c","95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2","393137c76bd922ba70a2f8bf1ade4f59a16171a02fb25918c168d48875b0cfb0","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190",{"version":"6ff2ca51e2c9d88d6d904c481879b12ec0cad2a69b88e220859a52207444773b","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","96b49a9de749afcf92b5bce1d8cc42cfae6816cdf5ea36584fd9256b8b2e5292","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438","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":[[53],[53,54,55,56,57],[53,55],[59],[74,105],[72,74,105,107,108],[73,105],[72,105,111],[114],[115],[119,123],[127,129,130,131,132,133,134,135,136,137,138,139],[127,128,130,131,132,133,134,135,136,137,138,139],[128,129,130,131,132,133,134,135,136,137,138,139],[127,128,129,131,132,133,134,135,136,137,138,139],[127,128,129,130,132,133,134,135,136,137,138,139],[127,128,129,130,131,133,134,135,136,137,138,139],[127,128,129,130,131,132,134,135,136,137,138,139],[127,128,129,130,131,132,133,135,136,137,138,139],[127,128,129,130,131,132,133,134,136,137,138,139],[127,128,129,130,131,132,133,134,135,137,138,139],[127,128,129,130,131,132,133,134,135,136,138,139],[127,128,129,130,131,132,133,134,135,136,137,139],[127,128,129,130,131,132,133,134,135,136,137,138],[103],[62],[102,103],[63],[64,72,79,88],[64,65,72,79],[67],[68,88],[69,70,72,79],[70],[71,72],[72],[72,73,88,94],[74,79,88,94],[72,73,74,75,79,88,91,94],[74,76,91,94],[104],[72,77],[70,72,79,88],[80],[81],[62,82],[93],[84],[85],[72,86],[86,87,95,97],[72,88],[89],[90],[79,91],[92],[61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101],[79,93],[85,94],[95],[88,96],[97],[101],[72,73,88,97,98],[88,99],[72,74,76,79,88,91,94,99,105],[147],[72,88,105],[117,120],[117,120,121,122],[119],[118],[29,51],[29,50,68],[33,35,36],[33,35],[34],[32,33,35],[30],[30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48],[31,34],[37],[32,34,43],[32,33],[32],[34,39],[49]],"referencedMap":[[55,1],[58,2],[54,1],[56,3],[57,1],[60,4],[106,5],[109,6],[110,7],[112,8],[113,7],[115,9],[116,10],[124,11],[128,12],[129,13],[127,14],[130,15],[131,16],[132,17],[133,18],[134,19],[135,20],[136,21],[137,22],[138,23],[139,24],[103,25],[62,26],[104,27],[63,28],[64,29],[65,30],[67,31],[68,32],[69,33],[70,34],[71,35],[72,36],[73,37],[74,38],[75,39],[76,40],[105,41],[77,42],[79,43],[80,44],[81,45],[82,46],[83,47],[84,48],[85,49],[86,50],[87,51],[88,52],[89,53],[90,54],[91,55],[92,56],[102,57],[93,58],[94,59],[95,60],[96,61],[97,62],[101,63],[98,64],[99,65],[146,66],[148,67],[149,68],[121,69],[123,70],[122,69],[120,71],[119,72],[52,73],[51,74],[37,75],[36,76],[38,77],[40,78],[32,79],[49,80],[35,81],[41,82],[44,83],[45,84],[46,85],[47,86],[34,78],[48,79],[50,87]],"exportedModulesMap":[[55,1],[58,2],[54,1],[56,3],[57,1],[60,4],[106,5],[109,6],[110,7],[112,8],[113,7],[115,9],[116,10],[124,11],[128,12],[129,13],[127,14],[130,15],[131,16],[132,17],[133,18],[134,19],[135,20],[136,21],[137,22],[138,23],[139,24],[103,25],[62,26],[104,27],[63,28],[64,29],[65,30],[67,31],[68,32],[69,33],[70,34],[71,35],[72,36],[73,37],[74,38],[75,39],[76,40],[105,41],[77,42],[79,43],[80,44],[81,45],[82,46],[83,47],[84,48],[85,49],[86,50],[87,51],[88,52],[89,53],[90,54],[91,55],[92,56],[102,57],[93,58],[94,59],[95,60],[96,61],[97,62],[101,63],[98,64],[99,65],[146,66],[148,67],[149,68],[121,69],[123,70],[122,69],[120,71],[119,72],[52,73],[51,74],[37,75],[36,76],[38,77],[40,78],[32,79],[49,80],[35,81],[41,82],[44,83],[45,84],[46,85],[47,86],[34,78],[48,79],[50,87]],"semanticDiagnosticsPerFile":[55,53,58,54,56,57,60,59,106,109,110,112,113,114,115,116,124,125,126,128,129,127,130,131,132,133,134,135,136,137,138,139,111,140,103,62,104,63,64,65,66,67,68,69,70,71,72,73,61,100,74,75,76,105,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,102,93,94,95,96,97,101,98,99,141,142,143,108,107,144,145,146,147,148,149,117,121,123,122,120,119,118,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,52,51,30,37,36,38,39,40,32,49,31,35,41,42,33,44,45,46,47,43,34,48,50]},"version":"4.6.2"}
|
package/tsconfig.es.json
ADDED
|
@@ -0,0 +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/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/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/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/waiter.d.ts","../types/dist-types/index.d.ts","../url-parser/dist-types/index.d.ts","./src/sign.ts","./src/index.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/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/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/ts3.6/base.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/base.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/connect/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/minimatch/index.d.ts","../../node_modules/@types/glob/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/jest-diff/build/cleanupSemantic.d.ts","../../node_modules/pretty-format/build/types.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-diff/build/diffLines.d.ts","../../node_modules/jest-diff/build/printDiffs.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/json-schema/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/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","7cd63564034b5fbd0bd9a2853034440d9f902992d5245cb1c6fb0f3c8b9b1236","d71be3ec7ca8cf9aaf6a8b68653dd3b7d988678edc120a640fc0307967486cc5","2e04271499caec54dea75e7061de06b2549efbe1d652b9bdab2f74fd2572f61f","446786749a924d5f06ec17e950f2ade9a358443472bec874544733389f0e92e1","0b2fe702dda65d25d5e00ec95fc8952036e7e75870c376abeb2cd2150b0a3bed","a9367ec48d3b67800c69c890e616337935df67caad5bff99383949af561042a8","5c1a8d6754a7cceee2135728e8ce6a4f984966a2d16ff1cbed879f7527d55864","a99add785a8a06f19582501ca19e92949f6b840b3f91d880e73582c5efacccde","5a7bb8afd0a22b7754275793f5ca5aeea379a2aad6153a6d68af49a60a899f69","a604c1ae24a48ccdb36396f49a20677d32722f8fd461dfb47186a5b12fd88d60","1b5cdbebc6c8ba40a1f42a77862f5351335fbff405d80ee2294fccc2b4a94524","efe61feae5104143783880ee03a615dceba1b3080e859b1a3cf20651fed77ccc","b14456a54e15ce24ff9e5ad3b70675b104a36eb35886e3ffaae614292c0908c4","ed01aa50ff4fdbf0f6857596fc385587d87da4896c7980ea75527e098031c488","56ff5ced4cc63a5d48e5a85a4172422ca4501a8f0ef4dee24c383eadd99f0d8f","8a6c15bfa2a0a9e68005a53fb71b60f3769af0da81001b95e4861310e260b788","e1c3e03bea46253a244d88838f0575b242c3c91145c2291aafa3f3ae2ba38ecc","aaffeca0d82a3d862c5186af3ca707801e45cc8b2e7d31e430eb715648ffa839","09efcc3ed4f2466e04f49cd78f69e57385c7f9083a5d8ae04b3cac357ad6ab96","be1692ad8c4f71e961e22fc8c340f68c2e3d2b4d9ce1afbac49b0d91a159b8da","a35a5f637f260a51247dd95103c976ffb2cfa0002f2f6e1be6465c7b67027b40","0efa2a0e043f18e3ecda6aa1615a9209e6d44ee9b1adb46cbc225b3e5b602c4a","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669",{"version":"e9cf450600c496a87ab96d288157b79be6c193e8623bd93553d5d64755940dea","affectsGlobalScope":true},{"version":"c8a2f72f046b5efb790cc37cfe79dcf11ce8e35e7e7d9430e10e53e0aa05c7a2","affectsGlobalScope":true},{"version":"f7be6b47e03c43fa3ad1224b4fd995f3fd35bb29f0c2da5843c9dc04f4162fb3","affectsGlobalScope":true},"0829c48316ebcd238419d1ba2f142c866fe064a2452b449197dc85a9f43a3612","e63d5487b6d47f8abcbfdc3af9450d56118041805dd043febd249af0502dc9b1","5f505b075956d1c7db95d14e2e7a27d4e4a9d1ffc34b83b8273c51b074d575bd","458d55b08da524f900192dafb5837fcc2471cb59c0c149eea4754c180f943473","65409a1cc0ce6d0e4bc9a4dfd35e7df27b8b2646c9055230fdbb03f694b0cc88","e9339a66a8c672260b9c6b727f6d818c42a8d13bade07dfaf907103928e3c456","51d9197446e865a6919a2f217f4d0ad19f77483e5c7f2ebc520de4dc416dc5a3","b39ae9f0d9d0bdcde86891b047ac912602a59fa188c1d2c4bc201fc7c86cfaa9","f8a7a6d7af6267022984c5604ec31c4539fea5cb749e63ff3a0cf8a42fd19603","6570493ff2552919da1e6480f20d0b623b8007343a777922fca7788b6ce85ea1","d42d0bfd355a4f9f247789676137aec627d0b23122452c388a6c1a83105ae811","5efce49fe6c5e6c7211f4cfb93724adc1cf5783c63d608dca8cb61bfcbee29e6","bb05e8566a80f6e42df974e7523744b0af66aa9fafc721022156b202276c480e","9771ae64c7390ee98639ac79e9fb37b87a17de52b4bb705d48c9fc67af429e64","1939c52bd6e3fe0c5beacd7f5762f9847e86861059685fbdf471bd8afaf87944","d4fa2c2de99b1f4ff83aba4732c33fff918bf5869c04674aa2bfe927adfbd386","9cd5d57333119af9861227e2415a944d23ae7fa67706ac60a4c9a5cfde0a5a05","cf36f4557f363a203e39329aba07cc2f916ae181b4f71c61814db2e9ca6ca30c","b0d1073a8fbdd7b36fd048d82b1f148ce161ed54569a4b4b43007733ee643fff","311f6a6b6c05d334c29eb795d765bfbb596bb43a78fcb72bc23a6121eefb3924","b76f9cfe8fdfe10bb5ab1b540ea866771b89bb0e0acafbe119c9c8cbe398c092",{"version":"7e56a8722b9aeae9496e1278539f1b7da4651614b487346e225beba1c7b29fb5","affectsGlobalScope":true},"a7b43c69f9602d198825e403ee34e5d64f83c48b391b2897e8c0e6f72bca35f8","c567c7d3038a689bd3274285c3a421eaabc3289d38e8441e686a91db97a3d663","ae0784437911149dabe5cd245e5858305ebf2c30d44a80a037aa990b8500c5f3","133c3fe00db1cce01ae605753f88e29aa707c9a22c5f25c48d9d6e2ee6dab0c7","fe7b61b633d3c7ec4ebd8039f40e650adbe7ce872239de15da90d2452849c060","05af2a124f5a9113e7503539a3f1e1c72e92d9c756a2e5ad2e5afab11e0325d7","2f9c94d2805d249de1ed836937ce1c62dd051bae445661e62ecf238b69893b29","c1e031196368cb57b219684032865182384fcd3d60027783a42449f6e0a580d1","0b7733d83619ac4e3963e2a9f7c75dc1e9af6850cb2354c9554977813092c10a","3ce933f0c3955f67f67eb7d6b5c83c2c54a18472c1d6f2bb651e51dd40c84837","911690e5b1cdb5516785d9f811b5f9679fae1a2a1df5fad1f001e8d167c7fd98","bd180a2d4ada8a0e92ad33333933e2c96646ea94837bf80f68ec7f95e79b5e12","121cfafda904699b1abc90b7894128a78692a877380d70a9eca2e2b79207076a","8ef3d66d40dd2b5332b4e84bf591219a04d41a7fdb5237d470f7b2002557e427","e959c2855e83468c9b9f2bb73860f718dd80cc82a6d9b8793b81dedf7b1aa249","ce67e3dcf0f09888d0059fc61017ea22a7e5ac9112c727159fbff7937498e8dd",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"2580346168c485710cca0ae724e081c715dafaba9ee1f735aceecc2432427027","483b37cab381fe1a5c118f86ac931aebc4e1ad76f8867dc60c0f10c5c6a9305c","8ea1394bb5549f22e31c1896fb14d943185b72b14db2f39c8fc00e64e8b67361","e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b","23dca7e2d421cdf16f12144497b3da31302dfbe88d648eff16bf37944483f3bd","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"61b60d145059c3c8e3c7b484713191b6d0b70999bcb11f2b26286b15926a2b5f","affectsGlobalScope":true},"5171627120eeb3a7e8afb8ed04ea9be7f0b53ba09bb1fc95172483e0fbb0740c","95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2","393137c76bd922ba70a2f8bf1ade4f59a16171a02fb25918c168d48875b0cfb0","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190",{"version":"6ff2ca51e2c9d88d6d904c481879b12ec0cad2a69b88e220859a52207444773b","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","96b49a9de749afcf92b5bce1d8cc42cfae6816cdf5ea36584fd9256b8b2e5292","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438","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":1,"useUnknownInCatchVariables":false},"fileIdsList":[[53],[53,54,55,56,57],[53,55],[59],[74,105],[72,74,105,107,108],[73,105],[72,105,111],[114],[115],[119,123],[127,129,130,131,132,133,134,135,136,137,138,139],[127,128,130,131,132,133,134,135,136,137,138,139],[128,129,130,131,132,133,134,135,136,137,138,139],[127,128,129,131,132,133,134,135,136,137,138,139],[127,128,129,130,132,133,134,135,136,137,138,139],[127,128,129,130,131,133,134,135,136,137,138,139],[127,128,129,130,131,132,134,135,136,137,138,139],[127,128,129,130,131,132,133,135,136,137,138,139],[127,128,129,130,131,132,133,134,136,137,138,139],[127,128,129,130,131,132,133,134,135,137,138,139],[127,128,129,130,131,132,133,134,135,136,138,139],[127,128,129,130,131,132,133,134,135,136,137,139],[127,128,129,130,131,132,133,134,135,136,137,138],[103],[62],[102,103],[63],[64,72,79,88],[64,65,72,79],[67],[68,88],[69,70,72,79],[70],[71,72],[72],[72,73,88,94],[74,79,88,94],[72,73,74,75,79,88,91,94],[74,76,91,94],[104],[72,77],[70,72,79,88],[80],[81],[62,82],[93],[84],[85],[72,86],[86,87,95,97],[72,88],[89],[90],[79,91],[92],[61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101],[79,93],[85,94],[95],[88,96],[97],[101],[72,73,88,97,98],[88,99],[72,74,76,79,88,91,94,99,105],[147],[72,88,105],[117,120],[117,120,121,122],[119],[118],[29,51],[29,50,68],[33,35,36],[33,35],[34],[32,33,35],[30],[30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48],[31,34],[37],[32,34,43],[32,33],[32],[34,39],[49]],"referencedMap":[[55,1],[58,2],[54,1],[56,3],[57,1],[60,4],[106,5],[109,6],[110,7],[112,8],[113,7],[115,9],[116,10],[124,11],[128,12],[129,13],[127,14],[130,15],[131,16],[132,17],[133,18],[134,19],[135,20],[136,21],[137,22],[138,23],[139,24],[103,25],[62,26],[104,27],[63,28],[64,29],[65,30],[67,31],[68,32],[69,33],[70,34],[71,35],[72,36],[73,37],[74,38],[75,39],[76,40],[105,41],[77,42],[79,43],[80,44],[81,45],[82,46],[83,47],[84,48],[85,49],[86,50],[87,51],[88,52],[89,53],[90,54],[91,55],[92,56],[102,57],[93,58],[94,59],[95,60],[96,61],[97,62],[101,63],[98,64],[99,65],[146,66],[148,67],[149,68],[121,69],[123,70],[122,69],[120,71],[119,72],[52,73],[51,74],[37,75],[36,76],[38,77],[40,78],[32,79],[49,80],[35,81],[41,82],[44,83],[45,84],[46,85],[47,86],[34,78],[48,79],[50,87]],"exportedModulesMap":[[55,1],[58,2],[54,1],[56,3],[57,1],[60,4],[106,5],[109,6],[110,7],[112,8],[113,7],[115,9],[116,10],[124,11],[128,12],[129,13],[127,14],[130,15],[131,16],[132,17],[133,18],[134,19],[135,20],[136,21],[137,22],[138,23],[139,24],[103,25],[62,26],[104,27],[63,28],[64,29],[65,30],[67,31],[68,32],[69,33],[70,34],[71,35],[72,36],[73,37],[74,38],[75,39],[76,40],[105,41],[77,42],[79,43],[80,44],[81,45],[82,46],[83,47],[84,48],[85,49],[86,50],[87,51],[88,52],[89,53],[90,54],[91,55],[92,56],[102,57],[93,58],[94,59],[95,60],[96,61],[97,62],[101,63],[98,64],[99,65],[146,66],[148,67],[149,68],[121,69],[123,70],[122,69],[120,71],[119,72],[52,73],[51,74],[37,75],[36,76],[38,77],[40,78],[32,79],[49,80],[35,81],[41,82],[44,83],[45,84],[46,85],[47,86],[34,78],[48,79],[50,87]],"semanticDiagnosticsPerFile":[55,53,58,54,56,57,60,59,106,109,110,112,113,114,115,116,124,125,126,128,129,127,130,131,132,133,134,135,136,137,138,139,111,140,103,62,104,63,64,65,66,67,68,69,70,71,72,73,61,100,74,75,76,105,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,102,93,94,95,96,97,101,98,99,141,142,143,108,107,144,145,146,147,148,149,117,121,123,122,120,119,118,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,52,51,30,37,36,38,39,40,32,49,31,35,41,42,33,44,45,46,47,43,34,48,50]},"version":"4.6.2"}
|
|
@@ -0,0 +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/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/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/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/waiter.d.ts","../types/dist-types/index.d.ts","../url-parser/dist-types/index.d.ts","./src/sign.ts","./src/index.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/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/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/ts3.6/base.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/base.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/connect/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/minimatch/index.d.ts","../../node_modules/@types/glob/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/jest-diff/build/cleanupSemantic.d.ts","../../node_modules/pretty-format/build/types.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-diff/build/diffLines.d.ts","../../node_modules/jest-diff/build/printDiffs.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/json-schema/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/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","7cd63564034b5fbd0bd9a2853034440d9f902992d5245cb1c6fb0f3c8b9b1236","d71be3ec7ca8cf9aaf6a8b68653dd3b7d988678edc120a640fc0307967486cc5","2e04271499caec54dea75e7061de06b2549efbe1d652b9bdab2f74fd2572f61f","446786749a924d5f06ec17e950f2ade9a358443472bec874544733389f0e92e1","0b2fe702dda65d25d5e00ec95fc8952036e7e75870c376abeb2cd2150b0a3bed","a9367ec48d3b67800c69c890e616337935df67caad5bff99383949af561042a8","5c1a8d6754a7cceee2135728e8ce6a4f984966a2d16ff1cbed879f7527d55864","a99add785a8a06f19582501ca19e92949f6b840b3f91d880e73582c5efacccde","5a7bb8afd0a22b7754275793f5ca5aeea379a2aad6153a6d68af49a60a899f69","a604c1ae24a48ccdb36396f49a20677d32722f8fd461dfb47186a5b12fd88d60","1b5cdbebc6c8ba40a1f42a77862f5351335fbff405d80ee2294fccc2b4a94524","efe61feae5104143783880ee03a615dceba1b3080e859b1a3cf20651fed77ccc","b14456a54e15ce24ff9e5ad3b70675b104a36eb35886e3ffaae614292c0908c4","ed01aa50ff4fdbf0f6857596fc385587d87da4896c7980ea75527e098031c488","56ff5ced4cc63a5d48e5a85a4172422ca4501a8f0ef4dee24c383eadd99f0d8f","8a6c15bfa2a0a9e68005a53fb71b60f3769af0da81001b95e4861310e260b788","e1c3e03bea46253a244d88838f0575b242c3c91145c2291aafa3f3ae2ba38ecc","aaffeca0d82a3d862c5186af3ca707801e45cc8b2e7d31e430eb715648ffa839","09efcc3ed4f2466e04f49cd78f69e57385c7f9083a5d8ae04b3cac357ad6ab96","be1692ad8c4f71e961e22fc8c340f68c2e3d2b4d9ce1afbac49b0d91a159b8da","a35a5f637f260a51247dd95103c976ffb2cfa0002f2f6e1be6465c7b67027b40","0efa2a0e043f18e3ecda6aa1615a9209e6d44ee9b1adb46cbc225b3e5b602c4a","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669",{"version":"e9cf450600c496a87ab96d288157b79be6c193e8623bd93553d5d64755940dea","affectsGlobalScope":true},{"version":"c8a2f72f046b5efb790cc37cfe79dcf11ce8e35e7e7d9430e10e53e0aa05c7a2","affectsGlobalScope":true},{"version":"f7be6b47e03c43fa3ad1224b4fd995f3fd35bb29f0c2da5843c9dc04f4162fb3","affectsGlobalScope":true},"0829c48316ebcd238419d1ba2f142c866fe064a2452b449197dc85a9f43a3612","e63d5487b6d47f8abcbfdc3af9450d56118041805dd043febd249af0502dc9b1","5f505b075956d1c7db95d14e2e7a27d4e4a9d1ffc34b83b8273c51b074d575bd","458d55b08da524f900192dafb5837fcc2471cb59c0c149eea4754c180f943473","65409a1cc0ce6d0e4bc9a4dfd35e7df27b8b2646c9055230fdbb03f694b0cc88","e9339a66a8c672260b9c6b727f6d818c42a8d13bade07dfaf907103928e3c456","51d9197446e865a6919a2f217f4d0ad19f77483e5c7f2ebc520de4dc416dc5a3","b39ae9f0d9d0bdcde86891b047ac912602a59fa188c1d2c4bc201fc7c86cfaa9","f8a7a6d7af6267022984c5604ec31c4539fea5cb749e63ff3a0cf8a42fd19603","6570493ff2552919da1e6480f20d0b623b8007343a777922fca7788b6ce85ea1","d42d0bfd355a4f9f247789676137aec627d0b23122452c388a6c1a83105ae811","5efce49fe6c5e6c7211f4cfb93724adc1cf5783c63d608dca8cb61bfcbee29e6","bb05e8566a80f6e42df974e7523744b0af66aa9fafc721022156b202276c480e","9771ae64c7390ee98639ac79e9fb37b87a17de52b4bb705d48c9fc67af429e64","1939c52bd6e3fe0c5beacd7f5762f9847e86861059685fbdf471bd8afaf87944","d4fa2c2de99b1f4ff83aba4732c33fff918bf5869c04674aa2bfe927adfbd386","9cd5d57333119af9861227e2415a944d23ae7fa67706ac60a4c9a5cfde0a5a05","cf36f4557f363a203e39329aba07cc2f916ae181b4f71c61814db2e9ca6ca30c","b0d1073a8fbdd7b36fd048d82b1f148ce161ed54569a4b4b43007733ee643fff","311f6a6b6c05d334c29eb795d765bfbb596bb43a78fcb72bc23a6121eefb3924","b76f9cfe8fdfe10bb5ab1b540ea866771b89bb0e0acafbe119c9c8cbe398c092",{"version":"7e56a8722b9aeae9496e1278539f1b7da4651614b487346e225beba1c7b29fb5","affectsGlobalScope":true},"a7b43c69f9602d198825e403ee34e5d64f83c48b391b2897e8c0e6f72bca35f8","c567c7d3038a689bd3274285c3a421eaabc3289d38e8441e686a91db97a3d663","ae0784437911149dabe5cd245e5858305ebf2c30d44a80a037aa990b8500c5f3","133c3fe00db1cce01ae605753f88e29aa707c9a22c5f25c48d9d6e2ee6dab0c7","fe7b61b633d3c7ec4ebd8039f40e650adbe7ce872239de15da90d2452849c060","05af2a124f5a9113e7503539a3f1e1c72e92d9c756a2e5ad2e5afab11e0325d7","2f9c94d2805d249de1ed836937ce1c62dd051bae445661e62ecf238b69893b29","c1e031196368cb57b219684032865182384fcd3d60027783a42449f6e0a580d1","0b7733d83619ac4e3963e2a9f7c75dc1e9af6850cb2354c9554977813092c10a","3ce933f0c3955f67f67eb7d6b5c83c2c54a18472c1d6f2bb651e51dd40c84837","911690e5b1cdb5516785d9f811b5f9679fae1a2a1df5fad1f001e8d167c7fd98","bd180a2d4ada8a0e92ad33333933e2c96646ea94837bf80f68ec7f95e79b5e12","121cfafda904699b1abc90b7894128a78692a877380d70a9eca2e2b79207076a","8ef3d66d40dd2b5332b4e84bf591219a04d41a7fdb5237d470f7b2002557e427","e959c2855e83468c9b9f2bb73860f718dd80cc82a6d9b8793b81dedf7b1aa249","ce67e3dcf0f09888d0059fc61017ea22a7e5ac9112c727159fbff7937498e8dd",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"2580346168c485710cca0ae724e081c715dafaba9ee1f735aceecc2432427027","483b37cab381fe1a5c118f86ac931aebc4e1ad76f8867dc60c0f10c5c6a9305c","8ea1394bb5549f22e31c1896fb14d943185b72b14db2f39c8fc00e64e8b67361","e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b","23dca7e2d421cdf16f12144497b3da31302dfbe88d648eff16bf37944483f3bd","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"61b60d145059c3c8e3c7b484713191b6d0b70999bcb11f2b26286b15926a2b5f","affectsGlobalScope":true},"5171627120eeb3a7e8afb8ed04ea9be7f0b53ba09bb1fc95172483e0fbb0740c","95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2","393137c76bd922ba70a2f8bf1ade4f59a16171a02fb25918c168d48875b0cfb0","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190",{"version":"6ff2ca51e2c9d88d6d904c481879b12ec0cad2a69b88e220859a52207444773b","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","96b49a9de749afcf92b5bce1d8cc42cfae6816cdf5ea36584fd9256b8b2e5292","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438","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":[[52],[52,53,54,55,56],[52,54],[58],[73,104],[71,73,104,106,107],[72,104],[71,104,110],[113],[114],[118,122],[126,128,129,130,131,132,133,134,135,136,137,138],[126,127,129,130,131,132,133,134,135,136,137,138],[127,128,129,130,131,132,133,134,135,136,137,138],[126,127,128,130,131,132,133,134,135,136,137,138],[126,127,128,129,131,132,133,134,135,136,137,138],[126,127,128,129,130,132,133,134,135,136,137,138],[126,127,128,129,130,131,133,134,135,136,137,138],[126,127,128,129,130,131,132,134,135,136,137,138],[126,127,128,129,130,131,132,133,135,136,137,138],[126,127,128,129,130,131,132,133,134,136,137,138],[126,127,128,129,130,131,132,133,134,135,137,138],[126,127,128,129,130,131,132,133,134,135,136,138],[126,127,128,129,130,131,132,133,134,135,136,137],[102],[61],[101,102],[62],[63,71,78,87],[63,64,71,78],[66],[67,87],[68,69,71,78],[69],[70,71],[71],[71,72,87,93],[73,78,87,93],[71,72,73,74,78,87,90,93],[73,75,90,93],[103],[71,76],[69,71,78,87],[79],[80],[61,81],[92],[83],[84],[71,85],[85,86,94,96],[71,87],[88],[89],[78,90],[91],[60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100],[78,92],[84,93],[94],[87,95],[96],[100],[71,72,87,96,97],[87,98],[71,73,75,78,87,90,93,98,104],[146],[71,87,104],[116,119],[116,119,120,121],[118],[117],[50],[49,67],[32,34,35],[32,34],[33],[31,32,34],[29],[29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47],[30,33],[36],[31,33,42],[31,32],[31],[33,38],[48]],"referencedMap":[[54,1],[57,2],[53,1],[55,3],[56,1],[59,4],[105,5],[108,6],[109,7],[111,8],[112,7],[114,9],[115,10],[123,11],[127,12],[128,13],[126,14],[129,15],[130,16],[131,17],[132,18],[133,19],[134,20],[135,21],[136,22],[137,23],[138,24],[102,25],[61,26],[103,27],[62,28],[63,29],[64,30],[66,31],[67,32],[68,33],[69,34],[70,35],[71,36],[72,37],[73,38],[74,39],[75,40],[104,41],[76,42],[78,43],[79,44],[80,45],[81,46],[82,47],[83,48],[84,49],[85,50],[86,51],[87,52],[88,53],[89,54],[90,55],[91,56],[101,57],[92,58],[93,59],[94,60],[95,61],[96,62],[100,63],[97,64],[98,65],[145,66],[147,67],[148,68],[120,69],[122,70],[121,69],[119,71],[118,72],[51,73],[50,74],[36,75],[35,76],[37,77],[39,78],[31,79],[48,80],[34,81],[40,82],[43,83],[44,84],[45,85],[46,86],[33,78],[47,79],[49,87]],"exportedModulesMap":[[54,1],[57,2],[53,1],[55,3],[56,1],[59,4],[105,5],[108,6],[109,7],[111,8],[112,7],[114,9],[115,10],[123,11],[127,12],[128,13],[126,14],[129,15],[130,16],[131,17],[132,18],[133,19],[134,20],[135,21],[136,22],[137,23],[138,24],[102,25],[61,26],[103,27],[62,28],[63,29],[64,30],[66,31],[67,32],[68,33],[69,34],[70,35],[71,36],[72,37],[73,38],[74,39],[75,40],[104,41],[76,42],[78,43],[79,44],[80,45],[81,46],[82,47],[83,48],[84,49],[85,50],[86,51],[87,52],[88,53],[89,54],[90,55],[91,56],[101,57],[92,58],[93,59],[94,60],[95,61],[96,62],[100,63],[97,64],[98,65],[145,66],[147,67],[148,68],[120,69],[122,70],[121,69],[119,71],[118,72],[51,73],[50,74],[36,75],[35,76],[37,77],[39,78],[31,79],[48,80],[34,81],[40,82],[43,83],[44,84],[45,85],[46,86],[33,78],[47,79],[49,87]],"semanticDiagnosticsPerFile":[54,52,57,53,55,56,59,58,105,108,109,111,112,113,114,115,123,124,125,127,128,126,129,130,131,132,133,134,135,136,137,138,110,139,102,61,103,62,63,64,65,66,67,68,69,70,71,72,60,99,73,74,75,104,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,101,92,93,94,95,96,100,97,98,140,141,142,107,106,143,144,145,146,147,148,116,120,122,121,119,118,117,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,51,50,29,36,35,37,38,39,31,48,30,34,40,41,32,43,44,45,46,42,33,47,49]},"version":"4.6.2"}
|