From 63040d7342760ddca6995073a9324999eb6d673f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 30 Jan 2026 06:22:38 +0000 Subject: [PATCH] Update SDK to version v3.0.0 - Generated from OpenAPI spec version v3.0.0 - Auto-generated by GitHub Actions --- .sdk-version | 2 +- docs/Platform.md | 2 ++ revengai/__init__.py | 2 +- revengai/api_client.py | 2 +- revengai/configuration.py | 4 ++-- revengai/models/platform.py | 1 + 6 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.sdk-version b/.sdk-version index 1049e4e..ad55eb8 100644 --- a/.sdk-version +++ b/.sdk-version @@ -1 +1 @@ -v2.90.1 +v3.0.0 diff --git a/docs/Platform.md b/docs/Platform.md index ec9a706..bba3a06 100644 --- a/docs/Platform.md +++ b/docs/Platform.md @@ -7,6 +7,8 @@ * `WINDOWS` (value: `'windows'`) +* `ANDROID` (value: `'android'`) + [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/revengai/__init__.py b/revengai/__init__.py index 8fe855a..6be5a29 100644 --- a/revengai/__init__.py +++ b/revengai/__init__.py @@ -13,7 +13,7 @@ """ # noqa: E501 -__version__ = "v2.90.1" +__version__ = "v3.0.0" # Define package exports __all__ = [ diff --git a/revengai/api_client.py b/revengai/api_client.py index 4eb8839..2509de2 100644 --- a/revengai/api_client.py +++ b/revengai/api_client.py @@ -90,7 +90,7 @@ def __init__( self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/v2.90.1/python' + self.user_agent = 'OpenAPI-Generator/v3.0.0/python' self.client_side_validation = configuration.client_side_validation def __enter__(self): diff --git a/revengai/configuration.py b/revengai/configuration.py index 89df305..28b885e 100644 --- a/revengai/configuration.py +++ b/revengai/configuration.py @@ -533,8 +533,8 @@ def to_debug_report(self) -> str: return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: v2.90.1\n"\ - "SDK Package Version: v2.90.1".\ + "Version of the API: v3.0.0\n"\ + "SDK Package Version: v3.0.0".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self) -> List[HostSetting]: diff --git a/revengai/models/platform.py b/revengai/models/platform.py index 40dfbe3..aa84588 100644 --- a/revengai/models/platform.py +++ b/revengai/models/platform.py @@ -27,6 +27,7 @@ class Platform(str, Enum): """ LINUX = 'linux' WINDOWS = 'windows' + ANDROID = 'android' @classmethod def from_json(cls, json_str: str) -> Self: