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.3.0 to 2.4.0

0

dist/access_level.d.ts

@@ -0,0 +0,0 @@ export declare enum AccessLevelFlag {

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ export declare enum AttributeIds {

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ /**

6

dist/BrowseDirection.js

@@ -20,3 +20,7 @@ "use strict";

function decodeBrowseDirection(stream) {
return stream.readUInt32();
let value = stream.readUInt32();
if (value < 0 || value > 3 || Number.isNaN(value)) {
value = BrowseDirection.Invalid;
}
return value;
}

@@ -23,0 +27,0 @@ exports.decodeBrowseDirection = decodeBrowseDirection;

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ import { BinaryStream, OutputBinaryStream } from "node-opcua-binary-stream";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ import { LocaleId, UAString } from "node-opcua-basic-types";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ export declare enum NodeClass {

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ import { BaseUAObject, StructuredTypeSchema } from "node-opcua-factory";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

12

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

@@ -14,13 +14,13 @@ "scripts": {

"node-opcua-assert": "^2.3.0",
"node-opcua-basic-types": "^2.3.0",
"node-opcua-basic-types": "^2.4.0",
"node-opcua-binary-stream": "^2.3.0",
"node-opcua-enum": "^2.3.0",
"node-opcua-factory": "^2.3.0",
"node-opcua-factory": "^2.4.0",
"node-opcua-nodeid": "^2.3.0",
"node-opcua-status-code": "^2.3.0",
"node-opcua-utils": "^2.3.0",
"node-opcua-utils": "^2.4.0",
"underscore": "^1.9.1"
},
"devDependencies": {
"node-opcua-packet-analyzer": "^2.3.0",
"node-opcua-packet-analyzer": "^2.4.0",
"should": "13.2.3",

@@ -44,3 +44,3 @@ "source-map-support": "^0.5.16"

"homepage": "http://node-opcua.github.io/",
"gitHead": "3fc22180b26cd0d0481e57e7bb6a2cab7623e6d1"
"gitHead": "21f5967e799ef2b4d6491b8fc670964127c11431"
}

@@ -0,0 +0,0 @@ // tslint:disable:no-bitwise

@@ -0,0 +0,0 @@ /**

@@ -35,5 +35,9 @@ /**

return stream.readUInt32() as BrowseDirection;
let value = stream.readUInt32();
if (value < 0 || value > 3 || Number.isNaN(value)) {
value = BrowseDirection.Invalid;
}
return value as BrowseDirection;
}
export const _enumerationBrowseDirection: Enum = registerEnumeration(schemaBrowseDirection);

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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