@xmtp/wasm-bindings 1.10.0 → 1.11.0-dev.57a7203
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 +256 -124
- package/dist/bindings_wasm.js +514 -461
- package/dist/bindings_wasm_bg.wasm +0 -0
- package/dist/bindings_wasm_bg.wasm.d.ts +109 -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
|
*/
|
|
@@ -1049,24 +1075,27 @@ export class Conversation {
|
|
|
1049
1075
|
* Stores the message locally without publishing. Returns the message ID.
|
|
1050
1076
|
* @param {EncodedContent} encodedContent
|
|
1051
1077
|
* @param {boolean} shouldPush
|
|
1078
|
+
* @param {string | null} [idempotencyKey]
|
|
1052
1079
|
* @returns {string}
|
|
1053
1080
|
*/
|
|
1054
|
-
prepareMessage(encodedContent, shouldPush) {
|
|
1055
|
-
let
|
|
1056
|
-
let
|
|
1081
|
+
prepareMessage(encodedContent, shouldPush, idempotencyKey) {
|
|
1082
|
+
let deferred3_0;
|
|
1083
|
+
let deferred3_1;
|
|
1057
1084
|
try {
|
|
1058
|
-
|
|
1059
|
-
var
|
|
1060
|
-
|
|
1085
|
+
var ptr0 = isLikeNone(idempotencyKey) ? 0 : passStringToWasm0(idempotencyKey, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1086
|
+
var len0 = WASM_VECTOR_LEN;
|
|
1087
|
+
const ret = wasm.conversation_prepareMessage(this.__wbg_ptr, encodedContent, shouldPush, ptr0, len0);
|
|
1088
|
+
var ptr2 = ret[0];
|
|
1089
|
+
var len2 = ret[1];
|
|
1061
1090
|
if (ret[3]) {
|
|
1062
|
-
|
|
1091
|
+
ptr2 = 0; len2 = 0;
|
|
1063
1092
|
throw takeFromExternrefTable0(ret[2]);
|
|
1064
1093
|
}
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
return getStringFromWasm0(
|
|
1094
|
+
deferred3_0 = ptr2;
|
|
1095
|
+
deferred3_1 = len2;
|
|
1096
|
+
return getStringFromWasm0(ptr2, len2);
|
|
1068
1097
|
} finally {
|
|
1069
|
-
wasm.__wbindgen_free(
|
|
1098
|
+
wasm.__wbindgen_free(deferred3_0, deferred3_1, 1);
|
|
1070
1099
|
}
|
|
1071
1100
|
}
|
|
1072
1101
|
/**
|
|
@@ -1077,6 +1106,20 @@ export class Conversation {
|
|
|
1077
1106
|
const ret = wasm.conversation_processStreamedGroupMessage(this.__wbg_ptr, envelopeBytes);
|
|
1078
1107
|
return ret;
|
|
1079
1108
|
}
|
|
1109
|
+
/**
|
|
1110
|
+
* Whether this group has migrated to AppData-proposal-based
|
|
1111
|
+
* metadata updates (the `AppDataDictionary` group-context
|
|
1112
|
+
* extension is present). `false` means the group is still on
|
|
1113
|
+
* the legacy GroupContextExtensions path.
|
|
1114
|
+
* @returns {boolean}
|
|
1115
|
+
*/
|
|
1116
|
+
proposalsEnabled() {
|
|
1117
|
+
const ret = wasm.conversation_proposalsEnabled(this.__wbg_ptr);
|
|
1118
|
+
if (ret[2]) {
|
|
1119
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
1120
|
+
}
|
|
1121
|
+
return ret[0] !== 0;
|
|
1122
|
+
}
|
|
1080
1123
|
/**
|
|
1081
1124
|
* Publish all unpublished messages
|
|
1082
1125
|
* @returns {Promise<void>}
|
|
@@ -1154,113 +1197,113 @@ export class Conversation {
|
|
|
1154
1197
|
}
|
|
1155
1198
|
/**
|
|
1156
1199
|
* @param {Actions} actions
|
|
1157
|
-
* @param {
|
|
1200
|
+
* @param {SendOpts | null} [opts]
|
|
1158
1201
|
* @returns {Promise<string>}
|
|
1159
1202
|
*/
|
|
1160
|
-
sendActions(actions,
|
|
1161
|
-
const ret = wasm.conversation_sendActions(this.__wbg_ptr, actions, isLikeNone(
|
|
1203
|
+
sendActions(actions, opts) {
|
|
1204
|
+
const ret = wasm.conversation_sendActions(this.__wbg_ptr, actions, isLikeNone(opts) ? 0 : addToExternrefTable0(opts));
|
|
1162
1205
|
return ret;
|
|
1163
1206
|
}
|
|
1164
1207
|
/**
|
|
1165
1208
|
* @param {Attachment} attachment
|
|
1166
|
-
* @param {
|
|
1209
|
+
* @param {SendOpts | null} [opts]
|
|
1167
1210
|
* @returns {Promise<string>}
|
|
1168
1211
|
*/
|
|
1169
|
-
sendAttachment(attachment,
|
|
1170
|
-
const ret = wasm.conversation_sendAttachment(this.__wbg_ptr, attachment, isLikeNone(
|
|
1212
|
+
sendAttachment(attachment, opts) {
|
|
1213
|
+
const ret = wasm.conversation_sendAttachment(this.__wbg_ptr, attachment, isLikeNone(opts) ? 0 : addToExternrefTable0(opts));
|
|
1171
1214
|
return ret;
|
|
1172
1215
|
}
|
|
1173
1216
|
/**
|
|
1174
1217
|
* @param {Intent} intent
|
|
1175
|
-
* @param {
|
|
1218
|
+
* @param {SendOpts | null} [opts]
|
|
1176
1219
|
* @returns {Promise<string>}
|
|
1177
1220
|
*/
|
|
1178
|
-
sendIntent(intent,
|
|
1179
|
-
const ret = wasm.conversation_sendIntent(this.__wbg_ptr, intent, isLikeNone(
|
|
1221
|
+
sendIntent(intent, opts) {
|
|
1222
|
+
const ret = wasm.conversation_sendIntent(this.__wbg_ptr, intent, isLikeNone(opts) ? 0 : addToExternrefTable0(opts));
|
|
1180
1223
|
return ret;
|
|
1181
1224
|
}
|
|
1182
1225
|
/**
|
|
1183
1226
|
* @param {string} markdown
|
|
1184
|
-
* @param {
|
|
1227
|
+
* @param {SendOpts | null} [opts]
|
|
1185
1228
|
* @returns {Promise<string>}
|
|
1186
1229
|
*/
|
|
1187
|
-
sendMarkdown(markdown,
|
|
1230
|
+
sendMarkdown(markdown, opts) {
|
|
1188
1231
|
const ptr0 = passStringToWasm0(markdown, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1189
1232
|
const len0 = WASM_VECTOR_LEN;
|
|
1190
|
-
const ret = wasm.conversation_sendMarkdown(this.__wbg_ptr, ptr0, len0, isLikeNone(
|
|
1233
|
+
const ret = wasm.conversation_sendMarkdown(this.__wbg_ptr, ptr0, len0, isLikeNone(opts) ? 0 : addToExternrefTable0(opts));
|
|
1191
1234
|
return ret;
|
|
1192
1235
|
}
|
|
1193
1236
|
/**
|
|
1194
1237
|
* @param {MultiRemoteAttachment} multiRemoteAttachment
|
|
1195
|
-
* @param {
|
|
1238
|
+
* @param {SendOpts | null} [opts]
|
|
1196
1239
|
* @returns {Promise<string>}
|
|
1197
1240
|
*/
|
|
1198
|
-
sendMultiRemoteAttachment(multiRemoteAttachment,
|
|
1199
|
-
const ret = wasm.conversation_sendMultiRemoteAttachment(this.__wbg_ptr, multiRemoteAttachment, isLikeNone(
|
|
1241
|
+
sendMultiRemoteAttachment(multiRemoteAttachment, opts) {
|
|
1242
|
+
const ret = wasm.conversation_sendMultiRemoteAttachment(this.__wbg_ptr, multiRemoteAttachment, isLikeNone(opts) ? 0 : addToExternrefTable0(opts));
|
|
1200
1243
|
return ret;
|
|
1201
1244
|
}
|
|
1202
1245
|
/**
|
|
1203
1246
|
* @param {Reaction} reaction
|
|
1204
|
-
* @param {
|
|
1247
|
+
* @param {SendOpts | null} [opts]
|
|
1205
1248
|
* @returns {Promise<string>}
|
|
1206
1249
|
*/
|
|
1207
|
-
sendReaction(reaction,
|
|
1208
|
-
const ret = wasm.conversation_sendReaction(this.__wbg_ptr, reaction, isLikeNone(
|
|
1250
|
+
sendReaction(reaction, opts) {
|
|
1251
|
+
const ret = wasm.conversation_sendReaction(this.__wbg_ptr, reaction, isLikeNone(opts) ? 0 : addToExternrefTable0(opts));
|
|
1209
1252
|
return ret;
|
|
1210
1253
|
}
|
|
1211
1254
|
/**
|
|
1212
|
-
* @param {
|
|
1255
|
+
* @param {SendOpts | null} [opts]
|
|
1213
1256
|
* @returns {Promise<string>}
|
|
1214
1257
|
*/
|
|
1215
|
-
sendReadReceipt(
|
|
1216
|
-
const ret = wasm.conversation_sendReadReceipt(this.__wbg_ptr, isLikeNone(
|
|
1258
|
+
sendReadReceipt(opts) {
|
|
1259
|
+
const ret = wasm.conversation_sendReadReceipt(this.__wbg_ptr, isLikeNone(opts) ? 0 : addToExternrefTable0(opts));
|
|
1217
1260
|
return ret;
|
|
1218
1261
|
}
|
|
1219
1262
|
/**
|
|
1220
1263
|
* @param {RemoteAttachment} remoteAttachment
|
|
1221
|
-
* @param {
|
|
1264
|
+
* @param {SendOpts | null} [opts]
|
|
1222
1265
|
* @returns {Promise<string>}
|
|
1223
1266
|
*/
|
|
1224
|
-
sendRemoteAttachment(remoteAttachment,
|
|
1225
|
-
const ret = wasm.conversation_sendRemoteAttachment(this.__wbg_ptr, remoteAttachment, isLikeNone(
|
|
1267
|
+
sendRemoteAttachment(remoteAttachment, opts) {
|
|
1268
|
+
const ret = wasm.conversation_sendRemoteAttachment(this.__wbg_ptr, remoteAttachment, isLikeNone(opts) ? 0 : addToExternrefTable0(opts));
|
|
1226
1269
|
return ret;
|
|
1227
1270
|
}
|
|
1228
1271
|
/**
|
|
1229
1272
|
* @param {Reply} reply
|
|
1230
|
-
* @param {
|
|
1273
|
+
* @param {SendOpts | null} [opts]
|
|
1231
1274
|
* @returns {Promise<string>}
|
|
1232
1275
|
*/
|
|
1233
|
-
sendReply(reply,
|
|
1234
|
-
const ret = wasm.conversation_sendReply(this.__wbg_ptr, reply, isLikeNone(
|
|
1276
|
+
sendReply(reply, opts) {
|
|
1277
|
+
const ret = wasm.conversation_sendReply(this.__wbg_ptr, reply, isLikeNone(opts) ? 0 : addToExternrefTable0(opts));
|
|
1235
1278
|
return ret;
|
|
1236
1279
|
}
|
|
1237
1280
|
/**
|
|
1238
1281
|
* @param {string} text
|
|
1239
|
-
* @param {
|
|
1282
|
+
* @param {SendOpts | null} [opts]
|
|
1240
1283
|
* @returns {Promise<string>}
|
|
1241
1284
|
*/
|
|
1242
|
-
sendText(text,
|
|
1285
|
+
sendText(text, opts) {
|
|
1243
1286
|
const ptr0 = passStringToWasm0(text, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1244
1287
|
const len0 = WASM_VECTOR_LEN;
|
|
1245
|
-
const ret = wasm.conversation_sendText(this.__wbg_ptr, ptr0, len0, isLikeNone(
|
|
1288
|
+
const ret = wasm.conversation_sendText(this.__wbg_ptr, ptr0, len0, isLikeNone(opts) ? 0 : addToExternrefTable0(opts));
|
|
1246
1289
|
return ret;
|
|
1247
1290
|
}
|
|
1248
1291
|
/**
|
|
1249
1292
|
* @param {TransactionReference} transactionReference
|
|
1250
|
-
* @param {
|
|
1293
|
+
* @param {SendOpts | null} [opts]
|
|
1251
1294
|
* @returns {Promise<string>}
|
|
1252
1295
|
*/
|
|
1253
|
-
sendTransactionReference(transactionReference,
|
|
1254
|
-
const ret = wasm.conversation_sendTransactionReference(this.__wbg_ptr, transactionReference, isLikeNone(
|
|
1296
|
+
sendTransactionReference(transactionReference, opts) {
|
|
1297
|
+
const ret = wasm.conversation_sendTransactionReference(this.__wbg_ptr, transactionReference, isLikeNone(opts) ? 0 : addToExternrefTable0(opts));
|
|
1255
1298
|
return ret;
|
|
1256
1299
|
}
|
|
1257
1300
|
/**
|
|
1258
1301
|
* @param {WalletSendCalls} walletSendCalls
|
|
1259
|
-
* @param {
|
|
1302
|
+
* @param {SendOpts | null} [opts]
|
|
1260
1303
|
* @returns {Promise<string>}
|
|
1261
1304
|
*/
|
|
1262
|
-
sendWalletSendCalls(walletSendCalls,
|
|
1263
|
-
const ret = wasm.conversation_sendWalletSendCalls(this.__wbg_ptr, walletSendCalls, isLikeNone(
|
|
1305
|
+
sendWalletSendCalls(walletSendCalls, opts) {
|
|
1306
|
+
const ret = wasm.conversation_sendWalletSendCalls(this.__wbg_ptr, walletSendCalls, isLikeNone(opts) ? 0 : addToExternrefTable0(opts));
|
|
1264
1307
|
return ret;
|
|
1265
1308
|
}
|
|
1266
1309
|
/**
|
|
@@ -1365,7 +1408,6 @@ if (Symbol.dispose) Conversation.prototype[Symbol.dispose] = Conversation.protot
|
|
|
1365
1408
|
|
|
1366
1409
|
export class ConversationListItem {
|
|
1367
1410
|
static __wrap(ptr) {
|
|
1368
|
-
ptr = ptr >>> 0;
|
|
1369
1411
|
const obj = Object.create(ConversationListItem.prototype);
|
|
1370
1412
|
obj.__wbg_ptr = ptr;
|
|
1371
1413
|
ConversationListItemFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -1390,7 +1432,7 @@ export class ConversationListItem {
|
|
|
1390
1432
|
_assertClass(conversation, Conversation);
|
|
1391
1433
|
var ptr0 = conversation.__destroy_into_raw();
|
|
1392
1434
|
const ret = wasm.conversationlistitem_new(ptr0, isLikeNone(lastMessage) ? 0 : addToExternrefTable0(lastMessage), isLikeNone(isCommitLogForked) ? 0xFFFFFF : isCommitLogForked ? 1 : 0);
|
|
1393
|
-
this.__wbg_ptr = ret
|
|
1435
|
+
this.__wbg_ptr = ret;
|
|
1394
1436
|
ConversationListItemFinalization.register(this, this.__wbg_ptr, this);
|
|
1395
1437
|
return this;
|
|
1396
1438
|
}
|
|
@@ -1450,7 +1492,6 @@ export const ConversationType = Object.freeze({
|
|
|
1450
1492
|
|
|
1451
1493
|
export class Conversations {
|
|
1452
1494
|
static __wrap(ptr) {
|
|
1453
|
-
ptr = ptr >>> 0;
|
|
1454
1495
|
const obj = Object.create(Conversations.prototype);
|
|
1455
1496
|
obj.__wbg_ptr = ptr;
|
|
1456
1497
|
ConversationsFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -1710,7 +1751,6 @@ export const DeliveryStatus = Object.freeze({
|
|
|
1710
1751
|
|
|
1711
1752
|
export class DeviceSync {
|
|
1712
1753
|
static __wrap(ptr) {
|
|
1713
|
-
ptr = ptr >>> 0;
|
|
1714
1754
|
const obj = Object.create(DeviceSync.prototype);
|
|
1715
1755
|
obj.__wbg_ptr = ptr;
|
|
1716
1756
|
DeviceSyncFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -1954,7 +1994,6 @@ if (Symbol.dispose) IntoUnderlyingSink.prototype[Symbol.dispose] = IntoUnderlyin
|
|
|
1954
1994
|
|
|
1955
1995
|
export class IntoUnderlyingSource {
|
|
1956
1996
|
static __wrap(ptr) {
|
|
1957
|
-
ptr = ptr >>> 0;
|
|
1958
1997
|
const obj = Object.create(IntoUnderlyingSource.prototype);
|
|
1959
1998
|
obj.__wbg_ptr = ptr;
|
|
1960
1999
|
IntoUnderlyingSourceFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -2078,7 +2117,6 @@ export const ReactionSchema = Object.freeze({
|
|
|
2078
2117
|
|
|
2079
2118
|
export class SignatureRequestHandle {
|
|
2080
2119
|
static __wrap(ptr) {
|
|
2081
|
-
ptr = ptr >>> 0;
|
|
2082
2120
|
const obj = Object.create(SignatureRequestHandle.prototype);
|
|
2083
2121
|
obj.__wbg_ptr = ptr;
|
|
2084
2122
|
SignatureRequestHandleFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -2141,7 +2179,6 @@ export const SortDirection = Object.freeze({
|
|
|
2141
2179
|
|
|
2142
2180
|
export class StreamCloser {
|
|
2143
2181
|
static __wrap(ptr) {
|
|
2144
|
-
ptr = ptr >>> 0;
|
|
2145
2182
|
const obj = Object.create(StreamCloser.prototype);
|
|
2146
2183
|
obj.__wbg_ptr = ptr;
|
|
2147
2184
|
StreamCloserFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -2233,7 +2270,7 @@ export class WasmBindgenTestContext {
|
|
|
2233
2270
|
*/
|
|
2234
2271
|
constructor(is_bench) {
|
|
2235
2272
|
const ret = wasm.wasmbindgentestcontext_new(is_bench);
|
|
2236
|
-
this.__wbg_ptr = ret
|
|
2273
|
+
this.__wbg_ptr = ret;
|
|
2237
2274
|
WasmBindgenTestContextFinalization.register(this, this.__wbg_ptr, this);
|
|
2238
2275
|
return this;
|
|
2239
2276
|
}
|
|
@@ -2259,6 +2296,17 @@ export class WasmBindgenTestContext {
|
|
|
2259
2296
|
}
|
|
2260
2297
|
if (Symbol.dispose) WasmBindgenTestContext.prototype[Symbol.dispose] = WasmBindgenTestContext.prototype.free;
|
|
2261
2298
|
|
|
2299
|
+
/**
|
|
2300
|
+
* @enum {0 | 1 | 2 | 3 | 4}
|
|
2301
|
+
*/
|
|
2302
|
+
export const WorkerKind = Object.freeze({
|
|
2303
|
+
DeviceSync: 0, "0": "DeviceSync",
|
|
2304
|
+
DisappearingMessages: 1, "1": "DisappearingMessages",
|
|
2305
|
+
KeyPackageCleaner: 2, "2": "KeyPackageCleaner",
|
|
2306
|
+
CommitLog: 3, "3": "CommitLog",
|
|
2307
|
+
TaskRunner: 4, "4": "TaskRunner",
|
|
2308
|
+
});
|
|
2309
|
+
|
|
2262
2310
|
/**
|
|
2263
2311
|
* @enum {0 | 1 | 2 | 3 | 4 | 5 | 6}
|
|
2264
2312
|
*/
|
|
@@ -2518,6 +2566,7 @@ export function contentTypeWalletSendCalls() {
|
|
|
2518
2566
|
* @param {string | null} [dbPath]
|
|
2519
2567
|
* @param {Uint8Array | null} [encryptionKey]
|
|
2520
2568
|
* @param {DeviceSyncMode | null} [deviceSyncMode]
|
|
2569
|
+
* @param {WorkerConfigOptions | null} [workerConfig]
|
|
2521
2570
|
* @param {LogOptions | null} [logOptions]
|
|
2522
2571
|
* @param {boolean | null} [allowOffline]
|
|
2523
2572
|
* @param {string | null} [appVersion]
|
|
@@ -2528,7 +2577,7 @@ export function contentTypeWalletSendCalls() {
|
|
|
2528
2577
|
* @param {ClientMode | null} [clientMode]
|
|
2529
2578
|
* @returns {Promise<Client>}
|
|
2530
2579
|
*/
|
|
2531
|
-
export function createClient(host, inboxId, accountIdentifier, dbPath, encryptionKey, deviceSyncMode, logOptions, allowOffline, appVersion, gatewayHost, nonce, authCallback, authHandle, clientMode) {
|
|
2580
|
+
export function createClient(host, inboxId, accountIdentifier, dbPath, encryptionKey, deviceSyncMode, workerConfig, logOptions, allowOffline, appVersion, gatewayHost, nonce, authCallback, authHandle, clientMode) {
|
|
2532
2581
|
const ptr0 = passStringToWasm0(host, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2533
2582
|
const len0 = WASM_VECTOR_LEN;
|
|
2534
2583
|
const ptr1 = passStringToWasm0(inboxId, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
@@ -2544,7 +2593,7 @@ export function createClient(host, inboxId, accountIdentifier, dbPath, encryptio
|
|
|
2544
2593
|
_assertClass(authHandle, AuthHandle);
|
|
2545
2594
|
ptr5 = authHandle.__destroy_into_raw();
|
|
2546
2595
|
}
|
|
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);
|
|
2596
|
+
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
2597
|
return ret;
|
|
2549
2598
|
}
|
|
2550
2599
|
|
|
@@ -2559,18 +2608,19 @@ export function createClient(host, inboxId, accountIdentifier, dbPath, encryptio
|
|
|
2559
2608
|
* @param {string | null} [dbPath]
|
|
2560
2609
|
* @param {Uint8Array | null} [encryptionKey]
|
|
2561
2610
|
* @param {DeviceSyncMode | null} [deviceSyncMode]
|
|
2611
|
+
* @param {WorkerConfigOptions | null} [workerConfig]
|
|
2562
2612
|
* @param {LogOptions | null} [logOptions]
|
|
2563
2613
|
* @param {boolean | null} [allowOffline]
|
|
2564
2614
|
* @param {bigint | null} [nonce]
|
|
2565
2615
|
* @returns {Promise<Client>}
|
|
2566
2616
|
*/
|
|
2567
|
-
export function createClientWithBackend(backend, inboxId, accountIdentifier, dbPath, encryptionKey, deviceSyncMode, logOptions, allowOffline, nonce) {
|
|
2617
|
+
export function createClientWithBackend(backend, inboxId, accountIdentifier, dbPath, encryptionKey, deviceSyncMode, workerConfig, logOptions, allowOffline, nonce) {
|
|
2568
2618
|
_assertClass(backend, Backend);
|
|
2569
2619
|
const ptr0 = passStringToWasm0(inboxId, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2570
2620
|
const len0 = WASM_VECTOR_LEN;
|
|
2571
2621
|
var ptr1 = isLikeNone(dbPath) ? 0 : passStringToWasm0(dbPath, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2572
2622
|
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);
|
|
2623
|
+
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
2624
|
return ret;
|
|
2575
2625
|
}
|
|
2576
2626
|
|
|
@@ -2952,100 +3002,99 @@ export function verifySignedWithPublicKey(signatureText, signatureBytes, publicK
|
|
|
2952
3002
|
throw takeFromExternrefTable0(ret[0]);
|
|
2953
3003
|
}
|
|
2954
3004
|
}
|
|
2955
|
-
|
|
2956
3005
|
function __wbg_get_imports() {
|
|
2957
3006
|
const import0 = {
|
|
2958
3007
|
__proto__: null,
|
|
2959
|
-
|
|
3008
|
+
__wbg_Deno_5568da40b5320910: function(arg0) {
|
|
2960
3009
|
const ret = arg0.Deno;
|
|
2961
3010
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2962
3011
|
},
|
|
2963
|
-
|
|
3012
|
+
__wbg_Error_3639a60ed15f87e7: function(arg0, arg1) {
|
|
2964
3013
|
const ret = Error(getStringFromWasm0(arg0, arg1));
|
|
2965
3014
|
return ret;
|
|
2966
3015
|
},
|
|
2967
|
-
|
|
3016
|
+
__wbg_Number_a3d737fd183f7dca: function(arg0) {
|
|
2968
3017
|
const ret = Number(arg0);
|
|
2969
3018
|
return ret;
|
|
2970
3019
|
},
|
|
2971
|
-
|
|
3020
|
+
__wbg_String_8564e559799eccda: function(arg0, arg1) {
|
|
2972
3021
|
const ret = String(arg1);
|
|
2973
3022
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2974
3023
|
const len1 = WASM_VECTOR_LEN;
|
|
2975
3024
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2976
3025
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2977
3026
|
},
|
|
2978
|
-
|
|
3027
|
+
__wbg_String_9f1bc0c1cfdb8d71: function(arg0, arg1) {
|
|
2979
3028
|
const ret = String(arg1);
|
|
2980
3029
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2981
3030
|
const len1 = WASM_VECTOR_LEN;
|
|
2982
3031
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2983
3032
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2984
3033
|
},
|
|
2985
|
-
|
|
3034
|
+
__wbg___wbg_test_output_writeln_ce1c14f3235de893: function(arg0) {
|
|
2986
3035
|
__wbg_test_output_writeln(arg0);
|
|
2987
3036
|
},
|
|
2988
|
-
|
|
3037
|
+
__wbg___wbgtest_og_console_log_b41ebf420153741b: function(arg0, arg1) {
|
|
2989
3038
|
__wbgtest_og_console_log(getStringFromWasm0(arg0, arg1));
|
|
2990
3039
|
},
|
|
2991
|
-
|
|
3040
|
+
__wbg___wbindgen_bigint_get_as_i64_3af6d4ca77193a4b: function(arg0, arg1) {
|
|
2992
3041
|
const v = arg1;
|
|
2993
3042
|
const ret = typeof(v) === 'bigint' ? v : undefined;
|
|
2994
3043
|
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
2995
3044
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
2996
3045
|
},
|
|
2997
|
-
|
|
3046
|
+
__wbg___wbindgen_boolean_get_c3dd5c39f1b5a12b: function(arg0) {
|
|
2998
3047
|
const v = arg0;
|
|
2999
3048
|
const ret = typeof(v) === 'boolean' ? v : undefined;
|
|
3000
3049
|
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
3001
3050
|
},
|
|
3002
|
-
|
|
3051
|
+
__wbg___wbindgen_debug_string_07cb72cfcc952e2b: function(arg0, arg1) {
|
|
3003
3052
|
const ret = debugString(arg1);
|
|
3004
3053
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3005
3054
|
const len1 = WASM_VECTOR_LEN;
|
|
3006
3055
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3007
3056
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3008
3057
|
},
|
|
3009
|
-
|
|
3058
|
+
__wbg___wbindgen_in_2617fa76397620d3: function(arg0, arg1) {
|
|
3010
3059
|
const ret = arg0 in arg1;
|
|
3011
3060
|
return ret;
|
|
3012
3061
|
},
|
|
3013
|
-
|
|
3062
|
+
__wbg___wbindgen_is_bigint_d6a8167cac401b95: function(arg0) {
|
|
3014
3063
|
const ret = typeof(arg0) === 'bigint';
|
|
3015
3064
|
return ret;
|
|
3016
3065
|
},
|
|
3017
|
-
|
|
3066
|
+
__wbg___wbindgen_is_function_2f0fd7ceb86e64c5: function(arg0) {
|
|
3018
3067
|
const ret = typeof(arg0) === 'function';
|
|
3019
3068
|
return ret;
|
|
3020
3069
|
},
|
|
3021
|
-
|
|
3070
|
+
__wbg___wbindgen_is_object_5b22ff2418063a9c: function(arg0) {
|
|
3022
3071
|
const val = arg0;
|
|
3023
3072
|
const ret = typeof(val) === 'object' && val !== null;
|
|
3024
3073
|
return ret;
|
|
3025
3074
|
},
|
|
3026
|
-
|
|
3075
|
+
__wbg___wbindgen_is_string_eddc07a3efad52e6: function(arg0) {
|
|
3027
3076
|
const ret = typeof(arg0) === 'string';
|
|
3028
3077
|
return ret;
|
|
3029
3078
|
},
|
|
3030
|
-
|
|
3079
|
+
__wbg___wbindgen_is_undefined_244a92c34d3b6ec0: function(arg0) {
|
|
3031
3080
|
const ret = arg0 === undefined;
|
|
3032
3081
|
return ret;
|
|
3033
3082
|
},
|
|
3034
|
-
|
|
3083
|
+
__wbg___wbindgen_jsval_eq_403eaa3610500a25: function(arg0, arg1) {
|
|
3035
3084
|
const ret = arg0 === arg1;
|
|
3036
3085
|
return ret;
|
|
3037
3086
|
},
|
|
3038
|
-
|
|
3087
|
+
__wbg___wbindgen_jsval_loose_eq_1978f1e77b4bce62: function(arg0, arg1) {
|
|
3039
3088
|
const ret = arg0 == arg1;
|
|
3040
3089
|
return ret;
|
|
3041
3090
|
},
|
|
3042
|
-
|
|
3091
|
+
__wbg___wbindgen_number_get_dd6d69a6079f26f1: function(arg0, arg1) {
|
|
3043
3092
|
const obj = arg1;
|
|
3044
3093
|
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
3045
3094
|
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
3046
3095
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
3047
3096
|
},
|
|
3048
|
-
|
|
3097
|
+
__wbg___wbindgen_string_get_965592073e5d848c: function(arg0, arg1) {
|
|
3049
3098
|
const obj = arg1;
|
|
3050
3099
|
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
3051
3100
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
@@ -3053,80 +3102,80 @@ function __wbg_get_imports() {
|
|
|
3053
3102
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3054
3103
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3055
3104
|
},
|
|
3056
|
-
|
|
3105
|
+
__wbg___wbindgen_throw_9c75d47bf9e7731e: function(arg0, arg1) {
|
|
3057
3106
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
3058
3107
|
},
|
|
3059
|
-
|
|
3108
|
+
__wbg___wbindgen_try_into_number_f42d43d28fd2987f: function(arg0) {
|
|
3060
3109
|
let result;
|
|
3061
3110
|
try { result = +arg0 } catch (e) { result = e }
|
|
3062
3111
|
const ret = result;
|
|
3063
3112
|
return ret;
|
|
3064
3113
|
},
|
|
3065
|
-
|
|
3114
|
+
__wbg__wbg_cb_unref_158e43e869788cdc: function(arg0) {
|
|
3066
3115
|
arg0._wbg_cb_unref();
|
|
3067
3116
|
},
|
|
3068
|
-
|
|
3069
|
-
arg0.abort();
|
|
3070
|
-
},
|
|
3071
|
-
__wbg_abort_d549b92d3c665de1: function(arg0, arg1) {
|
|
3117
|
+
__wbg_abort_43913e33ecb83d0d: function(arg0, arg1) {
|
|
3072
3118
|
arg0.abort(arg1);
|
|
3073
3119
|
},
|
|
3074
|
-
|
|
3120
|
+
__wbg_abort_87eb7f23cf4b73d1: function(arg0) {
|
|
3121
|
+
arg0.abort();
|
|
3122
|
+
},
|
|
3123
|
+
__wbg_append_8df396311184f750: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
3075
3124
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
3076
3125
|
}, arguments); },
|
|
3077
|
-
|
|
3126
|
+
__wbg_arrayBuffer_87e3ac06d961f7a0: function() { return handleError(function (arg0) {
|
|
3078
3127
|
const ret = arg0.arrayBuffer();
|
|
3079
3128
|
return ret;
|
|
3080
3129
|
}, arguments); },
|
|
3081
|
-
|
|
3130
|
+
__wbg_body_6929614c20dfa7b0: function(arg0) {
|
|
3082
3131
|
const ret = arg0.body;
|
|
3083
3132
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3084
3133
|
},
|
|
3085
|
-
|
|
3134
|
+
__wbg_buffer_9ee17426fe5a5d65: function(arg0) {
|
|
3086
3135
|
const ret = arg0.buffer;
|
|
3087
3136
|
return ret;
|
|
3088
3137
|
},
|
|
3089
|
-
|
|
3138
|
+
__wbg_byobRequest_178b64c09a0bee03: function(arg0) {
|
|
3090
3139
|
const ret = arg0.byobRequest;
|
|
3091
3140
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3092
3141
|
},
|
|
3093
|
-
|
|
3142
|
+
__wbg_byteLength_1f57c71e64ee0180: function(arg0) {
|
|
3094
3143
|
const ret = arg0.byteLength;
|
|
3095
3144
|
return ret;
|
|
3096
3145
|
},
|
|
3097
|
-
|
|
3146
|
+
__wbg_byteOffset_648d0af273024f3d: function(arg0) {
|
|
3098
3147
|
const ret = arg0.byteOffset;
|
|
3099
3148
|
return ret;
|
|
3100
3149
|
},
|
|
3101
|
-
|
|
3102
|
-
const ret = arg0.call(arg1);
|
|
3150
|
+
__wbg_call_a41d6421b30a32c5: function() { return handleError(function (arg0, arg1, arg2) {
|
|
3151
|
+
const ret = arg0.call(arg1, arg2);
|
|
3103
3152
|
return ret;
|
|
3104
3153
|
}, arguments); },
|
|
3105
|
-
|
|
3106
|
-
const ret = arg0.call(arg1
|
|
3154
|
+
__wbg_call_add9e5a76382e668: function() { return handleError(function (arg0, arg1) {
|
|
3155
|
+
const ret = arg0.call(arg1);
|
|
3107
3156
|
return ret;
|
|
3108
3157
|
}, arguments); },
|
|
3109
|
-
|
|
3158
|
+
__wbg_cancel_f97a3ee5a8b30eef: function(arg0) {
|
|
3110
3159
|
const ret = arg0.cancel();
|
|
3111
3160
|
return ret;
|
|
3112
3161
|
},
|
|
3113
|
-
|
|
3162
|
+
__wbg_catch_f939343cb181958c: function(arg0, arg1) {
|
|
3114
3163
|
const ret = arg0.catch(arg1);
|
|
3115
3164
|
return ret;
|
|
3116
3165
|
},
|
|
3117
|
-
|
|
3166
|
+
__wbg_clearInterval_26ba580547547579: function(arg0) {
|
|
3118
3167
|
const ret = clearInterval(arg0);
|
|
3119
3168
|
return ret;
|
|
3120
3169
|
},
|
|
3121
|
-
|
|
3170
|
+
__wbg_clearTimeout_1ccca1faf41fc6f8: function(arg0) {
|
|
3122
3171
|
const ret = clearTimeout(arg0);
|
|
3123
3172
|
return ret;
|
|
3124
3173
|
},
|
|
3125
|
-
|
|
3174
|
+
__wbg_clearTimeout_3629d6209dfcc46e: function(arg0) {
|
|
3126
3175
|
const ret = clearTimeout(arg0);
|
|
3127
3176
|
return ret;
|
|
3128
3177
|
},
|
|
3129
|
-
|
|
3178
|
+
__wbg_clearTimeout_c122f92fd48cd749: function(arg0) {
|
|
3130
3179
|
const ret = clearTimeout(arg0);
|
|
3131
3180
|
return ret;
|
|
3132
3181
|
},
|
|
@@ -3134,20 +3183,20 @@ function __wbg_get_imports() {
|
|
|
3134
3183
|
const ret = Client.__wrap(arg0);
|
|
3135
3184
|
return ret;
|
|
3136
3185
|
},
|
|
3137
|
-
|
|
3138
|
-
arg0.close();
|
|
3139
|
-
}, arguments); },
|
|
3140
|
-
__wbg_close_4ba312253c424342: function(arg0) {
|
|
3186
|
+
__wbg_close_5b5bd8421f556bfa: function(arg0) {
|
|
3141
3187
|
arg0.close();
|
|
3142
3188
|
},
|
|
3143
|
-
|
|
3189
|
+
__wbg_close_63e009c5a75f5597: function() { return handleError(function (arg0) {
|
|
3190
|
+
arg0.close();
|
|
3191
|
+
}, arguments); },
|
|
3192
|
+
__wbg_close_de471367367aa5cb: function() { return handleError(function (arg0) {
|
|
3144
3193
|
arg0.close();
|
|
3145
3194
|
}, arguments); },
|
|
3146
|
-
|
|
3195
|
+
__wbg_code_f1d2ddc1fbbb5aad: function(arg0) {
|
|
3147
3196
|
const ret = arg0.code;
|
|
3148
3197
|
return ret;
|
|
3149
3198
|
},
|
|
3150
|
-
|
|
3199
|
+
__wbg_constructor_d15f058d68158e7a: function(arg0) {
|
|
3151
3200
|
const ret = arg0.constructor;
|
|
3152
3201
|
return ret;
|
|
3153
3202
|
},
|
|
@@ -3159,40 +3208,53 @@ function __wbg_get_imports() {
|
|
|
3159
3208
|
const ret = ConversationListItem.__wrap(arg0);
|
|
3160
3209
|
return ret;
|
|
3161
3210
|
},
|
|
3162
|
-
|
|
3211
|
+
__wbg_createSyncAccessHandle_5801784c68dffe64: function(arg0) {
|
|
3163
3212
|
const ret = arg0.createSyncAccessHandle();
|
|
3164
3213
|
return ret;
|
|
3165
3214
|
},
|
|
3166
|
-
|
|
3215
|
+
__wbg_create_6c502df90f1c545d: function(arg0) {
|
|
3167
3216
|
const ret = Object.create(arg0);
|
|
3168
3217
|
return ret;
|
|
3169
3218
|
},
|
|
3170
|
-
|
|
3219
|
+
__wbg_crypto_38df2bab126b63dc: function(arg0) {
|
|
3171
3220
|
const ret = arg0.crypto;
|
|
3172
3221
|
return ret;
|
|
3173
3222
|
},
|
|
3174
|
-
|
|
3175
|
-
console.debug(arg0, arg1, arg2, arg3);
|
|
3176
|
-
},
|
|
3177
|
-
__wbg_debug_a4099fa12db6cd61: function(arg0) {
|
|
3223
|
+
__wbg_debug_37240d2c1d0ce2bb: function(arg0) {
|
|
3178
3224
|
console.debug(arg0);
|
|
3179
3225
|
},
|
|
3180
|
-
|
|
3226
|
+
__wbg_debug_94a9fb2c3e2982f9: function(arg0, arg1, arg2, arg3) {
|
|
3227
|
+
console.debug(arg0, arg1, arg2, arg3);
|
|
3228
|
+
},
|
|
3229
|
+
__wbg_done_b1afd6201ac045e0: function(arg0) {
|
|
3181
3230
|
const ret = arg0.done;
|
|
3182
3231
|
return ret;
|
|
3183
3232
|
},
|
|
3184
|
-
|
|
3233
|
+
__wbg_enqueue_6c7cd543c0f3828e: function() { return handleError(function (arg0, arg1) {
|
|
3185
3234
|
arg0.enqueue(arg1);
|
|
3186
3235
|
}, arguments); },
|
|
3187
|
-
|
|
3236
|
+
__wbg_entries_7b6e1805c22668f3: function(arg0) {
|
|
3237
|
+
const ret = arg0.entries();
|
|
3238
|
+
return ret;
|
|
3239
|
+
},
|
|
3240
|
+
__wbg_entries_83f42485034accab: function(arg0) {
|
|
3188
3241
|
const ret = arg0.entries();
|
|
3189
3242
|
return ret;
|
|
3190
3243
|
},
|
|
3191
|
-
|
|
3244
|
+
__wbg_entries_bb9843ba73dc70d6: function(arg0) {
|
|
3192
3245
|
const ret = Object.entries(arg0);
|
|
3193
3246
|
return ret;
|
|
3194
3247
|
},
|
|
3195
|
-
|
|
3248
|
+
__wbg_error_48655ee7e4756f8b: function(arg0) {
|
|
3249
|
+
console.error(arg0);
|
|
3250
|
+
},
|
|
3251
|
+
__wbg_error_537f92d5f29e50f7: function(arg0, arg1) {
|
|
3252
|
+
console.error(getStringFromWasm0(arg0, arg1));
|
|
3253
|
+
},
|
|
3254
|
+
__wbg_error_7aabf7ad5c35cfbb: function(arg0, arg1) {
|
|
3255
|
+
console.error(getStringFromWasm0(arg0, arg1));
|
|
3256
|
+
},
|
|
3257
|
+
__wbg_error_a6fa202b58aa1cd3: function(arg0, arg1) {
|
|
3196
3258
|
let deferred0_0;
|
|
3197
3259
|
let deferred0_1;
|
|
3198
3260
|
try {
|
|
@@ -3203,177 +3265,176 @@ function __wbg_get_imports() {
|
|
|
3203
3265
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
3204
3266
|
}
|
|
3205
3267
|
},
|
|
3206
|
-
|
|
3268
|
+
__wbg_error_e92447754a575869: function(arg0, arg1, arg2, arg3) {
|
|
3207
3269
|
console.error(arg0, arg1, arg2, arg3);
|
|
3208
3270
|
},
|
|
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);
|
|
3271
|
+
__wbg_fetch_1a030943aa8e0c38: function(arg0, arg1) {
|
|
3272
|
+
const ret = arg0.fetch(arg1);
|
|
3220
3273
|
return ret;
|
|
3221
3274
|
},
|
|
3222
|
-
|
|
3223
|
-
const ret = fetch(arg0);
|
|
3275
|
+
__wbg_fetch_5e2e4a3d60c8d1d3: function(arg0, arg1) {
|
|
3276
|
+
const ret = fetch(arg0, arg1);
|
|
3224
3277
|
return ret;
|
|
3225
3278
|
},
|
|
3226
|
-
|
|
3227
|
-
const ret = arg0.fetch(arg1);
|
|
3279
|
+
__wbg_fetch_a851d393d6b4492c: function(arg0, arg1, arg2) {
|
|
3280
|
+
const ret = arg0.fetch(arg1, arg2);
|
|
3228
3281
|
return ret;
|
|
3229
3282
|
},
|
|
3230
|
-
|
|
3231
|
-
const ret =
|
|
3283
|
+
__wbg_fetch_c6486a0142348bc8: function(arg0) {
|
|
3284
|
+
const ret = fetch(arg0);
|
|
3232
3285
|
return ret;
|
|
3233
3286
|
},
|
|
3234
|
-
|
|
3287
|
+
__wbg_fill_2a2acd14b0cf134b: function(arg0, arg1, arg2, arg3) {
|
|
3235
3288
|
const ret = arg0.fill(arg1, arg2 >>> 0, arg3 >>> 0);
|
|
3236
3289
|
return ret;
|
|
3237
3290
|
},
|
|
3238
|
-
|
|
3291
|
+
__wbg_flush_f5dc92f0aae58463: function() { return handleError(function (arg0) {
|
|
3239
3292
|
arg0.flush();
|
|
3240
3293
|
}, arguments); },
|
|
3241
|
-
|
|
3294
|
+
__wbg_forEach_544291b320823e55: function(arg0, arg1, arg2) {
|
|
3242
3295
|
try {
|
|
3243
3296
|
var state0 = {a: arg1, b: arg2};
|
|
3244
3297
|
var cb0 = (arg0, arg1, arg2) => {
|
|
3245
3298
|
const a = state0.a;
|
|
3246
3299
|
state0.a = 0;
|
|
3247
3300
|
try {
|
|
3248
|
-
return
|
|
3301
|
+
return wasm_bindgen__convert__closures_____invoke__h2ff28222ff39c1b8(a, state0.b, arg0, arg1, arg2);
|
|
3249
3302
|
} finally {
|
|
3250
3303
|
state0.a = a;
|
|
3251
3304
|
}
|
|
3252
3305
|
};
|
|
3253
3306
|
arg0.forEach(cb0);
|
|
3254
3307
|
} finally {
|
|
3255
|
-
state0.a =
|
|
3308
|
+
state0.a = 0;
|
|
3256
3309
|
}
|
|
3257
3310
|
},
|
|
3258
|
-
|
|
3311
|
+
__wbg_from_ff141b1e4c69b979: function(arg0) {
|
|
3259
3312
|
const ret = Array.from(arg0);
|
|
3260
3313
|
return ret;
|
|
3261
3314
|
},
|
|
3262
|
-
|
|
3315
|
+
__wbg_getDate_3125ccbd2287cd41: function(arg0) {
|
|
3263
3316
|
const ret = arg0.getDate();
|
|
3264
3317
|
return ret;
|
|
3265
3318
|
},
|
|
3266
|
-
|
|
3319
|
+
__wbg_getDay_2792f645ebf6757d: function(arg0) {
|
|
3267
3320
|
const ret = arg0.getDay();
|
|
3268
3321
|
return ret;
|
|
3269
3322
|
},
|
|
3270
|
-
|
|
3323
|
+
__wbg_getDirectoryHandle_41607d7ab5c5d4ec: function(arg0, arg1, arg2, arg3) {
|
|
3271
3324
|
const ret = arg0.getDirectoryHandle(getStringFromWasm0(arg1, arg2), arg3);
|
|
3272
3325
|
return ret;
|
|
3273
3326
|
},
|
|
3274
|
-
|
|
3327
|
+
__wbg_getDirectory_d428efb9f123807a: function(arg0) {
|
|
3275
3328
|
const ret = arg0.getDirectory();
|
|
3276
3329
|
return ret;
|
|
3277
3330
|
},
|
|
3278
|
-
|
|
3331
|
+
__wbg_getElementById_ef2cf6fa058f410a: function(arg0, arg1, arg2) {
|
|
3279
3332
|
const ret = arg0.getElementById(getStringFromWasm0(arg1, arg2));
|
|
3280
3333
|
return ret;
|
|
3281
3334
|
},
|
|
3282
|
-
|
|
3335
|
+
__wbg_getFileHandle_edbdf7040fe8f2ed: function(arg0, arg1, arg2, arg3) {
|
|
3283
3336
|
const ret = arg0.getFileHandle(getStringFromWasm0(arg1, arg2), arg3);
|
|
3284
3337
|
return ret;
|
|
3285
3338
|
},
|
|
3286
|
-
|
|
3339
|
+
__wbg_getFullYear_3b262790090055a4: function(arg0) {
|
|
3287
3340
|
const ret = arg0.getFullYear();
|
|
3288
3341
|
return ret;
|
|
3289
3342
|
},
|
|
3290
|
-
|
|
3343
|
+
__wbg_getHours_c9732aeae765eb42: function(arg0) {
|
|
3291
3344
|
const ret = arg0.getHours();
|
|
3292
3345
|
return ret;
|
|
3293
3346
|
},
|
|
3294
|
-
|
|
3347
|
+
__wbg_getMinutes_734f5fc547107704: function(arg0) {
|
|
3295
3348
|
const ret = arg0.getMinutes();
|
|
3296
3349
|
return ret;
|
|
3297
3350
|
},
|
|
3298
|
-
|
|
3351
|
+
__wbg_getMonth_a05a33ddd62f0d8a: function(arg0) {
|
|
3299
3352
|
const ret = arg0.getMonth();
|
|
3300
3353
|
return ret;
|
|
3301
3354
|
},
|
|
3302
|
-
|
|
3355
|
+
__wbg_getRandomValues_3f44b700395062e5: function() { return handleError(function (arg0, arg1) {
|
|
3303
3356
|
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
|
3304
3357
|
}, arguments); },
|
|
3305
|
-
|
|
3358
|
+
__wbg_getRandomValues_477b66419bbb968d: function() { return handleError(function (arg0, arg1) {
|
|
3306
3359
|
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
|
3307
3360
|
}, arguments); },
|
|
3308
|
-
|
|
3309
|
-
arg0.getRandomValues(arg1);
|
|
3310
|
-
}, arguments); },
|
|
3311
|
-
__wbg_getRandomValues_d8c71ea8f97a0b46: function() { return handleError(function (arg0, arg1) {
|
|
3361
|
+
__wbg_getRandomValues_76dfc69825c9c552: function() { return handleError(function (arg0, arg1) {
|
|
3312
3362
|
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
|
3313
3363
|
}, arguments); },
|
|
3314
|
-
|
|
3364
|
+
__wbg_getRandomValues_c44a50d8cfdaebeb: function() { return handleError(function (arg0, arg1) {
|
|
3365
|
+
arg0.getRandomValues(arg1);
|
|
3366
|
+
}, arguments); },
|
|
3367
|
+
__wbg_getReader_9facd4f899beac89: function() { return handleError(function (arg0) {
|
|
3315
3368
|
const ret = arg0.getReader();
|
|
3316
3369
|
return ret;
|
|
3317
3370
|
}, arguments); },
|
|
3318
|
-
|
|
3371
|
+
__wbg_getSeconds_540b42f080d49830: function(arg0) {
|
|
3319
3372
|
const ret = arg0.getSeconds();
|
|
3320
3373
|
return ret;
|
|
3321
3374
|
},
|
|
3322
|
-
|
|
3375
|
+
__wbg_getSize_7ebdae216262d623: function() { return handleError(function (arg0) {
|
|
3323
3376
|
const ret = arg0.getSize();
|
|
3324
3377
|
return ret;
|
|
3325
3378
|
}, arguments); },
|
|
3326
|
-
|
|
3379
|
+
__wbg_getTime_e599bee315e19eba: function(arg0) {
|
|
3327
3380
|
const ret = arg0.getTime();
|
|
3328
3381
|
return ret;
|
|
3329
3382
|
},
|
|
3330
|
-
|
|
3383
|
+
__wbg_getTimezoneOffset_d843b3968046e734: function(arg0) {
|
|
3331
3384
|
const ret = arg0.getTimezoneOffset();
|
|
3332
3385
|
return ret;
|
|
3333
3386
|
},
|
|
3334
|
-
|
|
3387
|
+
__wbg_getUint32_04dd23d987dad50d: function(arg0, arg1) {
|
|
3335
3388
|
const ret = arg0.getUint32(arg1 >>> 0);
|
|
3336
3389
|
return ret;
|
|
3337
3390
|
},
|
|
3338
|
-
|
|
3391
|
+
__wbg_get_41476db20fef99a8: function() { return handleError(function (arg0, arg1) {
|
|
3392
|
+
const ret = Reflect.get(arg0, arg1);
|
|
3393
|
+
return ret;
|
|
3394
|
+
}, arguments); },
|
|
3395
|
+
__wbg_get_652f640b3b0b6e3e: function(arg0, arg1) {
|
|
3339
3396
|
const ret = arg0[arg1 >>> 0];
|
|
3340
3397
|
return ret;
|
|
3341
3398
|
},
|
|
3342
|
-
|
|
3399
|
+
__wbg_get_9cfea9b7bbf12a15: function() { return handleError(function (arg0, arg1) {
|
|
3343
3400
|
const ret = Reflect.get(arg0, arg1);
|
|
3344
3401
|
return ret;
|
|
3345
3402
|
}, arguments); },
|
|
3346
|
-
|
|
3403
|
+
__wbg_get_done_2088079830fb242e: function(arg0) {
|
|
3347
3404
|
const ret = arg0.done;
|
|
3348
3405
|
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
3349
3406
|
},
|
|
3350
|
-
|
|
3407
|
+
__wbg_get_index_266bdeb37a6c8106: function(arg0, arg1) {
|
|
3408
|
+
const ret = arg0[arg1 >>> 0];
|
|
3409
|
+
return ret;
|
|
3410
|
+
},
|
|
3411
|
+
__wbg_get_unchecked_be562b1421656321: function(arg0, arg1) {
|
|
3351
3412
|
const ret = arg0[arg1 >>> 0];
|
|
3352
3413
|
return ret;
|
|
3353
3414
|
},
|
|
3354
|
-
|
|
3415
|
+
__wbg_get_value_52f4b39f58a812ed: function(arg0) {
|
|
3355
3416
|
const ret = arg0.value;
|
|
3356
3417
|
return ret;
|
|
3357
3418
|
},
|
|
3358
|
-
|
|
3419
|
+
__wbg_get_with_ref_key_6412cf3094599694: function(arg0, arg1) {
|
|
3359
3420
|
const ret = arg0[arg1];
|
|
3360
3421
|
return ret;
|
|
3361
3422
|
},
|
|
3362
|
-
|
|
3423
|
+
__wbg_has_3a6f31f647e0ba22: function() { return handleError(function (arg0, arg1) {
|
|
3363
3424
|
const ret = Reflect.has(arg0, arg1);
|
|
3364
3425
|
return ret;
|
|
3365
3426
|
}, arguments); },
|
|
3366
|
-
|
|
3427
|
+
__wbg_headers_de17f740bce997ae: function(arg0) {
|
|
3367
3428
|
const ret = arg0.headers;
|
|
3368
3429
|
return ret;
|
|
3369
3430
|
},
|
|
3370
|
-
|
|
3431
|
+
__wbg_info_092aeeab8cd06a0b: function(arg0) {
|
|
3371
3432
|
console.info(arg0);
|
|
3372
3433
|
},
|
|
3373
|
-
|
|
3434
|
+
__wbg_info_eba996fb48d58831: function(arg0, arg1, arg2, arg3) {
|
|
3374
3435
|
console.info(arg0, arg1, arg2, arg3);
|
|
3375
3436
|
},
|
|
3376
|
-
|
|
3437
|
+
__wbg_instanceof_ArrayBuffer_eab9f28fbec23477: function(arg0) {
|
|
3377
3438
|
let result;
|
|
3378
3439
|
try {
|
|
3379
3440
|
result = arg0 instanceof ArrayBuffer;
|
|
@@ -3383,7 +3444,7 @@ function __wbg_get_imports() {
|
|
|
3383
3444
|
const ret = result;
|
|
3384
3445
|
return ret;
|
|
3385
3446
|
},
|
|
3386
|
-
|
|
3447
|
+
__wbg_instanceof_DomException_47098be3333e16f8: function(arg0) {
|
|
3387
3448
|
let result;
|
|
3388
3449
|
try {
|
|
3389
3450
|
result = arg0 instanceof DOMException;
|
|
@@ -3393,7 +3454,7 @@ function __wbg_get_imports() {
|
|
|
3393
3454
|
const ret = result;
|
|
3394
3455
|
return ret;
|
|
3395
3456
|
},
|
|
3396
|
-
|
|
3457
|
+
__wbg_instanceof_Map_10d4edf60fcf9327: function(arg0) {
|
|
3397
3458
|
let result;
|
|
3398
3459
|
try {
|
|
3399
3460
|
result = arg0 instanceof Map;
|
|
@@ -3403,7 +3464,7 @@ function __wbg_get_imports() {
|
|
|
3403
3464
|
const ret = result;
|
|
3404
3465
|
return ret;
|
|
3405
3466
|
},
|
|
3406
|
-
|
|
3467
|
+
__wbg_instanceof_Response_370b83aa6c17e88a: function(arg0) {
|
|
3407
3468
|
let result;
|
|
3408
3469
|
try {
|
|
3409
3470
|
result = arg0 instanceof Response;
|
|
@@ -3413,7 +3474,7 @@ function __wbg_get_imports() {
|
|
|
3413
3474
|
const ret = result;
|
|
3414
3475
|
return ret;
|
|
3415
3476
|
},
|
|
3416
|
-
|
|
3477
|
+
__wbg_instanceof_Uint8Array_57d77acd50e4c44d: function(arg0) {
|
|
3417
3478
|
let result;
|
|
3418
3479
|
try {
|
|
3419
3480
|
result = arg0 instanceof Uint8Array;
|
|
@@ -3423,7 +3484,7 @@ function __wbg_get_imports() {
|
|
|
3423
3484
|
const ret = result;
|
|
3424
3485
|
return ret;
|
|
3425
3486
|
},
|
|
3426
|
-
|
|
3487
|
+
__wbg_instanceof_WorkerGlobalScope_62ef0414f7e1d9d1: function(arg0) {
|
|
3427
3488
|
let result;
|
|
3428
3489
|
try {
|
|
3429
3490
|
result = arg0 instanceof WorkerGlobalScope;
|
|
@@ -3433,122 +3494,138 @@ function __wbg_get_imports() {
|
|
|
3433
3494
|
const ret = result;
|
|
3434
3495
|
return ret;
|
|
3435
3496
|
},
|
|
3436
|
-
|
|
3497
|
+
__wbg_isArray_c6c6ef8308995bcf: function(arg0) {
|
|
3437
3498
|
const ret = Array.isArray(arg0);
|
|
3438
3499
|
return ret;
|
|
3439
3500
|
},
|
|
3440
|
-
|
|
3501
|
+
__wbg_isSafeInteger_3c56c421a5b4cce4: function(arg0) {
|
|
3441
3502
|
const ret = Number.isSafeInteger(arg0);
|
|
3442
3503
|
return ret;
|
|
3443
3504
|
},
|
|
3444
|
-
|
|
3505
|
+
__wbg_iterator_9d68985a1d096fc2: function() {
|
|
3445
3506
|
const ret = Symbol.iterator;
|
|
3446
3507
|
return ret;
|
|
3447
3508
|
},
|
|
3448
|
-
|
|
3449
|
-
const ret = arg0.length;
|
|
3450
|
-
return ret;
|
|
3451
|
-
},
|
|
3452
|
-
__wbg_length_35a7bace40f36eac: function(arg0) {
|
|
3509
|
+
__wbg_length_0a6ce016dc1460b0: function(arg0) {
|
|
3453
3510
|
const ret = arg0.length;
|
|
3454
3511
|
return ret;
|
|
3455
3512
|
},
|
|
3456
|
-
|
|
3513
|
+
__wbg_length_ba3c032602efe310: function(arg0) {
|
|
3457
3514
|
const ret = arg0.length;
|
|
3458
3515
|
return ret;
|
|
3459
3516
|
},
|
|
3460
|
-
|
|
3517
|
+
__wbg_log_8d00d059d90f8f62: function(arg0, arg1) {
|
|
3461
3518
|
console.log(getStringFromWasm0(arg0, arg1));
|
|
3462
3519
|
},
|
|
3463
|
-
|
|
3520
|
+
__wbg_mark_310e9a031ccc84ff: function() { return handleError(function (arg0, arg1, arg2) {
|
|
3464
3521
|
arg0.mark(getStringFromWasm0(arg1, arg2));
|
|
3465
3522
|
}, arguments); },
|
|
3466
|
-
|
|
3523
|
+
__wbg_mark_742962d66a858cc5: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
3467
3524
|
arg0.mark(getStringFromWasm0(arg1, arg2), arg3);
|
|
3468
3525
|
}, arguments); },
|
|
3469
|
-
|
|
3526
|
+
__wbg_measure_54743279e77e77bb: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
3470
3527
|
arg0.measure(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4), getStringFromWasm0(arg5, arg6));
|
|
3471
3528
|
}, arguments); },
|
|
3472
|
-
|
|
3529
|
+
__wbg_measure_cd1f7667d5f5517d: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
3473
3530
|
arg0.measure(getStringFromWasm0(arg1, arg2), arg3);
|
|
3474
3531
|
}, arguments); },
|
|
3475
|
-
|
|
3532
|
+
__wbg_message_609b498da776cb30: function(arg0, arg1) {
|
|
3476
3533
|
const ret = arg1.message;
|
|
3477
3534
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3478
3535
|
const len1 = WASM_VECTOR_LEN;
|
|
3479
3536
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3480
3537
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3481
3538
|
},
|
|
3482
|
-
|
|
3539
|
+
__wbg_message_d5628ca19de920d3: function(arg0) {
|
|
3483
3540
|
const ret = arg0.message;
|
|
3484
3541
|
return ret;
|
|
3485
3542
|
},
|
|
3486
|
-
|
|
3543
|
+
__wbg_msCrypto_bd5a034af96bcba6: function(arg0) {
|
|
3487
3544
|
const ret = arg0.msCrypto;
|
|
3488
3545
|
return ret;
|
|
3489
3546
|
},
|
|
3490
|
-
|
|
3547
|
+
__wbg_name_bf92195f4668ab6e: function(arg0) {
|
|
3548
|
+
const ret = arg0.name;
|
|
3549
|
+
return ret;
|
|
3550
|
+
},
|
|
3551
|
+
__wbg_name_e75d30c26e8dc6aa: function(arg0, arg1) {
|
|
3491
3552
|
const ret = arg1.name;
|
|
3492
3553
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3493
3554
|
const len1 = WASM_VECTOR_LEN;
|
|
3494
3555
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3495
3556
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3496
3557
|
},
|
|
3497
|
-
|
|
3558
|
+
__wbg_name_f19fb17a86413602: function(arg0, arg1) {
|
|
3498
3559
|
const ret = arg1.name;
|
|
3499
3560
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3500
3561
|
const len1 = WASM_VECTOR_LEN;
|
|
3501
3562
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3502
3563
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3503
3564
|
},
|
|
3504
|
-
|
|
3505
|
-
const ret = arg0.name;
|
|
3506
|
-
return ret;
|
|
3507
|
-
},
|
|
3508
|
-
__wbg_navigator_4478931f32ebca57: function(arg0) {
|
|
3565
|
+
__wbg_navigator_83daf29f5beb4064: function(arg0) {
|
|
3509
3566
|
const ret = arg0.navigator;
|
|
3510
3567
|
return ret;
|
|
3511
3568
|
},
|
|
3512
|
-
|
|
3569
|
+
__wbg_new_0_e486ec9936f7edbf: function() {
|
|
3513
3570
|
const ret = new Date();
|
|
3514
3571
|
return ret;
|
|
3515
3572
|
},
|
|
3516
|
-
|
|
3517
|
-
const ret = new
|
|
3573
|
+
__wbg_new_18865c63fa645c6f: function() { return handleError(function () {
|
|
3574
|
+
const ret = new Headers();
|
|
3518
3575
|
return ret;
|
|
3519
|
-
},
|
|
3520
|
-
|
|
3521
|
-
const ret = new
|
|
3576
|
+
}, arguments); },
|
|
3577
|
+
__wbg_new_227d7c05414eb861: function() {
|
|
3578
|
+
const ret = new Error();
|
|
3522
3579
|
return ret;
|
|
3523
3580
|
},
|
|
3524
|
-
|
|
3581
|
+
__wbg_new_2fad8ca02fd00684: function() {
|
|
3525
3582
|
const ret = new Object();
|
|
3526
3583
|
return ret;
|
|
3527
3584
|
},
|
|
3528
|
-
|
|
3585
|
+
__wbg_new_3baa8d9866155c79: function() {
|
|
3529
3586
|
const ret = new Array();
|
|
3530
3587
|
return ret;
|
|
3531
3588
|
},
|
|
3532
|
-
|
|
3533
|
-
const ret = new
|
|
3589
|
+
__wbg_new_46ae4e4ff2a07a64: function() {
|
|
3590
|
+
const ret = new Map();
|
|
3591
|
+
return ret;
|
|
3592
|
+
},
|
|
3593
|
+
__wbg_new_51ff470dc2f61e27: function() { return handleError(function () {
|
|
3594
|
+
const ret = new AbortController();
|
|
3534
3595
|
return ret;
|
|
3535
3596
|
}, arguments); },
|
|
3536
|
-
|
|
3597
|
+
__wbg_new_5aafc1bf3ffe858c: function() {
|
|
3598
|
+
const ret = new Error();
|
|
3599
|
+
return ret;
|
|
3600
|
+
},
|
|
3601
|
+
__wbg_new_8454eee672b2ba6e: function(arg0) {
|
|
3602
|
+
const ret = new Uint8Array(arg0);
|
|
3603
|
+
return ret;
|
|
3604
|
+
},
|
|
3605
|
+
__wbg_new_b47e026ba742fe65: function(arg0) {
|
|
3606
|
+
const ret = new Date(arg0);
|
|
3607
|
+
return ret;
|
|
3608
|
+
},
|
|
3609
|
+
__wbg_new_b8c00ea5e985ad9c: function(arg0, arg1, arg2) {
|
|
3610
|
+
const ret = new DataView(arg0, arg1 >>> 0, arg2 >>> 0);
|
|
3611
|
+
return ret;
|
|
3612
|
+
},
|
|
3613
|
+
__wbg_new_c9ea13ea803a692e: function(arg0, arg1) {
|
|
3537
3614
|
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
3538
3615
|
return ret;
|
|
3539
3616
|
},
|
|
3540
|
-
|
|
3541
|
-
const ret = new
|
|
3617
|
+
__wbg_new_from_slice_5a173c243af2e823: function(arg0, arg1) {
|
|
3618
|
+
const ret = new Uint8Array(getArrayU8FromWasm0(arg0, arg1));
|
|
3542
3619
|
return ret;
|
|
3543
3620
|
},
|
|
3544
|
-
|
|
3621
|
+
__wbg_new_typed_1137602701dc87d4: function(arg0, arg1) {
|
|
3545
3622
|
try {
|
|
3546
3623
|
var state0 = {a: arg0, b: arg1};
|
|
3547
3624
|
var cb0 = (arg0, arg1) => {
|
|
3548
3625
|
const a = state0.a;
|
|
3549
3626
|
state0.a = 0;
|
|
3550
3627
|
try {
|
|
3551
|
-
return
|
|
3628
|
+
return wasm_bindgen__convert__closures_____invoke__h01e5fc085c9abeb2(a, state0.b, arg0, arg1);
|
|
3552
3629
|
} finally {
|
|
3553
3630
|
state0.a = a;
|
|
3554
3631
|
}
|
|
@@ -3556,266 +3633,242 @@ function __wbg_get_imports() {
|
|
|
3556
3633
|
const ret = new Promise(cb0);
|
|
3557
3634
|
return ret;
|
|
3558
3635
|
} finally {
|
|
3559
|
-
state0.a =
|
|
3636
|
+
state0.a = 0;
|
|
3560
3637
|
}
|
|
3561
3638
|
},
|
|
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) {
|
|
3639
|
+
__wbg_new_with_byte_offset_and_length_643e5e9e2fb6b1ad: function(arg0, arg1, arg2) {
|
|
3587
3640
|
const ret = new Uint8Array(arg0, arg1 >>> 0, arg2 >>> 0);
|
|
3588
3641
|
return ret;
|
|
3589
3642
|
},
|
|
3590
|
-
|
|
3643
|
+
__wbg_new_with_into_underlying_source_fd904252f385f59c: function(arg0, arg1) {
|
|
3591
3644
|
const ret = new ReadableStream(IntoUnderlyingSource.__wrap(arg0), arg1);
|
|
3592
3645
|
return ret;
|
|
3593
3646
|
},
|
|
3594
|
-
|
|
3647
|
+
__wbg_new_with_length_9011f5da794bf5d9: function(arg0) {
|
|
3595
3648
|
const ret = new Uint8Array(arg0 >>> 0);
|
|
3596
3649
|
return ret;
|
|
3597
3650
|
},
|
|
3598
|
-
|
|
3651
|
+
__wbg_new_with_str_and_init_da311e12114f4d1e: function() { return handleError(function (arg0, arg1, arg2) {
|
|
3599
3652
|
const ret = new Request(getStringFromWasm0(arg0, arg1), arg2);
|
|
3600
3653
|
return ret;
|
|
3601
3654
|
}, arguments); },
|
|
3602
|
-
|
|
3655
|
+
__wbg_new_with_year_month_day_110f7ebcb5bcf261: function(arg0, arg1, arg2) {
|
|
3603
3656
|
const ret = new Date(arg0 >>> 0, arg1, arg2);
|
|
3604
3657
|
return ret;
|
|
3605
3658
|
},
|
|
3606
|
-
|
|
3659
|
+
__wbg_next_261c3c48c6e309a5: function(arg0) {
|
|
3660
|
+
const ret = arg0.next;
|
|
3661
|
+
return ret;
|
|
3662
|
+
},
|
|
3663
|
+
__wbg_next_84898466512a967f: function() { return handleError(function (arg0) {
|
|
3607
3664
|
const ret = arg0.next();
|
|
3608
3665
|
return ret;
|
|
3609
3666
|
}, arguments); },
|
|
3610
|
-
|
|
3667
|
+
__wbg_next_aacee310bcfe6461: function() { return handleError(function (arg0) {
|
|
3611
3668
|
const ret = arg0.next();
|
|
3612
3669
|
return ret;
|
|
3613
3670
|
}, arguments); },
|
|
3614
|
-
|
|
3615
|
-
const ret = arg0.next;
|
|
3616
|
-
return ret;
|
|
3617
|
-
},
|
|
3618
|
-
__wbg_node_905d3e251edff8a2: function(arg0) {
|
|
3671
|
+
__wbg_node_84ea875411254db1: function(arg0) {
|
|
3619
3672
|
const ret = arg0.node;
|
|
3620
3673
|
return ret;
|
|
3621
3674
|
},
|
|
3622
|
-
|
|
3623
|
-
const ret =
|
|
3675
|
+
__wbg_now_4f457f10f864aec5: function() {
|
|
3676
|
+
const ret = Date.now();
|
|
3624
3677
|
return ret;
|
|
3625
3678
|
},
|
|
3626
|
-
|
|
3679
|
+
__wbg_now_e627993f858511c9: function(arg0) {
|
|
3627
3680
|
const ret = arg0.now();
|
|
3628
3681
|
return ret;
|
|
3629
3682
|
},
|
|
3630
|
-
|
|
3631
|
-
const ret =
|
|
3683
|
+
__wbg_now_e7c6795a7f81e10f: function(arg0) {
|
|
3684
|
+
const ret = arg0.now();
|
|
3632
3685
|
return ret;
|
|
3633
3686
|
},
|
|
3634
|
-
|
|
3687
|
+
__wbg_on_auth_required_ae19ab7efcd20059: function() { return handleError(function (arg0) {
|
|
3635
3688
|
const ret = arg0.on_auth_required();
|
|
3636
3689
|
return ret;
|
|
3637
3690
|
}, arguments); },
|
|
3638
|
-
|
|
3691
|
+
__wbg_on_close_361f44e219c231fa: function(arg0) {
|
|
3639
3692
|
arg0.on_close();
|
|
3640
3693
|
},
|
|
3641
|
-
|
|
3694
|
+
__wbg_on_consent_update_3dbebbc393db4447: function(arg0, arg1) {
|
|
3642
3695
|
arg0.on_consent_update(arg1);
|
|
3643
3696
|
},
|
|
3644
|
-
|
|
3697
|
+
__wbg_on_conversation_aec5b7e48b552f1c: function(arg0, arg1) {
|
|
3645
3698
|
arg0.on_conversation(Conversation.__wrap(arg1));
|
|
3646
3699
|
},
|
|
3647
|
-
|
|
3700
|
+
__wbg_on_error_bfd386d7d4d42622: function(arg0, arg1) {
|
|
3648
3701
|
arg0.on_error(arg1);
|
|
3649
3702
|
},
|
|
3650
|
-
|
|
3651
|
-
arg0.on_message(arg1);
|
|
3652
|
-
},
|
|
3653
|
-
__wbg_on_message_deleted_041b585ca4b08b2d: function(arg0, arg1) {
|
|
3703
|
+
__wbg_on_message_deleted_1351623c580cb34e: function(arg0, arg1) {
|
|
3654
3704
|
arg0.on_message_deleted(arg1);
|
|
3655
3705
|
},
|
|
3656
|
-
|
|
3706
|
+
__wbg_on_message_ed1f43392e0b07ed: function(arg0, arg1) {
|
|
3707
|
+
arg0.on_message(arg1);
|
|
3708
|
+
},
|
|
3709
|
+
__wbg_on_user_preference_update_9a33e9402b699a6a: function(arg0, arg1, arg2) {
|
|
3657
3710
|
var v0 = getArrayJsValueFromWasm0(arg1, arg2).slice();
|
|
3658
3711
|
wasm.__wbindgen_free(arg1, arg2 * 4, 4);
|
|
3659
3712
|
arg0.on_user_preference_update(v0);
|
|
3660
3713
|
},
|
|
3661
|
-
|
|
3662
|
-
const ret =
|
|
3714
|
+
__wbg_performance_3550bf29533f0eae: function(arg0) {
|
|
3715
|
+
const ret = arg0.performance;
|
|
3663
3716
|
return ret;
|
|
3664
3717
|
},
|
|
3665
|
-
|
|
3718
|
+
__wbg_performance_3fcf6e32a7e1ed0a: function(arg0) {
|
|
3666
3719
|
const ret = arg0.performance;
|
|
3667
3720
|
return ret;
|
|
3668
3721
|
},
|
|
3669
|
-
|
|
3670
|
-
const ret =
|
|
3722
|
+
__wbg_performance_757310249566272b: function() {
|
|
3723
|
+
const ret = globalThis.performance;
|
|
3671
3724
|
return ret;
|
|
3672
3725
|
},
|
|
3673
|
-
|
|
3726
|
+
__wbg_postMessage_ead2ef5ee8c7a94e: function() { return handleError(function (arg0, arg1) {
|
|
3674
3727
|
arg0.postMessage(arg1);
|
|
3675
3728
|
}, arguments); },
|
|
3676
|
-
|
|
3729
|
+
__wbg_process_44c7a14e11e9f69e: function(arg0) {
|
|
3677
3730
|
const ret = arg0.process;
|
|
3678
3731
|
return ret;
|
|
3679
3732
|
},
|
|
3680
|
-
|
|
3733
|
+
__wbg_prototypesetcall_fd4050e806e1d519: function(arg0, arg1, arg2) {
|
|
3681
3734
|
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
|
|
3682
3735
|
},
|
|
3683
|
-
|
|
3736
|
+
__wbg_push_60a5366c0bb22a7d: function(arg0, arg1) {
|
|
3684
3737
|
const ret = arg0.push(arg1);
|
|
3685
3738
|
return ret;
|
|
3686
3739
|
},
|
|
3687
|
-
|
|
3740
|
+
__wbg_queueMicrotask_40ac6ffc2848ba77: function(arg0) {
|
|
3741
|
+
queueMicrotask(arg0);
|
|
3742
|
+
},
|
|
3743
|
+
__wbg_queueMicrotask_74d092439f6494c1: function(arg0) {
|
|
3688
3744
|
const ret = arg0.queueMicrotask;
|
|
3689
3745
|
return ret;
|
|
3690
3746
|
},
|
|
3691
|
-
|
|
3692
|
-
queueMicrotask(arg0);
|
|
3693
|
-
},
|
|
3694
|
-
__wbg_randomFillSync_ac0988aba3254290: function() { return handleError(function (arg0, arg1) {
|
|
3747
|
+
__wbg_randomFillSync_6c25eac9869eb53c: function() { return handleError(function (arg0, arg1) {
|
|
3695
3748
|
arg0.randomFillSync(arg1);
|
|
3696
3749
|
}, arguments); },
|
|
3697
|
-
|
|
3750
|
+
__wbg_random_fc287e2ecb3e2805: function() {
|
|
3698
3751
|
const ret = Math.random();
|
|
3699
3752
|
return ret;
|
|
3700
3753
|
},
|
|
3701
|
-
|
|
3702
|
-
const ret = arg0.read(arg1, arg2);
|
|
3754
|
+
__wbg_read_72e82f3f505b8b4a: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
3755
|
+
const ret = arg0.read(getArrayU8FromWasm0(arg1, arg2), arg3);
|
|
3703
3756
|
return ret;
|
|
3704
3757
|
}, arguments); },
|
|
3705
|
-
|
|
3758
|
+
__wbg_read_ac2e4325f1799cbe: function(arg0) {
|
|
3706
3759
|
const ret = arg0.read();
|
|
3707
3760
|
return ret;
|
|
3708
3761
|
},
|
|
3709
|
-
|
|
3710
|
-
const ret = arg0.read(
|
|
3762
|
+
__wbg_read_d67a54b770176645: function() { return handleError(function (arg0, arg1, arg2) {
|
|
3763
|
+
const ret = arg0.read(arg1, arg2);
|
|
3711
3764
|
return ret;
|
|
3712
3765
|
}, arguments); },
|
|
3713
|
-
|
|
3766
|
+
__wbg_releaseLock_9e0ebc0b5270a358: function(arg0) {
|
|
3714
3767
|
arg0.releaseLock();
|
|
3715
3768
|
},
|
|
3716
|
-
|
|
3769
|
+
__wbg_require_b4edbdcf3e2a1ef0: function() { return handleError(function () {
|
|
3717
3770
|
const ret = module.require;
|
|
3718
3771
|
return ret;
|
|
3719
3772
|
}, arguments); },
|
|
3720
|
-
|
|
3773
|
+
__wbg_resolve_9feb5d906ca62419: function(arg0) {
|
|
3721
3774
|
const ret = Promise.resolve(arg0);
|
|
3722
3775
|
return ret;
|
|
3723
3776
|
},
|
|
3724
|
-
|
|
3777
|
+
__wbg_respond_e7e53102735b2ae2: function() { return handleError(function (arg0, arg1) {
|
|
3725
3778
|
arg0.respond(arg1 >>> 0);
|
|
3726
3779
|
}, arguments); },
|
|
3727
|
-
|
|
3780
|
+
__wbg_self_fbd35b4e1b417b7c: function(arg0) {
|
|
3728
3781
|
const ret = arg0.self;
|
|
3729
3782
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3730
3783
|
},
|
|
3731
|
-
|
|
3784
|
+
__wbg_setInterval_cbf1c35c6a692d37: function() { return handleError(function (arg0, arg1) {
|
|
3732
3785
|
const ret = setInterval(arg0, arg1);
|
|
3733
3786
|
return ret;
|
|
3734
3787
|
}, arguments); },
|
|
3735
|
-
|
|
3788
|
+
__wbg_setTimeout_30be5552e4410378: function(arg0, arg1) {
|
|
3736
3789
|
const ret = setTimeout(arg0, arg1);
|
|
3737
3790
|
return ret;
|
|
3738
3791
|
},
|
|
3739
|
-
|
|
3792
|
+
__wbg_setTimeout_56bcdccbad22fd44: function() { return handleError(function (arg0, arg1) {
|
|
3740
3793
|
const ret = setTimeout(arg0, arg1);
|
|
3741
3794
|
return ret;
|
|
3742
|
-
},
|
|
3743
|
-
|
|
3795
|
+
}, arguments); },
|
|
3796
|
+
__wbg_setTimeout_9f4169770fc5a5c3: function(arg0, arg1) {
|
|
3744
3797
|
const ret = setTimeout(arg0, arg1);
|
|
3745
3798
|
return ret;
|
|
3746
|
-
},
|
|
3747
|
-
|
|
3799
|
+
},
|
|
3800
|
+
__wbg_setUint32_e0b783cc7c089ba8: function(arg0, arg1, arg2) {
|
|
3748
3801
|
arg0.setUint32(arg1 >>> 0, arg2 >>> 0);
|
|
3749
3802
|
},
|
|
3750
|
-
|
|
3751
|
-
const ret =
|
|
3803
|
+
__wbg_set_5337f8ac82364a3f: function() { return handleError(function (arg0, arg1, arg2) {
|
|
3804
|
+
const ret = Reflect.set(arg0, arg1, arg2);
|
|
3752
3805
|
return ret;
|
|
3753
|
-
},
|
|
3754
|
-
|
|
3806
|
+
}, arguments); },
|
|
3807
|
+
__wbg_set_6be42768c690e380: function(arg0, arg1, arg2) {
|
|
3755
3808
|
arg0[arg1] = arg2;
|
|
3756
3809
|
},
|
|
3757
|
-
|
|
3758
|
-
const ret =
|
|
3810
|
+
__wbg_set_82f7a370f604db70: function(arg0, arg1, arg2) {
|
|
3811
|
+
const ret = arg0.set(arg1, arg2);
|
|
3759
3812
|
return ret;
|
|
3813
|
+
},
|
|
3814
|
+
__wbg_set_959f043b9152efeb: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
3815
|
+
arg0.set(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
3760
3816
|
}, arguments); },
|
|
3761
|
-
|
|
3817
|
+
__wbg_set_at_43ef9e92a1449d80: function(arg0, arg1) {
|
|
3762
3818
|
arg0.at = arg1;
|
|
3763
3819
|
},
|
|
3764
|
-
|
|
3820
|
+
__wbg_set_b0d9dc239ecdb765: function(arg0, arg1, arg2) {
|
|
3821
|
+
arg0.set(getArrayU8FromWasm0(arg1, arg2));
|
|
3822
|
+
},
|
|
3823
|
+
__wbg_set_body_aaff4f5f9991f342: function(arg0, arg1) {
|
|
3765
3824
|
arg0.body = arg1;
|
|
3766
3825
|
},
|
|
3767
|
-
|
|
3826
|
+
__wbg_set_cache_d1f2b7b4dfa39317: function(arg0, arg1) {
|
|
3768
3827
|
arg0.cache = __wbindgen_enum_RequestCache[arg1];
|
|
3769
3828
|
},
|
|
3770
|
-
|
|
3771
|
-
arg0.set(getArrayU8FromWasm0(arg1, arg2));
|
|
3772
|
-
},
|
|
3773
|
-
__wbg_set_create_1f902c5936adde7d: function(arg0, arg1) {
|
|
3829
|
+
__wbg_set_create_637fdbc7119e4631: function(arg0, arg1) {
|
|
3774
3830
|
arg0.create = arg1 !== 0;
|
|
3775
3831
|
},
|
|
3776
|
-
|
|
3832
|
+
__wbg_set_create_bc239cc43df001d6: function(arg0, arg1) {
|
|
3777
3833
|
arg0.create = arg1 !== 0;
|
|
3778
3834
|
},
|
|
3779
|
-
|
|
3835
|
+
__wbg_set_credentials_f31e4d30b974ce14: function(arg0, arg1) {
|
|
3780
3836
|
arg0.credentials = __wbindgen_enum_RequestCredentials[arg1];
|
|
3781
3837
|
},
|
|
3782
|
-
|
|
3783
|
-
arg0.set(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
3784
|
-
}, arguments); },
|
|
3785
|
-
__wbg_set_f43e577aea94465b: function(arg0, arg1, arg2) {
|
|
3838
|
+
__wbg_set_f614f6a0608d1d1d: function(arg0, arg1, arg2) {
|
|
3786
3839
|
arg0[arg1 >>> 0] = arg2;
|
|
3787
3840
|
},
|
|
3788
|
-
|
|
3841
|
+
__wbg_set_headers_ae96049ea40e9eef: function(arg0, arg1) {
|
|
3789
3842
|
arg0.headers = arg1;
|
|
3790
3843
|
},
|
|
3791
|
-
|
|
3844
|
+
__wbg_set_high_water_mark_84684938153a659a: function(arg0, arg1) {
|
|
3792
3845
|
arg0.highWaterMark = arg1;
|
|
3793
3846
|
},
|
|
3794
|
-
|
|
3847
|
+
__wbg_set_integrity_e20206ae8869d3fd: function(arg0, arg1, arg2) {
|
|
3795
3848
|
arg0.integrity = getStringFromWasm0(arg1, arg2);
|
|
3796
3849
|
},
|
|
3797
|
-
|
|
3850
|
+
__wbg_set_method_0eea8a5597775fa1: function(arg0, arg1, arg2) {
|
|
3798
3851
|
arg0.method = getStringFromWasm0(arg1, arg2);
|
|
3799
3852
|
},
|
|
3800
|
-
|
|
3853
|
+
__wbg_set_mode_9fe47bff60a1580d: function(arg0, arg1) {
|
|
3801
3854
|
arg0.mode = __wbindgen_enum_RequestMode[arg1];
|
|
3802
3855
|
},
|
|
3803
|
-
|
|
3856
|
+
__wbg_set_redirect_d59447760eb3129d: function(arg0, arg1) {
|
|
3804
3857
|
arg0.redirect = __wbindgen_enum_RequestRedirect[arg1];
|
|
3805
3858
|
},
|
|
3806
|
-
|
|
3859
|
+
__wbg_set_referrer_d0e5dc091bbc9f75: function(arg0, arg1, arg2) {
|
|
3807
3860
|
arg0.referrer = getStringFromWasm0(arg1, arg2);
|
|
3808
3861
|
},
|
|
3809
|
-
|
|
3862
|
+
__wbg_set_referrer_policy_5afdd37afd73c769: function(arg0, arg1) {
|
|
3810
3863
|
arg0.referrerPolicy = __wbindgen_enum_ReferrerPolicy[arg1];
|
|
3811
3864
|
},
|
|
3812
|
-
|
|
3865
|
+
__wbg_set_signal_8c5cf4c3b27bd8a8: function(arg0, arg1) {
|
|
3813
3866
|
arg0.signal = arg1;
|
|
3814
3867
|
},
|
|
3815
|
-
|
|
3868
|
+
__wbg_set_text_content_63c250954481807a: function(arg0, arg1, arg2) {
|
|
3816
3869
|
arg0.textContent = getStringFromWasm0(arg1, arg2);
|
|
3817
3870
|
},
|
|
3818
|
-
|
|
3871
|
+
__wbg_signal_4643ce883b92b553: function(arg0) {
|
|
3819
3872
|
const ret = arg0.signal;
|
|
3820
3873
|
return ret;
|
|
3821
3874
|
},
|
|
@@ -3823,222 +3876,215 @@ function __wbg_get_imports() {
|
|
|
3823
3876
|
const ret = SignatureRequestHandle.__wrap(arg0);
|
|
3824
3877
|
return ret;
|
|
3825
3878
|
},
|
|
3826
|
-
|
|
3827
|
-
const ret =
|
|
3828
|
-
|
|
3879
|
+
__wbg_stack_18dcc55b1429bfed: function(arg0, arg1) {
|
|
3880
|
+
const ret = arg1.stack;
|
|
3881
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3882
|
+
var len1 = WASM_VECTOR_LEN;
|
|
3883
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3884
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3829
3885
|
},
|
|
3830
|
-
|
|
3886
|
+
__wbg_stack_3b0d974bbf31e44f: function(arg0, arg1) {
|
|
3831
3887
|
const ret = arg1.stack;
|
|
3832
3888
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3833
3889
|
const len1 = WASM_VECTOR_LEN;
|
|
3834
3890
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3835
3891
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3836
3892
|
},
|
|
3837
|
-
|
|
3838
|
-
const ret = arg0.stack;
|
|
3839
|
-
return ret;
|
|
3840
|
-
},
|
|
3841
|
-
__wbg_stack_8b207ade94c30c09: function(arg0, arg1) {
|
|
3893
|
+
__wbg_stack_5b90bbbb003d7e5c: function(arg0, arg1) {
|
|
3842
3894
|
const ret = arg1.stack;
|
|
3843
|
-
|
|
3844
|
-
|
|
3895
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3896
|
+
const len1 = WASM_VECTOR_LEN;
|
|
3845
3897
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3846
3898
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3847
3899
|
},
|
|
3848
|
-
|
|
3900
|
+
__wbg_stack_5f3026c9cb27e9a3: function(arg0) {
|
|
3849
3901
|
const ret = arg0.stack;
|
|
3850
3902
|
return ret;
|
|
3851
3903
|
},
|
|
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);
|
|
3904
|
+
__wbg_stack_e914725ec1a4a021: function(arg0) {
|
|
3905
|
+
const ret = arg0.stack;
|
|
3906
|
+
return ret;
|
|
3858
3907
|
},
|
|
3859
|
-
|
|
3908
|
+
__wbg_static_accessor_DOCUMENT_fa300f5b84193774: function() {
|
|
3860
3909
|
const ret = document;
|
|
3861
3910
|
return ret;
|
|
3862
3911
|
},
|
|
3863
|
-
|
|
3864
|
-
const ret = typeof
|
|
3912
|
+
__wbg_static_accessor_GLOBAL_THIS_1c7f1bd6c6941fdb: function() {
|
|
3913
|
+
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
|
3865
3914
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3866
3915
|
},
|
|
3867
|
-
|
|
3868
|
-
const ret = typeof
|
|
3916
|
+
__wbg_static_accessor_GLOBAL_e039bc914f83e74e: function() {
|
|
3917
|
+
const ret = typeof global === 'undefined' ? null : global;
|
|
3869
3918
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3870
3919
|
},
|
|
3871
|
-
|
|
3920
|
+
__wbg_static_accessor_SELF_8bf8c48c28420ad5: function() {
|
|
3872
3921
|
const ret = typeof self === 'undefined' ? null : self;
|
|
3873
3922
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3874
3923
|
},
|
|
3875
|
-
|
|
3924
|
+
__wbg_static_accessor_WINDOW_6aeee9b51652ee0f: function() {
|
|
3876
3925
|
const ret = typeof window === 'undefined' ? null : window;
|
|
3877
3926
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3878
3927
|
},
|
|
3879
|
-
|
|
3928
|
+
__wbg_status_157e67ab07d01f8a: function(arg0) {
|
|
3880
3929
|
const ret = arg0.status;
|
|
3881
3930
|
return ret;
|
|
3882
3931
|
},
|
|
3883
|
-
|
|
3932
|
+
__wbg_storage_78992f104707a253: function(arg0) {
|
|
3884
3933
|
const ret = arg0.storage;
|
|
3885
3934
|
return ret;
|
|
3886
3935
|
},
|
|
3887
|
-
|
|
3888
|
-
const ret = JSON.stringify(arg0);
|
|
3889
|
-
return ret;
|
|
3890
|
-
}, arguments); },
|
|
3891
|
-
__wbg_subarray_a96e1fef17ed23cb: function(arg0, arg1, arg2) {
|
|
3936
|
+
__wbg_subarray_fbe3cef290e1fa43: function(arg0, arg1, arg2) {
|
|
3892
3937
|
const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0);
|
|
3893
3938
|
return ret;
|
|
3894
3939
|
},
|
|
3895
|
-
|
|
3896
|
-
const ret = arg0.text();
|
|
3897
|
-
return ret;
|
|
3898
|
-
}, arguments); },
|
|
3899
|
-
__wbg_text_content_50199b46165a6fba: function(arg0, arg1) {
|
|
3940
|
+
__wbg_text_content_39133fe2ceeea2bf: function(arg0, arg1) {
|
|
3900
3941
|
const ret = arg1.textContent;
|
|
3901
3942
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3902
3943
|
const len1 = WASM_VECTOR_LEN;
|
|
3903
3944
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3904
3945
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3905
3946
|
},
|
|
3906
|
-
|
|
3907
|
-
const ret = arg0.
|
|
3947
|
+
__wbg_text_de416916b5c06490: function() { return handleError(function (arg0) {
|
|
3948
|
+
const ret = arg0.text();
|
|
3908
3949
|
return ret;
|
|
3909
|
-
},
|
|
3910
|
-
|
|
3950
|
+
}, arguments); },
|
|
3951
|
+
__wbg_then_20a157d939b514f5: function(arg0, arg1) {
|
|
3911
3952
|
const ret = arg0.then(arg1);
|
|
3912
3953
|
return ret;
|
|
3913
3954
|
},
|
|
3914
|
-
|
|
3915
|
-
const ret = arg0.
|
|
3955
|
+
__wbg_then_5ef9b762bc91555c: function(arg0, arg1, arg2) {
|
|
3956
|
+
const ret = arg0.then(arg1, arg2);
|
|
3916
3957
|
return ret;
|
|
3917
|
-
},
|
|
3918
|
-
|
|
3958
|
+
},
|
|
3959
|
+
__wbg_toString_90f2e8a87f5b736e: function() { return handleError(function (arg0, arg1) {
|
|
3919
3960
|
const ret = arg1.toString();
|
|
3920
3961
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3921
3962
|
const len1 = WASM_VECTOR_LEN;
|
|
3922
3963
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3923
3964
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3924
3965
|
}, arguments); },
|
|
3925
|
-
|
|
3966
|
+
__wbg_toString_9ae74d2321992740: function(arg0) {
|
|
3926
3967
|
const ret = arg0.toString();
|
|
3927
3968
|
return ret;
|
|
3928
3969
|
},
|
|
3929
|
-
|
|
3930
|
-
arg0.truncate(arg1);
|
|
3931
|
-
}, arguments); },
|
|
3932
|
-
__wbg_truncate_dc661fdcb0062fa7: function() { return handleError(function (arg0, arg1) {
|
|
3970
|
+
__wbg_truncate_1294f1d4ce528cec: function() { return handleError(function (arg0, arg1) {
|
|
3933
3971
|
arg0.truncate(arg1 >>> 0);
|
|
3934
3972
|
}, arguments); },
|
|
3935
|
-
|
|
3973
|
+
__wbg_truncate_6d72f826b55029bb: function() { return handleError(function (arg0, arg1) {
|
|
3974
|
+
arg0.truncate(arg1);
|
|
3975
|
+
}, arguments); },
|
|
3976
|
+
__wbg_url_a0e994e7d0317efc: function(arg0, arg1) {
|
|
3936
3977
|
const ret = arg1.url;
|
|
3937
3978
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3938
3979
|
const len1 = WASM_VECTOR_LEN;
|
|
3939
3980
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3940
3981
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3941
3982
|
},
|
|
3942
|
-
|
|
3983
|
+
__wbg_value_f852716acdeb3e82: function(arg0) {
|
|
3943
3984
|
const ret = arg0.value;
|
|
3944
3985
|
return ret;
|
|
3945
3986
|
},
|
|
3946
|
-
|
|
3987
|
+
__wbg_versions_276b2795b1c6a219: function(arg0) {
|
|
3947
3988
|
const ret = arg0.versions;
|
|
3948
3989
|
return ret;
|
|
3949
3990
|
},
|
|
3950
|
-
|
|
3991
|
+
__wbg_view_16bd97d49793e1a9: function(arg0) {
|
|
3951
3992
|
const ret = arg0.view;
|
|
3952
3993
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
3953
3994
|
},
|
|
3954
|
-
|
|
3955
|
-
console.warn(arg0, arg1, arg2, arg3);
|
|
3956
|
-
},
|
|
3957
|
-
__wbg_warn_f7ae1b2e66ccb930: function(arg0) {
|
|
3995
|
+
__wbg_warn_1f9b94806da61fbb: function(arg0) {
|
|
3958
3996
|
console.warn(arg0);
|
|
3959
3997
|
},
|
|
3960
|
-
|
|
3961
|
-
|
|
3998
|
+
__wbg_warn_d258f6e2da5e0422: function(arg0, arg1, arg2, arg3) {
|
|
3999
|
+
console.warn(arg0, arg1, arg2, arg3);
|
|
4000
|
+
},
|
|
4001
|
+
__wbg_write_2c5b749b7c262563: function() { return handleError(function (arg0, arg1, arg2) {
|
|
4002
|
+
const ret = arg0.write(arg1, arg2);
|
|
3962
4003
|
return ret;
|
|
3963
4004
|
}, arguments); },
|
|
3964
|
-
|
|
3965
|
-
const ret = arg0.write(arg1, arg2);
|
|
4005
|
+
__wbg_write_b1d4179946839909: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
4006
|
+
const ret = arg0.write(getArrayU8FromWasm0(arg1, arg2), arg3);
|
|
3966
4007
|
return ret;
|
|
3967
4008
|
}, arguments); },
|
|
3968
4009
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
3969
|
-
// Cast intrinsic for `Closure(Closure {
|
|
3970
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4010
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx: 9088, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4011
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h65fd5050fd174a78);
|
|
3971
4012
|
return ret;
|
|
3972
4013
|
},
|
|
3973
4014
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
3974
|
-
// Cast intrinsic for `Closure(Closure {
|
|
3975
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4015
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx: 9705, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
4016
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__hf22466092682e799);
|
|
3976
4017
|
return ret;
|
|
3977
4018
|
},
|
|
3978
4019
|
__wbindgen_cast_0000000000000003: function(arg0, arg1) {
|
|
3979
|
-
// Cast intrinsic for `Closure(Closure {
|
|
3980
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4020
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx: 7219, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4021
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h99173b1edd0ed916);
|
|
3981
4022
|
return ret;
|
|
3982
4023
|
},
|
|
3983
4024
|
__wbindgen_cast_0000000000000004: function(arg0, arg1) {
|
|
3984
|
-
// Cast intrinsic for `Closure(Closure {
|
|
3985
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4025
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx: 8886, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4026
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h28c39d65825f8105);
|
|
4027
|
+
return ret;
|
|
4028
|
+
},
|
|
4029
|
+
__wbindgen_cast_0000000000000005: function(arg0, arg1) {
|
|
4030
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx: 9059, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4031
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__hf04b250c3b9c17a3);
|
|
3986
4032
|
return ret;
|
|
3987
4033
|
},
|
|
3988
|
-
|
|
4034
|
+
__wbindgen_cast_0000000000000006: function(arg0) {
|
|
3989
4035
|
// Cast intrinsic for `F64 -> Externref`.
|
|
3990
4036
|
const ret = arg0;
|
|
3991
4037
|
return ret;
|
|
3992
4038
|
},
|
|
3993
|
-
|
|
4039
|
+
__wbindgen_cast_0000000000000007: function(arg0) {
|
|
3994
4040
|
// Cast intrinsic for `I64 -> Externref`.
|
|
3995
4041
|
const ret = arg0;
|
|
3996
4042
|
return ret;
|
|
3997
4043
|
},
|
|
3998
|
-
|
|
4044
|
+
__wbindgen_cast_0000000000000008: function(arg0, arg1) {
|
|
3999
4045
|
// Cast intrinsic for `Ref(Slice(U8)) -> NamedExternref("Uint8Array")`.
|
|
4000
4046
|
const ret = getArrayU8FromWasm0(arg0, arg1);
|
|
4001
4047
|
return ret;
|
|
4002
4048
|
},
|
|
4003
|
-
|
|
4049
|
+
__wbindgen_cast_0000000000000009: function(arg0, arg1) {
|
|
4004
4050
|
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
4005
4051
|
const ret = getStringFromWasm0(arg0, arg1);
|
|
4006
4052
|
return ret;
|
|
4007
4053
|
},
|
|
4008
|
-
|
|
4054
|
+
__wbindgen_cast_000000000000000a: function(arg0) {
|
|
4009
4055
|
// Cast intrinsic for `U64 -> Externref`.
|
|
4010
4056
|
const ret = BigInt.asUintN(64, arg0);
|
|
4011
4057
|
return ret;
|
|
4012
4058
|
},
|
|
4013
|
-
|
|
4059
|
+
__wbindgen_cast_000000000000000b: function(arg0, arg1) {
|
|
4014
4060
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
4015
4061
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
4016
4062
|
// Cast intrinsic for `Vector(NamedExternref("Conversation")) -> Externref`.
|
|
4017
4063
|
const ret = v0;
|
|
4018
4064
|
return ret;
|
|
4019
4065
|
},
|
|
4020
|
-
|
|
4066
|
+
__wbindgen_cast_000000000000000c: function(arg0, arg1) {
|
|
4021
4067
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
4022
4068
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
4023
4069
|
// Cast intrinsic for `Vector(NamedExternref("DecodedMessage")) -> Externref`.
|
|
4024
4070
|
const ret = v0;
|
|
4025
4071
|
return ret;
|
|
4026
4072
|
},
|
|
4027
|
-
|
|
4073
|
+
__wbindgen_cast_000000000000000d: function(arg0, arg1) {
|
|
4028
4074
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
4029
4075
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
4030
4076
|
// Cast intrinsic for `Vector(NamedExternref("InboxState")) -> Externref`.
|
|
4031
4077
|
const ret = v0;
|
|
4032
4078
|
return ret;
|
|
4033
4079
|
},
|
|
4034
|
-
|
|
4080
|
+
__wbindgen_cast_000000000000000e: function(arg0, arg1) {
|
|
4035
4081
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
4036
4082
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
4037
4083
|
// Cast intrinsic for `Vector(NamedExternref("Message")) -> Externref`.
|
|
4038
4084
|
const ret = v0;
|
|
4039
4085
|
return ret;
|
|
4040
4086
|
},
|
|
4041
|
-
|
|
4087
|
+
__wbindgen_cast_000000000000000f: function(arg0, arg1) {
|
|
4042
4088
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
4043
4089
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
4044
4090
|
// Cast intrinsic for `Vector(NamedExternref("string")) -> Externref`.
|
|
@@ -4061,28 +4107,35 @@ function __wbg_get_imports() {
|
|
|
4061
4107
|
};
|
|
4062
4108
|
}
|
|
4063
4109
|
|
|
4064
|
-
function
|
|
4065
|
-
wasm.
|
|
4110
|
+
function wasm_bindgen__convert__closures_____invoke__h99173b1edd0ed916(arg0, arg1) {
|
|
4111
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h99173b1edd0ed916(arg0, arg1);
|
|
4066
4112
|
}
|
|
4067
4113
|
|
|
4068
|
-
function
|
|
4069
|
-
wasm.
|
|
4114
|
+
function wasm_bindgen__convert__closures_____invoke__h28c39d65825f8105(arg0, arg1) {
|
|
4115
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h28c39d65825f8105(arg0, arg1);
|
|
4070
4116
|
}
|
|
4071
4117
|
|
|
4072
|
-
function
|
|
4073
|
-
wasm.
|
|
4118
|
+
function wasm_bindgen__convert__closures_____invoke__hf04b250c3b9c17a3(arg0, arg1) {
|
|
4119
|
+
wasm.wasm_bindgen__convert__closures_____invoke__hf04b250c3b9c17a3(arg0, arg1);
|
|
4074
4120
|
}
|
|
4075
4121
|
|
|
4076
|
-
function
|
|
4077
|
-
wasm.
|
|
4122
|
+
function wasm_bindgen__convert__closures_____invoke__h65fd5050fd174a78(arg0, arg1, arg2) {
|
|
4123
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h65fd5050fd174a78(arg0, arg1, arg2);
|
|
4078
4124
|
}
|
|
4079
4125
|
|
|
4080
|
-
function
|
|
4081
|
-
wasm.
|
|
4126
|
+
function wasm_bindgen__convert__closures_____invoke__hf22466092682e799(arg0, arg1, arg2) {
|
|
4127
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__hf22466092682e799(arg0, arg1, arg2);
|
|
4128
|
+
if (ret[1]) {
|
|
4129
|
+
throw takeFromExternrefTable0(ret[0]);
|
|
4130
|
+
}
|
|
4082
4131
|
}
|
|
4083
4132
|
|
|
4084
|
-
function
|
|
4085
|
-
wasm.
|
|
4133
|
+
function wasm_bindgen__convert__closures_____invoke__h01e5fc085c9abeb2(arg0, arg1, arg2, arg3) {
|
|
4134
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h01e5fc085c9abeb2(arg0, arg1, arg2, arg3);
|
|
4135
|
+
}
|
|
4136
|
+
|
|
4137
|
+
function wasm_bindgen__convert__closures_____invoke__h2ff28222ff39c1b8(arg0, arg1, arg2, arg3, arg4) {
|
|
4138
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h2ff28222ff39c1b8(arg0, arg1, arg2, arg3, arg4);
|
|
4086
4139
|
}
|
|
4087
4140
|
|
|
4088
4141
|
|
|
@@ -4104,46 +4157,46 @@ const __wbindgen_enum_RequestMode = ["same-origin", "no-cors", "cors", "navigate
|
|
|
4104
4157
|
const __wbindgen_enum_RequestRedirect = ["follow", "error", "manual"];
|
|
4105
4158
|
const AuthHandleFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4106
4159
|
? { register: () => {}, unregister: () => {} }
|
|
4107
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_authhandle_free(ptr
|
|
4160
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_authhandle_free(ptr, 1));
|
|
4108
4161
|
const BackendFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4109
4162
|
? { register: () => {}, unregister: () => {} }
|
|
4110
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_backend_free(ptr
|
|
4163
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_backend_free(ptr, 1));
|
|
4111
4164
|
const BackendBuilderFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4112
4165
|
? { register: () => {}, unregister: () => {} }
|
|
4113
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_backendbuilder_free(ptr
|
|
4166
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_backendbuilder_free(ptr, 1));
|
|
4114
4167
|
const ClientFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4115
4168
|
? { register: () => {}, unregister: () => {} }
|
|
4116
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_client_free(ptr
|
|
4169
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_client_free(ptr, 1));
|
|
4170
|
+
const WasmBindgenTestContextFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4171
|
+
? { register: () => {}, unregister: () => {} }
|
|
4172
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_wasmbindgentestcontext_free(ptr, 1));
|
|
4117
4173
|
const ConversationFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4118
4174
|
? { register: () => {}, unregister: () => {} }
|
|
4119
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_conversation_free(ptr
|
|
4175
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_conversation_free(ptr, 1));
|
|
4120
4176
|
const ConversationListItemFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4121
4177
|
? { register: () => {}, unregister: () => {} }
|
|
4122
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_conversationlistitem_free(ptr
|
|
4178
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_conversationlistitem_free(ptr, 1));
|
|
4123
4179
|
const ConversationsFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4124
4180
|
? { register: () => {}, unregister: () => {} }
|
|
4125
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_conversations_free(ptr
|
|
4181
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_conversations_free(ptr, 1));
|
|
4126
4182
|
const DeviceSyncFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4127
4183
|
? { register: () => {}, unregister: () => {} }
|
|
4128
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_devicesync_free(ptr
|
|
4184
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_devicesync_free(ptr, 1));
|
|
4129
4185
|
const IntoUnderlyingByteSourceFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4130
4186
|
? { register: () => {}, unregister: () => {} }
|
|
4131
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingbytesource_free(ptr
|
|
4187
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingbytesource_free(ptr, 1));
|
|
4132
4188
|
const IntoUnderlyingSinkFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4133
4189
|
? { register: () => {}, unregister: () => {} }
|
|
4134
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingsink_free(ptr
|
|
4190
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingsink_free(ptr, 1));
|
|
4135
4191
|
const IntoUnderlyingSourceFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4136
4192
|
? { register: () => {}, unregister: () => {} }
|
|
4137
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingsource_free(ptr
|
|
4193
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingsource_free(ptr, 1));
|
|
4138
4194
|
const SignatureRequestHandleFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4139
4195
|
? { register: () => {}, unregister: () => {} }
|
|
4140
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_signaturerequesthandle_free(ptr
|
|
4196
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_signaturerequesthandle_free(ptr, 1));
|
|
4141
4197
|
const StreamCloserFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
4142
4198
|
? { 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));
|
|
4199
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_streamcloser_free(ptr, 1));
|
|
4147
4200
|
|
|
4148
4201
|
function addToExternrefTable0(obj) {
|
|
4149
4202
|
const idx = wasm.__externref_table_alloc();
|
|
@@ -4159,7 +4212,7 @@ function _assertClass(instance, klass) {
|
|
|
4159
4212
|
|
|
4160
4213
|
const CLOSURE_DTORS = (typeof FinalizationRegistry === 'undefined')
|
|
4161
4214
|
? { register: () => {}, unregister: () => {} }
|
|
4162
|
-
: new FinalizationRegistry(state =>
|
|
4215
|
+
: new FinalizationRegistry(state => wasm.__wbindgen_destroy_closure(state.a, state.b));
|
|
4163
4216
|
|
|
4164
4217
|
function debugString(val) {
|
|
4165
4218
|
// primitive types
|
|
@@ -4251,8 +4304,7 @@ function getDataViewMemory0() {
|
|
|
4251
4304
|
}
|
|
4252
4305
|
|
|
4253
4306
|
function getStringFromWasm0(ptr, len) {
|
|
4254
|
-
|
|
4255
|
-
return decodeText(ptr, len);
|
|
4307
|
+
return decodeText(ptr >>> 0, len);
|
|
4256
4308
|
}
|
|
4257
4309
|
|
|
4258
4310
|
let cachedUint8ArrayMemory0 = null;
|
|
@@ -4276,8 +4328,8 @@ function isLikeNone(x) {
|
|
|
4276
4328
|
return x === undefined || x === null;
|
|
4277
4329
|
}
|
|
4278
4330
|
|
|
4279
|
-
function makeMutClosure(arg0, arg1,
|
|
4280
|
-
const state = { a: arg0, b: arg1, cnt: 1
|
|
4331
|
+
function makeMutClosure(arg0, arg1, f) {
|
|
4332
|
+
const state = { a: arg0, b: arg1, cnt: 1 };
|
|
4281
4333
|
const real = (...args) => {
|
|
4282
4334
|
|
|
4283
4335
|
// First up with a closure we increment the internal reference
|
|
@@ -4295,7 +4347,7 @@ function makeMutClosure(arg0, arg1, dtor, f) {
|
|
|
4295
4347
|
};
|
|
4296
4348
|
real._wbg_cb_unref = () => {
|
|
4297
4349
|
if (--state.cnt === 0) {
|
|
4298
|
-
|
|
4350
|
+
wasm.__wbindgen_destroy_closure(state.a, state.b);
|
|
4299
4351
|
state.a = 0;
|
|
4300
4352
|
CLOSURE_DTORS.unregister(state);
|
|
4301
4353
|
}
|
|
@@ -4393,8 +4445,9 @@ if (!('encodeInto' in cachedTextEncoder)) {
|
|
|
4393
4445
|
|
|
4394
4446
|
let WASM_VECTOR_LEN = 0;
|
|
4395
4447
|
|
|
4396
|
-
let wasmModule, wasm;
|
|
4448
|
+
let wasmModule, wasmInstance, wasm;
|
|
4397
4449
|
function __wbg_finalize_init(instance, module) {
|
|
4450
|
+
wasmInstance = instance;
|
|
4398
4451
|
wasm = instance.exports;
|
|
4399
4452
|
wasmModule = module;
|
|
4400
4453
|
cachedDataViewMemory0 = null;
|