@xmtp/wasm-bindings 1.5.0-dev.c78b650 → 1.5.0-rc1
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/bindings_wasm.d.ts +232 -231
- package/dist/bindings_wasm.js +399 -378
- package/dist/bindings_wasm_bg.wasm +0 -0
- package/dist/bindings_wasm_bg.wasm.d.ts +216 -216
- package/dist/version.json +3 -3
- package/package.json +2 -2
package/dist/bindings_wasm.js
CHANGED
|
@@ -2,8 +2,6 @@ import { JSArrayBufferCopy } from './snippets/wasm-array-cp-201e2a98f0e691f7/cop
|
|
|
2
2
|
|
|
3
3
|
let wasm;
|
|
4
4
|
|
|
5
|
-
let WASM_VECTOR_LEN = 0;
|
|
6
|
-
|
|
7
5
|
let cachedUint8ArrayMemory0 = null;
|
|
8
6
|
|
|
9
7
|
function getUint8ArrayMemory0() {
|
|
@@ -13,6 +11,29 @@ function getUint8ArrayMemory0() {
|
|
|
13
11
|
return cachedUint8ArrayMemory0;
|
|
14
12
|
}
|
|
15
13
|
|
|
14
|
+
let cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } );
|
|
15
|
+
|
|
16
|
+
if (typeof TextDecoder !== 'undefined') { cachedTextDecoder.decode(); };
|
|
17
|
+
|
|
18
|
+
const MAX_SAFARI_DECODE_BYTES = 2146435072;
|
|
19
|
+
let numBytesDecoded = 0;
|
|
20
|
+
function decodeText(ptr, len) {
|
|
21
|
+
numBytesDecoded += len;
|
|
22
|
+
if (numBytesDecoded >= MAX_SAFARI_DECODE_BYTES) {
|
|
23
|
+
cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } );
|
|
24
|
+
cachedTextDecoder.decode();
|
|
25
|
+
numBytesDecoded = len;
|
|
26
|
+
}
|
|
27
|
+
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
function getStringFromWasm0(ptr, len) {
|
|
31
|
+
ptr = ptr >>> 0;
|
|
32
|
+
return decodeText(ptr, len);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
let WASM_VECTOR_LEN = 0;
|
|
36
|
+
|
|
16
37
|
const cachedTextEncoder = (typeof TextEncoder !== 'undefined' ? new TextEncoder('utf-8') : { encode: () => { throw Error('TextEncoder not available') } } );
|
|
17
38
|
|
|
18
39
|
const encodeString = (typeof cachedTextEncoder.encodeInto === 'function'
|
|
@@ -76,15 +97,6 @@ function getDataViewMemory0() {
|
|
|
76
97
|
return cachedDataViewMemory0;
|
|
77
98
|
}
|
|
78
99
|
|
|
79
|
-
const cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } );
|
|
80
|
-
|
|
81
|
-
if (typeof TextDecoder !== 'undefined') { cachedTextDecoder.decode(); };
|
|
82
|
-
|
|
83
|
-
function getStringFromWasm0(ptr, len) {
|
|
84
|
-
ptr = ptr >>> 0;
|
|
85
|
-
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
|
86
|
-
}
|
|
87
|
-
|
|
88
100
|
function addToExternrefTable0(obj) {
|
|
89
101
|
const idx = wasm.__externref_table_alloc();
|
|
90
102
|
wasm.__wbindgen_export_4.set(idx, obj);
|
|
@@ -215,68 +227,12 @@ function debugString(val) {
|
|
|
215
227
|
// TODO we could test for more things here, like `Set`s and `Map`s.
|
|
216
228
|
return className;
|
|
217
229
|
}
|
|
218
|
-
/**
|
|
219
|
-
* @param {string} host
|
|
220
|
-
* @param {Identifier} accountIdentifier
|
|
221
|
-
* @returns {Promise<string | undefined>}
|
|
222
|
-
*/
|
|
223
|
-
export function getInboxIdForIdentifier(host, accountIdentifier) {
|
|
224
|
-
const ptr0 = passStringToWasm0(host, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
225
|
-
const len0 = WASM_VECTOR_LEN;
|
|
226
|
-
const ret = wasm.getInboxIdForIdentifier(ptr0, len0, accountIdentifier);
|
|
227
|
-
return ret;
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
function takeFromExternrefTable0(idx) {
|
|
231
|
-
const value = wasm.__wbindgen_export_4.get(idx);
|
|
232
|
-
wasm.__externref_table_dealloc(idx);
|
|
233
|
-
return value;
|
|
234
|
-
}
|
|
235
|
-
/**
|
|
236
|
-
* @param {Identifier} accountIdentifier
|
|
237
|
-
* @returns {string}
|
|
238
|
-
*/
|
|
239
|
-
export function generateInboxId(accountIdentifier) {
|
|
240
|
-
let deferred2_0;
|
|
241
|
-
let deferred2_1;
|
|
242
|
-
try {
|
|
243
|
-
const ret = wasm.generateInboxId(accountIdentifier);
|
|
244
|
-
var ptr1 = ret[0];
|
|
245
|
-
var len1 = ret[1];
|
|
246
|
-
if (ret[3]) {
|
|
247
|
-
ptr1 = 0; len1 = 0;
|
|
248
|
-
throw takeFromExternrefTable0(ret[2]);
|
|
249
|
-
}
|
|
250
|
-
deferred2_0 = ptr1;
|
|
251
|
-
deferred2_1 = len1;
|
|
252
|
-
return getStringFromWasm0(ptr1, len1);
|
|
253
|
-
} finally {
|
|
254
|
-
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
255
|
-
}
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
function passArrayJsValueToWasm0(array, malloc) {
|
|
259
|
-
const ptr = malloc(array.length * 4, 4) >>> 0;
|
|
260
|
-
for (let i = 0; i < array.length; i++) {
|
|
261
|
-
const add = addToExternrefTable0(array[i]);
|
|
262
|
-
getDataViewMemory0().setUint32(ptr + 4 * i, add, true);
|
|
263
|
-
}
|
|
264
|
-
WASM_VECTOR_LEN = array.length;
|
|
265
|
-
return ptr;
|
|
266
|
-
}
|
|
267
230
|
|
|
268
231
|
function _assertClass(instance, klass) {
|
|
269
232
|
if (!(instance instanceof klass)) {
|
|
270
233
|
throw new Error(`expected instance of ${klass.name}`);
|
|
271
234
|
}
|
|
272
235
|
}
|
|
273
|
-
|
|
274
|
-
function passArray8ToWasm0(arg, malloc) {
|
|
275
|
-
const ptr = malloc(arg.length * 1, 1) >>> 0;
|
|
276
|
-
getUint8ArrayMemory0().set(arg, ptr / 1);
|
|
277
|
-
WASM_VECTOR_LEN = arg.length;
|
|
278
|
-
return ptr;
|
|
279
|
-
}
|
|
280
236
|
/**
|
|
281
237
|
* @param {string} host
|
|
282
238
|
* @param {string} inbox_id
|
|
@@ -311,6 +267,21 @@ export function createClient(host, inbox_id, account_identifier, db_path, encryp
|
|
|
311
267
|
return ret;
|
|
312
268
|
}
|
|
313
269
|
|
|
270
|
+
function passArrayJsValueToWasm0(array, malloc) {
|
|
271
|
+
const ptr = malloc(array.length * 4, 4) >>> 0;
|
|
272
|
+
for (let i = 0; i < array.length; i++) {
|
|
273
|
+
const add = addToExternrefTable0(array[i]);
|
|
274
|
+
getDataViewMemory0().setUint32(ptr + 4 * i, add, true);
|
|
275
|
+
}
|
|
276
|
+
WASM_VECTOR_LEN = array.length;
|
|
277
|
+
return ptr;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
function takeFromExternrefTable0(idx) {
|
|
281
|
+
const value = wasm.__wbindgen_export_4.get(idx);
|
|
282
|
+
wasm.__externref_table_dealloc(idx);
|
|
283
|
+
return value;
|
|
284
|
+
}
|
|
314
285
|
/**
|
|
315
286
|
* @param {MultiRemoteAttachment} multiRemoteAttachment
|
|
316
287
|
* @returns {Uint8Array}
|
|
@@ -363,20 +334,12 @@ export function decodeReaction(bytes) {
|
|
|
363
334
|
return Reaction.__wrap(ret[0]);
|
|
364
335
|
}
|
|
365
336
|
|
|
366
|
-
|
|
367
|
-
*
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
export function inboxStateFromInboxIds(host, inbox_ids) {
|
|
372
|
-
const ptr0 = passStringToWasm0(host, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
373
|
-
const len0 = WASM_VECTOR_LEN;
|
|
374
|
-
const ptr1 = passArrayJsValueToWasm0(inbox_ids, wasm.__wbindgen_malloc);
|
|
375
|
-
const len1 = WASM_VECTOR_LEN;
|
|
376
|
-
const ret = wasm.inboxStateFromInboxIds(ptr0, len0, ptr1, len1);
|
|
377
|
-
return ret;
|
|
337
|
+
function passArray8ToWasm0(arg, malloc) {
|
|
338
|
+
const ptr = malloc(arg.length * 1, 1) >>> 0;
|
|
339
|
+
getUint8ArrayMemory0().set(arg, ptr / 1);
|
|
340
|
+
WASM_VECTOR_LEN = arg.length;
|
|
341
|
+
return ptr;
|
|
378
342
|
}
|
|
379
|
-
|
|
380
343
|
/**
|
|
381
344
|
* @param {string} signature_text
|
|
382
345
|
* @param {Uint8Array} signature_bytes
|
|
@@ -422,6 +385,55 @@ export function applySignatureRequest(host, signature_request) {
|
|
|
422
385
|
return ret;
|
|
423
386
|
}
|
|
424
387
|
|
|
388
|
+
/**
|
|
389
|
+
* @param {string} host
|
|
390
|
+
* @param {Identifier} accountIdentifier
|
|
391
|
+
* @returns {Promise<string | undefined>}
|
|
392
|
+
*/
|
|
393
|
+
export function getInboxIdForIdentifier(host, accountIdentifier) {
|
|
394
|
+
const ptr0 = passStringToWasm0(host, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
395
|
+
const len0 = WASM_VECTOR_LEN;
|
|
396
|
+
const ret = wasm.getInboxIdForIdentifier(ptr0, len0, accountIdentifier);
|
|
397
|
+
return ret;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
/**
|
|
401
|
+
* @param {Identifier} accountIdentifier
|
|
402
|
+
* @returns {string}
|
|
403
|
+
*/
|
|
404
|
+
export function generateInboxId(accountIdentifier) {
|
|
405
|
+
let deferred2_0;
|
|
406
|
+
let deferred2_1;
|
|
407
|
+
try {
|
|
408
|
+
const ret = wasm.generateInboxId(accountIdentifier);
|
|
409
|
+
var ptr1 = ret[0];
|
|
410
|
+
var len1 = ret[1];
|
|
411
|
+
if (ret[3]) {
|
|
412
|
+
ptr1 = 0; len1 = 0;
|
|
413
|
+
throw takeFromExternrefTable0(ret[2]);
|
|
414
|
+
}
|
|
415
|
+
deferred2_0 = ptr1;
|
|
416
|
+
deferred2_1 = len1;
|
|
417
|
+
return getStringFromWasm0(ptr1, len1);
|
|
418
|
+
} finally {
|
|
419
|
+
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
/**
|
|
424
|
+
* @param {string} host
|
|
425
|
+
* @param {string[]} inbox_ids
|
|
426
|
+
* @returns {Promise<InboxState[]>}
|
|
427
|
+
*/
|
|
428
|
+
export function inboxStateFromInboxIds(host, inbox_ids) {
|
|
429
|
+
const ptr0 = passStringToWasm0(host, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
430
|
+
const len0 = WASM_VECTOR_LEN;
|
|
431
|
+
const ptr1 = passArrayJsValueToWasm0(inbox_ids, wasm.__wbindgen_malloc);
|
|
432
|
+
const len1 = WASM_VECTOR_LEN;
|
|
433
|
+
const ret = wasm.inboxStateFromInboxIds(ptr0, len0, ptr1, len1);
|
|
434
|
+
return ret;
|
|
435
|
+
}
|
|
436
|
+
|
|
425
437
|
/**
|
|
426
438
|
* Entry point invoked by JavaScript in a worker.
|
|
427
439
|
* @param {number} ptr
|
|
@@ -433,20 +445,20 @@ export function task_worker_entry_point(ptr) {
|
|
|
433
445
|
}
|
|
434
446
|
}
|
|
435
447
|
|
|
436
|
-
function
|
|
437
|
-
wasm.
|
|
448
|
+
function __wbg_adapter_48(arg0, arg1) {
|
|
449
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h231d11d7d151a506(arg0, arg1);
|
|
438
450
|
}
|
|
439
451
|
|
|
440
|
-
function
|
|
441
|
-
wasm.
|
|
452
|
+
function __wbg_adapter_51(arg0, arg1) {
|
|
453
|
+
wasm.wasm_bindgen__convert__closures_____invoke__hfa5440517c90e88d(arg0, arg1);
|
|
442
454
|
}
|
|
443
455
|
|
|
444
|
-
function
|
|
445
|
-
wasm.
|
|
456
|
+
function __wbg_adapter_54(arg0, arg1, arg2) {
|
|
457
|
+
wasm.closure5339_externref_shim(arg0, arg1, arg2);
|
|
446
458
|
}
|
|
447
459
|
|
|
448
|
-
function
|
|
449
|
-
wasm.
|
|
460
|
+
function __wbg_adapter_791(arg0, arg1, arg2, arg3) {
|
|
461
|
+
wasm.closure6281_externref_shim(arg0, arg1, arg2, arg3);
|
|
450
462
|
}
|
|
451
463
|
|
|
452
464
|
/**
|
|
@@ -480,12 +492,13 @@ export const ContentType = Object.freeze({
|
|
|
480
492
|
TransactionReference: 9, "9": "TransactionReference",
|
|
481
493
|
});
|
|
482
494
|
/**
|
|
483
|
-
* @enum {0 | 1 | 2}
|
|
495
|
+
* @enum {0 | 1 | 2 | 3}
|
|
484
496
|
*/
|
|
485
497
|
export const ConversationType = Object.freeze({
|
|
486
498
|
Dm: 0, "0": "Dm",
|
|
487
499
|
Group: 1, "1": "Group",
|
|
488
500
|
Sync: 2, "2": "Sync",
|
|
501
|
+
Oneshot: 3, "3": "Oneshot",
|
|
489
502
|
});
|
|
490
503
|
/**
|
|
491
504
|
* @enum {0 | 1 | 2}
|
|
@@ -946,45 +959,6 @@ export class Client {
|
|
|
946
959
|
const ret = wasm.client_getConsentState(this.__wbg_ptr, entity_type, ptr0, len0);
|
|
947
960
|
return ret;
|
|
948
961
|
}
|
|
949
|
-
/**
|
|
950
|
-
*
|
|
951
|
-
* * Get the client's inbox state.
|
|
952
|
-
* *
|
|
953
|
-
* * If `refresh_from_network` is true, the client will go to the network first to refresh the state.
|
|
954
|
-
* * Otherwise, the state will be read from the local database.
|
|
955
|
-
*
|
|
956
|
-
* @param {boolean} refresh_from_network
|
|
957
|
-
* @returns {Promise<InboxState>}
|
|
958
|
-
*/
|
|
959
|
-
inboxState(refresh_from_network) {
|
|
960
|
-
const ret = wasm.client_inboxState(this.__wbg_ptr, refresh_from_network);
|
|
961
|
-
return ret;
|
|
962
|
-
}
|
|
963
|
-
/**
|
|
964
|
-
* @param {string} inbox_id
|
|
965
|
-
* @returns {Promise<InboxState>}
|
|
966
|
-
*/
|
|
967
|
-
getLatestInboxState(inbox_id) {
|
|
968
|
-
const ptr0 = passStringToWasm0(inbox_id, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
969
|
-
const len0 = WASM_VECTOR_LEN;
|
|
970
|
-
const ret = wasm.client_getLatestInboxState(this.__wbg_ptr, ptr0, len0);
|
|
971
|
-
return ret;
|
|
972
|
-
}
|
|
973
|
-
/**
|
|
974
|
-
*
|
|
975
|
-
* * Get key package statuses for a list of installation IDs.
|
|
976
|
-
* *
|
|
977
|
-
* * Returns a JavaScript object mapping installation ID strings to KeyPackageStatus objects.
|
|
978
|
-
*
|
|
979
|
-
* @param {string[]} installation_ids
|
|
980
|
-
* @returns {Promise<any>}
|
|
981
|
-
*/
|
|
982
|
-
getKeyPackageStatusesForInstallationIds(installation_ids) {
|
|
983
|
-
const ptr0 = passArrayJsValueToWasm0(installation_ids, wasm.__wbindgen_malloc);
|
|
984
|
-
const len0 = WASM_VECTOR_LEN;
|
|
985
|
-
const ret = wasm.client_getKeyPackageStatusesForInstallationIds(this.__wbg_ptr, ptr0, len0);
|
|
986
|
-
return ret;
|
|
987
|
-
}
|
|
988
962
|
/**
|
|
989
963
|
* @returns {SignatureRequestHandle | undefined}
|
|
990
964
|
*/
|
|
@@ -1080,6 +1054,45 @@ export class Client {
|
|
|
1080
1054
|
throw takeFromExternrefTable0(ret[0]);
|
|
1081
1055
|
}
|
|
1082
1056
|
}
|
|
1057
|
+
/**
|
|
1058
|
+
*
|
|
1059
|
+
* * Get the client's inbox state.
|
|
1060
|
+
* *
|
|
1061
|
+
* * If `refresh_from_network` is true, the client will go to the network first to refresh the state.
|
|
1062
|
+
* * Otherwise, the state will be read from the local database.
|
|
1063
|
+
*
|
|
1064
|
+
* @param {boolean} refresh_from_network
|
|
1065
|
+
* @returns {Promise<InboxState>}
|
|
1066
|
+
*/
|
|
1067
|
+
inboxState(refresh_from_network) {
|
|
1068
|
+
const ret = wasm.client_inboxState(this.__wbg_ptr, refresh_from_network);
|
|
1069
|
+
return ret;
|
|
1070
|
+
}
|
|
1071
|
+
/**
|
|
1072
|
+
* @param {string} inbox_id
|
|
1073
|
+
* @returns {Promise<InboxState>}
|
|
1074
|
+
*/
|
|
1075
|
+
getLatestInboxState(inbox_id) {
|
|
1076
|
+
const ptr0 = passStringToWasm0(inbox_id, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1077
|
+
const len0 = WASM_VECTOR_LEN;
|
|
1078
|
+
const ret = wasm.client_getLatestInboxState(this.__wbg_ptr, ptr0, len0);
|
|
1079
|
+
return ret;
|
|
1080
|
+
}
|
|
1081
|
+
/**
|
|
1082
|
+
*
|
|
1083
|
+
* * Get key package statuses for a list of installation IDs.
|
|
1084
|
+
* *
|
|
1085
|
+
* * Returns a JavaScript object mapping installation ID strings to KeyPackageStatus objects.
|
|
1086
|
+
*
|
|
1087
|
+
* @param {string[]} installation_ids
|
|
1088
|
+
* @returns {Promise<any>}
|
|
1089
|
+
*/
|
|
1090
|
+
getKeyPackageStatusesForInstallationIds(installation_ids) {
|
|
1091
|
+
const ptr0 = passArrayJsValueToWasm0(installation_ids, wasm.__wbindgen_malloc);
|
|
1092
|
+
const len0 = WASM_VECTOR_LEN;
|
|
1093
|
+
const ret = wasm.client_getKeyPackageStatusesForInstallationIds(this.__wbg_ptr, ptr0, len0);
|
|
1094
|
+
return ret;
|
|
1095
|
+
}
|
|
1083
1096
|
}
|
|
1084
1097
|
|
|
1085
1098
|
const ConsentFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
@@ -1216,7 +1229,7 @@ export class ContentTypeId {
|
|
|
1216
1229
|
set authorityId(arg0) {
|
|
1217
1230
|
const ptr0 = passStringToWasm0(arg0, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1218
1231
|
const len0 = WASM_VECTOR_LEN;
|
|
1219
|
-
wasm.
|
|
1232
|
+
wasm.__wbg_set_consent_entity(this.__wbg_ptr, ptr0, len0);
|
|
1220
1233
|
}
|
|
1221
1234
|
/**
|
|
1222
1235
|
* @returns {string}
|
|
@@ -1846,14 +1859,14 @@ export class ConversationDebugInfo {
|
|
|
1846
1859
|
* @returns {bigint}
|
|
1847
1860
|
*/
|
|
1848
1861
|
get epoch() {
|
|
1849
|
-
const ret = wasm.
|
|
1862
|
+
const ret = wasm.__wbg_get_apistats_upload_key_package(this.__wbg_ptr);
|
|
1850
1863
|
return BigInt.asUintN(64, ret);
|
|
1851
1864
|
}
|
|
1852
1865
|
/**
|
|
1853
1866
|
* @param {bigint} arg0
|
|
1854
1867
|
*/
|
|
1855
1868
|
set epoch(arg0) {
|
|
1856
|
-
wasm.
|
|
1869
|
+
wasm.__wbg_set_apistats_upload_key_package(this.__wbg_ptr, arg0);
|
|
1857
1870
|
}
|
|
1858
1871
|
/**
|
|
1859
1872
|
* @returns {boolean}
|
|
@@ -1954,14 +1967,14 @@ export class ConversationDebugInfo {
|
|
|
1954
1967
|
* @returns {bigint}
|
|
1955
1968
|
*/
|
|
1956
1969
|
get cursor() {
|
|
1957
|
-
const ret = wasm.
|
|
1970
|
+
const ret = wasm.__wbg_get_apistats_fetch_key_package(this.__wbg_ptr);
|
|
1958
1971
|
return ret;
|
|
1959
1972
|
}
|
|
1960
1973
|
/**
|
|
1961
1974
|
* @param {bigint} arg0
|
|
1962
1975
|
*/
|
|
1963
1976
|
set cursor(arg0) {
|
|
1964
|
-
wasm.
|
|
1977
|
+
wasm.__wbg_set_apistats_fetch_key_package(this.__wbg_ptr, arg0);
|
|
1965
1978
|
}
|
|
1966
1979
|
}
|
|
1967
1980
|
|
|
@@ -2247,7 +2260,7 @@ export class Conversations {
|
|
|
2247
2260
|
* @returns {Promise<ReadableStream>}
|
|
2248
2261
|
*/
|
|
2249
2262
|
streamLocal(conversation_type) {
|
|
2250
|
-
const ret = wasm.conversations_streamLocal(this.__wbg_ptr, isLikeNone(conversation_type) ?
|
|
2263
|
+
const ret = wasm.conversations_streamLocal(this.__wbg_ptr, isLikeNone(conversation_type) ? 4 : conversation_type);
|
|
2251
2264
|
return ret;
|
|
2252
2265
|
}
|
|
2253
2266
|
/**
|
|
@@ -2256,7 +2269,7 @@ export class Conversations {
|
|
|
2256
2269
|
* @returns {StreamCloser}
|
|
2257
2270
|
*/
|
|
2258
2271
|
stream(callback, conversation_type) {
|
|
2259
|
-
const ret = wasm.conversations_stream(this.__wbg_ptr, callback, isLikeNone(conversation_type) ?
|
|
2272
|
+
const ret = wasm.conversations_stream(this.__wbg_ptr, callback, isLikeNone(conversation_type) ? 4 : conversation_type);
|
|
2260
2273
|
if (ret[2]) {
|
|
2261
2274
|
throw takeFromExternrefTable0(ret[1]);
|
|
2262
2275
|
}
|
|
@@ -2271,7 +2284,7 @@ export class Conversations {
|
|
|
2271
2284
|
streamAllMessages(callback, conversation_type, consent_states) {
|
|
2272
2285
|
var ptr0 = isLikeNone(consent_states) ? 0 : passArrayJsValueToWasm0(consent_states, wasm.__wbindgen_malloc);
|
|
2273
2286
|
var len0 = WASM_VECTOR_LEN;
|
|
2274
|
-
const ret = wasm.conversations_streamAllMessages(this.__wbg_ptr, callback, isLikeNone(conversation_type) ?
|
|
2287
|
+
const ret = wasm.conversations_streamAllMessages(this.__wbg_ptr, callback, isLikeNone(conversation_type) ? 4 : conversation_type, ptr0, len0);
|
|
2275
2288
|
if (ret[2]) {
|
|
2276
2289
|
throw takeFromExternrefTable0(ret[1]);
|
|
2277
2290
|
}
|
|
@@ -2897,14 +2910,14 @@ export class HmacKey {
|
|
|
2897
2910
|
* @returns {bigint}
|
|
2898
2911
|
*/
|
|
2899
2912
|
get epoch() {
|
|
2900
|
-
const ret = wasm.
|
|
2913
|
+
const ret = wasm.__wbg_get_apistats_upload_key_package(this.__wbg_ptr);
|
|
2901
2914
|
return ret;
|
|
2902
2915
|
}
|
|
2903
2916
|
/**
|
|
2904
2917
|
* @param {bigint} arg0
|
|
2905
2918
|
*/
|
|
2906
2919
|
set epoch(arg0) {
|
|
2907
|
-
wasm.
|
|
2920
|
+
wasm.__wbg_set_apistats_upload_key_package(this.__wbg_ptr, arg0);
|
|
2908
2921
|
}
|
|
2909
2922
|
}
|
|
2910
2923
|
|
|
@@ -3033,7 +3046,7 @@ export class InboxState {
|
|
|
3033
3046
|
set inboxId(arg0) {
|
|
3034
3047
|
const ptr0 = passStringToWasm0(arg0, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3035
3048
|
const len0 = WASM_VECTOR_LEN;
|
|
3036
|
-
wasm.
|
|
3049
|
+
wasm.__wbg_set_inboxstate_inboxId(this.__wbg_ptr, ptr0, len0);
|
|
3037
3050
|
}
|
|
3038
3051
|
/**
|
|
3039
3052
|
* @returns {Identifier}
|
|
@@ -3418,27 +3431,27 @@ export class Lifetime {
|
|
|
3418
3431
|
* @returns {bigint}
|
|
3419
3432
|
*/
|
|
3420
3433
|
get not_before() {
|
|
3421
|
-
const ret = wasm.
|
|
3434
|
+
const ret = wasm.__wbg_get_lifetime_not_before(this.__wbg_ptr);
|
|
3422
3435
|
return BigInt.asUintN(64, ret);
|
|
3423
3436
|
}
|
|
3424
3437
|
/**
|
|
3425
3438
|
* @param {bigint} arg0
|
|
3426
3439
|
*/
|
|
3427
3440
|
set not_before(arg0) {
|
|
3428
|
-
wasm.
|
|
3441
|
+
wasm.__wbg_set_lifetime_not_before(this.__wbg_ptr, arg0);
|
|
3429
3442
|
}
|
|
3430
3443
|
/**
|
|
3431
3444
|
* @returns {bigint}
|
|
3432
3445
|
*/
|
|
3433
3446
|
get not_after() {
|
|
3434
|
-
const ret = wasm.
|
|
3447
|
+
const ret = wasm.__wbg_get_lifetime_not_after(this.__wbg_ptr);
|
|
3435
3448
|
return BigInt.asUintN(64, ret);
|
|
3436
3449
|
}
|
|
3437
3450
|
/**
|
|
3438
3451
|
* @param {bigint} arg0
|
|
3439
3452
|
*/
|
|
3440
3453
|
set not_after(arg0) {
|
|
3441
|
-
wasm.
|
|
3454
|
+
wasm.__wbg_set_lifetime_not_after(this.__wbg_ptr, arg0);
|
|
3442
3455
|
}
|
|
3443
3456
|
}
|
|
3444
3457
|
|
|
@@ -3484,13 +3497,13 @@ export class ListConversationsOptions {
|
|
|
3484
3497
|
*/
|
|
3485
3498
|
get conversationType() {
|
|
3486
3499
|
const ret = wasm.__wbg_get_listconversationsoptions_conversationType(this.__wbg_ptr);
|
|
3487
|
-
return ret ===
|
|
3500
|
+
return ret === 4 ? undefined : ret;
|
|
3488
3501
|
}
|
|
3489
3502
|
/**
|
|
3490
3503
|
* @param {ConversationType | null} [arg0]
|
|
3491
3504
|
*/
|
|
3492
3505
|
set conversationType(arg0) {
|
|
3493
|
-
wasm.__wbg_set_listconversationsoptions_conversationType(this.__wbg_ptr, isLikeNone(arg0) ?
|
|
3506
|
+
wasm.__wbg_set_listconversationsoptions_conversationType(this.__wbg_ptr, isLikeNone(arg0) ? 4 : arg0);
|
|
3494
3507
|
}
|
|
3495
3508
|
/**
|
|
3496
3509
|
* @returns {bigint | undefined}
|
|
@@ -3555,7 +3568,7 @@ export class ListConversationsOptions {
|
|
|
3555
3568
|
constructor(consent_states, conversation_type, created_after_ns, created_before_ns, include_duplicate_dms, limit) {
|
|
3556
3569
|
var ptr0 = isLikeNone(consent_states) ? 0 : passArrayJsValueToWasm0(consent_states, wasm.__wbindgen_malloc);
|
|
3557
3570
|
var len0 = WASM_VECTOR_LEN;
|
|
3558
|
-
const ret = wasm.listconversationsoptions_new(ptr0, len0, isLikeNone(conversation_type) ?
|
|
3571
|
+
const ret = wasm.listconversationsoptions_new(ptr0, len0, isLikeNone(conversation_type) ? 4 : conversation_type, !isLikeNone(created_after_ns), isLikeNone(created_after_ns) ? BigInt(0) : created_after_ns, !isLikeNone(created_before_ns), isLikeNone(created_before_ns) ? BigInt(0) : created_before_ns, isLikeNone(include_duplicate_dms) ? 0xFFFFFF : include_duplicate_dms ? 1 : 0, !isLikeNone(limit), isLikeNone(limit) ? BigInt(0) : limit);
|
|
3559
3572
|
this.__wbg_ptr = ret >>> 0;
|
|
3560
3573
|
ListConversationsOptionsFinalization.register(this, this.__wbg_ptr, this);
|
|
3561
3574
|
return this;
|
|
@@ -3832,14 +3845,14 @@ export class Message {
|
|
|
3832
3845
|
* @returns {bigint}
|
|
3833
3846
|
*/
|
|
3834
3847
|
get sentAtNs() {
|
|
3835
|
-
const ret = wasm.
|
|
3848
|
+
const ret = wasm.__wbg_get_apistats_upload_key_package(this.__wbg_ptr);
|
|
3836
3849
|
return ret;
|
|
3837
3850
|
}
|
|
3838
3851
|
/**
|
|
3839
3852
|
* @param {bigint} arg0
|
|
3840
3853
|
*/
|
|
3841
3854
|
set sentAtNs(arg0) {
|
|
3842
|
-
wasm.
|
|
3855
|
+
wasm.__wbg_set_apistats_upload_key_package(this.__wbg_ptr, arg0);
|
|
3843
3856
|
}
|
|
3844
3857
|
/**
|
|
3845
3858
|
* @returns {string}
|
|
@@ -3982,27 +3995,27 @@ export class MessageDisappearingSettings {
|
|
|
3982
3995
|
* @returns {bigint}
|
|
3983
3996
|
*/
|
|
3984
3997
|
get fromNs() {
|
|
3985
|
-
const ret = wasm.
|
|
3998
|
+
const ret = wasm.__wbg_get_apistats_upload_key_package(this.__wbg_ptr);
|
|
3986
3999
|
return ret;
|
|
3987
4000
|
}
|
|
3988
4001
|
/**
|
|
3989
4002
|
* @param {bigint} arg0
|
|
3990
4003
|
*/
|
|
3991
4004
|
set fromNs(arg0) {
|
|
3992
|
-
wasm.
|
|
4005
|
+
wasm.__wbg_set_apistats_upload_key_package(this.__wbg_ptr, arg0);
|
|
3993
4006
|
}
|
|
3994
4007
|
/**
|
|
3995
4008
|
* @returns {bigint}
|
|
3996
4009
|
*/
|
|
3997
4010
|
get inNs() {
|
|
3998
|
-
const ret = wasm.
|
|
4011
|
+
const ret = wasm.__wbg_get_apistats_fetch_key_package(this.__wbg_ptr);
|
|
3999
4012
|
return ret;
|
|
4000
4013
|
}
|
|
4001
4014
|
/**
|
|
4002
4015
|
* @param {bigint} arg0
|
|
4003
4016
|
*/
|
|
4004
4017
|
set inNs(arg0) {
|
|
4005
|
-
wasm.
|
|
4018
|
+
wasm.__wbg_set_apistats_fetch_key_package(this.__wbg_ptr, arg0);
|
|
4006
4019
|
}
|
|
4007
4020
|
/**
|
|
4008
4021
|
* @param {bigint} from_ns
|
|
@@ -4507,7 +4520,7 @@ export class Reaction {
|
|
|
4507
4520
|
set referenceInboxId(arg0) {
|
|
4508
4521
|
const ptr0 = passStringToWasm0(arg0, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
4509
4522
|
const len0 = WASM_VECTOR_LEN;
|
|
4510
|
-
wasm.
|
|
4523
|
+
wasm.__wbg_set_contenttypeid_typeId(this.__wbg_ptr, ptr0, len0);
|
|
4511
4524
|
}
|
|
4512
4525
|
/**
|
|
4513
4526
|
* @returns {ReactionAction}
|
|
@@ -4704,7 +4717,7 @@ export class RemoteAttachmentInfo {
|
|
|
4704
4717
|
set url(arg0) {
|
|
4705
4718
|
const ptr0 = passStringToWasm0(arg0, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
4706
4719
|
const len0 = WASM_VECTOR_LEN;
|
|
4707
|
-
wasm.
|
|
4720
|
+
wasm.__wbg_set_conversationdebuginfo_localCommitLog(this.__wbg_ptr, ptr0, len0);
|
|
4708
4721
|
}
|
|
4709
4722
|
/**
|
|
4710
4723
|
* @returns {Uint8Array}
|
|
@@ -4900,6 +4913,8 @@ export class StreamCloser {
|
|
|
4900
4913
|
}
|
|
4901
4914
|
}
|
|
4902
4915
|
|
|
4916
|
+
const EXPECTED_RESPONSE_TYPES = new Set(['basic', 'cors', 'default']);
|
|
4917
|
+
|
|
4903
4918
|
async function __wbg_load(module, imports) {
|
|
4904
4919
|
if (typeof Response === 'function' && module instanceof Response) {
|
|
4905
4920
|
if (typeof WebAssembly.instantiateStreaming === 'function') {
|
|
@@ -4907,7 +4922,9 @@ async function __wbg_load(module, imports) {
|
|
|
4907
4922
|
return await WebAssembly.instantiateStreaming(module, imports);
|
|
4908
4923
|
|
|
4909
4924
|
} catch (e) {
|
|
4910
|
-
|
|
4925
|
+
const validResponse = module.ok && EXPECTED_RESPONSE_TYPES.has(module.type);
|
|
4926
|
+
|
|
4927
|
+
if (validResponse && module.headers.get('Content-Type') !== 'application/wasm') {
|
|
4911
4928
|
console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve Wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n", e);
|
|
4912
4929
|
|
|
4913
4930
|
} else {
|
|
@@ -4934,6 +4951,10 @@ async function __wbg_load(module, imports) {
|
|
|
4934
4951
|
function __wbg_get_imports() {
|
|
4935
4952
|
const imports = {};
|
|
4936
4953
|
imports.wbg = {};
|
|
4954
|
+
imports.wbg.__wbg_Error_0497d5bdba9362e5 = function(arg0, arg1) {
|
|
4955
|
+
const ret = Error(getStringFromWasm0(arg0, arg1));
|
|
4956
|
+
return ret;
|
|
4957
|
+
};
|
|
4937
4958
|
imports.wbg.__wbg_String_8f0eb39a4a4c2f66 = function(arg0, arg1) {
|
|
4938
4959
|
const ret = String(arg1);
|
|
4939
4960
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
@@ -4941,60 +4962,60 @@ function __wbg_get_imports() {
|
|
|
4941
4962
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
4942
4963
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
4943
4964
|
};
|
|
4944
|
-
imports.wbg.
|
|
4945
|
-
arg0.abort(arg1);
|
|
4946
|
-
};
|
|
4947
|
-
imports.wbg.__wbg_abort_775ef1d17fc65868 = function(arg0) {
|
|
4965
|
+
imports.wbg.__wbg_abort_18ba44d46e13d7fe = function(arg0) {
|
|
4948
4966
|
arg0.abort();
|
|
4949
4967
|
};
|
|
4950
|
-
imports.wbg.
|
|
4968
|
+
imports.wbg.__wbg_abort_4198a1129c47f21a = function(arg0, arg1) {
|
|
4969
|
+
arg0.abort(arg1);
|
|
4970
|
+
};
|
|
4971
|
+
imports.wbg.__wbg_add_dd833f9f523abe36 = function(arg0, arg1) {
|
|
4951
4972
|
const ret = arg0.add(arg1);
|
|
4952
4973
|
return ret;
|
|
4953
4974
|
};
|
|
4954
|
-
imports.wbg.
|
|
4975
|
+
imports.wbg.__wbg_append_0342728346e47425 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
4955
4976
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
4956
4977
|
}, arguments) };
|
|
4957
|
-
imports.wbg.
|
|
4978
|
+
imports.wbg.__wbg_arrayBuffer_d58b858456021d7f = function() { return handleError(function (arg0) {
|
|
4958
4979
|
const ret = arg0.arrayBuffer();
|
|
4959
4980
|
return ret;
|
|
4960
4981
|
}, arguments) };
|
|
4961
|
-
imports.wbg.
|
|
4982
|
+
imports.wbg.__wbg_body_e1e045c770257634 = function(arg0) {
|
|
4962
4983
|
const ret = arg0.body;
|
|
4963
4984
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
4964
4985
|
};
|
|
4965
|
-
imports.wbg.
|
|
4986
|
+
imports.wbg.__wbg_buffer_a1a27a0dfa70165d = function(arg0) {
|
|
4966
4987
|
const ret = arg0.buffer;
|
|
4967
4988
|
return ret;
|
|
4968
4989
|
};
|
|
4969
|
-
imports.wbg.
|
|
4990
|
+
imports.wbg.__wbg_buffer_e495ba54cee589cc = function(arg0) {
|
|
4970
4991
|
const ret = arg0.buffer;
|
|
4971
4992
|
return ret;
|
|
4972
4993
|
};
|
|
4973
|
-
imports.wbg.
|
|
4994
|
+
imports.wbg.__wbg_byobRequest_56aa768ee4dfed17 = function(arg0) {
|
|
4974
4995
|
const ret = arg0.byobRequest;
|
|
4975
4996
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
4976
4997
|
};
|
|
4977
|
-
imports.wbg.
|
|
4998
|
+
imports.wbg.__wbg_byteLength_937f8a52f9697148 = function(arg0) {
|
|
4978
4999
|
const ret = arg0.byteLength;
|
|
4979
5000
|
return ret;
|
|
4980
5001
|
};
|
|
4981
|
-
imports.wbg.
|
|
5002
|
+
imports.wbg.__wbg_byteOffset_4d94b7170e641898 = function(arg0) {
|
|
4982
5003
|
const ret = arg0.byteOffset;
|
|
4983
5004
|
return ret;
|
|
4984
5005
|
};
|
|
4985
|
-
imports.wbg.
|
|
4986
|
-
const ret = arg0.call(arg1);
|
|
5006
|
+
imports.wbg.__wbg_call_f2db6205e5c51dc8 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
5007
|
+
const ret = arg0.call(arg1, arg2);
|
|
4987
5008
|
return ret;
|
|
4988
5009
|
}, arguments) };
|
|
4989
|
-
imports.wbg.
|
|
4990
|
-
const ret = arg0.call(arg1
|
|
5010
|
+
imports.wbg.__wbg_call_fbe8be8bf6436ce5 = function() { return handleError(function (arg0, arg1) {
|
|
5011
|
+
const ret = arg0.call(arg1);
|
|
4991
5012
|
return ret;
|
|
4992
5013
|
}, arguments) };
|
|
4993
|
-
imports.wbg.
|
|
5014
|
+
imports.wbg.__wbg_cancel_4d78160f447bbbeb = function(arg0) {
|
|
4994
5015
|
const ret = arg0.cancel();
|
|
4995
5016
|
return ret;
|
|
4996
5017
|
};
|
|
4997
|
-
imports.wbg.
|
|
5018
|
+
imports.wbg.__wbg_catch_b51fce253ee18ec3 = function(arg0, arg1) {
|
|
4998
5019
|
const ret = arg0.catch(arg1);
|
|
4999
5020
|
return ret;
|
|
5000
5021
|
};
|
|
@@ -5010,26 +5031,26 @@ function __wbg_get_imports() {
|
|
|
5010
5031
|
const ret = clearTimeout(arg0);
|
|
5011
5032
|
return ret;
|
|
5012
5033
|
};
|
|
5013
|
-
imports.wbg.
|
|
5034
|
+
imports.wbg.__wbg_clear_1657d083d00a480f = function(arg0) {
|
|
5014
5035
|
arg0.clear();
|
|
5015
5036
|
};
|
|
5016
|
-
imports.wbg.
|
|
5037
|
+
imports.wbg.__wbg_clear_1da67706bfcd76cf = function(arg0) {
|
|
5017
5038
|
arg0.clear();
|
|
5018
5039
|
};
|
|
5019
5040
|
imports.wbg.__wbg_client_new = function(arg0) {
|
|
5020
5041
|
const ret = Client.__wrap(arg0);
|
|
5021
5042
|
return ret;
|
|
5022
5043
|
};
|
|
5023
|
-
imports.wbg.
|
|
5044
|
+
imports.wbg.__wbg_close_290fb040af98d3ac = function() { return handleError(function (arg0) {
|
|
5024
5045
|
arg0.close();
|
|
5025
5046
|
}, arguments) };
|
|
5026
|
-
imports.wbg.
|
|
5027
|
-
arg0.close();
|
|
5028
|
-
}, arguments) };
|
|
5029
|
-
imports.wbg.__wbg_close_a17af48266bd9942 = function(arg0) {
|
|
5047
|
+
imports.wbg.__wbg_close_8d9e72339b45f6f5 = function(arg0) {
|
|
5030
5048
|
arg0.close();
|
|
5031
5049
|
};
|
|
5032
|
-
imports.wbg.
|
|
5050
|
+
imports.wbg.__wbg_close_b2641ef0870e518c = function() { return handleError(function (arg0) {
|
|
5051
|
+
arg0.close();
|
|
5052
|
+
}, arguments) };
|
|
5053
|
+
imports.wbg.__wbg_code_5e459ca721f994f5 = function(arg0) {
|
|
5033
5054
|
const ret = arg0.code;
|
|
5034
5055
|
return ret;
|
|
5035
5056
|
};
|
|
@@ -5045,11 +5066,11 @@ function __wbg_get_imports() {
|
|
|
5045
5066
|
const ret = ConversationListItem.__wrap(arg0);
|
|
5046
5067
|
return ret;
|
|
5047
5068
|
};
|
|
5048
|
-
imports.wbg.
|
|
5069
|
+
imports.wbg.__wbg_createSyncAccessHandle_05df52d90910c9ce = function(arg0) {
|
|
5049
5070
|
const ret = arg0.createSyncAccessHandle();
|
|
5050
5071
|
return ret;
|
|
5051
5072
|
};
|
|
5052
|
-
imports.wbg.
|
|
5073
|
+
imports.wbg.__wbg_create_f3f7c1f0898ceb7c = function(arg0) {
|
|
5053
5074
|
const ret = Object.create(arg0);
|
|
5054
5075
|
return ret;
|
|
5055
5076
|
};
|
|
@@ -5057,38 +5078,41 @@ function __wbg_get_imports() {
|
|
|
5057
5078
|
const ret = arg0.crypto;
|
|
5058
5079
|
return ret;
|
|
5059
5080
|
};
|
|
5060
|
-
imports.wbg.
|
|
5061
|
-
console.debug(arg0);
|
|
5062
|
-
};
|
|
5063
|
-
imports.wbg.__wbg_debug_e17b51583ca6a632 = function(arg0, arg1, arg2, arg3) {
|
|
5081
|
+
imports.wbg.__wbg_debug_103948ed4c500577 = function(arg0, arg1, arg2, arg3) {
|
|
5064
5082
|
console.debug(arg0, arg1, arg2, arg3);
|
|
5065
5083
|
};
|
|
5066
|
-
imports.wbg.
|
|
5084
|
+
imports.wbg.__wbg_debug_58d16ea352cfbca1 = function(arg0) {
|
|
5085
|
+
console.debug(arg0);
|
|
5086
|
+
};
|
|
5087
|
+
imports.wbg.__wbg_delete_8f0ad80b15b2a784 = function(arg0, arg1) {
|
|
5067
5088
|
const ret = arg0.delete(arg1);
|
|
5068
5089
|
return ret;
|
|
5069
5090
|
};
|
|
5070
|
-
imports.wbg.
|
|
5091
|
+
imports.wbg.__wbg_delete_aca203d8b0528d61 = function(arg0, arg1) {
|
|
5071
5092
|
const ret = arg0.delete(arg1);
|
|
5072
5093
|
return ret;
|
|
5073
5094
|
};
|
|
5074
|
-
imports.wbg.
|
|
5095
|
+
imports.wbg.__wbg_done_4d01f352bade43b7 = function(arg0) {
|
|
5075
5096
|
const ret = arg0.done;
|
|
5076
5097
|
return ret;
|
|
5077
5098
|
};
|
|
5078
|
-
imports.wbg.
|
|
5099
|
+
imports.wbg.__wbg_enqueue_a62faa171c4fd287 = function() { return handleError(function (arg0, arg1) {
|
|
5079
5100
|
arg0.enqueue(arg1);
|
|
5080
5101
|
}, arguments) };
|
|
5081
|
-
imports.wbg.
|
|
5102
|
+
imports.wbg.__wbg_entries_14bb5b0fa29e7393 = function(arg0) {
|
|
5082
5103
|
const ret = arg0.entries();
|
|
5083
5104
|
return ret;
|
|
5084
5105
|
};
|
|
5085
|
-
imports.wbg.
|
|
5106
|
+
imports.wbg.__wbg_entries_41651c850143b957 = function(arg0) {
|
|
5086
5107
|
const ret = Object.entries(arg0);
|
|
5087
5108
|
return ret;
|
|
5088
5109
|
};
|
|
5089
|
-
imports.wbg.
|
|
5110
|
+
imports.wbg.__wbg_error_51ecdd39ec054205 = function(arg0) {
|
|
5090
5111
|
console.error(arg0);
|
|
5091
5112
|
};
|
|
5113
|
+
imports.wbg.__wbg_error_624160881466fd69 = function(arg0, arg1, arg2, arg3) {
|
|
5114
|
+
console.error(arg0, arg1, arg2, arg3);
|
|
5115
|
+
};
|
|
5092
5116
|
imports.wbg.__wbg_error_7534b8e9a36f1ab4 = function(arg0, arg1) {
|
|
5093
5117
|
let deferred0_0;
|
|
5094
5118
|
let deferred0_1;
|
|
@@ -5100,13 +5124,10 @@ function __wbg_get_imports() {
|
|
|
5100
5124
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
5101
5125
|
}
|
|
5102
5126
|
};
|
|
5103
|
-
imports.wbg.__wbg_error_80de38b3f7cc3c3c = function(arg0, arg1, arg2, arg3) {
|
|
5104
|
-
console.error(arg0, arg1, arg2, arg3);
|
|
5105
|
-
};
|
|
5106
5127
|
imports.wbg.__wbg_error_e98c298703cffa97 = function(arg0, arg1) {
|
|
5107
5128
|
console.error(getStringFromWasm0(arg0, arg1));
|
|
5108
5129
|
};
|
|
5109
|
-
imports.wbg.
|
|
5130
|
+
imports.wbg.__wbg_fetch_a8e43a4e138dfc93 = function(arg0, arg1) {
|
|
5110
5131
|
const ret = arg0.fetch(arg1);
|
|
5111
5132
|
return ret;
|
|
5112
5133
|
};
|
|
@@ -5114,50 +5135,50 @@ function __wbg_get_imports() {
|
|
|
5114
5135
|
const ret = fetch(arg0);
|
|
5115
5136
|
return ret;
|
|
5116
5137
|
};
|
|
5117
|
-
imports.wbg.
|
|
5138
|
+
imports.wbg.__wbg_fill_45ebe6f76c6747c9 = function(arg0, arg1, arg2, arg3) {
|
|
5118
5139
|
const ret = arg0.fill(arg1, arg2 >>> 0, arg3 >>> 0);
|
|
5119
5140
|
return ret;
|
|
5120
5141
|
};
|
|
5121
|
-
imports.wbg.
|
|
5142
|
+
imports.wbg.__wbg_flush_f0630e40db922730 = function() { return handleError(function (arg0) {
|
|
5122
5143
|
arg0.flush();
|
|
5123
5144
|
}, arguments) };
|
|
5124
|
-
imports.wbg.
|
|
5145
|
+
imports.wbg.__wbg_from_12ff8e47307bd4c7 = function(arg0) {
|
|
5125
5146
|
const ret = Array.from(arg0);
|
|
5126
5147
|
return ret;
|
|
5127
5148
|
};
|
|
5128
|
-
imports.wbg.
|
|
5149
|
+
imports.wbg.__wbg_getDate_18ccd9a4e925d3ec = function(arg0) {
|
|
5129
5150
|
const ret = arg0.getDate();
|
|
5130
5151
|
return ret;
|
|
5131
5152
|
};
|
|
5132
|
-
imports.wbg.
|
|
5153
|
+
imports.wbg.__wbg_getDay_17f53c92a7986053 = function(arg0) {
|
|
5133
5154
|
const ret = arg0.getDay();
|
|
5134
5155
|
return ret;
|
|
5135
5156
|
};
|
|
5136
|
-
imports.wbg.
|
|
5157
|
+
imports.wbg.__wbg_getDirectoryHandle_812e88ca933e7f14 = function(arg0, arg1, arg2, arg3) {
|
|
5137
5158
|
const ret = arg0.getDirectoryHandle(getStringFromWasm0(arg1, arg2), arg3);
|
|
5138
5159
|
return ret;
|
|
5139
5160
|
};
|
|
5140
|
-
imports.wbg.
|
|
5161
|
+
imports.wbg.__wbg_getDirectory_d1926c6af50076e5 = function(arg0) {
|
|
5141
5162
|
const ret = arg0.getDirectory();
|
|
5142
5163
|
return ret;
|
|
5143
5164
|
};
|
|
5144
|
-
imports.wbg.
|
|
5165
|
+
imports.wbg.__wbg_getFileHandle_1cc9e8420629773c = function(arg0, arg1, arg2, arg3) {
|
|
5145
5166
|
const ret = arg0.getFileHandle(getStringFromWasm0(arg1, arg2), arg3);
|
|
5146
5167
|
return ret;
|
|
5147
5168
|
};
|
|
5148
|
-
imports.wbg.
|
|
5169
|
+
imports.wbg.__wbg_getFullYear_1383a5751fab658e = function(arg0) {
|
|
5149
5170
|
const ret = arg0.getFullYear();
|
|
5150
5171
|
return ret;
|
|
5151
5172
|
};
|
|
5152
|
-
imports.wbg.
|
|
5173
|
+
imports.wbg.__wbg_getHours_94bc6bb5540c2b71 = function(arg0) {
|
|
5153
5174
|
const ret = arg0.getHours();
|
|
5154
5175
|
return ret;
|
|
5155
5176
|
};
|
|
5156
|
-
imports.wbg.
|
|
5177
|
+
imports.wbg.__wbg_getMinutes_92b2aadc8feb898e = function(arg0) {
|
|
5157
5178
|
const ret = arg0.getMinutes();
|
|
5158
5179
|
return ret;
|
|
5159
5180
|
};
|
|
5160
|
-
imports.wbg.
|
|
5181
|
+
imports.wbg.__wbg_getMonth_f83b359dffd5f2aa = function(arg0) {
|
|
5161
5182
|
const ret = arg0.getMonth();
|
|
5162
5183
|
return ret;
|
|
5163
5184
|
};
|
|
@@ -5174,47 +5195,47 @@ function __wbg_get_imports() {
|
|
|
5174
5195
|
const ret = arg0.getReader();
|
|
5175
5196
|
return ret;
|
|
5176
5197
|
}, arguments) };
|
|
5177
|
-
imports.wbg.
|
|
5198
|
+
imports.wbg.__wbg_getSeconds_5bedd376f55ef40c = function(arg0) {
|
|
5178
5199
|
const ret = arg0.getSeconds();
|
|
5179
5200
|
return ret;
|
|
5180
5201
|
};
|
|
5181
|
-
imports.wbg.
|
|
5202
|
+
imports.wbg.__wbg_getSize_a77eeeffdb4f3fc1 = function() { return handleError(function (arg0) {
|
|
5182
5203
|
const ret = arg0.getSize();
|
|
5183
5204
|
return ret;
|
|
5184
5205
|
}, arguments) };
|
|
5185
|
-
imports.wbg.
|
|
5206
|
+
imports.wbg.__wbg_getTime_2afe67905d873e92 = function(arg0) {
|
|
5186
5207
|
const ret = arg0.getTime();
|
|
5187
5208
|
return ret;
|
|
5188
5209
|
};
|
|
5189
|
-
imports.wbg.
|
|
5210
|
+
imports.wbg.__wbg_getTimezoneOffset_31f33c0868da345e = function(arg0) {
|
|
5190
5211
|
const ret = arg0.getTimezoneOffset();
|
|
5191
5212
|
return ret;
|
|
5192
5213
|
};
|
|
5193
|
-
imports.wbg.
|
|
5214
|
+
imports.wbg.__wbg_getUint32_b1236319485e7707 = function(arg0, arg1) {
|
|
5194
5215
|
const ret = arg0.getUint32(arg1 >>> 0);
|
|
5195
5216
|
return ret;
|
|
5196
5217
|
};
|
|
5197
|
-
imports.wbg.
|
|
5218
|
+
imports.wbg.__wbg_get_6dd1850282dd8588 = function(arg0, arg1) {
|
|
5198
5219
|
const ret = arg0.get(arg1);
|
|
5199
5220
|
return ret;
|
|
5200
5221
|
};
|
|
5201
|
-
imports.wbg.
|
|
5222
|
+
imports.wbg.__wbg_get_92470be87867c2e5 = function() { return handleError(function (arg0, arg1) {
|
|
5202
5223
|
const ret = Reflect.get(arg0, arg1);
|
|
5203
5224
|
return ret;
|
|
5204
5225
|
}, arguments) };
|
|
5205
|
-
imports.wbg.
|
|
5226
|
+
imports.wbg.__wbg_get_a131a44bd1eb6979 = function(arg0, arg1) {
|
|
5206
5227
|
const ret = arg0[arg1 >>> 0];
|
|
5207
5228
|
return ret;
|
|
5208
5229
|
};
|
|
5209
|
-
imports.wbg.
|
|
5230
|
+
imports.wbg.__wbg_getdone_8355ddb2bc75c731 = function(arg0) {
|
|
5210
5231
|
const ret = arg0.done;
|
|
5211
5232
|
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
5212
5233
|
};
|
|
5213
|
-
imports.wbg.
|
|
5234
|
+
imports.wbg.__wbg_getindex_ba5b3525ad80a881 = function(arg0, arg1) {
|
|
5214
5235
|
const ret = arg0[arg1 >>> 0];
|
|
5215
5236
|
return ret;
|
|
5216
5237
|
};
|
|
5217
|
-
imports.wbg.
|
|
5238
|
+
imports.wbg.__wbg_getvalue_c1890a401d13f00b = function(arg0) {
|
|
5218
5239
|
const ret = arg0.value;
|
|
5219
5240
|
return ret;
|
|
5220
5241
|
};
|
|
@@ -5226,15 +5247,15 @@ function __wbg_get_imports() {
|
|
|
5226
5247
|
const ret = GroupMetadata.__wrap(arg0);
|
|
5227
5248
|
return ret;
|
|
5228
5249
|
};
|
|
5229
|
-
imports.wbg.
|
|
5250
|
+
imports.wbg.__wbg_has_2dc42f1e8cb156db = function(arg0, arg1) {
|
|
5230
5251
|
const ret = arg0.has(arg1);
|
|
5231
5252
|
return ret;
|
|
5232
5253
|
};
|
|
5233
|
-
imports.wbg.
|
|
5254
|
+
imports.wbg.__wbg_has_809e438ee9d787a7 = function() { return handleError(function (arg0, arg1) {
|
|
5234
5255
|
const ret = Reflect.has(arg0, arg1);
|
|
5235
5256
|
return ret;
|
|
5236
5257
|
}, arguments) };
|
|
5237
|
-
imports.wbg.
|
|
5258
|
+
imports.wbg.__wbg_headers_0f0cbdc6290b6780 = function(arg0) {
|
|
5238
5259
|
const ret = arg0.headers;
|
|
5239
5260
|
return ret;
|
|
5240
5261
|
};
|
|
@@ -5242,10 +5263,10 @@ function __wbg_get_imports() {
|
|
|
5242
5263
|
const ret = InboxState.__wrap(arg0);
|
|
5243
5264
|
return ret;
|
|
5244
5265
|
};
|
|
5245
|
-
imports.wbg.
|
|
5266
|
+
imports.wbg.__wbg_info_a1cc312ecc877319 = function(arg0, arg1, arg2, arg3) {
|
|
5246
5267
|
console.info(arg0, arg1, arg2, arg3);
|
|
5247
5268
|
};
|
|
5248
|
-
imports.wbg.
|
|
5269
|
+
imports.wbg.__wbg_info_e56933705c348038 = function(arg0) {
|
|
5249
5270
|
console.info(arg0);
|
|
5250
5271
|
};
|
|
5251
5272
|
imports.wbg.__wbg_installation_new = function(arg0) {
|
|
@@ -5256,7 +5277,7 @@ function __wbg_get_imports() {
|
|
|
5256
5277
|
const ret = Installation.__unwrap(arg0);
|
|
5257
5278
|
return ret;
|
|
5258
5279
|
};
|
|
5259
|
-
imports.wbg.
|
|
5280
|
+
imports.wbg.__wbg_instanceof_ArrayBuffer_a8b6f580b363f2bc = function(arg0) {
|
|
5260
5281
|
let result;
|
|
5261
5282
|
try {
|
|
5262
5283
|
result = arg0 instanceof ArrayBuffer;
|
|
@@ -5266,7 +5287,7 @@ function __wbg_get_imports() {
|
|
|
5266
5287
|
const ret = result;
|
|
5267
5288
|
return ret;
|
|
5268
5289
|
};
|
|
5269
|
-
imports.wbg.
|
|
5290
|
+
imports.wbg.__wbg_instanceof_DomException_77720ed8752d7409 = function(arg0) {
|
|
5270
5291
|
let result;
|
|
5271
5292
|
try {
|
|
5272
5293
|
result = arg0 instanceof DOMException;
|
|
@@ -5276,7 +5297,7 @@ function __wbg_get_imports() {
|
|
|
5276
5297
|
const ret = result;
|
|
5277
5298
|
return ret;
|
|
5278
5299
|
};
|
|
5279
|
-
imports.wbg.
|
|
5300
|
+
imports.wbg.__wbg_instanceof_Performance_7c58d8187744b0a5 = function(arg0) {
|
|
5280
5301
|
let result;
|
|
5281
5302
|
try {
|
|
5282
5303
|
result = arg0 instanceof Performance;
|
|
@@ -5286,7 +5307,7 @@ function __wbg_get_imports() {
|
|
|
5286
5307
|
const ret = result;
|
|
5287
5308
|
return ret;
|
|
5288
5309
|
};
|
|
5289
|
-
imports.wbg.
|
|
5310
|
+
imports.wbg.__wbg_instanceof_Response_e80ce8b7a2b968d2 = function(arg0) {
|
|
5290
5311
|
let result;
|
|
5291
5312
|
try {
|
|
5292
5313
|
result = arg0 instanceof Response;
|
|
@@ -5296,7 +5317,7 @@ function __wbg_get_imports() {
|
|
|
5296
5317
|
const ret = result;
|
|
5297
5318
|
return ret;
|
|
5298
5319
|
};
|
|
5299
|
-
imports.wbg.
|
|
5320
|
+
imports.wbg.__wbg_instanceof_Uint8Array_ca460677bc155827 = function(arg0) {
|
|
5300
5321
|
let result;
|
|
5301
5322
|
try {
|
|
5302
5323
|
result = arg0 instanceof Uint8Array;
|
|
@@ -5306,7 +5327,7 @@ function __wbg_get_imports() {
|
|
|
5306
5327
|
const ret = result;
|
|
5307
5328
|
return ret;
|
|
5308
5329
|
};
|
|
5309
|
-
imports.wbg.
|
|
5330
|
+
imports.wbg.__wbg_instanceof_WorkerGlobalScope_11f8a14c11024785 = function(arg0) {
|
|
5310
5331
|
let result;
|
|
5311
5332
|
try {
|
|
5312
5333
|
result = arg0 instanceof WorkerGlobalScope;
|
|
@@ -5316,27 +5337,27 @@ function __wbg_get_imports() {
|
|
|
5316
5337
|
const ret = result;
|
|
5317
5338
|
return ret;
|
|
5318
5339
|
};
|
|
5319
|
-
imports.wbg.
|
|
5340
|
+
imports.wbg.__wbg_iterator_4068add5b2aef7a6 = function() {
|
|
5320
5341
|
const ret = Symbol.iterator;
|
|
5321
5342
|
return ret;
|
|
5322
5343
|
};
|
|
5323
|
-
imports.wbg.
|
|
5344
|
+
imports.wbg.__wbg_keys_1abdc63a39dab939 = function(arg0) {
|
|
5324
5345
|
const ret = arg0.keys();
|
|
5325
5346
|
return ret;
|
|
5326
5347
|
};
|
|
5327
|
-
imports.wbg.
|
|
5348
|
+
imports.wbg.__wbg_keys_a89709494b6fd863 = function(arg0) {
|
|
5328
5349
|
const ret = arg0.keys();
|
|
5329
5350
|
return ret;
|
|
5330
5351
|
};
|
|
5331
|
-
imports.wbg.
|
|
5352
|
+
imports.wbg.__wbg_length_0ca5b4c83d5d9721 = function(arg0) {
|
|
5332
5353
|
const ret = arg0.length;
|
|
5333
5354
|
return ret;
|
|
5334
5355
|
};
|
|
5335
|
-
imports.wbg.
|
|
5356
|
+
imports.wbg.__wbg_length_ab6d22b5ead75c72 = function(arg0) {
|
|
5336
5357
|
const ret = arg0.length;
|
|
5337
5358
|
return ret;
|
|
5338
5359
|
};
|
|
5339
|
-
imports.wbg.
|
|
5360
|
+
imports.wbg.__wbg_length_f00ec12454a5d9fd = function(arg0) {
|
|
5340
5361
|
const ret = arg0.length;
|
|
5341
5362
|
return ret;
|
|
5342
5363
|
};
|
|
@@ -5352,7 +5373,7 @@ function __wbg_get_imports() {
|
|
|
5352
5373
|
imports.wbg.__wbg_measure_7728846525e2cced = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
5353
5374
|
arg0.measure(getStringFromWasm0(arg1, arg2), arg3);
|
|
5354
5375
|
}, arguments) };
|
|
5355
|
-
imports.wbg.
|
|
5376
|
+
imports.wbg.__wbg_message_2d95ea5aff0d63b9 = function(arg0, arg1) {
|
|
5356
5377
|
const ret = arg1.message;
|
|
5357
5378
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
5358
5379
|
const len1 = WASM_VECTOR_LEN;
|
|
@@ -5375,33 +5396,69 @@ function __wbg_get_imports() {
|
|
|
5375
5396
|
const ret = arg0.msCrypto;
|
|
5376
5397
|
return ret;
|
|
5377
5398
|
};
|
|
5378
|
-
imports.wbg.
|
|
5399
|
+
imports.wbg.__wbg_name_2acff1e83d9735f9 = function(arg0, arg1) {
|
|
5379
5400
|
const ret = arg1.name;
|
|
5380
5401
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
5381
5402
|
const len1 = WASM_VECTOR_LEN;
|
|
5382
5403
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
5383
5404
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
5384
5405
|
};
|
|
5385
|
-
imports.wbg.
|
|
5406
|
+
imports.wbg.__wbg_navigator_6db993f5ffeb46be = function(arg0) {
|
|
5386
5407
|
const ret = arg0.navigator;
|
|
5387
5408
|
return ret;
|
|
5388
5409
|
};
|
|
5389
|
-
imports.wbg.
|
|
5410
|
+
imports.wbg.__wbg_new0_97314565408dea38 = function() {
|
|
5390
5411
|
const ret = new Date();
|
|
5391
5412
|
return ret;
|
|
5392
5413
|
};
|
|
5393
|
-
imports.wbg.
|
|
5414
|
+
imports.wbg.__wbg_new_07b483f72211fd66 = function() {
|
|
5415
|
+
const ret = new Object();
|
|
5416
|
+
return ret;
|
|
5417
|
+
};
|
|
5418
|
+
imports.wbg.__wbg_new_186abcfdff244e42 = function() { return handleError(function () {
|
|
5419
|
+
const ret = new AbortController();
|
|
5420
|
+
return ret;
|
|
5421
|
+
}, arguments) };
|
|
5422
|
+
imports.wbg.__wbg_new_476169e6d59f23ae = function(arg0, arg1) {
|
|
5423
|
+
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
5424
|
+
return ret;
|
|
5425
|
+
};
|
|
5426
|
+
imports.wbg.__wbg_new_4796e1cd2eb9ea6d = function() { return handleError(function () {
|
|
5394
5427
|
const ret = new Headers();
|
|
5395
5428
|
return ret;
|
|
5396
5429
|
}, arguments) };
|
|
5397
|
-
imports.wbg.
|
|
5430
|
+
imports.wbg.__wbg_new_5069c49f18141a33 = function(arg0, arg1, arg2) {
|
|
5431
|
+
const ret = new DataView(arg0, arg1 >>> 0, arg2 >>> 0);
|
|
5432
|
+
return ret;
|
|
5433
|
+
};
|
|
5434
|
+
imports.wbg.__wbg_new_58353953ad2097cc = function() {
|
|
5435
|
+
const ret = new Array();
|
|
5436
|
+
return ret;
|
|
5437
|
+
};
|
|
5438
|
+
imports.wbg.__wbg_new_8a6f238a6ece86ea = function() {
|
|
5439
|
+
const ret = new Error();
|
|
5440
|
+
return ret;
|
|
5441
|
+
};
|
|
5442
|
+
imports.wbg.__wbg_new_a2957aa5684de228 = function(arg0) {
|
|
5443
|
+
const ret = new Date(arg0);
|
|
5444
|
+
return ret;
|
|
5445
|
+
};
|
|
5446
|
+
imports.wbg.__wbg_new_a979b4b45bd55c7f = function() {
|
|
5447
|
+
const ret = new Map();
|
|
5448
|
+
return ret;
|
|
5449
|
+
};
|
|
5450
|
+
imports.wbg.__wbg_new_db7d9b0ee94df522 = function(arg0) {
|
|
5451
|
+
const ret = new Set(arg0);
|
|
5452
|
+
return ret;
|
|
5453
|
+
};
|
|
5454
|
+
imports.wbg.__wbg_new_e30c39c06edaabf2 = function(arg0, arg1) {
|
|
5398
5455
|
try {
|
|
5399
5456
|
var state0 = {a: arg0, b: arg1};
|
|
5400
5457
|
var cb0 = (arg0, arg1) => {
|
|
5401
5458
|
const a = state0.a;
|
|
5402
5459
|
state0.a = 0;
|
|
5403
5460
|
try {
|
|
5404
|
-
return
|
|
5461
|
+
return __wbg_adapter_791(a, state0.b, arg0, arg1);
|
|
5405
5462
|
} finally {
|
|
5406
5463
|
state0.a = a;
|
|
5407
5464
|
}
|
|
@@ -5412,51 +5469,19 @@ function __wbg_get_imports() {
|
|
|
5412
5469
|
state0.a = state0.b = 0;
|
|
5413
5470
|
}
|
|
5414
5471
|
};
|
|
5415
|
-
imports.wbg.
|
|
5416
|
-
const ret = new Date(arg0);
|
|
5417
|
-
return ret;
|
|
5418
|
-
};
|
|
5419
|
-
imports.wbg.__wbg_new_405e22f390576ce2 = function() {
|
|
5420
|
-
const ret = new Object();
|
|
5421
|
-
return ret;
|
|
5422
|
-
};
|
|
5423
|
-
imports.wbg.__wbg_new_5e0be73521bc8c17 = function() {
|
|
5424
|
-
const ret = new Map();
|
|
5425
|
-
return ret;
|
|
5426
|
-
};
|
|
5427
|
-
imports.wbg.__wbg_new_78feb108b6472713 = function() {
|
|
5428
|
-
const ret = new Array();
|
|
5429
|
-
return ret;
|
|
5430
|
-
};
|
|
5431
|
-
imports.wbg.__wbg_new_7e079fa25e135eb1 = function(arg0, arg1, arg2) {
|
|
5432
|
-
const ret = new DataView(arg0, arg1 >>> 0, arg2 >>> 0);
|
|
5433
|
-
return ret;
|
|
5434
|
-
};
|
|
5435
|
-
imports.wbg.__wbg_new_8a6f238a6ece86ea = function() {
|
|
5436
|
-
const ret = new Error();
|
|
5437
|
-
return ret;
|
|
5438
|
-
};
|
|
5439
|
-
imports.wbg.__wbg_new_a12002a7f91c75be = function(arg0) {
|
|
5472
|
+
imports.wbg.__wbg_new_e52b3efaaa774f96 = function(arg0) {
|
|
5440
5473
|
const ret = new Uint8Array(arg0);
|
|
5441
5474
|
return ret;
|
|
5442
5475
|
};
|
|
5443
|
-
imports.wbg.
|
|
5444
|
-
const ret = new
|
|
5476
|
+
imports.wbg.__wbg_newfromslice_7c05ab1297cb2d88 = function(arg0, arg1) {
|
|
5477
|
+
const ret = new Uint8Array(getArrayU8FromWasm0(arg0, arg1));
|
|
5445
5478
|
return ret;
|
|
5446
5479
|
};
|
|
5447
|
-
imports.wbg.
|
|
5448
|
-
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
5449
|
-
return ret;
|
|
5450
|
-
};
|
|
5451
|
-
imports.wbg.__wbg_new_e25e5aab09ff45db = function() { return handleError(function () {
|
|
5452
|
-
const ret = new AbortController();
|
|
5453
|
-
return ret;
|
|
5454
|
-
}, arguments) };
|
|
5455
|
-
imports.wbg.__wbg_newnoargs_105ed471475aaf50 = function(arg0, arg1) {
|
|
5480
|
+
imports.wbg.__wbg_newnoargs_ff528e72d35de39a = function(arg0, arg1) {
|
|
5456
5481
|
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
5457
5482
|
return ret;
|
|
5458
5483
|
};
|
|
5459
|
-
imports.wbg.
|
|
5484
|
+
imports.wbg.__wbg_newwithbyteoffsetandlength_3b01ecda099177e8 = function(arg0, arg1, arg2) {
|
|
5460
5485
|
const ret = new Uint8Array(arg0, arg1 >>> 0, arg2 >>> 0);
|
|
5461
5486
|
return ret;
|
|
5462
5487
|
};
|
|
@@ -5464,27 +5489,27 @@ function __wbg_get_imports() {
|
|
|
5464
5489
|
const ret = new ReadableStream(IntoUnderlyingSource.__wrap(arg0), arg1);
|
|
5465
5490
|
return ret;
|
|
5466
5491
|
};
|
|
5467
|
-
imports.wbg.
|
|
5492
|
+
imports.wbg.__wbg_newwithlength_08f872dc1e3ada2e = function(arg0) {
|
|
5468
5493
|
const ret = new Uint8Array(arg0 >>> 0);
|
|
5469
5494
|
return ret;
|
|
5470
5495
|
};
|
|
5471
|
-
imports.wbg.
|
|
5496
|
+
imports.wbg.__wbg_newwithstrandinit_f8a9dbe009d6be37 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
5472
5497
|
const ret = new Request(getStringFromWasm0(arg0, arg1), arg2);
|
|
5473
5498
|
return ret;
|
|
5474
5499
|
}, arguments) };
|
|
5475
|
-
imports.wbg.
|
|
5500
|
+
imports.wbg.__wbg_newwithyearmonthday_eb1c560e7c1fb22a = function(arg0, arg1, arg2) {
|
|
5476
5501
|
const ret = new Date(arg0 >>> 0, arg1, arg2);
|
|
5477
5502
|
return ret;
|
|
5478
5503
|
};
|
|
5479
|
-
imports.wbg.
|
|
5504
|
+
imports.wbg.__wbg_next_8bb824d217961b5d = function(arg0) {
|
|
5480
5505
|
const ret = arg0.next;
|
|
5481
5506
|
return ret;
|
|
5482
5507
|
};
|
|
5483
|
-
imports.wbg.
|
|
5508
|
+
imports.wbg.__wbg_next_9eb6fe77da3db3a2 = function() { return handleError(function (arg0) {
|
|
5484
5509
|
const ret = arg0.next();
|
|
5485
5510
|
return ret;
|
|
5486
5511
|
}, arguments) };
|
|
5487
|
-
imports.wbg.
|
|
5512
|
+
imports.wbg.__wbg_next_e2da48d8fff7439a = function() { return handleError(function (arg0) {
|
|
5488
5513
|
const ret = arg0.next();
|
|
5489
5514
|
return ret;
|
|
5490
5515
|
}, arguments) };
|
|
@@ -5501,30 +5526,30 @@ function __wbg_get_imports() {
|
|
|
5501
5526
|
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
5502
5527
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
5503
5528
|
};
|
|
5504
|
-
imports.wbg.
|
|
5505
|
-
const ret =
|
|
5529
|
+
imports.wbg.__wbg_now_7ab37f05ab2d0b81 = function(arg0) {
|
|
5530
|
+
const ret = arg0.now();
|
|
5506
5531
|
return ret;
|
|
5507
5532
|
};
|
|
5508
|
-
imports.wbg.
|
|
5509
|
-
const ret =
|
|
5533
|
+
imports.wbg.__wbg_now_eb0821f3bd9f6529 = function() {
|
|
5534
|
+
const ret = Date.now();
|
|
5510
5535
|
return ret;
|
|
5511
5536
|
};
|
|
5512
|
-
imports.wbg.
|
|
5537
|
+
imports.wbg.__wbg_onclose_b7ed02559940a5eb = function(arg0) {
|
|
5513
5538
|
arg0.on_close();
|
|
5514
5539
|
};
|
|
5515
|
-
imports.wbg.
|
|
5540
|
+
imports.wbg.__wbg_onconsentupdate_2412c92b95ebbe78 = function(arg0, arg1) {
|
|
5516
5541
|
arg0.on_consent_update(arg1);
|
|
5517
5542
|
};
|
|
5518
|
-
imports.wbg.
|
|
5543
|
+
imports.wbg.__wbg_onconversation_1d7d21a03e063559 = function(arg0, arg1) {
|
|
5519
5544
|
arg0.on_conversation(Conversation.__wrap(arg1));
|
|
5520
5545
|
};
|
|
5521
|
-
imports.wbg.
|
|
5546
|
+
imports.wbg.__wbg_onerror_0d00fc3cad1d68be = function(arg0, arg1) {
|
|
5522
5547
|
arg0.on_error(arg1);
|
|
5523
5548
|
};
|
|
5524
|
-
imports.wbg.
|
|
5549
|
+
imports.wbg.__wbg_onmessage_af597d17994e6c9d = function(arg0, arg1) {
|
|
5525
5550
|
arg0.on_message(Message.__wrap(arg1));
|
|
5526
5551
|
};
|
|
5527
|
-
imports.wbg.
|
|
5552
|
+
imports.wbg.__wbg_onuserpreferenceupdate_2e7fadd7148f9b1e = function(arg0, arg1, arg2) {
|
|
5528
5553
|
var v0 = getArrayJsValueFromWasm0(arg1, arg2).slice();
|
|
5529
5554
|
wasm.__wbindgen_free(arg1, arg2 * 4, 4);
|
|
5530
5555
|
arg0.on_user_preference_update(v0);
|
|
@@ -5537,44 +5562,44 @@ function __wbg_get_imports() {
|
|
|
5537
5562
|
const ret = arg0.performance;
|
|
5538
5563
|
return ret;
|
|
5539
5564
|
};
|
|
5540
|
-
imports.wbg.
|
|
5565
|
+
imports.wbg.__wbg_postMessage_54ce7f4b41ac732e = function() { return handleError(function (arg0, arg1) {
|
|
5541
5566
|
arg0.postMessage(arg1);
|
|
5542
5567
|
}, arguments) };
|
|
5543
5568
|
imports.wbg.__wbg_process_dc0fbacc7c1c06f7 = function(arg0) {
|
|
5544
5569
|
const ret = arg0.process;
|
|
5545
5570
|
return ret;
|
|
5546
5571
|
};
|
|
5547
|
-
imports.wbg.
|
|
5572
|
+
imports.wbg.__wbg_push_73fd7b5550ebf707 = function(arg0, arg1) {
|
|
5548
5573
|
const ret = arg0.push(arg1);
|
|
5549
5574
|
return ret;
|
|
5550
5575
|
};
|
|
5551
|
-
imports.wbg.
|
|
5576
|
+
imports.wbg.__wbg_queueMicrotask_46c1df247678729f = function(arg0) {
|
|
5552
5577
|
queueMicrotask(arg0);
|
|
5553
5578
|
};
|
|
5554
|
-
imports.wbg.
|
|
5579
|
+
imports.wbg.__wbg_queueMicrotask_8acf3ccb75ed8d11 = function(arg0) {
|
|
5555
5580
|
const ret = arg0.queueMicrotask;
|
|
5556
5581
|
return ret;
|
|
5557
5582
|
};
|
|
5558
5583
|
imports.wbg.__wbg_randomFillSync_ac0988aba3254290 = function() { return handleError(function (arg0, arg1) {
|
|
5559
5584
|
arg0.randomFillSync(arg1);
|
|
5560
5585
|
}, arguments) };
|
|
5561
|
-
imports.wbg.
|
|
5586
|
+
imports.wbg.__wbg_random_210bb7fbfa33591d = function() {
|
|
5562
5587
|
const ret = Math.random();
|
|
5563
5588
|
return ret;
|
|
5564
5589
|
};
|
|
5565
|
-
imports.wbg.
|
|
5590
|
+
imports.wbg.__wbg_read_4dbc5a78288c4eed = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
5591
|
+
const ret = arg0.read(getArrayU8FromWasm0(arg1, arg2), arg3);
|
|
5592
|
+
return ret;
|
|
5593
|
+
}, arguments) };
|
|
5594
|
+
imports.wbg.__wbg_read_8eb30fc4016403e0 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
5566
5595
|
const ret = arg0.read(arg1, arg2);
|
|
5567
5596
|
return ret;
|
|
5568
5597
|
}, arguments) };
|
|
5569
|
-
imports.wbg.
|
|
5598
|
+
imports.wbg.__wbg_read_f4b89f69cc51efc7 = function(arg0) {
|
|
5570
5599
|
const ret = arg0.read();
|
|
5571
5600
|
return ret;
|
|
5572
5601
|
};
|
|
5573
|
-
imports.wbg.
|
|
5574
|
-
const ret = arg0.read(getArrayU8FromWasm0(arg1, arg2), arg3);
|
|
5575
|
-
return ret;
|
|
5576
|
-
}, arguments) };
|
|
5577
|
-
imports.wbg.__wbg_releaseLock_091899af97991d2e = function(arg0) {
|
|
5602
|
+
imports.wbg.__wbg_releaseLock_c589dd51c0812aca = function(arg0) {
|
|
5578
5603
|
arg0.releaseLock();
|
|
5579
5604
|
};
|
|
5580
5605
|
imports.wbg.__wbg_remoteattachmentinfo_new = function(arg0) {
|
|
@@ -5585,7 +5610,7 @@ function __wbg_get_imports() {
|
|
|
5585
5610
|
const ret = RemoteAttachmentInfo.__unwrap(arg0);
|
|
5586
5611
|
return ret;
|
|
5587
5612
|
};
|
|
5588
|
-
imports.wbg.
|
|
5613
|
+
imports.wbg.__wbg_removeEntry_ddd726e5b0218482 = function(arg0, arg1, arg2) {
|
|
5589
5614
|
const ret = arg0.removeEntry(getStringFromWasm0(arg1, arg2));
|
|
5590
5615
|
return ret;
|
|
5591
5616
|
};
|
|
@@ -5593,11 +5618,11 @@ function __wbg_get_imports() {
|
|
|
5593
5618
|
const ret = module.require;
|
|
5594
5619
|
return ret;
|
|
5595
5620
|
}, arguments) };
|
|
5596
|
-
imports.wbg.
|
|
5621
|
+
imports.wbg.__wbg_resolve_0dac8c580ffd4678 = function(arg0) {
|
|
5597
5622
|
const ret = Promise.resolve(arg0);
|
|
5598
5623
|
return ret;
|
|
5599
5624
|
};
|
|
5600
|
-
imports.wbg.
|
|
5625
|
+
imports.wbg.__wbg_respond_b227f1c3be2bb879 = function() { return handleError(function (arg0, arg1) {
|
|
5601
5626
|
arg0.respond(arg1 >>> 0);
|
|
5602
5627
|
}, arguments) };
|
|
5603
5628
|
imports.wbg.__wbg_setInterval_ed3b5e3c3ebb8a6d = function() { return handleError(function (arg0, arg1) {
|
|
@@ -5615,60 +5640,60 @@ function __wbg_get_imports() {
|
|
|
5615
5640
|
const ret = setTimeout(arg0, arg1);
|
|
5616
5641
|
return ret;
|
|
5617
5642
|
}, arguments) };
|
|
5618
|
-
imports.wbg.
|
|
5643
|
+
imports.wbg.__wbg_setUint32_909f117d6d6c4344 = function(arg0, arg1, arg2) {
|
|
5619
5644
|
arg0.setUint32(arg1 >>> 0, arg2 >>> 0);
|
|
5620
5645
|
};
|
|
5621
|
-
imports.wbg.__wbg_set_37837023f3d740e8 = function(arg0, arg1, arg2) {
|
|
5622
|
-
arg0[arg1 >>> 0] = arg2;
|
|
5623
|
-
};
|
|
5624
5646
|
imports.wbg.__wbg_set_3f1d0b984ed272ed = function(arg0, arg1, arg2) {
|
|
5625
5647
|
arg0[arg1] = arg2;
|
|
5626
5648
|
};
|
|
5627
|
-
imports.wbg.
|
|
5628
|
-
arg0
|
|
5629
|
-
};
|
|
5630
|
-
imports.wbg.__wbg_set_8fc6bf8a5b1071d1 = function(arg0, arg1, arg2) {
|
|
5631
|
-
const ret = arg0.set(arg1, arg2);
|
|
5632
|
-
return ret;
|
|
5649
|
+
imports.wbg.__wbg_set_7422acbe992d64ab = function(arg0, arg1, arg2) {
|
|
5650
|
+
arg0[arg1 >>> 0] = arg2;
|
|
5633
5651
|
};
|
|
5634
|
-
imports.wbg.
|
|
5652
|
+
imports.wbg.__wbg_set_c43293f93a35998a = function() { return handleError(function (arg0, arg1, arg2) {
|
|
5635
5653
|
const ret = Reflect.set(arg0, arg1, arg2);
|
|
5636
5654
|
return ret;
|
|
5637
5655
|
}, arguments) };
|
|
5638
|
-
imports.wbg.
|
|
5656
|
+
imports.wbg.__wbg_set_d6bdfd275fb8a4ce = function(arg0, arg1, arg2) {
|
|
5657
|
+
const ret = arg0.set(arg1, arg2);
|
|
5658
|
+
return ret;
|
|
5659
|
+
};
|
|
5660
|
+
imports.wbg.__wbg_set_fe4e79d1ed3b0e9b = function(arg0, arg1, arg2) {
|
|
5661
|
+
arg0.set(arg1, arg2 >>> 0);
|
|
5662
|
+
};
|
|
5663
|
+
imports.wbg.__wbg_setat_2d0d9be3db4207a9 = function(arg0, arg1) {
|
|
5639
5664
|
arg0.at = arg1;
|
|
5640
5665
|
};
|
|
5641
|
-
imports.wbg.
|
|
5666
|
+
imports.wbg.__wbg_setbody_971ec015fc13d6b4 = function(arg0, arg1) {
|
|
5642
5667
|
arg0.body = arg1;
|
|
5643
5668
|
};
|
|
5644
|
-
imports.wbg.
|
|
5669
|
+
imports.wbg.__wbg_setcache_a94cd14dc0cc72a2 = function(arg0, arg1) {
|
|
5645
5670
|
arg0.cache = __wbindgen_enum_RequestCache[arg1];
|
|
5646
5671
|
};
|
|
5647
|
-
imports.wbg.
|
|
5672
|
+
imports.wbg.__wbg_setcreate_62b7d997a9936969 = function(arg0, arg1) {
|
|
5648
5673
|
arg0.create = arg1 !== 0;
|
|
5649
5674
|
};
|
|
5650
|
-
imports.wbg.
|
|
5675
|
+
imports.wbg.__wbg_setcreate_dcf97058ed33f8f0 = function(arg0, arg1) {
|
|
5651
5676
|
arg0.create = arg1 !== 0;
|
|
5652
5677
|
};
|
|
5653
|
-
imports.wbg.
|
|
5678
|
+
imports.wbg.__wbg_setcredentials_920d91fb5984c94a = function(arg0, arg1) {
|
|
5654
5679
|
arg0.credentials = __wbindgen_enum_RequestCredentials[arg1];
|
|
5655
5680
|
};
|
|
5656
|
-
imports.wbg.
|
|
5681
|
+
imports.wbg.__wbg_setheaders_65a4eb4c0443ae61 = function(arg0, arg1) {
|
|
5657
5682
|
arg0.headers = arg1;
|
|
5658
5683
|
};
|
|
5659
|
-
imports.wbg.
|
|
5684
|
+
imports.wbg.__wbg_sethighwatermark_3017ad772d071dcb = function(arg0, arg1) {
|
|
5660
5685
|
arg0.highWaterMark = arg1;
|
|
5661
5686
|
};
|
|
5662
|
-
imports.wbg.
|
|
5687
|
+
imports.wbg.__wbg_setmethod_8ce1be0b4d701b7c = function(arg0, arg1, arg2) {
|
|
5663
5688
|
arg0.method = getStringFromWasm0(arg1, arg2);
|
|
5664
5689
|
};
|
|
5665
|
-
imports.wbg.
|
|
5690
|
+
imports.wbg.__wbg_setmode_bd35f026f55b6247 = function(arg0, arg1) {
|
|
5666
5691
|
arg0.mode = __wbindgen_enum_RequestMode[arg1];
|
|
5667
5692
|
};
|
|
5668
|
-
imports.wbg.
|
|
5693
|
+
imports.wbg.__wbg_setsignal_8e72abfe7ee03c97 = function(arg0, arg1) {
|
|
5669
5694
|
arg0.signal = arg1;
|
|
5670
5695
|
};
|
|
5671
|
-
imports.wbg.
|
|
5696
|
+
imports.wbg.__wbg_signal_b96223519a041faa = function(arg0) {
|
|
5672
5697
|
const ret = arg0.signal;
|
|
5673
5698
|
return ret;
|
|
5674
5699
|
};
|
|
@@ -5676,11 +5701,11 @@ function __wbg_get_imports() {
|
|
|
5676
5701
|
const ret = SignatureRequestHandle.__wrap(arg0);
|
|
5677
5702
|
return ret;
|
|
5678
5703
|
};
|
|
5679
|
-
imports.wbg.
|
|
5704
|
+
imports.wbg.__wbg_size_e6e036b6b1285ed9 = function(arg0) {
|
|
5680
5705
|
const ret = arg0.size;
|
|
5681
5706
|
return ret;
|
|
5682
5707
|
};
|
|
5683
|
-
imports.wbg.
|
|
5708
|
+
imports.wbg.__wbg_slice_3b17e1df768365f2 = function(arg0, arg1, arg2) {
|
|
5684
5709
|
const ret = arg0.slice(arg1 >>> 0, arg2 >>> 0);
|
|
5685
5710
|
return ret;
|
|
5686
5711
|
};
|
|
@@ -5691,51 +5716,51 @@ function __wbg_get_imports() {
|
|
|
5691
5716
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
5692
5717
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
5693
5718
|
};
|
|
5694
|
-
imports.wbg.
|
|
5719
|
+
imports.wbg.__wbg_static_accessor_GLOBAL_487c52c58d65314d = function() {
|
|
5695
5720
|
const ret = typeof global === 'undefined' ? null : global;
|
|
5696
5721
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
5697
5722
|
};
|
|
5698
|
-
imports.wbg.
|
|
5723
|
+
imports.wbg.__wbg_static_accessor_GLOBAL_THIS_ee9704f328b6b291 = function() {
|
|
5699
5724
|
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
|
5700
5725
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
5701
5726
|
};
|
|
5702
|
-
imports.wbg.
|
|
5727
|
+
imports.wbg.__wbg_static_accessor_SELF_78c9e3071b912620 = function() {
|
|
5703
5728
|
const ret = typeof self === 'undefined' ? null : self;
|
|
5704
5729
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
5705
5730
|
};
|
|
5706
|
-
imports.wbg.
|
|
5731
|
+
imports.wbg.__wbg_static_accessor_WINDOW_a093d21393777366 = function() {
|
|
5707
5732
|
const ret = typeof window === 'undefined' ? null : window;
|
|
5708
5733
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
5709
5734
|
};
|
|
5710
|
-
imports.wbg.
|
|
5735
|
+
imports.wbg.__wbg_status_a54682bbe52f9058 = function(arg0) {
|
|
5711
5736
|
const ret = arg0.status;
|
|
5712
5737
|
return ret;
|
|
5713
5738
|
};
|
|
5714
|
-
imports.wbg.
|
|
5739
|
+
imports.wbg.__wbg_storage_52b923037fa3d04c = function(arg0) {
|
|
5715
5740
|
const ret = arg0.storage;
|
|
5716
5741
|
return ret;
|
|
5717
5742
|
};
|
|
5718
|
-
imports.wbg.
|
|
5743
|
+
imports.wbg.__wbg_stringify_c242842b97f054cc = function() { return handleError(function (arg0) {
|
|
5719
5744
|
const ret = JSON.stringify(arg0);
|
|
5720
5745
|
return ret;
|
|
5721
5746
|
}, arguments) };
|
|
5722
|
-
imports.wbg.
|
|
5747
|
+
imports.wbg.__wbg_subarray_dd4ade7d53bd8e26 = function(arg0, arg1, arg2) {
|
|
5723
5748
|
const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0);
|
|
5724
5749
|
return ret;
|
|
5725
5750
|
};
|
|
5726
|
-
imports.wbg.
|
|
5751
|
+
imports.wbg.__wbg_text_ec0e22f60e30dd2f = function() { return handleError(function (arg0) {
|
|
5727
5752
|
const ret = arg0.text();
|
|
5728
5753
|
return ret;
|
|
5729
5754
|
}, arguments) };
|
|
5730
|
-
imports.wbg.
|
|
5731
|
-
const ret = arg0.then(arg1);
|
|
5755
|
+
imports.wbg.__wbg_then_82ab9fb4080f1707 = function(arg0, arg1, arg2) {
|
|
5756
|
+
const ret = arg0.then(arg1, arg2);
|
|
5732
5757
|
return ret;
|
|
5733
5758
|
};
|
|
5734
|
-
imports.wbg.
|
|
5735
|
-
const ret = arg0.then(arg1
|
|
5759
|
+
imports.wbg.__wbg_then_db882932c0c714c6 = function(arg0, arg1) {
|
|
5760
|
+
const ret = arg0.then(arg1);
|
|
5736
5761
|
return ret;
|
|
5737
5762
|
};
|
|
5738
|
-
imports.wbg.
|
|
5763
|
+
imports.wbg.__wbg_toString_e2fd3ab0d7a3919b = function() { return handleError(function (arg0, arg1) {
|
|
5739
5764
|
const ret = arg0.toString(arg1);
|
|
5740
5765
|
return ret;
|
|
5741
5766
|
}, arguments) };
|
|
@@ -5745,20 +5770,20 @@ function __wbg_get_imports() {
|
|
|
5745
5770
|
imports.wbg.__wbg_toU8Slice_11519abfa5176ae4 = function(arg0, arg1, arg2, arg3) {
|
|
5746
5771
|
JSArrayBufferCopy.toU8Slice(arg0, arg1, arg2 >>> 0, arg3 >>> 0);
|
|
5747
5772
|
};
|
|
5748
|
-
imports.wbg.
|
|
5749
|
-
arg0.truncate(arg1 >>> 0);
|
|
5750
|
-
}, arguments) };
|
|
5751
|
-
imports.wbg.__wbg_truncate_4e1b09a0538f4ac4 = function() { return handleError(function (arg0, arg1) {
|
|
5773
|
+
imports.wbg.__wbg_truncate_015f5d17c33dc013 = function() { return handleError(function (arg0, arg1) {
|
|
5752
5774
|
arg0.truncate(arg1);
|
|
5753
5775
|
}, arguments) };
|
|
5754
|
-
imports.wbg.
|
|
5776
|
+
imports.wbg.__wbg_truncate_1b4fd52305f619d7 = function() { return handleError(function (arg0, arg1) {
|
|
5777
|
+
arg0.truncate(arg1 >>> 0);
|
|
5778
|
+
}, arguments) };
|
|
5779
|
+
imports.wbg.__wbg_url_e6ed869ea05b7a71 = function(arg0, arg1) {
|
|
5755
5780
|
const ret = arg1.url;
|
|
5756
5781
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
5757
5782
|
const len1 = WASM_VECTOR_LEN;
|
|
5758
5783
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
5759
5784
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
5760
5785
|
};
|
|
5761
|
-
imports.wbg.
|
|
5786
|
+
imports.wbg.__wbg_value_17b896954e14f896 = function(arg0) {
|
|
5762
5787
|
const ret = arg0.value;
|
|
5763
5788
|
return ret;
|
|
5764
5789
|
};
|
|
@@ -5766,22 +5791,22 @@ function __wbg_get_imports() {
|
|
|
5766
5791
|
const ret = arg0.versions;
|
|
5767
5792
|
return ret;
|
|
5768
5793
|
};
|
|
5769
|
-
imports.wbg.
|
|
5794
|
+
imports.wbg.__wbg_view_a9ad80dcbad7cf1c = function(arg0) {
|
|
5770
5795
|
const ret = arg0.view;
|
|
5771
5796
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
5772
5797
|
};
|
|
5773
|
-
imports.wbg.
|
|
5774
|
-
console.warn(arg0);
|
|
5775
|
-
};
|
|
5776
|
-
imports.wbg.__wbg_warn_aaf1f4664a035bd6 = function(arg0, arg1, arg2, arg3) {
|
|
5798
|
+
imports.wbg.__wbg_warn_90607373221a6b1c = function(arg0, arg1, arg2, arg3) {
|
|
5777
5799
|
console.warn(arg0, arg1, arg2, arg3);
|
|
5778
5800
|
};
|
|
5779
|
-
imports.wbg.
|
|
5780
|
-
|
|
5801
|
+
imports.wbg.__wbg_warn_d89f6637da554c8d = function(arg0) {
|
|
5802
|
+
console.warn(arg0);
|
|
5803
|
+
};
|
|
5804
|
+
imports.wbg.__wbg_write_0afe3c9463f48fc5 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
5805
|
+
const ret = arg0.write(arg1, arg2);
|
|
5781
5806
|
return ret;
|
|
5782
5807
|
}, arguments) };
|
|
5783
|
-
imports.wbg.
|
|
5784
|
-
const ret = arg0.write(arg1, arg2);
|
|
5808
|
+
imports.wbg.__wbg_write_20973b686f7a7721 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
5809
|
+
const ret = arg0.write(getArrayU8FromWasm0(arg1, arg2), arg3);
|
|
5785
5810
|
return ret;
|
|
5786
5811
|
}, arguments) };
|
|
5787
5812
|
imports.wbg.__wbindgen_array_new = function() {
|
|
@@ -5813,16 +5838,16 @@ function __wbg_get_imports() {
|
|
|
5813
5838
|
const ret = false;
|
|
5814
5839
|
return ret;
|
|
5815
5840
|
};
|
|
5816
|
-
imports.wbg.
|
|
5817
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
5841
|
+
imports.wbg.__wbindgen_closure_wrapper20697 = function(arg0, arg1, arg2) {
|
|
5842
|
+
const ret = makeMutClosure(arg0, arg1, 5064, __wbg_adapter_48);
|
|
5818
5843
|
return ret;
|
|
5819
5844
|
};
|
|
5820
|
-
imports.wbg.
|
|
5821
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
5845
|
+
imports.wbg.__wbindgen_closure_wrapper22828 = function(arg0, arg1, arg2) {
|
|
5846
|
+
const ret = makeMutClosure(arg0, arg1, 5325, __wbg_adapter_51);
|
|
5822
5847
|
return ret;
|
|
5823
5848
|
};
|
|
5824
|
-
imports.wbg.
|
|
5825
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
5849
|
+
imports.wbg.__wbindgen_closure_wrapper23457 = function(arg0, arg1, arg2) {
|
|
5850
|
+
const ret = makeMutClosure(arg0, arg1, 5338, __wbg_adapter_54);
|
|
5826
5851
|
return ret;
|
|
5827
5852
|
};
|
|
5828
5853
|
imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
|
|
@@ -5832,10 +5857,6 @@ function __wbg_get_imports() {
|
|
|
5832
5857
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
5833
5858
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
5834
5859
|
};
|
|
5835
|
-
imports.wbg.__wbindgen_error_new = function(arg0, arg1) {
|
|
5836
|
-
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
5837
|
-
return ret;
|
|
5838
|
-
};
|
|
5839
5860
|
imports.wbg.__wbindgen_in = function(arg0, arg1) {
|
|
5840
5861
|
const ret = arg0 in arg1;
|
|
5841
5862
|
return ret;
|