@trezor/connect 9.2.4 → 9.2.5-beta.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.
- package/CHANGELOG.md +125 -9
- package/README.md +2 -2
- package/lib/api/applySettings.js +1 -9
- package/lib/api/cardano/api/cardanoSignTransaction.d.ts +4 -1
- package/lib/api/cardano/api/cardanoSignTransaction.js +16 -1
- package/lib/api/cardano/cardanoCertificate.js +34 -0
- package/lib/api/cardano/cardanoWitnesses.js +4 -1
- package/lib/api/getFeatures.d.ts +6 -4
- package/lib/api/getPublicKey.d.ts +1 -1
- package/lib/api/getPublicKey.js +3 -3
- package/lib/api/index.d.ts +1 -0
- package/lib/api/index.js +3 -1
- package/lib/api/recoveryDevice.js +1 -1
- package/lib/api/setBrightness.d.ts +9 -0
- package/lib/api/setBrightness.js +23 -0
- package/lib/api/solana/api/solanaGetAddress.d.ts +1 -1
- package/lib/api/solana/api/solanaGetAddress.js +1 -1
- package/lib/backend/BackendManager.d.ts +1 -2
- package/lib/backend/BackendManager.js +6 -5
- package/lib/backend/BlockchainLink.js +1 -3
- package/lib/core/coreManager.d.ts +16 -0
- package/lib/core/coreManager.js +55 -0
- package/lib/core/index.d.ts +7 -1
- package/lib/core/index.js +44 -32
- package/lib/data/deviceAuthenticityConfig.js +4 -1
- package/lib/data/models.js +4 -4
- package/lib/data/version.d.ts +1 -1
- package/lib/data/version.js +1 -1
- package/lib/device/Device.js +5 -0
- package/lib/device/DeviceList.js +2 -0
- package/lib/factory.d.ts +2 -3
- package/lib/factory.js +1 -0
- package/lib/index.d.ts +1 -1
- package/lib/index.js +27 -29
- package/lib/types/api/applySettings.d.ts +1 -0
- package/lib/types/api/cardano/index.d.ts +26 -0
- package/lib/types/api/cardano/index.js +9 -1
- package/lib/types/api/index.d.ts +7 -5
- package/lib/types/api/recoveryDevice.d.ts +2 -2
- package/lib/types/api/setBrightness.d.ts +4 -0
- package/lib/types/api/setBrightness.js +3 -0
- package/package.json +14 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trezor/connect",
|
|
3
|
-
"version": "9.2.
|
|
3
|
+
"version": "9.2.5-beta.2",
|
|
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.",
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
"scripts": {
|
|
55
55
|
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
|
56
56
|
"test:unit": "jest --version && jest",
|
|
57
|
+
"depcheck": "yarn g:depcheck",
|
|
57
58
|
"type-check": "yarn g:tsc --build",
|
|
58
59
|
"build:lib": "yarn g:rimraf ./lib && yarn g:tsc --build tsconfig.lib.json && ../../scripts/replace-imports.sh ./lib",
|
|
59
60
|
"version:prerelease": "yarn g:tsx scripts/bump-version.ts prerelease",
|
|
@@ -70,26 +71,24 @@
|
|
|
70
71
|
"@ethereumjs/common": "^4.2.0",
|
|
71
72
|
"@ethereumjs/tx": "^5.2.1",
|
|
72
73
|
"@fivebinaries/coin-selection": "2.2.1",
|
|
73
|
-
"@trezor/blockchain-link": "2.1.
|
|
74
|
-
"@trezor/blockchain-link-types": "1.0.
|
|
75
|
-
"@trezor/connect-analytics": "1.0.
|
|
76
|
-
"@trezor/connect-common": "0.0.
|
|
77
|
-
"@trezor/protobuf": "1.0.
|
|
78
|
-
"@trezor/protocol": "1.0.
|
|
79
|
-
"@trezor/schema-utils": "1.0.
|
|
80
|
-
"@trezor/transport": "1.1.
|
|
81
|
-
"@trezor/utils": "9.0.
|
|
82
|
-
"@trezor/utxo-lib": "2.0.
|
|
74
|
+
"@trezor/blockchain-link": "2.1.31-beta.2",
|
|
75
|
+
"@trezor/blockchain-link-types": "1.0.18-beta.2",
|
|
76
|
+
"@trezor/connect-analytics": "1.0.16-beta.1",
|
|
77
|
+
"@trezor/connect-common": "0.0.34-beta.1",
|
|
78
|
+
"@trezor/protobuf": "1.0.14-beta.2",
|
|
79
|
+
"@trezor/protocol": "1.0.10-beta.2",
|
|
80
|
+
"@trezor/schema-utils": "1.0.5-beta.1",
|
|
81
|
+
"@trezor/transport": "1.1.30-beta.2",
|
|
82
|
+
"@trezor/utils": "9.0.25-beta.2",
|
|
83
|
+
"@trezor/utxo-lib": "2.0.11-beta.1",
|
|
83
84
|
"blakejs": "^1.2.1",
|
|
84
85
|
"bs58": "^5.0.0",
|
|
85
86
|
"bs58check": "^3.0.1",
|
|
86
|
-
"cross-fetch": "^4.0.0"
|
|
87
|
-
"events": "^3.3.0"
|
|
87
|
+
"cross-fetch": "^4.0.0"
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|
|
90
90
|
"@trezor/trezor-user-env-link": "1.0.2",
|
|
91
91
|
"@types/karma": "^6.3.8",
|
|
92
|
-
"@types/parse-uri": "^1.0.2",
|
|
93
92
|
"babel-loader": "^9.1.3",
|
|
94
93
|
"ethereum-cryptography": "^2.1.3",
|
|
95
94
|
"jest": "29.7.0",
|
|
@@ -104,7 +103,7 @@
|
|
|
104
103
|
"ts-node": "^10.9.1",
|
|
105
104
|
"tsx": "^4.7.0",
|
|
106
105
|
"webpack": "^5.90.1",
|
|
107
|
-
"ws": "^8.
|
|
106
|
+
"ws": "^8.17.1"
|
|
108
107
|
},
|
|
109
108
|
"peerDependencies": {
|
|
110
109
|
"tslib": "^2.6.2"
|