vtexpy 0.0.0b6__tar.gz → 0.0.0b7__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.

Potentially problematic release.


This version of vtexpy might be problematic. Click here for more details.

Files changed (26) hide show
  1. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/PKG-INFO +1 -1
  2. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/pyproject.toml +1 -1
  3. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/vtex/_utils.py +1 -1
  4. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/LICENSE +0 -0
  5. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/README.md +0 -0
  6. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/vtex/__init__.py +0 -0
  7. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/vtex/_api/__init__.py +0 -0
  8. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/vtex/_api/base.py +0 -0
  9. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/vtex/_api/catalog.py +0 -0
  10. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/vtex/_api/checkout.py +0 -0
  11. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/vtex/_api/custom.py +0 -0
  12. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/vtex/_api/license_manager.py +0 -0
  13. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/vtex/_api/logistics.py +0 -0
  14. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/vtex/_api/master_data.py +0 -0
  15. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/vtex/_api/orders.py +0 -0
  16. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/vtex/_api/payments_gateway.py +0 -0
  17. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/vtex/_api/promotions_and_taxes.py +0 -0
  18. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/vtex/_config.py +0 -0
  19. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/vtex/_constants.py +0 -0
  20. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/vtex/_dto.py +0 -0
  21. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/vtex/_exceptions.py +0 -0
  22. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/vtex/_logging.py +0 -0
  23. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/vtex/_sentinels.py +0 -0
  24. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/vtex/_types.py +0 -0
  25. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/vtex/_vtex.py +0 -0
  26. {vtexpy-0.0.0b6 → vtexpy-0.0.0b7}/vtex/py.typed +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vtexpy
3
- Version: 0.0.0b6
3
+ Version: 0.0.0b7
4
4
  Summary: Unofficial Python SDK for VTEX API
5
5
  Home-page: https://github.com/lvieirajr/vtex-python
6
6
  License: MIT
@@ -32,7 +32,7 @@ classifiers = [
32
32
  packages = [
33
33
  {include = "vtex"},
34
34
  ]
35
- version = "0.0.0b6"
35
+ version = "0.0.0b7"
36
36
 
37
37
  [build-system]
38
38
  requires = ["poetry-core"]
@@ -56,7 +56,7 @@ def to_snake_case_deep(obj: JSONType) -> JSONType:
56
56
  key = to_snake_case(remove_null_bytes(key))
57
57
 
58
58
  while key in snake_cased_obj:
59
- logger.warning(
59
+ logger.debug(
60
60
  f"Snake cased key {key} appears multiple times in object",
61
61
  extra=obj,
62
62
  )
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
File without changes
File without changes