Skip to content

Commit b24ca3d

Browse files
authored
Merge pull request #46 from mxenabled/openapi-generator-0.26.0
Generated version 0.26.0
2 parents e54eaea + 8982440 commit b24ca3d

File tree

10 files changed

+17
-7
lines changed

10 files changed

+17
-7
lines changed

docs/MemberStatusResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
99
**connection_status** | **str** | | [optional]
1010
**guid** | **str** | | [optional]
1111
**has_processed_accounts** | **bool** | | [optional]
12+
**has_processed_account_numbers** | **bool** | | [optional]
1213
**has_processed_transactions** | **bool** | | [optional]
1314
**is_authenticated** | **bool** | | [optional]
1415
**is_being_aggregated** | **bool** | | [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.25.0"
17+
__version__ = "0.26.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.25.0/python'
79+
self.user_agent = 'OpenAPI-Generator/0.26.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.25.0".\
395+
"SDK Package Version: 0.26.0".\
396396
format(env=sys.platform, pyversion=sys.version)
397397

398398
def get_host_settings(self):

mx_platform_python/models/member_status_response.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,12 @@ class MemberStatusResponse(BaseModel):
3131
connection_status: Optional[StrictStr] = None
3232
guid: Optional[StrictStr] = None
3333
has_processed_accounts: Optional[StrictBool] = None
34+
has_processed_account_numbers: Optional[StrictBool] = None
3435
has_processed_transactions: Optional[StrictBool] = None
3536
is_authenticated: Optional[StrictBool] = None
3637
is_being_aggregated: Optional[StrictBool] = None
3738
successfully_aggregated_at: Optional[StrictStr] = None
38-
__properties = ["aggregated_at", "challenges", "connection_status", "guid", "has_processed_accounts", "has_processed_transactions", "is_authenticated", "is_being_aggregated", "successfully_aggregated_at"]
39+
__properties = ["aggregated_at", "challenges", "connection_status", "guid", "has_processed_accounts", "has_processed_account_numbers", "has_processed_transactions", "is_authenticated", "is_being_aggregated", "successfully_aggregated_at"]
3940

4041
class Config:
4142
"""Pydantic configuration"""
@@ -88,6 +89,11 @@ def to_dict(self):
8889
if self.has_processed_accounts is None and "has_processed_accounts" in self.__fields_set__:
8990
_dict['has_processed_accounts'] = None
9091

92+
# set to None if has_processed_account_numbers (nullable) is None
93+
# and __fields_set__ contains the field
94+
if self.has_processed_account_numbers is None and "has_processed_account_numbers" in self.__fields_set__:
95+
_dict['has_processed_account_numbers'] = None
96+
9197
# set to None if has_processed_transactions (nullable) is None
9298
# and __fields_set__ contains the field
9399
if self.has_processed_transactions is None and "has_processed_transactions" in self.__fields_set__:
@@ -125,6 +131,7 @@ def from_dict(cls, obj: dict) -> MemberStatusResponse:
125131
"connection_status": obj.get("connection_status"),
126132
"guid": obj.get("guid"),
127133
"has_processed_accounts": obj.get("has_processed_accounts"),
134+
"has_processed_account_numbers": obj.get("has_processed_account_numbers"),
128135
"has_processed_transactions": obj.get("has_processed_transactions"),
129136
"is_authenticated": obj.get("is_authenticated"),
130137
"is_being_aggregated": obj.get("is_being_aggregated"),

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

test/test_member_status_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ def make_instance(self, include_optional) -> MemberStatusResponse:
5959
connection_status = 'CONNECTED',
6060
guid = 'MBR-7c6f361b-e582-15b6-60c0-358f12466b4b',
6161
has_processed_accounts = True,
62+
has_processed_account_numbers = True,
6263
has_processed_transactions = False,
6364
is_authenticated = False,
6465
is_being_aggregated = False,

test/test_member_status_response_body.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ def make_instance(self, include_optional) -> MemberStatusResponseBody:
6060
connection_status = 'CONNECTED',
6161
guid = 'MBR-7c6f361b-e582-15b6-60c0-358f12466b4b',
6262
has_processed_accounts = True,
63+
has_processed_account_numbers = True,
6364
has_processed_transactions = False,
6465
is_authenticated = False,
6566
is_being_aggregated = False,

0 commit comments

Comments
 (0)