Skip to content

Commit 111ce86

Browse files
committed
Add split text api and optimize pivot table filter.
1 parent 58a9ccd commit 111ce86

File tree

809 files changed

+971
-814
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

809 files changed

+971
-814
lines changed

HistoryVersion.md

Lines changed: 7 additions & 0 deletions

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Aspose Pty Ltd
3+
Copyright (c) 2025 Aspose Pty Ltd
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 4 additions & 6 deletions

api_cells.go

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/** --------------------------------------------------------------------------------------------------------------------
22
* <copyright company="Aspose" file="api_cells">
3-
* Copyright (c) 2024 Aspose.Cells Cloud
3+
* Copyright (c) 2025 Aspose.Cells Cloud
44
* </copyright>
55
* <summary>
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -33,7 +33,7 @@ import (
3333
)
3434

3535
func Version() {
36-
fmt.Println("---Version: 24.12---")
36+
fmt.Println("---Version: 25.1---")
3737
}
3838

3939
func NewCellsApiService(appSid string, appKey string, opts ...string) *CellsApiService {
@@ -7383,6 +7383,34 @@ func (a *CellsApiService) PostExtractText(data *PostExtractTextRequest) ( FileI
73837383
}
73847384

73857385

7386+
func (a *CellsApiService) PostSplitText(data *PostSplitTextRequest) ( FileInfo, *http.Response, error) {
7387+
var (
7388+
localVarReturnValue FileInfo
7389+
7390+
)
7391+
7392+
r, err := data.CreateRequestData(a.client);
7393+
if err != nil {
7394+
return localVarReturnValue, nil, err
7395+
}
7396+
7397+
localVarHttpResponse, err := a.client.callAPI(r)
7398+
if err != nil || localVarHttpResponse == nil {
7399+
return localVarReturnValue, localVarHttpResponse, err
7400+
}
7401+
defer localVarHttpResponse.Body.Close()
7402+
if localVarHttpResponse.StatusCode >= 300 {
7403+
bodyBytes, _ := ioutil.ReadAll(localVarHttpResponse.Body)
7404+
return localVarReturnValue, localVarHttpResponse, reportError("Status: %v, Body: %s", localVarHttpResponse.Status, bodyBytes)
7405+
}
7406+
if err = json.NewDecoder(localVarHttpResponse.Body).Decode(&localVarReturnValue); err != nil {
7407+
return localVarReturnValue, localVarHttpResponse, err
7408+
}
7409+
7410+
return localVarReturnValue, localVarHttpResponse, err
7411+
}
7412+
7413+
73867414
func (a *CellsApiService) GetWorkbookDefaultStyle(data *GetWorkbookDefaultStyleRequest) ( StyleResponse, *http.Response, error) {
73877415
var (
73887416
localVarReturnValue StyleResponse

client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/** --------------------------------------------------------------------------------------------------------------------
22
* <copyright company="Aspose" file="client.go">
3-
* Copyright (c) 2024 Aspose.Cells Cloud
3+
* Copyright (c) 2025 Aspose.Cells Cloud
44
* </copyright>
55
* <summary>
66
* Permission is hereby granted, free of charge, to any person obtaining a copy

configuration.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/** --------------------------------------------------------------------------------------------------------------------
22
* <copyright company="Aspose" file="configuration.go">
3-
* Copyright (c) 2024 Aspose.Cells Cloud
3+
* Copyright (c) 2025 Aspose.Cells Cloud
44
* </copyright>
55
* <summary>
66
* Permission is hereby granted, free of charge, to any person obtaining a copy

go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
module github.com/aspose-cells-cloud/aspose-cells-cloud-go/v24
1+
module github.com/aspose-cells-cloud/aspose-cells-cloud-go/v25
22

33
go 1.15
44

5-
5+
require (
6+
github.com/jstemmer/go-junit-report v0.9.1 // indirect
7+
)

model_above_average.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/** --------------------------------------------------------------------------------------------------------------------
22
* <copyright company="Aspose" file="AboveAverage.go">
3-
* Copyright (c) 2024 Aspose.Cells Cloud
3+
* Copyright (c) 2025 Aspose.Cells Cloud
44
* </copyright>
55
* <summary>
66
* Permission is hereby granted, free of charge, to any person obtaining a copy

model_abstract_calculation_engine.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/** --------------------------------------------------------------------------------------------------------------------
22
* <copyright company="Aspose" file="AbstractCalculationEngine.go">
3-
* Copyright (c) 2024 Aspose.Cells Cloud
3+
* Copyright (c) 2025 Aspose.Cells Cloud
44
* </copyright>
55
* <summary>
66
* Permission is hereby granted, free of charge, to any person obtaining a copy

model_abstract_calculation_monitor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/** --------------------------------------------------------------------------------------------------------------------
22
* <copyright company="Aspose" file="AbstractCalculationMonitor.go">
3-
* Copyright (c) 2024 Aspose.Cells Cloud
3+
* Copyright (c) 2025 Aspose.Cells Cloud
44
* </copyright>
55
* <summary>
66
* Permission is hereby granted, free of charge, to any person obtaining a copy

0 commit comments

Comments
 (0)