@bitwarden/sdk-internal 0.2.0-main.107 → 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
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
782cbdfd51b58a1de0de54bfc5ce8947ec097454
|
|
@@ -309,6 +309,13 @@ function takeFromExternrefTable0(idx) {
|
|
|
309
309
|
wasm.__externref_table_dealloc(idx);
|
|
310
310
|
return value;
|
|
311
311
|
}
|
|
312
|
+
/**
|
|
313
|
+
* @param {LogLevel} level
|
|
314
|
+
*/
|
|
315
|
+
export function set_log_level(level) {
|
|
316
|
+
wasm.set_log_level(level);
|
|
317
|
+
}
|
|
318
|
+
|
|
312
319
|
/**
|
|
313
320
|
* @param {LogLevel | null} [log_level]
|
|
314
321
|
*/
|
|
@@ -381,7 +388,7 @@ function __wbg_adapter_42(arg0, arg1, arg2) {
|
|
|
381
388
|
wasm.closure544_externref_shim(arg0, arg1, arg2);
|
|
382
389
|
}
|
|
383
390
|
|
|
384
|
-
function
|
|
391
|
+
function __wbg_adapter_147(arg0, arg1, arg2, arg3) {
|
|
385
392
|
wasm.closure402_externref_shim(arg0, arg1, arg2, arg3);
|
|
386
393
|
}
|
|
387
394
|
|
|
@@ -943,7 +950,7 @@ export function __wbg_new_23a2665fac83c611(arg0, arg1) {
|
|
|
943
950
|
const a = state0.a;
|
|
944
951
|
state0.a = 0;
|
|
945
952
|
try {
|
|
946
|
-
return
|
|
953
|
+
return __wbg_adapter_147(a, state0.b, arg0, arg1);
|
|
947
954
|
} finally {
|
|
948
955
|
state0.a = a;
|
|
949
956
|
}
|
|
@@ -1260,7 +1267,7 @@ export function __wbindgen_cb_drop(arg0) {
|
|
|
1260
1267
|
return ret;
|
|
1261
1268
|
}
|
|
1262
1269
|
|
|
1263
|
-
export function
|
|
1270
|
+
export function __wbindgen_closure_wrapper2129(arg0, arg1, arg2) {
|
|
1264
1271
|
const ret = makeMutClosure(arg0, arg1, 545, __wbg_adapter_42);
|
|
1265
1272
|
return ret;
|
|
1266
1273
|
}
|
|
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: (
|