aioamazondevices 11.0.1__tar.gz → 11.0.2__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 (23) hide show
  1. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/PKG-INFO +1 -1
  2. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/pyproject.toml +1 -1
  3. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/__init__.py +1 -1
  4. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/http_wrapper.py +1 -0
  5. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/LICENSE +0 -0
  6. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/README.md +0 -0
  7. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/api.py +0 -0
  8. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/const/__init__.py +0 -0
  9. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/const/devices.py +0 -0
  10. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/const/http.py +0 -0
  11. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/const/metadata.py +0 -0
  12. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/const/queries.py +0 -0
  13. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/const/schedules.py +0 -0
  14. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/const/sounds.py +0 -0
  15. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/exceptions.py +0 -0
  16. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/implementation/__init__.py +0 -0
  17. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/implementation/dnd.py +0 -0
  18. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/implementation/notification.py +0 -0
  19. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/implementation/sequence.py +0 -0
  20. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/login.py +0 -0
  21. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/py.typed +0 -0
  22. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/structures.py +0 -0
  23. {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aioamazondevices
3
- Version: 11.0.1
3
+ Version: 11.0.2
4
4
  Summary: Python library to control Amazon devices
5
5
  License-Expression: Apache-2.0
6
6
  License-File: LICENSE
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "aioamazondevices"
3
- version = "11.0.1"
3
+ version = "11.0.2"
4
4
  requires-python = ">=3.12"
5
5
  description = "Python library to control Amazon devices"
6
6
  authors = [
@@ -1,6 +1,6 @@
1
1
  """aioamazondevices library."""
2
2
 
3
- __version__ = "11.0.1"
3
+ __version__ = "11.0.2"
4
4
 
5
5
 
6
6
  from .api import AmazonDevice, AmazonEchoApi
@@ -371,6 +371,7 @@ class AmazonHttpWrapper:
371
371
  ]:
372
372
  raise CannotAuthenticate(await self.http_phrase_error(resp.status))
373
373
  if not await self._ignore_ap_signin_error(resp):
374
+ _LOGGER.debug("Error response content: %s", await resp.text())
374
375
  raise CannotRetrieveData(
375
376
  f"Request failed: {await self.http_phrase_error(resp.status)}"
376
377
  )