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

node-opcua-basic-types

Package Overview
Dependencies
Maintainers
1
Versions
171
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-opcua-basic-types - npm Package Compare versions

Comparing version 2.60.0 to 2.61.0

1

dist/attributeIds.d.ts

@@ -29,3 +29,2 @@ export declare enum AttributeIds {

AccessLevelEx = 27,
LAST = 27,
INVALID = 999

@@ -32,0 +31,0 @@ }

4

dist/attributeIds.js

@@ -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

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