@holochain-syn/client 0.400.0-dev.0 → 0.400.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.d.ts CHANGED
@@ -28,4 +28,11 @@ export declare class SynClient extends ZomeClient<SynSignal> {
28
28
  joinWorkspaceSession(workspace_hash: EntryHash): Promise<AgentPubKey[]>;
29
29
  leaveWorkspaceSession(workspace_hash: EntryHash): Promise<void>;
30
30
  sendMessage(recipients: Array<AgentPubKey>, message: SessionMessage): Promise<void>;
31
+ openDebugger(): Promise<void>;
32
+ callZome(fnname: any, payload: any): Promise<any>;
33
+ /**
34
+ * Dumps the current state of Syn, including all documents, commits, authors, and workspaces.
35
+ * This method is used for debugging purposes to capture the state when an error occurs.
36
+ */
37
+ private dumpSynState;
31
38
  }
package/dist/client.js CHANGED
@@ -114,5 +114,149 @@ export class SynClient extends ZomeClient {
114
114
  message,
115
115
  });
116
116
  }
117
+ async openDebugger() {
118
+ const alert = document.createElement('div');
119
+ alert.style.position = 'fixed';
120
+ alert.style.top = '0';
121
+ alert.style.left = '0';
122
+ alert.style.right = '0';
123
+ alert.style.zIndex = '1000';
124
+ alert.style.backgroundColor = 'white';
125
+ alert.style.padding = '20px';
126
+ alert.style.border = '1px solid red';
127
+ alert.style.boxShadow = '0 0 10px 0 rgba(0,0,0,0.1)';
128
+ alert.style.margin = '20px';
129
+ alert.style.borderRadius = '5px';
130
+ alert.style.maxWidth = '600px';
131
+ alert.style.margin = 'auto';
132
+ alert.style.marginTop = '20px';
133
+ const id = Math.random().toString(36).substr(2, 9);
134
+ alert.id = 'syn-error-alert-' + id;
135
+ alert.innerHTML = `<sl-alert open>
136
+ There was an error calling a zome function for syn.
137
+ <br>
138
+ <br>
139
+ <textarea id="syn-error-note" placeholder="Please leave a note describing what you were doing when this error occurred." style="width: 100%; height: 100px;"></textarea>
140
+ <br>
141
+ <sl-button id="dismiss-error-alert-button-${id}" type="primary" >Dismiss</sl-button>
142
+ <sl-button id="syn-error-alert-button-${id}">Download syn state</sl-button>
143
+ </sl-alert>`;
144
+ document.body.appendChild(alert);
145
+ const button = document.getElementById('syn-error-alert-button-' + id);
146
+ button === null || button === void 0 ? void 0 : button.addEventListener('click', async () => {
147
+ const note = document.getElementById('syn-error-note').value;
148
+ const state = await this.dumpSynState();
149
+ console.log('Dumping state', state);
150
+ const dumpState = {
151
+ state,
152
+ userNote: '',
153
+ };
154
+ dumpState.userNote = note;
155
+ downloadObjectAsJson(dumpState, 'syn-state.json');
156
+ });
157
+ const dismissButton = document.getElementById('dismiss-error-alert-button-' + id);
158
+ dismissButton === null || dismissButton === void 0 ? void 0 : dismissButton.addEventListener('click', () => {
159
+ var _a;
160
+ console.log('Dismissing error alert');
161
+ (_a = document.getElementById('syn-error-alert-' + id)) === null || _a === void 0 ? void 0 : _a.remove();
162
+ });
163
+ }
164
+ async callZome(fnname, payload) {
165
+ try {
166
+ const result = await super.callZome(fnname, payload);
167
+ return result;
168
+ }
169
+ catch (e) {
170
+ console.log('Error calling zome function', fnname, e);
171
+ const alert = document.createElement('div');
172
+ alert.style.position = 'fixed';
173
+ alert.style.top = '0';
174
+ alert.style.left = '0';
175
+ alert.style.right = '0';
176
+ alert.style.zIndex = '1000';
177
+ alert.style.backgroundColor = 'white';
178
+ alert.style.padding = '20px';
179
+ alert.style.border = '1px solid red';
180
+ alert.style.boxShadow = '0 0 10px 0 rgba(0,0,0,0.1)';
181
+ alert.style.margin = '20px';
182
+ alert.style.borderRadius = '5px';
183
+ alert.style.maxWidth = '600px';
184
+ alert.style.margin = 'auto';
185
+ alert.style.marginTop = '20px';
186
+ const id = Math.random().toString(36).substr(2, 9);
187
+ alert.id = 'syn-error-alert-' + id;
188
+ alert.innerHTML = `<sl-alert open>
189
+ There was an error calling a zome function for syn.
190
+ <br>
191
+ <small>${JSON.stringify(e)}</small>
192
+ <br>
193
+ <textarea id="syn-error-note" placeholder="Please leave a note describing what you were doing when this error occurred." style="width: 100%; height: 100px;"></textarea>
194
+ <br>
195
+ <sl-button id="dismiss-error-alert-button-${id}" type="primary" >Dismiss</sl-button>
196
+ <sl-button id="syn-error-alert-button-${id}">Download syn state</sl-button>
197
+ </sl-alert>`;
198
+ document.body.appendChild(alert);
199
+ const button = document.getElementById('syn-error-alert-button-' + id);
200
+ button === null || button === void 0 ? void 0 : button.addEventListener('click', async () => {
201
+ const note = document.getElementById('syn-error-note').value;
202
+ const state = await this.dumpSynState();
203
+ console.log('Dumping state', state);
204
+ const dumpState = {
205
+ state,
206
+ error: JSON.stringify(e),
207
+ userNote: '',
208
+ };
209
+ dumpState.userNote = note;
210
+ downloadObjectAsJson(dumpState, 'syn-state.json');
211
+ });
212
+ const dismissButton = document.getElementById('dismiss-error-alert-button-' + id);
213
+ dismissButton === null || dismissButton === void 0 ? void 0 : dismissButton.addEventListener('click', () => {
214
+ var _a;
215
+ console.log('Dismissing error alert');
216
+ (_a = document.getElementById('syn-error-alert-' + id)) === null || _a === void 0 ? void 0 : _a.remove();
217
+ });
218
+ throw e;
219
+ }
220
+ }
221
+ /**
222
+ * Dumps the current state of Syn, including all documents, commits, authors, and workspaces.
223
+ * This method is used for debugging purposes to capture the state when an error occurs.
224
+ */
225
+ async dumpSynState() {
226
+ try {
227
+ // Get all documents, commits and workspace
228
+ const activeDocs = await this.getDocumentsWithTag('active');
229
+ const archivedDocs = await this.getDocumentsWithTag('archived');
230
+ const allDocs = activeDocs.concat(archivedDocs);
231
+ const allDocsRecords = await Promise.all(allDocs.map(doc => this.getDocument(doc.target)));
232
+ const allDocsCommits = await Promise.all(allDocs.map(doc => this.getCommitsForDocument(doc.target)));
233
+ const allDocsAuthors = await Promise.all(allDocs.map(doc => this.getAuthorsForDocument(doc.target)));
234
+ const allDocsWorkspaces = await Promise.all(allDocs.map(doc => this.getWorkspacesForDocument(doc.target)));
235
+ const output = {
236
+ allDocs: allDocsRecords,
237
+ allDocsCommits,
238
+ allDocsAuthors,
239
+ allDocsWorkspaces,
240
+ };
241
+ return output;
242
+ }
243
+ catch (e) {
244
+ console.error('Error dumping syn state', e);
245
+ return {
246
+ error: JSON.stringify(e),
247
+ };
248
+ }
249
+ }
250
+ }
251
+ function downloadObjectAsJson(exportObj, exportName) {
252
+ var dataStr = 'data:text/json;charset=utf-8,' +
253
+ encodeURIComponent(JSON.stringify(exportObj));
254
+ console.log(dataStr);
255
+ var downloadAnchorNode = document.createElement('a');
256
+ downloadAnchorNode.setAttribute('href', dataStr);
257
+ downloadAnchorNode.setAttribute('download', exportName + '.json');
258
+ document.body.appendChild(downloadAnchorNode); // required for firefox
259
+ downloadAnchorNode.click();
260
+ downloadAnchorNode.remove();
117
261
  }
