File tree Expand file tree Collapse file tree 4 files changed +9
-1
lines changed Expand file tree Collapse file tree 4 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " homebridge-adt-pulse" ,
3
3
"displayName" : " Homebridge ADT Pulse" ,
4
- "version" : " 3.4.11 " ,
4
+ "version" : " 3.4.12 " ,
5
5
"description" : " Homebridge security system platform for ADT Pulse" ,
6
6
"main" : " ./build/index.js" ,
7
7
"exports" : " ./build/index.js" ,
Original file line number Diff line number Diff line change @@ -1337,6 +1337,7 @@ export class ADTPulseAPI {
1337
1337
*
1338
1338
* How the data may be displayed:
1339
1339
* ➜ "Disarmed. All Quiet."
1340
+ * ➜ "Disarmed. PERSONAL EMERGENCY ALARM. This may take several minutes."
1340
1341
* ➜ "Status Unavailable. "
1341
1342
* ➜ "All Quiet."
1342
1343
* ➜ "Armed Stay. All Quiet. This may take several minutes."
@@ -1350,6 +1351,11 @@ export class ADTPulseAPI {
1350
1351
* panelNotes: [],
1351
1352
* }
1352
1353
* ➜ {
1354
+ * panelStates: ['Disarmed'],
1355
+ * panelStatuses: [],
1356
+ * panelNotes: ['PERSONAL EMERGENCY ALARM', 'This may take several minutes'],
1357
+ * }
1358
+ * ➜ {
1353
1359
* panelStates: ['Status Unavailable'],
1354
1360
* panelStatuses: [],
1355
1361
* panelNotes: [],
Original file line number Diff line number Diff line change @@ -641,6 +641,7 @@ export const itemPanelInformationStatuses: ItemPanelInformationStatuses = [
641
641
*/
642
642
export const itemPanelStatusNotes : ItemPanelStatusNotes = [
643
643
'EXIT FAULT ALARM' ,
644
+ 'PERSONAL EMERGENCY ALARM' ,
644
645
'SILENT PANIC ALARM' ,
645
646
'This may take several minutes' ,
646
647
] ;
Original file line number Diff line number Diff line change @@ -235,6 +235,7 @@ export type PortalPanelForceArmButtonRelativeUrl =
235
235
*/
236
236
export type PortalPanelNote =
237
237
'EXIT FAULT ALARM'
238
+ | 'PERSONAL EMERGENCY ALARM'
238
239
| 'SILENT PANIC ALARM'
239
240
| 'This may take several minutes' ;
240
241
You can’t perform that action at this time.
0 commit comments