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

node-opcua-extension-object

Package Overview
Dependencies
Maintainers
1
Versions
184
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.72.1 to 2.73.0

4

dist/extension_object.d.ts
/// <reference types="node" />
import { BinaryStream, OutputBinaryStream } from "node-opcua-binary-stream";
import { BaseUAObject, StructuredTypeSchema } from "node-opcua-factory";
import { BaseUAObject, IStructuredTypeSchema } from "node-opcua-factory";
import { NodeId } from "node-opcua-nodeid";
export declare class ExtensionObject extends BaseUAObject {
static schema: StructuredTypeSchema;
static schema: IStructuredTypeSchema;
constructor(options?: null | Record<string, any>);

@@ -8,0 +8,0 @@ }

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

@@ -17,6 +17,6 @@ "main": "./dist/index.js",

"node-opcua-assert": "2.66.0",
"node-opcua-basic-types": "2.72.1",
"node-opcua-binary-stream": "2.71.0",
"node-opcua-basic-types": "2.73.0",
"node-opcua-binary-stream": "2.73.0",
"node-opcua-debug": "2.71.0",
"node-opcua-factory": "2.72.1",
"node-opcua-factory": "2.73.0",
"node-opcua-nodeid": "2.71.0"

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

"homepage": "http://node-opcua.github.io/",
"gitHead": "ba98dd91a9eada9815268c66c98ca5391bc884e7"
"gitHead": "b23a87c1ef777c0d8b680f45ee77e2a319feb092"
}

@@ -7,3 +7,3 @@ /**

import { checkDebugFlag, hexDump, make_debugLog, make_warningLog } from "node-opcua-debug";
import { BaseUAObject, constructObject, is_internal_id, registerBuiltInType, StructuredTypeSchema } from "node-opcua-factory";
import { BaseUAObject, constructObject, IStructuredTypeSchema, is_internal_id, registerBuiltInType, StructuredTypeSchema } from "node-opcua-factory";
import { ExpandedNodeId, makeNodeId, NodeId } from "node-opcua-nodeid";

@@ -18,3 +18,3 @@

export class ExtensionObject extends BaseUAObject {
public static schema: StructuredTypeSchema = new StructuredTypeSchema({
public static schema: IStructuredTypeSchema = new StructuredTypeSchema({
baseType: "",

@@ -34,3 +34,3 @@ documentation: "",

function constructEmptyExtensionObject(expandedNodeId: NodeId): ExtensionObject {
return constructObject(expandedNodeId as ExpandedNodeId);
return constructObject(expandedNodeId as ExpandedNodeId) as ExtensionObject;
}

@@ -37,0 +37,0 @@

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