node-opcua-data-model
Advanced tools
Comparing version 2.57.0 to 2.60.0
@@ -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"; |
{ | ||
"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
152408
2857
+ Added@types/lodash@4.14.177(transitive)
+ Addednode-opcua-basic-types@2.60.0(transitive)
+ Addednode-opcua-date-time@2.60.0(transitive)
+ Addednode-opcua-debug@2.60.0(transitive)
+ Addednode-opcua-factory@2.60.0(transitive)
+ Addednode-opcua-nodeid@2.60.0(transitive)
+ Addednode-opcua-utils@2.60.0(transitive)
- Removed@types/lodash@4.14.174(transitive)
- Removednode-opcua-basic-types@2.57.0(transitive)
- Removednode-opcua-date-time@2.55.0(transitive)
- Removednode-opcua-debug@2.55.0(transitive)
- Removednode-opcua-factory@2.57.0(transitive)
- Removednode-opcua-nodeid@2.55.0(transitive)
- Removednode-opcua-utils@2.57.0(transitive)
Updatednode-opcua-factory@2.60.0
Updatednode-opcua-nodeid@2.60.0
Updatednode-opcua-utils@2.60.0