cosmotech-api 3.3.4__py3-none-any.whl → 4.0.0.dev8__py3-none-any.whl

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 cosmotech-api might be problematic. Click here for more details.

Files changed (259) hide show
  1. cosmotech_api/__init__.py +3 -49
  2. cosmotech_api/api/__init__.py +0 -3
  3. cosmotech_api/api/connector_api.py +7 -263
  4. cosmotech_api/api/dataset_api.py +65 -69
  5. cosmotech_api/api/organization_api.py +15 -882
  6. cosmotech_api/api/run_api.py +9 -11
  7. cosmotech_api/api/runner_api.py +20 -21
  8. cosmotech_api/api/scenario_api.py +121 -141
  9. cosmotech_api/api/scenariorun_api.py +66 -76
  10. cosmotech_api/api/scenariorunresult_api.py +1 -1
  11. cosmotech_api/api/solution_api.py +397 -1053
  12. cosmotech_api/api/twingraph_api.py +72 -83
  13. cosmotech_api/api/validator_api.py +1 -1
  14. cosmotech_api/api/workspace_api.py +14 -312
  15. cosmotech_api/api_client.py +1 -1
  16. cosmotech_api/configuration.py +5 -13
  17. cosmotech_api/exceptions.py +1 -1
  18. cosmotech_api/model/component_role_permissions.py +1 -1
  19. cosmotech_api/model/connector.py +1 -1
  20. cosmotech_api/model/connector_parameter.py +1 -1
  21. cosmotech_api/model/connector_parameter_group.py +1 -1
  22. cosmotech_api/model/container_resource_size_info.py +1 -1
  23. cosmotech_api/model/container_resource_sizing.py +1 -1
  24. cosmotech_api/model/dataset.py +1 -1
  25. cosmotech_api/model/dataset_access_control.py +1 -1
  26. cosmotech_api/model/dataset_compatibility.py +1 -1
  27. cosmotech_api/model/dataset_connector.py +1 -1
  28. cosmotech_api/model/dataset_copy_parameters.py +1 -1
  29. cosmotech_api/model/dataset_role.py +1 -1
  30. cosmotech_api/model/dataset_search.py +1 -1
  31. cosmotech_api/model/dataset_security.py +1 -1
  32. cosmotech_api/model/dataset_source_type.py +1 -1
  33. cosmotech_api/model/dataset_twin_graph_hash.py +1 -1
  34. cosmotech_api/model/dataset_twin_graph_info.py +1 -1
  35. cosmotech_api/model/dataset_twin_graph_query.py +1 -1
  36. cosmotech_api/model/delete_historical_data.py +1 -1
  37. cosmotech_api/model/file_upload_metadata.py +1 -1
  38. cosmotech_api/model/file_upload_validation.py +1 -1
  39. cosmotech_api/model/graph_properties.py +1 -1
  40. cosmotech_api/model/organization.py +1 -1
  41. cosmotech_api/model/organization_access_control.py +1 -1
  42. cosmotech_api/model/organization_role.py +1 -1
  43. cosmotech_api/model/organization_security.py +1 -1
  44. cosmotech_api/model/organization_service.py +1 -1
  45. cosmotech_api/model/organization_services.py +1 -1
  46. cosmotech_api/model/resource_size_info.py +1 -1
  47. cosmotech_api/model/run.py +1 -1
  48. cosmotech_api/model/run_container.py +1 -1
  49. cosmotech_api/model/run_container_artifact.py +1 -1
  50. cosmotech_api/model/run_container_logs.py +1 -1
  51. cosmotech_api/model/run_logs.py +1 -1
  52. cosmotech_api/model/run_resource_requested.py +1 -1
  53. cosmotech_api/model/run_search.py +1 -1
  54. cosmotech_api/model/run_start_containers.py +1 -1
  55. cosmotech_api/model/run_state.py +1 -1
  56. cosmotech_api/model/run_status.py +1 -1
  57. cosmotech_api/model/run_status_node.py +1 -1
  58. cosmotech_api/model/run_template.py +1 -1
  59. cosmotech_api/model/run_template_handler_id.py +1 -1
  60. cosmotech_api/model/run_template_orchestrator.py +1 -1
  61. cosmotech_api/model/run_template_parameter.py +1 -1
  62. cosmotech_api/model/run_template_parameter_group.py +1 -1
  63. cosmotech_api/model/run_template_parameter_value.py +1 -1
  64. cosmotech_api/model/run_template_resource_sizing.py +1 -1
  65. cosmotech_api/model/run_template_step_source.py +1 -1
  66. cosmotech_api/model/runner.py +1 -1
  67. cosmotech_api/model/runner_access_control.py +1 -1
  68. cosmotech_api/model/runner_changed_parameter_value.py +1 -1
  69. cosmotech_api/model/runner_comparison_result.py +1 -1
  70. cosmotech_api/model/runner_data_download_info.py +1 -1
  71. cosmotech_api/model/runner_data_download_job.py +1 -1
  72. cosmotech_api/model/runner_job_state.py +1 -1
  73. cosmotech_api/model/runner_last_run.py +1 -1
  74. cosmotech_api/model/runner_resource_sizing.py +1 -1
  75. cosmotech_api/model/runner_role.py +1 -1
  76. cosmotech_api/model/runner_run_template_parameter_value.py +1 -1
  77. cosmotech_api/model/runner_security.py +1 -1
  78. cosmotech_api/model/runner_validation_status.py +1 -1
  79. cosmotech_api/model/scenario.py +1 -1
  80. cosmotech_api/model/scenario_access_control.py +1 -1
  81. cosmotech_api/model/scenario_changed_parameter_value.py +1 -1
  82. cosmotech_api/model/scenario_comparison_result.py +1 -1
  83. cosmotech_api/model/scenario_data_download_info.py +1 -1
  84. cosmotech_api/model/scenario_data_download_job.py +1 -1
  85. cosmotech_api/model/scenario_job_state.py +1 -1
  86. cosmotech_api/model/scenario_last_run.py +1 -1
  87. cosmotech_api/model/scenario_resource_sizing.py +1 -1
  88. cosmotech_api/model/scenario_role.py +1 -1
  89. cosmotech_api/model/scenario_run.py +1 -1
  90. cosmotech_api/model/scenario_run_container.py +1 -1
  91. cosmotech_api/model/scenario_run_container_artifact.py +1 -1
  92. cosmotech_api/model/scenario_run_container_logs.py +1 -1
  93. cosmotech_api/model/scenario_run_logs.py +1 -1
  94. cosmotech_api/model/scenario_run_resource_requested.py +1 -1
  95. cosmotech_api/model/scenario_run_result.py +1 -1
  96. cosmotech_api/model/scenario_run_search.py +1 -1
  97. cosmotech_api/model/scenario_run_start_containers.py +1 -1
  98. cosmotech_api/model/scenario_run_state.py +1 -1
  99. cosmotech_api/model/scenario_run_status.py +1 -1
  100. cosmotech_api/model/scenario_run_status_node.py +1 -1
  101. cosmotech_api/model/scenario_run_template_parameter_value.py +1 -1
  102. cosmotech_api/model/scenario_security.py +1 -1
  103. cosmotech_api/model/scenario_validation_status.py +1 -1
  104. cosmotech_api/model/solution.py +1 -1
  105. cosmotech_api/model/solution_access_control.py +1 -1
  106. cosmotech_api/model/solution_role.py +1 -1
  107. cosmotech_api/model/solution_security.py +1 -1
  108. cosmotech_api/model/source_info.py +1 -1
  109. cosmotech_api/model/sub_dataset_graph_query.py +1 -1
  110. cosmotech_api/model/translated_labels.py +1 -1
  111. cosmotech_api/model/twin_graph_batch_result.py +1 -1
  112. cosmotech_api/model/twin_graph_hash.py +1 -1
  113. cosmotech_api/model/twin_graph_query.py +1 -1
  114. cosmotech_api/model/validator.py +1 -1
  115. cosmotech_api/model/validator_run.py +1 -1
  116. cosmotech_api/model/workspace.py +1 -1
  117. cosmotech_api/model/workspace_access_control.py +1 -1
  118. cosmotech_api/model/workspace_file.py +1 -1
  119. cosmotech_api/model/workspace_role.py +1 -1
  120. cosmotech_api/model/workspace_secret.py +1 -1
  121. cosmotech_api/model/workspace_security.py +1 -1
  122. cosmotech_api/model/workspace_solution.py +1 -1
  123. cosmotech_api/model/workspace_web_app.py +1 -1
  124. cosmotech_api/model_utils.py +1 -1
  125. cosmotech_api/models/__init__.py +3 -46
  126. cosmotech_api/models/component_role_permissions.py +1 -1
  127. cosmotech_api/models/connector.py +3 -7
  128. cosmotech_api/models/connector_parameter.py +1 -1
  129. cosmotech_api/models/connector_parameter_group.py +1 -1
  130. cosmotech_api/models/container_resource_size_info.py +1 -1
  131. cosmotech_api/models/container_resource_sizing.py +1 -1
  132. cosmotech_api/models/created_run.py +1 -1
  133. cosmotech_api/models/dataset.py +1 -1
  134. cosmotech_api/models/dataset_access_control.py +1 -1
  135. cosmotech_api/models/dataset_compatibility.py +1 -1
  136. cosmotech_api/models/dataset_connector.py +1 -1
  137. cosmotech_api/models/dataset_copy_parameters.py +1 -1
  138. cosmotech_api/models/dataset_role.py +1 -1
  139. cosmotech_api/models/dataset_search.py +1 -1
  140. cosmotech_api/models/dataset_security.py +1 -1
  141. cosmotech_api/models/dataset_source_type.py +1 -1
  142. cosmotech_api/models/dataset_twin_graph_hash.py +1 -1
  143. cosmotech_api/models/dataset_twin_graph_info.py +1 -1
  144. cosmotech_api/models/dataset_twin_graph_query.py +1 -1
  145. cosmotech_api/models/delete_historical_data.py +1 -1
  146. cosmotech_api/models/file_upload_metadata.py +1 -1
  147. cosmotech_api/models/file_upload_validation.py +1 -1
  148. cosmotech_api/models/graph_properties.py +1 -1
  149. cosmotech_api/models/ingestion_status_enum.py +1 -1
  150. cosmotech_api/models/io_types_enum.py +1 -1
  151. cosmotech_api/models/organization.py +2 -8
  152. cosmotech_api/models/organization_access_control.py +1 -1
  153. cosmotech_api/models/organization_role.py +1 -1
  154. cosmotech_api/models/organization_security.py +1 -1
  155. cosmotech_api/models/organization_service.py +7 -7
  156. cosmotech_api/models/organization_services.py +7 -7
  157. cosmotech_api/models/query_result.py +1 -1
  158. cosmotech_api/models/resource_size_info.py +1 -1
  159. cosmotech_api/models/run.py +1 -1
  160. cosmotech_api/models/run_container.py +3 -13
  161. cosmotech_api/models/run_container_artifact.py +7 -7
  162. cosmotech_api/models/run_container_logs.py +7 -7
  163. cosmotech_api/models/run_data.py +1 -1
  164. cosmotech_api/models/run_data_query.py +1 -1
  165. cosmotech_api/models/run_logs.py +16 -21
  166. cosmotech_api/models/run_logs_entry.py +1 -1
  167. cosmotech_api/models/run_resource_requested.py +1 -1
  168. cosmotech_api/models/run_search.py +7 -7
  169. cosmotech_api/models/run_search_state.py +1 -1
  170. cosmotech_api/models/run_start_containers.py +10 -10
  171. cosmotech_api/models/run_state.py +1 -1
  172. cosmotech_api/models/run_status.py +1 -1
  173. cosmotech_api/models/run_status_node.py +1 -1
  174. cosmotech_api/models/run_template.py +1 -1
  175. cosmotech_api/models/run_template_handler_id.py +1 -1
  176. cosmotech_api/models/run_template_orchestrator.py +1 -1
  177. cosmotech_api/models/run_template_parameter.py +1 -1
  178. cosmotech_api/models/run_template_parameter_group.py +1 -1
  179. cosmotech_api/models/run_template_parameter_value.py +1 -1
  180. cosmotech_api/models/run_template_resource_sizing.py +1 -1
  181. cosmotech_api/models/run_template_step_source.py +1 -1
  182. cosmotech_api/models/runner.py +5 -24
  183. cosmotech_api/models/runner_access_control.py +1 -1
  184. cosmotech_api/models/runner_changed_parameter_value.py +7 -7
  185. cosmotech_api/models/runner_comparison_result.py +10 -10
  186. cosmotech_api/models/runner_data_download_info.py +9 -12
  187. cosmotech_api/models/runner_data_download_job.py +7 -7
  188. cosmotech_api/models/runner_job_state.py +1 -1
  189. cosmotech_api/models/runner_last_run.py +7 -7
  190. cosmotech_api/models/runner_parent_last_run.py +7 -7
  191. cosmotech_api/models/runner_resource_sizing.py +1 -1
  192. cosmotech_api/models/runner_role.py +1 -1
  193. cosmotech_api/models/runner_root_last_run.py +7 -7
  194. cosmotech_api/models/runner_run_template_parameter_value.py +1 -1
  195. cosmotech_api/models/runner_security.py +1 -1
  196. cosmotech_api/models/runner_validation_status.py +1 -1
  197. cosmotech_api/models/scenario.py +10 -10
  198. cosmotech_api/models/scenario_access_control.py +7 -7
  199. cosmotech_api/models/scenario_changed_parameter_value.py +7 -7
  200. cosmotech_api/models/scenario_comparison_result.py +10 -10
  201. cosmotech_api/models/scenario_data_download_info.py +7 -7
  202. cosmotech_api/models/scenario_data_download_job.py +7 -7
  203. cosmotech_api/models/scenario_job_state.py +1 -1
  204. cosmotech_api/models/scenario_last_run.py +7 -7
  205. cosmotech_api/models/scenario_resource_sizing.py +7 -7
  206. cosmotech_api/models/scenario_role.py +7 -7
  207. cosmotech_api/models/scenario_run.py +13 -13
  208. cosmotech_api/models/scenario_run_container.py +10 -10
  209. cosmotech_api/models/scenario_run_container_artifact.py +7 -7
  210. cosmotech_api/models/scenario_run_container_logs.py +7 -7
  211. cosmotech_api/models/scenario_run_logs.py +10 -10
  212. cosmotech_api/models/scenario_run_resource_requested.py +7 -7
  213. cosmotech_api/models/scenario_run_search.py +7 -7
  214. cosmotech_api/models/scenario_run_search_state.py +1 -1
  215. cosmotech_api/models/scenario_run_start_containers.py +10 -10
  216. cosmotech_api/models/scenario_run_state.py +1 -1
  217. cosmotech_api/models/scenario_run_status.py +10 -10
  218. cosmotech_api/models/scenario_run_status_node.py +7 -7
  219. cosmotech_api/models/scenario_run_template_parameter_value.py +7 -7
  220. cosmotech_api/models/scenario_security.py +10 -10
  221. cosmotech_api/models/scenario_validation_status.py +1 -1
  222. cosmotech_api/models/send_run_data_request.py +1 -1
  223. cosmotech_api/models/solution.py +2 -2
  224. cosmotech_api/models/solution_access_control.py +1 -1
  225. cosmotech_api/models/solution_role.py +1 -1
  226. cosmotech_api/models/solution_security.py +1 -1
  227. cosmotech_api/models/source_info.py +1 -1
  228. cosmotech_api/models/sub_dataset_graph_query.py +1 -1
  229. cosmotech_api/models/twin_graph_batch_result.py +1 -1
  230. cosmotech_api/models/twin_graph_hash.py +7 -7
  231. cosmotech_api/models/twin_graph_query.py +7 -7
  232. cosmotech_api/models/twincache_status_enum.py +1 -1
  233. cosmotech_api/models/validator.py +7 -7
  234. cosmotech_api/models/workspace.py +2 -2
  235. cosmotech_api/models/workspace_access_control.py +1 -1
  236. cosmotech_api/models/workspace_file.py +1 -1
  237. cosmotech_api/models/workspace_role.py +1 -1
  238. cosmotech_api/models/workspace_secret.py +7 -7
  239. cosmotech_api/models/workspace_security.py +1 -1
  240. cosmotech_api/models/workspace_solution.py +1 -1
  241. cosmotech_api/models/workspace_web_app.py +1 -1
  242. cosmotech_api/rest.py +1 -1
  243. {cosmotech_api-3.3.4.dist-info → cosmotech_api-4.0.0.dev8.dist-info}/METADATA +5 -13
  244. cosmotech_api-4.0.0.dev8.dist-info/RECORD +262 -0
  245. {cosmotech_api-3.3.4.dist-info → cosmotech_api-4.0.0.dev8.dist-info}/WHEEL +1 -1
  246. cosmotech_api/api/meta_api.py +0 -281
  247. cosmotech_api/models/about_info.py +0 -92
  248. cosmotech_api/models/about_info_version.py +0 -100
  249. cosmotech_api/models/organization_create_request.py +0 -95
  250. cosmotech_api/models/organization_update_request.py +0 -89
  251. cosmotech_api/models/runner_create_request.py +0 -154
  252. cosmotech_api/models/runner_update_request.py +0 -123
  253. cosmotech_api/models/solution_create_request.py +0 -143
  254. cosmotech_api/models/solution_update_request.py +0 -107
  255. cosmotech_api/models/workspace_create_request.py +0 -117
  256. cosmotech_api/models/workspace_update_request.py +0 -109
  257. cosmotech_api-3.3.4.dist-info/RECORD +0 -273
  258. {cosmotech_api-3.3.4.dist-info → cosmotech_api-4.0.0.dev8.dist-info}/LICENSE +0 -0
  259. {cosmotech_api-3.3.4.dist-info → cosmotech_api-4.0.0.dev8.dist-info}/top_level.txt +0 -0
