homebridge-eufy-security 4.4.2-beta.2 → 4.4.2-beta.20

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 (147) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/FUNDING.yml +1 -0
  3. package/README.md +14 -17
  4. package/dist/accessories/AutoSyncStationAccessory.js +26 -30
  5. package/dist/accessories/AutoSyncStationAccessory.js.map +1 -1
  6. package/dist/accessories/BaseAccessory.js +33 -46
  7. package/dist/accessories/BaseAccessory.js.map +1 -1
  8. package/dist/accessories/CameraAccessory.js +92 -167
  9. package/dist/accessories/CameraAccessory.js.map +1 -1
  10. package/dist/accessories/Device.js +11 -15
  11. package/dist/accessories/Device.js.map +1 -1
  12. package/dist/accessories/EntrySensorAccessory.js +7 -12
  13. package/dist/accessories/EntrySensorAccessory.js.map +1 -1
  14. package/dist/accessories/LockAccessory.js +20 -24
  15. package/dist/accessories/LockAccessory.js.map +1 -1
  16. package/dist/accessories/MotionSensorAccessory.js +7 -12
  17. package/dist/accessories/MotionSensorAccessory.js.map +1 -1
  18. package/dist/accessories/StationAccessory.js +40 -45
  19. package/dist/accessories/StationAccessory.js.map +1 -1
  20. package/dist/config.js +1 -4
  21. package/dist/config.js.map +1 -1
  22. package/dist/controller/LocalLivestreamManager.js +85 -89
  23. package/dist/controller/LocalLivestreamManager.js.map +1 -1
  24. package/dist/controller/recordingDelegate.js +116 -108
  25. package/dist/controller/recordingDelegate.js.map +1 -1
  26. package/dist/controller/snapshotDelegate.js +379 -0
  27. package/dist/controller/snapshotDelegate.js.map +1 -0
  28. package/dist/controller/streamingDelegate.js +202 -207
  29. package/dist/controller/streamingDelegate.js.map +1 -1
  30. package/dist/index.js +9 -7
  31. package/dist/index.js.map +1 -1
  32. package/dist/interfaces.js +1 -2
  33. package/dist/interfaces.js.map +1 -1
  34. package/dist/platform.js +145 -165
  35. package/dist/platform.js.map +1 -1
  36. package/dist/settings.js +26 -19
  37. package/dist/settings.js.map +1 -1
  38. package/dist/utils/Talkback.js +9 -13
  39. package/dist/utils/Talkback.js.map +1 -1
  40. package/dist/utils/configTypes.js +12 -7
  41. package/dist/utils/configTypes.js.map +1 -1
  42. package/dist/utils/ffmpeg.js +44 -52
  43. package/dist/utils/ffmpeg.js.map +1 -1
  44. package/dist/utils/interfaces.js +1 -5
  45. package/dist/utils/interfaces.js.map +1 -1
  46. package/dist/utils/utils.js +32 -134
  47. package/dist/utils/utils.js.map +1 -1
  48. package/dist/version.js +1 -4
  49. package/dist/version.js.map +1 -1
  50. package/eslint.config.mjs +25 -47
  51. package/homebridge-eufy-security.png +0 -0
  52. package/homebridge-ui/public/app.js +221 -0
  53. package/homebridge-ui/public/assets/devices/eufycam3pro_large.png +0 -0
  54. package/homebridge-ui/public/assets/devices/homebase3_large.png +0 -0
  55. package/homebridge-ui/public/assets/devices/homebasemini_large.jpg +0 -0
  56. package/homebridge-ui/public/assets/devices/indoorcamC210_large.png +0 -0
  57. package/homebridge-ui/public/assets/devices/indoorcamC220_large.png +0 -0
  58. package/homebridge-ui/public/assets/devices/indoorcamE30_large.png +0 -0
  59. package/homebridge-ui/public/assets/devices/solocamc35_large.png +0 -0
  60. package/homebridge-ui/public/assets/devices/solocame30_large.png +0 -0
  61. package/homebridge-ui/public/components/device-card.js +141 -0
  62. package/homebridge-ui/public/components/guard-modes.js +88 -0
  63. package/homebridge-ui/public/components/number-input.js +121 -0
  64. package/homebridge-ui/public/components/select.js +73 -0
  65. package/homebridge-ui/public/components/toggle.js +68 -0
  66. package/homebridge-ui/public/index.html +24 -14
  67. package/homebridge-ui/public/services/api.js +129 -0
  68. package/homebridge-ui/public/services/config.js +144 -0
  69. package/homebridge-ui/public/style.css +705 -0
  70. package/homebridge-ui/public/utils/countries.js +73 -0
  71. package/homebridge-ui/public/utils/device-images.js +69 -0
  72. package/homebridge-ui/public/utils/helpers.js +47 -0
  73. package/homebridge-ui/public/views/dashboard.js +211 -0
  74. package/homebridge-ui/public/views/device-detail.js +631 -0
  75. package/homebridge-ui/public/views/login.js +625 -0
  76. package/homebridge-ui/public/views/settings.js +389 -0
  77. package/homebridge-ui/public/views/unsupported-detail.js +216 -0
  78. package/homebridge-ui/server.js +567 -450
  79. package/package.json +19 -59
  80. package/dist/accessories/AutoSyncStationAccessory.d.ts +0 -42
  81. package/dist/accessories/AutoSyncStationAccessory.d.ts.map +0 -1
  82. package/dist/accessories/BaseAccessory.d.ts +0 -56
  83. package/dist/accessories/BaseAccessory.d.ts.map +0 -1
  84. package/dist/accessories/CameraAccessory.d.ts +0 -84
  85. package/dist/accessories/CameraAccessory.d.ts.map +0 -1
  86. package/dist/accessories/Device.d.ts +0 -19
  87. package/dist/accessories/Device.d.ts.map +0 -1
  88. package/dist/accessories/EntrySensorAccessory.d.ts +0 -25
  89. package/dist/accessories/EntrySensorAccessory.d.ts.map +0 -1
  90. package/dist/accessories/LockAccessory.d.ts +0 -45
  91. package/dist/accessories/LockAccessory.d.ts.map +0 -1
  92. package/dist/accessories/MotionSensorAccessory.d.ts +0 -25
  93. package/dist/accessories/MotionSensorAccessory.d.ts.map +0 -1
  94. package/dist/accessories/StationAccessory.d.ts +0 -86
  95. package/dist/accessories/StationAccessory.d.ts.map +0 -1
  96. package/dist/config.d.ts +0 -31
  97. package/dist/config.d.ts.map +0 -1
  98. package/dist/controller/LocalLivestreamManager.d.ts +0 -31
  99. package/dist/controller/LocalLivestreamManager.d.ts.map +0 -1
  100. package/dist/controller/SnapshotManager.d.ts +0 -64
  101. package/dist/controller/SnapshotManager.d.ts.map +0 -1
  102. package/dist/controller/SnapshotManager.js +0 -434
  103. package/dist/controller/SnapshotManager.js.map +0 -1
  104. package/dist/controller/recordingDelegate.d.ts +0 -27
  105. package/dist/controller/recordingDelegate.d.ts.map +0 -1
  106. package/dist/controller/streamingDelegate.d.ts +0 -52
  107. package/dist/controller/streamingDelegate.d.ts.map +0 -1
  108. package/dist/index.d.ts +0 -7
  109. package/dist/index.d.ts.map +0 -1
  110. package/dist/interfaces.d.ts +0 -15
  111. package/dist/interfaces.d.ts.map +0 -1
  112. package/dist/platform.d.ts +0 -94
  113. package/dist/platform.d.ts.map +0 -1
  114. package/dist/settings.d.ts +0 -23
  115. package/dist/settings.d.ts.map +0 -1
  116. package/dist/utils/Talkback.d.ts +0 -21
  117. package/dist/utils/Talkback.d.ts.map +0 -1
  118. package/dist/utils/configTypes.d.ts +0 -68
  119. package/dist/utils/configTypes.d.ts.map +0 -1
  120. package/dist/utils/ffmpeg.d.ts +0 -111
  121. package/dist/utils/ffmpeg.d.ts.map +0 -1
  122. package/dist/utils/interfaces.d.ts +0 -8
  123. package/dist/utils/interfaces.d.ts.map +0 -1
  124. package/dist/utils/utils.d.ts +0 -35
  125. package/dist/utils/utils.d.ts.map +0 -1
  126. package/dist/version.d.ts +0 -2
  127. package/dist/version.d.ts.map +0 -1
  128. package/homebridge-ui/configui/app/util/types.d.ts +0 -65
  129. package/homebridge-ui/configui/app/util/types.d.ts.map +0 -1
  130. package/homebridge-ui/configui/app/util/types.js +0 -18
  131. package/homebridge-ui/configui/app/util/types.js.map +0 -1
  132. package/homebridge-ui/public/3rdpartylicenses.txt +0 -561
  133. package/homebridge-ui/public/assets/devices/homebase2_large.jpg +0 -0
  134. package/homebridge-ui/public/assets/devices/homebase3_large.jpg +0 -0
  135. package/homebridge-ui/public/assets/images/homebridge-eufy-security.png +0 -0
  136. package/homebridge-ui/public/favicon.ico +0 -0
  137. package/homebridge-ui/public/main.f6423287e0411c87.js +0 -1
  138. package/homebridge-ui/public/polyfills.efa2f09ba3e49167.js +0 -1
  139. package/homebridge-ui/public/runtime.ccde331d62c423b3.js +0 -1
  140. package/homebridge-ui/public/styles.13e635bf7a488639.css +0 -5
  141. package/homebridge-ui/server.d.ts +0 -2
  142. package/homebridge-ui/server.d.ts.map +0 -1
  143. package/homebridge-ui/server.js.map +0 -1
  144. package/homebridge-ui/version.d.ts +0 -2
  145. package/homebridge-ui/version.d.ts.map +0 -1
  146. package/homebridge-ui/version.js +0 -5
  147. package/homebridge-ui/version.js.map +0 -1
