Skip to content

Commit a70e50a

Browse files
Merge pull request #4 from mxenabled/bm/openapi_update
Include updates to OpenAPI spec
2 parents b04e69c + 31a3641 commit a70e50a

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 MX Technologies Inc.
3+
Copyright (c) 2022 MX Technologies Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

docs/MxPlatformApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1926,7 +1926,7 @@ with mx_platform_python.ApiClient(configuration) as api_client:
19261926
extended_transaction_type="partner_transaction_type",
19271927
id="ID-123",
19281928
memo="Additional-information*on_transaction",
1929-
merchant_category_code=123,
1929+
merchant_category_code=4121,
19301930
type="DEBIT",
19311931
),
19321932
],

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.2.0"
13+
__version__ = "0.3.0"
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.2.0/python'
79+
self.user_agent = 'OpenAPI-Generator/0.3.0/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
@@ -401,7 +401,7 @@ def to_debug_report(self):
401401
"OS: {env}\n"\
402402
"Python Version: {pyversion}\n"\
403403
"Version of the API: 0.1.0\n"\
404-
"SDK Package Version: 0.2.0".\
404+
"SDK Package Version: 0.3.0".\
405405
format(env=sys.platform, pyversion=sys.version)
406406

407407
def get_host_settings(self):

openapi/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
packageName: mx_platform_python
22
packageUrl: https://pypi.org/project/mx-platform-python
3-
packageVersion: 0.2.0
3+
packageVersion: 0.3.0
44
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.2.0"
14+
VERSION = "0.3.0"
1515
# To install the library, run the following
1616
#
1717
# python setup.py install

0 commit comments

Comments
 (0)