Skip to content

Commit 981223e

Browse files
author
devexperience
committed
Generated version 0.37.0
This commit was automatically created by a GitHub Action to generate version 0.37.0 of this library.
1 parent b70c63a commit 981223e

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

docs/MxPlatformApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7538,7 +7538,7 @@ Name | Type | Description | Notes
75387538
75397539
Update account by member
75407540

7541-
This endpoint allows you to update certain attributes of an `account` resource.
7541+
This endpoint allows you to update certain attributes of an `account` resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update `is_business`, `is_hidden` and `metadata`.
75427542

75437543
### Example
75447544

@@ -7576,7 +7576,7 @@ with mx_platform_python.ApiClient(configuration) as api_client:
75767576
account_guid = 'ACT-06d7f44b-caae-0f6e-1384-01f52e75dcb1' # str | The unique id for an `account`.
75777577
member_guid = 'MBR-7c6f361b-e582-15b6-60c0-358f12466b4b' # str | The unique id for a `member`.
75787578
user_guid = 'USR-fa7537f3-48aa-a683-a02a-b18940482f54' # str | The unique id for a `user`.
7579-
account_update_request_body = mx_platform_python.AccountUpdateRequestBody() # AccountUpdateRequestBody | Account object to be created with optional parameters (is_hidden)
7579+
account_update_request_body = mx_platform_python.AccountUpdateRequestBody() # AccountUpdateRequestBody |
75807580

75817581
try:
75827582
# Update account by member
@@ -7596,7 +7596,7 @@ Name | Type | Description | Notes
75967596
**account_guid** | **str**| The unique id for an `account`. |
75977597
**member_guid** | **str**| The unique id for a `member`. |
75987598
**user_guid** | **str**| The unique id for a `user`. |
7599-
**account_update_request_body** | [**AccountUpdateRequestBody**](AccountUpdateRequestBody.md)| Account object to be created with optional parameters (is_hidden) |
7599+
**account_update_request_body** | [**AccountUpdateRequestBody**](AccountUpdateRequestBody.md)| |
76007600

76017601
### Return type
76027602

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.36.0"
17+
__version__ = "0.37.0"
1818

1919
# import apis into sdk package
2020
from mx_platform_python.api.budgets_api import BudgetsApi

mx_platform_python/api/mx_platform_api.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14261,10 +14261,10 @@ def resume_aggregation_with_http_info(self, member_guid : Annotated[StrictStr, F
1426114261
_request_auth=_params.get('_request_auth'))
1426214262

1426314263
@validate_arguments
14264-
def update_account_by_member(self, account_guid : Annotated[StrictStr, Field(..., description="The unique id for an `account`.")], member_guid : Annotated[StrictStr, Field(..., description="The unique id for a `member`.")], user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], account_update_request_body : Annotated[AccountUpdateRequestBody, Field(..., description="Account object to be created with optional parameters (is_hidden)")], **kwargs) -> AccountResponseBody: # noqa: E501
14264+
def update_account_by_member(self, account_guid : Annotated[StrictStr, Field(..., description="The unique id for an `account`.")], member_guid : Annotated[StrictStr, Field(..., description="The unique id for a `member`.")], user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], account_update_request_body : AccountUpdateRequestBody, **kwargs) -> AccountResponseBody: # noqa: E501
1426514265
"""Update account by member # noqa: E501
1426614266

14267-
This endpoint allows you to update certain attributes of an `account` resource. # noqa: E501
14267+
This endpoint allows you to update certain attributes of an `account` resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update `is_business`, `is_hidden` and `metadata`. # noqa: E501
1426814268
This method makes a synchronous HTTP request by default. To make an
1426914269
asynchronous HTTP request, please pass async_req=True
1427014270

@@ -14277,7 +14277,7 @@ def update_account_by_member(self, account_guid : Annotated[StrictStr, Field(...
1427714277
:type member_guid: str
1427814278
:param user_guid: The unique id for a `user`. (required)
1427914279
:type user_guid: str
14280-
:param account_update_request_body: Account object to be created with optional parameters (is_hidden) (required)
14280+
:param account_update_request_body: (required)
1428114281
:type account_update_request_body: AccountUpdateRequestBody
1428214282
:param async_req: Whether to execute the request asynchronously.
1428314283
:type async_req: bool, optional
@@ -14297,10 +14297,10 @@ def update_account_by_member(self, account_guid : Annotated[StrictStr, Field(...
1429714297
return self.update_account_by_member_with_http_info(account_guid, member_guid, user_guid, account_update_request_body, **kwargs) # noqa: E501
1429814298

1429914299
@validate_arguments
14300-
def update_account_by_member_with_http_info(self, account_guid : Annotated[StrictStr, Field(..., description="The unique id for an `account`.")], member_guid : Annotated[StrictStr, Field(..., description="The unique id for a `member`.")], user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], account_update_request_body : Annotated[AccountUpdateRequestBody, Field(..., description="Account object to be created with optional parameters (is_hidden)")], **kwargs) -> ApiResponse: # noqa: E501
14300+
def update_account_by_member_with_http_info(self, account_guid : Annotated[StrictStr, Field(..., description="The unique id for an `account`.")], member_guid : Annotated[StrictStr, Field(..., description="The unique id for a `member`.")], user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], account_update_request_body : AccountUpdateRequestBody, **kwargs) -> ApiResponse: # noqa: E501
1430114301
"""Update account by member # noqa: E501
1430214302

14303-
This endpoint allows you to update certain attributes of an `account` resource. # noqa: E501
14303+
This endpoint allows you to update certain attributes of an `account` resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update `is_business`, `is_hidden` and `metadata`. # noqa: E501
1430414304
This method makes a synchronous HTTP request by default. To make an
1430514305
asynchronous HTTP request, please pass async_req=True
1430614306

@@ -14313,7 +14313,7 @@ def update_account_by_member_with_http_info(self, account_guid : Annotated[Stric
1431314313
:type member_guid: str
1431414314
:param user_guid: The unique id for a `user`. (required)
1431514315
:type user_guid: str
14316-
:param account_update_request_body: Account object to be created with optional parameters (is_hidden) (required)
14316+
:param account_update_request_body: (required)
1431714317
:type account_update_request_body: AccountUpdateRequestBody
1431814318
:param async_req: Whether to execute the request asynchronously.
1431914319
: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.36.0/python'
79+
self.user_agent = 'OpenAPI-Generator/0.37.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.36.0".\
395+
"SDK Package Version: 0.37.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.36.0
4+
packageVersion: 0.37.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.36.0"
3+
version = "0.37.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.36.0"
24+
VERSION = "0.37.0"
2525
PYTHON_REQUIRES = ">=3.7"
2626
REQUIRES = [
2727
"urllib3 >= 1.25.3, < 2.1.0",

0 commit comments

Comments
 (0)