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

node-opcua-factory

Package Overview
Dependencies
Maintainers
1
Versions
183
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-opcua-factory - npm Package Compare versions

Comparing version 2.69.0 to 2.70.0

13

dist/factories_structuredTypeSchema.js

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

10

package.json
{
"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

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