@@ -5,7 +5,7 @@
5
5
 
6
6
  Cosmo Tech Platform API
7
7
 
8
- The version of the OpenAPI document: 3.3.4
8
+ The version of the OpenAPI document: 3.2.10
9
9
  Contact: platform@cosmotech.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -18,7 +18,7 @@ from typing import Any, Dict, List, Optional, Tuple, Union
18
18
  from typing_extensions import Annotated
19
19
 
20
20
  from pydantic import Field, StrictBytes, StrictStr, field_validator
21
- from typing import Any, Dict, List, Optional, Union
21
+ from typing import Dict, List, Optional, Union
22
22
  from typing_extensions import Annotated
23
23
  from cosmotech_api.models.graph_properties import GraphProperties
24
24
  from cosmotech_api.models.twin_graph_batch_result import TwinGraphBatchResult
@@ -287,7 +287,7 @@ class TwingraphApi:
287
287
  _query_params: List[Tuple[str, str]] = []
288
288
  _header_params: Dict[str, Optional[str]] = _headers or {}
289
289
  _form_params: List[Tuple[str, str]] = []
290
- _files: Dict[str, Union[str, bytes]] = {}
290
+ _files: Dict[str, str] = {}
291
291
  _body_params: Optional[bytes] = None
292
292
 
