New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

node-opcua-data-model

Package Overview
Dependencies
Maintainers
1
Versions
191
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-opcua-data-model - npm Package Compare versions

Comparing version 2.57.0 to 2.60.0

2

dist/access_level_ex.d.ts

@@ -26,2 +26,4 @@ import { BinaryStream, OutputBinaryStream } from "node-opcua-binary-stream";

NoSubDataTypes = 1024,
NonVolatile = 2048,
Constant = 4096,
None = 2048

@@ -28,0 +30,0 @@ }

@@ -33,2 +33,5 @@ "use strict";

AccessLevelExFlag[AccessLevelExFlag["NoSubDataTypes"] = 1024] = "NoSubDataTypes";
// new in 1.5.1
AccessLevelExFlag[AccessLevelExFlag["NonVolatile"] = 2048] = "NonVolatile";
AccessLevelExFlag[AccessLevelExFlag["Constant"] = 4096] = "Constant";
// Reserved for future use. Shall always be zero.

@@ -35,0 +38,0 @@ AccessLevelExFlag[AccessLevelExFlag["None"] = 2048] = "None";

16

package.json
{
"name": "node-opcua-data-model",
"version": "2.57.0",
"version": "2.60.0",
"description": "pure nodejs OPCUA SDK - module -data-model",

@@ -17,14 +17,14 @@ "scripts": {

"node-opcua-assert": "2.55.0",
"node-opcua-basic-types": "2.57.0",
"node-opcua-basic-types": "2.60.0",
"node-opcua-binary-stream": "2.55.0",
"node-opcua-enum": "2.55.0",
"node-opcua-factory": "2.57.0",
"node-opcua-nodeid": "2.55.0",
"node-opcua-factory": "2.60.0",
"node-opcua-nodeid": "2.60.0",
"node-opcua-status-code": "2.56.0",
"node-opcua-utils": "2.57.0"
"node-opcua-utils": "2.60.0"
},
"devDependencies": {
"node-opcua-packet-analyzer": "2.57.0",
"node-opcua-packet-analyzer": "2.60.0",
"should": "^13.2.3",
"source-map-support": "^0.5.20"
"source-map-support": "^0.5.21"
},

@@ -46,3 +46,3 @@ "author": "Etienne Rossignon",

"homepage": "http://node-opcua.github.io/",
"gitHead": "cb6a995ab35ea6231ffca85fbd0b624fe37119d2"
"gitHead": "56dc8584b9118ee2f3bfb0b2e9d456b609ccbac8"
}

@@ -30,3 +30,7 @@ import { BinaryStream, OutputBinaryStream } from "node-opcua-binary-stream";

WriteFullArrayOnly = 0x200, // bit 10 Indicates if Write of IndexRange is supported.(0 means Write of IndexRange is supported)
NoSubDataTypes = 0x400, // bit 11
NoSubDataTypes = 0x400, // bit 11 Indicates if the Variable doesn’t allow its DataType to be subtyped (0 means the Variable accepts the defined DataType and subtypes of that DataType)
// new in 1.5.1
NonVolatile = 0x800, // bit 12 Indicates if the Variable is non-volatile (0 means it is volatile or not known to be, 1 means non-volatile
Constant = 0x1000, // bit 13 Indicates if the Value of the Variable can be considered constant (0 means the Value is not constant, 1 means the Value is constant)
// Reserved for future use. Shall always be zero.

@@ -33,0 +37,0 @@ None = 0x800

Sorry, the diff of this file is not supported yet

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