Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

node-opcua-status-code

Package Overview
Dependencies
Maintainers
1
Versions
121
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-opcua-status-code - npm Package Compare versions

Comparing version 2.66.0 to 2.67.0

22

dist/_generated_status_codes.d.ts

@@ -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;
}

2

dist/opcua_status_code.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc