node-opcua-address-space-base 2.70.3 → 2.71.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.
- package/dist/address_space.d.ts +167 -167
- package/dist/address_space.js +2 -2
- package/dist/base_node.d.ts +186 -186
- package/dist/base_node.js +3 -3
- package/dist/bind_variable.d.ts +52 -52
- package/dist/bind_variable.js +2 -2
- package/dist/clone_options.d.ts +44 -44
- package/dist/clone_options.js +18 -18
- package/dist/continuation_point.d.ts +2 -2
- package/dist/continuation_point.js +2 -2
- package/dist/index.d.ts +21 -21
- package/dist/index.js +37 -37
- package/dist/instantiate_options.d.ts +80 -80
- package/dist/instantiate_options.js +2 -2
- package/dist/modelling_rule_type.d.ts +1 -1
- package/dist/modelling_rule_type.js +2 -2
- package/dist/namespace.d.ts +279 -279
- package/dist/namespace.js +2 -2
- package/dist/session_context.d.ts +51 -51
- package/dist/session_context.js +2 -2
- package/dist/ua_data_type.d.ts +32 -32
- package/dist/ua_data_type.js +2 -2
- package/dist/ua_dynamic_variable_array.d.ts +12 -12
- package/dist/ua_dynamic_variable_array.js +2 -2
- package/dist/ua_event_type.d.ts +21 -21
- package/dist/ua_event_type.js +2 -2
- package/dist/ua_method.d.ts +41 -41
- package/dist/ua_method.js +4 -4
- package/dist/ua_object.d.ts +124 -124
- package/dist/ua_object.js +2 -2
- package/dist/ua_object_type.d.ts +27 -27
- package/dist/ua_object_type.js +2 -2
- package/dist/ua_property.d.ts +16 -16
- package/dist/ua_property.js +2 -2
- package/dist/ua_reference.d.ts +12 -12
- package/dist/ua_reference.js +2 -2
- package/dist/ua_reference_type.d.ts +18 -18
- package/dist/ua_reference_type.js +3 -3
- package/dist/ua_variable.d.ts +285 -285
- package/dist/ua_variable.js +2 -2
- package/dist/ua_variable_t.d.ts +15 -15
- package/dist/ua_variable_t.js +2 -2
- package/dist/ua_variable_type.d.ts +39 -39
- package/dist/ua_variable_type.js +3 -3
- package/dist/ua_view.d.ts +5 -5
- package/dist/ua_view.js +2 -2
- package/package.json +35 -35
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
import { NodeClass } from "node-opcua-data-model";
|
|
2
|
-
import { NodeId, NodeIdLike } from "node-opcua-nodeid";
|
|
3
|
-
import { UInt32 } from "node-opcua-basic-types";
|
|
4
|
-
import { DataType } from "node-opcua-variant";
|
|
5
|
-
import { ExtensionObject } from "node-opcua-extension-object";
|
|
6
|
-
import { BaseNode } from "./base_node";
|
|
7
|
-
import { InstantiateOptions } from "./instantiate_options";
|
|
8
|
-
import { UAObject } from "./ua_object";
|
|
9
|
-
import { UAObjectType } from "./ua_object_type";
|
|
10
|
-
import { UAVariable, VariableAttributes } from "./ua_variable";
|
|
11
|
-
import { UAVariableT } from "./ua_variable_t";
|
|
12
|
-
import { BindVariableOptions } from "./bind_variable";
|
|
13
|
-
import { UAMethod } from "./ua_method";
|
|
14
|
-
export interface InstantiateVariableOptions extends InstantiateOptions {
|
|
15
|
-
arrayDimensions?: number[] | null;
|
|
16
|
-
dataType?: string | NodeIdLike;
|
|
17
|
-
extensionObject?: ExtensionObject | ExtensionObject[];
|
|
18
|
-
nodeId?: NodeIdLike;
|
|
19
|
-
minimumSamplingInterval?: number;
|
|
20
|
-
propertyOf?: NodeIdLike | UAObject | UAObjectType | UAVariable | UAVariableType | UAMethod;
|
|
21
|
-
value?: BindVariableOptions;
|
|
22
|
-
valueRank?: number;
|
|
23
|
-
}
|
|
24
|
-
export declare class UAVariableType extends BaseNode implements VariableAttributes {
|
|
25
|
-
readonly nodeClass: NodeClass.VariableType;
|
|
26
|
-
readonly subtypeOfObj: UAVariableType | null;
|
|
27
|
-
readonly subtypeOf: NodeId | null;
|
|
28
|
-
dataType: NodeId;
|
|
29
|
-
valueRank: number;
|
|
30
|
-
minimumSamplingInterval: number;
|
|
31
|
-
arrayDimensions: UInt32[] | null;
|
|
32
|
-
historizing: boolean;
|
|
33
|
-
isAbstract: boolean;
|
|
34
|
-
isSupertypeOf(type: UAVariableType | NodeIdLike): boolean;
|
|
35
|
-
instantiate(options: InstantiateVariableOptions): UAVariable;
|
|
36
|
-
}
|
|
37
|
-
export interface UAVariableTypeT<T, DT extends DataType> extends UAVariableType {
|
|
38
|
-
instantiate(options: InstantiateVariableOptions): UAVariableT<T, DT>;
|
|
39
|
-
}
|
|
1
|
+
import { NodeClass } from "node-opcua-data-model";
|
|
2
|
+
import { NodeId, NodeIdLike } from "node-opcua-nodeid";
|
|
3
|
+
import { UInt32 } from "node-opcua-basic-types";
|
|
4
|
+
import { DataType } from "node-opcua-variant";
|
|
5
|
+
import { ExtensionObject } from "node-opcua-extension-object";
|
|
6
|
+
import { BaseNode } from "./base_node";
|
|
7
|
+
import { InstantiateOptions } from "./instantiate_options";
|
|
8
|
+
import { UAObject } from "./ua_object";
|
|
9
|
+
import { UAObjectType } from "./ua_object_type";
|
|
10
|
+
import { UAVariable, VariableAttributes } from "./ua_variable";
|
|
11
|
+
import { UAVariableT } from "./ua_variable_t";
|
|
12
|
+
import { BindVariableOptions } from "./bind_variable";
|
|
13
|
+
import { UAMethod } from "./ua_method";
|
|
14
|
+
export interface InstantiateVariableOptions extends InstantiateOptions {
|
|
15
|
+
arrayDimensions?: number[] | null;
|
|
16
|
+
dataType?: string | NodeIdLike;
|
|
17
|
+
extensionObject?: ExtensionObject | ExtensionObject[];
|
|
18
|
+
nodeId?: NodeIdLike;
|
|
19
|
+
minimumSamplingInterval?: number;
|
|
20
|
+
propertyOf?: NodeIdLike | UAObject | UAObjectType | UAVariable | UAVariableType | UAMethod;
|
|
21
|
+
value?: BindVariableOptions;
|
|
22
|
+
valueRank?: number;
|
|
23
|
+
}
|
|
24
|
+
export declare class UAVariableType extends BaseNode implements VariableAttributes {
|
|
25
|
+
readonly nodeClass: NodeClass.VariableType;
|
|
26
|
+
readonly subtypeOfObj: UAVariableType | null;
|
|
27
|
+
readonly subtypeOf: NodeId | null;
|
|
28
|
+
dataType: NodeId;
|
|
29
|
+
valueRank: number;
|
|
30
|
+
minimumSamplingInterval: number;
|
|
31
|
+
arrayDimensions: UInt32[] | null;
|
|
32
|
+
historizing: boolean;
|
|
33
|
+
isAbstract: boolean;
|
|
34
|
+
isSupertypeOf(type: UAVariableType | NodeIdLike): boolean;
|
|
35
|
+
instantiate(options: InstantiateVariableOptions): UAVariable;
|
|
36
|
+
}
|
|
37
|
+
export interface UAVariableTypeT<T, DT extends DataType> extends UAVariableType {
|
|
38
|
+
instantiate(options: InstantiateVariableOptions): UAVariableT<T, DT>;
|
|
39
|
+
}
|
package/dist/ua_variable_type.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const base_node_1 = require("./base_node");
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const base_node_1 = require("./base_node");
|
|
4
4
|
//# sourceMappingURL=ua_variable_type.js.map
|
package/dist/ua_view.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { NodeClass } from "node-opcua-data-model";
|
|
2
|
-
import { BaseNode } from "./base_node";
|
|
3
|
-
export interface UAView extends BaseNode {
|
|
4
|
-
readonly nodeClass: NodeClass.View;
|
|
5
|
-
}
|
|
1
|
+
import { NodeClass } from "node-opcua-data-model";
|
|
2
|
+
import { BaseNode } from "./base_node";
|
|
3
|
+
export interface UAView extends BaseNode {
|
|
4
|
+
readonly nodeClass: NodeClass.View;
|
|
5
|
+
}
|
package/dist/ua_view.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
//# sourceMappingURL=ua_view.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-address-space-base",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.71.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module -address-space",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -17,49 +17,49 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@types/lodash": "4.14.182",
|
|
20
|
-
"async": "^3.2.
|
|
20
|
+
"async": "^3.2.4",
|
|
21
21
|
"chalk": "4.1.2",
|
|
22
22
|
"dequeue": "^1.0.5",
|
|
23
23
|
"lodash": "4.17.21",
|
|
24
24
|
"node-opcua-assert": "2.66.0",
|
|
25
|
-
"node-opcua-basic-types": "2.
|
|
26
|
-
"node-opcua-client-dynamic-extension-object": "2.
|
|
25
|
+
"node-opcua-basic-types": "2.71.0",
|
|
26
|
+
"node-opcua-client-dynamic-extension-object": "2.71.0",
|
|
27
27
|
"node-opcua-constants": "2.70.0",
|
|
28
|
-
"node-opcua-data-access": "2.
|
|
29
|
-
"node-opcua-data-model": "2.
|
|
30
|
-
"node-opcua-data-value": "2.
|
|
31
|
-
"node-opcua-date-time": "2.
|
|
32
|
-
"node-opcua-debug": "2.
|
|
33
|
-
"node-opcua-enum": "2.
|
|
34
|
-
"node-opcua-factory": "2.
|
|
35
|
-
"node-opcua-nodeid": "2.
|
|
36
|
-
"node-opcua-numeric-range": "2.
|
|
37
|
-
"node-opcua-object-registry": "2.
|
|
38
|
-
"node-opcua-pseudo-session": "2.
|
|
39
|
-
"node-opcua-schemas": "2.
|
|
40
|
-
"node-opcua-service-browse": "2.
|
|
41
|
-
"node-opcua-service-call": "2.
|
|
42
|
-
"node-opcua-service-filter": "2.
|
|
43
|
-
"node-opcua-service-history": "2.
|
|
44
|
-
"node-opcua-service-translate-browse-path": "2.
|
|
45
|
-
"node-opcua-service-write": "2.
|
|
46
|
-
"node-opcua-status-code": "2.
|
|
47
|
-
"node-opcua-types": "2.
|
|
48
|
-
"node-opcua-utils": "2.
|
|
49
|
-
"node-opcua-variant": "2.
|
|
50
|
-
"node-opcua-xml2json": "2.
|
|
28
|
+
"node-opcua-data-access": "2.71.0",
|
|
29
|
+
"node-opcua-data-model": "2.71.0",
|
|
30
|
+
"node-opcua-data-value": "2.71.0",
|
|
31
|
+
"node-opcua-date-time": "2.71.0",
|
|
32
|
+
"node-opcua-debug": "2.71.0",
|
|
33
|
+
"node-opcua-enum": "2.71.0",
|
|
34
|
+
"node-opcua-factory": "2.71.0",
|
|
35
|
+
"node-opcua-nodeid": "2.71.0",
|
|
36
|
+
"node-opcua-numeric-range": "2.71.0",
|
|
37
|
+
"node-opcua-object-registry": "2.71.0",
|
|
38
|
+
"node-opcua-pseudo-session": "2.71.0",
|
|
39
|
+
"node-opcua-schemas": "2.71.0",
|
|
40
|
+
"node-opcua-service-browse": "2.71.0",
|
|
41
|
+
"node-opcua-service-call": "2.71.0",
|
|
42
|
+
"node-opcua-service-filter": "2.71.0",
|
|
43
|
+
"node-opcua-service-history": "2.71.0",
|
|
44
|
+
"node-opcua-service-translate-browse-path": "2.71.0",
|
|
45
|
+
"node-opcua-service-write": "2.71.0",
|
|
46
|
+
"node-opcua-status-code": "2.71.0",
|
|
47
|
+
"node-opcua-types": "2.71.0",
|
|
48
|
+
"node-opcua-utils": "2.71.0",
|
|
49
|
+
"node-opcua-variant": "2.71.0",
|
|
50
|
+
"node-opcua-xml2json": "2.71.0",
|
|
51
51
|
"set-prototype-of": "^1.0.0",
|
|
52
52
|
"thenify": "^3.3.1",
|
|
53
53
|
"xml-writer": "^1.7.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"node-opcua-benchmarker": "2.
|
|
57
|
-
"node-opcua-binary-stream": "2.
|
|
58
|
-
"node-opcua-extension-object": "2.
|
|
59
|
-
"node-opcua-leak-detector": "2.
|
|
60
|
-
"node-opcua-nodesets": "2.
|
|
61
|
-
"node-opcua-packet-analyzer": "2.
|
|
62
|
-
"node-opcua-test-fixtures": "2.
|
|
56
|
+
"node-opcua-benchmarker": "2.71.0",
|
|
57
|
+
"node-opcua-binary-stream": "2.71.0",
|
|
58
|
+
"node-opcua-extension-object": "2.71.0",
|
|
59
|
+
"node-opcua-leak-detector": "2.71.0",
|
|
60
|
+
"node-opcua-nodesets": "2.71.0",
|
|
61
|
+
"node-opcua-packet-analyzer": "2.71.0",
|
|
62
|
+
"node-opcua-test-fixtures": "2.71.0",
|
|
63
63
|
"should": "^13.2.3",
|
|
64
64
|
"sinon": "^14.0.0",
|
|
65
65
|
"source-map-support": "^0.5.21"
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"internet of things"
|
|
80
80
|
],
|
|
81
81
|
"homepage": "http://node-opcua.github.io/",
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "10f7cc1e1cd30dfef75adad9cb709a78401fabf3"
|
|
83
83
|
}
|