New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

node-opcua-address-space-base

Package Overview
Dependencies
Maintainers
1
Versions
109
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-opcua-address-space-base - npm Package Compare versions

Comparing version 2.108.0 to 2.109.0

3

dist/base_node.d.ts

@@ -187,3 +187,4 @@ /// <reference types="node" />

getAggregates(): BaseNode[];
setDescription(description: LocalizedTextLike): void;
setDisplayName(value: LocalizedTextLike[] | LocalizedTextLike): void;
setDescription(value: LocalizedTextLike | null): void;
}
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });

@@ -12,3 +9,2 @@ exports.reconstructFunctionalGroupType = exports.reconstructNonHierarchicalReferences = exports.CloneHelper = exports.exploreNode = exports.fullPath2 = exports.fullPath = void 0;

const node_opcua_constants_1 = require("node-opcua-constants");
const chalk_1 = __importDefault(require("chalk"));
const warningLog = (0, node_opcua_debug_1.make_warningLog)("CLONE");

@@ -171,3 +167,3 @@ const errorLog = (0, node_opcua_debug_1.make_errorLog)(__filename);

doTrace &&
traceLog(chalk_1.default.yellow("push context: "), "original parent = ", fullPath2(originalParent), "cloned parent =", fullPath2(clonedParent));
traceLog("push context: ", "original parent = ", fullPath2(originalParent), "cloned parent =", fullPath2(clonedParent));
const typeInstance = originalParent.nodeId.toString() + clonedParent.nodeId.toString();

@@ -197,3 +193,3 @@ // istanbul ignore next

doTrace &&
traceLog(chalk_1.default.yellow("registerClonedObject"), "originalNode = ", fullPath2(originalNode), "clonedNode =", fullPath2(clonedNode));
traceLog("registerClonedObject", "originalNode = ", fullPath2(originalNode), "clonedNode =", fullPath2(clonedNode));
const insertShadow = (map) => {

@@ -298,3 +294,3 @@ const { parentType, path } = _get_parent_type_and_path(originalNode);

// istanbul ignore next
doTrace && traceLog(chalk_1.default.yellow("reconstructNonHierarchicalReferences"));
doTrace && traceLog("reconstructNonHierarchicalReferences");
for (const { original, cloned } of cloneInfoArray) {

@@ -301,0 +297,0 @@ apply(original, cloned);

{
"name": "node-opcua-address-space-base",
"version": "2.108.0",
"version": "2.109.0",
"description": "pure nodejs OPCUA SDK - module address-space-base",

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

"node-opcua-assert": "2.105.0",
"node-opcua-basic-types": "2.108.0",
"node-opcua-basic-types": "2.109.0",
"node-opcua-constants": "2.98.1",
"node-opcua-crypto": "3.1.0",
"node-opcua-data-model": "2.108.0",
"node-opcua-data-value": "2.108.0",
"node-opcua-date-time": "2.108.0",
"node-opcua-debug": "2.108.0",
"node-opcua-extension-object": "2.108.0",
"node-opcua-nodeid": "2.108.0",
"node-opcua-numeric-range": "2.108.0",
"node-opcua-schemas": "2.108.0",
"node-opcua-status-code": "2.108.0",
"node-opcua-types": "2.108.0",
"node-opcua-variant": "2.108.0"
"node-opcua-crypto": "4.1.0",
"node-opcua-data-model": "2.109.0",
"node-opcua-data-value": "2.109.0",
"node-opcua-date-time": "2.109.0",
"node-opcua-debug": "2.109.0",
"node-opcua-extension-object": "2.109.0",
"node-opcua-nodeid": "2.109.0",
"node-opcua-numeric-range": "2.109.0",
"node-opcua-schemas": "2.109.0",
"node-opcua-status-code": "2.109.0",
"node-opcua-types": "2.109.0",
"node-opcua-variant": "2.109.0"
},

@@ -51,3 +51,3 @@ "author": "Etienne Rossignon",

"homepage": "http://node-opcua.github.io/",
"gitHead": "dc706ceab443d98df06b0d5e808daf998d6c7708",
"gitHead": "50cfa07779d4c07b299176ac9c27527fcd97d079",
"files": [

@@ -54,0 +54,0 @@ "dist",

@@ -259,3 +259,4 @@ import { EventEmitter } from "events";

setDescription(description: LocalizedTextLike): void;
public setDisplayName(value: LocalizedTextLike[] | LocalizedTextLike): void;
public setDescription(value: LocalizedTextLike| null): void;
}

@@ -6,5 +6,2 @@ import { assert } from "node-opcua-assert";

import { ReferenceTypeIds } from "node-opcua-constants";
import chalk from "chalk";
import { UAObject } from "./ua_object";

@@ -207,3 +204,3 @@ import { UAVariable } from "./ua_variable";

traceLog(
chalk.yellow("push context: "),
"push context: ",
"original parent = ",

@@ -246,3 +243,3 @@ fullPath2(originalParent),

traceLog(
chalk.yellow("registerClonedObject"),
"registerClonedObject",
"originalNode = ",

@@ -389,3 +386,3 @@ fullPath2(originalNode),

// istanbul ignore next
doTrace && traceLog(chalk.yellow("reconstructNonHierarchicalReferences"));
doTrace && traceLog("reconstructNonHierarchicalReferences");

@@ -392,0 +389,0 @@ for (const { original, cloned } of cloneInfoArray) {

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