aioamazondevices 0.11.0__tar.gz → 0.11.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aioamazondevices
3
- Version: 0.11.0
3
+ Version: 0.11.1
4
4
  Summary: Python library to control Amazon devices
5
5
  Home-page: https://github.com/chemelli74/aioamazondevices
6
6
  License: Apache-2.0
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "aioamazondevices"
3
- version = "0.11.0"
3
+ version = "0.11.1"
4
4
  description = "Python library to control Amazon devices"
5
5
  authors = ["Simone Chemelli <simone.chemelli@gmail.com>"]
6
6
  license = "Apache-2.0"
@@ -1,6 +1,6 @@
1
1
  """aioamazondevices library."""
2
2
 
3
- __version__ = "0.11.0"
3
+ __version__ = "0.11.1"
4
4
 
5
5
 
6
6
  from .api import AmazonDevice, AmazonEchoApi
@@ -43,13 +43,15 @@ from .exceptions import CannotAuthenticate, CannotRegisterDevice, WrongMethod
43
43
  class AmazonDevice:
44
44
  """Amazon device class."""
45
45
 
46
- connected: bool
47
- connection_type: str
48
- ip_address: str
49
- name: str
50
- mac: str
51
- type: str
52
- wifi: str
46
+ account_name: str
47
+ capabilities: list[str]
48
+ device_family: str
49
+ device_type: str
50
+ serial_number: str
51
+ software_version: str
52
+ do_not_disturb: bool
53
+ response_style: str
54
+ bluetooth_state: bool
53
55
 
54
56
 
55
57
  class AmazonEchoApi: