Skip to content

Commit f205c9b

Browse files
committed
2024-02-22 : Synchronize codes to the origin repository.
1 parent 222f6bd commit f205c9b

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,11 @@
2020
- Fetch the required shape from worksheet.
2121
- Leverage the power of named ranges.
2222

23-
## Feature & Enhancements in Version 24.1.1
23+
## Feature & Enhancements in Version 24.2.1
2424

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

27-
- Fixed spelling mistakes for several functions.
2827
- Add the PostFitTallToPages method for page setup controller.
29-
- Add the PostFitWideToPages method for page setup controller.
30-
- Optimize save options about paginated.
31-
3228

3329
## Read & Write Spreadsheet Formats
3430

api_cells.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ func NewCellsApiService(appSid string, appKey string, opts ...string) *CellsApiS
5454

5555
type CellsApiService service
5656

57-
func (a *CellsApiService) PostAnalyzeTable(data *PostAnalyzeTableRequest) ( []AnalyzedResult, *http.Response, error) {
57+
func (a *CellsApiService) PostAnalyzeExcel(data *PostAnalyzeExcelRequest) ( []AnalyzedResult, *http.Response, error) {
5858
var (
5959
localVarReturnValue []AnalyzedResult
6060

request_post_analyze_table_request.go renamed to request_post_analyze_excel_request.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/** --------------------------------------------------------------------------------------------------------------------
2-
* <copyright company="Aspose" file="post_analyze_table_request.go">
2+
* <copyright company="Aspose" file="post_analyze_excel_request.go">
33
* Copyright (c) 2024 Aspose.Cells Cloud
44
* </copyright>
55
* <summary>
@@ -31,13 +31,13 @@ import (
3131
"strings"
3232
)
3333

34-
type PostAnalyzeTableRequest struct {
34+
type PostAnalyzeExcelRequest struct {
3535
AnalyzeExcelRequest interface{} `json:"analyze_excel_request,omitempty" xml:"analyze_excel_request"`
3636

3737
ExtendQueryParameterMap map[string]string `json:"ExtendQueryParameterMap,omitempty" xml:"ExtendQueryParameterMap"`
3838
}
3939

40-
func (data *PostAnalyzeTableRequest) CreateRequestData( client *APIClient) (localVarRequest *http.Request, err error) {
40+
func (data *PostAnalyzeExcelRequest) CreateRequestData( client *APIClient) (localVarRequest *http.Request, err error) {
4141
var (
4242
localVarHttpMethod = strings.ToUpper("POST")
4343
localVarPostBody interface{}

0 commit comments

Comments
 (0)