Skip to content

Commit 3c7b825

Browse files
committed
Update to v20.6
1 parent b8df51b commit 3c7b825

20 files changed

+80
-9
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -575,6 +575,7 @@ Class | Description
575575
[**ObjectExist**](docs/ObjectExist.md) | Object exists
576576
[**OptimizeOptions**](docs/OptimizeOptions.md) | Represents Pdf optimize options.
577577
[**Option**](docs/Option.md) | Provides form option.
578+
[**OutputFormat**](docs/OutputFormat.md) | Enumeration for output type format.
578579
[**Page**](docs/Page.md) | Provides link to page.
579580
[**PageLayout**](docs/PageLayout.md) | Descibes page layout.
580581
[**PageMode**](docs/PageMode.md) | Class descibes used components of the document page.

docs/CheckBoxField.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
1111
**checked** | **boolean** | Gets or sets state of check box. |
1212
**exportValue** | **string** | Gets or sets export value of CheckBox field. | [optional]
1313
**partialName** | **string** | Field name.<br />*Inherited from [FormField](FormField.md)* | [optional]
14+
**fullName** | **string** | Full Field name.<br />*Inherited from [FormField](FormField.md)* | [optional]
1415
**rect** | [**Rectangle**](Rectangle.md) | Field rectangle.<br />*Inherited from [FormField](FormField.md)* | [optional]
1516
**value** | **string** | Field value.<br />*Inherited from [FormField](FormField.md)* | [optional]
1617
**pageIndex** | **number** | Page index.<br />*Inherited from [FormField](FormField.md)* |

docs/ChoiceField.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
88
**multiSelect** | **boolean** | Gets or sets multiselection flag. | [optional]
99
**selected** | **number** | Gets or sets index of selected item. Numbering of items is started from 1. | [optional]
1010
**partialName** | **string** | Field name.<br />*Inherited from [FormField](FormField.md)* | [optional]
11+
**fullName** | **string** | Full Field name.<br />*Inherited from [FormField](FormField.md)* | [optional]
1112
**rect** | [**Rectangle**](Rectangle.md) | Field rectangle.<br />*Inherited from [FormField](FormField.md)* | [optional]
1213
**value** | **string** | Field value.<br />*Inherited from [FormField](FormField.md)* | [optional]
1314
**pageIndex** | **number** | Page index.<br />*Inherited from [FormField](FormField.md)* |

docs/ComboBoxField.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
1212
**multiSelect** | **boolean** | Gets or sets multiselection flag.<br />*Inherited from [ChoiceField](ChoiceField.md)* | [optional]
1313
**selected** | **number** | Gets or sets index of selected item. Numbering of items is started from 1.<br />*Inherited from [ChoiceField](ChoiceField.md)* | [optional]
1414
**partialName** | **string** | Field name.<br />*Inherited from [FormField](FormField.md)* | [optional]
15+
**fullName** | **string** | Full Field name.<br />*Inherited from [FormField](FormField.md)* | [optional]
1516
**rect** | [**Rectangle**](Rectangle.md) | Field rectangle.<br />*Inherited from [FormField](FormField.md)* | [optional]
1617
**value** | **string** | Field value.<br />*Inherited from [FormField](FormField.md)* | [optional]
1718
**pageIndex** | **number** | Page index.<br />*Inherited from [FormField](FormField.md)* |

docs/FormField.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Provides form field.
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**partialName** | **string** | Field name. | [optional]
9+
**fullName** | **string** | Full Field name. | [optional]
910
**rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional]
1011
**value** | **string** | Field value. | [optional]
1112
**pageIndex** | **number** | Page index. |

docs/ListBoxField.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
1212
**multiSelect** | **boolean** | Gets or sets multiselection flag.<br />*Inherited from [ChoiceField](ChoiceField.md)* | [optional]
1313
**selected** | **number** | Gets or sets index of selected item. Numbering of items is started from 1.<br />*Inherited from [ChoiceField](ChoiceField.md)* | [optional]
1414
**partialName** | **string** | Field name.<br />*Inherited from [FormField](FormField.md)* | [optional]
15+
**fullName** | **string** | Full Field name.<br />*Inherited from [FormField](FormField.md)* | [optional]
1516
**rect** | [**Rectangle**](Rectangle.md) | Field rectangle.<br />*Inherited from [FormField](FormField.md)* | [optional]
1617
**value** | **string** | Field value.<br />*Inherited from [FormField](FormField.md)* | [optional]
1718
**pageIndex** | **number** | Page index.<br />*Inherited from [FormField](FormField.md)* |

