@ledgerhq/hw-transport-node-hid-singleton 6.7.0 → 6.11.2

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.
Files changed (2) hide show
  1. package/README.md +11 -11
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  Allows to communicate with Ledger Hardware Wallets.
9
9
 
10
- **[Node]**/Electron **(HID)** – uses `node-hid` and `usb-detection`. Keep transport opened and re-use it as a singleton, one device at a time on a computer but more robust implementation.
10
+ **\[Node]**/Electron **(HID)** – uses `node-hid` and `usb-detection`. Keep transport opened and re-use it as a singleton, one device at a time on a computer but more robust implementation.
11
11
 
12
12
  ## API
13
13
 
@@ -15,14 +15,14 @@ Allows to communicate with Ledger Hardware Wallets.
15
15
 
16
16
  #### Table of Contents
17
17
 
18
- - [TransportNodeHidSingleton](#transportnodehidsingleton)
19
- - [Examples](#examples)
20
- - [isSupported](#issupported)
21
- - [list](#list)
22
- - [listen](#listen)
23
- - [Parameters](#parameters)
24
- - [disconnect](#disconnect)
25
- - [open](#open)
18
+ * [TransportNodeHidSingleton](#transportnodehidsingleton)
19
+ * [Examples](#examples)
20
+ * [isSupported](#issupported)
21
+ * [list](#list)
22
+ * [listen](#listen)
23
+ * [Parameters](#parameters)
24
+ * [disconnect](#disconnect)
25
+ * [open](#open)
26
26
 
27
27
  ### TransportNodeHidSingleton
28
28
 
@@ -46,7 +46,7 @@ TransportNodeHid.create().then(transport => ...)
46
46
 
47
47
  ##### Parameters
48
48
 
49
- - `observer` **Observer<DescriptorEvent<any>>**
49
+ * `observer` **Observer\<DescriptorEvent\<any>>**
50
50
 
51
51
  Returns **Subscription**
52
52
 
@@ -58,4 +58,4 @@ globally disconnect the transport singleton
58
58
 
59
59
  if path="" is not provided, the library will take the first device
60
60
 
61
- Returns **[Promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)&lt;[TransportNodeHidSingleton](#transportnodehidsingleton)>**
61
+ Returns **[Promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)<[TransportNodeHidSingleton](#transportnodehidsingleton)>**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/hw-transport-node-hid-singleton",
3
- "version": "6.7.0",
3
+ "version": "6.11.2",
4
4
  "description": "Ledger Hardware Wallet Node implementation of the communication layer, using node-hid and usb-detection",
5
5
  "keywords": [
6
6
  "Ledger",
@@ -27,14 +27,14 @@
27
27
  "types": "lib/TransportNodeHid.d.ts",
28
28
  "license": "Apache-2.0",
29
29
  "dependencies": {
30
- "@ledgerhq/devices": "^6.7.0",
31
- "@ledgerhq/errors": "^6.2.0",
32
- "@ledgerhq/hw-transport": "^6.7.0",
33
- "@ledgerhq/hw-transport-node-hid-noevents": "^6.7.0",
34
- "@ledgerhq/logs": "^6.2.0",
30
+ "@ledgerhq/devices": "^6.11.2",
31
+ "@ledgerhq/errors": "^6.10.0",
32
+ "@ledgerhq/hw-transport": "^6.11.2",
33
+ "@ledgerhq/hw-transport-node-hid-noevents": "^6.11.2",
34
+ "@ledgerhq/logs": "^6.10.0",
35
35
  "lodash": "^4.17.21",
36
36
  "node-hid": "2.1.1",
37
- "usb-detection": "^4.10.0"
37
+ "usb-detection": "^4.13.0"
38
38
  },
39
39
  "scripts": {
40
40
  "clean": "bash ../../script/clean.sh",
@@ -42,5 +42,5 @@
42
42
  "watch": "bash ../../script/watch.sh",
43
43
  "doc": "bash ../../script/doc.sh"
44
44
  },
45
- "gitHead": "91b41e29087aba025c03ad3a3f94342316ead554"
45
+ "gitHead": "d243550a31bd781924fc301492320b16212c3dbe"
46
46
  }