Skip to content

Commit 7803db0

Browse files
authored
Merge pull request #43 from aspose-pdf-cloud/develop
update to 21.11
2 parents 5d65f10 + fc79380 commit 7803db0

File tree

352 files changed

+429
-1152
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

352 files changed

+429
-1152
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2020 Aspose.Pdf for Cloud
3+
Copyright (c) 2021 Aspose.PDF Cloud
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 44 additions & 66 deletions
Large diffs are not rendered by default.

sample/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2018 Aspose.Pdf for Cloud
2+
* Copyright (c) 2021 Aspose.PDF Cloud
33
* Permission is hereby granted, free of charge, to any person obtaining a copy
44
* of this software and associated documentation files (the "Software"), to deal
55
* in the Software without restriction, including without limitation the rights

sdk/.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2020 Aspose.PDF Cloud
2+
# Copyright (c) 2021 Aspose.PDF Cloud
33
# Permission is hereby granted, free of charge, to any person obtaining a copy
44
# of this software and associated documentation files (the "Software"), to deal
55
# in the Software without restriction, including without limitation the rights

sdk/aspose-cloud-pdf-android.iml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<module external.linked.project.id="aspose-cloud-pdf-android" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="com.aspose" external.system.module.version="20.12.0" type="JAVA_MODULE" version="4">
2+
<module external.linked.project.id="aspose-pdf-cloud-android" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="com.aspose" external.system.module.version="20.12.0" type="JAVA_MODULE" version="4">
33
<component name="FacetManager">
44
<facet type="android-gradle" name="Android-Gradle">
55
<configuration>

sdk/build.gradle

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2020 Aspose.PDF Cloud
2+
* Copyright (c) 2021 Aspose.PDF Cloud
33
* Permission is hereby granted, free of charge, to any person obtaining a copy
44
* of this software and associated documentation files (the "Software"), to deal
55
* in the Software without restriction, including without limitation the rights
@@ -20,7 +20,7 @@ apply plugin: 'idea'
2020
apply plugin: 'eclipse'
2121

2222
group = 'com.aspose'
23-
version = '21.1.0'
23+
version = '21.11.0'
2424