293
293
  # process the path parameters
@@ -304,12 +304,11 @@ class TwingraphApi:
304
304
 
305
305
 
306
306
  # set the HTTP header `Accept`
307
- if 'Accept' not in _header_params:
308
- _header_params['Accept'] = self.api_client.select_header_accept(
309
- [
310
- 'application/json'
311
- ]
312
- )
307
+ _header_params['Accept'] = self.api_client.select_header_accept(
308
+ [
309
+ 'application/json'
310
+ ]
311
+ )
313
312
 
314
313
  # set the HTTP header `Content-Type`
315
314
  if _content_type:
@@ -608,7 +607,7 @@ class TwingraphApi:
608
607
  _query_params: List[Tuple[str, str]] = []
609
608
  _header_params: Dict[str, Optional[str]] = _headers or {}
610
609
  _form_params: List[Tuple[str, str]] = []
611
- _files: Dict[str, Union[str, bytes]] = {}
610
+ _files: Dict[str, str] = {}
612
611
  _body_params: Optional[bytes] = None
613
612
 
614
613
  # process the path parameters
@@ -634,12 +633,11 @@ class TwingraphApi:
634
633
 
635
634
 
636
635
  # set the HTTP header `Accept`
637
- if 'Accept' not in _header_params:
638
- _header_params['Accept'] = self.api_client.select_header_accept(
639
- [
640
- 'application/json'
641
- ]
642
- )
636
+ _header_params['Accept'] = self.api_client.select_header_accept(
637
+ [
638
+ 'application/json'
639
+ ]
640
+ )
643
641
 
