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.42.0 to 2.51.0

37

dist/_generated_status_codes.d.ts

@@ -6,7 +6,9 @@ /**

export declare class StatusCodes {
/** Good: No Error */
/** The operation succeeded. */
static Good: ConstantStatusCode;
/** The value is bad but no specific reason is known. */ static Bad: ConstantStatusCode;
/** The value is uncertain but no specific reason is known. */ static Uncertain: ConstantStatusCode;
static GoodWithOverflowBit: StatusCode; /** An unexpected error occurred. */
/** The operation was uncertain. */
static Uncertain: ConstantStatusCode;
/** The operation failed. */
static Bad: ConstantStatusCode;
/** An unexpected error occurred. */
static BadUnexpectedError: ConstantStatusCode;

@@ -305,2 +307,4 @@ /** An internal error occurred as a result of a programming or configuration error. */

static BadSequenceNumberUnknown: ConstantStatusCode;
/** The Server does not support retransmission queue and acknowledgement of sequence numbers is not available. */
static GoodRetransmissionQueueNotSupported: ConstantStatusCode;
/** The requested notification message is no longer available. */

@@ -320,3 +324,3 @@ static BadMessageNotAvailable: ConstantStatusCode;

static BadTcpSecureChannelUnknown: ConstantStatusCode;
/** The size of the message specified in the header is too large. */
/** The size of the message chunk specified in the header is too large. */
static BadTcpMessageTooLarge: ConstantStatusCode;

@@ -435,2 +439,6 @@ /** There are not enough resources to process the request. */

static BadRequestNotComplete: ConstantStatusCode;
/** The device identity needs a ticket before it can be accepted. */
static BadTicketRequired: ConstantStatusCode;
/** The device identity needs a ticket before it can be accepted. */
static BadTicketInvalid: ConstantStatusCode;
/** The value does not come from the real source and has been edited by the server. */

@@ -450,2 +458,20 @@ static GoodEdited: ConstantStatusCode;

static BadDependentValueChanged: ConstantStatusCode;
/** It is delivered with a dominant Variable value when a dependent Variable has changed but the change has not been applied. */
static GoodEdited_DependentValueChanged: ConstantStatusCode;
/** It is delivered with a dependent Variable value when a dominant Variable has changed but the change has not been applied. */
static GoodEdited_DominantValueChanged: ConstantStatusCode;
/** It is delivered with a dependent Variable value when a dominant or dependent Variable has changed but change has not been applied. */
static GoodEdited_DominantValueChanged_DependentValueChanged: ConstantStatusCode;
/** It is delivered with a Variable value when Variable has changed but the value is not legal. */
static BadEdited_OutOfRange: ConstantStatusCode;
/** It is delivered with a Variable value when a source Variable has changed but the value is not legal. */
static BadInitialValue_OutOfRange: ConstantStatusCode;
/** It is delivered with a dependent Variable value when a dominant Variable has changed and the value is not legal. */
static BadOutOfRange_DominantValueChanged: ConstantStatusCode;
/** It is delivered with a dependent Variable value when a dominant Variable has changed, the value is not legal and the change has not been applied. */
static BadEdited_OutOfRange_DominantValueChanged: ConstantStatusCode;
/** It is delivered with a dependent Variable value when a dominant or dependent Variable has changed and the value is not legal. */
static BadOutOfRange_DominantValueChanged_DependentValueChanged: ConstantStatusCode;
/** It is delivered with a dependent Variable value when a dominant or dependent Variable has changed, the value is not legal and the change has not been applied. */
static BadEdited_OutOfRange_DominantValueChanged_DependentValueChanged: ConstantStatusCode;
/** The communication layer has raised an event. */

@@ -485,2 +511,3 @@ static GoodCommunicationEvent: ConstantStatusCode;

static BadMaxConnectionsReached: ConstantStatusCode;
static GoodWithOverflowBit: StatusCode;
}

4

dist/opcua_status_code.js

@@ -137,7 +137,7 @@ "use strict";

isNot(other) {
node_opcua_assert_1.assert(other instanceof StatusCode);
(0, node_opcua_assert_1.assert)(other instanceof StatusCode);
return this.value !== other.value;
}
equals(other) {
node_opcua_assert_1.assert(other instanceof StatusCode);
(0, node_opcua_assert_1.assert)(other instanceof StatusCode);
return this.value === other.value;

@@ -144,0 +144,0 @@ }

{
"name": "node-opcua-status-code",
"version": "2.42.0",
"version": "2.51.0",
"description": "pure nodejs OPCUA SDK - module -status-code",

@@ -13,7 +13,7 @@ "main": "./dist/index.js",

"dependencies": {
"node-opcua-assert": "2.42.0",
"node-opcua-constants": "2.42.0"
"node-opcua-assert": "2.51.0",
"node-opcua-constants": "2.51.0"
},
"devDependencies": {
"node-opcua-binary-stream": "2.42.0",
"node-opcua-binary-stream": "2.51.0",
"should": "^13.2.3"

@@ -36,3 +36,3 @@ },

"homepage": "http://node-opcua.github.io/",
"gitHead": "09c4530a94c3ff0529c94269d31088abecd7e144"
"gitHead": "75feb111daf7ec65fa0111e4fa5beb8987fd4945"
}

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