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

node-opcua-factory

Package Overview
Dependencies
Maintainers
1
Versions
183
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-opcua-factory - npm Package Compare versions

Comparing version 2.85.0 to 2.86.0

4

dist/base_ua_object.js

@@ -227,4 +227,4 @@ "use strict";

else {
const _hexDump1 = value.slice(0, 16).toString("hex");
const _hexDump2 = value.slice(-16).toString("hex");
const _hexDump1 = value.subarray(0, 16).toString("hex");
const _hexDump2 = value.subarray(-16).toString("hex");
data.lines.push("Buffer: ", _hexDump1 + "..." + _hexDump2);

@@ -231,0 +231,0 @@ }

@@ -43,3 +43,3 @@ /**

}
export declare type Func1<T> = (value: any, field: StructuredTypeField, data: T, args?: any) => void;
export type Func1<T> = (value: any, field: StructuredTypeField, data: T, args?: any) => void;
export interface DecodeDebugOptions {

@@ -62,4 +62,4 @@ tracer: any;

}
declare type BaseUAObjectConstructable = new (options?: Record<string, unknown>) => IBaseUAObject;
export declare type ConstructorFunc = BaseUAObjectConstructable;
type BaseUAObjectConstructable = new (options?: Record<string, unknown>) => IBaseUAObject;
export type ConstructorFunc = BaseUAObjectConstructable;
export interface ConstructorFuncWithSchema extends ConstructorFunc {

@@ -97,4 +97,4 @@ schema: IStructuredTypeSchema;

}
export declare type FieldType = FieldEnumeration | FieldComplex | FieldBasic;
export declare type DefaultValueFunc = () => any;
export type FieldType = FieldEnumeration | FieldComplex | FieldBasic;
export type DefaultValueFunc = () => any;
export interface StructuredTypeOptions {

@@ -143,3 +143,3 @@ name: string;

}
export declare type TypeDefinition = BuiltInTypeDefinition | EnumerationDefinition | BasicTypeDefinition | CommonInterface;
export type TypeDefinition = BuiltInTypeDefinition | EnumerationDefinition | BasicTypeDefinition | CommonInterface;
export interface BitField {

@@ -146,0 +146,0 @@ name: string;

{
"name": "node-opcua-factory",
"version": "2.85.0",
"version": "2.86.0",
"description": "pure nodejs OPCUA SDK - module -factory",

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

"node-opcua-assert": "2.77.0",
"node-opcua-basic-types": "2.85.0",
"node-opcua-binary-stream": "2.85.0",
"node-opcua-basic-types": "2.86.0",
"node-opcua-binary-stream": "2.86.0",
"node-opcua-constants": "2.77.0",
"node-opcua-debug": "2.85.0",
"node-opcua-enum": "2.85.0",
"node-opcua-debug": "2.86.0",
"node-opcua-enum": "2.86.0",
"node-opcua-guid": "2.81.0",
"node-opcua-nodeid": "2.85.0",
"node-opcua-status-code": "2.85.0",
"node-opcua-utils": "2.85.0"
"node-opcua-nodeid": "2.86.0",
"node-opcua-status-code": "2.86.0",
"node-opcua-utils": "2.86.0"
},

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

"homepage": "http://node-opcua.github.io/",
"gitHead": "68498fcf7b20ea9f7bd66e8529c546221daf5d52"
"gitHead": "36afc46fe2c91aa5664a8c5418f4db5a354670c3"
}

@@ -279,4 +279,4 @@ /* eslint-disable prefer-rest-params */

} else {
const _hexDump1 = value.slice(0, 16).toString("hex");
const _hexDump2 = value.slice(-16).toString("hex");
const _hexDump1 = value.subarray(0, 16).toString("hex");
const _hexDump2 = value.subarray(-16).toString("hex");
data.lines.push("Buffer: ", _hexDump1 + "..." + _hexDump2);

@@ -283,0 +283,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