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

node-opcua-address-space-base

Package Overview
Dependencies
Maintainers
1
Versions
105
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.128.0 to 2.129.0

1

dist/base_node.d.ts

@@ -0,1 +1,2 @@

/// <reference types="node" />
import { EventEmitter } from "events";

@@ -2,0 +3,0 @@ export type Duration = number;

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const events_1 = require("events");
//# sourceMappingURL=base_node.js.map

12

dist/clone_helper.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CloneHelper = void 0;
exports.fullPath = fullPath;
exports.fullPath2 = fullPath2;
exports.exploreNode = exploreNode;
exports.reconstructNonHierarchicalReferences = reconstructNonHierarchicalReferences;
exports.reconstructFunctionalGroupType = reconstructFunctionalGroupType;
exports.reconstructFunctionalGroupType = exports.reconstructNonHierarchicalReferences = exports.CloneHelper = exports.exploreNode = exports.fullPath2 = exports.fullPath = void 0;
const node_opcua_assert_1 = require("node-opcua-assert");

@@ -32,2 +27,3 @@ const node_opcua_debug_1 = require("node-opcua-debug");

}
exports.fullPath = fullPath;
// istanbul ignore next

@@ -38,2 +34,3 @@ /** @private */

}
exports.fullPath2 = fullPath2;
// istanbul ignore next

@@ -68,2 +65,3 @@ /** @private */

}
exports.exploreNode = exploreNode;
//

