Skip to content

Commit 0f6040b

Browse files
committed
Release Aspose.Cells Cloud SDK 21.8
1 parent 09c2a83 commit 0f6040b

File tree

259 files changed

+838
-313
lines changed

Some content is hidden

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

259 files changed

+838
-313
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-java)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-java/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-java/21.7)
1+
![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-java)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-java/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-java/21.8)
22

33
# Java SDK for Spreadsheet Processing in the Cloud
44

@@ -24,11 +24,10 @@ This Cloud SDK enhances your Java-based cloud apps to [process & manipulate Micr
2424
- Fetch the required shape from worksheet.
2525
- Leverage the power of [Pivot Tables](https://docs.aspose.cloud/cells/working-with-pivot-tables/) & Ranges.
2626

27-
## Feature & Enhancements in Version 21.7
27+
## Feature & Enhancements in Version 21.8
2828

29-
- Fix search API.
30-
- Fix split API.
31-
- Fix update metadata API.
29+
- Improvement for getting list object Api.
30+
- Add import Api.
3231

3332
## Read & Write Spreadsheet Formats
3433

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>aspose-cells-cloud</artifactId>
66
<packaging>jar</packaging>
77
<name>aspose-cells-cloud</name>
8-
<version>21.7</version>
8+
<version>21.8</version>
99
<url>https://github.com/aspose-cells-cloud/aspose-cells-cloud-java</url>
1010
<scm>
1111
<connection>scm:git:git@github.com:aspose-cells-cloud/aspose-cells-cloud-java</connection>

src/main/java/com/aspose/cloud/cells/api/CellsApi.java

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -10333,14 +10333,15 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
1033310333
* @param name Document name. (required)
1033410334
* @param sheetName The worksheet name. (required)
1033510335
* @param listobjectindex list object index. (required)
10336+
* @param format export format. (optional)
1033610337
* @param folder Document&#39;s folder. (optional)
1033710338
* @param storageName storage name. (optional)
1033810339
* @param progressListener Progress listener
1033910340
* @param progressRequestListener Progress request listener
1034010341
* @return Call to execute
1034110342
* @throws ApiException If fail to serialize the request body object
1034210343
*/
10343-
public com.squareup.okhttp.Call cellsListObjectsGetWorksheetListObjectCall(String name, String sheetName, Integer listobjectindex, String folder, String storageName, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
10344+
public com.squareup.okhttp.Call cellsListObjectsGetWorksheetListObjectCall(String name, String sheetName, Integer listobjectindex, String format, String folder, String storageName, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
1034410345
Object localVarPostBody = null;
1034510346

1034610347
// create path and map variables
@@ -10350,6 +10351,8 @@ public com.squareup.okhttp.Call cellsListObjectsGetWorksheetListObjectCall(Strin
1035010351
.replaceAll("\\{" + "listobjectindex" + "\\}", apiClient.escapeString(listobjectindex.toString()));
1035110352

1035210353
List<Pair> localVarQueryParams = new ArrayList<Pair>();
10354+
if (format != null)
10355+
localVarQueryParams.addAll(apiClient.parameterToPairs("", "format", format));
1035310356
if (folder != null)
1035410357
localVarQueryParams.addAll(apiClient.parameterToPairs("", "folder", folder));
1035510358
if (storageName != null)
@@ -10388,7 +10391,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch
1038810391
}
1038910392

1039010393
@SuppressWarnings("rawtypes")
10391-
private com.squareup.okhttp.Call cellsListObjectsGetWorksheetListObjectValidateBeforeCall(String name, String sheetName, Integer listobjectindex, String folder, String storageName, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
10394+
private com.squareup.okhttp.Call cellsListObjectsGetWorksheetListObjectValidateBeforeCall(String name, String sheetName, Integer listobjectindex, String format, String folder, String storageName, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
1039210395

1039310396
// verify the required parameter 'name' is set
1039410397
if (name == null) {
@@ -10406,7 +10409,7 @@ private com.squareup.okhttp.Call cellsListObjectsGetWorksheetListObjectValidateB
1040610409
}
1040710410

1040810411

10409-
com.squareup.okhttp.Call call = cellsListObjectsGetWorksheetListObjectCall(name, sheetName, listobjectindex, folder, storageName, progressListener, progressRequestListener);
10412+
com.squareup.okhttp.Call call = cellsListObjectsGetWorksheetListObjectCall(name, sheetName, listobjectindex, format, folder, storageName, progressListener, progressRequestListener);
1041010413
return call;
1041110414

1041210415

@@ -10421,13 +10424,14 @@ private com.squareup.okhttp.Call cellsListObjectsGetWorksheetListObjectValidateB
1042110424
* @param name Document name. (required)
1042210425
* @param sheetName The worksheet name. (required)
1042310426
* @param listobjectindex list object index. (required)
10427+
* @param format export format. (optional)
1042410428
* @param folder Document&#39;s folder. (optional)
1042510429
* @param storageName storage name. (optional)
10426-
* @return ListObjectResponse
10430+
* @return File
1042710431
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
1042810432
*/
10429-
public ListObjectResponse cellsListObjectsGetWorksheetListObject(String name, String sheetName, Integer listobjectindex, String folder, String storageName) throws ApiException {
10430-
ApiResponse<ListObjectResponse> resp = cellsListObjectsGetWorksheetListObjectWithHttpInfo(name, sheetName, listobjectindex, folder, storageName);
10433+
public File cellsListObjectsGetWorksheetListObject(String name, String sheetName, Integer listobjectindex, String format, String folder, String storageName) throws ApiException {
10434+
ApiResponse<File> resp = cellsListObjectsGetWorksheetListObjectWithHttpInfo(name, sheetName, listobjectindex, format, folder, storageName);
1043110435
return resp.getData();
1043210436
}
1043310437

@@ -10437,14 +10441,15 @@ public ListObjectResponse cellsListObjectsGetWorksheetListObject(String name, St
1043710441
* @param name Document name. (required)
1043810442
* @param sheetName The worksheet name. (required)
1043910443
* @param listobjectindex list object index. (required)
10444+
* @param format export format. (optional)
1044010445
* @param folder Document&#39;s folder. (optional)
1044110446
* @param storageName storage name. (optional)
10442-
* @return ApiResponse&lt;ListObjectResponse&gt;
10447+
* @return ApiResponse&lt;File&gt;
1044310448
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
1044410449
*/
10445-
public ApiResponse<ListObjectResponse> cellsListObjectsGetWorksheetListObjectWithHttpInfo(String name, String sheetName, Integer listobjectindex, String folder, String storageName) throws ApiException {
10446-
com.squareup.okhttp.Call call = cellsListObjectsGetWorksheetListObjectValidateBeforeCall(name, sheetName, listobjectindex, folder, storageName, null, null);
10447-
Type localVarReturnType = new TypeToken<ListObjectResponse>(){}.getType();
10450+
public ApiResponse<File> cellsListObjectsGetWorksheetListObjectWithHttpInfo(String name, String sheetName, Integer listobjectindex, String format, String folder, String storageName) throws ApiException {
10451+
com.squareup.okhttp.Call call = cellsListObjectsGetWorksheetListObjectValidateBeforeCall(name, sheetName, listobjectindex, format, folder, storageName, null, null);
10452+
Type localVarReturnType = new TypeToken<File>(){}.getType();
1044810453
return apiClient.execute(call, localVarReturnType);
1044910454
}
1045010455

@@ -10454,13 +10459,14 @@ public ApiResponse<ListObjectResponse> cellsListObjectsGetWorksheetListObjectWit
1045410459
* @param name Document name. (required)
1045510460
* @param sheetName The worksheet name. (required)
1045610461
* @param listobjectindex list object index. (required)
10462+
* @param format export format. (optional)
1045710463
* @param folder Document&#39;s folder. (optional)
1045810464
* @param storageName storage name. (optional)
1045910465
* @param callback The callback to be executed when the API call finishes
1046010466
* @return The request call
1046110467
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
1046210468
*/
10463-
public com.squareup.okhttp.Call cellsListObjectsGetWorksheetListObjectAsync(String name, String sheetName, Integer listobjectindex, String folder, String storageName, final ApiCallback<ListObjectResponse> callback) throws ApiException {
10469+
public com.squareup.okhttp.Call cellsListObjectsGetWorksheetListObjectAsync(String name, String sheetName, Integer listobjectindex, String format, String folder, String storageName, final ApiCallback<File> callback) throws ApiException {
1046410470

1046510471
ProgressResponseBody.ProgressListener progressListener = null;
1046610472
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
@@ -10481,8 +10487,8 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
1048110487
};
1048210488
}
1048310489

10484-
com.squareup.okhttp.Call call = cellsListObjectsGetWorksheetListObjectValidateBeforeCall(name, sheetName, listobjectindex, folder, storageName, progressListener, progressRequestListener);
10485-
Type localVarReturnType = new TypeToken<ListObjectResponse>(){}.getType();
10490+
com.squareup.okhttp.Call call = cellsListObjectsGetWorksheetListObjectValidateBeforeCall(name, sheetName, listobjectindex, format, folder, storageName, progressListener, progressRequestListener);
10491+
Type localVarReturnType = new TypeToken<File>(){}.getType();
1048610492
apiClient.executeAsync(call, localVarReturnType, callback);
1048710493
return call;
1048810494
}
@@ -33362,7 +33368,7 @@ public com.squareup.okhttp.Call cellsWorkbookPutConvertWorkbookCall(File file, S
3336233368

3336333369
Map<String, Object> localVarFormParams = new HashMap<String, Object>();
3336433370
if (file != null)
33365-
localVarFormParams.put("File", file);
33371+
localVarFormParams.put("file", file);
3336633372

3336733373
final String[] localVarAccepts = {
3336833374
"application/json"
@@ -42240,7 +42246,7 @@ public com.squareup.okhttp.Call uploadFileCall(String path, File file, String st
4224042246

4224142247
Map<String, Object> localVarFormParams = new HashMap<String, Object>();
4224242248
if (file != null)
42243-
localVarFormParams.put("File", file);
42249+
localVarFormParams.put("file", file);
4224442250

4224542251
final String[] localVarAccepts = {
4224642252
"application/json"

0 commit comments

Comments
 (0)