644
642
  # set the HTTP header `Content-Type`
645
643
  if _content_type:
@@ -937,7 +935,7 @@ class TwingraphApi:
937
935
  _query_params: List[Tuple[str, str]] = []
938
936
  _header_params: Dict[str, Optional[str]] = _headers or {}
939
937
  _form_params: List[Tuple[str, str]] = []
940
- _files: Dict[str, Union[str, bytes]] = {}
938
+ _files: Dict[str, str] = {}
941
939
  _body_params: Optional[bytes] = None
942
940
 
943
941
  # process the path parameters
@@ -956,12 +954,11 @@ class TwingraphApi:
956
954
 
957
955
 
958
956
  # set the HTTP header `Accept`
959
- if 'Accept' not in _header_params:
960
- _header_params['Accept'] = self.api_client.select_header_accept(
961
- [
962
- 'application/json'
963
- ]
964
- )
957
+ _header_params['Accept'] = self.api_client.select_header_accept(
958
+ [
959
+ 'application/json'
960
+ ]
961
+ )
965
962
 
966
963
  # set the HTTP header `Content-Type`
967
964
  if _content_type:
@@ -1244,7 +1241,7 @@ class TwingraphApi:
1244
1241
  _query_params: List[Tuple[str, str]] = []
1245
1242
  _header_params: Dict[str, Optional[str]] = _headers or {}
