Skip to content

Commit f53b0fc

Browse files
committed
Bump package version to 1.0.7 and update related documentation and model types
1 parent 8059531 commit f53b0fc

14 files changed

Lines changed: 30 additions & 30 deletions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ each action as an independent path while routing all requests to the /api.php en
99
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
1010

1111
- API version: 1.0.0
12-
- Package version: 1.0.6
12+
- Package version: 1.0.7
1313
- Generator version: 7.13.0
1414
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1515

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"packageName": "whmcs_client",
33
"projectName": "whmcs-api-client",
4-
"packageVersion": "1.0.6",
4+
"packageVersion": "1.0.7",
55
"packageUrl": "https://github.com/truehostcloud/whmcs-python-client",
66
"packageCompany": "Truehost",
77
"packageAuthor": "William Mwai",

docs/AddClientResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**result** | **str** | | [optional]
99
**message** | **str** | Response message | [optional]
10-
**clientid** | **int** | The ID of the newly created client | [optional]
10+
**clientid** | **str** | The ID of the newly created client | [optional]
1111
**owner_user_id** | **int** | The ID of the user that owns the client | [optional]
1212

1313
## Example

docs/AddOrderResponse.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**result** | **str** | | [optional]
99
**message** | **str** | Response message | [optional]
10-
**orderid** | **int** | The ID of the newly created order | [optional]
11-
**productids** | **List[int]** | Array of product IDs that were created | [optional]
12-
**addonids** | **List[int]** | Array of addon IDs that were created | [optional]
13-
**domainids** | **List[int]** | Array of domain IDs that were created | [optional]
14-
**invoiceid** | **int** | The invoice ID if an invoice was generated | [optional]
10+
**orderid** | **str** | The ID of the newly created order | [optional]
11+
**productids** | **List[str]** | Array of product IDs that were created | [optional]
12+
**addonids** | **List[str]** | Array of addon IDs that were created | [optional]
13+
**domainids** | **List[str]** | Array of domain IDs that were created | [optional]
14+
**invoiceid** | **str** | The invoice ID if an invoice was generated | [optional]
1515

1616
## Example
1717

docs/UpdateClientResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**result** | **str** | | [optional]
99
**message** | **str** | Response message | [optional]
10-
**clientid** | **int** | The ID of the updated client | [optional]
10+
**clientid** | **str** | The ID of the updated client | [optional]
1111

1212
## Example
1313

openapi.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ components:
552552
- type: object
553553
properties:
554554
clientid:
555-
type: integer
555+
type: string
556556
description: The ID of the newly created client
557557
owner_user_id:
558558
type: integer
@@ -564,7 +564,7 @@ components:
564564
- type: object
565565
properties:
566566
clientid:
567-
type: integer
567+
type: string
568568
description: The ID of the updated client
569569

570570
AddOrderResponse:
@@ -573,25 +573,25 @@ components:
573573
- type: object
574574
properties:
575575
orderid:
576-
type: integer
576+
type: string
577577
description: The ID of the newly created order
578578
productids:
579579
type: array
580580
items:
581-
type: integer
581+
type: string
582582
description: Array of product IDs that were created
583583
addonids:
584584
type: array
585585
items:
586-
type: integer
586+
type: string
587587
description: Array of addon IDs that were created
588588
domainids:
589589
type: array
590590
items:
591-
type: integer
591+
type: string
592592
description: Array of domain IDs that were created
593593
invoiceid:
594-
type: integer
594+
type: string
595595
description: The invoice ID if an invoice was generated
596596

597597
responses:

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 = "whmcs_client"
3-
version = "1.0.6"
3+
version = "1.0.7"
44
description = "WHMCS API"
55
authors = ["OpenAPI Generator Community <team@openapitools.org>"]
66
license = "NoLicense"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# prerequisite: setuptools
2222
# http://pypi.python.org/pypi/setuptools
2323
NAME = "whmcs-api-client"
24-
VERSION = "1.0.6"
24+
VERSION = "1.0.7"
2525
PYTHON_REQUIRES = ">= 3.9"
2626
REQUIRES = [
2727
"urllib3 >= 2.1.0, < 3.0.0",

whmcs_client/__init__.py

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

1616

17-
__version__ = "1.0.6"
17+
__version__ = "1.0.7"
1818

1919
# import apis into sdk package
2020
from whmcs_client.api.default_api import DefaultApi

whmcs_client/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def __init__(
9090
self.default_headers[header_name] = header_value
9191
self.cookie = cookie
9292
# Set default User-Agent.
93-
self.user_agent = 'OpenAPI-Generator/1.0.6/python'
93+
self.user_agent = 'OpenAPI-Generator/1.0.7/python'
9494
self.client_side_validation = configuration.client_side_validation
9595

9696
def __enter__(self):

0 commit comments

Comments
 (0)