@vlayer/sdk 0.1.0-nightly-20241101-a2a04f3 → 0.1.0-nightly-20241104-2be12b8

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.d.ts CHANGED
@@ -1,7 +1,6 @@
1
1
  export * as testHelpers from "./api/helpers";
2
2
  export { preverifyEmail } from "./api/email/preverify";
3
3
  export { createVlayerClient } from "./api/lib/client";
4
- export * from "./api/webProof";
5
4
  export * from "./api/lib/types";
6
5
  export * from "./web-proof-commons/types/webProof";
7
6
  export * from "./web-proof-commons/utils";
package/dist/index.js CHANGED
@@ -1,7 +1,6 @@
1
1
  export * as testHelpers from "./api/helpers";
2
2
  export { preverifyEmail } from "./api/email/preverify";
3
3
  export { createVlayerClient } from "./api/lib/client";
4
- export * from "./api/webProof";
5
4
  export * from "./api/lib/types";
6
5
  export * from "./web-proof-commons/types/webProof";
7
6
  export * from "./web-proof-commons/utils";
package/package.json CHANGED
@@ -5,12 +5,16 @@
5
5
  ".": {
6
6
  "import": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts"
8
+ },
9
+ "./web_proof": {
10
+ "import": "./dist/api/webProof/index.js",
11
+ "types": "./dist/api/webProof/index.d.ts"
8
12
  }
9
13
  },
10
- "version": "0.1.0-nightly-20241101-a2a04f3",
14
+ "version": "0.1.0-nightly-20241104-2be12b8",
11
15
  "scripts": {
12
16
  "build": "bun tsc",
13
- "test": "vitest --run",
17
+ "test:unit": "vitest --run",
14
18
  "gen:types": "sh ../../bash/build_ts_types.sh",
15
19
  "replaceCommonsSymlink": "mv ./src/web-proof-commons ./src/web-proof-commons.bak && cp -r $(readlink -f ./src/web-proof-commons.bak) src/web-proof-commons && rm ./src/web-proof-commons.bak"
16
20
  },