Skip to content

Commit c29044e

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

File tree

11 files changed

+40
-7
lines changed

11 files changed

+40
-7
lines changed

docs/MemberResponse.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,11 @@ Name | Type | Description | Notes
1212
**institution_code** | **str** | | [optional]
1313
**is_being_aggregated** | **bool** | | [optional]
1414
**is_managed_by_user** | **bool** | | [optional]
15+
**is_manual** | **bool** | | [optional]
1516
**is_oauth** | **bool** | | [optional]
1617
**metadata** | **str** | | [optional]
18+
**most_recent_job_detail_code** | **str** | | [optional]
19+
**most_recent_job_detail_text** | **str** | | [optional]
1720
**name** | **str** | | [optional]
1821
**oauth_window_uri** | **str** | | [optional]
1922
**successfully_aggregated_at** | **str** | | [optional]

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.26.0"
17+
__version__ = "0.27.0"
1818

1919
# import apis into sdk package
2020
from mx_platform_python.api.insights_api import InsightsApi

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.26.0/python'
79+
self.user_agent = 'OpenAPI-Generator/0.27.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.26.0".\
395+
"SDK Package Version: 0.27.0".\
396396
format(env=sys.platform, pyversion=sys.version)
397397

398398
def get_host_settings(self):

mx_platform_python/models/member_response.py

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,17 @@ class MemberResponse(BaseModel):
3333
institution_code: Optional[StrictStr] = None
3434
is_being_aggregated: Optional[StrictBool] = None
3535
is_managed_by_user: Optional[StrictBool] = None
36+
is_manual: Optional[StrictBool] = None
3637
is_oauth: Optional[StrictBool] = None
3738
metadata: Optional[StrictStr] = None
39+
most_recent_job_detail_code: Optional[StrictStr] = None
40+
most_recent_job_detail_text: Optional[StrictStr] = None
3841
name: Optional[StrictStr] = None
3942
oauth_window_uri: Optional[StrictStr] = None
4043
successfully_aggregated_at: Optional[StrictStr] = None
4144
user_guid: Optional[StrictStr] = None
4245
user_id: Optional[StrictStr] = None
43-
__properties = ["aggregated_at", "background_aggregation_is_disabled", "connection_status", "guid", "id", "institution_code", "is_being_aggregated", "is_managed_by_user", "is_oauth", "metadata", "name", "oauth_window_uri", "successfully_aggregated_at", "user_guid", "user_id"]
46+
__properties = ["aggregated_at", "background_aggregation_is_disabled", "connection_status", "guid", "id", "institution_code", "is_being_aggregated", "is_managed_by_user", "is_manual", "is_oauth", "metadata", "most_recent_job_detail_code", "most_recent_job_detail_text", "name", "oauth_window_uri", "successfully_aggregated_at", "user_guid", "user_id"]
4447

4548
class Config:
4649
"""Pydantic configuration"""
@@ -101,6 +104,11 @@ def to_dict(self):
101104
if self.is_managed_by_user is None and "is_managed_by_user" in self.__fields_set__:
102105
_dict['is_managed_by_user'] = None
103106

107+
# set to None if is_manual (nullable) is None
108+
# and __fields_set__ contains the field
109+
if self.is_manual is None and "is_manual" in self.__fields_set__:
110+
_dict['is_manual'] = None
111+
104112
# set to None if is_oauth (nullable) is None
105113
# and __fields_set__ contains the field
106114
if self.is_oauth is None and "is_oauth" in self.__fields_set__:
@@ -111,6 +119,16 @@ def to_dict(self):
111119
if self.metadata is None and "metadata" in self.__fields_set__:
112120
_dict['metadata'] = None
113121

122+
# set to None if most_recent_job_detail_code (nullable) is None
123+
# and __fields_set__ contains the field
124+
if self.most_recent_job_detail_code is None and "most_recent_job_detail_code" in self.__fields_set__:
125+
_dict['most_recent_job_detail_code'] = None
126+
127+
# set to None if most_recent_job_detail_text (nullable) is None
128+
# and __fields_set__ contains the field
129+
if self.most_recent_job_detail_text is None and "most_recent_job_detail_text" in self.__fields_set__:
130+
_dict['most_recent_job_detail_text'] = None
131+
114132
# set to None if name (nullable) is None
115133
# and __fields_set__ contains the field
116134
if self.name is None and "name" in self.__fields_set__:
@@ -156,8 +174,11 @@ def from_dict(cls, obj: dict) -> MemberResponse:
156174
"institution_code": obj.get("institution_code"),
157175
"is_being_aggregated": obj.get("is_being_aggregated"),
158176
"is_managed_by_user": obj.get("is_managed_by_user"),
177+
"is_manual": obj.get("is_manual"),
159178
"is_oauth": obj.get("is_oauth"),
160179
"metadata": obj.get("metadata"),
180+
"most_recent_job_detail_code": obj.get("most_recent_job_detail_code"),
181+
"most_recent_job_detail_text": obj.get("most_recent_job_detail_text"),
161182
"name": obj.get("name"),
162183
"oauth_window_uri": obj.get("oauth_window_uri"),
163184
"successfully_aggregated_at": obj.get("successfully_aggregated_at"),

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.26.0
4+
packageVersion: 0.27.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.26.0"
3+
version = "0.27.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.26.0"
24+
VERSION = "0.27.0"
2525
PYTHON_REQUIRES = ">=3.7"
2626
REQUIRES = [
2727
"urllib3 >= 1.25.3, < 2.1.0",

test/test_member_response.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,11 @@ def make_instance(self, include_optional) -> MemberResponse:
4444
institution_code = 'chase',
4545
is_being_aggregated = False,
4646
is_managed_by_user = False,
47+
is_manual = False,
4748
is_oauth = False,
4849
metadata = '\"credentials_last_refreshed_at\": \"2015-10-15\"',
50+
most_recent_job_detail_code = '(deprecated)',
51+
most_recent_job_detail_text = '(deprecated)',
4952
name = 'Chase Bank',
5053
oauth_window_uri = 'https://mxbank.mx.com/oauth/authorize?client_id=b8OikQ4Ep3NuSUrQ13DdvFuwpNx-qqoAsJDVAQCyLkQ&redirect_uri=https%3A%2F%2Fint-app.moneydesktop.com%2Foauth%2Fredirect_from&response_type=code&scope=openid&state=d745bd4ee6f0f9c184757f574bcc2df2',
5154
successfully_aggregated_at = '2016-10-13T17:57:38.000Z',

test/test_member_response_body.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,11 @@ def make_instance(self, include_optional) -> MemberResponseBody:
4545
institution_code = 'chase',
4646
is_being_aggregated = False,
4747
is_managed_by_user = False,
48+
is_manual = False,
4849
is_oauth = False,
4950
metadata = '\"credentials_last_refreshed_at\": \"2015-10-15\"',
51+
most_recent_job_detail_code = '(deprecated)',
52+
most_recent_job_detail_text = '(deprecated)',
5053
name = 'Chase Bank',
5154
oauth_window_uri = 'https://mxbank.mx.com/oauth/authorize?client_id=b8OikQ4Ep3NuSUrQ13DdvFuwpNx-qqoAsJDVAQCyLkQ&redirect_uri=https%3A%2F%2Fint-app.moneydesktop.com%2Foauth%2Fredirect_from&response_type=code&scope=openid&state=d745bd4ee6f0f9c184757f574bcc2df2',
5255
successfully_aggregated_at = '2016-10-13T17:57:38.000Z',

0 commit comments

Comments
 (0)