homebridge-eufy-security 2.2.4 → 2.3.0
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/CHANGELOG.md +39 -11
- package/README.md +26 -25
- package/dist/accessories/CameraAccessory.d.ts +55 -21
- package/dist/accessories/CameraAccessory.d.ts.map +1 -1
- package/dist/accessories/CameraAccessory.js +460 -214
- package/dist/accessories/CameraAccessory.js.map +1 -1
- package/dist/accessories/Device.d.ts +3 -3
- package/dist/accessories/Device.d.ts.map +1 -1
- package/dist/accessories/Device.js +15 -0
- package/dist/accessories/Device.js.map +1 -1
- package/dist/accessories/DoorbellCameraAccessory.d.ts +4 -1
- package/dist/accessories/DoorbellCameraAccessory.d.ts.map +1 -1
- package/dist/accessories/DoorbellCameraAccessory.js +65 -4
- package/dist/accessories/DoorbellCameraAccessory.js.map +1 -1
- package/dist/accessories/SmartLockAccessory.d.ts +2 -2
- package/dist/accessories/StationAccessory.d.ts +4 -0
- package/dist/accessories/StationAccessory.d.ts.map +1 -1
- package/dist/accessories/StationAccessory.js +64 -7
- package/dist/accessories/StationAccessory.js.map +1 -1
- package/dist/config.d.ts +4 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/controller/LocalLivestreamManager.d.ts +3 -8
- package/dist/controller/LocalLivestreamManager.d.ts.map +1 -1
- package/dist/controller/LocalLivestreamManager.js +4 -47
- package/dist/controller/LocalLivestreamManager.js.map +1 -1
- package/dist/controller/SnapshotManager.d.ts +1 -1
- package/dist/controller/SnapshotManager.d.ts.map +1 -1
- package/dist/controller/SnapshotManager.js +23 -1
- package/dist/controller/SnapshotManager.js.map +1 -1
- package/dist/controller/recordingDelegate.d.ts +29 -0
- package/dist/controller/recordingDelegate.d.ts.map +1 -0
- package/dist/controller/recordingDelegate.js +186 -0
- package/dist/controller/recordingDelegate.js.map +1 -0
- package/dist/controller/streamingDelegate.d.ts +6 -6
- package/dist/controller/streamingDelegate.d.ts.map +1 -1
- package/dist/controller/streamingDelegate.js +21 -60
- package/dist/controller/streamingDelegate.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/platform.d.ts +6 -0
- package/dist/platform.d.ts.map +1 -1
- package/dist/platform.js +112 -66
- package/dist/platform.js.map +1 -1
- package/dist/utils/EufyClientInteractor.d.ts +36 -0
- package/dist/utils/EufyClientInteractor.d.ts.map +1 -0
- package/dist/utils/EufyClientInteractor.js +357 -0
- package/dist/utils/EufyClientInteractor.js.map +1 -0
- package/dist/utils/Talkback.d.ts +0 -1
- package/dist/utils/Talkback.d.ts.map +1 -1
- package/dist/utils/configTypes.d.ts +15 -5
- package/dist/utils/configTypes.d.ts.map +1 -1
- package/dist/utils/experimental.d.ts +4 -0
- package/dist/utils/experimental.d.ts.map +1 -0
- package/dist/utils/experimental.js +49 -0
- package/dist/utils/experimental.js.map +1 -0
- package/dist/utils/ffmpeg.d.ts +30 -4
- package/dist/utils/ffmpeg.d.ts.map +1 -1
- package/dist/utils/ffmpeg.js +322 -30
- package/dist/utils/ffmpeg.js.map +1 -1
- package/dist/utils/interfaces.d.ts +13 -0
- package/dist/utils/interfaces.d.ts.map +1 -0
- package/dist/utils/interfaces.js +12 -0
- package/dist/utils/interfaces.js.map +1 -0
- package/homebridge-ui/configui/app/accessory.d.ts +1 -1
- package/homebridge-ui/configui/app/accessory.d.ts.map +1 -1
- package/homebridge-ui/configui/app/util/types.d.ts +2 -2
- package/homebridge-ui/configui/app/util/types.d.ts.map +1 -1
- package/homebridge-ui/configui/app/util/types.js +1 -1
- package/homebridge-ui/configui/app/util/types.js.map +1 -1
- package/homebridge-ui/plugin/utils/EufyClientInteractor.d.ts +36 -0
- package/homebridge-ui/plugin/utils/EufyClientInteractor.d.ts.map +1 -0
- package/homebridge-ui/plugin/utils/EufyClientInteractor.js +357 -0
- package/homebridge-ui/plugin/utils/EufyClientInteractor.js.map +1 -0
- package/homebridge-ui/plugin/utils/experimental.d.ts +4 -0
- package/homebridge-ui/plugin/utils/experimental.d.ts.map +1 -0
- package/homebridge-ui/plugin/utils/experimental.js +49 -0
- package/homebridge-ui/plugin/utils/experimental.js.map +1 -0
- package/homebridge-ui/plugin/utils/interfaces.d.ts +13 -0
- package/homebridge-ui/plugin/utils/interfaces.d.ts.map +1 -0
- package/homebridge-ui/plugin/utils/interfaces.js +12 -0
- package/homebridge-ui/plugin/utils/interfaces.js.map +1 -0
- package/homebridge-ui/plugin/utils/logger.d.ts +12 -0
- package/homebridge-ui/plugin/utils/logger.d.ts.map +1 -0
- package/homebridge-ui/plugin/utils/logger.js +36 -0
- package/homebridge-ui/plugin/utils/logger.js.map +1 -0
- package/homebridge-ui/public/3rdpartylicenses.txt +191 -6
- package/homebridge-ui/public/index.html +2 -2
- package/homebridge-ui/public/main.22a0c49e2138888f.js +1 -0
- package/homebridge-ui/public/polyfills.6050693665c0e882.js +1 -0
- package/homebridge-ui/public/styles.e02689e7df4304da.css +6 -0
- package/homebridge-ui/server.js +17 -1
- package/homebridge-ui/server.js.map +1 -1
- package/package.json +48 -46
- package/homebridge-ui/public/assets/devices/4g_lte_starlight_large.jpg +0 -0
- package/homebridge-ui/public/assets/devices/garage_camera_t8452_large.jpg +0 -0
- package/homebridge-ui/public/assets/devices/smartdrop_t8790_large.jpg +0 -0
- package/homebridge-ui/public/assets/devices/smartsafe_s10_t7400_large.jpg +0 -0
- package/homebridge-ui/public/assets/devices/smartsafe_s12_t7401_large.jpg +0 -0
- package/homebridge-ui/public/assets/devices/walllight_s100_large.jpg +0 -0
- package/homebridge-ui/public/main.0d25748cc9303f6b.js +0 -1
- package/homebridge-ui/public/polyfills.cdb21ff95fdea645.js +0 -1
- package/homebridge-ui/public/styles.021488511c20c432.css +0 -5
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "Homebridge Eufy Security",
|
|
3
3
|
"name": "homebridge-eufy-security",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.3.0",
|
|
5
5
|
"description": "Control Eufy Security from homebridge.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"repository": {
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"url": "https://github.com/homebridge-eufy-security/plugin/issues"
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
|
29
|
-
"node": ">=
|
|
30
|
-
"homebridge": ">=1.
|
|
29
|
+
"node": ">=14.17.0",
|
|
30
|
+
"homebridge": ">=1.4.1"
|
|
31
31
|
},
|
|
32
32
|
"main": "dist/index.js",
|
|
33
33
|
"scripts": {
|
|
@@ -48,55 +48,57 @@
|
|
|
48
48
|
"security-system"
|
|
49
49
|
],
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@homebridge/plugin-ui-utils": "^0.
|
|
52
|
-
"
|
|
51
|
+
"@homebridge/plugin-ui-utils": "^0.0.19",
|
|
52
|
+
"bunyan": "^1.8.15",
|
|
53
|
+
"bunyan-debug-stream": "^2.0.1",
|
|
54
|
+
"eufy-security-client": "^2.4.2",
|
|
53
55
|
"ffmpeg-for-homebridge": "0.1.4",
|
|
54
56
|
"pick-port": "^1.0.1",
|
|
55
|
-
"rotating-file-stream": "^3.
|
|
56
|
-
"tslog": "^
|
|
57
|
+
"rotating-file-stream": "^3.0.4",
|
|
58
|
+
"tslog": "^3.3.4",
|
|
57
59
|
"zip-lib": "^0.7.3"
|
|
58
60
|
},
|
|
59
61
|
"devDependencies": {
|
|
60
|
-
"@angular-devkit/build-angular": "~
|
|
61
|
-
"@angular/animations": "~
|
|
62
|
-
"@angular/cli": "~
|
|
63
|
-
"@angular/common": "~
|
|
64
|
-
"@angular/compiler": "~
|
|
65
|
-
"@angular/compiler-cli": "~
|
|
66
|
-
"@angular/core": "~
|
|
67
|
-
"@angular/forms": "~
|
|
68
|
-
"@angular/localize": "~
|
|
69
|
-
"@angular/platform-browser": "~
|
|
70
|
-
"@angular/platform-browser-dynamic": "~
|
|
71
|
-
"@angular/router": "~
|
|
72
|
-
"@fortawesome/angular-fontawesome": "^0.
|
|
73
|
-
"@fortawesome/fontawesome-svg-core": "^6.
|
|
74
|
-
"@fortawesome/free-brands-svg-icons": "^6.
|
|
75
|
-
"@fortawesome/free-regular-svg-icons": "^6.
|
|
76
|
-
"@fortawesome/free-solid-svg-icons": "^6.
|
|
77
|
-
"@ng-bootstrap/ng-bootstrap": "^
|
|
78
|
-
"@popperjs/core": "^2.
|
|
62
|
+
"@angular-devkit/build-angular": "~13.3.8",
|
|
63
|
+
"@angular/animations": "~13.3.0",
|
|
64
|
+
"@angular/cli": "~13.3.8",
|
|
65
|
+
"@angular/common": "~13.3.0",
|
|
66
|
+
"@angular/compiler": "~13.3.0",
|
|
67
|
+
"@angular/compiler-cli": "~13.3.0",
|
|
68
|
+
"@angular/core": "~13.3.0",
|
|
69
|
+
"@angular/forms": "~13.3.0",
|
|
70
|
+
"@angular/localize": "~13.3.0",
|
|
71
|
+
"@angular/platform-browser": "~13.3.0",
|
|
72
|
+
"@angular/platform-browser-dynamic": "~13.3.0",
|
|
73
|
+
"@angular/router": "~13.3.0",
|
|
74
|
+
"@fortawesome/angular-fontawesome": "^0.10.2",
|
|
75
|
+
"@fortawesome/fontawesome-svg-core": "^6.1.0",
|
|
76
|
+
"@fortawesome/free-brands-svg-icons": "^6.1.0",
|
|
77
|
+
"@fortawesome/free-regular-svg-icons": "^6.1.0",
|
|
78
|
+
"@fortawesome/free-solid-svg-icons": "^6.1.0",
|
|
79
|
+
"@ng-bootstrap/ng-bootstrap": "^12.1.2",
|
|
80
|
+
"@popperjs/core": "^2.10.2",
|
|
79
81
|
"@types/bunyan": "^1.8.8",
|
|
80
|
-
"@types/jasmine": "~
|
|
81
|
-
"@types/node": "^
|
|
82
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
83
|
-
"@typescript-eslint/parser": "^
|
|
84
|
-
"bootstrap": "^5.3
|
|
85
|
-
"eslint": "^8.
|
|
86
|
-
"homebridge": "^1.
|
|
87
|
-
"jasmine-core": "~
|
|
88
|
-
"karma": "~6.
|
|
89
|
-
"karma-chrome-launcher": "~3.
|
|
90
|
-
"karma-coverage": "~2.
|
|
91
|
-
"karma-jasmine": "~
|
|
92
|
-
"karma-jasmine-html-reporter": "~
|
|
93
|
-
"nodemon": "^
|
|
94
|
-
"rimraf": "^
|
|
95
|
-
"rxjs": "~7.
|
|
96
|
-
"ts-node": "^10.
|
|
97
|
-
"tslib": "^2.
|
|
98
|
-
"typescript": "~
|
|
99
|
-
"zone.js": "~0.
|
|
82
|
+
"@types/jasmine": "~3.10.0",
|
|
83
|
+
"@types/node": "^18.0.0",
|
|
84
|
+
"@typescript-eslint/eslint-plugin": "^5.29.0",
|
|
85
|
+
"@typescript-eslint/parser": "^5.29.0",
|
|
86
|
+
"bootstrap": "^5.1.3",
|
|
87
|
+
"eslint": "^8.18.0",
|
|
88
|
+
"homebridge": "^1.4.1",
|
|
89
|
+
"jasmine-core": "~4.0.0",
|
|
90
|
+
"karma": "~6.3.0",
|
|
91
|
+
"karma-chrome-launcher": "~3.1.0",
|
|
92
|
+
"karma-coverage": "~2.1.0",
|
|
93
|
+
"karma-jasmine": "~4.0.0",
|
|
94
|
+
"karma-jasmine-html-reporter": "~1.7.0",
|
|
95
|
+
"nodemon": "^2.0.16",
|
|
96
|
+
"rimraf": "^3.0.2",
|
|
97
|
+
"rxjs": "~7.5.0",
|
|
98
|
+
"ts-node": "^10.8.1",
|
|
99
|
+
"tslib": "^2.3.0",
|
|
100
|
+
"typescript": "~4.6.2",
|
|
101
|
+
"zone.js": "~0.11.4"
|
|
100
102
|
},
|
|
101
103
|
"overrides": {
|
|
102
104
|
"autoprefixer": "^10.4.5"
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|