pyezvizapi 1.0.1.7__py3-none-any.whl → 1.0.1.8__py3-none-any.whl

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 pyezvizapi might be problematic. Click here for more details.

pyezvizapi/__init__.py CHANGED
@@ -1,4 +1,11 @@
1
- """init pyezvizapi."""
1
+ """Top-level package for the Ezviz Cloud API helpers.
2
+
3
+ This package provides a small, typed API surface around Ezviz cloud
4
+ endpoints tailored for Home Assistant and light scripting. The
5
+ submodules contain focused functionality (client, camera/light models,
6
+ MQTT push, CAS, utilities) and this package exports the most useful
7
+ symbols for convenient imports.
8
+ """
2
9
 
3
10
  from .camera import EzvizCamera
4
11
  from .cas import EzvizCAS
@@ -28,6 +35,7 @@ from .exceptions import (
28
35
  PyEzvizError,
29
36
  )
30
37
  from .light_bulb import EzvizLightBulb
38
+ from .models import EzvizDeviceRecord, build_device_records_map
31
39
  from .mqtt import EzvizToken, MQTTClient, MqttData, ServiceUrls
32
40
  from .test_cam_rtsp import TestRTSPAuth
33
41
 
@@ -46,6 +54,7 @@ __all__ = [
46
54
  "EzvizCAS",
47
55
  "EzvizCamera",
48
56
  "EzvizClient",
57
+ "EzvizDeviceRecord",
49
58
  "EzvizLightBulb",
50
59
  "EzvizToken",
51
60
  "HTTPError",
@@ -61,4 +70,5 @@ __all__ = [
61
70
  "SoundMode",
62
71
  "SupportExt",
63
72
  "TestRTSPAuth",
73
+ "build_device_records_map",
64
74
  ]