pyEscoAPI 0.0.31__tar.gz → 0.0.32__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: pyEscoAPI
3
- Version: 0.0.31
3
+ Version: 0.0.32
4
4
  Summary: Python client for Esco API (Esco bolsa)
5
5
  Author-email: Codetria <hola@codetria.com>
6
6
  License: MIT License
@@ -1898,7 +1898,7 @@ class EscoAPI:
1898
1898
  self.__pre_connection()
1899
1899
  return self.__make_request(
1900
1900
  request_endpoint=f"/insert-cuenta-comitente",
1901
- request_body=asdict(comitente_data),
1901
+ request_body=asdict(comitente_data, dict_factory=lambda x: {k: v for k, v in x if v is not None}),
1902
1902
  request_method=HTTPMethod.POST
1903
1903
  )
1904
1904
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyEscoAPI
3
- Version: 0.0.31
3
+ Version: 0.0.32
4
4
  Summary: Python client for Esco API (Esco bolsa)
5
5
  Author-email: Codetria <hola@codetria.com>
6
6
  License: MIT License
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = 'pyEscoAPI'
7
- version = "0.0.31"
7
+ version = "0.0.32"
8
8
  license = {text = "MIT License"}
9
9
  authors = [
10
10
  { name="Codetria", email="hola@codetria.com" },
File without changes
File without changes