Skip to content

Commit 61e45e5

Browse files
committed
20220120 update:renmae litecellsapi to lightcellsapi.
1 parent 63bd933 commit 61e45e5

18 files changed

+61
-62
lines changed

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,12 @@ This Cloud SDK enhances your PHP-based Cloud apps to [process & manipulate Micro
2626

2727
## Feature & Enhancements in Version 22.1
2828

29-
- Improvement for conversion API.
30-
- Improvement for batch data import to support to set cell formula.
31-
- Improvement for setting row height and column wight to support to set multi-rows and multi-columns.
32-
- Support to set cell formula in batch data import.
33-
- Add a new API for updating the list column.
34-
- Add a new API for reversing columns and rows.
35-
- Add new APIs for grouping and ungrouping shapes.
29+
- SaveAs API add the parameter of target storage name.
30+
- Workbok merged API add the parameter of merged file storage name.
31+
- Workbok split API add the parameter of target storage name
32+
- Workbok smart marker API add the parameter of output storage name.
33+
- Batch convert API add the parameters of intput and output storage name.
34+
- Remove AutoshapesController from Aspose.Cells Cloud.
3635

3736
## Read Other Formats
3837

docs/Api/LiteCellsApi.md renamed to docs/Api/LightCellsApi.md

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
# Aspose\Cells\Cloud\LiteCellsApi
1+
# Aspose\Cells\Cloud\LightCellsApi
22

33
All URIs are relative to *https://api.aspose.cloud/v3.0*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------
7-
[**deleteMetadata**](LiteCellsApi.md#deleteMetadata) | **POST** /cells/metadata/delete |
8-
[**getMetadata**](LiteCellsApi.md#getMetadata) | **POST** /cells/metadata/get |
9-
[**postAssemble**](LiteCellsApi.md#postAssemble) | **POST** /cells/assemble |
10-
[**postClearObjects**](LiteCellsApi.md#postClearObjects) | **POST** /cells/clearobjects |
11-
[**postExport**](LiteCellsApi.md#postExport) | **POST** /cells/export |
12-
[**postMerge**](LiteCellsApi.md#postMerge) | **POST** /cells/merge |
13-
[**postMetadata**](LiteCellsApi.md#postMetadata) | **POST** /cells/metadata/update |
14-
[**postProtect**](LiteCellsApi.md#postProtect) | **POST** /cells/protect |
15-
[**postSearch**](LiteCellsApi.md#postSearch) | **POST** /cells/search |
16-
[**postSplit**](LiteCellsApi.md#postSplit) | **POST** /cells/split |
17-
[**postUnlock**](LiteCellsApi.md#postUnlock) | **POST** /cells/unlock |
18-
[**postWatermark**](LiteCellsApi.md#postWatermark) | **POST** /cells/watermark |
7+
[**deleteMetadata**](LightCellsApi.md#deleteMetadata) | **POST** /cells/metadata/delete |
8+
[**getMetadata**](LightCellsApi.md#getMetadata) | **POST** /cells/metadata/get |
9+
[**postAssemble**](LightCellsApi.md#postAssemble) | **POST** /cells/assemble |
10+
[**postClearObjects**](LightCellsApi.md#postClearObjects) | **POST** /cells/clearobjects |
11+
[**postExport**](LightCellsApi.md#postExport) | **POST** /cells/export |
12+
[**postMerge**](LightCellsApi.md#postMerge) | **POST** /cells/merge |
13+
[**postMetadata**](LightCellsApi.md#postMetadata) | **POST** /cells/metadata/update |
14+
[**postProtect**](LightCellsApi.md#postProtect) | **POST** /cells/protect |
15+
[**postSearch**](LightCellsApi.md#postSearch) | **POST** /cells/search |
16+
[**postSplit**](LightCellsApi.md#postSplit) | **POST** /cells/split |
17+
[**postUnlock**](LightCellsApi.md#postUnlock) | **POST** /cells/unlock |
18+
[**postWatermark**](LightCellsApi.md#postWatermark) | **POST** /cells/watermark |
1919

2020

2121
# **deleteMetadata**
@@ -28,7 +28,7 @@ Method | HTTP request | Description
2828
<?php
2929
require_once(__DIR__ . '/vendor/autoload.php');
3030

31-
$apiInstance = new Aspose\Cells\Cloud\Api\LiteCellsApi(
31+
$apiInstance = new Aspose\Cells\Cloud\Api\LightCellsApi(
3232
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
3333
// This is optional, `GuzzleHttp\Client` will be used as default.
3434
new GuzzleHttp\Client()
@@ -40,7 +40,7 @@ try {
4040
$result = $apiInstance->deleteMetadata($file, $type);
4141
print_r($result);
4242
} catch (Exception $e) {
43-
echo 'Exception when calling LiteCellsApi->deleteMetadata: ', $e->getMessage(), PHP_EOL;
43+
echo 'Exception when calling LightCellsApi->deleteMetadata: ', $e->getMessage(), PHP_EOL;
4444
}
4545
?>
4646
```
@@ -77,7 +77,7 @@ No authorization required
7777
<?php
7878
require_once(__DIR__ . '/vendor/autoload.php');
7979

80-
$apiInstance = new Aspose\Cells\Cloud\Api\LiteCellsApi(
80+
$apiInstance = new Aspose\Cells\Cloud\Api\LightCellsApi(
8181
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
8282
// This is optional, `GuzzleHttp\Client` will be used as default.
8383
new GuzzleHttp\Client()
@@ -89,7 +89,7 @@ try {
8989
$result = $apiInstance->getMetadata($file, $type);
9090
print_r($result);
9191
} catch (Exception $e) {
92-
echo 'Exception when calling LiteCellsApi->getMetadata: ', $e->getMessage(), PHP_EOL;
92+
echo 'Exception when calling LightCellsApi->getMetadata: ', $e->getMessage(), PHP_EOL;
9393
}
9494
?>
9595
```
@@ -126,7 +126,7 @@ No authorization required
126126
<?php
127127
require_once(__DIR__ . '/vendor/autoload.php');
128128

129-
$apiInstance = new Aspose\Cells\Cloud\Api\LiteCellsApi(
129+
$apiInstance = new Aspose\Cells\Cloud\Api\LightCellsApi(
130130
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
131131
// This is optional, `GuzzleHttp\Client` will be used as default.
132132
new GuzzleHttp\Client()
@@ -139,7 +139,7 @@ try {
139139
$result = $apiInstance->postAssemble($file, $datasource, $format);
140140
print_r($result);
141141
} catch (Exception $e) {
142-
echo 'Exception when calling LiteCellsApi->postAssemble: ', $e->getMessage(), PHP_EOL;
142+
echo 'Exception when calling LightCellsApi->postAssemble: ', $e->getMessage(), PHP_EOL;
143143
}
144144
?>
145145
```
@@ -177,7 +177,7 @@ No authorization required
177177
<?php
178178
require_once(__DIR__ . '/vendor/autoload.php');
179179

180-
$apiInstance = new Aspose\Cells\Cloud\Api\LiteCellsApi(
180+
$apiInstance = new Aspose\Cells\Cloud\Api\LightCellsApi(
181181
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
182182
// This is optional, `GuzzleHttp\Client` will be used as default.
183183
new GuzzleHttp\Client()
@@ -189,7 +189,7 @@ try {
189189
$result = $apiInstance->postClearObjects($file, $objecttype);
190190
print_r($result);
191191
} catch (Exception $e) {
192-
echo 'Exception when calling LiteCellsApi->postClearObjects: ', $e->getMessage(), PHP_EOL;
192+
echo 'Exception when calling LightCellsApi->postClearObjects: ', $e->getMessage(), PHP_EOL;
193193
}
194194
?>
195195
```
@@ -226,7 +226,7 @@ No authorization required
226226
<?php
227227
require_once(__DIR__ . '/vendor/autoload.php');
228228

229-
$apiInstance = new Aspose\Cells\Cloud\Api\LiteCellsApi(
229+
$apiInstance = new Aspose\Cells\Cloud\Api\LightCellsApi(
230230
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
231231
// This is optional, `GuzzleHttp\Client` will be used as default.
232232
new GuzzleHttp\Client()
@@ -239,7 +239,7 @@ try {
239239
$result = $apiInstance->postExport($file, $object_type, $format);
240240
print_r($result);
241241
} catch (Exception $e) {
242-
echo 'Exception when calling LiteCellsApi->postExport: ', $e->getMessage(), PHP_EOL;
242+
echo 'Exception when calling LightCellsApi->postExport: ', $e->getMessage(), PHP_EOL;
243243
}
244244
?>
245245
```
@@ -277,7 +277,7 @@ No authorization required
277277
<?php
278278
require_once(__DIR__ . '/vendor/autoload.php');
279279

280-
$apiInstance = new Aspose\Cells\Cloud\Api\LiteCellsApi(
280+
$apiInstance = new Aspose\Cells\Cloud\Api\LightCellsApi(
281281
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
282282
// This is optional, `GuzzleHttp\Client` will be used as default.
283283
new GuzzleHttp\Client()
@@ -290,7 +290,7 @@ try {
290290
$result = $apiInstance->postMerge($file, $format, $merge_to_one_sheet);
291291
print_r($result);
292292
} catch (Exception $e) {
293-
echo 'Exception when calling LiteCellsApi->postMerge: ', $e->getMessage(), PHP_EOL;
293+
echo 'Exception when calling LightCellsApi->postMerge: ', $e->getMessage(), PHP_EOL;
294294
}
295295
?>
296296
```
@@ -328,7 +328,7 @@ No authorization required
328328
<?php
329329
require_once(__DIR__ . '/vendor/autoload.php');
330330

331-
$apiInstance = new Aspose\Cells\Cloud\Api\LiteCellsApi(
331+
$apiInstance = new Aspose\Cells\Cloud\Api\LightCellsApi(
332332
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
333333
// This is optional, `GuzzleHttp\Client` will be used as default.
334334
new GuzzleHttp\Client()
@@ -340,7 +340,7 @@ try {
340340
$result = $apiInstance->postMetadata($file, $document_properties);
341341
print_r($result);
342342
} catch (Exception $e) {
343-
echo 'Exception when calling LiteCellsApi->postMetadata: ', $e->getMessage(), PHP_EOL;
343+
echo 'Exception when calling LightCellsApi->postMetadata: ', $e->getMessage(), PHP_EOL;
344344
}
345345
?>
346346
```
@@ -377,7 +377,7 @@ No authorization required
377377
<?php
378378
require_once(__DIR__ . '/vendor/autoload.php');
379379

380-
$apiInstance = new Aspose\Cells\Cloud\Api\LiteCellsApi(
380+
$apiInstance = new Aspose\Cells\Cloud\Api\LightCellsApi(
381381
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
382382
// This is optional, `GuzzleHttp\Client` will be used as default.
383383
new GuzzleHttp\Client()
@@ -389,7 +389,7 @@ try {
389389
$result = $apiInstance->postProtect($file, $password);
390390
print_r($result);
391391
} catch (Exception $e) {
392-
echo 'Exception when calling LiteCellsApi->postProtect: ', $e->getMessage(), PHP_EOL;
392+
echo 'Exception when calling LightCellsApi->postProtect: ', $e->getMessage(), PHP_EOL;
393393
}
394394
?>
395395
```
@@ -426,7 +426,7 @@ No authorization required
426426
<?php
427427
require_once(__DIR__ . '/vendor/autoload.php');
428428

429-
$apiInstance = new Aspose\Cells\Cloud\Api\LiteCellsApi(
429+
$apiInstance = new Aspose\Cells\Cloud\Api\LightCellsApi(
430430
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
431431
// This is optional, `GuzzleHttp\Client` will be used as default.
432432
new GuzzleHttp\Client()
@@ -440,7 +440,7 @@ try {
440440
$result = $apiInstance->postSearch($file, $text, $password, $sheetname);
441441
print_r($result);
442442
} catch (Exception $e) {
443-
echo 'Exception when calling LiteCellsApi->postSearch: ', $e->getMessage(), PHP_EOL;
443+
echo 'Exception when calling LightCellsApi->postSearch: ', $e->getMessage(), PHP_EOL;
444444
}
445445
?>
446446
```
@@ -479,7 +479,7 @@ No authorization required
479479
<?php
480480
require_once(__DIR__ . '/vendor/autoload.php');
481481

482-
$apiInstance = new Aspose\Cells\Cloud\Api\LiteCellsApi(
482+
$apiInstance = new Aspose\Cells\Cloud\Api\LightCellsApi(
483483
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
484484
// This is optional, `GuzzleHttp\Client` will be used as default.
485485
new GuzzleHttp\Client()
@@ -494,7 +494,7 @@ try {
494494
$result = $apiInstance->postSplit($file, $format, $password, $from, $to);
495495
print_r($result);
496496
} catch (Exception $e) {
497-
echo 'Exception when calling LiteCellsApi->postSplit: ', $e->getMessage(), PHP_EOL;
497+
echo 'Exception when calling LightCellsApi->postSplit: ', $e->getMessage(), PHP_EOL;
498498
}
499499
?>
500500
```
@@ -534,7 +534,7 @@ No authorization required
534534
<?php
535535
require_once(__DIR__ . '/vendor/autoload.php');
536536

537-
$apiInstance = new Aspose\Cells\Cloud\Api\LiteCellsApi(
537+
$apiInstance = new Aspose\Cells\Cloud\Api\LightCellsApi(
538538
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
539539
// This is optional, `GuzzleHttp\Client` will be used as default.
540540
new GuzzleHttp\Client()
@@ -546,7 +546,7 @@ try {
546546
$result = $apiInstance->postUnlock($file, $password);
547547
print_r($result);
548548
} catch (Exception $e) {
549-
echo 'Exception when calling LiteCellsApi->postUnlock: ', $e->getMessage(), PHP_EOL;
549+
echo 'Exception when calling LightCellsApi->postUnlock: ', $e->getMessage(), PHP_EOL;
550550
}
551551
?>
552552
```
@@ -583,7 +583,7 @@ No authorization required
583583
<?php
584584
require_once(__DIR__ . '/vendor/autoload.php');
585585

586-
$apiInstance = new Aspose\Cells\Cloud\Api\LiteCellsApi(
586+
$apiInstance = new Aspose\Cells\Cloud\Api\LightCellsApi(
587587
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
588588
// This is optional, `GuzzleHttp\Client` will be used as default.
589589
new GuzzleHttp\Client()
@@ -596,7 +596,7 @@ try {
596596
$result = $apiInstance->postWatermark($file, $text, $color);
597597
print_r($result);
598598
} catch (Exception $e) {
599-
echo 'Exception when calling LiteCellsApi->postWatermark: ', $e->getMessage(), PHP_EOL;
599+
echo 'Exception when calling LightCellsApi->postWatermark: ', $e->getMessage(), PHP_EOL;
600600
}
601601
?>
602602
```

lib/Api/LiteCellsApi.php renamed to lib/Api/LightCellsApi.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@
3737
use Aspose\Cells\Cloud\ObjectSerializer;
3838

3939
/**
40-
* LiteCellsApi Class Doc Comment
40+
* LightCellsApi Class Doc Comment
4141
*
4242
* @category Class
4343
* @package Aspose\Cells\Cloud
4444
* @author Swagger Codegen team
4545
* @link https://github.com/swagger-api/swagger-codegen
4646
*/
47-
class LiteCellsApi
47+
class LightCellsApi
4848
{
4949
/**
5050
* @var ClientInterface

test/Api/CellsApiTestBase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
require_once('vendor\autoload.php');
55

66
use \Aspose\Cells\Cloud\Api\CellsApi;
7-
use \Aspose\Cells\Cloud\Api\LiteCellsApi;
7+
use \Aspose\Cells\Cloud\Api\LightCellsApi;
88

99
/**
1010
* Configuration Class Doc Comment
@@ -30,7 +30,7 @@ public static function getInstance()
3030
}
3131
public static function getLiteInstance()
3232
{
33-
return new LiteCellsApi(getenv("CellsCloudTestClientId"),getenv("CellsCloudTestClientSecret"),"v3.0",getenv("CellsCloudTestApiBaseUrl"));
33+
return new LightCellsApi(getenv("CellsCloudTestClientId"),getenv("CellsCloudTestClientSecret"),"v3.0",getenv("CellsCloudTestApiBaseUrl"));
3434
}
3535
public static function isDockerSDK()
3636
{

test/Api/CellsAssembleApiTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use \Aspose\Cells\Cloud\ApiException;
99
use \Aspose\Cells\Cloud\ObjectSerializer;
1010
use \Aspose\Cells\Cloud\CellsApiTestBase;
11-
use \Aspose\Cells\Cloud\Api\LiteCellsApi;
11+
use \Aspose\Cells\Cloud\Api\LightCellsApi;
1212
use \Aspose\Cells\Cloud\Model\ColumnsResponse;
1313
use \Aspose\Cells\Cloud\Model\SaaSposeResponse;
1414
use \Aspose\Cells\Cloud\Model\TaskDescription;

test/Api/CellsClearObjectApiTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use \Aspose\Cells\Cloud\ApiException;
99
use \Aspose\Cells\Cloud\ObjectSerializer;
1010
use \Aspose\Cells\Cloud\CellsApiTestBase;
11-
use \Aspose\Cells\Cloud\Api\LiteCellsApi;
11+
use \Aspose\Cells\Cloud\Api\LightCellsApi;
1212
use \Aspose\Cells\Cloud\Model\ColumnsResponse;
1313
use \Aspose\Cells\Cloud\Model\SaaSposeResponse;
1414
use \Aspose\Cells\Cloud\Model\TaskDescription;

test/Api/CellsCompressApiTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use \Aspose\Cells\Cloud\ApiException;
99
use \Aspose\Cells\Cloud\ObjectSerializer;
1010
use \Aspose\Cells\Cloud\CellsApiTestBase;
11-
use \Aspose\Cells\Cloud\Api\LiteCellsApi;
11+
use \Aspose\Cells\Cloud\Api\LightCellsApi;
1212
use \Aspose\Cells\Cloud\Model\ColumnsResponse;
1313
use \Aspose\Cells\Cloud\Model\ImportIntArrayOption;
1414
use \Aspose\Cells\Cloud\Model\TaskDescription;

test/Api/CellsExportApiTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use \Aspose\Cells\Cloud\ApiException;
99
use \Aspose\Cells\Cloud\ObjectSerializer;
1010
use \Aspose\Cells\Cloud\CellsApiTestBase;
11-
use \Aspose\Cells\Cloud\Api\LiteCellsApi;
11+
use \Aspose\Cells\Cloud\Api\LightCellsApi;
1212
use \Aspose\Cells\Cloud\Model\ColumnsResponse;
1313
use \Aspose\Cells\Cloud\Model\SaaSposeResponse;
1414
use \Aspose\Cells\Cloud\Model\TaskDescription;

test/Api/CellsImportApiTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use \Aspose\Cells\Cloud\ApiException;
99
use \Aspose\Cells\Cloud\ObjectSerializer;
1010
use \Aspose\Cells\Cloud\CellsApiTestBase;
11-
use \Aspose\Cells\Cloud\Api\LiteCellsApi;
11+
use \Aspose\Cells\Cloud\Api\LightCellsApi;
1212
use \Aspose\Cells\Cloud\Model\ColumnsResponse;
1313
use \Aspose\Cells\Cloud\Model\ImportIntArrayOption;
1414
use \Aspose\Cells\Cloud\Model\TaskDescription;

test/Api/CellsMergeApiTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use \Aspose\Cells\Cloud\ApiException;
99
use \Aspose\Cells\Cloud\ObjectSerializer;
1010
use \Aspose\Cells\Cloud\CellsApiTestBase;
11-
use \Aspose\Cells\Cloud\Api\LiteCellsApi;
11+
use \Aspose\Cells\Cloud\Api\LightCellsApi;
1212
use \Aspose\Cells\Cloud\Model\ColumnsResponse;
1313
use \Aspose\Cells\Cloud\Model\SaaSposeResponse;
1414
use \Aspose\Cells\Cloud\Model\TaskDescription;

0 commit comments

Comments
 (0)