node-opcua-nodeset-machinery 2.153.0 → 2.154.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/index.d.ts CHANGED
@@ -1,11 +1,15 @@
1
1
  export * from "./ua_i_machine_tag_nameplate";
2
2
  export * from "./ua_i_machine_vendor_nameplate";
3
+ export * from "./ua_i_machinery_equipment";
3
4
  export * from "./ua_i_machinery_item_vendor_nameplate";
4
5
  export * from "./ua_machine_components";
5
6
  export * from "./ua_machine_identification";
6
7
  export * from "./ua_machinery_component_identification";
8
+ export * from "./ua_machinery_equipment_folder";
7
9
  export * from "./ua_machinery_item_identification";
8
10
  export * from "./ua_machinery_item_state_state_machine";
9
11
  export * from "./ua_machinery_lifetime_counter";
10
12
  export * from "./ua_machinery_operation_counter";
11
13
  export * from "./ua_machinery_operation_mode_state_machine";
14
+ export * from "./ua_monitoring";
15
+ export * from "./ua_notifications";
package/dist/index.js CHANGED
@@ -16,13 +16,17 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./ua_i_machine_tag_nameplate"), exports);
18
18
  __exportStar(require("./ua_i_machine_vendor_nameplate"), exports);
19
+ __exportStar(require("./ua_i_machinery_equipment"), exports);
19
20
  __exportStar(require("./ua_i_machinery_item_vendor_nameplate"), exports);
20
21
  __exportStar(require("./ua_machine_components"), exports);
21
22
  __exportStar(require("./ua_machine_identification"), exports);
22
23
  __exportStar(require("./ua_machinery_component_identification"), exports);
24
+ __exportStar(require("./ua_machinery_equipment_folder"), exports);
23
25
  __exportStar(require("./ua_machinery_item_identification"), exports);
24
26
  __exportStar(require("./ua_machinery_item_state_state_machine"), exports);
25
27
  __exportStar(require("./ua_machinery_lifetime_counter"), exports);
26
28
  __exportStar(require("./ua_machinery_operation_counter"), exports);
27
29
  __exportStar(require("./ua_machinery_operation_mode_state_machine"), exports);