1246
1243
  _form_params: List[Tuple[str, str]] = []
1247
- _files: Dict[str, Union[str, bytes]] = {}
1244
+ _files: Dict[str, str] = {}
1248
1245
  _body_params: Optional[bytes] = None
1249
1246
 
1250
1247
  # process the path parameters
@@ -1534,7 +1531,7 @@ class TwingraphApi:
1534
1531
  _query_params: List[Tuple[str, str]] = []
1535
1532
  _header_params: Dict[str, Optional[str]] = _headers or {}
1536
1533
  _form_params: List[Tuple[str, str]] = []
1537
- _files: Dict[str, Union[str, bytes]] = {}
1534
+ _files: Dict[str, str] = {}
1538
1535
  _body_params: Optional[bytes] = None
1539
1536
 
1540
1537
  # process the path parameters
@@ -1831,7 +1828,7 @@ class TwingraphApi:
1831
1828
  _query_params: List[Tuple[str, str]] = []
1832
1829
  _header_params: Dict[str, Optional[str]] = _headers or {}
1833
1830
  _form_params: List[Tuple[str, str]] = []
1834
- _files: Dict[str, Union[str, bytes]] = {}
1831
+ _files: Dict[str, str] = {}
1835
1832
  _body_params: Optional[bytes] = None
