node-opcua-nodeset-io-link 2.169.0 → 2.172.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.
Files changed (34) hide show
  1. package/dist/ua_device_variant.d.ts +5 -5
  2. package/dist/ua_io_link_alarm.d.ts +4 -4
  3. package/dist/ua_io_link_device.d.ts +10 -10
  4. package/dist/ua_io_link_device_alarm.d.ts +1 -1
  5. package/dist/ua_io_link_device_event.d.ts +1 -1
  6. package/dist/ua_io_link_event.d.ts +4 -4
  7. package/dist/ua_io_link_iodd_device.d.ts +10 -10
  8. package/dist/ua_io_link_iodd_device_alarm.d.ts +4 -4
  9. package/dist/ua_io_link_iodd_device_event.d.ts +4 -4
  10. package/dist/ua_io_link_master.d.ts +8 -8
  11. package/dist/ua_io_link_master_alarm.d.ts +1 -1
  12. package/dist/ua_io_link_master_event.d.ts +1 -1
  13. package/dist/ua_io_link_port.d.ts +10 -10
  14. package/dist/ua_io_link_port_alarm.d.ts +1 -1
  15. package/dist/ua_io_link_port_event.d.ts +4 -4
  16. package/dist/ua_process_data_variable.d.ts +4 -4
  17. package/package.json +10 -10
  18. package/source/index.ts +1 -1
  19. package/source/ua_device_variant.ts +8 -7
  20. package/source/ua_io_link_alarm.ts +7 -6
  21. package/source/ua_io_link_device.ts +14 -12
  22. package/source/ua_io_link_device_alarm.ts +3 -3
  23. package/source/ua_io_link_device_event.ts +3 -3
  24. package/source/ua_io_link_event.ts +7 -6
  25. package/source/ua_io_link_iodd_device.ts +14 -12
  26. package/source/ua_io_link_iodd_device_alarm.ts +8 -6
  27. package/source/ua_io_link_iodd_device_event.ts +8 -6
  28. package/source/ua_io_link_master.ts +11 -10
  29. package/source/ua_io_link_master_alarm.ts +3 -3
  30. package/source/ua_io_link_master_event.ts +3 -3
  31. package/source/ua_io_link_port.ts +14 -12
  32. package/source/ua_io_link_port_alarm.ts +3 -3
  33. package/source/ua_io_link_port_event.ts +8 -6
  34. package/source/ua_process_data_variable.ts +7 -6
