uiprotect 7.6.1__tar.gz → 7.7.0__tar.gz
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.
Potentially problematic release.
This version of uiprotect might be problematic. Click here for more details.
- {uiprotect-7.6.1 → uiprotect-7.7.0}/PKG-INFO +1 -1
- {uiprotect-7.6.1 → uiprotect-7.7.0}/pyproject.toml +1 -1
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/data/devices.py +34 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/data/nvr.py +5 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/LICENSE +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/README.md +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/__init__.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/__main__.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/_compat.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/api.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/cli/__init__.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/cli/aiports.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/cli/backup.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/cli/base.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/cli/cameras.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/cli/chimes.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/cli/doorlocks.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/cli/events.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/cli/lights.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/cli/liveviews.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/cli/nvr.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/cli/sensors.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/cli/viewers.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/data/__init__.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/data/base.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/data/bootstrap.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/data/convert.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/data/types.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/data/user.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/data/websocket.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/exceptions.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/py.typed +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/release_cache.json +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/stream.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/test_util/__init__.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/test_util/anonymize.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/utils.py +0 -0
- {uiprotect-7.6.1 → uiprotect-7.7.0}/src/uiprotect/websocket.py +0 -0
|
@@ -1442,6 +1442,40 @@ class Camera(ProtectMotionDeviceModel):
|
|
|
1442
1442
|
"""Toggles vehicle smart detection. Requires camera to have smart detection"""
|
|
1443
1443
|
return await self._set_object_detect(SmartDetectObjectType.VEHICLE, enabled)
|
|
1444
1444
|
|
|
1445
|
+
# endregion
|
|
1446
|
+
# region Face
|
|
1447
|
+
|
|
1448
|
+
@property
|
|
1449
|
+
def can_detect_face(self) -> bool:
|
|
1450
|
+
return SmartDetectObjectType.FACE in self.feature_flags.smart_detect_types
|
|
1451
|
+
|
|
1452
|
+
@property
|
|
1453
|
+
def is_face_detection_on(self) -> bool:
|
|
1454
|
+
"""Is Face Detection available and enabled?"""
|
|
1455
|
+
return self._is_smart_enabled(SmartDetectObjectType.FACE)
|
|
1456
|
+
|
|
1457
|
+
@property
|
|
1458
|
+
def last_face_detect_event(self) -> Event | None:
|
|
1459
|
+
"""Get the last face smart detection event."""
|
|
1460
|
+
return self.get_last_smart_detect_event(SmartDetectObjectType.FACE)
|
|
1461
|
+
|
|
1462
|
+
@property
|
|
1463
|
+
def last_face_detect(self) -> datetime | None:
|
|
1464
|
+
"""Get the last face smart detection event."""
|
|
1465
|
+
return self.last_smart_detects.get(SmartDetectObjectType.FACE)
|
|
1466
|
+
|
|
1467
|
+
@property
|
|
1468
|
+
def is_face_currently_detected(self) -> bool:
|
|
1469
|
+
"""Is face currently being detected"""
|
|
1470
|
+
return self._is_smart_detected(SmartDetectObjectType.FACE)
|
|
1471
|
+
|
|
1472
|
+
async def set_face_detection(self, enabled: bool) -> None:
|
|
1473
|
+
"""Toggles face smart detection. Requires camera to have smart detection"""
|
|
1474
|
+
return await self._set_object_detect(
|
|
1475
|
+
SmartDetectObjectType.FACE,
|
|
1476
|
+
enabled,
|
|
1477
|
+
)
|
|
1478
|
+
|
|
1445
1479
|
# endregion
|
|
1446
1480
|
# region License Plate
|
|
1447
1481
|
|
|
@@ -1361,6 +1361,11 @@ class NVR(ProtectDeviceModel):
|
|
|
1361
1361
|
"""
|
|
1362
1362
|
return self._is_smart_enabled(SmartDetectObjectType.VEHICLE)
|
|
1363
1363
|
|
|
1364
|
+
@property
|
|
1365
|
+
def is_global_face_detection_on(self) -> bool:
|
|
1366
|
+
"""Is Face Detection available and enabled?"""
|
|
1367
|
+
return self._is_smart_enabled(SmartDetectObjectType.FACE)
|
|
1368
|
+
|
|
1364
1369
|
@property
|
|
1365
1370
|
def is_global_license_plate_detection_on(self) -> bool:
|
|
1366
1371
|
"""
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|