node-opcua-address-space-base 2.80.0 → 2.82.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 +6 -0
- package/package.json +15 -15
- package/source/namespace.ts +8 -0
package/dist/namespace.d.ts
CHANGED
|
@@ -206,6 +206,11 @@ export interface AddYArrayItemOptions extends AddVariableOptions {
|
|
|
206
206
|
xAxisDefinition?: AxisInformationOptions;
|
|
207
207
|
}
|
|
208
208
|
export declare type CreateNodeOptions = any;
|
|
209
|
+
export interface RequiredModel {
|
|
210
|
+
modelUri: string;
|
|
211
|
+
version: string;
|
|
212
|
+
publicationDate: Date;
|
|
213
|
+
}
|
|
209
214
|
export declare interface INamespace {
|
|
210
215
|
version: string;
|
|
211
216
|
publicationDate: Date;
|
|
@@ -213,6 +218,7 @@ export declare interface INamespace {
|
|
|
213
218
|
addressSpace: IAddressSpace;
|
|
214
219
|
index: number;
|
|
215
220
|
$emulateVersion103?: boolean;
|
|
221
|
+
getRequiredModels(): RequiredModel[] | undefined;
|
|
216
222
|
constructNodeId(options: ConstructNodeIdOptions): NodeId;
|
|
217
223
|
findObjectType(objectType: string): UAObjectType | null;
|
|
218
224
|
findVariableType(variableType: string): UAVariableType | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-address-space-base",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.82.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,20 +16,20 @@
|
|
|
16
16
|
"c": "mocha --version"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@types/lodash": "4.14.
|
|
20
|
-
"node-opcua-basic-types": "2.
|
|
19
|
+
"@types/lodash": "4.14.186",
|
|
20
|
+
"node-opcua-basic-types": "2.82.0",
|
|
21
21
|
"node-opcua-constants": "2.77.0",
|
|
22
|
-
"node-opcua-crypto": "^1.
|
|
23
|
-
"node-opcua-data-model": "2.
|
|
24
|
-
"node-opcua-data-value": "2.
|
|
25
|
-
"node-opcua-date-time": "2.
|
|
26
|
-
"node-opcua-extension-object": "2.
|
|
27
|
-
"node-opcua-nodeid": "2.
|
|
28
|
-
"node-opcua-numeric-range": "2.
|
|
29
|
-
"node-opcua-schemas": "2.
|
|
30
|
-
"node-opcua-status-code": "2.
|
|
31
|
-
"node-opcua-types": "2.
|
|
32
|
-
"node-opcua-variant": "2.
|
|
22
|
+
"node-opcua-crypto": "^1.12.0",
|
|
23
|
+
"node-opcua-data-model": "2.82.0",
|
|
24
|
+
"node-opcua-data-value": "2.82.0",
|
|
25
|
+
"node-opcua-date-time": "2.82.0",
|
|
26
|
+
"node-opcua-extension-object": "2.82.0",
|
|
27
|
+
"node-opcua-nodeid": "2.82.0",
|
|
28
|
+
"node-opcua-numeric-range": "2.82.0",
|
|
29
|
+
"node-opcua-schemas": "2.82.0",
|
|
30
|
+
"node-opcua-status-code": "2.82.0",
|
|
31
|
+
"node-opcua-types": "2.82.0",
|
|
32
|
+
"node-opcua-variant": "2.82.0"
|
|
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": "2f66e1fe69c825305f94b15ca17cff066aa37496"
|
|
50
50
|
}
|
package/source/namespace.ts
CHANGED
|
@@ -250,6 +250,12 @@ export interface AddYArrayItemOptions extends AddVariableOptions {
|
|
|
250
250
|
|
|
251
251
|
export type CreateNodeOptions = any;
|
|
252
252
|
|
|
253
|
+
export interface RequiredModel {
|
|
254
|
+
modelUri: string;
|
|
255
|
+
version: string;
|
|
256
|
+
publicationDate: Date;
|
|
257
|
+
}
|
|
258
|
+
|
|
253
259
|
export declare interface INamespace {
|
|
254
260
|
version: string;
|
|
255
261
|
publicationDate: Date;
|
|
@@ -259,6 +265,8 @@ export declare interface INamespace {
|
|
|
259
265
|
|
|
260
266
|
$emulateVersion103?: boolean;
|
|
261
267
|
|
|
268
|
+
getRequiredModels(): RequiredModel[] | undefined;
|
|
269
|
+
|
|
262
270
|
constructNodeId(options: ConstructNodeIdOptions): NodeId;
|
|
263
271
|
|
|
264
272
|
// -------------------------------------------------------------------------
|