Skip to content

Commit 4a88d7c

Browse files
Feat: generate v1.0.16
1 parent d3b2e98 commit 4a88d7c

File tree

10 files changed

+18
-16
lines changed

10 files changed

+18
-16
lines changed

.openapi-generator/FILES

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,6 @@ setup.cfg
5050
setup.py
5151
test-requirements.txt
5252
test/__init__.py
53-
test/test_dns_info_request.py
54-
test/test_dns_info_response.py
55-
test/test_dns_record.py
56-
test/test_found_dns_records.py
57-
test/test_standard_response.py
58-
test/test_subscription_usage_response.py
59-
test/test_subscriptions_read_response.py
6053
tox.ini
6154
workplace_client/__init__.py
6255
workplace_client/api/__init__.py

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ API for managing email and workplace service subscriptions.
44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

66
- API version: v1
7-
- Package version: 1.0.15
7+
- Package version: 1.0.16
88
- Generator version: 7.13.0
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"packageName": "workplace_client",
33
"projectName": "truehost-workplace-api-client",
4-
"packageVersion": "1.0.15",
4+
"packageVersion": "1.0.16",
55
"packageUrl": "https://github.com/truehostcloud/workplace-python-client",
66
"packageCompany": "Truehost",
77
"packageAuthor": "Patience Igiraneza",

docs/OpenExchangeCreateAccount.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ Name | Type | Description | Notes
99
**domain_name** | **str** | |
1010
**subscription** | **int** | |
1111
**new_subscription** | **bool** | |
12+
**display_name** | **str** | |
13+
**user_password** | **str** | |
14+
**email_quota** | **int** | |
1215

1316
## Example
1417

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "workplace_client"
3-
version = "1.0.15"
3+
version = "1.0.16"
44
description = "Workplace Console API"
55
authors = ["OpenAPI Generator Community <support@truehost.cloud>"]
66
license = "NoLicense"

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 = "truehost-workplace-api-client"
25-
VERSION = "1.0.15"
25+
VERSION = "1.0.16"
2626
PYTHON_REQUIRES = ">= 3.9"
2727
REQUIRES = [
2828
"urllib3 >= 2.1.0, < 3.0.0",

workplace_client/__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__ = "1.0.15"
18+
__version__ = "1.0.16"
1919

2020
# import apis into sdk package
2121
from workplace_client.api.available_packages_api import AvailablePackagesApi

workplace_client/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def __init__(
9191
self.default_headers[header_name] = header_value
9292
self.cookie = cookie
9393
# Set default User-Agent.
94-
self.user_agent = 'OpenAPI-Generator/1.0.15/python'
94+
self.user_agent = 'OpenAPI-Generator/1.0.16/python'
9595
self.client_side_validation = configuration.client_side_validation
9696

9797
def __enter__(self):

workplace_client/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ def to_debug_report(self) -> str:
512512
"OS: {env}\n"\
513513
"Python Version: {pyversion}\n"\
514514
"Version of the API: v1\n"\
515-
"SDK Package Version: 1.0.15".\
515+
"SDK Package Version: 1.0.16".\
516516
format(env=sys.platform, pyversion=sys.version)
517517

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

workplace_client/models/open_exchange_create_account.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ class OpenExchangeCreateAccount(BaseModel):
3232
domain_name: Annotated[str, Field(min_length=1, strict=True, max_length=255)]
3333
subscription: Annotated[int, Field(strict=True, ge=0)]
3434
new_subscription: StrictBool
35-
__properties: ClassVar[List[str]] = ["emails", "domain_name", "subscription", "new_subscription"]
35+
display_name: Annotated[str, Field(min_length=1, strict=True)]
36+
user_password: Annotated[str, Field(min_length=1, strict=True)]
37+
email_quota: Annotated[int, Field(strict=True, ge=0)]
38+
__properties: ClassVar[List[str]] = ["emails", "domain_name", "subscription", "new_subscription", "display_name", "user_password", "email_quota"]
3639

3740
model_config = ConfigDict(
3841
populate_by_name=True,
@@ -88,7 +91,10 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
8891
"emails": obj.get("emails"),
8992
"domain_name": obj.get("domain_name"),
9093
"subscription": obj.get("subscription"),
91-
"new_subscription": obj.get("new_subscription")
94+
"new_subscription": obj.get("new_subscription"),
95+
"display_name": obj.get("display_name"),
96+
"user_password": obj.get("user_password"),
97+
"email_quota": obj.get("email_quota")
9298
})
9399
return _obj
94100

0 commit comments

Comments
 (0)