aioamazondevices 3.1.12__tar.gz → 3.1.13__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.3
2
2
  Name: aioamazondevices
3
- Version: 3.1.12
3
+ Version: 3.1.13
4
4
  Summary: Python library to control Amazon devices
5
5
  License: Apache-2.0
6
6
  Author: Simone Chemelli
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "aioamazondevices"
3
- version = "3.1.12"
3
+ version = "3.1.13"
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__ = "3.1.12"
3
+ __version__ = "3.1.13"
4
4
 
5
5
 
6
6
  from .api import AmazonDevice, AmazonEchoApi
@@ -65,7 +65,7 @@ class AmazonDeviceSensor:
65
65
  """Amazon device sensor class."""
66
66
 
67
67
  name: str
68
- value: Any
68
+ value: str | int | float
69
69
  scale: str | None
70
70
 
71
71
 
@@ -29,6 +29,9 @@ DOMAIN_BY_ISO3166_COUNTRY = {
29
29
  "jp": {
30
30
  "domain": "co.jp",
31
31
  },
32
+ "mx": {
33
+ "domain": "com.mx",
34
+ },
32
35
  "nz": {
33
36
  "domain": "com.au",
34
37
  "openid.assoc_handle": DEFAULT_ASSOC_HANDLE,