Skip to content

Commit 87f715e

Browse files
author
devexperience
committed
Generated version 0.13.0
This commit was automatically created by a GitHub Action to generate version 0.13.0 of this library.
1 parent 377bc43 commit 87f715e

File tree

7 files changed

+20
-5
lines changed

7 files changed

+20
-5
lines changed

docs/InstitutionResponse.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**code** | **str, none_type** | | [optional]
8+
**forgot_password_url** | **str, none_type** | | [optional]
9+
**forgot_username_url** | **str, none_type** | | [optional]
810
**instructional_text** | **str, none_type** | | [optional]
911
**medium_logo_url** | **str, none_type** | | [optional]
1012
**name** | **str, none_type** | | [optional]
@@ -14,6 +16,7 @@ Name | Type | Description | Notes
1416
**supports_account_verification** | **bool, none_type** | | [optional]
1517
**supports_oauth** | **bool, none_type** | | [optional]
1618
**supports_transaction_history** | **bool, none_type** | | [optional]
19+
**trouble_signing_in_url** | **str, none_type** | | [optional]
1720
**url** | **str, none_type** | | [optional]
1821
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
1922

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

410410
def get_host_settings(self):

mx_platform_python/model/institution_response.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ def openapi_types():
8282
"""
8383
return {
8484
'code': (str, none_type,), # noqa: E501
85+
'forgot_password_url': (str, none_type,), # noqa: E501
86+
'forgot_username_url': (str, none_type,), # noqa: E501
8587
'instructional_text': (str, none_type,), # noqa: E501
8688
'medium_logo_url': (str, none_type,), # noqa: E501
8789
'name': (str, none_type,), # noqa: E501
@@ -91,6 +93,7 @@ def openapi_types():
9193
'supports_account_verification': (bool, none_type,), # noqa: E501
9294
'supports_oauth': (bool, none_type,), # noqa: E501
9395
'supports_transaction_history': (bool, none_type,), # noqa: E501
96+
'trouble_signing_in_url': (str, none_type,), # noqa: E501
9497
'url': (str, none_type,), # noqa: E501
9598
}
9699

@@ -101,6 +104,8 @@ def discriminator():
101104

102105
attribute_map = {
103106
'code': 'code', # noqa: E501
107+
'forgot_password_url': 'forgot_password_url', # noqa: E501
108+
'forgot_username_url': 'forgot_username_url', # noqa: E501
104109
'instructional_text': 'instructional_text', # noqa: E501
105110
'medium_logo_url': 'medium_logo_url', # noqa: E501
106111
'name': 'name', # noqa: E501
@@ -110,6 +115,7 @@ def discriminator():
110115
'supports_account_verification': 'supports_account_verification', # noqa: E501
111116
'supports_oauth': 'supports_oauth', # noqa: E501
112117
'supports_transaction_history': 'supports_transaction_history', # noqa: E501
118+
'trouble_signing_in_url': 'trouble_signing_in_url', # noqa: E501
113119
'url': 'url', # noqa: E501
114120
}
115121

@@ -155,6 +161,8 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
155161
through its discriminator because we passed in
156162
_visited_composed_classes = (Animal,)
157163
code (str, none_type): [optional] # noqa: E501
164+
forgot_password_url (str, none_type): [optional] # noqa: E501
165+
forgot_username_url (str, none_type): [optional] # noqa: E501
158166
instructional_text (str, none_type): [optional] # noqa: E501
159167
medium_logo_url (str, none_type): [optional] # noqa: E501
160168
name (str, none_type): [optional] # noqa: E501
@@ -164,6 +172,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
164172
supports_account_verification (bool, none_type): [optional] # noqa: E501
165173
supports_oauth (bool, none_type): [optional] # noqa: E501
166174
supports_transaction_history (bool, none_type): [optional] # noqa: E501
175+
trouble_signing_in_url (str, none_type): [optional] # noqa: E501
167176
url (str, none_type): [optional] # noqa: E501
168177
"""
169178

@@ -247,6 +256,8 @@ def __init__(self, *args, **kwargs): # noqa: E501
247256
through its discriminator because we passed in
248257
_visited_composed_classes = (Animal,)
249258
code (str, none_type): [optional] # noqa: E501
259+
forgot_password_url (str, none_type): [optional] # noqa: E501
260+
forgot_username_url (str, none_type): [optional] # noqa: E501
250261
instructional_text (str, none_type): [optional] # noqa: E501
251262
medium_logo_url (str, none_type): [optional] # noqa: E501
252263
name (str, none_type): [optional] # noqa: E501
@@ -256,6 +267,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
256267
supports_account_verification (bool, none_type): [optional] # noqa: E501
257268
supports_oauth (bool, none_type): [optional] # noqa: E501
258269
supports_transaction_history (bool, none_type): [optional] # noqa: E501
270+
trouble_signing_in_url (str, none_type): [optional] # noqa: E501
259271
url (str, none_type): [optional] # noqa: E501
260272
"""
261273

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.12.0
4+
packageVersion: 0.13.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.12.0"
14+
VERSION = "0.13.0"
1515
# To install the library, run the following
1616
#
1717
# python setup.py install

0 commit comments

Comments
 (0)