1836
1833
 
1837
1834
  # process the path parameters
@@ -2107,7 +2104,7 @@ class TwingraphApi:
2107
2104
  _query_params: List[Tuple[str, str]] = []
2108
2105
  _header_params: Dict[str, Optional[str]] = _headers or {}
2109
2106
  _form_params: List[Tuple[str, str]] = []
2110
- _files: Dict[str, Union[str, bytes]] = {}
2107
+ _files: Dict[str, str] = {}
2111
2108
  _body_params: Optional[bytes] = None
2112
2109
 
2113
2110
  # process the path parameters
@@ -2122,12 +2119,11 @@ class TwingraphApi:
2122
2119
 
2123
2120
 
2124
2121
  # set the HTTP header `Accept`
2125
- if 'Accept' not in _header_params:
2126
- _header_params['Accept'] = self.api_client.select_header_accept(
2127
- [
2128
- 'application/octet-stream'
2129
- ]
2130
- )
2122
+ _header_params['Accept'] = self.api_client.select_header_accept(
2123
+ [
2124
+ 'application/octet-stream'
2125
+ ]
2126
+ )
2131
2127
 
2132
2128
 
2133
2129
  # authentication setting
@@ -2371,7 +2367,7 @@ class TwingraphApi:
2371
2367
  _query_params: List[Tuple[str, str]] = []