2525
buildscript {
2626
repositories {
@@ -58,6 +58,12 @@ android {
5858
}
5959
}
6060

61+
android {
62+
lintOptions {
63+
disable 'LintError'
64+
}
65+
}
66+
6167
afterEvaluate {
6268
android.libraryVariants.all { variant ->
6369
def task = project.tasks.create "jar${variant.name.capitalize()}", Jar
@@ -79,8 +85,6 @@ artifacts {
7985
archives sourcesJar
8086
}
8187

82-
83-
8488
dependencies {
8589
compile 'io.swagger:swagger-annotations:1.5.15'
8690
compile 'com.squareup.okhttp:okhttp:2.7.5'
@@ -96,9 +100,9 @@ dependencies {
96100
publish {
97101
groupId = 'com.aspose'
98102
artifactId = 'aspose-cloud-pdf-android'
99-
publishVersion = '21.1.0'
103+
publishVersion = '21.11.0'
100104
desc = 'Aspose.PDF Cloud is a REST API for creating and editing PDF files. It can also be used to convert PDF files to different formats like DOC, HTML, XPS, TIFF and many more. Aspose.PDF Cloud gives you control: create PDFs from scratch or from HTML, XML, template, database, XPS or an image. Render PDFs to image formats such as JPEG, PNG, GIF, BMP, TIFF and many others. Aspose.PDF Cloud helps you manipulate elements of a PDF file like text, annotations, watermarks, signatures, bookmarks, stamps and so on. Its REST API also allows you to manage PDF pages by using features like merging, splitting, and inserting. Add images to a PDF file or convert PDF pages to images.'
101105
licences = ['MIT']
102106
website = 'https://products.aspose.cloud/pdf/cloud'
103107
repository = 'https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-android.git'
104-
}
108+
}

sdk/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
lazy val root = (project in file(".")).
22
settings(
33
organization := "com.aspose",
4-
name := "aspose-cloud-pdf-android",
4+
name := "aspose-pdf-cloud-android",
55
version := "18.4.0",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),

sdk/docs/PdfApi.md

Lines changed: 6 additions & 98 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ Method | HTTP request | Description
2929
[**deleteStamp**](PdfApi.md#deleteStamp) | **DELETE** /pdf/\{name}/stamps/\{stampId} | Delete document stamp by ID
3030
[**deleteTable**](PdfApi.md#deleteTable) | **DELETE** /pdf/\{name}/tables/\{tableId} | Delete document table by ID
3131
[**downloadFile**](PdfApi.md#downloadFile) | **GET** /pdf/storage/file/\{path} | Download file
32-
[**getApiInfo**](PdfApi.md#getApiInfo) | **GET** /pdf/info |
3332
[**getBookmark**](PdfApi.md#getBookmark) | **GET** /pdf/\{name}/bookmarks/bookmark/\{bookmarkPath} | Read document bookmark.
3433
[**getBookmarks**](PdfApi.md#getBookmarks) | **GET** /pdf/\{name}/bookmarks/list/\{bookmarkPath} | Read document bookmarks node list.
3534
[**getCaretAnnotation**](PdfApi.md#getCaretAnnotation) | **GET** /pdf/\{name}/annotations/caret/\{annotationId} | Read document page caret annotation by ID.
@@ -150,8 +149,7 @@ Method | HTTP request | Description
150149
[**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
151150
[**getPdfInStorageToEpub**](PdfApi.md#getPdfInStorageToEpub) | **GET** /pdf/\{name}/convert/epub | Converts PDF document (located on storage) to EPUB format and returns resulting file in response content
152151
[**getPdfInStorageToHtml**](PdfApi.md#getPdfInStorageToHtml) | **GET** /pdf/\{name}/convert/html | Converts PDF document (located on storage) to Html format and returns resulting file in response content
153-
[**getPdfInStorageToLaTeX**](PdfApi.md#getPdfInStorageToLaTeX) | **GET** /pdf/\{name}/convert/latex | Converts PDF document (located on storage) to TeX format and returns resulting file in response content
154-
[**getPdfInStorageToMobiXml**](PdfApi.md#getPdfInStorageToMobiXml) | **GET** /pdf/\{name}/convert/mobixml | Converts PDF document (located on storage) to MOBIXML format and returns resulting file in response content
152+
[**getPdfInStorageToMobiXml**](PdfApi.md#getPdfInStorageToMobiXml) | **GET** /pdf/\{name}/convert/mobixml | Converts PDF document (located on storage) to MOBIXML format and returns resulting ZIP archive file in response content.
155153
[**getPdfInStorageToPdfA**](PdfApi.md#getPdfInStorageToPdfA) | **GET** /pdf/\{name}/convert/pdfa | Converts PDF document (located on storage) to PdfA format and returns resulting file in response content
156154
[**getPdfInStorageToPptx**](PdfApi.md#getPdfInStorageToPptx) | **GET** /pdf/\{name}/convert/pptx | Converts PDF document (located on storage) to PPTX format and returns resulting file in response content
157155
[**getPdfInStorageToSvg**](PdfApi.md#getPdfInStorageToSvg) | **GET** /pdf/\{name}/convert/svg | Converts PDF document (located on storage) to SVG format and returns resulting file in response content
@@ -306,8 +304,7 @@ Method | HTTP request | Description
306304
[**putPdfInRequestToDoc**](PdfApi.md#putPdfInRequestToDoc) | **PUT** /pdf/convert/doc | Converts PDF document (in request content) to DOC format and uploads resulting file to storage.
307305
[**putPdfInRequestToEpub**](PdfApi.md#putPdfInRequestToEpub) | **PUT** /pdf/convert/epub | Converts PDF document (in request content) to EPUB format and uploads resulting file to storage.
308306
[**putPdfInRequestToHtml**](PdfApi.md#putPdfInRequestToHtml) | **PUT** /pdf/convert/html | Converts PDF document (in request content) to Html format and uploads resulting file to storage.
309-
[**putPdfInRequestToLaTeX**](PdfApi.md#putPdfInRequestToLaTeX) | **PUT** /pdf/convert/latex | Converts PDF document (in request content) to TeX format and uploads resulting file to storage.
310-
[**putPdfInRequestToMobiXml**](PdfApi.md#putPdfInRequestToMobiXml) | **PUT** /pdf/convert/mobixml | Converts PDF document (in request content) to MOBIXML format and uploads resulting file to storage.
307+
[**putPdfInRequestToMobiXml**](PdfApi.md#putPdfInRequestToMobiXml) | **PUT** /pdf/convert/mobixml | Converts PDF document (in request content) to MOBIXML format and uploads resulting ZIP archive file to storage.
311308
[**putPdfInRequestToPdfA**](PdfApi.md#putPdfInRequestToPdfA) | **PUT** /pdf/convert/pdfa | Converts PDF document (in request content) to PdfA format and uploads resulting file to storage.
312309
[**putPdfInRequestToPptx**](PdfApi.md#putPdfInRequestToPptx) | **PUT** /pdf/convert/pptx | Converts PDF document (in request content) to PPTX format and uploads resulting file to storage.
313310
[**putPdfInRequestToSvg**](PdfApi.md#putPdfInRequestToSvg) | **PUT** /pdf/convert/svg | Converts PDF document (in request content) to SVG format and uploads resulting file to storage.
@@ -320,8 +317,7 @@ Method | HTTP request | Description
320317
[**putPdfInStorageToDoc**](PdfApi.md#putPdfInStorageToDoc) | **PUT** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and uploads resulting file to storage
321318
[**putPdfInStorageToEpub**](PdfApi.md#putPdfInStorageToEpub) | **PUT** /pdf/\{name}/convert/epub | Converts PDF document (located on storage) to EPUB format and uploads resulting file to storage
322319
[**putPdfInStorageToHtml**](PdfApi.md#putPdfInStorageToHtml) | **PUT** /pdf/\{name}/convert/html | Converts PDF document (located on storage) to Html format and uploads resulting file to storage
323-
[**putPdfInStorageToLaTeX**](PdfApi.md#putPdfInStorageToLaTeX) | **PUT** /pdf/\{name}/convert/latex | Converts PDF document (located on storage) to TeX format and uploads resulting file to storage
324-
[**putPdfInStorageToMobiXml**](PdfApi.md#putPdfInStorageToMobiXml) | **PUT** /pdf/\{name}/convert/mobixml | Converts PDF document (located on storage) to MOBIXML format and uploads resulting file to storage
320+
[**putPdfInStorageToMobiXml**](PdfApi.md#putPdfInStorageToMobiXml) | **PUT** /pdf/\{name}/convert/mobixml | Converts PDF document (located on storage) to MOBIXML format and uploads resulting ZIP archive file to storage
325321
[**putPdfInStorageToPdfA**](PdfApi.md#putPdfInStorageToPdfA) | **PUT** /pdf/\{name}/convert/pdfa | Converts PDF document (located on storage) to PdfA format and uploads resulting file to storage
326322
[**putPdfInStorageToPptx**](PdfApi.md#putPdfInStorageToPptx) | **PUT** /pdf/\{name}/convert/pptx | Converts PDF document (located on storage) to PPTX format and uploads resulting file to storage
327323
[**putPdfInStorageToSvg**](PdfApi.md#putPdfInStorageToSvg) | **PUT** /pdf/\{name}/convert/svg | Converts PDF document (located on storage) to SVG format and uploads resulting file to storage
@@ -959,24 +955,6 @@ Name | Type | Description | Notes
959955
- **Content-Type**: application/json
960956
- **Accept**: multipart/form-data
961957

962-
<a name="getApiInfo"></a>
963-
# **getApiInfo**
964-
> ApiInfo getApiInfo()
965-
966-
967-
968-
### Parameters
969-
This endpoint does not need any parameter.
970-
971-
### Return type
972-
973-
[**ApiInfo**](ApiInfo.md)
974-
975-
### HTTP request headers
976-
977-
- **Content-Type**: application/json
978-
- **Accept**: application/json
979-
980958
<a name="getBookmark"></a>
981959
# **getBookmark**
982960
> BookmarkResponse getBookmark(name, bookmarkPath, folder, storage)
@@ -3864,29 +3842,6 @@ Name | Type | Description | Notes
38643842

38653843
**File**
38663844

3867-
### HTTP request headers
3868-
3869-
- **Content-Type**: application/json
3870-
- **Accept**: multipart/form-data
3871-
3872-
<a name="getPdfInStorageToLaTeX"></a>
3873-
# **getPdfInStorageToLaTeX**
3874-
> File getPdfInStorageToLaTeX(name, folder, storage)
3875-
3876-
Converts PDF document (located on storage) to TeX format and returns resulting file in response content
3877-
3878-
### Parameters
3879-
3880-
Name | Type | Description | Notes
3881-
------------- | ------------- | ------------- | -------------
3882-
**name** | **String**| The document name. |
3883-
**folder** | **String**| The document folder. | [optional]
3884-
**storage** | **String**| The document storage. | [optional]
3885-
3886-
### Return type
3887-
3888-
**File**
3889-
38903845
### HTTP request headers
38913846

38923847
- **Content-Type**: application/json
@@ -3896,7 +3851,7 @@ Name | Type | Description | Notes
38963851
# **getPdfInStorageToMobiXml**
38973852
> File getPdfInStorageToMobiXml(name, folder, storage)
38983853
3899-
Converts PDF document (located on storage) to MOBIXML format and returns resulting file in response content
3854+
Converts PDF document (located on storage) to MOBIXML format and returns resulting ZIP archive file in response content.
39003855

39013856
### Parameters
39023857

@@ -7799,29 +7754,6 @@ Name | Type | Description | Notes
77997754

78007755
[**AsposeResponse**](AsposeResponse.md)
78017756

7802-
### HTTP request headers
7803-
7804-
- **Content-Type**: application/octet-stream
7805-
- **Accept**: application/json
7806-
7807-
<a name="putPdfInRequestToLaTeX"></a>
7808-
# **putPdfInRequestToLaTeX**
7809-
> AsposeResponse putPdfInRequestToLaTeX(outPath, storage, file)
7810-
7811-
Converts PDF document (in request content) to TeX format and uploads resulting file to storage.
7812-
7813-
### Parameters
7814-
7815-
Name | Type | Description | Notes
7816-
------------- | ------------- | ------------- | -------------
7817-
**outPath** | **String**| Full resulting filename (ex. /folder1/folder2/result.tex) |
7818-
**storage** | **String**| The document storage. | [optional]
7819-
**file** | **File**| A file to be converted. | [optional]
7820-
7821-
### Return type
7822-
7823-
[**AsposeResponse**](AsposeResponse.md)
7824-
78257757
### HTTP request headers
78267758

78277759
- **Content-Type**: application/octet-stream
@@ -7831,7 +7763,7 @@ Name | Type | Description | Notes
78317763
# **putPdfInRequestToMobiXml**
78327764
> AsposeResponse putPdfInRequestToMobiXml(outPath, storage, file)
78337765
7834-
Converts PDF document (in request content) to MOBIXML format and uploads resulting file to storage.
7766+
Converts PDF document (in request content) to MOBIXML format and uploads resulting ZIP archive file to storage.
78357767

78367768
### Parameters
78377769

@@ -8189,30 +8121,6 @@ Name | Type | Description | Notes
81898121

81908122
[**AsposeResponse**](AsposeResponse.md)
81918123

8192-
### HTTP request headers
8193-
8194-
- **Content-Type**: application/json
8195-
- **Accept**: application/json
8196-
8197-
<a name="putPdfInStorageToLaTeX"></a>
8198-
# **putPdfInStorageToLaTeX**
8199-
> AsposeResponse putPdfInStorageToLaTeX(name, outPath, folder, storage)
8200-
8201-
Converts PDF document (located on storage) to TeX format and uploads resulting file to storage
8202-
8203-
### Parameters
8204-
8205-
Name | Type | Description | Notes
8206-
------------- | ------------- | ------------- | -------------
8207-
**name** | **String**| The document name. |
8208-
**outPath** | **String**| Full resulting filename (ex. /folder1/folder2/result.tex) |
8209-
**folder** | **String**| The document folder. | [optional]
8210-
**storage** | **String**| The document storage. | [optional]
8211-
8212-
### Return type
8213-
8214-
[**AsposeResponse**](AsposeResponse.md)
8215-
82168124
### HTTP request headers
82178125

82188126
- **Content-Type**: application/json
@@ -8222,7 +8130,7 @@ Name | Type | Description | Notes
82228130
# **putPdfInStorageToMobiXml**
82238131
> AsposeResponse putPdfInStorageToMobiXml(name, outPath, folder, storage)
82248132
8225-
Converts PDF document (located on storage) to MOBIXML format and uploads resulting file to storage
8133+
Converts PDF document (located on storage) to MOBIXML format and uploads resulting ZIP archive file to storage
82268134

82278135
### Parameters
82288136

sdk/docs/TextReplace.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Single text replacement setting.
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**oldValue** | **String** | Original text. |
9-
**newValue** | **String** | New text. |
9+
**newValue** | **String** | New text. | [optional]
1010
**regex** | **Boolean** | Gets or sets a value indicating whether search text is regular expression. |
1111
**textState** | [**TextState**](TextState.md) | Text properties of a new text. | [optional]
1212
**rect** | [**Rectangle**](Rectangle.md) | Rectangle area where searched original text. | [optional]

sdk/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2020 Aspose.PDF Cloud
2+
# Copyright (c) 2021 Aspose.PDF Cloud
33
# Permission is hereby granted, free of charge, to any person obtaining a copy
44
# of this software and associated documentation files (the "Software"), to deal
55
# in the Software without restriction, including without limitation the rights

0 commit comments

Comments
 (0)