node-opcua-factory
Advanced tools
Comparing version 2.85.0 to 2.86.0
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
248868
+ Addednode-opcua-basic-types@2.86.0(transitive)
+ Addednode-opcua-binary-stream@2.86.0(transitive)
+ Addednode-opcua-buffer-utils@2.86.0(transitive)
+ Addednode-opcua-date-time@2.86.0(transitive)
+ Addednode-opcua-debug@2.86.0(transitive)
+ Addednode-opcua-enum@2.86.0(transitive)
+ Addednode-opcua-nodeid@2.86.0(transitive)
+ Addednode-opcua-status-code@2.86.0(transitive)
+ Addednode-opcua-utils@2.86.0(transitive)
- Removednode-opcua-basic-types@2.85.0(transitive)
- Removednode-opcua-binary-stream@2.85.0(transitive)
- Removednode-opcua-buffer-utils@2.85.0(transitive)
- Removednode-opcua-date-time@2.85.0(transitive)
- Removednode-opcua-debug@2.85.0(transitive)
- Removednode-opcua-enum@2.85.0(transitive)
- Removednode-opcua-nodeid@2.85.0(transitive)
- Removednode-opcua-status-code@2.85.0(transitive)
- Removednode-opcua-utils@2.85.0(transitive)
Updatednode-opcua-debug@2.86.0
Updatednode-opcua-enum@2.86.0
Updatednode-opcua-nodeid@2.86.0
Updatednode-opcua-utils@2.86.0