2372
2368
  _header_params: Dict[str, Optional[str]] = _headers or {}
2373
2369
  _form_params: List[Tuple[str, str]] = []
2374
- _files: Dict[str, Union[str, bytes]] = {}
2370
+ _files: Dict[str, str] = {}
2375
2371
  _body_params: Optional[bytes] = None
2376
2372
 
2377
2373
  # process the path parameters
@@ -2384,12 +2380,11 @@ class TwingraphApi:
2384
2380
 
2385
2381
 
2386
2382
  # set the HTTP header `Accept`
2387
- if 'Accept' not in _header_params:
2388
- _header_params['Accept'] = self.api_client.select_header_accept(
2389
- [
2390
- 'application/json'
2391
- ]
2392
- )
2383
+ _header_params['Accept'] = self.api_client.select_header_accept(
2384
+ [
2385
+ 'application/json'
2386
+ ]
2387
+ )
2393
2388
 
2394
2389
 
2395
2390
  # authentication setting
@@ -2673,7 +2668,7 @@ class TwingraphApi:
2673
2668
  _query_params: List[Tuple[str, str]] = []
2674
2669
  _header_params: Dict[str, Optional[str]] = _headers or {}
2675
2670
  _form_params: List[Tuple[str, str]] = []
2676
- _files: Dict[str, Union[str, bytes]] = {}
2671
+ _files: Dict[str, str] = {}
2677
2672
  _body_params: Optional[bytes] = None
2678
2673
 
2679
2674
  # process the path parameters
@@ -2694,12 +2689,11 @@ class TwingraphApi:
2694
2689
 
2695
2690
 
2696
2691
  # set the HTTP header `Accept`
2697
- if 'Accept' not in _header_params:
2698
- _header_params['Accept'] = self.api_client.select_header_accept(
2699
- [
2700
- 'application/json'
2701
- ]
2702
- )
2692
+ _header_params['Accept'] = self.api_client.select_header_accept(
2693
+ [
2694
+ 'application/json'
2695
+ ]
2696
+ )
2703
2697
 
2704
2698
 
2705
2699
  # authentication setting
@@ -2956,7 +2950,7 @@ class TwingraphApi:
2956
2950
  _query_params: List[Tuple[str, str]] = []
2957
2951
  _header_params: Dict[str, Optional[str]] = _headers or {}
2958
2952
  _form_params: List[Tuple[str, str]] = []
2959
- _files: Dict[str, Union[str, bytes]] = {}
2953
+ _files: Dict[str, str] = {}
2960
2954
  _body_params: Optional[bytes] = None
2961
2955
 
2962
2956
  # process the path parameters
@@ -2971,12 +2965,11 @@ class TwingraphApi:
2971
2965
 
2972
2966
 
2973
2967
  # set the HTTP header `Accept`
2974
- if 'Accept' not in _header_params:
2975
- _header_params['Accept'] = self.api_client.select_header_accept(
2976
- [
2977
- 'application/json'
2978
- ]
2979
- )
2968
+ _header_params['Accept'] = self.api_client.select_header_accept(
2969
+ [
2970
+ 'application/json'
2971
+ ]
2972
+ )
2980
2973
 
2981
2974
 
2982
2975
  # authentication setting
@@ -3233,7 +3226,7 @@ class TwingraphApi:
3233
3226
  _query_params: List[Tuple[str, str]] = []
3234
3227
  _header_params: Dict[str, Optional[str]] = _headers or {}
3235
3228
  _form_params: List[Tuple[str, str]] = []
3236
- _files: Dict[str, Union[str, bytes]] = {}
3229
+ _files: Dict[str, str] = {}
3237
3230
  _body_params: Optional[bytes] = None
3238
3231
 
3239
3232
  # process the path parameters
@@ -3248,13 +3241,12 @@ class TwingraphApi:
3248
3241
 
3249
3242
 
3250
3243
  # set the HTTP header `Accept`
