Skip to content

Commit 32b93a7

Browse files
committed
Release Aspose.Cells.Cloud SDK 20.7
1 parent e6a5924 commit 32b93a7

File tree

7 files changed

+695
-1781
lines changed

7 files changed

+695
-1781
lines changed

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,9 @@
1818
- Cloud SDK to Read & Process Excel Worksheets.
1919
- Leverage the Power of Pivot Tables & Ranges.
2020

21-
## Enhancements in Version 20.6
21+
## Enhancements in Version 20.7
2222

23-
- Support to add text water marker.
24-
- Enhancement for Cells object operating in Task API.
25-
- Enhancement for workbook convert images in get workbook AP
23+
- Enhancement for CellsApi constructor.
2624

2725
## Read & Write Spreadsheet Formats
2826

@@ -58,7 +56,7 @@ Please follow the [installation](#installation) instruction and execute the foll
5856
5957
```golang
6058
func GetDocumentCircleAnnotations() (CircleAnnotationsResponse, *http.Response, error) {
61-
cellsAPI := NewCellsApiService("AppSid", "AppKey", "")
59+
cellsAPI := NewCellsApiService("AppSid", "AppKey", "https://api.aspose.cloud","v3.0")
6260
name := "Book1.xlsx"
6361
6462
args := new(UploadFileOpts)
@@ -88,7 +86,7 @@ The following code snippet demonstrates how to add a new worksheet to a Microsof
8886
args := new(CellsWorksheetsPutAddNewWorksheetOpts)
8987
args.Name = GetBook1()
9088
args.SheetName = GetSheet1()
91-
args.Position = ToInt32(1)
89+
args.Position = 1
9290
args.Sheettype = "VB"
9391
args.Folder = GetBaseTest().remoteFolder
9492

api/swagger.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
swagger: "2.0"
33
info:
4-
version: "20.6"
4+
version: "20.7"
55
title: "Aspose.Cells Cloud SDK APIs."
66
host: "api.aspose.cloud"
77
basePath: "/v3.0"

api_cells.go

Lines changed: 271 additions & 1400 deletions
Large diffs are not rendered by default.

api_cells_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4019,7 +4019,7 @@ func TestCellsSaveAsPostDocumentSaveAs(t *testing.T) {
40194019
args := new(CellsSaveAsPostDocumentSaveAsOpts)
40204020
args.Name = GetBook1()
40214021
args.SaveOptions = nil
4022-
args.Newfilename = "newfilego.pdf"
4022+
args.Newfilename = GetBaseTest().remoteFolder + "/newfilego.pdf"
40234023
args.Folder = GetBaseTest().remoteFolder
40244024

40254025
response, httpResponse, err := GetBaseTest().CellsAPI.CellsSaveAsPostDocumentSaveAs(args)
@@ -4437,7 +4437,7 @@ func TestCellsWorkbookPostWorkbookSplit(t *testing.T) {
44374437
args.HorizontalResolution = 96
44384438
args.VerticalResolution = 96
44394439
args.Folder = GetBaseTest().remoteFolder
4440-
4440+
args.OutFolder = GetBaseTest().remoteFolder
44414441
response, httpResponse, err := GetBaseTest().CellsAPI.CellsWorkbookPostWorkbookSplit(args)
44424442
if err != nil {
44434443
t.Error(err)
@@ -4459,7 +4459,7 @@ func TestCellsWorkbookPostWorkbooksMerge(t *testing.T) {
44594459
}
44604460
args := new(CellsWorkbookPostWorkbooksMergeOpts)
44614461
args.Name = GetBook1()
4462-
args.MergeWith = GetMyDoc()
4462+
args.MergeWith = GetBaseTest().remoteFolder + "/" + GetMyDoc()
44634463
args.Folder = GetBaseTest().remoteFolder
44644464

44654465
response, httpResponse, err := GetBaseTest().CellsAPI.CellsWorkbookPostWorkbooksMerge(args)
@@ -5569,7 +5569,7 @@ func TestCellsTaskPostRunTasks(t *testing.T) {
55695569
cellsSplitWorkbookTaskParameter.DestinationFileFormat = "xlsx"
55705570
cellsSplitWorkbookTaskParameter.SplitNameRule = "sheetname"
55715571
cellsFileSource1 := new(FileSource)
5572-
// cellsFileSource1.FilePath = "GoTest"
5572+
cellsFileSource1.FilePath = "GoTest"
55735573
cellsFileSource1.FileSourceType = "CloudFileSystem"
55745574
cellsFileSource2 := new(FileSource)
55755575
cellsFileSource2.FilePath = "GoTest/Book1.xlsx"

0 commit comments

Comments
 (0)