Skip to content

Commit f564fc7

Browse files
committed
Release Aspose.Cells Cloud SDK 20.9
1 parent 6a40f72 commit f564fc7

29 files changed

+1280
-47
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,12 @@ Node.js Cloud SDK wraps Aspose.Cells REST API so you could seamlessly integrate
2020
- Fetch the required shape from worksheet.
2121
- Leverage the Power of Pivot Tables & ranges.
2222

23-
## Features & Enhancements in Version 20.8
23+
## Features & Enhancements in Version 20.9
2424

2525
- Aspose.Cells Cloud API calls are not working with explicit storage name but only default storage.
2626
- Get output file size without downloading during conversion.
2727
- Enhancement for CellsShapesPutWorksheetShape API.
2828

29-
30-
3129
## Read & Write Spreadsheet Formats
3230

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

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": "20.8.0",
3+
"version": "20.9.0",
44
"description": "Aspose.Cells Cloud SDK for Node.js",
55
"keywords": [
66
"Aspose",

src/api.ts

Lines changed: 404 additions & 6 deletions
Large diffs are not rendered by default.

src/internal/requestHelper.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,11 @@ async function invokeApiMethodInternal(requestOptions: request.Options, confgura
8585
if (!requestOptions.headers) {
8686
requestOptions.headers = {};
8787
}
88-
// requestOptions.proxy="http://localhost:44773";
88+
// requestOptions.proxy="http://localhost:8888";
8989
// requestOptions.rejectUnauthorized=false;
9090

9191
requestOptions.headers["x-aspose-client"] = "nodejs sdk";
92-
requestOptions.headers["x-aspose-client-version"] = "20.8.0";
92+
requestOptions.headers["x-aspose-client-version"] = "20.9.0";
9393
const auth = confguration.authentication;
9494
if (!notApplyAuthToRequest) {
9595
await auth.applyToRequest(requestOptions, confguration);

0 commit comments

Comments
 (0)