homebridge-eufy-security 2.2.0-beta.14 → 2.2.0-beta.15

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.
Files changed (123) hide show
  1. package/.gitmodules +3 -0
  2. package/CHANGELOG.md +5 -5
  3. package/eufy-security-client/LICENSE +21 -0
  4. package/eufy-security-client/README.md +677 -0
  5. package/eufy-security-client/build/error.d.ts +57 -0
  6. package/eufy-security-client/build/error.js +156 -0
  7. package/eufy-security-client/build/error.js.map +1 -0
  8. package/eufy-security-client/build/eufysecurity.d.ts +159 -0
  9. package/eufy-security-client/build/eufysecurity.js +2073 -0
  10. package/eufy-security-client/build/eufysecurity.js.map +1 -0
  11. package/eufy-security-client/build/http/api.d.ts +90 -0
  12. package/eufy-security-client/build/http/api.js +1360 -0
  13. package/eufy-security-client/build/http/api.js.map +1 -0
  14. package/eufy-security-client/build/http/cache.d.ts +8 -0
  15. package/eufy-security-client/build/http/cache.js +34 -0
  16. package/eufy-security-client/build/http/cache.js.map +1 -0
  17. package/eufy-security-client/build/http/const.d.ts +3 -0
  18. package/eufy-security-client/build/http/const.js +8546 -0
  19. package/eufy-security-client/build/http/const.js.map +1 -0
  20. package/eufy-security-client/build/http/device.d.ts +360 -0
  21. package/eufy-security-client/build/http/device.js +2794 -0
  22. package/eufy-security-client/build/http/device.js.map +1 -0
  23. package/eufy-security-client/build/http/error.d.ts +28 -0
  24. package/eufy-security-client/build/http/error.js +77 -0
  25. package/eufy-security-client/build/http/error.js.map +1 -0
  26. package/eufy-security-client/build/http/index.d.ts +10 -0
  27. package/eufy-security-client/build/http/index.js +30 -0
  28. package/eufy-security-client/build/http/index.js.map +1 -0
  29. package/eufy-security-client/build/http/interfaces.d.ts +201 -0
  30. package/eufy-security-client/build/http/interfaces.js +3 -0
  31. package/eufy-security-client/build/http/interfaces.js.map +1 -0
  32. package/eufy-security-client/build/http/models.d.ts +561 -0
  33. package/eufy-security-client/build/http/models.js +3 -0
  34. package/eufy-security-client/build/http/models.js.map +1 -0
  35. package/eufy-security-client/build/http/parameter.d.ts +5 -0
  36. package/eufy-security-client/build/http/parameter.js +75 -0
  37. package/eufy-security-client/build/http/parameter.js.map +1 -0
  38. package/eufy-security-client/build/http/station.d.ts +291 -0
  39. package/eufy-security-client/build/http/station.js +6777 -0
  40. package/eufy-security-client/build/http/station.js.map +1 -0
  41. package/eufy-security-client/build/http/types.d.ts +939 -0
  42. package/eufy-security-client/build/http/types.js +6029 -0
  43. package/eufy-security-client/build/http/types.js.map +1 -0
  44. package/eufy-security-client/build/http/utils.d.ts +37 -0
  45. package/eufy-security-client/build/http/utils.js +371 -0
  46. package/eufy-security-client/build/http/utils.js.map +1 -0
  47. package/eufy-security-client/build/index.d.ts +7 -0
  48. package/eufy-security-client/build/index.js +26 -0
  49. package/eufy-security-client/build/index.js.map +1 -0
  50. package/eufy-security-client/build/interfaces.d.ts +109 -0
  51. package/eufy-security-client/build/interfaces.js +3 -0
  52. package/eufy-security-client/build/interfaces.js.map +1 -0
  53. package/eufy-security-client/build/mqtt/interface.d.ts +6 -0
  54. package/eufy-security-client/build/mqtt/interface.js +3 -0
  55. package/eufy-security-client/build/mqtt/interface.js.map +1 -0
  56. package/eufy-security-client/build/mqtt/model.d.ts +24 -0
  57. package/eufy-security-client/build/mqtt/model.js +3 -0
  58. package/eufy-security-client/build/mqtt/model.js.map +1 -0
  59. package/eufy-security-client/build/mqtt/mqtt-eufy.crt +79 -0
  60. package/eufy-security-client/build/mqtt/proto/lock.proto +33 -0
  61. package/eufy-security-client/build/mqtt/service.d.ts +30 -0
  62. package/eufy-security-client/build/mqtt/service.js +169 -0
  63. package/eufy-security-client/build/mqtt/service.js.map +1 -0
  64. package/eufy-security-client/build/p2p/ble.d.ts +47 -0
  65. package/eufy-security-client/build/p2p/ble.js +189 -0
  66. package/eufy-security-client/build/p2p/ble.js.map +1 -0
  67. package/eufy-security-client/build/p2p/error.d.ts +24 -0
  68. package/eufy-security-client/build/p2p/error.js +68 -0
  69. package/eufy-security-client/build/p2p/error.js.map +1 -0
  70. package/eufy-security-client/build/p2p/index.d.ts +8 -0
  71. package/eufy-security-client/build/p2p/index.js +28 -0
  72. package/eufy-security-client/build/p2p/index.js.map +1 -0
  73. package/eufy-security-client/build/p2p/interfaces.d.ts +161 -0
  74. package/eufy-security-client/build/p2p/interfaces.js +3 -0
  75. package/eufy-security-client/build/p2p/interfaces.js.map +1 -0
  76. package/eufy-security-client/build/p2p/models.d.ts +146 -0
  77. package/eufy-security-client/build/p2p/models.js +3 -0
  78. package/eufy-security-client/build/p2p/models.js.map +1 -0
  79. package/eufy-security-client/build/p2p/session.d.ts +166 -0
  80. package/eufy-security-client/build/p2p/session.js +2071 -0
  81. package/eufy-security-client/build/p2p/session.js.map +1 -0
  82. package/eufy-security-client/build/p2p/talkback.d.ts +10 -0
  83. package/eufy-security-client/build/p2p/talkback.js +23 -0
  84. package/eufy-security-client/build/p2p/talkback.js.map +1 -0
  85. package/eufy-security-client/build/p2p/types.d.ts +895 -0
  86. package/eufy-security-client/build/p2p/types.js +929 -0
  87. package/eufy-security-client/build/p2p/types.js.map +1 -0
  88. package/eufy-security-client/build/p2p/utils.d.ts +60 -0
  89. package/eufy-security-client/build/p2p/utils.js +689 -0
  90. package/eufy-security-client/build/p2p/utils.js.map +1 -0
  91. package/eufy-security-client/build/push/client.d.ts +51 -0
  92. package/eufy-security-client/build/push/client.js +311 -0
  93. package/eufy-security-client/build/push/client.js.map +1 -0
  94. package/eufy-security-client/build/push/index.d.ts +5 -0
  95. package/eufy-security-client/build/push/index.js +25 -0
  96. package/eufy-security-client/build/push/index.js.map +1 -0
  97. package/eufy-security-client/build/push/interfaces.d.ts +19 -0
  98. package/eufy-security-client/build/push/interfaces.js +3 -0
  99. package/eufy-security-client/build/push/interfaces.js.map +1 -0
  100. package/eufy-security-client/build/push/models.d.ts +292 -0
  101. package/eufy-security-client/build/push/models.js +31 -0
  102. package/eufy-security-client/build/push/models.js.map +1 -0
  103. package/eufy-security-client/build/push/parser.d.ts +28 -0
  104. package/eufy-security-client/build/push/parser.js +216 -0
  105. package/eufy-security-client/build/push/parser.js.map +1 -0
  106. package/eufy-security-client/build/push/proto/checkin.proto +266 -0
  107. package/eufy-security-client/build/push/proto/mcs.proto +328 -0
  108. package/eufy-security-client/build/push/service.d.ts +45 -0
  109. package/eufy-security-client/build/push/service.js +642 -0
  110. package/eufy-security-client/build/push/service.js.map +1 -0
  111. package/eufy-security-client/build/push/types.d.ts +176 -0
  112. package/eufy-security-client/build/push/types.js +193 -0
  113. package/eufy-security-client/build/push/types.js.map +1 -0
  114. package/eufy-security-client/build/push/utils.d.ts +7 -0
  115. package/eufy-security-client/build/push/utils.js +103 -0
  116. package/eufy-security-client/build/push/utils.js.map +1 -0
  117. package/eufy-security-client/build/utils.d.ts +12 -0
  118. package/eufy-security-client/build/utils.js +182 -0
  119. package/eufy-security-client/build/utils.js.map +1 -0
  120. package/eufy-security-client/package.json +75 -0
  121. package/homebridge-ui/server.js +18 -0
  122. package/homebridge-ui/server.js.map +1 -1
  123. package/package.json +4 -3
