node-opcua-factory 2.86.0 → 2.88.0

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 (3) hide show
  1. package/LICENSE +1 -1
  2. package/dist/types.d.ts +6 -6
  3. package/package.json +12 -12
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2022 Sterfive SAS - 833264583 RCS ORLEANS - France (https://www.sterfive.com)
3
+ Copyright (c) 2022-2023 Sterfive SAS - 833264583 RCS ORLEANS - France (https://www.sterfive.com)
4
4
 
5
5
  Copyright (c) 2014-2022 Etienne Rossignon
6
6
 
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.88.0",
4
4
  "description": "pure nodejs OPCUA SDK - module -factory",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -16,16 +16,16 @@
16
16
  },
17
17
  "dependencies": {
18
18
  "chalk": "4.1.2",
19
- "node-opcua-assert": "2.77.0",
20
- "node-opcua-basic-types": "2.86.0",
21
- "node-opcua-binary-stream": "2.86.0",
22
- "node-opcua-constants": "2.77.0",
23
- "node-opcua-debug": "2.86.0",
24
- "node-opcua-enum": "2.86.0",
25
- "node-opcua-guid": "2.81.0",
26
- "node-opcua-nodeid": "2.86.0",
27
- "node-opcua-status-code": "2.86.0",
28
- "node-opcua-utils": "2.86.0"
19
+ "node-opcua-assert": "2.88.0",
20
+ "node-opcua-basic-types": "2.88.0",
21
+ "node-opcua-binary-stream": "2.88.0",
22
+ "node-opcua-constants": "2.88.0",
23
+ "node-opcua-debug": "2.88.0",
24
+ "node-opcua-enum": "2.88.0",
25
+ "node-opcua-guid": "2.88.0",
26
+ "node-opcua-nodeid": "2.88.0",
27
+ "node-opcua-status-code": "2.88.0",
28
+ "node-opcua-utils": "2.88.0"
29
29
  },
30
30
  "author": "Etienne Rossignon",
31
31
  "license": "MIT",
@@ -42,5 +42,5 @@
42
42
  "internet of things"
43
43
  ],
44
44
  "homepage": "http://node-opcua.github.io/",
45
- "gitHead": "36afc46fe2c91aa5664a8c5418f4db5a354670c3"
45
+ "gitHead": "0c20078b474f36855b799557f8fe931dbe20c2ca"
46
46
  }