Skip to content

Commit 9b08554

Browse files
Merge pull request #25 from kaferi/master
Update to v19.9
2 parents 6f98c82 + 66eba8c commit 9b08554

17 files changed

+852
-4
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ Class | Method | HTTP request | Description
116116
*PdfApi* | [**getDocumentStrikeOutAnnotations**](docs/PdfApi.md#getDocumentStrikeOutAnnotations) | **GET** /pdf/\{name}/annotations/strikeout | Read document StrikeOut annotations.
117117
*PdfApi* | [**getDocumentTables**](docs/PdfApi.md#getDocumentTables) | **GET** /pdf/\{name}/tables | Read document tables.
118118
*PdfApi* | [**getDocumentTextAnnotations**](docs/PdfApi.md#getDocumentTextAnnotations) | **GET** /pdf/\{name}/annotations/text | Read document text annotations.
119+
*PdfApi* | [**getDocumentTextBoxFields**](docs/PdfApi.md#getDocumentTextBoxFields) | **GET** /pdf/\{name}/fields/textbox | Read document text box fields.
119120
*PdfApi* | [**getDocumentUnderlineAnnotations**](docs/PdfApi.md#getDocumentUnderlineAnnotations) | **GET** /pdf/\{name}/annotations/underline | Read document underline annotations.
120121
*PdfApi* | [**getDownloadDocumentAttachmentByIndex**](docs/PdfApi.md#getDownloadDocumentAttachmentByIndex) | **GET** /pdf/\{name}/attachments/\{attachmentIndex}/download | Download document attachment content by its index.
121122
*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.
@@ -181,6 +182,7 @@ Class | Method | HTTP request | Description
181182
*PdfApi* | [**getPageTables**](docs/PdfApi.md#getPageTables) | **GET** /pdf/\{name}/pages/\{pageNumber}/tables | Read document page tables.
182183
*PdfApi* | [**getPageText**](docs/PdfApi.md#getPageText) | **GET** /pdf/\{name}/pages/\{pageNumber}/text | Read page text items.
183184
*PdfApi* | [**getPageTextAnnotations**](docs/PdfApi.md#getPageTextAnnotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/text | Read document page text annotations.
185+
*PdfApi* | [**getPageTextBoxFields**](docs/PdfApi.md#getPageTextBoxFields) | **GET** /pdf/\{name}/page/\{pageNumber}/fields/textbox | Read document page text box fields.
184186
*PdfApi* | [**getPageUnderlineAnnotations**](docs/PdfApi.md#getPageUnderlineAnnotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/underline | Read document page underline annotations.
185187
*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.
186188
*PdfApi* | [**getPdfInStorageToDoc**](docs/PdfApi.md#getPdfInStorageToDoc) | **GET** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and returns resulting file in response content
@@ -215,6 +217,7 @@ Class | Method | HTTP request | Description
215217
*PdfApi* | [**getTable**](docs/PdfApi.md#getTable) | **GET** /pdf/\{name}/tables/\{tableId} | Read document page table by ID.
216218
*PdfApi* | [**getText**](docs/PdfApi.md#getText) | **GET** /pdf/\{name}/text | Read document text.
217219
*PdfApi* | [**getTextAnnotation**](docs/PdfApi.md#getTextAnnotation) | **GET** /pdf/\{name}/annotations/text/\{annotationId} | Read document page text annotation by ID.
220+
*PdfApi* | [**getTextBoxField**](docs/PdfApi.md#getTextBoxField) | **GET** /pdf/\{name}/fields/textbox/\{fieldName} | Read document text box field by name.
218221
*PdfApi* | [**getUnderlineAnnotation**](docs/PdfApi.md#getUnderlineAnnotation) | **GET** /pdf/\{name}/annotations/underline/\{annotationId} | Read document page underline annotation by ID.
219222
*PdfApi* | [**getVerifySignature**](docs/PdfApi.md#getVerifySignature) | **GET** /pdf/\{name}/verifySignature | Verify signature document.
220223
*PdfApi* | [**getWebInStorageToPdf**](docs/PdfApi.md#getWebInStorageToPdf) | **GET** /pdf/create/web | Convert web page to PDF format and return resulting file in response.
@@ -275,6 +278,7 @@ Class | Method | HTTP request | Description
275278
*PdfApi* | [**postSignDocument**](docs/PdfApi.md#postSignDocument) | **POST** /pdf/\{name}/sign | Sign document.
276279
*PdfApi* | [**postSignPage**](docs/PdfApi.md#postSignPage) | **POST** /pdf/\{name}/pages/\{pageNumber}/sign | Sign page.
277280
*PdfApi* | [**postSplitDocument**](docs/PdfApi.md#postSplitDocument) | **POST** /pdf/\{name}/split | Split document to parts.
281+
*PdfApi* | [**postTextBoxFields**](docs/PdfApi.md#postTextBoxFields) | **POST** /pdf/\{name}/fields/textbox | Add document text box fields.
278282
*PdfApi* | [**putAddNewPage**](docs/PdfApi.md#putAddNewPage) | **PUT** /pdf/\{name}/pages | Add new page to end of the document.
279283
*PdfApi* | [**putAddText**](docs/PdfApi.md#putAddText) | **PUT** /pdf/\{name}/pages/\{pageNumber}/text | Add text to PDF document page.
280284
*PdfApi* | [**putAnnotationsFlatten**](docs/PdfApi.md#putAnnotationsFlatten) | **PUT** /pdf/\{name}/annotations/flatten | Flattens the annotations of the specified types
@@ -370,6 +374,7 @@ Class | Method | HTTP request | Description
370374
*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.
371375
*PdfApi* | [**putTable**](docs/PdfApi.md#putTable) | **PUT** /pdf/\{name}/tables/\{tableId} | Replace document page table.
372376
*PdfApi* | [**putTextAnnotation**](docs/PdfApi.md#putTextAnnotation) | **PUT** /pdf/\{name}/annotations/text/\{annotationId} | Replace document text annotation
377+
*PdfApi* | [**putTextBoxField**](docs/PdfApi.md#putTextBoxField) | **PUT** /pdf/\{name}/fields/textbox/\{fieldName} | Replace document text box field
373378
*PdfApi* | [**putUnderlineAnnotation**](docs/PdfApi.md#putUnderlineAnnotation) | **PUT** /pdf/\{name}/annotations/underline/\{annotationId} | Replace document underline annotation
374379
*PdfApi* | [**putUpdateField**](docs/PdfApi.md#putUpdateField) | **PUT** /pdf/\{name}/fields/\{fieldName} | Update field.
375380
*PdfApi* | [**putUpdateFields**](docs/PdfApi.md#putUpdateFields) | **PUT** /pdf/\{name}/fields | Update fields.
@@ -604,6 +609,10 @@ Class | Description
604609
[**TextAnnotationResponse**](docs/TextAnnotationResponse.md) | Represents response containing single text annotation object
605610
[**TextAnnotations**](docs/TextAnnotations.md) | Object representing a list of text annotations.
606611
[**TextAnnotationsResponse**](docs/TextAnnotationsResponse.md) | Represents response containing multiple text annotation objects
612+
[**TextBoxField**](docs/TextBoxField.md) | Provides TextBoxField.
613+
[**TextBoxFieldResponse**](docs/TextBoxFieldResponse.md) | Represents response containing single text box field object
614+
[**TextBoxFields**](docs/TextBoxFields.md) | Object representing a list of text box fields.
615+
[**TextBoxFieldsResponse**](docs/TextBoxFieldsResponse.md) | Represents response containing multiple text box field objects
607616
[**TextFooter**](docs/TextFooter.md) | Represents Pdf text header.
608617
[**TextHeader**](docs/TextHeader.md) | Represents Pdf text header.
609618
[**TextHorizontalAlignment**](docs/TextHorizontalAlignment.md) | Describes text horizontal alignment.

docs/DocMDPAccessPermissionType.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Valid values are:
88
## Enum
99
Name | Type | Value | Description
1010
------------ | ------------- | ------------- | -------------
11-
**AnnotationModification** | **string** | 'AnnotationModification' | Permitted changes are the same as for 2, as well as annotation creation, deletion, and modification; other changes invalidate the signature.
11+
**AnnotationModification** | **string** | 'AnnotationModification' | Permitted changes are the same as for FillingInForms, as well as annotation creation, deletion, and modification; other changes invalidate the signature.
1212
**FillingInForms** | **string** | 'FillingInForms' | Permitted changes are filling in forms, instantiating page templates, and signing; other changes invalidate the signature.
1313
**NoChanges** | **string** | 'NoChanges' | No changes to the document are permitted; any change to the document invalidates the signature.
1414

docs/PdfApi.md

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ Method | HTTP request | Description
6464
*PdfApi* | [**getDocumentStrikeOutAnnotations**](PdfApi.md#getDocumentStrikeOutAnnotations) | **GET** /pdf/\{name}/annotations/strikeout | Read document StrikeOut annotations.
6565
*PdfApi* | [**getDocumentTables**](PdfApi.md#getDocumentTables) | **GET** /pdf/\{name}/tables | Read document tables.
6666
*PdfApi* | [**getDocumentTextAnnotations**](PdfApi.md#getDocumentTextAnnotations) | **GET** /pdf/\{name}/annotations/text | Read document text annotations.
67+
*PdfApi* | [**getDocumentTextBoxFields**](PdfApi.md#getDocumentTextBoxFields) | **GET** /pdf/\{name}/fields/textbox | Read document text box fields.
6768
*PdfApi* | [**getDocumentUnderlineAnnotations**](PdfApi.md#getDocumentUnderlineAnnotations) | **GET** /pdf/\{name}/annotations/underline | Read document underline annotations.
6869
*PdfApi* | [**getDownloadDocumentAttachmentByIndex**](PdfApi.md#getDownloadDocumentAttachmentByIndex) | **GET** /pdf/\{name}/attachments/\{attachmentIndex}/download | Download document attachment content by its index.
6970
*PdfApi* | [**getEpubInStorageToPdf**](PdfApi.md#getEpubInStorageToPdf) | **GET** /pdf/create/epub | Convert EPUB file (located on storage) to PDF format and return resulting file in response.
@@ -129,6 +130,7 @@ Method | HTTP request | Description
129130
*PdfApi* | [**getPageTables**](PdfApi.md#getPageTables) | **GET** /pdf/\{name}/pages/\{pageNumber}/tables | Read document page tables.
130131
*PdfApi* | [**getPageText**](PdfApi.md#getPageText) | **GET** /pdf/\{name}/pages/\{pageNumber}/text | Read page text items.
131132
*PdfApi* | [**getPageTextAnnotations**](PdfApi.md#getPageTextAnnotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/text | Read document page text annotations.
133+
*PdfApi* | [**getPageTextBoxFields**](PdfApi.md#getPageTextBoxFields) | **GET** /pdf/\{name}/page/\{pageNumber}/fields/textbox | Read document page text box fields.
132134
*PdfApi* | [**getPageUnderlineAnnotations**](PdfApi.md#getPageUnderlineAnnotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/underline | Read document page underline annotations.
133135
*PdfApi* | [**getPclInStorageToPdf**](PdfApi.md#getPclInStorageToPdf) | **GET** /pdf/create/pcl | Convert PCL file (located on storage) to PDF format and return resulting file in response.
134136
*PdfApi* | [**getPdfInStorageToDoc**](PdfApi.md#getPdfInStorageToDoc) | **GET** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and returns resulting file in response content
@@ -163,6 +165,7 @@ Method | HTTP request | Description
163165
*PdfApi* | [**getTable**](PdfApi.md#getTable) | **GET** /pdf/\{name}/tables/\{tableId} | Read document page table by ID.
164166
*PdfApi* | [**getText**](PdfApi.md#getText) | **GET** /pdf/\{name}/text | Read document text.
165167
*PdfApi* | [**getTextAnnotation**](PdfApi.md#getTextAnnotation) | **GET** /pdf/\{name}/annotations/text/\{annotationId} | Read document page text annotation by ID.
168+
*PdfApi* | [**getTextBoxField**](PdfApi.md#getTextBoxField) | **GET** /pdf/\{name}/fields/textbox/\{fieldName} | Read document text box field by name.
166169
*PdfApi* | [**getUnderlineAnnotation**](PdfApi.md#getUnderlineAnnotation) | **GET** /pdf/\{name}/annotations/underline/\{annotationId} | Read document page underline annotation by ID.
167170
*PdfApi* | [**getVerifySignature**](PdfApi.md#getVerifySignature) | **GET** /pdf/\{name}/verifySignature | Verify signature document.
168171
*PdfApi* | [**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
*PdfApi* | [**postSignDocument**](PdfApi.md#postSignDocument) | **POST** /pdf/\{name}/sign | Sign document.
224227
*PdfApi* | [**postSignPage**](PdfApi.md#postSignPage) | **POST** /pdf/\{name}/pages/\{pageNumber}/sign | Sign page.
225228
*PdfApi* | [**postSplitDocument**](PdfApi.md#postSplitDocument) | **POST** /pdf/\{name}/split | Split document to parts.
229+
*PdfApi* | [**postTextBoxFields**](PdfApi.md#postTextBoxFields) | **POST** /pdf/\{name}/fields/textbox | Add document text box fields.
226230
*PdfApi* | [**putAddNewPage**](PdfApi.md#putAddNewPage) | **PUT** /pdf/\{name}/pages | Add new page to end of the document.
227231
*PdfApi* | [**putAddText**](PdfApi.md#putAddText) | **PUT** /pdf/\{name}/pages/\{pageNumber}/text | Add text to PDF document page.
228232
*PdfApi* | [**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
*PdfApi* | [**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
*PdfApi* | [**putTable**](PdfApi.md#putTable) | **PUT** /pdf/\{name}/tables/\{tableId} | Replace document page table.
320324
*PdfApi* | [**putTextAnnotation**](PdfApi.md#putTextAnnotation) | **PUT** /pdf/\{name}/annotations/text/\{annotationId} | Replace document text annotation
325+
*PdfApi* | [**putTextBoxField**](PdfApi.md#putTextBoxField) | **PUT** /pdf/\{name}/fields/textbox/\{fieldName} | Replace document text box field
321326
*PdfApi* | [**putUnderlineAnnotation**](PdfApi.md#putUnderlineAnnotation) | **PUT** /pdf/\{name}/annotations/underline/\{annotationId} | Replace document underline annotation
322327
*PdfApi* | [**putUpdateField**](PdfApi.md#putUpdateField) | **PUT** /pdf/\{name}/fields/\{fieldName} | Update field.
323328
*PdfApi* | [**putUpdateFields**](PdfApi.md#putUpdateFields) | **PUT** /pdf/\{name}/fields | Update fields.
@@ -1664,6 +1669,28 @@ Name | Type | Description | Notes
16641669

16651670
[**TextAnnotationsResponse**](TextAnnotationsResponse.md)
16661671

1672+
### HTTP request headers
1673+
1674+
- **Content-Type**: application/json
1675+
- **Accept**: application/json
1676+
1677+
<a name="getDocumentTextBoxFields"></a>
1678+
## **getDocumentTextBoxFields**
1679+
> getDocumentTextBoxFields(name, storage, folder)
1680+
1681+
Read document text box fields.
1682+
1683+
### Parameters
1684+
Name | Type | Description | Notes
1685+
------------- | ------------- | ------------- | -------------
1686+
**name** | **string** | The document name. |
1687+
**storage** | **string** | The document storage. | [optional]
1688+
**folder** | **string** | The document folder. | [optional]
1689+
1690+
### Return type
1691+
1692+
[**TextBoxFieldsResponse**](TextBoxFieldsResponse.md)
1693+
16671694
### HTTP request headers
16681695

16691696
- **Content-Type**: application/json
@@ -3175,6 +3202,29 @@ Name | Type | Description | Notes
31753202

31763203
[**TextAnnotationsResponse**](TextAnnotationsResponse.md)
31773204

3205+
### HTTP request headers
3206+
3207+
- **Content-Type**: application/json
3208+
- **Accept**: application/json
3209+
3210+
<a name="getPageTextBoxFields"></a>
3211+
## **getPageTextBoxFields**
3212+
> getPageTextBoxFields(name, pageNumber, storage, folder)
3213+
3214+
Read document page text box fields.
3215+
3216+
### Parameters
3217+
Name | Type | Description | Notes
3218+
------------- | ------------- | ------------- | -------------
3219+
**name** | **string** | The document name. |
3220+
**pageNumber** | **number** | The page number. |
3221+
**storage** | **string** | The document storage. | [optional]
3222+
**folder** | **string** | The document folder. | [optional]
3223+
3224+
### Return type
3225+
3226+
[**TextBoxFieldsResponse**](TextBoxFieldsResponse.md)
3227+
31783228
### HTTP request headers
31793229

31803230
- **Content-Type**: application/json
@@ -4017,6 +4067,29 @@ Name | Type | Description | Notes
40174067

40184068
[**TextAnnotationResponse**](TextAnnotationResponse.md)
40194069

4070+
### HTTP request headers
4071+
4072+
- **Content-Type**: application/json
4073+
- **Accept**: application/json
4074+
4075+
<a name="getTextBoxField"></a>
4076+
## **getTextBoxField**
4077+
> getTextBoxField(name, fieldName, storage, folder)
4078+
4079+
Read document text box field by name.
4080+
4081+
### Parameters
4082+
Name | Type | Description | Notes
4083+
------------- | ------------- | ------------- | -------------
4084+
**name** | **string** | The document name. |
4085+
**fieldName** | **string** | The field name. |
4086+
**storage** | **string** | The document storage. | [optional]
4087+
**folder** | **string** | The document folder. | [optional]
4088+
4089+
### Return type
4090+
4091+
[**TextBoxFieldResponse**](TextBoxFieldResponse.md)
4092+
40204093
### HTTP request headers
40214094

40224095
- **Content-Type**: application/json
@@ -5455,6 +5528,29 @@ Name | Type | Description | Notes
54555528

54565529
[**SplitResultResponse**](SplitResultResponse.md)
54575530

5531+
### HTTP request headers
5532+
5533+
- **Content-Type**: application/json
5534+
- **Accept**: application/json
5535+
5536+
<a name="postTextBoxFields"></a>
5537+
## **postTextBoxFields**
5538+
> postTextBoxFields(name, fields, storage, folder)
5539+
5540+
Add document text box fields.
5541+
5542+
### Parameters
5543+
Name | Type | Description | Notes
5544+
------------- | ------------- | ------------- | -------------
5545+
**name** | **string** | The document name. |
5546+
**fields** | [**Array&lt;TextBoxField&gt;**](TextBoxField.md) | The array of field. |
5547+
**storage** | **string** | The document storage. | [optional]
5548+
**folder** | **string** | The document folder. | [optional]
5549+
5550+
### Return type
5551+
5552+
[**AsposeResponse**](AsposeResponse.md)
5553+
54585554
### HTTP request headers
54595555

54605556
- **Content-Type**: application/json
@@ -7849,6 +7945,30 @@ Name | Type | Description | Notes
78497945

78507946
[**TextAnnotationResponse**](TextAnnotationResponse.md)
78517947

7948+
### HTTP request headers
7949+
7950+
- **Content-Type**: application/json
7951+
- **Accept**: application/json
7952+
7953+
<a name="putTextBoxField"></a>
7954+
## **putTextBoxField**
7955+
> putTextBoxField(name, fieldName, field, storage, folder)
7956+
7957+
Replace document text box field
7958+
7959+
### Parameters
7960+
Name | Type | Description | Notes
7961+
------------- | ------------- | ------------- | -------------
7962+
**name** | **string** | The document name. |
7963+
**fieldName** | **string** | The field name. |
7964+
**field** | [**TextBoxField**](TextBoxField.md) | The field. |
7965+
**storage** | **string** | The document storage. | [optional]
7966+
**folder** | **string** | The document folder. | [optional]
7967+
7968+
### Return type
7969+
7970+
[**TextBoxFieldResponse**](TextBoxFieldResponse.md)
7971+
78527972
### HTTP request headers
78537973

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

0 commit comments

Comments
 (0)