Skip to content

Commit 2a9eb8a

Browse files
authored
Merge pull request #57 from aspose-pdf-cloud/develop
update to 22.2
2 parents 191c680 + 4e8b45a commit 2a9eb8a

File tree

8 files changed

+23
-179
lines changed

8 files changed

+23
-179
lines changed

README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,13 @@ 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.1
33+
## Enhancements in Version 22.2
3434
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
3535

36+
## Bugs fixed in Version 22.2
37+
- PDF to XLSX: Google sheet does not recognize output excel sheet.
38+
- Text Replace API method throws Internal Error.
39+
3640
## Enhancements in Version 20.9
3741
* Implemented custom fonts for Text API.
3842
* Added custom fonts for Table API.
@@ -172,7 +176,6 @@ Class | Method | HTTP request | Description
172176
*PdfApi* | [**getImportFieldsFromXfdfInStorage**](docs/PdfApi.md#getImportFieldsFromXfdfInStorage) | **GET** /pdf/\{name}/import/xfdf | Update fields from XFDF file in storage.
173177
*PdfApi* | [**getImportFieldsFromXmlInStorage**](docs/PdfApi.md#getImportFieldsFromXmlInStorage) | **GET** /pdf/\{name}/import/xml | Import from XML file (located on storage) to PDF format and return resulting file in response.
174178
*PdfApi* | [**getInkAnnotation**](docs/PdfApi.md#getInkAnnotation) | **GET** /pdf/\{name}/annotations/ink/\{annotationId} | Read document page ink annotation by ID.
175-
*PdfApi* | [**getLaTeXInStorageToPdf**](docs/PdfApi.md#getLaTeXInStorageToPdf) | **GET** /pdf/create/latex | Convert TeX file (located on storage) to PDF format and return resulting file in response.
176179
*PdfApi* | [**getLineAnnotation**](docs/PdfApi.md#getLineAnnotation) | **GET** /pdf/\{name}/annotations/line/\{annotationId} | Read document page line annotation by ID.
177180
*PdfApi* | [**getLinkAnnotation**](docs/PdfApi.md#getLinkAnnotation) | **GET** /pdf/\{name}/links/\{linkId} | Read document link annotation by ID.
178181
*PdfApi* | [**getListBoxField**](docs/PdfApi.md#getListBoxField) | **GET** /pdf/\{name}/fields/listbox/\{fieldName} | Read document listbox field by name.
@@ -359,7 +362,6 @@ Class | Method | HTTP request | Description
359362
*PdfApi* | [**putImportFieldsFromXfdfInStorage**](docs/PdfApi.md#putImportFieldsFromXfdfInStorage) | **PUT** /pdf/\{name}/import/xfdf | Update fields from XFDF file in storage.
360363
*PdfApi* | [**putImportFieldsFromXmlInStorage**](docs/PdfApi.md#putImportFieldsFromXmlInStorage) | **PUT** /pdf/\{name}/import/xml | Update fields from XML file in storage.
361364
*PdfApi* | [**putInkAnnotation**](docs/PdfApi.md#putInkAnnotation) | **PUT** /pdf/\{name}/annotations/ink/\{annotationId} | Replace document ink annotation
362-
*PdfApi* | [**putLaTeXInStorageToPdf**](docs/PdfApi.md#putLaTeXInStorageToPdf) | **PUT** /pdf/\{name}/create/latex | Convert TeX file (located on storage) to PDF format and upload resulting file to storage.
363365
*PdfApi* | [**putLineAnnotation**](docs/PdfApi.md#putLineAnnotation) | **PUT** /pdf/\{name}/annotations/line/\{annotationId} | Replace document line annotation
364366
*PdfApi* | [**putLinkAnnotation**](docs/PdfApi.md#putLinkAnnotation) | **PUT** /pdf/\{name}/links/\{linkId} | Replace document page link annotations
365367
*PdfApi* | [**putListBoxField**](docs/PdfApi.md#putListBoxField) | **PUT** /pdf/\{name}/fields/listbox/\{fieldName} | Replace document listbox field

docs/DocumentProperty.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Pdf document property.
55
## Properties
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**name** | **string** | Pame of the property. | [optional]
8+
**name** | **string** | Name of the property. | [optional]
99
**value** | **string** | Property value. | [optional]
1010
**builtIn** | **boolean** | Value indicating whether it is a built-in property. |
1111
**links** | [**Array&lt;Link&gt;**](Link.md) | Link to the document.<br />*Inherited from [LinkElement](LinkElement.md)* | [optional]

docs/PdfApi.md

+6-52
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ Method | HTTP request | Description
9797
*PdfApi* | [**getImportFieldsFromXfdfInStorage**](PdfApi.md#getImportFieldsFromXfdfInStorage) | **GET** /pdf/\{name}/import/xfdf | Update fields from XFDF file in storage.
9898
*PdfApi* | [**getImportFieldsFromXmlInStorage**](PdfApi.md#getImportFieldsFromXmlInStorage) | **GET** /pdf/\{name}/import/xml | Import from XML file (located on storage) to PDF format and return resulting file in response.
9999
*PdfApi* | [**getInkAnnotation**](PdfApi.md#getInkAnnotation) | **GET** /pdf/\{name}/annotations/ink/\{annotationId} | Read document page ink annotation by ID.
100-
*PdfApi* | [**getLaTeXInStorageToPdf**](PdfApi.md#getLaTeXInStorageToPdf) | **GET** /pdf/create/latex | Convert TeX file (located on storage) to PDF format and return resulting file in response.
101100
*PdfApi* | [**getLineAnnotation**](PdfApi.md#getLineAnnotation) | **GET** /pdf/\{name}/annotations/line/\{annotationId} | Read document page line annotation by ID.
102101
*PdfApi* | [**getLinkAnnotation**](PdfApi.md#getLinkAnnotation) | **GET** /pdf/\{name}/links/\{linkId} | Read document link annotation by ID.
103102
*PdfApi* | [**getListBoxField**](PdfApi.md#getListBoxField) | **GET** /pdf/\{name}/fields/listbox/\{fieldName} | Read document listbox field by name.
@@ -284,7 +283,6 @@ Method | HTTP request | Description
284283
*PdfApi* | [**putImportFieldsFromXfdfInStorage**](PdfApi.md#putImportFieldsFromXfdfInStorage) | **PUT** /pdf/\{name}/import/xfdf | Update fields from XFDF file in storage.
285284
*PdfApi* | [**putImportFieldsFromXmlInStorage**](PdfApi.md#putImportFieldsFromXmlInStorage) | **PUT** /pdf/\{name}/import/xml | Update fields from XML file in storage.
286285
*PdfApi* | [**putInkAnnotation**](PdfApi.md#putInkAnnotation) | **PUT** /pdf/\{name}/annotations/ink/\{annotationId} | Replace document ink annotation
287-
*PdfApi* | [**putLaTeXInStorageToPdf**](PdfApi.md#putLaTeXInStorageToPdf) | **PUT** /pdf/\{name}/create/latex | Convert TeX file (located on storage) to PDF format and upload resulting file to storage.
288286
*PdfApi* | [**putLineAnnotation**](PdfApi.md#putLineAnnotation) | **PUT** /pdf/\{name}/annotations/line/\{annotationId} | Replace document line annotation
289287
*PdfApi* | [**putLinkAnnotation**](PdfApi.md#putLinkAnnotation) | **PUT** /pdf/\{name}/links/\{linkId} | Replace document page link annotations
290288
*PdfApi* | [**putListBoxField**](PdfApi.md#putListBoxField) | **PUT** /pdf/\{name}/fields/listbox/\{fieldName} | Replace document listbox field
@@ -2459,27 +2457,6 @@ Name | Type | Description | Notes
24592457
- **Content-Type**: application/json
24602458
- **Accept**: application/json
24612459

2462-
<a name="getLaTeXInStorageToPdf"></a>
2463-
## **getLaTeXInStorageToPdf**
2464-
> getLaTeXInStorageToPdf(srcPath, storage)
2465-
2466-
Convert TeX file (located on storage) to PDF format and return resulting file in response.
2467-
2468-
### Parameters
2469-
Name | Type | Description | Notes
2470-
------------- | ------------- | ------------- | -------------
2471-
**srcPath** | **string** | Full source filename (ex. /folder1/folder2/template.tex) |
2472-
**storage** | **string** | The document storage. | [optional]
2473-
2474-
### Return type
2475-
2476-
**Buffer**
2477-
2478-
### HTTP request headers
2479-
2480-
- **Content-Type**: application/json
2481-
- **Accept**: multipart/form-data
2482-
24832460
<a name="getLineAnnotation"></a>
24842461
## **getLineAnnotation**
24852462
> getLineAnnotation(name, annotationId, storage, folder)
@@ -3863,7 +3840,7 @@ Name | Type | Description | Notes
38633840
**name** | **string** | The document name. |
38643841
**insertBlankColumnAtFirst** | **boolean** | Insert blank column at first | [optional]
38653842
**minimizeTheNumberOfWorksheets** | **boolean** | Minimize the number of worksheets | [optional]
3866-
**scaleFactor** | **number** | Scale factor | [optional]
3843+
**scaleFactor** | **number** | Scale factor (Obsolete) | [optional]
38673844
**uniformWorksheets** | **boolean** | Uniform worksheets | [optional]
38683845
**folder** | **string** | The document folder. | [optional]
38693846
**storage** | **string** | The document storage. | [optional]
@@ -3889,7 +3866,7 @@ Name | Type | Description | Notes
38893866
**name** | **string** | The document name. |
38903867
**insertBlankColumnAtFirst** | **boolean** | Insert blank column at first | [optional]
38913868
**minimizeTheNumberOfWorksheets** | **boolean** | Minimize the number of worksheets | [optional]
3892-
**scaleFactor** | **number** | Scale factor | [optional]
3869+
**scaleFactor** | **number** | Scale factor (Obsolete) | [optional]
38933870
**uniformWorksheets** | **boolean** | Uniform worksheets | [optional]
38943871
**folder** | **string** | The document folder. | [optional]
38953872
**storage** | **string** | The document storage. | [optional]
@@ -6932,29 +6909,6 @@ Name | Type | Description | Notes
69326909

69336910
[**InkAnnotationResponse**](InkAnnotationResponse.md)
69346911

6935-
### HTTP request headers
6936-
6937-
- **Content-Type**: application/json
6938-
- **Accept**: application/json
6939-
6940-
<a name="putLaTeXInStorageToPdf"></a>
6941-
## **putLaTeXInStorageToPdf**
6942-
> putLaTeXInStorageToPdf(name, srcPath, dstFolder, storage)
6943-
6944-
Convert TeX file (located on storage) to PDF format and upload resulting file to storage.
6945-
6946-
### Parameters
6947-
Name | Type | Description | Notes
6948-
------------- | ------------- | ------------- | -------------
6949-
**name** | **string** | The document name. |
6950-
**srcPath** | **string** | Full source filename (ex. /folder1/folder2/template.tex) |
6951-
**dstFolder** | **string** | The destination document folder. | [optional]
6952-
**storage** | **string** | The document storage. | [optional]
6953-
6954-
### Return type
6955-
6956-
[**AsposeResponse**](AsposeResponse.md)
6957-
69586912
### HTTP request headers
69596913

69606914
- **Content-Type**: application/json
@@ -7619,7 +7573,7 @@ Name | Type | Description | Notes
76197573
**outPath** | **string** | Full resulting filename (ex. /folder1/folder2/result.xls) |
76207574
**insertBlankColumnAtFirst** | **boolean** | Insert blank column at first | [optional]
76217575
**minimizeTheNumberOfWorksheets** | **boolean** | Minimize the number of worksheets | [optional]
7622-
**scaleFactor** | **number** | Scale factor | [optional]
7576+
**scaleFactor** | **number** | Scale factor (Obsolete) | [optional]
76237577
**uniformWorksheets** | **boolean** | Uniform worksheets | [optional]
76247578
**storage** | **string** | The document storage. | [optional]
76257579
**file** | **Buffer** | A file to be converted. | [optional]
@@ -7645,7 +7599,7 @@ Name | Type | Description | Notes
76457599
**outPath** | **string** | Full resulting filename (ex. /folder1/folder2/result.xlsx) |
76467600
**insertBlankColumnAtFirst** | **boolean** | Insert blank column at first | [optional]
76477601
**minimizeTheNumberOfWorksheets** | **boolean** | Minimize the number of worksheets | [optional]
7648-
**scaleFactor** | **number** | Scale factor | [optional]
7602+
**scaleFactor** | **number** | Scale factor (Obsolete) | [optional]
76497603
**uniformWorksheets** | **boolean** | Uniform worksheets | [optional]
76507604
**storage** | **string** | The document storage. | [optional]
76517605
**file** | **Buffer** | A file to be converted. | [optional]
@@ -7980,7 +7934,7 @@ Name | Type | Description | Notes
79807934
**outPath** | **string** | Full resulting filename (ex. /folder1/folder2/result.xls) |
79817935
**insertBlankColumnAtFirst** | **boolean** | Insert blank column at first | [optional]
79827936
**minimizeTheNumberOfWorksheets** | **boolean** | Minimize the number of worksheets | [optional]
7983-
**scaleFactor** | **number** | Scale factor | [optional]
7937+
**scaleFactor** | **number** | Scale factor (Obsolete) | [optional]
79847938
**uniformWorksheets** | **boolean** | Uniform worksheets | [optional]
79857939
**folder** | **string** | The document folder. | [optional]
79867940
**storage** | **string** | The document storage. | [optional]
@@ -8007,7 +7961,7 @@ Name | Type | Description | Notes
80077961
**outPath** | **string** | Full resulting filename (ex. /folder1/folder2/result.xlsx) |
80087962
**insertBlankColumnAtFirst** | **boolean** | Insert blank column at first | [optional]
80097963
**minimizeTheNumberOfWorksheets** | **boolean** | Minimize the number of worksheets | [optional]
8010-
**scaleFactor** | **number** | Scale factor | [optional]
7964+
**scaleFactor** | **number** | Scale factor (Obsolete) | [optional]
80117965
**uniformWorksheets** | **boolean** | Uniform worksheets | [optional]
80127966
**folder** | **string** | The document folder. | [optional]
80137967
**storage** | **string** | The document storage. | [optional]

package-lock.json

+2-2
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": "22.1.0",
3+
"version": "22.2.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": {

0 commit comments

Comments
 (0)