recete-python-sdk 1.0.5__tar.gz → 1.0.6__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.
- {recete_python_sdk-1.0.5/src/recete_python_sdk.egg-info → recete_python_sdk-1.0.6}/PKG-INFO +1 -1
- {recete_python_sdk-1.0.5 → recete_python_sdk-1.0.6}/pyproject.toml +1 -1
- {recete_python_sdk-1.0.5 → recete_python_sdk-1.0.6}/src/recete/apis/consulta.py +1 -1
- {recete_python_sdk-1.0.5 → recete_python_sdk-1.0.6}/src/recete/apis/log_query.py +1 -1
- {recete_python_sdk-1.0.5 → recete_python_sdk-1.0.6/src/recete_python_sdk.egg-info}/PKG-INFO +1 -1
- {recete_python_sdk-1.0.5 → recete_python_sdk-1.0.6}/LICENSE +0 -0
- {recete_python_sdk-1.0.5 → recete_python_sdk-1.0.6}/README.md +0 -0
- {recete_python_sdk-1.0.5 → recete_python_sdk-1.0.6}/setup.cfg +0 -0
- {recete_python_sdk-1.0.5 → recete_python_sdk-1.0.6}/src/__init__.py +0 -0
- {recete_python_sdk-1.0.5 → recete_python_sdk-1.0.6}/src/recete/__init__.py +0 -0
- {recete_python_sdk-1.0.5 → recete_python_sdk-1.0.6}/src/recete/api.py +0 -0
- {recete_python_sdk-1.0.5 → recete_python_sdk-1.0.6}/src/recete/apis/__init__.py +0 -0
- {recete_python_sdk-1.0.5 → recete_python_sdk-1.0.6}/src/recete_python_sdk.egg-info/SOURCES.txt +0 -0
- {recete_python_sdk-1.0.5 → recete_python_sdk-1.0.6}/src/recete_python_sdk.egg-info/dependency_links.txt +0 -0
- {recete_python_sdk-1.0.5 → recete_python_sdk-1.0.6}/src/recete_python_sdk.egg-info/top_level.txt +0 -0
|
@@ -12,7 +12,7 @@ class ConsultaApi(ReceteApi):
|
|
|
12
12
|
|
|
13
13
|
def get_fd_scpc_person_type(self, person_type, document_number):
|
|
14
14
|
try:
|
|
15
|
-
self.endpoint_url = UrlUtil().make_url(self.
|
|
15
|
+
self.endpoint_url = UrlUtil().make_url(self.endpoint_url, ['fd-scpc-pf'])
|
|
16
16
|
document_type = 'cpf' if person_type == 'PF' else 'cnpj'
|
|
17
17
|
payload = { document_type: document_number }
|
|
18
18
|
res = self.call_request(HTTPMethod.POST, self.endpoint_url, None, payload=payload)
|
|
@@ -12,7 +12,7 @@ class LogQueryApi(ReceteApi):
|
|
|
12
12
|
|
|
13
13
|
def get_search_grid(self, search_term, skip=0, limit=10, sort='-startAt'):
|
|
14
14
|
try:
|
|
15
|
-
self.endpoint_url = UrlUtil().make_url(self.
|
|
15
|
+
self.endpoint_url = UrlUtil().make_url(self.endpoint_url, ['search-grid'])
|
|
16
16
|
params = {
|
|
17
17
|
'skip': skip,
|
|
18
18
|
'limit': limit,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{recete_python_sdk-1.0.5 → recete_python_sdk-1.0.6}/src/recete_python_sdk.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{recete_python_sdk-1.0.5 → recete_python_sdk-1.0.6}/src/recete_python_sdk.egg-info/top_level.txt
RENAMED
|
File without changes
|