Skip to content

Commit 6d79000

Browse files
committed
Release Aspose.Cells Cloud SDK 24.7.0
1 parent e448803 commit 6d79000

16 files changed

+1527
-1249
lines changed

Examples/Example_PostDataTransformation.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ var dataTransformationRequest = new model.DataTransformationRequest();
5050
dataTransformationRequest.appliedSteps = dataTransformationRequestAppliedSteps ;
5151

5252
var request = new model.PostDataTransformationRequest();
53+
request.dataTransformationRequest = dataTransformationRequest;
5354
return cellsApi.postDataTransformation(request).then((result) => {
5455
expect(result.response.statusCode).to.equal(200);
5556
});

Examples/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"dependencies": {
55
"@types/jest": "^26.0.24",
66
"@types/request": "^2.48.7",
7-
"asposecellscloud": "24.6",
7+
"asposecellscloud": "24.7",
88
"axios": "^1.5.1",
99
"JSON": "^1.0.0",
1010
"mocha": "^10.2.0",

README.md

Lines changed: 10 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) ![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/24.6)
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/24.7)
22

33
Node.js Cloud SDK wraps Aspose.Cells REST API so you could seamlessly integrate Microsoft Excel® document generation, manipulation, conversion & inspection features into your own Node.js applications.
44

@@ -20,12 +20,12 @@ We encourage you to dive into the Developer's Guide & API Reference for a compre
2020
- Import/Export: Facilitates importing data from various sources into spreadsheets and exporting spreadsheet data to other formats.
2121
- Security Management: Offers a range of security features like data encryption, access control, and permission management to safeguard the security and integrity of spreadsheet data.
2222

23-
## Feature & Enhancements in Version 24.6
23+
## Feature & Enhancements in Version 24.7
2424

2525
Full list of issues covering all changes in this release:
2626

27-
- Optimize the data conversion applied steps.
28-
- Optimize load data function of data transformation.
27+
- Add a new feature about adding text content.
28+
- Add get access token by client id and client secret.
2929

3030

3131
## Support file format
@@ -114,7 +114,12 @@ describe('cellsWorkbookPutConvertWorkbook', function() {
114114

115115
# Release history version
116116

117-
## Enhancements in Version 24.4.0
117+
## Enhancements in Version 24.6.0
118+
119+
- Optimize the data conversion applied steps.
120+
- Optimize load data function of data transformation.
121+
122+
## Enhancements in Version 24.5.0
118123

119124
- Add merge queries method for loading data of data transformation.
120125
- Optimize chart data model.

docs/api/get-workbook-default-style.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# **getWorkbookDefaultStyle API**
22

3-
Retrieve the description of the default style for the workbook.
3+
Retrieve the description of the default style for the workbook .
44

55
```bash
66

docs/api/post-access-token.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# **postAccessToken API**
2+
3+
Get Access Token Result
4+
5+
```bash
6+
7+
POST http://api.aspose.cloud/v3.0//cells/connect/token
8+
9+
```
10+
11+
## The request parameters of **postAccessToken** API are:
12+
13+
| Parameter Name | Type | Path/Query String/HTTPBody | Description |
14+
| :- | :- | :- |:- |
15+
16+
17+
The [OpenAPI Specification](https://reference.aspose.cloud/cells/#/CellsAuthorityController/PostAccessToken) defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser.

docs/api/post-add-text-content.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# **postAddTextContent API**
2+
3+
4+
5+
```bash
6+
7+
POST http://api.aspose.cloud/v3.0//cells/addtext
8+
9+
```
10+
11+
## The request parameters of **postAddTextContent** API are:
12+
13+
| Parameter Name | Type | Path/Query String/HTTPBody | Description |
14+
| :- | :- | :- |:- |
15+
|addTextOptions|Class|Body||
16+
17+
18+
The [OpenAPI Specification](https://reference.aspose.cloud/cells/#/TextProcessingController/PostAddTextContent) defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser.

docs/model/add-text-options.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# **addTextOptions**
2+
3+
4+
5+
## **Properties**
6+
7+
| Property Name | Property Type | Nullable | ReadOnly | DefaultValue | Description |
8+
| :- | :- | :- |:- | :- | :- |
9+
|Name|String|true|false | ||
10+
|DataSource|Class|true|false | ||
11+
|FileInfo|Class|true|false | ||
12+
|Text|String|true|false | ||
13+
|Worksheet|String|true|false | ||
14+
|Range|String|true|false | ||
15+
|SelectPoistion|String|true|false | ||
16+
|SelectText|String|true|false | ||
17+
|SkipEmptyCells|Boolean|true|false | ||
18+

docs/model/base-operate-options.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# **baseOperateOptions**
2+
3+
4+
5+
## **Properties**
6+
7+
| Property Name | Property Type | Nullable | ReadOnly | DefaultValue | Description |
8+
| :- | :- | :- |:- | :- | :- |
9+
|Name|String|true|false | ||
10+
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# **searchScopeOptionsType**
2+
3+
4+
5+
## **Properties**
6+
7+
| Property Name | Property Type | Nullable | ReadOnly | DefaultValue | Description |
8+
| :- | :- | :- |:- | :- | :- |
9+
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# **selectPositionOptionsType**
2+
3+
4+
5+
## **Properties**
6+
7+
| Property Name | Property Type | Nullable | ReadOnly | DefaultValue | Description |
8+
| :- | :- | :- |:- | :- | :- |
9+

0 commit comments

Comments
 (0)