homebridge-adt-pulse 3.3.1 → 3.3.5
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.
- package/README.md +2 -6
- package/build/config-ui/public/assets/complete-logo-C1QwzyYf.png +0 -0
- package/build/config-ui/public/assets/index-BX0lTpP2.js +66 -0
- package/build/config-ui/public/assets/setup-logo-4wW8y1cj.png +0 -0
- package/build/config-ui/public/favicon.ico +0 -0
- package/build/config-ui/public/index.html +14 -0
- package/build/config-ui/public/style.css +4 -0
- package/build/config-ui/server.js +255 -0
- package/build/config-ui/server.js.map +1 -0
- package/build/lib/api.js +178 -174
- package/build/lib/api.js.map +1 -1
- package/build/lib/auth.js +1130 -0
- package/build/lib/auth.js.map +1 -0
- package/build/lib/detect.js +99 -97
- package/build/lib/detect.js.map +1 -1
- package/build/lib/fake.js +563 -0
- package/build/lib/fake.js.map +1 -0
- package/build/lib/items.js +9 -0
- package/build/lib/items.js.map +1 -1
- package/build/lib/platform.js +6 -3
- package/build/lib/platform.js.map +1 -1
- package/build/lib/regex.js +12 -1
- package/build/lib/regex.js.map +1 -1
- package/build/lib/schema.js +99 -1
- package/build/lib/schema.js.map +1 -1
- package/build/lib/utility.js +72 -119
- package/build/lib/utility.js.map +1 -1
- package/build/scripts/repl.js +59 -29
- package/build/scripts/repl.js.map +1 -1
- package/build/scripts/test-api.js +7 -7
- package/build/scripts/test-api.js.map +1 -1
- package/config.schema.json +14 -8
- package/package.json +40 -22
package/README.md
CHANGED
|
@@ -81,13 +81,9 @@ ADT Pulse is available to consumers in either the United States or Canada. To sp
|
|
|
81
81
|
Select the appropriate setting based on your country, as the ability to switch between countries is determined by the ADT region you are subscribed to.
|
|
82
82
|
|
|
83
83
|
## Finding the Device Fingerprint
|
|
84
|
-
Since the introduction of 2-factor authentication, a device fingerprint has become a necessity during login.
|
|
84
|
+
Since the introduction of 2-factor authentication, a device fingerprint has become a necessity during login.
|
|
85
85
|
|
|
86
|
-
|
|
87
|
-
2. Using the same browser that was used for login, visit the [ADT Pulse Device Fingerprint Detector](https://raw.githack.com/mrjackyliang/homebridge-adt-pulse/main/fingerprint/index.html) web page.
|
|
88
|
-
3. Click the "Copy Fingerprint" button and paste it into the `fingerprint` value in the `config.json` file.
|
|
89
|
-
|
|
90
|
-
For a detailed breakdown of the device fingerprint contents, explore the "Device Details" tab located at the top right of the web page.
|
|
86
|
+
Starting from `v3.4.0`, you no longer need to use an external tool to retrieve the fingerprints. The dedicated Homebridge setup wizard will help retrieve your fingerprint for you.
|
|
91
87
|
|
|
92
88
|
## Specifying the Operational Mode
|
|
93
89
|
This plugin offers three operational modes: "Normal", "Paused", and "Reset". To configure these modes, use the following settings:
|
|
Binary file
|