aspose_pdf_cloud 19.3.0 → 19.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +35 -5
  3. data/docs/BorderCornerStyle.md +11 -0
  4. data/docs/BorderInfo.md +13 -0
  5. data/docs/Cell.md +21 -0
  6. data/docs/ColumnAdjustment.md +12 -0
  7. data/docs/CryptoAlgorithm.md +14 -0
  8. data/docs/GraphInfo.md +19 -0
  9. data/docs/ImageFooter.md +23 -0
  10. data/docs/ImageHeader.md +23 -0
  11. data/docs/ImageStamp.md +5 -5
  12. data/docs/MarginInfo.md +5 -5
  13. data/docs/PageNumberStamp.md +24 -0
  14. data/docs/PdfApi.md +451 -27
  15. data/docs/PdfPageStamp.md +5 -5
  16. data/docs/PermissionsFlags.md +17 -0
  17. data/docs/Row.md +19 -0
  18. data/docs/StampBase.md +0 -5
  19. data/docs/Table.md +31 -0
  20. data/docs/TableBroken.md +12 -0
  21. data/docs/TextFooter.md +23 -0
  22. data/docs/TextHeader.md +23 -0
  23. data/docs/TextStamp.md +5 -5
  24. data/lib/aspose_pdf_cloud.rb +15 -0
  25. data/lib/aspose_pdf_cloud/api/pdf_api.rb +1530 -215
  26. data/lib/aspose_pdf_cloud/models/border_corner_style.rb +44 -0
  27. data/lib/aspose_pdf_cloud/models/border_info.rb +241 -0
  28. data/lib/aspose_pdf_cloud/models/cell.rb +323 -0
  29. data/lib/aspose_pdf_cloud/models/column_adjustment.rb +45 -0
  30. data/lib/aspose_pdf_cloud/models/crypto_algorithm.rb +46 -0
  31. data/lib/aspose_pdf_cloud/models/graph_info.rb +303 -0
  32. data/lib/aspose_pdf_cloud/models/image_footer.rb +343 -0
  33. data/lib/aspose_pdf_cloud/models/image_header.rb +343 -0
  34. data/lib/aspose_pdf_cloud/models/image_stamp.rb +54 -54
  35. data/lib/aspose_pdf_cloud/models/margin_info.rb +5 -21
  36. data/lib/aspose_pdf_cloud/models/page_number_stamp.rb +353 -0
  37. data/lib/aspose_pdf_cloud/models/pdf_page_stamp.rb +54 -54
  38. data/lib/aspose_pdf_cloud/models/permissions_flags.rb +50 -0
  39. data/lib/aspose_pdf_cloud/models/row.rb +308 -0
  40. data/lib/aspose_pdf_cloud/models/stamp_base.rb +1 -51
  41. data/lib/aspose_pdf_cloud/models/table.rb +425 -0
  42. data/lib/aspose_pdf_cloud/models/table_broken.rb +45 -0
  43. data/lib/aspose_pdf_cloud/models/text_footer.rb +343 -0
  44. data/lib/aspose_pdf_cloud/models/text_header.rb +343 -0
  45. data/lib/aspose_pdf_cloud/models/text_stamp.rb +54 -54
  46. data/lib/aspose_pdf_cloud/version.rb +1 -1
  47. data/test/pdf_tests.rb +407 -5
  48. data/test_data/4pagesEncrypted.pdf +0 -0
  49. metadata +33 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f545628d7fe443ce80f847b79d7ba1d9b029329fb3cd3b5787a891b3f6a7fb0e
4
- data.tar.gz: 3596b0e69c3f2e28b6f658f737d7ec3b4530ce36b4b83030f9628f60ecc5a5f0
3
+ metadata.gz: 5a9f8bec27dd56d6267510505912ce14ec233056ccdb1ff7e573a9ff2a628e12
4
+ data.tar.gz: eb5e72eb2f69af1583b8a0cebcb5a4ca604becc150bf5c0b25f26987eca9b78d
5
5
  SHA512:
6
- metadata.gz: bf475e046c961c23b1ff8520832ee59dfd8319d63d4238ddf5fca478e17c8ddefec9954fb0ad43eeb39899e22501f7efa6ea3abe3a16a0a647a2d468f1f22570
7
- data.tar.gz: 91563a7d045251498a69b6aa94294fe8cce2ed2cd61c3a4c35db8e347649256a27b134cacf4cc87510e78929eb30a847036eb75516fe1322ce94c81587aa56fa
6
+ metadata.gz: b572d4777c6694bf1f58fccbbbf91bb8eb64f42707c7a6d66d4d8bf43527219ffb8396ce666ea0ff1d6573e88e58c71b1c9872382458e1324a43477320d76bcc
7
+ data.tar.gz: eafe1b062dc055240a4f1f9e4863d6bfae51c2149100d1d546497abd5772fbcefa6969fb773af982129bfdafffc38e0c0a997d56cb9064612ab4b4d3a471431f
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Aspose.PDF Cloud
2
2
 
3
3
  - API version: 2.0
4
- - Package version: 19.3.0
4
+ - Package version: 19.4.0
5
5
 
