Skip to content

Commit b5c7e05

Browse files
authored
Merge pull request #32 from mxenabled/openapi-generator-0.10.1
Generated version 0.10.1
2 parents 8d7021d + 79f6aa1 commit b5c7e05

8 files changed

Lines changed: 11 additions & 5 deletions

File tree

docs/MxPlatformApi.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6819,6 +6819,7 @@ with mx_platform_python.ApiClient(configuration) as api_client:
68196819
current_institution_code="chase",
68206820
current_institution_guid="INS-f1a3285d-e855-b61f-6aa7-8ae575c0e0e9",
68216821
current_member_guid="MBR-7c6f361b-e582-15b6-60c0-358f12466b4b",
6822+
disable_background_agg=False,
68226823
disable_institution_search=False,
68236824
include_identity=False,
68246825
include_transactions=True,

docs/WidgetRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
1010
**current_institution_code** | **str** | | [optional]
1111
**current_institution_guid** | **str** | | [optional]
1212
**current_member_guid** | **str** | | [optional]
13+
**disable_background_agg** | **bool** | | [optional]
1314
**disable_institution_search** | **bool** | | [optional]
1415
**include_identity** | **bool** | | [optional]
1516
**include_transactions** | **bool** | | [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.10.0"
13+
__version__ = "0.10.1"
1414

1515
# import ApiClient
1616
from mx_platform_python.api_client import ApiClient

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.10.0/python'
79+
self.user_agent = 'OpenAPI-Generator/0.10.1/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.10.0".\
407+
"SDK Package Version: 0.10.1".\
408408
format(env=sys.platform, pyversion=sys.version)
409409

410410
def get_host_settings(self):

mx_platform_python/model/widget_request.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ def openapi_types():
8787
'current_institution_code': (str,), # noqa: E501
8888
'current_institution_guid': (str,), # noqa: E501
8989
'current_member_guid': (str,), # noqa: E501
90+
'disable_background_agg': (bool,), # noqa: E501
9091
'disable_institution_search': (bool,), # noqa: E501
9192
'include_identity': (bool,), # noqa: E501
9293
'include_transactions': (bool,), # noqa: E501
@@ -110,6 +111,7 @@ def discriminator():
110111
'current_institution_code': 'current_institution_code', # noqa: E501
111112
'current_institution_guid': 'current_institution_guid', # noqa: E501
112113
'current_member_guid': 'current_member_guid', # noqa: E501
114+
'disable_background_agg': 'disable_background_agg', # noqa: E501
113115
'disable_institution_search': 'disable_institution_search', # noqa: E501
114116
'include_identity': 'include_identity', # noqa: E501
115117
'include_transactions': 'include_transactions', # noqa: E501
@@ -170,6 +172,7 @@ def _from_openapi_data(cls, widget_type, *args, **kwargs): # noqa: E501
170172
current_institution_code (str): [optional] # noqa: E501
171173
current_institution_guid (str): [optional] # noqa: E501
172174
current_member_guid (str): [optional] # noqa: E501
175+
disable_background_agg (bool): [optional] # noqa: E501
173176
disable_institution_search (bool): [optional] # noqa: E501
174177
include_identity (bool): [optional] # noqa: E501
175178
include_transactions (bool): [optional] # noqa: E501
@@ -269,6 +272,7 @@ def __init__(self, widget_type, *args, **kwargs): # noqa: E501
269272
current_institution_code (str): [optional] # noqa: E501
270273
current_institution_guid (str): [optional] # noqa: E501
271274
current_member_guid (str): [optional] # noqa: E501
275+
disable_background_agg (bool): [optional] # noqa: E501
272276
disable_institution_search (bool): [optional] # noqa: E501
273277
include_identity (bool): [optional] # noqa: E501
274278
include_transactions (bool): [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.10.0
4+
packageVersion: 0.10.1
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.10.0"
14+
VERSION = "0.10.1"
1515
# To install the library, run the following
1616
#
1717
# python setup.py install

0 commit comments

Comments
 (0)