node-opcua-factory
Advanced tools
Comparing version 2.69.0 to 2.70.0
@@ -61,2 +61,8 @@ "use strict"; | ||
returnValue = (0, factories_builtin_types_1.getBuildInType)(fieldTypeWithoutNS); | ||
if (!returnValue) { | ||
returnValue = (0, factories_factories_1.getStructuredTypeSchema)(fieldTypeWithoutNS); | ||
if (returnValue) { | ||
console.log("Why ?"); | ||
} | ||
} | ||
break; | ||
@@ -68,3 +74,8 @@ case types_1.FieldCategory.enumeration: | ||
if (null === returnValue || undefined === returnValue) { | ||
returnValue = (0, factories_enumerations_1.getEnumeration)(fieldTypeWithoutNS); | ||
try { | ||
returnValue = (0, factories_enumerations_1.getEnumeration)(fieldTypeWithoutNS); | ||
} | ||
catch (err) { | ||
console.log(err); | ||
} | ||
throw new Error("Cannot find Schema for field with name " + | ||
@@ -71,0 +82,0 @@ field.name + |
{ | ||
"name": "node-opcua-factory", | ||
"version": "2.69.0", | ||
"version": "2.70.0", | ||
"description": "pure nodejs OPCUA SDK - module -factory", | ||
@@ -17,3 +17,3 @@ "main": "./dist/index.js", | ||
"node-opcua-assert": "2.66.0", | ||
"node-opcua-basic-types": "2.69.0", | ||
"node-opcua-basic-types": "2.70.0", | ||
"node-opcua-binary-stream": "2.69.0", | ||
@@ -23,4 +23,4 @@ "node-opcua-debug": "2.69.0", | ||
"node-opcua-guid": "2.66.0", | ||
"node-opcua-nodeid": "2.69.0", | ||
"node-opcua-status-code": "2.69.0", | ||
"node-opcua-nodeid": "2.70.0", | ||
"node-opcua-status-code": "2.70.0", | ||
"node-opcua-utils": "2.69.0" | ||
@@ -43,3 +43,3 @@ }, | ||
"homepage": "http://node-opcua.github.io/", | ||
"gitHead": "6c88d05e8c82ce4bc9c8af9f0a8eb6136f31d2ce" | ||
"gitHead": "3b692ffb3e2ef0542da32f349fb0c76b3acc75ce" | ||
} |
@@ -73,2 +73,8 @@ /** | ||
returnValue = getBuildInType(fieldTypeWithoutNS); | ||
if(!returnValue) { | ||
returnValue = getStructuredTypeSchema(fieldTypeWithoutNS); | ||
if (returnValue) { | ||
console.log("Why ?"); | ||
} | ||
} | ||
break; | ||
@@ -80,3 +86,8 @@ case FieldCategory.enumeration: | ||
if (null === returnValue || undefined === returnValue) { | ||
returnValue = getEnumeration(fieldTypeWithoutNS); | ||
try { | ||
returnValue = getEnumeration(fieldTypeWithoutNS); | ||
} | ||
catch(err){ | ||
console.log(err); | ||
} | ||
throw new Error( | ||
@@ -83,0 +94,0 @@ "Cannot find Schema for field with name " + |
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
241105
4473
+ Addednode-opcua-basic-types@2.70.0(transitive)
+ Addednode-opcua-constants@2.70.0(transitive)
+ Addednode-opcua-nodeid@2.70.0(transitive)
+ Addednode-opcua-status-code@2.70.0(transitive)
- Removednode-opcua-basic-types@2.69.0(transitive)
- Removednode-opcua-constants@2.67.0(transitive)
- Removednode-opcua-nodeid@2.69.0(transitive)
- Removednode-opcua-status-code@2.69.0(transitive)
Updatednode-opcua-nodeid@2.70.0