Skip to content

Commit d59fa7b

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

File tree

10 files changed

+14
-9
lines changed

10 files changed

+14
-9
lines changed

docs/WidgetRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
1313
**disable_institution_search** | **bool** | | [optional]
1414
**include_identity** | **bool** | | [optional]
1515
**include_transactions** | **bool** | | [optional]
16+
**insight_guid** | **str** | | [optional]
1617
**is_mobile_webview** | **bool** | | [optional]
1718
**microwidget_instance_id** | **str** | | [optional]
1819
**mode** | **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.23.0"
17+
__version__ = "0.24.0"
1818

1919
# import apis into sdk package
2020
from mx_platform_python.api.mx_platform_api import MxPlatformApi

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

398398
def get_host_settings(self):

mx_platform_python/models/widget_request.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ class WidgetRequest(BaseModel):
3434
disable_institution_search: Optional[StrictBool] = None
3535
include_identity: Optional[StrictBool] = None
3636
include_transactions: Optional[StrictBool] = None
37+
insight_guid: Optional[StrictStr] = None
3738
is_mobile_webview: Optional[StrictBool] = None
3839
microwidget_instance_id: Optional[StrictStr] = None
3940
mode: Optional[StrictStr] = None
@@ -42,7 +43,7 @@ class WidgetRequest(BaseModel):
4243
ui_message_webview_url_scheme: Optional[StrictStr] = None
4344
update_credentials: Optional[StrictBool] = None
4445
widget_type: StrictStr = Field(...)
45-
__properties = ["client_redirect_url", "color_scheme", "current_institution_code", "current_institution_guid", "current_member_guid", "disable_background_agg", "disable_institution_search", "include_identity", "include_transactions", "is_mobile_webview", "microwidget_instance_id", "mode", "oauth_referral_source", "ui_message_version", "ui_message_webview_url_scheme", "update_credentials", "widget_type"]
46+
__properties = ["client_redirect_url", "color_scheme", "current_institution_code", "current_institution_guid", "current_member_guid", "disable_background_agg", "disable_institution_search", "include_identity", "include_transactions", "insight_guid", "is_mobile_webview", "microwidget_instance_id", "mode", "oauth_referral_source", "ui_message_version", "ui_message_webview_url_scheme", "update_credentials", "widget_type"]
4647

4748
class Config:
4849
"""Pydantic configuration"""
@@ -89,6 +90,7 @@ def from_dict(cls, obj: dict) -> WidgetRequest:
8990
"disable_institution_search": obj.get("disable_institution_search"),
9091
"include_identity": obj.get("include_identity"),
9192
"include_transactions": obj.get("include_transactions"),
93+
"insight_guid": obj.get("insight_guid"),
9294
"is_mobile_webview": obj.get("is_mobile_webview"),
9395
"microwidget_instance_id": obj.get("microwidget_instance_id"),
9496
"mode": obj.get("mode"),

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

test/test_widget_request.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,9 @@ def make_instance(self, include_optional) -> WidgetRequest:
4545
disable_institution_search = False,
4646
include_identity = False,
4747
include_transactions = True,
48+
insight_guid = 'BET-1234',
4849
is_mobile_webview = False,
49-
microwidget_instance_id = 'false',
50+
microwidget_instance_id = 'accounts_page',
5051
mode = 'aggregation',
5152
oauth_referral_source = 'BROWSER',
5253
ui_message_version = 4,

test/test_widget_request_body.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,9 @@ def make_instance(self, include_optional) -> WidgetRequestBody:
4646
disable_institution_search = False,
4747
include_identity = False,
4848
include_transactions = True,
49+
insight_guid = 'BET-1234',
4950
is_mobile_webview = False,
50-
microwidget_instance_id = 'false',
51+
microwidget_instance_id = 'accounts_page',
5152
mode = 'aggregation',
5253
oauth_referral_source = 'BROWSER',
5354
ui_message_version = 4,

0 commit comments

Comments
 (0)