node-opcua-nodeset-amb 2.180.0 → 2.181.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 +21 -21
- package/dist/index.js +21 -21
- package/dist/index.js.map +1 -1
- package/dist/ua_i_maintenance_event.d.ts +3 -3
- package/dist/ua_i_root_cause_indication.d.ts +1 -1
- package/dist/ua_out_of_memory_condition_class.d.ts +1 -1
- package/package.json +9 -9
- package/source/index.ts +21 -21
- package/source/ua_i_maintenance_event.ts +3 -3
- package/source/ua_i_root_cause_indication.ts +1 -1
- package/source/ua_out_of_memory_condition_class.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,21 +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";
|
|
1
|
+
export * from "./dt_name_node_id.js";
|
|
2
|
+
export * from "./dt_root_cause.js";
|
|
3
|
+
export * from "./enum_maintenance_method_enum.js";
|
|
4
|
+
export * from "./ua_bad_configuration_condition_class.js";
|
|
5
|
+
export * from "./ua_calibration_due_condition_class.js";
|
|
6
|
+
export * from "./ua_connection_failure_condition_class.js";
|
|
7
|
+
export * from "./ua_documentation_links.js";
|
|
8
|
+
export * from "./ua_external_check_condition_class.js";
|
|
9
|
+
export * from "./ua_flash_update_failed_condition_class.js";
|
|
10
|
+
export * from "./ua_flash_update_in_progress_condition_class.js";
|
|
11
|
+
export * from "./ua_i_maintenance_event.js";
|
|
12
|
+
export * from "./ua_i_root_cause_indication.js";
|
|
13
|
+
export * from "./ua_improvement_condition_class.js";
|
|
14
|
+
export * from "./ua_inspection_condition_class.js";
|
|
15
|
+
export * from "./ua_maintenance_event_state_machine.js";
|
|
16
|
+
export * from "./ua_out_of_memory_condition_class.js";
|
|
17
|
+
export * from "./ua_out_of_resources_condition_class.js";
|
|
18
|
+
export * from "./ua_over_temperature_condition_class.js";
|
|
19
|
+
export * from "./ua_repair_condition_class.js";
|
|
20
|
+
export * from "./ua_self_test_failure_condition_class.js";
|
|
21
|
+
export * from "./ua_servicing_condition_class.js";
|
package/dist/index.js
CHANGED
|
@@ -14,25 +14,25 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
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);
|
|
17
|
+
__exportStar(require("./dt_name_node_id.js"), exports);
|
|
18
|
+
__exportStar(require("./dt_root_cause.js"), exports);
|
|
19
|
+
__exportStar(require("./enum_maintenance_method_enum.js"), exports);
|
|
20
|
+
__exportStar(require("./ua_bad_configuration_condition_class.js"), exports);
|
|
21
|
+
__exportStar(require("./ua_calibration_due_condition_class.js"), exports);
|
|
22
|
+
__exportStar(require("./ua_connection_failure_condition_class.js"), exports);
|
|
23
|
+
__exportStar(require("./ua_documentation_links.js"), exports);
|
|
24
|
+
__exportStar(require("./ua_external_check_condition_class.js"), exports);
|
|
25
|
+
__exportStar(require("./ua_flash_update_failed_condition_class.js"), exports);
|
|
26
|
+
__exportStar(require("./ua_flash_update_in_progress_condition_class.js"), exports);
|
|
27
|
+
__exportStar(require("./ua_i_maintenance_event.js"), exports);
|
|
28
|
+
__exportStar(require("./ua_i_root_cause_indication.js"), exports);
|
|
29
|
+
__exportStar(require("./ua_improvement_condition_class.js"), exports);
|
|
30
|
+
__exportStar(require("./ua_inspection_condition_class.js"), exports);
|
|
31
|
+
__exportStar(require("./ua_maintenance_event_state_machine.js"), exports);
|
|
32
|
+
__exportStar(require("./ua_out_of_memory_condition_class.js"), exports);
|
|
33
|
+
__exportStar(require("./ua_out_of_resources_condition_class.js"), exports);
|
|
34
|
+
__exportStar(require("./ua_over_temperature_condition_class.js"), exports);
|
|
35
|
+
__exportStar(require("./ua_repair_condition_class.js"), exports);
|
|
36
|
+
__exportStar(require("./ua_self_test_failure_condition_class.js"), exports);
|
|
37
|
+
__exportStar(require("./ua_servicing_condition_class.js"), exports);
|
|
38
38
|
//# 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,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../source/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uDAAqC;AACrC,qDAAmC;AACnC,oEAAkD;AAClD,4EAA0D;AAC1D,0EAAwD;AACxD,6EAA2D;AAC3D,8DAA4C;AAC5C,yEAAuD;AACvD,8EAA4D;AAC5D,mFAAiE;AACjE,8DAA4C;AAC5C,kEAAgD;AAChD,sEAAoD;AACpD,qEAAmD;AACnD,0EAAwD;AACxD,wEAAsD;AACtD,2EAAyD;AACzD,2EAAyD;AACzD,iEAA+C;AAC/C,4EAA0D;AAC1D,oEAAkD"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import type { UABaseInterface, UABaseInterface_Base } from "node-opcua-nodeset-ua/dist/ua_base_interface";
|
|
3
3
|
import type { DataType } from "node-opcua-variant";
|
|
4
|
-
import type { DTNameNodeId } from "./dt_name_node_id";
|
|
5
|
-
import type { EnumMaintenanceMethodEnum } from "./enum_maintenance_method_enum";
|
|
6
|
-
import type { UAMaintenanceEventStateMachine } from "./ua_maintenance_event_state_machine";
|
|
4
|
+
import type { DTNameNodeId } from "./dt_name_node_id.js";
|
|
5
|
+
import type { EnumMaintenanceMethodEnum } from "./enum_maintenance_method_enum.js";
|
|
6
|
+
import type { UAMaintenanceEventStateMachine } from "./ua_maintenance_event_state_machine.js";
|
|
7
7
|
/**
|
|
8
8
|
* Information on maintenance activities, should by
|
|
9
9
|
* applied to conditions (ConditionType or subtypes)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import type { UABaseInterface, UABaseInterface_Base } from "node-opcua-nodeset-ua/dist/ua_base_interface";
|
|
3
3
|
import type { DataType } from "node-opcua-variant";
|
|
4
|
-
import type { DTRootCause } from "./dt_root_cause";
|
|
4
|
+
import type { DTRootCause } from "./dt_root_cause.js";
|
|
5
5
|
/**
|
|
6
6
|
* Information on the root cause of conditions,
|
|
7
7
|
* should be applied to alarms (AlarmType or
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { UAOutOfResourcesConditionClass, UAOutOfResourcesConditionClass_Base } from "./ua_out_of_resources_condition_class";
|
|
1
|
+
import type { UAOutOfResourcesConditionClass, UAOutOfResourcesConditionClass_Base } from "./ua_out_of_resources_condition_class.js";
|
|
2
2
|
/**
|
|
3
3
|
* Out of memory issues
|
|
4
4
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-amb",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.181.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module node-opcua-nodeset-amb",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
"author": "Etienne Rossignon <etienne.rossignon@sterfive.com>",
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"node-opcua-address-space-base": "2.
|
|
15
|
-
"node-opcua-basic-types": "2.
|
|
16
|
-
"node-opcua-data-model": "2.
|
|
17
|
-
"node-opcua-extension-object": "2.
|
|
18
|
-
"node-opcua-nodeid": "2.
|
|
19
|
-
"node-opcua-nodeset-ua": "2.
|
|
20
|
-
"node-opcua-variant": "2.
|
|
14
|
+
"node-opcua-address-space-base": "2.181.0",
|
|
15
|
+
"node-opcua-basic-types": "2.181.0",
|
|
16
|
+
"node-opcua-data-model": "2.181.0",
|
|
17
|
+
"node-opcua-extension-object": "2.181.0",
|
|
18
|
+
"node-opcua-nodeid": "2.181.0",
|
|
19
|
+
"node-opcua-nodeset-ua": "2.181.0",
|
|
20
|
+
"node-opcua-variant": "2.181.0"
|
|
21
21
|
},
|
|
22
22
|
"files": [
|
|
23
23
|
"dist",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"internet of things"
|
|
37
37
|
],
|
|
38
38
|
"homepage": "http://node-opcua.github.io/",
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "f8f472c59e681b2aa18ae1533c3d1e5f17614c5c"
|
|
40
40
|
}
|
package/source/index.ts
CHANGED
|
@@ -1,21 +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";
|
|
1
|
+
export * from "./dt_name_node_id.js";
|
|
2
|
+
export * from "./dt_root_cause.js";
|
|
3
|
+
export * from "./enum_maintenance_method_enum.js";
|
|
4
|
+
export * from "./ua_bad_configuration_condition_class.js";
|
|
5
|
+
export * from "./ua_calibration_due_condition_class.js";
|
|
6
|
+
export * from "./ua_connection_failure_condition_class.js";
|
|
7
|
+
export * from "./ua_documentation_links.js";
|
|
8
|
+
export * from "./ua_external_check_condition_class.js";
|
|
9
|
+
export * from "./ua_flash_update_failed_condition_class.js";
|
|
10
|
+
export * from "./ua_flash_update_in_progress_condition_class.js";
|
|
11
|
+
export * from "./ua_i_maintenance_event.js";
|
|
12
|
+
export * from "./ua_i_root_cause_indication.js";
|
|
13
|
+
export * from "./ua_improvement_condition_class.js";
|
|
14
|
+
export * from "./ua_inspection_condition_class.js";
|
|
15
|
+
export * from "./ua_maintenance_event_state_machine.js";
|
|
16
|
+
export * from "./ua_out_of_memory_condition_class.js";
|
|
17
|
+
export * from "./ua_out_of_resources_condition_class.js";
|
|
18
|
+
export * from "./ua_over_temperature_condition_class.js";
|
|
19
|
+
export * from "./ua_repair_condition_class.js";
|
|
20
|
+
export * from "./ua_self_test_failure_condition_class.js";
|
|
21
|
+
export * from "./ua_servicing_condition_class.js";
|
|
@@ -2,9 +2,9 @@ import type { UAProperty } from "node-opcua-address-space-base";
|
|
|
2
2
|
import type { UABaseInterface, UABaseInterface_Base } from "node-opcua-nodeset-ua/dist/ua_base_interface";
|
|
3
3
|
import type { DataType } from "node-opcua-variant";
|
|
4
4
|
|
|
5
|
-
import type { DTNameNodeId } from "./dt_name_node_id";
|
|
6
|
-
import type { EnumMaintenanceMethodEnum } from "./enum_maintenance_method_enum";
|
|
7
|
-
import type { UAMaintenanceEventStateMachine } from "./ua_maintenance_event_state_machine";
|
|
5
|
+
import type { DTNameNodeId } from "./dt_name_node_id.js";
|
|
6
|
+
import type { EnumMaintenanceMethodEnum } from "./enum_maintenance_method_enum.js";
|
|
7
|
+
import type { UAMaintenanceEventStateMachine } from "./ua_maintenance_event_state_machine.js";
|
|
8
8
|
|
|
9
9
|
// ----- this file has been automatically generated - do not edit
|
|
10
10
|
|
|
@@ -2,7 +2,7 @@ import type { UAProperty } from "node-opcua-address-space-base";
|
|
|
2
2
|
import type { UABaseInterface, UABaseInterface_Base } from "node-opcua-nodeset-ua/dist/ua_base_interface";
|
|
3
3
|
import type { DataType } from "node-opcua-variant";
|
|
4
4
|
|
|
5
|
-
import type { DTRootCause } from "./dt_root_cause";
|
|
5
|
+
import type { DTRootCause } from "./dt_root_cause.js";
|
|
6
6
|
|
|
7
7
|
// ----- this file has been automatically generated - do not edit
|
|
8
8
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { UAOutOfResourcesConditionClass, UAOutOfResourcesConditionClass_Base } from "./ua_out_of_resources_condition_class";
|
|
1
|
+
import type { UAOutOfResourcesConditionClass, UAOutOfResourcesConditionClass_Base } from "./ua_out_of_resources_condition_class.js";
|
|
2
2
|
|
|
3
3
|
// ----- this file has been automatically generated - do not edit
|
|
4
4
|
/**
|