@xmtp/wasm-bindings 1.10.0-rc2 → 1.11.0-dev.b5cdc06
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 +217 -111
- package/dist/bindings_wasm.js +451 -414
- package/dist/bindings_wasm_bg.wasm +0 -0
- package/dist/bindings_wasm_bg.wasm.d.ts +108 -108
- package/package.json +3 -4
package/dist/bindings_wasm.js
CHANGED
|
@@ -29,7 +29,7 @@ export class AuthHandle {
|
|
|
29
29
|
}
|
|
30
30
|
constructor() {
|
|
31
31
|
const ret = wasm.authhandle_new();
|
|
32
|
-
this.__wbg_ptr = ret
|
|
32
|
+
this.__wbg_ptr = ret;
|
|
33
33
|
AuthHandleFinalization.register(this, this.__wbg_ptr, this);
|
|
34
34
|
return this;
|
|
35
35
|
}
|
|
@@ -46,7 +46,6 @@ if (Symbol.dispose) AuthHandle.prototype[Symbol.dispose] = AuthHandle.prototype.
|
|
|
46
46
|
|
|
47
47
|
export class Backend {
|
|
48
48
|
static __wrap(ptr) {
|
|
49
|
-
ptr = ptr >>> 0;
|
|
50
49
|
const obj = Object.create(Backend.prototype);
|
|
51
50
|
obj.__wbg_ptr = ptr;
|
|
52
51
|
BackendFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -113,7 +112,6 @@ if (Symbol.dispose) Backend.prototype[Symbol.dispose] = Backend.prototype.free;
|
|
|
113
112
|
|
|
114
113
|
export class BackendBuilder {
|
|
115
114
|
static __wrap(ptr) {
|
|
116
|
-
ptr = ptr >>> 0;
|
|
117
115
|
const obj = Object.create(BackendBuilder.prototype);
|
|
118
116
|
obj.__wbg_ptr = ptr;
|
|
119
117
|
BackendBuilderFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -159,7 +157,7 @@ export class BackendBuilder {
|
|
|
159
157
|
*/
|
|
160
158
|
constructor(env) {
|
|
161
159
|
const ret = wasm.backendbuilder_new(env);
|
|
162
|
-
this.__wbg_ptr = ret
|
|
160
|
+
this.__wbg_ptr = ret;
|
|
163
161
|
BackendBuilderFinalization.register(this, this.__wbg_ptr, this);
|
|
164
162
|
return this;
|
|
165
163
|
}
|
|
@@ -245,7 +243,6 @@ export const BackupElementSelectionOption = Object.freeze({
|
|
|
245
243
|
|
|
246
244
|
export class Client {
|
|
247
245
|
static __wrap(ptr) {
|
|
248
|
-
ptr = ptr >>> 0;
|
|
249
246
|
const obj = Object.create(Client.prototype);
|
|
250
247
|
obj.__wbg_ptr = ptr;
|
|
251
248
|
ClientFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -524,12 +521,13 @@ export class Client {
|
|
|
524
521
|
}
|
|
525
522
|
/**
|
|
526
523
|
* @param {SignatureRequestHandle} signatureRequest
|
|
524
|
+
* @param {WasmVisibilityConfirmationOptions | null} [visibilityConfirmationOptions]
|
|
527
525
|
* @returns {Promise<void>}
|
|
528
526
|
*/
|
|
529
|
-
registerIdentity(signatureRequest) {
|
|
527
|
+
registerIdentity(signatureRequest, visibilityConfirmationOptions) {
|
|
530
528
|
_assertClass(signatureRequest, SignatureRequestHandle);
|
|
531
529
|
var ptr0 = signatureRequest.__destroy_into_raw();
|
|
532
|
-
const ret = wasm.client_registerIdentity(this.__wbg_ptr, ptr0);
|
|
530
|
+
const ret = wasm.client_registerIdentity(this.__wbg_ptr, ptr0, isLikeNone(visibilityConfirmationOptions) ? 0 : addToExternrefTable0(visibilityConfirmationOptions));
|
|
533
531
|
return ret;
|
|
534
532
|
}
|
|
535
533
|
/**
|
|
@@ -599,6 +597,20 @@ export class Client {
|
|
|
599
597
|
throw takeFromExternrefTable0(ret[0]);
|
|
600
598
|
}
|
|
601
599
|
}
|
|
600
|
+
/**
|
|
601
|
+
* Wait until this client's registration is visible on the network.
|
|
602
|
+
*
|
|
603
|
+
* For V3 clients (no cursor stored) this falls back to checking
|
|
604
|
+
* `isRegistered`. For D14n clients it polls each node directly and
|
|
605
|
+
* returns once a quorum confirms both the identity-update and
|
|
606
|
+
* key-package envelopes are visible.
|
|
607
|
+
* @param {WasmVisibilityConfirmationOptions | null} [options]
|
|
608
|
+
* @returns {Promise<void>}
|
|
609
|
+
*/
|
|
610
|
+
waitForRegistrationVisible(options) {
|
|
611
|
+
const ret = wasm.client_waitForRegistrationVisible(this.__wbg_ptr, isLikeNone(options) ? 0 : addToExternrefTable0(options));
|
|
612
|
+
return ret;
|
|
613
|
+
}
|
|
602
614
|
}
|
|
603
615
|
if (Symbol.dispose) Client.prototype[Symbol.dispose] = Client.prototype.free;
|
|
604
616
|
|
|
@@ -651,7 +663,6 @@ export const ContentType = Object.freeze({
|
|
|
651
663
|
|
|
652
664
|
export class Conversation {
|
|
653
665
|
static __wrap(ptr) {
|
|
654
|
-
ptr = ptr >>> 0;
|
|
655
666
|
const obj = Object.create(Conversation.prototype);
|
|
656
667
|
obj.__wbg_ptr = ptr;
|
|
657
668
|
ConversationFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -807,6 +818,21 @@ export class Conversation {
|
|
|
807
818
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
808
819
|
}
|
|
809
820
|
}
|
|
821
|
+
/**
|
|
822
|
+
* Enable AppData-proposal-based metadata updates on this group.
|
|
823
|
+
*
|
|
824
|
+
* Stages the bootstrap commit that migrates the group's metadata
|
|
825
|
+
* from the legacy GroupContextExtensions shape into the OpenMLS
|
|
826
|
+
* AppData dictionary. Hard-fails if any member's latest key
|
|
827
|
+
* package doesn't advertise `ProposalType::AppDataUpdate`. One-
|
|
828
|
+
* way: migrated groups cannot return to the legacy path.
|
|
829
|
+
* @param {EnableProposalsOptions} options
|
|
830
|
+
* @returns {Promise<void>}
|
|
831
|
+
*/
|
|
832
|
+
enableProposals(options) {
|
|
833
|
+
const ret = wasm.conversation_enableProposals(this.__wbg_ptr, options);
|
|
834
|
+
return ret;
|
|
835
|
+
}
|
|
810
836
|
/**
|
|
811
837
|
* @returns {Promise<Conversation[]>}
|
|
812
838
|
*/
|
|
@@ -1365,7 +1391,6 @@ if (Symbol.dispose) Conversation.prototype[Symbol.dispose] = Conversation.protot
|
|
|
1365
1391
|
|
|
1366
1392
|
export class ConversationListItem {
|
|
1367
1393
|
static __wrap(ptr) {
|
|
1368
|
-
ptr = ptr >>> 0;
|
|
1369
1394
|
const obj = Object.create(ConversationListItem.prototype);
|
|
1370
1395
|
obj.__wbg_ptr = ptr;
|
|
1371
1396
|
ConversationListItemFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -1390,7 +1415,7 @@ export class ConversationListItem {
|
|
|
1390
1415
|
_assertClass(conversation, Conversation);
|
|
1391
1416
|
var ptr0 = conversation.__destroy_into_raw();
|
|
1392
1417
|
const ret = wasm.conversationlistitem_new(ptr0, isLikeNone(lastMessage) ? 0 : addToExternrefTable0(lastMessage), isLikeNone(isCommitLogForked) ? 0xFFFFFF : isCommitLogForked ? 1 : 0);
|
|
1393
|
-
this.__wbg_ptr = ret
|
|
1418
|
+
this.__wbg_ptr = ret;
|
|
1394
1419
|
ConversationListItemFinalization.register(this, this.__wbg_ptr, this);
|
|
1395
1420
|
return this;
|
|
1396
1421
|
}
|
|
@@ -1450,7 +1475,6 @@ export const ConversationType = Object.freeze({
|
|
|
1450
1475
|
|
|
1451
1476
|
export class Conversations {
|
|
1452
1477
|
static __wrap(ptr) {
|
|
1453
|
-
ptr = ptr >>> 0;
|
|
1454
1478
|
const obj = Object.create(Conversations.prototype);
|
|
1455
1479
|
obj.__wbg_ptr = ptr;
|
|
1456
1480
|
ConversationsFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -1710,7 +1734,6 @@ export const DeliveryStatus = Object.freeze({
|
|
|
1710
1734
|
|
|
1711
1735
|
export class DeviceSync {
|
|
1712
1736
|
static __wrap(ptr) {
|
|
1713
|
-
ptr = ptr >>> 0;
|
|
1714
1737
|
const obj = Object.create(DeviceSync.prototype);
|
|
1715
1738
|
obj.__wbg_ptr = ptr;
|
|
1716
1739
|
DeviceSyncFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -1954,7 +1977,6 @@ if (Symbol.dispose) IntoUnderlyingSink.prototype[Symbol.dispose] = IntoUnderlyin
|
|
|
1954
1977
|
|
|
1955
1978
|
export class IntoUnderlyingSource {
|
|
1956
1979
|
static __wrap(ptr) {
|
|
1957
|
-
ptr = ptr >>> 0;
|
|
1958
1980
|
const obj = Object.create(IntoUnderlyingSource.prototype);
|
|
1959
1981
|
obj.__wbg_ptr = ptr;
|
|
1960
1982
|
IntoUnderlyingSourceFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -2078,7 +2100,6 @@ export const ReactionSchema = Object.freeze({
|
|
|
2078
2100
|
|
|
2079
2101
|
export class SignatureRequestHandle {
|
|
2080
2102
|
static __wrap(ptr) {
|
|
2081
|
-
ptr = ptr >>> 0;
|
|
2082
2103
|
const obj = Object.create(SignatureRequestHandle.prototype);
|
|
2083
2104
|
obj.__wbg_ptr = ptr;
|
|
2084
2105
|
SignatureRequestHandleFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -2141,7 +2162,6 @@ export const SortDirection = Object.freeze({
|
|
|
2141
2162
|
|
|
2142
2163
|
export class StreamCloser {
|
|
2143
2164
|
static __wrap(ptr) {
|
|
2144
|
-
ptr = ptr >>> 0;
|
|
2145
2165
|
const obj = Object.create(StreamCloser.prototype);
|
|
2146
2166
|
obj.__wbg_ptr = ptr;
|
|
2147
2167
|
StreamCloserFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -2233,7 +2253,7 @@ export class WasmBindgenTestContext {
|
|
|
2233
2253
|
*/
|
|
2234
2254
|
constructor(is_bench) {
|
|
2235
2255
|
const ret = wasm.wasmbindgentestcontext_new(is_bench);
|
|
2236
|
-
this.__wbg_ptr = ret
|
|
2256
|
+
this.__wbg_ptr = ret;
|
|
2237
2257
|
WasmBindgenTestContextFinalization.register(this, this.__wbg_ptr, this);
|
|
2238
2258
|
return this;
|
|
2239
2259
|
}
|
|
@@ -2259,6 +2279,18 @@ export class WasmBindgenTestContext {
|
|
|
2259
2279
|
}
|
|
2260
2280
|
if (Symbol.dispose) WasmBindgenTestContext.prototype[Symbol.dispose] = WasmBindgenTestContext.prototype.free;
|
|
2261
2281
|
|
|
2282
|
+
/**
|
|
2283
|
+
* @enum {0 | 1 | 2 | 3 | 4 | 5}
|
|
2284
|
+
*/
|
|
2285
|
+
export const WorkerKind = Object.freeze({
|
|
2286
|
+
DeviceSync: 0, "0": "DeviceSync",
|
|
2287
|
+
DisappearingMessages: 1, "1": "DisappearingMessages",
|
|
2288
|
+
KeyPackageCleaner: 2, "2": "KeyPackageCleaner",
|
|
2289
|
+
CommitLog: 3, "3": "CommitLog",
|
|
2290
|
+
TaskRunner: 4, "4": "TaskRunner",
|
|
2291
|
+
PendingSelfRemove: 5, "5": "PendingSelfRemove",
|
|
2292
|
+
});
|
|
2293
|
+
|
|
2262
2294
|
/**
|
|
2263
2295
|
* @enum {0 | 1 | 2 | 3 | 4 | 5 | 6}
|
|
2264
2296
|
*/
|
|
@@ -2518,6 +2550,7 @@ export function contentTypeWalletSendCalls() {
|
|
|
2518
2550
|
* @param {string | null} [dbPath]
|
|
2519
2551
|
* @param {Uint8Array | null} [encryptionKey]
|
|
2520
2552
|
* @param {DeviceSyncMode | null} [deviceSyncMode]
|
|
2553
|
+
* @param {WorkerConfigOptions | null} [workerConfig]
|
|
2521
2554
|
* @param {LogOptions | null} [logOptions]
|
|
2522
2555
|
* @param {boolean | null} [allowOffline]
|
|
2523
2556
|
* @param {string | null} [appVersion]
|
|
@@ -2528,7 +2561,7 @@ export function contentTypeWalletSendCalls() {
|
|
|
2528
2561
|
* @param {ClientMode | null} [clientMode]
|
|
2529
2562
|
* @returns {Promise<Client>}
|
|
2530
2563
|
*/
|
|
2531
|
-
export function createClient(host, inboxId, accountIdentifier, dbPath, encryptionKey, deviceSyncMode, logOptions, allowOffline, appVersion, gatewayHost, nonce, authCallback, authHandle, clientMode) {
|
|
2564
|
+
export function createClient(host, inboxId, accountIdentifier, dbPath, encryptionKey, deviceSyncMode, workerConfig, logOptions, allowOffline, appVersion, gatewayHost, nonce, authCallback, authHandle, clientMode) {
|
|
2532
2565
|
const ptr0 = passStringToWasm0(host, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2533
2566
|
const len0 = WASM_VECTOR_LEN;
|
|
2534
2567
|
const ptr1 = passStringToWasm0(inboxId, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
@@ -2544,7 +2577,7 @@ export function createClient(host, inboxId, accountIdentifier, dbPath, encryptio
|
|
|
2544
2577
|
_assertClass(authHandle, AuthHandle);
|
|
2545
2578
|
ptr5 = authHandle.__destroy_into_raw();
|
|
2546
2579
|
}
|
|
2547
|
-
const ret = wasm.createClient(ptr0, len0, ptr1, len1, accountIdentifier, ptr2, len2, isLikeNone(encryptionKey) ? 0 : addToExternrefTable0(encryptionKey), isLikeNone(deviceSyncMode) ? 2 : deviceSyncMode, isLikeNone(logOptions) ? 0 : addToExternrefTable0(logOptions), isLikeNone(allowOffline) ? 0xFFFFFF : allowOffline ? 1 : 0, ptr3, len3, ptr4, len4, !isLikeNone(nonce), isLikeNone(nonce) ? BigInt(0) : nonce, isLikeNone(authCallback) ? 0 : addToExternrefTable0(authCallback), ptr5, isLikeNone(clientMode) ? 2 : clientMode);
|
|
2580
|
+
const ret = wasm.createClient(ptr0, len0, ptr1, len1, accountIdentifier, ptr2, len2, isLikeNone(encryptionKey) ? 0 : addToExternrefTable0(encryptionKey), isLikeNone(deviceSyncMode) ? 2 : deviceSyncMode, isLikeNone(workerConfig) ? 0 : addToExternrefTable0(workerConfig), isLikeNone(logOptions) ? 0 : addToExternrefTable0(logOptions), isLikeNone(allowOffline) ? 0xFFFFFF : allowOffline ? 1 : 0, ptr3, len3, ptr4, len4, !isLikeNone(nonce), isLikeNone(nonce) ? BigInt(0) : nonce, isLikeNone(authCallback) ? 0 : addToExternrefTable0(authCallback), ptr5, isLikeNone(clientMode) ? 2 : clientMode);
|
|
2548
2581
|
return ret;
|
|
2549
2582
|
}
|
|
2550
2583
|
|
|
@@ -2559,18 +2592,19 @@ export function createClient(host, inboxId, accountIdentifier, dbPath, encryptio
|
|
|
2559
2592
|
* @param {string | null} [dbPath]
|
|
2560
2593
|
* @param {Uint8Array | null} [encryptionKey]
|
|
2561
2594
|
* @param {DeviceSyncMode | null} [deviceSyncMode]
|
|
2595
|
+
* @param {WorkerConfigOptions | null} [workerConfig]
|
|
2562
2596
|
* @param {LogOptions | null} [logOptions]
|
|
2563
2597
|
* @param {boolean | null} [allowOffline]
|
|
2564
2598
|
* @param {bigint | null} [nonce]
|
|
2565
2599
|
* @returns {Promise<Client>}
|
|
2566
2600
|
*/
|
|
2567
|
-
export function createClientWithBackend(backend, inboxId, accountIdentifier, dbPath, encryptionKey, deviceSyncMode, logOptions, allowOffline, nonce) {
|
|
2601
|
+
export function createClientWithBackend(backend, inboxId, accountIdentifier, dbPath, encryptionKey, deviceSyncMode, workerConfig, logOptions, allowOffline, nonce) {
|
|
2568
2602
|
_assertClass(backend, Backend);
|
|
2569
2603
|
const ptr0 = passStringToWasm0(inboxId, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2570
2604
|
const len0 = WASM_VECTOR_LEN;
|
|
2571
2605
|
var ptr1 = isLikeNone(dbPath) ? 0 : passStringToWasm0(dbPath, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2572
2606
|
var len1 = WASM_VECTOR_LEN;
|
|
2573
|
-
const ret = wasm.createClientWithBackend(backend.__wbg_ptr, ptr0, len0, accountIdentifier, ptr1, len1, isLikeNone(encryptionKey) ? 0 : addToExternrefTable0(encryptionKey), isLikeNone(deviceSyncMode) ? 2 : deviceSyncMode, isLikeNone(logOptions) ? 0 : addToExternrefTable0(logOptions), isLikeNone(allowOffline) ? 0xFFFFFF : allowOffline ? 1 : 0, !isLikeNone(nonce), isLikeNone(nonce) ? BigInt(0) : nonce);
|
|
2607
|
+
const ret = wasm.createClientWithBackend(backend.__wbg_ptr, ptr0, len0, accountIdentifier, ptr1, len1, isLikeNone(encryptionKey) ? 0 : addToExternrefTable0(encryptionKey), isLikeNone(deviceSyncMode) ? 2 : deviceSyncMode, isLikeNone(workerConfig) ? 0 : addToExternrefTable0(workerConfig), isLikeNone(logOptions) ? 0 : addToExternrefTable0(logOptions), isLikeNone(allowOffline) ? 0xFFFFFF : allowOffline ? 1 : 0, !isLikeNone(nonce), isLikeNone(nonce) ? BigInt(0) : nonce);
|
|
2574
2608
|
return ret;
|
|
2575
2609
|
}
|
|
2576
2610
|
|
|
@@ -2952,100 +2986,99 @@ export function verifySignedWithPublicKey(signatureText, signatureBytes, publicK
|
|
|
2952
2986
|
throw takeFromExternrefTable0(ret[0]);
|
|
2953
2987
|
}
|
|
2954
2988
|
}
|
|
2955
|
-
|
|
2956
2989
|
function __wbg_get_imports() {
|
|
2957
2990
|
const import0 = {
|
|
2958
2991
|
__proto__: null,
|
|
2959
|
-
|
|
2992
|
+
__wbg_Deno_5568da40b5320910: function(arg0) {
|
|
2960
2993
|
const ret = arg0.Deno;
|
|
2961
2994
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2962
2995
|
},
|
|
2963
|
-
|
|
2996
|
+
__wbg_Error_3639a60ed15f87e7: function(arg0, arg1) {
|
|
2964
2997
|
const ret = Error(getStringFromWasm0(arg0, arg1));
|
|
2965
2998
|
return ret;
|
|
2966
2999
|
},
|
|
2967
|
-
|
|
3000
|
+
__wbg_Number_a3d737fd183f7dca: function(arg0) {
|
|
2968
3001
|
const ret = Number(arg0);
|
|
2969
3002
|
return ret;
|
|
2970
3003
|
},
|
|
2971
|
-
|
|
3004
|
+
__wbg_String_8564e559799eccda: function(arg0, arg1) {
|
|
2972
3005
|
const ret = String(arg1);
|
|
2973
3006
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2974
3007
|
const len1 = WASM_VECTOR_LEN;
|
|
2975
3008
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2976
3009
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2977
3010
|
},
|
|
2978
|
-
|
|
3011
|
+
__wbg_String_9f1bc0c1cfdb8d71: function(arg0, arg1) {
|
|
2979
3012
|
const ret = String(arg1);
|
|
2980
3013
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2981
3014
|
const len1 = WASM_VECTOR_LEN;
|
|
2982
3015
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2983
3016
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2984
3017
|
},
|
|
2985
|
-
|
|
3018
|
+
__wbg___wbg_test_output_writeln_ce1c14f3235de893: function(arg0) {
|
|
2986
3019
|
__wbg_test_output_writeln(arg0);
|
|
2987
3020
|
},
|
|
2988
|
-
|
|
3021
|
+
__wbg___wbgtest_og_console_log_b41ebf420153741b: function(arg0, arg1) {
|
|
2989
3022
|
__wbgtest_og_console_log(getStringFromWasm0(arg0, arg1));
|
|
2990
3023
|
},
|
|
2991
|
-
|
|
3024
|
+
__wbg___wbindgen_bigint_get_as_i64_3af6d4ca77193a4b: function(arg0, arg1) {
|
|
2992
3025
|
const v = arg1;
|
|
2993
3026
|
const ret = typeof(v) === 'bigint' ? v : undefined;
|
|
2994
3027
|
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
2995
3028
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
2996
3029
|
},
|
|
2997
|
-
|
|
3030
|
+
__wbg___wbindgen_boolean_get_c3dd5c39f1b5a12b: function(arg0) {
|
|
2998
3031
|
const v = arg0;
|
|
2999
3032
|
const ret = typeof(v) === 'boolean' ? v : undefined;
|
|
3000
3033
|
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
3001
3034
|
},
|
|
3002
|
-
|
|
3035
|
+
__wbg___wbindgen_debug_string_07cb72cfcc952e2b: function(arg0, arg1) {
|
|
3003
3036
|
const ret = debugString(arg1);
|
|
3004
3037
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3005
3038
|
const len1 = WASM_VECTOR_LEN;
|
|
3006
3039
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3007
3040
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3008
3041
|
},
|
|
3009
|
-
|
|
3042
|
+
__wbg___wbindgen_in_2617fa76397620d3: function(arg0, arg1) {
|
|
3010
3043
|
const ret = arg0 in arg1;
|
|
3011
3044
|
return ret;
|
|
3012
3045
|
},
|
|
3013
|
-
|
|
3046
|
+
__wbg___wbindgen_is_bigint_d6a8167cac401b95: function(arg0) {
|
|
3014
3047
|
const ret = typeof(arg0) === 'bigint';
|
|
3015
3048
|
return ret;
|
|
3016
3049
|
},
|
|
3017
|
-
|
|
3050
|
+
__wbg___wbindgen_is_function_2f0fd7ceb86e64c5: function(arg0) {
|
|
3018
3051
|
const ret = typeof(arg0) === 'function';
|
|
3019
3052
|
return ret;
|
|
3020
3053
|
},
|
|
3021
|
-
|
|
3054
|
+
__wbg___wbindgen_is_object_5b22ff2418063a9c: function(arg0) {
|
|
3022
3055
|
const val = arg0;
|
|
3023
3056
|
const ret = typeof(val) === 'object' && val !== null;
|
|
3024
3057
|
return ret;
|
|
3025
3058
|
},
|
|
3026
|
-
|
|
3059
|
+
__wbg___wbindgen_is_string_eddc07a3efad52e6: function(arg0) {
|
|
3027
3060
|
const ret = typeof(arg0) === 'string';
|
|
3028
3061
|
return ret;
|
|
3029
3062
|
},
|
|
3030
|
-
|
|
3063
|
+
__wbg___wbindgen_is_undefined_244a92c34d3b6ec0: function(arg0) {
|
|
3031
3064
|
const ret = arg0 === undefined;
|
|
3032
3065
|
return ret;
|
|
3033
3066
|
},
|
|
3034
|
-
|
|
3067
|
+
__wbg___wbindgen_jsval_eq_403eaa3610500a25: function(arg0, arg1) {
|
|
3035
3068
|
const ret = arg0 === arg1;
|
|
3036
3069
|
return ret;
|
|
3037
3070
|
},
|
|
3038
|
-
|
|
3071
|
+
__wbg___wbindgen_jsval_loose_eq_1978f1e77b4bce62: function(arg0, arg1) {
|
|
3039
3072
|
const ret = arg0 == arg1;
|
|
3040
3073
|
return ret;
|
|
3041
3074
|
},
|
|
3042
|
-
|
|
3075
|
+
__wbg___wbindgen_number_get_dd6d69a6079f26f1: function(arg0, arg1) {
|
|
3043
3076
|
const obj = arg1;
|
|
3044
3077
|
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
3045
3078
|
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
3046
3079
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
3047
3080
|
},
|
|
3048
|
-
|
|
3081
|
+
__wbg___wbindgen_string_get_965592073e5d848c: function(arg0, arg1) {
|
|
3049
3082
|
const obj = arg1;
|
|
3050
3083
|
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
3051
3084
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
@@ -3053,80 +3086,80 @@ function __wbg_get_imports() {
|
|
|
3053
3086
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3054
3087
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3055
3088
|
},
|
|
3056
|
-
|
|
3089
|
+
__wbg___wbindgen_throw_9c75d47bf9e7731e: function(arg0, arg1) {
|
|
3057
3090
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
3058
3091
|
},
|
|
3059
|
-
|
|
3092
|
+
__wbg___wbindgen_try_into_number_f42d43d28fd2987f: function(arg0) {
|
|
3060
3093
|
let result;
|
|
3061
3094
|
try { result = +arg0 } catch (e) { result = e }
|
|
3062
3095
|
const ret = result;
|
|
3063
3096
|
return ret;
|
|
3064
3097
|
},
|
|
3065
|
-
|
|
3098
|
+
__wbg__wbg_cb_unref_158e43e869788cdc: function(arg0) {
|
|
3066
3099
|
arg0._wbg_cb_unref();
|
|
3067
3100
|
},
|
|
3068
|
-
|
|
3069
|
-
arg0.abort();
|
|
3070
|
-
},
|
|
3071
|
-
__wbg_abort_d549b92d3c665de1: function(arg0, arg1) {
|
|
3101
|
+
__wbg_abort_43913e33ecb83d0d: function(arg0, arg1) {
|
|
3072
3102
|
arg0.abort(arg1);
|
|
3073
3103
|
},
|
|
3074
|
-
|
|
3104
|
+
__wbg_abort_87eb7f23cf4b73d1: function(arg0) {
|
|
3105
|
+
arg0.abort();
|
|
3106
|
+
},
|
|
3107
|
+
__wbg_append_8df396311184f750: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
3075
3108
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
3076
3109
|
}, arguments); },
|
|
3077
|
-
|
|
3110
|
+
__wbg_arrayBuffer_87e3ac06d961f7a0: function() { return handleError(function (arg0) {
|
|
3078
3111
|
const ret = arg0.arrayBuffer();
|
|
3079
3112
|
return ret;
|
|
3080
3113
|
}, arguments); },
|
|
3081
|
-
|
|
3114
|
+
__wbg_body_6929614c20dfa7b0: function(arg0) {
|
|
3082
3115
|
const ret = arg0.body;
|
|
3083
3116
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3084
3117
|
},
|
|
3085
|
-
|
|
3118
|
+
__wbg_buffer_9ee17426fe5a5d65: function(arg0) {
|
|
3086
3119
|
const ret = arg0.buffer;
|
|
3087
3120
|
return ret;
|
|
3088
3121
|
},
|
|
3089
|
-
|
|
3122
|
+
__wbg_byobRequest_178b64c09a0bee03: function(arg0) {
|
|
3090
3123
|
const ret = arg0.byobRequest;
|
|
3091
3124
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3092
3125
|
},
|
|
3093
|
-
|
|
3126
|
+
__wbg_byteLength_1f57c71e64ee0180: function(arg0) {
|
|
3094
3127
|
const ret = arg0.byteLength;
|
|
3095
3128
|
return ret;
|
|
3096
3129
|
},
|
|
3097
|
-
|
|
3130
|
+
__wbg_byteOffset_648d0af273024f3d: function(arg0) {
|
|
3098
3131
|
const ret = arg0.byteOffset;
|
|
3099
3132
|
return ret;
|
|
3100
3133
|
},
|
|
3101
|
-
|
|
3102
|
-
const ret = arg0.call(arg1);
|
|
3134
|
+
__wbg_call_a41d6421b30a32c5: function() { return handleError(function (arg0, arg1, arg2) {
|
|
3135
|
+
const ret = arg0.call(arg1, arg2);
|
|
3103
3136
|
return ret;
|
|
3104
3137
|
}, arguments); },
|
|
3105
|
-
|
|
3106
|
-
const ret = arg0.call(arg1
|
|
3138
|
+
__wbg_call_add9e5a76382e668: function() { return handleError(function (arg0, arg1) {
|
|
3139
|
+
const ret = arg0.call(arg1);
|
|
3107
3140
|
return ret;
|
|
3108
3141
|
}, arguments); },
|
|
3109
|
-
|
|
3142
|
+
__wbg_cancel_f97a3ee5a8b30eef: function(arg0) {
|
|
3110
3143
|
const ret = arg0.cancel();
|
|
3111
3144
|
return ret;
|
|
3112
3145
|
},
|
|
3113
|
-
|
|
3146
|
+
__wbg_catch_f939343cb181958c: function(arg0, arg1) {
|
|
3114
3147
|
const ret = arg0.catch(arg1);
|
|
3115
3148
|
return ret;
|
|
3116
3149
|
},
|
|
3117
|
-
|
|
3150
|
+
__wbg_clearInterval_26ba580547547579: function(arg0) {
|
|
3118
3151
|
const ret = clearInterval(arg0);
|
|
3119
3152
|
return ret;
|
|
3120
3153
|
},
|
|
3121
|
-
|
|
3154
|
+
__wbg_clearTimeout_1ccca1faf41fc6f8: function(arg0) {
|
|
3122
3155
|
const ret = clearTimeout(arg0);
|
|
3123
3156
|
return ret;
|
|
3124
3157
|
},
|
|
3125
|
-
|
|
3158
|
+
__wbg_clearTimeout_3629d6209dfcc46e: function(arg0) {
|
|
3126
3159
|
const ret = clearTimeout(arg0);
|
|
3127
3160
|
return ret;
|
|
3128
3161
|
},
|
|
3129
|
-
|
|
3162
|
+
__wbg_clearTimeout_c122f92fd48cd749: function(arg0) {
|
|
3130
3163
|
const ret = clearTimeout(arg0);
|
|
3131
3164
|
return ret;
|
|
3132
3165
|
},
|
|
@@ -3134,20 +3167,20 @@ function __wbg_get_imports() {
|
|
|
3134
3167
|
const ret = Client.__wrap(arg0);
|
|
3135
3168
|
return ret;
|
|
3136
3169
|
},
|
|
3137
|
-
|
|
3138
|
-
arg0.close();
|
|
3139
|
-
}, arguments); },
|
|
3140
|
-
__wbg_close_4ba312253c424342: function(arg0) {
|
|
3170
|
+
__wbg_close_5b5bd8421f556bfa: function(arg0) {
|
|
3141
3171
|
arg0.close();
|
|
3142
3172
|
},
|
|
3143
|
-
|
|
3173
|
+
__wbg_close_63e009c5a75f5597: function() { return handleError(function (arg0) {
|
|
3174
|
+
arg0.close();
|
|
3175
|
+
}, arguments); },
|
|
3176
|
+
__wbg_close_de471367367aa5cb: function() { return handleError(function (arg0) {
|
|
3144
3177
|
arg0.close();
|
|
3145
3178
|
}, arguments); },
|
|
3146
|
-
|
|
3179
|
+
__wbg_code_f1d2ddc1fbbb5aad: function(arg0) {
|
|
3147
3180
|
const ret = arg0.code;
|
|
3148
3181
|
return ret;
|
|
3149
3182
|
},
|
|
3150
|
-
|
|
3183
|
+
__wbg_constructor_d15f058d68158e7a: function(arg0) {
|
|
3151
3184
|
const ret = arg0.constructor;
|
|
3152
3185
|
return ret;
|
|
3153
3186
|
},
|
|
@@ -3159,40 +3192,53 @@ function __wbg_get_imports() {
|
|
|
3159
3192
|
const ret = ConversationListItem.__wrap(arg0);
|
|
3160
3193
|
return ret;
|
|
3161
3194
|
},
|
|
3162
|
-
|
|
3195
|
+
__wbg_createSyncAccessHandle_5801784c68dffe64: function(arg0) {
|
|
3163
3196
|
const ret = arg0.createSyncAccessHandle();
|
|
3164
3197
|
return ret;
|
|
3165
3198
|
},
|
|
3166
|
-
|
|
3199
|
+
__wbg_create_6c502df90f1c545d: function(arg0) {
|
|
3167
3200
|
const ret = Object.create(arg0);
|
|
3168
3201
|
return ret;
|
|
3169
3202
|
},
|
|
3170
|
-
|
|
3203
|
+
__wbg_crypto_38df2bab126b63dc: function(arg0) {
|
|
3171
3204
|
const ret = arg0.crypto;
|
|
3172
3205
|
return ret;
|
|
3173
3206
|
},
|
|
3174
|
-
|
|
3175
|
-
console.debug(arg0, arg1, arg2, arg3);
|
|
3176
|
-
},
|
|
3177
|
-
__wbg_debug_a4099fa12db6cd61: function(arg0) {
|
|
3207
|
+
__wbg_debug_37240d2c1d0ce2bb: function(arg0) {
|
|
3178
3208
|
console.debug(arg0);
|
|
3179
3209
|
},
|
|
3180
|
-
|
|
3210
|
+
__wbg_debug_94a9fb2c3e2982f9: function(arg0, arg1, arg2, arg3) {
|
|
3211
|
+
console.debug(arg0, arg1, arg2, arg3);
|
|
3212
|
+
},
|
|
3213
|
+
__wbg_done_b1afd6201ac045e0: function(arg0) {
|
|
3181
3214
|
const ret = arg0.done;
|
|
3182
3215
|
return ret;
|
|
3183
3216
|
},
|
|
3184
|
-
|
|
3217
|
+
__wbg_enqueue_6c7cd543c0f3828e: function() { return handleError(function (arg0, arg1) {
|
|
3185
3218
|
arg0.enqueue(arg1);
|
|
3186
3219
|
}, arguments); },
|
|
3187
|
-
|
|
3220
|
+
__wbg_entries_7b6e1805c22668f3: function(arg0) {
|
|
3188
3221
|
const ret = arg0.entries();
|
|
3189
3222
|
return ret;
|
|
3190
3223
|
},
|
|
3191
|
-
|
|
3224
|
+
__wbg_entries_83f42485034accab: function(arg0) {
|
|
3225
|
+
const ret = arg0.entries();
|
|
3226
|
+
return ret;
|
|
3227
|
+
},
|
|
3228
|
+
__wbg_entries_bb9843ba73dc70d6: function(arg0) {
|
|
3192
3229
|
const ret = Object.entries(arg0);
|
|
3193
3230
|
return ret;
|
|
3194
3231
|
},
|
|
3195
|
-
|
|
3232
|
+
__wbg_error_48655ee7e4756f8b: function(arg0) {
|
|
3233
|
+
console.error(arg0);
|
|
3234
|
+
},
|
|
3235
|
+
__wbg_error_537f92d5f29e50f7: function(arg0, arg1) {
|
|
3236
|
+
console.error(getStringFromWasm0(arg0, arg1));
|
|
3237
|
+
},
|
|
3238
|
+
__wbg_error_7aabf7ad5c35cfbb: function(arg0, arg1) {
|
|
3239
|
+
console.error(getStringFromWasm0(arg0, arg1));
|
|
3240
|
+
},
|
|
3241
|
+
__wbg_error_a6fa202b58aa1cd3: function(arg0, arg1) {
|
|
3196
3242
|
let deferred0_0;
|
|
3197
3243
|
let deferred0_1;
|
|
3198
3244
|
try {
|
|
@@ -3203,177 +3249,176 @@ function __wbg_get_imports() {
|
|
|
3203
3249
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
3204
3250
|
}
|
|
3205
3251
|
},
|
|
3206
|
-
|
|
3252
|
+
__wbg_error_e92447754a575869: function(arg0, arg1, arg2, arg3) {
|
|
3207
3253
|
console.error(arg0, arg1, arg2, arg3);
|
|
3208
3254
|
},
|
|
3209
|
-
|
|
3210
|
-
|
|
3211
|
-
},
|
|
3212
|
-
__wbg_error_ba0ecc4c5be76ff7: function(arg0, arg1) {
|
|
3213
|
-
console.error(getStringFromWasm0(arg0, arg1));
|
|
3214
|
-
},
|
|
3215
|
-
__wbg_error_e98c298703cffa97: function(arg0, arg1) {
|
|
3216
|
-
console.error(getStringFromWasm0(arg0, arg1));
|
|
3217
|
-
},
|
|
3218
|
-
__wbg_fetch_53eef7df7b439a49: function(arg0, arg1) {
|
|
3219
|
-
const ret = fetch(arg0, arg1);
|
|
3255
|
+
__wbg_fetch_1a030943aa8e0c38: function(arg0, arg1) {
|
|
3256
|
+
const ret = arg0.fetch(arg1);
|
|
3220
3257
|
return ret;
|
|
3221
3258
|
},
|
|
3222
|
-
|
|
3223
|
-
const ret = fetch(arg0);
|
|
3259
|
+
__wbg_fetch_5e2e4a3d60c8d1d3: function(arg0, arg1) {
|
|
3260
|
+
const ret = fetch(arg0, arg1);
|
|
3224
3261
|
return ret;
|
|
3225
3262
|
},
|
|
3226
|
-
|
|
3227
|
-
const ret = arg0.fetch(arg1);
|
|
3263
|
+
__wbg_fetch_a851d393d6b4492c: function(arg0, arg1, arg2) {
|
|
3264
|
+
const ret = arg0.fetch(arg1, arg2);
|
|
3228
3265
|
return ret;
|
|
3229
3266
|
},
|
|
3230
|
-
|
|
3231
|
-
const ret =
|
|
3267
|
+
__wbg_fetch_c6486a0142348bc8: function(arg0) {
|
|
3268
|
+
const ret = fetch(arg0);
|
|
3232
3269
|
return ret;
|
|
3233
3270
|
},
|
|
3234
|
-
|
|
3271
|
+
__wbg_fill_2a2acd14b0cf134b: function(arg0, arg1, arg2, arg3) {
|
|
3235
3272
|
const ret = arg0.fill(arg1, arg2 >>> 0, arg3 >>> 0);
|
|
3236
3273
|
return ret;
|
|
3237
3274
|
},
|
|
3238
|
-
|
|
3275
|
+
__wbg_flush_f5dc92f0aae58463: function() { return handleError(function (arg0) {
|
|
3239
3276
|
arg0.flush();
|
|
3240
3277
|
}, arguments); },
|
|
3241
|
-
|
|
3278
|
+
__wbg_forEach_544291b320823e55: function(arg0, arg1, arg2) {
|
|
3242
3279
|
try {
|
|
3243
3280
|
var state0 = {a: arg1, b: arg2};
|
|
3244
3281
|
var cb0 = (arg0, arg1, arg2) => {
|
|
3245
3282
|
const a = state0.a;
|
|
3246
3283
|
state0.a = 0;
|
|
3247
3284
|
try {
|
|
3248
|
-
return
|
|
3285
|
+
return wasm_bindgen__convert__closures_____invoke__h0cbb9d280ec4eac8(a, state0.b, arg0, arg1, arg2);
|
|
3249
3286
|
} finally {
|
|
3250
3287
|
state0.a = a;
|
|
3251
3288
|
}
|
|
3252
3289
|
};
|
|
3253
3290
|
arg0.forEach(cb0);
|
|
3254
3291
|
} finally {
|
|
3255
|
-
state0.a =
|
|
3292
|
+
state0.a = 0;
|
|
3256
3293
|
}
|
|
3257
3294
|
},
|
|
3258
|
-
|
|
3295
|
+
__wbg_from_ff141b1e4c69b979: function(arg0) {
|
|
3259
3296
|
const ret = Array.from(arg0);
|
|
3260
3297
|
return ret;
|
|
3261
3298
|
},
|
|
3262
|
-
|
|
3299
|
+
__wbg_getDate_3125ccbd2287cd41: function(arg0) {
|
|
3263
3300
|
const ret = arg0.getDate();
|
|
3264
3301
|
return ret;
|
|
3265
3302
|
},
|
|
3266
|
-
|
|
3303
|
+
__wbg_getDay_2792f645ebf6757d: function(arg0) {
|
|
3267
3304
|
const ret = arg0.getDay();
|
|
3268
3305
|
return ret;
|
|
3269
3306
|
},
|
|
3270
|
-
|
|
3307
|
+
__wbg_getDirectoryHandle_41607d7ab5c5d4ec: function(arg0, arg1, arg2, arg3) {
|
|
3271
3308
|
const ret = arg0.getDirectoryHandle(getStringFromWasm0(arg1, arg2), arg3);
|
|
3272
3309
|
return ret;
|
|
3273
3310
|
},
|
|
3274
|
-
|
|
3311
|
+
__wbg_getDirectory_d428efb9f123807a: function(arg0) {
|
|
3275
3312
|
const ret = arg0.getDirectory();
|
|
3276
3313
|
return ret;
|
|
3277
3314
|
},
|
|
3278
|
-
|
|
3315
|
+
__wbg_getElementById_ef2cf6fa058f410a: function(arg0, arg1, arg2) {
|
|
3279
3316
|
const ret = arg0.getElementById(getStringFromWasm0(arg1, arg2));
|
|
3280
3317
|
return ret;
|
|
3281
3318
|
},
|
|
3282
|
-
|
|
3319
|
+
__wbg_getFileHandle_edbdf7040fe8f2ed: function(arg0, arg1, arg2, arg3) {
|
|
3283
3320
|
const ret = arg0.getFileHandle(getStringFromWasm0(arg1, arg2), arg3);
|
|
3284
3321
|
return ret;
|
|
3285
3322
|
},
|
|
3286
|
-
|
|
3323
|
+
__wbg_getFullYear_3b262790090055a4: function(arg0) {
|
|
3287
3324
|
const ret = arg0.getFullYear();
|
|
3288
3325
|
return ret;
|
|
3289
3326
|
},
|
|
3290
|
-
|
|
3327
|
+
__wbg_getHours_c9732aeae765eb42: function(arg0) {
|
|
3291
3328
|
const ret = arg0.getHours();
|
|
3292
3329
|
return ret;
|
|
3293
3330
|
},
|
|
3294
|
-
|
|
3331
|
+
__wbg_getMinutes_734f5fc547107704: function(arg0) {
|
|
3295
3332
|
const ret = arg0.getMinutes();
|
|
3296
3333
|
return ret;
|
|
3297
3334
|
},
|
|
3298
|
-
|
|
3335
|
+
__wbg_getMonth_a05a33ddd62f0d8a: function(arg0) {
|
|
3299
3336
|
const ret = arg0.getMonth();
|
|
3300
3337
|
return ret;
|
|
3301
3338
|
},
|
|
3302
|
-
|
|
3339
|
+
__wbg_getRandomValues_3f44b700395062e5: function() { return handleError(function (arg0, arg1) {
|
|
3303
3340
|
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
|
3304
3341
|
}, arguments); },
|
|
3305
|
-
|
|
3342
|
+
__wbg_getRandomValues_477b66419bbb968d: function() { return handleError(function (arg0, arg1) {
|
|
3306
3343
|
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
|
3307
3344
|
}, arguments); },
|
|
3308
|
-
|
|
3309
|
-
arg0.getRandomValues(arg1);
|
|
3310
|
-
}, arguments); },
|
|
3311
|
-
__wbg_getRandomValues_d8c71ea8f97a0b46: function() { return handleError(function (arg0, arg1) {
|
|
3345
|
+
__wbg_getRandomValues_76dfc69825c9c552: function() { return handleError(function (arg0, arg1) {
|
|
3312
3346
|
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
|
3313
3347
|
}, arguments); },
|
|
3314
|
-
|
|
3348
|
+
__wbg_getRandomValues_c44a50d8cfdaebeb: function() { return handleError(function (arg0, arg1) {
|
|
3349
|
+
arg0.getRandomValues(arg1);
|
|
3350
|
+
}, arguments); },
|
|
3351
|
+
__wbg_getReader_9facd4f899beac89: function() { return handleError(function (arg0) {
|
|
3315
3352
|
const ret = arg0.getReader();
|
|
3316
3353
|
return ret;
|
|
3317
3354
|
}, arguments); },
|
|
3318
|
-
|
|
3355
|
+
__wbg_getSeconds_540b42f080d49830: function(arg0) {
|
|
3319
3356
|
const ret = arg0.getSeconds();
|
|
3320
3357
|
return ret;
|
|
3321
3358
|
},
|
|
3322
|
-
|
|
3359
|
+
__wbg_getSize_7ebdae216262d623: function() { return handleError(function (arg0) {
|
|
3323
3360
|
const ret = arg0.getSize();
|
|
3324
3361
|
return ret;
|
|
3325
3362
|
}, arguments); },
|
|
3326
|
-
|
|
3363
|
+
__wbg_getTime_e599bee315e19eba: function(arg0) {
|
|
3327
3364
|
const ret = arg0.getTime();
|
|
3328
3365
|
return ret;
|
|
3329
3366
|
},
|
|
3330
|
-
|
|
3367
|
+
__wbg_getTimezoneOffset_d843b3968046e734: function(arg0) {
|
|
3331
3368
|
const ret = arg0.getTimezoneOffset();
|
|
3332
3369
|
return ret;
|
|
3333
3370
|
},
|
|
3334
|
-
|
|
3371
|
+
__wbg_getUint32_04dd23d987dad50d: function(arg0, arg1) {
|
|
3335
3372
|
const ret = arg0.getUint32(arg1 >>> 0);
|
|
3336
3373
|
return ret;
|
|
3337
3374
|
},
|
|
3338
|
-
|
|
3375
|
+
__wbg_get_41476db20fef99a8: function() { return handleError(function (arg0, arg1) {
|
|
3376
|
+
const ret = Reflect.get(arg0, arg1);
|
|
3377
|
+
return ret;
|
|
3378
|
+
}, arguments); },
|
|
3379
|
+
__wbg_get_652f640b3b0b6e3e: function(arg0, arg1) {
|
|
3339
3380
|
const ret = arg0[arg1 >>> 0];
|
|
3340
3381
|
return ret;
|
|
3341
3382
|
},
|
|
3342
|
-
|
|
3383
|
+
__wbg_get_9cfea9b7bbf12a15: function() { return handleError(function (arg0, arg1) {
|
|
3343
3384
|
const ret = Reflect.get(arg0, arg1);
|
|
3344
3385
|
return ret;
|
|
3345
3386
|
}, arguments); },
|
|
3346
|
-
|
|
3387
|
+
__wbg_get_done_2088079830fb242e: function(arg0) {
|
|
3347
3388
|
const ret = arg0.done;
|
|
3348
3389
|
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
3349
3390
|
},
|
|
3350
|
-
|
|
3391
|
+
__wbg_get_index_266bdeb37a6c8106: function(arg0, arg1) {
|
|
3392
|
+
const ret = arg0[arg1 >>> 0];
|
|
3393
|
+
return ret;
|
|
3394
|
+
},
|
|
3395
|
+
__wbg_get_unchecked_be562b1421656321: function(arg0, arg1) {
|
|
3351
3396
|
const ret = arg0[arg1 >>> 0];
|
|
3352
3397
|
return ret;
|
|
3353
3398
|
},
|
|
3354
|
-
|
|
3399
|
+
__wbg_get_value_52f4b39f58a812ed: function(arg0) {
|
|
3355
3400
|
const ret = arg0.value;
|
|
3356
3401
|
return ret;
|
|
3357
3402
|
},
|
|
3358
|
-
|
|
3403
|
+
__wbg_get_with_ref_key_6412cf3094599694: function(arg0, arg1) {
|
|
3359
3404
|
const ret = arg0[arg1];
|
|
3360
3405
|
return ret;
|
|
3361
3406
|
},
|
|
3362
|
-
|
|
3407
|
+
__wbg_has_3a6f31f647e0ba22: function() { return handleError(function (arg0, arg1) {
|
|
3363
3408
|
const ret = Reflect.has(arg0, arg1);
|
|
3364
3409
|
return ret;
|
|
3365
3410
|
}, arguments); },
|
|
3366
|
-
|
|
3411
|
+
__wbg_headers_de17f740bce997ae: function(arg0) {
|
|
3367
3412
|
const ret = arg0.headers;
|
|
3368
3413
|
return ret;
|
|
3369
3414
|
},
|
|
3370
|
-
|
|
3415
|
+
__wbg_info_092aeeab8cd06a0b: function(arg0) {
|
|
3371
3416
|
console.info(arg0);
|
|
3372
3417
|
},
|
|
3373
|
-
|
|
3418
|
+
__wbg_info_eba996fb48d58831: function(arg0, arg1, arg2, arg3) {
|
|
3374
3419
|
console.info(arg0, arg1, arg2, arg3);
|
|
3375
3420
|
},
|
|
3376
|
-
|
|
3421
|
+
__wbg_instanceof_ArrayBuffer_eab9f28fbec23477: function(arg0) {
|
|
3377
3422
|
let result;
|
|
3378
3423
|
try {
|
|
3379
3424
|
result = arg0 instanceof ArrayBuffer;
|
|
@@ -3383,7 +3428,7 @@ function __wbg_get_imports() {
|
|
|
3383
3428
|
const ret = result;
|
|
3384
3429
|
return ret;
|
|
3385
3430
|
},
|
|
3386
|
-
|
|
3431
|
+
__wbg_instanceof_DomException_47098be3333e16f8: function(arg0) {
|
|
3387
3432
|
let result;
|
|
3388
3433
|
try {
|
|
3389
3434
|
result = arg0 instanceof DOMException;
|
|
@@ -3393,7 +3438,7 @@ function __wbg_get_imports() {
|
|
|
3393
3438
|
const ret = result;
|
|
3394
3439
|
return ret;
|
|
3395
3440
|
},
|
|
3396
|
-
|
|
3441
|
+
__wbg_instanceof_Map_10d4edf60fcf9327: function(arg0) {
|
|
3397
3442
|
let result;
|
|
3398
3443
|
try {
|
|
3399
3444
|
result = arg0 instanceof Map;
|
|
@@ -3403,7 +3448,7 @@ function __wbg_get_imports() {
|
|
|
3403
3448
|
const ret = result;
|
|
3404
3449
|
return ret;
|
|
3405
3450
|
},
|
|
3406
|
-
|
|
3451
|
+
__wbg_instanceof_Response_370b83aa6c17e88a: function(arg0) {
|
|
3407
3452
|
let result;
|
|
3408
3453
|
try {
|
|
3409
3454
|
result = arg0 instanceof Response;
|
|
@@ -3413,7 +3458,7 @@ function __wbg_get_imports() {
|
|
|
3413
3458
|
const ret = result;
|
|
3414
3459
|
return ret;
|
|
3415
3460
|
},
|
|
3416
|
-
|
|
3461
|
+
__wbg_instanceof_Uint8Array_57d77acd50e4c44d: function(arg0) {
|
|
3417
3462
|
let result;
|
|
3418
3463
|
try {
|
|
3419
3464
|
result = arg0 instanceof Uint8Array;
|
|
@@ -3423,7 +3468,7 @@ function __wbg_get_imports() {
|
|
|
3423
3468
|
const ret = result;
|
|
3424
3469
|
return ret;
|
|
3425
3470
|
},
|
|
3426
|
-
|
|
3471
|
+
__wbg_instanceof_WorkerGlobalScope_62ef0414f7e1d9d1: function(arg0) {
|
|
3427
3472
|
let result;
|
|
3428
3473
|
try {
|
|
3429
3474
|
result = arg0 instanceof WorkerGlobalScope;
|
|
@@ -3433,122 +3478,138 @@ function __wbg_get_imports() {
|
|
|
3433
3478
|
const ret = result;
|
|
3434
3479
|
return ret;
|
|
3435
3480
|
},
|
|
3436
|
-
|
|
3481
|
+
__wbg_isArray_c6c6ef8308995bcf: function(arg0) {
|
|
3437
3482
|
const ret = Array.isArray(arg0);
|
|
3438
3483
|
return ret;
|
|
3439
3484
|
},
|
|
3440
|
-
|
|
3485
|
+
__wbg_isSafeInteger_3c56c421a5b4cce4: function(arg0) {
|
|
3441
3486
|
const ret = Number.isSafeInteger(arg0);
|
|
3442
3487
|
return ret;
|
|
3443
3488
|
},
|
|
3444
|
-
|
|
3489
|
+
__wbg_iterator_9d68985a1d096fc2: function() {
|
|
3445
3490
|
const ret = Symbol.iterator;
|
|
3446
3491
|
return ret;
|
|
3447
3492
|
},
|
|
3448
|
-
|
|
3493
|
+
__wbg_length_0a6ce016dc1460b0: function(arg0) {
|
|
3449
3494
|
const ret = arg0.length;
|
|
3450
3495
|
return ret;
|
|
3451
3496
|
},
|
|
3452
|
-
|
|
3497
|
+
__wbg_length_ba3c032602efe310: function(arg0) {
|
|
3453
3498
|
const ret = arg0.length;
|
|
3454
3499
|
return ret;
|
|
3455
3500
|
},
|
|
3456
|
-
|
|
3457
|
-
const ret = arg0.length;
|
|
3458
|
-
return ret;
|
|
3459
|
-
},
|
|
3460
|
-
__wbg_log_dac59df46f28c346: function(arg0, arg1) {
|
|
3501
|
+
__wbg_log_8d00d059d90f8f62: function(arg0, arg1) {
|
|
3461
3502
|
console.log(getStringFromWasm0(arg0, arg1));
|
|
3462
3503
|
},
|
|
3463
|
-
|
|
3504
|
+
__wbg_mark_310e9a031ccc84ff: function() { return handleError(function (arg0, arg1, arg2) {
|
|
3464
3505
|
arg0.mark(getStringFromWasm0(arg1, arg2));
|
|
3465
3506
|
}, arguments); },
|
|
3466
|
-
|
|
3507
|
+
__wbg_mark_742962d66a858cc5: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
3467
3508
|
arg0.mark(getStringFromWasm0(arg1, arg2), arg3);
|
|
3468
3509
|
}, arguments); },
|
|
3469
|
-
|
|
3510
|
+
__wbg_measure_54743279e77e77bb: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
3470
3511
|
arg0.measure(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4), getStringFromWasm0(arg5, arg6));
|
|
3471
3512
|
}, arguments); },
|
|
3472
|
-
|
|
3513
|
+
__wbg_measure_cd1f7667d5f5517d: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
3473
3514
|
arg0.measure(getStringFromWasm0(arg1, arg2), arg3);
|
|
3474
3515
|
}, arguments); },
|
|
3475
|
-
|
|
3516
|
+
__wbg_message_609b498da776cb30: function(arg0, arg1) {
|
|
3476
3517
|
const ret = arg1.message;
|
|
3477
3518
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3478
3519
|
const len1 = WASM_VECTOR_LEN;
|
|
3479
3520
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3480
3521
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3481
3522
|
},
|
|
3482
|
-
|
|
3523
|
+
__wbg_message_d5628ca19de920d3: function(arg0) {
|
|
3483
3524
|
const ret = arg0.message;
|
|
3484
3525
|
return ret;
|
|
3485
3526
|
},
|
|
3486
|
-
|
|
3527
|
+
__wbg_msCrypto_bd5a034af96bcba6: function(arg0) {
|
|
3487
3528
|
const ret = arg0.msCrypto;
|
|
3488
3529
|
return ret;
|
|
3489
3530
|
},
|
|
3490
|
-
|
|
3531
|
+
__wbg_name_bf92195f4668ab6e: function(arg0) {
|
|
3532
|
+
const ret = arg0.name;
|
|
3533
|
+
return ret;
|
|
3534
|
+
},
|
|
3535
|
+
__wbg_name_e75d30c26e8dc6aa: function(arg0, arg1) {
|
|
3491
3536
|
const ret = arg1.name;
|
|
3492
3537
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3493
3538
|
const len1 = WASM_VECTOR_LEN;
|
|
3494
3539
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3495
3540
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3496
3541
|
},
|
|
3497
|
-
|
|
3542
|
+
__wbg_name_f19fb17a86413602: function(arg0, arg1) {
|
|
3498
3543
|
const ret = arg1.name;
|
|
3499
3544
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3500
3545
|
const len1 = WASM_VECTOR_LEN;
|
|
3501
3546
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3502
3547
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3503
3548
|
},
|
|
3504
|
-
|
|
3505
|
-
const ret = arg0.name;
|
|
3506
|
-
return ret;
|
|
3507
|
-
},
|
|
3508
|
-
__wbg_navigator_4478931f32ebca57: function(arg0) {
|
|
3549
|
+
__wbg_navigator_83daf29f5beb4064: function(arg0) {
|
|
3509
3550
|
const ret = arg0.navigator;
|
|
3510
3551
|
return ret;
|
|
3511
3552
|
},
|
|
3512
|
-
|
|
3553
|
+
__wbg_new_0_e486ec9936f7edbf: function() {
|
|
3513
3554
|
const ret = new Date();
|
|
3514
3555
|
return ret;
|
|
3515
3556
|
},
|
|
3516
|
-
|
|
3517
|
-
const ret = new
|
|
3557
|
+
__wbg_new_18865c63fa645c6f: function() { return handleError(function () {
|
|
3558
|
+
const ret = new Headers();
|
|
3518
3559
|
return ret;
|
|
3519
|
-
},
|
|
3520
|
-
|
|
3521
|
-
const ret = new
|
|
3560
|
+
}, arguments); },
|
|
3561
|
+
__wbg_new_227d7c05414eb861: function() {
|
|
3562
|
+
const ret = new Error();
|
|
3522
3563
|
return ret;
|
|
3523
3564
|
},
|
|
3524
|
-
|
|
3565
|
+
__wbg_new_2fad8ca02fd00684: function() {
|
|
3525
3566
|
const ret = new Object();
|
|
3526
3567
|
return ret;
|
|
3527
3568
|
},
|
|
3528
|
-
|
|
3569
|
+
__wbg_new_3baa8d9866155c79: function() {
|
|
3529
3570
|
const ret = new Array();
|
|
3530
3571
|
return ret;
|
|
3531
3572
|
},
|
|
3532
|
-
|
|
3533
|
-
const ret = new
|
|
3573
|
+
__wbg_new_46ae4e4ff2a07a64: function() {
|
|
3574
|
+
const ret = new Map();
|
|
3575
|
+
return ret;
|
|
3576
|
+
},
|
|
3577
|
+
__wbg_new_51ff470dc2f61e27: function() { return handleError(function () {
|
|
3578
|
+
const ret = new AbortController();
|
|
3534
3579
|
return ret;
|
|
3535
3580
|
}, arguments); },
|
|
3536
|
-
|
|
3581
|
+
__wbg_new_5aafc1bf3ffe858c: function() {
|
|
3582
|
+
const ret = new Error();
|
|
3583
|
+
return ret;
|
|
3584
|
+
},
|
|
3585
|
+
__wbg_new_8454eee672b2ba6e: function(arg0) {
|
|
3586
|
+
const ret = new Uint8Array(arg0);
|
|
3587
|
+
return ret;
|
|
3588
|
+
},
|
|
3589
|
+
__wbg_new_b47e026ba742fe65: function(arg0) {
|
|
3590
|
+
const ret = new Date(arg0);
|
|
3591
|
+
return ret;
|
|
3592
|
+
},
|
|
3593
|
+
__wbg_new_b8c00ea5e985ad9c: function(arg0, arg1, arg2) {
|
|
3594
|
+
const ret = new DataView(arg0, arg1 >>> 0, arg2 >>> 0);
|
|
3595
|
+
return ret;
|
|
3596
|
+
},
|
|
3597
|
+
__wbg_new_c9ea13ea803a692e: function(arg0, arg1) {
|
|
3537
3598
|
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
3538
3599
|
return ret;
|
|
3539
3600
|
},
|
|
3540
|
-
|
|
3541
|
-
const ret = new
|
|
3601
|
+
__wbg_new_from_slice_5a173c243af2e823: function(arg0, arg1) {
|
|
3602
|
+
const ret = new Uint8Array(getArrayU8FromWasm0(arg0, arg1));
|
|
3542
3603
|
return ret;
|
|
3543
3604
|
},
|
|
3544
|
-
|
|
3605
|
+
__wbg_new_typed_1137602701dc87d4: function(arg0, arg1) {
|
|
3545
3606
|
try {
|
|
3546
3607
|
var state0 = {a: arg0, b: arg1};
|
|
3547
3608
|
var cb0 = (arg0, arg1) => {
|
|
3548
3609
|
const a = state0.a;
|
|
3549
3610
|
state0.a = 0;
|
|
3550
3611
|
try {
|
|
3551
|
-
return
|
|
3612
|
+
return wasm_bindgen__convert__closures_____invoke__h8b29a8b297a89d8b(a, state0.b, arg0, arg1);
|
|
3552
3613
|
} finally {
|
|
3553
3614
|
state0.a = a;
|
|
3554
3615
|
}
|
|
@@ -3556,266 +3617,242 @@ function __wbg_get_imports() {
|
|
|
3556
3617
|
const ret = new Promise(cb0);
|
|
3557
3618
|
return ret;
|
|
3558
3619
|
} finally {
|
|
3559
|
-
state0.a =
|
|
3620
|
+
state0.a = 0;
|
|
3560
3621
|
}
|
|
3561
3622
|
},
|
|
3562
|
-
|
|
3563
|
-
const ret = new AbortController();
|
|
3564
|
-
return ret;
|
|
3565
|
-
}, arguments); },
|
|
3566
|
-
__wbg_new_dca287b076112a51: function() {
|
|
3567
|
-
const ret = new Map();
|
|
3568
|
-
return ret;
|
|
3569
|
-
},
|
|
3570
|
-
__wbg_new_dd2b680c8bf6ae29: function(arg0) {
|
|
3571
|
-
const ret = new Uint8Array(arg0);
|
|
3572
|
-
return ret;
|
|
3573
|
-
},
|
|
3574
|
-
__wbg_new_f0796def86e99471: function() {
|
|
3575
|
-
const ret = new Error();
|
|
3576
|
-
return ret;
|
|
3577
|
-
},
|
|
3578
|
-
__wbg_new_from_slice_a3d2629dc1826784: function(arg0, arg1) {
|
|
3579
|
-
const ret = new Uint8Array(getArrayU8FromWasm0(arg0, arg1));
|
|
3580
|
-
return ret;
|
|
3581
|
-
},
|
|
3582
|
-
__wbg_new_no_args_1c7c842f08d00ebb: function(arg0, arg1) {
|
|
3583
|
-
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
3584
|
-
return ret;
|
|
3585
|
-
},
|
|
3586
|
-
__wbg_new_with_byte_offset_and_length_aa261d9c9da49eb1: function(arg0, arg1, arg2) {
|
|
3623
|
+
__wbg_new_with_byte_offset_and_length_643e5e9e2fb6b1ad: function(arg0, arg1, arg2) {
|
|
3587
3624
|
const ret = new Uint8Array(arg0, arg1 >>> 0, arg2 >>> 0);
|
|
3588
3625
|
return ret;
|
|
3589
3626
|
},
|
|
3590
|
-
|
|
3627
|
+
__wbg_new_with_into_underlying_source_fd904252f385f59c: function(arg0, arg1) {
|
|
3591
3628
|
const ret = new ReadableStream(IntoUnderlyingSource.__wrap(arg0), arg1);
|
|
3592
3629
|
return ret;
|
|
3593
3630
|
},
|
|
3594
|
-
|
|
3631
|
+
__wbg_new_with_length_9011f5da794bf5d9: function(arg0) {
|
|
3595
3632
|
const ret = new Uint8Array(arg0 >>> 0);
|
|
3596
3633
|
return ret;
|
|
3597
3634
|
},
|
|
3598
|
-
|
|
3635
|
+
__wbg_new_with_str_and_init_da311e12114f4d1e: function() { return handleError(function (arg0, arg1, arg2) {
|
|
3599
3636
|
const ret = new Request(getStringFromWasm0(arg0, arg1), arg2);
|
|
3600
3637
|
return ret;
|
|
3601
3638
|
}, arguments); },
|
|
3602
|
-
|
|
3639
|
+
__wbg_new_with_year_month_day_110f7ebcb5bcf261: function(arg0, arg1, arg2) {
|
|
3603
3640
|
const ret = new Date(arg0 >>> 0, arg1, arg2);
|
|
3604
3641
|
return ret;
|
|
3605
3642
|
},
|
|
3606
|
-
|
|
3643
|
+
__wbg_next_261c3c48c6e309a5: function(arg0) {
|
|
3644
|
+
const ret = arg0.next;
|
|
3645
|
+
return ret;
|
|
3646
|
+
},
|
|
3647
|
+
__wbg_next_84898466512a967f: function() { return handleError(function (arg0) {
|
|
3607
3648
|
const ret = arg0.next();
|
|
3608
3649
|
return ret;
|
|
3609
3650
|
}, arguments); },
|
|
3610
|
-
|
|
3651
|
+
__wbg_next_aacee310bcfe6461: function() { return handleError(function (arg0) {
|
|
3611
3652
|
const ret = arg0.next();
|
|
3612
3653
|
return ret;
|
|
3613
3654
|
}, arguments); },
|
|
3614
|
-
|
|
3615
|
-
const ret = arg0.next;
|
|
3616
|
-
return ret;
|
|
3617
|
-
},
|
|
3618
|
-
__wbg_node_905d3e251edff8a2: function(arg0) {
|
|
3655
|
+
__wbg_node_84ea875411254db1: function(arg0) {
|
|
3619
3656
|
const ret = arg0.node;
|
|
3620
3657
|
return ret;
|
|
3621
3658
|
},
|
|
3622
|
-
|
|
3623
|
-
const ret =
|
|
3659
|
+
__wbg_now_4f457f10f864aec5: function() {
|
|
3660
|
+
const ret = Date.now();
|
|
3624
3661
|
return ret;
|
|
3625
3662
|
},
|
|
3626
|
-
|
|
3663
|
+
__wbg_now_e627993f858511c9: function(arg0) {
|
|
3627
3664
|
const ret = arg0.now();
|
|
3628
3665
|
return ret;
|
|
3629
3666
|
},
|
|
3630
|
-
|
|
3631
|
-
const ret =
|
|
3667
|
+
__wbg_now_e7c6795a7f81e10f: function(arg0) {
|
|
3668
|
+
const ret = arg0.now();
|
|
3632
3669
|
return ret;
|
|
3633
3670
|
},
|
|
3634
|
-
|
|
3671
|
+
__wbg_on_auth_required_ae19ab7efcd20059: function() { return handleError(function (arg0) {
|
|
3635
3672
|
const ret = arg0.on_auth_required();
|
|
3636
3673
|
return ret;
|
|
3637
3674
|
}, arguments); },
|
|
3638
|
-
|
|
3675
|
+
__wbg_on_close_361f44e219c231fa: function(arg0) {
|
|
3639
3676
|
arg0.on_close();
|
|
3640
3677
|
},
|
|
3641
|
-
|
|
3678
|
+
__wbg_on_consent_update_3dbebbc393db4447: function(arg0, arg1) {
|
|
3642
3679
|
arg0.on_consent_update(arg1);
|
|
3643
3680
|
},
|
|
3644
|
-
|
|
3681
|
+
__wbg_on_conversation_aec5b7e48b552f1c: function(arg0, arg1) {
|
|
3645
3682
|
arg0.on_conversation(Conversation.__wrap(arg1));
|
|
3646
3683
|
},
|
|
3647
|
-
|
|
3684
|
+
__wbg_on_error_bfd386d7d4d42622: function(arg0, arg1) {
|
|
3648
3685
|
arg0.on_error(arg1);
|
|
3649
3686
|
},
|
|
3650
|
-
|
|
3651
|
-
arg0.on_message(arg1);
|
|
3652
|
-
},
|
|
3653
|
-
__wbg_on_message_deleted_041b585ca4b08b2d: function(arg0, arg1) {
|
|
3687
|
+
__wbg_on_message_deleted_1351623c580cb34e: function(arg0, arg1) {
|
|
3654
3688
|
arg0.on_message_deleted(arg1);
|
|
3655
3689
|
},
|
|
3656
|
-
|
|
3690
|
+
__wbg_on_message_ed1f43392e0b07ed: function(arg0, arg1) {
|
|
3691
|
+
arg0.on_message(arg1);
|
|
3692
|
+
},
|
|
3693
|
+
__wbg_on_user_preference_update_9a33e9402b699a6a: function(arg0, arg1, arg2) {
|
|
3657
3694
|
var v0 = getArrayJsValueFromWasm0(arg1, arg2).slice();
|
|
3658
3695
|
wasm.__wbindgen_free(arg1, arg2 * 4, 4);
|
|
3659
3696
|
arg0.on_user_preference_update(v0);
|
|
3660
3697
|
},
|
|
3661
|
-
|
|
3662
|
-
const ret =
|
|
3698
|
+
__wbg_performance_3550bf29533f0eae: function(arg0) {
|
|
3699
|
+
const ret = arg0.performance;
|
|
3663
3700
|
return ret;
|
|
3664
3701
|
},
|
|
3665
|
-
|
|
3702
|
+
__wbg_performance_3fcf6e32a7e1ed0a: function(arg0) {
|
|
3666
3703
|
const ret = arg0.performance;
|
|
3667
3704
|
return ret;
|
|
3668
3705
|
},
|
|
3669
|
-
|
|
3670
|
-
const ret =
|
|
3706
|
+
__wbg_performance_757310249566272b: function() {
|
|
3707
|
+
const ret = globalThis.performance;
|
|
3671
3708
|
return ret;
|
|
3672
3709
|
},
|
|
3673
|
-
|
|
3710
|
+
__wbg_postMessage_ead2ef5ee8c7a94e: function() { return handleError(function (arg0, arg1) {
|
|
3674
3711
|
arg0.postMessage(arg1);
|
|
3675
3712
|
}, arguments); },
|
|
3676
|
-
|
|
3713
|
+
__wbg_process_44c7a14e11e9f69e: function(arg0) {
|
|
3677
3714
|
const ret = arg0.process;
|
|
3678
3715
|
return ret;
|
|
3679
3716
|
},
|
|
3680
|
-
|
|
3717
|
+
__wbg_prototypesetcall_fd4050e806e1d519: function(arg0, arg1, arg2) {
|
|
3681
3718
|
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
|
|
3682
3719
|
},
|
|
3683
|
-
|
|
3720
|
+
__wbg_push_60a5366c0bb22a7d: function(arg0, arg1) {
|
|
3684
3721
|
const ret = arg0.push(arg1);
|
|
3685
3722
|
return ret;
|
|
3686
3723
|
},
|
|
3687
|
-
|
|
3724
|
+
__wbg_queueMicrotask_40ac6ffc2848ba77: function(arg0) {
|
|
3725
|
+
queueMicrotask(arg0);
|
|
3726
|
+
},
|
|
3727
|
+
__wbg_queueMicrotask_74d092439f6494c1: function(arg0) {
|
|
3688
3728
|
const ret = arg0.queueMicrotask;
|
|
3689
3729
|
return ret;
|
|
3690
3730
|
},
|
|
3691
|
-
|
|
3692
|
-
queueMicrotask(arg0);
|
|
3693
|
-
},
|
|
3694
|
-
__wbg_randomFillSync_ac0988aba3254290: function() { return handleError(function (arg0, arg1) {
|
|
3731
|
+
__wbg_randomFillSync_6c25eac9869eb53c: function() { return handleError(function (arg0, arg1) {
|
|
3695
3732
|
arg0.randomFillSync(arg1);
|
|
3696
3733
|
}, arguments); },
|
|
3697
|
-
|
|
3734
|
+
__wbg_random_fc287e2ecb3e2805: function() {
|
|
3698
3735
|
const ret = Math.random();
|
|
3699
3736
|
return ret;
|
|
3700
3737
|
},
|
|
3701
|
-
|
|
3702
|
-
const ret = arg0.read(arg1, arg2);
|
|
3738
|
+
__wbg_read_72e82f3f505b8b4a: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
3739
|
+
const ret = arg0.read(getArrayU8FromWasm0(arg1, arg2), arg3);
|
|
3703
3740
|
return ret;
|
|
3704
3741
|
}, arguments); },
|
|
3705
|
-
|
|
3742
|
+
__wbg_read_ac2e4325f1799cbe: function(arg0) {
|
|
3706
3743
|
const ret = arg0.read();
|
|
3707
3744
|
return ret;
|
|
3708
3745
|
},
|
|
3709
|
-
|
|
3710
|
-
const ret = arg0.read(
|
|
3746
|
+
__wbg_read_d67a54b770176645: function() { return handleError(function (arg0, arg1, arg2) {
|
|
3747
|
+
const ret = arg0.read(arg1, arg2);
|
|
3711
3748
|
return ret;
|
|
3712
3749
|
}, arguments); },
|
|
3713
|
-
|
|
3750
|
+
__wbg_releaseLock_9e0ebc0b5270a358: function(arg0) {
|
|
3714
3751
|
arg0.releaseLock();
|
|
3715
3752
|
},
|
|
3716
|
-
|
|
3753
|
+
__wbg_require_b4edbdcf3e2a1ef0: function() { return handleError(function () {
|
|
3717
3754
|
const ret = module.require;
|
|
3718
3755
|
return ret;
|
|
3719
3756
|
}, arguments); },
|
|
3720
|
-
|
|
3757
|
+
__wbg_resolve_9feb5d906ca62419: function(arg0) {
|
|
3721
3758
|
const ret = Promise.resolve(arg0);
|
|
3722
3759
|
return ret;
|
|
3723
3760
|
},
|
|
3724
|
-
|
|
3761
|
+
__wbg_respond_e7e53102735b2ae2: function() { return handleError(function (arg0, arg1) {
|
|
3725
3762
|
arg0.respond(arg1 >>> 0);
|
|
3726
3763
|
}, arguments); },
|
|
3727
|
-
|
|
3764
|
+
__wbg_self_fbd35b4e1b417b7c: function(arg0) {
|
|
3728
3765
|
const ret = arg0.self;
|
|
3729
3766
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3730
3767
|
},
|
|
3731
|
-
|
|
3768
|
+
__wbg_setInterval_cbf1c35c6a692d37: function() { return handleError(function (arg0, arg1) {
|
|
3732
3769
|
const ret = setInterval(arg0, arg1);
|
|
3733
3770
|
return ret;
|
|
3734
3771
|
}, arguments); },
|
|
3735
|
-
|
|
3772
|
+
__wbg_setTimeout_30be5552e4410378: function(arg0, arg1) {
|
|
3736
3773
|
const ret = setTimeout(arg0, arg1);
|
|
3737
3774
|
return ret;
|
|
3738
3775
|
},
|
|
3739
|
-
|
|
3776
|
+
__wbg_setTimeout_56bcdccbad22fd44: function() { return handleError(function (arg0, arg1) {
|
|
3740
3777
|
const ret = setTimeout(arg0, arg1);
|
|
3741
3778
|
return ret;
|
|
3742
|
-
},
|
|
3743
|
-
|
|
3779
|
+
}, arguments); },
|
|
3780
|
+
__wbg_setTimeout_9f4169770fc5a5c3: function(arg0, arg1) {
|
|
3744
3781
|
const ret = setTimeout(arg0, arg1);
|
|
3745
3782
|
return ret;
|
|
3746
|
-
},
|
|
3747
|
-
|
|
3783
|
+
},
|
|
3784
|
+
__wbg_setUint32_e0b783cc7c089ba8: function(arg0, arg1, arg2) {
|
|
3748
3785
|
arg0.setUint32(arg1 >>> 0, arg2 >>> 0);
|
|
3749
3786
|
},
|
|
3750
|
-
|
|
3751
|
-
const ret =
|
|
3787
|
+
__wbg_set_5337f8ac82364a3f: function() { return handleError(function (arg0, arg1, arg2) {
|
|
3788
|
+
const ret = Reflect.set(arg0, arg1, arg2);
|
|
3752
3789
|
return ret;
|
|
3753
|
-
},
|
|
3754
|
-
|
|
3790
|
+
}, arguments); },
|
|
3791
|
+
__wbg_set_6be42768c690e380: function(arg0, arg1, arg2) {
|
|
3755
3792
|
arg0[arg1] = arg2;
|
|
3756
3793
|
},
|
|
3757
|
-
|
|
3758
|
-
const ret =
|
|
3794
|
+
__wbg_set_82f7a370f604db70: function(arg0, arg1, arg2) {
|
|
3795
|
+
const ret = arg0.set(arg1, arg2);
|
|
3759
3796
|
return ret;
|
|
3797
|
+
},
|
|
3798
|
+
__wbg_set_959f043b9152efeb: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
3799
|
+
arg0.set(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
3760
3800
|
}, arguments); },
|
|
3761
|
-
|
|
3801
|
+
__wbg_set_at_43ef9e92a1449d80: function(arg0, arg1) {
|
|
3762
3802
|
arg0.at = arg1;
|
|
3763
3803
|
},
|
|
3764
|
-
|
|
3804
|
+
__wbg_set_b0d9dc239ecdb765: function(arg0, arg1, arg2) {
|
|
3805
|
+
arg0.set(getArrayU8FromWasm0(arg1, arg2));
|
|
3806
|
+
},
|
|
3807
|
+
__wbg_set_body_aaff4f5f9991f342: function(arg0, arg1) {
|
|
3765
3808
|
arg0.body = arg1;
|
|
3766
3809
|
},
|
|
3767
|
-
|
|
3810
|
+
__wbg_set_cache_d1f2b7b4dfa39317: function(arg0, arg1) {
|
|
3768
3811
|
arg0.cache = __wbindgen_enum_RequestCache[arg1];
|
|
3769
3812
|
},
|
|
3770
|
-
|
|
3771
|
-
arg0.set(getArrayU8FromWasm0(arg1, arg2));
|
|
3772
|
-
},
|
|
3773
|
-
__wbg_set_create_1f902c5936adde7d: function(arg0, arg1) {
|
|
3813
|
+
__wbg_set_create_637fdbc7119e4631: function(arg0, arg1) {
|
|
3774
3814
|
arg0.create = arg1 !== 0;
|
|
3775
3815
|
},
|
|
3776
|
-
|
|
3816
|
+
__wbg_set_create_bc239cc43df001d6: function(arg0, arg1) {
|
|
3777
3817
|
arg0.create = arg1 !== 0;
|
|
3778
3818
|
},
|
|
3779
|
-
|
|
3819
|
+
__wbg_set_credentials_f31e4d30b974ce14: function(arg0, arg1) {
|
|
3780
3820
|
arg0.credentials = __wbindgen_enum_RequestCredentials[arg1];
|
|
3781
3821
|
},
|
|
3782
|
-
|
|
3783
|
-
arg0.set(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
3784
|
-
}, arguments); },
|
|
3785
|
-
__wbg_set_f43e577aea94465b: function(arg0, arg1, arg2) {
|
|
3822
|
+
__wbg_set_f614f6a0608d1d1d: function(arg0, arg1, arg2) {
|
|
3786
3823
|
arg0[arg1 >>> 0] = arg2;
|
|
3787
3824
|
},
|
|
3788
|
-
|
|
3825
|
+
__wbg_set_headers_ae96049ea40e9eef: function(arg0, arg1) {
|
|
3789
3826
|
arg0.headers = arg1;
|
|
3790
3827
|
},
|
|
3791
|
-
|
|
3828
|
+
__wbg_set_high_water_mark_84684938153a659a: function(arg0, arg1) {
|
|
3792
3829
|
arg0.highWaterMark = arg1;
|
|
3793
3830
|
},
|
|
3794
|
-
|
|
3831
|
+
__wbg_set_integrity_e20206ae8869d3fd: function(arg0, arg1, arg2) {
|
|
3795
3832
|
arg0.integrity = getStringFromWasm0(arg1, arg2);
|
|
3796
3833
|
},
|
|
3797
|
-
|
|
3834
|
+
__wbg_set_method_0eea8a5597775fa1: function(arg0, arg1, arg2) {
|
|
3798
3835
|
arg0.method = getStringFromWasm0(arg1, arg2);
|
|
3799
3836
|
},
|
|
3800
|
-
|
|
3837
|
+
__wbg_set_mode_9fe47bff60a1580d: function(arg0, arg1) {
|
|
3801
3838
|
arg0.mode = __wbindgen_enum_RequestMode[arg1];
|
|
3802
3839
|
},
|
|
3803
|
-
|
|
3840
|
+
__wbg_set_redirect_d59447760eb3129d: function(arg0, arg1) {
|
|
3804
3841
|
arg0.redirect = __wbindgen_enum_RequestRedirect[arg1];
|
|
3805
3842
|
},
|
|
3806
|
-
|
|
3843
|
+
__wbg_set_referrer_d0e5dc091bbc9f75: function(arg0, arg1, arg2) {
|
|
3807
3844
|
arg0.referrer = getStringFromWasm0(arg1, arg2);
|
|
3808
3845
|
},
|
|
3809
|
-
|
|
3846
|
+
__wbg_set_referrer_policy_5afdd37afd73c769: function(arg0, arg1) {
|
|
3810
3847
|
arg0.referrerPolicy = __wbindgen_enum_ReferrerPolicy[arg1];
|
|
3811
3848
|
},
|
|
3812
|
-
|
|
3849
|
+
__wbg_set_signal_8c5cf4c3b27bd8a8: function(arg0, arg1) {
|
|
3813
3850
|
arg0.signal = arg1;
|
|
3814
3851
|
},
|
|
3815
|
-
|
|
3852
|
+
__wbg_set_text_content_63c250954481807a: function(arg0, arg1, arg2) {
|
|
3816
3853
|
arg0.textContent = getStringFromWasm0(arg1, arg2);
|
|
3817
3854
|
},
|
|
3818
|
-
|
|
3855
|
+
__wbg_signal_4643ce883b92b553: function(arg0) {
|
|
3819
3856
|
const ret = arg0.signal;
|
|
3820
3857
|
return ret;
|
|
3821
3858
|
},
|
|
@@ -3823,222 +3860,215 @@ function __wbg_get_imports() {
|
|
|
3823
3860
|
const ret = SignatureRequestHandle.__wrap(arg0);
|
|
3824
3861
|
return ret;
|
|
3825
3862
|
},
|
|
3826
|
-
|
|
3827
|
-
const ret =
|
|
3828
|
-
|
|
3863
|
+
__wbg_stack_18dcc55b1429bfed: function(arg0, arg1) {
|
|
3864
|
+
const ret = arg1.stack;
|
|
3865
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3866
|
+
var len1 = WASM_VECTOR_LEN;
|
|
3867
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3868
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3829
3869
|
},
|
|
3830
|
-
|
|
3870
|
+
__wbg_stack_3b0d974bbf31e44f: function(arg0, arg1) {
|
|
3831
3871
|
const ret = arg1.stack;
|
|
3832
3872
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3833
3873
|
const len1 = WASM_VECTOR_LEN;
|
|
3834
3874
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3835
3875
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3836
3876
|
},
|
|
3837
|
-
|
|
3838
|
-
const ret = arg0.stack;
|
|
3839
|
-
return ret;
|
|
3840
|
-
},
|
|
3841
|
-
__wbg_stack_8b207ade94c30c09: function(arg0, arg1) {
|
|
3877
|
+
__wbg_stack_5b90bbbb003d7e5c: function(arg0, arg1) {
|
|
3842
3878
|
const ret = arg1.stack;
|
|
3843
|
-
|
|
3844
|
-
|
|
3879
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3880
|
+
const len1 = WASM_VECTOR_LEN;
|
|
3845
3881
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3846
3882
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3847
3883
|
},
|
|
3848
|
-
|
|
3884
|
+
__wbg_stack_5f3026c9cb27e9a3: function(arg0) {
|
|
3849
3885
|
const ret = arg0.stack;
|
|
3850
3886
|
return ret;
|
|
3851
3887
|
},
|
|
3852
|
-
|
|
3853
|
-
const ret =
|
|
3854
|
-
|
|
3855
|
-
const len1 = WASM_VECTOR_LEN;
|
|
3856
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3857
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3888
|
+
__wbg_stack_e914725ec1a4a021: function(arg0) {
|
|
3889
|
+
const ret = arg0.stack;
|
|
3890
|
+
return ret;
|
|
3858
3891
|
},
|
|
3859
|
-
|
|
3892
|
+
__wbg_static_accessor_DOCUMENT_fa300f5b84193774: function() {
|
|
3860
3893
|
const ret = document;
|
|
3861
3894
|
return ret;
|
|
3862
3895
|
},
|
|
3863
|
-
|
|
3864
|
-
const ret = typeof
|
|
3896
|
+
__wbg_static_accessor_GLOBAL_THIS_1c7f1bd6c6941fdb: function() {
|
|
3897
|
+
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
|
3865
3898
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3866
3899
|
},
|
|
3867
|
-
|
|
3868
|
-
const ret = typeof
|
|
3900
|
+
__wbg_static_accessor_GLOBAL_e039bc914f83e74e: function() {
|
|
3901
|
+
const ret = typeof global === 'undefined' ? null : global;
|
|
3869
3902
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3870
3903
|
},
|
|
3871
|
-
|
|
3904
|
+
__wbg_static_accessor_SELF_8bf8c48c28420ad5: function() {
|
|
3872
3905
|
const ret = typeof self === 'undefined' ? null : self;
|
|
3873
3906
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3874
3907
|
},
|
|
3875
|
-
|
|
3908
|
+
__wbg_static_accessor_WINDOW_6aeee9b51652ee0f: function() {
|
|
3876
3909
|
const ret = typeof window === 'undefined' ? null : window;
|
|
3877
3910
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3878
3911
|
},
|
|
3879
|
-
|
|
3912
|
+
__wbg_status_157e67ab07d01f8a: function(arg0) {
|
|
3880
3913
|
const ret = arg0.status;
|
|
3881
3914
|
return ret;
|
|
3882
3915
|
},
|
|
3883
|
-
|
|
3916
|
+
__wbg_storage_78992f104707a253: function(arg0) {
|
|
3884
3917
|
const ret = arg0.storage;
|
|
3885
3918
|
return ret;
|
|
3886
3919
|
},
|
|
3887
|
-
|
|
3888
|
-
const ret = JSON.stringify(arg0);
|
|
3889
|
-
return ret;
|
|
3890
|
-
}, arguments); },
|
|
3891
|
-
__wbg_subarray_a96e1fef17ed23cb: function(arg0, arg1, arg2) {
|
|
3920
|
+
__wbg_subarray_fbe3cef290e1fa43: function(arg0, arg1, arg2) {
|
|
3892
3921
|
const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0);
|
|
3893
3922
|
return ret;
|
|
3894
3923
|
},
|
|
3895
|
-
|
|
3896
|
-
const ret = arg0.text();
|
|
3897
|
-
return ret;
|
|
3898
|
-
}, arguments); },
|
|
3899
|
-
__wbg_text_content_50199b46165a6fba: function(arg0, arg1) {
|
|
3924
|
+
__wbg_text_content_39133fe2ceeea2bf: function(arg0, arg1) {
|
|
3900
3925
|
const ret = arg1.textContent;
|
|
3901
3926
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3902
3927
|
const len1 = WASM_VECTOR_LEN;
|
|
3903
3928
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3904
3929
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3905
3930
|
},
|
|
3906
|
-
|
|
3907
|
-
const ret = arg0.
|
|
3931
|
+
__wbg_text_de416916b5c06490: function() { return handleError(function (arg0) {
|
|
3932
|
+
const ret = arg0.text();
|
|
3908
3933
|
return ret;
|
|
3909
|
-
},
|
|
3910
|
-
|
|
3934
|
+
}, arguments); },
|
|
3935
|
+
__wbg_then_20a157d939b514f5: function(arg0, arg1) {
|
|
3911
3936
|
const ret = arg0.then(arg1);
|
|
3912
3937
|
return ret;
|
|
3913
3938
|
},
|
|
3914
|
-
|
|
3915
|
-
const ret = arg0.
|
|
3939
|
+
__wbg_then_5ef9b762bc91555c: function(arg0, arg1, arg2) {
|
|
3940
|
+
const ret = arg0.then(arg1, arg2);
|
|
3916
3941
|
return ret;
|
|
3917
|
-
},
|
|
3918
|
-
|
|
3942
|
+
},
|
|
3943
|
+
__wbg_toString_90f2e8a87f5b736e: function() { return handleError(function (arg0, arg1) {
|
|
3919
3944
|
const ret = arg1.toString();
|
|
3920
3945
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3921
3946
|
const len1 = WASM_VECTOR_LEN;
|
|
3922
3947
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3923
3948
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3924
3949
|
}, arguments); },
|
|
3925
|
-
|
|
3950
|
+
__wbg_toString_9ae74d2321992740: function(arg0) {
|
|
3926
3951
|
const ret = arg0.toString();
|
|
3927
3952
|
return ret;
|
|
3928
3953
|
},
|
|
3929
|
-
|
|
3930
|
-
arg0.truncate(arg1);
|
|
3931
|
-
}, arguments); },
|
|
3932
|
-
__wbg_truncate_dc661fdcb0062fa7: function() { return handleError(function (arg0, arg1) {
|
|
3954
|
+
__wbg_truncate_1294f1d4ce528cec: function() { return handleError(function (arg0, arg1) {
|
|
3933
3955
|
arg0.truncate(arg1 >>> 0);
|
|
3934
3956
|
}, arguments); },
|
|
3935
|
-
|
|
3957
|
+
__wbg_truncate_6d72f826b55029bb: function() { return handleError(function (arg0, arg1) {
|
|
3958
|
+
arg0.truncate(arg1);
|
|
3959
|
+
}, arguments); },
|
|
3960
|
+
__wbg_url_a0e994e7d0317efc: function(arg0, arg1) {
|
|
3936
3961
|
const ret = arg1.url;
|
|
3937
3962
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3938
3963
|
const len1 = WASM_VECTOR_LEN;
|
|
3939
3964
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3940
3965
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3941
3966
|
},
|
|
3942
|
-
|
|
3967
|
+
__wbg_value_f852716acdeb3e82: function(arg0) {
|
|
3943
3968
|
const ret = arg0.value;
|
|
3944
3969
|
return ret;
|
|
3945
3970
|
},
|
|
3946
|
-
|
|
3971
|
+
__wbg_versions_276b2795b1c6a219: function(arg0) {
|
|
3947
3972
|
const ret = arg0.versions;
|
|
3948
3973
|
return ret;
|
|
3949
3974
|
},
|
|
3950
|
-
|
|
3975
|
+
__wbg_view_16bd97d49793e1a9: function(arg0) {
|
|
3951
3976
|
const ret = arg0.view;
|
|
3952
3977
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3953
3978
|
},
|
|
3954
|
-
|
|
3955
|
-
console.warn(arg0, arg1, arg2, arg3);
|
|
3956
|
-
},
|
|
3957
|
-
__wbg_warn_f7ae1b2e66ccb930: function(arg0) {
|
|
3979
|
+
__wbg_warn_1f9b94806da61fbb: function(arg0) {
|
|
3958
3980
|
console.warn(arg0);
|
|
3959
3981
|
},
|
|
3960
|
-
|
|
3961
|
-
|
|
3982
|
+
__wbg_warn_d258f6e2da5e0422: function(arg0, arg1, arg2, arg3) {
|
|
3983
|
+
console.warn(arg0, arg1, arg2, arg3);
|
|
3984
|
+
},
|
|
3985
|
+
__wbg_write_2c5b749b7c262563: function() { return handleError(function (arg0, arg1, arg2) {
|
|
3986
|
+
const ret = arg0.write(arg1, arg2);
|
|
3962
3987
|
return ret;
|
|
3963
3988
|
}, arguments); },
|
|
3964
|
-
|
|
3965
|
-
const ret = arg0.write(arg1, arg2);
|
|
3989
|
+
__wbg_write_b1d4179946839909: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
3990
|
+
const ret = arg0.write(getArrayU8FromWasm0(arg1, arg2), arg3);
|
|
3966
3991
|
return ret;
|
|
3967
3992
|
}, arguments); },
|
|
3968
3993
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
3969
|
-
// Cast intrinsic for `Closure(Closure {
|
|
3970
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3994
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx: 9036, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3995
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__hfcb06a1059bde0b9);
|
|
3971
3996
|
return ret;
|
|
3972
3997
|
},
|
|
3973
3998
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
3974
|
-
// Cast intrinsic for `Closure(Closure {
|
|
3975
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3999
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx: 9647, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
4000
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h6f1885db5d1f0241);
|
|
3976
4001
|
return ret;
|
|
3977
4002
|
},
|
|
3978
4003
|
__wbindgen_cast_0000000000000003: function(arg0, arg1) {
|
|
3979
|
-
// Cast intrinsic for `Closure(Closure {
|
|
3980
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4004
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx: 7165, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4005
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h667d000fed9c3e64);
|
|
3981
4006
|
return ret;
|
|
3982
4007
|
},
|
|
3983
4008
|
__wbindgen_cast_0000000000000004: function(arg0, arg1) {
|
|
3984
|
-
// Cast intrinsic for `Closure(Closure {
|
|
3985
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4009
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx: 8841, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4010
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h8f8be8bfbb4918b5);
|
|
4011
|
+
return ret;
|
|
4012
|
+
},
|
|
4013
|
+
__wbindgen_cast_0000000000000005: function(arg0, arg1) {
|
|
4014
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx: 9007, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4015
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h18ef20c6f279647d);
|
|
3986
4016
|
return ret;
|
|
3987
4017
|
},
|
|
3988
|
-
|
|
4018
|
+
__wbindgen_cast_0000000000000006: function(arg0) {
|
|
3989
4019
|
// Cast intrinsic for `F64 -> Externref`.
|
|
3990
4020
|
const ret = arg0;
|
|
3991
4021
|
return ret;
|
|
3992
4022
|
},
|
|
3993
|
-
|
|
4023
|
+
__wbindgen_cast_0000000000000007: function(arg0) {
|
|
3994
4024
|
// Cast intrinsic for `I64 -> Externref`.
|
|
3995
4025
|
const ret = arg0;
|
|
3996
4026
|
return ret;
|
|
3997
4027
|
},
|
|
3998
|
-
|
|
4028
|
+
__wbindgen_cast_0000000000000008: function(arg0, arg1) {
|
|
3999
4029
|
// Cast intrinsic for `Ref(Slice(U8)) -> NamedExternref("Uint8Array")`.
|
|
4000
4030
|
const ret = getArrayU8FromWasm0(arg0, arg1);
|
|
4001
4031
|
return ret;
|
|
4002
4032
|
},
|
|
4003
|
-
|
|
4033
|
+
__wbindgen_cast_0000000000000009: function(arg0, arg1) {
|
|
4004
4034
|
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
4005
4035
|
const ret = getStringFromWasm0(arg0, arg1);
|
|
4006
4036
|
return ret;
|
|
4007
4037
|
},
|
|
4008
|
-
|
|
4038
|
+
__wbindgen_cast_000000000000000a: function(arg0) {
|
|
4009
4039
|
// Cast intrinsic for `U64 -> Externref`.
|
|
4010
4040
|
const ret = BigInt.asUintN(64, arg0);
|
|
4011
4041
|
return ret;
|
|
4012
4042
|
},
|
|
4013
|
-
|
|
4043
|
+
__wbindgen_cast_000000000000000b: function(arg0, arg1) {
|
|
4014
4044
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
4015
4045
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
4016
4046
|
// Cast intrinsic for `Vector(NamedExternref("Conversation")) -> Externref`.
|
|
4017
4047
|
const ret = v0;
|
|
4018
4048
|
return ret;
|
|
4019
4049
|
},
|
|
4020
|
-
|
|
4050
|
+
__wbindgen_cast_000000000000000c: function(arg0, arg1) {
|
|
4021
4051
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
4022
4052
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
4023
4053
|
// Cast intrinsic for `Vector(NamedExternref("DecodedMessage")) -> Externref`.
|
|
4024
4054
|
const ret = v0;
|
|
4025
4055
|
return ret;
|
|
4026
4056
|
},
|
|
4027
|
-
|
|
4057
|
+
__wbindgen_cast_000000000000000d: function(arg0, arg1) {
|
|
4028
4058
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
4029
4059
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
4030
4060
|
// Cast intrinsic for `Vector(NamedExternref("InboxState")) -> Externref`.
|
|
4031
4061
|
const ret = v0;
|
|
4032
4062
|
return ret;
|
|
4033
4063
|
},
|
|
4034
|
-
|
|
4064
|
+
__wbindgen_cast_000000000000000e: function(arg0, arg1) {
|
|
4035
4065
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
4036
4066
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
4037
4067
|
// Cast intrinsic for `Vector(NamedExternref("Message")) -> Externref`.
|
|
4038
4068
|
const ret = v0;
|
|
4039
4069
|
return ret;
|
|
4040
4070
|
},
|
|
4041
|
-
|
|
4071
|
+
__wbindgen_cast_000000000000000f: function(arg0, arg1) {
|
|
4042
4072
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
4043
4073
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
4044
4074
|
// Cast intrinsic for `Vector(NamedExternref("string")) -> Externref`.
|
|
@@ -4061,28 +4091,35 @@ function __wbg_get_imports() {
|
|
|
4061
4091
|
};
|
|
4062
4092
|
}
|
|
4063
4093
|
|
|
4064
|
-
function
|
|
4065
|
-
wasm.
|
|
4094
|
+
function wasm_bindgen__convert__closures_____invoke__h667d000fed9c3e64(arg0, arg1) {
|
|
4095
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h667d000fed9c3e64(arg0, arg1);
|
|
4066
4096
|
}
|
|
4067
4097
|
|
|
4068
|
-
function
|
|
4069
|
-
wasm.
|
|
4098
|
+
function wasm_bindgen__convert__closures_____invoke__h8f8be8bfbb4918b5(arg0, arg1) {
|
|
4099
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h8f8be8bfbb4918b5(arg0, arg1);
|
|
4070
4100
|
}
|
|
4071
4101
|
|
|
4072
|
-
function
|
|
4073
|
-
wasm.
|
|
4102
|
+
function wasm_bindgen__convert__closures_____invoke__h18ef20c6f279647d(arg0, arg1) {
|
|
4103
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h18ef20c6f279647d(arg0, arg1);
|
|
4074
4104
|
}
|
|
4075
4105
|
|
|
4076
|
-
function
|
|
4077
|
-
wasm.
|
|
4106
|
+
function wasm_bindgen__convert__closures_____invoke__hfcb06a1059bde0b9(arg0, arg1, arg2) {
|
|
4107
|
+
wasm.wasm_bindgen__convert__closures_____invoke__hfcb06a1059bde0b9(arg0, arg1, arg2);
|
|
4108
|
+
}
|
|
4109
|
+
|
|
4110
|
+
function wasm_bindgen__convert__closures_____invoke__h6f1885db5d1f0241(arg0, arg1, arg2) {
|
|
4111
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__h6f1885db5d1f0241(arg0, arg1, arg2);
|
|
4112
|
+
if (ret[1]) {
|
|
4113
|
+
throw takeFromExternrefTable0(ret[0]);
|
|
4114
|
+
}
|
|
4078
4115
|
}
|
|
4079
4116
|
|
|
4080
|
-
function
|
|
4081
|
-
wasm.
|
|
4117
|
+
function wasm_bindgen__convert__closures_____invoke__h8b29a8b297a89d8b(arg0, arg1, arg2, arg3) {
|
|
4118
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h8b29a8b297a89d8b(arg0, arg1, arg2, arg3);
|
|
4082
4119
|
}
|
|
4083
4120
|
|
|
4084
|
-
function
|
|
4085
|
-
wasm.
|
|
4121
|
+
function wasm_bindgen__convert__closures_____invoke__h0cbb9d280ec4eac8(arg0, arg1, arg2, arg3, arg4) {
|
|
4122
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0cbb9d280ec4eac8(arg0, arg1, arg2, arg3, arg4);
|
|
4086
4123
|
}
|
|
4087
4124
|
|
|
4088
4125
|
|
|
@@ -4104,46 +4141,46 @@ const __wbindgen_enum_RequestMode = ["same-origin", "no-cors", "cors", "navigate
|
|
|
4104
4141
|
const __wbindgen_enum_RequestRedirect = ["follow", "error", "manual"];
|
|
4105
4142
|
const AuthHandleFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4106
4143
|
? { register: () => {}, unregister: () => {} }
|
|
4107
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_authhandle_free(ptr
|
|
4144
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_authhandle_free(ptr, 1));
|
|
4108
4145
|
const BackendFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4109
4146
|
? { register: () => {}, unregister: () => {} }
|
|
4110
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_backend_free(ptr
|
|
4147
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_backend_free(ptr, 1));
|
|
4111
4148
|
const BackendBuilderFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4112
4149
|
? { register: () => {}, unregister: () => {} }
|
|
4113
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_backendbuilder_free(ptr
|
|
4150
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_backendbuilder_free(ptr, 1));
|
|
4114
4151
|
const ClientFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4115
4152
|
? { register: () => {}, unregister: () => {} }
|
|
4116
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_client_free(ptr
|
|
4153
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_client_free(ptr, 1));
|
|
4154
|
+
const WasmBindgenTestContextFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4155
|
+
? { register: () => {}, unregister: () => {} }
|
|
4156
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_wasmbindgentestcontext_free(ptr, 1));
|
|
4117
4157
|
const ConversationFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4118
4158
|
? { register: () => {}, unregister: () => {} }
|
|
4119
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_conversation_free(ptr
|
|
4159
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_conversation_free(ptr, 1));
|
|
4120
4160
|
const ConversationListItemFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4121
4161
|
? { register: () => {}, unregister: () => {} }
|
|
4122
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_conversationlistitem_free(ptr
|
|
4162
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_conversationlistitem_free(ptr, 1));
|
|
4123
4163
|
const ConversationsFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4124
4164
|
? { register: () => {}, unregister: () => {} }
|
|
4125
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_conversations_free(ptr
|
|
4165
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_conversations_free(ptr, 1));
|
|
4126
4166
|
const DeviceSyncFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4127
4167
|
? { register: () => {}, unregister: () => {} }
|
|
4128
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_devicesync_free(ptr
|
|
4168
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_devicesync_free(ptr, 1));
|
|
4129
4169
|
const IntoUnderlyingByteSourceFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4130
4170
|
? { register: () => {}, unregister: () => {} }
|
|
4131
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingbytesource_free(ptr
|
|
4171
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingbytesource_free(ptr, 1));
|
|
4132
4172
|
const IntoUnderlyingSinkFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4133
4173
|
? { register: () => {}, unregister: () => {} }
|
|
4134
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingsink_free(ptr
|
|
4174
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingsink_free(ptr, 1));
|
|
4135
4175
|
const IntoUnderlyingSourceFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4136
4176
|
? { register: () => {}, unregister: () => {} }
|
|
4137
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingsource_free(ptr
|
|
4177
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingsource_free(ptr, 1));
|
|
4138
4178
|
const SignatureRequestHandleFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4139
4179
|
? { register: () => {}, unregister: () => {} }
|
|
4140
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_signaturerequesthandle_free(ptr
|
|
4180
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_signaturerequesthandle_free(ptr, 1));
|
|
4141
4181
|
const StreamCloserFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4142
4182
|
? { register: () => {}, unregister: () => {} }
|
|
4143
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_streamcloser_free(ptr
|
|
4144
|
-
const WasmBindgenTestContextFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4145
|
-
? { register: () => {}, unregister: () => {} }
|
|
4146
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_wasmbindgentestcontext_free(ptr >>> 0, 1));
|
|
4183
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_streamcloser_free(ptr, 1));
|
|
4147
4184
|
|
|
4148
4185
|
function addToExternrefTable0(obj) {
|
|
4149
4186
|
const idx = wasm.__externref_table_alloc();
|
|
@@ -4159,7 +4196,7 @@ function _assertClass(instance, klass) {
|
|
|
4159
4196
|
|
|
4160
4197
|
const CLOSURE_DTORS = (typeof FinalizationRegistry === 'undefined')
|
|
4161
4198
|
? { register: () => {}, unregister: () => {} }
|
|
4162
|
-
: new FinalizationRegistry(state =>
|
|
4199
|
+
: new FinalizationRegistry(state => wasm.__wbindgen_destroy_closure(state.a, state.b));
|
|
4163
4200
|
|
|
4164
4201
|
function debugString(val) {
|
|
4165
4202
|
// primitive types
|
|
@@ -4251,8 +4288,7 @@ function getDataViewMemory0() {
|
|
|
4251
4288
|
}
|
|
4252
4289
|
|
|
4253
4290
|
function getStringFromWasm0(ptr, len) {
|
|
4254
|
-
|
|
4255
|
-
return decodeText(ptr, len);
|
|
4291
|
+
return decodeText(ptr >>> 0, len);
|
|
4256
4292
|
}
|
|
4257
4293
|
|
|
4258
4294
|
let cachedUint8ArrayMemory0 = null;
|
|
@@ -4276,8 +4312,8 @@ function isLikeNone(x) {
|
|
|
4276
4312
|
return x === undefined || x === null;
|
|
4277
4313
|
}
|
|
4278
4314
|
|
|
4279
|
-
function makeMutClosure(arg0, arg1,
|
|
4280
|
-
const state = { a: arg0, b: arg1, cnt: 1
|
|
4315
|
+
function makeMutClosure(arg0, arg1, f) {
|
|
4316
|
+
const state = { a: arg0, b: arg1, cnt: 1 };
|
|
4281
4317
|
const real = (...args) => {
|
|
4282
4318
|
|
|
4283
4319
|
// First up with a closure we increment the internal reference
|
|
@@ -4295,7 +4331,7 @@ function makeMutClosure(arg0, arg1, dtor, f) {
|
|
|
4295
4331
|
};
|
|
4296
4332
|
real._wbg_cb_unref = () => {
|
|
4297
4333
|
if (--state.cnt === 0) {
|
|
4298
|
-
|
|
4334
|
+
wasm.__wbindgen_destroy_closure(state.a, state.b);
|
|
4299
4335
|
state.a = 0;
|
|
4300
4336
|
CLOSURE_DTORS.unregister(state);
|
|
4301
4337
|
}
|
|
@@ -4393,8 +4429,9 @@ if (!('encodeInto' in cachedTextEncoder)) {
|
|
|
4393
4429
|
|
|
4394
4430
|
let WASM_VECTOR_LEN = 0;
|
|
4395
4431
|
|
|
4396
|
-
let wasmModule, wasm;
|
|
4432
|
+
let wasmModule, wasmInstance, wasm;
|
|
4397
4433
|
function __wbg_finalize_init(instance, module) {
|
|
4434
|
+
wasmInstance = instance;
|
|
4398
4435
|
wasm = instance.exports;
|
|
4399
4436
|
wasmModule = module;
|
|
4400
4437
|
cachedDataViewMemory0 = null;
|