30
+ __exportStar(require("./ua_monitoring"), exports);
31
+ __exportStar(require("./ua_notifications"), exports);
28
32
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../source/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+DAA6C;AAC7C,kEAAgD;AAChD,yEAAuD;AACvD,0DAAwC;AACxC,8DAA4C;AAC5C,0EAAwD;AACxD,qEAAmD;AACnD,0EAAwD;AACxD,kEAAgD;AAChD,mEAAiD;AACjD,8EAA4D"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../source/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+DAA6C;AAC7C,kEAAgD;AAChD,6DAA2C;AAC3C,yEAAuD;AACvD,0DAAwC;AACxC,8DAA4C;AAC5C,0EAAwD;AACxD,kEAAgD;AAChD,qEAAmD;AACnD,0EAAwD;AACxD,kEAAgD;AAChD,mEAAiD;AACjD,8EAA4D;AAC5D,kDAAgC;AAChC,qDAAmC"}
@@ -0,0 +1,41 @@
1
+ import { UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { LocalizedText } from "node-opcua-data-model";
4
+ import { UAString } from "node-opcua-basic-types";
5
+ import { UALifetimeVariable } from "node-opcua-nodeset-di/dist/ua_lifetime_variable";
6
+ import { UAIMachineTagNameplate, UAIMachineTagNameplate_Base } from "./ua_i_machine_tag_nameplate";
7
+ /**
8
+ * Provides base identification information of
9
+ * MachineryEquipment that can be set by the user.
10
+ *
11
+ * | | |
12
+ * |----------------|------------------------------------------------------------|
13
+ * |namespace |http://opcfoundation.org/UA/Machinery/ |
14
+ * |nodeClass |ObjectType |
15
+ * |typedDefinition |IMachineryEquipmentType i=1007 |
16
+ * |isAbstract |true |
17
+ */
18
+ export interface UAIMachineryEquipment_Base extends UAIMachineTagNameplate_Base {
19
+ /**
20
+ * $description
21
+ * Additional information and description about the
22
+ * MachineryEquipment. Should be used if Description
23
+ * Attribute cannot be written via OPC UA and should
24
+ * be ideally identical to Description Attribute.
25
+ */
26
+ "$description"?: UAProperty<LocalizedText, DataType.LocalizedText>;
27
+ /**
28
+ * equipmentLife
29
+ * Lifetime indication of the MachineryEquipment.
30
+ */
31
+ equipmentLife?: UALifetimeVariable<any, any>;
32
+ /**
33
+ * machineryEquipmentTypeId
34
+ * Identification of a generic MachineryEquipment.
35
+ * Defined by each company (e.g., company has an
36
+ * MachineryEquipmentTypeId for all 8 mm drills).
37
+ */
38
+ machineryEquipmentTypeId: UAProperty<UAString, DataType.String>;
39
+ }
40
+ export interface UAIMachineryEquipment extends UAIMachineTagNameplate, UAIMachineryEquipment_Base {
41
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=ua_i_machinery_equipment.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ua_i_machinery_equipment.js","sourceRoot":"","sources":["../source/ua_i_machinery_equipment.ts"],"names":[],"mappings":""}
@@ -0,0 +1,82 @@
1
+ import { UAObject, UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { LocalizedText, QualifiedName } from "node-opcua-data-model";
4
+ import { UAString } from "node-opcua-basic-types";
5
+ import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/dist/ua_folder";
6
+ export interface UAMachineryEquipmentFolder_$MachineryEquipment$ extends UAObject {
7
+ /**
8
+ * assetId
9
+ * Companywide unique ID for a specific asset (Each
10
+ * 8 mm drill of a company has the same
11
+ * MachineryEquipmentTypeId and a unique AssetId).
12
+ */
13
+ assetId?: UAProperty<UAString, DataType.String>;
14
+ /**
15
+ * componentName
16
+ * Used name for the MachineryEquipment.
17
+ */
18
+ componentName?: UAProperty<LocalizedText, DataType.LocalizedText>;
19
+ /**
20
+ * $description
21
+ * Additional information and description about the
22
+ * MachineryEquipment. Should be used if Description
23
+ * Attribute cannot be written via OPC UA and should
24
+ * be ideally identical to Description Attribute.
25
+ */
26
+ "$description"?: UAProperty<LocalizedText, DataType.LocalizedText>;
27
+ /**
28
+ * deviceClass
29
+ * Class of the MachineryEquipment (e.g.: Each drill
30
+ * of a company has the DeviceClass "drill").
31
+ */
32
+ deviceClass?: UAProperty<UAString, DataType.String>;
33
+ /**
34
+ * location
35
+ * Location of the MachineryEquipment (e.g.: Storage
36
+ * Location; Position in the Tool Changer; Position
37
+ * on the machine).
38
+ */
39
+ location?: UAProperty<UAString, DataType.String>;
40
+ /**
41
+ * machineryEquipmentTypeId
42
+ * Identification of a generic MachineryEquipment.
43
+ * Defined by each company (e.g., company has an
44
+ * MachineryEquipmentTypeId for all 8 mm drills).
45
+ */
46
+ machineryEquipmentTypeId: UAProperty<UAString, DataType.String>;
47
+ /**
48
+ * manufacturerUri
49
+ * Manufacturer of the MachineryEquipment.
50
+ */
51
+ manufacturerUri?: UAProperty<UAString, DataType.String>;
52
+ /**
53
+ * model
54
+ * Model of the MachineryEquipment.
55
+ */
56
+ model?: UAProperty<LocalizedText, DataType.LocalizedText>;
57
+ /**
58
+ * serialNumber
59
+ * Serial Number of the MachineryEquipment.
60
+ */
61
+ serialNumber?: UAProperty<UAString, DataType.String>;
62
+ }
63
+ /**
64
+ * Defines an entry point for MachineryEquipment of
65
+ * a MachineryItem.
66
+ *
67
+ * | | |
68
+ * |----------------|------------------------------------------------------------|
69
+ * |namespace |http://opcfoundation.org/UA/Machinery/ |
70
+ * |nodeClass |ObjectType |
71
+ * |typedDefinition |MachineryEquipmentFolderType i=1013 |
72
+ * |isAbstract |false |
73
+ */
74
+ export interface UAMachineryEquipmentFolder_Base extends UAFolder_Base {
75
+ /**
76
+ * defaultInstanceBrowseName
77
+ * The default BrowseName for instances of the type.
78
+ */
79
+ defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
80
+ }
81
+ export interface UAMachineryEquipmentFolder extends UAFolder, UAMachineryEquipmentFolder_Base {
82
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=ua_machinery_equipment_folder.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ua_machinery_equipment_folder.js","sourceRoot":"","sources":["../source/ua_machinery_equipment_folder.ts"],"names":[],"mappings":""}
@@ -0,0 +1,66 @@
1
+ import { UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { QualifiedName } from "node-opcua-data-model";
4
+ import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/dist/ua_folder";
5
+ import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
6
+ import { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health";
7
+ import { UAMachineryItemState_StateMachine } from "./ua_machinery_item_state_state_machine";
8
+ import { UAMachineryOperationModeStateMachine } from "./ua_machinery_operation_mode_state_machine";
9
+ import { UABasicStacklight } from "node-opcua-nodeset-ia/dist/ua_basic_stacklight";
10
+ export interface UAMonitoring_health extends UAFolder {
11
+ deviceHealth?: UABaseDataVariable<EnumDeviceHealth, DataType.Int32>;
12
+ deviceHealthAlarms?: UAFolder;
13
+ }
14
+ export interface UAMonitoring_status extends UAFolder {
15
+ machineryItemState?: UAMachineryItemState_StateMachine;
16
+ operationMode?: UAMachineryOperationModeStateMachine;
17
+ stacklight?: UABasicStacklight;
18
+ }
19
+ /**
20
+ * Entry point for monitoring information of a
21
+ * MachineryItem.
22
+ *
23
+ * | | |
24
+ * |----------------|------------------------------------------------------------|
25
+ * |namespace |http://opcfoundation.org/UA/Machinery/ |
26
+ * |nodeClass |ObjectType |
27
+ * |typedDefinition |MonitoringType i=1014 |
28
+ * |isAbstract |false |
29
+ */
30
+ export interface UAMonitoring_Base extends UAFolder_Base {
31
+ /**
32
+ * consumption
33
+ * Entry point for consumption information of the
34
+ * MachineryItem.
35
+ */
36
+ consumption?: UAFolder;
37
+ /**
38
+ * defaultInstanceBrowseName
39
+ * The default BrowseName for instances of the type.
40
+ */
41
+ defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
42
+ /**
43
+ * health
44
+ * Entry point of health information of the
45
+ * MachineryItem.
46
+ */
47
+ health?: UAMonitoring_health;
48
+ /**
49
+ * process
50
+ * Entry point for process information of the
51
+ * MachineryItem.
52
+ */
53
+ process?: UAFolder;
54
+ /**
55
+ * status
56
+ * Entry point for status information of the
57
+ * MachineryItem. If this Object is provided, and
58
+ * the MachineryItemState is provided, it shall be
59
+ * referenced. If this Object is provided and the
60
+ * MachineryOperationMode is provided, it shall be
61
+ * referenced.
62
+ */
63
+ status?: UAMonitoring_status;
64
+ }
65
+ export interface UAMonitoring extends UAFolder, UAMonitoring_Base {
66
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=ua_monitoring.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ua_monitoring.js","sourceRoot":"","sources":["../source/ua_monitoring.ts"],"names":[],"mappings":""}
@@ -0,0 +1,23 @@
1
+ import { UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { QualifiedName } from "node-opcua-data-model";
4
+ import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/dist/ua_folder";
5
+ /**
6
+ * Provides notifications as events or objects.
7
+ *
8
+ * | | |
9
+ * |----------------|------------------------------------------------------------|
10
+ * |namespace |http://opcfoundation.org/UA/Machinery/ |
11
+ * |nodeClass |ObjectType |
12
+ * |typedDefinition |NotificationsType i=1017 |
13
+ * |isAbstract |false |
14
+ */
15
+ export interface UANotifications_Base extends UAFolder_Base {
16
+ /**
17
+ * defaultInstanceBrowseName
18
+ * The default BrowseName for instances of the type.
19
+ */
20
+ defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
21
+ }
22
+ export interface UANotifications extends UAFolder, UANotifications_Base {
23
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=ua_notifications.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ua_notifications.js","sourceRoot":"","sources":["../source/ua_notifications.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-opcua-nodeset-machinery",
3
- "version": "2.153.0",
3
+ "version": "2.154.0",
4
4
  "description": "pure nodejs OPCUA SDK - module node-opcua-nodeset-machinery",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,14 +11,15 @@
11
11
  "author": "Etienne Rossignon <etienne.rossignon@sterfive.com>",
12
12
  "license": "MIT",
13
13
  "dependencies": {
14
- "node-opcua-address-space-base": "2.153.0",
15
- "node-opcua-basic-types": "2.153.0",
16
- "node-opcua-data-access": "2.153.0",
17
- "node-opcua-data-model": "2.153.0",
14
+ "node-opcua-address-space-base": "2.154.0",
15
+ "node-opcua-basic-types": "2.154.0",
16
+ "node-opcua-data-access": "2.154.0",
17
+ "node-opcua-data-model": "2.154.0",
18
18
  "node-opcua-nodeid": "2.153.0",
19
- "node-opcua-nodeset-di": "2.153.0",
20
- "node-opcua-nodeset-ua": "2.153.0",
21
- "node-opcua-variant": "2.153.0"
19
+ "node-opcua-nodeset-di": "2.154.0",
20
+ "node-opcua-nodeset-ia": "2.154.0",
21
+ "node-opcua-nodeset-ua": "2.154.0",
22
+ "node-opcua-variant": "2.154.0"
22
23
  },
23
24
  "files": [
24
25
  "dist",
@@ -37,5 +38,5 @@
37
38
  "internet of things"
38
39
  ],
39
40
  "homepage": "http://node-opcua.github.io/",
40
- "gitHead": "2193ed025bc9aaded76338c1c76cbc0524b3a37f"
41
+ "gitHead": "134c73195f93f46c0101b2837bed22754156c916"
41
42
  }
package/source/index.ts CHANGED
@@ -1,11 +1,15 @@
1
1
  export * from "./ua_i_machine_tag_nameplate";
2
2
  export * from "./ua_i_machine_vendor_nameplate";
3
+ export * from "./ua_i_machinery_equipment";
3
4
  export * from "./ua_i_machinery_item_vendor_nameplate";
4
5
  export * from "./ua_machine_components";
5
6
  export * from "./ua_machine_identification";
6
7
  export * from "./ua_machinery_component_identification";
8
+ export * from "./ua_machinery_equipment_folder";
7
9
  export * from "./ua_machinery_item_identification";
8
10
  export * from "./ua_machinery_item_state_state_machine";
9
11
  export * from "./ua_machinery_lifetime_counter";
10
12
  export * from "./ua_machinery_operation_counter";
11
- export * from "./ua_machinery_operation_mode_state_machine";
13
+ export * from "./ua_machinery_operation_mode_state_machine";
14
+ export * from "./ua_monitoring";
15
+ export * from "./ua_notifications";
@@ -0,0 +1,42 @@
1
+ // ----- this file has been automatically generated - do not edit
2
+ import { UAProperty } from "node-opcua-address-space-base"
3
+ import { DataType } from "node-opcua-variant"
4
+ import { LocalizedText } from "node-opcua-data-model"
5
+ import { UAString } from "node-opcua-basic-types"
6
+ import { UALifetimeVariable } from "node-opcua-nodeset-di/dist/ua_lifetime_variable"
7
+ import { UAIMachineTagNameplate, UAIMachineTagNameplate_Base } from "./ua_i_machine_tag_nameplate"
8
+ /**
9
+ * Provides base identification information of
10
+ * MachineryEquipment that can be set by the user.
11
+ *
12
+ * | | |
13
+ * |----------------|------------------------------------------------------------|
14
+ * |namespace |http://opcfoundation.org/UA/Machinery/ |
15
+ * |nodeClass |ObjectType |
16
+ * |typedDefinition |IMachineryEquipmentType i=1007 |
17
+ * |isAbstract |true |
18
+ */
19
+ export interface UAIMachineryEquipment_Base extends UAIMachineTagNameplate_Base {
20
+ /**
21
+ * $description
22
+ * Additional information and description about the
23
+ * MachineryEquipment. Should be used if Description
24
+ * Attribute cannot be written via OPC UA and should
25
+ * be ideally identical to Description Attribute.
26
+ */
27
+ "$description"?: UAProperty<LocalizedText, DataType.LocalizedText>;
28
+ /**
29
+ * equipmentLife
30
+ * Lifetime indication of the MachineryEquipment.
31
+ */
32
+ equipmentLife?: UALifetimeVariable<any, any>;
33
+ /**
34
+ * machineryEquipmentTypeId
35
+ * Identification of a generic MachineryEquipment.
36
+ * Defined by each company (e.g., company has an
37
+ * MachineryEquipmentTypeId for all 8 mm drills).
38
+ */
39
+ machineryEquipmentTypeId: UAProperty<UAString, DataType.String>;
40
+ }
41
+ export interface UAIMachineryEquipment extends UAIMachineTagNameplate, UAIMachineryEquipment_Base {
42
+ }
@@ -0,0 +1,84 @@
1
+ // ----- this file has been automatically generated - do not edit
2
+ import { UAObject, UAProperty } from "node-opcua-address-space-base"
3
+ import { DataType } from "node-opcua-variant"
4
+ import { LocalizedText, QualifiedName } from "node-opcua-data-model"
5
+ import { UAString } from "node-opcua-basic-types"
6
+ import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/dist/ua_folder"
7
+ export interface UAMachineryEquipmentFolder_$MachineryEquipment$ extends UAObject { // Object
8
+ /**
9
+ * assetId
10
+ * Companywide unique ID for a specific asset (Each
11
+ * 8 mm drill of a company has the same
12
+ * MachineryEquipmentTypeId and a unique AssetId).
13
+ */
14
+ assetId?: UAProperty<UAString, DataType.String>;
15
+ /**
16
+ * componentName
17
+ * Used name for the MachineryEquipment.
18
+ */
19
+ componentName?: UAProperty<LocalizedText, DataType.LocalizedText>;
20
+ /**
21
+ * $description
22
+ * Additional information and description about the
23
+ * MachineryEquipment. Should be used if Description
24
+ * Attribute cannot be written via OPC UA and should
25
+ * be ideally identical to Description Attribute.
26
+ */
27
+ "$description"?: UAProperty<LocalizedText, DataType.LocalizedText>;
28
+ /**
29
+ * deviceClass
30
+ * Class of the MachineryEquipment (e.g.: Each drill
31
+ * of a company has the DeviceClass "drill").
32
+ */
33
+ deviceClass?: UAProperty<UAString, DataType.String>;
34
+ /**
35
+ * location
36
+ * Location of the MachineryEquipment (e.g.: Storage
37
+ * Location; Position in the Tool Changer; Position
38
+ * on the machine).
39
+ */
40
+ location?: UAProperty<UAString, DataType.String>;
41
+ /**
42
+ * machineryEquipmentTypeId
43
+ * Identification of a generic MachineryEquipment.
44
+ * Defined by each company (e.g., company has an
45
+ * MachineryEquipmentTypeId for all 8 mm drills).
46
+ */
47
+ machineryEquipmentTypeId: UAProperty<UAString, DataType.String>;
48
+ /**
49
+ * manufacturerUri
50
+ * Manufacturer of the MachineryEquipment.
51
+ */
52
+ manufacturerUri?: UAProperty<UAString, DataType.String>;
53
+ /**
54
+ * model
55
+ * Model of the MachineryEquipment.
56
+ */
57
+ model?: UAProperty<LocalizedText, DataType.LocalizedText>;
58
+ /**
59
+ * serialNumber
60
+ * Serial Number of the MachineryEquipment.
61
+ */
62
+ serialNumber?: UAProperty<UAString, DataType.String>;
63
+ }
64
+ /**
65
+ * Defines an entry point for MachineryEquipment of
66
+ * a MachineryItem.
67
+ *
68
+ * | | |
69
+ * |----------------|------------------------------------------------------------|
70
+ * |namespace |http://opcfoundation.org/UA/Machinery/ |
71
+ * |nodeClass |ObjectType |
72
+ * |typedDefinition |MachineryEquipmentFolderType i=1013 |
73
+ * |isAbstract |false |
74
+ */
75
+ export interface UAMachineryEquipmentFolder_Base extends UAFolder_Base {
76
+ // PlaceHolder for $MachineryEquipment$
77
+ /**
78
+ * defaultInstanceBrowseName
79
+ * The default BrowseName for instances of the type.
80
+ */
81
+ defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
82
+ }
83
+ export interface UAMachineryEquipmentFolder extends UAFolder, UAMachineryEquipmentFolder_Base {
84
+ }
@@ -0,0 +1,67 @@
1
+ // ----- this file has been automatically generated - do not edit
2
+ import { UAProperty } from "node-opcua-address-space-base"
3
+ import { DataType } from "node-opcua-variant"
4
+ import { QualifiedName } from "node-opcua-data-model"
5
+ import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/dist/ua_folder"
6
+ import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
7
+ import { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health"
8
+ import { UAMachineryItemState_StateMachine } from "./ua_machinery_item_state_state_machine"
9
+ import { UAMachineryOperationModeStateMachine } from "./ua_machinery_operation_mode_state_machine"
10
+ import { UABasicStacklight } from "node-opcua-nodeset-ia/dist/ua_basic_stacklight"
11
+ export interface UAMonitoring_health extends UAFolder { // Object
12
+ deviceHealth?: UABaseDataVariable<EnumDeviceHealth, DataType.Int32>;
13
+ deviceHealthAlarms?: UAFolder;
14
+ }
15
+ export interface UAMonitoring_status extends UAFolder { // Object
16
+ machineryItemState?: UAMachineryItemState_StateMachine;
17
+ operationMode?: UAMachineryOperationModeStateMachine;
18
+ stacklight?: UABasicStacklight;
19
+ }
20
+ /**
21
+ * Entry point for monitoring information of a
22
+ * MachineryItem.
23
+ *
24
+ * | | |
25
+ * |----------------|------------------------------------------------------------|
26
+ * |namespace |http://opcfoundation.org/UA/Machinery/ |
27
+ * |nodeClass |ObjectType |
28
+ * |typedDefinition |MonitoringType i=1014 |
29
+ * |isAbstract |false |
30
+ */
31
+ export interface UAMonitoring_Base extends UAFolder_Base {
32
+ /**
33
+ * consumption
34
+ * Entry point for consumption information of the
35
+ * MachineryItem.
36
+ */
37
+ consumption?: UAFolder;
38
+ /**
39
+ * defaultInstanceBrowseName
40
+ * The default BrowseName for instances of the type.
41
+ */
42
+ defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
43
+ /**
44
+ * health
45
+ * Entry point of health information of the
46
+ * MachineryItem.
47
+ */
48
+ health?: UAMonitoring_health;
49
+ /**
50
+ * process
51
+ * Entry point for process information of the
52
+ * MachineryItem.
53
+ */
54
+ process?: UAFolder;
55
+ /**
56
+ * status
57
+ * Entry point for status information of the
58
+ * MachineryItem. If this Object is provided, and
59
+ * the MachineryItemState is provided, it shall be
60
+ * referenced. If this Object is provided and the
61
+ * MachineryOperationMode is provided, it shall be
62
+ * referenced.
63
+ */
64
+ status?: UAMonitoring_status;
65
+ }
66
+ export interface UAMonitoring extends UAFolder, UAMonitoring_Base {
67
+ }
@@ -0,0 +1,24 @@
1
+ // ----- this file has been automatically generated - do not edit
2
+ import { UAProperty } from "node-opcua-address-space-base"
3
+ import { DataType } from "node-opcua-variant"
4
+ import { QualifiedName } from "node-opcua-data-model"
5
+ import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/dist/ua_folder"
6
+ /**
7
+ * Provides notifications as events or objects.
8
+ *
9
+ * | | |
10
+ * |----------------|------------------------------------------------------------|
11
+ * |namespace |http://opcfoundation.org/UA/Machinery/ |
12
+ * |nodeClass |ObjectType |
13
+ * |typedDefinition |NotificationsType i=1017 |
14
+ * |isAbstract |false |
15
+ */
16
+ export interface UANotifications_Base extends UAFolder_Base {
17
+ /**
18
+ * defaultInstanceBrowseName
19
+ * The default BrowseName for instances of the type.
20
+ */
21
+ defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
22
+ }
23
+ export interface UANotifications extends UAFolder, UANotifications_Base {
24
+ }