Skip to content

Commit e1f730c

Browse files
committed
Release Aspose.Cells Cloud SDK 20.8
1 parent c5201df commit e1f730c

File tree

8 files changed

+553
-542
lines changed

8 files changed

+553
-542
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ 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.6
23+
## Features & Enhancements in Version 20.8
2424

25-
- Support to add text water marker.
26-
- Enhancement for Cells object operating in Task API.
27-
- Enhancement for workbook convert images in get workbook AP
25+
- Aspose.Cells Cloud API calls are not working with explicit storage name but only default storage.
26+
- Get output file size without downloading during conversion.
27+
- Enhancement for CellsShapesPutWorksheetShape API.
2828

2929

3030

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "asposecellscloud",
3-
"version": "20.6.0",
3+
"version": "20.8.0",
44
"description": "Aspose.Cells Cloud SDK for Node.js",
55
"keywords": [
66
"Aspose",
@@ -19,8 +19,8 @@
1919
"main": "dist/api.js",
2020
"types": "dist/api.d.ts",
2121
"scripts": {
22-
"test": "mocha -r ts-node/register test/**/*.ts --timeout 25000 --reporter mocha-jenkins-reporter",
23-
"test-jenkins": "cross-env JUNIT_REPORT_PATH=reports/test_report.xml mocha -r ts-node/register test/**/*.ts --timeout 25000 --reporter mocha-jenkins-reporter",
22+
"test": "mocha -r ts-node/register test/**/*.ts --timeout 250000 --reporter mocha-jenkins-reporter",
23+
"test-jenkins": "cross-env JUNIT_REPORT_PATH=reports/test_report.xml mocha -r ts-node/register test/**/*.ts --timeout 250000 --reporter mocha-jenkins-reporter",
2424
"lint": "tslint src/{,**/}*.ts test/{,**/}*.ts -t verbose --project ./tsconfig.json",
2525
"cucumber": "cucumber-js ./bdd/features -r ./dist/bdd/steps",
2626
"gulp": "gulp"

src/api.ts

Lines changed: 235 additions & 269 deletions
Large diffs are not rendered by default.

src/internal/requestHelper.ts

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

9191
requestOptions.headers["x-aspose-client"] = "nodejs sdk";
92-
requestOptions.headers["x-aspose-client-version"] = "20.6.0";
93-
92+
requestOptions.headers["x-aspose-client-version"] = "20.8.0";
9493
const auth = confguration.authentication;
9594
if (!notApplyAuthToRequest) {
9695
await auth.applyToRequest(requestOptions, confguration);

0 commit comments

Comments
 (0)