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.
Files changed (51) hide show
  1. package/dist/address_space.d.ts +168 -168
  2. package/dist/address_space.js +2 -2
  3. package/dist/base_node.d.ts +186 -186
  4. package/dist/base_node.js +3 -3
  5. package/dist/bind_variable.d.ts +52 -52
  6. package/dist/bind_variable.js +2 -2
  7. package/dist/clone_options.d.ts +44 -44
  8. package/dist/clone_options.js +18 -18
  9. package/dist/continuation_point.d.ts +2 -2
  10. package/dist/continuation_point.js +2 -2
  11. package/dist/event_notifier_flags.d.ts +7 -7
  12. package/dist/event_notifier_flags.js +11 -11
  13. package/dist/i_event_data.d.ts +17 -17
  14. package/dist/i_event_data.js +2 -2
  15. package/dist/index.d.ts +23 -23
  16. package/dist/index.js +39 -39
  17. package/dist/instantiate_options.d.ts +80 -80
  18. package/dist/instantiate_options.js +2 -2
  19. package/dist/modelling_rule_type.d.ts +1 -1
  20. package/dist/modelling_rule_type.js +2 -2
  21. package/dist/namespace.d.ts +279 -279
  22. package/dist/namespace.js +2 -2
  23. package/dist/session_context.d.ts +51 -51
  24. package/dist/session_context.js +2 -2
  25. package/dist/ua_data_type.d.ts +32 -32
  26. package/dist/ua_data_type.js +2 -2
  27. package/dist/ua_dynamic_variable_array.d.ts +12 -12
  28. package/dist/ua_dynamic_variable_array.js +2 -2
  29. package/dist/ua_event_type.d.ts +3 -3
  30. package/dist/ua_event_type.js +2 -2
  31. package/dist/ua_method.d.ts +41 -41
  32. package/dist/ua_method.js +4 -4
  33. package/dist/ua_object.d.ts +131 -131
  34. package/dist/ua_object.js +2 -2
  35. package/dist/ua_object_type.d.ts +27 -27
  36. package/dist/ua_object_type.js +2 -2
  37. package/dist/ua_property.d.ts +16 -16
  38. package/dist/ua_property.js +2 -2
  39. package/dist/ua_reference.d.ts +12 -12
  40. package/dist/ua_reference.js +2 -2
  41. package/dist/ua_reference_type.d.ts +18 -18
  42. package/dist/ua_reference_type.js +3 -3
  43. package/dist/ua_variable.d.ts +285 -285
  44. package/dist/ua_variable.js +2 -2
  45. package/dist/ua_variable_t.d.ts +15 -15
  46. package/dist/ua_variable_t.js +2 -2
  47. package/dist/ua_variable_type.d.ts +39 -39
  48. package/dist/ua_variable_type.js +3 -3
  49. package/dist/ua_view.d.ts +7 -7
  50. package/dist/ua_view.js +2 -2
  51. 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
+ }
@@ -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.0",
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.182",
20
- "node-opcua-basic-types": "2.76.0",
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.0",
24
- "node-opcua-data-value": "2.76.0",
25
- "node-opcua-date-time": "2.76.0",
26
- "node-opcua-extension-object": "2.76.0",
27
- "node-opcua-nodeid": "2.76.0",
28
- "node-opcua-numeric-range": "2.76.0",
29
- "node-opcua-schemas": "2.76.0",
30
- "node-opcua-status-code": "2.76.0",
31
- "node-opcua-types": "2.76.0",
32
- "node-opcua-variant": "2.76.0"
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": "75d9b8cf894c8fbadf77d2c4a48a730d055465e7"
49
+ "gitHead": "acb5ecaf1e1c71af3b63e80909d58447f3f298e7"
50
50
  }