@tutao/tutanota-utils 259.250108.1 → 259.250113.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/AsyncResult.js +1 -0
- package/dist/Encoding.d.ts +1 -1
- package/dist/Encoding.js +1 -1
- package/dist/LazyLoaded.js +5 -2
- package/dist/PromiseUtils.js +1 -0
- package/dist/SortedArray.js +2 -0
- package/dist/StringUtils.js +4 -11
- package/dist/Tokenizer.js +1 -1
- package/dist/TypeRef.js +7 -5
- package/dist/Utils.js +5 -3
- package/dist/WebAssembly.js +2 -0
- package/dist/tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/AsyncResult.js
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
* Sort of fills a similar role to LazyLoaded, usage is more verbose but also more typesafe. maybe this should be reconciled.
|
|
4
4
|
*/
|
|
5
5
|
export class AsyncResult {
|
|
6
|
+
_state;
|
|
6
7
|
constructor(promise) {
|
|
7
8
|
this._state = pending(promise);
|
|
8
9
|
promise.then((result) => (this._state = complete(result))).catch((error) => (this._state = failure(error)));
|
package/dist/Encoding.d.ts
CHANGED
|
@@ -113,4 +113,4 @@ export declare function byteArraysToBytes(byteArrays: Array<Uint8Array>): Uint8A
|
|
|
113
113
|
*
|
|
114
114
|
* @return list of byte arrays
|
|
115
115
|
*/
|
|
116
|
-
export declare function bytesToByteArrays(encodedByteArrays: Uint8Array, expectedByteArrays:
|
|
116
|
+
export declare function bytesToByteArrays(encodedByteArrays: Uint8Array, expectedByteArrays: number): Array<Uint8Array>;
|
package/dist/Encoding.js
CHANGED
|
@@ -315,7 +315,7 @@ export function byteArraysToBytes(byteArrays) {
|
|
|
315
315
|
const encodingOverhead = byteArrays.length * 2; // two byte length overhead for each byte array
|
|
316
316
|
const encodedByteArrays = new Uint8Array(encodingOverhead + totalBytesLength);
|
|
317
317
|
let index = 0;
|
|
318
|
-
for (
|
|
318
|
+
for (const byteArray of byteArrays) {
|
|
319
319
|
if (byteArray.length > MAX_ENCODED_BYTES_LENGTH) {
|
|
320
320
|
throw new Error("byte array is to long for encoding");
|
|
321
321
|
}
|
package/dist/LazyLoaded.js
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
* If the object was loaded once it is not loaded again.
|
|
4
4
|
*/
|
|
5
5
|
export class LazyLoaded {
|
|
6
|
+
loadFunction;
|
|
7
|
+
defaultValue;
|
|
8
|
+
state = { state: "not_loaded" };
|
|
6
9
|
/**
|
|
7
10
|
* @param loadFunction The function that actually loads the object as soon as getAsync() is called the first time.
|
|
8
11
|
* @param defaultValue The value that shall be returned by getSync() or getLoaded() as long as the object is not loaded yet.
|
|
@@ -10,7 +13,6 @@ export class LazyLoaded {
|
|
|
10
13
|
constructor(loadFunction, defaultValue = null) {
|
|
11
14
|
this.loadFunction = loadFunction;
|
|
12
15
|
this.defaultValue = defaultValue;
|
|
13
|
-
this.state = { state: "not_loaded" };
|
|
14
16
|
}
|
|
15
17
|
load() {
|
|
16
18
|
this.getAsync();
|
|
@@ -27,7 +29,7 @@ export class LazyLoaded {
|
|
|
27
29
|
*/
|
|
28
30
|
getAsync() {
|
|
29
31
|
switch (this.state.state) {
|
|
30
|
-
case "not_loaded":
|
|
32
|
+
case "not_loaded": {
|
|
31
33
|
const loadingPromise = this.loadFunction().then((value) => {
|
|
32
34
|
this.state = { state: "loaded", value };
|
|
33
35
|
return value;
|
|
@@ -37,6 +39,7 @@ export class LazyLoaded {
|
|
|
37
39
|
});
|
|
38
40
|
this.state = { state: "loading", promise: loadingPromise };
|
|
39
41
|
return loadingPromise;
|
|
42
|
+
}
|
|
40
43
|
case "loading":
|
|
41
44
|
return this.state.promise;
|
|
42
45
|
case "loaded":
|
package/dist/PromiseUtils.js
CHANGED
package/dist/SortedArray.js
CHANGED
package/dist/StringUtils.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* @return The padded number as string.
|
|
6
6
|
*/
|
|
7
7
|
export function pad(num, size) {
|
|
8
|
-
|
|
8
|
+
let s = num + "";
|
|
9
9
|
while (s.length < size)
|
|
10
10
|
s = "0" + s;
|
|
11
11
|
return s;
|
|
@@ -81,9 +81,9 @@ export function byteLength(str) {
|
|
|
81
81
|
if (str == null)
|
|
82
82
|
return 0;
|
|
83
83
|
// returns the byte length of an utf8 string
|
|
84
|
-
|
|
85
|
-
for (
|
|
86
|
-
|
|
84
|
+
let s = str.length;
|
|
85
|
+
for (let i = str.length - 1; i >= 0; i--) {
|
|
86
|
+
const code = str.charCodeAt(i);
|
|
87
87
|
if (code > 0x7f && code <= 0x7ff) {
|
|
88
88
|
s++;
|
|
89
89
|
}
|
|
@@ -94,10 +94,3 @@ export function byteLength(str) {
|
|
|
94
94
|
}
|
|
95
95
|
return s;
|
|
96
96
|
}
|
|
97
|
-
/**
|
|
98
|
-
* Create a regex to exactly match a given string, by escaping any special regex characters
|
|
99
|
-
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#escaping
|
|
100
|
-
* */
|
|
101
|
-
function escapedStringRegExp(str, flags) {
|
|
102
|
-
return new RegExp(str.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"), flags);
|
|
103
|
-
}
|
package/dist/Tokenizer.js
CHANGED
|
@@ -7,7 +7,7 @@ export function tokenize(text) {
|
|
|
7
7
|
return [];
|
|
8
8
|
let currentWord = [];
|
|
9
9
|
let words = [];
|
|
10
|
-
for (
|
|
10
|
+
for (let i = 0; i < text.length; i++) {
|
|
11
11
|
let currentChar = text.charAt(i);
|
|
12
12
|
if (isEndOfWord(currentChar)) {
|
|
13
13
|
addCurrentWord(currentWord, words);
|
package/dist/TypeRef.js
CHANGED
|
@@ -2,12 +2,14 @@
|
|
|
2
2
|
* T should be restricted to Entity.
|
|
3
3
|
*/
|
|
4
4
|
export class TypeRef {
|
|
5
|
+
app;
|
|
6
|
+
type;
|
|
7
|
+
/**
|
|
8
|
+
* Field that is never set. Used to make two TypeRefs incompatible (they are structurally compared otherwise).
|
|
9
|
+
* Cannot be private.
|
|
10
|
+
*/
|
|
11
|
+
phantom = null;
|
|
5
12
|
constructor(app, type) {
|
|
6
|
-
/**
|
|
7
|
-
* Field that is never set. Used to make two TypeRefs incompatible (they are structurally compared otherwise).
|
|
8
|
-
* Cannot be private.
|
|
9
|
-
*/
|
|
10
|
-
this.phantom = null;
|
|
11
13
|
this.app = app;
|
|
12
14
|
this.type = type;
|
|
13
15
|
Object.freeze(this);
|
package/dist/Utils.js
CHANGED
|
@@ -216,7 +216,8 @@ export function debounceStart(timeout, toThrottle) {
|
|
|
216
216
|
let lastInvoked = 0;
|
|
217
217
|
return downcast((...args) => {
|
|
218
218
|
if (Date.now() - lastInvoked < timeout) {
|
|
219
|
-
|
|
219
|
+
if (timeoutId)
|
|
220
|
+
clearTimeout(timeoutId);
|
|
220
221
|
timeoutId = setTimeout(() => {
|
|
221
222
|
timeoutId = null;
|
|
222
223
|
toThrottle.apply(null, args);
|
|
@@ -454,10 +455,11 @@ export function mapObject(mapper, obj) {
|
|
|
454
455
|
* Run jobs with defined max parallelism.
|
|
455
456
|
*/
|
|
456
457
|
export class BoundedExecutor {
|
|
458
|
+
maxParallelJobs;
|
|
459
|
+
runningJobsCount = 0;
|
|
460
|
+
currentJob = Promise.resolve();
|
|
457
461
|
constructor(maxParallelJobs) {
|
|
458
462
|
this.maxParallelJobs = maxParallelJobs;
|
|
459
|
-
this.runningJobsCount = 0;
|
|
460
|
-
this.currentJob = Promise.resolve();
|
|
461
463
|
}
|
|
462
464
|
async run(job) {
|
|
463
465
|
while (this.runningJobsCount === this.maxParallelJobs) {
|
package/dist/WebAssembly.js
CHANGED
|
@@ -118,6 +118,7 @@ export function allocateBuffer(length, exports) {
|
|
|
118
118
|
* The contents of the array will be updated when the function finishes.
|
|
119
119
|
*/
|
|
120
120
|
export class MutableUint8Array {
|
|
121
|
+
uint8ArrayInputOutput;
|
|
121
122
|
constructor(uint8ArrayInputOutput) {
|
|
122
123
|
this.uint8ArrayInputOutput = uint8ArrayInputOutput;
|
|
123
124
|
}
|
|
@@ -131,6 +132,7 @@ export class MutableUint8Array {
|
|
|
131
132
|
* when you are done with it, too!
|
|
132
133
|
*/
|
|
133
134
|
export class SecureFreeUint8Array {
|
|
135
|
+
uint8ArrayInput;
|
|
134
136
|
constructor(uint8ArrayInput) {
|
|
135
137
|
this.uint8ArrayInput = uint8ArrayInput;
|
|
136
138
|
}
|
package/dist/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.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.webworker.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../lib/TypeRef.ts","../lib/Utils.ts","../lib/MapUtils.ts","../lib/ArrayUtils.ts","../lib/AsyncResult.ts","../lib/CollectionUtils.ts","../lib/Csv.ts","../lib/DateUtils.ts","../lib/Encoding.ts","../lib/LazyLoaded.ts","../lib/MathUtils.ts","../lib/PromiseMap.ts","../lib/PromiseUtils.ts","../lib/SortedArray.ts","../lib/StringUtils.ts","../lib/Tokenizer.ts","../lib/WebAssembly.ts","../lib/index.ts","../../../types/globals.d.ts","../../../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/ts5.6/index.d.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569",{"version":"21e41a76098aa7a191028256e52a726baafd45a925ea5cf0222eb430c96c1d83","affectsGlobalScope":true},{"version":"5746fca0ef5189a855357e258108524603574457c811ce8143e3279efde9f5b6","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"e0275cd0e42990dc3a16f0b7c8bca3efe87f1c8ad404f80c6db1c7c0b828c59f","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"acae90d417bee324b1372813b5a00829d31c7eb670d299cd7f8f9a648ac05688","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"62a4966981264d1f04c44eb0f4b5bdc3d81c1a54725608861e44755aa24ad6a5","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"1be52d219829675b133fce90160462a5baa04c5def58275b0fab3c7040c25955","signature":"5bbb9911220295cc2d2e38a94b7c0e5a03f2869757411f99efaa41d01a0dde72"},{"version":"7003be5f4ceba21509db09a64470a8b0abe226e6d19aa1469a0e4c88af9c0258","signature":"3eaa8fd7c7ce8c01d3b5fb0179721e16f7a7ded4011af09e4c52c2bffd48b906"},{"version":"c35983642f85a38e1f49ead1fe3eeeb23f0308be6a0b3627681031fb620caea6","signature":"e3101149104640c4c6c4b253fe10c1a30ae239686b821884ac0ab4f4796df770"},{"version":"ded71e5b11ab977050d2f2a8c86fedbb098219f608d50dbcd1eec5324f23eaf1","signature":"3bfcf17c1c8311848e4b08bac1d0d3e0a223a3b4b4f72e0ab03e04d26e237b72"},{"version":"3d111ac9e9c03126fb8fca5d8453c2ba353c0fb699610beeeb83530adb32d0da","signature":"fe357ec2df98dd3099a24e46378e48a962cfc060700a60b956e1edb78fbd6945"},{"version":"02d8d08657c02006d8c63cc8a8726ae8f8c3bd3edb27649e342427c6454956a0","signature":"6ce2a899d9c07481e95ef3b259ebc65ace1c6b8938b94fc1c94237f717740284"},{"version":"e1ad39c041ebe934ecba32093aa1b1032520db0993239d9e83c641898c7e44d7","signature":"e4c70ab653202cf579d697dd9f7c4134c427723c791a760a9ee76593c5201706"},{"version":"afade989af319e98dd75856a70987a2a00eaf453b75efe20046b32a608529012","signature":"9cddd6c237826f36add2decaad02b7f5d2cc9b11967c75e9b03c4346b4a37378"},{"version":"7bebde30c6a4f312b02a1ae3892066508f0aedf163d7e93b791b8018cadd225a","signature":"a52e1327bafccda903e9b948407725b28fcb7d2c994b5ef1095d5940c754d726"},{"version":"73348a8849f95761978b89b57a6e4ba6d22d1b22f412e355966c82aa181232b6","signature":"d00b7ca683f871487761454e06bf22a02ec61822acc203ed3468b64308015c34"},{"version":"f2376cb45d3b18286678b2f98b99be8d518f1ee012da1de285588a6af827cb06","signature":"f2f97bf1d679cf78001b997487a399d624c2eaa3f5783754c08bd3b58c60fadb"},{"version":"19e83bd4d86a1b8ce35a47456eabc3bcd4202ce20b523176715eb487f32f2872","signature":"ddfc56edb0e758326659ad046088e892e1e80e0a60f4179dc742b7e6b1fcc961"},{"version":"af8bf6c94593cf31ebcf1019054d8f5c32d60a1079b91bde31569ca12431629f","signature":"4e1a189df8d26b882701748ae07c5054471b5c67bb5cf2330d26fec0b6a16ed6"},{"version":"c4d9a5c2c13ada6a036dff6ba366d6f5ba4ca96e113f4e7e89f51ce253045a33","signature":"b5f2b568fadab7a51d2ba69199fb0af6d8a13594281ef6f3a561e0f9a82fc483"},{"version":"91859d2f14275c18c4a039015479254ed0c0108966060586b2e3ea26f437e989","signature":"a2ce8a142d300930928eadaee5ddd1f724aafc24c8efddce63bbf8787fe82e27"},{"version":"96f7fa9f47b34e9009b1e74247e0088451d08220afd4ea84f511e847a2c0903f","signature":"f597c179836327684f463b6ff8ba92893ce927820051007b297079fde3235601"},{"version":"73a5fc2a1d811ddff6cc976595c14da9392725b94903b0bb4c06abb8a77d515c","signature":"504b66ba4300bb0583b106c0a0128c91933e68fdc68d7acb7aeb01c56b808397"},{"version":"582e175fa1e0e9066118dba797ba714d51744c7ca9fa53485066c13ed9d406e7","signature":"21f4e09d724ba3d33d1294f34bb22a5d4714426637043e20f4d62aa38a8eb9d4"},{"version":"effefe6914de0718f5bad1c853cc625eaaf1d6c570aeb666c1bb125dd15622eb","affectsGlobalScope":true},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true},{"version":"2d1319e6b5d0efd8c5eae07eb864a00102151e8b9afddd2d45db52e9aae002c4","affectsGlobalScope":true},"f6114eb1e8f70ec08816bdaa6ec740a0a7a01f25743e36f655f00157be394374","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107",{"version":"bb2cd9339d0201e7e78ccb6ff2f71aac103934bf35eaaa37e139ac2b68af0db8","affectsGlobalScope":true},"76103716ba397bbb61f9fa9c9090dca59f39f9047cb1352b2179c5d8e7f4e8d0",{"version":"53eac70430b30089a3a1959d8306b0f9cfaf0de75224b68ef25243e0b5ad1ca3","affectsGlobalScope":true},"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7",{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"46e07db372dd75edc1a26e68f16d1b7ffb34b7ab3db5cdb3e391a3604ad7bb7c","affectsGlobalScope":true},"24642567d3729bcc545bacb65ee7c0db423400c7f1ef757cab25d05650064f98","e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"42a872b757f365f61369e869f8403ec1e78b5a85418622801011009a1430d87f","affectsGlobalScope":true},"c956ba45704d4a97f7a96923a307a6203bc0e7c4c532930d4c8ca261eaaff32a","ab0e88d33ccf15d8b3c891038b5a16094b0dd7e860ab0e2ba08da4384afce02b","954580f86c8e2a4abd5dcd1bcdf1a4c7e012495f1c39e058dc738bc93024642a","fa56be9b96f747e93b895d8dc2aa4fb9f0816743e6e2abb9d60705e88d4743a2","8257c55ff6bff6169142a35fce6811b511d857b4ae4f522cdb6ce20fd2116b2c","6d386bc0d7f3afa1d401afc3e00ed6b09205a354a9795196caed937494a713e6",{"version":"3a9e5dddbd6ca9507d0c06a557535ba2224a94a2b0f3e146e8215f93b7e5b3a8","affectsGlobalScope":true},"94c4187083503a74f4544503b5a30e2bd7af0032dc739b0c9a7ce87f8bddc7b9","b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0",{"version":"3c36ab47df4668254ccc170fc42e7d5116fd86a7e408d8dc220e559837cd2bbb","affectsGlobalScope":true},{"version":"6f6abdaf8764ef01a552a958f45e795b5e79153b87ddad3af5264b86d2681b72","affectsGlobalScope":true},"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","c86b9afa9b39b12db8e877d23b48888d80f26e1fe72a95f58552746a6e1fa4fe","e432b0e3761ca9ba734bdd41e19a75fec1454ca8e9769bfdf8b31011854cf06a","e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","15c5e91b5f08be34a78e3d976179bf5b7a9cc28dc0ef1ffebffeb3c7812a2dca","a8f06c2382a30b7cb89ad2dfc48fc3b2b490f3dafcd839dadc008e4e5d57031d","07b9d3b7204d931acc29269c98ac3aac87ebcba6e05141552d42a4c17f895aa4","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633",{"version":"1425f76ac97ce8617d1e2fa79e9a14e0fd1cfdaa155e13d4e92403a468177bc2","affectsGlobalScope":true},"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada",{"version":"cca97c55398b8699fa3a96ef261b01d200ed2a44d2983586ab1a81d7d7b23cd9","affectsGlobalScope":true},{"version":"bef91efa0baea5d0e0f0f27b574a8bc100ce62a6d7e70220a0d58af6acab5e89","affectsGlobalScope":true},"f59493f68eade5200559e5016b5855f7d12e6381eb6cab9ad8a379af367b3b2d","125e3472965f529de239d2bc85b54579fed8e0b060d1d04de6576fb910a6ec7f","66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4",{"version":"18f5c7c4ad71748cffdd42e829398acdfd2d150a887e5f07aae4f2acab68e71b","affectsGlobalScope":true},{"version":"72ed3074450a4a315063278f046637afdeea90aa72b2292a7976958ceafc344a","affectsGlobalScope":true},"a5c09990a37469b0311a92ce8feeb8682e83918723aedbd445bd7a0f510eaaa3","6b29aea17044029b257e5bd4e3e4f765cd72b8d3c11c753f363ab92cc3f9f947","ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a",{"version":"d008cf1330c86b37a8128265c80795397c287cecff273bc3ce3a4883405f5112","affectsGlobalScope":true},"78dc0513cc4f1642906b74dda42146bcbd9df7401717d6e89ea6d72d12ecb539",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"f2b6058d3dd78c1b4dafc97083c5d44bdfbf4155194044bd17b8fcca554e766a"],"root":[[52,70]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"alwaysStrict":true,"checkJs":false,"composite":true,"declaration":true,"esModuleInterop":true,"module":7,"noEmitOnError":true,"noErrorTruncation":true,"noImplicitAny":true,"noImplicitThis":true,"noStrictGenericChecks":false,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./","rootDir":"../lib","skipLibCheck":true,"strict":false,"strictBindCallApply":true,"strictFunctionTypes":false,"strictNullChecks":true,"strictPropertyInitialization":true,"target":8,"tsBuildInfoFile":"./tsbuildinfo","useUnknownInCatchVariables":false},"fileIdsList":[[72,73,115],[72,114,115],[72,115,120,150],[72,115,116,121,127,128,135,147,158],[72,115,116,117,127,135],[72,115,118,159],[72,115,119,120,128,136],[72,115,120,147,155],[72,115,121,123,127,135],[72,114,115,122],[72,115,123,124],[72,115,127],[72,115,125,127],[72,114,115,127],[72,115,127,128,129,147,158],[72,115,127,128,129,142,147,150],[72,112,115,163],[72,115],[72,112,115,123,127,130,135,147,158],[72,115,127,128,130,131,135,147,155,158],[72,115,130,132,147,155,158],[72,115,127,133],[72,115,134,158,163],[72,115,123,127,135,147],[72,115,136],[72,115,137],[72,114,115,138],[72,73,74,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[72,115,140],[72,115,141],[72,115,127,142,143],[72,115,142,144,159,161],[72,115,127,147,148,149,150],[72,115,147,149],[72,115,147,148],[72,115,150],[72,115,151],[72,73,115,147],[72,115,127,153,154],[72,115,153,154],[72,115,120,135,147,155],[72,115,156],[115],[71,72,73,74,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165],[72,115,135,157],[72,115,130,141,158],[72,115,120,159],[72,115,147,160],[72,115,134,161],[72,115,162],[72,115,120,127,129,138,147,158,161,163],[72,115,147,164],[72,84,88,115,158],[72,84,115,147,158],[72,79,115],[72,81,84,115,155,158],[72,115,135,155],[72,115,166],[72,79,115,166],[72,81,84,115,135,158],[72,76,77,80,83,115,127,147,158],[72,84,91,115],[72,76,82,115],[72,84,105,106,115],[72,80,84,115,150,158,166],[72,105,115,166],[72,78,79,115,166],[72,84,115],[72,78,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,106,107,108,109,110,111,115],[72,84,99,115],[72,84,91,92,115],[72,82,84,92,93,115],[72,83,115],[72,76,79,84,115],[72,84,88,92,93,115],[72,88,115],[72,82,84,87,115,158],[72,76,81,84,91,115],[72,115,147],[72,79,84,105,115,163,166],[53,54,72,115],[53,72,115],[63,72,115],[55,72,115],[52,72,115],[60,72,115],[52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,72,115],[53],[63],[52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68]],"referencedMap":[[73,1],[74,1],[114,2],[115,3],[116,4],[117,5],[118,6],[119,7],[120,8],[121,9],[122,10],[123,11],[124,11],[126,12],[125,13],[127,14],[128,15],[129,16],[113,17],[165,18],[130,19],[131,20],[132,21],[133,22],[134,23],[135,24],[136,25],[137,26],[138,27],[139,28],[140,29],[141,30],[142,31],[143,31],[144,32],[145,18],[146,18],[147,33],[149,34],[148,35],[150,36],[151,37],[152,38],[153,39],[154,40],[155,41],[156,42],[72,43],[71,18],[166,44],[157,45],[158,46],[159,47],[160,48],[161,49],[162,50],[163,51],[164,52],[75,18],[50,18],[51,18],[9,18],[12,18],[11,18],[2,18],[13,18],[14,18],[15,18],[16,18],[17,18],[18,18],[19,18],[20,18],[3,18],[4,18],[21,18],[25,18],[22,18],[23,18],[24,18],[26,18],[27,18],[28,18],[5,18],[29,18],[30,18],[31,18],[32,18],[6,18],[36,18],[33,18],[34,18],[35,18],[37,18],[7,18],[38,18],[43,18],[44,18],[39,18],[40,18],[41,18],[42,18],[8,18],[48,18],[45,18],[46,18],[47,18],[1,18],[49,18],[10,18],[91,53],[101,54],[90,53],[111,55],[82,56],[81,57],[110,58],[104,59],[109,60],[84,61],[98,62],[83,63],[107,64],[79,65],[78,58],[108,66],[80,67],[85,68],[86,18],[89,68],[76,18],[112,69],[102,70],[93,71],[94,72],[96,73],[92,74],[95,75],[105,58],[87,76],[88,77],[97,78],[77,79],[100,70],[99,68],[103,18],[106,80],[55,81],[56,18],[57,82],[58,18],[59,18],[60,18],[61,82],[54,82],[62,18],[63,18],[64,83],[65,84],[66,82],[67,18],[52,18],[53,85],[68,86],[69,87],[70,18]],"exportedModulesMap":[[73,1],[74,1],[114,2],[115,3],[116,4],[117,5],[118,6],[119,7],[120,8],[121,9],[122,10],[123,11],[124,11],[126,12],[125,13],[127,14],[128,15],[129,16],[113,17],[165,18],[130,19],[131,20],[132,21],[133,22],[134,23],[135,24],[136,25],[137,26],[138,27],[139,28],[140,29],[141,30],[142,31],[143,31],[144,32],[145,18],[146,18],[147,33],[149,34],[148,35],[150,36],[151,37],[152,38],[153,39],[154,40],[155,41],[156,42],[72,43],[71,18],[166,44],[157,45],[158,46],[159,47],[160,48],[161,49],[162,50],[163,51],[164,52],[75,18],[50,18],[51,18],[9,18],[12,18],[11,18],[2,18],[13,18],[14,18],[15,18],[16,18],[17,18],[18,18],[19,18],[20,18],[3,18],[4,18],[21,18],[25,18],[22,18],[23,18],[24,18],[26,18],[27,18],[28,18],[5,18],[29,18],[30,18],[31,18],[32,18],[6,18],[36,18],[33,18],[34,18],[35,18],[37,18],[7,18],[38,18],[43,18],[44,18],[39,18],[40,18],[41,18],[42,18],[8,18],[48,18],[45,18],[46,18],[47,18],[1,18],[49,18],[10,18],[91,53],[101,54],[90,53],[111,55],[82,56],[81,57],[110,58],[104,59],[109,60],[84,61],[98,62],[83,63],[107,64],[79,65],[78,58],[108,66],[80,67],[85,68],[86,18],[89,68],[76,18],[112,69],[102,70],[93,71],[94,72],[96,73],[92,74],[95,75],[105,58],[87,76],[88,77],[97,78],[77,79],[100,70],[99,68],[103,18],[106,80],[61,88],[64,89],[66,88],[69,90],[70,18]],"semanticDiagnosticsPerFile":[73,74,114,115,116,117,118,119,120,121,122,123,124,126,125,127,128,129,113,165,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,149,148,150,151,152,153,154,155,156,72,71,166,157,158,159,160,161,162,163,164,75,50,51,9,12,11,2,13,14,15,16,17,18,19,20,3,4,21,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,8,48,45,46,47,1,49,10,91,101,90,111,82,81,110,104,109,84,98,83,107,79,78,108,80,85,86,89,76,112,102,93,94,96,92,95,105,87,88,97,77,100,99,103,106,55,56,57,58,59,60,61,54,62,63,64,65,66,67,52,53,68,69,70],"latestChangedDtsFile":"./index.d.ts"},"version":"5.3.3"}
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.webworker.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../lib/TypeRef.ts","../lib/Utils.ts","../lib/MapUtils.ts","../lib/ArrayUtils.ts","../lib/AsyncResult.ts","../lib/CollectionUtils.ts","../lib/Csv.ts","../lib/DateUtils.ts","../lib/Encoding.ts","../lib/LazyLoaded.ts","../lib/MathUtils.ts","../lib/PromiseMap.ts","../lib/PromiseUtils.ts","../lib/SortedArray.ts","../lib/StringUtils.ts","../lib/Tokenizer.ts","../lib/WebAssembly.ts","../lib/index.ts","../../../types/globals.d.ts","../../../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/ts5.6/index.d.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"21e41a76098aa7a191028256e52a726baafd45a925ea5cf0222eb430c96c1d83","affectsGlobalScope":true},{"version":"5746fca0ef5189a855357e258108524603574457c811ce8143e3279efde9f5b6","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"e0275cd0e42990dc3a16f0b7c8bca3efe87f1c8ad404f80c6db1c7c0b828c59f","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"acae90d417bee324b1372813b5a00829d31c7eb670d299cd7f8f9a648ac05688","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"62a4966981264d1f04c44eb0f4b5bdc3d81c1a54725608861e44755aa24ad6a5","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"86a34c7a13de9cabc43161348f663624b56871ed80986e41d214932ddd8d6719","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"1be52d219829675b133fce90160462a5baa04c5def58275b0fab3c7040c25955","signature":"5bbb9911220295cc2d2e38a94b7c0e5a03f2869757411f99efaa41d01a0dde72"},{"version":"07b67ec76ca36efdbf0453c18b99bf403044447d85b34e90715bdae663299b79","signature":"3eaa8fd7c7ce8c01d3b5fb0179721e16f7a7ded4011af09e4c52c2bffd48b906"},{"version":"c35983642f85a38e1f49ead1fe3eeeb23f0308be6a0b3627681031fb620caea6","signature":"e3101149104640c4c6c4b253fe10c1a30ae239686b821884ac0ab4f4796df770"},{"version":"ded71e5b11ab977050d2f2a8c86fedbb098219f608d50dbcd1eec5324f23eaf1","signature":"3bfcf17c1c8311848e4b08bac1d0d3e0a223a3b4b4f72e0ab03e04d26e237b72"},{"version":"3d111ac9e9c03126fb8fca5d8453c2ba353c0fb699610beeeb83530adb32d0da","signature":"fe357ec2df98dd3099a24e46378e48a962cfc060700a60b956e1edb78fbd6945"},{"version":"02d8d08657c02006d8c63cc8a8726ae8f8c3bd3edb27649e342427c6454956a0","signature":"6ce2a899d9c07481e95ef3b259ebc65ace1c6b8938b94fc1c94237f717740284"},{"version":"e1ad39c041ebe934ecba32093aa1b1032520db0993239d9e83c641898c7e44d7","signature":"e4c70ab653202cf579d697dd9f7c4134c427723c791a760a9ee76593c5201706"},{"version":"afade989af319e98dd75856a70987a2a00eaf453b75efe20046b32a608529012","signature":"9cddd6c237826f36add2decaad02b7f5d2cc9b11967c75e9b03c4346b4a37378"},{"version":"0d36ef407a9c449e510305e4a25b6d6da0204734f4cd59e7b3905e809a6efc47","signature":"b741cdc69204cb608d1a69cbce63f002bd5b45e607e8ee269bd9cdaf5a568c8d"},{"version":"d9b69a349e5a9051cbef921ffaa0f035418cf1d59b30d87625f360d16b50c565","signature":"d00b7ca683f871487761454e06bf22a02ec61822acc203ed3468b64308015c34"},{"version":"f2376cb45d3b18286678b2f98b99be8d518f1ee012da1de285588a6af827cb06","signature":"f2f97bf1d679cf78001b997487a399d624c2eaa3f5783754c08bd3b58c60fadb"},{"version":"19e83bd4d86a1b8ce35a47456eabc3bcd4202ce20b523176715eb487f32f2872","signature":"ddfc56edb0e758326659ad046088e892e1e80e0a60f4179dc742b7e6b1fcc961"},{"version":"af8bf6c94593cf31ebcf1019054d8f5c32d60a1079b91bde31569ca12431629f","signature":"4e1a189df8d26b882701748ae07c5054471b5c67bb5cf2330d26fec0b6a16ed6"},{"version":"c4d9a5c2c13ada6a036dff6ba366d6f5ba4ca96e113f4e7e89f51ce253045a33","signature":"b5f2b568fadab7a51d2ba69199fb0af6d8a13594281ef6f3a561e0f9a82fc483"},{"version":"e93a17f8aff4e338272b6baf00d4dbe33f16e591e085c4e288dcb99c7e8ded58","signature":"a2ce8a142d300930928eadaee5ddd1f724aafc24c8efddce63bbf8787fe82e27"},{"version":"0fdf4c026079edf1d12848918a8b391d9ac9077afeb7bc7ab2e3dcf0d5ff3548","signature":"f597c179836327684f463b6ff8ba92893ce927820051007b297079fde3235601"},{"version":"73a5fc2a1d811ddff6cc976595c14da9392725b94903b0bb4c06abb8a77d515c","signature":"504b66ba4300bb0583b106c0a0128c91933e68fdc68d7acb7aeb01c56b808397"},{"version":"582e175fa1e0e9066118dba797ba714d51744c7ca9fa53485066c13ed9d406e7","signature":"21f4e09d724ba3d33d1294f34bb22a5d4714426637043e20f4d62aa38a8eb9d4"},{"version":"effefe6914de0718f5bad1c853cc625eaaf1d6c570aeb666c1bb125dd15622eb","affectsGlobalScope":true},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true},{"version":"2d1319e6b5d0efd8c5eae07eb864a00102151e8b9afddd2d45db52e9aae002c4","affectsGlobalScope":true},"f6114eb1e8f70ec08816bdaa6ec740a0a7a01f25743e36f655f00157be394374","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107",{"version":"bb2cd9339d0201e7e78ccb6ff2f71aac103934bf35eaaa37e139ac2b68af0db8","affectsGlobalScope":true},"76103716ba397bbb61f9fa9c9090dca59f39f9047cb1352b2179c5d8e7f4e8d0",{"version":"53eac70430b30089a3a1959d8306b0f9cfaf0de75224b68ef25243e0b5ad1ca3","affectsGlobalScope":true},"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7",{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"46e07db372dd75edc1a26e68f16d1b7ffb34b7ab3db5cdb3e391a3604ad7bb7c","affectsGlobalScope":true},"24642567d3729bcc545bacb65ee7c0db423400c7f1ef757cab25d05650064f98","e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"42a872b757f365f61369e869f8403ec1e78b5a85418622801011009a1430d87f","affectsGlobalScope":true},"c956ba45704d4a97f7a96923a307a6203bc0e7c4c532930d4c8ca261eaaff32a","ab0e88d33ccf15d8b3c891038b5a16094b0dd7e860ab0e2ba08da4384afce02b","954580f86c8e2a4abd5dcd1bcdf1a4c7e012495f1c39e058dc738bc93024642a","fa56be9b96f747e93b895d8dc2aa4fb9f0816743e6e2abb9d60705e88d4743a2","8257c55ff6bff6169142a35fce6811b511d857b4ae4f522cdb6ce20fd2116b2c","6d386bc0d7f3afa1d401afc3e00ed6b09205a354a9795196caed937494a713e6",{"version":"3a9e5dddbd6ca9507d0c06a557535ba2224a94a2b0f3e146e8215f93b7e5b3a8","affectsGlobalScope":true},"94c4187083503a74f4544503b5a30e2bd7af0032dc739b0c9a7ce87f8bddc7b9","b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0",{"version":"3c36ab47df4668254ccc170fc42e7d5116fd86a7e408d8dc220e559837cd2bbb","affectsGlobalScope":true},{"version":"6f6abdaf8764ef01a552a958f45e795b5e79153b87ddad3af5264b86d2681b72","affectsGlobalScope":true},"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","c86b9afa9b39b12db8e877d23b48888d80f26e1fe72a95f58552746a6e1fa4fe","e432b0e3761ca9ba734bdd41e19a75fec1454ca8e9769bfdf8b31011854cf06a","e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","15c5e91b5f08be34a78e3d976179bf5b7a9cc28dc0ef1ffebffeb3c7812a2dca","a8f06c2382a30b7cb89ad2dfc48fc3b2b490f3dafcd839dadc008e4e5d57031d","07b9d3b7204d931acc29269c98ac3aac87ebcba6e05141552d42a4c17f895aa4","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633",{"version":"1425f76ac97ce8617d1e2fa79e9a14e0fd1cfdaa155e13d4e92403a468177bc2","affectsGlobalScope":true},"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada",{"version":"cca97c55398b8699fa3a96ef261b01d200ed2a44d2983586ab1a81d7d7b23cd9","affectsGlobalScope":true},{"version":"bef91efa0baea5d0e0f0f27b574a8bc100ce62a6d7e70220a0d58af6acab5e89","affectsGlobalScope":true},"f59493f68eade5200559e5016b5855f7d12e6381eb6cab9ad8a379af367b3b2d","125e3472965f529de239d2bc85b54579fed8e0b060d1d04de6576fb910a6ec7f","66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4",{"version":"18f5c7c4ad71748cffdd42e829398acdfd2d150a887e5f07aae4f2acab68e71b","affectsGlobalScope":true},{"version":"72ed3074450a4a315063278f046637afdeea90aa72b2292a7976958ceafc344a","affectsGlobalScope":true},"a5c09990a37469b0311a92ce8feeb8682e83918723aedbd445bd7a0f510eaaa3","6b29aea17044029b257e5bd4e3e4f765cd72b8d3c11c753f363ab92cc3f9f947","ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a",{"version":"d008cf1330c86b37a8128265c80795397c287cecff273bc3ce3a4883405f5112","affectsGlobalScope":true},"78dc0513cc4f1642906b74dda42146bcbd9df7401717d6e89ea6d72d12ecb539",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"f2b6058d3dd78c1b4dafc97083c5d44bdfbf4155194044bd17b8fcca554e766a"],"root":[[60,78]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"alwaysStrict":true,"checkJs":false,"composite":true,"declaration":true,"esModuleInterop":true,"module":7,"noEmitOnError":true,"noErrorTruncation":true,"noImplicitAny":true,"noImplicitThis":true,"noStrictGenericChecks":false,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./","rootDir":"../lib","skipLibCheck":true,"strict":false,"strictBindCallApply":true,"strictFunctionTypes":false,"strictNullChecks":true,"strictPropertyInitialization":true,"target":9,"tsBuildInfoFile":"./tsbuildinfo","useUnknownInCatchVariables":false},"fileIdsList":[[80,81,123],[80,122,123],[80,123,128,158],[80,123,124,129,135,136,143,155,166],[80,123,124,125,135,143],[80,123,126,167],[80,123,127,128,136,144],[80,123,128,155,163],[80,123,129,131,135,143],[80,122,123,130],[80,123,131,132],[80,123,135],[80,123,133,135],[80,122,123,135],[80,123,135,136,137,155,166],[80,123,135,136,137,150,155,158],[80,120,123,171],[80,123],[80,120,123,131,135,138,143,155,166],[80,123,135,136,138,139,143,155,163,166],[80,123,138,140,155,163,166],[80,123,135,141],[80,123,142,166,171],[80,123,131,135,143,155],[80,123,144],[80,123,145],[80,122,123,146],[80,81,82,122,123,124,125,126,127,128,129,130,131,132,133,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172],[80,123,148],[80,123,149],[80,123,135,150,151],[80,123,150,152,167,169],[80,123,135,155,156,157,158],[80,123,155,157],[80,123,155,156],[80,123,158],[80,123,159],[80,81,123,155],[80,123,135,161,162],[80,123,161,162],[80,123,128,143,155,163],[80,123,164],[123],[79,80,81,82,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[80,123,143,165],[80,123,138,149,166],[80,123,128,167],[80,123,155,168],[80,123,142,169],[80,123,170],[80,123,128,135,137,146,155,166,169,171],[80,123,155,172],[80,92,96,123,166],[80,92,123,155,166],[80,87,123],[80,89,92,123,163,166],[80,123,143,163],[80,123,174],[80,87,123,174],[80,89,92,123,143,166],[80,84,85,88,91,123,135,155,166],[80,92,99,123],[80,84,90,123],[80,92,113,114,123],[80,88,92,123,158,166,174],[80,113,123,174],[80,86,87,123,174],[80,92,123],[80,86,87,88,89,90,91,92,93,94,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,114,115,116,117,118,119,123],[80,92,107,123],[80,92,99,100,123],[80,90,92,100,101,123],[80,91,123],[80,84,87,92,123],[80,92,96,100,101,123],[80,96,123],[80,90,92,95,123,166],[80,84,89,92,99,123],[80,123,155],[80,87,92,113,123,171,174],[61,62,80,123],[61,80,123],[71,80,123],[63,80,123],[60,80,123],[68,80,123],[60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,80,123],[61],[71],[60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76]],"referencedMap":[[81,1],[82,1],[122,2],[123,3],[124,4],[125,5],[126,6],[127,7],[128,8],[129,9],[130,10],[131,11],[132,11],[134,12],[133,13],[135,14],[136,15],[137,16],[121,17],[173,18],[138,19],[139,20],[140,21],[141,22],[142,23],[143,24],[144,25],[145,26],[146,27],[147,28],[148,29],[149,30],[150,31],[151,31],[152,32],[153,18],[154,18],[155,33],[157,34],[156,35],[158,36],[159,37],[160,38],[161,39],[162,40],[163,41],[164,42],[80,43],[79,18],[174,44],[165,45],[166,46],[167,47],[168,48],[169,49],[170,50],[171,51],[172,52],[83,18],[58,18],[59,18],[10,18],[13,18],[12,18],[2,18],[14,18],[15,18],[16,18],[17,18],[18,18],[19,18],[20,18],[21,18],[3,18],[4,18],[22,18],[26,18],[23,18],[24,18],[25,18],[27,18],[28,18],[29,18],[5,18],[30,18],[31,18],[32,18],[33,18],[6,18],[37,18],[34,18],[35,18],[36,18],[38,18],[7,18],[39,18],[44,18],[45,18],[40,18],[41,18],[42,18],[43,18],[8,18],[49,18],[46,18],[47,18],[48,18],[50,18],[9,18],[51,18],[52,18],[53,18],[56,18],[54,18],[55,18],[1,18],[57,18],[11,18],[99,53],[109,54],[98,53],[119,55],[90,56],[89,57],[118,58],[112,59],[117,60],[92,61],[106,62],[91,63],[115,64],[87,65],[86,58],[116,66],[88,67],[93,68],[94,18],[97,68],[84,18],[120,69],[110,70],[101,71],[102,72],[104,73],[100,74],[103,75],[113,58],[95,76],[96,77],[105,78],[85,79],[108,70],[107,68],[111,18],[114,80],[63,81],[64,18],[65,82],[66,18],[67,18],[68,18],[69,82],[62,82],[70,18],[71,18],[72,83],[73,84],[74,82],[75,18],[60,18],[61,85],[76,86],[77,87],[78,18]],"exportedModulesMap":[[81,1],[82,1],[122,2],[123,3],[124,4],[125,5],[126,6],[127,7],[128,8],[129,9],[130,10],[131,11],[132,11],[134,12],[133,13],[135,14],[136,15],[137,16],[121,17],[173,18],[138,19],[139,20],[140,21],[141,22],[142,23],[143,24],[144,25],[145,26],[146,27],[147,28],[148,29],[149,30],[150,31],[151,31],[152,32],[153,18],[154,18],[155,33],[157,34],[156,35],[158,36],[159,37],[160,38],[161,39],[162,40],[163,41],[164,42],[80,43],[79,18],[174,44],[165,45],[166,46],[167,47],[168,48],[169,49],[170,50],[171,51],[172,52],[83,18],[58,18],[59,18],[10,18],[13,18],[12,18],[2,18],[14,18],[15,18],[16,18],[17,18],[18,18],[19,18],[20,18],[21,18],[3,18],[4,18],[22,18],[26,18],[23,18],[24,18],[25,18],[27,18],[28,18],[29,18],[5,18],[30,18],[31,18],[32,18],[33,18],[6,18],[37,18],[34,18],[35,18],[36,18],[38,18],[7,18],[39,18],[44,18],[45,18],[40,18],[41,18],[42,18],[43,18],[8,18],[49,18],[46,18],[47,18],[48,18],[50,18],[9,18],[51,18],[52,18],[53,18],[56,18],[54,18],[55,18],[1,18],[57,18],[11,18],[99,53],[109,54],[98,53],[119,55],[90,56],[89,57],[118,58],[112,59],[117,60],[92,61],[106,62],[91,63],[115,64],[87,65],[86,58],[116,66],[88,67],[93,68],[94,18],[97,68],[84,18],[120,69],[110,70],[101,71],[102,72],[104,73],[100,74],[103,75],[113,58],[95,76],[96,77],[105,78],[85,79],[108,70],[107,68],[111,18],[114,80],[69,88],[72,89],[74,88],[77,90],[78,18]],"semanticDiagnosticsPerFile":[81,82,122,123,124,125,126,127,128,129,130,131,132,134,133,135,136,137,121,173,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,157,156,158,159,160,161,162,163,164,80,79,174,165,166,167,168,169,170,171,172,83,58,59,10,13,12,2,14,15,16,17,18,19,20,21,3,4,22,26,23,24,25,27,28,29,5,30,31,32,33,6,37,34,35,36,38,7,39,44,45,40,41,42,43,8,49,46,47,48,50,9,51,52,53,56,54,55,1,57,11,99,109,98,119,90,89,118,112,117,92,106,91,115,87,86,116,88,93,94,97,84,120,110,101,102,104,100,103,113,95,96,105,85,108,107,111,114,63,64,65,66,67,68,69,62,70,71,72,73,74,75,60,61,76,77,78],"latestChangedDtsFile":"./index.d.ts"},"version":"5.3.3"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tutao/tutanota-utils",
|
|
3
|
-
"version": "259.
|
|
3
|
+
"version": "259.250113.0",
|
|
4
4
|
"license": "GPL-3.0",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
],
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"typescript": "5.3.3",
|
|
26
|
-
"@tutao/otest": "259.
|
|
26
|
+
"@tutao/otest": "259.250113.0"
|
|
27
27
|
}
|
|
28
28
|
}
|