Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 2 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,24 +30,10 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text
## Read PDF Formats
MHT, PCL, PS, XSLFO, MD

## Enhancements in Version 23.10
- Support of reading common info of password protected PDF in GetDocument API.
- Support stamp password protected document using DeleteDocumentStamps API method.
- Support stamp password protected document using DeleteStamp API method.
- Support stamp password protected document using PostDocumentPageNumberStamps API method.
- Support stamp password protected document using PostPageImageStamps API method.
- Support stamp password protected document using PostPageTextStamps API method.
- Support stamp password protected document using GetPageStamps API method.
- Support stamp password protected document using GetDocumentStamps API method.
- Support stamp password protected document using PostPagePdfPageStamps API method.
- Support stamp password protected document using DeletePageStamps API method.
- Develop a method to add an attachment file to a PDF document.
## Enhancements in Version 23.11
- Support to Convert Password Protected PDF Documents.
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.

## Bugs fixed in Version 23.10
- Aspose.PDF Cloud PostFlattenDocument API Issue.
- The GetPages API throws timeout error for PDF files larger than 10 Mb.

## Installation

### NPM
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "asposepdfcloud",
"version": "23.10.0",
"version": "23.11.0",
"description": "Aspose.PDF Cloud is a REST API for creating and editing PDF files. Most popular features proposed by Aspose.PDF Cloud: PDF to Word, Convert PDF to Image, Merge PDF, Split PDF, Add Images to PDF, Rotate PDF. It can also be used to convert PDF files to different formats like DOC, HTML, XPS, TIFF and many more. Aspose.PDF Cloud gives you control: create PDFs from scratch or from HTML, XML, template, database, XPS or an image. Render PDFs to image formats such as JPEG, PNG, GIF, BMP, TIFF and many others. Aspose.PDF Cloud helps you manipulate elements of a PDF file like text, annotations, watermarks, signatures, bookmarks, stamps and so on. Its REST API also allows you to manage PDF pages by using features like merging, splitting, and inserting. Add images to a PDF file or convert PDF pages to images.",
"homepage": "https://products.aspose.cloud/pdf/cloud",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/requestHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ async function invokeApiMethodInternal(requestOptions: request.Options, confgura
//headers
sa.set("User-Agent", "pdf nodejs sdk");
sa.set("x-aspose-client", "nodejs sdk");
sa.set("x-aspose-client-version", "23.10.0");
sa.set("x-aspose-client-version", "23.11.0");

if (!requestOptions.headers) {
requestOptions.headers = {};
Expand Down