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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ API for managing email and workplace service subscriptions.
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: v1
- Package version: 1.0.11
- Package version: 1.0.12
- Generator version: 7.13.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

Expand Down
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"packageName": "workplace_client",
"projectName": "truehost-workplace-api-client",
"packageVersion": "1.0.11",
"packageVersion": "1.0.12",
"packageUrl": "https://github.com/truehostcloud/workplace-python-client",
"packageCompany": "Truehost",
"packageAuthor": "Patience Igiraneza",
Expand Down
18 changes: 9 additions & 9 deletions docs/DnsInfoCreate200Response.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**score** | **float** | |
**message** | **str** | | [optional]
**domain** | **str** | | [optional]
**all_dns_score** | **float** | | [optional]
**found** | **float** | | [optional]
**total** | **float** | | [optional]
**missing_dns** | **List[object]** | | [optional]
**other_missing_dns** | **List[object]** | | [optional]
**found_dns** | **object** | | [optional]
**error** | **List[str]** | | [optional]
**message** | **str** | |
**domain** | **str** | |
**all_dns_score** | **float** | |
**found** | **float** | |
**total** | **float** | |
**missing_dns** | **List[object]** | |
**other_missing_dns** | **List[object]** | |
**found_dns** | **object** | |
**error** | **List[str]** | |

## Example

Expand Down
9 changes: 9 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,15 @@ paths:
schema:
required:
- score
- message
- domain
- all_dns_score
- found
- total
- missing_dns
- other_missing_dns
- found_dns
- error
type: object
properties:
score:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "workplace_client"
version = "1.0.11"
version = "1.0.12"
description = "Workplace Console API"
authors = ["OpenAPI Generator Community <support@truehost.cloud>"]
license = "BSD License"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "truehost-workplace-api-client"
VERSION = "1.0.11"
VERSION = "1.0.12"
PYTHON_REQUIRES = ">= 3.9"
REQUIRES = [
"urllib3 >= 2.1.0, < 3.0.0",
Expand Down
Binary file added workplace_client/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion workplace_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
""" # noqa: E501


__version__ = "1.0.11"
__version__ = "1.0.12"

# import apis into sdk package
from workplace_client.api.available_packages_api import AvailablePackagesApi
Expand Down
2 changes: 1 addition & 1 deletion workplace_client/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def __init__(
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'OpenAPI-Generator/1.0.11/python'
self.user_agent = 'OpenAPI-Generator/1.0.12/python'
self.client_side_validation = configuration.client_side_validation

def __enter__(self):
Expand Down
2 changes: 1 addition & 1 deletion workplace_client/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ def to_debug_report(self) -> str:
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: v1\n"\
"SDK Package Version: 1.0.11".\
"SDK Package Version: 1.0.12".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self) -> List[HostSetting]:
Expand Down
20 changes: 10 additions & 10 deletions workplace_client/models/dns_info_create200_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import json

from pydantic import BaseModel, ConfigDict, StrictFloat, StrictInt, StrictStr
from typing import Any, ClassVar, Dict, List, Optional, Union
from typing import Any, ClassVar, Dict, List, Union
from typing import Optional, Set
from typing_extensions import Self

Expand All @@ -28,15 +28,15 @@ class DnsInfoCreate200Response(BaseModel):
DnsInfoCreate200Response
""" # noqa: E501
score: Union[StrictFloat, StrictInt]
message: Optional[StrictStr] = None
domain: Optional[StrictStr] = None
all_dns_score: Optional[Union[StrictFloat, StrictInt]] = None
found: Optional[Union[StrictFloat, StrictInt]] = None
total: Optional[Union[StrictFloat, StrictInt]] = None
missing_dns: Optional[List[Dict[str, Any]]] = None
other_missing_dns: Optional[List[Dict[str, Any]]] = None
found_dns: Optional[Dict[str, Any]] = None
error: Optional[List[StrictStr]] = None
message: StrictStr
domain: StrictStr
all_dns_score: Union[StrictFloat, StrictInt]
found: Union[StrictFloat, StrictInt]
total: Union[StrictFloat, StrictInt]
missing_dns: List[Dict[str, Any]]
other_missing_dns: List[Dict[str, Any]]
found_dns: Dict[str, Any]
error: List[StrictStr]
__properties: ClassVar[List[str]] = ["score", "message", "domain", "all_dns_score", "found", "total", "missing_dns", "other_missing_dns", "found_dns", "error"]

model_config = ConfigDict(
Expand Down