node-opcua-nodeset-amb 2.137.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/LICENSE +23 -0
- package/dist/dt_name_node_id.d.ts +24 -0
- package/dist/dt_name_node_id.js +4 -0
- package/dist/dt_name_node_id.js.map +1 -0
- package/dist/dt_root_cause.d.ts +22 -0
- package/dist/dt_root_cause.js +4 -0
- package/dist/dt_root_cause.js.map +1 -0
- package/dist/enum_maintenance_method_enum.d.ts +18 -0
- package/dist/enum_maintenance_method_enum.js +24 -0
- package/dist/enum_maintenance_method_enum.js.map +1 -0
- package/dist/index.d.ts +21 -0
- package/dist/index.js +38 -0
- package/dist/index.js.map +1 -0
- package/dist/ua_bad_configuration_condition_class.d.ts +14 -0
- package/dist/ua_bad_configuration_condition_class.js +3 -0
- package/dist/ua_bad_configuration_condition_class.js.map +1 -0
- package/dist/ua_calibration_due_condition_class.d.ts +14 -0
- package/dist/ua_calibration_due_condition_class.js +3 -0
- package/dist/ua_calibration_due_condition_class.js.map +1 -0
- package/dist/ua_connection_failure_condition_class.d.ts +14 -0
- package/dist/ua_connection_failure_condition_class.js +3 -0
- package/dist/ua_connection_failure_condition_class.js.map +1 -0
- package/dist/ua_documentation_links.d.ts +21 -0
- package/dist/ua_documentation_links.js +3 -0
- package/dist/ua_documentation_links.js.map +1 -0
- package/dist/ua_external_check_condition_class.d.ts +14 -0
- package/dist/ua_external_check_condition_class.js +3 -0
- package/dist/ua_external_check_condition_class.js.map +1 -0
- package/dist/ua_flash_update_failed_condition_class.d.ts +14 -0
- package/dist/ua_flash_update_failed_condition_class.js +3 -0
- package/dist/ua_flash_update_failed_condition_class.js.map +1 -0
- package/dist/ua_flash_update_in_progress_condition_class.d.ts +14 -0
- package/dist/ua_flash_update_in_progress_condition_class.js +3 -0
- package/dist/ua_flash_update_in_progress_condition_class.js.map +1 -0
- package/dist/ua_i_maintenance_event.d.ts +143 -0
- package/dist/ua_i_maintenance_event.js +3 -0
- package/dist/ua_i_maintenance_event.js.map +1 -0
- package/dist/ua_i_root_cause_indication.d.ts +35 -0
- package/dist/ua_i_root_cause_indication.js +3 -0
- package/dist/ua_i_root_cause_indication.js.map +1 -0
- package/dist/ua_improvement_condition_class.d.ts +14 -0
- package/dist/ua_improvement_condition_class.js +3 -0
- package/dist/ua_improvement_condition_class.js.map +1 -0
- package/dist/ua_inspection_condition_class.d.ts +14 -0
- package/dist/ua_inspection_condition_class.js +3 -0
- package/dist/ua_inspection_condition_class.js.map +1 -0
- package/dist/ua_maintenance_event_state_machine.d.ts +26 -0
- package/dist/ua_maintenance_event_state_machine.js +3 -0
- package/dist/ua_maintenance_event_state_machine.js.map +1 -0
- package/dist/ua_out_of_memory_condition_class.d.ts +14 -0
- package/dist/ua_out_of_memory_condition_class.js +3 -0
- package/dist/ua_out_of_memory_condition_class.js.map +1 -0
- package/dist/ua_out_of_resources_condition_class.d.ts +14 -0
- package/dist/ua_out_of_resources_condition_class.js +3 -0
- package/dist/ua_out_of_resources_condition_class.js.map +1 -0
- package/dist/ua_over_temperature_condition_class.d.ts +14 -0
- package/dist/ua_over_temperature_condition_class.js +3 -0
- package/dist/ua_over_temperature_condition_class.js.map +1 -0
- package/dist/ua_repair_condition_class.d.ts +14 -0
- package/dist/ua_repair_condition_class.js +3 -0
- package/dist/ua_repair_condition_class.js.map +1 -0
- package/dist/ua_self_test_failure_condition_class.d.ts +14 -0
- package/dist/ua_self_test_failure_condition_class.js +3 -0
- package/dist/ua_self_test_failure_condition_class.js.map +1 -0
- package/dist/ua_servicing_condition_class.d.ts +14 -0
- package/dist/ua_servicing_condition_class.js +3 -0
- package/dist/ua_servicing_condition_class.js.map +1 -0
- package/package.json +39 -0
- package/source/dt_name_node_id.ts +24 -0
- package/source/dt_root_cause.ts +22 -0
- package/source/enum_maintenance_method_enum.ts +20 -0
- package/source/index.ts +21 -0
- package/source/ua_bad_configuration_condition_class.ts +15 -0
- package/source/ua_calibration_due_condition_class.ts +15 -0
- package/source/ua_connection_failure_condition_class.ts +15 -0
- package/source/ua_documentation_links.ts +25 -0
- package/source/ua_external_check_condition_class.ts +15 -0
- package/source/ua_flash_update_failed_condition_class.ts +15 -0
- package/source/ua_flash_update_in_progress_condition_class.ts +15 -0
- package/source/ua_i_maintenance_event.ts +145 -0
- package/source/ua_i_root_cause_indication.ts +36 -0
- package/source/ua_improvement_condition_class.ts +15 -0
- package/source/ua_inspection_condition_class.ts +15 -0
- package/source/ua_maintenance_event_state_machine.ts +31 -0
- package/source/ua_out_of_memory_condition_class.ts +15 -0
- package/source/ua_out_of_resources_condition_class.ts +15 -0
- package/source/ua_over_temperature_condition_class.ts +15 -0
- package/source/ua_repair_condition_class.ts +15 -0
- package/source/ua_self_test_failure_condition_class.ts +15 -0
- package/source/ua_servicing_condition_class.ts +15 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
|
|
2
|
+
The MIT License (MIT)
|
|
3
|
+
|
|
4
|
+
Copyright (c) 2022-2024 Sterfive SAS - 833264583 RCS ORLEANS - France (https://www.sterfive.com)
|
|
5
|
+
|
|
6
|
+
Copyright (c) 2014-2022 Etienne Rossignon
|
|
7
|
+
|
|
8
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
9
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
10
|
+
the Software without restriction, including without limitation the rights to
|
|
11
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
12
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
13
|
+
subject to the following conditions:
|
|
14
|
+
|
|
15
|
+
The above copyright notice and this permission notice shall be included in all
|
|
16
|
+
copies or substantial portions of the Software.
|
|
17
|
+
|
|
18
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
19
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
20
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
21
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
22
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
23
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { LocalizedText } from "node-opcua-data-model";
|
|
2
|
+
import { NodeId } from "node-opcua-nodeid";
|
|
3
|
+
import { ExtensionObject } from "node-opcua-extension-object";
|
|
4
|
+
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
|
|
5
|
+
/**
|
|
6
|
+
* A human-readable name of something plus
|
|
7
|
+
* optionally the NodeId in case the something is
|
|
8
|
+
* represented in the AddressSpace
|
|
9
|
+
*
|
|
10
|
+
* | | |
|
|
11
|
+
* |-----------|------------------------------------------------------------|
|
|
12
|
+
* | namespace |http://opcfoundation.org/UA/AMB/ |
|
|
13
|
+
* | nodeClass |DataType |
|
|
14
|
+
* | name |NameNodeIdDataType |
|
|
15
|
+
* | isAbstract|false |
|
|
16
|
+
*/
|
|
17
|
+
export interface DTNameNodeId extends DTStructure {
|
|
18
|
+
/** The human-readable name. Shall be the DisplayName of the NodeId field, in case the NodeId is provided*/
|
|
19
|
+
name: LocalizedText;
|
|
20
|
+
/** Optionally provided NodeId, in case the referenced thing is represented as Node in the AddressSpace.*/
|
|
21
|
+
nodeId: NodeId;
|
|
22
|
+
}
|
|
23
|
+
export interface UDTNameNodeId extends ExtensionObject, DTNameNodeId {
|
|
24
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dt_name_node_id.js","sourceRoot":"","sources":["../source/dt_name_node_id.ts"],"names":[],"mappings":";;AAuBuE,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { LocalizedText } from "node-opcua-data-model";
|
|
2
|
+
import { NodeId } from "node-opcua-nodeid";
|
|
3
|
+
import { ExtensionObject } from "node-opcua-extension-object";
|
|
4
|
+
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
|
|
5
|
+
/**
|
|
6
|
+
* Root cause of an alarm
|
|
7
|
+
*
|
|
8
|
+
* | | |
|
|
9
|
+
* |-----------|------------------------------------------------------------|
|
|
10
|
+
* | namespace |http://opcfoundation.org/UA/AMB/ |
|
|
11
|
+
* | nodeClass |DataType |
|
|
12
|
+
* | name |RootCauseDataType |
|
|
13
|
+
* | isAbstract|false |
|
|
14
|
+
*/
|
|
15
|
+
export interface DTRootCause extends DTStructure {
|
|
16
|
+
/** The NodeId of the root cause of an alarm. This can point to another Node in the AddressSpace or a ConditionId, that is not necessarily represent as Object in the AddressSpace. Ideally, this points directly to the root cause. Potentially, it points to an alarm that has an additional root cause. Clients shall expect, that they need to follow a path to find the root cause. If the root cause is unknown, the NodeId shall be set to NULL.*/
|
|
17
|
+
rootCauseId: NodeId;
|
|
18
|
+
/** Localized description of the root cause of an alarm. This can be the DisplayName of the Node referenced by RootCauseId or a more descriptive text. If the root cause is unknown, this should be described in the text.*/
|
|
19
|
+
rootCause: LocalizedText;
|
|
20
|
+
}
|
|
21
|
+
export interface UDTRootCause extends ExtensionObject, DTRootCause {
|
|
22
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dt_root_cause.js","sourceRoot":"","sources":["../source/dt_root_cause.ts"],"names":[],"mappings":";;AAqBqE,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* | | |
|
|
3
|
+
* |-----------|------------------------------------------------------------|
|
|
4
|
+
* | namespace |http://opcfoundation.org/UA/AMB/ |
|
|
5
|
+
* | nodeClass |DataType |
|
|
6
|
+
* | name |MaintenanceMethodEnum |
|
|
7
|
+
* | isAbstract|false |
|
|
8
|
+
*/
|
|
9
|
+
export declare enum EnumMaintenanceMethodEnum {
|
|
10
|
+
/**
|
|
11
|
+
* Maintenance close to the asset
|
|
12
|
+
*/
|
|
13
|
+
Local = 0,
|
|
14
|
+
/**
|
|
15
|
+
* Maintenance from another location
|
|
16
|
+
*/
|
|
17
|
+
Remote = 1
|
|
18
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// ----- this file has been automatically generated - do not edit
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.EnumMaintenanceMethodEnum = void 0;
|
|
5
|
+
/**
|
|
6
|
+
* | | |
|
|
7
|
+
* |-----------|------------------------------------------------------------|
|
|
8
|
+
* | namespace |http://opcfoundation.org/UA/AMB/ |
|
|
9
|
+
* | nodeClass |DataType |
|
|
10
|
+
* | name |MaintenanceMethodEnum |
|
|
11
|
+
* | isAbstract|false |
|
|
12
|
+
*/
|
|
13
|
+
var EnumMaintenanceMethodEnum;
|
|
14
|
+
(function (EnumMaintenanceMethodEnum) {
|
|
15
|
+
/**
|
|
16
|
+
* Maintenance close to the asset
|
|
17
|
+
*/
|
|
18
|
+
EnumMaintenanceMethodEnum[EnumMaintenanceMethodEnum["Local"] = 0] = "Local";
|
|
19
|
+
/**
|
|
20
|
+
* Maintenance from another location
|
|
21
|
+
*/
|
|
22
|
+
EnumMaintenanceMethodEnum[EnumMaintenanceMethodEnum["Remote"] = 1] = "Remote";
|
|
23
|
+
})(EnumMaintenanceMethodEnum || (exports.EnumMaintenanceMethodEnum = EnumMaintenanceMethodEnum = {}));
|
|
24
|
+
//# sourceMappingURL=enum_maintenance_method_enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enum_maintenance_method_enum.js","sourceRoot":"","sources":["../source/enum_maintenance_method_enum.ts"],"names":[],"mappings":";AAAA,iEAAiE;;;AAEjE;;;;;;;GAOG;AACH,IAAY,yBASX;AATD,WAAY,yBAAyB;IACnC;;OAEG;IACH,2EAAS,CAAA;IACT;;OAEG;IACH,6EAAU,CAAA;AACZ,CAAC,EATW,yBAAyB,yCAAzB,yBAAyB,QASpC"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export * from "./dt_name_node_id";
|
|
2
|
+
export * from "./dt_root_cause";
|
|
3
|
+
export * from "./enum_maintenance_method_enum";
|
|
4
|
+
export * from "./ua_bad_configuration_condition_class";
|
|
5
|
+
export * from "./ua_calibration_due_condition_class";
|
|
6
|
+
export * from "./ua_connection_failure_condition_class";
|
|
7
|
+
export * from "./ua_documentation_links";
|
|
8
|
+
export * from "./ua_external_check_condition_class";
|
|
9
|
+
export * from "./ua_flash_update_failed_condition_class";
|
|
10
|
+
export * from "./ua_flash_update_in_progress_condition_class";
|
|
11
|
+
export * from "./ua_i_maintenance_event";
|
|
12
|
+
export * from "./ua_i_root_cause_indication";
|
|
13
|
+
export * from "./ua_improvement_condition_class";
|
|
14
|
+
export * from "./ua_inspection_condition_class";
|
|
15
|
+
export * from "./ua_maintenance_event_state_machine";
|
|
16
|
+
export * from "./ua_out_of_memory_condition_class";
|
|
17
|
+
export * from "./ua_out_of_resources_condition_class";
|
|
18
|
+
export * from "./ua_over_temperature_condition_class";
|
|
19
|
+
export * from "./ua_repair_condition_class";
|
|
20
|
+
export * from "./ua_self_test_failure_condition_class";
|
|
21
|
+
export * from "./ua_servicing_condition_class";
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./dt_name_node_id"), exports);
|
|
18
|
+
__exportStar(require("./dt_root_cause"), exports);
|
|
19
|
+
__exportStar(require("./enum_maintenance_method_enum"), exports);
|
|
20
|
+
__exportStar(require("./ua_bad_configuration_condition_class"), exports);
|
|
21
|
+
__exportStar(require("./ua_calibration_due_condition_class"), exports);
|
|
22
|
+
__exportStar(require("./ua_connection_failure_condition_class"), exports);
|
|
23
|
+
__exportStar(require("./ua_documentation_links"), exports);
|
|
24
|
+
__exportStar(require("./ua_external_check_condition_class"), exports);
|
|
25
|
+
__exportStar(require("./ua_flash_update_failed_condition_class"), exports);
|
|
26
|
+
__exportStar(require("./ua_flash_update_in_progress_condition_class"), exports);
|
|
27
|
+
__exportStar(require("./ua_i_maintenance_event"), exports);
|
|
28
|
+
__exportStar(require("./ua_i_root_cause_indication"), exports);
|
|
29
|
+
__exportStar(require("./ua_improvement_condition_class"), exports);
|
|
30
|
+
__exportStar(require("./ua_inspection_condition_class"), exports);
|
|
31
|
+
__exportStar(require("./ua_maintenance_event_state_machine"), exports);
|
|
32
|
+
__exportStar(require("./ua_out_of_memory_condition_class"), exports);
|
|
33
|
+
__exportStar(require("./ua_out_of_resources_condition_class"), exports);
|
|
34
|
+
__exportStar(require("./ua_over_temperature_condition_class"), exports);
|
|
35
|
+
__exportStar(require("./ua_repair_condition_class"), exports);
|
|
36
|
+
__exportStar(require("./ua_self_test_failure_condition_class"), exports);
|
|
37
|
+
__exportStar(require("./ua_servicing_condition_class"), exports);
|
|
38
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../source/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAkC;AAClC,kDAAgC;AAChC,iEAA+C;AAC/C,yEAAuD;AACvD,uEAAqD;AACrD,0EAAwD;AACxD,2DAAyC;AACzC,sEAAoD;AACpD,2EAAyD;AACzD,gFAA8D;AAC9D,2DAAyC;AACzC,+DAA6C;AAC7C,mEAAiD;AACjD,kEAAgD;AAChD,uEAAqD;AACrD,qEAAmD;AACnD,wEAAsD;AACtD,wEAAsD;AACtD,8DAA4C;AAC5C,yEAAuD;AACvD,iEAA+C"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { UASystemConditionClass, UASystemConditionClass_Base } from "node-opcua-nodeset-ua/source/ua_system_condition_class";
|
|
2
|
+
/**
|
|
3
|
+
* Configuration is bad
|
|
4
|
+
*
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/AMB/ |
|
|
8
|
+
* |nodeClass |ObjectType |
|
|
9
|
+
* |typedDefinition |BadConfigurationConditionClassType i=1008 |
|
|
10
|
+
* |isAbstract |true |
|
|
11
|
+
*/
|
|
12
|
+
export type UABadConfigurationConditionClass_Base = UASystemConditionClass_Base;
|
|
13
|
+
export interface UABadConfigurationConditionClass extends UASystemConditionClass, UABadConfigurationConditionClass_Base {
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_bad_configuration_condition_class.js","sourceRoot":"","sources":["../source/ua_bad_configuration_condition_class.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { UAMaintenanceConditionClass, UAMaintenanceConditionClass_Base } from "node-opcua-nodeset-ua/source/ua_maintenance_condition_class";
|
|
2
|
+
/**
|
|
3
|
+
* Calibration is due
|
|
4
|
+
*
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/AMB/ |
|
|
8
|
+
* |nodeClass |ObjectType |
|
|
9
|
+
* |typedDefinition |CalibrationDueConditionClassType i=1005 |
|
|
10
|
+
* |isAbstract |true |
|
|
11
|
+
*/
|
|
12
|
+
export type UACalibrationDueConditionClass_Base = UAMaintenanceConditionClass_Base;
|
|
13
|
+
export interface UACalibrationDueConditionClass extends UAMaintenanceConditionClass, UACalibrationDueConditionClass_Base {
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_calibration_due_condition_class.js","sourceRoot":"","sources":["../source/ua_calibration_due_condition_class.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { UASystemConditionClass, UASystemConditionClass_Base } from "node-opcua-nodeset-ua/source/ua_system_condition_class";
|
|
2
|
+
/**
|
|
3
|
+
* One or more connections have failed
|
|
4
|
+
*
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/AMB/ |
|
|
8
|
+
* |nodeClass |ObjectType |
|
|
9
|
+
* |typedDefinition |ConnectionFailureConditionClassType i=1003 |
|
|
10
|
+
* |isAbstract |true |
|
|
11
|
+
*/
|
|
12
|
+
export type UAConnectionFailureConditionClass_Base = UASystemConditionClass_Base;
|
|
13
|
+
export interface UAConnectionFailureConditionClass extends UASystemConditionClass, UAConnectionFailureConditionClass_Base {
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_connection_failure_condition_class.js","sourceRoot":"","sources":["../source/ua_connection_failure_condition_class.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { UAObject, UAMethod, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import { DataType } from "node-opcua-variant";
|
|
3
|
+
import { QualifiedName } from "node-opcua-data-model";
|
|
4
|
+
/**
|
|
5
|
+
* AddIn to link documentation provided by the
|
|
6
|
+
* manufacturer and / or end-user.
|
|
7
|
+
*
|
|
8
|
+
* | | |
|
|
9
|
+
* |----------------|------------------------------------------------------------|
|
|
10
|
+
* |namespace |http://opcfoundation.org/UA/AMB/ |
|
|
11
|
+
* |nodeClass |ObjectType |
|
|
12
|
+
* |typedDefinition |DocumentationLinksType i=1011 |
|
|
13
|
+
* |isAbstract |false |
|
|
14
|
+
*/
|
|
15
|
+
export interface UADocumentationLinks_Base {
|
|
16
|
+
addLink?: UAMethod;
|
|
17
|
+
defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
|
|
18
|
+
removeLink?: UAMethod;
|
|
19
|
+
}
|
|
20
|
+
export interface UADocumentationLinks extends UAObject, UADocumentationLinks_Base {
|
|
21
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_documentation_links.js","sourceRoot":"","sources":["../source/ua_documentation_links.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { UAMaintenanceConditionClass, UAMaintenanceConditionClass_Base } from "node-opcua-nodeset-ua/source/ua_maintenance_condition_class";
|
|
2
|
+
/**
|
|
3
|
+
* An external check maintenance activity
|
|
4
|
+
*
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/AMB/ |
|
|
8
|
+
* |nodeClass |ObjectType |
|
|
9
|
+
* |typedDefinition |ExternalCheckConditionClassType i=1015 |
|
|
10
|
+
* |isAbstract |true |
|
|
11
|
+
*/
|
|
12
|
+
export type UAExternalCheckConditionClass_Base = UAMaintenanceConditionClass_Base;
|
|
13
|
+
export interface UAExternalCheckConditionClass extends UAMaintenanceConditionClass, UAExternalCheckConditionClass_Base {
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_external_check_condition_class.js","sourceRoot":"","sources":["../source/ua_external_check_condition_class.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { UASystemConditionClass, UASystemConditionClass_Base } from "node-opcua-nodeset-ua/source/ua_system_condition_class";
|
|
2
|
+
/**
|
|
3
|
+
* Flash update has failed
|
|
4
|
+
*
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/AMB/ |
|
|
8
|
+
* |nodeClass |ObjectType |
|
|
9
|
+
* |typedDefinition |FlashUpdateFailedConditionClassType i=1019 |
|
|
10
|
+
* |isAbstract |true |
|
|
11
|
+
*/
|
|
12
|
+
export type UAFlashUpdateFailedConditionClass_Base = UASystemConditionClass_Base;
|
|
13
|
+
export interface UAFlashUpdateFailedConditionClass extends UASystemConditionClass, UAFlashUpdateFailedConditionClass_Base {
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_flash_update_failed_condition_class.js","sourceRoot":"","sources":["../source/ua_flash_update_failed_condition_class.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { UAMaintenanceConditionClass, UAMaintenanceConditionClass_Base } from "node-opcua-nodeset-ua/source/ua_maintenance_condition_class";
|
|
2
|
+
/**
|
|
3
|
+
* Flash update in progress
|
|
4
|
+
*
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/AMB/ |
|
|
8
|
+
* |nodeClass |ObjectType |
|
|
9
|
+
* |typedDefinition |FlashUpdateInProgressConditionClassType i=1007 |
|
|
10
|
+
* |isAbstract |true |
|
|
11
|
+
*/
|
|
12
|
+
export type UAFlashUpdateInProgressConditionClass_Base = UAMaintenanceConditionClass_Base;
|
|
13
|
+
export interface UAFlashUpdateInProgressConditionClass extends UAMaintenanceConditionClass, UAFlashUpdateInProgressConditionClass_Base {
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_flash_update_in_progress_condition_class.js","sourceRoot":"","sources":["../source/ua_flash_update_in_progress_condition_class.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import { DataType } from "node-opcua-variant";
|
|
3
|
+
import { UABaseInterface, UABaseInterface_Base } from "node-opcua-nodeset-ua/source/ua_base_interface";
|
|
4
|
+
import { EnumMaintenanceMethodEnum } from "./enum_maintenance_method_enum";
|
|
5
|
+
import { DTNameNodeId } from "./dt_name_node_id";
|
|
6
|
+
import { UAMaintenanceEventStateMachine } from "./ua_maintenance_event_state_machine";
|
|
7
|
+
/**
|
|
8
|
+
* Information on maintenance activities, should by
|
|
9
|
+
* applied to conditions (ConditionType or subtypes)
|
|
10
|
+
*
|
|
11
|
+
* | | |
|
|
12
|
+
* |----------------|------------------------------------------------------------|
|
|
13
|
+
* |namespace |http://opcfoundation.org/UA/AMB/ |
|
|
14
|
+
* |nodeClass |ObjectType |
|
|
15
|
+
* |typedDefinition |IMaintenanceEventType i=1012 |
|
|
16
|
+
* |isAbstract |true |
|
|
17
|
+
*/
|
|
18
|
+
export interface UAIMaintenanceEvent_Base extends UABaseInterface_Base {
|
|
19
|
+
/**
|
|
20
|
+
* configurationChanged
|
|
21
|
+
* Information if the configuration of the asset is
|
|
22
|
+
* planned to be changed or has changed during the
|
|
23
|
+
* maintenance activity. FALSE indicates no change,
|
|
24
|
+
* and TRUE indicates a change. The content may
|
|
25
|
+
* change during the different MaintenanceStates. By
|
|
26
|
+
* accessing the history of Events a Client can
|
|
27
|
+
* distinguish between the planned and actual
|
|
28
|
+
* configuration changes during the maintenance
|
|
29
|
+
* activity.
|
|
30
|
+
*/
|
|
31
|
+
configurationChanged?: UAProperty<boolean, DataType.Boolean>;
|
|
32
|
+
/**
|
|
33
|
+
* estimatedDowntime
|
|
34
|
+
* The estimated time the execution of the
|
|
35
|
+
* maintenance activity will take. In case of
|
|
36
|
+
* replanning, it is allowed to change the
|
|
37
|
+
* EstimatedDowntime. If during the execution of the
|
|
38
|
+
* maintenance activity the EstimatedDowntime can be
|
|
39
|
+
* adjusted (e.g., the asset needs to be repaired
|
|
40
|
+
* because an inspection found some issues) this
|
|
41
|
+
* should be done. Clients can access the history of
|
|
42
|
+
* Events to receive the information on the original
|
|
43
|
+
* estimates when the maintenance activity started.
|
|
44
|
+
*/
|
|
45
|
+
estimatedDowntime?: UAProperty<number, DataType.Double>;
|
|
46
|
+
/**
|
|
47
|
+
* maintenanceMethod
|
|
48
|
+
* Information about the planned or used maintenance
|
|
49
|
+
* method. The content may change during the
|
|
50
|
+
* different MaintenanceStates. By accessing the
|
|
51
|
+
* history of Events a Client can distinguish
|
|
52
|
+
* between the planned and actual used maintenance
|
|
53
|
+
* method during the maintenance activity.
|
|
54
|
+
*/
|
|
55
|
+
maintenanceMethod?: UAProperty<EnumMaintenanceMethodEnum, DataType.Int32>;
|
|
56
|
+
/**
|
|
57
|
+
* maintenanceState
|
|
58
|
+
* Information if the maintenance activity is still
|
|
59
|
+
* planned, currently in execution, or has already
|
|
60
|
+
* been executed.
|
|
61
|
+
*/
|
|
62
|
+
maintenanceState: UAMaintenanceEventStateMachine;
|
|
63
|
+
/**
|
|
64
|
+
* maintenanceSupplier
|
|
65
|
+
* Information on the supplier that is planned to
|
|
66
|
+
* execute, currently executing or has executed the
|
|
67
|
+
* maintenance activity. The content may change
|
|
68
|
+
* during the different MaintenanceStates. By
|
|
69
|
+
* accessing the history of Events a Client can
|
|
70
|
+
* distinguish between the planned and actual
|
|
71
|
+
* supplier that executed the maintenance activity.
|
|
72
|
+
* The value contains always a human-readable name
|
|
73
|
+
* of the supplier and optionally references a Node
|
|
74
|
+
* representing the supplier in the AddressSpace.
|
|
75
|
+
*/
|
|
76
|
+
maintenanceSupplier?: UAProperty<DTNameNodeId, DataType.ExtensionObject>;
|
|
77
|
+
/**
|
|
78
|
+
* partsOfAssetReplaced
|
|
79
|
+
* Information on the parts of the assets that are
|
|
80
|
+
* planned to be serviced during the maintenance
|
|
81
|
+
* activity, currently serviced or have been
|
|
82
|
+
* serviced, depending on the different
|
|
83
|
+
* MaintenanceStates. The content may change during
|
|
84
|
+
* the different MaintenanceStates. By accessing the
|
|
85
|
+
* history of Events a Client can distinguish
|
|
86
|
+
* between the planned and actual parts of the
|
|
87
|
+
* assets serviced during the maintenance activity.
|
|
88
|
+
* The value contains always an array of a
|
|
89
|
+
* human-readable name of the qualification of the
|
|
90
|
+
* parts of the asset to be serviced and optionally
|
|
91
|
+
* references a Node representing the part of the
|
|
92
|
+
* asset in the AddressSpace.
|
|
93
|
+
*/
|
|
94
|
+
partsOfAssetReplaced?: UAProperty<DTNameNodeId[], DataType.ExtensionObject>;
|
|
95
|
+
/**
|
|
96
|
+
* partsOfAssetServiced
|
|
97
|
+
* Information on the parts of the assets that are
|
|
98
|
+
* planned to be serviced during the maintenance
|
|
99
|
+
* activity, currently serviced or have been
|
|
100
|
+
* serviced, depending on the different
|
|
101
|
+
* MaintenanceStates. The content may change during
|
|
102
|
+
* the different MaintenanceStates. By accessing the
|
|
103
|
+
* history of Events a Client can distinguish
|
|
104
|
+
* between the planned and actual parts of the
|
|
105
|
+
* assets serviced during the maintenance activity.
|
|
106
|
+
* The value contains always an array of a
|
|
107
|
+
* human-readable name of the qualification of the
|
|
108
|
+
* parts of the asset to be serviced and optionally
|
|
109
|
+
* references a Node representing the part of the
|
|
110
|
+
* asset in the AddressSpace.
|
|
111
|
+
*/
|
|
112
|
+
partsOfAssetServiced?: UAProperty<DTNameNodeId[], DataType.ExtensionObject>;
|
|
113
|
+
/**
|
|
114
|
+
* plannedDate
|
|
115
|
+
* Date for which the maintenance activity has been
|
|
116
|
+
* scheduled. In case of replanning, it is allowed
|
|
117
|
+
* to change the PlannedDate. However, it is not the
|
|
118
|
+
* intention that the PlannedDate is modified
|
|
119
|
+
* because the maintenance activity starts to get
|
|
120
|
+
* executed. If the PlannedDate depends for example
|
|
121
|
+
* on the operation hours of the asset, it might get
|
|
122
|
+
* adapted depending on the passed operation hours.
|
|
123
|
+
*/
|
|
124
|
+
plannedDate?: UAProperty<Date, DataType.DateTime>;
|
|
125
|
+
/**
|
|
126
|
+
* qualificationOfPersonnel
|
|
127
|
+
* Information on the qualification of the personnel
|
|
128
|
+
* that is planned to execute, currently executing
|
|
129
|
+
* or has executed the maintenance activity. The
|
|
130
|
+
* content may change during the different
|
|
131
|
+
* MaintenanceStates. By accessing the history of
|
|
132
|
+
* Events a Client can distinguish between the
|
|
133
|
+
* planned and actual qualification of the personnel
|
|
134
|
+
* that executed the maintenance activity. The value
|
|
135
|
+
* contains always a human-readable name of the
|
|
136
|
+
* qualification of the personnel and optionally
|
|
137
|
+
* references a Node representing the qualification
|
|
138
|
+
* of the personnel in the AddressSpace.
|
|
139
|
+
*/
|
|
140
|
+
qualificationOfPersonnel?: UAProperty<DTNameNodeId, DataType.ExtensionObject>;
|
|
141
|
+
}
|
|
142
|
+
export interface UAIMaintenanceEvent extends UABaseInterface, UAIMaintenanceEvent_Base {
|
|
143
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_i_maintenance_event.js","sourceRoot":"","sources":["../source/ua_i_maintenance_event.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import { DataType } from "node-opcua-variant";
|
|
3
|
+
import { UABaseInterface, UABaseInterface_Base } from "node-opcua-nodeset-ua/source/ua_base_interface";
|
|
4
|
+
import { DTRootCause } from "./dt_root_cause";
|
|
5
|
+
/**
|
|
6
|
+
* Information on the root cause of conditions,
|
|
7
|
+
* should be applied to alarms (AlarmType or
|
|
8
|
+
* subtypes)
|
|
9
|
+
*
|
|
10
|
+
* | | |
|
|
11
|
+
* |----------------|------------------------------------------------------------|
|
|
12
|
+
* |namespace |http://opcfoundation.org/UA/AMB/ |
|
|
13
|
+
* |nodeClass |ObjectType |
|
|
14
|
+
* |typedDefinition |IRootCauseIndicationType i=1002 |
|
|
15
|
+
* |isAbstract |true |
|
|
16
|
+
*/
|
|
17
|
+
export interface UAIRootCauseIndication_Base extends UABaseInterface_Base {
|
|
18
|
+
/**
|
|
19
|
+
* potentialRootCauses
|
|
20
|
+
* An array of potential root causes of the alarm.
|
|
21
|
+
* This is intended to be a hint to the client and
|
|
22
|
+
* might be a local view on the potential root
|
|
23
|
+
* causes of the alarm. The list might not contain
|
|
24
|
+
* all potential root causes, that is, other
|
|
25
|
+
* potential root causes might exist as well. If the
|
|
26
|
+
* alarm itself is considered to be the root cause,
|
|
27
|
+
* the array shall be empty. If no potential root
|
|
28
|
+
* causes have been identified, there shall be at
|
|
29
|
+
* least one entry in the array indicating that the
|
|
30
|
+
* root cause is unknown.
|
|
31
|
+
*/
|
|
32
|
+
potentialRootCauses: UAProperty<DTRootCause[], DataType.ExtensionObject>;
|
|
33
|
+
}
|
|
34
|
+
export interface UAIRootCauseIndication extends UABaseInterface, UAIRootCauseIndication_Base {
|
|
35
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_i_root_cause_indication.js","sourceRoot":"","sources":["../source/ua_i_root_cause_indication.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { UAMaintenanceConditionClass, UAMaintenanceConditionClass_Base } from "node-opcua-nodeset-ua/source/ua_maintenance_condition_class";
|
|
2
|
+
/**
|
|
3
|
+
* An improvement maintenance activity
|
|
4
|
+
*
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/AMB/ |
|
|
8
|
+
* |nodeClass |ObjectType |
|
|
9
|
+
* |typedDefinition |ImprovementConditionClassType i=1018 |
|
|
10
|
+
* |isAbstract |true |
|
|
11
|
+
*/
|
|
12
|
+
export type UAImprovementConditionClass_Base = UAMaintenanceConditionClass_Base;
|
|
13
|
+
export interface UAImprovementConditionClass extends UAMaintenanceConditionClass, UAImprovementConditionClass_Base {
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_improvement_condition_class.js","sourceRoot":"","sources":["../source/ua_improvement_condition_class.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { UAMaintenanceConditionClass, UAMaintenanceConditionClass_Base } from "node-opcua-nodeset-ua/source/ua_maintenance_condition_class";
|
|
2
|
+
/**
|
|
3
|
+
* An inspection maintenance activity
|
|
4
|
+
*
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/AMB/ |
|
|
8
|
+
* |nodeClass |ObjectType |
|
|
9
|
+
* |typedDefinition |InspectionConditionClassType i=1014 |
|
|
10
|
+
* |isAbstract |true |
|
|
11
|
+
*/
|
|
12
|
+
export type UAInspectionConditionClass_Base = UAMaintenanceConditionClass_Base;
|
|
13
|
+
export interface UAInspectionConditionClass extends UAMaintenanceConditionClass, UAInspectionConditionClass_Base {
|
|
14
|
+
}
|