@@ -328,2 +326,3 @@ // case 1:

}
exports.reconstructNonHierarchicalReferences = reconstructNonHierarchicalReferences;
/**

@@ -382,2 +381,3 @@ * recreate functional group types according to type definition

}
exports.reconstructFunctionalGroupType = reconstructFunctionalGroupType;
//# sourceMappingURL=clone_helper.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getContextMaxMessageSize = getContextMaxMessageSize;
exports.getContextMaxMessageSize = void 0;
function getContextMaxMessageSize(context) {

@@ -10,2 +10,3 @@ if (!context.session?.channel?.getTransportSettings)

}
exports.getContextMaxMessageSize = getContextMaxMessageSize;
//# sourceMappingURL=session_context.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//
const base_node_1 = require("./base_node");
//# sourceMappingURL=ua_method.js.map

@@ -0,1 +1,2 @@

/// <reference types="node" />
import { NodeId } from "node-opcua-nodeid";

@@ -2,0 +3,0 @@ import { DataType, Variant, VariantArrayType } from "node-opcua-variant";

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const base_node_1 = require("./base_node");
//# sourceMappingURL=ua_reference_type.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const base_node_1 = require("./base_node");
//# sourceMappingURL=ua_variable_type.js.map
{
"name": "node-opcua-address-space-base",
"version": "2.128.0",
"version": "2.129.0",
"description": "pure nodejs OPCUA SDK - module address-space-base",

@@ -22,5 +22,5 @@ "main": "./dist/index.js",

"node-opcua-constants": "2.125.0",
"node-opcua-crypto": "4.8.0",
"node-opcua-crypto": "4.9.2",
"node-opcua-data-model": "2.128.0",
"node-opcua-data-value": "2.128.0",
"node-opcua-data-value": "2.129.0",
"node-opcua-date-time": "2.128.0",

@@ -31,6 +31,6 @@ "node-opcua-debug": "2.128.0",

"node-opcua-numeric-range": "2.128.0",
"node-opcua-schemas": "2.128.0",
"node-opcua-schemas": "2.129.0",
"node-opcua-status-code": "2.128.0",
"node-opcua-types": "2.128.0",
"node-opcua-variant": "2.128.0"
"node-opcua-types": "2.129.0",
"node-opcua-variant": "2.129.0"
},

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

"homepage": "http://node-opcua.github.io/",
"gitHead": "67a73af6b831d8651a0e66ceb295f159cab4386b",
"gitHead": "8a1754350fb95a764e278d37a289f0c48ccb8c9d",
"files": [

@@ -55,0 +55,0 @@ "dist",

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

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

@@ -202,9 +202,3 @@ import { assert } from "node-opcua-assert";

doTrace &&
traceLog(
"push context: ",
"original parent = ",
fullPath2(originalParent),
"cloned parent =",
fullPath2(clonedParent)
);
traceLog("push context: ", "original parent = ", fullPath2(originalParent), "cloned parent =", fullPath2(clonedParent));

@@ -241,9 +235,3 @@ const typeInstance = originalParent.nodeId.toString() + clonedParent.nodeId.toString();

doTrace &&
traceLog(
"registerClonedObject",
"originalNode = ",
fullPath2(originalNode),
"clonedNode =",
fullPath2(clonedNode)
);
traceLog("registerClonedObject", "originalNode = ", fullPath2(originalNode), "clonedNode =", fullPath2(clonedNode));

@@ -467,3 +455,3 @@ const insertShadow = (map: Map<string, CloneInfo>) => {

if(folder.typeDefinitionObj.browseName.name!.toString() !== "FunctionalGroupType") {
if (folder.typeDefinitionObj.browseName.name!.toString() !== "FunctionalGroupType") {
continue;

@@ -470,0 +458,0 @@ }

@@ -37,3 +37,3 @@ import { NodeId, NodeIdLike } from "node-opcua-nodeid";

popContext(): void;
registerClonedObject(params: { clonedNode: BaseNode; originalNode: BaseNode }): void;

@@ -40,0 +40,0 @@ getCloned(params: {

@@ -6,3 +6,2 @@ import { NodeId } from "node-opcua-nodeid";

export interface IEventData {

@@ -9,0 +8,0 @@ /**

@@ -24,2 +24,2 @@ export * from "./address_space";

export * from "./ua_variable";
export * from "./ua_view";
export * from "./ua_view";

@@ -45,4 +45,4 @@ import { NodeClass } from "node-opcua-data-model";

getStructureDefinition(): StructureDefinition;
isEnumeration(): boolean;
isEnumeration(): boolean;
getEnumDefinition(): EnumDefinition;

@@ -49,0 +49,0 @@

@@ -9,3 +9,3 @@ import { QualifiedName } from "node-opcua-data-model";

// {{ Dynamic Array Variable
export interface UADynamicVariableArray<T extends ExtensionObject= ExtensionObject> extends UAVariable {
export interface UADynamicVariableArray<T extends ExtensionObject = ExtensionObject> extends UAVariable {
$dataValue: DataValue;

@@ -12,0 +12,0 @@ $$variableType: UAVariableType;

@@ -23,3 +23,3 @@ import { NodeClass } from "node-opcua-data-model";

inputArguments: Variant[],
context: ISessionContext,
context: ISessionContext
) => Promise<CallMethodResultOptions>;

@@ -26,0 +26,0 @@

@@ -11,3 +11,3 @@ import { NodeId } from "node-opcua-nodeid";

import { IEventData } from "./i_event_data";
import { UAEventType} from "./ua_event_type";
import { UAEventType } from "./ua_event_type";
import { UAMethod } from "./ua_method";

@@ -158,3 +158,2 @@ import { EventNotifierFlags } from "./event_notifier_flags";

export interface UAObject extends BaseNode, EventRaiser, IPropertyAndComponentHolder {

@@ -161,0 +160,0 @@ readonly nodeClass: NodeClass.Object;

@@ -100,3 +100,3 @@ import { AttributeIds, CallbackT, DataType, PreciseClock, StatusCode, StatusCodeCallback, UInt32 } from "node-opcua-basic-types";

getBasicDataType(): DataType;
/**

@@ -103,0 +103,0 @@ * The **AccessLevel Attribute** is used to indicate how the Value of a Variable can be accessed

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

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