Skip to content

Commit 5748d33

Browse files
committed
20220120 update:renmae litecellsapi to lightcellsapi.
1 parent 9f74b3f commit 5748d33

17 files changed

+45
-46
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/21.12)
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)
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 21.12
23+
## Feature & Enhancements in Version 22.1
2424

25-
- Improvement for conversion API.
26-
- Improvement for batch data import to support to set cell formula.
27-
- Improvement for setting row height and column wight to support to set multi-rows and multi-columns.
28-
- Support to set cell formula in batch data import.
29-
- Add a new API for updating the list column.
30-
- Add a new API for reversing columns and rows.
31-
- Add new APIs for grouping and ungrouping shapes.
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.
3231

3332
## Read & Write Spreadsheet Formats
3433

src/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11842,7 +11842,7 @@ export class CellsApi {
1184211842
/**
1184311843
* Library for communicating with the Aspose.Cells Cloud API
1184411844
*/
11845-
export class LiteCellsApi {
11845+
export class LightCellsApi {
1184611846
/**
1184711847
* API configuration
1184811848
*/

test/CellsAssembleApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describe('CellsAssembleApi', function() {
3636
this.timeout(200000);
3737
describe('PosAssemble', function() {
3838
it('should call PosAssemble successfully', function() {
39-
const cellsApi = BaseTest.initializeLiteCellsApi();
39+
const cellsApi = BaseTest.initializeLightCellsApi();
4040
const AssemblyTestXlsx = "assemblytest.xlsx";
4141
var dataAssemblyTestXlsx =fs.createReadStream(localPath + AssemblyTestXlsx);
4242
const DataSourceXlsx = "datasource.xlsx";

test/CellsClearObjectApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describe('CellsClearObjectApi', function() {
3636
this.timeout(200000);
3737
describe('PosClearObject', function() {
3838
it('should call PosClearObject successfully', function() {
39-
const cellsApi = BaseTest.initializeLiteCellsApi();
39+
const cellsApi = BaseTest.initializeLightCellsApi();
4040
const AssemblyTestXlsx = "assemblytest.xlsx";
4141
var dataAssemblyTestXlsx =fs.createReadStream(localPath + AssemblyTestXlsx);
4242
const DataSourceXlsx = "datasource.xlsx";

test/CellsCompressApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describe('CellsCompressApi', function() {
3636
this.timeout(200000);
3737
describe('PostCompress', function() {
3838
it('should call PostCompress successfully', function() {
39-
const cellsApi = BaseTest.initializeLiteCellsApi();
39+
const cellsApi = BaseTest.initializeLightCellsApi();
4040
var req = new model.PostCompressRequest();
4141
req.compressLevel = 80;
4242
const AssemblyTestXlsx = "assemblytest.xlsx";

test/CellsExportApi.ts

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describe('CellsExporttApi', function() {
3636
this.timeout(200000);
3737
describe('PostExport_chart_xlsx', function() {
3838
it('should call PostExport successfully', function() {
39-
const cellsApi = BaseTest.initializeLiteCellsApi();
39+
const cellsApi = BaseTest.initializeLightCellsApi();
4040
const AssemblyTestXlsx = "assemblytest.xlsx";
4141
var dataAssemblyTestXlsx =fs.createReadStream(localPath + AssemblyTestXlsx);
4242
const DataSourceXlsx = "datasource.xlsx";
@@ -53,7 +53,7 @@ describe('CellsExporttApi', function() {
5353
});
5454
describe('PostExport_chart_pdf', function() {
5555
it('should call PostExport successfully', function() {
56-
const cellsApi = BaseTest.initializeLiteCellsApi();
56+
const cellsApi = BaseTest.initializeLightCellsApi();
5757
const AssemblyTestXlsx = "assemblytest.xlsx";
5858
var dataAssemblyTestXlsx =fs.createReadStream(localPath + AssemblyTestXlsx);
5959
const DataSourceXlsx = "datasource.xlsx";
@@ -70,7 +70,7 @@ describe('CellsExporttApi', function() {
7070
});
7171
describe('PostExport_chart_jpg', function() {
7272
it('should call PostExport successfully', function() {
73-
const cellsApi = BaseTest.initializeLiteCellsApi();
73+
const cellsApi = BaseTest.initializeLightCellsApi();
7474
const AssemblyTestXlsx = "assemblytest.xlsx";
7575
var dataAssemblyTestXlsx =fs.createReadStream(localPath + AssemblyTestXlsx);
7676
const DataSourceXlsx = "datasource.xlsx";
@@ -87,7 +87,7 @@ describe('CellsExporttApi', function() {
8787
});
8888
describe('PostExport_listobject_xlsx', function() {
8989
it('should call PostExport successfully', function() {
90-
const cellsApi = BaseTest.initializeLiteCellsApi();
90+
const cellsApi = BaseTest.initializeLightCellsApi();
9191
const AssemblyTestXlsx = "assemblytest.xlsx";
9292
var dataAssemblyTestXlsx =fs.createReadStream(localPath + AssemblyTestXlsx);
9393
const DataSourceXlsx = "datasource.xlsx";
@@ -104,7 +104,7 @@ describe('CellsExporttApi', function() {
104104
});
105105
describe('PostExport_listobject_pdf', function() {
106106
it('should call PostExport successfully', function() {
107-
const cellsApi = BaseTest.initializeLiteCellsApi();
107+
const cellsApi = BaseTest.initializeLightCellsApi();
108108
const AssemblyTestXlsx = "assemblytest.xlsx";
109109
var dataAssemblyTestXlsx =fs.createReadStream(localPath + AssemblyTestXlsx);
110110
const DataSourceXlsx = "datasource.xlsx";
@@ -121,7 +121,7 @@ describe('CellsExporttApi', function() {
121121
});
122122
describe('PostExport_listobject_jpg', function() {
123123
it('should call PostExport successfully', function() {
124-
const cellsApi = BaseTest.initializeLiteCellsApi();
124+
const cellsApi = BaseTest.initializeLightCellsApi();
125125
const AssemblyTestXlsx = "assemblytest.xlsx";
126126
var dataAssemblyTestXlsx =fs.createReadStream(localPath + AssemblyTestXlsx);
127127
const DataSourceXlsx = "datasource.xlsx";
@@ -138,7 +138,7 @@ describe('CellsExporttApi', function() {
138138
});
139139
describe('PostExport_oleobject_xlsx', function() {
140140
it('should call PostExport successfully', function() {
141-
const cellsApi = BaseTest.initializeLiteCellsApi();
141+
const cellsApi = BaseTest.initializeLightCellsApi();
142142
const AssemblyTestXlsx = "assemblytest.xlsx";
143143
var dataAssemblyTestXlsx =fs.createReadStream(localPath + AssemblyTestXlsx);
144144
const DataSourceXlsx = "datasource.xlsx";
@@ -155,7 +155,7 @@ describe('CellsExporttApi', function() {
155155
});
156156
describe('PostExport_picture_png', function() {
157157
it('should call PostExport successfully', function() {
158-
const cellsApi = BaseTest.initializeLiteCellsApi();
158+
const cellsApi = BaseTest.initializeLightCellsApi();
159159
const AssemblyTestXlsx = "assemblytest.xlsx";
160160
var dataAssemblyTestXlsx =fs.createReadStream(localPath + AssemblyTestXlsx);
161161
const DataSourceXlsx = "datasource.xlsx";
@@ -172,7 +172,7 @@ describe('CellsExporttApi', function() {
172172
});
173173
describe('PostExport_shape_jpg', function() {
174174
it('should call PostExport successfully', function() {
175-
const cellsApi = BaseTest.initializeLiteCellsApi();
175+
const cellsApi = BaseTest.initializeLightCellsApi();
176176
const AssemblyTestXlsx = "assemblytest.xlsx";
177177
var dataAssemblyTestXlsx =fs.createReadStream(localPath + AssemblyTestXlsx);
178178
const DataSourceXlsx = "datasource.xlsx";
@@ -189,7 +189,7 @@ describe('CellsExporttApi', function() {
189189
});
190190
describe('PostExport_worksheet_xlsx', function() {
191191
it('should call PostExport successfully', function() {
192-
const cellsApi = BaseTest.initializeLiteCellsApi();
192+
const cellsApi = BaseTest.initializeLightCellsApi();
193193
const AssemblyTestXlsx = "assemblytest.xlsx";
194194
var dataAssemblyTestXlsx =fs.createReadStream(localPath + AssemblyTestXlsx);
195195
const DataSourceXlsx = "datasource.xlsx";
@@ -206,7 +206,7 @@ describe('CellsExporttApi', function() {
206206
});
207207
describe('PostExport_worksheet_pdf', function() {
208208
it('should call PostExport successfully', function() {
209-
const cellsApi = BaseTest.initializeLiteCellsApi();
209+
const cellsApi = BaseTest.initializeLightCellsApi();
210210
const AssemblyTestXlsx = "assemblytest.xlsx";
211211
var dataAssemblyTestXlsx =fs.createReadStream(localPath + AssemblyTestXlsx);
212212
const DataSourceXlsx = "datasource.xlsx";
@@ -223,7 +223,7 @@ describe('CellsExporttApi', function() {
223223
});
224224
describe('PostExport_worksheet_jpg', function() {
225225
it('should call PostExport successfully', function() {
226-
const cellsApi = BaseTest.initializeLiteCellsApi();
226+
const cellsApi = BaseTest.initializeLightCellsApi();
227227
const AssemblyTestXlsx = "assemblytest.xlsx";
228228
var dataAssemblyTestXlsx =fs.createReadStream(localPath + AssemblyTestXlsx);
229229
const DataSourceXlsx = "datasource.xlsx";
@@ -240,7 +240,7 @@ describe('CellsExporttApi', function() {
240240
});
241241
describe('PostExport_workbook_xlsx', function() {
242242
it('should call PostExport successfully', function() {
243-
const cellsApi = BaseTest.initializeLiteCellsApi();
243+
const cellsApi = BaseTest.initializeLightCellsApi();
244244
const AssemblyTestXlsx = "assemblytest.xlsx";
245245
var dataAssemblyTestXlsx =fs.createReadStream(localPath + AssemblyTestXlsx);
246246
const DataSourceXlsx = "datasource.xlsx";
@@ -257,7 +257,7 @@ describe('CellsExporttApi', function() {
257257
});
258258
describe('PostExport_workbook_pdf', function() {
259259
it('should call PostExport successfully', function() {
260-
const cellsApi = BaseTest.initializeLiteCellsApi();
260+
const cellsApi = BaseTest.initializeLightCellsApi();
261261
const AssemblyTestXlsx = "assemblytest.xlsx";
262262
var dataAssemblyTestXlsx =fs.createReadStream(localPath + AssemblyTestXlsx);
263263
const DataSourceXlsx = "datasource.xlsx";
@@ -274,7 +274,7 @@ describe('CellsExporttApi', function() {
274274
});
275275
describe('PostExport_workbook_jpg', function() {
276276
it('should call PostExport successfully', function() {
277-
const cellsApi = BaseTest.initializeLiteCellsApi();
277+
const cellsApi = BaseTest.initializeLightCellsApi();
278278
const AssemblyTestXlsx = "assemblytest.xlsx";
279279
var dataAssemblyTestXlsx =fs.createReadStream(localPath + AssemblyTestXlsx);
280280
const DataSourceXlsx = "datasource.xlsx";
@@ -291,7 +291,7 @@ describe('CellsExporttApi', function() {
291291
});
292292
describe('PostExport_chart_xlsx', function() {
293293
it('should call PostExport successfully', function() {
294-
const cellsApi = BaseTest.initializeLiteCellsApi();
294+
const cellsApi = BaseTest.initializeLightCellsApi();
295295
const AssemblyTestXlsx = "assemblytest.xlsx";
296296
var dataAssemblyTestXlsx =fs.createReadStream(localPath + AssemblyTestXlsx);
297297
const DataSourceXlsx = "datasource.xlsx";
@@ -308,7 +308,7 @@ describe('CellsExporttApi', function() {
308308
});
309309
describe('PostExport_chart_pdf', function() {
310310
it('should call PostExport successfully', function() {
311-
const cellsApi = BaseTest.initializeLiteCellsApi();
311+
const cellsApi = BaseTest.initializeLightCellsApi();
312312
const AssemblyTestXlsx = "assemblytest.xlsx";
313313
var dataAssemblyTestXlsx =fs.createReadStream(localPath + AssemblyTestXlsx);
314314
const DataSourceXlsx = "datasource.xlsx";
@@ -325,7 +325,7 @@ describe('CellsExporttApi', function() {
325325
});
326326
describe('PostExport_chart_jpg', function() {
327327
it('should call PostExport successfully', function() {
328-
const cellsApi = BaseTest.initializeLiteCellsApi();
328+
const cellsApi = BaseTest.initializeLightCellsApi();
329329
const AssemblyTestXlsx = "assemblytest.xlsx";
330330
var dataAssemblyTestXlsx =fs.createReadStream(localPath + AssemblyTestXlsx);
331331
const DataSourceXlsx = "datasource.xlsx";

test/CellsImportApi.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describe('CellsImxporttApi', function() {
3636
this.timeout(200000);
3737
describe('PostImport', function() {
3838
it('should call PostImport successfully', function() {
39-
const cellsApi = BaseTest.initializeLiteCellsApi();
39+
const cellsApi = BaseTest.initializeLightCellsApi();
4040
var importOption = new model.ImportIntArrayOption();
4141
importOption.destinationWorksheet = "Sheet1";
4242
importOption.firstColumn = 1;
@@ -70,7 +70,7 @@ describe('CellsImxporttApi', function() {
7070

7171
describe('PostImport', function() {
7272
it('should call PostImport successfully', function() {
73-
const cellsApi = BaseTest.initializeLiteCellsApi();
73+
const cellsApi = BaseTest.initializeLightCellsApi();
7474
var importOption = new model.ImportPictureOption();
7575
importOption.destinationWorksheet = "Sheet1";
7676
importOption.upperLeftRow = 1;

test/CellsMergeApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describe('CellsMergeApi', function() {
3636
this.timeout(200000);
3737
describe('PostMerge', function() {
3838
it('should call PostMerge successfully', function() {
39-
const cellsApi = BaseTest.initializeLiteCellsApi();
39+
const cellsApi = BaseTest.initializeLightCellsApi();
4040
const AssemblyTestXlsx = "assemblytest.xlsx";
4141
var dataAssemblyTestXlsx =fs.createReadStream(localPath + AssemblyTestXlsx);
4242
const DataSourceXlsx = "datasource.xlsx";

test/CellsMetadataApi.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describe('CellsMetadataApi', function() {
3636
this.timeout(200000);
3737
describe('deleteMetadata', function() {
3838
it('should call deleteMetadata successfully', function() {
39-
const cellsApi = BaseTest.initializeLiteCellsApi();
39+
const cellsApi = BaseTest.initializeLightCellsApi();
4040
const filename = "Book1.xlsx";
4141
var data =fs.createReadStream(localPath + filename);
4242
var req = new model.DeleteMetadataRequest();
@@ -51,7 +51,7 @@ describe('CellsMetadataApi', function() {
5151

5252
describe('getMetadata', function() {
5353
it('should call getMetadata successfully', function() {
54-
const cellsApi = BaseTest.initializeLiteCellsApi();
54+
const cellsApi = BaseTest.initializeLightCellsApi();
5555
const filename = "Book1.xlsx";
5656
var data =fs.createReadStream(localPath + filename);
5757
var req = new model.GetMetadataRequest();
@@ -67,7 +67,7 @@ describe('CellsMetadataApi', function() {
6767

6868
describe('updateMetadata', function() {
6969
it('should call updatreetadata successfully', function() {
70-
const cellsApi = BaseTest.initializeLiteCellsApi();
70+
const cellsApi = BaseTest.initializeLightCellsApi();
7171
const filename = "Book1.xlsx";
7272
var data =fs.createReadStream(localPath + filename);
7373
var req = new model.PostMetadataRequest();

test/CellsProtectApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describe('CellsPostProtectApi', function() {
3636
this.timeout(200000);
3737
describe('PostProtect', function() {
3838
it('should callPostProtect successfully', function() {
39-
const cellsApi = BaseTest.initializeLiteCellsApi();
39+
const cellsApi = BaseTest.initializeLightCellsApi();
4040
const filename = "Book1.xlsx";
4141
var data =fs.createReadStream(localPath + filename);
4242
var req = new model.PostProtectRequest();

0 commit comments

Comments
 (0)