6
6
  [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.
7
7
 
@@ -22,15 +22,15 @@ gem build aspose_pdf_cloud.gemspec
22
22
  Then either install the gem locally:
23
23
 
24
24
  ```shell
25
- gem install ./aspose_pdf_cloud-19.3.0.gem
25
+ gem install ./aspose_pdf_cloud-19.4.0.gem
26
26
  ```
27
- (for development, run `gem install --dev ./aspose_pdf_cloud-19.3.0.gem` to install the development dependencies)
27
+ (for development, run `gem install --dev ./aspose_pdf_cloud-19.4.0.gem` to install the development dependencies)
28
28
 
29
29
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
30
30
 
31
31
  Finally add this to the Gemfile:
32
32
 
33
- gem 'aspose_pdf_cloud', '~> 19.3.0'
33
+ gem 'aspose_pdf_cloud', '~> 19.4.0'
34
34
 
35
35
  ### Install from Git
36
36
 
@@ -115,7 +115,6 @@ Class | Method | HTTP request | Description
115
115
  *AsposePdfCloud::PdfApi* | [**get_document_annotations**](docs/PdfApi.md#get_document_annotations) | **GET** /pdf/\{name}/annotations | Read documant page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases.
116
116
  *AsposePdfCloud::PdfApi* | [**get_document_attachment_by_index**](docs/PdfApi.md#get_document_attachment_by_index) | **GET** /pdf/\{name}/attachments/\{attachmentIndex} | Read document attachment info by its index.
117
117
  *AsposePdfCloud::PdfApi* | [**get_document_attachments**](docs/PdfApi.md#get_document_attachments) | **GET** /pdf/\{name}/attachments | Read document attachments info.
118
- *AsposePdfCloud::PdfApi* | [**get_document_bookmarks**](docs/PdfApi.md#get_document_bookmarks) | **GET** /pdf/\{name}/bookmarks | Read document bookmark/bookmarks (including children).
119
118
  *AsposePdfCloud::PdfApi* | [**get_document_caret_annotations**](docs/PdfApi.md#get_document_caret_annotations) | **GET** /pdf/\{name}/annotations/caret | Read document caret annotations.
120
119
  *AsposePdfCloud::PdfApi* | [**get_document_circle_annotations**](docs/PdfApi.md#get_document_circle_annotations) | **GET** /pdf/\{name}/annotations/circle | Read document circle annotations.
121
120
  *AsposePdfCloud::PdfApi* | [**get_document_file_attachment_annotations**](docs/PdfApi.md#get_document_file_attachment_annotations) | **GET** /pdf/\{name}/annotations/fileattachment | Read document FileAttachment annotations.
@@ -212,6 +211,7 @@ Class | Method | HTTP request | Description
212
211
  *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_svg**](docs/PdfApi.md#get_pdf_in_storage_to_svg) | **GET** /pdf/\{name}/convert/svg | Converts PDF document (located on storage) to SVG format and returns resulting file in response content
213
212
  *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_tiff**](docs/PdfApi.md#get_pdf_in_storage_to_tiff) | **GET** /pdf/\{name}/convert/tiff | Converts PDF document (located on storage) to TIFF format and returns resulting file in response content
214
213
  *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_xls**](docs/PdfApi.md#get_pdf_in_storage_to_xls) | **GET** /pdf/\{name}/convert/xls | Converts PDF document (located on storage) to XLS format and returns resulting file in response content
214
+ *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_xlsx**](docs/PdfApi.md#get_pdf_in_storage_to_xlsx) | **GET** /pdf/\{name}/convert/xlsx | Converts PDF document (located on storage) to XLSX format and returns resulting file in response content
215
215
  *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_xml**](docs/PdfApi.md#get_pdf_in_storage_to_xml) | **GET** /pdf/\{name}/convert/xml | Converts PDF document (located on storage) to XML format and returns resulting file in response content
216
216
  *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_xps**](docs/PdfApi.md#get_pdf_in_storage_to_xps) | **GET** /pdf/\{name}/convert/xps | Converts PDF document (located on storage) to XPS format and returns resulting file in response content
217
217
  *AsposePdfCloud::PdfApi* | [**get_poly_line_annotation**](docs/PdfApi.md#get_poly_line_annotation) | **GET** /pdf/\{name}/annotations/polyline/\{annotationId} | Read document page polyline annotation by ID.
@@ -241,8 +241,16 @@ Class | Method | HTTP request | Description
241
241
  *AsposePdfCloud::PdfApi* | [**get_xps_in_storage_to_pdf**](docs/PdfApi.md#get_xps_in_storage_to_pdf) | **GET** /pdf/create/xps | Convert XPS file (located on storage) to PDF format and return resulting file in response.
242
242
  *AsposePdfCloud::PdfApi* | [**get_xsl_fo_in_storage_to_pdf**](docs/PdfApi.md#get_xsl_fo_in_storage_to_pdf) | **GET** /pdf/create/xslfo | Convert XslFo file (located on storage) to PDF format and return resulting file in response.
243
243
  *AsposePdfCloud::PdfApi* | [**post_append_document**](docs/PdfApi.md#post_append_document) | **POST** /pdf/\{name}/appendDocument | Append document to existing one.
244
+ *AsposePdfCloud::PdfApi* | [**post_change_password_document_in_storage**](docs/PdfApi.md#post_change_password_document_in_storage) | **POST** /pdf/\{name}/changepassword | Change document password in storage.
244
245
  *AsposePdfCloud::PdfApi* | [**post_create_field**](docs/PdfApi.md#post_create_field) | **POST** /pdf/\{name}/fields | Create field.
246
+ *AsposePdfCloud::PdfApi* | [**post_decrypt_document_in_storage**](docs/PdfApi.md#post_decrypt_document_in_storage) | **POST** /pdf/\{name}/decrypt | Decrypt document in storage.
247
+ *AsposePdfCloud::PdfApi* | [**post_document_image_footer**](docs/PdfApi.md#post_document_image_footer) | **POST** /pdf/\{name}/footer/image | Add document image footer.
248
+ *AsposePdfCloud::PdfApi* | [**post_document_image_header**](docs/PdfApi.md#post_document_image_header) | **POST** /pdf/\{name}/header/image | Add document image header.
249
+ *AsposePdfCloud::PdfApi* | [**post_document_page_number_stamps**](docs/PdfApi.md#post_document_page_number_stamps) | **POST** /pdf/\{name}/stamps/pagenumber | Add document page number stamps.
250
+ *AsposePdfCloud::PdfApi* | [**post_document_text_footer**](docs/PdfApi.md#post_document_text_footer) | **POST** /pdf/\{name}/footer/text | Add document text footer.
251
+ *AsposePdfCloud::PdfApi* | [**post_document_text_header**](docs/PdfApi.md#post_document_text_header) | **POST** /pdf/\{name}/header/text | Add document text header.
245
252
  *AsposePdfCloud::PdfApi* | [**post_document_text_replace**](docs/PdfApi.md#post_document_text_replace) | **POST** /pdf/\{name}/text/replace | Document's replace text method.
253
+ *AsposePdfCloud::PdfApi* | [**post_encrypt_document_in_storage**](docs/PdfApi.md#post_encrypt_document_in_storage) | **POST** /pdf/\{name}/encrypt | Encrypt document in storage.
246
254
  *AsposePdfCloud::PdfApi* | [**post_flatten_document**](docs/PdfApi.md#post_flatten_document) | **POST** /pdf/\{name}/flatten | Flatten the document.
247
255
  *AsposePdfCloud::PdfApi* | [**post_insert_image**](docs/PdfApi.md#post_insert_image) | **POST** /pdf/\{name}/pages/\{pageNumber}/images | Insert image to document page.
248
256
  *AsposePdfCloud::PdfApi* | [**post_move_file**](docs/PdfApi.md#post_move_file) | **POST** /storage/file | Move a specific file
@@ -269,6 +277,7 @@ Class | Method | HTTP request | Description
269
277
  *AsposePdfCloud::PdfApi* | [**post_page_squiggly_annotations**](docs/PdfApi.md#post_page_squiggly_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/squiggly | Add document page squiggly annotations.
270
278
  *AsposePdfCloud::PdfApi* | [**post_page_stamp_annotations**](docs/PdfApi.md#post_page_stamp_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/stamp | Add document page stamp annotations.
271
279
  *AsposePdfCloud::PdfApi* | [**post_page_strike_out_annotations**](docs/PdfApi.md#post_page_strike_out_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/strikeout | Add document page StrikeOut annotations.
280
+ *AsposePdfCloud::PdfApi* | [**post_page_tables**](docs/PdfApi.md#post_page_tables) | **POST** /pdf/\{name}/pages/\{pageNumber}/tables | Add document page tables.
272
281
  *AsposePdfCloud::PdfApi* | [**post_page_text_annotations**](docs/PdfApi.md#post_page_text_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/text | Add document page text annotations.
273
282
  *AsposePdfCloud::PdfApi* | [**post_page_text_replace**](docs/PdfApi.md#post_page_text_replace) | **POST** /pdf/\{name}/pages/\{pageNumber}/text/replace | Page's replace text method.
274
283
  *AsposePdfCloud::PdfApi* | [**post_page_text_stamps**](docs/PdfApi.md#post_page_text_stamps) | **POST** /pdf/\{name}/pages/\{pageNumber}/stamps/text | Add document page text stamps.
@@ -281,10 +290,13 @@ Class | Method | HTTP request | Description
281
290
  *AsposePdfCloud::PdfApi* | [**put_add_text**](docs/PdfApi.md#put_add_text) | **PUT** /pdf/\{name}/pages/\{pageNumber}/text | Add text to PDF document page.
282
291
  *AsposePdfCloud::PdfApi* | [**put_annotations_flatten**](docs/PdfApi.md#put_annotations_flatten) | **PUT** /pdf/\{name}/annotations/flatten | Flattens the annotations of the specified types
283
292
  *AsposePdfCloud::PdfApi* | [**put_caret_annotation**](docs/PdfApi.md#put_caret_annotation) | **PUT** /pdf/\{name}/annotations/caret/\{annotationId} | Replace document caret annotation
293
+ *AsposePdfCloud::PdfApi* | [**put_change_password_document**](docs/PdfApi.md#put_change_password_document) | **PUT** /pdf/changepassword | Change document password from content.
284
294
  *AsposePdfCloud::PdfApi* | [**put_circle_annotation**](docs/PdfApi.md#put_circle_annotation) | **PUT** /pdf/\{name}/annotations/circle/\{annotationId} | Replace document circle annotation
285
295
  *AsposePdfCloud::PdfApi* | [**put_create**](docs/PdfApi.md#put_create) | **PUT** /storage/file | Upload a specific file
286
296
  *AsposePdfCloud::PdfApi* | [**put_create_document**](docs/PdfApi.md#put_create_document) | **PUT** /pdf/\{name} | Create empty document.
287
297
  *AsposePdfCloud::PdfApi* | [**put_create_folder**](docs/PdfApi.md#put_create_folder) | **PUT** /storage/folder | Create the folder
298
+ *AsposePdfCloud::PdfApi* | [**put_decrypt_document**](docs/PdfApi.md#put_decrypt_document) | **PUT** /pdf/decrypt | Decrypt document from content.
299
+ *AsposePdfCloud::PdfApi* | [**put_encrypt_document**](docs/PdfApi.md#put_encrypt_document) | **PUT** /pdf/encrypt | Encrypt document from content.
288
300
  *AsposePdfCloud::PdfApi* | [**put_epub_in_storage_to_pdf**](docs/PdfApi.md#put_epub_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/epub | Convert EPUB file (located on storage) to PDF format and upload resulting file to storage.
289
301
  *AsposePdfCloud::PdfApi* | [**put_fields_flatten**](docs/PdfApi.md#put_fields_flatten) | **PUT** /pdf/\{name}/fields/flatten | Flatten form fields in document.
290
302
  *AsposePdfCloud::PdfApi* | [**put_file_attachment_annotation**](docs/PdfApi.md#put_file_attachment_annotation) | **PUT** /pdf/\{name}/annotations/fileattachment/\{annotationId} | Replace document FileAttachment annotation
@@ -326,6 +338,7 @@ Class | Method | HTTP request | Description
326
338
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_svg**](docs/PdfApi.md#put_pdf_in_request_to_svg) | **PUT** /pdf/convert/svg | Converts PDF document (in request content) to SVG format and uploads resulting file to storage.
327
339
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_tiff**](docs/PdfApi.md#put_pdf_in_request_to_tiff) | **PUT** /pdf/convert/tiff | Converts PDF document (in request content) to TIFF format and uploads resulting file to storage.
328
340
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_xls**](docs/PdfApi.md#put_pdf_in_request_to_xls) | **PUT** /pdf/convert/xls | Converts PDF document (in request content) to XLS format and uploads resulting file to storage.
341
+ *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_xlsx**](docs/PdfApi.md#put_pdf_in_request_to_xlsx) | **PUT** /pdf/convert/xlsx | Converts PDF document (in request content) to XLSX format and uploads resulting file to storage.
329
342
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_xml**](docs/PdfApi.md#put_pdf_in_request_to_xml) | **PUT** /pdf/convert/xml | Converts PDF document (in request content) to XML format and uploads resulting file to storage.
330
343
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_xps**](docs/PdfApi.md#put_pdf_in_request_to_xps) | **PUT** /pdf/convert/xps | Converts PDF document (in request content) to XPS format and uploads resulting file to storage.
331
344
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_doc**](docs/PdfApi.md#put_pdf_in_storage_to_doc) | **PUT** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and uploads resulting file to storage
@@ -338,6 +351,7 @@ Class | Method | HTTP request | Description
338
351
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_svg**](docs/PdfApi.md#put_pdf_in_storage_to_svg) | **PUT** /pdf/\{name}/convert/svg | Converts PDF document (located on storage) to SVG format and uploads resulting file to storage
339
352
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_tiff**](docs/PdfApi.md#put_pdf_in_storage_to_tiff) | **PUT** /pdf/\{name}/convert/tiff | Converts PDF document (located on storage) to TIFF format and uploads resulting file to storage
340
353
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_xls**](docs/PdfApi.md#put_pdf_in_storage_to_xls) | **PUT** /pdf/\{name}/convert/xls | Converts PDF document (located on storage) to XLS format and uploads resulting file to storage
354
+ *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_xlsx**](docs/PdfApi.md#put_pdf_in_storage_to_xlsx) | **PUT** /pdf/\{name}/convert/xlsx | Converts PDF document (located on storage) to XLSX format and uploads resulting file to storage
341
355
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_xml**](docs/PdfApi.md#put_pdf_in_storage_to_xml) | **PUT** /pdf/\{name}/convert/xml | Converts PDF document (located on storage) to XML format and uploads resulting file to storage
342
356
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_xps**](docs/PdfApi.md#put_pdf_in_storage_to_xps) | **PUT** /pdf/\{name}/convert/xps | Converts PDF document (located on storage) to XPS format and uploads resulting file to storage
343
357
  *AsposePdfCloud::PdfApi* | [**put_poly_line_annotation**](docs/PdfApi.md#put_poly_line_annotation) | **PUT** /pdf/\{name}/annotations/polyline/\{annotationId} | Replace document polyline annotation
@@ -359,6 +373,7 @@ Class | Method | HTTP request | Description
359
373
  *AsposePdfCloud::PdfApi* | [**put_stamp_annotation_data_extract**](docs/PdfApi.md#put_stamp_annotation_data_extract) | **PUT** /pdf/\{name}/annotations/stamp/\{annotationId}/data/extract | Extract document stamp annotation content to storage
360
374
  *AsposePdfCloud::PdfApi* | [**put_strike_out_annotation**](docs/PdfApi.md#put_strike_out_annotation) | **PUT** /pdf/\{name}/annotations/strikeout/\{annotationId} | Replace document StrikeOut annotation
361
375
  *AsposePdfCloud::PdfApi* | [**put_svg_in_storage_to_pdf**](docs/PdfApi.md#put_svg_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/svg | Convert SVG file (located on storage) to PDF format and upload resulting file to storage.
376
+ *AsposePdfCloud::PdfApi* | [**put_table**](docs/PdfApi.md#put_table) | **PUT** /pdf/\{name}/tables/\{tableId} | Replace document page table.
362
377
  *AsposePdfCloud::PdfApi* | [**put_text_annotation**](docs/PdfApi.md#put_text_annotation) | **PUT** /pdf/\{name}/annotations/text/\{annotationId} | Replace document text annotation
363
378
  *AsposePdfCloud::PdfApi* | [**put_underline_annotation**](docs/PdfApi.md#put_underline_annotation) | **PUT** /pdf/\{name}/annotations/underline/\{annotationId} | Replace document underline annotation
364
379
  *AsposePdfCloud::PdfApi* | [**put_update_field**](docs/PdfApi.md#put_update_field) | **PUT** /pdf/\{name}/fields/\{fieldName} | Update field.
@@ -379,13 +394,18 @@ Class | Method | HTTP request | Description
379
394
  - [AsposePdfCloud::AntialiasingProcessingType](docs/AntialiasingProcessingType.md)
380
395
  - [AsposePdfCloud::AppendDocument](docs/AppendDocument.md)
381
396
  - [AsposePdfCloud::AsposeResponse](docs/AsposeResponse.md)
397
+ - [AsposePdfCloud::BorderCornerStyle](docs/BorderCornerStyle.md)
398
+ - [AsposePdfCloud::BorderInfo](docs/BorderInfo.md)
382
399
  - [AsposePdfCloud::CapStyle](docs/CapStyle.md)
383
400
  - [AsposePdfCloud::CaptionPosition](docs/CaptionPosition.md)
384
401
  - [AsposePdfCloud::CaretSymbol](docs/CaretSymbol.md)
402
+ - [AsposePdfCloud::Cell](docs/Cell.md)
385
403
  - [AsposePdfCloud::CellRecognized](docs/CellRecognized.md)
386
404
  - [AsposePdfCloud::Color](docs/Color.md)
387
405
  - [AsposePdfCloud::ColorDepth](docs/ColorDepth.md)
406
+ - [AsposePdfCloud::ColumnAdjustment](docs/ColumnAdjustment.md)
388
407
  - [AsposePdfCloud::CompressionType](docs/CompressionType.md)
408
+ - [AsposePdfCloud::CryptoAlgorithm](docs/CryptoAlgorithm.md)
389
409
  - [AsposePdfCloud::DiscUsage](docs/DiscUsage.md)
390
410
  - [AsposePdfCloud::DocFormat](docs/DocFormat.md)
391
411
  - [AsposePdfCloud::DocRecognitionMode](docs/DocRecognitionMode.md)
@@ -399,6 +419,7 @@ Class | Method | HTTP request | Description
399
419
  - [AsposePdfCloud::FontSavingModes](docs/FontSavingModes.md)
400
420
  - [AsposePdfCloud::FontStyles](docs/FontStyles.md)
401
421
  - [AsposePdfCloud::FreeTextIntent](docs/FreeTextIntent.md)
422
+ - [AsposePdfCloud::GraphInfo](docs/GraphInfo.md)
402
423
  - [AsposePdfCloud::HorizontalAlignment](docs/HorizontalAlignment.md)
403
424
  - [AsposePdfCloud::HtmlDocumentType](docs/HtmlDocumentType.md)
404
425
  - [AsposePdfCloud::HtmlMarkupGenerationModes](docs/HtmlMarkupGenerationModes.md)
@@ -421,12 +442,14 @@ Class | Method | HTTP request | Description
421
442
  - [AsposePdfCloud::Paragraph](docs/Paragraph.md)
422
443
  - [AsposePdfCloud::PartsEmbeddingModes](docs/PartsEmbeddingModes.md)
423
444
  - [AsposePdfCloud::PdfAType](docs/PdfAType.md)
445
+ - [AsposePdfCloud::PermissionsFlags](docs/PermissionsFlags.md)
424
446
  - [AsposePdfCloud::Point](docs/Point.md)
425
447
  - [AsposePdfCloud::PolyIntent](docs/PolyIntent.md)
426
448
  - [AsposePdfCloud::Position](docs/Position.md)
427
449
  - [AsposePdfCloud::RasterImagesSavingModes](docs/RasterImagesSavingModes.md)
428
450
  - [AsposePdfCloud::Rectangle](docs/Rectangle.md)
429
451
  - [AsposePdfCloud::Rotation](docs/Rotation.md)
452
+ - [AsposePdfCloud::Row](docs/Row.md)
430
453
  - [AsposePdfCloud::RowRecognized](docs/RowRecognized.md)
431
454
  - [AsposePdfCloud::Segment](docs/Segment.md)
432
455
  - [AsposePdfCloud::ShapeType](docs/ShapeType.md)
@@ -438,6 +461,7 @@ Class | Method | HTTP request | Description
438
461
  - [AsposePdfCloud::Stamp](docs/Stamp.md)
439
462
  - [AsposePdfCloud::StampIcon](docs/StampIcon.md)
440
463
  - [AsposePdfCloud::StampType](docs/StampType.md)
464
+ - [AsposePdfCloud::TableBroken](docs/TableBroken.md)
441
465
  - [AsposePdfCloud::TextHorizontalAlignment](docs/TextHorizontalAlignment.md)
442
466
  - [AsposePdfCloud::TextIcon](docs/TextIcon.md)
443
467
  - [AsposePdfCloud::TextLine](docs/TextLine.md)
@@ -546,6 +570,7 @@ Class | Method | HTTP request | Description
546
570
  - [AsposePdfCloud::StrikeOutAnnotationResponse](docs/StrikeOutAnnotationResponse.md)
547
571
  - [AsposePdfCloud::StrikeOutAnnotations](docs/StrikeOutAnnotations.md)
548
572
  - [AsposePdfCloud::StrikeOutAnnotationsResponse](docs/StrikeOutAnnotationsResponse.md)
573
+ - [AsposePdfCloud::Table](docs/Table.md)
549
574
  - [AsposePdfCloud::TableRecognized](docs/TableRecognized.md)
550
575
  - [AsposePdfCloud::TableRecognizedResponse](docs/TableRecognizedResponse.md)
551
576
  - [AsposePdfCloud::TablesRecognized](docs/TablesRecognized.md)
@@ -560,13 +585,18 @@ Class | Method | HTTP request | Description
560
585
  - [AsposePdfCloud::UnderlineAnnotationsResponse](docs/UnderlineAnnotationsResponse.md)
561
586
  - [AsposePdfCloud::WordCountResponse](docs/WordCountResponse.md)
562
587
  - [AsposePdfCloud::AnnotationInfo](docs/AnnotationInfo.md)
588
+ - [AsposePdfCloud::ImageFooter](docs/ImageFooter.md)
589
+ - [AsposePdfCloud::ImageHeader](docs/ImageHeader.md)
563
590
  - [AsposePdfCloud::ImageStamp](docs/ImageStamp.md)
564
591
  - [AsposePdfCloud::MarkupAnnotation](docs/MarkupAnnotation.md)
565
592
  - [AsposePdfCloud::MovieAnnotation](docs/MovieAnnotation.md)
593
+ - [AsposePdfCloud::PageNumberStamp](docs/PageNumberStamp.md)
566
594
  - [AsposePdfCloud::PdfPageStamp](docs/PdfPageStamp.md)
567
595
  - [AsposePdfCloud::PopupAnnotation](docs/PopupAnnotation.md)
568
596
  - [AsposePdfCloud::RedactionAnnotation](docs/RedactionAnnotation.md)
569
597
  - [AsposePdfCloud::ScreenAnnotation](docs/ScreenAnnotation.md)
598
+ - [AsposePdfCloud::TextFooter](docs/TextFooter.md)
599
+ - [AsposePdfCloud::TextHeader](docs/TextHeader.md)
570
600
  - [AsposePdfCloud::TextStamp](docs/TextStamp.md)
571
601
  - [AsposePdfCloud::CaretAnnotation](docs/CaretAnnotation.md)
572
602
  - [AsposePdfCloud::CommonFigureAnnotation](docs/CommonFigureAnnotation.md)
@@ -0,0 +1,11 @@
1
+ # AsposePdfCloud::BorderCornerStyle
2
+ Enumerates the border corner styles for border.
3
+
4
+ ## Enum
5
+ Name | Type | Value | Description
6
+ ------------ | ------------- | ------------- | -------------
7
+ **NONE** | **String** | 'None' | None border style.
8
+ **ROUND** | **String** | 'Round' | Round border style.
9
+
10
+
11
+
@@ -0,0 +1,13 @@
1
+ # AsposePdfCloud::BorderInfo
2
+ This class represents border for graphics elements.
3
+
4
+ ## Properties
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **left** | [**GraphInfo**](GraphInfo.md) | Gets or sets a object that indicates left of the border. | [optional]
8
+ **right** | [**GraphInfo**](GraphInfo.md) | Gets or sets a object that indicates right of the border. | [optional]
9
+ **top** | [**GraphInfo**](GraphInfo.md) | Gets or sets a object that indicates the top border. | [optional]
10
+ **bottom** | [**GraphInfo**](GraphInfo.md) | Gets or sets a object that indicates bottom of the border. | [optional]
11
+ **rounded_border_radius** | **Float** | Gets or sets a rouded border radius | [optional]
12
+
13
+
data/docs/Cell.md ADDED
@@ -0,0 +1,21 @@
1
+ # AsposePdfCloud::Cell
2
+ Represents a cell of the table's row.
3
+
4
+ ## Properties
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **is_no_border** | **BOOLEAN** | Gets or sets the cell have border. | [optional]
8
+ **margin** | [**MarginInfo**](MarginInfo.md) | Gets or sets the padding. | [optional]
9
+ **border** | [**BorderInfo**](BorderInfo.md) | Gets or sets the border. | [optional]
10
+ **background_color** | [**Color**](Color.md) | Gets or sets the background color. | [optional]
11
+ **background_image_file** | **String** | Gets or sets the background image file. | [optional]
12
+ **alignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets or sets the alignment. | [optional]
13
+ **default_cell_text_state** | [**TextState**](TextState.md) | Gets or sets the default cell text state. | [optional]
14
+ **paragraphs** | [**Array<TextRect>**](TextRect.md) | Gets or sets the cell's formatted text. | [optional]
15
+ **is_word_wrapped** | **BOOLEAN** | Gets or sets the cell's text word wrapped. | [optional]
16
+ **vertical_alignment** | [**VerticalAlignment**](VerticalAlignment.md) | Gets or sets the vertical alignment. | [optional]
17
+ **col_span** | **Integer** | Gets or sets the column span. | [optional]
18
+ **row_span** | **Integer** | Gets or sets the row span. | [optional]
19
+ **width** | **Float** | Gets or sets the column width. | [optional]
20
+
21
+
@@ -0,0 +1,12 @@
1
+ # AsposePdfCloud::ColumnAdjustment
2
+ Enumerates column adjustment types.
3
+
4
+ ## Enum
5
+ Name | Type | Value | Description
6
+ ------------ | ------------- | ------------- | -------------
7
+ **CUSTOMIZED** | **String** | 'Customized' | Customized.
8
+ **AUTO_FIT_TO_CONTENT** | **String** | 'AutoFitToContent' | Auto fit to content.
9
+ **AUTO_FIT_TO_WINDOW** | **String** | 'AutoFitToWindow' | Auto fit to window.
10
+
11
+
12
+
@@ -0,0 +1,14 @@
1
+ # AsposePdfCloud::CryptoAlgorithm
2
+ Represent type of cryptographic algorithm that used in encryption/decryption
3
+ routines.
4
+
5
+ ## Enum
6
+ Name | Type | Value | Description
7
+ ------------ | ------------- | ------------- | -------------
8
+ **RC4X40** | **String** | 'RC4x40' | RC4 with key length 40.
9
+ **RC4X128** | **String** | 'RC4x128' | RC4 with key length 128.
10
+ **AE_SX128** | **String** | 'AESx128' | AES with key length 128.
11
+ **AE_SX256** | **String** | 'AESx256' | AES with key length 256.
12
+
13
+
14
+
data/docs/GraphInfo.md ADDED
@@ -0,0 +1,19 @@
1
+ # AsposePdfCloud::GraphInfo
2
+ Represents graphics info.
3
+
4
+ ## Properties
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **line_width** | **Float** | Gets or sets a float value that indicates the line width of the graph. | [optional]
8
+ **color** | [**Color**](Color.md) | Gets or sets a object that indicates the color of the graph. | [optional]
9
+ **dash_array** | **Array<Integer>** | Gets or sets a dash array. | [optional]
10
+ **dash_phase** | **Integer** | Gets or sets a dash phase. | [optional]
11
+ **fill_color** | [**Color**](Color.md) | Gets or sets a object that indicates the fill color of the graph. | [optional]
12
+ **is_doubled** | **BOOLEAN** | Gets or sets is border doubled. | [optional]
13
+ **skew_angle_x** | **Float** | Gets or sets a float value that indicates the skew angle of the x-coordinate when transforming a coordinate system. | [optional]
14
+ **skew_angle_y** | **Float** | Gets or sets a float value that indicates the skew angle of the y-coordinate when transforming a coordinate system. | [optional]
15
+ **scaling_rate_x** | **Float** | Gets or sets a float value that indicates the scaling rate of the x-coordinate when transforming a coordinate system. | [optional]
16
+ **scaling_rate_y** | **Float** | Gets or sets a float value that indicates the scaling rate of the y-coordinate when transforming a coordinate system. | [optional]
17
+ **rotation_angle** | **Float** | Gets or sets a float value that indicates the rotation angle of the coordinate system when transforming a coordinate system. | [optional]
18
+
19
+
@@ -0,0 +1,23 @@
1
+ # AsposePdfCloud::ImageFooter
2
+ Represents Pdf image footer.
3
+
4
+ ## Properties
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **links** | [**Array<Link>**](Link.md) | Link to the document. | [optional]
8
+ **background** | **BOOLEAN** | Sets or gets a bool value that indicates the content is stamped as background. If the value is true, the stamp content is layed at the bottom. By defalt, the value is false, the stamp content is layed at the top. | [optional]
9
+ **horizontal_alignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets or sets Horizontal alignment of stamp on the page. | [optional]
10
+ **opacity** | **Float** | Gets or sets a value to indicate the stamp opacity. The value is from 0.0 to 1.0. By default the value is 1.0. | [optional]
11
+ **rotate** | [**Rotation**](Rotation.md) | Sets or gets the rotation of stamp content according values. Note. This property is for set angles which are multiples of 90 degrees (0, 90, 180, 270 degrees). To set arbitrary angle use RotateAngle property. If angle set by ArbitraryAngle is not multiple of 90 then Rotate property returns Rotation.None. | [optional]
12
+ **rotate_angle** | **Float** | Gets or sets rotate angle of stamp in degrees. This property allows to set arbitrary rotate angle. | [optional]
13
+ **x_indent** | **Float** | Horizontal stamp coordinate, starting from the left. | [optional]
14
+ **y_indent** | **Float** | Vertical stamp coordinate, starting from the bottom. | [optional]
15
+ **zoom** | **Float** | Zooming factor of the stamp. Allows to scale stamp. | [optional]
16
+ **file_name** | **String** | Gets or sets the file name. | [optional]
17
+ **width** | **Float** | Gets or sets image width. Setting this property allos to scal image horizontally. | [optional]
18
+ **height** | **Float** | Gets or sets image height. Setting this image allows to scale image vertically. | [optional]
19
+ **bottom_margin** | **Float** | Gets or sets bottom margin of stamp. | [optional]
20
+ **left_margin** | **Float** | Gets or sets left margin of stamp. | [optional]
21
+ **right_margin** | **Float** | Gets or sets right margin of stamp. | [optional]
22
+
23
+
@@ -0,0 +1,23 @@
1
+ # AsposePdfCloud::ImageHeader
2
+ Represents Pdf image header.
3
+
4
+ ## Properties
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **links** | [**Array<Link>**](Link.md) | Link to the document. | [optional]
8
+ **background** | **BOOLEAN** | Sets or gets a bool value that indicates the content is stamped as background. If the value is true, the stamp content is layed at the bottom. By defalt, the value is false, the stamp content is layed at the top. | [optional]
9
+ **horizontal_alignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets or sets Horizontal alignment of stamp on the page. | [optional]
10
+ **opacity** | **Float** | Gets or sets a value to indicate the stamp opacity. The value is from 0.0 to 1.0. By default the value is 1.0. | [optional]
11
+ **rotate** | [**Rotation**](Rotation.md) | Sets or gets the rotation of stamp content according values. Note. This property is for set angles which are multiples of 90 degrees (0, 90, 180, 270 degrees). To set arbitrary angle use RotateAngle property. If angle set by ArbitraryAngle is not multiple of 90 then Rotate property returns Rotation.None. | [optional]
12
+ **rotate_angle** | **Float** | Gets or sets rotate angle of stamp in degrees. This property allows to set arbitrary rotate angle. | [optional]
13
+ **x_indent** | **Float** | Horizontal stamp coordinate, starting from the left. | [optional]
14
+ **y_indent** | **Float** | Vertical stamp coordinate, starting from the bottom. | [optional]
15
+ **zoom** | **Float** | Zooming factor of the stamp. Allows to scale stamp. | [optional]
16
+ **file_name** | **String** | Gets or sets the file name. | [optional]
17
+ **width** | **Float** | Gets or sets image width. Setting this property allos to scal image horizontally. | [optional]
18
+ **height** | **Float** | Gets or sets image height. Setting this image allows to scale image vertically. | [optional]
19
+ **left_margin** | **Float** | Gets or sets left margin of stamp. | [optional]
20
+ **top_margin** | **Float** | Gets or sets top margin of stamp. | [optional]
21
+ **right_margin** | **Float** | Gets or sets right margin of stamp. | [optional]
22
+
23
+
data/docs/ImageStamp.md CHANGED
@@ -6,20 +6,20 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **links** | [**Array<Link>**](Link.md) | Link to the document. | [optional]
8
8
  **background** | **BOOLEAN** | Sets or gets a bool value that indicates the content is stamped as background. If the value is true, the stamp content is layed at the bottom. By defalt, the value is false, the stamp content is layed at the top. | [optional]
9
- **bottom_margin** | **Float** | Gets or sets bottom margin of stamp. | [optional]
10
9
  **horizontal_alignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets or sets Horizontal alignment of stamp on the page. | [optional]
11
- **left_margin** | **Float** | Gets or sets left margin of stamp. | [optional]
12
10
  **opacity** | **Float** | Gets or sets a value to indicate the stamp opacity. The value is from 0.0 to 1.0. By default the value is 1.0. | [optional]
13
- **right_margin** | **Float** | Gets or sets right margin of stamp. | [optional]
14
11
  **rotate** | [**Rotation**](Rotation.md) | Sets or gets the rotation of stamp content according values. Note. This property is for set angles which are multiples of 90 degrees (0, 90, 180, 270 degrees). To set arbitrary angle use RotateAngle property. If angle set by ArbitraryAngle is not multiple of 90 then Rotate property returns Rotation.None. | [optional]
15
12
  **rotate_angle** | **Float** | Gets or sets rotate angle of stamp in degrees. This property allows to set arbitrary rotate angle. | [optional]
16
- **top_margin** | **Float** | Gets or sets top margin of stamp. | [optional]
17
- **vertical_alignment** | [**VerticalAlignment**](VerticalAlignment.md) | Gets or sets vertical alignment of stamp on page. | [optional]
18
13
  **x_indent** | **Float** | Horizontal stamp coordinate, starting from the left. | [optional]
19
14
  **y_indent** | **Float** | Vertical stamp coordinate, starting from the bottom. | [optional]
20
15
  **zoom** | **Float** | Zooming factor of the stamp. Allows to scale stamp. | [optional]
21
16
  **file_name** | **String** | Gets or sets the file name. | [optional]
22
17
  **width** | **Float** | Gets or sets image width. Setting this property allos to scal image horizontally. | [optional]
23
18
  **height** | **Float** | Gets or sets image height. Setting this image allows to scale image vertically. | [optional]
19
+ **vertical_alignment** | [**VerticalAlignment**](VerticalAlignment.md) | Gets or sets vertical alignment of stamp on page. | [optional]
20
+ **bottom_margin** | **Float** | Gets or sets bottom margin of stamp. | [optional]
21
+ **left_margin** | **Float** | Gets or sets left margin of stamp. | [optional]
22
+ **top_margin** | **Float** | Gets or sets top margin of stamp. | [optional]
23
+ **right_margin** | **Float** | Gets or sets right margin of stamp. | [optional]
24
24
 
25
25
 
data/docs/MarginInfo.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # AsposePdfCloud::MarginInfo
2
-
2
+ This class represents a margin for different objects.
3
3
 
4
4
  ## Properties
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **left** | **Float** | |
8
- **right** | **Float** | |
9
- **top** | **Float** | |
10
- **bottom** | **Float** | |
7
+ **left** | **Float** | Gets or sets a float value that indicates the left margin. | [optional]
8
+ **right** | **Float** | Gets or sets a float value that indicates the right margin. | [optional]
9
+ **top** | **Float** | Gets or sets a float value that indicates the top margin. | [optional]
10
+ **bottom** | **Float** | Gets or sets a float value that indicates the bottom margin. | [optional]
11
11
 
12
12
 
@@ -0,0 +1,24 @@
1
+ # AsposePdfCloud::PageNumberStamp
2
+ Represents Pdf stamps.
3
+
4
+ ## Properties
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **links** | [**Array<Link>**](Link.md) | Link to the document. | [optional]
8
+ **background** | **BOOLEAN** | Sets or gets a bool value that indicates the content is stamped as background. If the value is true, the stamp content is layed at the bottom. By defalt, the value is false, the stamp content is layed at the top. | [optional]
9
+ **horizontal_alignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets or sets Horizontal alignment of stamp on the page. | [optional]
10
+ **opacity** | **Float** | Gets or sets a value to indicate the stamp opacity. The value is from 0.0 to 1.0. By default the value is 1.0. | [optional]
11
+ **rotate** | [**Rotation**](Rotation.md) | Sets or gets the rotation of stamp content according values. Note. This property is for set angles which are multiples of 90 degrees (0, 90, 180, 270 degrees). To set arbitrary angle use RotateAngle property. If angle set by ArbitraryAngle is not multiple of 90 then Rotate property returns Rotation.None. | [optional]
12
+ **rotate_angle** | **Float** | Gets or sets rotate angle of stamp in degrees. This property allows to set arbitrary rotate angle. | [optional]
13
+ **x_indent** | **Float** | Horizontal stamp coordinate, starting from the left. | [optional]
14
+ **y_indent** | **Float** | Vertical stamp coordinate, starting from the bottom. | [optional]
15
+ **zoom** | **Float** | Zooming factor of the stamp. Allows to scale stamp. | [optional]
16
+ **value** | **String** | Gets or sets string value which is used as stamp on the page. | [optional]
17
+ **starting_number** | **Integer** | Gets or sets value of the number of starting page. Other pages will be numbered starting from this value. | [optional]
18
+ **vertical_alignment** | [**VerticalAlignment**](VerticalAlignment.md) | Gets or sets vertical alignment of stamp on page. | [optional]
19
+ **bottom_margin** | **Float** | Gets or sets bottom margin of stamp. | [optional]
20
+ **left_margin** | **Float** | Gets or sets left margin of stamp. | [optional]
21
+ **top_margin** | **Float** | Gets or sets top margin of stamp. | [optional]
22
+ **right_margin** | **Float** | Gets or sets right margin of stamp. | [optional]
23
+
24
+
data/docs/PdfApi.md CHANGED
@@ -30,7 +30,6 @@ Method | HTTP request | Description
30
30
  [**get_document_annotations**](PdfApi.md#get_document_annotations) | **GET** /pdf/\{name}/annotations | Read documant page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases.
31
31
  [**get_document_attachment_by_index**](PdfApi.md#get_document_attachment_by_index) | **GET** /pdf/\{name}/attachments/\{attachmentIndex} | Read document attachment info by its index.
32
32
  [**get_document_attachments**](PdfApi.md#get_document_attachments) | **GET** /pdf/\{name}/attachments | Read document attachments info.
33
- [**get_document_bookmarks**](PdfApi.md#get_document_bookmarks) | **GET** /pdf/\{name}/bookmarks | Read document bookmark/bookmarks (including children).
34
33
  [**get_document_caret_annotations**](PdfApi.md#get_document_caret_annotations) | **GET** /pdf/\{name}/annotations/caret | Read document caret annotations.
35
34
  [**get_document_circle_annotations**](PdfApi.md#get_document_circle_annotations) | **GET** /pdf/\{name}/annotations/circle | Read document circle annotations.
36
35
  [**get_document_file_attachment_annotations**](PdfApi.md#get_document_file_attachment_annotations) | **GET** /pdf/\{name}/annotations/fileattachment | Read document FileAttachment annotations.
@@ -127,6 +126,7 @@ Method | HTTP request | Description
127
126
  [**get_pdf_in_storage_to_svg**](PdfApi.md#get_pdf_in_storage_to_svg) | **GET** /pdf/\{name}/convert/svg | Converts PDF document (located on storage) to SVG format and returns resulting file in response content
128
127
  [**get_pdf_in_storage_to_tiff**](PdfApi.md#get_pdf_in_storage_to_tiff) | **GET** /pdf/\{name}/convert/tiff | Converts PDF document (located on storage) to TIFF format and returns resulting file in response content
129
128
  [**get_pdf_in_storage_to_xls**](PdfApi.md#get_pdf_in_storage_to_xls) | **GET** /pdf/\{name}/convert/xls | Converts PDF document (located on storage) to XLS format and returns resulting file in response content
129
+ [**get_pdf_in_storage_to_xlsx**](PdfApi.md#get_pdf_in_storage_to_xlsx) | **GET** /pdf/\{name}/convert/xlsx | Converts PDF document (located on storage) to XLSX format and returns resulting file in response content
130
130
  [**get_pdf_in_storage_to_xml**](PdfApi.md#get_pdf_in_storage_to_xml) | **GET** /pdf/\{name}/convert/xml | Converts PDF document (located on storage) to XML format and returns resulting file in response content
131
131
  [**get_pdf_in_storage_to_xps**](PdfApi.md#get_pdf_in_storage_to_xps) | **GET** /pdf/\{name}/convert/xps | Converts PDF document (located on storage) to XPS format and returns resulting file in response content
132
132
  [**get_poly_line_annotation**](PdfApi.md#get_poly_line_annotation) | **GET** /pdf/\{name}/annotations/polyline/\{annotationId} | Read document page polyline annotation by ID.
@@ -156,8 +156,16 @@ Method | HTTP request | Description
156
156
  [**get_xps_in_storage_to_pdf**](PdfApi.md#get_xps_in_storage_to_pdf) | **GET** /pdf/create/xps | Convert XPS file (located on storage) to PDF format and return resulting file in response.
157
157
  [**get_xsl_fo_in_storage_to_pdf**](PdfApi.md#get_xsl_fo_in_storage_to_pdf) | **GET** /pdf/create/xslfo | Convert XslFo file (located on storage) to PDF format and return resulting file in response.
158
158
  [**post_append_document**](PdfApi.md#post_append_document) | **POST** /pdf/\{name}/appendDocument | Append document to existing one.
159
+ [**post_change_password_document_in_storage**](PdfApi.md#post_change_password_document_in_storage) | **POST** /pdf/\{name}/changepassword | Change document password in storage.
159
160
  [**post_create_field**](PdfApi.md#post_create_field) | **POST** /pdf/\{name}/fields | Create field.
161
+ [**post_decrypt_document_in_storage**](PdfApi.md#post_decrypt_document_in_storage) | **POST** /pdf/\{name}/decrypt | Decrypt document in storage.
162
+ [**post_document_image_footer**](PdfApi.md#post_document_image_footer) | **POST** /pdf/\{name}/footer/image | Add document image footer.
163
+ [**post_document_image_header**](PdfApi.md#post_document_image_header) | **POST** /pdf/\{name}/header/image | Add document image header.
164
+ [**post_document_page_number_stamps**](PdfApi.md#post_document_page_number_stamps) | **POST** /pdf/\{name}/stamps/pagenumber | Add document page number stamps.
165
+ [**post_document_text_footer**](PdfApi.md#post_document_text_footer) | **POST** /pdf/\{name}/footer/text | Add document text footer.
166
+ [**post_document_text_header**](PdfApi.md#post_document_text_header) | **POST** /pdf/\{name}/header/text | Add document text header.
160
167
  [**post_document_text_replace**](PdfApi.md#post_document_text_replace) | **POST** /pdf/\{name}/text/replace | Document's replace text method.
168
+ [**post_encrypt_document_in_storage**](PdfApi.md#post_encrypt_document_in_storage) | **POST** /pdf/\{name}/encrypt | Encrypt document in storage.
161
169
  [**post_flatten_document**](PdfApi.md#post_flatten_document) | **POST** /pdf/\{name}/flatten | Flatten the document.
162
170
  [**post_insert_image**](PdfApi.md#post_insert_image) | **POST** /pdf/\{name}/pages/\{pageNumber}/images | Insert image to document page.
163
171
  [**post_move_file**](PdfApi.md#post_move_file) | **POST** /storage/file | Move a specific file
@@ -184,6 +192,7 @@ Method | HTTP request | Description
184
192
  [**post_page_squiggly_annotations**](PdfApi.md#post_page_squiggly_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/squiggly | Add document page squiggly annotations.
185
193
  [**post_page_stamp_annotations**](PdfApi.md#post_page_stamp_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/stamp | Add document page stamp annotations.
186
194
  [**post_page_strike_out_annotations**](PdfApi.md#post_page_strike_out_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/strikeout | Add document page StrikeOut annotations.
195
+ [**post_page_tables**](PdfApi.md#post_page_tables) | **POST** /pdf/\{name}/pages/\{pageNumber}/tables | Add document page tables.
187
196
  [**post_page_text_annotations**](PdfApi.md#post_page_text_annotations) | **POST** /pdf/\{name}/pages/\{pageNumber}/annotations/text | Add document page text annotations.
188
197
  [**post_page_text_replace**](PdfApi.md#post_page_text_replace) | **POST** /pdf/\{name}/pages/\{pageNumber}/text/replace | Page's replace text method.
189
198
  [**post_page_text_stamps**](PdfApi.md#post_page_text_stamps) | **POST** /pdf/\{name}/pages/\{pageNumber}/stamps/text | Add document page text stamps.
@@ -196,10 +205,13 @@ Method | HTTP request | Description
196
205
  [**put_add_text**](PdfApi.md#put_add_text) | **PUT** /pdf/\{name}/pages/\{pageNumber}/text | Add text to PDF document page.
197
206
  [**put_annotations_flatten**](PdfApi.md#put_annotations_flatten) | **PUT** /pdf/\{name}/annotations/flatten | Flattens the annotations of the specified types
198
207
  [**put_caret_annotation**](PdfApi.md#put_caret_annotation) | **PUT** /pdf/\{name}/annotations/caret/\{annotationId} | Replace document caret annotation
208
+ [**put_change_password_document**](PdfApi.md#put_change_password_document) | **PUT** /pdf/changepassword | Change document password from content.
199
209
  [**put_circle_annotation**](PdfApi.md#put_circle_annotation) | **PUT** /pdf/\{name}/annotations/circle/\{annotationId} | Replace document circle annotation
200
210
  [**put_create**](PdfApi.md#put_create) | **PUT** /storage/file | Upload a specific file
201
211
  [**put_create_document**](PdfApi.md#put_create_document) | **PUT** /pdf/\{name} | Create empty document.
202
212
  [**put_create_folder**](PdfApi.md#put_create_folder) | **PUT** /storage/folder | Create the folder
213
+ [**put_decrypt_document**](PdfApi.md#put_decrypt_document) | **PUT** /pdf/decrypt | Decrypt document from content.
214
+ [**put_encrypt_document**](PdfApi.md#put_encrypt_document) | **PUT** /pdf/encrypt | Encrypt document from content.
203
215
  [**put_epub_in_storage_to_pdf**](PdfApi.md#put_epub_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/epub | Convert EPUB file (located on storage) to PDF format and upload resulting file to storage.
204
216
  [**put_fields_flatten**](PdfApi.md#put_fields_flatten) | **PUT** /pdf/\{name}/fields/flatten | Flatten form fields in document.
205
217
  [**put_file_attachment_annotation**](PdfApi.md#put_file_attachment_annotation) | **PUT** /pdf/\{name}/annotations/fileattachment/\{annotationId} | Replace document FileAttachment annotation
@@ -241,6 +253,7 @@ Method | HTTP request | Description
241
253
  [**put_pdf_in_request_to_svg**](PdfApi.md#put_pdf_in_request_to_svg) | **PUT** /pdf/convert/svg | Converts PDF document (in request content) to SVG format and uploads resulting file to storage.
242
254
  [**put_pdf_in_request_to_tiff**](PdfApi.md#put_pdf_in_request_to_tiff) | **PUT** /pdf/convert/tiff | Converts PDF document (in request content) to TIFF format and uploads resulting file to storage.
243
255
  [**put_pdf_in_request_to_xls**](PdfApi.md#put_pdf_in_request_to_xls) | **PUT** /pdf/convert/xls | Converts PDF document (in request content) to XLS format and uploads resulting file to storage.
256
+ [**put_pdf_in_request_to_xlsx**](PdfApi.md#put_pdf_in_request_to_xlsx) | **PUT** /pdf/convert/xlsx | Converts PDF document (in request content) to XLSX format and uploads resulting file to storage.
244
257
  [**put_pdf_in_request_to_xml**](PdfApi.md#put_pdf_in_request_to_xml) | **PUT** /pdf/convert/xml | Converts PDF document (in request content) to XML format and uploads resulting file to storage.
245
258
  [**put_pdf_in_request_to_xps**](PdfApi.md#put_pdf_in_request_to_xps) | **PUT** /pdf/convert/xps | Converts PDF document (in request content) to XPS format and uploads resulting file to storage.
246
259
  [**put_pdf_in_storage_to_doc**](PdfApi.md#put_pdf_in_storage_to_doc) | **PUT** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and uploads resulting file to storage
@@ -253,6 +266,7 @@ Method | HTTP request | Description
253
266
  [**put_pdf_in_storage_to_svg**](PdfApi.md#put_pdf_in_storage_to_svg) | **PUT** /pdf/\{name}/convert/svg | Converts PDF document (located on storage) to SVG format and uploads resulting file to storage
254
267
  [**put_pdf_in_storage_to_tiff**](PdfApi.md#put_pdf_in_storage_to_tiff) | **PUT** /pdf/\{name}/convert/tiff | Converts PDF document (located on storage) to TIFF format and uploads resulting file to storage
255
268
  [**put_pdf_in_storage_to_xls**](PdfApi.md#put_pdf_in_storage_to_xls) | **PUT** /pdf/\{name}/convert/xls | Converts PDF document (located on storage) to XLS format and uploads resulting file to storage
269
+ [**put_pdf_in_storage_to_xlsx**](PdfApi.md#put_pdf_in_storage_to_xlsx) | **PUT** /pdf/\{name}/convert/xlsx | Converts PDF document (located on storage) to XLSX format and uploads resulting file to storage
256
270
  [**put_pdf_in_storage_to_xml**](PdfApi.md#put_pdf_in_storage_to_xml) | **PUT** /pdf/\{name}/convert/xml | Converts PDF document (located on storage) to XML format and uploads resulting file to storage
257
271
  [**put_pdf_in_storage_to_xps**](PdfApi.md#put_pdf_in_storage_to_xps) | **PUT** /pdf/\{name}/convert/xps | Converts PDF document (located on storage) to XPS format and uploads resulting file to storage
258
272
  [**put_poly_line_annotation**](PdfApi.md#put_poly_line_annotation) | **PUT** /pdf/\{name}/annotations/polyline/\{annotationId} | Replace document polyline annotation
@@ -274,6 +288,7 @@ Method | HTTP request | Description
274
288
  [**put_stamp_annotation_data_extract**](PdfApi.md#put_stamp_annotation_data_extract) | **PUT** /pdf/\{name}/annotations/stamp/\{annotationId}/data/extract | Extract document stamp annotation content to storage
275
289
  [**put_strike_out_annotation**](PdfApi.md#put_strike_out_annotation) | **PUT** /pdf/\{name}/annotations/strikeout/\{annotationId} | Replace document StrikeOut annotation
276
290
  [**put_svg_in_storage_to_pdf**](PdfApi.md#put_svg_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/svg | Convert SVG file (located on storage) to PDF format and upload resulting file to storage.
291
+ [**put_table**](PdfApi.md#put_table) | **PUT** /pdf/\{name}/tables/\{tableId} | Replace document page table.
277
292
  [**put_text_annotation**](PdfApi.md#put_text_annotation) | **PUT** /pdf/\{name}/annotations/text/\{annotationId} | Replace document text annotation
278
293
  [**put_underline_annotation**](PdfApi.md#put_underline_annotation) | **PUT** /pdf/\{name}/annotations/underline/\{annotationId} | Replace document underline annotation
279
294
  [**put_update_field**](PdfApi.md#put_update_field) | **PUT** /pdf/\{name}/fields/\{fieldName} | Update field.
@@ -846,7 +861,7 @@ Name | Type | Description | Notes
846
861
  ### HTTP request headers
847
862
 
848
863
  - **Content-Type**: application/json
849
- - **Accept**: multipart/form-data
864
+ - **Accept**: application/json
850
865
 
851
866
 
852
867
 
@@ -923,31 +938,6 @@ Name | Type | Description | Notes
923
938
 
924
939
 
925
940
 
926
- # **get_document_bookmarks**
927
- > File get_document_bookmarks(name, opts)
928
-
929
- Read document bookmark/bookmarks (including children).
930
-
931
- ### Parameters
932
-
933
- Name | Type | Description | Notes
934
- ------------- | ------------- | ------------- | -------------
935
- **name** | **String**| The document name. |
936
- **bookmark_path** | **String**| The bookmark path. Leave it empty if you want to get all the bookmarks in the document. | [optional]
937
- **storage** | **String**| The document storage. | [optional]
938
- **folder** | **String**| The document folder. | [optional]
939
-
940
- ### Return type
941
-
942
- **File**
943
-
944
- ### HTTP request headers
945
-
946
- - **Content-Type**: application/json
947
- - **Accept**: multipart/form-data
948
-
949
-
950
-
951
941
  # **get_document_caret_annotations**
952
942
  > CaretAnnotationsResponse get_document_caret_annotations(name, opts)
953
943
 
@@ -3391,6 +3381,34 @@ Name | Type | Description | Notes
3391
3381
 
3392
3382
 
3393
3383
 
3384
+ # **get_pdf_in_storage_to_xlsx**
3385
+ > File get_pdf_in_storage_to_xlsx(name, opts)
3386
+
3387
+ Converts PDF document (located on storage) to XLSX format and returns resulting file in response content
3388
+
3389
+ ### Parameters
3390
+
3391
+ Name | Type | Description | Notes
3392
+ ------------- | ------------- | ------------- | -------------
3393
+ **name** | **String**| The document name. |
3394
+ **insert_blank_column_at_first** | **BOOLEAN**| Insert blank column at first | [optional]
3395
+ **minimize_the_number_of_worksheets** | **BOOLEAN**| Minimize the number of worksheets | [optional]
3396
+ **scale_factor** | **Float**| Scale factor | [optional]
3397
+ **uniform_worksheets** | **BOOLEAN**| Uniform worksheets | [optional]
3398
+ **folder** | **String**| The document folder. | [optional]
3399
+ **storage** | **String**| The document storage. | [optional]
3400
+
3401
+ ### Return type
3402
+
3403
+ **File**
3404
+
3405
+ ### HTTP request headers
3406
+
3407
+ - **Content-Type**: application/json
3408
+ - **Accept**: multipart/form-data
3409
+
3410
+
3411
+
3394
3412
  # **get_pdf_in_storage_to_xml**
3395
3413
  > File get_pdf_in_storage_to_xml(name, opts)
3396
3414
 
@@ -4125,6 +4143,33 @@ Name | Type | Description | Notes
4125
4143
 
4126
4144
 
4127
4145
 
4146
+ # **post_change_password_document_in_storage**
4147
+ > AsposeResponse post_change_password_document_in_storage(name, owner_password, new_user_password, new_owner_password, opts)
4148
+
4149
+ Change document password in storage.
4150
+
4151
+ ### Parameters
4152
+
4153
+ Name | Type | Description | Notes
4154
+ ------------- | ------------- | ------------- | -------------
4155
+ **name** | **String**| Document name. |
4156
+ **owner_password** | **String**| Owner password (encrypted Base64). |
4157
+ **new_user_password** | **String**| New user password (encrypted Base64). |
4158
+ **new_owner_password** | **String**| New owner password (encrypted Base64). |
4159
+ **storage** | **String**| The document storage. | [optional]
4160
+ **folder** | **String**| The document folder. | [optional]
4161
+
4162
+ ### Return type
4163
+
4164
+ [**AsposeResponse**](AsposeResponse.md)
4165
+
4166
+ ### HTTP request headers
4167
+
4168
+ - **Content-Type**: application/json
4169
+ - **Accept**: application/json
4170
+
4171
+
4172
+
4128
4173
  # **post_create_field**
4129
4174
  > AsposeResponse post_create_field(name, page, opts)
4130
4175
 
@@ -4151,6 +4196,166 @@ Name | Type | Description | Notes
4151
4196
 
4152
4197
 
4153
4198
 
4199
+ # **post_decrypt_document_in_storage**
4200
+ > AsposeResponse post_decrypt_document_in_storage(name, password, opts)
4201
+
4202
+ Decrypt document in storage.
4203
+
4204
+ ### Parameters
4205
+
4206
+ Name | Type | Description | Notes
4207
+ ------------- | ------------- | ------------- | -------------
4208
+ **name** | **String**| Document name. |
4209
+ **password** | **String**| The password (encrypted Base64). |
4210
+ **storage** | **String**| The document storage. | [optional]
4211
+ **folder** | **String**| The document folder. | [optional]
4212
+
4213
+ ### Return type
4214
+
4215
+ [**AsposeResponse**](AsposeResponse.md)
4216
+
4217
+ ### HTTP request headers
4218
+
4219
+ - **Content-Type**: application/json
4220
+ - **Accept**: application/json
4221
+
4222
+
4223
+
4224
+ # **post_document_image_footer**
4225
+ > AsposeResponse post_document_image_footer(name, image_footer, opts)
4226
+
4227
+ Add document image footer.
4228
+
4229
+ ### Parameters
4230
+
4231
+ Name | Type | Description | Notes
4232
+ ------------- | ------------- | ------------- | -------------
4233
+ **name** | **String**| The document name. |
4234
+ **image_footer** | [**ImageFooter**](ImageFooter.md)| The image footer. |
4235
+ **start_page_number** | **Integer**| The start page number. | [optional]
4236
+ **end_page_number** | **Integer**| The end page number. | [optional]
4237
+ **storage** | **String**| The document storage. | [optional]
4238
+ **folder** | **String**| The document folder. | [optional]
4239
+
4240
+ ### Return type
4241
+
4242
+ [**AsposeResponse**](AsposeResponse.md)
4243
+
4244
+ ### HTTP request headers
4245
+
4246
+ - **Content-Type**: application/json
4247
+ - **Accept**: application/json
4248
+
4249
+
4250
+
4251
+ # **post_document_image_header**
4252
+ > AsposeResponse post_document_image_header(name, image_header, opts)
4253
+
4254
+ Add document image header.
4255
+
4256
+ ### Parameters
4257
+
4258
+ Name | Type | Description | Notes
4259
+ ------------- | ------------- | ------------- | -------------
4260
+ **name** | **String**| The document name. |
4261
+ **image_header** | [**ImageHeader**](ImageHeader.md)| The image header. |
4262
+ **start_page_number** | **Integer**| The start page number. | [optional]
4263
+ **end_page_number** | **Integer**| The end page number. | [optional]
4264
+ **storage** | **String**| The document storage. | [optional]
4265
+ **folder** | **String**| The document folder. | [optional]
4266
+
4267
+ ### Return type
4268
+
4269
+ [**AsposeResponse**](AsposeResponse.md)
4270
+
4271
+ ### HTTP request headers
4272
+
4273
+ - **Content-Type**: application/json
4274
+ - **Accept**: application/json
4275
+
4276
+
4277
+
4278
+ # **post_document_page_number_stamps**
4279
+ > AsposeResponse post_document_page_number_stamps(name, stamp, opts)
4280
+
4281
+ Add document page number stamps.
4282
+
4283
+ ### Parameters
4284
+
4285
+ Name | Type | Description | Notes
4286
+ ------------- | ------------- | ------------- | -------------
4287
+ **name** | **String**| The document name. |
4288
+ **stamp** | [**PageNumberStamp**](PageNumberStamp.md)| The stamp. |
4289
+ **start_page_number** | **Integer**| The start page number. | [optional]
4290
+ **end_page_number** | **Integer**| The end page number. | [optional]
4291
+ **storage** | **String**| The document storage. | [optional]
4292
+ **folder** | **String**| The document folder. | [optional]
4293
+
4294
+ ### Return type
4295
+
4296
+ [**AsposeResponse**](AsposeResponse.md)
4297
+
4298
+ ### HTTP request headers
4299
+
4300
+ - **Content-Type**: application/json
4301
+ - **Accept**: application/json
4302
+
4303
+
4304
+
4305
+ # **post_document_text_footer**
4306
+ > AsposeResponse post_document_text_footer(name, text_footer, opts)
4307
+
4308
+ Add document text footer.
4309
+
4310
+ ### Parameters
4311
+
4312
+ Name | Type | Description | Notes
4313
+ ------------- | ------------- | ------------- | -------------
4314
+ **name** | **String**| The document name. |
4315
+ **text_footer** | [**TextFooter**](TextFooter.md)| The text footer. |
4316
+ **start_page_number** | **Integer**| The start page number. | [optional]
4317
+ **end_page_number** | **Integer**| The end page number. | [optional]
4318
+ **storage** | **String**| The document storage. | [optional]
4319
+ **folder** | **String**| The document folder. | [optional]
4320
+
4321
+ ### Return type
4322
+
4323
+ [**AsposeResponse**](AsposeResponse.md)
4324
+
4325
+ ### HTTP request headers
4326
+
4327
+ - **Content-Type**: application/json
4328
+ - **Accept**: application/json
4329
+
4330
+
4331
+
4332
+ # **post_document_text_header**
4333
+ > AsposeResponse post_document_text_header(name, text_header, opts)
4334
+
4335
+ Add document text header.
4336
+
4337
+ ### Parameters
4338
+
4339
+ Name | Type | Description | Notes
4340
+ ------------- | ------------- | ------------- | -------------
4341
+ **name** | **String**| The document name. |
4342
+ **text_header** | [**TextHeader**](TextHeader.md)| The text header. |
4343
+ **start_page_number** | **Integer**| The start page number. | [optional]
4344
+ **end_page_number** | **Integer**| The end page number. | [optional]
4345
+ **storage** | **String**| The document storage. | [optional]
4346
+ **folder** | **String**| The document folder. | [optional]
4347
+
4348
+ ### Return type
4349
+
4350
+ [**AsposeResponse**](AsposeResponse.md)
4351
+
4352
+ ### HTTP request headers
4353
+
4354
+ - **Content-Type**: application/json
4355
+ - **Accept**: application/json
4356
+
4357
+
4358
+
4154
4359
  # **post_document_text_replace**
4155
4360
  > TextReplaceResponse post_document_text_replace(name, text_replace, opts)
4156
4361
 
@@ -4176,6 +4381,35 @@ Name | Type | Description | Notes
4176
4381
 
4177
4382
 
4178
4383
 
4384
+ # **post_encrypt_document_in_storage**
4385
+ > AsposeResponse post_encrypt_document_in_storage(name, user_password, owner_password, crypto_algorithm, opts)
4386
+
4387
+ Encrypt document in storage.
4388
+
4389
+ ### Parameters
4390
+
4391
+ Name | Type | Description | Notes
4392
+ ------------- | ------------- | ------------- | -------------
4393
+ **name** | **String**| Document name. |
4394
+ **user_password** | **String**| User password (encrypted Base64). |
4395
+ **owner_password** | **String**| Owner password (encrypted Base64). |
4396
+ **crypto_algorithm** | **String**| Cryptographic algorithm, see for details. |
4397
+ **permissions_flags** | [**Array<PermissionsFlags>**](PermissionsFlags.md)| Array of document permissions, see for details. | [optional]
4398
+ **use_pdf20** | **BOOLEAN**| Support for revision 6 (Extension 8). | [optional]
4399
+ **storage** | **String**| The document storage. | [optional]
4400
+ **folder** | **String**| The document folder. | [optional]
4401
+
4402
+ ### Return type
4403
+
4404
+ [**AsposeResponse**](AsposeResponse.md)
4405
+
4406
+ ### HTTP request headers
4407
+
4408
+ - **Content-Type**: application/json
4409
+ - **Accept**: application/json
4410
+
4411
+
4412
+
4179
4413
  # **post_flatten_document**
4180
4414
  > AsposeResponse post_flatten_document(name, opts)
4181
4415
 
@@ -4856,6 +5090,32 @@ Name | Type | Description | Notes
4856
5090
 
4857
5091
 
4858
5092
 
5093
+ # **post_page_tables**
5094
+ > AsposeResponse post_page_tables(name, page_number, tables, opts)
5095
+
5096
+ Add document page tables.
5097
+
5098
+ ### Parameters
5099
+
5100
+ Name | Type | Description | Notes
5101
+ ------------- | ------------- | ------------- | -------------
5102
+ **name** | **String**| The document name. |
5103
+ **page_number** | **Integer**| The page number. |
5104
+ **tables** | [**Array<Table>**](Table.md)| The array of table. |
5105
+ **storage** | **String**| The document storage. | [optional]
5106
+ **folder** | **String**| The document folder. | [optional]
5107
+
5108
+ ### Return type
5109
+
5110
+ [**AsposeResponse**](AsposeResponse.md)
5111
+
5112
+ ### HTTP request headers
5113
+
5114
+ - **Content-Type**: application/json
5115
+ - **Accept**: application/json
5116
+
5117
+
5118
+
4859
5119
  # **post_page_text_annotations**
4860
5120
  > AsposeResponse post_page_text_annotations(name, page_number, annotations, opts)
4861
5121
 
@@ -5167,6 +5427,33 @@ Name | Type | Description | Notes
5167
5427
 
5168
5428
 
5169
5429
 
5430
+ # **put_change_password_document**
5431
+ > AsposeResponse put_change_password_document(out_path, owner_password, new_user_password, new_owner_password, opts)
5432
+
5433
+ Change document password from content.
5434
+
5435
+ ### Parameters
5436
+
5437
+ Name | Type | Description | Notes
5438
+ ------------- | ------------- | ------------- | -------------
5439
+ **out_path** | **String**| Full resulting filename (ex. /folder1/folder2/result.doc) |
5440
+ **owner_password** | **String**| Owner password (encrypted Base64). |
5441
+ **new_user_password** | **String**| New user password (encrypted Base64). |
5442
+ **new_owner_password** | **String**| New owner password (encrypted Base64). |
5443
+ **storage** | **String**| The document storage. | [optional]
5444
+ **file** | **File**| A file to be changed password. | [optional]
5445
+
5446
+ ### Return type
5447
+
5448
+ [**AsposeResponse**](AsposeResponse.md)
5449
+
5450
+ ### HTTP request headers
5451
+
5452
+ - **Content-Type**: multipart/form-data
5453
+ - **Accept**: application/json
5454
+
5455
+
5456
+
5170
5457
  # **put_circle_annotation**
5171
5458
  > CircleAnnotationResponse put_circle_annotation(name, annotation_id, annotation, opts)
5172
5459
 
@@ -5266,6 +5553,60 @@ Name | Type | Description | Notes
5266
5553
 
5267
5554
 
5268
5555
 
5556
+ # **put_decrypt_document**
5557
+ > AsposeResponse put_decrypt_document(out_path, password, opts)
5558
+
5559
+ Decrypt document from content.
5560
+
5561
+ ### Parameters
5562
+
5563
+ Name | Type | Description | Notes
5564
+ ------------- | ------------- | ------------- | -------------
5565
+ **out_path** | **String**| Full resulting filename (ex. /folder1/folder2/result.doc) |
5566
+ **password** | **String**| The password (encrypted Base64). |
5567
+ **storage** | **String**| The document storage. | [optional]
5568
+ **file** | **File**| A file to be derypted. | [optional]
5569
+
5570
+ ### Return type
5571
+
5572
+ [**AsposeResponse**](AsposeResponse.md)
5573
+
5574
+ ### HTTP request headers
5575
+
5576
+ - **Content-Type**: multipart/form-data
5577
+ - **Accept**: application/json
5578
+
5579
+
5580
+
5581
+ # **put_encrypt_document**
5582
+ > AsposeResponse put_encrypt_document(out_path, user_password, owner_password, crypto_algorithm, opts)
5583
+
5584
+ Encrypt document from content.
5585
+
5586
+ ### Parameters
5587
+
5588
+ Name | Type | Description | Notes
5589
+ ------------- | ------------- | ------------- | -------------
5590
+ **out_path** | **String**| Full resulting filename (ex. /folder1/folder2/result.doc) |
5591
+ **user_password** | **String**| User password (encrypted Base64). |
5592
+ **owner_password** | **String**| Owner password (encrypted Base64). |
5593
+ **crypto_algorithm** | **String**| Cryptographic algorithm, see for details. |
5594
+ **permissions_flags** | [**Array<PermissionsFlags>**](PermissionsFlags.md)| Array of document permissions, see for details. | [optional]
5595
+ **use_pdf20** | **BOOLEAN**| Support for revision 6 (Extension 8). | [optional]
5596
+ **storage** | **String**| The document storage. | [optional]
5597
+ **file** | **File**| A file to be encrypted. | [optional]
5598
+
5599
+ ### Return type
5600
+
5601
+ [**AsposeResponse**](AsposeResponse.md)
5602
+
5603
+ ### HTTP request headers
5604
+
5605
+ - **Content-Type**: multipart/form-data
5606
+ - **Accept**: application/json
5607
+
5608
+
5609
+
5269
5610
  # **put_epub_in_storage_to_pdf**
5270
5611
  > AsposeResponse put_epub_in_storage_to_pdf(name, src_path, opts)
5271
5612
 
@@ -6399,6 +6740,34 @@ Name | Type | Description | Notes
6399
6740
 
6400
6741
 
6401
6742
 
6743
+ # **put_pdf_in_request_to_xlsx**
6744
+ > AsposeResponse put_pdf_in_request_to_xlsx(out_path, opts)
6745
+
6746
+ Converts PDF document (in request content) to XLSX format and uploads resulting file to storage.
6747
+
6748
+ ### Parameters
6749
+
6750
+ Name | Type | Description | Notes
6751
+ ------------- | ------------- | ------------- | -------------
6752
+ **out_path** | **String**| Full resulting filename (ex. /folder1/folder2/result.xlsx) |
6753
+ **insert_blank_column_at_first** | **BOOLEAN**| Insert blank column at first | [optional]
6754
+ **minimize_the_number_of_worksheets** | **BOOLEAN**| Minimize the number of worksheets | [optional]
6755
+ **scale_factor** | **Float**| Scale factor | [optional]
6756
+ **uniform_worksheets** | **BOOLEAN**| Uniform worksheets | [optional]
6757
+ **storage** | **String**| The document storage. | [optional]
6758
+ **file** | **File**| A file to be converted. | [optional]
6759
+
6760
+ ### Return type
6761
+
6762
+ [**AsposeResponse**](AsposeResponse.md)
6763
+
6764
+ ### HTTP request headers
6765
+
6766
+ - **Content-Type**: multipart/form-data
6767
+ - **Accept**: application/json
6768
+
6769
+
6770
+
6402
6771
  # **put_pdf_in_request_to_xml**
6403
6772
  > AsposeResponse put_pdf_in_request_to_xml(out_path, opts)
6404
6773
 
@@ -6757,6 +7126,35 @@ Name | Type | Description | Notes
6757
7126
 
6758
7127
 
6759
7128
 
7129
+ # **put_pdf_in_storage_to_xlsx**
7130
+ > AsposeResponse put_pdf_in_storage_to_xlsx(name, out_path, opts)
7131
+
7132
+ Converts PDF document (located on storage) to XLSX format and uploads resulting file to storage
7133
+
7134
+ ### Parameters
7135
+
7136
+ Name | Type | Description | Notes
7137
+ ------------- | ------------- | ------------- | -------------
7138
+ **name** | **String**| The document name. |
7139
+ **out_path** | **String**| Full resulting filename (ex. /folder1/folder2/result.xlsx) |
7140
+ **insert_blank_column_at_first** | **BOOLEAN**| Insert blank column at first | [optional]
7141
+ **minimize_the_number_of_worksheets** | **BOOLEAN**| Minimize the number of worksheets | [optional]
7142
+ **scale_factor** | **Float**| Scale factor | [optional]
7143
+ **uniform_worksheets** | **BOOLEAN**| Uniform worksheets | [optional]
7144
+ **folder** | **String**| The document folder. | [optional]
7145
+ **storage** | **String**| The document storage. | [optional]
7146
+
7147
+ ### Return type
7148
+
7149
+ [**AsposeResponse**](AsposeResponse.md)
7150
+
7151
+ ### HTTP request headers
7152
+
7153
+ - **Content-Type**: application/json
7154
+ - **Accept**: application/json
7155
+
7156
+
7157
+
6760
7158
  # **put_pdf_in_storage_to_xml**
6761
7159
  > AsposeResponse put_pdf_in_storage_to_xml(name, out_path, opts)
6762
7160
 
@@ -7306,6 +7704,32 @@ Name | Type | Description | Notes
7306
7704
 
7307
7705
 
7308
7706
 
7707
+ # **put_table**
7708
+ > AsposeResponse put_table(name, table_id, table, opts)
7709
+
7710
+ Replace document page table.
7711
+
7712
+ ### Parameters
7713
+
7714
+ Name | Type | Description | Notes
7715
+ ------------- | ------------- | ------------- | -------------
7716
+ **name** | **String**| The document name. |
7717
+ **table_id** | **String**| The table ID. |
7718
+ **table** | [**Table**](Table.md)| The table. |
7719
+ **storage** | **String**| The document storage. | [optional]
7720
+ **folder** | **String**| The document folder. | [optional]
7721
+
7722
+ ### Return type
7723
+
7724
+ [**AsposeResponse**](AsposeResponse.md)
7725
+
7726
+ ### HTTP request headers
7727
+
7728
+ - **Content-Type**: application/json
7729
+ - **Accept**: application/json
7730
+
7731
+
7732
+
7309
7733
  # **put_text_annotation**
7310
7734
  > TextAnnotationResponse put_text_annotation(name, annotation_id, annotation, opts)
7311
7735