@trezor/connect 9.1.8 → 9.1.9

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/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 9.1.9
2
+
3
+ - fix(connect-popup): webusb pairing in webextensions using manifest version 2 [#10709](https://github.com/trezor/trezor-suite/pull/10709).
4
+
1
5
  # 9.1.8
2
6
 
3
7
  - fix(connect-explorer): eth getAccountInfo coin fix (0108b96)
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @trezor/connect
2
2
 
3
- API version 9.1.8
3
+ API version 9.1.9
4
4
 
5
5
  [![Build Status](https://github.com/trezor/trezor-suite/actions/workflows/connect-test.yml/badge.svg)](https://github.com/trezor/trezor-suite/actions/workflows/connect-test.yml)
6
6
  [![NPM](https://img.shields.io/npm/v/@trezor/connect.svg)](https://www.npmjs.org/package/@trezor/connect)
@@ -1,3 +1,3 @@
1
- export declare const VERSION = "9.1.8";
1
+ export declare const VERSION = "9.1.9";
2
2
  export declare const DEFAULT_DOMAIN: string;
3
3
  //# sourceMappingURL=version.d.ts.map
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.DEFAULT_DOMAIN = exports.VERSION = void 0;
4
- exports.VERSION = '9.1.8';
4
+ exports.VERSION = '9.1.9';
5
5
  const versionN = exports.VERSION.split('.').map(s => parseInt(s, 10));
6
6
  exports.DEFAULT_DOMAIN = `https://connect.trezor.io/${versionN[0]}/`;
7
7
  //# sourceMappingURL=version.js.map
@@ -8,6 +8,7 @@ export * from './transport';
8
8
  export * from './ui-promise';
9
9
  export * from './ui-request';
10
10
  export * from './ui-response';
11
+ export * from './webextension';
11
12
  export declare const UI: {
12
13
  readonly RECEIVE_PERMISSION: "ui-receive_permission";
13
14
  readonly RECEIVE_CONFIRMATION: "ui-receive_confirmation";
@@ -14,6 +14,7 @@ tslib_1.__exportStar(require("./transport"), exports);
14
14
  tslib_1.__exportStar(require("./ui-promise"), exports);
15
15
  tslib_1.__exportStar(require("./ui-request"), exports);
16
16
  tslib_1.__exportStar(require("./ui-response"), exports);
17
+ tslib_1.__exportStar(require("./webextension"), exports);
17
18
  exports.UI = {
18
19
  ...ui_request_1.UI_REQUEST,
19
20
  ...ui_response_1.UI_RESPONSE,
@@ -0,0 +1,7 @@
1
+ export declare const WEBEXTENSION: {
2
+ USB_PERMISSIONS_BROADCAST: string;
3
+ USB_PERMISSIONS_INIT: string;
4
+ USB_PERMISSIONS_CLOSE: string;
5
+ USB_PERMISSIONS_FINISHED: string;
6
+ };
7
+ //# sourceMappingURL=webextension.d.ts.map
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.WEBEXTENSION = void 0;
4
+ exports.WEBEXTENSION = {
5
+ USB_PERMISSIONS_BROADCAST: 'usb-permissions',
6
+ USB_PERMISSIONS_INIT: 'usb-permissions-init',
7
+ USB_PERMISSIONS_CLOSE: 'usb-permissions-close',
8
+ USB_PERMISSIONS_FINISHED: 'usb-permissions-finished',
9
+ };
10
+ //# sourceMappingURL=webextension.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trezor/connect",
3
- "version": "9.1.8",
3
+ "version": "9.1.9",
4
4
  "author": "Trezor <info@trezor.io>",
5
5
  "homepage": "https://github.com/trezor/trezor-suite/tree/develop/packages/connect",
6
6
  "description": "High-level javascript interface for Trezor hardware wallet.",