package/.gitmodules CHANGED
@@ -0,0 +1,3 @@
1
+ [submodule "eufy-security-client"]
2
+ path = eufy-security-client
3
+ url = https://github.com/homebridge-eufy-security/eufy-security-client.git
package/CHANGELOG.md CHANGED
@@ -2,16 +2,15 @@
2
2
 
3
3
  You can find the complete detailled changelog for every beta release [here](https://github.com/homebridge-eufy-security/plugin/releases).
4
4
 
5
- ## 2.2.0-beta.14 - latest changes
5
+ ## 2.2.0-beta.15 - latest changes
6
6
 
7
- ### Added
7
+ ### Changed
8
8
 
9
- - Setting to add a switch to turn indoor chime on/off on some doorbells
10
- - Setting for mono/stereo talkback configuration (needed for certain devices)
9
+ - eufy-security-client library is now added as forked dependency to enable direct changes
11
10
 
12
11
  ### Fixed
13
12
 
14
- - Talkback was not working properly due to wrong channel configuration (can now be chosen: mono/stereo) #196
13
+ - Trying to fix login issue #250
15
14
 
16
15
  ## 2.2.0 (Beta)
17
16
 
@@ -42,6 +41,7 @@ You can find the complete detailled changelog for every beta release [here](http
42
41
  - Warn the user if multiple cameras are connected through the same station and limit critical options for these cameras (snapshot method and HKSV)
43
42
  - Log errors in command results from eufy-security-client library to homebridge
44
43
  - Removed overhead in stream processing improve performance
44
+ - eufy-security-client library is now added as forked dependency to enable direct changes
45
45
 
46
46
  ### Fixed
47
47
 
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2022 bropat <patrick.broetto@gmail.com>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.