node-opcua-basic-types
Advanced tools
Comparing version 2.60.0 to 2.61.0
@@ -29,3 +29,2 @@ export declare enum AttributeIds { | ||
AccessLevelEx = 27, | ||
LAST = 27, | ||
INVALID = 999 | ||
@@ -32,0 +31,0 @@ } |
@@ -34,5 +34,5 @@ "use strict"; | ||
AttributeIds[AttributeIds["AccessLevelEx"] = 27] = "AccessLevelEx"; | ||
AttributeIds[AttributeIds["LAST"] = 27] = "LAST"; | ||
AttributeIds[AttributeIds["INVALID"] = 999] = "INVALID"; | ||
})(AttributeIds = exports.AttributeIds || (exports.AttributeIds = {})); | ||
const AttributeIds_LAST = AttributeIds.AccessLevelEx; | ||
// see https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore/issues/296 | ||
@@ -47,5 +47,5 @@ function invert(a) { | ||
function isValidAttributeId(attributeId) { | ||
return attributeId >= 1 && attributeId <= AttributeIds.LAST; | ||
return attributeId >= 1 && attributeId <= AttributeIds_LAST; | ||
} | ||
exports.isValidAttributeId = isValidAttributeId; | ||
//# sourceMappingURL=attributeIds.js.map |
{ | ||
"name": "node-opcua-basic-types", | ||
"version": "2.60.0", | ||
"version": "2.61.0", | ||
"description": "pure nodejs OPCUA SDK - module -basic-types", | ||
@@ -17,6 +17,6 @@ "main": "./dist/index.js", | ||
"node-opcua-buffer-utils": "2.55.0", | ||
"node-opcua-date-time": "2.60.0", | ||
"node-opcua-date-time": "2.61.0", | ||
"node-opcua-enum": "2.55.0", | ||
"node-opcua-guid": "2.55.0", | ||
"node-opcua-nodeid": "2.60.0", | ||
"node-opcua-nodeid": "2.61.0", | ||
"node-opcua-status-code": "2.56.0", | ||
@@ -28,3 +28,3 @@ "node-opcua-utils": "2.60.0" | ||
"node-opcua-benchmarker": "2.55.0", | ||
"node-opcua-debug": "2.60.0", | ||
"node-opcua-debug": "2.61.0", | ||
"should": "^13.2.3" | ||
@@ -47,3 +47,3 @@ }, | ||
"homepage": "http://node-opcua.github.io/", | ||
"gitHead": "56dc8584b9118ee2f3bfb0b2e9d456b609ccbac8" | ||
"gitHead": "dd8776f047686ca791989f27e11ee48bfd8b61b7" | ||
} |
@@ -35,5 +35,5 @@ /** | ||
AccessLevelEx = 27, | ||
LAST = 27, | ||
INVALID = 999 | ||
} | ||
const AttributeIds_LAST = AttributeIds.AccessLevelEx; | ||
@@ -50,3 +50,3 @@ // see https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore/issues/296 | ||
export function isValidAttributeId(attributeId: number): boolean { | ||
return attributeId >= 1 && attributeId <= AttributeIds.LAST; | ||
return attributeId >= 1 && attributeId <= AttributeIds_LAST; | ||
} |
Sorry, the diff of this file is not supported yet
112783
2149
+ Addednode-opcua-date-time@2.61.0(transitive)
+ Addednode-opcua-nodeid@2.61.0(transitive)
- Removednode-opcua-date-time@2.60.0(transitive)
- Removednode-opcua-nodeid@2.60.0(transitive)
Updatednode-opcua-date-time@2.61.0
Updatednode-opcua-nodeid@2.61.0