Skip to content

Commit f87d848

Browse files
committed
Release Aspose.Cells Cloud SDK 22.2
1 parent 769adbc commit f87d848

File tree

4 files changed

+18
-19
lines changed

4 files changed

+18
-19
lines changed

README.md

Lines changed: 8 additions & 9 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/22.1)
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/22.2)
22

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

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

23-
## Feature & Enhancements in Version 22.1
23+
## Feature & Enhancements in Version 22.2
24+
25+
26+
- Update return value for the DeleteUnprotectWorksheet API on Aspose.Cells Cloud.
27+
- Update return value for the PutProtectWorksheet API on Aspose.Cells Cloud.
28+
- Update return value for the PostSetCellHtmlString API on Aspose.Cells Cloud.
29+
- Update return value for the PostUpdateWorksheetProperty API on Aspose.Cells Cloud.
2430

25-
- SaveAs API add the parameter of target storage name.
26-
- Workbok merged API add the parameter of merged file storage name.
27-
- Workbok split API add the parameter of target storage name
28-
- Workbok smart marker API add the parameter of output storage name.
29-
- Batch convert API add the parameters of intput and output storage name.
30-
- Remove AutoshapesController from Aspose.Cells Cloud.
31-
- Rename LiteCellsApi to LightCellsApi.
3231

3332
## Read & Write Spreadsheet Formats
3433

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

src/api.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6234,7 +6234,7 @@ export class CellsApi {
62346234
* Set htmlstring value into cell
62356235
* @param requestObj contains request parameters
62366236
*/
6237-
public async cellsPostSetCellHtmlString(requestObj: model.Cells_PostSetCellHtmlStringRequest): Promise<{response: http.ClientResponse, body: model.CellResponse}> {
6237+
public async cellsPostSetCellHtmlString(requestObj: model.Cells_PostSetCellHtmlStringRequest): Promise<{response: http.ClientResponse, body: model.CellsCloudResponse}> {
62386238
if (requestObj === null || requestObj === undefined) {
62396239
throw new Error('Required parameter "requestObj" was null or undefined when calling cellsPostSetCellHtmlString.');
62406240
}
@@ -6276,7 +6276,7 @@ export class CellsApi {
62766276
};
62776277

62786278
const response = await invokeApiMethod(requestOptions, this.configuration);
6279-
const result = ObjectSerializer.deserialize(response.body, "CellResponse");
6279+
const result = ObjectSerializer.deserialize(response.body, "CellsCloudResponse");
62806280
return Promise.resolve({body: result, response});
62816281
}
62826282

@@ -9776,7 +9776,7 @@ export class CellsApi {
97769776
* Unprotect worksheet.
97779777
* @param requestObj contains request parameters
97789778
*/
9779-
public async cellsWorksheetsDeleteUnprotectWorksheet(requestObj: model.CellsWorksheets_DeleteUnprotectWorksheetRequest): Promise<{response: http.ClientResponse, body: model.WorksheetResponse}> {
9779+
public async cellsWorksheetsDeleteUnprotectWorksheet(requestObj: model.CellsWorksheets_DeleteUnprotectWorksheetRequest): Promise<{response: http.ClientResponse, body: model.CellsCloudResponse}> {
97809780
if (requestObj === null || requestObj === undefined) {
97819781
throw new Error('Required parameter "requestObj" was null or undefined when calling cellsWorksheetsDeleteUnprotectWorksheet.');
97829782
}
@@ -9807,7 +9807,7 @@ export class CellsApi {
98079807
};
98089808

98099809
const response = await invokeApiMethod(requestOptions, this.configuration);
9810-
const result = ObjectSerializer.deserialize(response.body, "WorksheetResponse");
9810+
const result = ObjectSerializer.deserialize(response.body, "CellsCloudResponse");
98119811
return Promise.resolve({body: result, response});
98129812
}
98139813

@@ -10746,7 +10746,7 @@ export class CellsApi {
1074610746
* Update worksheet property
1074710747
* @param requestObj contains request parameters
1074810748
*/
10749-
public async cellsWorksheetsPostUpdateWorksheetProperty(requestObj: model.CellsWorksheets_PostUpdateWorksheetPropertyRequest): Promise<{response: http.ClientResponse, body: model.WorksheetResponse}> {
10749+
public async cellsWorksheetsPostUpdateWorksheetProperty(requestObj: model.CellsWorksheets_PostUpdateWorksheetPropertyRequest): Promise<{response: http.ClientResponse, body: model.CellsCloudResponse}> {
1075010750
if (requestObj === null || requestObj === undefined) {
1075110751
throw new Error('Required parameter "requestObj" was null or undefined when calling cellsWorksheetsPostUpdateWorksheetProperty.');
1075210752
}
@@ -10777,7 +10777,7 @@ export class CellsApi {
1077710777
};
1077810778

1077910779
const response = await invokeApiMethod(requestOptions, this.configuration);
10780-
const result = ObjectSerializer.deserialize(response.body, "WorksheetResponse");
10780+
const result = ObjectSerializer.deserialize(response.body, "CellsCloudResponse");
1078110781
return Promise.resolve({body: result, response});
1078210782
}
1078310783

@@ -11097,7 +11097,7 @@ export class CellsApi {
1109711097
* Protect worksheet.
1109811098
* @param requestObj contains request parameters
1109911099
*/
11100-
public async cellsWorksheetsPutProtectWorksheet(requestObj: model.CellsWorksheets_PutProtectWorksheetRequest): Promise<{response: http.ClientResponse, body: model.WorksheetResponse}> {
11100+
public async cellsWorksheetsPutProtectWorksheet(requestObj: model.CellsWorksheets_PutProtectWorksheetRequest): Promise<{response: http.ClientResponse, body: model.CellsCloudResponse}> {
1110111101
if (requestObj === null || requestObj === undefined) {
1110211102
throw new Error('Required parameter "requestObj" was null or undefined when calling cellsWorksheetsPutProtectWorksheet.');
1110311103
}
@@ -11128,7 +11128,7 @@ export class CellsApi {
1112811128
};
1112911129

1113011130
const response = await invokeApiMethod(requestOptions, this.configuration);
11131-
const result = ObjectSerializer.deserialize(response.body, "WorksheetResponse");
11131+
const result = ObjectSerializer.deserialize(response.body, "CellsCloudResponse");
1113211132
return Promise.resolve({body: result, response});
1113311133
}
1113411134

src/model/model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26200,7 +26200,7 @@ export class DeleteMetadataRequest {
2620026200
}
2620126201

2620226202
/**
26203-
* GetMetadataRequest model for operation.
26203+
* Request model for operation.
2620426204
*/
2620526205
export class GetMetadataRequest {
2620626206
/**

0 commit comments

Comments
 (0)