nodejs-poolcontroller 7.6.1 → 7.7.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/.eslintrc.json +44 -44
- package/.github/ISSUE_TEMPLATE/1-bug-report.yml +84 -0
- package/.github/ISSUE_TEMPLATE/2-docs.md +12 -0
- package/.github/ISSUE_TEMPLATE/3-proposal.md +28 -0
- package/.github/ISSUE_TEMPLATE/config.yml +8 -0
- package/CONTRIBUTING.md +74 -74
- package/Changelog +220 -215
- package/Dockerfile +17 -17
- package/Gruntfile.js +40 -40
- package/LICENSE +661 -661
- package/README.md +191 -191
- package/app.ts +1 -1
- package/config/Config.ts +14 -0
- package/config/VersionCheck.ts +2 -2
- package/controller/Constants.ts +2 -1
- package/controller/Equipment.ts +2484 -2459
- package/controller/Errors.ts +180 -180
- package/controller/Lockouts.ts +502 -436
- package/controller/State.ts +106 -30
- package/controller/boards/AquaLinkBoard.ts +1000 -0
- package/controller/boards/BoardFactory.ts +49 -45
- package/controller/boards/EasyTouchBoard.ts +2859 -2653
- package/controller/boards/IntelliCenterBoard.ts +4198 -4230
- package/controller/boards/IntelliComBoard.ts +63 -63
- package/controller/boards/IntelliTouchBoard.ts +273 -241
- package/controller/boards/NixieBoard.ts +1728 -1675
- package/controller/boards/SystemBoard.ts +4925 -4697
- package/controller/comms/Comms.ts +442 -479
- package/controller/comms/messages/Messages.ts +171 -25
- package/controller/comms/messages/config/ChlorinatorMessage.ts +5 -2
- package/controller/comms/messages/config/CircuitGroupMessage.ts +0 -0
- package/controller/comms/messages/config/CircuitMessage.ts +1 -0
- package/controller/comms/messages/config/ConfigMessage.ts +0 -0
- package/controller/comms/messages/config/CoverMessage.ts +0 -0
- package/controller/comms/messages/config/CustomNameMessage.ts +30 -30
- package/controller/comms/messages/config/EquipmentMessage.ts +0 -0
- package/controller/comms/messages/config/ExternalMessage.ts +0 -0
- package/controller/comms/messages/config/FeatureMessage.ts +0 -0
- package/controller/comms/messages/config/GeneralMessage.ts +0 -0
- package/controller/comms/messages/config/HeaterMessage.ts +142 -10
- package/controller/comms/messages/config/IntellichemMessage.ts +0 -0
- package/controller/comms/messages/config/OptionsMessage.ts +4 -21
- package/controller/comms/messages/config/PumpMessage.ts +53 -35
- package/controller/comms/messages/config/RemoteMessage.ts +0 -0
- package/controller/comms/messages/config/ScheduleMessage.ts +350 -347
- package/controller/comms/messages/config/SecurityMessage.ts +0 -0
- package/controller/comms/messages/config/ValveMessage.ts +1 -1
- package/controller/comms/messages/status/ChlorinatorStateMessage.ts +38 -86
- package/controller/comms/messages/status/EquipmentStateMessage.ts +58 -22
- package/controller/comms/messages/status/HeaterStateMessage.ts +116 -86
- package/controller/comms/messages/status/IntelliChemStateMessage.ts +445 -445
- package/controller/comms/messages/status/IntelliValveStateMessage.ts +35 -35
- package/controller/comms/messages/status/PumpStateMessage.ts +23 -1
- package/controller/comms/messages/status/VersionMessage.ts +0 -0
- package/controller/nixie/Nixie.ts +162 -162
- package/controller/nixie/NixieEquipment.ts +103 -103
- package/controller/nixie/bodies/Body.ts +120 -120
- package/controller/nixie/bodies/Filter.ts +135 -135
- package/controller/nixie/chemistry/ChemController.ts +2511 -2498
- package/controller/nixie/chemistry/Chlorinator.ts +363 -314
- package/controller/nixie/circuits/Circuit.ts +261 -248
- package/controller/nixie/heaters/Heater.ts +650 -648
- package/controller/nixie/pumps/Pump.ts +906 -661
- package/controller/nixie/schedules/Schedule.ts +313 -257
- package/controller/nixie/valves/Valve.ts +170 -170
- package/defaultConfig.json +306 -286
- package/logger/DataLogger.ts +448 -448
- package/logger/Logger.ts +0 -0
- package/package.json +56 -56
- package/tsconfig.json +25 -25
- package/web/Server.ts +92 -47
- package/web/bindings/aqualinkD.json +505 -0
- package/web/bindings/influxDB.json +1051 -1021
- package/web/bindings/mqtt.json +702 -654
- package/web/bindings/mqttAlt.json +731 -684
- package/web/bindings/rulesManager.json +54 -54
- package/web/bindings/smartThings-Hubitat.json +31 -31
- package/web/bindings/valveRelays.json +20 -20
- package/web/bindings/vera.json +25 -25
- package/web/interfaces/baseInterface.ts +137 -136
- package/web/interfaces/httpInterface.ts +145 -124
- package/web/interfaces/influxInterface.ts +276 -245
- package/web/interfaces/mqttInterface.ts +535 -475
- package/web/services/config/Config.ts +39 -18
- package/web/services/config/ConfigSocket.ts +0 -0
- package/web/services/state/State.ts +10 -0
- package/web/services/state/StateSocket.ts +4 -4
- package/web/services/utilities/Utilities.ts +44 -42
- package/.github/ISSUE_TEMPLATE/bug_report.md +0 -52
- package/config copy.json +0 -300
- package/issue_template.md +0 -52
package/defaultConfig.json
CHANGED
|
@@ -1,286 +1,306 @@
|
|
|
1
|
-
{
|
|
2
|
-
"controller": {
|
|
3
|
-
"comms": {
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
"
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
|
|
72
|
-
"
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
|
|
83
|
-
"
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
"
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
"
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
"
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
"
|
|
118
|
-
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
"
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
"
|
|
131
|
-
"
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
"
|
|
140
|
-
"
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
"
|
|
146
|
-
"
|
|
147
|
-
"
|
|
148
|
-
"
|
|
149
|
-
"
|
|
150
|
-
|
|
151
|
-
"
|
|
152
|
-
"
|
|
153
|
-
"
|
|
154
|
-
"
|
|
155
|
-
"
|
|
156
|
-
"
|
|
157
|
-
"
|
|
158
|
-
"
|
|
159
|
-
"
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
"
|
|
165
|
-
"
|
|
166
|
-
"
|
|
167
|
-
"
|
|
168
|
-
"
|
|
169
|
-
|
|
170
|
-
"
|
|
171
|
-
"
|
|
172
|
-
"
|
|
173
|
-
"
|
|
174
|
-
"
|
|
175
|
-
"
|
|
176
|
-
"
|
|
177
|
-
"
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
"
|
|
184
|
-
"
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
"
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
"
|
|
197
|
-
"
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
"
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
"
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
"
|
|
233
|
-
"
|
|
234
|
-
"
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
"
|
|
238
|
-
"
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
"
|
|
242
|
-
"
|
|
243
|
-
"
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
"
|
|
247
|
-
"
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
"
|
|
251
|
-
"
|
|
252
|
-
"
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
"
|
|
258
|
-
"
|
|
259
|
-
"
|
|
260
|
-
"
|
|
261
|
-
"
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
"
|
|
267
|
-
"
|
|
268
|
-
"
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
"
|
|
272
|
-
"
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
"
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
1
|
+
{
|
|
2
|
+
"controller": {
|
|
3
|
+
"comms": {
|
|
4
|
+
"portId": 0,
|
|
5
|
+
"enabled": true,
|
|
6
|
+
"rs485Port": "/dev/ttyUSB0",
|
|
7
|
+
"mockPort": false,
|
|
8
|
+
"netConnect": false,
|
|
9
|
+
"netHost": "raspberrypi",
|
|
10
|
+
"netPort": 9801,
|
|
11
|
+
"inactivityRetry": 10,
|
|
12
|
+
"portSettings": {
|
|
13
|
+
"baudRate": 9600,
|
|
14
|
+
"dataBits": 8,
|
|
15
|
+
"parity": "none",
|
|
16
|
+
"stopBits": 1,
|
|
17
|
+
"flowControl": false,
|
|
18
|
+
"autoOpen": false,
|
|
19
|
+
"lock": false
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"backups": {
|
|
23
|
+
"automatic": false,
|
|
24
|
+
"interval": {
|
|
25
|
+
"days": 30,
|
|
26
|
+
"hours": 0
|
|
27
|
+
},
|
|
28
|
+
"keepCount": 5,
|
|
29
|
+
"njsPC": true,
|
|
30
|
+
"servers": []
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
},
|
|
34
|
+
"web": {
|
|
35
|
+
"servers": {
|
|
36
|
+
"http2": {
|
|
37
|
+
"enabled": false
|
|
38
|
+
},
|
|
39
|
+
"http": {
|
|
40
|
+
"enabled": true,
|
|
41
|
+
"ip": "0.0.0.0",
|
|
42
|
+
"port": 4200,
|
|
43
|
+
"httpsRedirect": false,
|
|
44
|
+
"authentication": "none",
|
|
45
|
+
"authFile": "/users.htpasswd"
|
|
46
|
+
},
|
|
47
|
+
"https": {
|
|
48
|
+
"enabled": false,
|
|
49
|
+
"ip": "0.0.0.0",
|
|
50
|
+
"port": 4201,
|
|
51
|
+
"authentication": "none",
|
|
52
|
+
"authFile": "/users.htpasswd",
|
|
53
|
+
"sslKeyFile": "",
|
|
54
|
+
"sslCertFile": ""
|
|
55
|
+
},
|
|
56
|
+
"mdns": {
|
|
57
|
+
"enabled": false
|
|
58
|
+
},
|
|
59
|
+
"ssdp": {
|
|
60
|
+
"enabled": true
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"services": {},
|
|
64
|
+
"interfaces": {
|
|
65
|
+
"smartThings": {
|
|
66
|
+
"name": "SmartThings",
|
|
67
|
+
"type": "rest",
|
|
68
|
+
"enabled": false,
|
|
69
|
+
"fileName": "smartThings-Hubitat.json",
|
|
70
|
+
"globals": {},
|
|
71
|
+
"options": {
|
|
72
|
+
"host": "0.0.0.0",
|
|
73
|
+
"port": 39500
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"hubitat": {
|
|
77
|
+
"name": "Hubitat",
|
|
78
|
+
"type": "rest",
|
|
79
|
+
"enabled": false,
|
|
80
|
+
"fileName": "smartThings-Hubitat.json",
|
|
81
|
+
"globals": {},
|
|
82
|
+
"options": {
|
|
83
|
+
"host": "0.0.0.0",
|
|
84
|
+
"port": 39501
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"vera": {
|
|
88
|
+
"name": "Vera",
|
|
89
|
+
"type": "rest",
|
|
90
|
+
"enabled": false,
|
|
91
|
+
"fileName": "vera.json",
|
|
92
|
+
"vars": {
|
|
93
|
+
"deviceId": 0
|
|
94
|
+
},
|
|
95
|
+
"options": {
|
|
96
|
+
"host": "",
|
|
97
|
+
"port": 3480
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"valveRelay": {
|
|
101
|
+
"type": "rest",
|
|
102
|
+
"name": "Valve Relays",
|
|
103
|
+
"enabled": false,
|
|
104
|
+
"fileName": "valveRelays.json",
|
|
105
|
+
"vars": {
|
|
106
|
+
"valveIds": []
|
|
107
|
+
},
|
|
108
|
+
"options": {
|
|
109
|
+
"host": "0.0.0.0",
|
|
110
|
+
"port": 8081
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
"influxDB": {
|
|
114
|
+
"name": "InfluxDB",
|
|
115
|
+
"type": "influx",
|
|
116
|
+
"enabled": false,
|
|
117
|
+
"fileName": "influxDB.json",
|
|
118
|
+
"options": {
|
|
119
|
+
"version": 1,
|
|
120
|
+
"protocol": "http",
|
|
121
|
+
"host": "192.168.0.1",
|
|
122
|
+
"port": 9999,
|
|
123
|
+
"username": "",
|
|
124
|
+
"password": "",
|
|
125
|
+
"database": "pool",
|
|
126
|
+
"retentionPolicy": "autogen"
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
"influxDBv2": {
|
|
130
|
+
"name": "InfluxDBv2",
|
|
131
|
+
"type": "influx",
|
|
132
|
+
"enabled": false,
|
|
133
|
+
"fileName": "influxDB.json",
|
|
134
|
+
"options": {
|
|
135
|
+
"version": 2,
|
|
136
|
+
"protocol": "http",
|
|
137
|
+
"host": "192.168.0.1",
|
|
138
|
+
"port": 9999,
|
|
139
|
+
"token": "...LuyM84JJx93Qvc7tfaXPbI_mFFjRBjaA==",
|
|
140
|
+
"org": "example-org",
|
|
141
|
+
"bucket": "57ec4eed2d90a50b"
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
"mqtt": {
|
|
145
|
+
"name": "MQTT",
|
|
146
|
+
"type": "mqtt",
|
|
147
|
+
"enabled": false,
|
|
148
|
+
"fileName": "mqtt.json",
|
|
149
|
+
"globals": {},
|
|
150
|
+
"options": {
|
|
151
|
+
"protocol": "mqtt://",
|
|
152
|
+
"host": "192.168.0.1",
|
|
153
|
+
"port": 1883,
|
|
154
|
+
"username": "",
|
|
155
|
+
"password": "",
|
|
156
|
+
"selfSignedCertificate": false,
|
|
157
|
+
"rootTopic": "@bind=(state.equipment.model).replace(' ','-').replace('/','').toLowerCase();",
|
|
158
|
+
"retain": true,
|
|
159
|
+
"qos": 0,
|
|
160
|
+
"changesOnly": true
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"aqualinkD": {
|
|
164
|
+
"name": "AquaLinkD",
|
|
165
|
+
"type": "mqtt",
|
|
166
|
+
"enabled": false,
|
|
167
|
+
"fileName": "aqualinkD.json",
|
|
168
|
+
"globals": {},
|
|
169
|
+
"options": {
|
|
170
|
+
"protocol": "mqtt://",
|
|
171
|
+
"host": "192.168.0.1",
|
|
172
|
+
"port": 1883,
|
|
173
|
+
"username": "",
|
|
174
|
+
"password": "",
|
|
175
|
+
"rootTopic": "aqualinkd",
|
|
176
|
+
"retain": true,
|
|
177
|
+
"qos": 0,
|
|
178
|
+
"changesOnly": true
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
},
|
|
182
|
+
"mqttAlt": {
|
|
183
|
+
"name": "MQTTAlt",
|
|
184
|
+
"type": "mqtt",
|
|
185
|
+
"enabled": false,
|
|
186
|
+
"fileName": "mqttAlt.json",
|
|
187
|
+
"globals": {},
|
|
188
|
+
"options": {
|
|
189
|
+
"protocol": "mqtt://",
|
|
190
|
+
"host": "192.168.0.1",
|
|
191
|
+
"port": 1883,
|
|
192
|
+
"username": "",
|
|
193
|
+
"password": "",
|
|
194
|
+
"rootTopic": "@bind=(state.equipment.model).replace(' ','-').replace('/','').toLowerCase();Alt",
|
|
195
|
+
"retain": true,
|
|
196
|
+
"qos": 0,
|
|
197
|
+
"changesOnly": true
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"rem": {
|
|
201
|
+
"name": "Relay Equipment Manager",
|
|
202
|
+
"type": "rem",
|
|
203
|
+
"enabled": false,
|
|
204
|
+
"options": {
|
|
205
|
+
"protocol": "http://",
|
|
206
|
+
"host": "raspberrypi",
|
|
207
|
+
"port": 8080,
|
|
208
|
+
"headers": {
|
|
209
|
+
"content-type": "application/json"
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
"socket": {
|
|
213
|
+
"transports": [
|
|
214
|
+
"websocket"
|
|
215
|
+
],
|
|
216
|
+
"upgrade": false,
|
|
217
|
+
"reconnectionDelay": 2000,
|
|
218
|
+
"reconnection": true,
|
|
219
|
+
"reconnectionDelayMax": 20000
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
"log": {
|
|
225
|
+
"packet": {
|
|
226
|
+
"enabled": false,
|
|
227
|
+
"logToConsole": false,
|
|
228
|
+
"logToFile": false,
|
|
229
|
+
"filename": "packetLog",
|
|
230
|
+
"invalid": true,
|
|
231
|
+
"broadcast": {
|
|
232
|
+
"enabled": true,
|
|
233
|
+
"includeActions": [],
|
|
234
|
+
"includeSource": [],
|
|
235
|
+
"includeDest": [],
|
|
236
|
+
"excludeActions": [],
|
|
237
|
+
"excludeSource": [],
|
|
238
|
+
"excludeDest": []
|
|
239
|
+
},
|
|
240
|
+
"pump": {
|
|
241
|
+
"enabled": true,
|
|
242
|
+
"includeActions": [],
|
|
243
|
+
"includeSource": [],
|
|
244
|
+
"includeDest": [],
|
|
245
|
+
"excludeActions": [],
|
|
246
|
+
"excludeSource": [],
|
|
247
|
+
"excludeDest": []
|
|
248
|
+
},
|
|
249
|
+
"chlorinator": {
|
|
250
|
+
"enabled": true,
|
|
251
|
+
"includeSource": [],
|
|
252
|
+
"includeDest": [],
|
|
253
|
+
"excludeSource": [],
|
|
254
|
+
"excludeDest": []
|
|
255
|
+
},
|
|
256
|
+
"intellichem": {
|
|
257
|
+
"enabled": true,
|
|
258
|
+
"includeActions": [],
|
|
259
|
+
"excludeActions": [],
|
|
260
|
+
"includeSource": [],
|
|
261
|
+
"includeDest": [],
|
|
262
|
+
"excludeSource": [],
|
|
263
|
+
"excludeDest": []
|
|
264
|
+
},
|
|
265
|
+
"intellivalve": {
|
|
266
|
+
"enabled": true,
|
|
267
|
+
"includeActions": [],
|
|
268
|
+
"excludeActions": [],
|
|
269
|
+
"includeSource": [],
|
|
270
|
+
"includeDest": [],
|
|
271
|
+
"excludeSource": [],
|
|
272
|
+
"excludeDest": []
|
|
273
|
+
},
|
|
274
|
+
"heater": {
|
|
275
|
+
"enabled": true,
|
|
276
|
+
"includeActions": [],
|
|
277
|
+
"excludeActions": [],
|
|
278
|
+
"includeSource": [],
|
|
279
|
+
"includeDest": [],
|
|
280
|
+
"excludeSource": [],
|
|
281
|
+
"excludeDest": []
|
|
282
|
+
},
|
|
283
|
+
"unidentified": {
|
|
284
|
+
"enabled": true,
|
|
285
|
+
"includeSource": [],
|
|
286
|
+
"includeDest": [],
|
|
287
|
+
"excludeSource": [],
|
|
288
|
+
"excludeDest": []
|
|
289
|
+
},
|
|
290
|
+
"unknown": {
|
|
291
|
+
"enabled": true,
|
|
292
|
+
"includeSource": [],
|
|
293
|
+
"includeDest": [],
|
|
294
|
+
"excludeSource": [],
|
|
295
|
+
"excludeDest": []
|
|
296
|
+
}
|
|
297
|
+
},
|
|
298
|
+
"app": {
|
|
299
|
+
"enabled": true,
|
|
300
|
+
"level": "info",
|
|
301
|
+
"captureForReplay": false,
|
|
302
|
+
"logToFile": false
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
"appVersion": "0.0.1"
|
|
306
|
+
}
|