Skip to content

Commit b6c449d

Browse files
authored
Merge pull request #55 from aspose-pdf-cloud/develop
update to 22.11
2 parents 008c84c + b1b5416 commit b6c449d

File tree

6 files changed

+24
-31
lines changed

6 files changed

+24
-31
lines changed

README.md

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,9 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text
2929
## Read PDF Formats
3030
MHT, PCL, PS, XSLFO, MD
3131

32-
## Enhancements in Version 22.10
33-
- Convert password protected PDF to DOC.
34-
- Support to convert password protected document to graphic formats.
35-
- Support to convert pages of password protected PDF to JPEG using GetPageConvertToJpeg.
36-
- Add new REST API endpoint to parse PDF document into PDF parts containing specified page ranges.
32+
## Enhancements in Version 22.11
3733
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
3834

39-
## Bugs fixed in Version 22.10
40-
- The PostSplitDocument API method is throwing 504 Gateway Error.
41-
4235
## Installation
4336

4437
### Build a gem
@@ -52,15 +45,15 @@ gem build aspose_pdf_cloud.gemspec
5245
Then either install the gem locally:
5346

5447
```shell
55-
gem install ./aspose_pdf_cloud-22.10.0.gem
48+
gem install ./aspose_pdf_cloud-22.11.0.gem
5649
```
57-
(for development, run `gem install --dev ./aspose_pdf_cloud-22.10.0.gem` to install the development dependencies)
50+
(for development, run `gem install --dev ./aspose_pdf_cloud-22.11.0.gem` to install the development dependencies)
5851

5952
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
6053

6154
Finally add this to the Gemfile:
6255

63-
gem 'aspose_pdf_cloud', '~> 22.10.0'
56+
gem 'aspose_pdf_cloud', '~> 22.11.0'
6457

6558
### Install from Git
6659

