Skip to content

Commit 9efbae8

Browse files
author
github-actions
committed
Bump version to 2.7.0
1 parent bcddd9d commit 9efbae8

File tree

10 files changed

+30
-34
lines changed

10 files changed

+30
-34
lines changed

README.md

Lines changed: 1 addition & 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.6.0
7+
- Package version: 2.7.0
88
- Generator version: 7.11.0
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.6.0
1+
2.7.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.6.0"
17+
__version__ = "2.7.0"
1818

1919
# import apis into sdk package
2020
from cloudbeds_pms.api.applications_api import ApplicationsApi

cloudbeds_pms/api/housekeeping_api.py

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
from typing_extensions import Annotated
2222
from cloudbeds_pms.models.inspection_list_response_schema import InspectionListResponseSchema
2323
from cloudbeds_pms.models.limit_offset_pagination_schema import LimitOffsetPaginationSchema
24-
from cloudbeds_pms.models.query_parameter_dynamic_filter_schema import QueryParameterDynamicFilterSchema
2524

2625
from cloudbeds_pms.api_client import ApiClient, RequestSerialized
2726
from cloudbeds_pms.api_response import ApiResponse
@@ -47,7 +46,7 @@ def call_27abd48cb30106ec3251cf3baf34174c(
4746
property_id: Annotated[StrictInt, Field(description="The property ID")],
4847
limit: Annotated[Optional[LimitOffsetPaginationSchema], Field(description="The maximum number of items to return in the response. Default is 100.")] = None,
4948
offset: Annotated[Optional[LimitOffsetPaginationSchema], Field(description="The number of items to skip before starting to collect the result set. Used for pagination.")] = None,
50-
filters: Annotated[Optional[QueryParameterDynamicFilterSchema], Field(description="This parameter should be formatted as a list of strings separated by ;")] = None,
49+
filters: Annotated[Optional[str], Field(description="This parameter should be formatted as a list of strings separated by ;")] = None,
5150
_request_timeout: Union[
5251
None,
5352
Annotated[StrictFloat, Field(gt=0)],
@@ -71,7 +70,7 @@ def call_27abd48cb30106ec3251cf3baf34174c(
7170
:param offset: The number of items to skip before starting to collect the result set. Used for pagination.
7271
:type offset: LimitOffsetPaginationSchema
7372
:param filters: This parameter should be formatted as a list of strings separated by ;
74-
:type filters: QueryParameterDynamicFilterSchema
73+
:type filters: str
7574
:param _request_timeout: timeout setting for this request. If one
7675
number provided, it will be total request
7776
timeout. It can also be a pair (tuple) of
@@ -126,7 +125,7 @@ def call_27abd48cb30106ec3251cf3baf34174c_with_http_info(
126125
property_id: Annotated[StrictInt, Field(description="The property ID")],
127126
limit: Annotated[Optional[LimitOffsetPaginationSchema], Field(description="The maximum number of items to return in the response. Default is 100.")] = None,
128127
offset: Annotated[Optional[LimitOffsetPaginationSchema], Field(description="The number of items to skip before starting to collect the result set. Used for pagination.")] = None,
129-
filters: Annotated[Optional[QueryParameterDynamicFilterSchema], Field(description="This parameter should be formatted as a list of strings separated by ;")] = None,
128+
filters: Annotated[Optional[str], Field(description="This parameter should be formatted as a list of strings separated by ;")] = None,
130129
_request_timeout: Union[
131130
None,
132131
Annotated[StrictFloat, Field(gt=0)],
@@ -150,7 +149,7 @@ def call_27abd48cb30106ec3251cf3baf34174c_with_http_info(
150149
:param offset: The number of items to skip before starting to collect the result set. Used for pagination.
151150
:type offset: LimitOffsetPaginationSchema
152151
:param filters: This parameter should be formatted as a list of strings separated by ;
153-
:type filters: QueryParameterDynamicFilterSchema
152+
:type filters: str
154153
:param _request_timeout: timeout setting for this request. If one
155154
number provided, it will be total request
156155
timeout. It can also be a pair (tuple) of
@@ -205,7 +204,7 @@ def call_27abd48cb30106ec3251cf3baf34174c_without_preload_content(
205204
property_id: Annotated[StrictInt, Field(description="The property ID")],
206205
limit: Annotated[Optional[LimitOffsetPaginationSchema], Field(description="The maximum number of items to return in the response. Default is 100.")] = None,
207206
offset: Annotated[Optional[LimitOffsetPaginationSchema], Field(description="The number of items to skip before starting to collect the result set. Used for pagination.")] = None,
208-
filters: Annotated[Optional[QueryParameterDynamicFilterSchema], Field(description="This parameter should be formatted as a list of strings separated by ;")] = None,
207+
filters: Annotated[Optional[str], Field(description="This parameter should be formatted as a list of strings separated by ;")] = None,
209208
_request_timeout: Union[
210209
None,
211210
Annotated[StrictFloat, Field(gt=0)],
@@ -229,7 +228,7 @@ def call_27abd48cb30106ec3251cf3baf34174c_without_preload_content(
229228
:param offset: The number of items to skip before starting to collect the result set. Used for pagination.
230229
:type offset: LimitOffsetPaginationSchema
231230
:param filters: This parameter should be formatted as a list of strings separated by ;
232-
:type filters: QueryParameterDynamicFilterSchema
231+
:type filters: str
233232
:param _request_timeout: timeout setting for this request. If one
234233
number provided, it will be total request
235234
timeout. It can also be a pair (tuple) of

cloudbeds_pms/api/integration_events_api.py

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
from cloudbeds_pms.models.integration_event_response_schema import IntegrationEventResponseSchema
2525
from cloudbeds_pms.models.integration_event_update_request_schema import IntegrationEventUpdateRequestSchema
2626
from cloudbeds_pms.models.limit_offset_pagination_schema import LimitOffsetPaginationSchema
27-
from cloudbeds_pms.models.query_parameter_dynamic_filter_schema import QueryParameterDynamicFilterSchema
2827
from cloudbeds_pms.models.query_parameter_sort_schema import QueryParameterSortSchema
2928

3029
from cloudbeds_pms.api_client import ApiClient, RequestSerialized
@@ -347,7 +346,7 @@ def integration_event_controller_index(
347346
sort: Annotated[Optional[QueryParameterSortSchema], Field(description="A string specifying fields for sorting with optional directions (e.g., asc or desc).")] = None,
348347
limit: Annotated[Optional[LimitOffsetPaginationSchema], Field(description="The maximum number of items to return in the response. Default is 100.")] = None,
349348
offset: Annotated[Optional[LimitOffsetPaginationSchema], Field(description="The number of items to skip before starting to collect the result set. Used for pagination.")] = None,
350-
filters: Annotated[Optional[QueryParameterDynamicFilterSchema], Field(description="This parameter should be formatted as a list of strings separated by ;")] = None,
349+
filters: Annotated[Optional[str], Field(description="This parameter should be formatted as a list of strings separated by ;")] = None,
351350
_request_timeout: Union[
352351
None,
353352
Annotated[StrictFloat, Field(gt=0)],
@@ -373,7 +372,7 @@ def integration_event_controller_index(
373372
:param offset: The number of items to skip before starting to collect the result set. Used for pagination.
374373
:type offset: LimitOffsetPaginationSchema
375374
:param filters: This parameter should be formatted as a list of strings separated by ;
376-
:type filters: QueryParameterDynamicFilterSchema
375+
:type filters: str
377376
:param _request_timeout: timeout setting for this request. If one
378377
number provided, it will be total request
379378
timeout. It can also be a pair (tuple) of
@@ -433,7 +432,7 @@ def integration_event_controller_index_with_http_info(
433432
sort: Annotated[Optional[QueryParameterSortSchema], Field(description="A string specifying fields for sorting with optional directions (e.g., asc or desc).")] = None,
434433
limit: Annotated[Optional[LimitOffsetPaginationSchema], Field(description="The maximum number of items to return in the response. Default is 100.")] = None,
435434
offset: Annotated[Optional[LimitOffsetPaginationSchema], Field(description="The number of items to skip before starting to collect the result set. Used for pagination.")] = None,
436-
filters: Annotated[Optional[QueryParameterDynamicFilterSchema], Field(description="This parameter should be formatted as a list of strings separated by ;")] = None,
435+
filters: Annotated[Optional[str], Field(description="This parameter should be formatted as a list of strings separated by ;")] = None,
437436
_request_timeout: Union[
438437
None,
439438
Annotated[StrictFloat, Field(gt=0)],
@@ -459,7 +458,7 @@ def integration_event_controller_index_with_http_info(
459458
:param offset: The number of items to skip before starting to collect the result set. Used for pagination.
460459
:type offset: LimitOffsetPaginationSchema
461460
:param filters: This parameter should be formatted as a list of strings separated by ;
462-
:type filters: QueryParameterDynamicFilterSchema
461+
:type filters: str
463462
:param _request_timeout: timeout setting for this request. If one
464463
number provided, it will be total request
465464
timeout. It can also be a pair (tuple) of
@@ -519,7 +518,7 @@ def integration_event_controller_index_without_preload_content(
519518
sort: Annotated[Optional[QueryParameterSortSchema], Field(description="A string specifying fields for sorting with optional directions (e.g., asc or desc).")] = None,
520519
limit: Annotated[Optional[LimitOffsetPaginationSchema], Field(description="The maximum number of items to return in the response. Default is 100.")] = None,
521520
offset: Annotated[Optional[LimitOffsetPaginationSchema], Field(description="The number of items to skip before starting to collect the result set. Used for pagination.")] = None,
522-
filters: Annotated[Optional[QueryParameterDynamicFilterSchema], Field(description="This parameter should be formatted as a list of strings separated by ;")] = None,
521+
filters: Annotated[Optional[str], Field(description="This parameter should be formatted as a list of strings separated by ;")] = None,
523522
_request_timeout: Union[
524523
None,
525524
Annotated[StrictFloat, Field(gt=0)],
@@ -545,7 +544,7 @@ def integration_event_controller_index_without_preload_content(
545544
:param offset: The number of items to skip before starting to collect the result set. Used for pagination.
546545
:type offset: LimitOffsetPaginationSchema
547546
:param filters: This parameter should be formatted as a list of strings separated by ;
548-
:type filters: QueryParameterDynamicFilterSchema
547+
:type filters: str
549548
:param _request_timeout: timeout setting for this request. If one
550549
number provided, it will be total request
551550
timeout. It can also be a pair (tuple) of

cloudbeds_pms/api/items_api.py

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
from typing_extensions import Annotated
2222
from cloudbeds_pms.models.custom_item_list_response_schema import CustomItemListResponseSchema
2323
from cloudbeds_pms.models.limit_offset_pagination_schema import LimitOffsetPaginationSchema
24-
from cloudbeds_pms.models.query_parameter_dynamic_filter_schema import QueryParameterDynamicFilterSchema
2524

2625
from cloudbeds_pms.api_client import ApiClient, RequestSerialized
2726
from cloudbeds_pms.api_response import ApiResponse
@@ -47,7 +46,7 @@ def custom_item_controller_index(
4746
x_property_id: Annotated[StrictStr, Field(description="A numeric, comma-separated string representing the property IDs, sent in the header.")],
4847
limit: Annotated[Optional[LimitOffsetPaginationSchema], Field(description="The maximum number of items to return in the response. Default is 100.")] = None,
4948
offset: Annotated[Optional[LimitOffsetPaginationSchema], Field(description="The number of items to skip before starting to collect the result set. Used for pagination.")] = None,
50-
filters: Annotated[Optional[QueryParameterDynamicFilterSchema], Field(description="This parameter should be formatted as a list of strings separated by ;")] = None,
49+
filters: Annotated[Optional[str], Field(description="This parameter should be formatted as a list of strings separated by ;")] = None,
5150
_request_timeout: Union[
5251
None,
5352
Annotated[StrictFloat, Field(gt=0)],
@@ -71,7 +70,7 @@ def custom_item_controller_index(
7170
:param offset: The number of items to skip before starting to collect the result set. Used for pagination.
7271
:type offset: LimitOffsetPaginationSchema
7372
:param filters: This parameter should be formatted as a list of strings separated by ;
74-
:type filters: QueryParameterDynamicFilterSchema
73+
:type filters: str
7574
:param _request_timeout: timeout setting for this request. If one
7675
number provided, it will be total request
7776
timeout. It can also be a pair (tuple) of
@@ -129,7 +128,7 @@ def custom_item_controller_index_with_http_info(
129128
x_property_id: Annotated[StrictStr, Field(description="A numeric, comma-separated string representing the property IDs, sent in the header.")],
130129
limit: Annotated[Optional[LimitOffsetPaginationSchema], Field(description="The maximum number of items to return in the response. Default is 100.")] = None,
131130
offset: Annotated[Optional[LimitOffsetPaginationSchema], Field(description="The number of items to skip before starting to collect the result set. Used for pagination.")] = None,
132-
filters: Annotated[Optional[QueryParameterDynamicFilterSchema], Field(description="This parameter should be formatted as a list of strings separated by ;")] = None,
131+
filters: Annotated[Optional[str], Field(description="This parameter should be formatted as a list of strings separated by ;")] = None,
133132
_request_timeout: Union[
134133
None,
135134
Annotated[StrictFloat, Field(gt=0)],
@@ -153,7 +152,7 @@ def custom_item_controller_index_with_http_info(
153152
:param offset: The number of items to skip before starting to collect the result set. Used for pagination.
154153
:type offset: LimitOffsetPaginationSchema
155154
:param filters: This parameter should be formatted as a list of strings separated by ;
156-
:type filters: QueryParameterDynamicFilterSchema
155+
:type filters: str
157156
:param _request_timeout: timeout setting for this request. If one
158157
number provided, it will be total request
159158
timeout. It can also be a pair (tuple) of
@@ -211,7 +210,7 @@ def custom_item_controller_index_without_preload_content(
211210
x_property_id: Annotated[StrictStr, Field(description="A numeric, comma-separated string representing the property IDs, sent in the header.")],
212211
limit: Annotated[Optional[LimitOffsetPaginationSchema], Field(description="The maximum number of items to return in the response. Default is 100.")] = None,
213212
offset: Annotated[Optional[LimitOffsetPaginationSchema], Field(description="The number of items to skip before starting to collect the result set. Used for pagination.")] = None,
214-
filters: Annotated[Optional[QueryParameterDynamicFilterSchema], Field(description="This parameter should be formatted as a list of strings separated by ;")] = None,
213+
filters: Annotated[Optional[str], Field(description="This parameter should be formatted as a list of strings separated by ;")] = None,
215214
_request_timeout: Union[
216215
None,
217216
Annotated[StrictFloat, Field(gt=0)],
@@ -235,7 +234,7 @@ def custom_item_controller_index_without_preload_content(
235234
:param offset: The number of items to skip before starting to collect the result set. Used for pagination.
236235
:type offset: LimitOffsetPaginationSchema
237236
:param filters: This parameter should be formatted as a list of strings separated by ;
238-
:type filters: QueryParameterDynamicFilterSchema
237+
:type filters: str
239238
:param _request_timeout: timeout setting for this request. If one
240239
number provided, it will be total request
241240
timeout. It can also be a pair (tuple) of

0 commit comments

Comments
 (0)