Skip to content

Commit bca9db8

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

File tree

10 files changed

+12
-7
lines changed

10 files changed

+12
-7
lines changed

docs/WidgetRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
1414
**include_identity** | **bool** | | [optional]
1515
**include_transactions** | **bool** | | [optional]
1616
**is_mobile_webview** | **bool** | | [optional]
17+
**microwidget_instance_id** | **str** | | [optional]
1718
**mode** | **str** | | [optional]
1819
**oauth_referral_source** | **str** | | [optional]
1920
**ui_message_version** | **int** | | [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.21.0"
17+
__version__ = "0.22.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.21.0/python'
79+
self.user_agent = 'OpenAPI-Generator/0.22.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.21.0".\
395+
"SDK Package Version: 0.22.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
@@ -35,13 +35,14 @@ class WidgetRequest(BaseModel):
3535
include_identity: Optional[StrictBool] = None
3636
include_transactions: Optional[StrictBool] = None
3737
is_mobile_webview: Optional[StrictBool] = None
38+
microwidget_instance_id: Optional[StrictStr] = None
3839
mode: Optional[StrictStr] = None
3940
oauth_referral_source: Optional[StrictStr] = None
4041
ui_message_version: Optional[StrictInt] = None
4142
ui_message_webview_url_scheme: Optional[StrictStr] = None
4243
update_credentials: Optional[StrictBool] = None
4344
widget_type: StrictStr = Field(...)
44-
__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", "mode", "oauth_referral_source", "ui_message_version", "ui_message_webview_url_scheme", "update_credentials", "widget_type"]
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"]
4546

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

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

test/test_widget_request.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ def make_instance(self, include_optional) -> WidgetRequest:
4646
include_identity = False,
4747
include_transactions = True,
4848
is_mobile_webview = False,
49+
microwidget_instance_id = 'false',
4950
mode = 'aggregation',
5051
oauth_referral_source = 'BROWSER',
5152
ui_message_version = 4,

test/test_widget_request_body.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ def make_instance(self, include_optional) -> WidgetRequestBody:
4747
include_identity = False,
4848
include_transactions = True,
4949
is_mobile_webview = False,
50+
microwidget_instance_id = 'false',
5051
mode = 'aggregation',
5152
oauth_referral_source = 'BROWSER',
5253
ui_message_version = 4,

0 commit comments

Comments
 (0)