Skip to content

Commit 7609408

Browse files
Merge pull request #26 from mxenabled/openapi-generator-0.7.2
Generated version 0.7.2
2 parents 69249a0 + 67c0c36 commit 7609408

File tree

7 files changed

+10
-5
lines changed

7 files changed

+10
-5
lines changed

docs/CredentialResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
99
**field_type** | **str, none_type** | | [optional]
1010
**guid** | **str, none_type** | | [optional]
1111
**label** | **str, none_type** | | [optional]
12+
**type** | **str, none_type** | | [optional]
1213
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
1314

1415
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

mx_platform_python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"""
1111

1212

13-
__version__ = "0.7.1"
13+
__version__ = "0.7.2"
1414

1515
# import ApiClient
1616
from mx_platform_python.api_client import ApiClient

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.7.1/python'
79+
self.user_agent = 'OpenAPI-Generator/0.7.2/python'
8080

8181
def __enter__(self):
8282
return self

mx_platform_python/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ def to_debug_report(self):
411411
"OS: {env}\n"\
412412
"Python Version: {pyversion}\n"\
413413
"Version of the API: 0.1.0\n"\
414-
"SDK Package Version: 0.7.1".\
414+
"SDK Package Version: 0.7.2".\
415415
format(env=sys.platform, pyversion=sys.version)
416416

417417
def get_host_settings(self):

mx_platform_python/model/credential_response.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ def openapi_types():
8686
'field_type': (str, none_type,), # noqa: E501
8787
'guid': (str, none_type,), # noqa: E501
8888
'label': (str, none_type,), # noqa: E501
89+
'type': (str, none_type,), # noqa: E501
8990
}
9091

9192
@cached_property
@@ -99,6 +100,7 @@ def discriminator():
99100
'field_type': 'field_type', # noqa: E501
100101
'guid': 'guid', # noqa: E501
101102
'label': 'label', # noqa: E501
103+
'type': 'type', # noqa: E501
102104
}
103105

104106
read_only_vars = {
@@ -147,6 +149,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
147149
field_type (str, none_type): [optional] # noqa: E501
148150
guid (str, none_type): [optional] # noqa: E501
149151
label (str, none_type): [optional] # noqa: E501
152+
type (str, none_type): [optional] # noqa: E501
150153
"""
151154

152155
_check_type = kwargs.pop('_check_type', True)
@@ -233,6 +236,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
233236
field_type (str, none_type): [optional] # noqa: E501
234237
guid (str, none_type): [optional] # noqa: E501
235238
label (str, none_type): [optional] # noqa: E501
239+
type (str, none_type): [optional] # noqa: E501
236240
"""
237241

238242
_check_type = kwargs.pop('_check_type', True)

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.7.1
4+
packageVersion: 0.7.2
55
projectName: mx-platform-python

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from setuptools import setup, find_packages # noqa: H301
1212

1313
NAME = "mx-platform-python"
14-
VERSION = "0.7.1"
14+
VERSION = "0.7.2"
1515
# To install the library, run the following
1616
#
1717
# python setup.py install

0 commit comments

Comments
 (0)