node-opcua-address-space-base 2.76.0 → 2.76.2
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 +168 -168
- 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/event_notifier_flags.d.ts +7 -7
- package/dist/event_notifier_flags.js +11 -11
- package/dist/i_event_data.d.ts +17 -17
- package/dist/i_event_data.js +2 -2
- package/dist/index.d.ts +23 -23
- package/dist/index.js +39 -39
- 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 +3 -3
- 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 +131 -131
- 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 +7 -7
- package/dist/ua_view.js +2 -2
- package/package.json +14 -14
|
@@ -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,7 +1,7 @@
|
|
|
1
|
-
import { NodeClass } from "node-opcua-data-model";
|
|
2
|
-
import { BaseNode } from "./base_node";
|
|
3
|
-
import { EventNotifierFlags } from "./event_notifier_flags";
|
|
4
|
-
export interface UAView extends BaseNode {
|
|
5
|
-
readonly nodeClass: NodeClass.View;
|
|
6
|
-
readonly eventNotifier: EventNotifierFlags;
|
|
7
|
-
}
|
|
1
|
+
import { NodeClass } from "node-opcua-data-model";
|
|
2
|
+
import { BaseNode } from "./base_node";
|
|
3
|
+
import { EventNotifierFlags } from "./event_notifier_flags";
|
|
4
|
+
export interface UAView extends BaseNode {
|
|
5
|
+
readonly nodeClass: NodeClass.View;
|
|
6
|
+
readonly eventNotifier: EventNotifierFlags;
|
|
7
|
+
}
|
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.76.
|
|
3
|
+
"version": "2.76.2",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module -address-space",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -16,20 +16,20 @@
|
|
|
16
16
|
"c": "mocha --version"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@types/lodash": "4.14.
|
|
20
|
-
"node-opcua-basic-types": "2.76.
|
|
19
|
+
"@types/lodash": "4.14.184",
|
|
20
|
+
"node-opcua-basic-types": "2.76.2",
|
|
21
21
|
"node-opcua-constants": "2.74.0",
|
|
22
22
|
"node-opcua-crypto": "^1.11.0",
|
|
23
|
-
"node-opcua-data-model": "2.76.
|
|
24
|
-
"node-opcua-data-value": "2.76.
|
|
25
|
-
"node-opcua-date-time": "2.76.
|
|
26
|
-
"node-opcua-extension-object": "2.76.
|
|
27
|
-
"node-opcua-nodeid": "2.76.
|
|
28
|
-
"node-opcua-numeric-range": "2.76.
|
|
29
|
-
"node-opcua-schemas": "2.76.
|
|
30
|
-
"node-opcua-status-code": "2.76.
|
|
31
|
-
"node-opcua-types": "2.76.
|
|
32
|
-
"node-opcua-variant": "2.76.
|
|
23
|
+
"node-opcua-data-model": "2.76.2",
|
|
24
|
+
"node-opcua-data-value": "2.76.2",
|
|
25
|
+
"node-opcua-date-time": "2.76.2",
|
|
26
|
+
"node-opcua-extension-object": "2.76.2",
|
|
27
|
+
"node-opcua-nodeid": "2.76.2",
|
|
28
|
+
"node-opcua-numeric-range": "2.76.2",
|
|
29
|
+
"node-opcua-schemas": "2.76.2",
|
|
30
|
+
"node-opcua-status-code": "2.76.2",
|
|
31
|
+
"node-opcua-types": "2.76.2",
|
|
32
|
+
"node-opcua-variant": "2.76.2"
|
|
33
33
|
},
|
|
34
34
|
"author": "Etienne Rossignon",
|
|
35
35
|
"license": "MIT",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"internet of things"
|
|
47
47
|
],
|
|
48
48
|
"homepage": "http://node-opcua.github.io/",
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "acb5ecaf1e1c71af3b63e80909d58447f3f298e7"
|
|
50
50
|
}
|