@keyringnetwork/keyring-connect-sdk 0.0.3 → 0.0.4

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/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export { default as KeyringConnectSDK } from './main';
1
+ export { KeyringConnect } from './main';
2
2
  export * from './types';
package/dist/index.js CHANGED
@@ -13,11 +13,8 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
13
13
  var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
- var __importDefault = (this && this.__importDefault) || function (mod) {
17
- return (mod && mod.__esModule) ? mod : { "default": mod };
18
- };
19
16
  Object.defineProperty(exports, "__esModule", { value: true });
20
- exports.KeyringConnectSDK = void 0;
17
+ exports.KeyringConnect = void 0;
21
18
  var main_1 = require("./main");
22
- Object.defineProperty(exports, "KeyringConnectSDK", { enumerable: true, get: function () { return __importDefault(main_1).default; } });
19
+ Object.defineProperty(exports, "KeyringConnect", { enumerable: true, get: function () { return main_1.KeyringConnect; } });
23
20
  __exportStar(require("./types"), exports);
package/dist/main.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { ExtensionConfig, ExtensionState } from './types';
2
- export default class KeyringConnect {
2
+ export declare class KeyringConnect {
3
3
  static launchExtension(data: ExtensionConfig): Promise<void>;
4
4
  static isKeyringConnectInstalled(): Promise<boolean>;
5
5
  static getExtensionState(): Promise<ExtensionState>;
package/dist/main.js CHANGED
@@ -9,6 +9,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
9
9
  });
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.KeyringConnect = void 0;
12
13
  const env_1 = require("./env");
13
14
  const types_1 = require("./types");
14
15
  class KeyringConnect {
@@ -50,4 +51,4 @@ class KeyringConnect {
50
51
  });
51
52
  }
52
53
  }
53
- exports.default = KeyringConnect;
54
+ exports.KeyringConnect = KeyringConnect;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keyringnetwork/keyring-connect-sdk",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
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",