@@ -1,8 +1,8 @@
1
- import { UAObject, 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 { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
1
+ import type { UAObject, 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 { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
5
+ import type { DataType } from "node-opcua-variant";
6
6
  /**
7
7
  * | | |
8
8
  * |----------------|------------------------------------------------------------|
@@ -1,7 +1,7 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { UInt16 } from "node-opcua-basic-types";
4
- import { UAOffNormalAlarm, UAOffNormalAlarm_Base } from "node-opcua-nodeset-ua/dist/ua_off_normal_alarm";
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { UInt16 } from "node-opcua-basic-types";
3
+ import type { UAOffNormalAlarm, UAOffNormalAlarm_Base } from "node-opcua-nodeset-ua/dist/ua_off_normal_alarm";
4
+ import type { DataType } from "node-opcua-variant";
5
5
  /**
6
6
  * | | |
7
7
  * |----------------|------------------------------------------------------------|
@@ -1,13 +1,13 @@
1
- import { UAObject, UAMethod, UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { LocalizedText } from "node-opcua-data-model";
4
- import { UInt32, UInt16, Byte, UAString } from "node-opcua-basic-types";
5
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
6
- import { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
7
- import { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health";
8
- import { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
9
- import { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element";
10
- import { UAProcessDataVariable } from "./ua_process_data_variable";
1
+ import type { UAMethod, UAObject, UAProperty } from "node-opcua-address-space-base";
2
+ import type { Byte, UAString, UInt16, UInt32 } from "node-opcua-basic-types";
3
+ import type { LocalizedText } from "node-opcua-data-model";
4
+ import type { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health";
5
+ import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
6
+ import type { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element";
7
+ import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
8
+ import type { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
9
+ import type { DataType } from "node-opcua-variant";
10
+ import type { UAProcessDataVariable } from "./ua_process_data_variable";
11
11
  export interface UAIOLinkDevice_general extends UAFunctionalGroup {
12
12
  applicationReset: UAMethod;
13
13
  applicationSpecificTag: UABaseDataVariable<UAString, DataType.String>;
@@ -1,4 +1,4 @@
1
- import { UAIOLinkAlarm, UAIOLinkAlarm_Base } from "./ua_io_link_alarm";
1
+ import type { UAIOLinkAlarm, UAIOLinkAlarm_Base } from "./ua_io_link_alarm";
2
2
  /**
3
3
  * | | |
4
4
  * |----------------|------------------------------------------------------------|
@@ -1,4 +1,4 @@
1
- import { UAIOLinkEvent, UAIOLinkEvent_Base } from "./ua_io_link_event";
1
+ import type { UAIOLinkEvent, UAIOLinkEvent_Base } from "./ua_io_link_event";
2
2
  /**
3
3
  * | | |
4
4
  * |----------------|------------------------------------------------------------|
@@ -1,7 +1,7 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { UInt16 } from "node-opcua-basic-types";
4
- import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event";
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { UInt16 } from "node-opcua-basic-types";
3
+ import type { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event";
4
+ import type { DataType } from "node-opcua-variant";
5
5
  /**
6
6
  * | | |
7
7
  * |----------------|------------------------------------------------------------|
@@ -1,13 +1,13 @@
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 { Byte, UAString } from "node-opcua-basic-types";
5
- import { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
6
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
7
- import { UAOptionSet } from "node-opcua-nodeset-ua/dist/ua_option_set";
8
- import { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
9
- import { UAIOLinkDevice_parameterSet, UAIOLinkDevice, UAIOLinkDevice_Base } from "./ua_io_link_device";
10
- import { UADeviceVariant } from "./ua_device_variant";
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { Byte, UAString } from "node-opcua-basic-types";
3
+ import type { LocalizedText } from "node-opcua-data-model";
4
+ import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
5
+ import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
6
+ import type { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
7
+ import type { UAOptionSet } from "node-opcua-nodeset-ua/dist/ua_option_set";
8
+ import type { DataType } from "node-opcua-variant";
9
+ import type { UADeviceVariant } from "./ua_device_variant";
10
+ import type { UAIOLinkDevice, UAIOLinkDevice_Base, UAIOLinkDevice_parameterSet } from "./ua_io_link_device";
11
11
  export interface UAIOLinkIODDDevice_deviceTypeImage extends UAFolder {
12
12
  deviceIcon?: UABaseDataVariable<Buffer, DataType.ByteString>;
13
13
  deviceSymbol?: UABaseDataVariable<Buffer, DataType.ByteString>;
@@ -1,7 +1,7 @@
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 { UAIOLinkDeviceAlarm, UAIOLinkDeviceAlarm_Base } from "./ua_io_link_device_alarm";
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { LocalizedText } from "node-opcua-data-model";
3
+ import type { DataType } from "node-opcua-variant";
4
+ import type { UAIOLinkDeviceAlarm, UAIOLinkDeviceAlarm_Base } from "./ua_io_link_device_alarm";
5
5
  /**
6
6
  * | | |
7
7
  * |----------------|------------------------------------------------------------|
@@ -1,7 +1,7 @@
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 { UAIOLinkDeviceEvent, UAIOLinkDeviceEvent_Base } from "./ua_io_link_device_event";
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { LocalizedText } from "node-opcua-data-model";
3
+ import type { DataType } from "node-opcua-variant";
4
+ import type { UAIOLinkDeviceEvent, UAIOLinkDeviceEvent_Base } from "./ua_io_link_device_event";
5
5
  /**
6
6
  * | | |
7
7
  * |----------------|------------------------------------------------------------|
@@ -1,11 +1,11 @@
1
- import { UAObject, UAMethod, UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { UInt32, UInt16, Byte, UAString } from "node-opcua-basic-types";
4
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
5
- import { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_discrete";
6
- import { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
7
- import { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
8
- import { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element";
1
+ import type { UAMethod, UAObject, UAProperty } from "node-opcua-address-space-base";
2
+ import type { Byte, UAString, UInt16, UInt32 } from "node-opcua-basic-types";
3
+ import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
4
+ import type { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element";
5
+ import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
6
+ import type { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
7
+ import type { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_discrete";
8
+ import type { DataType } from "node-opcua-variant";
9
9
  export interface UAIOLinkMaster_capabilities extends UAFunctionalGroup {
10
10
  maxNumberOfPorts: UABaseDataVariable<Byte, DataType.Byte>;
11
11
  maxPowerSupply: UABaseDataVariable<number, DataType.Double>;
@@ -1,4 +1,4 @@
1
- import { UAIOLinkAlarm, UAIOLinkAlarm_Base } from "./ua_io_link_alarm";
1
+ import type { UAIOLinkAlarm, UAIOLinkAlarm_Base } from "./ua_io_link_alarm";
2
2
  /**
3
3
  * | | |
4
4
  * |----------------|------------------------------------------------------------|
@@ -1,4 +1,4 @@
1
- import { UAIOLinkEvent, UAIOLinkEvent_Base } from "./ua_io_link_event";
1
+ import type { UAIOLinkEvent, UAIOLinkEvent_Base } from "./ua_io_link_event";
2
2
  /**
3
3
  * | | |
4
4
  * |----------------|------------------------------------------------------------|
@@ -1,13 +1,13 @@
1
- import { UAObject, UAMethod, UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { UInt32, UInt16, Byte } from "node-opcua-basic-types";
4
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
5
- import { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_discrete";
6
- import { UAOptionSet } from "node-opcua-nodeset-ua/dist/ua_option_set";
7
- import { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
8
- import { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
9
- import { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element";
10
- import { UAIOLinkDevice } from "./ua_io_link_device";
1
+ import type { UAMethod, UAObject, UAProperty } from "node-opcua-address-space-base";
2
+ import type { Byte, UInt16, UInt32 } from "node-opcua-basic-types";
3
+ import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
4
+ import type { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element";
5
+ import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
6
+ import type { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
7
+ import type { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_discrete";
8
+ import type { UAOptionSet } from "node-opcua-nodeset-ua/dist/ua_option_set";
9
+ import type { DataType } from "node-opcua-variant";
10
+ import type { UAIOLinkDevice } from "./ua_io_link_device";
11
11
  export interface UAIOLinkPort_capabilities extends UAFunctionalGroup {
12
12
  maxPowerSupply: UABaseDataVariable<number, DataType.Double>;
13
13
  pin2Support: UABaseDataVariable<boolean, DataType.Boolean>;
@@ -1,4 +1,4 @@
1
- import { UAIOLinkAlarm, UAIOLinkAlarm_Base } from "./ua_io_link_alarm";
1
+ import type { UAIOLinkAlarm, UAIOLinkAlarm_Base } from "./ua_io_link_alarm";
2
2
  /**
3
3
  * | | |
4
4
  * |----------------|------------------------------------------------------------|
@@ -1,7 +1,7 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { UInt16 } from "node-opcua-basic-types";
4
- import { UAIOLinkEvent, UAIOLinkEvent_Base } from "./ua_io_link_event";
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { UInt16 } from "node-opcua-basic-types";
3
+ import type { DataType } from "node-opcua-variant";
4
+ import type { UAIOLinkEvent, UAIOLinkEvent_Base } from "./ua_io_link_event";
5
5
  /**
6
6
  * | | |
7
7
  * |----------------|------------------------------------------------------------|
@@ -1,7 +1,7 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { Byte } from "node-opcua-basic-types";
4
- import { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { Byte } from "node-opcua-basic-types";
3
+ import type { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
4
+ import type { DataType } from "node-opcua-variant";
5
5
  /**
6
6
  * | | |
7
7
  * |----------------|------------------------------------------------------------|
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-opcua-nodeset-io-link",
3
- "version": "2.169.0",
3
+ "version": "2.172.0",
4
4
  "description": "pure nodejs OPCUA SDK - module node-opcua-nodeset-io-link",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,14 +11,14 @@
11
11
  "author": "Etienne Rossignon <etienne.rossignon@sterfive.com>",
12
12
  "license": "MIT",
13
13
  "dependencies": {
14
- "node-opcua-address-space-base": "2.169.0",
15
- "node-opcua-basic-types": "2.169.0",
16
- "node-opcua-data-model": "2.169.0",
17
- "node-opcua-nodeid": "2.169.0",
18
- "node-opcua-nodeset-di": "2.169.0",
19
- "node-opcua-nodeset-ua": "2.169.0",
20
- "node-opcua-status-code": "2.169.0",
21
- "node-opcua-variant": "2.169.0"
14
+ "node-opcua-address-space-base": "2.172.0",
15
+ "node-opcua-basic-types": "2.172.0",
16
+ "node-opcua-data-model": "2.172.0",
17
+ "node-opcua-nodeid": "2.172.0",
18
+ "node-opcua-nodeset-di": "2.172.0",
19
+ "node-opcua-nodeset-ua": "2.172.0",
20
+ "node-opcua-status-code": "2.172.0",
21
+ "node-opcua-variant": "2.172.0"
22
22
  },
23
23
  "files": [
24
24
  "dist",
@@ -37,5 +37,5 @@
37
37
  "internet of things"
38
38
  ],
39
39
  "homepage": "http://node-opcua.github.io/",
40
- "gitHead": "82d570d3e95bea689cbbe30096279885c5282245"
40
+ "gitHead": "dfe9993a93b5c3897825e898b5f07b25952c7f45"
41
41
  }
package/source/index.ts CHANGED
@@ -14,4 +14,4 @@ export * from "./ua_io_link_master_event";
14
14
  export * from "./ua_io_link_port";
15
15
  export * from "./ua_io_link_port_alarm";
16
16
  export * from "./ua_io_link_port_event";
17
- export * from "./ua_process_data_variable";
17
+ export * from "./ua_process_data_variable";
@@ -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 } from "node-opcua-data-model";
4
+ import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
5
+ import type { DataType } from "node-opcua-variant";
6
+
1
7
  // ----- 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 } from "node-opcua-data-model"
5
- import { UAString } from "node-opcua-basic-types"
6
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
8
+
7
9
  /**
8
10
  * | | |
9
11
  * |----------------|------------------------------------------------------------|
@@ -19,5 +21,4 @@ export interface UADeviceVariant_Base {
19
21
  name: UAProperty<LocalizedText, DataType.LocalizedText>;
20
22
  productId: UAProperty<UAString, DataType.String>;
21
23
  }
22
- export interface UADeviceVariant extends UAObject, UADeviceVariant_Base {
23
- }
24
+ export interface UADeviceVariant extends UAObject, UADeviceVariant_Base {}
@@ -1,8 +1,10 @@
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { UInt16 } from "node-opcua-basic-types";
3
+ import type { UAOffNormalAlarm, UAOffNormalAlarm_Base } from "node-opcua-nodeset-ua/dist/ua_off_normal_alarm";
4
+ import type { DataType } from "node-opcua-variant";
5
+
1
6
  // ----- 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 { UInt16 } from "node-opcua-basic-types"
5
- import { UAOffNormalAlarm, UAOffNormalAlarm_Base } from "node-opcua-nodeset-ua/dist/ua_off_normal_alarm"
7
+
6
8
  /**
7
9
  * | | |
8
10
  * |----------------|------------------------------------------------------------|
@@ -14,5 +16,4 @@ import { UAOffNormalAlarm, UAOffNormalAlarm_Base } from "node-opcua-nodeset-ua/d
14
16
  export interface UAIOLinkAlarm_Base extends UAOffNormalAlarm_Base {
15
17
  ioLinkEventCode: UAProperty<UInt16, DataType.UInt16>;
16
18
  }
17
- export interface UAIOLinkAlarm extends UAOffNormalAlarm, UAIOLinkAlarm_Base {
18
- }
19
+ export interface UAIOLinkAlarm extends UAOffNormalAlarm, UAIOLinkAlarm_Base {}
@@ -1,14 +1,17 @@
1
+ import type { UAMethod, UAObject, UAProperty } from "node-opcua-address-space-base";
2
+ import type { Byte, UAString, UInt16, UInt32 } from "node-opcua-basic-types";
3
+ import type { LocalizedText } from "node-opcua-data-model";
4
+ import type { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health";
5
+ import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
6
+ import type { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element";
7
+ import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
8
+ import type { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
9
+ import type { DataType } from "node-opcua-variant";
10
+
11
+ import type { UAProcessDataVariable } from "./ua_process_data_variable";
12
+
1
13
  // ----- this file has been automatically generated - do not edit
2
- import { UAObject, UAMethod, UAProperty } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { LocalizedText } from "node-opcua-data-model"
5
- import { UInt32, UInt16, Byte, UAString } from "node-opcua-basic-types"
6
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
7
- import { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder"
8
- import { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health"
9
- import { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group"
10
- import { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element"
11
- import { UAProcessDataVariable } from "./ua_process_data_variable"
14
+
12
15
  export interface UAIOLinkDevice_general extends UAFunctionalGroup { // Object
13
16
  applicationReset: UAMethod;
14
17
  applicationSpecificTag: UABaseDataVariable<UAString, DataType.String>;
@@ -116,5 +119,4 @@ export interface UAIOLinkDevice_Base extends UATopologyElement_Base {
116
119
  softwareRevision?: UAProperty<UAString, DataType.String>;
117
120
  vendorText?: UAProperty<UAString, DataType.String>;
118
121
  }
119
- export interface UAIOLinkDevice extends Omit<UATopologyElement, "identification"|"methodSet"|"parameterSet">, UAIOLinkDevice_Base {
120
- }
122
+ export interface UAIOLinkDevice extends Omit<UATopologyElement, "identification"|"methodSet"|"parameterSet">, UAIOLinkDevice_Base {}
@@ -1,5 +1,6 @@
1
+ import type { UAIOLinkAlarm, UAIOLinkAlarm_Base } from "./ua_io_link_alarm";
2
+
1
3
  // ----- this file has been automatically generated - do not edit
2
- import { UAIOLinkAlarm, UAIOLinkAlarm_Base } from "./ua_io_link_alarm"
3
4
  /**
4
5
  * | | |
5
6
  * |----------------|------------------------------------------------------------|
@@ -9,5 +10,4 @@ import { UAIOLinkAlarm, UAIOLinkAlarm_Base } from "./ua_io_link_alarm"
9
10
  * |isAbstract |false |
10
11
  */
11
12
  export type UAIOLinkDeviceAlarm_Base = UAIOLinkAlarm_Base;
12
- export interface UAIOLinkDeviceAlarm extends UAIOLinkAlarm, UAIOLinkDeviceAlarm_Base {
13
- }
13
+ export interface UAIOLinkDeviceAlarm extends UAIOLinkAlarm, UAIOLinkDeviceAlarm_Base {}
@@ -1,5 +1,6 @@
1
+ import type { UAIOLinkEvent, UAIOLinkEvent_Base } from "./ua_io_link_event";
2
+
1
3
  // ----- this file has been automatically generated - do not edit
2
- import { UAIOLinkEvent, UAIOLinkEvent_Base } from "./ua_io_link_event"
3
4
  /**
4
5
  * | | |
5
6
  * |----------------|------------------------------------------------------------|
@@ -9,5 +10,4 @@ import { UAIOLinkEvent, UAIOLinkEvent_Base } from "./ua_io_link_event"
9
10
  * |isAbstract |false |
10
11
  */
11
12
  export type UAIOLinkDeviceEvent_Base = UAIOLinkEvent_Base;
12
- export interface UAIOLinkDeviceEvent extends UAIOLinkEvent, UAIOLinkDeviceEvent_Base {
13
- }
13
+ export interface UAIOLinkDeviceEvent extends UAIOLinkEvent, UAIOLinkDeviceEvent_Base {}
@@ -1,8 +1,10 @@
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { UInt16 } from "node-opcua-basic-types";
3
+ import type { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event";
4
+ import type { DataType } from "node-opcua-variant";
5
+
1
6
  // ----- 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 { UInt16 } from "node-opcua-basic-types"
5
- import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event"
7
+
6
8
  /**
7
9
  * | | |
8
10
  * |----------------|------------------------------------------------------------|
@@ -14,5 +16,4 @@ import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_bas
14
16
  export interface UAIOLinkEvent_Base extends UABaseEvent_Base {
15
17
  ioLinkEventCode: UAProperty<UInt16, DataType.UInt16>;
16
18
  }
17
- export interface UAIOLinkEvent extends UABaseEvent, UAIOLinkEvent_Base {
18
- }
19
+ export interface UAIOLinkEvent extends UABaseEvent, UAIOLinkEvent_Base {}
@@ -1,14 +1,17 @@
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { Byte, UAString } from "node-opcua-basic-types";
3
+ import type { LocalizedText } from "node-opcua-data-model";
4
+ import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
5
+ import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
6
+ import type { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
7
+ import type { UAOptionSet } from "node-opcua-nodeset-ua/dist/ua_option_set";
8
+ import type { DataType } from "node-opcua-variant";
9
+
10
+ import type { UADeviceVariant } from "./ua_device_variant";
11
+ import type { UAIOLinkDevice, UAIOLinkDevice_Base, UAIOLinkDevice_parameterSet } from "./ua_io_link_device";
12
+
1
13
  // ----- 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 { Byte, UAString } from "node-opcua-basic-types"
6
- import { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder"
7
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
8
- import { UAOptionSet } from "node-opcua-nodeset-ua/dist/ua_option_set"
9
- import { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group"
10
- import { UAIOLinkDevice_parameterSet, UAIOLinkDevice, UAIOLinkDevice_Base } from "./ua_io_link_device"
11
- import { UADeviceVariant } from "./ua_device_variant"
14
+
12
15
  export interface UAIOLinkIODDDevice_deviceTypeImage extends UAFolder { // Object
13
16
  // PlaceHolder for $ImageIdentifier$
14
17
  deviceIcon?: UABaseDataVariable<Buffer, DataType.ByteString>;
@@ -52,5 +55,4 @@ export interface UAIOLinkIODDDevice_Base extends UAIOLinkDevice_Base {
52
55
  observer: UAFunctionalGroup;
53
56
  specialist: UAFunctionalGroup;
54
57
  }
55
- export interface UAIOLinkIODDDevice extends Omit<UAIOLinkDevice, "parameterSet">, UAIOLinkIODDDevice_Base {
56
- }
58
+ export interface UAIOLinkIODDDevice extends Omit<UAIOLinkDevice, "parameterSet">, UAIOLinkIODDDevice_Base {}
@@ -1,8 +1,11 @@
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { LocalizedText } from "node-opcua-data-model";
3
+ import type { DataType } from "node-opcua-variant";
4
+
5
+ import type { UAIOLinkDeviceAlarm, UAIOLinkDeviceAlarm_Base } from "./ua_io_link_device_alarm";
6
+
1
7
  // ----- 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 { UAIOLinkDeviceAlarm, UAIOLinkDeviceAlarm_Base } from "./ua_io_link_device_alarm"
8
+
6
9
  /**
7
10
  * | | |
8
11
  * |----------------|------------------------------------------------------------|
@@ -14,5 +17,4 @@ import { UAIOLinkDeviceAlarm, UAIOLinkDeviceAlarm_Base } from "./ua_io_link_devi
14
17
  export interface UAIOLinkIODDDeviceAlarm_Base extends UAIOLinkDeviceAlarm_Base {
15
18
  name: UAProperty<LocalizedText, DataType.LocalizedText>;
16
19
  }
17
- export interface UAIOLinkIODDDeviceAlarm extends UAIOLinkDeviceAlarm, UAIOLinkIODDDeviceAlarm_Base {
18
- }
20
+ export interface UAIOLinkIODDDeviceAlarm extends UAIOLinkDeviceAlarm, UAIOLinkIODDDeviceAlarm_Base {}
@@ -1,8 +1,11 @@
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { LocalizedText } from "node-opcua-data-model";
3
+ import type { DataType } from "node-opcua-variant";
4
+
5
+ import type { UAIOLinkDeviceEvent, UAIOLinkDeviceEvent_Base } from "./ua_io_link_device_event";
6
+
1
7
  // ----- 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 { UAIOLinkDeviceEvent, UAIOLinkDeviceEvent_Base } from "./ua_io_link_device_event"
8
+
6
9
  /**
7
10
  * | | |
8
11
  * |----------------|------------------------------------------------------------|
@@ -14,5 +17,4 @@ import { UAIOLinkDeviceEvent, UAIOLinkDeviceEvent_Base } from "./ua_io_link_devi
14
17
  export interface UAIOLinkIODDDeviceEvent_Base extends UAIOLinkDeviceEvent_Base {
15
18
  name: UAProperty<LocalizedText, DataType.LocalizedText>;
16
19
  }
17
- export interface UAIOLinkIODDDeviceEvent extends UAIOLinkDeviceEvent, UAIOLinkIODDDeviceEvent_Base {
18
- }
20
+ export interface UAIOLinkIODDDeviceEvent extends UAIOLinkDeviceEvent, UAIOLinkIODDDeviceEvent_Base {}
@@ -1,12 +1,14 @@
1
+ import type { UAMethod, UAObject, UAProperty } from "node-opcua-address-space-base";
2
+ import type { Byte, UAString, UInt16, UInt32 } from "node-opcua-basic-types";
3
+ import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
4
+ import type { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element";
5
+ import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
6
+ import type { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
7
+ import type { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_discrete";
8
+ import type { DataType } from "node-opcua-variant";
9
+
1
10
  // ----- this file has been automatically generated - do not edit
2
- import { UAObject, UAMethod, UAProperty } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { UInt32, UInt16, Byte, UAString } from "node-opcua-basic-types"
5
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
6
- import { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_discrete"
7
- import { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder"
8
- import { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group"
9
- import { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element"
11
+
10
12
  export interface UAIOLinkMaster_capabilities extends UAFunctionalGroup { // Object
11
13
  maxNumberOfPorts: UABaseDataVariable<Byte, DataType.Byte>;
12
14
  maxPowerSupply: UABaseDataVariable<number, DataType.Double>;
@@ -80,5 +82,4 @@ export interface UAIOLinkMaster_Base extends UATopologyElement_Base {
80
82
  statistics: UAIOLinkMaster_statistics;
81
83
  vendorURL?: UAProperty<UAString, DataType.String>;
82
84
  }
83
- export interface UAIOLinkMaster extends Omit<UATopologyElement, "identification"|"methodSet"|"parameterSet">, UAIOLinkMaster_Base {
84
- }
85
+ export interface UAIOLinkMaster extends Omit<UATopologyElement, "identification"|"methodSet"|"parameterSet">, UAIOLinkMaster_Base {}
@@ -1,5 +1,6 @@
1
+ import type { UAIOLinkAlarm, UAIOLinkAlarm_Base } from "./ua_io_link_alarm";
2
+
1
3
  // ----- this file has been automatically generated - do not edit
2
- import { UAIOLinkAlarm, UAIOLinkAlarm_Base } from "./ua_io_link_alarm"
3
4
  /**
4
5
  * | | |
5
6
  * |----------------|------------------------------------------------------------|
@@ -9,5 +10,4 @@ import { UAIOLinkAlarm, UAIOLinkAlarm_Base } from "./ua_io_link_alarm"
9
10
  * |isAbstract |false |
10
11
  */
11
12
  export type UAIOLinkMasterAlarm_Base = UAIOLinkAlarm_Base;
12
- export interface UAIOLinkMasterAlarm extends UAIOLinkAlarm, UAIOLinkMasterAlarm_Base {
13
- }
13
+ export interface UAIOLinkMasterAlarm extends UAIOLinkAlarm, UAIOLinkMasterAlarm_Base {}
@@ -1,5 +1,6 @@
1
+ import type { UAIOLinkEvent, UAIOLinkEvent_Base } from "./ua_io_link_event";
2
+
1
3
  // ----- this file has been automatically generated - do not edit
2
- import { UAIOLinkEvent, UAIOLinkEvent_Base } from "./ua_io_link_event"
3
4
  /**
4
5
  * | | |
5
6
  * |----------------|------------------------------------------------------------|
@@ -9,5 +10,4 @@ import { UAIOLinkEvent, UAIOLinkEvent_Base } from "./ua_io_link_event"
9
10
  * |isAbstract |true |
10
11
  */
11
12
  export type UAIOLinkMasterEvent_Base = UAIOLinkEvent_Base;
12
- export interface UAIOLinkMasterEvent extends UAIOLinkEvent, UAIOLinkMasterEvent_Base {
13
- }
13
+ export interface UAIOLinkMasterEvent extends UAIOLinkEvent, UAIOLinkMasterEvent_Base {}
@@ -1,14 +1,17 @@
1
+ import type { UAMethod, UAObject, UAProperty } from "node-opcua-address-space-base";
2
+ import type { Byte, UInt16, UInt32 } from "node-opcua-basic-types";
3
+ import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
4
+ import type { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element";
5
+ import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
6
+ import type { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
7
+ import type { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_discrete";
8
+ import type { UAOptionSet } from "node-opcua-nodeset-ua/dist/ua_option_set";
9
+ import type { DataType } from "node-opcua-variant";
10
+
11
+ import type { UAIOLinkDevice } from "./ua_io_link_device";
12
+
1
13
  // ----- this file has been automatically generated - do not edit
2
- import { UAObject, UAMethod, UAProperty } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { UInt32, UInt16, Byte } from "node-opcua-basic-types"
5
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
6
- import { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_discrete"
7
- import { UAOptionSet } from "node-opcua-nodeset-ua/dist/ua_option_set"
8
- import { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder"
9
- import { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group"
10
- import { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element"
11
- import { UAIOLinkDevice } from "./ua_io_link_device"
14
+
12
15
  export interface UAIOLinkPort_capabilities extends UAFunctionalGroup { // Object
13
16
  maxPowerSupply: UABaseDataVariable<number, DataType.Double>;
14
17
  pin2Support: UABaseDataVariable<boolean, DataType.Boolean>;
@@ -96,5 +99,4 @@ export interface UAIOLinkPort_Base extends UATopologyElement_Base {
96
99
  siOProcessData: UAIOLinkPort_siOProcessData;
97
100
  statistics: UAIOLinkPort_statistics;
98
101
  }
99
- export interface UAIOLinkPort extends Omit<UATopologyElement, "methodSet"|"parameterSet">, UAIOLinkPort_Base {
100
- }
102
+ export interface UAIOLinkPort extends Omit<UATopologyElement, "methodSet"|"parameterSet">, UAIOLinkPort_Base {}
@@ -1,5 +1,6 @@
1
+ import type { UAIOLinkAlarm, UAIOLinkAlarm_Base } from "./ua_io_link_alarm";
2
+
1
3
  // ----- this file has been automatically generated - do not edit
2
- import { UAIOLinkAlarm, UAIOLinkAlarm_Base } from "./ua_io_link_alarm"
3
4
  /**
4
5
  * | | |
5
6
  * |----------------|------------------------------------------------------------|
@@ -9,5 +10,4 @@ import { UAIOLinkAlarm, UAIOLinkAlarm_Base } from "./ua_io_link_alarm"
9
10
  * |isAbstract |false |
10
11
  */
11
12
  export type UAIOLinkPortAlarm_Base = UAIOLinkAlarm_Base;
12
- export interface UAIOLinkPortAlarm extends UAIOLinkAlarm, UAIOLinkPortAlarm_Base {
13
- }
13
+ export interface UAIOLinkPortAlarm extends UAIOLinkAlarm, UAIOLinkPortAlarm_Base {}
@@ -1,8 +1,11 @@
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { UInt16 } from "node-opcua-basic-types";
3
+ import type { DataType } from "node-opcua-variant";
4
+
5
+ import type { UAIOLinkEvent, UAIOLinkEvent_Base } from "./ua_io_link_event";
6
+
1
7
  // ----- 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 { UInt16 } from "node-opcua-basic-types"
5
- import { UAIOLinkEvent, UAIOLinkEvent_Base } from "./ua_io_link_event"
8
+
6
9
  /**
7
10
  * | | |
8
11
  * |----------------|------------------------------------------------------------|
@@ -14,5 +17,4 @@ import { UAIOLinkEvent, UAIOLinkEvent_Base } from "./ua_io_link_event"
14
17
  export interface UAIOLinkPortEvent_Base extends UAIOLinkEvent_Base {
15
18
  ioLinkEventCode: UAProperty<UInt16, DataType.UInt16>;
16
19
  }
17
- export interface UAIOLinkPortEvent extends Omit<UAIOLinkEvent, "ioLinkEventCode">, UAIOLinkPortEvent_Base {
18
- }
20
+ export interface UAIOLinkPortEvent extends Omit<UAIOLinkEvent, "ioLinkEventCode">, UAIOLinkPortEvent_Base {}
@@ -1,8 +1,10 @@
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { Byte } from "node-opcua-basic-types";
3
+ import type { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
4
+ import type { DataType } from "node-opcua-variant";
5
+
1
6
  // ----- 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 { Byte } from "node-opcua-basic-types"
5
- import { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
7
+
6
8
  /**
7
9
  * | | |
8
10
  * |----------------|------------------------------------------------------------|
@@ -18,5 +20,4 @@ export interface UAProcessDataVariable_Base<T, DT extends DataType> extends UAB
18
20
  pdDescriptor?: UAProperty<Byte[], DataType.Byte>;
19
21
  processDataLength: UAProperty<Byte, DataType.Byte>;
20
22
  }
21
- export interface UAProcessDataVariable<T, DT extends DataType> extends UABaseDataVariable<T, DT>, UAProcessDataVariable_Base<T, DT> {
22
- }
23
+ export interface UAProcessDataVariable<T, DT extends DataType> extends UABaseDataVariable<T, DT>, UAProcessDataVariable_Base<T, DT> {}