Skip to content

Commit 1ee3207

Browse files
authored
Merge pull request #102 from aspose-pdf-cloud/develop
update to 24.12
2 parents f3df085 + 87092b7 commit 1ee3207

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

README.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,8 @@ 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 24.11
34-
- Develop DeleteDocumentLayer Method.
35-
- Develop GetDocumentLayers Method.
36-
- How to extract PDF layer elements and create a new PDF
33+
## Enhancements in Version 24.12
34+
- Add support for PDF to PDF 3B conversion.
3735
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
3836

3937
## Installation

docs/PdfAType.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Name | Type | Value | Description
77
**PDFA1A** | **string** | 'PDFA1A' | Pdf/A-1a format
88
**PDFA1B** | **string** | 'PDFA1B' | Pdf/A-1b format
99
**PDFA3A** | **string** | 'PDFA3A' | Pdf/A-3a format
10+
**PDFA3B** | **string** | 'PDFA3B' | Pdf/A-3b format
1011

1112
[[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/pdfAType.ts)
1213

package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "asposepdfcloud",
3-
"version": "24.11.0",
3+
"version": "24.12.0",
44
"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.",
55
"homepage": "https://products.aspose.cloud/pdf/cloud",
66
"author": {

src/models/pdfAType.ts

+1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ export enum PdfAType {
2323
PDFA1A = 'PDFA1A',
2424
PDFA1B = 'PDFA1B',
2525
PDFA3A = 'PDFA3A',
26+
PDFA3B = 'PDFA3B',
2627
}

src/requestHelper.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ async function invokeApiMethodInternal(requestOptions: request.Options, confgura
9595
//headers
9696
sa.set("User-Agent", "pdf nodejs sdk");
9797
sa.set("x-aspose-client", "nodejs sdk");
98-
sa.set("x-aspose-client-version", "24.11.0");
98+
sa.set("x-aspose-client-version", "24.12.0");
9999

100100
if (!requestOptions.headers) {
101101
requestOptions.headers = {};

0 commit comments

Comments
 (0)