Skip to content

Commit b7e6bc4

Browse files
committed
Documentation for extra gateways
### ADDED - Documentation for "Lynx/QuickConnect Cellular-Only Gateway". - "Security Panel Master Code:" and "Serial Number:" to the list of should-remove keys when sending information via detectors. v3.0.5
1 parent cc6e0cd commit b7e6bc4

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "homebridge-adt-pulse",
33
"displayName": "Homebridge ADT Pulse",
4-
"version": "3.0.4",
4+
"version": "3.0.5",
55
"description": "Homebridge security system platform for ADT Pulse",
66
"main": "./build/index.js",
77
"exports": "./build/index.js",

src/lib/api.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -868,7 +868,8 @@ export class ADTPulse {
868868

869869
// If the parsing function may be parsing data incorrectly.
870870
if (
871-
Object.keys(fetchedTableCells).length !== 11 // Compact SMA Protocol Gateway / Cellular Mode.
871+
Object.keys(fetchedTableCells).length !== 10 // Lynx/QuickConnect Cellular-Only Gateway / Cellular Mode.
872+
&& Object.keys(fetchedTableCells).length !== 11 // Compact SMA Protocol Gateway / Cellular Mode.
872873
&& Object.keys(fetchedTableCells).length !== 17 // ADT Pulse Gateway / Broadband Mode / No Router WAN IP Address.
873874
&& Object.keys(fetchedTableCells).length !== 18 // ADT Pulse Gateway / Broadband Mode.
874875
) {

src/lib/utility.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1249,8 +1249,10 @@ export function removePersonalIdentifiableInformation(data: RemovePersonalIdenti
12491249
'mac',
12501250
'masterCode',
12511251
'sat',
1252+
'Security Panel Master Code:',
12521253
'serial',
12531254
'serialNumber',
1255+
'Serial Number:',
12541256
'wanIp',
12551257
];
12561258

0 commit comments

Comments
 (0)