Skip to content

Commit b464767

Browse files
authored
Merge pull request #85 from RevEngAI/sdk-update-v2.88.5
🤖 Update SDK to version v2.88.5
2 parents bcb84c3 + 7c385eb commit b464767

6 files changed

Lines changed: 10 additions & 6 deletions

File tree

.sdk-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v2.88.3
1+
v2.88.5

docs/FirmwareApi.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@ Name | Type | Description | Notes
164164
| Status code | Description | Response headers |
165165
|-------------|-------------|------------------|
166166
**201** | Successful Response | - |
167-
**422** | Invalid request parameters | - |
167+
**422** | Unprocessable Entity | - |
168+
**500** | Internal Server Error | - |
168169

169170
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
170171

revengai/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
""" # noqa: E501
1414

1515

16-
__version__ = "v2.88.3"
16+
__version__ = "v2.88.5"
1717

1818
# Define package exports
1919
__all__ = [

revengai/api/firmware_api.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,7 @@ def upload_firmware(
360360
_response_types_map: Dict[str, Optional[str]] = {
361361
'201': "object",
362362
'422': "BaseResponse",
363+
'500': "BaseResponse",
363364
}
364365
response_data = self.api_client.call_api(
365366
*_param,
@@ -432,6 +433,7 @@ def upload_firmware_with_http_info(
432433
_response_types_map: Dict[str, Optional[str]] = {
433434
'201': "object",
434435
'422': "BaseResponse",
436+
'500': "BaseResponse",
435437
}
436438
response_data = self.api_client.call_api(
437439
*_param,
@@ -504,6 +506,7 @@ def upload_firmware_without_preload_content(
504506
_response_types_map: Dict[str, Optional[str]] = {
505507
'201': "object",
506508
'422': "BaseResponse",
509+
'500': "BaseResponse",
507510
}
508511
response_data = self.api_client.call_api(
509512
*_param,

revengai/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def __init__(
9090
self.default_headers[header_name] = header_value
9191
self.cookie = cookie
9292
# Set default User-Agent.
93-
self.user_agent = 'OpenAPI-Generator/v2.88.3/python'
93+
self.user_agent = 'OpenAPI-Generator/v2.88.5/python'
9494
self.client_side_validation = configuration.client_side_validation
9595

9696
def __enter__(self):

revengai/configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -533,8 +533,8 @@ def to_debug_report(self) -> str:
533533
return "Python SDK Debug Report:\n"\
534534
"OS: {env}\n"\
535535
"Python Version: {pyversion}\n"\
536-
"Version of the API: v2.88.3\n"\
537-
"SDK Package Version: v2.88.3".\
536+
"Version of the API: v2.88.5\n"\
537+
"SDK Package Version: v2.88.5".\
538538
format(env=sys.platform, pyversion=sys.version)
539539

540540
def get_host_settings(self) -> List[HostSetting]:

0 commit comments

Comments
 (0)