@keyringnetwork/keyring-connect-sdk 1.0.5 → 1.0.6

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/dist/main.js CHANGED
@@ -129,6 +129,7 @@ class KeyringConnect {
129
129
  isolate_proving: config.krn_config.isolate_proving,
130
130
  notaryUrl: config.krn_config.notaryUrl,
131
131
  notaryWebsocketUrl: config.krn_config.notaryWebsocketUrl,
132
+ websocketProxyUrl: config.krn_config.websocketProxyUrl,
132
133
  }
133
134
  : undefined,
134
135
  proof_config: config.proof_config,
package/dist/types.d.ts CHANGED
@@ -41,6 +41,7 @@ export type ExtensionSDKConfig = {
41
41
  isolate_proving?: boolean;
42
42
  notaryUrl?: string;
43
43
  notaryWebsocketUrl?: string;
44
+ websocketProxyUrl?: string;
44
45
  };
45
46
  };
46
47
  export type ExtensionLaunchConfig = {
@@ -62,6 +63,7 @@ export type ExtensionLaunchConfig = {
62
63
  isolate_proving?: boolean;
63
64
  notaryUrl?: string;
64
65
  notaryWebsocketUrl?: string;
66
+ websocketProxyUrl?: string;
65
67
  };
66
68
  auth_user?: any;
67
69
  };
package/package.json CHANGED
@@ -1,9 +1,14 @@
1
1
  {
2
2
  "name": "@keyringnetwork/keyring-connect-sdk",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "An SDK for interacting with Keyring Connect browser extension",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
+ "scripts": {
8
+ "build": "rm -rf dist && tsc",
9
+ "dev": "tsc --watch",
10
+ "publish": "pnpm build && npm publish"
11
+ },
7
12
  "files": [
8
13
  "dist"
9
14
  ],
@@ -16,9 +21,5 @@
16
21
  },
17
22
  "dependencies": {
18
23
  "jwt-decode": "^4.0.0"
19
- },
20
- "scripts": {
21
- "build": "rm -rf dist && tsc",
22
- "dev": "tsc --watch"
23
24
  }
24
25
  }