Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion genConfig.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
packageName: "testit_api_client"
packageUrl: "https://pypi.org/project/testit-api-client/"
packageVersion: 7.5.7
packageVersion: 7.5.8
projectName: "testit-api-client"
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Настройка переменных
FILE_NAME="cloud-swagger.json"
NEW_VERSION="7.5.7"
NEW_VERSION="7.5.8
GENERATOR="openapi-generator-cli-6.6.0.jar"

if [ ! -f ".swagger/$FILE_NAME" ]; then
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

NAME = "testit-api-client"

VERSION = "7.5.7"
VERSION = "7.5.8"

PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
Expand Down
2 changes: 1 addition & 1 deletion src/testit_api_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"""


__version__ = "7.5.7"
__version__ = "7.5.8"

# import ApiClient
from testit_api_client.api_client import ApiClient
Expand Down
2 changes: 1 addition & 1 deletion src/testit_api_client/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'OpenAPI-Generator/7.5.7/python'
self.user_agent = 'OpenAPI-Generator/7.5.8/python'

def __enter__(self):
return self
Expand Down
2 changes: 1 addition & 1 deletion src/testit_api_client/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: v2.0\n"\
"SDK Package Version: 7.5.7".\
"SDK Package Version: 7.5.8".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
Expand Down
2 changes: 2 additions & 0 deletions src/testit_api_client/model/work_item_api_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ def openapi_types():
'description': (str, none_type,), # noqa: E501
'modified_date': (datetime, none_type,), # noqa: E501
'modified_by_id': (str, none_type,), # noqa: E501
'autoTestCases': ([str]),
}

@cached_property
Expand Down Expand Up @@ -176,6 +177,7 @@ def discriminator():
'description': 'description', # noqa: E501
'modified_date': 'modifiedDate', # noqa: E501
'modified_by_id': 'modifiedById', # noqa: E501
'autoTestCases': 'autoTestCases', # noqa: E501
}

read_only_vars = {
Expand Down
Loading