homebridge-easy-mqtt 1.4.0-beta.5 → 1.4.0-beta.7

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.
Files changed (41) hide show
  1. package/CHANGELOG.md +3 -2
  2. package/README.md +38 -25
  3. package/config.schema.json +160 -33
  4. package/dist/accessory/abstract/helper.js +3 -0
  5. package/dist/accessory/abstract/helper.js.map +1 -1
  6. package/dist/accessory/climate/active.d.ts +11 -0
  7. package/dist/accessory/climate/active.js +44 -0
  8. package/dist/accessory/climate/active.js.map +1 -0
  9. package/dist/accessory/climate/heaterCooler.d.ts +2 -6
  10. package/dist/accessory/climate/heaterCooler.js +3 -37
  11. package/dist/accessory/climate/heaterCooler.js.map +1 -1
  12. package/dist/accessory/climate/purifier.d.ts +19 -0
  13. package/dist/accessory/climate/purifier.js +112 -0
  14. package/dist/accessory/climate/purifier.js.map +1 -0
  15. package/dist/accessory/climate/{climate.d.ts → temperatureControl.d.ts} +3 -2
  16. package/dist/accessory/climate/{climate.js → temperatureControl.js} +7 -5
  17. package/dist/accessory/climate/temperatureControl.js.map +1 -0
  18. package/dist/accessory/climate/thermostat.d.ts +2 -2
  19. package/dist/accessory/climate/thermostat.js +3 -2
  20. package/dist/accessory/climate/thermostat.js.map +1 -1
  21. package/dist/accessory/valve.js +1 -1
  22. package/dist/accessory/valve.js.map +1 -1
  23. package/dist/homebridge-ui/public/index.html +1 -1
  24. package/dist/homebridge-ui/public/ui.js +1 -1
  25. package/dist/i18n/en.d.ts +21 -2
  26. package/dist/i18n/en.js +40 -21
  27. package/dist/i18n/en.js.map +1 -1
  28. package/dist/i18n/fr.d.ts +21 -2
  29. package/dist/i18n/i18n.d.ts +23 -3
  30. package/dist/i18n/i18n.js +6 -0
  31. package/dist/i18n/i18n.js.map +1 -1
  32. package/dist/i18n/ro.d.ts +744 -0
  33. package/dist/i18n/ro.js +381 -0
  34. package/dist/i18n/ro.js.map +1 -0
  35. package/dist/i18n/template.d.ts +21 -2
  36. package/dist/model/enums.d.ts +3 -0
  37. package/dist/model/enums.js +3 -0
  38. package/dist/model/enums.js.map +1 -1
  39. package/dist/model/types.d.ts +34 -22
  40. package/package.json +1 -1
  41. package/dist/accessory/climate/climate.js.map +0 -1
