Skip to content

Commit d969de5

Browse files
author
devexperience
committed
Generated version 0.41.0
This commit was automatically created by a GitHub Action to generate version 0.41.0 of this library.
1 parent 3383eb8 commit d969de5

16 files changed

+30
-8
lines changed

docs/AccountResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Name | Type | Description | Notes
2121
**currency_code** | **str** | | [optional]
2222
**day_payment_is_due** | **int** | | [optional]
2323
**death_benefit** | **int** | | [optional]
24+
**federal_insurance_status** | **str** | | [optional]
2425
**guid** | **str** | | [optional]
2526
**holdings_value** | **float** | | [optional]
2627
**id** | **str** | | [optional]

docs/InstitutionResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Name | Type | Description | Notes
1515
**supports_account_statement** | **bool** | | [optional]
1616
**supports_account_verification** | **bool** | | [optional]
1717
**supports_oauth** | **bool** | | [optional]
18+
**supports_tax_document** | **bool** | | [optional]
1819
**supports_transaction_history** | **bool** | | [optional]
1920
**trouble_signing_in_url** | **str** | | [optional]
2021
**url** | **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.40.0"
17+
__version__ = "0.41.0"
1818

1919
# import apis into sdk package
2020
from mx_platform_python.api.budgets_api import BudgetsApi

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

398398
def get_host_settings(self):

mx_platform_python/models/account_response.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ class AccountResponse(BaseModel):
4242
currency_code: Optional[StrictStr] = None
4343
day_payment_is_due: Optional[StrictInt] = None
4444
death_benefit: Optional[StrictInt] = None
45+
federal_insurance_status: Optional[StrictStr] = None
4546
guid: Optional[StrictStr] = None
4647
holdings_value: Optional[Union[StrictFloat, StrictInt]] = None
4748
id: Optional[StrictStr] = None
@@ -83,7 +84,7 @@ class AccountResponse(BaseModel):
8384
updated_at: Optional[StrictStr] = None
8485
user_guid: Optional[StrictStr] = None
8586
user_id: Optional[StrictStr] = None
86-
__properties = ["account_number", "account_ownership", "annuity_policy_to_date", "annuity_provider", "annuity_term_year", "apr", "apy", "available_balance", "available_credit", "balance", "cash_balance", "cash_surrender_value", "created_at", "credit_limit", "currency_code", "day_payment_is_due", "death_benefit", "guid", "holdings_value", "id", "imported_at", "institution_code", "insured_name", "interest_rate", "is_closed", "is_hidden", "is_manual", "last_payment", "last_payment_at", "loan_amount", "margin_balance", "matures_on", "member_guid", "member_id", "member_is_managed_by_user", "metadata", "minimum_balance", "minimum_payment", "name", "nickname", "original_balance", "pay_out_amount", "payment_due_at", "payoff_balance", "premium_amount", "property_type", "routing_number", "started_on", "statement_balance", "subtype", "today_ugl_amount", "today_ugl_percentage", "total_account_value", "total_account_value_ugl", "type", "updated_at", "user_guid", "user_id"]
87+
__properties = ["account_number", "account_ownership", "annuity_policy_to_date", "annuity_provider", "annuity_term_year", "apr", "apy", "available_balance", "available_credit", "balance", "cash_balance", "cash_surrender_value", "created_at", "credit_limit", "currency_code", "day_payment_is_due", "death_benefit", "federal_insurance_status", "guid", "holdings_value", "id", "imported_at", "institution_code", "insured_name", "interest_rate", "is_closed", "is_hidden", "is_manual", "last_payment", "last_payment_at", "loan_amount", "margin_balance", "matures_on", "member_guid", "member_id", "member_is_managed_by_user", "metadata", "minimum_balance", "minimum_payment", "name", "nickname", "original_balance", "pay_out_amount", "payment_due_at", "payoff_balance", "premium_amount", "property_type", "routing_number", "started_on", "statement_balance", "subtype", "today_ugl_amount", "today_ugl_percentage", "total_account_value", "total_account_value_ugl", "type", "updated_at", "user_guid", "user_id"]
8788

8889
class Config:
8990
"""Pydantic configuration"""
@@ -189,6 +190,11 @@ def to_dict(self):
189190
if self.death_benefit is None and "death_benefit" in self.__fields_set__:
190191
_dict['death_benefit'] = None
191192

193+
# set to None if federal_insurance_status (nullable) is None
194+
# and __fields_set__ contains the field
195+
if self.federal_insurance_status is None and "federal_insurance_status" in self.__fields_set__:
196+
_dict['federal_insurance_status'] = None
197+
192198
# set to None if guid (nullable) is None
193199
# and __fields_set__ contains the field
194200
if self.guid is None and "guid" in self.__fields_set__:
@@ -423,6 +429,7 @@ def from_dict(cls, obj: dict) -> AccountResponse:
423429
"currency_code": obj.get("currency_code"),
424430
"day_payment_is_due": obj.get("day_payment_is_due"),
425431
"death_benefit": obj.get("death_benefit"),
432+
"federal_insurance_status": obj.get("federal_insurance_status"),
426433
"guid": obj.get("guid"),
427434
"holdings_value": obj.get("holdings_value"),
428435
"id": obj.get("id"),

mx_platform_python/models/institution_response.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,11 @@ class InstitutionResponse(BaseModel):
3636
supports_account_statement: Optional[StrictBool] = None
3737
supports_account_verification: Optional[StrictBool] = None
3838
supports_oauth: Optional[StrictBool] = None
39+
supports_tax_document: Optional[StrictBool] = None
3940
supports_transaction_history: Optional[StrictBool] = None
4041
trouble_signing_in_url: Optional[StrictStr] = None
4142
url: Optional[StrictStr] = None
42-
__properties = ["code", "forgot_password_url", "forgot_username_url", "instructional_text", "medium_logo_url", "name", "small_logo_url", "supports_account_identification", "supports_account_statement", "supports_account_verification", "supports_oauth", "supports_transaction_history", "trouble_signing_in_url", "url"]
43+
__properties = ["code", "forgot_password_url", "forgot_username_url", "instructional_text", "medium_logo_url", "name", "small_logo_url", "supports_account_identification", "supports_account_statement", "supports_account_verification", "supports_oauth", "supports_tax_document", "supports_transaction_history", "trouble_signing_in_url", "url"]
4344

4445
class Config:
4546
"""Pydantic configuration"""
@@ -120,6 +121,11 @@ def to_dict(self):
120121
if self.supports_oauth is None and "supports_oauth" in self.__fields_set__:
121122
_dict['supports_oauth'] = None
122123

124+
# set to None if supports_tax_document (nullable) is None
125+
# and __fields_set__ contains the field
126+
if self.supports_tax_document is None and "supports_tax_document" in self.__fields_set__:
127+
_dict['supports_tax_document'] = None
128+
123129
# set to None if supports_transaction_history (nullable) is None
124130
# and __fields_set__ contains the field
125131
if self.supports_transaction_history is None and "supports_transaction_history" in self.__fields_set__:
@@ -158,6 +164,7 @@ def from_dict(cls, obj: dict) -> InstitutionResponse:
158164
"supports_account_statement": obj.get("supports_account_statement"),
159165
"supports_account_verification": obj.get("supports_account_verification"),
160166
"supports_oauth": obj.get("supports_oauth"),
167+
"supports_tax_document": obj.get("supports_tax_document"),
161168
"supports_transaction_history": obj.get("supports_transaction_history"),
162169
"trouble_signing_in_url": obj.get("trouble_signing_in_url"),
163170
"url": obj.get("url")

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

0 commit comments

Comments
 (0)