@@ -1,561 +0,0 @@
1
- @angular/common
2
- MIT
3
- The MIT License
4
-
5
- Copyright (c) 2010-2026 Google LLC. https://angular.dev/license
6
-
7
- Permission is hereby granted, free of charge, to any person obtaining a copy
8
- of this software and associated documentation files (the "Software"), to deal
9
- in the Software without restriction, including without limitation the rights
10
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
- copies of the Software, and to permit persons to whom the Software is
12
- furnished to do so, subject to the following conditions:
13
-
14
- The above copyright notice and this permission notice shall be included in
15
- all copies or substantial portions of the Software.
16
-
17
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
- THE SOFTWARE.
24
-
25
-
26
- @angular/core
27
- MIT
28
- The MIT License
29
-
30
- Copyright (c) 2010-2026 Google LLC. https://angular.dev/license
31
-
32
- Permission is hereby granted, free of charge, to any person obtaining a copy
33
- of this software and associated documentation files (the "Software"), to deal
34
- in the Software without restriction, including without limitation the rights
35
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
36
- copies of the Software, and to permit persons to whom the Software is
37
- furnished to do so, subject to the following conditions:
38
-
39
- The above copyright notice and this permission notice shall be included in
40
- all copies or substantial portions of the Software.
41
-
42
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
43
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
44
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
45
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
46
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
47
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
48
- THE SOFTWARE.
49
-
50
-
51
- @angular/forms
52
- MIT
53
- The MIT License
54
-
55
- Copyright (c) 2010-2026 Google LLC. https://angular.dev/license
56
-
57
- Permission is hereby granted, free of charge, to any person obtaining a copy
58
- of this software and associated documentation files (the "Software"), to deal
59
- in the Software without restriction, including without limitation the rights
60
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
61
- copies of the Software, and to permit persons to whom the Software is
62
- furnished to do so, subject to the following conditions:
63
-
64
- The above copyright notice and this permission notice shall be included in
65
- all copies or substantial portions of the Software.
66
-
67
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
68
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
69
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
70
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
71
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
72
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
73
- THE SOFTWARE.
74
-
75
-
76
- @angular/localize
77
- MIT
78
- The MIT License
79
-
80
- Copyright (c) 2010-2026 Google LLC. https://angular.dev/license
81
-
82
- Permission is hereby granted, free of charge, to any person obtaining a copy
83
- of this software and associated documentation files (the "Software"), to deal
84
- in the Software without restriction, including without limitation the rights
85
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
86
- copies of the Software, and to permit persons to whom the Software is
87
- furnished to do so, subject to the following conditions:
88
-
89
- The above copyright notice and this permission notice shall be included in
90
- all copies or substantial portions of the Software.
91
-
92
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
93
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
94
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
95
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
96
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
97
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
98
- THE SOFTWARE.
99
-
100
-
101
- @angular/platform-browser
102
- MIT
103
- The MIT License
104
-
105
- Copyright (c) 2010-2026 Google LLC. https://angular.dev/license
106
-
107
- Permission is hereby granted, free of charge, to any person obtaining a copy
108
- of this software and associated documentation files (the "Software"), to deal
109
- in the Software without restriction, including without limitation the rights
110
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
111
- copies of the Software, and to permit persons to whom the Software is
112
- furnished to do so, subject to the following conditions:
113
-
114
- The above copyright notice and this permission notice shall be included in
115
- all copies or substantial portions of the Software.
116
-
117
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
118
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
119
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
120
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
121
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
122
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
123
- THE SOFTWARE.
124
-
125
-
126
- @angular/router
127
- MIT
128
- The MIT License
129
-
130
- Copyright (c) 2010-2026 Google LLC. https://angular.dev/license
131
-
132
- Permission is hereby granted, free of charge, to any person obtaining a copy
133
- of this software and associated documentation files (the "Software"), to deal
134
- in the Software without restriction, including without limitation the rights
135
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
136
- copies of the Software, and to permit persons to whom the Software is
137
- furnished to do so, subject to the following conditions:
138
-
139
- The above copyright notice and this permission notice shall be included in
140
- all copies or substantial portions of the Software.
141
-
142
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
143
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
144
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
145
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
146
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
147
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
148
- THE SOFTWARE.
149
-
150
-
151
- @ng-bootstrap/ng-bootstrap
152
- MIT
153
- The MIT License (MIT)
154
-
155
- Copyright (c) 2015-2018 Angular ng-bootstrap team
156
-
157
- Permission is hereby granted, free of charge, to any person obtaining a copy
158
- of this software and associated documentation files (the "Software"), to deal
159
- in the Software without restriction, including without limitation the rights
160
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
161
- copies of the Software, and to permit persons to whom the Software is
162
- furnished to do so, subject to the following conditions:
163
-
164
- The above copyright notice and this permission notice shall be included in
165
- all copies or substantial portions of the Software.
166
-
167
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
168
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
169
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
170
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
171
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
172
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
173
- THE SOFTWARE.
174
-
175
-
176
- @popperjs/core
177
- MIT
178
- The MIT License (MIT)
179
-
180
- Copyright (c) 2019 Federico Zivolo
181
-
182
- Permission is hereby granted, free of charge, to any person obtaining a copy of
183
- this software and associated documentation files (the "Software"), to deal in
184
- the Software without restriction, including without limitation the rights to
185
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
186
- the Software, and to permit persons to whom the Software is furnished to do so,
187
- subject to the following conditions:
188
-
189
- The above copyright notice and this permission notice shall be included in all
190
- copies or substantial portions of the Software.
191
-
192
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
193
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
194
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
195
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
196
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
197
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
198
-
199
-
200
- base64-js
201
- MIT
202
- The MIT License (MIT)
203
-
204
- Copyright (c) 2014 Jameson Little
205
-
206
- Permission is hereby granted, free of charge, to any person obtaining a copy
207
- of this software and associated documentation files (the "Software"), to deal
208
- in the Software without restriction, including without limitation the rights
209
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
210
- copies of the Software, and to permit persons to whom the Software is
211
- furnished to do so, subject to the following conditions:
212
-
213
- The above copyright notice and this permission notice shall be included in
214
- all copies or substantial portions of the Software.
215
-
216
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
217
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
218
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
219
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
220
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
221
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
222
- THE SOFTWARE.
223
-
224
-
225
- bootstrap
226
- MIT
227
- The MIT License (MIT)
228
-
229
- Copyright (c) 2011-2025 The Bootstrap Authors
230
-
231
- Permission is hereby granted, free of charge, to any person obtaining a copy
232
- of this software and associated documentation files (the "Software"), to deal
233
- in the Software without restriction, including without limitation the rights
234
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
235
- copies of the Software, and to permit persons to whom the Software is
236
- furnished to do so, subject to the following conditions:
237
-
238
- The above copyright notice and this permission notice shall be included in
239
- all copies or substantial portions of the Software.
240
-
241
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
242
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
243
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
244
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
245
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
246
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
247
- THE SOFTWARE.
248
-
249
-
250
- buffer
251
- MIT
252
- The MIT License (MIT)
253
-
254
- Copyright (c) Feross Aboukhadijeh, and other contributors.
255
-
256
- Permission is hereby granted, free of charge, to any person obtaining a copy
257
- of this software and associated documentation files (the "Software"), to deal
258
- in the Software without restriction, including without limitation the rights
259
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
260
- copies of the Software, and to permit persons to whom the Software is
261
- furnished to do so, subject to the following conditions:
262
-
263
- The above copyright notice and this permission notice shall be included in
264
- all copies or substantial portions of the Software.
265
-
266
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
267
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
268
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
269
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
270
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
271
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
272
- THE SOFTWARE.
273
-
274
-
275
- ieee754
276
- BSD-3-Clause
277
- Copyright 2008 Fair Oaks Labs, Inc.
278
-
279
- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
280
-
281
- 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
282
-
283
- 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
284
-
285
- 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
286
-
287
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
288
-
289
-
290
- lucide-angular
291
- ISC
292
- ISC License
293
-
294
- Copyright (c) for portions of Lucide are held by Cole Bemis 2013-2026 as part of Feather (MIT). All other copyright (c) for Lucide are held by Lucide Contributors 2026.
295
-
296
- Permission to use, copy, modify, and/or distribute this software for any
297
- purpose with or without fee is hereby granted, provided that the above
298
- copyright notice and this permission notice appear in all copies.
299
-
300
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
301
- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
302
- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
303
- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
304
- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
305
- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
306
- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
307
-
308
- ---
309
-
310
- The MIT License (MIT) (for portions derived from Feather)
311
-
312
- Copyright (c) 2013-2026 Cole Bemis
313
-
314
- Permission is hereby granted, free of charge, to any person obtaining a copy
315
- of this software and associated documentation files (the "Software"), to deal
316
- in the Software without restriction, including without limitation the rights
317
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
318
- copies of the Software, and to permit persons to whom the Software is
319
- furnished to do so, subject to the following conditions:
320
-
321
- The above copyright notice and this permission notice shall be included in all
322
- copies or substantial portions of the Software.
323
-
324
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
325
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
326
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
327
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
328
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
329
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
330
- SOFTWARE.
331
-
332
-
333
- rxjs
334
- Apache-2.0
335
- Apache License
336
- Version 2.0, January 2004
337
- http://www.apache.org/licenses/
338
-
339
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
340
-
341
- 1. Definitions.
342
-
343
- "License" shall mean the terms and conditions for use, reproduction,
344
- and distribution as defined by Sections 1 through 9 of this document.
345
-
346
- "Licensor" shall mean the copyright owner or entity authorized by
347
- the copyright owner that is granting the License.
348
-
349
- "Legal Entity" shall mean the union of the acting entity and all
350
- other entities that control, are controlled by, or are under common
351
- control with that entity. For the purposes of this definition,
352
- "control" means (i) the power, direct or indirect, to cause the
353
- direction or management of such entity, whether by contract or
354
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
355
- outstanding shares, or (iii) beneficial ownership of such entity.
356
-
357
- "You" (or "Your") shall mean an individual or Legal Entity
358
- exercising permissions granted by this License.
359
-
360
- "Source" form shall mean the preferred form for making modifications,
361
- including but not limited to software source code, documentation
362
- source, and configuration files.
363
-
364
- "Object" form shall mean any form resulting from mechanical
365
- transformation or translation of a Source form, including but
366
- not limited to compiled object code, generated documentation,
367
- and conversions to other media types.
368
-
369
- "Work" shall mean the work of authorship, whether in Source or
370
- Object form, made available under the License, as indicated by a
371
- copyright notice that is included in or attached to the work
372
- (an example is provided in the Appendix below).
373
-
374
- "Derivative Works" shall mean any work, whether in Source or Object
375
- form, that is based on (or derived from) the Work and for which the
376
- editorial revisions, annotations, elaborations, or other modifications
377
- represent, as a whole, an original work of authorship. For the purposes
378
- of this License, Derivative Works shall not include works that remain
379
- separable from, or merely link (or bind by name) to the interfaces of,
380
- the Work and Derivative Works thereof.
381
-
382
- "Contribution" shall mean any work of authorship, including
383
- the original version of the Work and any modifications or additions
384
- to that Work or Derivative Works thereof, that is intentionally
385
- submitted to Licensor for inclusion in the Work by the copyright owner
386
- or by an individual or Legal Entity authorized to submit on behalf of
387
- the copyright owner. For the purposes of this definition, "submitted"
388
- means any form of electronic, verbal, or written communication sent
389
- to the Licensor or its representatives, including but not limited to
390
- communication on electronic mailing lists, source code control systems,
391
- and issue tracking systems that are managed by, or on behalf of, the
392
- Licensor for the purpose of discussing and improving the Work, but
393
- excluding communication that is conspicuously marked or otherwise
394
- designated in writing by the copyright owner as "Not a Contribution."
395
-
396
- "Contributor" shall mean Licensor and any individual or Legal Entity
397
- on behalf of whom a Contribution has been received by Licensor and
398
- subsequently incorporated within the Work.
399
-
400
- 2. Grant of Copyright License. Subject to the terms and conditions of
401
- this License, each Contributor hereby grants to You a perpetual,
402
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
403
- copyright license to reproduce, prepare Derivative Works of,
404
- publicly display, publicly perform, sublicense, and distribute the
405
- Work and such Derivative Works in Source or Object form.
406
-
407
- 3. Grant of Patent License. Subject to the terms and conditions of
408
- this License, each Contributor hereby grants to You a perpetual,
409
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
410
- (except as stated in this section) patent license to make, have made,
411
- use, offer to sell, sell, import, and otherwise transfer the Work,
412
- where such license applies only to those patent claims licensable
413
- by such Contributor that are necessarily infringed by their
414
- Contribution(s) alone or by combination of their Contribution(s)
415
- with the Work to which such Contribution(s) was submitted. If You
416
- institute patent litigation against any entity (including a
417
- cross-claim or counterclaim in a lawsuit) alleging that the Work
418
- or a Contribution incorporated within the Work constitutes direct
419
- or contributory patent infringement, then any patent licenses
420
- granted to You under this License for that Work shall terminate
421
- as of the date such litigation is filed.
422
-
423
- 4. Redistribution. You may reproduce and distribute copies of the
424
- Work or Derivative Works thereof in any medium, with or without
425
- modifications, and in Source or Object form, provided that You
426
- meet the following conditions:
427
-
428
- (a) You must give any other recipients of the Work or
429
- Derivative Works a copy of this License; and
430
-
431
- (b) You must cause any modified files to carry prominent notices
432
- stating that You changed the files; and
433
-
434
- (c) You must retain, in the Source form of any Derivative Works
435
- that You distribute, all copyright, patent, trademark, and
436
- attribution notices from the Source form of the Work,
437
- excluding those notices that do not pertain to any part of
438
- the Derivative Works; and
439
-
440
- (d) If the Work includes a "NOTICE" text file as part of its
441
- distribution, then any Derivative Works that You distribute must
442
- include a readable copy of the attribution notices contained
443
- within such NOTICE file, excluding those notices that do not
444
- pertain to any part of the Derivative Works, in at least one
445
- of the following places: within a NOTICE text file distributed
446
- as part of the Derivative Works; within the Source form or
447
- documentation, if provided along with the Derivative Works; or,
448
- within a display generated by the Derivative Works, if and
449
- wherever such third-party notices normally appear. The contents
450
- of the NOTICE file are for informational purposes only and
451
- do not modify the License. You may add Your own attribution
452
- notices within Derivative Works that You distribute, alongside
453
- or as an addendum to the NOTICE text from the Work, provided
454
- that such additional attribution notices cannot be construed
455
- as modifying the License.
456
-
457
- You may add Your own copyright statement to Your modifications and
458
- may provide additional or different license terms and conditions
459
- for use, reproduction, or distribution of Your modifications, or
460
- for any such Derivative Works as a whole, provided Your use,
461
- reproduction, and distribution of the Work otherwise complies with
462
- the conditions stated in this License.
463
-
464
- 5. Submission of Contributions. Unless You explicitly state otherwise,
465
- any Contribution intentionally submitted for inclusion in the Work
466
- by You to the Licensor shall be under the terms and conditions of
467
- this License, without any additional terms or conditions.
468
- Notwithstanding the above, nothing herein shall supersede or modify
469
- the terms of any separate license agreement you may have executed
470
- with Licensor regarding such Contributions.
471
-
472
- 6. Trademarks. This License does not grant permission to use the trade
473
- names, trademarks, service marks, or product names of the Licensor,
474
- except as required for reasonable and customary use in describing the
475
- origin of the Work and reproducing the content of the NOTICE file.
476
-
477
- 7. Disclaimer of Warranty. Unless required by applicable law or
478
- agreed to in writing, Licensor provides the Work (and each
479
- Contributor provides its Contributions) on an "AS IS" BASIS,
480
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
481
- implied, including, without limitation, any warranties or conditions
482
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
483
- PARTICULAR PURPOSE. You are solely responsible for determining the
484
- appropriateness of using or redistributing the Work and assume any
485
- risks associated with Your exercise of permissions under this License.
486
-
487
- 8. Limitation of Liability. In no event and under no legal theory,
488
- whether in tort (including negligence), contract, or otherwise,
489
- unless required by applicable law (such as deliberate and grossly
490
- negligent acts) or agreed to in writing, shall any Contributor be
491
- liable to You for damages, including any direct, indirect, special,
492
- incidental, or consequential damages of any character arising as a
493
- result of this License or out of the use or inability to use the
494
- Work (including but not limited to damages for loss of goodwill,
495
- work stoppage, computer failure or malfunction, or any and all
496
- other commercial damages or losses), even if such Contributor
497
- has been advised of the possibility of such damages.
498
-
499
- 9. Accepting Warranty or Additional Liability. While redistributing
500
- the Work or Derivative Works thereof, You may choose to offer,
501
- and charge a fee for, acceptance of support, warranty, indemnity,
502
- or other liability obligations and/or rights consistent with this
503
- License. However, in accepting such obligations, You may act only
504
- on Your own behalf and on Your sole responsibility, not on behalf
505
- of any other Contributor, and only if You agree to indemnify,
506
- defend, and hold each Contributor harmless for any liability
507
- incurred by, or claims asserted against, such Contributor by reason
508
- of your accepting any such warranty or additional liability.
509
-
510
- END OF TERMS AND CONDITIONS
511
-
512
- APPENDIX: How to apply the Apache License to your work.
513
-
514
- To apply the Apache License to your work, attach the following
515
- boilerplate notice, with the fields enclosed by brackets "[]"
516
- replaced with your own identifying information. (Don't include
517
- the brackets!) The text should be enclosed in the appropriate
518
- comment syntax for the file format. We also recommend that a
519
- file or class name and description of purpose be included on the
520
- same "printed page" as the copyright notice for easier
521
- identification within third-party archives.
522
-
523
- Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors
524
-
525
- Licensed under the Apache License, Version 2.0 (the "License");
526
- you may not use this file except in compliance with the License.
527
- You may obtain a copy of the License at
528
-
529
- http://www.apache.org/licenses/LICENSE-2.0
530
-
531
- Unless required by applicable law or agreed to in writing, software
532
- distributed under the License is distributed on an "AS IS" BASIS,
533
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
534
- See the License for the specific language governing permissions and
535
- limitations under the License.
536
-
537
-
538
-
539
- zone.js
540
- MIT
541
- The MIT License
542
-
543
- Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
544
-
545
- Permission is hereby granted, free of charge, to any person obtaining a copy
546
- of this software and associated documentation files (the "Software"), to deal
547
- in the Software without restriction, including without limitation the rights
548
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
549
- copies of the Software, and to permit persons to whom the Software is
550
- furnished to do so, subject to the following conditions:
551
-
552
- The above copyright notice and this permission notice shall be included in
553
- all copies or substantial portions of the Software.
554
-
555
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
556
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
557
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
558
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
559
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
560
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
561
- THE SOFTWARE.
Binary file