File tree Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Expand file tree Collapse file tree 3 files changed +19
-4
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.2.8 " ,
4
+ "version" : " 3.2.9 " ,
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 @@ -649,6 +649,14 @@ export const deviceSecurityPanels: DeviceSecurityPanels = [
649
649
typeModel : 'Security Panel - LYNX/QuickConnect' ,
650
650
} ,
651
651
} ,
652
+ {
653
+ description : 'Ademco LYNX/ADT QuickConnect - Emergency Keys PE 95/FA 96/APA 99' ,
654
+ panel : {
655
+ emergencyKeys : 'Button: Personal Emergency (Zone 95) Button: Fire Alarm (Zone 96) Button: Audible Panic Alarm (Zone 99)' ,
656
+ manufacturerProvider : null ,
657
+ typeModel : 'Security Panel - LYNX/QuickConnect' ,
658
+ } ,
659
+ } ,
652
660
{
653
661
description : 'DSC Impassa SCW9057' ,
654
662
panel : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
- "allowJs" : true ,
3
+ "allowJs" : false ,
4
4
"allowSyntheticDefaultImports" : true ,
5
5
"baseUrl" : " ./" ,
6
6
"esModuleInterop" : true ,
7
7
"forceConsistentCasingInFileNames" : true ,
8
+ "incremental" : false ,
9
+ "isolatedModules" : false ,
10
+ "jsx" : " preserve" ,
8
11
"lib" : [
9
12
" ESNext"
10
13
],
11
14
"module" : " ESNext" ,
12
- "moduleResolution" : " Bundler" ,
15
+ "moduleResolution" : " Node" ,
16
+ "noEmit" : false ,
13
17
"noFallthroughCasesInSwitch" : true ,
14
18
"noImplicitAny" : true ,
15
19
"noImplicitReturns" : true ,
20
24
" ./src/*"
21
25
]
22
26
},
27
+ "plugins" : [],
23
28
"removeComments" : true ,
24
29
"resolveJsonModule" : true ,
25
30
"rootDir" : " ./src" ,
31
+ "skipLibCheck" : false ,
26
32
"sourceMap" : true ,
27
33
"strict" : true ,
28
34
"target" : " ESNext" ,
34
40
]
35
41
},
36
42
"include" : [
37
- " ./src"
43
+ " **/*.ts" ,
44
+ " **/*.tsx"
38
45
],
39
46
"exclude" : [
40
47
" node_modules"
You can’t perform that action at this time.
0 commit comments