@@ -0,0 +1,744 @@
1
+ declare const ro: {
2
+ accessory: {
3
+ batteryLevel: string;
4
+ batteryLow: string;
5
+ batteryNotLow: string;
6
+ missingRequired: string;
7
+ statusActive: string;
8
+ statusInactive: string;
9
+ };
10
+ characteristic: {
11
+ badValue: string;
12
+ updated: string;
13
+ };
14
+ climate: {
15
+ badTemperatureValue: string;
16
+ coolingThreshold: string;
17
+ coolingThresholdFuture: string;
18
+ heatingThreshold: string;
19
+ heatingThresholdFuture: string;
20
+ humidityUpdate: string;
21
+ temperatureUpdate: string;
22
+ };
23
+ config: {
24
+ continue: string;
25
+ required: string;
26
+ support: string;
27
+ thankYou: string;
28
+ description: {
29
+ options: string;
30
+ topics: string;
31
+ verbose: string;
32
+ };
33
+ enumNames: {
34
+ airPurifier: string;
35
+ carbonDioxideSensor: string;
36
+ carbonMonoxideSensor: string;
37
+ celsius: string;
38
+ contactSensor: string;
39
+ fahrenheit: string;
40
+ heaterCooler: string;
41
+ humiditySensor: string;
42
+ leakSensor: string;
43
+ lightbulb: string;
44
+ lightSensor: string;
45
+ lockMechanism: string;
46
+ motionSensor: string;
47
+ occupancySensor: string;
48
+ outlet: string;
49
+ securitySystem: string;
50
+ smokeSensor: string;
51
+ switch: string;
52
+ temperatureSensor: string;
53
+ thermostat: string;
54
+ valve: string;
55
+ valveGeneric: string;
56
+ valveIrrigation: string;
57
+ valveShower: string;
58
+ valveFaucet: string;
59
+ };
60
+ title: {
61
+ accessory: string;
62
+ broker: string;
63
+ disableLogging: string;
64
+ group: string;
65
+ name: string;
66
+ options: string;
67
+ password: string;
68
+ sourceUnits: string;
69
+ topicGetActive: string;
70
+ topicGetBatteryLevel: string;
71
+ topicGetBatteryLow: string;
72
+ topicGetBrightness: string;
73
+ topicGetCarbonDioxideDetected: string;
74
+ topicGetCarbonDioxideLevel: string;
75
+ topicGetCarbonDioxidePeakLevel: string;
76
+ topicGetCarbonMonoxideDetected: string;
77
+ topicGetCarbonMonoxideLevel: string;
78
+ topicGetCarbonMonoxidePeakLevel: string;
79
+ topicGetColorTemperature: string;
80
+ topicGetContactSensorState: string;
81
+ topicGetCoolingThresholdTemperature: string;
82
+ topicGetCurrentAmbientLightLevel: string;
83
+ topicGetCurrentHeaterCoolerState: string;
84
+ topicGetCurrentHeatingCoolingState: string;
85
+ topicGetCurrentPurifierState: string;
86
+ topicGetCurrentLockState: string;
87
+ topicGetCurrentRelativeHumidity: string;
88
+ topicGetCurrentRelativeHumidityOptional: string;
89
+ topicGetCurrentSecurityState: string;
90
+ topicGetCurrentTemperature: string;
91
+ topicGetHeatingThresholdTemperature: string;
92
+ topicGetHue: string;
93
+ topicGetLeakDetected: string;
94
+ topicGetLockPhysicalControls: string;
95
+ topicGetMotionDetected: string;
96
+ topicGetOccupancyDetected: string;
97
+ topicGetOn: string;
98
+ topicGetOutletInUse: string;
99
+ topicGetRotationSpeed: string;
100
+ topicGetSaturation: string;
101
+ topicGetSmokeDetected: string;
102
+ topicGetSwingMode: string;
103
+ topicGetStatusActive: string;
104
+ topicGetStatusFault: string;
105
+ topicGetStatusTampered: string;
106
+ topicGetTargetHeaterCoolerState: string;
107
+ topicGetTargetHeatingCoolingState: string;
108
+ topicGetTargetPurifierState: string;
109
+ topicGetTargetLockState: string;
110
+ topicGetTargetRelativeHumidity: string;
111
+ topicGetTargetSecurityState: string;
112
+ topicGetTargetTemperature: string;
113
+ topicGetValveActive: string;
114
+ topicGetValveInUse: string;
115
+ topicGetValveIsConfigured: string;
116
+ topicGetValveRemainingDuration: string;
117
+ topicGetValveSetDuration: string;
118
+ topicSetActive: string;
119
+ topicSetBrightness: string;
120
+ topicSetColorTemperature: string;
121
+ topicSetCoolingThresholdTemperature: string;
122
+ topicSetHeatingThresholdTemperature: string;
123
+ topicSetHue: string;
124
+ topicSetLockPhysicalControls: string;
125
+ topicSetOn: string;
126
+ topicSetRotationSpeed: string;
127
+ topicSetSaturation: string;
128
+ topicSetSwingMode: string;
129
+ topicSetTargetHeaterCoolerState: string;
130
+ topicSetTargetHeatingCoolingState: string;
131
+ topicSetTargetPurifierState: string;
132
+ topicSetTargetLockState: string;
133
+ topicSetTargetRelativeHumidity: string;
134
+ topicSetTargetSecurityState: string;
135
+ topicSetTargetTemperature: string;
136
+ topicSetValveActive: string;
137
+ topicSetValveIsConfigured: string;
138
+ topicSetValveSetDuration: string;
139
+ topics: string;
140
+ type: string;
141
+ username: string;
142
+ valveType: string;
143
+ valueActive: string;
144
+ valueAlarmTriggered: string;
145
+ valueArmAway: string;
146
+ valueArmNight: string;
147
+ valueArmStay: string;
148
+ valueBatteryLow: string;
149
+ valueCarbonDioxideDetected: string;
150
+ valueCarbonMonoxideDetected: string;
151
+ valueConfigured: string;
152
+ valueContactDetected: string;
153
+ valueControlLock: string;
154
+ valueControlUnlock: string;
155
+ valueDisarm: string;
156
+ valueFault: string;
157
+ valueInactive: string;
158
+ valueInUse: string;
159
+ valueLeakDetected: string;
160
+ valueLockStateJammed: string;
161
+ valueLockStateSecured: string;
162
+ valueLockStateUnsecured: string;
163
+ valueModeAuto: string;
164
+ valueModeCool: string;
165
+ valueModeHeat: string;
166
+ valueModeIdle: string;
167
+ valueModeInactive: string;
168
+ valueModeManual: string;
169
+ valueModeOff: string;
170
+ valueModePurifying: string;
171
+ valueMotionDetected: string;
172
+ valueNotConfigured: string;
173
+ valueOccupancyDetected: string;
174
+ valueOff: string;
175
+ valueOn: string;
176
+ valueOutletInUse: string;
177
+ valueOutletNotInUse: string;
178
+ valueSmokeDetected: string;
179
+ valueStateActive: string;
180
+ valueStateInactive: string;
181
+ valueStatusActive: string;
182
+ valueSwingEnabled: string;
183
+ valueSwingDisabled: string;
184
+ valueTampered: string;
185
+ values: string;
186
+ verbose: string;
187
+ };
188
+ };
189
+ error: {
190
+ hasFault: string;
191
+ isTampered: string;
192
+ noFault: string;
193
+ notTampered: string;
194
+ };
195
+ heaterCooler: {
196
+ active: string;
197
+ activeSet: string;
198
+ badValue: string;
199
+ controlsLocked: string;
200
+ controlsLockFuture: string;
201
+ controlsUnLocked: string;
202
+ controlsUnlockFuture: string;
203
+ inactiveSet: string;
204
+ noStateValues: string;
205
+ notActive: string;
206
+ rotationUpdate: string;
207
+ rotationSet: string;
208
+ swingDisabled: string;
209
+ swingDisabledFuture: string;
210
+ swingEnabled: string;
211
+ swingEnabledFuture: string;
212
+ stateAuto: string;
213
+ stateCool: string;
214
+ stateCooling: string;
215
+ stateHeat: string;
216
+ stateHeating: string;
217
+ stateIdle: string;
218
+ stateInactive: string;
219
+ stateUnknown: string;
220
+ unknownValue: string;
221
+ };
222
+ lightbulb: {
223
+ brightness: string;
224
+ brightnessFuture: string;
225
+ colorTemperature: string;
226
+ colorTemperatureFuture: string;
227
+ hue: string;
228
+ hueFuture: string;
229
+ saturation: string;
230
+ saturationFuture: string;
231
+ };
232
+ lock: {
233
+ badValue: string;
234
+ stateJammed: string;
235
+ stateSecured: string;
236
+ stateSecuredFuture: string;
237
+ stateUnsecured: string;
238
+ stateUnsecuredFuture: string;
239
+ stateUnknown: string;
240
+ };
241
+ mqttClient: {
242
+ badOptions: string;
243
+ connected: string;
244
+ connectionClosed: string;
245
+ error: string;
246
+ new: string;
247
+ noListeners: string;
248
+ notConnected: string;
249
+ parseFailed: string;
250
+ publish: string;
251
+ reuse: string;
252
+ receivedMessage: string;
253
+ reconnectMinutes: string;
254
+ reconnectSeconds: string;
255
+ };
256
+ onOff: {
257
+ stateOff: string;
258
+ stateOffFuture: string;
259
+ stateOn: string;
260
+ stateOnFuture: string;
261
+ unknownValue: string;
262
+ };
263
+ outlet: {
264
+ badValue: string;
265
+ inUse: string;
266
+ notInUse: string;
267
+ };
268
+ purifier: {
269
+ badValue: string;
270
+ noCurrentStateValues: string;
271
+ noTargetStateValues: string;
272
+ stateAuto: string;
273
+ stateIdle: string;
274
+ stateInactive: string;
275
+ stateManual: string;
276
+ statePurifying: string;
277
+ stateUnknown: string;
278
+ unknownValue: string;
279
+ };
280
+ security: {
281
+ badValue: string;
282
+ noStateValues: string;
283
+ stateAway: string;
284
+ stateAwayFuture: string;
285
+ stateDisarmed: string;
286
+ stateDisarmFuture: string;
287
+ stateNight: string;
288
+ stateNightFuture: string;
289
+ stateStay: string;
290
+ stateStayFuture: string;
291
+ stateTriggered: string;
292
+ stateUnknown: string;
293
+ unknownValue: string;
294
+ };
295
+ sensor: {
296
+ carbonDioxide: {
297
+ active: string;
298
+ inactive: string;
299
+ level: string;
300
+ peakLevel: string;
301
+ };
302
+ carbonMonoxide: {
303
+ active: string;
304
+ inactive: string;
305
+ level: string;
306
+ peakLevel: string;
307
+ };
308
+ contact: {
309
+ active: string;
310
+ inactive: string;
311
+ };
312
+ leak: {
313
+ active: string;
314
+ inactive: string;
315
+ };
316
+ light: {
317
+ level: string;
318
+ };
319
+ motion: {
320
+ active: string;
321
+ inactive: string;
322
+ };
323
+ occupancy: {
324
+ active: string;
325
+ inactive: string;
326
+ };
327
+ smoke: {
328
+ active: string;
329
+ inactive: string;
330
+ };
331
+ };
332
+ startup: {
333
+ complete: string;
334
+ newAccessory: string;
335
+ removeAccessory: string;
336
+ restoringAccessory: string;
337
+ unsupportedType: string;
338
+ welcome: string[];
339
+ };
340
+ thermostat: {
341
+ badValue: string;
342
+ humidityFuture: string;
343
+ noStateValues: string;
344
+ stateAutoFuture: string;
345
+ stateCool: string;
346
+ stateCoolFuture: string;
347
+ stateHeat: string;
348
+ stateHeatFuture: string;
349
+ stateOff: string;
350
+ stateOffFuture: string;
351
+ stateUnknown: string;
352
+ temperatureTarget: string;
353
+ temperatureTargetFuture: string;
354
+ unknownValue: string;
355
+ };
356
+ valve: {
357
+ active: string;
358
+ activeSet: string;
359
+ badValveType: string;
360
+ configured: string;
361
+ configuredFuture: string;
362
+ durationRemaining: string;
363
+ inactive: string;
364
+ inactiveSet: string;
365
+ inUse: string;
366
+ notConfigured: string;
367
+ notConfiguredFuture: string;
368
+ notInUse: string;
369
+ setDuration: string;
370
+ setDurationFuture: string;
371
+ };
372
+ } & {
373
+ accessory: {
374
+ batteryLevel: string;
375
+ batteryLow: string;
376
+ batteryNotLow: string;
377
+ missingRequired: string;
378
+ statusActive: string;
379
+ statusInactive: string;
380
+ };
381
+ characteristic: {
382
+ badValue: string;
383
+ updated: string;
384
+ };
385
+ climate: {
386
+ badTemperatureValue: string;
387
+ coolingThreshold: string;
388
+ coolingThresholdFuture: string;
389
+ heatingThreshold: string;
390
+ heatingThresholdFuture: string;
391
+ humidityUpdate: string;
392
+ temperatureUpdate: string;
393
+ };
394
+ config: {
395
+ continue: string;
396
+ required: string;
397
+ support: string;
398
+ thankYou: string;
399
+ description: {
400
+ options: string;
401
+ topics: string;
402
+ verbose: string;
403
+ };
404
+ enumNames: {
405
+ airPurifier: string;
406
+ carbonDioxideSensor: string;
407
+ carbonMonoxideSensor: string;
408
+ celsius: string;
409
+ contactSensor: string;
410
+ fahrenheit: string;
411
+ heaterCooler: string;
412
+ humiditySensor: string;
413
+ leakSensor: string;
414
+ lightbulb: string;
415
+ lightSensor: string;
416
+ lockMechanism: string;
417
+ motionSensor: string;
418
+ occupancySensor: string;
419
+ outlet: string;
420
+ securitySystem: string;
421
+ smokeSensor: string;
422
+ switch: string;
423
+ temperatureSensor: string;
424
+ thermostat: string;
425
+ valve: string;
426
+ valveGeneric: string;
427
+ valveIrrigation: string;
428
+ valveShower: string;
429
+ valveFaucet: string;
430
+ };
431
+ title: {
432
+ accessory: string;
433
+ broker: string;
434
+ disableLogging: string;
435
+ group: string;
436
+ name: string;
437
+ options: string;
438
+ password: string;
439
+ sourceUnits: string;
440
+ topicGetActive: string;
441
+ topicGetBatteryLevel: string;
442
+ topicGetBatteryLow: string;
443
+ topicGetBrightness: string;
444
+ topicGetCarbonDioxideDetected: string;
445
+ topicGetCarbonDioxideLevel: string;
446
+ topicGetCarbonDioxidePeakLevel: string;
447
+ topicGetCarbonMonoxideDetected: string;
448
+ topicGetCarbonMonoxideLevel: string;
449
+ topicGetCarbonMonoxidePeakLevel: string;
450
+ topicGetColorTemperature: string;
451
+ topicGetContactSensorState: string;
452
+ topicGetCoolingThresholdTemperature: string;
453
+ topicGetCurrentAmbientLightLevel: string;
454
+ topicGetCurrentHeaterCoolerState: string;
455
+ topicGetCurrentHeatingCoolingState: string;
456
+ topicGetCurrentPurifierState: string;
457
+ topicGetCurrentLockState: string;
458
+ topicGetCurrentRelativeHumidity: string;
459
+ topicGetCurrentRelativeHumidityOptional: string;
460
+ topicGetCurrentSecurityState: string;
461
+ topicGetCurrentTemperature: string;
462
+ topicGetHeatingThresholdTemperature: string;
463
+ topicGetHue: string;
464
+ topicGetLeakDetected: string;
465
+ topicGetLockPhysicalControls: string;
466
+ topicGetMotionDetected: string;
467
+ topicGetOccupancyDetected: string;
468
+ topicGetOn: string;
469
+ topicGetOutletInUse: string;
470
+ topicGetRotationSpeed: string;
471
+ topicGetSaturation: string;
472
+ topicGetSmokeDetected: string;
473
+ topicGetSwingMode: string;
474
+ topicGetStatusActive: string;
475
+ topicGetStatusFault: string;
476
+ topicGetStatusTampered: string;
477
+ topicGetTargetHeaterCoolerState: string;
478
+ topicGetTargetHeatingCoolingState: string;
479
+ topicGetTargetPurifierState: string;
480
+ topicGetTargetLockState: string;
481
+ topicGetTargetRelativeHumidity: string;
482
+ topicGetTargetSecurityState: string;
483
+ topicGetTargetTemperature: string;
484
+ topicGetValveActive: string;
485
+ topicGetValveInUse: string;
486
+ topicGetValveIsConfigured: string;
487
+ topicGetValveRemainingDuration: string;
488
+ topicGetValveSetDuration: string;
489
+ topicSetActive: string;
490
+ topicSetBrightness: string;
491
+ topicSetColorTemperature: string;
492
+ topicSetCoolingThresholdTemperature: string;
493
+ topicSetHeatingThresholdTemperature: string;
494
+ topicSetHue: string;
495
+ topicSetLockPhysicalControls: string;
496
+ topicSetOn: string;
497
+ topicSetRotationSpeed: string;
498
+ topicSetSaturation: string;
499
+ topicSetSwingMode: string;
500
+ topicSetTargetHeaterCoolerState: string;
501
+ topicSetTargetHeatingCoolingState: string;
502
+ topicSetTargetPurifierState: string;
503
+ topicSetTargetLockState: string;
504
+ topicSetTargetRelativeHumidity: string;
505
+ topicSetTargetSecurityState: string;
506
+ topicSetTargetTemperature: string;
507
+ topicSetValveActive: string;
508
+ topicSetValveIsConfigured: string;
509
+ topicSetValveSetDuration: string;
510
+ topics: string;
511
+ type: string;
512
+ username: string;
513
+ valveType: string;
514
+ valueActive: string;
515
+ valueAlarmTriggered: string;
516
+ valueArmAway: string;
517
+ valueArmNight: string;
518
+ valueArmStay: string;
519
+ valueBatteryLow: string;
520
+ valueCarbonDioxideDetected: string;
521
+ valueCarbonMonoxideDetected: string;
522
+ valueConfigured: string;
523
+ valueContactDetected: string;
524
+ valueControlLock: string;
525
+ valueControlUnlock: string;
526
+ valueDisarm: string;
527
+ valueFault: string;
528
+ valueInactive: string;
529
+ valueInUse: string;
530
+ valueLeakDetected: string;
531
+ valueLockStateJammed: string;
532
+ valueLockStateSecured: string;
533
+ valueLockStateUnsecured: string;
534
+ valueModeAuto: string;
535
+ valueModeCool: string;
536
+ valueModeHeat: string;
537
+ valueModeIdle: string;
538
+ valueModeInactive: string;
539
+ valueModeManual: string;
540
+ valueModeOff: string;
541
+ valueModePurifying: string;
542
+ valueMotionDetected: string;
543
+ valueNotConfigured: string;
544
+ valueOccupancyDetected: string;
545
+ valueOff: string;
546
+ valueOn: string;
547
+ valueOutletInUse: string;
548
+ valueOutletNotInUse: string;
549
+ valueSmokeDetected: string;
550
+ valueStateActive: string;
551
+ valueStateInactive: string;
552
+ valueStatusActive: string;
553
+ valueSwingEnabled: string;
554
+ valueSwingDisabled: string;
555
+ valueTampered: string;
556
+ values: string;
557
+ verbose: string;
558
+ };
559
+ };
560
+ error: {
561
+ hasFault: string;
562
+ isTampered: string;
563
+ noFault: string;
564
+ notTampered: string;
565
+ };
566
+ heaterCooler: {
567
+ active: string;
568
+ activeSet: string;
569
+ badValue: string;
570
+ controlsLocked: string;
571
+ controlsLockFuture: string;
572
+ controlsUnLocked: string;
573
+ controlsUnlockFuture: string;
574
+ inactiveSet: string;
575
+ noStateValues: string;
576
+ notActive: string;
577
+ rotationUpdate: string;
578
+ rotationSet: string;
579
+ swingDisabled: string;
580
+ swingDisabledFuture: string;
581
+ swingEnabled: string;
582
+ swingEnabledFuture: string;
583
+ stateAuto: string;
584
+ stateCool: string;
585
+ stateCooling: string;
586
+ stateHeat: string;
587
+ stateHeating: string;
588
+ stateIdle: string;
589
+ stateInactive: string;
590
+ stateUnknown: string;
591
+ unknownValue: string;
592
+ };
593
+ lightbulb: {
594
+ brightness: string;
595
+ brightnessFuture: string;
596
+ colorTemperature: string;
597
+ colorTemperatureFuture: string;
598
+ hue: string;
599
+ hueFuture: string;
600
+ saturation: string;
601
+ saturationFuture: string;
602
+ };
603
+ lock: {
604
+ badValue: string;
605
+ stateJammed: string;
606
+ stateSecured: string;
607
+ stateSecuredFuture: string;
608
+ stateUnsecured: string;
609
+ stateUnsecuredFuture: string;
610
+ stateUnknown: string;
611
+ };
612
+ mqttClient: {
613
+ badOptions: string;
614
+ connected: string;
615
+ connectionClosed: string;
616
+ error: string;
617
+ new: string;
618
+ noListeners: string;
619
+ notConnected: string;
620
+ parseFailed: string;
621
+ publish: string;
622
+ reuse: string;
623
+ receivedMessage: string;
624
+ reconnectMinutes: string;
625
+ reconnectSeconds: string;
626
+ };
627
+ onOff: {
628
+ stateOff: string;
629
+ stateOffFuture: string;
630
+ stateOn: string;
631
+ stateOnFuture: string;
632
+ unknownValue: string;
633
+ };
634
+ outlet: {
635
+ badValue: string;
636
+ inUse: string;
637
+ notInUse: string;
638
+ };
639
+ purifier: {
640
+ badValue: string;
641
+ noCurrentStateValues: string;
642
+ noTargetStateValues: string;
643
+ stateAuto: string;
644
+ stateIdle: string;
645
+ stateInactive: string;
646
+ stateUnknown: string;
647
+ stateManual: string;
648
+ statePurifying: string;
649
+ unknownValue: string;
650
+ };
651
+ security: {
652
+ badValue: string;
653
+ noStateValues: string;
654
+ stateAway: string;
655
+ stateAwayFuture: string;
656
+ stateDisarmed: string;
657
+ stateDisarmFuture: string;
658
+ stateNight: string;
659
+ stateNightFuture: string;
660
+ stateStay: string;
661
+ stateStayFuture: string;
662
+ stateTriggered: string;
663
+ stateUnknown: string;
664
+ unknownValue: string;
665
+ };
666
+ sensor: {
667
+ carbonDioxide: {
668
+ active: string;
669
+ inactive: string;
670
+ level: string;
671
+ peakLevel: string;
672
+ };
673
+ carbonMonoxide: {
674
+ active: string;
675
+ inactive: string;
676
+ level: string;
677
+ peakLevel: string;
678
+ };
679
+ contact: {
680
+ active: string;
681
+ inactive: string;
682
+ };
683
+ leak: {
684
+ active: string;
685
+ inactive: string;
686
+ };
687
+ light: {
688
+ level: string;
689
+ };
690
+ motion: {
691
+ active: string;
692
+ inactive: string;
693
+ };
694
+ occupancy: {
695
+ active: string;
696
+ inactive: string;
697
+ };
698
+ smoke: {
699
+ active: string;
700
+ inactive: string;
701
+ };
702
+ };
703
+ startup: {
704
+ complete: string;
705
+ newAccessory: string;
706
+ removeAccessory: string;
707
+ restoringAccessory: string;
708
+ unsupportedType: string;
709
+ welcome: string[];
710
+ };
711
+ thermostat: {
712
+ badValue: string;
713
+ humidityFuture: string;
714
+ noStateValues: string;
715
+ stateAutoFuture: string;
716
+ stateCool: string;
717
+ stateCoolFuture: string;
718
+ stateHeat: string;
719
+ stateHeatFuture: string;
720
+ stateOff: string;
721
+ stateOffFuture: string;
722
+ stateUnknown: string;
723
+ temperatureTarget: string;
724
+ temperatureTargetFuture: string;
725
+ unknownValue: string;
726
+ };
727
+ valve: {
728
+ active: string;
729
+ activeSet: string;
730
+ badValveType: string;
731
+ configured: string;
732
+ configuredFuture: string;
733
+ durationRemaining: string;
734
+ inactive: string;
735
+ inactiveSet: string;
736
+ inUse: string;
737
+ notConfigured: string;
738
+ notConfiguredFuture: string;
739
+ notInUse: string;
740
+ setDuration: string;
741
+ setDurationFuture: string;
742
+ };
743
+ };
744
+ export default ro;