Skip to content

Commit 0a76f4f

Browse files
committed
Release Aspose.Cells Cloud SDK 24.10.0
1 parent a2e901c commit 0a76f4f

14 files changed

+298
-34
lines changed

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.9",
7+
"asposecellscloud": "24.10",
88
"axios": "^1.5.1",
99
"JSON": "^1.0.0",
1010
"mocha": "^10.2.0",

README.md

Lines changed: 8 additions & 4 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.9.0)
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.10.0)
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,11 @@ 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.9
23+
## Feature & Enhancements in Version 24.10
2424

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

27-
- Add word case function for TextProcessingController.
28-
- Support to export Worksheet to HTML with cell address or id.
27+
- Add the new feature about removing characters on TextProcessingController.
2928

3029

3130
## Support file format
@@ -114,6 +113,11 @@ describe('cellsWorkbookPutConvertWorkbook', function() {
114113

115114
# Release history version
116115

116+
## Enhancements in Version 24.9.0
117+
118+
- Add word case function for TextProcessingController.
119+
- Support to export Worksheet to HTML with cell address or id.
120+
117121
## Enhancements in Version 24.8.0
118122

119123
- Add the text trim feature on Cells Cloud Services.

docs/api/post-remove-characters.md

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

docs/model/character-sets-type.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# **characterSetsType**
2+
3+
4+
5+
## **Properties**
6+
7+
| Property Name | Property Type | Nullable | ReadOnly | DefaultValue | Description |
8+
| :- | :- | :- |:- | :- | :- |
9+
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# **removeCharactersByCharacter**
2+
3+
4+
5+
## **Properties**
6+
7+
| Property Name | Property Type | Nullable | ReadOnly | DefaultValue | Description |
8+
| :- | :- | :- |:- | :- | :- |
9+
|RemoveTextMethod|String|true|false | ||
10+
|RemoveCharacters|Container|true|false | ||
11+
|RemoveCharacterSetsType|String|true|false | ||
12+
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# **removeCharactersByPosition**
2+
3+
4+
5+
## **Properties**
6+
7+
| Property Name | Property Type | Nullable | ReadOnly | DefaultValue | Description |
8+
| :- | :- | :- |:- | :- | :- |
9+
|TheFirstNCharacters|Integer|true|false | ||
10+
|TheLastNCharacters|Integer|true|false | ||
11+
|AllCharactersBeforeText|String|true|false | ||
12+
|AllCharactersAfterText|String|true|false | ||
13+
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# **removeCharactersOptions**
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+
|Worksheet|String|true|false | ||
13+
|Range|String|true|false | ||
14+
|RemoveCharactersByCharacter|Class|true|false | ||
15+
|RemoveCharactersByPosition|Class|true|false | ||
16+
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# **removeTextMethodType**
2+
3+
4+
5+
## **Properties**
6+
7+
| Property Name | Property Type | Nullable | ReadOnly | DefaultValue | Description |
8+
| :- | :- | :- |:- | :- | :- |
9+

integration_tests_result.xml

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,10 @@
11
<testsuites name="Mocha Tests">
2-
<testsuite name="DataProcessing test post_data_transformation test" tests="1" errors="0" failures="1" skipped="0" timestamp="2024-09-19T02:10:15" time="2.28">
3-
<testcase classname="DataProcessing test post_data_transformation test" name="should call PostDataTransformation successfully" time="2.271">
2+
<testsuite name="DataProcessingController test post_data_transformation test" tests="1" errors="0" failures="1" skipped="0" timestamp="2024-10-23T14:53:19" time="5.076">
3+
<testcase classname="DataProcessingController test post_data_transformation test" name="should call PostDataTransformation successfully" time="5.069">
44
<failure message="the object {
5-
&quot;code&quot;: 500
5+
&quot;code&quot;: 404
66
&quot;message&quot;: [undefined]
77
} was thrown, throw an Error :)"></failure>
88
</testcase>
99
</testsuite>
10-
<testsuite name="TextProcessingController test post_add_text_content test" tests="1" errors="0" failures="0" skipped="0" timestamp="2024-09-19T02:10:17" time="2.087">
11-
<testcase classname="TextProcessingController test post_add_text_content test" name="should call PostAddTextContent successfully" time="2.085">
12-
</testcase>
13-
</testsuite>
14-
<testsuite name="TextProcessingController test post_trim_content test" tests="1" errors="0" failures="0" skipped="0" timestamp="2024-09-19T02:10:19" time="0.684">
15-
<testcase classname="TextProcessingController test post_trim_content test" name="should call PostTrimContent successfully" time="0.682">
16-
</testcase>
17-
</testsuite>
18-
<testsuite name="TextProcessingController test post_update_word_case test" tests="1" errors="0" failures="0" skipped="0" timestamp="2024-09-19T02:10:20" time="0.602">
19-
<testcase classname="TextProcessingController test post_update_word_case test" name="should call PostUpdateWordCase successfully" time="0.598">
20-
</testcase>
21-
</testsuite>
2210
</testsuites>

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": "24.9.0",
3+
"version": "24.10.0",
44
"description": "Aspose.Cells Cloud for Node.js to create, repair, merge, parse and convert excel files. Convert excel to PDF, JSON, XML, TSV, HTML and so on.",
55
"keywords": [
66
"excel",

0 commit comments

Comments
 (0)