118
262
  //# sourceMappingURL=client.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"client.js","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}
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/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/@holochain/serialization/dist/index.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/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/types.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/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","../../../node_modules/@holochain-open-dev/utils/dist/clean-node-decoding.d.ts","../src/types.ts","../src/client.ts","../src/index.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/api.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/interceptors.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/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/index.d.ts","../node_modules/@holochain/client/lib/index.d.ts","../node_modules/@holochain-open-dev/utils/dist/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},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"3c6d7f6e11e03fbe2edeb9dd1a4640dd2413968ec11083b073ddb567b5c31245","4fa99e1a528208b43260c1da93fe732becff9a156ec5de29664918cfff97fc10","d974d48347a016a29b3b1b72bccb49e319d8aa4e42e5e298fdad1bf2c18f29f7","33c9fb96cbc5eedbae95ac3cadcc2f85667d9ee56dd31a2124d24c0ab7f72fa1","2f3ed5b2e38623fa774a524d681228bd482e80834f7fbbca65faf96538e4c97c","7befd9c1c1aec23d7ce94030f81f9e0efff7691bf589e6ec06248e7f931b9bbc","f574d1ea87b5d7b53343d51101154c3e5414025adcefdb53e1cda58b3d898c8c","6a57a81365be52947f544edd399b0f914f95bf229258ecf6f98c573abf5f608b","41a5f23f9818decc69d093b28304169d5cfdcea6ef2f00121ee4c601b4a9b402","1de2ecc502fce9d6aa521320b76b22bdbd22a615b6fed6fe0e327fca99b47d48","30ca089ceab52f168e4a30d9c2fe1835743e5c4cbd9ec40b0b9e67b13b9b9dc5","1442a75050bad91356b11dcea6dfb877154d1f2e00f863a9b17ba5e903659503","0f23088c92513961d58d13465e080f04eb981542b1d6b3f3a35dfad5be3581b2","46d584fa2bfaf61ecd2772305e83ee6b54c4f4f21f8bbb484a8ff1221034b13e","5c32f34deba448ea3f1b527691b9b875ca732d91f711a7d825ee3db3b9965f52","702490c3a0069fdb3dbd6499328cda1d02758473974a26efa55af84f2e9e2f5d","e76069367e6b1580fe09b6c14dc0e477df342f2758cb5570ae8cd06caa6188cf","1cd2790e4006f49b7f93a8febe6ada2996fbd01dd91d976863ad2f0c2c5e288f","ff972eb5d9620c106411b4078fbdd3224b592a87412ffc0fe6db6efe22b4623b","e76069367e6b1580fe09b6c14dc0e477df342f2758cb5570ae8cd06caa6188cf","270dbb9c61ca6740b4a3fe13890fbcf613197cd5bc28501e3847528d7a5c6d06","7ea403deedad4e7bd2058d3204c37a0379aacd60bee471b75f8f2287d716d54f","f7e09742d2615dd1d124704163f36a270f29313b5df2b7be8f9ff437d5ba2669","3323e4131dd27278b81d7a076e03791b8914e3966c248409a8bbbb1c03293c50","def962212233f8ae4bfbe04ee69989dfc19faa7bd27e8e1240356253ed246a1d","28630109e0d10d0665cff21f1d37115480ad9d76afe74932250cbc9191ea4755","8e07e510136d912892df588fd9d79f1f26415e879f4b2893f334cd793a9c8577","6f82bfed1baafbc20cb7226adfa22a5ec61fc0332e0e669c28bb5e81b4fc248c","f7b0ac11a96661e26bd68733af69efe70d727333c6d8db0b942fc277f0b6b8b8","714b0982b23aab486508e45fc04af9e88932dc8cba3f7647aac32fd3ec21d41c","0dfc2ded3356c698a8f5bfa3ce7ca868d1edbb008b60c13be6fd5d86711ec5c7","24ab93d818baf2fe7ded2cd412bd297cfe7a205d12e95c1a274d3c6a9ffb87df","a0c07332b55b8251749b40a6637db1a06054efe609ba54027b7fa31627d4647e","3f0a0d9d16d7eab231b3ce8797c3294ba03112fb0c99c1dfac9c3b05dcfbb103","b4a9af945c831767b62a09d1b166d63fe5f54d2ec32d7be9682c4c989a5614a4","92428ea53b5f07627f5c1c065e2cc1d17538af7ff317cefc78d7b2372fb2eade","270057e134bf77d0cb5318a2ebde01d97edb1d3ab59e5649ba010f5e3ba7b9dc","6645a016cbd9d1565344bef31b13475be48f47d226189f7fc695516993c8b0b1","a837d0e7f8f041519ce2297f280391bd9558e5ef34e0059a4868fafdb9098506","c397491eb2d833ac87d94ae26b4f65cff931d483e6d79725ee12c2e4f2c22231","9a4558eb853e64b4fe11f2decb6aef6444bdca68a8bd2dab62e30b8876ceed80","0d291e21250c05468e257ad28e21bd399c36dcb4ca2be86ed7e0e82d93407c14","45f937f94d62f5d1ae3f6b172748d9430f824225bc31acf179e6fddd4a0f442a","fdcd5b7f1245f9a9c8aefac0ee3041876e4229af5a5453a8cd9e7adb12356ee0",{"version":"cae5e515a5265c07074b537a4a0cbd9723a7ed5c60b48d9f7916cabf55311abf","signature":"dc5a8fd74ad6738ab43dcbc8fe57516decb10f1842a1dacd2df263b78bc20427"},{"version":"bb315cbcc08625990094e2f0905f19bab9b2f1936856a2517d1760966b4eeeb9","signature":"ec96c545ae15f6b99c4c53b126bdc1701d0e072e785b3610bbb5662862024a82"},"1bd7bdb278a946e7388b8b2bcec7a5b87aa85132662a06b7eda1030a44232a9e","3846d0dcf468a1d1a07e6d00eaa37ec542956fb5fe0357590a6407af20d2ff90","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"49026435d21e3d7559d723af3ae48f73ec28f9cba651b41bd2ac991012836122","affectsGlobalScope":true},"39b1a50d543770780b0409a4caacb87f3ff1d510aedfeb7dc06ed44188256f89",{"version":"dafc58ee47fa25dbc68b27c638bd6153dd7659021c164f64b7760757e9f5a6ab","affectsGlobalScope":true},"16b872cf5432818bdbf405428b4a1d77bb2a7ab908e8bd6609f9a541cea92f81","304504c854c47a55ab4a89111a27a2daf8a3614740bd787cc1f2c51e5574239c",{"version":"95f9129a37dcace36e17b061a8484952586ecfe928c9c8ce526de1a2f4aaefa7","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","ed3db4eb7ad0466e19df82d9ee5c057d78df954283004783932d75e8fa4058c5","278fe296432b9840660d6e0d1778b4b4897a591d4b910a5f7ac8db0b476a8af7","1c611ff373ce1958aafc40b328048ac2540ba5c7f373cf2897e0d9aeaabe90a0","fd7a7fc2bb1f38ba0cded7bd8088c99033365859e03ba974f7de072e9d989fde","6cf42fc3765241c59339047a45855c506a2f94ee5e734bbded94ddcafc66e4c5","c6cf9428f45f3d78b07df7d7aab1569994c177d36549e3a962f952d89f026bc4",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"cce14dcba2c2cb1059977ad65cf9caef890118cb20e35c4cf420bf1c83f27c1a","affectsGlobalScope":true},"5a2f6de23113659e83dc8c5edb9f3c5bcd6136f74dcc1785b3df4eef1271e1f3","021ca24be8eb8c46f99b4e03ebf872931f590c9b07b88d715c68bd30495b6c44","fb862b9a2e78754cf44b770ba6f194987d63c8d4cd103c6c05534faa4120ae98","91479d2a9bc09df0091b5e24af57cb462cd223e56498d16e9efdaebd587fa81d","e3baa0c5780c2c805ec33a999722a2f740b572eb3746fd0a5f93a0a5c3dbf7f6","c6f77efcc19f51c8759779b6b6ee0d88046c15c15dadac8ffed729a6620daf39",{"version":"089867511b37a534ae71f3d9bc97acc0b925b7f5dbec113f98c4b49224c694eb","affectsGlobalScope":true},"e0cc19f50900706e7aae038565e825f2014ac5325b99b3daabf8ecd5d3d09f1a","f5ce35485541e817c2d4105d3eb78e3e538bbb009515ed014694363fa3e94ceb","323506ce173f7f865f42f493885ee3dacd18db6359ea1141d57676d3781ce10c",{"version":"bd88055918cf8bf30ad7c9269177f7ebeafd4c5f0d28919edccd1c1d24f7e73c","affectsGlobalScope":true},{"version":"645baafeaed6855c8796fcbae4e813021c65f36eaa3f6178535457a2366f6849","affectsGlobalScope":true},"ea3ab3727cd6c222d94003ecafa30e8550c61eadcdabbf59514aee76e86211a5","d3cdd41693c5ed6bec4f1a1c399d9501372b14bd341bc46eedacf2854c5df5a7","2de7a21c92226fb8abbeed7a0a9bd8aa6d37e4c68a8c7ff7938c644267e9fcc1","6d6070c5c81ba0bfe58988c69e3ba3149fc86421fd383f253aeb071cbf29cd41","48dab0d6e633b8052e7eaa0efb0bb3d58a733777b248765eafcb0b0349439834","d3e22aaa84d935196f465fff6645f88bb41352736c3130285eea0f2489c5f183","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","5195aeb0de306d1c5ca8033457fbcab5987657112fa6d4971cfeb7644493a369","c5dbf0003bc9f0f643e54cd00a3868d1afe85497fecb56be6f2373dc85102924",{"version":"6fa61015444e843013443f2e5ca6bee5f033cbf361f953fd932abb0c029b73b2","affectsGlobalScope":true},{"version":"300f8e9de0b0c3482be3e749462b6ebc3dab8a316801f1da0def94aed0cd2018","affectsGlobalScope":true},"4e228e78c1e9b0a75c70588d59288f63a6258e8b1fe4a67b0c53fe03461421d9","3df5b34f3449733bc4831b8d670f958a045e7a3f5d7b0e21991ef95408dbec13","76a89af04f2ba1807309320dab5169c0d1243b80738b4a2005989e40a136733e","c045b664abf3fc2a4750fa96117ab2735e4ed45ddd571b2a6a91b9917e231a02",{"version":"068b8ee5c2cd90d7a50f2efadbbe353cb10196a41189a48bf4b2a867363012b4","affectsGlobalScope":true},{"version":"0c312a7c5dec6c616f754d3a4b16318ce8d1cb912dfb3dfa0e808f45e66cbb21","affectsGlobalScope":true},"6f44a190351ab5e1811abebe007cf60518044772ccc08244f9f241706afa767f","fecdf44bec4ee9c5188e5f2f58c292c9689c02520900dceaaa6e76594de6da90","cf45d0510b661f1da461479851ff902f188edb111777c37055eff12fa986a23a",{"version":"6a4a80787c57c10b3ea8314c80d9cc6e1deb99d20adca16106a337825f582420","affectsGlobalScope":true},"f2b9440f98d6f94c8105883a2b65aee2fce0248f71f41beafd0a80636f3a565d",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447"],"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":[[69],[69,79,80],[70,71,72,73,74,75,76,77,78,79,80,81,82,83,84],[69,76],[69,76,79],[53,69],[57,58],[44,52,56],[44,52,55,56,57],[60,61],[44,53,55,59,60],[53,54,56,59],[44,55],[43,55,56,59,62,63],[44,45],[44,47,48],[44,59],[44,47],[44,47,49],[44,45,46],[45,46,47,48,49,50,51],[44],[47,49],[44,52,64,68],[65,66,67],[90],[126],[127,132,160],[128,139,140,147,157,168],[128,129,139,147],[130,169],[131,132,140,148],[132,157,165],[133,135,139,147],[126,134],[135,136],[139],[137,139],[126,139],[139,140,141,157,168],[139,140,141,154,157,160],[124,173],[135,139,142,147,157,168],[139,140,142,143,147,157,165,168],[142,144,157,165,168],[90,91,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,174,175],[139,145],[146,168,173],[135,139,147,157],[148],[149],[126,150],[151,167,173],[152],[153],[139,154,155],[154,156,169,171],[127,139,157,158,159,160],[127,157,159],[157,158],[160],[161],[126,157],[139,163,164],[163,164],[132,147,157,165],[166],[147,167],[127,142,153,168],[132,169],[157,170],[146,171],[172],[127,132,139,141,150,157,168,171,173],[157,174],[101,105,168],[101,157,168],[96],[98,101,165,168],[147,165],[176],[96,176],[98,101,147,168],[93,94,97,100,127,139,157,168],[93,99],[97,101,127,160,168,176],[127,176],[117,127,176],[95,96,176],[101],[95,96,97,98,99,100,101,102,103,105,106,107,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123],[101,108,109],[99,101,109,110],[100],[93,96,101],[101,105,109,110],[105],[99,101,104,168],[93,98,99,101,105,108],[127,157],[96,101,117,127,173,176],[69,85,86,87],[87,88],[69,85],[87,177,178]],"referencedMap":[[73,1],[81,1],[79,1],[82,2],[72,1],[71,1],[70,1],[76,1],[83,1],[85,3],[77,4],[80,5],[84,1],[78,1],[74,6],[75,6],[59,7],[57,8],[58,9],[62,10],[60,6],[61,11],[55,12],[56,13],[64,14],[63,15],[49,16],[45,17],[46,18],[50,19],[47,20],[52,21],[48,22],[51,23],[69,24],[65,22],[66,22],[67,22],[68,25],[90,26],[91,26],[126,27],[127,28],[128,29],[129,30],[130,31],[131,32],[132,33],[133,34],[134,35],[135,36],[136,36],[138,37],[137,38],[139,39],[140,40],[141,41],[125,42],[142,43],[143,44],[144,45],[176,46],[145,47],[146,48],[147,49],[148,50],[149,51],[150,52],[151,53],[152,54],[153,55],[154,56],[155,56],[156,57],[157,58],[159,59],[158,60],[160,61],[161,62],[162,63],[163,64],[164,65],[165,66],[166,67],[167,68],[168,69],[169,70],[170,71],[171,72],[172,73],[173,74],[174,75],[108,76],[115,77],[107,76],[122,78],[99,79],[98,80],[121,81],[116,82],[119,83],[101,84],[100,85],[96,86],[95,87],[118,88],[97,89],[102,90],[106,90],[124,91],[123,90],[110,92],[111,93],[113,94],[109,95],[112,96],[117,81],[104,97],[105,98],[114,99],[94,100],[120,101],[88,102],[89,103],[87,104]],"exportedModulesMap":[[73,1],[81,1],[79,1],[82,2],[72,1],[71,1],[70,1],[76,1],[83,1],[85,3],[77,4],[80,5],[84,1],[78,1],[74,6],[75,6],[59,7],[57,8],[58,9],[62,10],[60,6],[61,11],[55,12],[56,13],[64,14],[63,15],[49,16],[45,17],[46,18],[50,19],[47,20],[52,21],[48,22],[51,23],[69,24],[65,22],[66,22],[67,22],[68,25],[90,26],[91,26],[126,27],[127,28],[128,29],[129,30],[130,31],[131,32],[132,33],[133,34],[134,35],[135,36],[136,36],[138,37],[137,38],[139,39],[140,40],[141,41],[125,42],[142,43],[143,44],[144,45],[176,46],[145,47],[146,48],[147,49],[148,50],[149,51],[150,52],[151,53],[152,54],[153,55],[154,56],[155,56],[156,57],[157,58],[159,59],[158,60],[160,61],[161,62],[162,63],[163,64],[164,65],[165,66],[166,67],[167,68],[168,69],[169,70],[170,71],[171,72],[172,73],[173,74],[174,75],[108,76],[115,77],[107,76],[122,78],[99,79],[98,80],[121,81],[116,82],[119,83],[101,84],[100,85],[96,86],[95,87],[118,88],[97,89],[102,90],[106,90],[124,91],[123,90],[110,92],[111,93],[113,94],[109,95],[112,96],[117,81],[104,97],[105,98],[114,99],[94,100],[120,101],[88,105],[89,103],[87,104]],"semanticDiagnosticsPerFile":[73,81,86,79,82,72,71,70,76,83,85,77,80,84,78,74,75,59,57,58,62,60,61,55,56,64,63,49,45,46,50,47,52,48,51,69,44,65,66,67,68,43,90,91,126,127,128,129,130,131,132,133,134,135,136,138,137,139,140,141,125,175,142,143,144,176,145,146,147,148,149,150,151,152,153,154,155,156,157,159,158,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,92,53,54,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,42,108,115,107,122,99,98,121,116,119,101,100,96,95,118,97,102,103,106,93,124,123,110,111,113,109,112,117,104,105,114,94,120,88,89,87]},"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/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/@holochain/serialization/dist/index.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/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/types.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/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/@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/types.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","../../../node_modules/@holochain-open-dev/utils/dist/clean-node-decoding.d.ts","../src/types.ts","../src/client.ts","../src/index.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/api.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/interceptors.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/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/index.d.ts","../../../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../../node_modules/@holochain/client/node_modules/emittery/index.d.ts","../../../node_modules/@holochain/client/node_modules/isomorphic-ws/index.d.ts","../../../node_modules/@holochain/client/node_modules/@holochain/serialization/dist/index.d.ts","../../../node_modules/@types/node/ts5.6/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},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"3c6d7f6e11e03fbe2edeb9dd1a4640dd2413968ec11083b073ddb567b5c31245","4fa99e1a528208b43260c1da93fe732becff9a156ec5de29664918cfff97fc10","d974d48347a016a29b3b1b72bccb49e319d8aa4e42e5e298fdad1bf2c18f29f7","69123fe1546d0ec4cdb60d7fac7098f00d1b0252c25ebff34f886a640b6a204e","2f3ed5b2e38623fa774a524d681228bd482e80834f7fbbca65faf96538e4c97c","19697285b780119b961fbfb54310e44a965efdf516db3fd73fe23673243e2370","f574d1ea87b5d7b53343d51101154c3e5414025adcefdb53e1cda58b3d898c8c","bd20b3571f7a6dd92f342e8745ed27e274326516a60f89d0d74dd795e4c43d8c","41a5f23f9818decc69d093b28304169d5cfdcea6ef2f00121ee4c601b4a9b402","1de2ecc502fce9d6aa521320b76b22bdbd22a615b6fed6fe0e327fca99b47d48","30ca089ceab52f168e4a30d9c2fe1835743e5c4cbd9ec40b0b9e67b13b9b9dc5","1442a75050bad91356b11dcea6dfb877154d1f2e00f863a9b17ba5e903659503","e539bb55005335ea157f250b9dfc750cc22acf8fbc07011784695be58ba23bd3","46d584fa2bfaf61ecd2772305e83ee6b54c4f4f21f8bbb484a8ff1221034b13e","9ab5d55c44d5e40a6738c197ed5fc5ec10c0aa75148614c10efe49fcfe683e90","7fb45672325d772cb818c5bfdaa10af5eb1bf07d1580e14afb3c46e21ea27d75","e76069367e6b1580fe09b6c14dc0e477df342f2758cb5570ae8cd06caa6188cf","50a6174f18f4775594be4380dd316bf6c0bb3ae441e59b8c06c98447a27ffe24","c59ad5898e500302e0f4f0ad1e718da2cf53cce71cdf28474f94963d5a1a99ae","e76069367e6b1580fe09b6c14dc0e477df342f2758cb5570ae8cd06caa6188cf","270dbb9c61ca6740b4a3fe13890fbcf613197cd5bc28501e3847528d7a5c6d06","7ea403deedad4e7bd2058d3204c37a0379aacd60bee471b75f8f2287d716d54f","f7e09742d2615dd1d124704163f36a270f29313b5df2b7be8f9ff437d5ba2669","3323e4131dd27278b81d7a076e03791b8914e3966c248409a8bbbb1c03293c50","f804ef8f5236549cf171af865554652ffc4d27ee1decd045187b414b103e094c","877ee87eec44163bcc52ecc66d6db0125c7b1f12e492e30c7de07a635577aac3","7cc04486e26c9885857f84cd13860c13e8260f5b831803801075b5fe9245721e","8e07e510136d912892df588fd9d79f1f26415e879f4b2893f334cd793a9c8577","4fa99e1a528208b43260c1da93fe732becff9a156ec5de29664918cfff97fc10","d974d48347a016a29b3b1b72bccb49e319d8aa4e42e5e298fdad1bf2c18f29f7","69123fe1546d0ec4cdb60d7fac7098f00d1b0252c25ebff34f886a640b6a204e","2f3ed5b2e38623fa774a524d681228bd482e80834f7fbbca65faf96538e4c97c","19697285b780119b961fbfb54310e44a965efdf516db3fd73fe23673243e2370","f574d1ea87b5d7b53343d51101154c3e5414025adcefdb53e1cda58b3d898c8c","edc07d574fde5ff68b0a639f3f6f1f2a9debaffd4ab335dc238067181d5c4f11","41a5f23f9818decc69d093b28304169d5cfdcea6ef2f00121ee4c601b4a9b402","1de2ecc502fce9d6aa521320b76b22bdbd22a615b6fed6fe0e327fca99b47d48","e539bb55005335ea157f250b9dfc750cc22acf8fbc07011784695be58ba23bd3","46d584fa2bfaf61ecd2772305e83ee6b54c4f4f21f8bbb484a8ff1221034b13e","9ab5d55c44d5e40a6738c197ed5fc5ec10c0aa75148614c10efe49fcfe683e90","7fb45672325d772cb818c5bfdaa10af5eb1bf07d1580e14afb3c46e21ea27d75","e76069367e6b1580fe09b6c14dc0e477df342f2758cb5570ae8cd06caa6188cf","50a6174f18f4775594be4380dd316bf6c0bb3ae441e59b8c06c98447a27ffe24","c59ad5898e500302e0f4f0ad1e718da2cf53cce71cdf28474f94963d5a1a99ae","e76069367e6b1580fe09b6c14dc0e477df342f2758cb5570ae8cd06caa6188cf","270dbb9c61ca6740b4a3fe13890fbcf613197cd5bc28501e3847528d7a5c6d06","7ea403deedad4e7bd2058d3204c37a0379aacd60bee471b75f8f2287d716d54f","f7e09742d2615dd1d124704163f36a270f29313b5df2b7be8f9ff437d5ba2669","3323e4131dd27278b81d7a076e03791b8914e3966c248409a8bbbb1c03293c50","f804ef8f5236549cf171af865554652ffc4d27ee1decd045187b414b103e094c","877ee87eec44163bcc52ecc66d6db0125c7b1f12e492e30c7de07a635577aac3","7cc04486e26c9885857f84cd13860c13e8260f5b831803801075b5fe9245721e","8e07e510136d912892df588fd9d79f1f26415e879f4b2893f334cd793a9c8577","6f82bfed1baafbc20cb7226adfa22a5ec61fc0332e0e669c28bb5e81b4fc248c","f7b0ac11a96661e26bd68733af69efe70d727333c6d8db0b942fc277f0b6b8b8","714b0982b23aab486508e45fc04af9e88932dc8cba3f7647aac32fd3ec21d41c","0dfc2ded3356c698a8f5bfa3ce7ca868d1edbb008b60c13be6fd5d86711ec5c7","24ab93d818baf2fe7ded2cd412bd297cfe7a205d12e95c1a274d3c6a9ffb87df","30709845438ae566a9cb3257523c6fa7de290c39aac492812a14d60fb57eea3e","3f0a0d9d16d7eab231b3ce8797c3294ba03112fb0c99c1dfac9c3b05dcfbb103","b4a9af945c831767b62a09d1b166d63fe5f54d2ec32d7be9682c4c989a5614a4","92428ea53b5f07627f5c1c065e2cc1d17538af7ff317cefc78d7b2372fb2eade","270057e134bf77d0cb5318a2ebde01d97edb1d3ab59e5649ba010f5e3ba7b9dc","6645a016cbd9d1565344bef31b13475be48f47d226189f7fc695516993c8b0b1","a837d0e7f8f041519ce2297f280391bd9558e5ef34e0059a4868fafdb9098506","c397491eb2d833ac87d94ae26b4f65cff931d483e6d79725ee12c2e4f2c22231","9a4558eb853e64b4fe11f2decb6aef6444bdca68a8bd2dab62e30b8876ceed80","0d291e21250c05468e257ad28e21bd399c36dcb4ca2be86ed7e0e82d93407c14","45f937f94d62f5d1ae3f6b172748d9430f824225bc31acf179e6fddd4a0f442a","fdcd5b7f1245f9a9c8aefac0ee3041876e4229af5a5453a8cd9e7adb12356ee0",{"version":"cae5e515a5265c07074b537a4a0cbd9723a7ed5c60b48d9f7916cabf55311abf","signature":"dc5a8fd74ad6738ab43dcbc8fe57516decb10f1842a1dacd2df263b78bc20427"},{"version":"e1dec58713a92dbadfcbc0c3c2eddca945e9743db8ea1065c782ef15d59fc081","signature":"cf5068e18340db246e93085d0fdfdea35179690ed85b7764c518cf4e9d292cff"},"1bd7bdb278a946e7388b8b2bcec7a5b87aa85132662a06b7eda1030a44232a9e","2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"e7be367719c613d580d4b27fdf8fe64c9736f48217f4b322c0d63b2971460918","affectsGlobalScope":true},"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36",{"version":"dd78bfe9dfcadb2c4cd3a3a36df38fb3ef8ed2c601b57f6ad9a29e38a17ff39c","affectsGlobalScope":true},"62f1c00d3d246e0e3cf0224f91e122d560428ec1ccc36bb51d4574a84f1dbad0","53f0960fdcc53d097918adfd8861ffbe0db989c56ffc16c052197bf115da5ed6",{"version":"662163e5327f260b23ca0a1a1ad8a74078aabb587c904fcb5ef518986987eaff","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"f85c06e750743acf31f0cfd3be284a364d469761649e29547d0dd6be48875150","affectsGlobalScope":true},"b0c0d1d13be149f790a75b381b413490f98558649428bb916fd2d71a3f47a134","3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","0364f8bb461d6e84252412d4e5590feda4eb582f77d47f7a024a7a9ff105dfdc","5433f7f77cd1fd53f45bd82445a4e437b2f6a72a32070e907530a4fea56c30c8","d0ca5d7df114035258a9d01165be309371fcccf0cccd9d57b1453204686d1ed0",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"9a30b7fefd7f8abbca4828d481c61c18e40fe5ff107e113b1c1fcd2c8dcf2743","affectsGlobalScope":true},"173b6275a81ebdb283b180654890f46516c21199734fed01a773b1c168b8c45c","304f66274aa8119e8d65a49b1cff84cbf803def6afe1b2cc987386e9a9890e22","1b9adafe8a7fefaeaf9099a0e06f602903f6268438147b843a33a5233ac71745","98273274f2dbb79b0b2009b20f74eca4a7146a3447c912d580cd5d2d94a7ae30","c933f7ba4b201c98b14275fd11a14abb950178afd2074703250fe3654fc10cd2","2eaa31492906bc8525aff3c3ec2236e22d90b0dfeee77089f196cd0adf0b3e3b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"8f5814f29dbaf8bacd1764aebdf1c8a6eb86381f6a188ddbac0fcbaab855ce52","a63d03de72adfb91777784015bd3b4125abd2f5ef867fc5a13920b5649e8f52b","d20e003f3d518a7c1f749dbe27c6ab5e3be7b3c905a48361b04a9557de4a6900",{"version":"1d4d78c8b23c9ddaaaa49485e6adc2ec01086dfe5d8d4d36ca4cdc98d2f7e74a","affectsGlobalScope":true},{"version":"44fc16356b81c0463cc7d7b2b35dcf324d8144136f5bc5ce73ced86f2b3475b5","affectsGlobalScope":true},"575fb200043b11b464db8e42cc64379c5fd322b6d787638e005b5ee98a64486d","6de2f225d942562733e231a695534b30039bdf1875b377bb7255881f0df8ede8","56249fd3ef1f6b90888e606f4ea648c43978ef43a7263aafad64f8d83cd3b8aa","139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","7b166975fdbd3b37afb64707b98bca88e46577bbc6c59871f9383a7df2daacd1","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","81505c54d7cad0009352eaa21bd923ab7cdee7ec3405357a54d9a5da033a2084","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","2ee1645e0df9d84467cfe1d67b0ad3003c2f387de55874d565094464ee6f2927",{"version":"257ff9424de2bf36ba29f928e268cf6075fb7a0c2acd339c9ad7ac64653081d2","affectsGlobalScope":true},{"version":"9cf780e96b687e4bdfd1907ed26a688c18b89797490a00598fa8b8ab683335dd","affectsGlobalScope":true},"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","9ae88ce9f73446c24b2d2452e993b676da1b31fca5ceb7276e7f36279f693ed1","e49d7625faff2a7842e4e7b9b197f972633fca685afcf6b4403400c97d087c36","b82c38abc53922b1b3670c3af6f333c21b735722a8f156e7d357a2da7c53a0a0",{"version":"b423f53647708043299ded4daa68d95c967a2ac30aa1437adc4442129d7d0a6c","affectsGlobalScope":true},{"version":"7245af181218216bacb01fbdf51095617a51661f20d77178c69a377e16fb69ed","affectsGlobalScope":true},"4f0fc7b7f54422bd97cfaf558ddb4bca86893839367b746a8f86b60ac7619673","4cdd8b6b51599180a387cc7c1c50f49eca5ce06595d781638fd0216520d98246","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"8704423bf338bff381ebc951ed819935d0252d90cd6de7dffe5b0a5debb65d07","affectsGlobalScope":true},"7c6929fd7cbf38499b6a600b91c3b603d1d78395046dc3499b2b92d01418b94b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc"],"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":[[95],[95,105,106],[96,97,98,99,100,101,102,103,104,105,106,107,108,109,110],[95,102],[95,102,105],[53,95],[82,83],[71,79,81],[71,79,80,81,82],[85,86],[53,71,80,84,85],[53,54,81,84],[71,80],[43,80,81,84,87,88],[71,72],[71,74,75],[71,84],[71,74],[71,74,76],[71,72,73],[72,73,74,75,76,77,78],[71],[74,76],[71,79,89,94],[90,91,92,93],[116],[152],[153,158,187],[154,159,165,166,173,184,195],[154,155,165,173],[156,196],[157,158,166,174],[158,184,192],[159,161,165,173],[152,160],[161,162],[165],[163,165],[152,165],[165,166,167,184,195],[165,166,167,180,184,187],[150,153,200],[161,165,168,173,184,195],[165,166,168,169,173,184,192,195],[168,170,184,192,195],[116,117,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,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202],[165,171],[172,195,200],[161,165,173,184],[174],[175],[152,176],[173,174,177,194,200],[178],[179],[165,180,181],[180,182,196,198],[153,165,184,185,186,187],[153,184,186],[184,185],[187],[188],[184],[165,190,191],[190,191],[158,173,184,192],[193],[173,194],[153,168,179,195],[158,196],[184,197],[172,198],[199],[153,158,165,167,176,184,195,198,200],[184,201],[127,131,195],[127,184,195],[122],[124,127,192,195],[173,192],[203],[122,203],[124,127,173,195],[119,120,123,126,153,165,184,195],[119,125],[123,127,153,187,195,203],[153,203],[143,153,203],[121,122,203],[127],[121,122,123,124,125,126,127,128,129,131,132,133,134,135,136,137,138,139,140,141,142,144,145,146,147,148,149],[127,134,135],[125,127,135,136],[126],[119,122,127],[127,131,135,136],[131],[125,127,130,195],[119,124,125,127,131,134],[153,184],[122,127,143,153,200,203],[57,58],[44,52,56],[44,52,55,56,57],[60,61],[53,70],[44,53,55,59,60],[53,54,56,59],[44,55],[43,55,56,59,62,63],[44,45],[44,47,48],[44,59],[44,47],[44,47,49],[44,45,46],[45,46,47,48,49,50,51],[44],[47,49],[44,52,64,69],[65,66,67,68],[70,111,112,113],[113,114],[70,111],[95,153,204],[153,204],[95,105,106,153,204],[96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,153,204],[95,102,153,204],[95,102,105,153,204],[95,153,204,205],[82,83,153,204],[71,79,81,153,204],[71,79,80,81,82,153,204],[85,86,153,204],[71,80,84,85,153,204,205],[81,84,153,204,205,206],[71,80,153,204],[80,81,84,87,88,153,204,207],[71,72,153,204],[71,74,75,153,204],[71,84,153,204],[71,74,153,204],[71,72,73,153,204],[72,73,74,75,76,77,78,153,204],[71,153,204],[74,76,153,204],[71,79,89,94,153,204],[90,91,92,93,153,204],[116,153,204],[153,157,158,166,174,204],[153,165,204],[153,184,186,204],[127,131,153,195,204],[127,153,184,195,204],[122,153,204],[153,173,192,204],[153,204,208],[122,153,204,208],[127,153,204],[127,134,135,153,204],[125,127,135,136,153,204],[126,153,204],[127,131,135,136,153,204],[131,153,204],[70,111,113]],"referencedMap":[[99,1],[107,1],[105,1],[108,2],[98,1],[97,1],[96,1],[102,1],[109,1],[111,3],[103,4],[106,5],[110,1],[104,1],[100,6],[101,6],[84,7],[82,8],[83,9],[87,10],[85,6],[86,11],[80,12],[81,13],[89,14],[88,15],[76,16],[72,17],[73,18],[77,19],[74,20],[79,21],[75,22],[78,23],[95,24],[90,22],[93,22],[91,22],[92,22],[94,25],[116,26],[117,26],[152,27],[153,28],[154,29],[155,30],[156,31],[157,32],[158,33],[159,34],[160,35],[161,36],[162,36],[164,37],[163,38],[165,39],[166,40],[167,41],[151,42],[168,43],[169,44],[170,45],[203,46],[171,47],[172,48],[173,49],[174,50],[175,51],[176,52],[177,53],[178,54],[179,55],[180,56],[181,56],[182,57],[184,58],[186,59],[185,60],[187,61],[188,62],[189,63],[190,64],[191,65],[192,66],[193,67],[194,68],[195,69],[196,70],[197,71],[198,72],[199,73],[200,74],[201,75],[134,76],[141,77],[133,76],[148,78],[125,79],[124,80],[147,81],[142,82],[145,83],[127,84],[126,85],[122,86],[121,87],[144,88],[123,89],[128,90],[132,90],[150,91],[149,90],[136,92],[137,93],[139,94],[135,95],[138,96],[143,81],[130,97],[131,98],[140,99],[120,100],[146,101],[59,102],[57,103],[58,104],[62,105],[60,106],[61,107],[55,108],[56,109],[64,110],[63,111],[49,112],[45,113],[46,114],[50,115],[47,116],[52,117],[48,118],[51,119],[70,120],[65,118],[68,118],[66,118],[67,118],[69,121],[114,122],[115,123],[113,124]],"exportedModulesMap":[[99,125],[107,125],[112,126],[105,125],[108,127],[98,125],[97,125],[96,125],[102,125],[109,125],[111,128],[103,129],[106,130],[110,125],[104,125],[100,131],[101,131],[84,132],[82,133],[83,134],[87,135],[85,131],[86,136],[80,137],[81,138],[89,139],[88,140],[76,141],[72,142],[73,143],[77,19],[74,144],[79,145],[75,146],[78,147],[95,148],[71,126],[90,146],[93,146],[91,146],[92,146],[94,149],[116,26],[117,150],[152,27],[153,28],[154,29],[155,30],[156,31],[157,151],[158,33],[159,34],[160,35],[161,36],[162,36],[164,152],[163,38],[165,39],[166,40],[167,41],[151,42],[168,43],[169,44],[170,45],[203,46],[171,47],[172,48],[173,49],[174,50],[175,51],[176,52],[177,53],[178,54],[179,55],[180,56],[181,56],[182,57],[184,58],[186,153],[185,60],[187,61],[188,62],[189,63],[190,64],[191,65],[192,66],[193,67],[194,68],[195,69],[196,70],[197,71],[198,72],[199,73],[200,74],[201,75],[118,126],[34,126],[7,126],[35,126],[40,126],[41,126],[36,126],[37,126],[38,126],[39,126],[134,154],[141,155],[133,76],[148,156],[125,79],[124,157],[147,158],[142,159],[145,83],[127,84],[126,85],[122,86],[121,158],[144,88],[123,89],[128,160],[129,126],[132,90],[119,126],[150,91],[149,90],[136,161],[137,162],[139,163],[135,95],[138,164],[143,81],[130,165],[131,98],[140,99],[120,100],[146,101],[59,102],[57,103],[58,104],[62,105],[60,106],[61,107],[55,108],[56,109],[64,110],[63,111],[49,112],[45,113],[46,114],[50,115],[47,116],[52,117],[48,118],[51,119],[70,120],[65,118],[68,118],[66,118],[67,118],[69,121],[114,166],[115,123],[113,124]],"semanticDiagnosticsPerFile":[99,107,112,105,108,98,97,96,102,109,111,103,106,110,104,100,101,84,82,83,87,85,86,80,81,89,88,76,72,73,77,74,79,75,78,95,71,90,93,91,92,94,43,116,117,152,153,154,155,156,157,158,159,160,161,162,164,163,165,166,167,151,202,168,169,170,203,171,172,173,174,175,176,177,178,179,180,181,182,183,184,186,185,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,118,53,54,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,42,134,141,133,148,125,124,147,142,145,127,126,122,121,144,123,128,129,132,119,150,149,136,137,139,135,138,143,130,131,140,120,146,59,57,58,62,60,61,55,56,64,63,49,45,46,50,47,52,48,51,70,44,65,68,66,67,69,114,115,113]},"version":"4.9.5"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@holochain-syn/client",
3
- "version": "0.400.0-dev.0",
3
+ "version": "0.400.0-dev.1",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.js",
6
6
  "type": "module",
@@ -16,8 +16,8 @@
16
16
  "build:watch": "tsc -w --preserveWatchOutput"
17
17
  },
18
18
  "dependencies": {
19
- "@holochain/client": "^0.18.0-dev.0",
20
- "@holochain-open-dev/utils": "^0.400.0-dev.0",
19
+ "@holochain/client": "^0.18.0",
20
+ "@holochain-open-dev/utils": "^0.400.0-rc.0",
21
21
  "@msgpack/msgpack": "^2.7.0",
22
22
  "automerge": "^1.0.1-preview.7"
23
23
  },
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"}