homebridge-dummy 1.3.1 → 1.3.2-beta.1

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.
@@ -0,0 +1,471 @@
1
+ declare const ru: {
2
+ accessory: {
3
+ badValueType: string;
4
+ invalidCron: string;
5
+ missingRequired: string;
6
+ };
7
+ command: {
8
+ error: string;
9
+ executed: string;
10
+ };
11
+ lightbulb: {
12
+ brightness: string;
13
+ stateOn: string;
14
+ };
15
+ limiter: {
16
+ badPeriod: string;
17
+ badUnits: string;
18
+ expired: string;
19
+ limitExceedsPeriod: string;
20
+ remainingDayPlus: string;
21
+ remainingHours: string;
22
+ remainingMinutes: string;
23
+ remainingSeconds: string;
24
+ };
25
+ lock: {
26
+ badDefault: string;
27
+ secured: string;
28
+ unsecured: string;
29
+ };
30
+ onOff: {
31
+ stateOff: string;
32
+ stateOn: string;
33
+ };
34
+ position: {
35
+ badDefault: string;
36
+ closed: string;
37
+ open: string;
38
+ };
39
+ schedule: {
40
+ badType: string;
41
+ badUnits: string;
42
+ cron: string;
43
+ intervalMilliseconds: string;
44
+ intervalSeconds: string;
45
+ intervalMinutes: string;
46
+ intervalHours: string;
47
+ };
48
+ thermostat: {
49
+ auto: string;
50
+ badDefault: string;
51
+ badUnits: string;
52
+ cool: string;
53
+ heat: string;
54
+ off: string;
55
+ temperatureC: string;
56
+ temperatureF: string;
57
+ unsupportedFunction: string;
58
+ };
59
+ timer: {
60
+ badUnits: string;
61
+ cancel: string;
62
+ expired: string;
63
+ resume: string;
64
+ setMilliseconds: string;
65
+ setSeconds: string;
66
+ setMinutes: string;
67
+ setHours: string;
68
+ };
69
+ config: {
70
+ description: {
71
+ commands: string;
72
+ cron: string;
73
+ limiter: string;
74
+ random: string;
75
+ schedule: string;
76
+ timer: string;
77
+ timerControlled: string;
78
+ };
79
+ enumNames: {
80
+ auto: string;
81
+ carbonDioxideSensor: string;
82
+ carbonMonoxideSensor: string;
83
+ celsius: string;
84
+ closed: string;
85
+ contactSensor: string;
86
+ cool: string;
87
+ cron: string;
88
+ custom: string;
89
+ daily: string;
90
+ day: string;
91
+ door: string;
92
+ fahrenheit: string;
93
+ garageDoorOpener: string;
94
+ heat: string;
95
+ hour: string;
96
+ hourly: string;
97
+ hours: string;
98
+ interval: string;
99
+ leakSensor: string;
100
+ lightbulb: string;
101
+ lockMechanism: string;
102
+ minutely: string;
103
+ month: string;
104
+ monthly: string;
105
+ occupancySensor: string;
106
+ off: string;
107
+ on: string;
108
+ open: string;
109
+ outlet: string;
110
+ milliseconds: string;
111
+ minutes: string;
112
+ motionSensor: string;
113
+ secondly: string;
114
+ seconds: string;
115
+ secured: string;
116
+ smokeSensor: string;
117
+ switch: string;
118
+ thermostat: string;
119
+ unsecured: string;
120
+ week: string;
121
+ weekdays: string;
122
+ weekends: string;
123
+ weekly: string;
124
+ window: string;
125
+ windowCovering: string;
126
+ yearly: string;
127
+ };
128
+ migrate: string;
129
+ migrationDetails1: string;
130
+ migrationDetails2: string;
131
+ migrationDetails3: string;
132
+ migrationDetails4: string;
133
+ migrationDetails5: string;
134
+ migrationRestartDescription: string;
135
+ migrationRestartTitle: string;
136
+ no: string;
137
+ support: string;
138
+ thankYou: string;
139
+ yes: string;
140
+ title: {
141
+ accessory: string;
142
+ commandClose: string;
143
+ commandOff: string;
144
+ commandOn: string;
145
+ commandOpen: string;
146
+ commandLock: string;
147
+ commands: string;
148
+ commandTemperature: string;
149
+ commandUnlock: string;
150
+ cron: string;
151
+ cronCustom: string;
152
+ defaultBrightness: string;
153
+ defaultPosition: string;
154
+ defaultState: string;
155
+ defaultTemperature: string;
156
+ delay: string;
157
+ disableLogging: string;
158
+ enableWebook: string;
159
+ groupName: string;
160
+ interval: string;
161
+ limit: string;
162
+ limiter: string;
163
+ name: string;
164
+ period: string;
165
+ preset: string;
166
+ random: string;
167
+ resetOnRestart: string;
168
+ schedule: string;
169
+ sensor: string;
170
+ timer: string;
171
+ timerControlled: string;
172
+ type: string;
173
+ units: string;
174
+ };
175
+ };
176
+ sensor: {
177
+ badType: string;
178
+ carbonDioxide: {
179
+ active: string;
180
+ inactive: string;
181
+ };
182
+ carbonMonoxide: {
183
+ active: string;
184
+ inactive: string;
185
+ };
186
+ contact: {
187
+ active: string;
188
+ inactive: string;
189
+ };
190
+ leak: {
191
+ active: string;
192
+ inactive: string;
193
+ };
194
+ motion: {
195
+ active: string;
196
+ inactive: string;
197
+ };
198
+ occupancy: {
199
+ active: string;
200
+ inactive: string;
201
+ };
202
+ smoke: {
203
+ active: string;
204
+ inactive: string;
205
+ };
206
+ };
207
+ startup: {
208
+ migrationBridge: string;
209
+ migrationComplete: string;
210
+ migrationFailed: string;
211
+ migrationIgnore: string;
212
+ migrationNoAccessories: string;
213
+ migrationRevert: string;
214
+ newAccessory: string;
215
+ removeAccessory: string;
216
+ restoringAccessory: string;
217
+ setupComplete: string;
218
+ unsupportedType: string;
219
+ welcome: string[];
220
+ };
221
+ webhook: {
222
+ badPort: string;
223
+ badUnits: string;
224
+ missing: string;
225
+ received: string;
226
+ register: string;
227
+ started: string;
228
+ stopped: string;
229
+ stopping: string;
230
+ validRange: string;
231
+ validValues: string;
232
+ unregisteredCommand: string;
233
+ unsupportedCommand: string;
234
+ unregisteredId: string;
235
+ };
236
+ } & {
237
+ accessory: {
238
+ badValueType: string;
239
+ invalidCron: string;
240
+ missingRequired: string;
241
+ };
242
+ command: {
243
+ error: string;
244
+ executed: string;
245
+ };
246
+ lightbulb: {
247
+ brightness: string;
248
+ stateOn: string;
249
+ };
250
+ limiter: {
251
+ badPeriod: string;
252
+ badUnits: string;
253
+ expired: string;
254
+ limitExceedsPeriod: string;
255
+ remainingDayPlus: string;
256
+ remainingHours: string;
257
+ remainingMinutes: string;
258
+ remainingSeconds: string;
259
+ };
260
+ lock: {
261
+ badDefault: string;
262
+ secured: string;
263
+ unsecured: string;
264
+ };
265
+ onOff: {
266
+ stateOff: string;
267
+ stateOn: string;
268
+ };
269
+ position: {
270
+ badDefault: string;
271
+ closed: string;
272
+ open: string;
273
+ };
274
+ schedule: {
275
+ badType: string;
276
+ badUnits: string;
277
+ cron: string;
278
+ intervalMilliseconds: string;
279
+ intervalSeconds: string;
280
+ intervalMinutes: string;
281
+ intervalHours: string;
282
+ };
283
+ thermostat: {
284
+ auto: string;
285
+ badDefault: string;
286
+ badUnits: string;
287
+ cool: string;
288
+ heat: string;
289
+ off: string;
290
+ temperatureC: string;
291
+ temperatureF: string;
292
+ unsupportedFunction: string;
293
+ };
294
+ timer: {
295
+ badUnits: string;
296
+ cancel: string;
297
+ expired: string;
298
+ resume: string;
299
+ setMilliseconds: string;
300
+ setSeconds: string;
301
+ setMinutes: string;
302
+ setHours: string;
303
+ };
304
+ config: {
305
+ description: {
306
+ commands: string;
307
+ cron: string;
308
+ limiter: string;
309
+ random: string;
310
+ schedule: string;
311
+ timer: string;
312
+ timerControlled: string;
313
+ };
314
+ enumNames: {
315
+ auto: string;
316
+ carbonDioxideSensor: string;
317
+ carbonMonoxideSensor: string;
318
+ celsius: string;
319
+ closed: string;
320
+ contactSensor: string;
321
+ cool: string;
322
+ cron: string;
323
+ custom: string;
324
+ daily: string;
325
+ day: string;
326
+ door: string;
327
+ fahrenheit: string;
328
+ heat: string;
329
+ hour: string;
330
+ hourly: string;
331
+ hours: string;
332
+ interval: string;
333
+ leakSensor: string;
334
+ lightbulb: string;
335
+ lockMechanism: string;
336
+ minutely: string;
337
+ month: string;
338
+ monthly: string;
339
+ occupancySensor: string;
340
+ off: string;
341
+ on: string;
342
+ open: string;
343
+ outlet: string;
344
+ milliseconds: string;
345
+ minutes: string;
346
+ motionSensor: string;
347
+ secondly: string;
348
+ seconds: string;
349
+ secured: string;
350
+ smokeSensor: string;
351
+ switch: string;
352
+ thermostat: string;
353
+ unsecured: string;
354
+ week: string;
355
+ weekdays: string;
356
+ weekends: string;
357
+ weekly: string;
358
+ window: string;
359
+ windowCovering: string;
360
+ yearly: string;
361
+ };
362
+ migrate: string;
363
+ migrationDetails1: string;
364
+ migrationDetails2: string;
365
+ migrationDetails3: string;
366
+ migrationDetails4: string;
367
+ migrationDetails5: string;
368
+ migrationRestartDescription: string;
369
+ migrationRestartTitle: string;
370
+ no: string;
371
+ support: string;
372
+ thankYou: string;
373
+ yes: string;
374
+ title: {
375
+ accessory: string;
376
+ commandClose: string;
377
+ commandOff: string;
378
+ commandOn: string;
379
+ commandOpen: string;
380
+ commandLock: string;
381
+ commands: string;
382
+ commandTemperature: string;
383
+ commandUnlock: string;
384
+ cron: string;
385
+ cronCustom: string;
386
+ defaultBrightness: string;
387
+ defaultPosition: string;
388
+ defaultState: string;
389
+ defaultTemperature: string;
390
+ delay: string;
391
+ disableLogging: string;
392
+ enableWebook: string;
393
+ groupName: string;
394
+ interval: string;
395
+ limit: string;
396
+ limiter: string;
397
+ name: string;
398
+ period: string;
399
+ preset: string;
400
+ random: string;
401
+ resetOnRestart: string;
402
+ schedule: string;
403
+ sensor: string;
404
+ timer: string;
405
+ timerControlled: string;
406
+ type: string;
407
+ units: string;
408
+ };
409
+ };
410
+ sensor: {
411
+ badType: string;
412
+ carbonDioxide: {
413
+ active: string;
414
+ inactive: string;
415
+ };
416
+ carbonMonoxide: {
417
+ active: string;
418
+ inactive: string;
419
+ };
420
+ contact: {
421
+ active: string;
422
+ inactive: string;
423
+ };
424
+ leak: {
425
+ active: string;
426
+ inactive: string;
427
+ };
428
+ motion: {
429
+ active: string;
430
+ inactive: string;
431
+ };
432
+ occupancy: {
433
+ active: string;
434
+ inactive: string;
435
+ };
436
+ smoke: {
437
+ active: string;
438
+ inactive: string;
439
+ };
440
+ };
441
+ startup: {
442
+ migrationBridge: string;
443
+ migrationComplete: string;
444
+ migrationFailed: string;
445
+ migrationIgnore: string;
446
+ migrationNoAccessories: string;
447
+ migrationRevert: string;
448
+ newAccessory: string;
449
+ removeAccessory: string;
450
+ restoringAccessory: string;
451
+ setupComplete: string;
452
+ unsupportedType: string;
453
+ welcome: string[];
454
+ };
455
+ webhook: {
456
+ badPort: string;
457
+ badUnits: string;
458
+ missing: string;
459
+ received: string;
460
+ register: string;
461
+ started: string;
462
+ stopped: string;
463
+ stopping: string;
464
+ validRange: string;
465
+ validValues: string;
466
+ unregisteredCommand: string;
467
+ unsupportedCommand: string;
468
+ unregisteredId: string;
469
+ };
470
+ };
471
+ export default ru;