node-opcua-nodeset-machinery 2.74.0 → 2.76.2
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 +1 -1
- package/dist/ua_i_machine_vendor_nameplate.d.ts +1 -1
- package/dist/ua_i_machinery_item_vendor_nameplate.d.ts +5 -5
- package/dist/ua_machine_components.d.ts +1 -1
- package/dist/ua_machine_identification.d.ts +3 -3
- package/dist/ua_machinery_component_identification.d.ts +2 -2
- package/dist/ua_machinery_item_identification.d.ts +14 -14
- package/dist/ua_machinery_item_state_state_machine.d.ts +1 -1
- package/dist/ua_machinery_operation_mode_state_machine.d.ts +1 -1
- package/package.json +9 -9
- package/source/ua_i_machine_tag_nameplate.ts +1 -1
- package/source/ua_i_machine_vendor_nameplate.ts +1 -1
- package/source/ua_i_machinery_item_vendor_nameplate.ts +5 -5
- package/source/ua_machine_components.ts +2 -1
- package/source/ua_machine_identification.ts +3 -3
- package/source/ua_machinery_component_identification.ts +2 -2
- package/source/ua_machinery_item_identification.ts +14 -14
- package/source/ua_machinery_item_state_state_machine.ts +1 -1
- package/source/ua_machinery_operation_mode_state_machine.ts +1 -1
|
@@ -24,7 +24,7 @@ export interface UAIMachineTagNameplate_Base extends UAITagNameplate_Base {
|
|
|
24
24
|
* strings with a length of 60 Unicode characters
|
|
25
25
|
* into that field.
|
|
26
26
|
*/
|
|
27
|
-
location?: UAProperty<UAString,
|
|
27
|
+
location?: UAProperty<UAString, DataType.String>;
|
|
28
28
|
}
|
|
29
29
|
export interface UAIMachineTagNameplate extends UAITagNameplate, UAIMachineTagNameplate_Base {
|
|
30
30
|
}
|
|
@@ -20,7 +20,7 @@ export interface UAIMachineVendorNameplate_Base extends UAIMachineryItemVendorNa
|
|
|
20
20
|
* A globally unique resource identifier provided by
|
|
21
21
|
* the manufacturer of the machine
|
|
22
22
|
*/
|
|
23
|
-
productInstanceUri: UAProperty<UAString,
|
|
23
|
+
productInstanceUri: UAProperty<UAString, DataType.String>;
|
|
24
24
|
}
|
|
25
25
|
export interface UAIMachineVendorNameplate extends Omit<UAIMachineryItemVendorNameplate, "productInstanceUri">, UAIMachineVendorNameplate_Base {
|
|
26
26
|
}
|
|
@@ -22,13 +22,13 @@ export interface UAIMachineryItemVendorNameplate_Base extends UAIVendorNameplate
|
|
|
22
22
|
* the first time after it has left the manufacturer
|
|
23
23
|
* plant.
|
|
24
24
|
*/
|
|
25
|
-
initialOperationDate?: UAProperty<Date,
|
|
25
|
+
initialOperationDate?: UAProperty<Date, DataType.DateTime>;
|
|
26
26
|
/**
|
|
27
27
|
* manufacturer
|
|
28
28
|
* A human-readable, localized name of the
|
|
29
29
|
* manufacturer of the MachineryItem.
|
|
30
30
|
*/
|
|
31
|
-
manufacturer: UAProperty<LocalizedText,
|
|
31
|
+
manufacturer: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
32
32
|
/**
|
|
33
33
|
* monthOfConstruction
|
|
34
34
|
* The month in which the manufacturing process of
|
|
@@ -36,7 +36,7 @@ export interface UAIMachineryItemVendorNameplate_Base extends UAIVendorNameplate
|
|
|
36
36
|
* a number between 1 and 12, representing the month
|
|
37
37
|
* from January to December.
|
|
38
38
|
*/
|
|
39
|
-
monthOfConstruction?: UAProperty<Byte,
|
|
39
|
+
monthOfConstruction?: UAProperty<Byte, DataType.Byte>;
|
|
40
40
|
/**
|
|
41
41
|
* serialNumber
|
|
42
42
|
* A string containing a unique production number of
|
|
@@ -46,7 +46,7 @@ export interface UAIMachineryItemVendorNameplate_Base extends UAIVendorNameplate
|
|
|
46
46
|
* the model. The value shall not change during the
|
|
47
47
|
* life-cycle of the MachineryItem.
|
|
48
48
|
*/
|
|
49
|
-
serialNumber: UAProperty<UAString,
|
|
49
|
+
serialNumber: UAProperty<UAString, DataType.String>;
|
|
50
50
|
/**
|
|
51
51
|
* yearOfConstruction
|
|
52
52
|
* The year (Gregorian calendar) in which the
|
|
@@ -55,7 +55,7 @@ export interface UAIMachineryItemVendorNameplate_Base extends UAIVendorNameplate
|
|
|
55
55
|
* and never change during the life-cycle of a
|
|
56
56
|
* MachineryItem.
|
|
57
57
|
*/
|
|
58
|
-
yearOfConstruction?: UAProperty<UInt16,
|
|
58
|
+
yearOfConstruction?: UAProperty<UInt16, DataType.UInt16>;
|
|
59
59
|
}
|
|
60
60
|
export interface UAIMachineryItemVendorNameplate extends Omit<UAIVendorNameplate, "manufacturer" | "serialNumber">, UAIMachineryItemVendorNameplate_Base {
|
|
61
61
|
}
|
|
@@ -25,7 +25,7 @@ export interface UAMachineComponents_Base {
|
|
|
25
25
|
* defaultInstanceBrowseName
|
|
26
26
|
* The default BrowseName for instances of the type.
|
|
27
27
|
*/
|
|
28
|
-
defaultInstanceBrowseName: UAProperty<QualifiedName,
|
|
28
|
+
defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
|
|
29
29
|
}
|
|
30
30
|
export interface UAMachineComponents extends UAObject, UAMachineComponents_Base {
|
|
31
31
|
}
|
|
@@ -19,7 +19,7 @@ export interface UAMachineIdentification_Base extends UAMachineryItemIdentificat
|
|
|
19
19
|
* defaultInstanceBrowseName
|
|
20
20
|
* The default BrowseName for instances of the type.
|
|
21
21
|
*/
|
|
22
|
-
defaultInstanceBrowseName: UAProperty<QualifiedName,
|
|
22
|
+
defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
|
|
23
23
|
/**
|
|
24
24
|
* location
|
|
25
25
|
* To be used by end users to store the location of
|
|
@@ -30,13 +30,13 @@ export interface UAMachineIdentification_Base extends UAMachineryItemIdentificat
|
|
|
30
30
|
* strings with a length of 60 Unicode characters
|
|
31
31
|
* into that field.
|
|
32
32
|
*/
|
|
33
|
-
location?: UAProperty<UAString,
|
|
33
|
+
location?: UAProperty<UAString, DataType.String>;
|
|
34
34
|
/**
|
|
35
35
|
* productInstanceUri
|
|
36
36
|
* A globally unique resource identifier provided by
|
|
37
37
|
* the manufacturer of the machine
|
|
38
38
|
*/
|
|
39
|
-
productInstanceUri: UAProperty<UAString,
|
|
39
|
+
productInstanceUri: UAProperty<UAString, DataType.String>;
|
|
40
40
|
}
|
|
41
41
|
export interface UAMachineIdentification extends Omit<UAMachineryItemIdentification, "productInstanceUri">, UAMachineIdentification_Base {
|
|
42
42
|
}
|
|
@@ -19,7 +19,7 @@ export interface UAMachineryComponentIdentification_Base extends UAMachineryItem
|
|
|
19
19
|
* defaultInstanceBrowseName
|
|
20
20
|
* The default BrowseName for instances of the type.
|
|
21
21
|
*/
|
|
22
|
-
defaultInstanceBrowseName: UAProperty<QualifiedName,
|
|
22
|
+
defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
|
|
23
23
|
/**
|
|
24
24
|
* deviceRevision
|
|
25
25
|
* A string representation of the overall revision
|
|
@@ -29,7 +29,7 @@ export interface UAMachineryComponentIdentification_Base extends UAMachineryItem
|
|
|
29
29
|
* As an example, it can be used in ERP systems
|
|
30
30
|
* together with the ProductCode.
|
|
31
31
|
*/
|
|
32
|
-
deviceRevision?: UAProperty<UAString,
|
|
32
|
+
deviceRevision?: UAProperty<UAString, DataType.String>;
|
|
33
33
|
}
|
|
34
34
|
export interface UAMachineryComponentIdentification extends UAMachineryItemIdentification, UAMachineryComponentIdentification_Base {
|
|
35
35
|
}
|
|
@@ -25,7 +25,7 @@ export interface UAMachineryItemIdentification_Base extends UAFunctionalGroup_Ba
|
|
|
25
25
|
* to write strings with a length of 40 Unicode
|
|
26
26
|
* characters into that field.
|
|
27
27
|
*/
|
|
28
|
-
assetId?: UAProperty<UAString,
|
|
28
|
+
assetId?: UAProperty<UAString, DataType.String>;
|
|
29
29
|
/**
|
|
30
30
|
* componentName
|
|
31
31
|
* To be used by end users to store a human-readable
|
|
@@ -37,13 +37,13 @@ export interface UAMachineryItemIdentification_Base extends UAFunctionalGroup_Ba
|
|
|
37
37
|
* expect to be able to write texts with a length of
|
|
38
38
|
* 40 Unicode characters into that field.
|
|
39
39
|
*/
|
|
40
|
-
componentName?: UAProperty<LocalizedText,
|
|
40
|
+
componentName?: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
41
41
|
/**
|
|
42
42
|
* deviceClass
|
|
43
43
|
* Indicates in which domain or for what purpose the
|
|
44
44
|
* MachineryItem is used.
|
|
45
45
|
*/
|
|
46
|
-
deviceClass?: UAProperty<UAString,
|
|
46
|
+
deviceClass?: UAProperty<UAString, DataType.String>;
|
|
47
47
|
/**
|
|
48
48
|
* hardwareRevision
|
|
49
49
|
* A string representation of the revision level of
|
|
@@ -54,32 +54,32 @@ export interface UAMachineryItemIdentification_Base extends UAFunctionalGroup_Ba
|
|
|
54
54
|
* due to the modular and configurable nature of the
|
|
55
55
|
* machine.
|
|
56
56
|
*/
|
|
57
|
-
hardwareRevision?: UAProperty<UAString,
|
|
57
|
+
hardwareRevision?: UAProperty<UAString, DataType.String>;
|
|
58
58
|
/**
|
|
59
59
|
* initialOperationDate
|
|
60
60
|
* The date, when the MachineryItem was switched on
|
|
61
61
|
* the first time after it has left the manufacturer
|
|
62
62
|
* plant.
|
|
63
63
|
*/
|
|
64
|
-
initialOperationDate?: UAProperty<Date,
|
|
64
|
+
initialOperationDate?: UAProperty<Date, DataType.DateTime>;
|
|
65
65
|
/**
|
|
66
66
|
* manufacturer
|
|
67
67
|
* A human-readable, localized name of the
|
|
68
68
|
* manufacturer of the MachineryItem.
|
|
69
69
|
*/
|
|
70
|
-
manufacturer: UAProperty<LocalizedText,
|
|
70
|
+
manufacturer: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
71
71
|
/**
|
|
72
72
|
* manufacturerUri
|
|
73
73
|
* A globally unique identifier of the manufacturer
|
|
74
74
|
* of the MachineryItem.
|
|
75
75
|
*/
|
|
76
|
-
manufacturerUri?: UAProperty<UAString,
|
|
76
|
+
manufacturerUri?: UAProperty<UAString, DataType.String>;
|
|
77
77
|
/**
|
|
78
78
|
* model
|
|
79
79
|
* A human-readable, localized name of the model of
|
|
80
80
|
* the MachineryItem.
|
|
81
81
|
*/
|
|
82
|
-
model?: UAProperty<LocalizedText,
|
|
82
|
+
model?: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
83
83
|
/**
|
|
84
84
|
* monthOfConstruction
|
|
85
85
|
* The month in which the manufacturing process of
|
|
@@ -87,7 +87,7 @@ export interface UAMachineryItemIdentification_Base extends UAFunctionalGroup_Ba
|
|
|
87
87
|
* a number between 1 and 12, representing the month
|
|
88
88
|
* from January to December.
|
|
89
89
|
*/
|
|
90
|
-
monthOfConstruction?: UAProperty<Byte,
|
|
90
|
+
monthOfConstruction?: UAProperty<Byte, DataType.Byte>;
|
|
91
91
|
/**
|
|
92
92
|
* productCode
|
|
93
93
|
* A machine-readable string of the model of the
|
|
@@ -97,13 +97,13 @@ export interface UAMachineryItemIdentification_Base extends UAFunctionalGroup_Ba
|
|
|
97
97
|
* of the vendor. For example, it can be used as
|
|
98
98
|
* order information.
|
|
99
99
|
*/
|
|
100
|
-
productCode?: UAProperty<UAString,
|
|
100
|
+
productCode?: UAProperty<UAString, DataType.String>;
|
|
101
101
|
/**
|
|
102
102
|
* productInstanceUri
|
|
103
103
|
* A globally unique resource identifier provided by
|
|
104
104
|
* the manufacturer of the MachineryItem.
|
|
105
105
|
*/
|
|
106
|
-
productInstanceUri?: UAProperty<UAString,
|
|
106
|
+
productInstanceUri?: UAProperty<UAString, DataType.String>;
|
|
107
107
|
/**
|
|
108
108
|
* serialNumber
|
|
109
109
|
* A string containing a unique production number of
|
|
@@ -113,7 +113,7 @@ export interface UAMachineryItemIdentification_Base extends UAFunctionalGroup_Ba
|
|
|
113
113
|
* the model. The value shall not change during the
|
|
114
114
|
* life-cycle of the MachineryItem.
|
|
115
115
|
*/
|
|
116
|
-
serialNumber: UAProperty<UAString,
|
|
116
|
+
serialNumber: UAProperty<UAString, DataType.String>;
|
|
117
117
|
/**
|
|
118
118
|
* softwareRevision
|
|
119
119
|
* A string representation of the revision level of
|
|
@@ -127,7 +127,7 @@ export interface UAMachineryItemIdentification_Base extends UAFunctionalGroup_Ba
|
|
|
127
127
|
* software revision level. The value might change
|
|
128
128
|
* during the life-cycle of a MachineryItem.
|
|
129
129
|
*/
|
|
130
|
-
softwareRevision?: UAProperty<UAString,
|
|
130
|
+
softwareRevision?: UAProperty<UAString, DataType.String>;
|
|
131
131
|
/**
|
|
132
132
|
* yearOfConstruction
|
|
133
133
|
* The year (Gregorian calendar) in which the
|
|
@@ -136,7 +136,7 @@ export interface UAMachineryItemIdentification_Base extends UAFunctionalGroup_Ba
|
|
|
136
136
|
* and never change during the life-cycle of a
|
|
137
137
|
* MachineryItem.
|
|
138
138
|
*/
|
|
139
|
-
yearOfConstruction?: UAProperty<UInt16,
|
|
139
|
+
yearOfConstruction?: UAProperty<UInt16, DataType.UInt16>;
|
|
140
140
|
}
|
|
141
141
|
export interface UAMachineryItemIdentification extends UAFunctionalGroup, UAMachineryItemIdentification_Base {
|
|
142
142
|
}
|
|
@@ -20,7 +20,7 @@ export interface UAMachineryItemState_StateMachine_Base extends UAFiniteStateMac
|
|
|
20
20
|
* defaultInstanceBrowseName
|
|
21
21
|
* The default BrowseName for instances of the type
|
|
22
22
|
*/
|
|
23
|
-
defaultInstanceBrowseName: UAProperty<QualifiedName,
|
|
23
|
+
defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
|
|
24
24
|
/**
|
|
25
25
|
* executing
|
|
26
26
|
* The machine is available & functional and is
|
|
@@ -20,7 +20,7 @@ export interface UAMachineryOperationModeStateMachine_Base extends UAFiniteState
|
|
|
20
20
|
* defaultInstanceBrowseName
|
|
21
21
|
* The default BrowseName for instances of the type
|
|
22
22
|
*/
|
|
23
|
-
defaultInstanceBrowseName: UAProperty<QualifiedName,
|
|
23
|
+
defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
|
|
24
24
|
/**
|
|
25
25
|
* fromMaintenanceToMaintenance
|
|
26
26
|
* Transition from state Maintenance to state
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-machinery",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.76.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
"author": "etienne.rossignon@sterfive.com",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"node-opcua-address-space-base": "2.
|
|
14
|
-
"node-opcua-basic-types": "2.
|
|
15
|
-
"node-opcua-data-model": "2.
|
|
16
|
-
"node-opcua-nodeid": "2.
|
|
17
|
-
"node-opcua-nodeset-di": "2.
|
|
18
|
-
"node-opcua-nodeset-ua": "2.
|
|
19
|
-
"node-opcua-variant": "2.
|
|
13
|
+
"node-opcua-address-space-base": "2.76.2",
|
|
14
|
+
"node-opcua-basic-types": "2.76.2",
|
|
15
|
+
"node-opcua-data-model": "2.76.2",
|
|
16
|
+
"node-opcua-nodeid": "2.76.2",
|
|
17
|
+
"node-opcua-nodeset-di": "2.76.2",
|
|
18
|
+
"node-opcua-nodeset-ua": "2.76.2",
|
|
19
|
+
"node-opcua-variant": "2.76.2"
|
|
20
20
|
},
|
|
21
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "acb5ecaf1e1c71af3b63e80909d58447f3f298e7"
|
|
22
22
|
}
|
|
@@ -26,7 +26,7 @@ export interface UAIMachineTagNameplate_Base extends UAITagNameplate_Base {
|
|
|
26
26
|
* strings with a length of 60 Unicode characters
|
|
27
27
|
* into that field.
|
|
28
28
|
*/
|
|
29
|
-
location?: UAProperty<UAString,
|
|
29
|
+
location?: UAProperty<UAString, DataType.String>;
|
|
30
30
|
}
|
|
31
31
|
export interface UAIMachineTagNameplate extends UAITagNameplate, UAIMachineTagNameplate_Base {
|
|
32
32
|
}
|
|
@@ -21,7 +21,7 @@ export interface UAIMachineVendorNameplate_Base extends UAIMachineryItemVendorNa
|
|
|
21
21
|
* A globally unique resource identifier provided by
|
|
22
22
|
* the manufacturer of the machine
|
|
23
23
|
*/
|
|
24
|
-
productInstanceUri: UAProperty<UAString,
|
|
24
|
+
productInstanceUri: UAProperty<UAString, DataType.String>;
|
|
25
25
|
}
|
|
26
26
|
export interface UAIMachineVendorNameplate extends Omit<UAIMachineryItemVendorNameplate, "productInstanceUri">, UAIMachineVendorNameplate_Base {
|
|
27
27
|
}
|
|
@@ -23,13 +23,13 @@ export interface UAIMachineryItemVendorNameplate_Base extends UAIVendorNameplate
|
|
|
23
23
|
* the first time after it has left the manufacturer
|
|
24
24
|
* plant.
|
|
25
25
|
*/
|
|
26
|
-
initialOperationDate?: UAProperty<Date,
|
|
26
|
+
initialOperationDate?: UAProperty<Date, DataType.DateTime>;
|
|
27
27
|
/**
|
|
28
28
|
* manufacturer
|
|
29
29
|
* A human-readable, localized name of the
|
|
30
30
|
* manufacturer of the MachineryItem.
|
|
31
31
|
*/
|
|
32
|
-
manufacturer: UAProperty<LocalizedText,
|
|
32
|
+
manufacturer: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
33
33
|
/**
|
|
34
34
|
* monthOfConstruction
|
|
35
35
|
* The month in which the manufacturing process of
|
|
@@ -37,7 +37,7 @@ export interface UAIMachineryItemVendorNameplate_Base extends UAIVendorNameplate
|
|
|
37
37
|
* a number between 1 and 12, representing the month
|
|
38
38
|
* from January to December.
|
|
39
39
|
*/
|
|
40
|
-
monthOfConstruction?: UAProperty<Byte,
|
|
40
|
+
monthOfConstruction?: UAProperty<Byte, DataType.Byte>;
|
|
41
41
|
/**
|
|
42
42
|
* serialNumber
|
|
43
43
|
* A string containing a unique production number of
|
|
@@ -47,7 +47,7 @@ export interface UAIMachineryItemVendorNameplate_Base extends UAIVendorNameplate
|
|
|
47
47
|
* the model. The value shall not change during the
|
|
48
48
|
* life-cycle of the MachineryItem.
|
|
49
49
|
*/
|
|
50
|
-
serialNumber: UAProperty<UAString,
|
|
50
|
+
serialNumber: UAProperty<UAString, DataType.String>;
|
|
51
51
|
/**
|
|
52
52
|
* yearOfConstruction
|
|
53
53
|
* The year (Gregorian calendar) in which the
|
|
@@ -56,7 +56,7 @@ export interface UAIMachineryItemVendorNameplate_Base extends UAIVendorNameplate
|
|
|
56
56
|
* and never change during the life-cycle of a
|
|
57
57
|
* MachineryItem.
|
|
58
58
|
*/
|
|
59
|
-
yearOfConstruction?: UAProperty<UInt16,
|
|
59
|
+
yearOfConstruction?: UAProperty<UInt16, DataType.UInt16>;
|
|
60
60
|
}
|
|
61
61
|
export interface UAIMachineryItemVendorNameplate extends Omit<UAIVendorNameplate, "manufacturer"|"serialNumber">, UAIMachineryItemVendorNameplate_Base {
|
|
62
62
|
}
|
|
@@ -22,11 +22,12 @@ export interface UAMachineComponents_$Component$ extends UAObject { // Object
|
|
|
22
22
|
* |isAbstract |false |
|
|
23
23
|
*/
|
|
24
24
|
export interface UAMachineComponents_Base {
|
|
25
|
+
// PlaceHolder for $Component$
|
|
25
26
|
/**
|
|
26
27
|
* defaultInstanceBrowseName
|
|
27
28
|
* The default BrowseName for instances of the type.
|
|
28
29
|
*/
|
|
29
|
-
defaultInstanceBrowseName: UAProperty<QualifiedName,
|
|
30
|
+
defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
|
|
30
31
|
}
|
|
31
32
|
export interface UAMachineComponents extends UAObject, UAMachineComponents_Base {
|
|
32
33
|
}
|
|
@@ -20,7 +20,7 @@ export interface UAMachineIdentification_Base extends UAMachineryItemIdentificat
|
|
|
20
20
|
* defaultInstanceBrowseName
|
|
21
21
|
* The default BrowseName for instances of the type.
|
|
22
22
|
*/
|
|
23
|
-
defaultInstanceBrowseName: UAProperty<QualifiedName,
|
|
23
|
+
defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
|
|
24
24
|
/**
|
|
25
25
|
* location
|
|
26
26
|
* To be used by end users to store the location of
|
|
@@ -31,13 +31,13 @@ export interface UAMachineIdentification_Base extends UAMachineryItemIdentificat
|
|
|
31
31
|
* strings with a length of 60 Unicode characters
|
|
32
32
|
* into that field.
|
|
33
33
|
*/
|
|
34
|
-
location?: UAProperty<UAString,
|
|
34
|
+
location?: UAProperty<UAString, DataType.String>;
|
|
35
35
|
/**
|
|
36
36
|
* productInstanceUri
|
|
37
37
|
* A globally unique resource identifier provided by
|
|
38
38
|
* the manufacturer of the machine
|
|
39
39
|
*/
|
|
40
|
-
productInstanceUri: UAProperty<UAString,
|
|
40
|
+
productInstanceUri: UAProperty<UAString, DataType.String>;
|
|
41
41
|
}
|
|
42
42
|
export interface UAMachineIdentification extends Omit<UAMachineryItemIdentification, "productInstanceUri">, UAMachineIdentification_Base {
|
|
43
43
|
}
|
|
@@ -20,7 +20,7 @@ export interface UAMachineryComponentIdentification_Base extends UAMachineryItem
|
|
|
20
20
|
* defaultInstanceBrowseName
|
|
21
21
|
* The default BrowseName for instances of the type.
|
|
22
22
|
*/
|
|
23
|
-
defaultInstanceBrowseName: UAProperty<QualifiedName,
|
|
23
|
+
defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
|
|
24
24
|
/**
|
|
25
25
|
* deviceRevision
|
|
26
26
|
* A string representation of the overall revision
|
|
@@ -30,7 +30,7 @@ export interface UAMachineryComponentIdentification_Base extends UAMachineryItem
|
|
|
30
30
|
* As an example, it can be used in ERP systems
|
|
31
31
|
* together with the ProductCode.
|
|
32
32
|
*/
|
|
33
|
-
deviceRevision?: UAProperty<UAString,
|
|
33
|
+
deviceRevision?: UAProperty<UAString, DataType.String>;
|
|
34
34
|
}
|
|
35
35
|
export interface UAMachineryComponentIdentification extends UAMachineryItemIdentification, UAMachineryComponentIdentification_Base {
|
|
36
36
|
}
|
|
@@ -26,7 +26,7 @@ export interface UAMachineryItemIdentification_Base extends UAFunctionalGroup_Ba
|
|
|
26
26
|
* to write strings with a length of 40 Unicode
|
|
27
27
|
* characters into that field.
|
|
28
28
|
*/
|
|
29
|
-
assetId?: UAProperty<UAString,
|
|
29
|
+
assetId?: UAProperty<UAString, DataType.String>;
|
|
30
30
|
/**
|
|
31
31
|
* componentName
|
|
32
32
|
* To be used by end users to store a human-readable
|
|
@@ -38,13 +38,13 @@ export interface UAMachineryItemIdentification_Base extends UAFunctionalGroup_Ba
|
|
|
38
38
|
* expect to be able to write texts with a length of
|
|
39
39
|
* 40 Unicode characters into that field.
|
|
40
40
|
*/
|
|
41
|
-
componentName?: UAProperty<LocalizedText,
|
|
41
|
+
componentName?: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
42
42
|
/**
|
|
43
43
|
* deviceClass
|
|
44
44
|
* Indicates in which domain or for what purpose the
|
|
45
45
|
* MachineryItem is used.
|
|
46
46
|
*/
|
|
47
|
-
deviceClass?: UAProperty<UAString,
|
|
47
|
+
deviceClass?: UAProperty<UAString, DataType.String>;
|
|
48
48
|
/**
|
|
49
49
|
* hardwareRevision
|
|
50
50
|
* A string representation of the revision level of
|
|
@@ -55,32 +55,32 @@ export interface UAMachineryItemIdentification_Base extends UAFunctionalGroup_Ba
|
|
|
55
55
|
* due to the modular and configurable nature of the
|
|
56
56
|
* machine.
|
|
57
57
|
*/
|
|
58
|
-
hardwareRevision?: UAProperty<UAString,
|
|
58
|
+
hardwareRevision?: UAProperty<UAString, DataType.String>;
|
|
59
59
|
/**
|
|
60
60
|
* initialOperationDate
|
|
61
61
|
* The date, when the MachineryItem was switched on
|
|
62
62
|
* the first time after it has left the manufacturer
|
|
63
63
|
* plant.
|
|
64
64
|
*/
|
|
65
|
-
initialOperationDate?: UAProperty<Date,
|
|
65
|
+
initialOperationDate?: UAProperty<Date, DataType.DateTime>;
|
|
66
66
|
/**
|
|
67
67
|
* manufacturer
|
|
68
68
|
* A human-readable, localized name of the
|
|
69
69
|
* manufacturer of the MachineryItem.
|
|
70
70
|
*/
|
|
71
|
-
manufacturer: UAProperty<LocalizedText,
|
|
71
|
+
manufacturer: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
72
72
|
/**
|
|
73
73
|
* manufacturerUri
|
|
74
74
|
* A globally unique identifier of the manufacturer
|
|
75
75
|
* of the MachineryItem.
|
|
76
76
|
*/
|
|
77
|
-
manufacturerUri?: UAProperty<UAString,
|
|
77
|
+
manufacturerUri?: UAProperty<UAString, DataType.String>;
|
|
78
78
|
/**
|
|
79
79
|
* model
|
|
80
80
|
* A human-readable, localized name of the model of
|
|
81
81
|
* the MachineryItem.
|
|
82
82
|
*/
|
|
83
|
-
model?: UAProperty<LocalizedText,
|
|
83
|
+
model?: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
84
84
|
/**
|
|
85
85
|
* monthOfConstruction
|
|
86
86
|
* The month in which the manufacturing process of
|
|
@@ -88,7 +88,7 @@ export interface UAMachineryItemIdentification_Base extends UAFunctionalGroup_Ba
|
|
|
88
88
|
* a number between 1 and 12, representing the month
|
|
89
89
|
* from January to December.
|
|
90
90
|
*/
|
|
91
|
-
monthOfConstruction?: UAProperty<Byte,
|
|
91
|
+
monthOfConstruction?: UAProperty<Byte, DataType.Byte>;
|
|
92
92
|
/**
|
|
93
93
|
* productCode
|
|
94
94
|
* A machine-readable string of the model of the
|
|
@@ -98,13 +98,13 @@ export interface UAMachineryItemIdentification_Base extends UAFunctionalGroup_Ba
|
|
|
98
98
|
* of the vendor. For example, it can be used as
|
|
99
99
|
* order information.
|
|
100
100
|
*/
|
|
101
|
-
productCode?: UAProperty<UAString,
|
|
101
|
+
productCode?: UAProperty<UAString, DataType.String>;
|
|
102
102
|
/**
|
|
103
103
|
* productInstanceUri
|
|
104
104
|
* A globally unique resource identifier provided by
|
|
105
105
|
* the manufacturer of the MachineryItem.
|
|
106
106
|
*/
|
|
107
|
-
productInstanceUri?: UAProperty<UAString,
|
|
107
|
+
productInstanceUri?: UAProperty<UAString, DataType.String>;
|
|
108
108
|
/**
|
|
109
109
|
* serialNumber
|
|
110
110
|
* A string containing a unique production number of
|
|
@@ -114,7 +114,7 @@ export interface UAMachineryItemIdentification_Base extends UAFunctionalGroup_Ba
|
|
|
114
114
|
* the model. The value shall not change during the
|
|
115
115
|
* life-cycle of the MachineryItem.
|
|
116
116
|
*/
|
|
117
|
-
serialNumber: UAProperty<UAString,
|
|
117
|
+
serialNumber: UAProperty<UAString, DataType.String>;
|
|
118
118
|
/**
|
|
119
119
|
* softwareRevision
|
|
120
120
|
* A string representation of the revision level of
|
|
@@ -128,7 +128,7 @@ export interface UAMachineryItemIdentification_Base extends UAFunctionalGroup_Ba
|
|
|
128
128
|
* software revision level. The value might change
|
|
129
129
|
* during the life-cycle of a MachineryItem.
|
|
130
130
|
*/
|
|
131
|
-
softwareRevision?: UAProperty<UAString,
|
|
131
|
+
softwareRevision?: UAProperty<UAString, DataType.String>;
|
|
132
132
|
/**
|
|
133
133
|
* yearOfConstruction
|
|
134
134
|
* The year (Gregorian calendar) in which the
|
|
@@ -137,7 +137,7 @@ export interface UAMachineryItemIdentification_Base extends UAFunctionalGroup_Ba
|
|
|
137
137
|
* and never change during the life-cycle of a
|
|
138
138
|
* MachineryItem.
|
|
139
139
|
*/
|
|
140
|
-
yearOfConstruction?: UAProperty<UInt16,
|
|
140
|
+
yearOfConstruction?: UAProperty<UInt16, DataType.UInt16>;
|
|
141
141
|
}
|
|
142
142
|
export interface UAMachineryItemIdentification extends UAFunctionalGroup, UAMachineryItemIdentification_Base {
|
|
143
143
|
}
|
|
@@ -23,7 +23,7 @@ export interface UAMachineryItemState_StateMachine_Base extends UAFiniteStateMac
|
|
|
23
23
|
* defaultInstanceBrowseName
|
|
24
24
|
* The default BrowseName for instances of the type
|
|
25
25
|
*/
|
|
26
|
-
defaultInstanceBrowseName: UAProperty<QualifiedName,
|
|
26
|
+
defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
|
|
27
27
|
/**
|
|
28
28
|
* executing
|
|
29
29
|
* The machine is available & functional and is
|
|
@@ -22,7 +22,7 @@ export interface UAMachineryOperationModeStateMachine_Base extends UAFiniteState
|
|
|
22
22
|
* defaultInstanceBrowseName
|
|
23
23
|
* The default BrowseName for instances of the type
|
|
24
24
|
*/
|
|
25
|
-
defaultInstanceBrowseName: UAProperty<QualifiedName,
|
|
25
|
+
defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
|
|
26
26
|
/**
|
|
27
27
|
* fromMaintenanceToMaintenance
|
|
28
28
|
* Transition from state Maintenance to state
|