node-opcua-address-space-base 2.81.0 → 2.83.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.
@@ -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.81.0",
3
+ "version": "2.83.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,19 @@
16
16
  "c": "mocha --version"
17
17
  },
18
18
  "dependencies": {
19
- "@types/lodash": "4.14.185",
20
- "node-opcua-basic-types": "2.81.0",
19
+ "node-opcua-basic-types": "2.83.0",
21
20
  "node-opcua-constants": "2.77.0",
22
- "node-opcua-crypto": "^1.11.0",
23
- "node-opcua-data-model": "2.81.0",
24
- "node-opcua-data-value": "2.81.0",
25
- "node-opcua-date-time": "2.77.0",
26
- "node-opcua-extension-object": "2.81.0",
27
- "node-opcua-nodeid": "2.81.0",
28
- "node-opcua-numeric-range": "2.81.0",
29
- "node-opcua-schemas": "2.81.0",
30
- "node-opcua-status-code": "2.77.0",
31
- "node-opcua-types": "2.81.0",
32
- "node-opcua-variant": "2.81.0"
21
+ "node-opcua-crypto": "^1.12.0",
22
+ "node-opcua-data-model": "2.83.0",
23
+ "node-opcua-data-value": "2.83.0",
24
+ "node-opcua-date-time": "2.83.0",
25
+ "node-opcua-extension-object": "2.83.0",
26
+ "node-opcua-nodeid": "2.83.0",
27
+ "node-opcua-numeric-range": "2.83.0",
28
+ "node-opcua-schemas": "2.83.0",
29
+ "node-opcua-status-code": "2.83.0",
30
+ "node-opcua-types": "2.83.0",
31
+ "node-opcua-variant": "2.83.0"
33
32
  },
34
33
  "author": "Etienne Rossignon",
35
34
  "license": "MIT",
@@ -46,5 +45,5 @@
46
45
  "internet of things"
47
46
  ],
48
47
  "homepage": "http://node-opcua.github.io/",
49
- "gitHead": "fd89928bc4a4b9f31a6b6e5921f743e8284eba2b"
48
+ "gitHead": "3311f8ce9e86837fde72e923f3121072008ccdd4"
50
49
  }
@@ -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
  // -------------------------------------------------------------------------