@bitwarden/sdk-internal 0.2.0-main.108 → 0.2.0-main.109
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 +1 -0
- package/bitwarden_wasm_internal_bg.js +10 -3
- package/bitwarden_wasm_internal_bg.wasm +0 -0
- package/bitwarden_wasm_internal_bg.wasm.d.ts +1 -0
- package/bitwarden_wasm_internal_bg.wasm.js +1 -1
- package/node/bitwarden_wasm_internal.d.ts +1 -0
- package/node/bitwarden_wasm_internal.js +10 -3
- package/node/bitwarden_wasm_internal_bg.wasm +0 -0
- package/node/bitwarden_wasm_internal_bg.wasm.d.ts +1 -0
- package/package.json +1 -1
|
@@ -303,6 +303,13 @@ function takeFromExternrefTable0(idx) {
|
|
|
303
303
|
wasm.__externref_table_dealloc(idx);
|
|
304
304
|
return value;
|
|
305
305
|
}
|
|
306
|
+
/**
|
|
307
|
+
* @param {LogLevel} level
|
|
308
|
+
*/
|
|
309
|
+
module.exports.set_log_level = function (level) {
|
|
310
|
+
wasm.set_log_level(level);
|
|
311
|
+
};
|
|
312
|
+
|
|
306
313
|
/**
|
|
307
314
|
* @param {LogLevel | null} [log_level]
|
|
308
315
|
*/
|
|
@@ -375,7 +382,7 @@ function __wbg_adapter_42(arg0, arg1, arg2) {
|
|
|
375
382
|
wasm.closure544_externref_shim(arg0, arg1, arg2);
|
|
376
383
|
}
|
|
377
384
|
|
|
378
|
-
function
|
|
385
|
+
function __wbg_adapter_147(arg0, arg1, arg2, arg3) {
|
|
379
386
|
wasm.closure402_externref_shim(arg0, arg1, arg2, arg3);
|
|
380
387
|
}
|
|
381
388
|
|
|
@@ -942,7 +949,7 @@ module.exports.__wbg_new_23a2665fac83c611 = function (arg0, arg1) {
|
|
|
942
949
|
const a = state0.a;
|
|
943
950
|
state0.a = 0;
|
|
944
951
|
try {
|
|
945
|
-
return
|
|
952
|
+
return __wbg_adapter_147(a, state0.b, arg0, arg1);
|
|
946
953
|
} finally {
|
|
947
954
|
state0.a = a;
|
|
948
955
|
}
|
|
@@ -1259,7 +1266,7 @@ module.exports.__wbindgen_cb_drop = function (arg0) {
|
|
|
1259
1266
|
return ret;
|
|
1260
1267
|
};
|
|
1261
1268
|
|
|
1262
|
-
module.exports.
|
|
1269
|
+
module.exports.__wbindgen_closure_wrapper2129 = function (arg0, arg1, arg2) {
|
|
1263
1270
|
const ret = makeMutClosure(arg0, arg1, 545, __wbg_adapter_42);
|
|
1264
1271
|
return ret;
|
|
1265
1272
|
};
|
|
Binary file
|
|
@@ -26,6 +26,7 @@ export const cryptoclient_make_key_pair: (
|
|
|
26
26
|
c: number,
|
|
27
27
|
) => [number, number, number];
|
|
28
28
|
export const cryptoclient_verify_asymmetric_keys: (a: number, b: any) => [number, number, number];
|
|
29
|
+
export const set_log_level: (a: number) => void;
|
|
29
30
|
export const init_sdk: (a: number) => void;
|
|
30
31
|
export const generate_ssh_key: (a: any) => [number, number, number];
|
|
31
32
|
export const import_ssh_key: (
|