Skip to content

Commit d1f461d

Browse files
author
devexperience
committed
Generated version 0.17.0
This commit was automatically created by a GitHub Action to generate version 0.17.0 of this library.
1 parent b798469 commit d1f461d

File tree

9 files changed

+20
-6
lines changed

9 files changed

+20
-6
lines changed

docs/MemberCreateRequestBody.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**client_redirect_url** | **str** | | [optional]
8+
**enable_app2app** | **bool** | | [optional]
89
**member** | [**MemberCreateRequest**](MemberCreateRequest.md) | | [optional]
910
**referral_source** | **str** | | [optional]
1011
**ui_message_webview_url_scheme** | **str** | | [optional]

docs/MxPlatformApi.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -812,6 +812,7 @@ with mx_platform_python.ApiClient(configuration) as api_client:
812812
user_guid = "USR-fa7537f3-48aa-a683-a02a-b18940482f54" # str | The unique id for a `user`.
813813
member_create_request_body = MemberCreateRequestBody(
814814
client_redirect_url="https://mx.com",
815+
enable_app2app=False,
815816
member=MemberCreateRequest(
816817
background_aggregation_is_disabled=False,
817818
credentials=[
@@ -7413,6 +7414,7 @@ with mx_platform_python.ApiClient(configuration) as api_client:
74137414
member_guid = "MBR-7c6f361b-e582-15b6-60c0-358f12466b4b" # str | The unique id for a `member`.
74147415
user_guid = "USR-fa7537f3-48aa-a683-a02a-b18940482f54" # str | The unique id for a `user`.
74157416
client_redirect_url = "https://mx.com" # str | A URL that MX will redirect to at the end of OAuth with additional query parameters. Only available with `referral_source=APP`. (optional)
7417+
enable_app2app = "false" # str | This indicates whether OAuth app2app behavior is enabled for institutions that support it. Defaults to `true`. This setting is not persistent. (optional)
74167418
referral_source = "APP" # str | Must be either `BROWSER` or `APP` depending on the implementation. Defaults to `BROWSER`. (optional)
74177419
skip_aggregation = False # bool | Setting this parameter to `true` will prevent the member from automatically aggregating after being redirected from the authorization page. (optional)
74187420
ui_message_webview_url_scheme = "mx" # str | A scheme for routing the user back to the application state they were previously in. Only available with `referral_source=APP`. (optional)
@@ -7429,7 +7431,7 @@ with mx_platform_python.ApiClient(configuration) as api_client:
74297431
# and optional values
74307432
try:
74317433
# Request oauth window uri
7432-
api_response = api_instance.request_o_auth_window_uri(member_guid, user_guid, client_redirect_url=client_redirect_url, referral_source=referral_source, skip_aggregation=skip_aggregation, ui_message_webview_url_scheme=ui_message_webview_url_scheme)
7434+
api_response = api_instance.request_o_auth_window_uri(member_guid, user_guid, client_redirect_url=client_redirect_url, enable_app2app=enable_app2app, referral_source=referral_source, skip_aggregation=skip_aggregation, ui_message_webview_url_scheme=ui_message_webview_url_scheme)
74337435
pprint(api_response)
74347436
except mx_platform_python.ApiException as e:
74357437
print("Exception when calling MxPlatformApi->request_o_auth_window_uri: %s\n" % e)
@@ -7443,6 +7445,7 @@ Name | Type | Description | Notes
74437445
**member_guid** | **str**| The unique id for a `member`. |
74447446
**user_guid** | **str**| The unique id for a `user`. |
74457447
**client_redirect_url** | **str**| A URL that MX will redirect to at the end of OAuth with additional query parameters. Only available with `referral_source=APP`. | [optional]
7448+
**enable_app2app** | **str**| This indicates whether OAuth app2app behavior is enabled for institutions that support it. Defaults to `true`. This setting is not persistent. | [optional]
74467449
**referral_source** | **str**| Must be either `BROWSER` or `APP` depending on the implementation. Defaults to `BROWSER`. | [optional]
74477450
**skip_aggregation** | **bool**| Setting this parameter to `true` will prevent the member from automatically aggregating after being redirected from the authorization page. | [optional]
74487451
**ui_message_webview_url_scheme** | **str**| A scheme for routing the user back to the application state they were previously in. Only available with `referral_source=APP`. | [optional]

mx_platform_python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"""
1111

1212

13-
__version__ = "0.16.0"
13+
__version__ = "0.17.0"
1414

1515
# import ApiClient
1616
from mx_platform_python.api_client import ApiClient

mx_platform_python/api/mx_platform_api.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5228,6 +5228,7 @@ def __init__(self, api_client=None):
52285228
'member_guid',
52295229
'user_guid',
52305230
'client_redirect_url',
5231+
'enable_app2app',
52315232
'referral_source',
52325233
'skip_aggregation',
52335234
'ui_message_webview_url_scheme',
@@ -5255,6 +5256,8 @@ def __init__(self, api_client=None):
52555256
(str,),
52565257
'client_redirect_url':
52575258
(str,),
5259+
'enable_app2app':
5260+
(str,),
52585261
'referral_source':
52595262
(str,),
52605263
'skip_aggregation':
@@ -5266,6 +5269,7 @@ def __init__(self, api_client=None):
52665269
'member_guid': 'member_guid',
52675270
'user_guid': 'user_guid',
52685271
'client_redirect_url': 'client_redirect_url',
5272+
'enable_app2app': 'enable_app2app',
52695273
'referral_source': 'referral_source',
52705274
'skip_aggregation': 'skip_aggregation',
52715275
'ui_message_webview_url_scheme': 'ui_message_webview_url_scheme',
@@ -5274,6 +5278,7 @@ def __init__(self, api_client=None):
52745278
'member_guid': 'path',
52755279
'user_guid': 'path',
52765280
'client_redirect_url': 'query',
5281+
'enable_app2app': 'query',
52775282
'referral_source': 'query',
52785283
'skip_aggregation': 'query',
52795284
'ui_message_webview_url_scheme': 'query',
@@ -13116,6 +13121,7 @@ def request_o_auth_window_uri(
1311613121

1311713122
Keyword Args:
1311813123
client_redirect_url (str): A URL that MX will redirect to at the end of OAuth with additional query parameters. Only available with `referral_source=APP`.. [optional]
13124+
enable_app2app (str): This indicates whether OAuth app2app behavior is enabled for institutions that support it. Defaults to `true`. This setting is not persistent.. [optional]
1311913125
referral_source (str): Must be either `BROWSER` or `APP` depending on the implementation. Defaults to `BROWSER`.. [optional]
1312013126
skip_aggregation (bool): Setting this parameter to `true` will prevent the member from automatically aggregating after being redirected from the authorization page.. [optional]
1312113127
ui_message_webview_url_scheme (str): A scheme for routing the user back to the application state they were previously in. Only available with `referral_source=APP`.. [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.16.0/python'
79+
self.user_agent = 'OpenAPI-Generator/0.17.0/python'
8080

8181
def __enter__(self):
8282
return self

mx_platform_python/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ def to_debug_report(self):
404404
"OS: {env}\n"\
405405
"Python Version: {pyversion}\n"\
406406
"Version of the API: 0.1.0\n"\
407-
"SDK Package Version: 0.16.0".\
407+
"SDK Package Version: 0.17.0".\
408408
format(env=sys.platform, pyversion=sys.version)
409409

410410
def get_host_settings(self):

mx_platform_python/model/member_create_request_body.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ def openapi_types():
8888
lazy_import()
8989
return {
9090
'client_redirect_url': (str,), # noqa: E501
91+
'enable_app2app': (bool,), # noqa: E501
9192
'member': (MemberCreateRequest,), # noqa: E501
9293
'referral_source': (str,), # noqa: E501
9394
'ui_message_webview_url_scheme': (str,), # noqa: E501
@@ -100,6 +101,7 @@ def discriminator():
100101

101102
attribute_map = {
102103
'client_redirect_url': 'client_redirect_url', # noqa: E501
104+
'enable_app2app': 'enable_app2app', # noqa: E501
103105
'member': 'member', # noqa: E501
104106
'referral_source': 'referral_source', # noqa: E501
105107
'ui_message_webview_url_scheme': 'ui_message_webview_url_scheme', # noqa: E501
@@ -147,6 +149,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
147149
through its discriminator because we passed in
148150
_visited_composed_classes = (Animal,)
149151
client_redirect_url (str): [optional] # noqa: E501
152+
enable_app2app (bool): [optional] # noqa: E501
150153
member (MemberCreateRequest): [optional] # noqa: E501
151154
referral_source (str): [optional] # noqa: E501
152155
ui_message_webview_url_scheme (str): [optional] # noqa: E501
@@ -232,6 +235,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
232235
through its discriminator because we passed in
233236
_visited_composed_classes = (Animal,)
234237
client_redirect_url (str): [optional] # noqa: E501
238+
enable_app2app (bool): [optional] # noqa: E501
235239
member (MemberCreateRequest): [optional] # noqa: E501
236240
referral_source (str): [optional] # noqa: E501
237241
ui_message_webview_url_scheme (str): [optional] # noqa: E501

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.16.0
4+
packageVersion: 0.17.0
55
projectName: mx-platform-python

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from setuptools import setup, find_packages # noqa: H301
1212

1313
NAME = "mx-platform-python"
14-
VERSION = "0.16.0"
14+
VERSION = "0.17.0"
1515
# To install the library, run the following
1616
#
1717
# python setup.py install

0 commit comments

Comments
 (0)