Skip to content

Commit

Permalink
Update core to version 8374b01d
Browse files Browse the repository at this point in the history
  • Loading branch information
1PasswordSDKBot committed Feb 4, 2025
1 parent a1fff37 commit aeb22f4
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion client/src/items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export interface ItemsApi {

export class Items implements ItemsApi {
#inner: InnerClient;
public shares: ItemsSharesApi;
shares: ItemsSharesApi;

Check failure on line 46 in client/src/items.ts

View workflow job for this annotation

GitHub Actions / Lint

Missing accessibility modifier on class property shares

public constructor(inner: InnerClient) {
this.#inner = inner;
Expand Down
1 change: 0 additions & 1 deletion client/src/sdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ export const DEFAULT_INTEGRATION_VERSION = "Unknown";
export { Secrets } from "./secrets.js";

export * from "./client.js";
export * from "./errors.js";
export * from "./types.js";

/**
Expand Down
16 changes: 8 additions & 8 deletions wasm/nodejs/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -270,11 +270,11 @@ module.exports.release_client = function(client_id) {
};

function __wbg_adapter_30(arg0, arg1, arg2) {
wasm.closure1817_externref_shim(arg0, arg1, arg2);
wasm.closure1820_externref_shim(arg0, arg1, arg2);
}

function __wbg_adapter_145(arg0, arg1, arg2, arg3) {
wasm.closure1899_externref_shim(arg0, arg1, arg2, arg3);
wasm.closure1902_externref_shim(arg0, arg1, arg2, arg3);
}

const __wbindgen_enum_RequestCredentials = ["omit", "same-origin", "include"];
Expand Down Expand Up @@ -319,13 +319,13 @@ module.exports.__wbg_done_769e5ede4b31c67b = function(arg0) {
return ret;
};

module.exports.__wbg_fetch_509096533071c657 = function(arg0, arg1) {
const ret = arg0.fetch(arg1);
module.exports.__wbg_fetch_4465c2b10f21a927 = function(arg0) {
const ret = fetch(arg0);
return ret;
};

module.exports.__wbg_fetch_f1856afdb49415d1 = function(arg0) {
const ret = fetch(arg0);
module.exports.__wbg_fetch_509096533071c657 = function(arg0, arg1) {
const ret = arg0.fetch(arg1);
return ret;
};

Expand Down Expand Up @@ -684,8 +684,8 @@ module.exports.__wbindgen_cb_drop = function(arg0) {
return ret;
};

module.exports.__wbindgen_closure_wrapper6392 = function(arg0, arg1, arg2) {
const ret = makeMutClosure(arg0, arg1, 1818, __wbg_adapter_30);
module.exports.__wbindgen_closure_wrapper6409 = function(arg0, arg1, arg2) {
const ret = makeMutClosure(arg0, arg1, 1821, __wbg_adapter_30);
return ret;
};

Expand Down
Binary file modified wasm/nodejs/core_bg.wasm
Binary file not shown.
4 changes: 2 additions & 2 deletions wasm/nodejs/core_bg.wasm.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ export const __wbindgen_realloc: (a: number, b: number, c: number, d: number) =>
export const __wbindgen_export_5: WebAssembly.Table;
export const __externref_table_dealloc: (a: number) => void;
export const __wbindgen_free: (a: number, b: number, c: number) => void;
export const closure1817_externref_shim: (a: number, b: number, c: any) => void;
export const closure1899_externref_shim: (a: number, b: number, c: any, d: any) => void;
export const closure1820_externref_shim: (a: number, b: number, c: any) => void;
export const closure1902_externref_shim: (a: number, b: number, c: any, d: any) => void;
export const __wbindgen_start: () => void;

0 comments on commit aeb22f4

Please sign in to comment.