Skip to content

Commit 7c4a054

Browse files
authored
Merge pull request #68 from aspose-pdf-cloud/develop
update to 22.10
2 parents 6f9f725 + a3d9b33 commit 7c4a054

12 files changed

+364
-55
lines changed

README.md

+13-3
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,16 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text
3030
## Read PDF Formats
3131
MHT, PCL, PS, XSLFO, MD
3232

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

40+
## Bugs fixed in Version 22.10
41+
- The PostSplitDocument API method is throwing 504 Gateway Error.
42+
3643
## Installation
3744

3845
### NPM
@@ -213,7 +220,7 @@ Class | Method | HTTP request | Description
213220
*PdfApi* | [**getPageUnderlineAnnotations**](docs/PdfApi.md#getPageUnderlineAnnotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/underline | Read document page underline annotations.
214221
*PdfApi* | [**getPclInStorageToPdf**](docs/PdfApi.md#getPclInStorageToPdf) | **GET** /pdf/create/pcl | Convert PCL file (located on storage) to PDF format and return resulting file in response.
215222
*PdfApi* | [**getPdfAInStorageToPdf**](docs/PdfApi.md#getPdfAInStorageToPdf) | **GET** /pdf/create/pdfa | Convert PDFA file (located on storage) to PDF format and return resulting file in response.
216-
*PdfApi* | [**getPdfInStorageToDoc**](docs/PdfApi.md#getPdfInStorageToDoc) | **GET** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and returns resulting file in response content
223+
*PdfApi* | [**getPdfInStorageToDoc**](docs/PdfApi.md#getPdfInStorageToDoc) | **GET** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and returns resulting file in response content.
217224
*PdfApi* | [**getPdfInStorageToEpub**](docs/PdfApi.md#getPdfInStorageToEpub) | **GET** /pdf/\{name}/convert/epub | Converts PDF document (located on storage) to EPUB format and returns resulting file in response content
218225
*PdfApi* | [**getPdfInStorageToHtml**](docs/PdfApi.md#getPdfInStorageToHtml) | **GET** /pdf/\{name}/convert/html | Converts PDF document (located on storage) to Html format and returns resulting file in response content
219226
*PdfApi* | [**getPdfInStorageToMobiXml**](docs/PdfApi.md#getPdfInStorageToMobiXml) | **GET** /pdf/\{name}/convert/mobixml | Converts PDF document (located on storage) to MOBIXML format and returns resulting ZIP archive file in response content.
@@ -314,6 +321,7 @@ Class | Method | HTTP request | Description
314321
*PdfApi* | [**postSignDocument**](docs/PdfApi.md#postSignDocument) | **POST** /pdf/\{name}/sign | Sign document.
315322
*PdfApi* | [**postSignPage**](docs/PdfApi.md#postSignPage) | **POST** /pdf/\{name}/pages/\{pageNumber}/sign | Sign page.
316323
*PdfApi* | [**postSplitDocument**](docs/PdfApi.md#postSplitDocument) | **POST** /pdf/\{name}/split | Split document to parts.
324+
*PdfApi* | [**postSplitRangePdfDocument**](docs/PdfApi.md#postSplitRangePdfDocument) | **POST** /pdf/\{name}/splitrangepdf |
317325
*PdfApi* | [**postTextBoxFields**](docs/PdfApi.md#postTextBoxFields) | **POST** /pdf/\{name}/fields/textbox | Add document text box fields.
318326
*PdfApi* | [**putAddNewPage**](docs/PdfApi.md#putAddNewPage) | **PUT** /pdf/\{name}/pages | Add new page to end of the document.
319327
*PdfApi* | [**putAddText**](docs/PdfApi.md#putAddText) | **PUT** /pdf/\{name}/pages/\{pageNumber}/text | Add text to PDF document page.
@@ -380,7 +388,7 @@ Class | Method | HTTP request | Description
380388
*PdfApi* | [**putPdfInRequestToXlsx**](docs/PdfApi.md#putPdfInRequestToXlsx) | **PUT** /pdf/convert/xlsx | Converts PDF document (in request content) to XLSX format and uploads resulting file to storage.
381389
*PdfApi* | [**putPdfInRequestToXml**](docs/PdfApi.md#putPdfInRequestToXml) | **PUT** /pdf/convert/xml | Converts PDF document (in request content) to XML format and uploads resulting file to storage.
382390
*PdfApi* | [**putPdfInRequestToXps**](docs/PdfApi.md#putPdfInRequestToXps) | **PUT** /pdf/convert/xps | Converts PDF document (in request content) to XPS format and uploads resulting file to storage.
383-
*PdfApi* | [**putPdfInStorageToDoc**](docs/PdfApi.md#putPdfInStorageToDoc) | **PUT** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and uploads resulting file to storage
391+
*PdfApi* | [**putPdfInStorageToDoc**](docs/PdfApi.md#putPdfInStorageToDoc) | **PUT** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and uploads resulting file to storage.
384392
*PdfApi* | [**putPdfInStorageToEpub**](docs/PdfApi.md#putPdfInStorageToEpub) | **PUT** /pdf/\{name}/convert/epub | Converts PDF document (located on storage) to EPUB format and uploads resulting file to storage
385393
*PdfApi* | [**putPdfInStorageToHtml**](docs/PdfApi.md#putPdfInStorageToHtml) | **PUT** /pdf/\{name}/convert/html | Converts PDF document (located on storage) to Html format and uploads resulting file to storage
386394
*PdfApi* | [**putPdfInStorageToMobiXml**](docs/PdfApi.md#putPdfInStorageToMobiXml) | **PUT** /pdf/\{name}/convert/mobixml | Converts PDF document (located on storage) to MOBIXML format and uploads resulting ZIP archive file to storage
@@ -591,6 +599,7 @@ Class | Description
591599
[**PageLayout**](docs/PageLayout.md) | Descibes page layout.
592600
[**PageMode**](docs/PageMode.md) | Class descibes used components of the document page.
593601
[**PageNumberStamp**](docs/PageNumberStamp.md) | Represents Pdf stamps.
602+
[**PageRange**](docs/PageRange.md) |
594603
[**Pages**](docs/Pages.md) | Represents list of pages.
595604
[**PageWordCount**](docs/PageWordCount.md) | Page words count.
596605
[**Paragraph**](docs/Paragraph.md) | Represents text paragraphs as multiline text object.
@@ -649,6 +658,7 @@ Class | Description
649658
[**SoundAnnotationsResponse**](docs/SoundAnnotationsResponse.md) | Represents response containing multiple sound annotation objects
650659
[**SoundEncoding**](docs/SoundEncoding.md) | The encoding format for the sample data.
651660
[**SoundIcon**](docs/SoundIcon.md) | An icon to be used in displaying the annotation.
661+
[**SplitRangePdfOptions**](docs/SplitRangePdfOptions.md) |
652662
[**SplitResult**](docs/SplitResult.md) | Represents split result object.
653663
[**SplitResultDocument**](docs/SplitResultDocument.md) | Represents split result document,
654664
[**SplitResultResponse**](docs/SplitResultResponse.md) | Represents responce containing split result.

docs/PageRange.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# PageRange
2+
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**from** | **number** | | [optional]
8+
**to** | **number** | | [optional]
9+
10+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) [[View Source]](../src/models/pageRange.ts)
11+

0 commit comments

Comments
 (0)