@bitwarden/commercial-sdk-internal 0.2.0-main.416 → 0.2.0-main.418
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/bitwarden_wasm_internal.d.ts +473 -473
- package/bitwarden_wasm_internal_bg.js +84 -84
- package/bitwarden_wasm_internal_bg.wasm +0 -0
- package/bitwarden_wasm_internal_bg.wasm.d.ts +4 -4
- package/bitwarden_wasm_internal_bg.wasm.js +1 -1
- package/node/bitwarden_wasm_internal.d.ts +473 -473
- package/node/bitwarden_wasm_internal.js +88 -88
- package/node/bitwarden_wasm_internal_bg.wasm +0 -0
- package/node/bitwarden_wasm_internal_bg.wasm.d.ts +7 -7
- package/package.json +1 -1
|
@@ -254,33 +254,21 @@ function passArray8ToWasm0(arg, malloc) {
|
|
|
254
254
|
return ptr;
|
|
255
255
|
}
|
|
256
256
|
/**
|
|
257
|
-
*
|
|
258
|
-
* to an OpenSSH private key with public key and fingerprint
|
|
257
|
+
* Generate a new SSH key pair
|
|
259
258
|
*
|
|
260
259
|
* # Arguments
|
|
261
|
-
* - `
|
|
262
|
-
* - `password` - The password to use for decrypting the key
|
|
260
|
+
* - `key_algorithm` - The algorithm to use for the key pair
|
|
263
261
|
*
|
|
264
262
|
* # Returns
|
|
265
|
-
* - `Ok(SshKey)` if the key was successfully
|
|
266
|
-
* - `Err(
|
|
267
|
-
*
|
|
268
|
-
* - `Err(ParsingError)` if the key could not be parsed
|
|
269
|
-
* - `Err(UnsupportedKeyType)` if the key type is not supported
|
|
270
|
-
* @param {string} imported_key
|
|
271
|
-
* @param {string | null} [password]
|
|
263
|
+
* - `Ok(SshKey)` if the key was successfully generated
|
|
264
|
+
* - `Err(KeyGenerationError)` if the key could not be generated
|
|
265
|
+
* @param {KeyAlgorithm} key_algorithm
|
|
272
266
|
* @returns {SshKeyView}
|
|
273
267
|
*/
|
|
274
|
-
exports.
|
|
268
|
+
exports.generate_ssh_key = function (key_algorithm) {
|
|
275
269
|
try {
|
|
276
270
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
277
|
-
|
|
278
|
-
const len0 = WASM_VECTOR_LEN;
|
|
279
|
-
var ptr1 = isLikeNone(password)
|
|
280
|
-
? 0
|
|
281
|
-
: passStringToWasm0(password, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
282
|
-
var len1 = WASM_VECTOR_LEN;
|
|
283
|
-
wasm.import_ssh_key(retptr, ptr0, len0, ptr1, len1);
|
|
271
|
+
wasm.generate_ssh_key(retptr, addHeapObject(key_algorithm));
|
|
284
272
|
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
|
|
285
273
|
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
|
|
286
274
|
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
|
|
@@ -294,21 +282,33 @@ exports.import_ssh_key = function (imported_key, password) {
|
|
|
294
282
|
};
|
|
295
283
|
|
|
296
284
|
/**
|
|
297
|
-
*
|
|
285
|
+
* Convert a PCKS8 or OpenSSH encrypted or unencrypted private key
|
|
286
|
+
* to an OpenSSH private key with public key and fingerprint
|
|
298
287
|
*
|
|
299
288
|
* # Arguments
|
|
300
|
-
* - `
|
|
289
|
+
* - `imported_key` - The private key to convert
|
|
290
|
+
* - `password` - The password to use for decrypting the key
|
|
301
291
|
*
|
|
302
292
|
* # Returns
|
|
303
|
-
* - `Ok(SshKey)` if the key was successfully
|
|
304
|
-
* - `Err(
|
|
305
|
-
*
|
|
293
|
+
* - `Ok(SshKey)` if the key was successfully coneverted
|
|
294
|
+
* - `Err(PasswordRequired)` if the key is encrypted and no password was provided
|
|
295
|
+
* - `Err(WrongPassword)` if the password provided is incorrect
|
|
296
|
+
* - `Err(ParsingError)` if the key could not be parsed
|
|
297
|
+
* - `Err(UnsupportedKeyType)` if the key type is not supported
|
|
298
|
+
* @param {string} imported_key
|
|
299
|
+
* @param {string | null} [password]
|
|
306
300
|
* @returns {SshKeyView}
|
|
307
301
|
*/
|
|
308
|
-
exports.
|
|
302
|
+
exports.import_ssh_key = function (imported_key, password) {
|
|
309
303
|
try {
|
|
310
304
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
311
|
-
wasm.
|
|
305
|
+
const ptr0 = passStringToWasm0(imported_key, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
306
|
+
const len0 = WASM_VECTOR_LEN;
|
|
307
|
+
var ptr1 = isLikeNone(password)
|
|
308
|
+
? 0
|
|
309
|
+
: passStringToWasm0(password, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
310
|
+
var len1 = WASM_VECTOR_LEN;
|
|
311
|
+
wasm.import_ssh_key(retptr, ptr0, len0, ptr1, len1);
|
|
312
312
|
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
|
|
313
313
|
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
|
|
314
314
|
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
|
|
@@ -391,9 +391,9 @@ exports.isAccountCryptographyInitializationError = function (error) {
|
|
|
391
391
|
* @param {any} error
|
|
392
392
|
* @returns {boolean}
|
|
393
393
|
*/
|
|
394
|
-
exports.
|
|
394
|
+
exports.isDeriveKeyConnectorError = function (error) {
|
|
395
395
|
try {
|
|
396
|
-
const ret = wasm.
|
|
396
|
+
const ret = wasm.isDeriveKeyConnectorError(addBorrowedObject(error));
|
|
397
397
|
return ret !== 0;
|
|
398
398
|
} finally {
|
|
399
399
|
heap[stack_pointer++] = undefined;
|
|
@@ -404,9 +404,9 @@ exports.isCryptoClientError = function (error) {
|
|
|
404
404
|
* @param {any} error
|
|
405
405
|
* @returns {boolean}
|
|
406
406
|
*/
|
|
407
|
-
exports.
|
|
407
|
+
exports.isCryptoClientError = function (error) {
|
|
408
408
|
try {
|
|
409
|
-
const ret = wasm.
|
|
409
|
+
const ret = wasm.isCryptoClientError(addBorrowedObject(error));
|
|
410
410
|
return ret !== 0;
|
|
411
411
|
} finally {
|
|
412
412
|
heap[stack_pointer++] = undefined;
|
|
@@ -543,9 +543,9 @@ exports.isTypedReceiveError = function (error) {
|
|
|
543
543
|
* @param {any} error
|
|
544
544
|
* @returns {boolean}
|
|
545
545
|
*/
|
|
546
|
-
exports.
|
|
546
|
+
exports.isReceiveError = function (error) {
|
|
547
547
|
try {
|
|
548
|
-
const ret = wasm.
|
|
548
|
+
const ret = wasm.isReceiveError(addBorrowedObject(error));
|
|
549
549
|
return ret !== 0;
|
|
550
550
|
} finally {
|
|
551
551
|
heap[stack_pointer++] = undefined;
|
|
@@ -556,9 +556,9 @@ exports.isSubscribeError = function (error) {
|
|
|
556
556
|
* @param {any} error
|
|
557
557
|
* @returns {boolean}
|
|
558
558
|
*/
|
|
559
|
-
exports.
|
|
559
|
+
exports.isSubscribeError = function (error) {
|
|
560
560
|
try {
|
|
561
|
-
const ret = wasm.
|
|
561
|
+
const ret = wasm.isSubscribeError(addBorrowedObject(error));
|
|
562
562
|
return ret !== 0;
|
|
563
563
|
} finally {
|
|
564
564
|
heap[stack_pointer++] = undefined;
|
|
@@ -574,9 +574,9 @@ function _assertClass(instance, klass) {
|
|
|
574
574
|
* @param {any} error
|
|
575
575
|
* @returns {boolean}
|
|
576
576
|
*/
|
|
577
|
-
exports.
|
|
577
|
+
exports.isChannelError = function (error) {
|
|
578
578
|
try {
|
|
579
|
-
const ret = wasm.
|
|
579
|
+
const ret = wasm.isChannelError(addBorrowedObject(error));
|
|
580
580
|
return ret !== 0;
|
|
581
581
|
} finally {
|
|
582
582
|
heap[stack_pointer++] = undefined;
|
|
@@ -587,9 +587,9 @@ exports.isDeserializeError = function (error) {
|
|
|
587
587
|
* @param {any} error
|
|
588
588
|
* @returns {boolean}
|
|
589
589
|
*/
|
|
590
|
-
exports.
|
|
590
|
+
exports.isDeserializeError = function (error) {
|
|
591
591
|
try {
|
|
592
|
-
const ret = wasm.
|
|
592
|
+
const ret = wasm.isDeserializeError(addBorrowedObject(error));
|
|
593
593
|
return ret !== 0;
|
|
594
594
|
} finally {
|
|
595
595
|
heap[stack_pointer++] = undefined;
|
|
@@ -629,9 +629,9 @@ exports.ipcRegisterDiscoverHandler = function (ipc_client, response) {
|
|
|
629
629
|
* @param {any} error
|
|
630
630
|
* @returns {boolean}
|
|
631
631
|
*/
|
|
632
|
-
exports.
|
|
632
|
+
exports.isSshKeyImportError = function (error) {
|
|
633
633
|
try {
|
|
634
|
-
const ret = wasm.
|
|
634
|
+
const ret = wasm.isSshKeyImportError(addBorrowedObject(error));
|
|
635
635
|
return ret !== 0;
|
|
636
636
|
} finally {
|
|
637
637
|
heap[stack_pointer++] = undefined;
|
|
@@ -655,9 +655,9 @@ exports.isSshKeyExportError = function (error) {
|
|
|
655
655
|
* @param {any} error
|
|
656
656
|
* @returns {boolean}
|
|
657
657
|
*/
|
|
658
|
-
exports.
|
|
658
|
+
exports.isKeyGenerationError = function (error) {
|
|
659
659
|
try {
|
|
660
|
-
const ret = wasm.
|
|
660
|
+
const ret = wasm.isKeyGenerationError(addBorrowedObject(error));
|
|
661
661
|
return ret !== 0;
|
|
662
662
|
} finally {
|
|
663
663
|
heap[stack_pointer++] = undefined;
|
|
@@ -733,9 +733,9 @@ exports.isTotpError = function (error) {
|
|
|
733
733
|
* @param {any} error
|
|
734
734
|
* @returns {boolean}
|
|
735
735
|
*/
|
|
736
|
-
exports.
|
|
736
|
+
exports.isDecryptError = function (error) {
|
|
737
737
|
try {
|
|
738
|
-
const ret = wasm.
|
|
738
|
+
const ret = wasm.isDecryptError(addBorrowedObject(error));
|
|
739
739
|
return ret !== 0;
|
|
740
740
|
} finally {
|
|
741
741
|
heap[stack_pointer++] = undefined;
|
|
@@ -746,9 +746,9 @@ exports.isEncryptError = function (error) {
|
|
|
746
746
|
* @param {any} error
|
|
747
747
|
* @returns {boolean}
|
|
748
748
|
*/
|
|
749
|
-
exports.
|
|
749
|
+
exports.isEncryptError = function (error) {
|
|
750
750
|
try {
|
|
751
|
-
const ret = wasm.
|
|
751
|
+
const ret = wasm.isEncryptError(addBorrowedObject(error));
|
|
752
752
|
return ret !== 0;
|
|
753
753
|
} finally {
|
|
754
754
|
heap[stack_pointer++] = undefined;
|
|
@@ -798,9 +798,9 @@ exports.isCreateCipherError = function (error) {
|
|
|
798
798
|
* @param {any} error
|
|
799
799
|
* @returns {boolean}
|
|
800
800
|
*/
|
|
801
|
-
exports.
|
|
801
|
+
exports.isDecryptFileError = function (error) {
|
|
802
802
|
try {
|
|
803
|
-
const ret = wasm.
|
|
803
|
+
const ret = wasm.isDecryptFileError(addBorrowedObject(error));
|
|
804
804
|
return ret !== 0;
|
|
805
805
|
} finally {
|
|
806
806
|
heap[stack_pointer++] = undefined;
|
|
@@ -811,9 +811,9 @@ exports.isEncryptFileError = function (error) {
|
|
|
811
811
|
* @param {any} error
|
|
812
812
|
* @returns {boolean}
|
|
813
813
|
*/
|
|
814
|
-
exports.
|
|
814
|
+
exports.isEncryptFileError = function (error) {
|
|
815
815
|
try {
|
|
816
|
-
const ret = wasm.
|
|
816
|
+
const ret = wasm.isEncryptFileError(addBorrowedObject(error));
|
|
817
817
|
return ret !== 0;
|
|
818
818
|
} finally {
|
|
819
819
|
heap[stack_pointer++] = undefined;
|
|
@@ -872,18 +872,22 @@ exports.isGetFolderError = function (error) {
|
|
|
872
872
|
}
|
|
873
873
|
};
|
|
874
874
|
|
|
875
|
-
function
|
|
876
|
-
wasm.
|
|
875
|
+
function wasm_bindgen__convert__closures_____invoke__h727bb28be87becbf(arg0, arg1, arg2) {
|
|
876
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h727bb28be87becbf(
|
|
877
877
|
arg0,
|
|
878
878
|
arg1,
|
|
879
879
|
addHeapObject(arg2),
|
|
880
880
|
);
|
|
881
881
|
}
|
|
882
882
|
|
|
883
|
-
function
|
|
883
|
+
function wasm_bindgen__convert__closures_____invoke__h4eff94a44eff58c2(arg0, arg1) {
|
|
884
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h4eff94a44eff58c2(arg0, arg1);
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
function wasm_bindgen__convert__closures_____invoke__h3d71357e6a8288f5(arg0, arg1, arg2) {
|
|
884
888
|
try {
|
|
885
889
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
886
|
-
wasm.
|
|
890
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h3d71357e6a8288f5(
|
|
887
891
|
retptr,
|
|
888
892
|
arg0,
|
|
889
893
|
arg1,
|
|
@@ -899,10 +903,6 @@ function wasm_bindgen__convert__closures_____invoke__h86320ba04bc5bce5(arg0, arg
|
|
|
899
903
|
}
|
|
900
904
|
}
|
|
901
905
|
|
|
902
|
-
function wasm_bindgen__convert__closures_____invoke__h4eff94a44eff58c2(arg0, arg1) {
|
|
903
|
-
wasm.wasm_bindgen__convert__closures_____invoke__h4eff94a44eff58c2(arg0, arg1);
|
|
904
|
-
}
|
|
905
|
-
|
|
906
906
|
function wasm_bindgen__convert__closures_____invoke__h0cb536241502fe83(arg0, arg1, arg2, arg3) {
|
|
907
907
|
wasm.wasm_bindgen__convert__closures_____invoke__h0cb536241502fe83(
|
|
908
908
|
arg0,
|
|
@@ -4725,7 +4725,7 @@ exports.__wbg_call_e762c39fa8ea36bf = function () {
|
|
|
4725
4725
|
}, arguments);
|
|
4726
4726
|
};
|
|
4727
4727
|
|
|
4728
|
-
exports.
|
|
4728
|
+
exports.__wbg_cipher_c214a9e1669d598f = function (arg0) {
|
|
4729
4729
|
const ret = getObject(arg0).cipher;
|
|
4730
4730
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
4731
4731
|
};
|
|
@@ -4818,7 +4818,7 @@ exports.__wbg_fetch_f8ba0e29a9d6de0d = function (arg0, arg1) {
|
|
|
4818
4818
|
return addHeapObject(ret);
|
|
4819
4819
|
};
|
|
4820
4820
|
|
|
4821
|
-
exports.
|
|
4821
|
+
exports.__wbg_folder_34c1dba0879106f3 = function (arg0) {
|
|
4822
4822
|
const ret = getObject(arg0).folder;
|
|
4823
4823
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
4824
4824
|
};
|
|
@@ -4851,7 +4851,7 @@ exports.__wbg_getTime_14776bfb48a1bff9 = function (arg0) {
|
|
|
4851
4851
|
return ret;
|
|
4852
4852
|
};
|
|
4853
4853
|
|
|
4854
|
-
exports.
|
|
4854
|
+
exports.__wbg_get_0c97133af3282fab = function () {
|
|
4855
4855
|
return handleError(function (arg0, arg1, arg2) {
|
|
4856
4856
|
let deferred0_0;
|
|
4857
4857
|
let deferred0_1;
|
|
@@ -4871,12 +4871,12 @@ exports.__wbg_get_7bed016f185add81 = function (arg0, arg1) {
|
|
|
4871
4871
|
return addHeapObject(ret);
|
|
4872
4872
|
};
|
|
4873
4873
|
|
|
4874
|
-
exports.
|
|
4874
|
+
exports.__wbg_get_access_token_ef11e024d2c4212c = function (arg0) {
|
|
4875
4875
|
const ret = getObject(arg0).get_access_token();
|
|
4876
4876
|
return addHeapObject(ret);
|
|
4877
4877
|
};
|
|
4878
4878
|
|
|
4879
|
-
exports.
|
|
4879
|
+
exports.__wbg_get_eef42b3436ce0823 = function () {
|
|
4880
4880
|
return handleError(function (arg0, arg1, arg2) {
|
|
4881
4881
|
let deferred0_0;
|
|
4882
4882
|
let deferred0_1;
|
|
@@ -5082,14 +5082,14 @@ exports.__wbg_length_cdd215e10d9dd507 = function (arg0) {
|
|
|
5082
5082
|
return ret;
|
|
5083
5083
|
};
|
|
5084
5084
|
|
|
5085
|
-
exports.
|
|
5085
|
+
exports.__wbg_list_1f83643a10817570 = function () {
|
|
5086
5086
|
return handleError(function (arg0) {
|
|
5087
5087
|
const ret = getObject(arg0).list();
|
|
5088
5088
|
return addHeapObject(ret);
|
|
5089
5089
|
}, arguments);
|
|
5090
5090
|
};
|
|
5091
5091
|
|
|
5092
|
-
exports.
|
|
5092
|
+
exports.__wbg_list_ff8b17a6bbd44e23 = function () {
|
|
5093
5093
|
return handleError(function (arg0) {
|
|
5094
5094
|
const ret = getObject(arg0).list();
|
|
5095
5095
|
return addHeapObject(ret);
|
|
@@ -5333,7 +5333,7 @@ exports.__wbg_randomFillSync_ac0988aba3254290 = function () {
|
|
|
5333
5333
|
}, arguments);
|
|
5334
5334
|
};
|
|
5335
5335
|
|
|
5336
|
-
exports.
|
|
5336
|
+
exports.__wbg_remove_8e66c940f20e0bec = function () {
|
|
5337
5337
|
return handleError(function (arg0, arg1, arg2) {
|
|
5338
5338
|
let deferred0_0;
|
|
5339
5339
|
let deferred0_1;
|
|
@@ -5348,7 +5348,7 @@ exports.__wbg_remove_8d4f2fc29900820d = function () {
|
|
|
5348
5348
|
}, arguments);
|
|
5349
5349
|
};
|
|
5350
5350
|
|
|
5351
|
-
exports.
|
|
5351
|
+
exports.__wbg_remove_df10f16a50d15e26 = function () {
|
|
5352
5352
|
return handleError(function (arg0, arg1, arg2) {
|
|
5353
5353
|
let deferred0_0;
|
|
5354
5354
|
let deferred0_1;
|
|
@@ -5394,7 +5394,7 @@ exports.__wbg_setTimeout_ca12ead8b48245e2 = function (arg0, arg1) {
|
|
|
5394
5394
|
return addHeapObject(ret);
|
|
5395
5395
|
};
|
|
5396
5396
|
|
|
5397
|
-
exports.
|
|
5397
|
+
exports.__wbg_set_09bbc40828d46d85 = function () {
|
|
5398
5398
|
return handleError(function (arg0, arg1, arg2, arg3) {
|
|
5399
5399
|
let deferred0_0;
|
|
5400
5400
|
let deferred0_1;
|
|
@@ -5413,6 +5413,21 @@ exports.__wbg_set_3f1d0b984ed272ed = function (arg0, arg1, arg2) {
|
|
|
5413
5413
|
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
5414
5414
|
};
|
|
5415
5415
|
|
|
5416
|
+
exports.__wbg_set_7da7b4b543b9132c = function () {
|
|
5417
|
+
return handleError(function (arg0, arg1, arg2, arg3) {
|
|
5418
|
+
let deferred0_0;
|
|
5419
|
+
let deferred0_1;
|
|
5420
|
+
try {
|
|
5421
|
+
deferred0_0 = arg1;
|
|
5422
|
+
deferred0_1 = arg2;
|
|
5423
|
+
const ret = getObject(arg0).set(getStringFromWasm0(arg1, arg2), takeObject(arg3));
|
|
5424
|
+
return addHeapObject(ret);
|
|
5425
|
+
} finally {
|
|
5426
|
+
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
5427
|
+
}
|
|
5428
|
+
}, arguments);
|
|
5429
|
+
};
|
|
5430
|
+
|
|
5416
5431
|
exports.__wbg_set_907fb406c34a251d = function (arg0, arg1, arg2) {
|
|
5417
5432
|
const ret = getObject(arg0).set(getObject(arg1), getObject(arg2));
|
|
5418
5433
|
return addHeapObject(ret);
|
|
@@ -5433,21 +5448,6 @@ exports.__wbg_set_c2abbebe8b9ebee1 = function () {
|
|
|
5433
5448
|
}, arguments);
|
|
5434
5449
|
};
|
|
5435
5450
|
|
|
5436
|
-
exports.__wbg_set_c854deeddadcbc37 = function () {
|
|
5437
|
-
return handleError(function (arg0, arg1, arg2, arg3) {
|
|
5438
|
-
let deferred0_0;
|
|
5439
|
-
let deferred0_1;
|
|
5440
|
-
try {
|
|
5441
|
-
deferred0_0 = arg1;
|
|
5442
|
-
deferred0_1 = arg2;
|
|
5443
|
-
const ret = getObject(arg0).set(getStringFromWasm0(arg1, arg2), takeObject(arg3));
|
|
5444
|
-
return addHeapObject(ret);
|
|
5445
|
-
} finally {
|
|
5446
|
-
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
5447
|
-
}
|
|
5448
|
-
}, arguments);
|
|
5449
|
-
};
|
|
5450
|
-
|
|
5451
5451
|
exports.__wbg_set_credentials_f621cd2d85c0c228 = function (arg0, arg1) {
|
|
5452
5452
|
getObject(arg0).credentials = __wbindgen_enum_RequestCredentials[arg1];
|
|
5453
5453
|
};
|
|
@@ -5621,8 +5621,8 @@ exports.__wbindgen_cast_0f3a80f9c6c81c16 = function (arg0, arg1) {
|
|
|
5621
5621
|
const ret = makeMutClosure(
|
|
5622
5622
|
arg0,
|
|
5623
5623
|
arg1,
|
|
5624
|
-
wasm.
|
|
5625
|
-
|
|
5624
|
+
wasm.wasm_bindgen__closure__destroy__h31d399e6af2fe814,
|
|
5625
|
+
wasm_bindgen__convert__closures_____invoke__h727bb28be87becbf,
|
|
5626
5626
|
);
|
|
5627
5627
|
return addHeapObject(ret);
|
|
5628
5628
|
};
|
|
@@ -5653,7 +5653,7 @@ exports.__wbindgen_cast_67d165bf11ca912a = function (arg0, arg1) {
|
|
|
5653
5653
|
arg0,
|
|
5654
5654
|
arg1,
|
|
5655
5655
|
wasm.wasm_bindgen__closure__destroy__h591e0f2efd143068,
|
|
5656
|
-
|
|
5656
|
+
wasm_bindgen__convert__closures_____invoke__h727bb28be87becbf,
|
|
5657
5657
|
);
|
|
5658
5658
|
return addHeapObject(ret);
|
|
5659
5659
|
};
|
|
@@ -5711,8 +5711,8 @@ exports.__wbindgen_cast_e12aaa4ecde9c999 = function (arg0, arg1) {
|
|
|
5711
5711
|
const ret = makeMutClosure(
|
|
5712
5712
|
arg0,
|
|
5713
5713
|
arg1,
|
|
5714
|
-
wasm.
|
|
5715
|
-
|
|
5714
|
+
wasm.wasm_bindgen__closure__destroy__h31d399e6af2fe814,
|
|
5715
|
+
wasm_bindgen__convert__closures_____invoke__h3d71357e6a8288f5,
|
|
5716
5716
|
);
|
|
5717
5717
|
return addHeapObject(ret);
|
|
5718
5718
|
};
|
|
Binary file
|
|
@@ -454,24 +454,24 @@ export const __wbg_get_outgoingmessage_destination: (a: number) => number;
|
|
|
454
454
|
export const __wbg_registrationclient_free: (a: number, b: number) => void;
|
|
455
455
|
export const __wbg_set_outgoingmessage_destination: (a: number, b: number) => void;
|
|
456
456
|
export const __wbg_cryptoclient_free: (a: number, b: number) => void;
|
|
457
|
-
export const
|
|
457
|
+
export const wasm_bindgen__convert__closures_____invoke__h727bb28be87becbf: (
|
|
458
458
|
a: number,
|
|
459
459
|
b: number,
|
|
460
460
|
c: number,
|
|
461
461
|
) => void;
|
|
462
|
+
export const wasm_bindgen__closure__destroy__h31d399e6af2fe814: (a: number, b: number) => void;
|
|
462
463
|
export const wasm_bindgen__closure__destroy__h591e0f2efd143068: (a: number, b: number) => void;
|
|
463
|
-
export const
|
|
464
|
+
export const wasm_bindgen__convert__closures_____invoke__h4eff94a44eff58c2: (
|
|
464
465
|
a: number,
|
|
465
466
|
b: number,
|
|
466
|
-
c: number,
|
|
467
|
-
d: number,
|
|
468
467
|
) => void;
|
|
469
|
-
export const
|
|
470
|
-
export const
|
|
468
|
+
export const wasm_bindgen__closure__destroy__he41cbbdbe831f2ac: (a: number, b: number) => void;
|
|
469
|
+
export const wasm_bindgen__convert__closures_____invoke__h3d71357e6a8288f5: (
|
|
471
470
|
a: number,
|
|
472
471
|
b: number,
|
|
472
|
+
c: number,
|
|
473
|
+
d: number,
|
|
473
474
|
) => void;
|
|
474
|
-
export const wasm_bindgen__closure__destroy__he41cbbdbe831f2ac: (a: number, b: number) => void;
|
|
475
475
|
export const wasm_bindgen__convert__closures_____invoke__h0cb536241502fe83: (
|
|
476
476
|
a: number,
|
|
477
477
|
b: number,
|