Skip to content

Commit d20eba9

Browse files
SDK regenerated by CI server [ci skip]
1 parent a8aa9a5 commit d20eba9

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Python Cloud SDK wraps Aspose.Words Cloud API so you could seamlessly integrate
2121
- Added 'DeleteBookmark' and 'DeleteBookmarkOnline' API methods for delete bookmarks by name from the document.
2222
- Added 'DeleteBookmarks' and 'DeleteBookmarksOnline' API methods for delete all bookmarks from the document.
2323
- Added 'InsertBookmark' and 'InsertBookmarkOnline' API methods for create new bookmarks in the document.
24+
- Support all save formats for 'CreateDocument' operation.
2425

2526

2627
## Enhancements in Version 22.5

asposewordscloud/api_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
8383

8484
self.pool = None
8585
self.rest_client = rest.RESTClientObject(configuration)
86-
self.default_headers = {'x-aspose-client': 'python sdk', 'x-aspose-version': '22.4'}
86+
self.default_headers = {'x-aspose-client': 'python sdk', 'x-aspose-version': '22.6'}
8787
if header_name is not None:
8888
self.default_headers[header_name] = header_value
8989
self.cookie = cookie
9090
# Set default User-Agent.
91-
self.user_agent = 'python sdk 22.4'
91+
self.user_agent = 'python sdk 22.6'
9292

9393
def __del__(self):
9494
if not self.pool is None:

asposewordscloud/apis/words_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1581,7 +1581,7 @@ def copy_styles_from_template_with_http_info(self, request, **kwargs): # noqa:
15811581
collection_formats=http_params['collection_formats']))
15821582

15831583
def create_document(self, request, **kwargs): # noqa: E501
1584-
"""Supported extensions: ".doc", ".docx", ".docm", ".dot", ".dotm", ".dotx", ".flatopc", ".fopc", ".flatopc_macro", ".fopc_macro", ".flatopc_template", ".fopc_template", ".flatopc_template_macro", ".fopc_template_macro", ".wordml", ".wml", ".rtf". # noqa: E501
1584+
"""Supported all save format extensions. # noqa: E501
15851585

15861586
This method makes a synchronous HTTP request by default. To make an
15871587
asynchronous HTTP request, please pass is_async=True
@@ -1608,7 +1608,7 @@ def create_document(self, request, **kwargs): # noqa: E501
16081608
return data
16091609

16101610
def create_document_with_http_info(self, request, **kwargs): # noqa: E501
1611-
"""Supported extensions: ".doc", ".docx", ".docm", ".dot", ".dotm", ".dotx", ".flatopc", ".fopc", ".flatopc_macro", ".fopc_macro", ".flatopc_template", ".fopc_template", ".flatopc_template_macro", ".fopc_template_macro", ".wordml", ".wml", ".rtf". # noqa: E501
1611+
"""Supported all save format extensions. # noqa: E501
16121612

16131613
This method makes a synchronous HTTP request by default. To make an
16141614
asynchronous HTTP request, please pass is_async=True

asposewordscloud/configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,6 @@ def to_debug_report(self):
262262
return "Python SDK Debug Report:\n"\
263263
"OS: {env}\n"\
264264
"Python Version: {pyversion}\n"\
265-
"Version of the API: 22.4\n"\
266-
"SDK Package Version: 22.4".\
265+
"Version of the API: 22.6\n"\
266+
"SDK Package Version: 22.6".\
267267
format(env=sys.platform, pyversion=sys.version)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
77
8-
OpenAPI spec version: 22.4
8+
OpenAPI spec version: 22.6
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""
@@ -14,7 +14,7 @@
1414
from setuptools import setup, find_packages # noqa: H301
1515

1616
NAME = "aspose-words-cloud"
17-
VERSION = "22.4.0"
17+
VERSION = "22.6.0"
1818
# To install the library, run the following
1919
#
2020
# python setup.py install

0 commit comments

Comments
 (0)