docs/OutputFormat.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# OutputFormat
2+
Enumeration for output type format.
3+
4+
## Enum
5+
Name | Type | Value | Description
6+
------------ | ------------- | ------------- | -------------
7+
**Folder** | **string** | 'Folder' | Folder.
8+
**Zip** | **string** | 'Zip' | Zip archive.
9+
10+
[[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/outputFormat.ts)
11+

docs/PdfApi.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7431,7 +7431,7 @@ Name | Type | Description | Notes
74317431

74327432
<a name="putPdfInRequestToHtml"></a>
74337433
## **putPdfInRequestToHtml**
7434-
> putPdfInRequestToHtml(outPath, additionalMarginWidthInPoints, compressSvgGraphicsIfAny, convertMarkedContentToLayers, defaultFontName, documentType, fixedLayout, imageResolution, minimalLineWidth, preventGlyphsGrouping, splitCssIntoPages, splitIntoPages, useZOrder, antialiasingProcessing, cssClassNamesPrefix, explicitListOfSavedPages, fontEncodingStrategy, fontSavingMode, htmlMarkupGenerationMode, lettersPositioningMethod, pagesFlowTypeDependsOnViewersScreenSize, partsEmbeddingMode, rasterImagesSavingMode, removeEmptyAreasOnTopAndBottom, saveShadowedTextsAsTransparentTexts, saveTransparentTexts, specialFolderForAllImages, specialFolderForSvgImages, trySaveTextUnderliningAndStrikeoutingInCss, storage, flowLayoutParagraphFullWidth, file)
7434+
> putPdfInRequestToHtml(outPath, additionalMarginWidthInPoints, compressSvgGraphicsIfAny, convertMarkedContentToLayers, defaultFontName, documentType, fixedLayout, imageResolution, minimalLineWidth, preventGlyphsGrouping, splitCssIntoPages, splitIntoPages, useZOrder, antialiasingProcessing, cssClassNamesPrefix, explicitListOfSavedPages, fontEncodingStrategy, fontSavingMode, htmlMarkupGenerationMode, lettersPositioningMethod, pagesFlowTypeDependsOnViewersScreenSize, partsEmbeddingMode, rasterImagesSavingMode, removeEmptyAreasOnTopAndBottom, saveShadowedTextsAsTransparentTexts, saveTransparentTexts, specialFolderForAllImages, specialFolderForSvgImages, trySaveTextUnderliningAndStrikeoutingInCss, storage, flowLayoutParagraphFullWidth, outputFormat, file)
74357435
74367436
Converts PDF document (in request content) to Html format and uploads resulting file to storage.
74377437

@@ -7469,6 +7469,7 @@ Name | Type | Description | Notes
74697469
**trySaveTextUnderliningAndStrikeoutingInCss** | **boolean** | PDF itself does not contain underlining markers for texts. It emulated with line situated under text. This option allows converter try guess that this or that line is a text's underlining and put this info into CSS instead of drawing of underlining graphically. | [optional]
74707470
**storage** | **string** | The document storage. | [optional]
74717471
**flowLayoutParagraphFullWidth** | **boolean** | This attribute specifies full width paragraph text for Flow mode, FixedLayout = false. | [optional]
7472+
**outputFormat** | [**OutputFormat**](OutputFormat.md) | This parameter determines the type of result. The zip archive will be uploaded into the storage if the parameter is "Zip" or missed (default). In case of the "Folder", all resulting files and directories will be uploaded to the folder of the resulting HTML file. | [optional]
74727473
**file** | **Buffer** | A file to be converted. | [optional]
74737474

74747475
### Return type
@@ -7805,7 +7806,7 @@ Name | Type | Description | Notes
78057806

78067807
<a name="putPdfInStorageToHtml"></a>
78077808
## **putPdfInStorageToHtml**
7808-
> putPdfInStorageToHtml(name, outPath, additionalMarginWidthInPoints, compressSvgGraphicsIfAny, convertMarkedContentToLayers, defaultFontName, documentType, fixedLayout, imageResolution, minimalLineWidth, preventGlyphsGrouping, splitCssIntoPages, splitIntoPages, useZOrder, antialiasingProcessing, cssClassNamesPrefix, explicitListOfSavedPages, fontEncodingStrategy, fontSavingMode, htmlMarkupGenerationMode, lettersPositioningMethod, pagesFlowTypeDependsOnViewersScreenSize, partsEmbeddingMode, rasterImagesSavingMode, removeEmptyAreasOnTopAndBottom, saveShadowedTextsAsTransparentTexts, saveTransparentTexts, specialFolderForAllImages, specialFolderForSvgImages, trySaveTextUnderliningAndStrikeoutingInCss, folder, storage, flowLayoutParagraphFullWidth)
7809+
> putPdfInStorageToHtml(name, outPath, additionalMarginWidthInPoints, compressSvgGraphicsIfAny, convertMarkedContentToLayers, defaultFontName, documentType, fixedLayout, imageResolution, minimalLineWidth, preventGlyphsGrouping, splitCssIntoPages, splitIntoPages, useZOrder, antialiasingProcessing, cssClassNamesPrefix, explicitListOfSavedPages, fontEncodingStrategy, fontSavingMode, htmlMarkupGenerationMode, lettersPositioningMethod, pagesFlowTypeDependsOnViewersScreenSize, partsEmbeddingMode, rasterImagesSavingMode, removeEmptyAreasOnTopAndBottom, saveShadowedTextsAsTransparentTexts, saveTransparentTexts, specialFolderForAllImages, specialFolderForSvgImages, trySaveTextUnderliningAndStrikeoutingInCss, folder, storage, flowLayoutParagraphFullWidth, outputFormat)
78097810
78107811
Converts PDF document (located on storage) to Html format and uploads resulting file to storage
78117812

@@ -7845,6 +7846,7 @@ Name | Type | Description | Notes
78457846
**folder** | **string** | The document folder. | [optional]
78467847
**storage** | **string** | The document storage. | [optional]
78477848
**flowLayoutParagraphFullWidth** | **boolean** | This attribute specifies full width paragraph text for Flow mode, FixedLayout = false. | [optional]
7849+
**outputFormat** | [**OutputFormat**](OutputFormat.md) | This parameter determines the type of result. The zip archive will be uploaded into the storage if the parameter is "Zip" or missed (default). In case of the "Folder", all resulting files and directories will be uploaded to the folder of the resulting HTML file. | [optional]
78487850

78497851
### Return type
78507852

docs/RadioButtonField.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
1111
**multiSelect** | **boolean** | Gets or sets multiselection flag.<br />*Inherited from [ChoiceField](ChoiceField.md)* | [optional]
1212
**selected** | **number** | Gets or sets index of selected item. Numbering of items is started from 1.<br />*Inherited from [ChoiceField](ChoiceField.md)* | [optional]
1313
**partialName** | **string** | Field name.<br />*Inherited from [FormField](FormField.md)* | [optional]
14+
**fullName** | **string** | Full Field name.<br />*Inherited from [FormField](FormField.md)* | [optional]
1415
**rect** | [**Rectangle**](Rectangle.md) | Field rectangle.<br />*Inherited from [FormField](FormField.md)* | [optional]
1516
**value** | **string** | Field value.<br />*Inherited from [FormField](FormField.md)* | [optional]
1617
**pageIndex** | **number** | Page index.<br />*Inherited from [FormField](FormField.md)* |

docs/RadioButtonOptionField.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
88
**optionName** | **string** | Gets or sets name of the option. | [optional]
99
**style** | [**BoxStyle**](BoxStyle.md) | Style of field box. | [optional]
1010
**partialName** | **string** | Field name.<br />*Inherited from [FormField](FormField.md)* | [optional]
11+
**fullName** | **string** | Full Field name.<br />*Inherited from [FormField](FormField.md)* | [optional]
1112
**rect** | [**Rectangle**](Rectangle.md) | Field rectangle.<br />*Inherited from [FormField](FormField.md)* | [optional]
1213
**value** | **string** | Field value.<br />*Inherited from [FormField](FormField.md)* | [optional]
1314
**pageIndex** | **number** | Page index.<br />*Inherited from [FormField](FormField.md)* |

0 commit comments

Comments
 (0)