Skip to content

Commit bec04a7

Browse files
author
devexperience
committed
Generated version 0.21.0
This commit was automatically created by a GitHub Action to generate version 0.21.0 of this library.
1 parent 6f0c49a commit bec04a7

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
lines changed

docs/SpendingPlanApi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ with mx_platform_python.ApiClient(configuration) as api_client:
140140
api_instance = mx_platform_python.SpendingPlanApi(api_client)
141141
spending_plan_guid = 'SPL-e5f9a5bd-c5b3-4901-bdc0-62119b9db262' # str | The unique ID for the `spending_plan`.
142142
user_guid = 'USR-fa7537f3-48aa-a683-a02a-b18940482f54' # str | The unique id for a `user`.
143-
spending_plan_iteration_item_create_request_body = mx_platform_python.SpendingPlanIterationItemCreateRequestBody() # SpendingPlanIterationItemCreateRequestBody | Iteration item to be created with required parameters (planned_amount)
143+
spending_plan_iteration_item_create_request_body = mx_platform_python.SpendingPlanIterationItemCreateRequestBody() # SpendingPlanIterationItemCreateRequestBody | Iteration item to be created with required parameter (planned_amount)
144144

145145
try:
146146
# Create spending plan iteration item
@@ -159,7 +159,7 @@ Name | Type | Description | Notes
159159
------------- | ------------- | ------------- | -------------
160160
**spending_plan_guid** | **str**| The unique ID for the `spending_plan`. |
161161
**user_guid** | **str**| The unique id for a `user`. |
162-
**spending_plan_iteration_item_create_request_body** | [**SpendingPlanIterationItemCreateRequestBody**](SpendingPlanIterationItemCreateRequestBody.md)| Iteration item to be created with required parameters (planned_amount) |
162+
**spending_plan_iteration_item_create_request_body** | [**SpendingPlanIterationItemCreateRequestBody**](SpendingPlanIterationItemCreateRequestBody.md)| Iteration item to be created with required parameter (planned_amount) |
163163

164164
### Return type
165165

@@ -1135,7 +1135,7 @@ with mx_platform_python.ApiClient(configuration) as api_client:
11351135
user_guid = 'USR-fa7537f3-48aa-a683-a02a-b18940482f54' # str | The unique id for a `user`.
11361136
spending_plan_guid = 'SPL-e5f9a5bd-c5b3-4901-bdc0-62119b9db262' # str | The unique ID for the `spending_plan`.
11371137
iteration_item_guid = 'SII-a4dc1549-da28-1245-9c9c-53eee4cdfbe3' # str | The unique ID for the `iteration_item`.
1138-
spending_plan_iteration_item_create_request_body = mx_platform_python.SpendingPlanIterationItemCreateRequestBody() # SpendingPlanIterationItemCreateRequestBody | Iteration item object to be updated with required parameter (iteration_item_guid)
1138+
spending_plan_iteration_item_create_request_body = mx_platform_python.SpendingPlanIterationItemCreateRequestBody() # SpendingPlanIterationItemCreateRequestBody | Iteration item to be updated with required parameter (planned_amount)
11391139

11401140
try:
11411141
# Update a spending plan iteration item
@@ -1155,7 +1155,7 @@ Name | Type | Description | Notes
11551155
**user_guid** | **str**| The unique id for a `user`. |
11561156
**spending_plan_guid** | **str**| The unique ID for the `spending_plan`. |
11571157
**iteration_item_guid** | **str**| The unique ID for the `iteration_item`. |
1158-
**spending_plan_iteration_item_create_request_body** | [**SpendingPlanIterationItemCreateRequestBody**](SpendingPlanIterationItemCreateRequestBody.md)| Iteration item object to be updated with required parameter (iteration_item_guid) |
1158+
**spending_plan_iteration_item_create_request_body** | [**SpendingPlanIterationItemCreateRequestBody**](SpendingPlanIterationItemCreateRequestBody.md)| Iteration item to be updated with required parameter (planned_amount) |
11591159

11601160
### Return type
11611161

mx_platform_python/__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__ = "0.20.0"
17+
__version__ = "0.21.0"
1818

1919
# import apis into sdk package
2020
from mx_platform_python.api.mx_platform_api import MxPlatformApi

