node-opcua-nodeset-io-link 2.140.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/enum_encoding_enum.d.ts +12 -0
- package/dist/enum_encoding_enum.js +18 -0
- package/dist/enum_encoding_enum.js.map +1 -0
- package/dist/index.d.ts +17 -0
- package/dist/index.js +34 -0
- package/dist/index.js.map +1 -0
- package/dist/ua_device_variant.d.ts +22 -0
- package/dist/ua_device_variant.js +3 -0
- package/dist/ua_device_variant.js.map +1 -0
- package/dist/ua_io_link_alarm.d.ts +17 -0
- package/dist/ua_io_link_alarm.js +3 -0
- package/dist/ua_io_link_alarm.js.map +1 -0
- package/dist/ua_io_link_device.d.ts +119 -0
- package/dist/ua_io_link_device.js +3 -0
- package/dist/ua_io_link_device.js.map +1 -0
- package/dist/ua_io_link_device_alarm.d.ts +12 -0
- package/dist/ua_io_link_device_alarm.js +3 -0
- package/dist/ua_io_link_device_alarm.js.map +1 -0
- package/dist/ua_io_link_device_event.d.ts +12 -0
- package/dist/ua_io_link_device_event.js +3 -0
- package/dist/ua_io_link_device_event.js.map +1 -0
- package/dist/ua_io_link_event.d.ts +17 -0
- package/dist/ua_io_link_event.js +3 -0
- package/dist/ua_io_link_event.js.map +1 -0
- package/dist/ua_io_link_iodd_device.d.ts +54 -0
- package/dist/ua_io_link_iodd_device.js +3 -0
- package/dist/ua_io_link_iodd_device.js.map +1 -0
- package/dist/ua_io_link_iodd_device_alarm.d.ts +17 -0
- package/dist/ua_io_link_iodd_device_alarm.js +3 -0
- package/dist/ua_io_link_iodd_device_alarm.js.map +1 -0
- package/dist/ua_io_link_iodd_device_event.d.ts +17 -0
- package/dist/ua_io_link_iodd_device_event.js +3 -0
- package/dist/ua_io_link_iodd_device_event.js.map +1 -0
- package/dist/ua_io_link_master.d.ts +82 -0
- package/dist/ua_io_link_master.js +3 -0
- package/dist/ua_io_link_master.js.map +1 -0
- package/dist/ua_io_link_master_alarm.d.ts +12 -0
- package/dist/ua_io_link_master_alarm.js +3 -0
- package/dist/ua_io_link_master_alarm.js.map +1 -0
- package/dist/ua_io_link_master_event.d.ts +12 -0
- package/dist/ua_io_link_master_event.js +3 -0
- package/dist/ua_io_link_master_event.js.map +1 -0
- package/dist/ua_io_link_port.d.ts +99 -0
- package/dist/ua_io_link_port.js +3 -0
- package/dist/ua_io_link_port.js.map +1 -0
- package/dist/ua_io_link_port_alarm.d.ts +12 -0
- package/dist/ua_io_link_port_alarm.js +3 -0
- package/dist/ua_io_link_port_alarm.js.map +1 -0
- package/dist/ua_io_link_port_event.d.ts +17 -0
- package/dist/ua_io_link_port_event.js +3 -0
- package/dist/ua_io_link_port_event.js.map +1 -0
- package/dist/ua_process_data_variable.d.ts +21 -0
- package/dist/ua_process_data_variable.js +3 -0
- package/dist/ua_process_data_variable.js.map +1 -0
- package/package.json +41 -0
- package/source/enum_encoding_enum.ts +14 -0
- package/source/index.ts +17 -0
- package/source/ua_device_variant.ts +23 -0
- package/source/ua_io_link_alarm.ts +23 -0
- package/source/ua_io_link_device.ts +121 -0
- package/source/ua_io_link_device_alarm.ts +13 -0
- package/source/ua_io_link_device_event.ts +13 -0
- package/source/ua_io_link_event.ts +18 -0
- package/source/ua_io_link_iodd_device.ts +56 -0
- package/source/ua_io_link_iodd_device_alarm.ts +18 -0
- package/source/ua_io_link_iodd_device_event.ts +18 -0
- package/source/ua_io_link_master.ts +85 -0
- package/source/ua_io_link_master_alarm.ts +13 -0
- package/source/ua_io_link_master_event.ts +13 -0
- package/source/ua_io_link_port.ts +100 -0
- package/source/ua_io_link_port_alarm.ts +13 -0
- package/source/ua_io_link_port_event.ts +18 -0
- package/source/ua_process_data_variable.ts +22 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
|
|
2
|
+
The MIT License (MIT)
|
|
3
|
+
|
|
4
|
+
Copyright (c) 2022-2025 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,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* | | |
|
|
3
|
+
* |-----------|------------------------------------------------------------|
|
|
4
|
+
* | namespace |http://opcfoundation.org/UA/IOLink/ |
|
|
5
|
+
* | nodeClass |DataType |
|
|
6
|
+
* | name |EncodingEnum |
|
|
7
|
+
* | isAbstract|false |
|
|
8
|
+
*/
|
|
9
|
+
export declare enum EnumEncodingEnum {
|
|
10
|
+
ASCII_0 = 0,
|
|
11
|
+
UTF8_1 = 1
|
|
12
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// ----- this file has been automatically generated - do not edit
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.EnumEncodingEnum = void 0;
|
|
5
|
+
/**
|
|
6
|
+
* | | |
|
|
7
|
+
* |-----------|------------------------------------------------------------|
|
|
8
|
+
* | namespace |http://opcfoundation.org/UA/IOLink/ |
|
|
9
|
+
* | nodeClass |DataType |
|
|
10
|
+
* | name |EncodingEnum |
|
|
11
|
+
* | isAbstract|false |
|
|
12
|
+
*/
|
|
13
|
+
var EnumEncodingEnum;
|
|
14
|
+
(function (EnumEncodingEnum) {
|
|
15
|
+
EnumEncodingEnum[EnumEncodingEnum["ASCII_0"] = 0] = "ASCII_0";
|
|
16
|
+
EnumEncodingEnum[EnumEncodingEnum["UTF8_1"] = 1] = "UTF8_1";
|
|
17
|
+
})(EnumEncodingEnum || (exports.EnumEncodingEnum = EnumEncodingEnum = {}));
|
|
18
|
+
//# sourceMappingURL=enum_encoding_enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enum_encoding_enum.js","sourceRoot":"","sources":["../source/enum_encoding_enum.ts"],"names":[],"mappings":";AAAA,iEAAiE;;;AAEjE;;;;;;;GAOG;AACH,IAAY,gBAGX;AAHD,WAAY,gBAAgB;IAC1B,6DAAW,CAAA;IACX,2DAAU,CAAA;AACZ,CAAC,EAHW,gBAAgB,gCAAhB,gBAAgB,QAG3B"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export * from "./enum_encoding_enum";
|
|
2
|
+
export * from "./ua_device_variant";
|
|
3
|
+
export * from "./ua_io_link_alarm";
|
|
4
|
+
export * from "./ua_io_link_device";
|
|
5
|
+
export * from "./ua_io_link_device_alarm";
|
|
6
|
+
export * from "./ua_io_link_device_event";
|
|
7
|
+
export * from "./ua_io_link_event";
|
|
8
|
+
export * from "./ua_io_link_iodd_device";
|
|
9
|
+
export * from "./ua_io_link_iodd_device_alarm";
|
|
10
|
+
export * from "./ua_io_link_iodd_device_event";
|
|
11
|
+
export * from "./ua_io_link_master";
|
|
12
|
+
export * from "./ua_io_link_master_alarm";
|
|
13
|
+
export * from "./ua_io_link_master_event";
|
|
14
|
+
export * from "./ua_io_link_port";
|
|
15
|
+
export * from "./ua_io_link_port_alarm";
|
|
16
|
+
export * from "./ua_io_link_port_event";
|
|
17
|
+
export * from "./ua_process_data_variable";
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
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("./enum_encoding_enum"), exports);
|
|
18
|
+
__exportStar(require("./ua_device_variant"), exports);
|
|
19
|
+
__exportStar(require("./ua_io_link_alarm"), exports);
|
|
20
|
+
__exportStar(require("./ua_io_link_device"), exports);
|
|
21
|
+
__exportStar(require("./ua_io_link_device_alarm"), exports);
|
|
22
|
+
__exportStar(require("./ua_io_link_device_event"), exports);
|
|
23
|
+
__exportStar(require("./ua_io_link_event"), exports);
|
|
24
|
+
__exportStar(require("./ua_io_link_iodd_device"), exports);
|
|
25
|
+
__exportStar(require("./ua_io_link_iodd_device_alarm"), exports);
|
|
26
|
+
__exportStar(require("./ua_io_link_iodd_device_event"), exports);
|
|
27
|
+
__exportStar(require("./ua_io_link_master"), exports);
|
|
28
|
+
__exportStar(require("./ua_io_link_master_alarm"), exports);
|
|
29
|
+
__exportStar(require("./ua_io_link_master_event"), exports);
|
|
30
|
+
__exportStar(require("./ua_io_link_port"), exports);
|
|
31
|
+
__exportStar(require("./ua_io_link_port_alarm"), exports);
|
|
32
|
+
__exportStar(require("./ua_io_link_port_event"), exports);
|
|
33
|
+
__exportStar(require("./ua_process_data_variable"), exports);
|
|
34
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../source/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uDAAqC;AACrC,sDAAoC;AACpC,qDAAmC;AACnC,sDAAoC;AACpC,4DAA0C;AAC1C,4DAA0C;AAC1C,qDAAmC;AACnC,2DAAyC;AACzC,iEAA+C;AAC/C,iEAA+C;AAC/C,sDAAoC;AACpC,4DAA0C;AAC1C,4DAA0C;AAC1C,oDAAkC;AAClC,0DAAwC;AACxC,0DAAwC;AACxC,6DAA2C"}
|
|
@@ -0,0 +1,22 @@
|
|
|
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/source/ua_base_data_variable";
|
|
6
|
+
/**
|
|
7
|
+
* | | |
|
|
8
|
+
* |----------------|------------------------------------------------------------|
|
|
9
|
+
* |namespace |http://opcfoundation.org/UA/IOLink/ |
|
|
10
|
+
* |nodeClass |ObjectType |
|
|
11
|
+
* |typedDefinition |DeviceVariantType i=1013 |
|
|
12
|
+
* |isAbstract |false |
|
|
13
|
+
*/
|
|
14
|
+
export interface UADeviceVariant_Base {
|
|
15
|
+
"$description": UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
16
|
+
deviceIcon?: UABaseDataVariable<Buffer, DataType.ByteString>;
|
|
17
|
+
deviceSymbol?: UABaseDataVariable<Buffer, DataType.ByteString>;
|
|
18
|
+
name: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
19
|
+
productId: UAProperty<UAString, DataType.String>;
|
|
20
|
+
}
|
|
21
|
+
export interface UADeviceVariant extends UAObject, UADeviceVariant_Base {
|
|
22
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_device_variant.js","sourceRoot":"","sources":["../source/ua_device_variant.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,17 @@
|
|
|
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/source/ua_off_normal_alarm";
|
|
5
|
+
/**
|
|
6
|
+
* | | |
|
|
7
|
+
* |----------------|------------------------------------------------------------|
|
|
8
|
+
* |namespace |http://opcfoundation.org/UA/IOLink/ |
|
|
9
|
+
* |nodeClass |ObjectType |
|
|
10
|
+
* |typedDefinition |IOLinkAlarmType i=1007 |
|
|
11
|
+
* |isAbstract |true |
|
|
12
|
+
*/
|
|
13
|
+
export interface UAIOLinkAlarm_Base extends UAOffNormalAlarm_Base {
|
|
14
|
+
ioLinkEventCode: UAProperty<UInt16, DataType.UInt16>;
|
|
15
|
+
}
|
|
16
|
+
export interface UAIOLinkAlarm extends UAOffNormalAlarm, UAIOLinkAlarm_Base {
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_io_link_alarm.js","sourceRoot":"","sources":["../source/ua_io_link_alarm.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,119 @@
|
|
|
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/source/ua_base_data_variable";
|
|
6
|
+
import { UAFolder } from "node-opcua-nodeset-ua/source/ua_folder";
|
|
7
|
+
import { EnumDeviceHealth } from "node-opcua-nodeset-di/source/enum_device_health";
|
|
8
|
+
import { UAFunctionalGroup } from "node-opcua-nodeset-di/source/ua_functional_group";
|
|
9
|
+
import { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/source/ua_topology_element";
|
|
10
|
+
import { UAProcessDataVariable } from "./ua_process_data_variable";
|
|
11
|
+
export interface UAIOLinkDevice_general extends UAFunctionalGroup {
|
|
12
|
+
applicationReset: UAMethod;
|
|
13
|
+
applicationSpecificTag: UABaseDataVariable<UAString, DataType.String>;
|
|
14
|
+
detailedDeviceStatus?: UABaseDataVariable<Byte[], DataType.Byte>;
|
|
15
|
+
deviceReset: UAMethod;
|
|
16
|
+
errorCount?: UABaseDataVariable<UInt16, DataType.UInt16>;
|
|
17
|
+
functionTag: UABaseDataVariable<UAString, DataType.String>;
|
|
18
|
+
locationTag: UABaseDataVariable<UAString, DataType.String>;
|
|
19
|
+
offsetTime?: UABaseDataVariable<number, DataType.Double>;
|
|
20
|
+
paramBreak: UAMethod;
|
|
21
|
+
paramDownloadToDeviceStart: UAMethod;
|
|
22
|
+
paramDownloadToDeviceStop: UAMethod;
|
|
23
|
+
paramDownloadToDeviceStore: UAMethod;
|
|
24
|
+
paramUploadFromDeviceStart: UAMethod;
|
|
25
|
+
paramUploadFromDeviceStop: UAMethod;
|
|
26
|
+
processDataInput: UAProcessDataVariable<Byte[], DataType.Byte>;
|
|
27
|
+
processDataOutput: UAProcessDataVariable<Byte[], DataType.Byte>;
|
|
28
|
+
readISDU: UAMethod;
|
|
29
|
+
restoreFactorySettings: UAMethod;
|
|
30
|
+
systemCommand: UAMethod;
|
|
31
|
+
writeISDU: UAMethod;
|
|
32
|
+
}
|
|
33
|
+
export interface UAIOLinkDevice_identification extends UAFunctionalGroup {
|
|
34
|
+
deviceID: UAProperty<UInt32, DataType.UInt32>;
|
|
35
|
+
applicationSpecificTag: UABaseDataVariable<UAString, DataType.String>;
|
|
36
|
+
functionTag: UABaseDataVariable<UAString, DataType.String>;
|
|
37
|
+
locationTag: UABaseDataVariable<UAString, DataType.String>;
|
|
38
|
+
/**
|
|
39
|
+
* serialNumber
|
|
40
|
+
* Identifier that uniquely identifies, within a
|
|
41
|
+
* manufacturer, a device instance
|
|
42
|
+
*/
|
|
43
|
+
serialNumber?: UAProperty<UAString, DataType.String>;
|
|
44
|
+
vendorID: UAProperty<UInt16, DataType.UInt16>;
|
|
45
|
+
}
|
|
46
|
+
export interface UAIOLinkDevice_methodSet extends UAObject {
|
|
47
|
+
applicationReset: UAMethod;
|
|
48
|
+
deviceReset: UAMethod;
|
|
49
|
+
paramBreak: UAMethod;
|
|
50
|
+
paramDownloadToDeviceStart: UAMethod;
|
|
51
|
+
paramDownloadToDeviceStop: UAMethod;
|
|
52
|
+
paramDownloadToDeviceStore: UAMethod;
|
|
53
|
+
paramUploadFromDeviceStart: UAMethod;
|
|
54
|
+
paramUploadFromDeviceStop: UAMethod;
|
|
55
|
+
readISDU: UAMethod;
|
|
56
|
+
restoreFactorySettings: UAMethod;
|
|
57
|
+
systemCommand: UAMethod;
|
|
58
|
+
writeISDU: UAMethod;
|
|
59
|
+
}
|
|
60
|
+
export interface UAIOLinkDevice_parameterSet extends UAObject {
|
|
61
|
+
applicationSpecificTag: UABaseDataVariable<UAString, DataType.String>;
|
|
62
|
+
detailedDeviceStatus?: UABaseDataVariable<Byte[], DataType.Byte>;
|
|
63
|
+
errorCount?: UABaseDataVariable<UInt16, DataType.UInt16>;
|
|
64
|
+
functionTag: UABaseDataVariable<UAString, DataType.String>;
|
|
65
|
+
locationTag: UABaseDataVariable<UAString, DataType.String>;
|
|
66
|
+
offsetTime?: UABaseDataVariable<number, DataType.Double>;
|
|
67
|
+
processDataInput: UAProcessDataVariable<Byte[], DataType.Byte>;
|
|
68
|
+
processDataOutput: UAProcessDataVariable<Byte[], DataType.Byte>;
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* | | |
|
|
72
|
+
* |----------------|------------------------------------------------------------|
|
|
73
|
+
* |namespace |http://opcfoundation.org/UA/IOLink/ |
|
|
74
|
+
* |nodeClass |ObjectType |
|
|
75
|
+
* |typedDefinition |IOLinkDeviceType i=1002 |
|
|
76
|
+
* |isAbstract |false |
|
|
77
|
+
*/
|
|
78
|
+
export interface UAIOLinkDevice_Base extends UATopologyElement_Base {
|
|
79
|
+
alarms?: UAFolder;
|
|
80
|
+
deviceAccessLocks?: UAProperty<UInt16, DataType.UInt16>;
|
|
81
|
+
deviceHealth?: UABaseDataVariable<EnumDeviceHealth, DataType.Int32>;
|
|
82
|
+
deviceID: UAProperty<UInt32, DataType.UInt32>;
|
|
83
|
+
general: UAIOLinkDevice_general;
|
|
84
|
+
hardwareRevision?: UAProperty<UAString, DataType.String>;
|
|
85
|
+
/**
|
|
86
|
+
* identification
|
|
87
|
+
* Used to organize parameters for identification of
|
|
88
|
+
* this TopologyElement
|
|
89
|
+
*/
|
|
90
|
+
identification: UAIOLinkDevice_identification;
|
|
91
|
+
/**
|
|
92
|
+
* serialNumber
|
|
93
|
+
* Identifier that uniquely identifies, within a
|
|
94
|
+
* manufacturer, a device instance
|
|
95
|
+
*/
|
|
96
|
+
serialNumber?: UAProperty<UAString, DataType.String>;
|
|
97
|
+
vendorID: UAProperty<UInt16, DataType.UInt16>;
|
|
98
|
+
manufacturer: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
99
|
+
/**
|
|
100
|
+
* methodSet
|
|
101
|
+
* Flat list of Methods
|
|
102
|
+
*/
|
|
103
|
+
methodSet: UAIOLinkDevice_methodSet;
|
|
104
|
+
minCycleTime: UAProperty<number, DataType.Double>;
|
|
105
|
+
model: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
106
|
+
/**
|
|
107
|
+
* parameterSet
|
|
108
|
+
* Flat list of Parameters
|
|
109
|
+
*/
|
|
110
|
+
parameterSet: UAIOLinkDevice_parameterSet;
|
|
111
|
+
productID?: UAProperty<UAString, DataType.String>;
|
|
112
|
+
productText?: UAProperty<UAString, DataType.String>;
|
|
113
|
+
profileCharacteristic?: UAProperty<UInt16[], DataType.UInt16>;
|
|
114
|
+
revisionID: UAProperty<UAString, DataType.String>;
|
|
115
|
+
softwareRevision?: UAProperty<UAString, DataType.String>;
|
|
116
|
+
vendorText?: UAProperty<UAString, DataType.String>;
|
|
117
|
+
}
|
|
118
|
+
export interface UAIOLinkDevice extends Omit<UATopologyElement, "identification" | "methodSet" | "parameterSet">, UAIOLinkDevice_Base {
|
|
119
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_io_link_device.js","sourceRoot":"","sources":["../source/ua_io_link_device.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { UAIOLinkAlarm, UAIOLinkAlarm_Base } from "./ua_io_link_alarm";
|
|
2
|
+
/**
|
|
3
|
+
* | | |
|
|
4
|
+
* |----------------|------------------------------------------------------------|
|
|
5
|
+
* |namespace |http://opcfoundation.org/UA/IOLink/ |
|
|
6
|
+
* |nodeClass |ObjectType |
|
|
7
|
+
* |typedDefinition |IOLinkDeviceAlarmType i=1008 |
|
|
8
|
+
* |isAbstract |false |
|
|
9
|
+
*/
|
|
10
|
+
export type UAIOLinkDeviceAlarm_Base = UAIOLinkAlarm_Base;
|
|
11
|
+
export interface UAIOLinkDeviceAlarm extends UAIOLinkAlarm, UAIOLinkDeviceAlarm_Base {
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_io_link_device_alarm.js","sourceRoot":"","sources":["../source/ua_io_link_device_alarm.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { UAIOLinkEvent, UAIOLinkEvent_Base } from "./ua_io_link_event";
|
|
2
|
+
/**
|
|
3
|
+
* | | |
|
|
4
|
+
* |----------------|------------------------------------------------------------|
|
|
5
|
+
* |namespace |http://opcfoundation.org/UA/IOLink/ |
|
|
6
|
+
* |nodeClass |ObjectType |
|
|
7
|
+
* |typedDefinition |IOLinkDeviceEventType i=1004 |
|
|
8
|
+
* |isAbstract |false |
|
|
9
|
+
*/
|
|
10
|
+
export type UAIOLinkDeviceEvent_Base = UAIOLinkEvent_Base;
|
|
11
|
+
export interface UAIOLinkDeviceEvent extends UAIOLinkEvent, UAIOLinkDeviceEvent_Base {
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_io_link_device_event.js","sourceRoot":"","sources":["../source/ua_io_link_device_event.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,17 @@
|
|
|
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/source/ua_base_event";
|
|
5
|
+
/**
|
|
6
|
+
* | | |
|
|
7
|
+
* |----------------|------------------------------------------------------------|
|
|
8
|
+
* |namespace |http://opcfoundation.org/UA/IOLink/ |
|
|
9
|
+
* |nodeClass |ObjectType |
|
|
10
|
+
* |typedDefinition |IOLinkEventType i=1003 |
|
|
11
|
+
* |isAbstract |true |
|
|
12
|
+
*/
|
|
13
|
+
export interface UAIOLinkEvent_Base extends UABaseEvent_Base {
|
|
14
|
+
ioLinkEventCode: UAProperty<UInt16, DataType.UInt16>;
|
|
15
|
+
}
|
|
16
|
+
export interface UAIOLinkEvent extends UABaseEvent, UAIOLinkEvent_Base {
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_io_link_event.js","sourceRoot":"","sources":["../source/ua_io_link_event.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,54 @@
|
|
|
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/source/ua_folder";
|
|
6
|
+
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
|
|
7
|
+
import { UAOptionSet } from "node-opcua-nodeset-ua/source/ua_option_set";
|
|
8
|
+
import { UAFunctionalGroup } from "node-opcua-nodeset-di/source/ua_functional_group";
|
|
9
|
+
import { UAIOLinkDevice_parameterSet, UAIOLinkDevice, UAIOLinkDevice_Base } from "./ua_io_link_device";
|
|
10
|
+
import { UADeviceVariant } from "./ua_device_variant";
|
|
11
|
+
export interface UAIOLinkIODDDevice_deviceTypeImage extends UAFolder {
|
|
12
|
+
deviceIcon?: UABaseDataVariable<Buffer, DataType.ByteString>;
|
|
13
|
+
deviceSymbol?: UABaseDataVariable<Buffer, DataType.ByteString>;
|
|
14
|
+
}
|
|
15
|
+
export interface UAIOLinkIODDDevice_ioDDInformation extends UAFolder {
|
|
16
|
+
copyright: UAProperty<UAString, DataType.String>;
|
|
17
|
+
ioLinkRevision: UAProperty<UAString, DataType.String>;
|
|
18
|
+
releaseDate: UAProperty<UAString, DataType.String>;
|
|
19
|
+
version: UAProperty<UAString, DataType.String>;
|
|
20
|
+
}
|
|
21
|
+
export interface UAIOLinkIODDDevice_parameterSet extends UAIOLinkDevice_parameterSet {
|
|
22
|
+
supportedAccessLocks?: UAOptionSet<Byte, DataType.Byte>;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* | | |
|
|
26
|
+
* |----------------|------------------------------------------------------------|
|
|
27
|
+
* |namespace |http://opcfoundation.org/UA/IOLink/ |
|
|
28
|
+
* |nodeClass |ObjectType |
|
|
29
|
+
* |typedDefinition |IOLinkIODDDeviceType i=1012 |
|
|
30
|
+
* |isAbstract |true |
|
|
31
|
+
*/
|
|
32
|
+
export interface UAIOLinkIODDDevice_Base extends UAIOLinkDevice_Base {
|
|
33
|
+
deviceName: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
34
|
+
/**
|
|
35
|
+
* deviceTypeImage
|
|
36
|
+
* Organizes pictures of the device.
|
|
37
|
+
*/
|
|
38
|
+
deviceTypeImage?: UAIOLinkIODDDevice_deviceTypeImage;
|
|
39
|
+
deviceVariant: UADeviceVariant;
|
|
40
|
+
deviceVariants: UAFolder;
|
|
41
|
+
ioDDInformation: UAIOLinkIODDDevice_ioDDInformation;
|
|
42
|
+
/**
|
|
43
|
+
* parameterSet
|
|
44
|
+
* Flat list of Parameters
|
|
45
|
+
*/
|
|
46
|
+
parameterSet: UAIOLinkIODDDevice_parameterSet;
|
|
47
|
+
vendorLogo?: UAProperty<Buffer, DataType.ByteString>;
|
|
48
|
+
vendorURL: UAProperty<UAString, DataType.String>;
|
|
49
|
+
maintenance: UAFunctionalGroup;
|
|
50
|
+
observer: UAFunctionalGroup;
|
|
51
|
+
specialist: UAFunctionalGroup;
|
|
52
|
+
}
|
|
53
|
+
export interface UAIOLinkIODDDevice extends Omit<UAIOLinkDevice, "parameterSet">, UAIOLinkIODDDevice_Base {
|
|
54
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_io_link_iodd_device.js","sourceRoot":"","sources":["../source/ua_io_link_iodd_device.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,17 @@
|
|
|
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";
|
|
5
|
+
/**
|
|
6
|
+
* | | |
|
|
7
|
+
* |----------------|------------------------------------------------------------|
|
|
8
|
+
* |namespace |http://opcfoundation.org/UA/IOLink/ |
|
|
9
|
+
* |nodeClass |ObjectType |
|
|
10
|
+
* |typedDefinition |IOLinkIODDDeviceAlarmType i=1009 |
|
|
11
|
+
* |isAbstract |false |
|
|
12
|
+
*/
|
|
13
|
+
export interface UAIOLinkIODDDeviceAlarm_Base extends UAIOLinkDeviceAlarm_Base {
|
|
14
|
+
name: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
15
|
+
}
|
|
16
|
+
export interface UAIOLinkIODDDeviceAlarm extends UAIOLinkDeviceAlarm, UAIOLinkIODDDeviceAlarm_Base {
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_io_link_iodd_device_alarm.js","sourceRoot":"","sources":["../source/ua_io_link_iodd_device_alarm.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,17 @@
|
|
|
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";
|
|
5
|
+
/**
|
|
6
|
+
* | | |
|
|
7
|
+
* |----------------|------------------------------------------------------------|
|
|
8
|
+
* |namespace |http://opcfoundation.org/UA/IOLink/ |
|
|
9
|
+
* |nodeClass |ObjectType |
|
|
10
|
+
* |typedDefinition |IOLinkIODDDeviceEventType i=1021 |
|
|
11
|
+
* |isAbstract |false |
|
|
12
|
+
*/
|
|
13
|
+
export interface UAIOLinkIODDDeviceEvent_Base extends UAIOLinkDeviceEvent_Base {
|
|
14
|
+
name: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
15
|
+
}
|
|
16
|
+
export interface UAIOLinkIODDDeviceEvent extends UAIOLinkDeviceEvent, UAIOLinkIODDDeviceEvent_Base {
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_io_link_iodd_device_event.js","sourceRoot":"","sources":["../source/ua_io_link_iodd_device_event.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,82 @@
|
|
|
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/source/ua_base_data_variable";
|
|
5
|
+
import { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/source/ua_multi_state_discrete";
|
|
6
|
+
import { UAFolder } from "node-opcua-nodeset-ua/source/ua_folder";
|
|
7
|
+
import { UAFunctionalGroup } from "node-opcua-nodeset-di/source/ua_functional_group";
|
|
8
|
+
import { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/source/ua_topology_element";
|
|
9
|
+
export interface UAIOLinkMaster_capabilities extends UAFunctionalGroup {
|
|
10
|
+
maxNumberOfPorts: UABaseDataVariable<Byte, DataType.Byte>;
|
|
11
|
+
maxPowerSupply: UABaseDataVariable<number, DataType.Double>;
|
|
12
|
+
}
|
|
13
|
+
export interface UAIOLinkMaster_identification extends UAFunctionalGroup {
|
|
14
|
+
deviceID: UAProperty<UInt32, DataType.UInt32>;
|
|
15
|
+
applicationSpecificTag: UABaseDataVariable<UAString, DataType.String>;
|
|
16
|
+
functionTag: UABaseDataVariable<UAString, DataType.String>;
|
|
17
|
+
locationTag: UABaseDataVariable<UAString, DataType.String>;
|
|
18
|
+
masterType: UAMultiStateDiscrete<Byte, DataType.Byte>;
|
|
19
|
+
vendorID?: UAProperty<UInt16, DataType.UInt16>;
|
|
20
|
+
}
|
|
21
|
+
export interface UAIOLinkMaster_management extends UAFunctionalGroup {
|
|
22
|
+
restart: UAMethod;
|
|
23
|
+
}
|
|
24
|
+
export interface UAIOLinkMaster_methodSet extends UAObject {
|
|
25
|
+
restart: UAMethod;
|
|
26
|
+
resetStatisticsOnAllPorts?: UAMethod;
|
|
27
|
+
}
|
|
28
|
+
export interface UAIOLinkMaster_parameterSet extends UAObject {
|
|
29
|
+
maxNumberOfPorts: UABaseDataVariable<Byte, DataType.Byte>;
|
|
30
|
+
maxPowerSupply: UABaseDataVariable<number, DataType.Double>;
|
|
31
|
+
applicationSpecificTag: UABaseDataVariable<UAString, DataType.String>;
|
|
32
|
+
functionTag: UABaseDataVariable<UAString, DataType.String>;
|
|
33
|
+
locationTag: UABaseDataVariable<UAString, DataType.String>;
|
|
34
|
+
masterType: UAMultiStateDiscrete<Byte, DataType.Byte>;
|
|
35
|
+
dateOfLastStatisticsReset?: UABaseDataVariable<Date, DataType.DateTime>;
|
|
36
|
+
numberOfIOLinkMasterStarts?: UABaseDataVariable<UInt32, DataType.UInt32>;
|
|
37
|
+
}
|
|
38
|
+
export interface UAIOLinkMaster_statistics extends UAFunctionalGroup {
|
|
39
|
+
resetStatisticsOnAllPorts?: UAMethod;
|
|
40
|
+
dateOfLastStatisticsReset?: UABaseDataVariable<Date, DataType.DateTime>;
|
|
41
|
+
numberOfIOLinkMasterStarts?: UABaseDataVariable<UInt32, DataType.UInt32>;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* | | |
|
|
45
|
+
* |----------------|------------------------------------------------------------|
|
|
46
|
+
* |namespace |http://opcfoundation.org/UA/IOLink/ |
|
|
47
|
+
* |nodeClass |ObjectType |
|
|
48
|
+
* |typedDefinition |IOLinkMasterType i=1014 |
|
|
49
|
+
* |isAbstract |false |
|
|
50
|
+
*/
|
|
51
|
+
export interface UAIOLinkMaster_Base extends UATopologyElement_Base {
|
|
52
|
+
alarms?: UAFolder;
|
|
53
|
+
capabilities: UAIOLinkMaster_capabilities;
|
|
54
|
+
deviceID: UAProperty<UInt32, DataType.UInt32>;
|
|
55
|
+
/**
|
|
56
|
+
* identification
|
|
57
|
+
* Used to organize parameters for identification of
|
|
58
|
+
* this TopologyElement
|
|
59
|
+
*/
|
|
60
|
+
identification: UAIOLinkMaster_identification;
|
|
61
|
+
vendorID?: UAProperty<UInt16, DataType.UInt16>;
|
|
62
|
+
ioLinkStackRevision?: UAProperty<UAString, DataType.String>;
|
|
63
|
+
management: UAIOLinkMaster_management;
|
|
64
|
+
masterConfigurationDisabled: UAProperty<boolean, DataType.Boolean>;
|
|
65
|
+
/**
|
|
66
|
+
* methodSet
|
|
67
|
+
* Flat list of Methods
|
|
68
|
+
*/
|
|
69
|
+
methodSet: UAIOLinkMaster_methodSet;
|
|
70
|
+
/**
|
|
71
|
+
* parameterSet
|
|
72
|
+
* Flat list of Parameters
|
|
73
|
+
*/
|
|
74
|
+
parameterSet: UAIOLinkMaster_parameterSet;
|
|
75
|
+
productID?: UAProperty<UAString, DataType.String>;
|
|
76
|
+
productText?: UAProperty<UAString, DataType.String>;
|
|
77
|
+
revisionID?: UAProperty<UAString, DataType.String>;
|
|
78
|
+
statistics: UAIOLinkMaster_statistics;
|
|
79
|
+
vendorURL?: UAProperty<UAString, DataType.String>;
|
|
80
|
+
}
|
|
81
|
+
export interface UAIOLinkMaster extends Omit<UATopologyElement, "identification" | "methodSet" | "parameterSet">, UAIOLinkMaster_Base {
|
|
82
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_io_link_master.js","sourceRoot":"","sources":["../source/ua_io_link_master.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { UAIOLinkAlarm, UAIOLinkAlarm_Base } from "./ua_io_link_alarm";
|
|
2
|
+
/**
|
|
3
|
+
* | | |
|
|
4
|
+
* |----------------|------------------------------------------------------------|
|
|
5
|
+
* |namespace |http://opcfoundation.org/UA/IOLink/ |
|
|
6
|
+
* |nodeClass |ObjectType |
|
|
7
|
+
* |typedDefinition |IOLinkMasterAlarmType i=1011 |
|
|
8
|
+
* |isAbstract |false |
|
|
9
|
+
*/
|
|
10
|
+
export type UAIOLinkMasterAlarm_Base = UAIOLinkAlarm_Base;
|
|
11
|
+
export interface UAIOLinkMasterAlarm extends UAIOLinkAlarm, UAIOLinkMasterAlarm_Base {
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_io_link_master_alarm.js","sourceRoot":"","sources":["../source/ua_io_link_master_alarm.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { UAIOLinkEvent, UAIOLinkEvent_Base } from "./ua_io_link_event";
|
|
2
|
+
/**
|
|
3
|
+
* | | |
|
|
4
|
+
* |----------------|------------------------------------------------------------|
|
|
5
|
+
* |namespace |http://opcfoundation.org/UA/IOLink/ |
|
|
6
|
+
* |nodeClass |ObjectType |
|
|
7
|
+
* |typedDefinition |IOLinkMasterEventType i=1006 |
|
|
8
|
+
* |isAbstract |true |
|
|
9
|
+
*/
|
|
10
|
+
export type UAIOLinkMasterEvent_Base = UAIOLinkEvent_Base;
|
|
11
|
+
export interface UAIOLinkMasterEvent extends UAIOLinkEvent, UAIOLinkMasterEvent_Base {
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_io_link_master_event.js","sourceRoot":"","sources":["../source/ua_io_link_master_event.ts"],"names":[],"mappings":""}
|