Skip to content

Commit e6ed3b2

Browse files
Merge pull request #21 from kaferi/master
Update to v19.9
2 parents 9b938a7 + 616e6dd commit e6ed3b2

File tree

16 files changed

+1769
-87
lines changed

16 files changed

+1769
-87
lines changed

README.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Aspose.PDF Cloud
22
- API version: 3.0
3-
- Package version: 19.8.0
3+
- Package version: 19.9.0
44

55
[Aspose.PDF Cloud](https://products.aspose.cloud/pdf) is a true REST API that enables you to perform a wide range of document processing operations including creation, manipulation, conversion and rendering of PDF documents in the cloud.
66

@@ -37,7 +37,7 @@ Add this dependency to your project's POM:
3737
<dependency>
3838
<groupId>com.aspose</groupId>
3939
<artifactId>aspose-cloud-pdf</artifactId>
40-
<version>19.8.0</version>
40+
<version>19.9.0</version>
4141
<scope>compile</scope>
4242
</dependency>
4343
```
@@ -47,7 +47,7 @@ Add this dependency to your project's POM:
4747
Add this dependency to your project's build file:
4848

4949
```groovy
50-
compile "com.aspose:aspose-cloud-pdf:19.8.0"
50+
compile "com.aspose:aspose-cloud-pdf:19.9.0"
5151
```
5252

5353
### Others
@@ -58,7 +58,7 @@ At first generate the JAR by executing:
5858

5959
Then manually install the following JARs:
6060

61-
* target/aspose-cloud-pdf-19.8.0.jar
61+
* target/aspose-cloud-pdf-19.9.0.jar
6262
* target/lib/*.jar
6363

6464
## Getting Started
@@ -175,6 +175,7 @@ Class | Method | HTTP request | Description
175175
*PdfApi* | [**getDocumentStrikeOutAnnotations**](docs/PdfApi.md#getDocumentStrikeOutAnnotations) | **GET** /pdf/\{name}/annotations/strikeout | Read document StrikeOut annotations.
176176
*PdfApi* | [**getDocumentTables**](docs/PdfApi.md#getDocumentTables) | **GET** /pdf/\{name}/tables | Read document tables.
177177
*PdfApi* | [**getDocumentTextAnnotations**](docs/PdfApi.md#getDocumentTextAnnotations) | **GET** /pdf/\{name}/annotations/text | Read document text annotations.
178+
*PdfApi* | [**getDocumentTextBoxFields**](docs/PdfApi.md#getDocumentTextBoxFields) | **GET** /pdf/\{name}/fields/textbox | Read document text box fields.
178179
*PdfApi* | [**getDocumentUnderlineAnnotations**](docs/PdfApi.md#getDocumentUnderlineAnnotations) | **GET** /pdf/\{name}/annotations/underline | Read document underline annotations.
179180
*PdfApi* | [**getDownloadDocumentAttachmentByIndex**](docs/PdfApi.md#getDownloadDocumentAttachmentByIndex) | **GET** /pdf/\{name}/attachments/\{attachmentIndex}/download | Download document attachment content by its index.
180181
*PdfApi* | [**getEpubInStorageToPdf**](docs/PdfApi.md#getEpubInStorageToPdf) | **GET** /pdf/create/epub | Convert EPUB file (located on storage) to PDF format and return resulting file in response.
@@ -239,6 +240,7 @@ Class | Method | HTTP request | Description
239240
*PdfApi* | [**getPageTables**](docs/PdfApi.md#getPageTables) | **GET** /pdf/\{name}/pages/\{pageNumber}/tables | Read document page tables.
240241
*PdfApi* | [**getPageText**](docs/PdfApi.md#getPageText) | **GET** /pdf/\{name}/pages/\{pageNumber}/text | Read page text items.
241242
*PdfApi* | [**getPageTextAnnotations**](docs/PdfApi.md#getPageTextAnnotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/text | Read document page text annotations.
243+
*PdfApi* | [**getPageTextBoxFields**](docs/PdfApi.md#getPageTextBoxFields) | **GET** /pdf/\{name}/page/\{pageNumber}/fields/textbox | Read document page text box fields.
242244
*PdfApi* | [**getPageUnderlineAnnotations**](docs/PdfApi.md#getPageUnderlineAnnotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/underline | Read document page underline annotations.
243245
*PdfApi* | [**getPages**](docs/PdfApi.md#getPages) | **GET** /pdf/\{name}/pages | Read document pages info.
244246
*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.
@@ -274,6 +276,7 @@ Class | Method | HTTP request | Description
274276
*PdfApi* | [**getTable**](docs/PdfApi.md#getTable) | **GET** /pdf/\{name}/tables/\{tableId} | Read document page table by ID.
275277
*PdfApi* | [**getText**](docs/PdfApi.md#getText) | **GET** /pdf/\{name}/text | Read document text.
276278
*PdfApi* | [**getTextAnnotation**](docs/PdfApi.md#getTextAnnotation) | **GET** /pdf/\{name}/annotations/text/\{annotationId} | Read document page text annotation by ID.
279+
*PdfApi* | [**getTextBoxField**](docs/PdfApi.md#getTextBoxField) | **GET** /pdf/\{name}/fields/textbox/\{fieldName} | Read document text box field by name.
277280
*PdfApi* | [**getUnderlineAnnotation**](docs/PdfApi.md#getUnderlineAnnotation) | **GET** /pdf/\{name}/annotations/underline/\{annotationId} | Read document page underline annotation by ID.
278281
*PdfApi* | [**getVerifySignature**](docs/PdfApi.md#getVerifySignature) | **GET** /pdf/\{name}/verifySignature | Verify signature document.
279282
*PdfApi* | [**getWebInStorageToPdf**](docs/PdfApi.md#getWebInStorageToPdf) | **GET** /pdf/create/web | Convert web page to PDF format and return resulting file in response.
@@ -334,6 +337,7 @@ Class | Method | HTTP request | Description
334337
*PdfApi* | [**postSignDocument**](docs/PdfApi.md#postSignDocument) | **POST** /pdf/\{name}/sign | Sign document.
335338
*PdfApi* | [**postSignPage**](docs/PdfApi.md#postSignPage) | **POST** /pdf/\{name}/pages/\{pageNumber}/sign | Sign page.
336339
*PdfApi* | [**postSplitDocument**](docs/PdfApi.md#postSplitDocument) | **POST** /pdf/\{name}/split | Split document to parts.
340+
*PdfApi* | [**postTextBoxFields**](docs/PdfApi.md#postTextBoxFields) | **POST** /pdf/\{name}/fields/textbox | Add document text box fields.
337341
*PdfApi* | [**putAddNewPage**](docs/PdfApi.md#putAddNewPage) | **PUT** /pdf/\{name}/pages | Add new page to end of the document.
338342
*PdfApi* | [**putAddText**](docs/PdfApi.md#putAddText) | **PUT** /pdf/\{name}/pages/\{pageNumber}/text | Add text to PDF document page.
339343
*PdfApi* | [**putAnnotationsFlatten**](docs/PdfApi.md#putAnnotationsFlatten) | **PUT** /pdf/\{name}/annotations/flatten | Flattens the annotations of the specified types
@@ -429,6 +433,7 @@ Class | Method | HTTP request | Description
429433
*PdfApi* | [**putSvgInStorageToPdf**](docs/PdfApi.md#putSvgInStorageToPdf) | **PUT** /pdf/\{name}/create/svg | Convert SVG file (located on storage) to PDF format and upload resulting file to storage.
430434
*PdfApi* | [**putTable**](docs/PdfApi.md#putTable) | **PUT** /pdf/\{name}/tables/\{tableId} | Replace document page table.
431435
*PdfApi* | [**putTextAnnotation**](docs/PdfApi.md#putTextAnnotation) | **PUT** /pdf/\{name}/annotations/text/\{annotationId} | Replace document text annotation
436+
*PdfApi* | [**putTextBoxField**](docs/PdfApi.md#putTextBoxField) | **PUT** /pdf/\{name}/fields/textbox/\{fieldName} | Replace document text box field
432437
*PdfApi* | [**putUnderlineAnnotation**](docs/PdfApi.md#putUnderlineAnnotation) | **PUT** /pdf/\{name}/annotations/underline/\{annotationId} | Replace document underline annotation
433438
*PdfApi* | [**putUpdateField**](docs/PdfApi.md#putUpdateField) | **PUT** /pdf/\{name}/fields/\{fieldName} | Update field.
434439
*PdfApi* | [**putUpdateFields**](docs/PdfApi.md#putUpdateFields) | **PUT** /pdf/\{name}/fields | Update fields.
@@ -645,6 +650,9 @@ Class | Method | HTTP request | Description
645650
- [TextAnnotationResponse](docs/TextAnnotationResponse.md)
646651
- [TextAnnotations](docs/TextAnnotations.md)
647652
- [TextAnnotationsResponse](docs/TextAnnotationsResponse.md)
653+
- [TextBoxFieldResponse](docs/TextBoxFieldResponse.md)
654+
- [TextBoxFields](docs/TextBoxFields.md)
655+
- [TextBoxFieldsResponse](docs/TextBoxFieldsResponse.md)
648656
- [TextRectsResponse](docs/TextRectsResponse.md)
649657
- [TextReplaceResponse](docs/TextReplaceResponse.md)
650658
- [UnderlineAnnotationResponse](docs/UnderlineAnnotationResponse.md)
@@ -663,6 +671,7 @@ Class | Method | HTTP request | Description
663671
- [RedactionAnnotation](docs/RedactionAnnotation.md)
664672
- [ScreenAnnotation](docs/ScreenAnnotation.md)
665673
- [SignatureField](docs/SignatureField.md)
674+
- [TextBoxField](docs/TextBoxField.md)
666675
- [TextFooter](docs/TextFooter.md)
667676
- [TextHeader](docs/TextHeader.md)
668677
- [TextStamp](docs/TextStamp.md)

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ apply plugin: 'idea'
2020
apply plugin: 'eclipse'
2121

2222
group = 'com.aspose'
23-
version = '19.8.0'
23+
version = '19.9.0'
2424

2525
buildscript {
2626
repositories {
@@ -71,7 +71,7 @@ dependencies {
7171
publish {
7272
groupId = 'com.aspose'
7373
artifactId = 'aspose-cloud-pdf'
74-
publishVersion = '19.8.0'
74+
publishVersion = '19.9.0'
7575
desc = 'Aspose.PDF Cloud is a REST API for creating and editing PDF files. 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.'
7676
licences = ['MIT']
7777
website = 'https://products.aspose.cloud/pdf/cloud'

docs/DocMDPAccessPermissionType.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Valid values are:
1111
------------ | ------------
1212
**NoChanges** | No changes to the document are permitted; any change to the document invalidates the signature.
1313
**FillingInForms** | Permitted changes are filling in forms, instantiating page templates, and signing; other changes invalidate the signature.
14-
**AnnotationModification** | Permitted changes are the same as for 2, as well as annotation creation, deletion, and modification; other changes invalidate the signature.
14+
**AnnotationModification** | Permitted changes are the same as for FillingInForms, as well as annotation creation, deletion, and modification; other changes invalidate the signature.
1515

1616

1717
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

docs/PdfApi.md

Lines changed: 125 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ Method | HTTP request | Description
6464
[**getDocumentStrikeOutAnnotations**](PdfApi.md#getDocumentStrikeOutAnnotations) | **GET** /pdf/\{name}/annotations/strikeout | Read document StrikeOut annotations.
6565
[**getDocumentTables**](PdfApi.md#getDocumentTables) | **GET** /pdf/\{name}/tables | Read document tables.
6666
[**getDocumentTextAnnotations**](PdfApi.md#getDocumentTextAnnotations) | **GET** /pdf/\{name}/annotations/text | Read document text annotations.
67+
[**getDocumentTextBoxFields**](PdfApi.md#getDocumentTextBoxFields) | **GET** /pdf/\{name}/fields/textbox | Read document text box fields.
6768
[**getDocumentUnderlineAnnotations**](PdfApi.md#getDocumentUnderlineAnnotations) | **GET** /pdf/\{name}/annotations/underline | Read document underline annotations.
6869
[**getDownloadDocumentAttachmentByIndex**](PdfApi.md#getDownloadDocumentAttachmentByIndex) | **GET** /pdf/\{name}/attachments/\{attachmentIndex}/download | Download document attachment content by its index.
6970
[**getEpubInStorageToPdf**](PdfApi.md#getEpubInStorageToPdf) | **GET** /pdf/create/epub | Convert EPUB file (located on storage) to PDF format and return resulting file in response.
@@ -128,6 +129,7 @@ Method | HTTP request | Description
128129
[**getPageTables**](PdfApi.md#getPageTables) | **GET** /pdf/\{name}/pages/\{pageNumber}/tables | Read document page tables.
129130
[**getPageText**](PdfApi.md#getPageText) | **GET** /pdf/\{name}/pages/\{pageNumber}/text | Read page text items.
130131
[**getPageTextAnnotations**](PdfApi.md#getPageTextAnnotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/text | Read document page text annotations.
132+
[**getPageTextBoxFields**](PdfApi.md#getPageTextBoxFields) | **GET** /pdf/\{name}/page/\{pageNumber}/fields/textbox | Read document page text box fields.
131133
[**getPageUnderlineAnnotations**](PdfApi.md#getPageUnderlineAnnotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/underline | Read document page underline annotations.
132134
[**getPages**](PdfApi.md#getPages) | **GET** /pdf/\{name}/pages | Read document pages info.
133135
[**getPclInStorageToPdf**](PdfApi.md#getPclInStorageToPdf) | **GET** /pdf/create/pcl | Convert PCL file (located on storage) to PDF format and return resulting file in response.
@@ -163,6 +165,7 @@ Method | HTTP request | Description
163165
[**getTable**](PdfApi.md#getTable) | **GET** /pdf/\{name}/tables/\{tableId} | Read document page table by ID.
164166
[**getText**](PdfApi.md#getText) | **GET** /pdf/\{name}/text | Read document text.
165167
[**getTextAnnotation**](PdfApi.md#getTextAnnotation) | **GET** /pdf/\{name}/annotations/text/\{annotationId} | Read document page text annotation by ID.
168+
[**getTextBoxField**](PdfApi.md#getTextBoxField) | **GET** /pdf/\{name}/fields/textbox/\{fieldName} | Read document text box field by name.
166169
[**getUnderlineAnnotation**](PdfApi.md#getUnderlineAnnotation) | **GET** /pdf/\{name}/annotations/underline/\{annotationId} | Read document page underline annotation by ID.
167170
[**getVerifySignature**](PdfApi.md#getVerifySignature) | **GET** /pdf/\{name}/verifySignature | Verify signature document.
168171
[**getWebInStorageToPdf**](PdfApi.md#getWebInStorageToPdf) | **GET** /pdf/create/web | Convert web page to PDF format and return resulting file in response.
@@ -223,6 +226,7 @@ Method | HTTP request | Description
223226
[**postSignDocument**](PdfApi.md#postSignDocument) | **POST** /pdf/\{name}/sign | Sign document.
224227
[**postSignPage**](PdfApi.md#postSignPage) | **POST** /pdf/\{name}/pages/\{pageNumber}/sign | Sign page.
225228
[**postSplitDocument**](PdfApi.md#postSplitDocument) | **POST** /pdf/\{name}/split | Split document to parts.
229+
[**postTextBoxFields**](PdfApi.md#postTextBoxFields) | **POST** /pdf/\{name}/fields/textbox | Add document text box fields.
226230
[**putAddNewPage**](PdfApi.md#putAddNewPage) | **PUT** /pdf/\{name}/pages | Add new page to end of the document.
227231
[**putAddText**](PdfApi.md#putAddText) | **PUT** /pdf/\{name}/pages/\{pageNumber}/text | Add text to PDF document page.
228232
[**putAnnotationsFlatten**](PdfApi.md#putAnnotationsFlatten) | **PUT** /pdf/\{name}/annotations/flatten | Flattens the annotations of the specified types
@@ -318,6 +322,7 @@ Method | HTTP request | Description
318322
[**putSvgInStorageToPdf**](PdfApi.md#putSvgInStorageToPdf) | **PUT** /pdf/\{name}/create/svg | Convert SVG file (located on storage) to PDF format and upload resulting file to storage.
319323
[**putTable**](PdfApi.md#putTable) | **PUT** /pdf/\{name}/tables/\{tableId} | Replace document page table.
320324
[**putTextAnnotation**](PdfApi.md#putTextAnnotation) | **PUT** /pdf/\{name}/annotations/text/\{annotationId} | Replace document text annotation
325+
[**putTextBoxField**](PdfApi.md#putTextBoxField) | **PUT** /pdf/\{name}/fields/textbox/\{fieldName} | Replace document text box field
321326
[**putUnderlineAnnotation**](PdfApi.md#putUnderlineAnnotation) | **PUT** /pdf/\{name}/annotations/underline/\{annotationId} | Replace document underline annotation
322327
[**putUpdateField**](PdfApi.md#putUpdateField) | **PUT** /pdf/\{name}/fields/\{fieldName} | Update field.
323328
[**putUpdateFields**](PdfApi.md#putUpdateFields) | **PUT** /pdf/\{name}/fields | Update fields.
@@ -1726,6 +1731,29 @@ Name | Type | Description | Notes
17261731

17271732
[**TextAnnotationsResponse**](TextAnnotationsResponse.md)
17281733

1734+
### HTTP request headers
1735+
1736+
- **Content-Type**: application/json
1737+
- **Accept**: application/json
1738+
1739+
<a name="getDocumentTextBoxFields"></a>
1740+
# **getDocumentTextBoxFields**
1741+
> TextBoxFieldsResponse getDocumentTextBoxFields(name, storage, folder)
1742+
1743+
Read document text box fields.
1744+
1745+
### Parameters
1746+
1747+
Name | Type | Description | Notes
1748+
------------- | ------------- | ------------- | -------------
1749+
**name** | **String**| The document name. |
1750+
**storage** | **String**| The document storage. | [optional]
1751+
**folder** | **String**| The document folder. | [optional]
1752+
1753+
### Return type
1754+
1755+
[**TextBoxFieldsResponse**](TextBoxFieldsResponse.md)
1756+
17291757
### HTTP request headers
17301758

17311759
- **Content-Type**: application/json
@@ -3279,6 +3307,30 @@ Name | Type | Description | Notes
32793307

32803308
[**TextAnnotationsResponse**](TextAnnotationsResponse.md)
32813309

3310+
### HTTP request headers
3311+
3312+
- **Content-Type**: application/json
3313+
- **Accept**: application/json
3314+
3315+
<a name="getPageTextBoxFields"></a>
3316+
# **getPageTextBoxFields**
3317+
> TextBoxFieldsResponse getPageTextBoxFields(name, pageNumber, storage, folder)
3318+
3319+
Read document page text box fields.
3320+
3321+
### Parameters
3322+
3323+
Name | Type | Description | Notes
3324+
------------- | ------------- | ------------- | -------------
3325+
**name** | **String**| The document name. |
3326+
**pageNumber** | **Integer**| The page number. |
3327+
**storage** | **String**| The document storage. | [optional]
3328+
**folder** | **String**| The document folder. | [optional]
3329+
3330+
### Return type
3331+
3332+
[**TextBoxFieldsResponse**](TextBoxFieldsResponse.md)
3333+
32823334
### HTTP request headers
32833335

32843336
- **Content-Type**: application/json
@@ -4178,6 +4230,30 @@ Name | Type | Description | Notes
41784230

41794231
[**TextAnnotationResponse**](TextAnnotationResponse.md)
41804232

4233+
### HTTP request headers
4234+
4235+
- **Content-Type**: application/json
4236+
- **Accept**: application/json
4237+
4238+
<a name="getTextBoxField"></a>
4239+
# **getTextBoxField**
4240+
> TextBoxFieldResponse getTextBoxField(name, fieldName, storage, folder)
4241+
4242+
Read document text box field by name.
4243+
4244+
### Parameters
4245+
4246+
Name | Type | Description | Notes
4247+
------------- | ------------- | ------------- | -------------
4248+
**name** | **String**| The document name. |
4249+
**fieldName** | **String**| The field name. |
4250+
**storage** | **String**| The document storage. | [optional]
4251+
**folder** | **String**| The document folder. | [optional]
4252+
4253+
### Return type
4254+
4255+
[**TextBoxFieldResponse**](TextBoxFieldResponse.md)
4256+
41814257
### HTTP request headers
41824258

41834259
- **Content-Type**: application/json
@@ -5676,6 +5752,30 @@ Name | Type | Description | Notes
56765752

56775753
[**SplitResultResponse**](SplitResultResponse.md)
56785754

5755+
### HTTP request headers
5756+
5757+
- **Content-Type**: application/json
5758+
- **Accept**: application/json
5759+
5760+
<a name="postTextBoxFields"></a>
5761+
# **postTextBoxFields**
5762+
> AsposeResponse postTextBoxFields(name, fields, storage, folder)
5763+
5764+
Add document text box fields.
5765+
5766+
### Parameters
5767+
5768+
Name | Type | Description | Notes
5769+
------------- | ------------- | ------------- | -------------
5770+
**name** | **String**| The document name. |
5771+
**fields** | [**List&lt;TextBoxField&gt;**](TextBoxField.md)| The array of field. |
5772+
**storage** | **String**| The document storage. | [optional]
5773+
**folder** | **String**| The document folder. | [optional]
5774+
5775+
### Return type
5776+
5777+
[**AsposeResponse**](AsposeResponse.md)
5778+
56795779
### HTTP request headers
56805780

56815781
- **Content-Type**: application/json
@@ -8165,6 +8265,31 @@ Name | Type | Description | Notes
81658265

81668266
[**TextAnnotationResponse**](TextAnnotationResponse.md)
81678267

8268+
### HTTP request headers
8269+
8270+
- **Content-Type**: application/json
8271+
- **Accept**: application/json
8272+
8273+
<a name="putTextBoxField"></a>
8274+
# **putTextBoxField**
8275+
> TextBoxFieldResponse putTextBoxField(name, fieldName, field, storage, folder)
8276+
8277+
Replace document text box field
8278+
8279+
### Parameters
8280+
8281+
Name | Type | Description | Notes
8282+
------------- | ------------- | ------------- | -------------
8283+
**name** | **String**| The document name. |
8284+
**fieldName** | **String**| The field name. |
8285+
**field** | [**TextBoxField**](TextBoxField.md)| The field. |
8286+
**storage** | **String**| The document storage. | [optional]
8287+
**folder** | **String**| The document folder. | [optional]
8288+
8289+
### Return type
8290+
8291+
[**TextBoxFieldResponse**](TextBoxFieldResponse.md)
8292+
81688293
### HTTP request headers
81698294

81708295
- **Content-Type**: application/json

0 commit comments

Comments
 (0)