Skip to content

Commit 99d607d

Browse files
committed
Release Aspose.Cells Cloud SDK 21.6
1 parent a972a43 commit 99d607d

21 files changed

+1563
-23
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ typings
44
dist
55
.swagger-codegen
66
.swagger-codegen-ignore
7-
package-lock.json
7+
package-lock.json
8+
reports

README.md

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

33
# Process Excel® Files in the Cloud with Node.js
44

@@ -20,13 +20,17 @@
2020
- Fetch the required shape from worksheet.
2121
- Leverage the power of named ranges.
2222

23-
## Feature & Enhancements in Version 21.5
24-
25-
- Support autofit columns for workbook and worksheet.
26-
- Improve add and post row/column APIs.
27-
- Improve Task APIs.
28-
29-
23+
## Feature & Enhancements in Version 21.6
24+
25+
- Improvement document properties.
26+
- Update the return value of put/post/delete.
27+
- Improvement export API.
28+
- Improve split API.
29+
- Improve merge API.
30+
- Improve unlock API.
31+
- Improve protected API.
32+
- Improve watermark API.
33+
3034
## Read & Write Spreadsheet Formats
3135

3236
**Microsoft Excel:** XLS, XLSX, XLSB, XLSM, XLT, XLTX, XLTM

TestData/assemblytest.xlsx

8.12 KB
Binary file not shown.

TestData/datasource.xlsx

6.94 KB
Binary file not shown.

TestData/needUnlock.xlsx

237 KB
Binary file not shown.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "asposecellscloud",
3-
"version": "21.5.0",
3+
"version": "21.6.0",
44
"description": "Aspose.Cells Cloud SDK for Node.js",
55
"keywords": [
66
"Aspose",

src/api.ts

Lines changed: 550 additions & 0 deletions
Large diffs are not rendered by default.

src/internal/requestHelper.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ async function invokeApiMethodInternal(requestOptions: request.Options, confgura
8989
if (!requestOptions.headers) {
9090
requestOptions.headers = {};
9191
}
92-
//requestOptions.proxy="http://localhost:8888";
93-
//requestOptions.rejectUnauthorized=false;
92+
// requestOptions.proxy="http://localhost:8888";
93+
// requestOptions.rejectUnauthorized=false;
9494

9595
requestOptions.headers["x-aspose-client"] = "nodejs sdk";
96-
requestOptions.headers["x-aspose-client-version"] = "20.10.0";
96+
requestOptions.headers["x-aspose-client-version"] = "21.6.0";
9797
const auth = confguration.authentication;
9898
if (!notApplyAuthToRequest) {
9999
await auth.applyToRequest(requestOptions, confguration);

0 commit comments

Comments
 (0)