@@ -203,6 +203,7 @@ Method | HTTP request | Description
203203[ ** postChangePasswordDocumentInStorage** ] ( PdfApi.md#postChangePasswordDocumentInStorage ) | ** POST** /pdf/\{ name}/changepassword | Change document password in storage.
204204[ ** postCheckBoxFields** ] ( PdfApi.md#postCheckBoxFields ) | ** POST** /pdf/\{ name}/fields/checkbox | Add document checkbox fields.
205205[ ** postComboBoxFields** ] ( PdfApi.md#postComboBoxFields ) | ** POST** /pdf/\{ name}/fields/combobox | Add document combobox fields.
206+ [ ** postComparePdf** ] ( PdfApi.md#postComparePdf ) | ** POST** /pdf/compare | Compare two PDF documents.
206207[ ** postCreateDocument** ] ( PdfApi.md#postCreateDocument ) | ** POST** /pdf/\{ name} | Create empty document.
207208[ ** postCreateField** ] ( PdfApi.md#postCreateField ) | ** POST** /pdf/\{ name}/fields | Create field.
208209[ ** postDecryptDocumentInStorage** ] ( PdfApi.md#postDecryptDocumentInStorage ) | ** POST** /pdf/\{ name}/decrypt | Decrypt document in storage.
@@ -2755,7 +2756,7 @@ Name | Type | Description | Notes
27552756
27562757<a name =" getMhtInStorageToPdf " ></a >
27572758# ** getMhtInStorageToPdf**
2758- > File getMhtInStorageToPdf(srcPath, storage)
2759+ > File getMhtInStorageToPdf(srcPath, height, width, marginLeft, marginBottom, marginRight, marginTop, storage)
27592760
27602761Convert MHT file (located on storage) to PDF format and return resulting file in response.
27612762
@@ -2764,6 +2765,12 @@ Convert MHT file (located on storage) to PDF format and return resulting file in
27642765Name | Type | Description | Notes
27652766------------- | ------------- | ------------- | -------------
27662767 ** srcPath** | ** String** | Full source filename (ex. /folder1/folder2/template.mht) |
2768+ ** height** | ** Double** | Page height | [ optional]
2769+ ** width** | ** Double** | Page width | [ optional]
2770+ ** marginLeft** | ** Double** | Page margin left | [ optional]
2771+ ** marginBottom** | ** Double** | Page margin bottom | [ optional]
2772+ ** marginRight** | ** Double** | Page margin right | [ optional]
2773+ ** marginTop** | ** Double** | Page margin top | [ optional]
27672774 ** storage** | ** String** | The document storage. | [ optional]
27682775
27692776### Return type
@@ -5214,6 +5221,30 @@ Name | Type | Description | Notes
52145221
52155222[ ** AsposeResponse** ] ( AsposeResponse.md )
52165223
5224+ ### HTTP request headers
5225+
5226+ - ** Content-Type** : application/json
5227+ - ** Accept** : application/json
5228+
5229+ <a name =" postComparePdf " ></a >
5230+ # ** postComparePdf**
5231+ > AsposeResponse postComparePdf(path1, path2, outPath, storage)
5232+
5233+ Compare two PDF documents.
5234+
5235+ ### Parameters
5236+
5237+ Name | Type | Description | Notes
5238+ ------------- | ------------- | ------------- | -------------
5239+ ** path1** | ** String** | Path to first PDF document. |
5240+ ** path2** | ** String** | Path to second PDF document. |
5241+ ** outPath** | ** String** | Full filename of the resulting document. |
5242+ ** storage** | ** String** | The documents storage. | [ optional]
5243+
5244+ ### Return type
5245+
5246+ [ ** AsposeResponse** ] ( AsposeResponse.md )
5247+
52175248### HTTP request headers
52185249
52195250 - ** Content-Type** : application/json
@@ -7820,7 +7851,7 @@ Name | Type | Description | Notes
78207851
78217852<a name =" putMhtInStorageToPdf " ></a >
78227853# ** putMhtInStorageToPdf**
7823- > AsposeResponse putMhtInStorageToPdf(name, srcPath, dstFolder, storage)
7854+ > AsposeResponse putMhtInStorageToPdf(name, srcPath, height, width, marginLeft, marginBottom, marginRight, marginTop, dstFolder, storage)
78247855
78257856Convert MHT file (located on storage) to PDF format and upload resulting file to storage.
78267857
@@ -7830,6 +7861,12 @@ Name | Type | Description | Notes
78307861------------- | ------------- | ------------- | -------------
78317862 ** name** | ** String** | The document name. |
78327863 ** srcPath** | ** String** | Full source filename (ex. /folder1/folder2/template.mht) |
7864+ ** height** | ** Double** | Page height | [ optional]
7865+ ** width** | ** Double** | Page width | [ optional]
7866+ ** marginLeft** | ** Double** | Page margin left | [ optional]
7867+ ** marginBottom** | ** Double** | Page margin bottom | [ optional]
7868+ ** marginRight** | ** Double** | Page margin right | [ optional]
7869+ ** marginTop** | ** Double** | Page margin top | [ optional]
78337870 ** dstFolder** | ** String** | The destination document folder. | [ optional]
78347871 ** storage** | ** String** | The document storage. | [ optional]
78357872
0 commit comments