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.
- package/dist/index.d.ts +9 -9
- package/dist/index.js +25 -25
- package/dist/ua_i_machine_tag_nameplate.d.ts +30 -30
- package/dist/ua_i_machine_tag_nameplate.js +2 -2
- package/dist/ua_i_machine_vendor_nameplate.d.ts +26 -26
- package/dist/ua_i_machine_vendor_nameplate.js +2 -2
- package/dist/ua_i_machinery_item_vendor_nameplate.d.ts +61 -61
- package/dist/ua_i_machinery_item_vendor_nameplate.js +2 -2
- package/dist/ua_machine_components.d.ts +31 -31
- package/dist/ua_machine_components.js +2 -2
- package/dist/ua_machine_identification.d.ts +42 -42
- package/dist/ua_machine_identification.js +2 -2
- package/dist/ua_machinery_component_identification.d.ts +35 -35
- package/dist/ua_machinery_component_identification.js +2 -2
- package/dist/ua_machinery_item_identification.d.ts +142 -142
- package/dist/ua_machinery_item_identification.js +2 -2
- package/dist/ua_machinery_item_state_state_machine.d.ts +148 -148
- package/dist/ua_machinery_item_state_state_machine.js +2 -2
- package/dist/ua_machinery_operation_mode_state_machine.d.ts +136 -136
- package/dist/ua_machinery_operation_mode_state_machine.js +2 -2
- package/package.json +9 -9
|
@@ -1,136 +1,136 @@
|
|
|
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 { UATransition } from "node-opcua-nodeset-ua/source/ua_transition";
|
|
6
|
-
import { UAState } from "node-opcua-nodeset-ua/source/ua_state";
|
|
7
|
-
/**
|
|
8
|
-
* State machine representing the operation mode of
|
|
9
|
-
* a MachineryItem
|
|
10
|
-
*
|
|
11
|
-
* | | |
|
|
12
|
-
* |----------------|--------------------------------------------------|
|
|
13
|
-
* |namespace |http://opcfoundation.org/UA/Machinery/ |
|
|
14
|
-
* |nodeClass |ObjectType |
|
|
15
|
-
* |typedDefinition |8:MachineryOperationModeStateMachineType ns=8;i=1008|
|
|
16
|
-
* |isAbstract |false |
|
|
17
|
-
*/
|
|
18
|
-
export interface UAMachineryOperationModeStateMachine_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
|
-
* fromMaintenanceToMaintenance
|
|
26
|
-
* Transition from state Maintenance to state
|
|
27
|
-
* Maintenance
|
|
28
|
-
*/
|
|
29
|
-
fromMaintenanceToMaintenance: UATransition;
|
|
30
|
-
/**
|
|
31
|
-
* fromMaintenanceToNone
|
|
32
|
-
* Transition from state Maintenance to state None
|
|
33
|
-
*/
|
|
34
|
-
fromMaintenanceToNone: UATransition;
|
|
35
|
-
/**
|
|
36
|
-
* fromMaintenanceToProcessing
|
|
37
|
-
* Transition from state Maintenance to state
|
|
38
|
-
* Processing
|
|
39
|
-
*/
|
|
40
|
-
fromMaintenanceToProcessing: UATransition;
|
|
41
|
-
/**
|
|
42
|
-
* fromMaintenanceToSetup
|
|
43
|
-
* Transition from state Maintenance to state Setup
|
|
44
|
-
*/
|
|
45
|
-
fromMaintenanceToSetup: UATransition;
|
|
46
|
-
/**
|
|
47
|
-
* fromNoneToMaintenance
|
|
48
|
-
* Transition from state None to state Maintenance
|
|
49
|
-
*/
|
|
50
|
-
fromNoneToMaintenance: UATransition;
|
|
51
|
-
/**
|
|
52
|
-
* fromNoneToNone
|
|
53
|
-
* Transition from state None to state None
|
|
54
|
-
*/
|
|
55
|
-
fromNoneToNone: UATransition;
|
|
56
|
-
/**
|
|
57
|
-
* fromNoneToProcessing
|
|
58
|
-
* Transition from state None to state Processing
|
|
59
|
-
*/
|
|
60
|
-
fromNoneToProcessing: UATransition;
|
|
61
|
-
/**
|
|
62
|
-
* fromNoneToSetup
|
|
63
|
-
* Transition from state None to state Setup
|
|
64
|
-
*/
|
|
65
|
-
fromNoneToSetup: UATransition;
|
|
66
|
-
/**
|
|
67
|
-
* fromProcessingToMaintenance
|
|
68
|
-
* Transition from state Processing to state
|
|
69
|
-
* Maintenance
|
|
70
|
-
*/
|
|
71
|
-
fromProcessingToMaintenance: UATransition;
|
|
72
|
-
/**
|
|
73
|
-
* fromProcessingToNone
|
|
74
|
-
* Transition from state Processing to state None
|
|
75
|
-
*/
|
|
76
|
-
fromProcessingToNone: UATransition;
|
|
77
|
-
/**
|
|
78
|
-
* fromProcessingToProcessing
|
|
79
|
-
* Transition from state Processing to state
|
|
80
|
-
* Processing
|
|
81
|
-
*/
|
|
82
|
-
fromProcessingToProcessing: UATransition;
|
|
83
|
-
/**
|
|
84
|
-
* fromProcessingToSetup
|
|
85
|
-
* Transition from state Processing to state Setup
|
|
86
|
-
*/
|
|
87
|
-
fromProcessingToSetup: UATransition;
|
|
88
|
-
/**
|
|
89
|
-
* fromSetupToMaintenance
|
|
90
|
-
* Transition from state Setup to state Maintenance
|
|
91
|
-
*/
|
|
92
|
-
fromSetupToMaintenance: UATransition;
|
|
93
|
-
/**
|
|
94
|
-
* fromSetupToNone
|
|
95
|
-
* Transition from state Setup to state None
|
|
96
|
-
*/
|
|
97
|
-
fromSetupToNone: UATransition;
|
|
98
|
-
/**
|
|
99
|
-
* fromSetupToProcessing
|
|
100
|
-
* Transition from state Setup to state Processing
|
|
101
|
-
*/
|
|
102
|
-
fromSetupToProcessing: UATransition;
|
|
103
|
-
/**
|
|
104
|
-
* fromSetupToSetup
|
|
105
|
-
* Transition from state Setup to state Setup
|
|
106
|
-
*/
|
|
107
|
-
fromSetupToSetup: UATransition;
|
|
108
|
-
/**
|
|
109
|
-
* maintenance
|
|
110
|
-
* MachineryItem is set into maintenance mode with
|
|
111
|
-
* the intention to carry out maintenance or
|
|
112
|
-
* servicing activities
|
|
113
|
-
*/
|
|
114
|
-
maintenance: UAState;
|
|
115
|
-
/**
|
|
116
|
-
* none
|
|
117
|
-
* There is currently no operation mode available
|
|
118
|
-
*/
|
|
119
|
-
none: UAState;
|
|
120
|
-
/**
|
|
121
|
-
* processing
|
|
122
|
-
* MachineryItem is set into processing mode with
|
|
123
|
-
* the intention to carry out the value adding
|
|
124
|
-
* activities
|
|
125
|
-
*/
|
|
126
|
-
processing: UAState;
|
|
127
|
-
/**
|
|
128
|
-
* setup
|
|
129
|
-
* MachineryItem is set into setup mode with the
|
|
130
|
-
* intention to carry out setup, preparation or
|
|
131
|
-
* postprocessing activities of a production process
|
|
132
|
-
*/
|
|
133
|
-
setup: UAState;
|
|
134
|
-
}
|
|
135
|
-
export interface UAMachineryOperationModeStateMachine extends UAFiniteStateMachine, UAMachineryOperationModeStateMachine_Base {
|
|
136
|
-
}
|
|
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 { UATransition } from "node-opcua-nodeset-ua/source/ua_transition";
|
|
6
|
+
import { UAState } from "node-opcua-nodeset-ua/source/ua_state";
|
|
7
|
+
/**
|
|
8
|
+
* State machine representing the operation mode of
|
|
9
|
+
* a MachineryItem
|
|
10
|
+
*
|
|
11
|
+
* | | |
|
|
12
|
+
* |----------------|--------------------------------------------------|
|
|
13
|
+
* |namespace |http://opcfoundation.org/UA/Machinery/ |
|
|
14
|
+
* |nodeClass |ObjectType |
|
|
15
|
+
* |typedDefinition |8:MachineryOperationModeStateMachineType ns=8;i=1008|
|
|
16
|
+
* |isAbstract |false |
|
|
17
|
+
*/
|
|
18
|
+
export interface UAMachineryOperationModeStateMachine_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
|
+
* fromMaintenanceToMaintenance
|
|
26
|
+
* Transition from state Maintenance to state
|
|
27
|
+
* Maintenance
|
|
28
|
+
*/
|
|
29
|
+
fromMaintenanceToMaintenance: UATransition;
|
|
30
|
+
/**
|
|
31
|
+
* fromMaintenanceToNone
|
|
32
|
+
* Transition from state Maintenance to state None
|
|
33
|
+
*/
|
|
34
|
+
fromMaintenanceToNone: UATransition;
|
|
35
|
+
/**
|
|
36
|
+
* fromMaintenanceToProcessing
|
|
37
|
+
* Transition from state Maintenance to state
|
|
38
|
+
* Processing
|
|
39
|
+
*/
|
|
40
|
+
fromMaintenanceToProcessing: UATransition;
|
|
41
|
+
/**
|
|
42
|
+
* fromMaintenanceToSetup
|
|
43
|
+
* Transition from state Maintenance to state Setup
|
|
44
|
+
*/
|
|
45
|
+
fromMaintenanceToSetup: UATransition;
|
|
46
|
+
/**
|
|
47
|
+
* fromNoneToMaintenance
|
|
48
|
+
* Transition from state None to state Maintenance
|
|
49
|
+
*/
|
|
50
|
+
fromNoneToMaintenance: UATransition;
|
|
51
|
+
/**
|
|
52
|
+
* fromNoneToNone
|
|
53
|
+
* Transition from state None to state None
|
|
54
|
+
*/
|
|
55
|
+
fromNoneToNone: UATransition;
|
|
56
|
+
/**
|
|
57
|
+
* fromNoneToProcessing
|
|
58
|
+
* Transition from state None to state Processing
|
|
59
|
+
*/
|
|
60
|
+
fromNoneToProcessing: UATransition;
|
|
61
|
+
/**
|
|
62
|
+
* fromNoneToSetup
|
|
63
|
+
* Transition from state None to state Setup
|
|
64
|
+
*/
|
|
65
|
+
fromNoneToSetup: UATransition;
|
|
66
|
+
/**
|
|
67
|
+
* fromProcessingToMaintenance
|
|
68
|
+
* Transition from state Processing to state
|
|
69
|
+
* Maintenance
|
|
70
|
+
*/
|
|
71
|
+
fromProcessingToMaintenance: UATransition;
|
|
72
|
+
/**
|
|
73
|
+
* fromProcessingToNone
|
|
74
|
+
* Transition from state Processing to state None
|
|
75
|
+
*/
|
|
76
|
+
fromProcessingToNone: UATransition;
|
|
77
|
+
/**
|
|
78
|
+
* fromProcessingToProcessing
|
|
79
|
+
* Transition from state Processing to state
|
|
80
|
+
* Processing
|
|
81
|
+
*/
|
|
82
|
+
fromProcessingToProcessing: UATransition;
|
|
83
|
+
/**
|
|
84
|
+
* fromProcessingToSetup
|
|
85
|
+
* Transition from state Processing to state Setup
|
|
86
|
+
*/
|
|
87
|
+
fromProcessingToSetup: UATransition;
|
|
88
|
+
/**
|
|
89
|
+
* fromSetupToMaintenance
|
|
90
|
+
* Transition from state Setup to state Maintenance
|
|
91
|
+
*/
|
|
92
|
+
fromSetupToMaintenance: UATransition;
|
|
93
|
+
/**
|
|
94
|
+
* fromSetupToNone
|
|
95
|
+
* Transition from state Setup to state None
|
|
96
|
+
*/
|
|
97
|
+
fromSetupToNone: UATransition;
|
|
98
|
+
/**
|
|
99
|
+
* fromSetupToProcessing
|
|
100
|
+
* Transition from state Setup to state Processing
|
|
101
|
+
*/
|
|
102
|
+
fromSetupToProcessing: UATransition;
|
|
103
|
+
/**
|
|
104
|
+
* fromSetupToSetup
|
|
105
|
+
* Transition from state Setup to state Setup
|
|
106
|
+
*/
|
|
107
|
+
fromSetupToSetup: UATransition;
|
|
108
|
+
/**
|
|
109
|
+
* maintenance
|
|
110
|
+
* MachineryItem is set into maintenance mode with
|
|
111
|
+
* the intention to carry out maintenance or
|
|
112
|
+
* servicing activities
|
|
113
|
+
*/
|
|
114
|
+
maintenance: UAState;
|
|
115
|
+
/**
|
|
116
|
+
* none
|
|
117
|
+
* There is currently no operation mode available
|
|
118
|
+
*/
|
|
119
|
+
none: UAState;
|
|
120
|
+
/**
|
|
121
|
+
* processing
|
|
122
|
+
* MachineryItem is set into processing mode with
|
|
123
|
+
* the intention to carry out the value adding
|
|
124
|
+
* activities
|
|
125
|
+
*/
|
|
126
|
+
processing: UAState;
|
|
127
|
+
/**
|
|
128
|
+
* setup
|
|
129
|
+
* MachineryItem is set into setup mode with the
|
|
130
|
+
* intention to carry out setup, preparation or
|
|
131
|
+
* postprocessing activities of a production process
|
|
132
|
+
*/
|
|
133
|
+
setup: UAState;
|
|
134
|
+
}
|
|
135
|
+
export interface UAMachineryOperationModeStateMachine extends UAFiniteStateMachine, UAMachineryOperationModeStateMachine_Base {
|
|
136
|
+
}
|
|
@@ -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_operation_mode_state_machine.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-machinery",
|
|
3
|
-
"version": "2.76.
|
|
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.76.
|
|
14
|
-
"node-opcua-basic-types": "2.76.
|
|
15
|
-
"node-opcua-data-model": "2.76.
|
|
16
|
-
"node-opcua-nodeid": "2.76.
|
|
17
|
-
"node-opcua-nodeset-di": "2.76.
|
|
18
|
-
"node-opcua-nodeset-ua": "2.76.
|
|
19
|
-
"node-opcua-variant": "2.76.
|
|
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
|
}
|