Skip to content

Commit 0a6c86f

Browse files
1PasswordSDKBotedif2008
authored andcommitted
Update core to version 143bddbd
1 parent 314665b commit 0a6c86f

File tree

4 files changed

+14
-12
lines changed

4 files changed

+14
-12
lines changed

client/src/vaults.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export interface VaultsApi {
1818
/**
1919
* List information about vaults that's configurable based on some input parameters.
2020
*/
21-
list(params?: VaultListParams): Promise<VaultOverview[]>;
21+
list(params: VaultListParams | undefined): Promise<VaultOverview[]>;
2222

2323
getOverview(vaultUuid: string): Promise<VaultOverview>;
2424

@@ -41,7 +41,9 @@ export class Vaults implements VaultsApi {
4141
/**
4242
* List information about vaults that's configurable based on some input parameters.
4343
*/
44-
public async list(params: VaultListParams): Promise<VaultOverview[]> {
44+
public async list(
45+
params: VaultListParams | undefined,
46+
): Promise<VaultOverview[]> {
4547
const invocationConfig: InvokeConfig = {
4648
invocation: {
4749
clientId: this.#inner.id,

wasm/nodejs/core.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -275,15 +275,15 @@ module.exports.release_client = function(client_id) {
275275
};
276276

277277
function __wbg_adapter_30(arg0, arg1) {
278-
wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h3aa0e8fb678a82f4(arg0, arg1);
278+
wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h32a292ce38c5403f(arg0, arg1);
279279
}
280280

281281
function __wbg_adapter_33(arg0, arg1, arg2) {
282-
wasm.closure2323_externref_shim(arg0, arg1, arg2);
282+
wasm.closure2326_externref_shim(arg0, arg1, arg2);
283283
}
284284

285285
function __wbg_adapter_160(arg0, arg1, arg2, arg3) {
286-
wasm.closure2472_externref_shim(arg0, arg1, arg2, arg3);
286+
wasm.closure2475_externref_shim(arg0, arg1, arg2, arg3);
287287
}
288288

289289
const __wbindgen_enum_RequestCache = ["default", "no-store", "reload", "no-cache", "force-cache", "only-if-cached"];
@@ -729,13 +729,13 @@ module.exports.__wbindgen_cb_drop = function(arg0) {
729729
return ret;
730730
};
731731

732-
module.exports.__wbindgen_closure_wrapper8680 = function(arg0, arg1, arg2) {
733-
const ret = makeMutClosure(arg0, arg1, 2306, __wbg_adapter_30);
732+
module.exports.__wbindgen_closure_wrapper8700 = function(arg0, arg1, arg2) {
733+
const ret = makeMutClosure(arg0, arg1, 2309, __wbg_adapter_30);
734734
return ret;
735735
};
736736

737-
module.exports.__wbindgen_closure_wrapper8711 = function(arg0, arg1, arg2) {
738-
const ret = makeMutClosure(arg0, arg1, 2324, __wbg_adapter_33);
737+
module.exports.__wbindgen_closure_wrapper8731 = function(arg0, arg1, arg2) {
738+
const ret = makeMutClosure(arg0, arg1, 2327, __wbg_adapter_33);
739739
return ret;
740740
};
741741

wasm/nodejs/core_bg.wasm

22.8 KB
Binary file not shown.

wasm/nodejs/core_bg.wasm.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const __wbindgen_realloc: (a: number, b: number, c: number, d: number) =>
1414
export const __wbindgen_export_5: WebAssembly.Table;
1515
export const __externref_table_dealloc: (a: number) => void;
1616
export const __wbindgen_free: (a: number, b: number, c: number) => void;
17-
export const _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h3aa0e8fb678a82f4: (a: number, b: number) => void;
18-
export const closure2323_externref_shim: (a: number, b: number, c: any) => void;
19-
export const closure2472_externref_shim: (a: number, b: number, c: any, d: any) => void;
17+
export const _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h32a292ce38c5403f: (a: number, b: number) => void;
18+
export const closure2326_externref_shim: (a: number, b: number, c: any) => void;
19+
export const closure2475_externref_shim: (a: number, b: number, c: any, d: any) => void;
2020
export const __wbindgen_start: () => void;

0 commit comments

Comments
 (0)