diff --git a/ibutsu_client/__init__.py b/ibutsu_client/__init__.py index db342db..552fb68 100644 --- a/ibutsu_client/__init__.py +++ b/ibutsu_client/__init__.py @@ -5,7 +5,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. @@ -76,89 +76,13 @@ "WidgetTypeList", ] -if __import__("typing").TYPE_CHECKING: - # import apis into sdk package - from ibutsu_client.api.admin_project_management_api import ( - AdminProjectManagementApi as AdminProjectManagementApi, - ) - from ibutsu_client.api.admin_user_management_api import ( - AdminUserManagementApi as AdminUserManagementApi, - ) - from ibutsu_client.api.artifact_api import ArtifactApi as ArtifactApi - from ibutsu_client.api.dashboard_api import DashboardApi as DashboardApi - from ibutsu_client.api.group_api import GroupApi as GroupApi - from ibutsu_client.api.health_api import HealthApi as HealthApi - from ibutsu_client.api.import_api import ImportApi as ImportApi - from ibutsu_client.api.login_api import LoginApi as LoginApi - from ibutsu_client.api.project_api import ProjectApi as ProjectApi - from ibutsu_client.api.result_api import ResultApi as ResultApi - from ibutsu_client.api.run_api import RunApi as RunApi - from ibutsu_client.api.task_api import TaskApi as TaskApi - from ibutsu_client.api.user_api import UserApi as UserApi - from ibutsu_client.api.widget_api import WidgetApi as WidgetApi - from ibutsu_client.api.widget_config_api import WidgetConfigApi as WidgetConfigApi - - # import ApiClient - from ibutsu_client.api_response import ApiResponse as ApiResponse - from ibutsu_client.api_client import ApiClient as ApiClient - from ibutsu_client.configuration import Configuration as Configuration - from ibutsu_client.exceptions import OpenApiException as OpenApiException - from ibutsu_client.exceptions import ApiTypeError as ApiTypeError - from ibutsu_client.exceptions import ApiValueError as ApiValueError - from ibutsu_client.exceptions import ApiKeyError as ApiKeyError - from ibutsu_client.exceptions import ApiAttributeError as ApiAttributeError - from ibutsu_client.exceptions import ApiException as ApiException - - # import models into sdk package - from ibutsu_client.models.account_recovery import AccountRecovery as AccountRecovery - from ibutsu_client.models.account_registration import ( - AccountRegistration as AccountRegistration, - ) - from ibutsu_client.models.account_reset import AccountReset as AccountReset - from ibutsu_client.models.artifact import Artifact as Artifact - from ibutsu_client.models.artifact_list import ArtifactList as ArtifactList - from ibutsu_client.models.create_token import CreateToken as CreateToken - from ibutsu_client.models.credentials import Credentials as Credentials - from ibutsu_client.models.dashboard import Dashboard as Dashboard - from ibutsu_client.models.dashboard_list import DashboardList as DashboardList - from ibutsu_client.models.group import Group as Group - from ibutsu_client.models.group_list import GroupList as GroupList - from ibutsu_client.models.health import Health as Health - from ibutsu_client.models.health_info import HealthInfo as HealthInfo - from ibutsu_client.models.login_config import LoginConfig as LoginConfig - from ibutsu_client.models.login_error import LoginError as LoginError - from ibutsu_client.models.login_support import LoginSupport as LoginSupport - from ibutsu_client.models.login_token import LoginToken as LoginToken - from ibutsu_client.models.model_import import ModelImport as ModelImport - from ibutsu_client.models.pagination import Pagination as Pagination - from ibutsu_client.models.project import Project as Project - from ibutsu_client.models.project_list import ProjectList as ProjectList - from ibutsu_client.models.result import Result as Result - from ibutsu_client.models.result_list import ResultList as ResultList - from ibutsu_client.models.run import Run as Run - from ibutsu_client.models.run_list import RunList as RunList - from ibutsu_client.models.token import Token as Token - from ibutsu_client.models.token_list import TokenList as TokenList - from ibutsu_client.models.update_run import UpdateRun as UpdateRun - from ibutsu_client.models.user import User as User - from ibutsu_client.models.user_list import UserList as UserList - from ibutsu_client.models.widget_config import WidgetConfig as WidgetConfig - from ibutsu_client.models.widget_config_list import WidgetConfigList as WidgetConfigList - from ibutsu_client.models.widget_param import WidgetParam as WidgetParam - from ibutsu_client.models.widget_type import WidgetType as WidgetType - from ibutsu_client.models.widget_type_list import WidgetTypeList as WidgetTypeList - -else: - from lazy_imports import LazyModule, as_package, load - - load( - LazyModule( - *as_package(__file__), - ("__version__", __version__), - ("__all__", __all__), - """# import apis into sdk package -from ibutsu_client.api.admin_project_management_api import AdminProjectManagementApi as AdminProjectManagementApi -from ibutsu_client.api.admin_user_management_api import AdminUserManagementApi as AdminUserManagementApi +# import apis into sdk package +from ibutsu_client.api.admin_project_management_api import ( + AdminProjectManagementApi as AdminProjectManagementApi, +) +from ibutsu_client.api.admin_user_management_api import ( + AdminUserManagementApi as AdminUserManagementApi, +) from ibutsu_client.api.artifact_api import ArtifactApi as ArtifactApi from ibutsu_client.api.dashboard_api import DashboardApi as DashboardApi from ibutsu_client.api.group_api import GroupApi as GroupApi @@ -220,9 +144,3 @@ from ibutsu_client.models.widget_param import WidgetParam as WidgetParam from ibutsu_client.models.widget_type import WidgetType as WidgetType from ibutsu_client.models.widget_type_list import WidgetTypeList as WidgetTypeList - -""", - name=__name__, - doc=__doc__, - ) - ) diff --git a/ibutsu_client/api/__init__.py b/ibutsu_client/api/__init__.py index a49d6d5..7b2bdf0 100644 --- a/ibutsu_client/api/__init__.py +++ b/ibutsu_client/api/__init__.py @@ -1,30 +1,6 @@ # flake8: noqa -if __import__("typing").TYPE_CHECKING: - # import apis into api package - from ibutsu_client.api.admin_project_management_api import AdminProjectManagementApi - from ibutsu_client.api.admin_user_management_api import AdminUserManagementApi - from ibutsu_client.api.artifact_api import ArtifactApi - from ibutsu_client.api.dashboard_api import DashboardApi - from ibutsu_client.api.group_api import GroupApi - from ibutsu_client.api.health_api import HealthApi - from ibutsu_client.api.import_api import ImportApi - from ibutsu_client.api.login_api import LoginApi - from ibutsu_client.api.project_api import ProjectApi - from ibutsu_client.api.result_api import ResultApi - from ibutsu_client.api.run_api import RunApi - from ibutsu_client.api.task_api import TaskApi - from ibutsu_client.api.user_api import UserApi - from ibutsu_client.api.widget_api import WidgetApi - from ibutsu_client.api.widget_config_api import WidgetConfigApi - -else: - from lazy_imports import LazyModule, as_package, load - - load( - LazyModule( - *as_package(__file__), - """# import apis into api package +# import apis into api package from ibutsu_client.api.admin_project_management_api import AdminProjectManagementApi from ibutsu_client.api.admin_user_management_api import AdminUserManagementApi from ibutsu_client.api.artifact_api import ArtifactApi @@ -40,9 +16,3 @@ from ibutsu_client.api.user_api import UserApi from ibutsu_client.api.widget_api import WidgetApi from ibutsu_client.api.widget_config_api import WidgetConfigApi - -""", - name=__name__, - doc=__doc__, - ) - ) diff --git a/ibutsu_client/api/admin_project_management_api.py b/ibutsu_client/api/admin_project_management_api.py index fb98c73..4a7304e 100644 --- a/ibutsu_client/api/admin_project_management_api.py +++ b/ibutsu_client/api/admin_project_management_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/api/admin_user_management_api.py b/ibutsu_client/api/admin_user_management_api.py index 0e30c11..9c7e5b8 100644 --- a/ibutsu_client/api/admin_user_management_api.py +++ b/ibutsu_client/api/admin_user_management_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/api/artifact_api.py b/ibutsu_client/api/artifact_api.py index 9139514..d6003c6 100644 --- a/ibutsu_client/api/artifact_api.py +++ b/ibutsu_client/api/artifact_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/api/dashboard_api.py b/ibutsu_client/api/dashboard_api.py index cf5c264..48bd233 100644 --- a/ibutsu_client/api/dashboard_api.py +++ b/ibutsu_client/api/dashboard_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/api/group_api.py b/ibutsu_client/api/group_api.py index c13385f..482ca1d 100644 --- a/ibutsu_client/api/group_api.py +++ b/ibutsu_client/api/group_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/api/health_api.py b/ibutsu_client/api/health_api.py index f9756f7..b37f169 100644 --- a/ibutsu_client/api/health_api.py +++ b/ibutsu_client/api/health_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/api/import_api.py b/ibutsu_client/api/import_api.py index 87606b8..dd9e51a 100644 --- a/ibutsu_client/api/import_api.py +++ b/ibutsu_client/api/import_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/api/login_api.py b/ibutsu_client/api/login_api.py index 09d14fc..6e9b67c 100644 --- a/ibutsu_client/api/login_api.py +++ b/ibutsu_client/api/login_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/api/project_api.py b/ibutsu_client/api/project_api.py index 7ebbab5..a728152 100644 --- a/ibutsu_client/api/project_api.py +++ b/ibutsu_client/api/project_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/api/result_api.py b/ibutsu_client/api/result_api.py index 54578ec..ba2de52 100644 --- a/ibutsu_client/api/result_api.py +++ b/ibutsu_client/api/result_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/api/run_api.py b/ibutsu_client/api/run_api.py index f83090b..d91ea3a 100644 --- a/ibutsu_client/api/run_api.py +++ b/ibutsu_client/api/run_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/api/task_api.py b/ibutsu_client/api/task_api.py index d255a9c..b8354a4 100644 --- a/ibutsu_client/api/task_api.py +++ b/ibutsu_client/api/task_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/api/user_api.py b/ibutsu_client/api/user_api.py index 67f79d9..7a1338e 100644 --- a/ibutsu_client/api/user_api.py +++ b/ibutsu_client/api/user_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/api/widget_api.py b/ibutsu_client/api/widget_api.py index 2ddaa1b..1f1992b 100644 --- a/ibutsu_client/api/widget_api.py +++ b/ibutsu_client/api/widget_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/api/widget_config_api.py b/ibutsu_client/api/widget_config_api.py index 5e82d9a..c7d0e56 100644 --- a/ibutsu_client/api/widget_config_api.py +++ b/ibutsu_client/api/widget_config_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/api_client.py b/ibutsu_client/api_client.py index 32cf6bc..add02cf 100644 --- a/ibutsu_client/api_client.py +++ b/ibutsu_client/api_client.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. @@ -425,13 +425,13 @@ def __deserialize(self, data, klass): if klass in self.PRIMITIVE_TYPES: return self.__deserialize_primitive(data, klass) - elif klass == object: + elif klass is object: return self.__deserialize_object(data) - elif klass == datetime.date: + elif klass is datetime.date: return self.__deserialize_date(data) - elif klass == datetime.datetime: + elif klass is datetime.datetime: return self.__deserialize_datetime(data) - elif klass == decimal.Decimal: + elif klass is decimal.Decimal: return decimal.Decimal(data) elif issubclass(klass, Enum): return self.__deserialize_enum(data, klass) diff --git a/ibutsu_client/configuration.py b/ibutsu_client/configuration.py index 3fb6c36..1eff25d 100644 --- a/ibutsu_client/configuration.py +++ b/ibutsu_client/configuration.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. @@ -505,7 +505,7 @@ def to_debug_report(self) -> str: "Python SDK Debug Report:\n" f"OS: {sys.platform}\n" f"Python Version: {sys.version}\n" - "Version of the API: 2.8.0\n" + "Version of the API: 2.8.1\n" "SDK Package Version: 3.1.0" ) diff --git a/ibutsu_client/exceptions.py b/ibutsu_client/exceptions.py index 64f9040..63dc87d 100644 --- a/ibutsu_client/exceptions.py +++ b/ibutsu_client/exceptions.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/__init__.py b/ibutsu_client/models/__init__.py index 7cfe8c5..a115abb 100644 --- a/ibutsu_client/models/__init__.py +++ b/ibutsu_client/models/__init__.py @@ -4,57 +4,13 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. """ # noqa: E501 -if __import__("typing").TYPE_CHECKING: - # import models into model package - from ibutsu_client.models.account_recovery import AccountRecovery - from ibutsu_client.models.account_registration import AccountRegistration - from ibutsu_client.models.account_reset import AccountReset - from ibutsu_client.models.artifact import Artifact - from ibutsu_client.models.artifact_list import ArtifactList - from ibutsu_client.models.create_token import CreateToken - from ibutsu_client.models.credentials import Credentials - from ibutsu_client.models.dashboard import Dashboard - from ibutsu_client.models.dashboard_list import DashboardList - from ibutsu_client.models.group import Group - from ibutsu_client.models.group_list import GroupList - from ibutsu_client.models.health import Health - from ibutsu_client.models.health_info import HealthInfo - from ibutsu_client.models.login_config import LoginConfig - from ibutsu_client.models.login_error import LoginError - from ibutsu_client.models.login_support import LoginSupport - from ibutsu_client.models.login_token import LoginToken - from ibutsu_client.models.model_import import ModelImport - from ibutsu_client.models.pagination import Pagination - from ibutsu_client.models.project import Project - from ibutsu_client.models.project_list import ProjectList - from ibutsu_client.models.result import Result - from ibutsu_client.models.result_list import ResultList - from ibutsu_client.models.run import Run - from ibutsu_client.models.run_list import RunList - from ibutsu_client.models.token import Token - from ibutsu_client.models.token_list import TokenList - from ibutsu_client.models.update_run import UpdateRun - from ibutsu_client.models.user import User - from ibutsu_client.models.user_list import UserList - from ibutsu_client.models.widget_config import WidgetConfig - from ibutsu_client.models.widget_config_list import WidgetConfigList - from ibutsu_client.models.widget_param import WidgetParam - from ibutsu_client.models.widget_type import WidgetType - from ibutsu_client.models.widget_type_list import WidgetTypeList - -else: - from lazy_imports import LazyModule, as_package, load - - load( - LazyModule( - *as_package(__file__), - """# import models into model package +# import models into model package from ibutsu_client.models.account_recovery import AccountRecovery from ibutsu_client.models.account_registration import AccountRegistration from ibutsu_client.models.account_reset import AccountReset @@ -90,9 +46,3 @@ from ibutsu_client.models.widget_param import WidgetParam from ibutsu_client.models.widget_type import WidgetType from ibutsu_client.models.widget_type_list import WidgetTypeList - -""", - name=__name__, - doc=__doc__, - ) - ) diff --git a/ibutsu_client/models/account_recovery.py b/ibutsu_client/models/account_recovery.py index 3d30c72..911a545 100644 --- a/ibutsu_client/models/account_recovery.py +++ b/ibutsu_client/models/account_recovery.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/account_registration.py b/ibutsu_client/models/account_registration.py index 41103e4..498b81b 100644 --- a/ibutsu_client/models/account_registration.py +++ b/ibutsu_client/models/account_registration.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/account_reset.py b/ibutsu_client/models/account_reset.py index 9d82ed3..dafade0 100644 --- a/ibutsu_client/models/account_reset.py +++ b/ibutsu_client/models/account_reset.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/artifact.py b/ibutsu_client/models/artifact.py index 7688bd6..c192c36 100644 --- a/ibutsu_client/models/artifact.py +++ b/ibutsu_client/models/artifact.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/artifact_list.py b/ibutsu_client/models/artifact_list.py index b6fda40..af227b5 100644 --- a/ibutsu_client/models/artifact_list.py +++ b/ibutsu_client/models/artifact_list.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/create_token.py b/ibutsu_client/models/create_token.py index 4947905..71206b5 100644 --- a/ibutsu_client/models/create_token.py +++ b/ibutsu_client/models/create_token.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/credentials.py b/ibutsu_client/models/credentials.py index 417d89a..4ba5f26 100644 --- a/ibutsu_client/models/credentials.py +++ b/ibutsu_client/models/credentials.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/dashboard.py b/ibutsu_client/models/dashboard.py index b8adf29..ee380d5 100644 --- a/ibutsu_client/models/dashboard.py +++ b/ibutsu_client/models/dashboard.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/dashboard_list.py b/ibutsu_client/models/dashboard_list.py index 761204e..7cedbd5 100644 --- a/ibutsu_client/models/dashboard_list.py +++ b/ibutsu_client/models/dashboard_list.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/group.py b/ibutsu_client/models/group.py index ef12e6b..717a977 100644 --- a/ibutsu_client/models/group.py +++ b/ibutsu_client/models/group.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/group_list.py b/ibutsu_client/models/group_list.py index 5c2ea9f..818a75b 100644 --- a/ibutsu_client/models/group_list.py +++ b/ibutsu_client/models/group_list.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/health.py b/ibutsu_client/models/health.py index e2ef674..6fc7128 100644 --- a/ibutsu_client/models/health.py +++ b/ibutsu_client/models/health.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/health_info.py b/ibutsu_client/models/health_info.py index 68c377d..264585b 100644 --- a/ibutsu_client/models/health_info.py +++ b/ibutsu_client/models/health_info.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/login_config.py b/ibutsu_client/models/login_config.py index 2cb98b0..84cfbbf 100644 --- a/ibutsu_client/models/login_config.py +++ b/ibutsu_client/models/login_config.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/login_error.py b/ibutsu_client/models/login_error.py index b44cca8..788e622 100644 --- a/ibutsu_client/models/login_error.py +++ b/ibutsu_client/models/login_error.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/login_support.py b/ibutsu_client/models/login_support.py index ac4f2f1..f4ed1d7 100644 --- a/ibutsu_client/models/login_support.py +++ b/ibutsu_client/models/login_support.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/login_token.py b/ibutsu_client/models/login_token.py index b7dd236..679c9fe 100644 --- a/ibutsu_client/models/login_token.py +++ b/ibutsu_client/models/login_token.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/model_import.py b/ibutsu_client/models/model_import.py index 8e20d22..da67e4a 100644 --- a/ibutsu_client/models/model_import.py +++ b/ibutsu_client/models/model_import.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/pagination.py b/ibutsu_client/models/pagination.py index 2bfdba6..9bd5266 100644 --- a/ibutsu_client/models/pagination.py +++ b/ibutsu_client/models/pagination.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/project.py b/ibutsu_client/models/project.py index 4f0a202..d429b50 100644 --- a/ibutsu_client/models/project.py +++ b/ibutsu_client/models/project.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/project_list.py b/ibutsu_client/models/project_list.py index a4491d1..926ec18 100644 --- a/ibutsu_client/models/project_list.py +++ b/ibutsu_client/models/project_list.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/result.py b/ibutsu_client/models/result.py index da7eba0..c0f56dc 100644 --- a/ibutsu_client/models/result.py +++ b/ibutsu_client/models/result.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/result_list.py b/ibutsu_client/models/result_list.py index 40066d2..f8d4c16 100644 --- a/ibutsu_client/models/result_list.py +++ b/ibutsu_client/models/result_list.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/run.py b/ibutsu_client/models/run.py index 2a7092f..d4722c0 100644 --- a/ibutsu_client/models/run.py +++ b/ibutsu_client/models/run.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/run_list.py b/ibutsu_client/models/run_list.py index 79278c3..c616c34 100644 --- a/ibutsu_client/models/run_list.py +++ b/ibutsu_client/models/run_list.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/token.py b/ibutsu_client/models/token.py index cd35c71..6261ff0 100644 --- a/ibutsu_client/models/token.py +++ b/ibutsu_client/models/token.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/token_list.py b/ibutsu_client/models/token_list.py index 0bbacca..6389039 100644 --- a/ibutsu_client/models/token_list.py +++ b/ibutsu_client/models/token_list.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/update_run.py b/ibutsu_client/models/update_run.py index d2801ca..b9a8595 100644 --- a/ibutsu_client/models/update_run.py +++ b/ibutsu_client/models/update_run.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/user.py b/ibutsu_client/models/user.py index cf89886..248de27 100644 --- a/ibutsu_client/models/user.py +++ b/ibutsu_client/models/user.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/user_list.py b/ibutsu_client/models/user_list.py index 3016fec..94b47a6 100644 --- a/ibutsu_client/models/user_list.py +++ b/ibutsu_client/models/user_list.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/widget_config.py b/ibutsu_client/models/widget_config.py index 36ada88..31fd1c9 100644 --- a/ibutsu_client/models/widget_config.py +++ b/ibutsu_client/models/widget_config.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/widget_config_list.py b/ibutsu_client/models/widget_config_list.py index fa420ed..cdf7a34 100644 --- a/ibutsu_client/models/widget_config_list.py +++ b/ibutsu_client/models/widget_config_list.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/widget_param.py b/ibutsu_client/models/widget_param.py index 53d2ddc..9711555 100644 --- a/ibutsu_client/models/widget_param.py +++ b/ibutsu_client/models/widget_param.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/widget_type.py b/ibutsu_client/models/widget_type.py index a616874..d6a00bd 100644 --- a/ibutsu_client/models/widget_type.py +++ b/ibutsu_client/models/widget_type.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/models/widget_type_list.py b/ibutsu_client/models/widget_type_list.py index c549d7f..f093699 100644 --- a/ibutsu_client/models/widget_type_list.py +++ b/ibutsu_client/models/widget_type_list.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ibutsu_client/rest.py b/ibutsu_client/rest.py index f17bb49..8bb5320 100644 --- a/ibutsu_client/rest.py +++ b/ibutsu_client/rest.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/regenerate-client.sh b/regenerate-client.sh index 5a2585e..12d7358 100755 --- a/regenerate-client.sh +++ b/regenerate-client.sh @@ -4,7 +4,7 @@ set -euo pipefail # Re-generate the client based on the spec # Configuration -OPENAPI_GENERATOR_VERSION="7.15.0" +OPENAPI_GENERATOR_VERSION="7.16.0" CLIENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" TEMP_DIR="${CLIENT_DIR}/tmp/client" OPENAPI_FILE="" diff --git a/test/test_account_recovery.py b/test/test_account_recovery.py index c0525c4..ce14eb4 100644 --- a/test/test_account_recovery.py +++ b/test/test_account_recovery.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_account_registration.py b/test/test_account_registration.py index e74bdff..26ac25c 100644 --- a/test/test_account_registration.py +++ b/test/test_account_registration.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_account_reset.py b/test/test_account_reset.py index 4c5a173..e4b5d3f 100644 --- a/test/test_account_reset.py +++ b/test/test_account_reset.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_admin_project_management_api.py b/test/test_admin_project_management_api.py index 99e7f57..cfa3872 100644 --- a/test/test_admin_project_management_api.py +++ b/test/test_admin_project_management_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_admin_user_management_api.py b/test/test_admin_user_management_api.py index 711808e..cea6be4 100644 --- a/test/test_admin_user_management_api.py +++ b/test/test_admin_user_management_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_artifact.py b/test/test_artifact.py index 840310a..8949163 100644 --- a/test/test_artifact.py +++ b/test/test_artifact.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_artifact_api.py b/test/test_artifact_api.py index 642bd60..8a2aae4 100644 --- a/test/test_artifact_api.py +++ b/test/test_artifact_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_artifact_list.py b/test/test_artifact_list.py index e330907..2ec947f 100644 --- a/test/test_artifact_list.py +++ b/test/test_artifact_list.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_create_token.py b/test/test_create_token.py index 694436c..eb7e801 100644 --- a/test/test_create_token.py +++ b/test/test_create_token.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_credentials.py b/test/test_credentials.py index d48090f..4b01c0a 100644 --- a/test/test_credentials.py +++ b/test/test_credentials.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_dashboard.py b/test/test_dashboard.py index c06671d..13ca9e2 100644 --- a/test/test_dashboard.py +++ b/test/test_dashboard.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_dashboard_api.py b/test/test_dashboard_api.py index 11bb6e4..9ad3a4d 100644 --- a/test/test_dashboard_api.py +++ b/test/test_dashboard_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_dashboard_list.py b/test/test_dashboard_list.py index 9431be9..47baf0d 100644 --- a/test/test_dashboard_list.py +++ b/test/test_dashboard_list.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_group.py b/test/test_group.py index 329c32b..1e5daa6 100644 --- a/test/test_group.py +++ b/test/test_group.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_group_api.py b/test/test_group_api.py index ae0238c..473bee7 100644 --- a/test/test_group_api.py +++ b/test/test_group_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_group_list.py b/test/test_group_list.py index 2d0f943..d385762 100644 --- a/test/test_group_list.py +++ b/test/test_group_list.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_health.py b/test/test_health.py index b30962b..02333cb 100644 --- a/test/test_health.py +++ b/test/test_health.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_health_api.py b/test/test_health_api.py index 943d9f0..fbd9498 100644 --- a/test/test_health_api.py +++ b/test/test_health_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_health_info.py b/test/test_health_info.py index bf1c8e1..ccadef2 100644 --- a/test/test_health_info.py +++ b/test/test_health_info.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_import_api.py b/test/test_import_api.py index 17bd315..36a96eb 100644 --- a/test/test_import_api.py +++ b/test/test_import_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_login_api.py b/test/test_login_api.py index c88f564..47dc728 100644 --- a/test/test_login_api.py +++ b/test/test_login_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_login_config.py b/test/test_login_config.py index 50dd4e2..76b76b1 100644 --- a/test/test_login_config.py +++ b/test/test_login_config.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_login_error.py b/test/test_login_error.py index f60a03a..c932b81 100644 --- a/test/test_login_error.py +++ b/test/test_login_error.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_login_support.py b/test/test_login_support.py index c306e88..3ef2664 100644 --- a/test/test_login_support.py +++ b/test/test_login_support.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_login_token.py b/test/test_login_token.py index 93bc265..08a9760 100644 --- a/test/test_login_token.py +++ b/test/test_login_token.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_model_import.py b/test/test_model_import.py index a065eae..3f91891 100644 --- a/test/test_model_import.py +++ b/test/test_model_import.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_pagination.py b/test/test_pagination.py index c23ef08..eff2ce1 100644 --- a/test/test_pagination.py +++ b/test/test_pagination.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_project.py b/test/test_project.py index 03de26f..2661ee1 100644 --- a/test/test_project.py +++ b/test/test_project.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_project_api.py b/test/test_project_api.py index b0abd2f..02257ac 100644 --- a/test/test_project_api.py +++ b/test/test_project_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_project_list.py b/test/test_project_list.py index 33d7c3a..b0572e5 100644 --- a/test/test_project_list.py +++ b/test/test_project_list.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_result.py b/test/test_result.py index 8ba4382..7ad3792 100644 --- a/test/test_result.py +++ b/test/test_result.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_result_api.py b/test/test_result_api.py index 6fab139..e0055e2 100644 --- a/test/test_result_api.py +++ b/test/test_result_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_result_list.py b/test/test_result_list.py index bf379de..80d1590 100644 --- a/test/test_result_list.py +++ b/test/test_result_list.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_run.py b/test/test_run.py index 9ebcfc7..d94ddaa 100644 --- a/test/test_run.py +++ b/test/test_run.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_run_api.py b/test/test_run_api.py index e8e7dd0..436d0f1 100644 --- a/test/test_run_api.py +++ b/test/test_run_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_run_list.py b/test/test_run_list.py index 25ea833..9457467 100644 --- a/test/test_run_list.py +++ b/test/test_run_list.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_task_api.py b/test/test_task_api.py index 68aa4a3..2861ec1 100644 --- a/test/test_task_api.py +++ b/test/test_task_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_token.py b/test/test_token.py index 410cefa..7acbbc9 100644 --- a/test/test_token.py +++ b/test/test_token.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_token_list.py b/test/test_token_list.py index 66af94e..82197c6 100644 --- a/test/test_token_list.py +++ b/test/test_token_list.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_update_run.py b/test/test_update_run.py index ff42908..61bb9f3 100644 --- a/test/test_update_run.py +++ b/test/test_update_run.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_user.py b/test/test_user.py index ee7b73f..6b8994e 100644 --- a/test/test_user.py +++ b/test/test_user.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_user_api.py b/test/test_user_api.py index e5e8f49..d29f7fa 100644 --- a/test/test_user_api.py +++ b/test/test_user_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_user_list.py b/test/test_user_list.py index a7c4157..a413922 100644 --- a/test/test_user_list.py +++ b/test/test_user_list.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_widget_api.py b/test/test_widget_api.py index b958709..ce8cea4 100644 --- a/test/test_widget_api.py +++ b/test/test_widget_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_widget_config.py b/test/test_widget_config.py index 06f74ba..4ee8f6b 100644 --- a/test/test_widget_config.py +++ b/test/test_widget_config.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_widget_config_api.py b/test/test_widget_config_api.py index ce4b273..86e8b4f 100644 --- a/test/test_widget_config_api.py +++ b/test/test_widget_config_api.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_widget_config_list.py b/test/test_widget_config_list.py index 9e0669a..d6c21bb 100644 --- a/test/test_widget_config_list.py +++ b/test/test_widget_config_list.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_widget_param.py b/test/test_widget_param.py index 2cf08a0..76f607e 100644 --- a/test/test_widget_param.py +++ b/test/test_widget_param.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_widget_type.py b/test/test_widget_type.py index e9347e6..5f2f967 100644 --- a/test/test_widget_type.py +++ b/test/test_widget_type.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/test/test_widget_type_list.py b/test/test_widget_type_list.py index 51dece3..f6ad3b2 100644 --- a/test/test_widget_type_list.py +++ b/test/test_widget_type_list.py @@ -3,7 +3,7 @@ A system to store and query test results -The version of the OpenAPI document: 2.8.0 +The version of the OpenAPI document: 2.8.1 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually.