node-opcua-nodeset-machinery 2.76.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.
@@ -1,142 +1,142 @@
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 { UInt16, Byte, UAString } from "node-opcua-basic-types";
5
- import { UAFunctionalGroup, UAFunctionalGroup_Base } from "node-opcua-nodeset-di/source/ua_functional_group";
6
- /**
7
- * Contains information about the identification and
8
- * nameplate of a MachineryItem
9
- *
10
- * | | |
11
- * |----------------|--------------------------------------------------|
12
- * |namespace |http://opcfoundation.org/UA/Machinery/ |
13
- * |nodeClass |ObjectType |
14
- * |typedDefinition |8:MachineryItemIdentificationType ns=8;i=1004 |
15
- * |isAbstract |true |
16
- */
17
- export interface UAMachineryItemIdentification_Base extends UAFunctionalGroup_Base {
18
- /**
19
- * assetId
20
- * To be used by end users to store a unique
21
- * identification in the context of their overall
22
- * application. Servers shall support at least 40
23
- * Unicode characters for the clients writing this
24
- * value, this means clients can expect to be able
25
- * to write strings with a length of 40 Unicode
26
- * characters into that field.
27
- */
28
- assetId?: UAProperty<UAString, DataType.String>;
29
- /**
30
- * componentName
31
- * To be used by end users to store a human-readable
32
- * localized text for the MachineryItem. The minimum
33
- * number of locales supported for this property
34
- * shall be two. Servers shall support at least 40
35
- * Unicode characters for the clients writing the
36
- * text part of each locale, this means clients can
37
- * expect to be able to write texts with a length of
38
- * 40 Unicode characters into that field.
39
- */
40
- componentName?: UAProperty<LocalizedText, DataType.LocalizedText>;
41
- /**
42
- * deviceClass
43
- * Indicates in which domain or for what purpose the
44
- * MachineryItem is used.
45
- */
46
- deviceClass?: UAProperty<UAString, DataType.String>;
47
- /**
48
- * hardwareRevision
49
- * A string representation of the revision level of
50
- * the hardware of a MachineryItem. Hardware is
51
- * physical equipment, as opposed to programs,
52
- * procedures, rules and associated documentation.
53
- * Many machines will not provide such information
54
- * due to the modular and configurable nature of the
55
- * machine.
56
- */
57
- hardwareRevision?: UAProperty<UAString, DataType.String>;
58
- /**
59
- * initialOperationDate
60
- * The date, when the MachineryItem was switched on
61
- * the first time after it has left the manufacturer
62
- * plant.
63
- */
64
- initialOperationDate?: UAProperty<Date, DataType.DateTime>;
65
- /**
66
- * manufacturer
67
- * A human-readable, localized name of the
68
- * manufacturer of the MachineryItem.
69
- */
70
- manufacturer: UAProperty<LocalizedText, DataType.LocalizedText>;
71
- /**
72
- * manufacturerUri
73
- * A globally unique identifier of the manufacturer
74
- * of the MachineryItem.
75
- */
76
- manufacturerUri?: UAProperty<UAString, DataType.String>;
77
- /**
78
- * model
79
- * A human-readable, localized name of the model of
80
- * the MachineryItem.
81
- */
82
- model?: UAProperty<LocalizedText, DataType.LocalizedText>;
83
- /**
84
- * monthOfConstruction
85
- * The month in which the manufacturing process of
86
- * the MachineryItem has been completed. It shall be
87
- * a number between 1 and 12, representing the month
88
- * from January to December.
89
- */
90
- monthOfConstruction?: UAProperty<Byte, DataType.Byte>;
91
- /**
92
- * productCode
93
- * A machine-readable string of the model of the
94
- * MachineryItem, that might include options like
95
- * the hardware configuration of the model. This
96
- * information might be provided by the ERP system
97
- * of the vendor. For example, it can be used as
98
- * order information.
99
- */
100
- productCode?: UAProperty<UAString, DataType.String>;
101
- /**
102
- * productInstanceUri
103
- * A globally unique resource identifier provided by
104
- * the manufacturer of the MachineryItem.
105
- */
106
- productInstanceUri?: UAProperty<UAString, DataType.String>;
107
- /**
108
- * serialNumber
109
- * A string containing a unique production number of
110
- * the manufacturer of the MachineryItem. The global
111
- * uniqueness of the serial number is only given in
112
- * the context of the manufacturer, and potentially
113
- * the model. The value shall not change during the
114
- * life-cycle of the MachineryItem.
115
- */
116
- serialNumber: UAProperty<UAString, DataType.String>;
117
- /**
118
- * softwareRevision
119
- * A string representation of the revision level of
120
- * a MachineryItem. In most cases, MachineryItems
121
- * consist of several software components. In that
122
- * case, information about the software components
123
- * might be provided as additional information in
124
- * the address space, including individual revision
125
- * information. In that case, this property is
126
- * either not provided or provides an overall
127
- * software revision level. The value might change
128
- * during the life-cycle of a MachineryItem.
129
- */
130
- softwareRevision?: UAProperty<UAString, DataType.String>;
131
- /**
132
- * yearOfConstruction
133
- * The year (Gregorian calendar) in which the
134
- * manufacturing process of the MachineryItem has
135
- * been completed. It shall be a four-digit number
136
- * and never change during the life-cycle of a
137
- * MachineryItem.
138
- */
139
- yearOfConstruction?: UAProperty<UInt16, DataType.UInt16>;
140
- }
141
- export interface UAMachineryItemIdentification extends UAFunctionalGroup, UAMachineryItemIdentification_Base {
142
- }
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 { UInt16, Byte, UAString } from "node-opcua-basic-types";
5
+ import { UAFunctionalGroup, UAFunctionalGroup_Base } from "node-opcua-nodeset-di/source/ua_functional_group";
6
+ /**
7
+ * Contains information about the identification and
8
+ * nameplate of a MachineryItem
9
+ *
10
+ * | | |
11
+ * |----------------|--------------------------------------------------|
12
+ * |namespace |http://opcfoundation.org/UA/Machinery/ |
13
+ * |nodeClass |ObjectType |
14
+ * |typedDefinition |8:MachineryItemIdentificationType ns=8;i=1004 |
15
+ * |isAbstract |true |
16
+ */
17
+ export interface UAMachineryItemIdentification_Base extends UAFunctionalGroup_Base {
18
+ /**
19
+ * assetId
20
+ * To be used by end users to store a unique
21
+ * identification in the context of their overall
22
+ * application. Servers shall support at least 40
23
+ * Unicode characters for the clients writing this
24
+ * value, this means clients can expect to be able
25
+ * to write strings with a length of 40 Unicode
26
+ * characters into that field.
27
+ */
28
+ assetId?: UAProperty<UAString, DataType.String>;
29
+ /**
30
+ * componentName
31
+ * To be used by end users to store a human-readable
32
+ * localized text for the MachineryItem. The minimum
33
+ * number of locales supported for this property
34
+ * shall be two. Servers shall support at least 40
35
+ * Unicode characters for the clients writing the
36
+ * text part of each locale, this means clients can
37
+ * expect to be able to write texts with a length of
38
+ * 40 Unicode characters into that field.
39
+ */
40
+ componentName?: UAProperty<LocalizedText, DataType.LocalizedText>;
41
+ /**
42
+ * deviceClass
43
+ * Indicates in which domain or for what purpose the
44
+ * MachineryItem is used.
45
+ */
46
+ deviceClass?: UAProperty<UAString, DataType.String>;
47
+ /**
48
+ * hardwareRevision
49
+ * A string representation of the revision level of
50
+ * the hardware of a MachineryItem. Hardware is
51
+ * physical equipment, as opposed to programs,
52
+ * procedures, rules and associated documentation.
53
+ * Many machines will not provide such information
54
+ * due to the modular and configurable nature of the
55
+ * machine.
56
+ */
57
+ hardwareRevision?: UAProperty<UAString, DataType.String>;
58
+ /**
59
+ * initialOperationDate
60
+ * The date, when the MachineryItem was switched on
61
+ * the first time after it has left the manufacturer
62
+ * plant.
63
+ */
64
+ initialOperationDate?: UAProperty<Date, DataType.DateTime>;
65
+ /**
66
+ * manufacturer
67
+ * A human-readable, localized name of the
68
+ * manufacturer of the MachineryItem.
69
+ */
70
+ manufacturer: UAProperty<LocalizedText, DataType.LocalizedText>;
71
+ /**
72
+ * manufacturerUri
73
+ * A globally unique identifier of the manufacturer
74
+ * of the MachineryItem.
75
+ */
76
+ manufacturerUri?: UAProperty<UAString, DataType.String>;
77
+ /**
78
+ * model
79
+ * A human-readable, localized name of the model of
80
+ * the MachineryItem.
81
+ */
82
+ model?: UAProperty<LocalizedText, DataType.LocalizedText>;
83
+ /**
84
+ * monthOfConstruction
85
+ * The month in which the manufacturing process of
86
+ * the MachineryItem has been completed. It shall be
87
+ * a number between 1 and 12, representing the month
88
+ * from January to December.
89
+ */
90
+ monthOfConstruction?: UAProperty<Byte, DataType.Byte>;
91
+ /**
92
+ * productCode
93
+ * A machine-readable string of the model of the
94
+ * MachineryItem, that might include options like
95
+ * the hardware configuration of the model. This
96
+ * information might be provided by the ERP system
97
+ * of the vendor. For example, it can be used as
98
+ * order information.
99
+ */
100
+ productCode?: UAProperty<UAString, DataType.String>;
101
+ /**
102
+ * productInstanceUri
103
+ * A globally unique resource identifier provided by
104
+ * the manufacturer of the MachineryItem.
105
+ */
106
+ productInstanceUri?: UAProperty<UAString, DataType.String>;
107
+ /**
108
+ * serialNumber
109
+ * A string containing a unique production number of
110
+ * the manufacturer of the MachineryItem. The global
111
+ * uniqueness of the serial number is only given in
112
+ * the context of the manufacturer, and potentially
113
+ * the model. The value shall not change during the
114
+ * life-cycle of the MachineryItem.
115
+ */
116
+ serialNumber: UAProperty<UAString, DataType.String>;
117
+ /**
118
+ * softwareRevision
119
+ * A string representation of the revision level of
120
+ * a MachineryItem. In most cases, MachineryItems
121
+ * consist of several software components. In that
122
+ * case, information about the software components
123
+ * might be provided as additional information in
124
+ * the address space, including individual revision
125
+ * information. In that case, this property is
126
+ * either not provided or provides an overall
127
+ * software revision level. The value might change
128
+ * during the life-cycle of a MachineryItem.
129
+ */
130
+ softwareRevision?: UAProperty<UAString, DataType.String>;
131
+ /**
132
+ * yearOfConstruction
133
+ * The year (Gregorian calendar) in which the
134
+ * manufacturing process of the MachineryItem has
135
+ * been completed. It shall be a four-digit number
136
+ * and never change during the life-cycle of a
137
+ * MachineryItem.
138
+ */
139
+ yearOfConstruction?: UAProperty<UInt16, DataType.UInt16>;
140
+ }
141
+ export interface UAMachineryItemIdentification extends UAFunctionalGroup, UAMachineryItemIdentification_Base {
142
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_machinery_item_identification.js.map
@@ -1,148 +1,148 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { QualifiedName } from "node-opcua-data-model";
4
- import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/source/ua_finite_state_machine";
5
- import { UAState } from "node-opcua-nodeset-ua/source/ua_state";
6
- import { UATransition } from "node-opcua-nodeset-ua/source/ua_transition";
7
- /**
8
- * State machine representing the state of a
9
- * machinery item
10
- *
11
- * | | |
12
- * |----------------|--------------------------------------------------|
13
- * |namespace |http://opcfoundation.org/UA/Machinery/ |
14
- * |nodeClass |ObjectType |
15
- * |typedDefinition |8:MachineryItemState_StateMachineType ns=8;i=1002 |
16
- * |isAbstract |false |
17
- */
18
- export interface UAMachineryItemState_StateMachine_Base extends UAFiniteStateMachine_Base {
19
- /**
20
- * defaultInstanceBrowseName
21
- * The default BrowseName for instances of the type
22
- */
23
- defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
24
- /**
25
- * executing
26
- * The machine is available & functional and is
27
- * actively performing an activity (pursues a
28
- * purpose)
29
- */
30
- executing: UAState;
31
- /**
32
- * fromExecutingToExecuting
33
- * Transition from state Executing to state Executing
34
- */
35
- fromExecutingToExecuting: UATransition;
36
- /**
37
- * fromExecutingToNotAvailable
38
- * Transition from state Executing to state
39
- * NotAvailable
40
- */
41
- fromExecutingToNotAvailable: UATransition;
42
- /**
43
- * fromExecutingToNotExecuting
44
- * Transition from state Executing to state
45
- * NotExecuting
46
- */
47
- fromExecutingToNotExecuting: UATransition;
48
- /**
49
- * fromExecutingToOutOfService
50
- * Transition from state Executing to state
51
- * OutOfService
52
- */
53
- fromExecutingToOutOfService: UATransition;
54
- /**
55
- * fromNotAvailableToExecuting
56
- * Transition from state NotAvailable to state
57
- * Executing
58
- */
59
- fromNotAvailableToExecuting: UATransition;
60
- /**
61
- * fromNotAvailableToNotAvailable
62
- * Transition from state NotAvailable to state
63
- * NotAvailable
64
- */
65
- fromNotAvailableToNotAvailable: UATransition;
66
- /**
67
- * fromNotAvailableToNotExecuting
68
- * Transition from state NotAvailable to state
69
- * NotExecuting
70
- */
71
- fromNotAvailableToNotExecuting: UATransition;
72
- /**
73
- * fromNotAvailableToOutOfService
74
- * Transition from state NotAvailable to state
75
- * OutOfService
76
- */
77
- fromNotAvailableToOutOfService: UATransition;
78
- /**
79
- * fromNotExecutingToExecuting
80
- * Transition from state NotExecuting to state
81
- * Executing
82
- */
83
- fromNotExecutingToExecuting: UATransition;
84
- /**
85
- * fromNotExecutingToNotAvailable
86
- * Transition from state NotExecuting to state
87
- * NotAvailable
88
- */
89
- fromNotExecutingToNotAvailable: UATransition;
90
- /**
91
- * fromNotExecutingToNotExecuting
92
- * Transition from state NotExecuting to state
93
- * NotExecuting
94
- */
95
- fromNotExecutingToNotExecuting: UATransition;
96
- /**
97
- * fromNotExecutingToOutOfService
98
- * Transition from state NotExecuting to state
99
- * OutOfService
100
- */
101
- fromNotExecutingToOutOfService: UATransition;
102
- /**
103
- * fromOutOfServiceToExecuting
104
- * Transition from state OutOfService to state
105
- * Executing
106
- */
107
- fromOutOfServiceToExecuting: UATransition;
108
- /**
109
- * fromOutOfServiceToNotAvailable
110
- * Transition from state OutOfService to state
111
- * NotAvailable
112
- */
113
- fromOutOfServiceToNotAvailable: UATransition;
114
- /**
115
- * fromOutOfServiceToNotExecuting
116
- * Transition from state OutOfService to state
117
- * NotExecuting
118
- */
119
- fromOutOfServiceToNotExecuting: UATransition;
120
- /**
121
- * fromOutOfServiceToOutOfService
122
- * Transition from state OutOfService to state
123
- * OutOfService
124
- */
125
- fromOutOfServiceToOutOfService: UATransition;
126
- /**
127
- * notAvailable
128
- * The machine is not available and does not perform
129
- * any activity (e.g., switched off, in energy
130
- * saving mode)
131
- */
132
- notAvailable: UAState;
133
- /**
134
- * notExecuting
135
- * The machine is available & functional and does
136
- * not perform any activity. It waits for an action
137
- * from outside to start or restart an activity
138
- */
139
- notExecuting: UAState;
140
- /**
141
- * outOfService
142
- * The machine is not functional and does not
143
- * perform any activity (e.g., error, blocked)
144
- */
145
- outOfService: UAState;
146
- }
147
- export interface UAMachineryItemState_StateMachine extends UAFiniteStateMachine, UAMachineryItemState_StateMachine_Base {
148
- }
1
+ import { UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { QualifiedName } from "node-opcua-data-model";
4
+ import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/source/ua_finite_state_machine";
5
+ import { UAState } from "node-opcua-nodeset-ua/source/ua_state";
6
+ import { UATransition } from "node-opcua-nodeset-ua/source/ua_transition";
7
+ /**
8
+ * State machine representing the state of a
9
+ * machinery item
10
+ *
11
+ * | | |
12
+ * |----------------|--------------------------------------------------|
13
+ * |namespace |http://opcfoundation.org/UA/Machinery/ |
14
+ * |nodeClass |ObjectType |
15
+ * |typedDefinition |8:MachineryItemState_StateMachineType ns=8;i=1002 |
16
+ * |isAbstract |false |
17
+ */
18
+ export interface UAMachineryItemState_StateMachine_Base extends UAFiniteStateMachine_Base {
19
+ /**
20
+ * defaultInstanceBrowseName
21
+ * The default BrowseName for instances of the type
22
+ */
23
+ defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
24
+ /**
25
+ * executing
26
+ * The machine is available & functional and is
27
+ * actively performing an activity (pursues a
28
+ * purpose)
29
+ */
30
+ executing: UAState;
31
+ /**
32
+ * fromExecutingToExecuting
33
+ * Transition from state Executing to state Executing
34
+ */
35
+ fromExecutingToExecuting: UATransition;
36
+ /**
37
+ * fromExecutingToNotAvailable
38
+ * Transition from state Executing to state
39
+ * NotAvailable
40
+ */
41
+ fromExecutingToNotAvailable: UATransition;
42
+ /**
43
+ * fromExecutingToNotExecuting
44
+ * Transition from state Executing to state
45
+ * NotExecuting
46
+ */
47
+ fromExecutingToNotExecuting: UATransition;
48
+ /**
49
+ * fromExecutingToOutOfService
50
+ * Transition from state Executing to state
51
+ * OutOfService
52
+ */
53
+ fromExecutingToOutOfService: UATransition;
54
+ /**
55
+ * fromNotAvailableToExecuting
56
+ * Transition from state NotAvailable to state
57
+ * Executing
58
+ */
59
+ fromNotAvailableToExecuting: UATransition;
60
+ /**
61
+ * fromNotAvailableToNotAvailable
62
+ * Transition from state NotAvailable to state
63
+ * NotAvailable
64
+ */
65
+ fromNotAvailableToNotAvailable: UATransition;
66
+ /**
67
+ * fromNotAvailableToNotExecuting
68
+ * Transition from state NotAvailable to state
69
+ * NotExecuting
70
+ */
71
+ fromNotAvailableToNotExecuting: UATransition;
72
+ /**
73
+ * fromNotAvailableToOutOfService
74
+ * Transition from state NotAvailable to state
75
+ * OutOfService
76
+ */
77
+ fromNotAvailableToOutOfService: UATransition;
78
+ /**
79
+ * fromNotExecutingToExecuting
80
+ * Transition from state NotExecuting to state
81
+ * Executing
82
+ */
83
+ fromNotExecutingToExecuting: UATransition;
84
+ /**
85
+ * fromNotExecutingToNotAvailable
86
+ * Transition from state NotExecuting to state
87
+ * NotAvailable
88
+ */
89
+ fromNotExecutingToNotAvailable: UATransition;
90
+ /**
91
+ * fromNotExecutingToNotExecuting
92
+ * Transition from state NotExecuting to state
93
+ * NotExecuting
94
+ */
95
+ fromNotExecutingToNotExecuting: UATransition;
96
+ /**
97
+ * fromNotExecutingToOutOfService
98
+ * Transition from state NotExecuting to state
99
+ * OutOfService
100
+ */
101
+ fromNotExecutingToOutOfService: UATransition;
102
+ /**
103
+ * fromOutOfServiceToExecuting
104
+ * Transition from state OutOfService to state
105
+ * Executing
106
+ */
107
+ fromOutOfServiceToExecuting: UATransition;
108
+ /**
109
+ * fromOutOfServiceToNotAvailable
110
+ * Transition from state OutOfService to state
111
+ * NotAvailable
112
+ */
113
+ fromOutOfServiceToNotAvailable: UATransition;
114
+ /**
115
+ * fromOutOfServiceToNotExecuting
116
+ * Transition from state OutOfService to state
117
+ * NotExecuting
118
+ */
119
+ fromOutOfServiceToNotExecuting: UATransition;
120
+ /**
121
+ * fromOutOfServiceToOutOfService
122
+ * Transition from state OutOfService to state
123
+ * OutOfService
124
+ */
125
+ fromOutOfServiceToOutOfService: UATransition;
126
+ /**
127
+ * notAvailable
128
+ * The machine is not available and does not perform
129
+ * any activity (e.g., switched off, in energy
130
+ * saving mode)
131
+ */
132
+ notAvailable: UAState;
133
+ /**
134
+ * notExecuting
135
+ * The machine is available & functional and does
136
+ * not perform any activity. It waits for an action
137
+ * from outside to start or restart an activity
138
+ */
139
+ notExecuting: UAState;
140
+ /**
141
+ * outOfService
142
+ * The machine is not functional and does not
143
+ * perform any activity (e.g., error, blocked)
144
+ */
145
+ outOfService: UAState;
146
+ }
147
+ export interface UAMachineryItemState_StateMachine extends UAFiniteStateMachine, UAMachineryItemState_StateMachine_Base {
148
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_machinery_item_state_state_machine.js.map