@holochain-syn/client 0.400.0-rc.5 → 0.400.0-rc.6

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,11 +28,4 @@ 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;
38
31
  }
package/dist/client.js CHANGED
@@ -1,5 +1,5 @@
1
+ import { encodeHashToBase64, } from '@holochain/client';
1
2
  import { EntryRecord, ZomeClient } from '@holochain-open-dev/utils';
2
- import { cleanNodeDecoding } from '@holochain-open-dev/utils/dist/clean-node-decoding.js';
3
3
  export class SynClient extends ZomeClient {
4
4
  constructor(client, roleName, zomeName = 'syn') {
5
5
  super(client, roleName, zomeName);
@@ -46,8 +46,8 @@ export class SynClient extends ZomeClient {
46
46
  // TODO: better check?
47
47
  if (signal.type === 'EntryCreated' &&
48
48
  signal.app_entry.type === 'Commit' &&
49
- cleanNodeDecoding(commit.document_hash).toString() ===
50
- cleanNodeDecoding(signal.app_entry.document_hash).toString()) {
49
+ encodeHashToBase64(commit.document_hash) ===
50
+ encodeHashToBase64(signal.app_entry.document_hash)) {
51
51
  unsubs();
52
52
  this.getCommit(signal.action.hashed.hash)
53
53
  .then(r => {
@@ -114,149 +114,5 @@ 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();
261
117
  }
262
118
  //# 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/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"}
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/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-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/node_modules/@holochain/serialization/dist/index.d.ts","../../../node_modules/@types/node/index.d.ts","../node_modules/@holochain/client/lib/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},"3c6d7f6e11e03fbe2edeb9dd1a4640dd2413968ec11083b073ddb567b5c31245","4fa99e1a528208b43260c1da93fe732becff9a156ec5de29664918cfff97fc10","d974d48347a016a29b3b1b72bccb49e319d8aa4e42e5e298fdad1bf2c18f29f7","69123fe1546d0ec4cdb60d7fac7098f00d1b0252c25ebff34f886a640b6a204e","2f3ed5b2e38623fa774a524d681228bd482e80834f7fbbca65faf96538e4c97c","19697285b780119b961fbfb54310e44a965efdf516db3fd73fe23673243e2370","f574d1ea87b5d7b53343d51101154c3e5414025adcefdb53e1cda58b3d898c8c","bd20b3571f7a6dd92f342e8745ed27e274326516a60f89d0d74dd795e4c43d8c","41a5f23f9818decc69d093b28304169d5cfdcea6ef2f00121ee4c601b4a9b402","1de2ecc502fce9d6aa521320b76b22bdbd22a615b6fed6fe0e327fca99b47d48","776fe2a059b56d31790350701ac07c3c4df26c3e14e5f4f8f1d9c59b143933c5","1442a75050bad91356b11dcea6dfb877154d1f2e00f863a9b17ba5e903659503","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",{"version":"cae5e515a5265c07074b537a4a0cbd9723a7ed5c60b48d9f7916cabf55311abf","signature":"dc5a8fd74ad6738ab43dcbc8fe57516decb10f1842a1dacd2df263b78bc20427"},{"version":"6a6ffc08319ac2f9c3cc86b9267292f23d136b5ddc0ed387db2921c048669efa","signature":"ec96c545ae15f6b99c4c53b126bdc1701d0e072e785b3610bbb5662862024a82"},"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":[[69,94,137],[69,79,80,94,137],[70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,94,137],[69,76,94,137],[69,76,79,94,137],[52,69,94,137],[56,57,94,137],[43,51,55,94,137],[43,51,54,55,56,94,137],[59,60,94,137],[43,52,54,58,59,94,137],[52,53,55,58,94,137],[43,54,94,137],[42,54,55,58,61,62,94,137],[43,44,94,137],[43,46,47,94,137],[43,58,94,137],[43,46,94,137],[43,46,48,94,137],[43,44,45,94,137],[44,45,46,47,48,49,50,94,137],[43,94,137],[46,48,94,137],[43,51,63,68,94,137],[94,137],[64,65,66,67,94,137],[94,134,137],[94,136,137],[94,137,142,171],[94,137,138,143,149,150,157,168,179],[94,137,138,139,149,157],[89,90,91,94,137],[94,137,140,180],[94,137,141,142,150,158],[94,137,142,168,176],[94,137,143,145,149,157],[94,136,137,144],[94,137,145,146],[94,137,149],[94,137,147,149],[94,136,137,149],[94,137,149,150,151,168,179],[94,137,149,150,151,164,168,171],[94,132,137,184],[94,137,145,149,152,157,168,179],[94,137,149,150,152,153,157,168,176,179],[94,137,152,154,168,176,179],[94,137,149,155],[94,137,156,179,184],[94,137,145,149,157,168],[94,137,158],[94,137,159],[94,136,137,160],[94,134,135,136,137,138,139,140,141,142,143,144,145,146,147,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,185],[94,137,162],[94,137,163],[94,137,149,164,165],[94,137,164,166,180,182],[94,137,149,168,169,171],[94,137,170,171],[94,137,168,169],[94,137,171],[94,137,172],[94,134,137,168],[94,137,149,174,175],[94,137,174,175],[94,137,142,157,168,176],[94,137,177],[137],[92,93,94,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,185],[94,137,157,178],[94,137,152,163,179],[94,137,142,180],[94,137,168,181],[94,137,156,182],[94,137,183],[94,137,142,149,151,160,168,179,182,184],[94,137,168,185],[94,104,108,137,179],[94,104,137,168,179],[94,99,137],[94,101,104,137,176,179],[94,137,157,176],[94,137,186],[94,99,137,186],[94,101,104,137,157,179],[94,96,97,100,103,137,149,168,179],[94,104,111,137],[94,96,102,137],[94,104,125,126,137],[94,100,104,137,171,179,186],[94,125,137,186],[94,98,99,137,186],[94,104,137],[94,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,126,127,128,129,130,131,137],[94,104,119,137],[94,104,111,112,137],[94,102,104,112,113,137],[94,103,137],[94,96,99,104,137],[94,104,108,112,113,137],[94,108,137],[94,102,104,107,137,179],[94,96,101,104,111,137],[94,137,168],[94,99,104,125,137,184,186],[69,85,86,94,137],[86,87,94,137],[69,85,94,137],[69],[69,79,80],[70,71,72,73,74,75,76,77,78,79,80,81,82,83,84],[69,76],[69,76,79],[52,69],[43,51,55],[43,51,54,55,56],[43,52,54,58,59],[52,53,55,58],[54,55,58,61,62,94,137,187],[43,46],[43],[64,65,66,67],[136],[136,144],[183],[125,137,188],[188],[85,86,189],[86,87],[85,189]],"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],[58,7],[56,8],[57,9],[61,10],[59,6],[60,11],[54,12],[55,13],[63,14],[62,15],[48,16],[44,17],[45,18],[49,19],[46,20],[51,21],[47,22],[50,23],[69,24],[43,25],[64,22],[67,22],[65,22],[66,22],[68,26],[42,25],[134,27],[135,27],[136,28],[137,29],[138,30],[139,31],[89,25],[92,32],[90,25],[91,25],[140,33],[141,34],[142,35],[143,36],[144,37],[145,38],[146,38],[148,39],[147,40],[149,41],[150,42],[151,43],[133,44],[152,45],[153,46],[154,47],[155,48],[156,49],[157,50],[158,51],[159,52],[160,53],[161,54],[162,55],[163,56],[164,57],[165,57],[166,58],[167,25],[168,59],[170,60],[169,61],[171,62],[172,63],[173,64],[174,65],[175,66],[176,67],[177,68],[94,69],[93,25],[186,70],[178,71],[179,72],[180,73],[181,74],[182,75],[183,76],[184,77],[185,78],[95,25],[52,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],[111,79],[121,80],[110,79],[131,81],[102,82],[101,83],[130,84],[124,85],[129,86],[104,87],[118,88],[103,89],[127,90],[99,91],[98,84],[128,92],[100,93],[105,94],[106,25],[109,94],[96,25],[132,95],[122,96],[113,97],[114,98],[116,99],[112,100],[115,101],[125,84],[107,102],[108,103],[117,104],[97,105],[120,96],[119,94],[123,25],[126,106],[87,107],[88,108],[86,109]],"exportedModulesMap":[[73,110],[81,110],[79,110],[82,111],[72,110],[71,110],[70,110],[76,110],[83,110],[85,112],[77,113],[80,114],[84,110],[78,110],[74,115],[75,115],[58,7],[56,116],[57,117],[61,10],[59,115],[60,118],[54,119],[55,13],[63,120],[62,15],[48,16],[44,17],[45,121],[49,19],[46,20],[51,21],[47,22],[50,23],[69,24],[43,25],[64,22],[67,122],[65,22],[66,22],[68,123],[134,27],[135,27],[136,124],[137,29],[138,30],[139,31],[89,25],[92,32],[90,25],[91,25],[140,33],[141,34],[142,35],[143,36],[144,125],[145,38],[146,38],[148,39],[147,40],[149,41],[150,42],[151,43],[133,44],[152,45],[153,46],[154,47],[155,48],[156,49],[157,50],[158,51],[159,52],[160,53],[161,54],[162,55],[163,56],[164,57],[165,57],[166,58],[168,59],[170,60],[169,61],[171,62],[172,63],[173,64],[174,65],[175,66],[176,67],[177,68],[94,69],[93,25],[186,70],[178,71],[179,72],[180,73],[181,74],[182,75],[183,126],[184,77],[185,78],[95,25],[52,25],[34,25],[7,25],[35,25],[40,25],[41,25],[36,25],[37,25],[38,25],[39,25],[111,79],[121,80],[110,79],[131,81],[102,82],[101,83],[130,84],[124,85],[129,86],[104,87],[118,88],[103,89],[127,90],[99,91],[98,84],[128,127],[100,93],[105,94],[106,25],[109,94],[96,25],[132,95],[122,96],[113,97],[114,98],[116,99],[112,100],[115,101],[125,128],[107,102],[108,103],[117,104],[97,105],[120,96],[119,94],[123,25],[126,106],[87,129],[88,130],[86,131]],"semanticDiagnosticsPerFile":[73,81,79,82,72,71,70,76,83,85,77,80,84,78,74,75,58,56,57,61,59,60,54,55,63,62,48,44,45,49,46,51,47,50,69,43,64,67,65,66,68,42,134,135,136,137,138,139,89,92,90,91,140,141,142,143,144,145,146,148,147,149,150,151,133,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,170,169,171,172,173,174,175,176,177,94,93,186,178,179,180,181,182,183,184,185,95,52,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,111,121,110,131,102,101,130,124,129,104,118,103,127,99,98,128,100,105,106,109,96,132,122,113,114,116,112,115,125,107,108,117,97,120,119,123,126,87,88,86]},"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-rc.5",
3
+ "version": "0.400.0-rc.6",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.js",
6
6
  "type": "module",