3251
- if 'Accept' not in _header_params:
3252
- _header_params['Accept'] = self.api_client.select_header_accept(
3253
- [
3254
- 'application/yaml',
3255
- 'application/json'
3256
- ]
3257
- )
3244
+ _header_params['Accept'] = self.api_client.select_header_accept(
3245
+ [
3246
+ 'application/yaml',
3247
+ 'application/json'
3248
+ ]
3249
+ )
3258
3250
 
3259
3251
 
3260
3252
  # authentication setting
@@ -3524,7 +3516,7 @@ class TwingraphApi:
3524
3516
  _query_params: List[Tuple[str, str]] = []
3525
3517
  _header_params: Dict[str, Optional[str]] = _headers or {}
3526
3518
  _form_params: List[Tuple[str, str]] = []
3527
- _files: Dict[str, Union[str, bytes]] = {}
3519
+ _files: Dict[str, str] = {}
3528
3520
  _body_params: Optional[bytes] = None
3529
3521
 
3530
3522
  # process the path parameters
@@ -3541,12 +3533,11 @@ class TwingraphApi:
3541
3533
 
3542
3534
 
3543
3535
  # set the HTTP header `Accept`
3544
- if 'Accept' not in _header_params:
3545
- _header_params['Accept'] = self.api_client.select_header_accept(
3546
- [
3547
- 'application/json'
3548
- ]
3549
- )
3536
+ _header_params['Accept'] = self.api_client.select_header_accept(
3537
+ [
3538
+ 'application/json'
3539
+ ]
3540
+ )
3550
3541
 
3551
3542
  # set the HTTP header `Content-Type`
3552
3543
  if _content_type:
@@ -3844,7 +3835,7 @@ class TwingraphApi:
3844
3835
  _query_params: List[Tuple[str, str]] = []
3845
3836
  _header_params: Dict[str, Optional[str]] = _headers or {}
3846
3837
  _form_params: List[Tuple[str, str]] = []
3847
- _files: Dict[str, Union[str, bytes]] = {}
3838
+ _files: Dict[str, str] = {}
3848
3839
  _body_params: Optional[bytes] = None
3849
3840
 
3850
3841
  # process the path parameters
@@ -3863,12 +3854,11 @@ class TwingraphApi:
3863
3854
 
3864
3855
 
3865
3856
  # set the HTTP header `Accept`
3866
- if 'Accept' not in _header_params:
3867
- _header_params['Accept'] = self.api_client.select_header_accept(
3868
- [
3869
- 'application/json'
3870
- ]
3871
- )
3857
+ _header_params['Accept'] = self.api_client.select_header_accept(
3858
+ [
3859
+ 'application/json'
3860
+ ]
3861
+ )
3872
3862
 
3873
3863
  # set the HTTP header `Content-Type`
3874
3864
  if _content_type:
@@ -4151,7 +4141,7 @@ class TwingraphApi:
4151
4141
  _query_params: List[Tuple[str, str]] = []
4152
4142
  _header_params: Dict[str, Optional[str]] = _headers or {}
4153
4143
  _form_params: List[Tuple[str, str]] = []
4154
- _files: Dict[str, Union[str, bytes]] = {}
4144
+ _files: Dict[str, str] = {}
4155
4145
  _body_params: Optional[bytes] = None
4156
4146
 
4157
4147
  # process the path parameters
@@ -4168,12 +4158,11 @@ class TwingraphApi:
4168
4158
 
4169
4159
 
4170
4160
  # set the HTTP header `Accept`
4171
- if 'Accept' not in _header_params:
4172
- _header_params['Accept'] = self.api_client.select_header_accept(
4173
- [
4174
- 'application/json'
4175
- ]
4176
- )
4161
+ _header_params['Accept'] = self.api_client.select_header_accept(
4162
+ [
4163
+ 'application/json'
4164
+ ]
4165
+ )
4177
4166
 
4178
4167
  # set the HTTP header `Content-Type`
4179
4168
  if _content_type:
@@ -3,7 +3,7 @@
3
3
 
4
4
  Cosmo Tech Platform API # noqa: E501
5
5
 
6
- The version of the OpenAPI document: 3.1.13
6
+ The version of the OpenAPI document: 3.1.10
7
7
  Contact: platform@cosmotech.com
8
8
  Generated by: https://openapi-generator.tech
9
9
  """