@onekeyfe/hd-shared
Advanced tools
Comparing version 0.1.56 to 0.1.57
@@ -46,2 +46,4 @@ export interface IHardwareError { | ||
readonly FirmwareUpdateLimitOneDevice: 409; | ||
readonly FirmwareUpdateManuallyEnterBoot: 410; | ||
readonly FirmwareUpdateAutoEnterBootFailure: 411; | ||
readonly NetworkError: 500; | ||
@@ -48,0 +50,0 @@ readonly TransportNotConfigured: 600; |
@@ -55,2 +55,4 @@ declare type Deferred<T, I = any, D = any> = { | ||
readonly FirmwareUpdateLimitOneDevice: 409; | ||
readonly FirmwareUpdateManuallyEnterBoot: 410; | ||
readonly FirmwareUpdateAutoEnterBootFailure: 411; | ||
readonly NetworkError: 500; | ||
@@ -57,0 +59,0 @@ readonly TransportNotConfigured: 600; |
@@ -115,2 +115,4 @@ 'use strict'; | ||
FirmwareUpdateLimitOneDevice: 409, | ||
FirmwareUpdateManuallyEnterBoot: 410, | ||
FirmwareUpdateAutoEnterBootFailure: 411, | ||
NetworkError: 500, | ||
@@ -177,2 +179,4 @@ TransportNotConfigured: 600, | ||
[HardwareErrorCode.FirmwareUpdateLimitOneDevice]: 'Only one device can be connected during firmware upgrade', | ||
[HardwareErrorCode.FirmwareUpdateManuallyEnterBoot]: 'You need to manually enter boot', | ||
[HardwareErrorCode.FirmwareUpdateAutoEnterBootFailure]: 'Description Failed to automatically enter boot', | ||
[HardwareErrorCode.NetworkError]: 'Network request error', | ||
@@ -179,0 +183,0 @@ [HardwareErrorCode.TransportNotConfigured]: 'Transport not configured', |
{ | ||
"name": "@onekeyfe/hd-shared", | ||
"version": "0.1.56", | ||
"version": "0.1.57", | ||
"description": "Hardware SDK's shared tool library", | ||
@@ -28,3 +28,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "519e40b2b1a5224af1333ac4c715f19b2fef2378" | ||
"gitHead": "f443fdd58ca37c14228808ad712dc115cfe0ca50" | ||
} |
@@ -192,2 +192,12 @@ export interface IHardwareError { | ||
/** | ||
* You need to manually enter boot | ||
*/ | ||
FirmwareUpdateManuallyEnterBoot: 410, | ||
/** | ||
* Manual entry fails. You must manually enter the boot | ||
*/ | ||
FirmwareUpdateAutoEnterBootFailure: 411, | ||
/** | ||
* Netword request error | ||
@@ -342,2 +352,5 @@ */ | ||
'Only one device can be connected during firmware upgrade', | ||
[HardwareErrorCode.FirmwareUpdateManuallyEnterBoot]: 'You need to manually enter boot', | ||
[HardwareErrorCode.FirmwareUpdateAutoEnterBootFailure]: | ||
'Description Failed to automatically enter boot', | ||
@@ -344,0 +357,0 @@ /** |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
35212
859