mx_platform_python/api/spending_plan_api.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ def create_spending_plan_with_http_info(self, user_guid : Annotated[StrictStr, F
194194
_request_auth=_params.get('_request_auth'))
195195

196196
@validate_arguments
197-
def create_spending_plan_iteration_item(self, spending_plan_guid : Annotated[StrictStr, Field(..., description="The unique ID for the `spending_plan`.")], user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], spending_plan_iteration_item_create_request_body : Annotated[SpendingPlanIterationItemCreateRequestBody, Field(..., description="Iteration item to be created with required parameters (planned_amount)")], **kwargs) -> SpendingPlanIterationItemResponse: # noqa: E501
197+
def create_spending_plan_iteration_item(self, spending_plan_guid : Annotated[StrictStr, Field(..., description="The unique ID for the `spending_plan`.")], user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], spending_plan_iteration_item_create_request_body : Annotated[SpendingPlanIterationItemCreateRequestBody, Field(..., description="Iteration item to be created with required parameter (planned_amount)")], **kwargs) -> SpendingPlanIterationItemResponse: # noqa: E501
198198
"""Create spending plan iteration item # noqa: E501
199199
200200
This endpoint creates a new `spending_plan_iteration_item`. # noqa: E501
@@ -208,7 +208,7 @@ def create_spending_plan_iteration_item(self, spending_plan_guid : Annotated[Str
208208
:type spending_plan_guid: str
209209
:param user_guid: The unique id for a `user`. (required)
210210
:type user_guid: str
211-
:param spending_plan_iteration_item_create_request_body: Iteration item to be created with required parameters (planned_amount) (required)
211+
:param spending_plan_iteration_item_create_request_body: Iteration item to be created with required parameter (planned_amount) (required)
212212
:type spending_plan_iteration_item_create_request_body: SpendingPlanIterationItemCreateRequestBody
213213
:param async_req: Whether to execute the request asynchronously.
214214
:type async_req: bool, optional
@@ -228,7 +228,7 @@ def create_spending_plan_iteration_item(self, spending_plan_guid : Annotated[Str
228228
return self.create_spending_plan_iteration_item_with_http_info(spending_plan_guid, user_guid, spending_plan_iteration_item_create_request_body, **kwargs) # noqa: E501
229229

230230
@validate_arguments
231-
def create_spending_plan_iteration_item_with_http_info(self, spending_plan_guid : Annotated[StrictStr, Field(..., description="The unique ID for the `spending_plan`.")], user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], spending_plan_iteration_item_create_request_body : Annotated[SpendingPlanIterationItemCreateRequestBody, Field(..., description="Iteration item to be created with required parameters (planned_amount)")], **kwargs) -> ApiResponse: # noqa: E501
231+
def create_spending_plan_iteration_item_with_http_info(self, spending_plan_guid : Annotated[StrictStr, Field(..., description="The unique ID for the `spending_plan`.")], user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], spending_plan_iteration_item_create_request_body : Annotated[SpendingPlanIterationItemCreateRequestBody, Field(..., description="Iteration item to be created with required parameter (planned_amount)")], **kwargs) -> ApiResponse: # noqa: E501
232232
"""Create spending plan iteration item # noqa: E501
233233
234234
This endpoint creates a new `spending_plan_iteration_item`. # noqa: E501
@@ -242,7 +242,7 @@ def create_spending_plan_iteration_item_with_http_info(self, spending_plan_guid
242242
:type spending_plan_guid: str
243243
:param user_guid: The unique id for a `user`. (required)
244244
:type user_guid: str
245-
:param spending_plan_iteration_item_create_request_body: Iteration item to be created with required parameters (planned_amount) (required)
245+
:param spending_plan_iteration_item_create_request_body: Iteration item to be created with required parameter (planned_amount) (required)
246246
:type spending_plan_iteration_item_create_request_body: SpendingPlanIterationItemCreateRequestBody
247247
:param async_req: Whether to execute the request asynchronously.
248248
:type async_req: bool, optional
@@ -2127,7 +2127,7 @@ def read_spending_plan_user_with_http_info(self, user_guid : Annotated[StrictStr
21272127
_request_auth=_params.get('_request_auth'))
21282128

21292129
@validate_arguments
2130-
def update_spending_plan_iteration_item(self, user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], spending_plan_guid : Annotated[StrictStr, Field(..., description="The unique ID for the `spending_plan`.")], iteration_item_guid : Annotated[StrictStr, Field(..., description="The unique ID for the `iteration_item`.")], spending_plan_iteration_item_create_request_body : Annotated[SpendingPlanIterationItemCreateRequestBody, Field(..., description="Iteration item object to be updated with required parameter (iteration_item_guid)")], **kwargs) -> SpendingPlanIterationItemResponse: # noqa: E501
2130+
def update_spending_plan_iteration_item(self, user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], spending_plan_guid : Annotated[StrictStr, Field(..., description="The unique ID for the `spending_plan`.")], iteration_item_guid : Annotated[StrictStr, Field(..., description="The unique ID for the `iteration_item`.")], spending_plan_iteration_item_create_request_body : Annotated[SpendingPlanIterationItemCreateRequestBody, Field(..., description="Iteration item to be updated with required parameter (planned_amount)")], **kwargs) -> SpendingPlanIterationItemResponse: # noqa: E501
21312131
"""Update a spending plan iteration item # noqa: E501
21322132
21332133
Use this endpoint to update an existing `spending_plan_iteration_item`. # noqa: E501
@@ -2143,7 +2143,7 @@ def update_spending_plan_iteration_item(self, user_guid : Annotated[StrictStr, F
21432143
:type spending_plan_guid: str
21442144
:param iteration_item_guid: The unique ID for the `iteration_item`. (required)
21452145
:type iteration_item_guid: str
2146-
:param spending_plan_iteration_item_create_request_body: Iteration item object to be updated with required parameter (iteration_item_guid) (required)
2146+
:param spending_plan_iteration_item_create_request_body: Iteration item to be updated with required parameter (planned_amount) (required)
21472147
:type spending_plan_iteration_item_create_request_body: SpendingPlanIterationItemCreateRequestBody
21482148
:param async_req: Whether to execute the request asynchronously.
21492149
:type async_req: bool, optional
@@ -2163,7 +2163,7 @@ def update_spending_plan_iteration_item(self, user_guid : Annotated[StrictStr, F
21632163
return self.update_spending_plan_iteration_item_with_http_info(user_guid, spending_plan_guid, iteration_item_guid, spending_plan_iteration_item_create_request_body, **kwargs) # noqa: E501
21642164

21652165
@validate_arguments
2166-
def update_spending_plan_iteration_item_with_http_info(self, user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], spending_plan_guid : Annotated[StrictStr, Field(..., description="The unique ID for the `spending_plan`.")], iteration_item_guid : Annotated[StrictStr, Field(..., description="The unique ID for the `iteration_item`.")], spending_plan_iteration_item_create_request_body : Annotated[SpendingPlanIterationItemCreateRequestBody, Field(..., description="Iteration item object to be updated with required parameter (iteration_item_guid)")], **kwargs) -> ApiResponse: # noqa: E501
2166+
def update_spending_plan_iteration_item_with_http_info(self, user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], spending_plan_guid : Annotated[StrictStr, Field(..., description="The unique ID for the `spending_plan`.")], iteration_item_guid : Annotated[StrictStr, Field(..., description="The unique ID for the `iteration_item`.")], spending_plan_iteration_item_create_request_body : Annotated[SpendingPlanIterationItemCreateRequestBody, Field(..., description="Iteration item to be updated with required parameter (planned_amount)")], **kwargs) -> ApiResponse: # noqa: E501
21672167
"""Update a spending plan iteration item # noqa: E501
21682168
21692169
Use this endpoint to update an existing `spending_plan_iteration_item`. # noqa: E501
@@ -2179,7 +2179,7 @@ def update_spending_plan_iteration_item_with_http_info(self, user_guid : Annotat
21792179
:type spending_plan_guid: str
21802180
:param iteration_item_guid: The unique ID for the `iteration_item`. (required)
21812181
:type iteration_item_guid: str
2182-
:param spending_plan_iteration_item_create_request_body: Iteration item object to be updated with required parameter (iteration_item_guid) (required)
2182+
:param spending_plan_iteration_item_create_request_body: Iteration item to be updated with required parameter (planned_amount) (required)
21832183
:type spending_plan_iteration_item_create_request_body: SpendingPlanIterationItemCreateRequestBody
21842184
:param async_req: Whether to execute the request asynchronously.
21852185
:type async_req: bool, optional

mx_platform_python/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7676
self.default_headers[header_name] = header_value
7777
self.cookie = cookie
7878
# Set default User-Agent.
79-
self.user_agent = 'OpenAPI-Generator/0.20.0/python'
79+
self.user_agent = 'OpenAPI-Generator/0.21.0/python'
8080
self.client_side_validation = configuration.client_side_validation
8181

8282
def __enter__(self):

mx_platform_python/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ def to_debug_report(self):
392392
"OS: {env}\n"\
393393
"Python Version: {pyversion}\n"\
394394
"Version of the API: 0.1.0\n"\
395-
"SDK Package Version: 0.20.0".\
395+
"SDK Package Version: 0.21.0".\
396396
format(env=sys.platform, pyversion=sys.version)
397397

398398
def get_host_settings(self):

openapi/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
packageName: mx_platform_python
33
packageUrl: https://pypi.org/project/mx-platform-python
4-
packageVersion: 0.20.0
4+
packageVersion: 0.21.0
55
projectName: mx-platform-python

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 = "mx_platform_python"
3-
version = "0.20.0"
3+
version = "0.21.0"
44
description = "MX Platform API"
55
authors = ["MX Platform API <[email protected]>"]
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 = "mx-platform-python"
24-
VERSION = "0.20.0"
24+
VERSION = "0.21.0"
2525
PYTHON_REQUIRES = ">=3.7"
2626
REQUIRES = [
2727
"urllib3 >= 1.25.3, < 2.1.0",

0 commit comments

Comments
 (0)