homebridge-dummy 1.3.0-beta.0 → 1.3.0-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.
Files changed (39) hide show
  1. package/CHANGELOG.md +2 -2
  2. package/dist/accessory/base.js +3 -4
  3. package/dist/accessory/base.js.map +1 -1
  4. package/dist/accessory/lock.js +13 -8
  5. package/dist/accessory/lock.js.map +1 -1
  6. package/dist/accessory/onoff/lightbulb.js +14 -9
  7. package/dist/accessory/onoff/lightbulb.js.map +1 -1
  8. package/dist/accessory/onoff/onoff.js +11 -6
  9. package/dist/accessory/onoff/onoff.js.map +1 -1
  10. package/dist/accessory/position/position.js +13 -8
  11. package/dist/accessory/position/position.js.map +1 -1
  12. package/dist/accessory/thermostat.js +26 -19
  13. package/dist/accessory/thermostat.js.map +1 -1
  14. package/dist/homebridge/platform.js +2 -2
  15. package/dist/homebridge/platform.js.map +1 -1
  16. package/dist/homebridge-ui/public/index.html +1 -1
  17. package/dist/i18n/en.d.ts +85 -85
  18. package/dist/i18n/en.js +85 -85
  19. package/dist/i18n/en.js.map +1 -1
  20. package/dist/i18n/i18n.d.ts +86 -87
  21. package/dist/i18n/i18n.js +0 -6
  22. package/dist/i18n/i18n.js.map +1 -1
  23. package/dist/i18n/template.d.ts +87 -87
  24. package/dist/i18n/template.js +2 -2
  25. package/dist/i18n/template.js.map +1 -1
  26. package/dist/timeout/limiter.d.ts +2 -1
  27. package/dist/timeout/limiter.js +39 -29
  28. package/dist/timeout/limiter.js.map +1 -1
  29. package/dist/timeout/schedule.js +4 -4
  30. package/dist/timeout/schedule.js.map +1 -1
  31. package/dist/timeout/timer.js +3 -3
  32. package/dist/timeout/timer.js.map +1 -1
  33. package/dist/tools/storage.d.ts +14 -7
  34. package/dist/tools/storage.js +35 -19
  35. package/dist/tools/storage.js.map +1 -1
  36. package/package.json +1 -1
  37. package/dist/i18n/zz.d.ts +0 -233
  38. package/dist/i18n/zz.js +0 -6
  39. package/dist/i18n/zz.js.map +0 -1
package/dist/i18n/en.d.ts CHANGED
@@ -3,88 +3,76 @@ declare const en: {
3
3
  badValueType: string;
4
4
  invalidCron: string;
5
5
  missingRequired: string;
6
- command: {
7
- executed: string;
8
- error: string;
9
- };
10
- lightbulb: {
11
- brightness: string;
12
- stateOn: string;
13
- };
14
- lock: {
15
- badDefault: string;
16
- secured: string;
17
- unsecured: string;
18
- };
19
- onOff: {
20
- stateOn: string;
21
- stateOff: string;
22
- };
23
- position: {
24
- badDefault: string;
25
- closed: string;
26
- open: string;
27
- };
28
- thermostat: {
29
- auto: string;
30
- badDefault: string;
31
- badUnits: string;
32
- cool: string;
33
- heat: string;
34
- off: string;
35
- temperatureC: string;
36
- temperatureF: string;
37
- unsupportedFunction: string;
38
- };
39
- limiter: {
40
- badPeriod: string;
41
- badUnits: string;
42
- expired: string;
43
- limitExceedsPeriod: string;
44
- remainingDayPlus: string;
45
- remainingHours: string;
46
- remainingMinutes: string;
47
- remainingSeconds: string;
48
- };
49
- timer: {
50
- badUnits: string;
51
- cancel: string;
52
- setMilliseconds: string;
53
- setSeconds: string;
54
- setMinutes: string;
55
- setHours: string;
56
- };
57
- schedule: {
58
- badType: string;
59
- badUnits: string;
60
- cron: string;
61
- intervalMilliseconds: string;
62
- intervalSeconds: string;
63
- intervalMinutes: string;
64
- intervalHours: string;
65
- };
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
+ setMilliseconds: string;
63
+ setSeconds: string;
64
+ setMinutes: string;
65
+ setHours: string;
66
66
  };
