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

node-opcua-schemas

Package Overview
Dependencies
Maintainers
1
Versions
215
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-opcua-schemas - npm Package Compare versions

Comparing version 2.104.0 to 2.105.0

7

dist/source/dynamic_extension_object.js

@@ -539,3 +539,3 @@ "use strict";

else {
console.log(this.schema);
debugLog(this.schema);
throw new Error(this.schema.name + ": At least one of [ " + r + " ] must be specified in " + JSON.stringify(options));

@@ -681,3 +681,3 @@ }

catch (err) {
console.log("createDynamicObjectConstructor err= ", err.message);
warningLog("createDynamicObjectConstructor err= ", err.message);
}

@@ -719,2 +719,5 @@ }

exports.createDynamicObjectConstructor = createDynamicObjectConstructor;
function warningLog(arg0, message) {
throw new Error("Function not implemented.");
}
//# sourceMappingURL=dynamic_extension_object.js.map

@@ -30,3 +30,2 @@ "use strict";

l.push(`export enum ${e.name} {`);
// console.log((e.typedEnum as any).enumItems);
for (const v of Object.entries(e.enumValues)) {

@@ -33,0 +32,0 @@ const vv = parseInt(v[0], 10);

{
"name": "node-opcua-schemas",
"version": "2.104.0",
"version": "2.105.0",
"description": "pure nodejs OPCUA SDK - module schemas",

@@ -16,16 +16,16 @@ "main": "dist/source/index.js",

"chalk": "4.1.2",
"node-opcua-assert": "2.104.0",
"node-opcua-binary-stream": "2.104.0",
"node-opcua-debug": "2.104.0",
"node-opcua-extension-object": "2.104.0",
"node-opcua-factory": "2.104.0",
"node-opcua-nodeid": "2.104.0",
"node-opcua-variant": "2.104.0",
"node-opcua-xml2json": "2.104.0"
"node-opcua-assert": "2.105.0",
"node-opcua-binary-stream": "2.105.0",
"node-opcua-debug": "2.105.0",
"node-opcua-extension-object": "2.105.0",
"node-opcua-factory": "2.105.0",
"node-opcua-nodeid": "2.105.0",
"node-opcua-variant": "2.105.0",
"node-opcua-xml2json": "2.105.0"
},
"devDependencies": {
"mocha": "^10.2.0",
"node-opcua-data-model": "2.104.0",
"node-opcua-packet-analyzer": "2.104.0",
"node-opcua-utils": "2.104.0",
"node-opcua-data-model": "2.105.0",
"node-opcua-packet-analyzer": "2.105.0",
"node-opcua-utils": "2.105.0",
"should": "^13.2.3"

@@ -48,3 +48,3 @@ },

"homepage": "http://node-opcua.github.io/",
"gitHead": "3cd6d355e8b3c66822d08a3ca682659ea5d1a55d",
"gitHead": "41c30f321debfe92128905d97a52426b9d7f9b9e",
"files": [

@@ -51,0 +51,0 @@ "dist",

@@ -652,3 +652,3 @@ /**

} else {
console.log(this.schema);
debugLog(this.schema);
throw new Error(

@@ -828,3 +828,3 @@ this.schema.name + ": At least one of [ " + r + " ] must be specified in " + JSON.stringify(options)

} catch (err) {
console.log("createDynamicObjectConstructor err= ", (err as Error).message);
warningLog("createDynamicObjectConstructor err= ", (err as Error).message);
}

@@ -871,1 +871,5 @@ }

}
function warningLog(arg0: string, message: string) {
throw new Error("Function not implemented.");
}

@@ -37,3 +37,2 @@ import {

l.push(`export enum ${e.name} {`);
// console.log((e.typedEnum as any).enumItems);
for (const v of Object.entries(e.enumValues as any)) {

@@ -56,3 +55,3 @@ const vv = parseInt(v[0], 10);

alreadyDone.add(o.name);
const ex1 = bt ? `extends ${bt.name} ` : "";
const ex1 = bt ? `extends ${bt.name} ` : "";

@@ -59,0 +58,0 @@ if (o.baseType === "Union") {

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