@holochain-syn/client 0.501.0 → 0.502.0-dev.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.js +32 -7
- package/dist/client.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/utils.d.ts +0 -1
- package/dist/utils.js +0 -23
- package/dist/utils.js.map +0 -1
package/dist/client.js
CHANGED
|
@@ -42,23 +42,48 @@ export class SynClient extends ZomeClient {
|
|
|
42
42
|
/** Commits */
|
|
43
43
|
async createCommit(commit) {
|
|
44
44
|
return new Promise((resolve, reject) => {
|
|
45
|
-
|
|
45
|
+
let timeoutId;
|
|
46
|
+
let unsubs;
|
|
47
|
+
const cleanup = () => {
|
|
48
|
+
if (timeoutId)
|
|
49
|
+
clearTimeout(timeoutId);
|
|
50
|
+
if (unsubs)
|
|
51
|
+
unsubs();
|
|
52
|
+
};
|
|
53
|
+
const rejectWithCleanup = (error) => {
|
|
54
|
+
cleanup();
|
|
55
|
+
reject(error);
|
|
56
|
+
};
|
|
57
|
+
const resolveWithCleanup = (result) => {
|
|
58
|
+
cleanup();
|
|
59
|
+
resolve(result);
|
|
60
|
+
};
|
|
61
|
+
unsubs = this.onSignal(signal => {
|
|
46
62
|
// TODO: better check?
|
|
47
63
|
if (signal.type === 'EntryCreated' &&
|
|
48
64
|
signal.app_entry.type === 'Commit' &&
|
|
49
65
|
encodeHashToBase64(commit.document_hash) ===
|
|
50
66
|
encodeHashToBase64(signal.app_entry.document_hash)) {
|
|
51
|
-
unsubs();
|
|
52
67
|
this.getCommit(signal.action.hashed.hash)
|
|
53
68
|
.then(r => {
|
|
54
|
-
|
|
69
|
+
if (r) {
|
|
70
|
+
// check that the previous commit hashes are equal
|
|
71
|
+
const commitPreviousHashes = commit.previous_commit_hashes || [];
|
|
72
|
+
const signalPreviousHashes = r.entry.previous_commit_hashes || [];
|
|
73
|
+
if (commitPreviousHashes.length === signalPreviousHashes.length &&
|
|
74
|
+
commitPreviousHashes.every((val, index) => encodeHashToBase64(val) === encodeHashToBase64(signalPreviousHashes[index]))) {
|
|
75
|
+
resolveWithCleanup(r);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
else {
|
|
79
|
+
rejectWithCleanup(new Error('Commit not found after creation'));
|
|
80
|
+
}
|
|
55
81
|
})
|
|
56
|
-
.catch(e =>
|
|
57
|
-
.finally(() => unsubs());
|
|
82
|
+
.catch(e => rejectWithCleanup(e));
|
|
58
83
|
}
|
|
59
84
|
});
|
|
60
|
-
this.callZome('create_commit', commit).catch(e =>
|
|
61
|
-
setTimeout(() =>
|
|
85
|
+
this.callZome('create_commit', commit).catch(e => rejectWithCleanup(e));
|
|
86
|
+
timeoutId = setTimeout(() => rejectWithCleanup(new Error('Commit creation timed out after 30 seconds')), 30000);
|
|
62
87
|
});
|
|
63
88
|
}
|
|
64
89
|
async getCommit(commitHash) {
|
package/dist/client.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.js","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"AAAA,OAAO,EAQL,kBAAkB,GACnB,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAC;AAWpE,MAAM,OAAO,SAAU,SAAQ,UAAqB;IAClD,YACS,MAAiB,EACjB,QAAgB,EAChB,WAAW,KAAK;QAEvB,KAAK,CAAC,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;QAJ3B,WAAM,GAAN,MAAM,CAAW;QACjB,aAAQ,GAAR,QAAQ,CAAQ;QAChB,aAAQ,GAAR,QAAQ,CAAQ;IAGzB,CAAC;IAED,gBAAgB;IAET,KAAK,CAAC,cAAc,CACzB,QAAkB;QAElB,MAAM,MAAM,GAAW,MAAM,IAAI,CAAC,QAAQ,CAAC,iBAAiB,EAAE,QAAQ,CAAC,CAAC;QACxE,OAAO,IAAI,WAAW,CAAC,MAAM,CAAC,CAAC;IACjC,CAAC;IAEM,KAAK,CAAC,mBAAmB,CAAC,GAAW,EAAE,KAAe;QAC3D,OAAO,IAAI,CAAC,QAAQ,CAAC,wBAAwB,EAAE,EAAC,KAAK,EAAE,GAAG,EAAE,KAAK,EAAC,CAAC,CAAC;IACtE,CAAC;IAEM,KAAK,CAAC,WAAW,CACtB,YAAwB;QAExB,MAAM,MAAM,GAAuB,MAAM,IAAI,CAAC,QAAQ,CACpD,cAAc,EACd,YAAY,CACb,CAAC;QACF,IAAI,CAAC,MAAM;YAAE,OAAO,SAAS,CAAC;QAE9B,OAAO,IAAI,WAAW,CAAC,MAAM,CAAC,CAAC;IACjC,CAAC;IAGM,KAAK,CAAC,qBAAqB,CAAC,YAAwB,EAAE,KAAe;QAC1E,OAAO,IAAI,CAAC,QAAQ,CAAC,0BAA0B,EAAE,EAAC,KAAK,EAAE,YAAY,EAAE,KAAK,EAAC,CAAC,CAAC;IACjF,CAAC;IAEM,KAAK,CAAC,WAAW,CACtB,YAAwB,EACxB,GAAW;QAEX,OAAO,IAAI,CAAC,QAAQ,CAAC,cAAc,EAAE;YACnC,aAAa,EAAE,YAAY;YAC3B,GAAG;SACJ,CAAC,CAAC;IACL,CAAC;IAEM,KAAK,CAAC,iBAAiB,CAC5B,YAAwB,EACxB,GAAW;QAEX,OAAO,IAAI,CAAC,QAAQ,CAAC,qBAAqB,EAAE;YAC1C,aAAa,EAAE,YAAY;YAC3B,GAAG;SACJ,CAAC,CAAC;IACL,CAAC;IAEM,KAAK,CAAC,gBAAgB,CAAC,GAAW;QACvC,OAAO,IAAI,CAAC,QAAQ,CAAC,qBAAqB,EAAE,GAAG,CAAC,CAAC;IACnD,CAAC;IAED,cAAc;IACP,KAAK,CAAC,YAAY,CAAC,MAAc;QACtC,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;YACrC,MAAM,MAAM,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE;
|
|
1
|
+
{"version":3,"file":"client.js","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}
|
|
@@ -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.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.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/@holochain/client/lib/types.d.ts","../../../node_modules/@holochain/client/lib/hdk/capabilities.d.ts","../../../node_modules/@holochain/client/lib/hdk/countersigning.d.ts","../../../node_modules/@holochain/client/lib/hdk/entry.d.ts","../../../node_modules/@holochain/client/lib/hdk/link.d.ts","../../../node_modules/@holochain/client/lib/hdk/action.d.ts","../../../node_modules/@holochain/client/lib/hdk/dht-ops.d.ts","../../../node_modules/@holochain/client/lib/hdk/record.d.ts","../../../node_modules/@holochain/client/lib/hdk/index.d.ts","../../../node_modules/emittery/index.d.ts","../../../node_modules/@holochain/client/lib/api/app/types.d.ts","../../../node_modules/isomorphic-ws/index.d.ts","../../../node_modules/@holochain/client/lib/api/client.d.ts","../../../node_modules/@holochain/client/lib/api/common.d.ts","../../../node_modules/@holochain/client/lib/api/admin/types.d.ts","../../../node_modules/@holochain/client/lib/api/admin/websocket.d.ts","../../../node_modules/@holochain/client/lib/api/admin/index.d.ts","../../../node_modules/@holochain/client/lib/api/app/websocket.d.ts","../../../node_modules/@holochain/client/lib/api/app/index.d.ts","../../../node_modules/@holochain/client/lib/api/zome-call-signing.d.ts","../../../node_modules/@holochain/client/lib/api/index.d.ts","../../../node_modules/@holochain/client/lib/utils/base64.d.ts","../../../node_modules/@holochain/client/lib/utils/fake-hash.d.ts","../../../node_modules/@holochain/client/lib/utils/hash-parts.d.ts","../../../node_modules/@holochain/client/lib/utils/cell.d.ts","../../../node_modules/@holochain/client/lib/utils/index.d.ts","../../../node_modules/@holochain/client/lib/index.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/hash.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/fake.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/entry.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/action-committed-signal.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/zome-client.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/zome-mock.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/holo-hash-map.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/map-utils.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/timestamp.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/entry-record.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/record-bag.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/cell.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/entry-state.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/hrl.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/role-name.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/index.d.ts","../src/types.ts","../src/client.ts","../src/index.ts","../../../node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../../node_modules/@types/node/ts5.6/buffer.buffer.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/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/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/ts5.6/index.d.ts","../node_modules/@holochain/client/lib/index.d.ts","../../../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","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":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},"1e3a577d4d47af4bd2919d05922536fecc284d17523413d3e8b63392c9259668","4dfa40234b9de58985ce894a9f0158976c9c115afaee592cc30cdd9b00a19412","69123fe1546d0ec4cdb60d7fac7098f00d1b0252c25ebff34f886a640b6a204e","2f3ed5b2e38623fa774a524d681228bd482e80834f7fbbca65faf96538e4c97c","19697285b780119b961fbfb54310e44a965efdf516db3fd73fe23673243e2370","edb19c346b7ebecdd115ef1f2b6e545ef39e489dd3731d6f5190d29d2299dcac","bd20b3571f7a6dd92f342e8745ed27e274326516a60f89d0d74dd795e4c43d8c","41a5f23f9818decc69d093b28304169d5cfdcea6ef2f00121ee4c601b4a9b402","1de2ecc502fce9d6aa521320b76b22bdbd22a615b6fed6fe0e327fca99b47d48","776fe2a059b56d31790350701ac07c3c4df26c3e14e5f4f8f1d9c59b143933c5","477ee457f99e8aa14b8f660aa5aa285725a6ecca39e2f6c8d0f4e918a5521de3","1442a75050bad91356b11dcea6dfb877154d1f2e00f863a9b17ba5e903659503","804473e37618d23834cc213c46d64d1be13836cecb7d1c9d8d9d85b0fec695dd","e1d33e121ebca9b43b4b35b0b2b787005a85a389b0ffe1af001e03d81437724c","6c71f679796acc24f79eadb90b0adbcb49358dc13e12263a31abc44a46758534","44d82668ea151ac39d627107d0182ba56bf91448f270eb3c5300e4bf2a833fb2","e76069367e6b1580fe09b6c14dc0e477df342f2758cb5570ae8cd06caa6188cf","e30a092c51a3aa8c9c524e508ed5a6b48cf37297bb68e75e58869665d19f9e47","e76069367e6b1580fe09b6c14dc0e477df342f2758cb5570ae8cd06caa6188cf","270dbb9c61ca6740b4a3fe13890fbcf613197cd5bc28501e3847528d7a5c6d06","9d8f1788f4c8d4f5c9f3b92c2e8347d7cc95b46e9df68d096d30ebb6a6807f26","f7e09742d2615dd1d124704163f36a270f29313b5df2b7be8f9ff437d5ba2669","3323e4131dd27278b81d7a076e03791b8914e3966c248409a8bbbb1c03293c50","f804ef8f5236549cf171af865554652ffc4d27ee1decd045187b414b103e094c","877ee87eec44163bcc52ecc66d6db0125c7b1f12e492e30c7de07a635577aac3","7cc04486e26c9885857f84cd13860c13e8260f5b831803801075b5fe9245721e","8e07e510136d912892df588fd9d79f1f26415e879f4b2893f334cd793a9c8577","6f82bfed1baafbc20cb7226adfa22a5ec61fc0332e0e669c28bb5e81b4fc248c","f7b0ac11a96661e26bd68733af69efe70d727333c6d8db0b942fc277f0b6b8b8","714b0982b23aab486508e45fc04af9e88932dc8cba3f7647aac32fd3ec21d41c","0dfc2ded3356c698a8f5bfa3ce7ca868d1edbb008b60c13be6fd5d86711ec5c7","24ab93d818baf2fe7ded2cd412bd297cfe7a205d12e95c1a274d3c6a9ffb87df","aadfa44d1ba35aefd06038e25b7aa1985e6fa6f6f335017daa780dd6af56e7f3","3f0a0d9d16d7eab231b3ce8797c3294ba03112fb0c99c1dfac9c3b05dcfbb103","b4a9af945c831767b62a09d1b166d63fe5f54d2ec32d7be9682c4c989a5614a4","92428ea53b5f07627f5c1c065e2cc1d17538af7ff317cefc78d7b2372fb2eade","270057e134bf77d0cb5318a2ebde01d97edb1d3ab59e5649ba010f5e3ba7b9dc","6645a016cbd9d1565344bef31b13475be48f47d226189f7fc695516993c8b0b1","a837d0e7f8f041519ce2297f280391bd9558e5ef34e0059a4868fafdb9098506","c397491eb2d833ac87d94ae26b4f65cff931d483e6d79725ee12c2e4f2c22231","9a4558eb853e64b4fe11f2decb6aef6444bdca68a8bd2dab62e30b8876ceed80","0d291e21250c05468e257ad28e21bd399c36dcb4ca2be86ed7e0e82d93407c14","45f937f94d62f5d1ae3f6b172748d9430f824225bc31acf179e6fddd4a0f442a",{"version":"cae5e515a5265c07074b537a4a0cbd9723a7ed5c60b48d9f7916cabf55311abf","signature":"dc5a8fd74ad6738ab43dcbc8fe57516decb10f1842a1dacd2df263b78bc20427"},{"version":"9ea93b293e506eaad89a6e81723353ff58fc148a0119c9c6893f7bbafb327a77","signature":"4265be169081b4079271e73d87ed2da053ed8bc6b709168612b93f3cf2fa00dd"},"1bd7bdb278a946e7388b8b2bcec7a5b87aa85132662a06b7eda1030a44232a9e",{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true},"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a",{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true},{"version":"20fb08397d22742771868b52f647cddfbf44b263f26b6519b449257f8c9f7364","affectsGlobalScope":true},"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":"08faa97886e71757779428dd4c69a545c32c85fd629d1116d42710b32c6378bc","affectsGlobalScope":true},"6b042aa5d277ad6963e2837179fd2f8fbb01968ac67115b0833c0244e93d1d50","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36",{"version":"23cfd70b42094e54cc3c5dab996d81b97e2b6f38ccb24ead85454b8ddfe2fc4f","affectsGlobalScope":true},"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","a3e8bafb2af8e850c644f4be7f5156cf7d23b7bfdc3b786bd4d10ed40329649c",{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true},"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a",{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true},"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","5a369483ac4cfbdf0331c248deeb36140e6907db5e1daed241546b4a2055f82c","e8f5b5cc36615c17d330eaf8eebbc0d6bdd942c25991f96ef122f246f4ff722f","f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true},"0a37b8d00d03f0381d2db2fe31b0571dc9d7cc0f4b87ca103cc3cd2277690ba0","71adf5dbc59568663d252a46179e71e4d544c053978bfc526d11543a3f716f42","38bf8ff1b403c861e9052c9ea651cb4f38c1ecc084a34d79f8acc6d6477a7321","93bd413918fa921c8729cef45302b24d8b6c7855d72d5bf82d3972595ae8dcbf","4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","dccdf1677e531e33f8ac961a68bc537418c9a414797c1ea7e91307501cdc3f5e",{"version":"e184c4b8918ef56c8c9e68bd79f3f3780e2d0d75bf2b8a41da1509a40c2deb46","affectsGlobalScope":true},"d206b4baf4ddcc15d9d69a9a2f4999a72a2c6adeaa8af20fa7a9960816287555","93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5",{"version":"70731d10d5311bd4cf710ef7f6539b62660f4b0bfdbb3f9fbe1d25fe6366a7fa","affectsGlobalScope":true},{"version":"6b19db3600a17af69d4f33d08cc7076a7d19fb65bb36e442cac58929ec7c9482","affectsGlobalScope":true},"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","137c2894e8f3e9672d401cc0a305dc7b1db7c69511cf6d3970fb53302f9eae09","3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","ba1f814c22fd970255ddd60d61fb7e00c28271c933ab5d5cc19cd3ca66b8f57c","37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093",{"version":"295f068af94245ee9d780555351bef98adfd58f8baf0b9dadbc31a489b881f8b","affectsGlobalScope":true},"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb",{"version":"09d479208911ac3ac6a7c2fe86217fc1abe6c4f04e2d52e4890e500699eeab32","affectsGlobalScope":true},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true},"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","4f029899f9bae07e225c43aef893590541b2b43267383bf5e32e3a884d219ed5","ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9",{"version":"5b566927cad2ed2139655d55d690ffa87df378b956e7fe1c96024c4d9f75c4cf","affectsGlobalScope":true},{"version":"bce947017cb7a2deebcc4f5ba04cead891ce6ad1602a4438ae45ed9aa1f39104","affectsGlobalScope":true},"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","e2c72c065a36bc9ab2a00ac6a6f51e71501619a72c0609defd304d46610487a4","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"616075a6ac578cf5a013ee12964188b4412823796ce0b202c6f1d2e4ca8480d7","affectsGlobalScope":true},"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","9091e564b81e7b4c382a33c62de704a699e10508190547d4f7c1c3e039d2db2b"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"declarationDir":"./","esModuleInterop":true,"experimentalDecorators":true,"module":99,"noEmitOnError":true,"noErrorTruncation":true,"noImplicitAny":false,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipDefaultLibCheck":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"target":4},"fileIdsList":[[68,93,136],[68,78,79,93,136],[69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,93,136],[68,75,93,136],[68,75,78,93,136],[51,68,93,136],[56,57,93,136],[42,50,52,55,93,136],[42,50,54,55,56,93,136],[52,59,93,136],[42,51,52,54,56,58,93,136],[51,53,55,58,93,136],[42,54,93,136],[54,55,58,60,61,93,136],[42,43,93,136],[42,45,46,93,136],[42,58,93,136],[42,45,93,136],[42,45,47,93,136],[42,43,44,93,136],[43,44,45,46,47,48,49,93,136],[42,93,136],[45,47,93,136],[42,50,62,67,93,136],[93,136],[63,64,65,66,93,136],[93,133,136],[93,135,136],[93,136,141,170],[93,136,137,142,148,149,156,167,178],[93,136,137,138,148,156],[88,89,90,93,136],[93,136,139,179],[93,136,140,141,149,157],[93,136,141,167,175],[93,136,142,144,148,156],[93,135,136,143],[93,136,144,145],[93,136,148],[93,136,146,148],[93,135,136,148],[93,136,148,149,150,167,178],[93,136,148,149,150,163,167,170],[93,131,136,183],[93,136,144,148,151,156,167,178],[93,136,148,149,151,152,156,167,175,178],[93,136,151,153,167,175,178],[93,136,148,154],[93,136,155,178,183],[93,136,144,148,156,167],[93,136,157],[93,136,158],[93,135,136,159],[93,133,134,135,136,137,138,139,140,141,142,143,144,145,146,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,174,175,176,177,178,179,180,181,182,183,184],[93,136,161],[93,136,162],[93,136,148,163,164],[93,136,163,165,179,181],[93,136,148,167,168,170],[93,136,169,170],[93,136,167,168],[93,136,170],[93,136,171],[93,133,136,167],[93,136,148,173,174],[93,136,173,174],[93,136,141,156,167,175],[93,136,176],[136],[91,92,93,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,174,175,176,177,178,179,180,181,182,183,184],[93,136,156,177],[93,136,151,162,178],[93,136,141,179],[93,136,167,180],[93,136,155,181],[93,136,182],[93,136,141,148,150,159,167,178,181,183],[93,136,167,184],[93,103,107,136,178],[93,103,136,167,178],[93,98,136],[93,100,103,136,175,178],[93,136,156,175],[93,136,185],[93,98,136,185],[93,100,103,136,156,178],[93,95,96,99,102,136,148,167,178],[93,103,110,136],[93,95,101,136],[93,103,124,125,136],[93,99,103,136,170,178,185],[93,124,136,185],[93,97,98,136,185],[93,103,136],[93,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,125,126,127,128,129,130,136],[93,103,118,136],[93,103,110,111,136],[93,101,103,111,112,136],[93,102,136],[93,95,98,103,136],[93,103,107,111,112,136],[93,107,136],[93,101,103,106,136,178],[93,95,100,103,110,136],[93,136,167],[93,98,103,124,136,183,185],[68,84,85,93,136],[85,86,93,136],[68,84,93,136],[186],[78,79,186],[69,70,71,72,73,74,75,76,77,78,79,80,81,82,83],[75,186],[75,78,186],[51,186],[51,93,136,186],[133],[135],[135,143],[148],[182],[103,107,178],[103,167,178],[98],[156,175],[187],[98,187],[136,187],[124,136,187],[103],[103,110,111],[101,103,111,112],[102],[103,107,111,112],[107],[68,84,85],[85,86],[68,84]],"referencedMap":[[72,1],[80,1],[78,1],[81,2],[71,1],[70,1],[69,1],[75,1],[82,1],[84,3],[76,4],[79,5],[83,1],[77,1],[73,6],[74,6],[58,7],[56,8],[57,9],[60,10],[52,6],[59,11],[54,12],[55,13],[62,14],[61,15],[47,16],[43,17],[44,18],[48,19],[45,20],[50,21],[46,22],[49,23],[68,24],[42,25],[63,22],[66,22],[64,22],[65,22],[67,26],[133,27],[134,27],[135,28],[136,29],[137,30],[138,31],[88,25],[91,32],[89,25],[90,25],[139,33],[140,34],[141,35],[142,36],[143,37],[144,38],[145,38],[147,39],[146,40],[148,41],[149,42],[150,43],[132,44],[151,45],[152,46],[153,47],[154,48],[155,49],[156,50],[157,51],[158,52],[159,53],[160,54],[161,55],[162,56],[163,57],[164,57],[165,58],[166,25],[167,59],[169,60],[168,61],[170,62],[171,63],[172,64],[173,65],[174,66],[175,67],[176,68],[93,69],[92,25],[185,70],[177,71],[178,72],[179,73],[180,74],[181,75],[182,76],[183,77],[184,78],[94,25],[51,25],[53,25],[8,25],[10,25],[9,25],[2,25],[11,25],[12,25],[13,25],[14,25],[15,25],[16,25],[17,25],[18,25],[3,25],[4,25],[22,25],[19,25],[20,25],[21,25],[23,25],[24,25],[25,25],[5,25],[26,25],[27,25],[28,25],[29,25],[6,25],[33,25],[30,25],[31,25],[32,25],[34,25],[7,25],[35,25],[40,25],[41,25],[36,25],[37,25],[38,25],[39,25],[1,25],[110,79],[120,80],[109,79],[130,81],[101,82],[100,83],[129,84],[123,85],[128,86],[103,87],[117,88],[102,89],[126,90],[98,91],[97,84],[127,92],[99,93],[104,94],[105,25],[108,94],[95,25],[131,95],[121,96],[112,97],[113,98],[115,99],[111,100],[114,101],[124,84],[106,102],[107,103],[116,104],[96,105],[119,96],[118,94],[122,25],[125,106],[86,107],[87,108],[85,109]],"exportedModulesMap":[[72,110],[80,110],[78,110],[81,111],[71,110],[70,110],[69,110],[75,110],[82,110],[84,112],[76,113],[79,114],[83,110],[77,110],[73,115],[74,116],[58,7],[56,8],[57,9],[60,10],[52,6],[59,11],[54,12],[55,13],[62,14],[61,15],[47,16],[43,17],[44,18],[48,19],[45,20],[50,21],[46,22],[49,23],[68,24],[42,25],[63,22],[66,22],[64,22],[65,22],[67,26],[133,27],[134,117],[135,118],[136,29],[137,30],[138,31],[88,25],[91,32],[89,25],[90,25],[139,33],[140,34],[141,35],[142,36],[143,119],[144,38],[145,38],[147,120],[146,40],[148,41],[149,42],[150,43],[132,44],[151,45],[152,46],[153,47],[154,48],[155,49],[156,50],[157,51],[158,52],[159,53],[160,54],[161,55],[162,56],[163,57],[164,57],[165,58],[167,59],[169,60],[168,61],[170,62],[171,63],[172,64],[173,65],[174,66],[175,67],[176,68],[93,69],[92,25],[185,70],[177,71],[178,72],[179,73],[180,74],[181,75],[182,121],[183,77],[184,78],[51,25],[110,122],[120,123],[109,79],[130,124],[101,82],[100,125],[129,126],[123,127],[128,86],[103,87],[117,88],[102,89],[126,90],[98,91],[97,128],[127,129],[99,93],[104,130],[108,94],[131,95],[121,96],[112,131],[113,132],[115,133],[111,100],[114,134],[124,126],[106,135],[107,103],[116,104],[96,105],[119,96],[118,94],[122,25],[125,106],[86,136],[87,137],[85,138]],"semanticDiagnosticsPerFile":[72,80,78,81,71,70,69,75,82,84,76,79,83,77,73,74,58,56,57,60,52,59,54,55,62,61,47,43,44,48,45,50,46,49,68,42,63,66,64,65,67,133,134,135,136,137,138,88,91,89,90,139,140,141,142,143,144,145,147,146,148,149,150,132,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,169,168,170,171,172,173,174,175,176,93,92,185,177,178,179,180,181,182,183,184,94,51,53,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,7,35,40,41,36,37,38,39,1,110,120,109,130,101,100,129,123,128,103,117,102,126,98,97,127,99,104,105,108,95,131,121,112,113,115,111,114,124,106,107,116,96,119,118,122,125,86,87,85]},"version":"4.9.5"}
|
|
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.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.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/@holochain/client/lib/types.d.ts","../../../node_modules/@holochain/client/lib/hdk/capabilities.d.ts","../../../node_modules/@holochain/client/lib/hdk/countersigning.d.ts","../../../node_modules/@holochain/client/lib/hdk/entry.d.ts","../../../node_modules/@holochain/client/lib/hdk/link.d.ts","../../../node_modules/@holochain/client/lib/hdk/action.d.ts","../../../node_modules/@holochain/client/lib/hdk/dht-ops.d.ts","../../../node_modules/@holochain/client/lib/hdk/record.d.ts","../../../node_modules/@holochain/client/lib/hdk/index.d.ts","../../../node_modules/emittery/index.d.ts","../../../node_modules/@holochain/client/lib/api/app/types.d.ts","../../../node_modules/isomorphic-ws/index.d.ts","../../../node_modules/@holochain/client/lib/api/client.d.ts","../../../node_modules/@holochain/client/lib/api/common.d.ts","../../../node_modules/@holochain/client/lib/api/admin/types.d.ts","../../../node_modules/@holochain/client/lib/api/admin/websocket.d.ts","../../../node_modules/@holochain/client/lib/api/admin/index.d.ts","../../../node_modules/@holochain/client/lib/api/app/websocket.d.ts","../../../node_modules/@holochain/client/lib/api/app/index.d.ts","../../../node_modules/@holochain/client/lib/api/zome-call-signing.d.ts","../../../node_modules/@holochain/client/lib/api/index.d.ts","../../../node_modules/@holochain/client/lib/utils/base64.d.ts","../../../node_modules/@holochain/client/lib/utils/fake-hash.d.ts","../../../node_modules/@holochain/client/lib/utils/hash-parts.d.ts","../../../node_modules/@holochain/client/lib/utils/cell.d.ts","../../../node_modules/@holochain/client/lib/utils/index.d.ts","../../../node_modules/@holochain/client/lib/index.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/hash.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/fake.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/entry.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/action-committed-signal.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/zome-client.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/zome-mock.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/holo-hash-map.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/map-utils.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/timestamp.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/entry-record.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/record-bag.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/cell.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/entry-state.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/hrl.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/role-name.d.ts","../../../node_modules/@holochain-open-dev/utils/dist/index.d.ts","../src/types.ts","../src/client.ts","../src/index.ts","../../../node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../../node_modules/@types/node/ts5.6/buffer.buffer.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/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/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/ts5.6/index.d.ts","../../../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","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":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},"1e3a577d4d47af4bd2919d05922536fecc284d17523413d3e8b63392c9259668","4dfa40234b9de58985ce894a9f0158976c9c115afaee592cc30cdd9b00a19412","69123fe1546d0ec4cdb60d7fac7098f00d1b0252c25ebff34f886a640b6a204e","2f3ed5b2e38623fa774a524d681228bd482e80834f7fbbca65faf96538e4c97c","19697285b780119b961fbfb54310e44a965efdf516db3fd73fe23673243e2370","edb19c346b7ebecdd115ef1f2b6e545ef39e489dd3731d6f5190d29d2299dcac","bd20b3571f7a6dd92f342e8745ed27e274326516a60f89d0d74dd795e4c43d8c","41a5f23f9818decc69d093b28304169d5cfdcea6ef2f00121ee4c601b4a9b402","1de2ecc502fce9d6aa521320b76b22bdbd22a615b6fed6fe0e327fca99b47d48","776fe2a059b56d31790350701ac07c3c4df26c3e14e5f4f8f1d9c59b143933c5","477ee457f99e8aa14b8f660aa5aa285725a6ecca39e2f6c8d0f4e918a5521de3","1442a75050bad91356b11dcea6dfb877154d1f2e00f863a9b17ba5e903659503","804473e37618d23834cc213c46d64d1be13836cecb7d1c9d8d9d85b0fec695dd","e1d33e121ebca9b43b4b35b0b2b787005a85a389b0ffe1af001e03d81437724c","6c71f679796acc24f79eadb90b0adbcb49358dc13e12263a31abc44a46758534","44d82668ea151ac39d627107d0182ba56bf91448f270eb3c5300e4bf2a833fb2","e76069367e6b1580fe09b6c14dc0e477df342f2758cb5570ae8cd06caa6188cf","cc3d6ded67209774c97d8adeb154c6dbeebc43c0c44f63bb0b85fb8c76d0771d","e76069367e6b1580fe09b6c14dc0e477df342f2758cb5570ae8cd06caa6188cf","270dbb9c61ca6740b4a3fe13890fbcf613197cd5bc28501e3847528d7a5c6d06","9d8f1788f4c8d4f5c9f3b92c2e8347d7cc95b46e9df68d096d30ebb6a6807f26","f7e09742d2615dd1d124704163f36a270f29313b5df2b7be8f9ff437d5ba2669","3323e4131dd27278b81d7a076e03791b8914e3966c248409a8bbbb1c03293c50","f804ef8f5236549cf171af865554652ffc4d27ee1decd045187b414b103e094c","877ee87eec44163bcc52ecc66d6db0125c7b1f12e492e30c7de07a635577aac3","7cc04486e26c9885857f84cd13860c13e8260f5b831803801075b5fe9245721e","8e07e510136d912892df588fd9d79f1f26415e879f4b2893f334cd793a9c8577","6f82bfed1baafbc20cb7226adfa22a5ec61fc0332e0e669c28bb5e81b4fc248c","f7b0ac11a96661e26bd68733af69efe70d727333c6d8db0b942fc277f0b6b8b8","714b0982b23aab486508e45fc04af9e88932dc8cba3f7647aac32fd3ec21d41c","0dfc2ded3356c698a8f5bfa3ce7ca868d1edbb008b60c13be6fd5d86711ec5c7","24ab93d818baf2fe7ded2cd412bd297cfe7a205d12e95c1a274d3c6a9ffb87df","aadfa44d1ba35aefd06038e25b7aa1985e6fa6f6f335017daa780dd6af56e7f3","3f0a0d9d16d7eab231b3ce8797c3294ba03112fb0c99c1dfac9c3b05dcfbb103","b4a9af945c831767b62a09d1b166d63fe5f54d2ec32d7be9682c4c989a5614a4","92428ea53b5f07627f5c1c065e2cc1d17538af7ff317cefc78d7b2372fb2eade","270057e134bf77d0cb5318a2ebde01d97edb1d3ab59e5649ba010f5e3ba7b9dc","6645a016cbd9d1565344bef31b13475be48f47d226189f7fc695516993c8b0b1","a837d0e7f8f041519ce2297f280391bd9558e5ef34e0059a4868fafdb9098506","c397491eb2d833ac87d94ae26b4f65cff931d483e6d79725ee12c2e4f2c22231","9a4558eb853e64b4fe11f2decb6aef6444bdca68a8bd2dab62e30b8876ceed80","0d291e21250c05468e257ad28e21bd399c36dcb4ca2be86ed7e0e82d93407c14","45f937f94d62f5d1ae3f6b172748d9430f824225bc31acf179e6fddd4a0f442a",{"version":"cae5e515a5265c07074b537a4a0cbd9723a7ed5c60b48d9f7916cabf55311abf","signature":"dc5a8fd74ad6738ab43dcbc8fe57516decb10f1842a1dacd2df263b78bc20427"},{"version":"c1c9aaa8967598092fc9bf7da7ec0d7b758014c4eaeec71e6e5931ba1f097751","signature":"4265be169081b4079271e73d87ed2da053ed8bc6b709168612b93f3cf2fa00dd"},"1bd7bdb278a946e7388b8b2bcec7a5b87aa85132662a06b7eda1030a44232a9e",{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true},"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a",{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true},{"version":"20fb08397d22742771868b52f647cddfbf44b263f26b6519b449257f8c9f7364","affectsGlobalScope":true},"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":"08faa97886e71757779428dd4c69a545c32c85fd629d1116d42710b32c6378bc","affectsGlobalScope":true},"6b042aa5d277ad6963e2837179fd2f8fbb01968ac67115b0833c0244e93d1d50","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36",{"version":"23cfd70b42094e54cc3c5dab996d81b97e2b6f38ccb24ead85454b8ddfe2fc4f","affectsGlobalScope":true},"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","a3e8bafb2af8e850c644f4be7f5156cf7d23b7bfdc3b786bd4d10ed40329649c",{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true},"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a",{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true},"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","5a369483ac4cfbdf0331c248deeb36140e6907db5e1daed241546b4a2055f82c","e8f5b5cc36615c17d330eaf8eebbc0d6bdd942c25991f96ef122f246f4ff722f","f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true},"0a37b8d00d03f0381d2db2fe31b0571dc9d7cc0f4b87ca103cc3cd2277690ba0","71adf5dbc59568663d252a46179e71e4d544c053978bfc526d11543a3f716f42","38bf8ff1b403c861e9052c9ea651cb4f38c1ecc084a34d79f8acc6d6477a7321","93bd413918fa921c8729cef45302b24d8b6c7855d72d5bf82d3972595ae8dcbf","4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","dccdf1677e531e33f8ac961a68bc537418c9a414797c1ea7e91307501cdc3f5e",{"version":"e184c4b8918ef56c8c9e68bd79f3f3780e2d0d75bf2b8a41da1509a40c2deb46","affectsGlobalScope":true},"d206b4baf4ddcc15d9d69a9a2f4999a72a2c6adeaa8af20fa7a9960816287555","93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5",{"version":"70731d10d5311bd4cf710ef7f6539b62660f4b0bfdbb3f9fbe1d25fe6366a7fa","affectsGlobalScope":true},{"version":"6b19db3600a17af69d4f33d08cc7076a7d19fb65bb36e442cac58929ec7c9482","affectsGlobalScope":true},"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","137c2894e8f3e9672d401cc0a305dc7b1db7c69511cf6d3970fb53302f9eae09","3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","ba1f814c22fd970255ddd60d61fb7e00c28271c933ab5d5cc19cd3ca66b8f57c","37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093",{"version":"295f068af94245ee9d780555351bef98adfd58f8baf0b9dadbc31a489b881f8b","affectsGlobalScope":true},"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb",{"version":"09d479208911ac3ac6a7c2fe86217fc1abe6c4f04e2d52e4890e500699eeab32","affectsGlobalScope":true},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true},"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","4f029899f9bae07e225c43aef893590541b2b43267383bf5e32e3a884d219ed5","ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9",{"version":"5b566927cad2ed2139655d55d690ffa87df378b956e7fe1c96024c4d9f75c4cf","affectsGlobalScope":true},{"version":"bce947017cb7a2deebcc4f5ba04cead891ce6ad1602a4438ae45ed9aa1f39104","affectsGlobalScope":true},"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","e2c72c065a36bc9ab2a00ac6a6f51e71501619a72c0609defd304d46610487a4","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"616075a6ac578cf5a013ee12964188b4412823796ce0b202c6f1d2e4ca8480d7","affectsGlobalScope":true},"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","9091e564b81e7b4c382a33c62de704a699e10508190547d4f7c1c3e039d2db2b"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"declarationDir":"./","esModuleInterop":true,"experimentalDecorators":true,"module":99,"noEmitOnError":true,"noErrorTruncation":true,"noImplicitAny":false,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipDefaultLibCheck":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"target":4},"fileIdsList":[[68,93,136],[68,78,79,93,136],[69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,93,136],[68,75,93,136],[68,75,78,93,136],[51,68,93,136],[56,57,93,136],[42,50,52,55,93,136],[42,50,54,55,56,93,136],[52,59,93,136],[42,51,52,54,58,93,136],[51,53,55,58,93,136],[42,54,93,136],[54,55,58,60,61,93,136],[42,43,93,136],[42,45,46,93,136],[42,58,93,136],[42,45,93,136],[42,45,47,93,136],[42,43,44,93,136],[43,44,45,46,47,48,49,93,136],[42,93,136],[45,47,93,136],[42,50,62,67,93,136],[93,136],[63,64,65,66,93,136],[93,133,136],[93,135,136],[93,136,141,170],[93,136,137,142,148,149,156,167,178],[93,136,137,138,148,156],[88,89,90,93,136],[93,136,139,179],[93,136,140,141,149,157],[93,136,141,167,175],[93,136,142,144,148,156],[93,135,136,143],[93,136,144,145],[93,136,148],[93,136,146,148],[93,135,136,148],[93,136,148,149,150,167,178],[93,136,148,149,150,163,167,170],[93,131,136,183],[93,136,144,148,151,156,167,178],[93,136,148,149,151,152,156,167,175,178],[93,136,151,153,167,175,178],[93,136,148,154],[93,136,155,178,183],[93,136,144,148,156,167],[93,136,157],[93,136,158],[93,135,136,159],[93,133,134,135,136,137,138,139,140,141,142,143,144,145,146,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,174,175,176,177,178,179,180,181,182,183,184],[93,136,161],[93,136,162],[93,136,148,163,164],[93,136,163,165,179,181],[93,136,148,167,168,170],[93,136,169,170],[93,136,167,168],[93,136,170],[93,136,171],[93,133,136,167],[93,136,148,173,174],[93,136,173,174],[93,136,141,156,167,175],[93,136,176],[136],[91,92,93,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,174,175,176,177,178,179,180,181,182,183,184],[93,136,156,177],[93,136,151,162,178],[93,136,141,179],[93,136,167,180],[93,136,155,181],[93,136,182],[93,136,141,148,150,159,167,178,181,183],[93,136,167,184],[93,103,107,136,178],[93,103,136,167,178],[93,98,136],[93,100,103,136,175,178],[93,136,156,175],[93,136,185],[93,98,136,185],[93,100,103,136,156,178],[93,95,96,99,102,136,148,167,178],[93,103,110,136],[93,95,101,136],[93,103,124,125,136],[93,99,103,136,170,178,185],[93,124,136,185],[93,97,98,136,185],[93,103,136],[93,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,125,126,127,128,129,130,136],[93,103,118,136],[93,103,110,111,136],[93,101,103,111,112,136],[93,102,136],[93,95,98,103,136],[93,103,107,111,112,136],[93,107,136],[93,101,103,106,136,178],[93,95,100,103,110,136],[93,136,167],[93,98,103,124,136,183,185],[68,84,85,93,136],[85,86,93,136],[68,84,93,136],[68],[68,78,79],[69,70,71,72,73,74,75,76,77,78,79,80,81,82,83],[68,75],[68,75,78],[51,68],[135],[135,143],[182],[124,136,186],[186],[68,84,85],[85,86],[68,84]],"referencedMap":[[72,1],[80,1],[78,1],[81,2],[71,1],[70,1],[69,1],[75,1],[82,1],[84,3],[76,4],[79,5],[83,1],[77,1],[73,6],[74,6],[58,7],[56,8],[57,9],[60,10],[52,6],[59,11],[54,12],[55,13],[62,14],[61,15],[47,16],[43,17],[44,18],[48,19],[45,20],[50,21],[46,22],[49,23],[68,24],[42,25],[63,22],[66,22],[64,22],[65,22],[67,26],[133,27],[134,27],[135,28],[136,29],[137,30],[138,31],[88,25],[91,32],[89,25],[90,25],[139,33],[140,34],[141,35],[142,36],[143,37],[144,38],[145,38],[147,39],[146,40],[148,41],[149,42],[150,43],[132,44],[151,45],[152,46],[153,47],[154,48],[155,49],[156,50],[157,51],[158,52],[159,53],[160,54],[161,55],[162,56],[163,57],[164,57],[165,58],[166,25],[167,59],[169,60],[168,61],[170,62],[171,63],[172,64],[173,65],[174,66],[175,67],[176,68],[93,69],[92,25],[185,70],[177,71],[178,72],[179,73],[180,74],[181,75],[182,76],[183,77],[184,78],[94,25],[51,25],[53,25],[8,25],[10,25],[9,25],[2,25],[11,25],[12,25],[13,25],[14,25],[15,25],[16,25],[17,25],[18,25],[3,25],[4,25],[22,25],[19,25],[20,25],[21,25],[23,25],[24,25],[25,25],[5,25],[26,25],[27,25],[28,25],[29,25],[6,25],[33,25],[30,25],[31,25],[32,25],[34,25],[7,25],[35,25],[40,25],[41,25],[36,25],[37,25],[38,25],[39,25],[1,25],[110,79],[120,80],[109,79],[130,81],[101,82],[100,83],[129,84],[123,85],[128,86],[103,87],[117,88],[102,89],[126,90],[98,91],[97,84],[127,92],[99,93],[104,94],[105,25],[108,94],[95,25],[131,95],[121,96],[112,97],[113,98],[115,99],[111,100],[114,101],[124,84],[106,102],[107,103],[116,104],[96,105],[119,96],[118,94],[122,25],[125,106],[86,107],[87,108],[85,109]],"exportedModulesMap":[[72,110],[80,110],[78,110],[81,111],[71,110],[70,110],[69,110],[75,110],[82,110],[84,112],[76,113],[79,114],[83,110],[77,110],[73,115],[74,6],[58,7],[56,8],[57,9],[60,10],[52,6],[59,11],[54,12],[55,13],[62,14],[61,15],[47,16],[43,17],[44,18],[48,19],[45,20],[50,21],[46,22],[49,23],[68,24],[42,25],[63,22],[66,22],[64,22],[65,22],[67,26],[133,27],[134,27],[135,116],[136,29],[137,30],[138,31],[88,25],[91,32],[89,25],[90,25],[139,33],[140,34],[141,35],[142,36],[143,117],[144,38],[145,38],[147,39],[146,40],[148,41],[149,42],[150,43],[132,44],[151,45],[152,46],[153,47],[154,48],[155,49],[156,50],[157,51],[158,52],[159,53],[160,54],[161,55],[162,56],[163,57],[164,57],[165,58],[167,59],[169,60],[168,61],[170,62],[171,63],[172,64],[173,65],[174,66],[175,67],[176,68],[93,69],[92,25],[185,70],[177,71],[178,72],[179,73],[180,74],[181,75],[182,118],[183,77],[184,78],[94,25],[51,25],[34,25],[7,25],[35,25],[40,25],[41,25],[36,25],[37,25],[38,25],[39,25],[110,79],[120,80],[109,79],[130,81],[101,82],[100,83],[129,84],[123,85],[128,86],[103,87],[117,88],[102,89],[126,90],[98,91],[97,84],[127,119],[99,93],[104,94],[105,25],[108,94],[95,25],[131,95],[121,96],[112,97],[113,98],[115,99],[111,100],[114,101],[124,120],[106,102],[107,103],[116,104],[96,105],[119,96],[118,94],[122,25],[125,106],[86,121],[87,122],[85,123]],"semanticDiagnosticsPerFile":[72,80,78,81,71,70,69,75,82,84,76,79,83,77,73,74,58,56,57,60,52,59,54,55,62,61,47,43,44,48,45,50,46,49,68,42,63,66,64,65,67,133,134,135,136,137,138,88,91,89,90,139,140,141,142,143,144,145,147,146,148,149,150,132,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,169,168,170,171,172,173,174,175,176,93,92,185,177,178,179,180,181,182,183,184,94,51,53,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,7,35,40,41,36,37,38,39,1,110,120,109,130,101,100,129,123,128,103,117,102,126,98,97,127,99,104,105,108,95,131,121,112,113,115,111,114,124,106,107,116,96,119,118,122,125,86,87,85]},"version":"4.9.5"}
|
package/package.json
CHANGED
package/dist/utils.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function deepDecodeUint8Arrays(object: any): any;
|
package/dist/utils.js
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { decode } from '@msgpack/msgpack';
|
|
2
|
-
export function deepDecodeUint8Arrays(object) {
|
|
3
|
-
if (object === undefined || object === null)
|
|
4
|
-
return object;
|
|
5
|
-
if (object instanceof Uint8Array) {
|
|
6
|
-
try {
|
|
7
|
-
return decode(object);
|
|
8
|
-
}
|
|
9
|
-
catch (e) {
|
|
10
|
-
return object;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
if (typeof object !== 'object')
|
|
14
|
-
return object;
|
|
15
|
-
if (Array.isArray(object))
|
|
16
|
-
return object.map(deepDecodeUint8Arrays);
|
|
17
|
-
const obj = {};
|
|
18
|
-
for (const key of Object.keys(object)) {
|
|
19
|
-
obj[key] = deepDecodeUint8Arrays(object[key]);
|
|
20
|
-
}
|
|
21
|
-
return obj;
|
|
22
|
-
}
|
|
23
|
-
//# sourceMappingURL=utils.js.map
|
package/dist/utils.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAE1C,MAAM,UAAU,qBAAqB,CAAC,MAAW;IAC/C,IAAI,MAAM,KAAK,SAAS,IAAI,MAAM,KAAK,IAAI;QAAE,OAAO,MAAM,CAAC;IAC3D,IAAI,MAAM,YAAY,UAAU,EAAE;QAChC,IAAI;YACF,OAAO,MAAM,CAAC,MAAM,CAAC,CAAC;SACvB;QAAC,OAAO,CAAC,EAAE;YACV,OAAO,MAAM,CAAC;SACf;KACF;IAED,IAAI,OAAO,MAAM,KAAK,QAAQ;QAAE,OAAO,MAAM,CAAC;IAE9C,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC;QAAE,OAAO,MAAM,CAAC,GAAG,CAAC,qBAAqB,CAAC,CAAC;IAEpE,MAAM,GAAG,GAAG,EAAE,CAAC;IAEf,KAAK,MAAM,GAAG,IAAI,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE;QACrC,GAAG,CAAC,GAAG,CAAC,GAAG,qBAAqB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;KAC/C;IACD,OAAO,GAAG,CAAC;AACb,CAAC"}
|