Skip to content

Commit 47439bb

Browse files
committed
Bump to 0.1.27
1 parent 538abc3 commit 47439bb

File tree

7 files changed

+14
-10
lines changed

7 files changed

+14
-10
lines changed

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.16.0
1+
7.17.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Introducing API v1 for Mosquito Alert platform, a project desgined to facilitate
44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

66
- API version: v1
7-
- Package version: 0.1.26
8-
- Generator version: 7.16.0
7+
- Package version: 0.1.27
8+
- Generator version: 7.17.0
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010

1111
## Requirements.

mosquito_alert/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
""" # noqa: E501
1616

1717

18-
__version__ = "0.1.26"
18+
__version__ = "0.1.27"
1919

2020
# Define package exports
2121
__all__ = [

mosquito_alert/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def __init__(
9292
self.default_headers[header_name] = header_value
9393
self.cookie = cookie
9494
# Set default User-Agent.
95-
self.user_agent = 'OpenAPI-Generator/0.1.26/python'
95+
self.user_agent = 'OpenAPI-Generator/0.1.27/python'
9696
self.client_side_validation = configuration.client_side_validation
9797

9898
def __enter__(self):

mosquito_alert/configuration.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,8 @@ class Configuration:
166166
:param retries: Number of retries for API requests.
167167
:param ca_cert_data: verify the peer using concatenated CA certificate data
168168
in PEM (str) or DER (bytes) format.
169+
:param cert_file: the path to a client certificate file, for mTLS.
170+
:param key_file: the path to a client key file, for mTLS.
169171
170172
:Example:
171173
@@ -207,6 +209,8 @@ def __init__(
207209
ssl_ca_cert: Optional[str]=None,
208210
retries: Optional[int] = None,
209211
ca_cert_data: Optional[Union[str, bytes]] = None,
212+
cert_file: Optional[str]=None,
213+
key_file: Optional[str]=None,
210214
*,
211215
debug: Optional[bool] = None,
212216
) -> None:
@@ -288,10 +292,10 @@ def __init__(
288292
"""Set this to verify the peer using PEM (str) or DER (bytes)
289293
certificate data.
290294
"""
291-
self.cert_file = None
295+
self.cert_file = cert_file
292296
"""client certificate file
293297
"""
294-
self.key_file = None
298+
self.key_file = key_file
295299
"""client key file
296300
"""
297301
self.assert_hostname = None
@@ -551,7 +555,7 @@ def to_debug_report(self) -> str:
551555
"OS: {env}\n"\
552556
"Python Version: {pyversion}\n"\
553557
"Version of the API: v1\n"\
554-
"SDK Package Version: 0.1.26".\
558+
"SDK Package Version: 0.1.27".\
555559
format(env=sys.platform, pyversion=sys.version)
556560

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mosquito_alert"
3-
version = "0.1.26"
3+
version = "0.1.27"
44
description = "Mosquito Alert API"
55
authors = [
66
{name = "Developers",email = "[email protected]"},

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# prerequisite: setuptools
2323
# http://pypi.python.org/pypi/setuptools
2424
NAME = "mosquito-alert"
25-
VERSION = "0.1.26"
25+
VERSION = "0.1.27"
2626
PYTHON_REQUIRES = ">= 3.9"
2727
REQUIRES = [
2828
"urllib3 >= 2.1.0, < 3.0.0",

0 commit comments

Comments
 (0)