plugwise 1.3.0__tar.gz → 1.3.1__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.
Files changed (32) hide show
  1. {plugwise-1.3.0 → plugwise-1.3.1}/PKG-INFO +1 -1
  2. {plugwise-1.3.0 → plugwise-1.3.1}/plugwise/constants.py +5 -3
  3. {plugwise-1.3.0 → plugwise-1.3.1}/plugwise.egg-info/PKG-INFO +1 -1
  4. {plugwise-1.3.0 → plugwise-1.3.1}/pyproject.toml +1 -1
  5. {plugwise-1.3.0 → plugwise-1.3.1}/LICENSE +0 -0
  6. {plugwise-1.3.0 → plugwise-1.3.1}/README.md +0 -0
  7. {plugwise-1.3.0 → plugwise-1.3.1}/plugwise/__init__.py +0 -0
  8. {plugwise-1.3.0 → plugwise-1.3.1}/plugwise/common.py +0 -0
  9. {plugwise-1.3.0 → plugwise-1.3.1}/plugwise/data.py +0 -0
  10. {plugwise-1.3.0 → plugwise-1.3.1}/plugwise/exceptions.py +0 -0
  11. {plugwise-1.3.0 → plugwise-1.3.1}/plugwise/helper.py +0 -0
  12. {plugwise-1.3.0 → plugwise-1.3.1}/plugwise/legacy/data.py +0 -0
  13. {plugwise-1.3.0 → plugwise-1.3.1}/plugwise/legacy/helper.py +0 -0
  14. {plugwise-1.3.0 → plugwise-1.3.1}/plugwise/legacy/smile.py +0 -0
  15. {plugwise-1.3.0 → plugwise-1.3.1}/plugwise/py.typed +0 -0
  16. {plugwise-1.3.0 → plugwise-1.3.1}/plugwise/smile.py +0 -0
  17. {plugwise-1.3.0 → plugwise-1.3.1}/plugwise/util.py +0 -0
  18. {plugwise-1.3.0 → plugwise-1.3.1}/plugwise.egg-info/SOURCES.txt +0 -0
  19. {plugwise-1.3.0 → plugwise-1.3.1}/plugwise.egg-info/dependency_links.txt +0 -0
  20. {plugwise-1.3.0 → plugwise-1.3.1}/plugwise.egg-info/requires.txt +0 -0
  21. {plugwise-1.3.0 → plugwise-1.3.1}/plugwise.egg-info/top_level.txt +0 -0
  22. {plugwise-1.3.0 → plugwise-1.3.1}/setup.cfg +0 -0
  23. {plugwise-1.3.0 → plugwise-1.3.1}/setup.py +0 -0
  24. {plugwise-1.3.0 → plugwise-1.3.1}/tests/test_adam.py +0 -0
  25. {plugwise-1.3.0 → plugwise-1.3.1}/tests/test_anna.py +0 -0
  26. {plugwise-1.3.0 → plugwise-1.3.1}/tests/test_generic.py +0 -0
  27. {plugwise-1.3.0 → plugwise-1.3.1}/tests/test_init.py +0 -0
  28. {plugwise-1.3.0 → plugwise-1.3.1}/tests/test_legacy_anna.py +0 -0
  29. {plugwise-1.3.0 → plugwise-1.3.1}/tests/test_legacy_generic.py +0 -0
  30. {plugwise-1.3.0 → plugwise-1.3.1}/tests/test_legacy_p1.py +0 -0
  31. {plugwise-1.3.0 → plugwise-1.3.1}/tests/test_legacy_stretch.py +0 -0
  32. {plugwise-1.3.0 → plugwise-1.3.1}/tests/test_p1.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: plugwise
3
- Version: 1.3.0
3
+ Version: 1.3.1
4
4
  Summary: Plugwise Smile (Adam/Anna/P1) and Stretch module for Python 3.
5
5
  Home-page: https://github.com/plugwise/python-plugwise
6
6
  Author: Plugwise device owners
@@ -252,6 +252,7 @@ ApplianceType = Literal[
252
252
  "mac_address",
253
253
  "members",
254
254
  "model",
255
+ "model_id",
255
256
  "name",
256
257
  "vendor",
257
258
  "zigbee_mac_address",
@@ -511,15 +512,16 @@ class DeviceData(TypedDict, total=False):
511
512
 
512
513
  # Appliance base data
513
514
  dev_class: str
514
- firmware: str | None
515
+ firmware: str
515
516
  hardware: str
516
517
  location: str
517
- mac_address: str | None
518
+ mac_address: str
518
519
  members: list[str]
519
520
  model: str
521
+ model_id: str
520
522
  name: str
521
523
  vendor: str
522
- zigbee_mac_address: str | None
524
+ zigbee_mac_address: str
523
525
 
524
526
  # For temporary use
525
527
  cooling_enabled: bool
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: plugwise
3
- Version: 1.3.0
3
+ Version: 1.3.1
4
4
  Summary: Plugwise Smile (Adam/Anna/P1) and Stretch module for Python 3.
5
5
  Home-page: https://github.com/plugwise/python-plugwise
6
6
  Author: Plugwise device owners
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "plugwise"
7
- version = "1.3.0"
7
+ version = "1.3.1"
8
8
  license = {file = "LICENSE"}
9
9
  description = "Plugwise Smile (Adam/Anna/P1) and Stretch module for Python 3."
10
10
  readme = "README.md"
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