Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

node-opcua-data-model

Package Overview
Dependencies
Maintainers
1
Versions
190
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.120.0 to 2.121.0

1

dist/qualified_name.d.ts

@@ -28,2 +28,3 @@ import { BaseUAObject, IStructuredTypeSchema } from "node-opcua-factory";

isEmpty(): boolean;
equals(other: QualifiedName): boolean;
}

@@ -30,0 +31,0 @@ export type QualifiedNameLike = QualifiedNameOptions | string;

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

}
equals(other) {
return this.name === other.name && this.namespaceIndex === other.namespaceIndex;
}
}

@@ -74,0 +77,0 @@ exports.QualifiedName = QualifiedName;

14

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

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

"node-opcua-assert": "2.120.0",
"node-opcua-basic-types": "2.120.0",
"node-opcua-basic-types": "2.121.0",
"node-opcua-binary-stream": "2.120.0",
"node-opcua-enum": "2.120.0",
"node-opcua-factory": "2.120.0",
"node-opcua-nodeid": "2.120.0",
"node-opcua-status-code": "2.120.0"
"node-opcua-factory": "2.121.0",
"node-opcua-nodeid": "2.121.0",
"node-opcua-status-code": "2.121.0"
},
"devDependencies": {
"node-opcua-packet-analyzer": "2.120.0",
"node-opcua-packet-analyzer": "2.121.0",
"should": "^13.2.3"

@@ -44,3 +44,3 @@ },

"homepage": "http://node-opcua.github.io/",
"gitHead": "f4ae243bb61ba7af4c019a3cfe76dfc0f6427983",
"gitHead": "ba93a78eda343ecc0cc20476837347f6dfa259e0",
"files": [

@@ -47,0 +47,0 @@ "dist",

@@ -101,2 +101,6 @@ /**

}
public equals(other: QualifiedName) {
return this.name === other.name && this.namespaceIndex === other.namespaceIndex;
}
}

@@ -103,0 +107,0 @@

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