67
67
  config: {
68
- migrate: string;
69
- migrationDetails1: string;
70
- migrationDetails2: string;
71
- migrationDetails3: string;
72
- migrationDetails4: string;
73
- migrationDetails5: string;
74
- migrationRestartTitle: string;
75
- migrationRestartDescription: string;
76
- support: string;
77
- thankYou: string;
78
- yes: string;
79
- no: string;
80
68
  description: {
81
69
  commands: string;
82
70
  cron: string;
83
71
  limiter: string;
84
72
  random: string;
85
- timerControlled: string;
86
- timer: string;
87
73
  schedule: string;
74
+ timer: string;
75
+ timerControlled: string;
88
76
  };
89
77
  enumNames: {
90
78
  auto: string;
@@ -111,8 +99,8 @@ declare const en: {
111
99
  minutely: string;
112
100
  month: string;
113
101
  monthly: string;
114
- off: string;
115
102
  occupancySensor: string;
103
+ off: string;
116
104
  on: string;
117
105
  open: string;
118
106
  outlet: string;
@@ -126,24 +114,36 @@ declare const en: {
126
114
  switch: string;
127
115
  thermostat: string;
128
116
  unsecured: string;
117
+ week: string;
129
118
  weekdays: string;
130
119
  weekends: string;
131
- week: string;
132
120
  weekly: string;
133
121
  window: string;
134
122
  windowCovering: string;
135
123
  yearly: string;
136
124
  };
125
+ migrate: string;
126
+ migrationDetails1: string;
127
+ migrationDetails2: string;
128
+ migrationDetails3: string;
129
+ migrationDetails4: string;
130
+ migrationDetails5: string;
131
+ migrationRestartDescription: string;
132
+ migrationRestartTitle: string;
133
+ no: string;
134
+ support: string;
135
+ thankYou: string;
136
+ yes: string;
137
137
  title: {
138
138
  accessory: string;
139
- commands: string;
140
139
  commandClose: string;
141
- commandOn: string;
142
140
  commandOff: string;
141
+ commandOn: string;
143
142
  commandOpen: string;
144
143
  commandLock: string;
145
- commandUnlock: string;
144
+ commands: string;
146
145
  commandTemperature: string;
146
+ commandUnlock: string;
147
147
  cron: string;
148
148
  cronCustom: string;
149
149
  defaultBrightness: string;
@@ -155,19 +155,19 @@ declare const en: {
155
155
  enableWebook: string;
156
156
  groupName: string;
157
157
  interval: string;
158
- name: string;
159
158
  limit: string;
160
159
  limiter: string;
160
+ name: string;
161
161
  period: string;
162
162
  preset: string;
163
+ random: string;
163
164
  resetOnRestart: string;
164
- timer: string;
165
- timerControlled: string;
166
165
  schedule: string;
167
166
  sensor: string;
167
+ timer: string;
168
+ timerControlled: string;
168
169
  type: string;
169
170
  units: string;
170
- random: string;
171
171
  };
172
172
  };
173
173
  sensor: {
@@ -204,9 +204,9 @@ declare const en: {
204
204
  startup: {
205
205
  migrationBridge: string;
206
206
  migrationComplete: string;
207
- migrationNoAccessories: string;
208
- migrationIgnore: string;
209
207
  migrationFailed: string;
208
+ migrationIgnore: string;
209
+ migrationNoAccessories: string;
210
210
  migrationRevert: string;
211
211
  newAccessory: string;
212
212
  removeAccessory: string;
package/dist/i18n/en.js CHANGED
@@ -3,88 +3,76 @@ const en = {
3
3
  badValueType: '%s expected type %s but was %s', // accessory name, variable type, variable type
4
4
  invalidCron: '%s has an invalid cron expression %s', // accessory name, cron string
5
5
  missingRequired: '%s is missing required field %s', // accessory name, variable name
6
- command: {
7
- executed: '%s executed command', // accessory name
8
- error: '%s failed to execute command', // accessory name
9
- },
10
- lightbulb: {
11
- brightness: '%s brightness is %d%', // accessory name, number
12
- stateOn: '%s is on, brightness is %d%', // accessory name, number
13
- },
14
- lock: {
15
- badDefault: '%s has invalid default lock state %s. Must be one of: %s', // accessory name, input, list of state names
16
- secured: '%s is locked', // accessory name
17
- unsecured: '%s is unlocked', // accessory name
18
- },
19
- onOff: {
20
- stateOn: '%s is on', // accessory name
21
- stateOff: '%s is off', // accessory name
22
- },
23
- position: {
24
- badDefault: '%s has invalid default position %s. Must be one of: %s', // accessory name, input, list of position names
25
- closed: '%s is closed', // accessory name
26
- open: '%s is open', // accessory name
27
- },
28
- thermostat: {
29
- auto: '%s set to Auto', // accessory name
30
- badDefault: '%s has invalid default state %s. Must be one of: %s', // accessory name, input, list of state names
31
- badUnits: '%s has invalid temperature units %s. Must be one of: %s', // accessory name, input, list of unit names
32
- cool: '%s set to Cool', // accessory name
33
- heat: '%s set to Heat', // accessory name
34
- off: '%s set to Off', // accessory name
35
- temperatureC: '%s set to %d°C', // accessory name, number
36
- temperatureF: '%s set to %d°F', // accessory name, number
37
- unsupportedFunction: '%s is unsupported for thermostats', // function name
38
- },
39
- limiter: {
40
- badPeriod: 'The time limit for %s has invalid period %s. Must be one of: %s', // accessory name, input, list of unit names
41
- badUnits: 'The time limit for %s has invalid units %s. Must be one of: %s', // accessory name, input, list of unit names
42
- expired: 'The time limit for %s has expired', // accessory name
43
- limitExceedsPeriod: 'The time limit for %s exceeds period. Please reduce the limit or increase the period.', // accessory name
44
- remainingDayPlus: 'The time limit for %s has more than a day remaining', // accessory name
45
- remainingHours: 'The time limit for %s has %s hours remaining', // accessory name, number
46
- remainingMinutes: 'The time limit for %s has %s minutes remaining', // accessory name, number
47
- remainingSeconds: 'The time limit for %s has %s seconds remaining', // accessory name, number
48
- },
49
- timer: {
50
- badUnits: '%s timer has invalid time units %s. Must be one of: %s', // accessory name, input, list of unit names
51
- cancel: 'Cancelled the timer for %s', // accessory name
52
- setMilliseconds: '%s is waiting %s milliseconds', // accessory name, number
53
- setSeconds: '%s is waiting %s seconds', // accessory name, number
54
- setMinutes: '%s is waiting %s minutes', // accessory name, number
55
- setHours: '%s is waiting %s hours', // accessory name, number
56
- },
57
- schedule: {
58
- badType: '%s has invalid schedule type %s. Must be one of: %s', // accessory name, input, list of type names
59
- badUnits: '%s schedule has invalid time units %s. Must be one of: %s', // accessory name, input, list of unit names
60
- cron: '%s starting schedule cronjob', // accessory name
61
- intervalMilliseconds: '%s scheduled for %s milliseconds', // accessory name, number
62
- intervalSeconds: '%s scheduled for %s seconds', // accessory name, number
63
- intervalMinutes: '%s scheduled for %s minutes', // accessory name, number
64
- intervalHours: '% scheduled for %s hours', // accessory name, number
65
- },
6
+ },
7
+ command: {
8
+ error: '%s failed to execute command', // accessory name
9
+ executed: '%s executed command', // accessory name
10
+ },
11
+ lightbulb: {
12
+ brightness: '%s brightness is %d%', // accessory name, number
13
+ stateOn: '%s is on, brightness is %d%', // accessory name, number
14
+ },
15
+ limiter: {
16
+ badPeriod: 'The time limit for %s has invalid period %s. Must be one of: %s', // accessory name, input, list of unit names
17
+ badUnits: 'The time limit for %s has invalid units %s. Must be one of: %s', // accessory name, input, list of unit names
18
+ expired: 'The time limit for %s has expired', // accessory name
19
+ limitExceedsPeriod: 'The time limit for %s exceeds period. Please reduce the limit or increase the period.', // accessory name
20
+ remainingDayPlus: 'The time limit for %s has more than a day remaining', // accessory name
21
+ remainingHours: 'The time limit for %s has %s hours remaining', // accessory name, number
22
+ remainingMinutes: 'The time limit for %s has %s minutes remaining', // accessory name, number
23
+ remainingSeconds: 'The time limit for %s has %s seconds remaining', // accessory name, number
24
+ },
25
+ lock: {
26
+ badDefault: '%s has invalid default lock state %s. Must be one of: %s', // accessory name, input, list of state names
27
+ secured: '%s is locked', // accessory name
28
+ unsecured: '%s is unlocked', // accessory name
29
+ },
30
+ onOff: {
31
+ stateOff: '%s is off', // accessory name
32
+ stateOn: '%s is on', // accessory name
33
+ },
34
+ position: {
35
+ badDefault: '%s has invalid default position %s. Must be one of: %s', // accessory name, input, list of position names
36
+ closed: '%s is closed', // accessory name
37
+ open: '%s is open', // accessory name
38
+ },
39
+ schedule: {
40
+ badType: '%s has invalid schedule type %s. Must be one of: %s', // accessory name, input, list of type names
41
+ badUnits: '%s schedule has invalid time units %s. Must be one of: %s', // accessory name, input, list of unit names
42
+ cron: '%s starting schedule cronjob', // accessory name
43
+ intervalMilliseconds: '%s scheduled for %s milliseconds', // accessory name, number
44
+ intervalSeconds: '%s scheduled for %s seconds', // accessory name, number
45
+ intervalMinutes: '%s scheduled for %s minutes', // accessory name, number
46
+ intervalHours: '% scheduled for %s hours', // accessory name, number
47
+ },
48
+ thermostat: {
49
+ auto: '%s set to Auto', // accessory name
50
+ badDefault: '%s has invalid default state %s. Must be one of: %s', // accessory name, input, list of state names
51
+ badUnits: '%s has invalid temperature units %s. Must be one of: %s', // accessory name, input, list of unit names
52
+ cool: '%s set to Cool', // accessory name
53
+ heat: '%s set to Heat', // accessory name
54
+ off: '%s set to Off', // accessory name
55
+ temperatureC: '%s set to %d°C', // accessory name, number
56
+ temperatureF: '%s set to %d°F', // accessory name, number
57
+ unsupportedFunction: '%s is unsupported for thermostats', // function name
58
+ },
59
+ timer: {
60
+ badUnits: '%s timer has invalid time units %s. Must be one of: %s', // accessory name, input, list of unit names
61
+ cancel: 'Cancelled the timer for %s', // accessory name
62
+ setMilliseconds: '%s is waiting %s milliseconds', // accessory name, number
63
+ setSeconds: '%s is waiting %s seconds', // accessory name, number
64
+ setMinutes: '%s is waiting %s minutes', // accessory name, number
65
+ setHours: '%s is waiting %s hours', // accessory name, number
66
66
  },
67
67
  config: {
68
- migrate: 'Are you upgrading from an earlier version?',
69
- migrationDetails1: 'HomeKit scenes and automations using %s accessories will need to be reconfigured!', // plugin name
70
- migrationDetails2: 'Please downgrade to v0.9.2 or earlier if you want to keep your current setup.',
71
- migrationDetails3: '%s can try to recreate your accessories, but you will still need reconfigure HomeKit scenes and automations.', // plugin name
72
- migrationDetails4: 'Would you like to recreate your accessories now?',
73
- migrationDetails5: 'For more details, please visit %s', // url
74
- migrationRestartTitle: 'Restart Homebridge',
75
- migrationRestartDescription: 'Please restart Homebridge to begin %s migration', // plugin name
76
- support: 'For documentation and support please visit %s', // url
77
- thankYou: 'Thank you for installing %s', // plugin name
78
- yes: 'Yes',
79
- no: 'No',
80
68
  description: {
81
69
  commands: 'Execute arbitrary commands (e.g. curl) when the accessory changes state',
82
70
  cron: 'Visit crontab.guru for help',
83
71
  limiter: 'Restrict the total time this accessory can be set to its non-default value, for each specified period',
84
72
  random: 'Time will be randomized with the above value as a maximum',
85
- timerControlled: 'Instead of mirroring accessory, sensor will be activated when accessory auto-resets',
86
- timer: 'Return the accessory to its default value after the specified delay',
87
73
  schedule: 'Set the accessory to its opposite (non-default) value at specified interval or times',
74
+ timer: 'Return the accessory to its default value after the specified delay',
75
+ timerControlled: 'Instead of mirroring accessory, sensor will be activated when accessory auto-resets',
88
76
  },
89
77
  enumNames: {
90
78
  auto: 'Auto',
@@ -111,8 +99,8 @@ const en = {
111
99
  minutely: 'Every Minute',
112
100
  month: 'Month',
113
101
  monthly: 'Monthly',
114
- off: 'Off',
115
102
  occupancySensor: 'Occupancy',
103
+ off: 'Off',
116
104
  on: 'On',
117
105
  open: 'Open',
118
106
  outlet: 'Outlet',
@@ -126,24 +114,36 @@ const en = {
126
114
  switch: 'Switch',
127
115
  thermostat: 'Thermostat',
128
116
  unsecured: 'Unlocked',
117
+ week: 'Week',
129
118
  weekdays: 'Weekdays',
130
119
  weekends: 'Weekends',
131
- week: 'Week',
132
120
  weekly: 'Weekly',
133
121
  window: 'Window',
134
122
  windowCovering: 'Window Convering (Blinds)',
135
123
  yearly: 'Annually',
136
124
  },
125
+ migrate: 'Are you upgrading from an earlier version?',
126
+ migrationDetails1: 'HomeKit scenes and automations using %s accessories will need to be reconfigured!', // plugin name
127
+ migrationDetails2: 'Please downgrade to v0.9.2 or earlier if you want to keep your current setup.',
128
+ migrationDetails3: '%s can try to recreate your accessories, but you will still need reconfigure HomeKit scenes and automations.', // plugin name
129
+ migrationDetails4: 'Would you like to recreate your accessories now?',
130
+ migrationDetails5: 'For more details, please visit %s', // url
131
+ migrationRestartDescription: 'Please restart Homebridge to begin %s migration', // plugin name
132
+ migrationRestartTitle: 'Restart Homebridge',
133
+ no: 'No',
134
+ support: 'For documentation and support please visit %s', // url
135
+ thankYou: 'Thank you for installing %s', // plugin name
136
+ yes: 'Yes',
137
137
  title: {
138
138
  accessory: 'Accessory',
139
- commands: 'Commands',
140
139
  commandClose: 'Close Command',
141
- commandOn: 'On Command',
142
140
  commandOff: 'Off Command',
141
+ commandOn: 'On Command',
143
142
  commandOpen: 'Open Command',
144
143
  commandLock: 'Lock Command',
145
- commandUnlock: 'Unlock Command',
144
+ commands: 'Commands',
146
145
  commandTemperature: 'Temperature Changed Command',
146
+ commandUnlock: 'Unlock Command',
147
147
  cron: 'Cron',
148
148
  cronCustom: 'Custom Cron',
149
149
  defaultBrightness: 'Default Brightness',
@@ -155,19 +155,19 @@ const en = {
155
155
  enableWebook: 'Enable Webhook',
156
156
  groupName: 'Group Name',
157
157
  interval: 'Interval',
158
- name: 'Name',
159
158
  limit: 'Limit',
160
159
  limiter: 'Time Limit',
160
+ name: 'Name',
161
161
  period: 'Per',
162
162
  preset: 'Preset',
163
+ random: 'Randomize',
163
164
  resetOnRestart: 'Reset on Restart',
164
- timer: 'Auto-Reset Timer',
165
- timerControlled: 'Activate Sensor on Auto-Reset',
166
165
  schedule: 'Schedule',
167
166
  sensor: 'Attach Sensor',
167
+ timer: 'Auto-Reset Timer',
168
+ timerControlled: 'Activate Sensor on Auto-Reset',
168
169
  type: 'Type',
169
170
  units: 'Units',
170
- random: 'Randomize',
171
171
  },
172
172
  },
173
173
  sensor: {
@@ -204,9 +204,9 @@ const en = {
204
204
  startup: {
205
205
  migrationBridge: '‼️ Please restart Homebridge one more time for migration to take full effect ‼️',
206
206
  migrationComplete: 'Successfully migrated %s accessories!', // number
207
- migrationNoAccessories: 'Unable to find any accessories to migrate',
208
- migrationIgnore: 'You may safely ignore \'No plugin was found…\' errors — they should go away the next time you restart Homebridge',
209
207
  migrationFailed: 'Sorry, something went wrong with the accessory migration',
208
+ migrationIgnore: 'You may safely ignore \'No plugin was found…\' errors — they should go away the next time you restart Homebridge',
209
+ migrationNoAccessories: 'Unable to find any accessories to migrate',
210
210
  migrationRevert: 'If you encounter problems, you can find a backup config.json.bak in your Homebridge directory',
211
211
  newAccessory: 'Adding new accessory:',
212
212
  removeAccessory: 'Removing accessory:',
@@ -1 +1 @@
1
- {"version":3,"file":"en.js","sourceRoot":"","sources":["../../src/i18n/en.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"en.js","sourceRoot":"","sources":["../../src/i18n/en.ts"],"names":[],"mappings":"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"}