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

node-opcua-extension-object

Package Overview
Dependencies
Maintainers
1
Versions
185
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-opcua-extension-object - npm Package Compare versions

Comparing version 2.55.0 to 2.56.0

2

dist/extension_object.d.ts

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

static schema: StructuredTypeSchema;
constructor(options: any);
constructor(options?: null | Record<string, any>);
}

@@ -10,0 +10,0 @@ export declare function encodeExtensionObject(object: BaseUAObject | null, stream: OutputBinaryStream): void;

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

constructor(nodeId, buffer) {
super({});
super();
this.nodeId = nodeId;

@@ -107,0 +107,0 @@ this.buffer = buffer;

{
"name": "node-opcua-extension-object",
"version": "2.55.0",
"version": "2.56.0",
"description": "pure nodejs OPCUA SDK - module -extension-object",

@@ -9,3 +9,4 @@ "main": "./dist/index.js",

"build": "tsc -b",
"lint": "eslint source/**/*.ts",
"lint": "eslint source",
"format": "prettier --write source",
"clean": "node -e \"require('rimraf').sync('dist');\"",

@@ -17,6 +18,6 @@ "test": "echo no test"

"node-opcua-assert": "2.55.0",
"node-opcua-basic-types": "2.55.0",
"node-opcua-basic-types": "2.56.0",
"node-opcua-binary-stream": "2.55.0",
"node-opcua-debug": "2.55.0",
"node-opcua-factory": "2.55.0",
"node-opcua-factory": "2.56.0",
"node-opcua-nodeid": "2.55.0"

@@ -39,3 +40,3 @@ },

"homepage": "http://node-opcua.github.io/",
"gitHead": "28fdbfe1c5306fd0e69758ccacfa2c6d1722115c"
"gitHead": "9f6eac1c658c0d182fbe03cf58f799af468615eb"
}

@@ -23,3 +23,3 @@ /**

constructor(options: any) {
constructor(options?: null | Record<string, any>) {
super();

@@ -114,10 +114,9 @@ }

export class OpaqueStructure extends ExtensionObject {
// the nodeId is the same as the encodingDefaultBinary
public nodeId: NodeId;
public buffer: Buffer;
constructor(nodeId: NodeId, buffer: Buffer) {
super({});
super();
this.nodeId = nodeId;

@@ -124,0 +123,0 @@ this.buffer = buffer;

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