node-opcua-data-model
Advanced tools
Comparing version 2.3.0 to 2.4.0
@@ -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 @@ /** |
@@ -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"; |
{ | ||
"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
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
276549
2241
Updatednode-opcua-factory@^2.4.0
Updatednode-opcua-utils@^2.4.0