Skip to content

Commit

Permalink
Updated build configuration and added panels
Browse files Browse the repository at this point in the history
### UPDATED
- TypeScript build files.

### ADDED
- Panel documentation for "Ademco LYNX/ADT QuickConnect - Emergency Keys PE 95/FA 96/APA 99".

v3.2.9
  • Loading branch information
mrjackyliang committed Mar 6, 2024
1 parent 7467c32 commit 66e84c5
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "homebridge-adt-pulse",
"displayName": "Homebridge ADT Pulse",
"version": "3.2.8",
"version": "3.2.9",
"description": "Homebridge security system platform for ADT Pulse",
"main": "./build/index.js",
"exports": "./build/index.js",
Expand Down
8 changes: 8 additions & 0 deletions src/lib/items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -649,6 +649,14 @@ export const deviceSecurityPanels: DeviceSecurityPanels = [
typeModel: 'Security Panel - LYNX/QuickConnect',
},
},
{
description: 'Ademco LYNX/ADT QuickConnect - Emergency Keys PE 95/FA 96/APA 99',
panel: {
emergencyKeys: 'Button: Personal Emergency (Zone 95) Button: Fire Alarm (Zone 96) Button: Audible Panic Alarm (Zone 99)',
manufacturerProvider: null,
typeModel: 'Security Panel - LYNX/QuickConnect',
},
},
{
description: 'DSC Impassa SCW9057',
panel: {
Expand Down
13 changes: 10 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
{
"compilerOptions": {
"allowJs": true,
"allowJs": false,
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"incremental": false,
"isolatedModules": false,
"jsx": "preserve",
"lib": [
"ESNext"
],
"module": "ESNext",
"moduleResolution": "Bundler",
"moduleResolution": "Node",
"noEmit": false,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
Expand All @@ -20,9 +24,11 @@
"./src/*"
]
},
"plugins": [],
"removeComments": true,
"resolveJsonModule": true,
"rootDir": "./src",
"skipLibCheck": false,
"sourceMap": true,
"strict": true,
"target": "ESNext",
Expand All @@ -34,7 +40,8 @@
]
},
"include": [
"./src"
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
Expand Down

0 comments on commit 66e84c5

Please sign in to comment.