@@ -342,7 +335,7 @@ Class | Method | HTTP request | Description
342335
*AsposePdfCloud::PdfApi* | [**post_sign_page**](docs/PdfApi.md#post_sign_page) | **POST** /pdf/\{name}/pages/\{pageNumber}/sign | Sign page.
343336
*AsposePdfCloud::PdfApi* | [**post_signature_field**](docs/PdfApi.md#post_signature_field) | **POST** /pdf/\{name}/fields/signature | Add document signature field.
344337
*AsposePdfCloud::PdfApi* | [**post_split_document**](docs/PdfApi.md#post_split_document) | **POST** /pdf/\{name}/split | Split document to parts.
345-
*AsposePdfCloud::PdfApi* | [**post_split_range_pdf_document**](docs/PdfApi.md#post_split_range_pdf_document) | **POST** /pdf/\{name}/splitrangepdf |
338+
*AsposePdfCloud::PdfApi* | [**post_split_range_pdf_document**](docs/PdfApi.md#post_split_range_pdf_document) | **POST** /pdf/\{name}/splitrangepdf | Split document into ranges.
346339
*AsposePdfCloud::PdfApi* | [**post_text_box_fields**](docs/PdfApi.md#post_text_box_fields) | **POST** /pdf/\{name}/fields/textbox | Add document text box fields.
347340
*AsposePdfCloud::PdfApi* | [**put_add_new_page**](docs/PdfApi.md#put_add_new_page) | **PUT** /pdf/\{name}/pages | Add new page to end of the document.
348341
*AsposePdfCloud::PdfApi* | [**put_add_text**](docs/PdfApi.md#put_add_text) | **PUT** /pdf/\{name}/pages/\{pageNumber}/text | Add text to PDF document page.

docs/PdfApi.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ Method | HTTP request | Description
246246
[**post_sign_page**](PdfApi.md#post_sign_page) | **POST** /pdf/\{name}/pages/\{pageNumber}/sign | Sign page.
247247
[**post_signature_field**](PdfApi.md#post_signature_field) | **POST** /pdf/\{name}/fields/signature | Add document signature field.
248248
[**post_split_document**](PdfApi.md#post_split_document) | **POST** /pdf/\{name}/split | Split document to parts.
249-
[**post_split_range_pdf_document**](PdfApi.md#post_split_range_pdf_document) | **POST** /pdf/\{name}/splitrangepdf |
249+
[**post_split_range_pdf_document**](PdfApi.md#post_split_range_pdf_document) | **POST** /pdf/\{name}/splitrangepdf | Split document into ranges.
250250
[**post_text_box_fields**](PdfApi.md#post_text_box_fields) | **POST** /pdf/\{name}/fields/textbox | Add document text box fields.
251251
[**put_add_new_page**](PdfApi.md#put_add_new_page) | **PUT** /pdf/\{name}/pages | Add new page to end of the document.
252252
[**put_add_text**](PdfApi.md#put_add_text) | **PUT** /pdf/\{name}/pages/\{pageNumber}/text | Add text to PDF document page.
@@ -6512,16 +6512,16 @@ Name | Type | Description | Notes
65126512
# **post_split_range_pdf_document**
65136513
> SplitResultResponse post_split_range_pdf_document(name, options, opts)
65146514
6515-
6515+
Split document into ranges.
65166516

65176517
### Parameters
65186518

65196519
Name | Type | Description | Notes
65206520
------------- | ------------- | ------------- | -------------
6521-
**name** | **String**| |
6522-
**options** | [**SplitRangePdfOptions**](SplitRangePdfOptions.md)| |
6523-
**storage** | **String**| | [optional]
6524-
**folder** | **String**| | [optional]
6521+
**name** | **String**| The document name. |
6522+
**options** | [**SplitRangePdfOptions**](SplitRangePdfOptions.md)| The splitting options. |
6523+
**storage** | **String**| The document storage. | [optional]
6524+
**folder** | **String**| The document folder. | [optional]
65256525

65266526
### Return type
65276527

docs/SplitRangePdfOptions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# AsposePdfCloud::SplitRangePdfOptions
2-
2+
Represents Pdf split into ranges options.
33

44
## Properties
55
Name | Type | Description | Notes

lib/aspose_pdf_cloud/api/pdf_api.rb

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19131,13 +19131,13 @@ def post_split_document_with_http_info(name, opts = {})
1913119131
return data, status_code, headers
1913219132
end
1913319133

19134+
# Split document into ranges.
1913419135
#
19135-
#
19136-
# @param name
19137-
# @param options
19136+
# @param name The document name.
19137+
# @param options The splitting options.
1913819138
# @param [Hash] opts the optional parameters
19139-
# @option opts [String] :storage
19140-
# @option opts [String] :folder
19139+
# @option opts [String] :storage The document storage.
19140+
# @option opts [String] :folder The document folder.
1914119141
# @return [SplitResultResponse]
1914219142
def post_split_range_pdf_document(name, options, opts = {})
1914319143
@api_client.request_token_if_needed
@@ -19152,13 +19152,13 @@ def post_split_range_pdf_document(name, options, opts = {})
1915219152
return data
1915319153
end
1915419154

19155+
# Split document into ranges.
1915519156
#
19156-
#
19157-
# @param name
19158-
# @param options
19157+
# @param name The document name.
19158+
# @param options The splitting options.
1915919159
# @param [Hash] opts the optional parameters
19160-
# @option opts [String] :storage
19161-
# @option opts [String] :folder
19160+
# @option opts [String] :storage The document storage.
19161+
# @option opts [String] :folder The document folder.
1916219162
# @return [Array<(SplitResultResponse, Fixnum, Hash)>] SplitResultResponse data, response status code and response headers
1916319163
def post_split_range_pdf_document_with_http_info(name, options, opts = {})
1916419164
if @api_client.config.debugging

lib/aspose_pdf_cloud/models/split_range_pdf_options.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
require 'time'
2424

2525
module AsposePdfCloud
26-
26+
# Represents Pdf split into ranges options.
2727
class SplitRangePdfOptions
2828
attr_accessor :page_ranges
2929

lib/aspose_pdf_cloud/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020
=end
2121

2222
module AsposePdfCloud
23-
VERSION = "22.10.0"
23+
VERSION = "22.11.0"
2424
end

0 commit comments

Comments
 (0)