node-opcua-basic-types
Advanced tools
Comparing version 2.55.0 to 2.56.0
@@ -46,5 +46,5 @@ "use strict"; | ||
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.55.0", | ||
"version": "2.56.0", | ||
"description": "pure nodejs OPCUA SDK - module -basic-types", | ||
@@ -21,4 +21,4 @@ "main": "./dist/index.js", | ||
"node-opcua-nodeid": "2.55.0", | ||
"node-opcua-status-code": "2.55.0", | ||
"node-opcua-utils": "2.55.0" | ||
"node-opcua-status-code": "2.56.0", | ||
"node-opcua-utils": "2.56.0" | ||
}, | ||
@@ -46,3 +46,3 @@ "devDependencies": { | ||
"homepage": "http://node-opcua.github.io/", | ||
"gitHead": "28fdbfe1c5306fd0e69758ccacfa2c6d1722115c" | ||
"gitHead": "9f6eac1c658c0d182fbe03cf58f799af468615eb" | ||
} |
@@ -49,3 +49,3 @@ /** | ||
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
113036
+ Addednode-opcua-status-code@2.56.0(transitive)
+ Addednode-opcua-utils@2.56.0(transitive)
- Removednode-opcua-status-code@2.55.0(transitive)
- Removednode-opcua-utils@2.55.0(transitive)
Updatednode-opcua-utils@2.56.0