infovist-python-sdk 1.0.2__tar.gz → 1.0.4__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 (17) hide show
  1. {infovist_python_sdk-1.0.2/src/infovist_python_sdk.egg-info → infovist_python_sdk-1.0.4}/PKG-INFO +1 -1
  2. {infovist_python_sdk-1.0.2 → infovist_python_sdk-1.0.4}/pyproject.toml +1 -1
  3. {infovist_python_sdk-1.0.2 → infovist_python_sdk-1.0.4}/src/infocar/infovist/api.py +1 -1
  4. {infovist_python_sdk-1.0.2 → infovist_python_sdk-1.0.4}/src/infocar/infovist/dtos/vistoria.py +3 -3
  5. {infovist_python_sdk-1.0.2 → infovist_python_sdk-1.0.4/src/infovist_python_sdk.egg-info}/PKG-INFO +1 -1
  6. {infovist_python_sdk-1.0.2 → infovist_python_sdk-1.0.4}/LICENSE +0 -0
  7. {infovist_python_sdk-1.0.2 → infovist_python_sdk-1.0.4}/README.md +0 -0
  8. {infovist_python_sdk-1.0.2 → infovist_python_sdk-1.0.4}/setup.cfg +0 -0
  9. {infovist_python_sdk-1.0.2 → infovist_python_sdk-1.0.4}/src/__init__.py +0 -0
  10. {infovist_python_sdk-1.0.2 → infovist_python_sdk-1.0.4}/src/infocar/__init__.py +0 -0
  11. {infovist_python_sdk-1.0.2 → infovist_python_sdk-1.0.4}/src/infocar/infovist/__init__.py +0 -0
  12. {infovist_python_sdk-1.0.2 → infovist_python_sdk-1.0.4}/src/infocar/infovist/apis/__init__.py +0 -0
  13. {infovist_python_sdk-1.0.2 → infovist_python_sdk-1.0.4}/src/infocar/infovist/apis/vistoria.py +0 -0
  14. {infovist_python_sdk-1.0.2 → infovist_python_sdk-1.0.4}/src/infocar/infovist/dtos/__init__.py +0 -0
  15. {infovist_python_sdk-1.0.2 → infovist_python_sdk-1.0.4}/src/infovist_python_sdk.egg-info/SOURCES.txt +0 -0
  16. {infovist_python_sdk-1.0.2 → infovist_python_sdk-1.0.4}/src/infovist_python_sdk.egg-info/dependency_links.txt +0 -0
  17. {infovist_python_sdk-1.0.2 → infovist_python_sdk-1.0.4}/src/infovist_python_sdk.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: infovist-python-sdk
3
- Version: 1.0.2
3
+ Version: 1.0.4
4
4
  Summary: Client de comunicaçao c/ API da InfoVist
5
5
  Author-email: Filipe Coelho <filipe@fmconsult.com.br>
6
6
  License: MIT License
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "infovist-python-sdk"
7
- version = "1.0.2"
7
+ version = "1.0.4"
8
8
  description = "Client de comunicaçao c/ API da InfoVist"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
@@ -32,7 +32,7 @@ class InfoVistApi(ApiBase):
32
32
  payload = {
33
33
  'email': self.api_email,
34
34
  'password': self.api_password,
35
- 'token': self.api_token
35
+ 'api_token': self.api_token
36
36
  }
37
37
  )
38
38
  res = jsonpickle.decode(res)
@@ -19,9 +19,9 @@ class Status(CustomObject):
19
19
  @dataclass
20
20
  class Vistoria(CustomObject):
21
21
  protocol: str
22
- customer: str
23
- plate: str
24
- chassis: str
22
+ customer: Optional[str]
23
+ plate: Optional[str]
24
+ chassis: Optional[str]
25
25
  cellphone: Optional[str]
26
26
  normal_plate: Optional[str]
27
27
  mercosur_plate: Optional[str]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: infovist-python-sdk
3
- Version: 1.0.2
3
+ Version: 1.0.4
4
4
  Summary: Client de comunicaçao c/ API da InfoVist
5
5
  Author-email: Filipe Coelho <filipe@fmconsult.com.br>
6
6
  License: MIT License