@bitwarden/sdk-internal 0.2.0-main.520 → 0.2.0-main.522
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/VERSION +1 -1
- package/bitwarden_wasm_internal.d.ts +55 -0
- package/bitwarden_wasm_internal_bg.js +68 -87
- package/bitwarden_wasm_internal_bg.wasm +0 -0
- package/bitwarden_wasm_internal_bg.wasm.d.ts +11 -6
- package/bitwarden_wasm_internal_bg.wasm.js +1 -1
- package/node/bitwarden_wasm_internal.d.ts +55 -0
- package/node/bitwarden_wasm_internal.js +68 -87
- package/node/bitwarden_wasm_internal_bg.wasm +0 -0
- package/node/bitwarden_wasm_internal_bg.wasm.d.ts +12 -7
- package/package.json +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
abba7fdab687753268b63248ec22639dff35d07c
|
|
@@ -1759,6 +1759,25 @@ export interface Field {
|
|
|
1759
1759
|
linkedId: LinkedIdType | undefined;
|
|
1760
1760
|
}
|
|
1761
1761
|
|
|
1762
|
+
/**
|
|
1763
|
+
* Minimal field view for list/search operations.
|
|
1764
|
+
* Contains only the fields needed for search indexing.
|
|
1765
|
+
*/
|
|
1766
|
+
export interface FieldListView {
|
|
1767
|
+
/**
|
|
1768
|
+
* Only populated if the field has a name.
|
|
1769
|
+
*/
|
|
1770
|
+
name: string | undefined;
|
|
1771
|
+
/**
|
|
1772
|
+
* Only populated for [FieldType::Text] fields.
|
|
1773
|
+
*/
|
|
1774
|
+
value: string | undefined;
|
|
1775
|
+
/**
|
|
1776
|
+
* The field type.
|
|
1777
|
+
*/
|
|
1778
|
+
type: FieldType;
|
|
1779
|
+
}
|
|
1780
|
+
|
|
1762
1781
|
export interface Fido2Credential {
|
|
1763
1782
|
credentialId: EncString;
|
|
1764
1783
|
keyType: EncString;
|
|
@@ -1925,6 +1944,19 @@ export interface CipherListView {
|
|
|
1925
1944
|
*/
|
|
1926
1945
|
copyableFields: CopyableCipherFields[];
|
|
1927
1946
|
localData: LocalDataView | undefined;
|
|
1947
|
+
/**
|
|
1948
|
+
* Decrypted cipher notes for search indexing.
|
|
1949
|
+
*/
|
|
1950
|
+
notes: string | undefined;
|
|
1951
|
+
/**
|
|
1952
|
+
* Decrypted cipher fields for search indexing.
|
|
1953
|
+
* Only includes name and value (for text fields only).
|
|
1954
|
+
*/
|
|
1955
|
+
fields: FieldListView[] | undefined;
|
|
1956
|
+
/**
|
|
1957
|
+
* Decrypted attachment filenames for search indexing.
|
|
1958
|
+
*/
|
|
1959
|
+
attachmentNames: string[] | undefined;
|
|
1928
1960
|
}
|
|
1929
1961
|
|
|
1930
1962
|
/**
|
|
@@ -1932,6 +1964,24 @@ export interface CipherListView {
|
|
|
1932
1964
|
*/
|
|
1933
1965
|
export type CipherId = Tagged<Uuid, "CipherId">;
|
|
1934
1966
|
|
|
1967
|
+
/**
|
|
1968
|
+
* Represents the result of decrypting a list of ciphers.
|
|
1969
|
+
*
|
|
1970
|
+
* This struct contains two vectors: `successes` and `failures`.
|
|
1971
|
+
* `successes` contains the decrypted `CipherView` objects,
|
|
1972
|
+
* while `failures` contains the original `Cipher` objects that failed to decrypt.
|
|
1973
|
+
*/
|
|
1974
|
+
export interface DecryptCipherResult {
|
|
1975
|
+
/**
|
|
1976
|
+
* The decrypted `CipherView` objects.
|
|
1977
|
+
*/
|
|
1978
|
+
successes: CipherView[];
|
|
1979
|
+
/**
|
|
1980
|
+
* The original `Cipher` objects that failed to decrypt.
|
|
1981
|
+
*/
|
|
1982
|
+
failures: Cipher[];
|
|
1983
|
+
}
|
|
1984
|
+
|
|
1935
1985
|
export type CipherListViewType =
|
|
1936
1986
|
| { login: LoginListView }
|
|
1937
1987
|
| "secureNote"
|
|
@@ -2366,6 +2416,11 @@ export class CiphersClient {
|
|
|
2366
2416
|
* key directly.
|
|
2367
2417
|
*/
|
|
2368
2418
|
encrypt_cipher_for_rotation(cipher_view: CipherView, new_key: B64): EncryptionContext;
|
|
2419
|
+
/**
|
|
2420
|
+
* Decrypt full cipher list
|
|
2421
|
+
* Returns both successfully fully decrypted ciphers and any that failed to decrypt
|
|
2422
|
+
*/
|
|
2423
|
+
decrypt_list_full_with_failures(ciphers: Cipher[]): DecryptCipherResult;
|
|
2369
2424
|
/**
|
|
2370
2425
|
* Returns a new client for performing admin operations.
|
|
2371
2426
|
* Uses the admin server API endpoints and does not modify local state.
|
|
@@ -1012,14 +1012,14 @@ export function isGetFolderError(error) {
|
|
|
1012
1012
|
}
|
|
1013
1013
|
}
|
|
1014
1014
|
|
|
1015
|
-
function wasm_bindgen__convert__closures_____invoke__ha638740cca0ef77d(arg0, arg1) {
|
|
1016
|
-
wasm.wasm_bindgen__convert__closures_____invoke__ha638740cca0ef77d(arg0, arg1);
|
|
1017
|
-
}
|
|
1018
|
-
|
|
1019
1015
|
function wasm_bindgen__convert__closures_____invoke__h6d021f3e9713c130(arg0, arg1, arg2) {
|
|
1020
1016
|
wasm.wasm_bindgen__convert__closures_____invoke__h6d021f3e9713c130(arg0, arg1, addHeapObject(arg2));
|
|
1021
1017
|
}
|
|
1022
1018
|
|
|
1019
|
+
function wasm_bindgen__convert__closures_____invoke__ha638740cca0ef77d(arg0, arg1) {
|
|
1020
|
+
wasm.wasm_bindgen__convert__closures_____invoke__ha638740cca0ef77d(arg0, arg1);
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
1023
|
function wasm_bindgen__convert__closures_____invoke__hd535e5ed92b9c746(arg0, arg1, arg2) {
|
|
1024
1024
|
try {
|
|
1025
1025
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
@@ -1705,6 +1705,18 @@ export class CiphersClient {
|
|
|
1705
1705
|
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
1706
1706
|
}
|
|
1707
1707
|
}
|
|
1708
|
+
/**
|
|
1709
|
+
* Decrypt full cipher list
|
|
1710
|
+
* Returns both successfully fully decrypted ciphers and any that failed to decrypt
|
|
1711
|
+
* @param {Cipher[]} ciphers
|
|
1712
|
+
* @returns {DecryptCipherResult}
|
|
1713
|
+
*/
|
|
1714
|
+
decrypt_list_full_with_failures(ciphers) {
|
|
1715
|
+
const ptr0 = passArrayJsValueToWasm0(ciphers, wasm.__wbindgen_malloc);
|
|
1716
|
+
const len0 = WASM_VECTOR_LEN;
|
|
1717
|
+
const ret = wasm.ciphersclient_decrypt_list_full_with_failures(this.__wbg_ptr, ptr0, len0);
|
|
1718
|
+
return takeObject(ret);
|
|
1719
|
+
}
|
|
1708
1720
|
/**
|
|
1709
1721
|
* Returns a new client for performing admin operations.
|
|
1710
1722
|
* Uses the admin server API endpoints and does not modify local state.
|
|
@@ -4874,7 +4886,7 @@ export function __wbg_call_e762c39fa8ea36bf() { return handleError(function (arg
|
|
|
4874
4886
|
return addHeapObject(ret);
|
|
4875
4887
|
}, arguments) };
|
|
4876
4888
|
|
|
4877
|
-
export function
|
|
4889
|
+
export function __wbg_cipher_5d94194bd7178b86(arg0) {
|
|
4878
4890
|
const ret = getObject(arg0).cipher;
|
|
4879
4891
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
4880
4892
|
};
|
|
@@ -4894,11 +4906,6 @@ export function __wbg_createObjectStore_283a43a822bf49ca() { return handleError(
|
|
|
4894
4906
|
return addHeapObject(ret);
|
|
4895
4907
|
}, arguments) };
|
|
4896
4908
|
|
|
4897
|
-
export function __wbg_create_f2b6bfa66a83e88e(arg0) {
|
|
4898
|
-
const ret = Object.create(getObject(arg0));
|
|
4899
|
-
return addHeapObject(ret);
|
|
4900
|
-
};
|
|
4901
|
-
|
|
4902
4909
|
export function __wbg_crypto_574e78ad8b13b65f(arg0) {
|
|
4903
4910
|
const ret = getObject(arg0).crypto;
|
|
4904
4911
|
return addHeapObject(ret);
|
|
@@ -4966,7 +4973,7 @@ export function __wbg_fetch_f8ba0e29a9d6de0d(arg0, arg1) {
|
|
|
4966
4973
|
return addHeapObject(ret);
|
|
4967
4974
|
};
|
|
4968
4975
|
|
|
4969
|
-
export function
|
|
4976
|
+
export function __wbg_folder_af52b3bf66eaa463(arg0) {
|
|
4970
4977
|
const ret = getObject(arg0).folder;
|
|
4971
4978
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
4972
4979
|
};
|
|
@@ -4998,7 +5005,7 @@ export function __wbg_getTime_14776bfb48a1bff9(arg0) {
|
|
|
4998
5005
|
return ret;
|
|
4999
5006
|
};
|
|
5000
5007
|
|
|
5001
|
-
export function
|
|
5008
|
+
export function __wbg_get_3351f2ca77ce57e5() { return handleError(function (arg0, arg1, arg2) {
|
|
5002
5009
|
let deferred0_0;
|
|
5003
5010
|
let deferred0_1;
|
|
5004
5011
|
try {
|
|
@@ -5011,7 +5018,17 @@ export function __wbg_get_292654433be40c9b() { return handleError(function (arg0
|
|
|
5011
5018
|
}
|
|
5012
5019
|
}, arguments) };
|
|
5013
5020
|
|
|
5014
|
-
export function
|
|
5021
|
+
export function __wbg_get_7bed016f185add81(arg0, arg1) {
|
|
5022
|
+
const ret = getObject(arg0)[arg1 >>> 0];
|
|
5023
|
+
return addHeapObject(ret);
|
|
5024
|
+
};
|
|
5025
|
+
|
|
5026
|
+
export function __wbg_get_access_token_c3171529971cceb9(arg0) {
|
|
5027
|
+
const ret = getObject(arg0).get_access_token();
|
|
5028
|
+
return addHeapObject(ret);
|
|
5029
|
+
};
|
|
5030
|
+
|
|
5031
|
+
export function __wbg_get_c03a59ff46a549dd() { return handleError(function (arg0, arg1, arg2) {
|
|
5015
5032
|
let deferred0_0;
|
|
5016
5033
|
let deferred0_1;
|
|
5017
5034
|
try {
|
|
@@ -5024,17 +5041,7 @@ export function __wbg_get_7bb432922d14b943() { return handleError(function (arg0
|
|
|
5024
5041
|
}
|
|
5025
5042
|
}, arguments) };
|
|
5026
5043
|
|
|
5027
|
-
export function
|
|
5028
|
-
const ret = getObject(arg0)[arg1 >>> 0];
|
|
5029
|
-
return addHeapObject(ret);
|
|
5030
|
-
};
|
|
5031
|
-
|
|
5032
|
-
export function __wbg_get_access_token_33767176006f133b(arg0) {
|
|
5033
|
-
const ret = getObject(arg0).get_access_token();
|
|
5034
|
-
return addHeapObject(ret);
|
|
5035
|
-
};
|
|
5036
|
-
|
|
5037
|
-
export function __wbg_get_c03a59ff46a549dd() { return handleError(function (arg0, arg1, arg2) {
|
|
5044
|
+
export function __wbg_get_cea152dc39ccf824() { return handleError(function (arg0, arg1, arg2) {
|
|
5038
5045
|
let deferred0_0;
|
|
5039
5046
|
let deferred0_1;
|
|
5040
5047
|
try {
|
|
@@ -5235,32 +5242,16 @@ export function __wbg_length_cdd215e10d9dd507(arg0) {
|
|
|
5235
5242
|
return ret;
|
|
5236
5243
|
};
|
|
5237
5244
|
|
|
5238
|
-
export function
|
|
5245
|
+
export function __wbg_list_213c09a1a2dcc345() { return handleError(function (arg0) {
|
|
5239
5246
|
const ret = getObject(arg0).list();
|
|
5240
5247
|
return addHeapObject(ret);
|
|
5241
5248
|
}, arguments) };
|
|
5242
5249
|
|
|
5243
|
-
export function
|
|
5250
|
+
export function __wbg_list_35cbb4a03e644235() { return handleError(function (arg0) {
|
|
5244
5251
|
const ret = getObject(arg0).list();
|
|
5245
5252
|
return addHeapObject(ret);
|
|
5246
5253
|
}, arguments) };
|
|
5247
5254
|
|
|
5248
|
-
export function __wbg_mark_05056c522bddc362() { return handleError(function (arg0, arg1, arg2) {
|
|
5249
|
-
getObject(arg0).mark(getStringFromWasm0(arg1, arg2));
|
|
5250
|
-
}, arguments) };
|
|
5251
|
-
|
|
5252
|
-
export function __wbg_mark_24a1a597f4f00679() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
5253
|
-
getObject(arg0).mark(getStringFromWasm0(arg1, arg2), getObject(arg3));
|
|
5254
|
-
}, arguments) };
|
|
5255
|
-
|
|
5256
|
-
export function __wbg_measure_0b7379f5cfacac6d() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
5257
|
-
getObject(arg0).measure(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4), getStringFromWasm0(arg5, arg6));
|
|
5258
|
-
}, arguments) };
|
|
5259
|
-
|
|
5260
|
-
export function __wbg_measure_7728846525e2cced() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
5261
|
-
getObject(arg0).measure(getStringFromWasm0(arg1, arg2), getObject(arg3));
|
|
5262
|
-
}, arguments) };
|
|
5263
|
-
|
|
5264
5255
|
export function __wbg_msCrypto_a61aeb35a24c1329(arg0) {
|
|
5265
5256
|
const ret = getObject(arg0).msCrypto;
|
|
5266
5257
|
return addHeapObject(ret);
|
|
@@ -5421,11 +5412,6 @@ export function __wbg_parse_2a704d6b78abb2b8() { return handleError(function (ar
|
|
|
5421
5412
|
return addHeapObject(ret);
|
|
5422
5413
|
}, arguments) };
|
|
5423
5414
|
|
|
5424
|
-
export function __wbg_performance_121b9855d716e029() {
|
|
5425
|
-
const ret = globalThis.performance;
|
|
5426
|
-
return addHeapObject(ret);
|
|
5427
|
-
};
|
|
5428
|
-
|
|
5429
5415
|
export function __wbg_preventDefault_1f362670ce7ef430(arg0) {
|
|
5430
5416
|
getObject(arg0).preventDefault();
|
|
5431
5417
|
};
|
|
@@ -5462,7 +5448,7 @@ export function __wbg_randomFillSync_ac0988aba3254290() { return handleError(fun
|
|
|
5462
5448
|
getObject(arg0).randomFillSync(takeObject(arg1));
|
|
5463
5449
|
}, arguments) };
|
|
5464
5450
|
|
|
5465
|
-
export function
|
|
5451
|
+
export function __wbg_remove_6901e1e53b62ae92() { return handleError(function (arg0, arg1, arg2) {
|
|
5466
5452
|
let deferred0_0;
|
|
5467
5453
|
let deferred0_1;
|
|
5468
5454
|
try {
|
|
@@ -5475,7 +5461,7 @@ export function __wbg_remove_19762b193a4a0ddf() { return handleError(function (a
|
|
|
5475
5461
|
}
|
|
5476
5462
|
}, arguments) };
|
|
5477
5463
|
|
|
5478
|
-
export function
|
|
5464
|
+
export function __wbg_remove_d7481941c65fb24a() { return handleError(function (arg0, arg1, arg2) {
|
|
5479
5465
|
let deferred0_0;
|
|
5480
5466
|
let deferred0_1;
|
|
5481
5467
|
try {
|
|
@@ -5513,11 +5499,7 @@ export function __wbg_setTimeout_ca12ead8b48245e2(arg0, arg1) {
|
|
|
5513
5499
|
return addHeapObject(ret);
|
|
5514
5500
|
};
|
|
5515
5501
|
|
|
5516
|
-
export function
|
|
5517
|
-
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
5518
|
-
};
|
|
5519
|
-
|
|
5520
|
-
export function __wbg_set_4beca662ae095628() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
5502
|
+
export function __wbg_set_09808ee9bfdfaec0() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
5521
5503
|
let deferred0_0;
|
|
5522
5504
|
let deferred0_1;
|
|
5523
5505
|
try {
|
|
@@ -5530,7 +5512,11 @@ export function __wbg_set_4beca662ae095628() { return handleError(function (arg0
|
|
|
5530
5512
|
}
|
|
5531
5513
|
}, arguments) };
|
|
5532
5514
|
|
|
5533
|
-
export function
|
|
5515
|
+
export function __wbg_set_3f1d0b984ed272ed(arg0, arg1, arg2) {
|
|
5516
|
+
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
5517
|
+
};
|
|
5518
|
+
|
|
5519
|
+
export function __wbg_set_7c5f09ad1c7e223d() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
5534
5520
|
let deferred0_0;
|
|
5535
5521
|
let deferred0_1;
|
|
5536
5522
|
try {
|
|
@@ -5556,11 +5542,6 @@ export function __wbg_set_c213c871859d6500(arg0, arg1, arg2) {
|
|
|
5556
5542
|
getObject(arg0)[arg1 >>> 0] = takeObject(arg2);
|
|
5557
5543
|
};
|
|
5558
5544
|
|
|
5559
|
-
export function __wbg_set_c2abbebe8b9ebee1() { return handleError(function (arg0, arg1, arg2) {
|
|
5560
|
-
const ret = Reflect.set(getObject(arg0), getObject(arg1), getObject(arg2));
|
|
5561
|
-
return ret;
|
|
5562
|
-
}, arguments) };
|
|
5563
|
-
|
|
5564
5545
|
export function __wbg_set_credentials_f621cd2d85c0c228(arg0, arg1) {
|
|
5565
5546
|
getObject(arg0).credentials = __wbindgen_enum_RequestCredentials[arg1];
|
|
5566
5547
|
};
|
|
@@ -5730,15 +5711,15 @@ export function __wbg_warn_8f5b5437666d0885(arg0, arg1, arg2, arg3) {
|
|
|
5730
5711
|
console.warn(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
|
5731
5712
|
};
|
|
5732
5713
|
|
|
5733
|
-
export function
|
|
5734
|
-
// Cast intrinsic for `
|
|
5735
|
-
const ret =
|
|
5714
|
+
export function __wbindgen_cast_0f3a80f9c6c81c16(arg0, arg1) {
|
|
5715
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 40, function: Function { arguments: [NamedExternref("IDBVersionChangeEvent")], shim_idx: 43, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5716
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h3238f077fb5ae8c5, wasm_bindgen__convert__closures_____invoke__h6d021f3e9713c130);
|
|
5736
5717
|
return addHeapObject(ret);
|
|
5737
5718
|
};
|
|
5738
5719
|
|
|
5739
|
-
export function
|
|
5740
|
-
// Cast intrinsic for `
|
|
5741
|
-
const ret =
|
|
5720
|
+
export function __wbindgen_cast_2241b6af4c4b2941(arg0, arg1) {
|
|
5721
|
+
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
5722
|
+
const ret = getStringFromWasm0(arg0, arg1);
|
|
5742
5723
|
return addHeapObject(ret);
|
|
5743
5724
|
};
|
|
5744
5725
|
|
|
@@ -5748,6 +5729,12 @@ export function __wbindgen_cast_4625c577ab2ec9ee(arg0) {
|
|
|
5748
5729
|
return addHeapObject(ret);
|
|
5749
5730
|
};
|
|
5750
5731
|
|
|
5732
|
+
export function __wbindgen_cast_5750452b86ec572d(arg0, arg1) {
|
|
5733
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 332, function: Function { arguments: [Externref], shim_idx: 43, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5734
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__hc71695a401114797, wasm_bindgen__convert__closures_____invoke__h6d021f3e9713c130);
|
|
5735
|
+
return addHeapObject(ret);
|
|
5736
|
+
};
|
|
5737
|
+
|
|
5751
5738
|
export function __wbindgen_cast_5fea77eff9dd275c(arg0, arg1) {
|
|
5752
5739
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
5753
5740
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
@@ -5764,12 +5751,6 @@ export function __wbindgen_cast_7a6d185652cd8149(arg0, arg1) {
|
|
|
5764
5751
|
return addHeapObject(ret);
|
|
5765
5752
|
};
|
|
5766
5753
|
|
|
5767
|
-
export function __wbindgen_cast_936643e1d8ccf009(arg0, arg1) {
|
|
5768
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx: 583, function: Function { arguments: [], shim_idx: 333, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5769
|
-
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h666c8569a46b7e11, wasm_bindgen__convert__closures_____invoke__ha638740cca0ef77d);
|
|
5770
|
-
return addHeapObject(ret);
|
|
5771
|
-
};
|
|
5772
|
-
|
|
5773
5754
|
export function __wbindgen_cast_9ae0607507abb057(arg0) {
|
|
5774
5755
|
// Cast intrinsic for `I64 -> Externref`.
|
|
5775
5756
|
const ret = arg0;
|
|
@@ -5782,33 +5763,33 @@ export function __wbindgen_cast_a2a1216eb14e5e30(arg0, arg1) {
|
|
|
5782
5763
|
return addHeapObject(ret);
|
|
5783
5764
|
};
|
|
5784
5765
|
|
|
5785
|
-
export function __wbindgen_cast_a3e5ea889ee07093(arg0, arg1) {
|
|
5786
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx: 338, function: Function { arguments: [NamedExternref("Event")], shim_idx: 44, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5787
|
-
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__hd9661b26d463effa, wasm_bindgen__convert__closures_____invoke__h6d021f3e9713c130);
|
|
5788
|
-
return addHeapObject(ret);
|
|
5789
|
-
};
|
|
5790
|
-
|
|
5791
5766
|
export function __wbindgen_cast_cb9088102bce6b30(arg0, arg1) {
|
|
5792
5767
|
// Cast intrinsic for `Ref(Slice(U8)) -> NamedExternref("Uint8Array")`.
|
|
5793
5768
|
const ret = getArrayU8FromWasm0(arg0, arg1);
|
|
5794
5769
|
return addHeapObject(ret);
|
|
5795
5770
|
};
|
|
5796
5771
|
|
|
5797
|
-
export function __wbindgen_cast_d49c305f67640cb1(arg0, arg1) {
|
|
5798
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx: 41, function: Function { arguments: [NamedExternref("Event")], shim_idx: 42, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
5799
|
-
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h3238f077fb5ae8c5, wasm_bindgen__convert__closures_____invoke__hd535e5ed92b9c746);
|
|
5800
|
-
return addHeapObject(ret);
|
|
5801
|
-
};
|
|
5802
|
-
|
|
5803
5772
|
export function __wbindgen_cast_d6cd19b81560fd6e(arg0) {
|
|
5804
5773
|
// Cast intrinsic for `F64 -> Externref`.
|
|
5805
5774
|
const ret = arg0;
|
|
5806
5775
|
return addHeapObject(ret);
|
|
5807
5776
|
};
|
|
5808
5777
|
|
|
5809
|
-
export function
|
|
5810
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
5811
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
5778
|
+
export function __wbindgen_cast_e1085c040d7c5239(arg0, arg1) {
|
|
5779
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 339, function: Function { arguments: [NamedExternref("Event")], shim_idx: 43, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5780
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__hd9661b26d463effa, wasm_bindgen__convert__closures_____invoke__h6d021f3e9713c130);
|
|
5781
|
+
return addHeapObject(ret);
|
|
5782
|
+
};
|
|
5783
|
+
|
|
5784
|
+
export function __wbindgen_cast_e12aaa4ecde9c999(arg0, arg1) {
|
|
5785
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 40, function: Function { arguments: [NamedExternref("Event")], shim_idx: 41, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
5786
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h3238f077fb5ae8c5, wasm_bindgen__convert__closures_____invoke__hd535e5ed92b9c746);
|
|
5787
|
+
return addHeapObject(ret);
|
|
5788
|
+
};
|
|
5789
|
+
|
|
5790
|
+
export function __wbindgen_cast_eac78313dde2d091(arg0, arg1) {
|
|
5791
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 589, function: Function { arguments: [], shim_idx: 333, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5792
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h666c8569a46b7e11, wasm_bindgen__convert__closures_____invoke__ha638740cca0ef77d);
|
|
5812
5793
|
return addHeapObject(ret);
|
|
5813
5794
|
};
|
|
5814
5795
|
|
|
Binary file
|
|
@@ -400,6 +400,11 @@ export const ciphersclient_decrypt: (a: number, b: number, c: number) => void;
|
|
|
400
400
|
export const ciphersclient_decrypt_fido2_credentials: (a: number, b: number, c: number) => void;
|
|
401
401
|
export const ciphersclient_decrypt_fido2_private_key: (a: number, b: number, c: number) => void;
|
|
402
402
|
export const ciphersclient_decrypt_list: (a: number, b: number, c: number, d: number) => void;
|
|
403
|
+
export const ciphersclient_decrypt_list_full_with_failures: (
|
|
404
|
+
a: number,
|
|
405
|
+
b: number,
|
|
406
|
+
c: number,
|
|
407
|
+
) => number;
|
|
403
408
|
export const ciphersclient_decrypt_list_with_failures: (a: number, b: number, c: number) => number;
|
|
404
409
|
export const ciphersclient_delete: (a: number, b: number) => number;
|
|
405
410
|
export const ciphersclient_delete_many: (a: number, b: number, c: number, d: number) => number;
|
|
@@ -522,25 +527,25 @@ export const __wbg_get_outgoingmessage_destination: (a: number) => number;
|
|
|
522
527
|
export const vaultclient_attachments: (a: number) => number;
|
|
523
528
|
export const __wbg_set_outgoingmessage_destination: (a: number, b: number) => void;
|
|
524
529
|
export const __wbg_cryptoclient_free: (a: number, b: number) => void;
|
|
525
|
-
export const
|
|
530
|
+
export const wasm_bindgen__convert__closures_____invoke__h6d021f3e9713c130: (
|
|
526
531
|
a: number,
|
|
527
532
|
b: number,
|
|
533
|
+
c: number,
|
|
528
534
|
) => void;
|
|
535
|
+
export const wasm_bindgen__closure__destroy__h3238f077fb5ae8c5: (a: number, b: number) => void;
|
|
536
|
+
export const wasm_bindgen__closure__destroy__hd9661b26d463effa: (a: number, b: number) => void;
|
|
529
537
|
export const wasm_bindgen__closure__destroy__hc71695a401114797: (a: number, b: number) => void;
|
|
530
|
-
export const
|
|
538
|
+
export const wasm_bindgen__convert__closures_____invoke__ha638740cca0ef77d: (
|
|
531
539
|
a: number,
|
|
532
540
|
b: number,
|
|
533
|
-
c: number,
|
|
534
541
|
) => void;
|
|
535
|
-
export const
|
|
542
|
+
export const wasm_bindgen__closure__destroy__h666c8569a46b7e11: (a: number, b: number) => void;
|
|
536
543
|
export const wasm_bindgen__convert__closures_____invoke__hd535e5ed92b9c746: (
|
|
537
544
|
a: number,
|
|
538
545
|
b: number,
|
|
539
546
|
c: number,
|
|
540
547
|
d: number,
|
|
541
548
|
) => void;
|
|
542
|
-
export const wasm_bindgen__closure__destroy__hd9661b26d463effa: (a: number, b: number) => void;
|
|
543
|
-
export const wasm_bindgen__closure__destroy__h666c8569a46b7e11: (a: number, b: number) => void;
|
|
544
549
|
export const wasm_bindgen__convert__closures_____invoke__h0c62e4f019080f6a: (
|
|
545
550
|
a: number,
|
|
546
551
|
b: number,
|