Skip to content

Commit c863a1c

Browse files
Merge branch 'master' into release
2 parents f788ca3 + c2c90f7 commit c863a1c

25 files changed

+455
-882
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@ Python Cloud SDK wraps Aspose.Words Cloud API so you could seamlessly integrate
1616
- [Convert a document to desired file format](https://docs.aspose.cloud/display/wordscloud/Convert+Document+to+Destination+Format+with+Detailed+Settings+and+Save+Result+to+Storage) along with detailed settings.
1717
- Convert an encrypted PDF document into Word document format.
1818

19+
## Enhancements in Version 21.10
20+
21+
- Removed 'GraphicsQualityOptions' image save option as it no longer supported.
22+
- Added query parameter 'displayIntermediateResults' for batch requests. If 'false', the last response in batch will be returned only. Default is 'true'
23+
- Added 'JsonDataLoadOptions' and 'XmlDataLoadOptions' to 'ReportEngineSettings'
24+
25+
1926
## Enhancements in Version 21.8
2027

2128
- Added new api methods to get, insert, update or delete custom xml parts from documents.
18 KB
Binary file not shown.
3.36 MB
Binary file not shown.
34.1 KB
Binary file not shown.
31.7 KB
Binary file not shown.
6.77 MB
Binary file not shown.

TestData/DocumentActions/ConvertDocument/html_example.html

Lines changed: 0 additions & 38 deletions
This file was deleted.
-43.8 KB
Binary file not shown.

asposewordscloud/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@
103103
from asposewordscloud.models.form_fields_response import FormFieldsResponse
104104
from asposewordscloud.models.form_field_text_input import FormFieldTextInput
105105
from asposewordscloud.models.gif_save_options_data import GifSaveOptionsData
106-
from asposewordscloud.models.graphics_quality_options_data import GraphicsQualityOptionsData
107106
from asposewordscloud.models.header_footer import HeaderFooter
108107
from asposewordscloud.models.header_footer_link import HeaderFooterLink
109108
from asposewordscloud.models.header_footer_link_collection import HeaderFooterLinkCollection
@@ -117,6 +116,7 @@
117116
from asposewordscloud.models.hyperlinks_response import HyperlinksResponse
118117
from asposewordscloud.models.image_save_options_data import ImageSaveOptionsData
119118
from asposewordscloud.models.jpeg_save_options_data import JpegSaveOptionsData
119+
from asposewordscloud.models.json_data_load_options import JsonDataLoadOptions
120120
from asposewordscloud.models.link import Link
121121
from asposewordscloud.models.link_element import LinkElement
122122
from asposewordscloud.models.list_format import ListFormat
@@ -207,7 +207,6 @@
207207
from asposewordscloud.models.stat_data_response import StatDataResponse
208208
from asposewordscloud.models.storage_file import StorageFile
209209
from asposewordscloud.models.story_child_nodes import StoryChildNodes
210-
from asposewordscloud.models.string_format_data import StringFormatData
211210
from asposewordscloud.models.style import Style
212211
from asposewordscloud.models.style_apply import StyleApply
213212
from asposewordscloud.models.style_copy import StyleCopy
@@ -256,4 +255,5 @@
256255
from asposewordscloud.models.xaml_fixed_save_options_data import XamlFixedSaveOptionsData
257256
from asposewordscloud.models.xaml_flow_save_options_data import XamlFlowSaveOptionsData
258257
from asposewordscloud.models.xml_color import XmlColor
258+
from asposewordscloud.models.xml_data_load_options import XmlDataLoadOptions
259259
from asposewordscloud.models.xps_save_options_data import XpsSaveOptionsData

asposewordscloud/api_client.py

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

8282
self.pool = None
8383
self.rest_client = rest.RESTClientObject(configuration)
84-
self.default_headers = {'x-aspose-client': 'python sdk', 'x-aspose-version': '21.9'}
84+
self.default_headers = {'x-aspose-client': 'python sdk', 'x-aspose-version': '21.10'}
8585
if header_name is not None:
8686
self.default_headers[header_name] = header_value
8787
self.cookie = cookie
8888
# Set default User-Agent.
89-
self.user_agent = 'python sdk 21.9'
89+
self.user_agent = 'python sdk 21.10'
9090

9191
def __del__(self):
9292
if not self.pool is None:

0 commit comments

Comments
 (0)