node-opcua-factory 2.86.0 → 2.86.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/types.d.ts +6 -6
  2. package/package.json +4 -4
package/dist/types.d.ts CHANGED
@@ -40,7 +40,7 @@ export interface FieldInterfaceOptions {
40
40
  basicDataType?: number;
41
41
  valueRank?: number;
42
42
  }
43
- export type Func1<T> = (value: any, field: StructuredTypeField, data: T, args?: any) => void;
43
+ export declare type Func1<T> = (value: any, field: StructuredTypeField, data: T, args?: any) => void;
44
44
  export interface DecodeDebugOptions {
45
45
  tracer: any;
46
46
  name: string;
@@ -58,8 +58,8 @@ export interface IBaseUAObject {
58
58
  decodeDebug(stream: BinaryStream, options: DecodeDebugOptions): void;
59
59
  clone(): IBaseUAObject;
60
60
  }
61
- type BaseUAObjectConstructable = new (options?: Record<string, unknown>) => IBaseUAObject;
62
- export type ConstructorFunc = BaseUAObjectConstructable;
61
+ declare type BaseUAObjectConstructable = new (options?: Record<string, unknown>) => IBaseUAObject;
62
+ export declare type ConstructorFunc = BaseUAObjectConstructable;
63
63
  export interface ConstructorFuncWithSchema extends ConstructorFunc {
64
64
  schema: IStructuredTypeSchema;
65
65
  possibleFields: string[];
@@ -92,8 +92,8 @@ export interface FieldComplex extends StructuredTypeField {
92
92
  }
93
93
  export interface FieldBasic extends StructuredTypeField {
94
94
  }
95
- export type FieldType = FieldEnumeration | FieldComplex | FieldBasic;
96
- export type DefaultValueFunc = () => any;
95
+ export declare type FieldType = FieldEnumeration | FieldComplex | FieldBasic;
96
+ export declare type DefaultValueFunc = () => any;
97
97
  export interface StructuredTypeOptions {
98
98
  name: string;
99
99
  fields: FieldInterfaceOptions[];
@@ -137,7 +137,7 @@ export interface EnumerationDefinition extends CommonInterface {
137
137
  typedEnum: Enum;
138
138
  documentation?: string;
139
139
  }
140
- export type TypeDefinition = BuiltInTypeDefinition | EnumerationDefinition | BasicTypeDefinition | CommonInterface;
140
+ export declare type TypeDefinition = BuiltInTypeDefinition | EnumerationDefinition | BasicTypeDefinition | CommonInterface;
141
141
  export interface BitField {
142
142
  name: string;
143
143
  length: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-opcua-factory",
3
- "version": "2.86.0",
3
+ "version": "2.86.1",
4
4
  "description": "pure nodejs OPCUA SDK - module -factory",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -17,14 +17,14 @@
17
17
  "dependencies": {
18
18
  "chalk": "4.1.2",
19
19
  "node-opcua-assert": "2.77.0",
20
- "node-opcua-basic-types": "2.86.0",
20
+ "node-opcua-basic-types": "2.86.1",
21
21
  "node-opcua-binary-stream": "2.86.0",
22
22
  "node-opcua-constants": "2.77.0",
23
23
  "node-opcua-debug": "2.86.0",
24
24
  "node-opcua-enum": "2.86.0",
25
25
  "node-opcua-guid": "2.81.0",
26
26
  "node-opcua-nodeid": "2.86.0",
27
- "node-opcua-status-code": "2.86.0",
27
+ "node-opcua-status-code": "2.86.1",
28
28
  "node-opcua-utils": "2.86.0"
29
29
  },
30
30
  "author": "Etienne Rossignon",
@@ -42,5 +42,5 @@
42
42
  "internet of things"
43
43
  ],
44
44
  "homepage": "http://node-opcua.github.io/",
45
- "gitHead": "36afc46fe2c91aa5664a8c5418f4db5a354670c3"
45
+ "gitHead": "389ba18585ff4b62f6fee58b69bd871a8e6b0dff"
46
46
  }