@vlayer/sdk 0.1.0-nightly-20241016-2d34385 → 0.1.0-nightly-20241016-82138b7

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@vlayer/sdk",
3
3
  "type": "module",
4
4
  "exports": "./src/index.ts",
5
- "version": "0.1.0-nightly-20241016-2d34385",
5
+ "version": "0.1.0-nightly-20241016-82138b7",
6
6
  "types": "src/index.ts",
7
7
  "scripts": {
8
8
  "build": "npm run gen:types",
@@ -1,5 +1,6 @@
1
1
  import { Abi, Address, Hex } from "viem";
2
- import { Branded } from "@vlayer/web-proof-commons";
2
+ import { Branded } from "../../../web-proof-commons";
3
+
3
4
  export type Bytecode = {
4
5
  object: Hex;
5
6
  };
@@ -5,7 +5,7 @@ import {
5
5
  WebProof,
6
6
  WebProofStepExpectUrl,
7
7
  WebProofStepStartPage,
8
- } from "@vlayer/web-proof-commons";
8
+ } from "../../../web-proof-commons";
9
9
 
10
10
  export type WebProofSetupInput = {
11
11
  logoUrl: string;
@@ -10,7 +10,7 @@ import {
10
10
  ExtensionMessageType,
11
11
  type MessageToExtension,
12
12
  WebProof,
13
- } from "@vlayer/web-proof-commons";
13
+ } from "../../../web-proof-commons";
14
14
 
15
15
  // NOTE @types/chrome and webextension-polyfill work only in the extension context
16
16
  // and looks that there is no community driven package providing typings for chrome.runtime
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  EXTENSION_STEP,
3
3
  WebProofStepExpectUrl,
4
- } from "@vlayer/web-proof-commons";
4
+ } from "../../../web-proof-commons";
5
5
 
6
6
  export const expectUrl = (url: string, label: string) => {
7
7
  return {
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  EXTENSION_STEP,
3
3
  WebProofStepNotarize,
4
- } from "@vlayer/web-proof-commons";
4
+ } from "../../../web-proof-commons";
5
5
 
6
6
  export const notarize = (
7
7
  url: string,
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  EXTENSION_STEP,
3
3
  WebProofStepStartPage,
4
- } from "@vlayer/web-proof-commons";
4
+ } from "../../../web-proof-commons";
5
5
 
6
6
  export const startPage = (url: string, label: string) => {
7
7
  return {
package/tsconfig.json CHANGED
@@ -24,8 +24,6 @@
24
24
  "paths": {
25
25
  "types/*": ["./src/api/lib/types/*"],
26
26
  "testHelpers/*": ["./src/testHelpers/*"],
27
- "@vlayer/web-proof-commons" : ["./web-proof-commons"],
28
27
  },
29
-
30
28
  }
31
- }
29
+ }