Skip to content

Commit 216ea2c

Browse files
author
github-actions
committed
Bump version to 1.5.0
1 parent a1991ec commit 216ea2c

File tree

51 files changed

+1607
-74
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1607
-74
lines changed

.openapi-generator/FILES

Lines changed: 336 additions & 0 deletions
Large diffs are not rendered by default.

README.md

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

66
- API version: v1.3
7-
- Package version: 1.4.0
7+
- Package version: 1.5.0
88
- Generator version: 7.11.0
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010

@@ -240,6 +240,9 @@ Class | Method | HTTP request | Description
240240
- [GetGroupNotesResponseData](cloudbeds_pms_v1_3/docs/GetGroupNotesResponseData.md)
241241
- [GetGroupsResponse](cloudbeds_pms_v1_3/docs/GetGroupsResponse.md)
242242
- [GetGroupsResponseDataInner](cloudbeds_pms_v1_3/docs/GetGroupsResponseDataInner.md)
243+
- [GetGroupsResponseDataInnerContactsInner](cloudbeds_pms_v1_3/docs/GetGroupsResponseDataInnerContactsInner.md)
244+
- [GetGroupsResponseDataInnerContactsInnerEmailsInner](cloudbeds_pms_v1_3/docs/GetGroupsResponseDataInnerContactsInnerEmailsInner.md)
245+
- [GetGroupsResponseDataInnerContactsInnerPhonesInner](cloudbeds_pms_v1_3/docs/GetGroupsResponseDataInnerContactsInnerPhonesInner.md)
243246
- [GetGuestListResponse](cloudbeds_pms_v1_3/docs/GetGuestListResponse.md)
244247
- [GetGuestListResponseDataValue](cloudbeds_pms_v1_3/docs/GetGuestListResponseDataValue.md)
245248
- [GetGuestListResponseDataValueGuestNotesInner](cloudbeds_pms_v1_3/docs/GetGuestListResponseDataValueGuestNotesInner.md)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.0
1+
1.5.0

cloudbeds_pms_v1_3/__init__.py

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

1616

17-
__version__ = "1.4.0"
17+
__version__ = "1.5.0"
1818

1919
# import apis into sdk package
2020
from cloudbeds_pms_v1_3.api.adjustment_api import AdjustmentApi
@@ -95,6 +95,9 @@
9595
from cloudbeds_pms_v1_3.models.get_group_notes_response_data import GetGroupNotesResponseData
9696
from cloudbeds_pms_v1_3.models.get_groups_response import GetGroupsResponse
9797
from cloudbeds_pms_v1_3.models.get_groups_response_data_inner import GetGroupsResponseDataInner
98+
from cloudbeds_pms_v1_3.models.get_groups_response_data_inner_contacts_inner import GetGroupsResponseDataInnerContactsInner
99+
from cloudbeds_pms_v1_3.models.get_groups_response_data_inner_contacts_inner_emails_inner import GetGroupsResponseDataInnerContactsInnerEmailsInner
100+
from cloudbeds_pms_v1_3.models.get_groups_response_data_inner_contacts_inner_phones_inner import GetGroupsResponseDataInnerContactsInnerPhonesInner
98101
from cloudbeds_pms_v1_3.models.get_guest_list_response import GetGuestListResponse
99102
from cloudbeds_pms_v1_3.models.get_guest_list_response_data_value import GetGuestListResponseDataValue
100103
from cloudbeds_pms_v1_3.models.get_guest_list_response_data_value_guest_notes_inner import GetGuestListResponseDataValueGuestNotesInner

