mbu-dev-shared-components 0.0.35__tar.gz → 0.0.36__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.
- {mbu_dev_shared_components-0.0.35/mbu_dev_shared_components.egg-info → mbu_dev_shared_components-0.0.36}/PKG-INFO +1 -1
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/mbu_dev_shared_components/getorganized/cases.py +3 -3
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/mbu_dev_shared_components/getorganized/documents.py +1 -1
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36/mbu_dev_shared_components.egg-info}/PKG-INFO +1 -1
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/.gitignore +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/LICENSE +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/README.md +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/mbu_dev_shared_components/getorganized/__init__.py +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/mbu_dev_shared_components/getorganized/auth.py +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/mbu_dev_shared_components/getorganized/contacts.py +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/mbu_dev_shared_components/getorganized/objects.py +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/mbu_dev_shared_components/office365/__init__.py +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/mbu_dev_shared_components/office365/excel/__init__.py +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/mbu_dev_shared_components/office365/excel/excel_reader.py +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/mbu_dev_shared_components/office365/sharepoint_api/__init__.py +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/mbu_dev_shared_components/office365/sharepoint_api/files.py +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/mbu_dev_shared_components/os2forms/__init__.py +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/mbu_dev_shared_components/os2forms/documents.py +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/mbu_dev_shared_components/sap/__init__.py +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/mbu_dev_shared_components/sap/create_invoice.py +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/mbu_dev_shared_components/utils/__init__.py +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/mbu_dev_shared_components/utils/db_stored_procedure_executor.py +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/mbu_dev_shared_components/utils/json_handler.py +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/mbu_dev_shared_components.egg-info/SOURCES.txt +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/mbu_dev_shared_components.egg-info/dependency_links.txt +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/mbu_dev_shared_components.egg-info/requires.txt +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/mbu_dev_shared_components.egg-info/top_level.txt +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/pyproject.toml +0 -0
- {mbu_dev_shared_components-0.0.35 → mbu_dev_shared_components-0.0.36}/setup.cfg +0 -0
|
@@ -21,7 +21,7 @@ def find_case_by_case_properties(case_data: str, api_endpoint: str, api_username
|
|
|
21
21
|
requests.RequestException: If the HTTP request fails for any reason.
|
|
22
22
|
"""
|
|
23
23
|
headers = {"Content-Type": "application/json"}
|
|
24
|
-
response = requests.request(method='POST', url=api_endpoint, headers=headers,
|
|
24
|
+
response = requests.request(method='POST', url=api_endpoint, headers=headers, json=case_data, auth=get_ntlm_go_api_credentials(api_username, api_password), timeout=60)
|
|
25
25
|
|
|
26
26
|
return response
|
|
27
27
|
|
|
@@ -43,7 +43,7 @@ def create_case_folder(case_data: str, api_endpoint: str, api_username: str, api
|
|
|
43
43
|
requests.RequestException: If the HTTP request fails for any reason.
|
|
44
44
|
"""
|
|
45
45
|
headers = {"Content-Type": "application/json"}
|
|
46
|
-
response = requests.request(method='POST', url=api_endpoint, headers=headers,
|
|
46
|
+
response = requests.request(method='POST', url=api_endpoint, headers=headers, json=case_data, auth=get_ntlm_go_api_credentials(api_username, api_password), timeout=60)
|
|
47
47
|
|
|
48
48
|
return response
|
|
49
49
|
|
|
@@ -65,6 +65,6 @@ def create_case(case_data: str, api_endpoint: str, api_username: str, api_passwo
|
|
|
65
65
|
requests.RequestException: If the HTTP request fails for any reason.
|
|
66
66
|
"""
|
|
67
67
|
headers = {"Content-Type": "application/json"}
|
|
68
|
-
response = requests.request(method='POST', url=api_endpoint, headers=headers,
|
|
68
|
+
response = requests.request(method='POST', url=api_endpoint, headers=headers, json=case_data, auth=get_ntlm_go_api_credentials(api_username, api_password), timeout=60)
|
|
69
69
|
|
|
70
70
|
return response
|
|
@@ -21,7 +21,7 @@ def upload_file_to_case(file_data: str, api_endpoint: str, api_username: str, ap
|
|
|
21
21
|
requests.RequestException: If the HTTP request fails for any reason.
|
|
22
22
|
"""
|
|
23
23
|
headers = {'Content-Type': 'application/json'}
|
|
24
|
-
response = requests.request(method='POST', url=api_endpoint, headers=headers,
|
|
24
|
+
response = requests.request(method='POST', url=api_endpoint, headers=headers, json=file_data, auth=get_ntlm_go_api_credentials(api_username, api_password), timeout=60)
|
|
25
25
|
|
|
26
26
|
return response
|
|
27
27
|
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|