node-opcua-status-code
Advanced tools
Comparing version 2.66.0 to 2.67.0
@@ -506,3 +506,25 @@ /** | ||
static BadMaxConnectionsReached: ConstantStatusCode; | ||
/** The value may not be accurate because the transducer is in manual mode. */ | ||
static UncertainTransducerInManual: ConstantStatusCode; | ||
/** The value is simulated. */ | ||
static UncertainSimulatedValue: ConstantStatusCode; | ||
/** The value may not be accurate due to a sensor calibration fault. */ | ||
static UncertainSensorCalibration: ConstantStatusCode; | ||
/** The value may not be accurate due to a configuration issue. */ | ||
static UncertainConfigurationError: ConstantStatusCode; | ||
/** The value source supports cascade handshaking and the value has been Initialized based on an initialization request from a cascade secondary. */ | ||
static GoodCascadeInitializationAcknowledged: ConstantStatusCode; | ||
/** The value source supports cascade handshaking and is requesting initialization of a cascade primary. */ | ||
static GoodCascadeInitializationRequest: ConstantStatusCode; | ||
/** The value source supports cascade handshaking, however, the source’s current state does not allow for cascade. */ | ||
static GoodCascadeNotInvited: ConstantStatusCode; | ||
/** The value source supports cascade handshaking, however, the source has not selected the corresponding cascade primary for use. */ | ||
static GoodCascadeNotSelected: ConstantStatusCode; | ||
/** There is a fault state condition active in the value source. */ | ||
static GoodFaultStateActive: ConstantStatusCode; | ||
/** A fault state condition is being requested of the destination. */ | ||
static GoodInitiateFaultState: ConstantStatusCode; | ||
/** The value is accurate, and the signal source supports cascade handshaking. */ | ||
static GoodCascade: ConstantStatusCode; | ||
static GoodWithOverflowBit: StatusCode; | ||
} |
@@ -119,3 +119,3 @@ "use strict"; | ||
toString() { | ||
return this.name + " (0x" + ("0000" + this.value.toString(16)).substr(-8) + ")"; | ||
return this.name + " (0x" + (this.value.toString(16)).padStart(8, "0") + ")"; | ||
} | ||
@@ -122,0 +122,0 @@ checkBit(mask) { |
{ | ||
"name": "node-opcua-status-code", | ||
"version": "2.66.0", | ||
"version": "2.67.0", | ||
"description": "pure nodejs OPCUA SDK - module -status-code", | ||
@@ -16,6 +16,6 @@ "main": "./dist/index.js", | ||
"node-opcua-assert": "2.66.0", | ||
"node-opcua-constants": "2.66.0" | ||
"node-opcua-constants": "2.67.0" | ||
}, | ||
"devDependencies": { | ||
"node-opcua-binary-stream": "2.66.0", | ||
"node-opcua-binary-stream": "2.67.0", | ||
"should": "^13.2.3" | ||
@@ -38,3 +38,3 @@ }, | ||
"homepage": "http://node-opcua.github.io/", | ||
"gitHead": "97f47e2e242a1fd737495fd64cb65e8fb7a9964b" | ||
"gitHead": "74c2fd7d4ce3eb48d25a911258bf90a64218ea0e" | ||
} |
@@ -153,3 +153,3 @@ /** | ||
public toString(): string { | ||
return this.name + " (0x" + ("0000" + this.value.toString(16)).substr(-8) + ")"; | ||
return this.name + " (0x" + (this.value.toString(16)).padStart(8,"0") + ")"; | ||
} | ||
@@ -156,0 +156,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
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
280682
4510
+ Addednode-opcua-constants@2.67.0(transitive)
- Removednode-opcua-constants@2.66.0(transitive)
Updatednode-opcua-constants@2.67.0