cloudbeds_pms_v1_3/api/allotment_blocks_api.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1035,6 +1035,7 @@ def get_allotment_blocks_get(
10351035
group_code: Annotated[Optional[StrictStr], Field(description="A group profile code")] = None,
10361036
allotment_block_status: Annotated[Optional[StrictStr], Field(description="Allotment block status(es)")] = None,
10371037
allotment_block_type: Annotated[Optional[StrictStr], Field(description="The type of allotment block")] = None,
1038+
room_type_id: Annotated[Optional[StrictStr], Field(description="Filters allotment blocks with the supplied Room Type ID.")] = None,
10381039
page_size: Annotated[Optional[StrictInt], Field(description="Number of allotment blocks to return per page (min: 1, max: 100)")] = None,
10391040
page_number: Annotated[Optional[StrictInt], Field(description="Which page in the results to access")] = None,
10401041
start_date: Annotated[Optional[date], Field(description="Interval start date")] = None,
@@ -1068,6 +1069,8 @@ def get_allotment_blocks_get(
10681069
:type allotment_block_status: str
10691070
:param allotment_block_type: The type of allotment block
10701071
:type allotment_block_type: str
1072+
:param room_type_id: Filters allotment blocks with the supplied Room Type ID.
1073+
:type room_type_id: str
10711074
:param page_size: Number of allotment blocks to return per page (min: 1, max: 100)
10721075
:type page_size: int
10731076
:param page_number: Which page in the results to access
@@ -1105,6 +1108,7 @@ def get_allotment_blocks_get(
11051108
group_code=group_code,
11061109
allotment_block_status=allotment_block_status,
11071110
allotment_block_type=allotment_block_type,
1111+
room_type_id=room_type_id,
11081112
page_size=page_size,
11091113
page_number=page_number,
11101114
start_date=start_date,
@@ -1138,6 +1142,7 @@ def get_allotment_blocks_get_with_http_info(
11381142
group_code: Annotated[Optional[StrictStr], Field(description="A group profile code")] = None,
11391143
allotment_block_status: Annotated[Optional[StrictStr], Field(description="Allotment block status(es)")] = None,
11401144
allotment_block_type: Annotated[Optional[StrictStr], Field(description="The type of allotment block")] = None,
1145+
room_type_id: Annotated[Optional[StrictStr], Field(description="Filters allotment blocks with the supplied Room Type ID.")] = None,
11411146
page_size: Annotated[Optional[StrictInt], Field(description="Number of allotment blocks to return per page (min: 1, max: 100)")] = None,
11421147
page_number: Annotated[Optional[StrictInt], Field(description="Which page in the results to access")] = None,
11431148
start_date: Annotated[Optional[date], Field(description="Interval start date")] = None,
@@ -1171,6 +1176,8 @@ def get_allotment_blocks_get_with_http_info(
11711176
:type allotment_block_status: str
11721177
:param allotment_block_type: The type of allotment block
11731178
:type allotment_block_type: str
1179+
:param room_type_id: Filters allotment blocks with the supplied Room Type ID.
1180+
:type room_type_id: str
11741181
:param page_size: Number of allotment blocks to return per page (min: 1, max: 100)
11751182
:type page_size: int
11761183
:param page_number: Which page in the results to access
@@ -1208,6 +1215,7 @@ def get_allotment_blocks_get_with_http_info(
12081215
group_code=group_code,
12091216
allotment_block_status=allotment_block_status,
12101217
allotment_block_type=allotment_block_type,
1218+
room_type_id=room_type_id,
12111219
page_size=page_size,
12121220
page_number=page_number,
12131221
start_date=start_date,
@@ -1241,6 +1249,7 @@ def get_allotment_blocks_get_without_preload_content(
12411249
group_code: Annotated[Optional[StrictStr], Field(description="A group profile code")] = None,
12421250
allotment_block_status: Annotated[Optional[StrictStr], Field(description="Allotment block status(es)")] = None,
12431251
allotment_block_type: Annotated[Optional[StrictStr], Field(description="The type of allotment block")] = None,
1252+
room_type_id: Annotated[Optional[StrictStr], Field(description="Filters allotment blocks with the supplied Room Type ID.")] = None,
12441253
page_size: Annotated[Optional[StrictInt], Field(description="Number of allotment blocks to return per page (min: 1, max: 100)")] = None,
12451254
page_number: Annotated[Optional[StrictInt], Field(description="Which page in the results to access")] = None,
12461255
start_date: Annotated[Optional[date], Field(description="Interval start date")] = None,
@@ -1274,6 +1283,8 @@ def get_allotment_blocks_get_without_preload_content(
12741283
:type allotment_block_status: str
12751284
:param allotment_block_type: The type of allotment block
12761285
:type allotment_block_type: str
1286+
:param room_type_id: Filters allotment blocks with the supplied Room Type ID.
1287+
:type room_type_id: str
12771288
:param page_size: Number of allotment blocks to return per page (min: 1, max: 100)
12781289
:type page_size: int
12791290
:param page_number: Which page in the results to access
@@ -1311,6 +1322,7 @@ def get_allotment_blocks_get_without_preload_content(
13111322
group_code=group_code,
13121323
allotment_block_status=allotment_block_status,
13131324
allotment_block_type=allotment_block_type,
1325+
room_type_id=room_type_id,
13141326
page_size=page_size,
13151327
page_number=page_number,
13161328
start_date=start_date,
@@ -1339,6 +1351,7 @@ def _get_allotment_blocks_get_serialize(
13391351
group_code,
13401352
allotment_block_status,
13411353
allotment_block_type,
1354+
room_type_id,
13421355
page_size,
13431356
page_number,
13441357
start_date,
@@ -1389,6 +1402,10 @@ def _get_allotment_blocks_get_serialize(
13891402

13901403
_query_params.append(('allotmentBlockType', allotment_block_type))
13911404

1405+
if room_type_id is not None:
1406+
1407+
_query_params.append(('roomTypeID', room_type_id))
1408+
13921409
if page_size is not None:
13931410

13941411
_query_params.append(('pageSize', page_size))

0 commit comments

Comments
 (0)