node-opcua-nodeset-machinery 2.170.1 → 2.173.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/ua_i_machine_tag_nameplate.d.ts +4 -4
- package/dist/ua_i_machine_vendor_nameplate.d.ts +4 -4
- package/dist/ua_i_machinery_equipment.d.ts +6 -6
- package/dist/ua_i_machinery_item_vendor_nameplate.d.ts +5 -5
- package/dist/ua_machine_components.d.ts +4 -4
- package/dist/ua_machine_identification.d.ts +5 -5
- package/dist/ua_machinery_component_identification.d.ts +5 -5
- package/dist/ua_machinery_equipment_folder.d.ts +5 -5
- package/dist/ua_machinery_item_identification.d.ts +5 -5
- package/dist/ua_machinery_item_state_state_machine.d.ts +6 -6
- package/dist/ua_machinery_lifetime_counter.d.ts +4 -4
- package/dist/ua_machinery_operation_counter.d.ts +4 -4
- package/dist/ua_machinery_operation_mode_state_machine.d.ts +6 -6
- package/dist/ua_monitoring.d.ts +9 -9
- package/dist/ua_notifications.d.ts +4 -4
- package/package.json +11 -11
- package/source/index.ts +1 -1
- package/source/ua_i_machine_tag_nameplate.ts +7 -6
- package/source/ua_i_machine_vendor_nameplate.ts +8 -6
- package/source/ua_i_machinery_equipment.ts +10 -8
- package/source/ua_i_machinery_item_vendor_nameplate.ts +8 -7
- package/source/ua_machine_components.ts +8 -6
- package/source/ua_machine_identification.ts +9 -7
- package/source/ua_machinery_component_identification.ts +9 -7
- package/source/ua_machinery_equipment_folder.ts +8 -7
- package/source/ua_machinery_item_identification.ts +8 -7
- package/source/ua_machinery_item_state_state_machine.ts +9 -8
- package/source/ua_machinery_lifetime_counter.ts +7 -6
- package/source/ua_machinery_operation_counter.ts +7 -6
- package/source/ua_machinery_operation_mode_state_machine.ts +9 -8
- package/source/ua_monitoring.ts +13 -11
- package/source/ua_notifications.ts +7 -6
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { UAITagNameplate, UAITagNameplate_Base } from "node-opcua-nodeset-di/dist/ua_i_tag_nameplate";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
5
|
/**
|
|
6
6
|
* Interface containing information of the
|
|
7
7
|
* identification of a machine set by the customer
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { UAIMachineryItemVendorNameplate, UAIMachineryItemVendorNameplate_Base } from "./ua_i_machinery_item_vendor_nameplate";
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { DataType } from "node-opcua-variant";
|
|
4
|
+
import type { UAIMachineryItemVendorNameplate, UAIMachineryItemVendorNameplate_Base } from "./ua_i_machinery_item_vendor_nameplate";
|
|
5
5
|
/**
|
|
6
6
|
* Interface containing identification and nameplate
|
|
7
7
|
* information for a machine provided by the machine
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import { LocalizedText } from "node-opcua-data-model";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import { UAIMachineTagNameplate, UAIMachineTagNameplate_Base } from "./ua_i_machine_tag_nameplate";
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { LocalizedText } from "node-opcua-data-model";
|
|
4
|
+
import type { UALifetimeVariable } from "node-opcua-nodeset-di/dist/ua_lifetime_variable";
|
|
5
|
+
import type { DataType } from "node-opcua-variant";
|
|
6
|
+
import type { UAIMachineTagNameplate, UAIMachineTagNameplate_Base } from "./ua_i_machine_tag_nameplate";
|
|
7
7
|
/**
|
|
8
8
|
* Provides base identification information of
|
|
9
9
|
* MachineryEquipment that can be set by the user.
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import { LocalizedText } from "node-opcua-data-model";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { Byte, UAString, UInt16 } from "node-opcua-basic-types";
|
|
3
|
+
import type { LocalizedText } from "node-opcua-data-model";
|
|
4
|
+
import type { UAIVendorNameplate, UAIVendorNameplate_Base } from "node-opcua-nodeset-di/dist/ua_i_vendor_nameplate";
|
|
5
|
+
import type { DataType } from "node-opcua-variant";
|
|
6
6
|
/**
|
|
7
7
|
* Interface containing identification and nameplate
|
|
8
8
|
* information for a MachineryItem provided by the
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { UAMachineryItemIdentification } from "./ua_machinery_item_identification";
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { QualifiedName } from "node-opcua-data-model";
|
|
3
|
+
import type { DataType } from "node-opcua-variant";
|
|
4
|
+
import type { UAMachineryItemIdentification } from "./ua_machinery_item_identification";
|
|
5
5
|
export interface UAMachineComponents_$Component$ extends UAObject {
|
|
6
6
|
/**
|
|
7
7
|
* identification
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import { QualifiedName } from "node-opcua-data-model";
|
|
4
|
-
import {
|
|
5
|
-
import { UAMachineryItemIdentification, UAMachineryItemIdentification_Base } from "./ua_machinery_item_identification";
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { QualifiedName } from "node-opcua-data-model";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
|
+
import type { UAMachineryItemIdentification, UAMachineryItemIdentification_Base } from "./ua_machinery_item_identification";
|
|
6
6
|
/**
|
|
7
7
|
* Contains information about the identification and
|
|
8
8
|
* nameplate of a machine
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import { QualifiedName } from "node-opcua-data-model";
|
|
4
|
-
import {
|
|
5
|
-
import { UAMachineryItemIdentification, UAMachineryItemIdentification_Base } from "./ua_machinery_item_identification";
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { QualifiedName } from "node-opcua-data-model";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
|
+
import type { UAMachineryItemIdentification, UAMachineryItemIdentification_Base } from "./ua_machinery_item_identification";
|
|
6
6
|
/**
|
|
7
7
|
* Contains information about the identification and
|
|
8
8
|
* nameplate of a component
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import { LocalizedText, QualifiedName } from "node-opcua-data-model";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { LocalizedText, QualifiedName } from "node-opcua-data-model";
|
|
4
|
+
import type { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/dist/ua_folder";
|
|
5
|
+
import type { DataType } from "node-opcua-variant";
|
|
6
6
|
export interface UAMachineryEquipmentFolder_$MachineryEquipment$ extends UAObject {
|
|
7
7
|
/**
|
|
8
8
|
* assetId
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import { LocalizedText, QualifiedName } from "node-opcua-data-model";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { Byte, UAString, UInt16 } from "node-opcua-basic-types";
|
|
3
|
+
import type { LocalizedText, QualifiedName } from "node-opcua-data-model";
|
|
4
|
+
import type { UAFunctionalGroup, UAFunctionalGroup_Base } from "node-opcua-nodeset-di/dist/ua_functional_group";
|
|
5
|
+
import type { DataType } from "node-opcua-variant";
|
|
6
6
|
/**
|
|
7
7
|
* Contains information about the identification and
|
|
8
8
|
* nameplate of a MachineryItem
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { QualifiedName } from "node-opcua-data-model";
|
|
3
|
+
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
|
|
4
|
+
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
5
|
+
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
6
|
+
import type { DataType } from "node-opcua-variant";
|
|
7
7
|
/**
|
|
8
8
|
* State machine representing the state of a
|
|
9
9
|
* machinery item
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { QualifiedName } from "node-opcua-data-model";
|
|
3
|
+
import type { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/dist/ua_folder";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
|
7
7
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { QualifiedName } from "node-opcua-data-model";
|
|
3
|
+
import type { UAFunctionalGroup, UAFunctionalGroup_Base } from "node-opcua-nodeset-di/dist/ua_functional_group";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
|
7
7
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
6
|
-
import {
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { QualifiedName } from "node-opcua-data-model";
|
|
3
|
+
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
|
|
4
|
+
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
5
|
+
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
6
|
+
import type { DataType } from "node-opcua-variant";
|
|
7
7
|
/**
|
|
8
8
|
* State machine representing the operation mode of
|
|
9
9
|
* a MachineryItem
|
package/dist/ua_monitoring.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { QualifiedName } from "node-opcua-data-model";
|
|
3
|
+
import type { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health";
|
|
4
|
+
import type { UABasicStacklight } from "node-opcua-nodeset-ia/dist/ua_basic_stacklight";
|
|
5
|
+
import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
6
|
+
import type { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/dist/ua_folder";
|
|
7
|
+
import type { DataType } from "node-opcua-variant";
|
|
8
|
+
import type { UAMachineryItemState_StateMachine } from "./ua_machinery_item_state_state_machine";
|
|
9
|
+
import type { UAMachineryOperationModeStateMachine } from "./ua_machinery_operation_mode_state_machine";
|
|
10
10
|
export interface UAMonitoring_health extends UAFolder {
|
|
11
11
|
deviceHealth?: UABaseDataVariable<EnumDeviceHealth, DataType.Int32>;
|
|
12
12
|
deviceHealthAlarms?: UAFolder;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { QualifiedName } from "node-opcua-data-model";
|
|
3
|
+
import type { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/dist/ua_folder";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
5
|
/**
|
|
6
6
|
* Provides notifications as events or objects.
|
|
7
7
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-machinery",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.173.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,15 +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.
|
|
15
|
-
"node-opcua-basic-types": "2.
|
|
16
|
-
"node-opcua-data-access": "2.
|
|
17
|
-
"node-opcua-data-model": "2.
|
|
18
|
-
"node-opcua-nodeid": "2.
|
|
19
|
-
"node-opcua-nodeset-di": "2.
|
|
20
|
-
"node-opcua-nodeset-ia": "2.
|
|
21
|
-
"node-opcua-nodeset-ua": "2.
|
|
22
|
-
"node-opcua-variant": "2.
|
|
14
|
+
"node-opcua-address-space-base": "2.173.0",
|
|
15
|
+
"node-opcua-basic-types": "2.173.0",
|
|
16
|
+
"node-opcua-data-access": "2.173.0",
|
|
17
|
+
"node-opcua-data-model": "2.173.0",
|
|
18
|
+
"node-opcua-nodeid": "2.173.0",
|
|
19
|
+
"node-opcua-nodeset-di": "2.173.0",
|
|
20
|
+
"node-opcua-nodeset-ia": "2.173.0",
|
|
21
|
+
"node-opcua-nodeset-ua": "2.173.0",
|
|
22
|
+
"node-opcua-variant": "2.173.0"
|
|
23
23
|
},
|
|
24
24
|
"files": [
|
|
25
25
|
"dist",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"internet of things"
|
|
39
39
|
],
|
|
40
40
|
"homepage": "http://node-opcua.github.io/",
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "4aa6634e2e1e14e223fa46a632438295be12744c"
|
|
42
42
|
}
|
package/source/index.ts
CHANGED
|
@@ -12,4 +12,4 @@ export * from "./ua_machinery_lifetime_counter";
|
|
|
12
12
|
export * from "./ua_machinery_operation_counter";
|
|
13
13
|
export * from "./ua_machinery_operation_mode_state_machine";
|
|
14
14
|
export * from "./ua_monitoring";
|
|
15
|
-
export * from "./ua_notifications";
|
|
15
|
+
export * from "./ua_notifications";
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { UAITagNameplate, UAITagNameplate_Base } from "node-opcua-nodeset-di/dist/ua_i_tag_nameplate";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
|
+
|
|
1
6
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
3
|
-
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { UAString } from "node-opcua-basic-types"
|
|
5
|
-
import { UAITagNameplate, UAITagNameplate_Base } from "node-opcua-nodeset-di/dist/ua_i_tag_nameplate"
|
|
7
|
+
|
|
6
8
|
/**
|
|
7
9
|
* Interface containing information of the
|
|
8
10
|
* identification of a machine set by the customer
|
|
@@ -27,5 +29,4 @@ export interface UAIMachineTagNameplate_Base extends UAITagNameplate_Base {
|
|
|
27
29
|
*/
|
|
28
30
|
location?: UAProperty<UAString, DataType.String>;
|
|
29
31
|
}
|
|
30
|
-
export interface UAIMachineTagNameplate extends UAITagNameplate, UAIMachineTagNameplate_Base {
|
|
31
|
-
}
|
|
32
|
+
export interface UAIMachineTagNameplate extends UAITagNameplate, UAIMachineTagNameplate_Base {}
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { DataType } from "node-opcua-variant";
|
|
4
|
+
|
|
5
|
+
import type { UAIMachineryItemVendorNameplate, UAIMachineryItemVendorNameplate_Base } from "./ua_i_machinery_item_vendor_nameplate";
|
|
6
|
+
|
|
1
7
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
3
|
-
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { UAString } from "node-opcua-basic-types"
|
|
5
|
-
import { UAIMachineryItemVendorNameplate, UAIMachineryItemVendorNameplate_Base } from "./ua_i_machinery_item_vendor_nameplate"
|
|
8
|
+
|
|
6
9
|
/**
|
|
7
10
|
* Interface containing identification and nameplate
|
|
8
11
|
* information for a machine provided by the machine
|
|
@@ -23,5 +26,4 @@ export interface UAIMachineVendorNameplate_Base extends UAIMachineryItemVendorNa
|
|
|
23
26
|
*/
|
|
24
27
|
productInstanceUri: UAProperty<UAString, DataType.String>;
|
|
25
28
|
}
|
|
26
|
-
export interface UAIMachineVendorNameplate extends Omit<UAIMachineryItemVendorNameplate, "productInstanceUri">, UAIMachineVendorNameplate_Base {
|
|
27
|
-
}
|
|
29
|
+
export interface UAIMachineVendorNameplate extends Omit<UAIMachineryItemVendorNameplate, "productInstanceUri">, UAIMachineVendorNameplate_Base {}
|
|
@@ -1,10 +1,13 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { LocalizedText } from "node-opcua-data-model";
|
|
4
|
+
import type { UALifetimeVariable } from "node-opcua-nodeset-di/dist/ua_lifetime_variable";
|
|
5
|
+
import type { DataType } from "node-opcua-variant";
|
|
6
|
+
|
|
7
|
+
import type { UAIMachineTagNameplate, UAIMachineTagNameplate_Base } from "./ua_i_machine_tag_nameplate";
|
|
8
|
+
|
|
1
9
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
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"
|
|
10
|
+
|
|
8
11
|
/**
|
|
9
12
|
* Provides base identification information of
|
|
10
13
|
* MachineryEquipment that can be set by the user.
|
|
@@ -38,5 +41,4 @@ export interface UAIMachineryEquipment_Base extends UAIMachineTagNameplate_Base
|
|
|
38
41
|
*/
|
|
39
42
|
machineryEquipmentTypeId: UAProperty<UAString, DataType.String>;
|
|
40
43
|
}
|
|
41
|
-
export interface UAIMachineryEquipment extends UAIMachineTagNameplate, UAIMachineryEquipment_Base {
|
|
42
|
-
}
|
|
44
|
+
export interface UAIMachineryEquipment extends UAIMachineTagNameplate, UAIMachineryEquipment_Base {}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { Byte, UAString, UInt16 } from "node-opcua-basic-types";
|
|
3
|
+
import type { LocalizedText } from "node-opcua-data-model";
|
|
4
|
+
import type { UAIVendorNameplate, UAIVendorNameplate_Base } from "node-opcua-nodeset-di/dist/ua_i_vendor_nameplate";
|
|
5
|
+
import type { DataType } from "node-opcua-variant";
|
|
6
|
+
|
|
1
7
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
3
|
-
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { LocalizedText } from "node-opcua-data-model"
|
|
5
|
-
import { UInt16, Byte, UAString } from "node-opcua-basic-types"
|
|
6
|
-
import { UAIVendorNameplate, UAIVendorNameplate_Base } from "node-opcua-nodeset-di/dist/ua_i_vendor_nameplate"
|
|
8
|
+
|
|
7
9
|
/**
|
|
8
10
|
* Interface containing identification and nameplate
|
|
9
11
|
* information for a MachineryItem provided by the
|
|
@@ -58,5 +60,4 @@ export interface UAIMachineryItemVendorNameplate_Base extends UAIVendorNameplate
|
|
|
58
60
|
*/
|
|
59
61
|
yearOfConstruction?: UAProperty<UInt16, DataType.UInt16>;
|
|
60
62
|
}
|
|
61
|
-
export interface UAIMachineryItemVendorNameplate extends Omit<UAIVendorNameplate, "manufacturer"|"serialNumber">, UAIMachineryItemVendorNameplate_Base {
|
|
62
|
-
}
|
|
63
|
+
export interface UAIMachineryItemVendorNameplate extends Omit<UAIVendorNameplate, "manufacturer"|"serialNumber">, UAIMachineryItemVendorNameplate_Base {}
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { QualifiedName } from "node-opcua-data-model";
|
|
3
|
+
import type { DataType } from "node-opcua-variant";
|
|
4
|
+
|
|
5
|
+
import type { UAMachineryItemIdentification } from "./ua_machinery_item_identification";
|
|
6
|
+
|
|
1
7
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
3
|
-
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { QualifiedName } from "node-opcua-data-model"
|
|
5
|
-
import { UAMachineryItemIdentification } from "./ua_machinery_item_identification"
|
|
8
|
+
|
|
6
9
|
export interface UAMachineComponents_$Component$ extends UAObject { // Object
|
|
7
10
|
/**
|
|
8
11
|
* identification
|
|
@@ -29,5 +32,4 @@ export interface UAMachineComponents_Base {
|
|
|
29
32
|
*/
|
|
30
33
|
defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
|
|
31
34
|
}
|
|
32
|
-
export interface UAMachineComponents extends UAObject, UAMachineComponents_Base {
|
|
33
|
-
}
|
|
35
|
+
export interface UAMachineComponents extends UAObject, UAMachineComponents_Base {}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { QualifiedName } from "node-opcua-data-model";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
|
+
|
|
6
|
+
import type { UAMachineryItemIdentification, UAMachineryItemIdentification_Base } from "./ua_machinery_item_identification";
|
|
7
|
+
|
|
1
8
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
3
|
-
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { QualifiedName } from "node-opcua-data-model"
|
|
5
|
-
import { UAString } from "node-opcua-basic-types"
|
|
6
|
-
import { UAMachineryItemIdentification, UAMachineryItemIdentification_Base } from "./ua_machinery_item_identification"
|
|
9
|
+
|
|
7
10
|
/**
|
|
8
11
|
* Contains information about the identification and
|
|
9
12
|
* nameplate of a machine
|
|
@@ -39,5 +42,4 @@ export interface UAMachineIdentification_Base extends UAMachineryItemIdentificat
|
|
|
39
42
|
*/
|
|
40
43
|
productInstanceUri: UAProperty<UAString, DataType.String>;
|
|
41
44
|
}
|
|
42
|
-
export interface UAMachineIdentification extends Omit<UAMachineryItemIdentification, "defaultInstanceBrowseName"|"productInstanceUri">, UAMachineIdentification_Base {
|
|
43
|
-
}
|
|
45
|
+
export interface UAMachineIdentification extends Omit<UAMachineryItemIdentification, "defaultInstanceBrowseName"|"productInstanceUri">, UAMachineIdentification_Base {}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { QualifiedName } from "node-opcua-data-model";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
|
+
|
|
6
|
+
import type { UAMachineryItemIdentification, UAMachineryItemIdentification_Base } from "./ua_machinery_item_identification";
|
|
7
|
+
|
|
1
8
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
3
|
-
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { QualifiedName } from "node-opcua-data-model"
|
|
5
|
-
import { UAString } from "node-opcua-basic-types"
|
|
6
|
-
import { UAMachineryItemIdentification, UAMachineryItemIdentification_Base } from "./ua_machinery_item_identification"
|
|
9
|
+
|
|
7
10
|
/**
|
|
8
11
|
* Contains information about the identification and
|
|
9
12
|
* nameplate of a component
|
|
@@ -32,5 +35,4 @@ export interface UAMachineryComponentIdentification_Base extends UAMachineryItem
|
|
|
32
35
|
*/
|
|
33
36
|
deviceRevision?: UAProperty<UAString, DataType.String>;
|
|
34
37
|
}
|
|
35
|
-
export interface UAMachineryComponentIdentification extends Omit<UAMachineryItemIdentification, "defaultInstanceBrowseName">, UAMachineryComponentIdentification_Base {
|
|
36
|
-
}
|
|
38
|
+
export interface UAMachineryComponentIdentification extends Omit<UAMachineryItemIdentification, "defaultInstanceBrowseName">, UAMachineryComponentIdentification_Base {}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { LocalizedText, QualifiedName } from "node-opcua-data-model";
|
|
4
|
+
import type { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/dist/ua_folder";
|
|
5
|
+
import type { DataType } from "node-opcua-variant";
|
|
6
|
+
|
|
1
7
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
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"
|
|
8
|
+
|
|
7
9
|
export interface UAMachineryEquipmentFolder_$MachineryEquipment$ extends UAObject { // Object
|
|
8
10
|
/**
|
|
9
11
|
* assetId
|
|
@@ -80,5 +82,4 @@ export interface UAMachineryEquipmentFolder_Base extends UAFolder_Base {
|
|
|
80
82
|
*/
|
|
81
83
|
defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
|
|
82
84
|
}
|
|
83
|
-
export interface UAMachineryEquipmentFolder extends UAFolder, UAMachineryEquipmentFolder_Base {
|
|
84
|
-
}
|
|
85
|
+
export interface UAMachineryEquipmentFolder extends UAFolder, UAMachineryEquipmentFolder_Base {}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { Byte, UAString, UInt16 } from "node-opcua-basic-types";
|
|
3
|
+
import type { LocalizedText, QualifiedName } from "node-opcua-data-model";
|
|
4
|
+
import type { UAFunctionalGroup, UAFunctionalGroup_Base } from "node-opcua-nodeset-di/dist/ua_functional_group";
|
|
5
|
+
import type { DataType } from "node-opcua-variant";
|
|
6
|
+
|
|
1
7
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
3
|
-
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { LocalizedText, QualifiedName } from "node-opcua-data-model"
|
|
5
|
-
import { UInt16, Byte, UAString } from "node-opcua-basic-types"
|
|
6
|
-
import { UAFunctionalGroup, UAFunctionalGroup_Base } from "node-opcua-nodeset-di/dist/ua_functional_group"
|
|
8
|
+
|
|
7
9
|
/**
|
|
8
10
|
* Contains information about the identification and
|
|
9
11
|
* nameplate of a MachineryItem
|
|
@@ -144,5 +146,4 @@ export interface UAMachineryItemIdentification_Base extends UAFunctionalGroup_Ba
|
|
|
144
146
|
*/
|
|
145
147
|
yearOfConstruction?: UAProperty<UInt16, DataType.UInt16>;
|
|
146
148
|
}
|
|
147
|
-
export interface UAMachineryItemIdentification extends UAFunctionalGroup, UAMachineryItemIdentification_Base {
|
|
148
|
-
}
|
|
149
|
+
export interface UAMachineryItemIdentification extends UAFunctionalGroup, UAMachineryItemIdentification_Base {}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { QualifiedName } from "node-opcua-data-model";
|
|
3
|
+
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
|
|
4
|
+
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
5
|
+
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
6
|
+
import type { DataType } from "node-opcua-variant";
|
|
7
|
+
|
|
1
8
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
3
|
-
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { QualifiedName } from "node-opcua-data-model"
|
|
5
|
-
import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine"
|
|
6
|
-
import { UAState } from "node-opcua-nodeset-ua/dist/ua_state"
|
|
7
|
-
import { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition"
|
|
9
|
+
|
|
8
10
|
/**
|
|
9
11
|
* State machine representing the state of a
|
|
10
12
|
* machinery item
|
|
@@ -145,5 +147,4 @@ export interface UAMachineryItemState_StateMachine_Base extends UAFiniteStateMac
|
|
|
145
147
|
*/
|
|
146
148
|
outOfService: UAState;
|
|
147
149
|
}
|
|
148
|
-
export interface UAMachineryItemState_StateMachine extends UAFiniteStateMachine, UAMachineryItemState_StateMachine_Base {
|
|
149
|
-
}
|
|
150
|
+
export interface UAMachineryItemState_StateMachine extends UAFiniteStateMachine, UAMachineryItemState_StateMachine_Base {}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { QualifiedName } from "node-opcua-data-model";
|
|
3
|
+
import type { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/dist/ua_folder";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
|
+
|
|
1
6
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
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"
|
|
7
|
+
|
|
6
8
|
/**
|
|
7
9
|
* | | |
|
|
8
10
|
* |----------------|------------------------------------------------------------|
|
|
@@ -19,5 +21,4 @@ export interface UAMachineryLifetimeCounter_Base extends UAFolder_Base {
|
|
|
19
21
|
*/
|
|
20
22
|
defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
|
|
21
23
|
}
|
|
22
|
-
export interface UAMachineryLifetimeCounter extends UAFolder, UAMachineryLifetimeCounter_Base {
|
|
23
|
-
}
|
|
24
|
+
export interface UAMachineryLifetimeCounter extends UAFolder, UAMachineryLifetimeCounter_Base {}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { QualifiedName } from "node-opcua-data-model";
|
|
3
|
+
import type { UAFunctionalGroup, UAFunctionalGroup_Base } from "node-opcua-nodeset-di/dist/ua_functional_group";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
|
+
|
|
1
6
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
3
|
-
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { QualifiedName } from "node-opcua-data-model"
|
|
5
|
-
import { UAFunctionalGroup, UAFunctionalGroup_Base } from "node-opcua-nodeset-di/dist/ua_functional_group"
|
|
7
|
+
|
|
6
8
|
/**
|
|
7
9
|
* | | |
|
|
8
10
|
* |----------------|------------------------------------------------------------|
|
|
@@ -72,5 +74,4 @@ export interface UAMachineryOperationCounter_Base extends UAFunctionalGroup_Base
|
|
|
72
74
|
*/
|
|
73
75
|
powerOnDuration?: UAProperty<number, DataType.Double>;
|
|
74
76
|
}
|
|
75
|
-
export interface UAMachineryOperationCounter extends UAFunctionalGroup, UAMachineryOperationCounter_Base {
|
|
76
|
-
}
|
|
77
|
+
export interface UAMachineryOperationCounter extends UAFunctionalGroup, UAMachineryOperationCounter_Base {}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { QualifiedName } from "node-opcua-data-model";
|
|
3
|
+
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
|
|
4
|
+
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
5
|
+
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
6
|
+
import type { DataType } from "node-opcua-variant";
|
|
7
|
+
|
|
1
8
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
3
|
-
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { QualifiedName } from "node-opcua-data-model"
|
|
5
|
-
import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine"
|
|
6
|
-
import { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition"
|
|
7
|
-
import { UAState } from "node-opcua-nodeset-ua/dist/ua_state"
|
|
9
|
+
|
|
8
10
|
/**
|
|
9
11
|
* State machine representing the operation mode of
|
|
10
12
|
* a MachineryItem
|
|
@@ -133,5 +135,4 @@ export interface UAMachineryOperationModeStateMachine_Base extends UAFiniteState
|
|
|
133
135
|
*/
|
|
134
136
|
setup: UAState;
|
|
135
137
|
}
|
|
136
|
-
export interface UAMachineryOperationModeStateMachine extends UAFiniteStateMachine, UAMachineryOperationModeStateMachine_Base {
|
|
137
|
-
}
|
|
138
|
+
export interface UAMachineryOperationModeStateMachine extends UAFiniteStateMachine, UAMachineryOperationModeStateMachine_Base {}
|
package/source/ua_monitoring.ts
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { QualifiedName } from "node-opcua-data-model";
|
|
3
|
+
import type { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health";
|
|
4
|
+
import type { UABasicStacklight } from "node-opcua-nodeset-ia/dist/ua_basic_stacklight";
|
|
5
|
+
import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
6
|
+
import type { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/dist/ua_folder";
|
|
7
|
+
import type { DataType } from "node-opcua-variant";
|
|
8
|
+
|
|
9
|
+
import type { UAMachineryItemState_StateMachine } from "./ua_machinery_item_state_state_machine";
|
|
10
|
+
import type { UAMachineryOperationModeStateMachine } from "./ua_machinery_operation_mode_state_machine";
|
|
11
|
+
|
|
1
12
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
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"
|
|
13
|
+
|
|
11
14
|
export interface UAMonitoring_health extends UAFolder { // Object
|
|
12
15
|
deviceHealth?: UABaseDataVariable<EnumDeviceHealth, DataType.Int32>;
|
|
13
16
|
deviceHealthAlarms?: UAFolder;
|
|
@@ -63,5 +66,4 @@ export interface UAMonitoring_Base extends UAFolder_Base {
|
|
|
63
66
|
*/
|
|
64
67
|
status?: UAMonitoring_status;
|
|
65
68
|
}
|
|
66
|
-
export interface UAMonitoring extends UAFolder, UAMonitoring_Base {
|
|
67
|
-
}
|
|
69
|
+
export interface UAMonitoring extends UAFolder, UAMonitoring_Base {}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { QualifiedName } from "node-opcua-data-model";
|
|
3
|
+
import type { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/dist/ua_folder";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
|
+
|
|
1
6
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
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"
|
|
7
|
+
|
|
6
8
|
/**
|
|
7
9
|
* Provides notifications as events or objects.
|
|
8
10
|
*
|
|
@@ -20,5 +22,4 @@ export interface UANotifications_Base extends UAFolder_Base {
|
|
|
20
22
|
*/
|
|
21
23
|
defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
|
|
22
24
|
}
|
|
23
|
-
export interface UANotifications extends UAFolder, UANotifications_Base {
|
|
24
|
-
}
|
|
25
|
+
export interface UANotifications extends UAFolder, UANotifications_Base {}
|