node-opcua-address-space-base 2.63.2 → 2.65.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/namespace.d.ts
CHANGED
|
@@ -207,7 +207,7 @@ export interface AddYArrayItemOptions extends AddVariableOptions {
|
|
|
207
207
|
}
|
|
208
208
|
export declare type CreateNodeOptions = any;
|
|
209
209
|
export declare interface INamespace {
|
|
210
|
-
version:
|
|
210
|
+
version: string;
|
|
211
211
|
publicationDate: Date;
|
|
212
212
|
namespaceUri: string;
|
|
213
213
|
addressSpace: IAddressSpace;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { LocalizedText, NodeClass } from "node-opcua-data-model";
|
|
2
|
-
import { NodeId } from "node-opcua-nodeid";
|
|
2
|
+
import { NodeId, NodeIdLike } from "node-opcua-nodeid";
|
|
3
3
|
import { BaseNode } from "./base_node";
|
|
4
4
|
import { UAReference } from "./ua_reference";
|
|
5
5
|
export declare class UAReferenceType extends BaseNode {
|
|
@@ -8,7 +8,7 @@ export declare class UAReferenceType extends BaseNode {
|
|
|
8
8
|
readonly subtypeOf: NodeId | null;
|
|
9
9
|
readonly isAbstract: boolean;
|
|
10
10
|
readonly inverseName: LocalizedText;
|
|
11
|
-
isSupertypeOf(baseType: UAReferenceType): boolean;
|
|
11
|
+
isSupertypeOf(baseType: UAReferenceType | NodeIdLike): boolean;
|
|
12
12
|
getAllSubtypes(): UAReferenceType[];
|
|
13
13
|
/**
|
|
14
14
|
*
|
|
@@ -31,7 +31,7 @@ export declare class UAVariableType extends BaseNode implements VariableAttribut
|
|
|
31
31
|
arrayDimensions: UInt32[] | null;
|
|
32
32
|
historizing: boolean;
|
|
33
33
|
isAbstract: boolean;
|
|
34
|
-
isSupertypeOf(type: UAVariableType): boolean;
|
|
34
|
+
isSupertypeOf(type: UAVariableType | NodeIdLike): boolean;
|
|
35
35
|
instantiate(options: InstantiateVariableOptions): UAVariable;
|
|
36
36
|
}
|
|
37
37
|
export interface UAVariableTypeT<T, DT extends DataType> extends UAVariableType {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-address-space-base",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.65.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module -address-space",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -16,52 +16,52 @@
|
|
|
16
16
|
"c": "mocha --version"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@types/lodash": "4.14.
|
|
19
|
+
"@types/lodash": "4.14.179",
|
|
20
20
|
"async": "^3.2.3",
|
|
21
21
|
"chalk": "4.1.2",
|
|
22
22
|
"dequeue": "^1.0.5",
|
|
23
23
|
"lodash": "4.17.21",
|
|
24
|
-
"node-opcua-assert": "2.
|
|
25
|
-
"node-opcua-basic-types": "2.
|
|
26
|
-
"node-opcua-client-dynamic-extension-object": "2.
|
|
27
|
-
"node-opcua-constants": "2.
|
|
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.
|
|
24
|
+
"node-opcua-assert": "2.64.1",
|
|
25
|
+
"node-opcua-basic-types": "2.64.1",
|
|
26
|
+
"node-opcua-client-dynamic-extension-object": "2.65.0",
|
|
27
|
+
"node-opcua-constants": "2.64.1",
|
|
28
|
+
"node-opcua-data-access": "2.65.0",
|
|
29
|
+
"node-opcua-data-model": "2.64.1",
|
|
30
|
+
"node-opcua-data-value": "2.64.1",
|
|
31
|
+
"node-opcua-date-time": "2.64.1",
|
|
32
|
+
"node-opcua-debug": "2.64.1",
|
|
33
|
+
"node-opcua-enum": "2.64.1",
|
|
34
|
+
"node-opcua-factory": "2.64.1",
|
|
35
|
+
"node-opcua-nodeid": "2.64.1",
|
|
36
|
+
"node-opcua-numeric-range": "2.64.1",
|
|
37
|
+
"node-opcua-object-registry": "2.64.1",
|
|
38
|
+
"node-opcua-pseudo-session": "2.65.0",
|
|
39
|
+
"node-opcua-schemas": "2.64.1",
|
|
40
|
+
"node-opcua-service-browse": "2.65.0",
|
|
41
|
+
"node-opcua-service-call": "2.65.0",
|
|
42
|
+
"node-opcua-service-filter": "2.65.0",
|
|
43
|
+
"node-opcua-service-history": "2.65.0",
|
|
44
|
+
"node-opcua-service-translate-browse-path": "2.65.0",
|
|
45
|
+
"node-opcua-service-write": "2.65.0",
|
|
46
|
+
"node-opcua-status-code": "2.64.1",
|
|
47
|
+
"node-opcua-types": "2.65.0",
|
|
48
|
+
"node-opcua-utils": "2.64.1",
|
|
49
|
+
"node-opcua-variant": "2.64.1",
|
|
50
|
+
"node-opcua-xml2json": "2.64.1",
|
|
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.64.1",
|
|
57
|
+
"node-opcua-binary-stream": "2.64.1",
|
|
58
|
+
"node-opcua-extension-object": "2.64.1",
|
|
59
|
+
"node-opcua-leak-detector": "2.64.1",
|
|
60
|
+
"node-opcua-nodesets": "2.64.1",
|
|
61
|
+
"node-opcua-packet-analyzer": "2.64.1",
|
|
62
|
+
"node-opcua-test-fixtures": "2.65.0",
|
|
63
63
|
"should": "^13.2.3",
|
|
64
|
-
"sinon": "^
|
|
64
|
+
"sinon": "^13.0.1",
|
|
65
65
|
"source-map-support": "^0.5.21"
|
|
66
66
|
},
|
|
67
67
|
"author": "Etienne Rossignon",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"internet of things"
|
|
80
80
|
],
|
|
81
81
|
"homepage": "http://node-opcua.github.io/",
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "59b9cae30fb45633ad501f9cf3b74fb9d05e8960"
|
|
83
83
|
}
|
package/source/namespace.ts
CHANGED
|
@@ -251,12 +251,12 @@ export interface AddYArrayItemOptions extends AddVariableOptions {
|
|
|
251
251
|
export type CreateNodeOptions = any;
|
|
252
252
|
|
|
253
253
|
export declare interface INamespace {
|
|
254
|
-
version:
|
|
254
|
+
version: string;
|
|
255
255
|
publicationDate: Date;
|
|
256
256
|
namespaceUri: string;
|
|
257
257
|
addressSpace: IAddressSpace;
|
|
258
258
|
index: number;
|
|
259
|
-
|
|
259
|
+
|
|
260
260
|
constructNodeId(options: ConstructNodeIdOptions): NodeId;
|
|
261
261
|
|
|
262
262
|
// -------------------------------------------------------------------------
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { LocalizedText, NodeClass } from "node-opcua-data-model";
|
|
2
|
-
import { NodeId } from "node-opcua-nodeid";
|
|
2
|
+
import { NodeId, NodeIdLike } from "node-opcua-nodeid";
|
|
3
3
|
import { BaseNode } from "./base_node";
|
|
4
4
|
import { UAReference } from "./ua_reference";
|
|
5
5
|
|
|
@@ -10,7 +10,7 @@ export declare class UAReferenceType extends BaseNode {
|
|
|
10
10
|
public readonly isAbstract: boolean;
|
|
11
11
|
public readonly inverseName: LocalizedText;
|
|
12
12
|
|
|
13
|
-
public isSupertypeOf(baseType: UAReferenceType): boolean;
|
|
13
|
+
public isSupertypeOf(baseType: UAReferenceType | NodeIdLike): boolean;
|
|
14
14
|
|
|
15
15
|
public getAllSubtypes(): UAReferenceType[];
|
|
16
16
|
|
|
@@ -36,7 +36,7 @@ export declare class UAVariableType extends BaseNode implements VariableAttribut
|
|
|
36
36
|
|
|
37
37
|
public isAbstract: boolean;
|
|
38
38
|
|
|
39
|
-
public isSupertypeOf(type:
|
|
39
|
+
public isSupertypeOf(type: UAVariableType | NodeIdLike): boolean;
|
|
40
40
|
|
|
41
41
|
public instantiate(options: InstantiateVariableOptions): UAVariable;
|
|
42
42
|
}
|