Skip to content

Commit 30e0300

Browse files
author
github-actions
committed
Bump version to 2.3.0
1 parent b0b6f6e commit 30e0300

28 files changed

+486
-50
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
The `cloudbeds_pms` package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

66
- API version: v2
7-
- Package version: 2.2.0
7+
- Package version: 2.3.0
88
- Generator version: 7.11.0
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010

@@ -82,6 +82,7 @@ Class | Method | HTTP request | Description
8282
*ImportTasksApi* | [**import_task_controller_find_by_id**](cloudbeds_pms/docs/ImportTasksApi.md#import_task_controller_find_by_id) | **GET** /import/v1/tasks/{taskId} | Fetch import task by ID.
8383
*ImportTasksApi* | [**import_task_controller_find_task_records**](cloudbeds_pms/docs/ImportTasksApi.md#import_task_controller_find_task_records) | **GET** /import/v1/tasks/{taskId}/records | Fetch import task records by ID.
8484
*ImportTasksApi* | [**import_task_controller_get_all**](cloudbeds_pms/docs/ImportTasksApi.md#import_task_controller_get_all) | **GET** /import/v1/tasks | Fetch a list of previously uploaded imports.
85+
*ImportTasksApi* | [**import_task_controller_reimport**](cloudbeds_pms/docs/ImportTasksApi.md#import_task_controller_reimport) | **POST** /import/v1/tasks/{taskId} | ReImport an import task and generate a temporary upload URL.
8586

8687

8788
## Documentation For Models

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.2.0
1+
2.3.0

cloudbeds_pms/__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__ = "2.2.0"
17+
__version__ = "2.3.0"
1818

1919
# import apis into sdk package
2020
from cloudbeds_pms.api.doorlock_keys_api import DoorlockKeysApi

cloudbeds_pms/api/import_tasks_api.py

Lines changed: 319 additions & 19 deletions
Large diffs are not rendered by default.

cloudbeds_pms/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/2.2.0/python'
93+
self.user_agent = 'OpenAPI-Generator/2.3.0/python'
9494
self.client_side_validation = configuration.client_side_validation
9595

9696
def __enter__(self):

cloudbeds_pms/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ def to_debug_report(self) -> str:
532532
"OS: {env}\n"\
533533
"Python Version: {pyversion}\n"\
534534
"Version of the API: v2\n"\
535-
"SDK Package Version: 2.2.0".\
535+
"SDK Package Version: 2.3.0".\
536536
format(env=sys.platform, pyversion=sys.version)
537537

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

cloudbeds_pms/docs/DoorLockKeyUpdateRequestSchema.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**status** | **str** | | [optional]
99
**key_code** | **str** | | [optional]
10+
**error_message** | **str** | | [optional]
1011

1112
## Example
1213

cloudbeds_pms/docs/GroupResponseSchema.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
99
**name** | **str** | | [optional]
1010
**code** | **str** | | [optional]
1111
**description** | **str** | | [optional]
12-
**can_edit** | **bool** | | [optional]
12+
**can_edit** | **List[str]** | | [optional]
1313
**can_delete** | **bool** | | [optional]
1414
**can_disable** | **bool** | | [optional]
1515
**created_at** | **str** | | [optional]

cloudbeds_pms/docs/ImportTaskGetResponseSchema.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Name | Type | Description | Notes
1515
**file_status** | **str** | |
1616
**import_status** | **str** | Import task status. |
1717
**created_at** | **str** | | [optional]
18+
**errors** | **str** | | [optional]
1819

1920
## Example
2021

cloudbeds_pms/docs/ImportTaskListRequestSchema.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**limit** | **int** | The limit for the number of items to return (max 500) | [optional] [default to 100]
99
**offset** | **int** | The offset for the current page of results | [optional] [default to 0]
10+
**filters** | [**QueryParameterDynamicFilterSchemaFilters**](QueryParameterDynamicFilterSchemaFilters.md) | | [optional]
1011

1112
## Example
1213

0 commit comments

Comments
 (0)