Skip to content

Commit 5d06a18

Browse files
committed
ISSUE-CELLSCLOUD-13424: Development of cells cloud sdk 25.9.
1 parent 139bd08 commit 5d06a18

File tree

67 files changed

+1312
-378
lines changed

Some content is hidden

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

67 files changed

+1312
-378
lines changed

Aspose.Cells.Cloud.SDK/Api/CellsApi.cs

Lines changed: 152 additions & 25 deletions
Large diffs are not rendered by default.

Aspose.Cells.Cloud.SDK/Aspose.Cells.Cloud.SDK.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
<RepositoryType>GitHub</RepositoryType>
1818
<Copyright>MIT</Copyright>
1919
<StyleCopTreatErrorsAsWarnings>false</StyleCopTreatErrorsAsWarnings>
20-
<AssemblyVersion>25.8</AssemblyVersion>
21-
<FileVersion>25.8</FileVersion>
22-
<Version>25.8</Version>
20+
<AssemblyVersion>25.9</AssemblyVersion>
21+
<FileVersion>25.9</FileVersion>
22+
<Version>25.9</Version>
2323
<PackageReadmeFile>README.md</PackageReadmeFile>
2424

2525
</PropertyGroup>

Aspose.Cells.Cloud.SDK/Infrastructure/Invoker/ApiInvoker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ internal class ApiInvoker
5050
internal ApiInvoker(List<IRequestHandler> requestHandlers)
5151
{
5252
this.AddDefaultHeader(AsposeClientHeaderName, ".net sdk");
53-
this.AddDefaultHeader(AsposeClientVersionHeaderName, "25.8");
53+
this.AddDefaultHeader(AsposeClientVersionHeaderName, "25.9");
5454
this.requestHandlers = requestHandlers;
5555
}
5656

Aspose.Cells.Cloud.SDK/Model/AggregateResultByColor.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,6 @@ public class AggregateResultByColor
7474
/// </summary>
7575
public virtual double? AverageValue { get; set; }
7676

77-
/// <summary>
78-
/// Gets or sets Value.
79-
/// </summary>
80-
public virtual double? Value { get; set; }
81-
8277
/// <summary>
8378
/// Get the string presentation of the object.
8479
/// </summary>
@@ -94,7 +89,6 @@ public override string ToString()
9489
sb.Append(" MaxValue: ").Append(this.MaxValue).Append("\n");
9590
sb.Append(" MinValue: ").Append(this.MinValue).Append("\n");
9691
sb.Append(" AverageValue: ").Append(this.AverageValue).Append("\n");
97-
sb.Append(" Value: ").Append(this.Value).Append("\n");
9892
sb.Append("}\n");
9993
return sb.ToString();
10094
}

Aspose.Cells.Cloud.SDK/Model/BrokenLinksReponse.cs renamed to Aspose.Cells.Cloud.SDK/Model/BrokenLinksResponse.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// --------------------------------------------------------------------------------------------------------------------
2-
// <copyright company="Aspose" file="BrokenLinksReponse.cs">
2+
// <copyright company="Aspose" file="BrokenLinksResponse.cs">
33
// Copyright (c) 2025 Aspose.Cells Cloud
44
// </copyright>
55
// <summary>
@@ -35,9 +35,9 @@ namespace Aspose.Cells.Cloud.SDK.Model
3535
using Newtonsoft.Json.Converters;
3636

3737
/// <summary>
38-
/// BrokenLinksReponse.
38+
/// BrokenLinksResponse.
3939
/// </summary>
40-
public class BrokenLinksReponse : CellsCloudResponse
40+
public class BrokenLinksResponse : CellsCloudResponse
4141
{
4242
/// <summary>
4343
/// Gets or sets BrokenLinks.
@@ -61,7 +61,7 @@ public class BrokenLinksReponse : CellsCloudResponse
6161
public override string ToString()
6262
{
6363
var sb = new StringBuilder();
64-
sb.Append("class BrokenLinksReponse {\n");
64+
sb.Append("class BrokenLinksResponse {\n");
6565
sb.Append(" BrokenLinks: ").Append(this.BrokenLinks).Append("\n");
6666
sb.Append(" Code: ").Append(this.Code).Append("\n");
6767
sb.Append(" Status: ").Append(this.Status).Append("\n");

Aspose.Cells.Cloud.SDK/Request/AddWorksheetToSpreadsheetRequest.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,17 +53,17 @@ public AddWorksheetToSpreadsheetRequest()
5353
/// <param name="sheetName">Specifies the type of worksheet to be added.If not provided, a default worksheet type will be used.</param>
5454
/// <param name="outPath">(Optional) The folder path where the workbook is stored. The default is null.</param>
5555
/// <param name="outStorageName">Output file Storage Name.</param>
56-
/// <param name="regoin">The spreadsheet region setting.</param>
56+
/// <param name="region">The spreadsheet region setting.</param>
5757
/// <param name="password">The password for opening spreadsheet file.</param>
58-
public AddWorksheetToSpreadsheetRequest(string spreadsheet, string sheetType = null, int? position = null, string sheetName = null, string outPath = null, string outStorageName = null, string regoin = null, string password = null)
58+
public AddWorksheetToSpreadsheetRequest(string spreadsheet, string sheetType = null, int? position = null, string sheetName = null, string outPath = null, string outStorageName = null, string region = null, string password = null)
5959
{
6060
this.Spreadsheet = spreadsheet;
6161
this.sheetType = sheetType;
6262
this.position = position;
6363
this.sheetName = sheetName;
6464
this.outPath = outPath;
6565
this.outStorageName = outStorageName;
66-
this.regoin = regoin;
66+
this.region = region;
6767
this.password = password;
6868
}
6969

@@ -106,7 +106,7 @@ public AddWorksheetToSpreadsheetRequest(string spreadsheet, string sheetType =
106106
/// <summary>
107107
/// The spreadsheet region setting.
108108
/// </summary>
109-
public string regoin { get; set; }
109+
public string region { get; set; }
110110

111111

112112
/// <summary>
@@ -148,7 +148,7 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
148148
if (!string.IsNullOrEmpty(this.sheetName)) path = UrlHelper.AddQueryParameterToUrl(path, "sheetName", this.sheetName);
149149
if (!string.IsNullOrEmpty(this.outPath)) path = UrlHelper.AddQueryParameterToUrl(path, "outPath", this.outPath);
150150
if (!string.IsNullOrEmpty(this.outStorageName)) path = UrlHelper.AddQueryParameterToUrl(path, "outStorageName", this.outStorageName);
151-
if (!string.IsNullOrEmpty(this.regoin)) path = UrlHelper.AddQueryParameterToUrl(path, "regoin", this.regoin);
151+
if (!string.IsNullOrEmpty(this.region)) path = UrlHelper.AddQueryParameterToUrl(path, "region", this.region);
152152
if (!string.IsNullOrEmpty(this.password)) path = UrlHelper.AddQueryParameterToUrl(path, "password", this.password);
153153
if (this.extendQueryParameterMap != null)
154154
{

Aspose.Cells.Cloud.SDK/Request/AggregateCellsByColorRequest.cs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -48,20 +48,20 @@ public AggregateCellsByColorRequest()
4848
/// Initializes a new instance of the <see cref="AggregateCellsByColorRequest"/> class.
4949
/// </summary>
5050
/// <param name="spreadsheet">Upload spreadsheet file.</param>
51-
/// <param name="worksheet"></param>
52-
/// <param name="range"></param>
53-
/// <param name="operation"></param>
54-
/// <param name="colorPosition"></param>
55-
/// <param name="regoin">The spreadsheet region setting.</param>
51+
/// <param name="worksheet">Specified worksheet.</param>
52+
/// <param name="range">Specified range.</param>
53+
/// <param name="operation">Specify calculation operation methods, including Sum, Count, Average, Min, and Max.</param>
54+
/// <param name="colorPosition">Indicates the content to sum and count based on background color and/or font color.</param>
55+
/// <param name="region">The spreadsheet region setting.</param>
5656
/// <param name="password">The password for opening spreadsheet file.</param>
57-
public AggregateCellsByColorRequest(string spreadsheet, string worksheet = null, string range = null, string operation = null, string colorPosition = null, string regoin = null, string password = null)
57+
public AggregateCellsByColorRequest(string spreadsheet, string worksheet = null, string range = null, string operation = null, string colorPosition = null, string region = null, string password = null)
5858
{
5959
this.Spreadsheet = spreadsheet;
6060
this.worksheet = worksheet;
6161
this.range = range;
6262
this.operation = operation;
6363
this.colorPosition = colorPosition;
64-
this.regoin = regoin;
64+
this.region = region;
6565
this.password = password;
6666
}
6767

@@ -72,33 +72,33 @@ public AggregateCellsByColorRequest(string spreadsheet, string worksheet = nul
7272

7373

7474
/// <summary>
75-
/// Gets or sets worksheet.
75+
/// Specified worksheet.
7676
/// </summary>
7777
public string worksheet { get; set; }
7878

7979

8080
/// <summary>
81-
/// Gets or sets range.
81+
/// Specified range.
8282
/// </summary>
8383
public string range { get; set; }
8484

8585

8686
/// <summary>
87-
/// Gets or sets operation.
87+
/// Specify calculation operation methods, including Sum, Count, Average, Min, and Max.
8888
/// </summary>
8989
public string operation { get; set; }
9090

9191

9292
/// <summary>
93-
/// Gets or sets colorPosition.
93+
/// Indicates the content to sum and count based on background color and/or font color.
9494
/// </summary>
9595
public string colorPosition { get; set; }
9696

9797

9898
/// <summary>
9999
/// The spreadsheet region setting.
100100
/// </summary>
101-
public string regoin { get; set; }
101+
public string region { get; set; }
102102

103103

104104
/// <summary>
@@ -139,7 +139,7 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
139139
if (!string.IsNullOrEmpty(this.range)) path = UrlHelper.AddQueryParameterToUrl(path, "range", this.range);
140140
if (!string.IsNullOrEmpty(this.operation)) path = UrlHelper.AddQueryParameterToUrl(path, "operation", this.operation);
141141
if (!string.IsNullOrEmpty(this.colorPosition)) path = UrlHelper.AddQueryParameterToUrl(path, "colorPosition", this.colorPosition);
142-
if (!string.IsNullOrEmpty(this.regoin)) path = UrlHelper.AddQueryParameterToUrl(path, "regoin", this.regoin);
142+
if (!string.IsNullOrEmpty(this.region)) path = UrlHelper.AddQueryParameterToUrl(path, "region", this.region);
143143
if (!string.IsNullOrEmpty(this.password)) path = UrlHelper.AddQueryParameterToUrl(path, "password", this.password);
144144
if (this.extendQueryParameterMap != null)
145145
{

Aspose.Cells.Cloud.SDK/Request/CodegenSpecRequest.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,18 +47,18 @@ public CodegenSpecRequest()
4747
/// <summary>
4848
/// Initializes a new instance of the <see cref="CodegenSpecRequest"/> class.
4949
/// </summary>
50-
/// <param name="regoin">The spreadsheet region setting.</param>
50+
/// <param name="region">The spreadsheet region setting.</param>
5151
/// <param name="password">The password for opening spreadsheet file.</param>
52-
public CodegenSpecRequest(string regoin = null, string password = null)
52+
public CodegenSpecRequest(string region = null, string password = null)
5353
{
54-
this.regoin = regoin;
54+
this.region = region;
5555
this.password = password;
5656
}
5757

5858
/// <summary>
5959
/// The spreadsheet region setting.
6060
/// </summary>
61-
public string regoin { get; set; }
61+
public string region { get; set; }
6262

6363

6464
/// <summary>
@@ -89,7 +89,7 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
8989
.Replace("&amp;", "&")
9090
.Replace("/?", "?");
9191

92-
if (!string.IsNullOrEmpty(this.regoin)) path = UrlHelper.AddQueryParameterToUrl(path, "regoin", this.regoin);
92+
if (!string.IsNullOrEmpty(this.region)) path = UrlHelper.AddQueryParameterToUrl(path, "region", this.region);
9393
if (!string.IsNullOrEmpty(this.password)) path = UrlHelper.AddQueryParameterToUrl(path, "password", this.password);
9494
if (this.extendQueryParameterMap != null)
9595
{

Aspose.Cells.Cloud.SDK/Request/CompressSpreadsheetRequest.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@ public CompressSpreadsheetRequest()
5151
/// <param name="level">Specifies the compression level to be applied to the spreadsheet. The level should be within a valid range (e.g., 0-9 for most compression algorithms, where 0 is no compression and 9 is maximum compression).</param>
5252
/// <param name="outPath">(Optional) The folder path where the workbook is stored. The default is null.</param>
5353
/// <param name="outStorageName">Output file Storage Name.</param>
54-
/// <param name="regoin">The spreadsheet region setting.</param>
54+
/// <param name="region">The spreadsheet region setting.</param>
5555
/// <param name="password">The password for opening spreadsheet file.</param>
56-
public CompressSpreadsheetRequest(string spreadsheet, int? level, string outPath = null, string outStorageName = null, string regoin = null, string password = null)
56+
public CompressSpreadsheetRequest(string spreadsheet, int? level, string outPath = null, string outStorageName = null, string region = null, string password = null)
5757
{
5858
this.Spreadsheet = spreadsheet;
5959
this.level = level;
6060
this.outPath = outPath;
6161
this.outStorageName = outStorageName;
62-
this.regoin = regoin;
62+
this.region = region;
6363
this.password = password;
6464
}
6565

@@ -90,7 +90,7 @@ public CompressSpreadsheetRequest(string spreadsheet, int? level, string outP
9090
/// <summary>
9191
/// The spreadsheet region setting.
9292
/// </summary>
93-
public string regoin { get; set; }
93+
public string region { get; set; }
9494

9595

9696
/// <summary>
@@ -136,7 +136,7 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
136136
path = UrlHelper.AddQueryParameterToUrl(path, "level", this.level);
137137
if (!string.IsNullOrEmpty(this.outPath)) path = UrlHelper.AddQueryParameterToUrl(path, "outPath", this.outPath);
138138
if (!string.IsNullOrEmpty(this.outStorageName)) path = UrlHelper.AddQueryParameterToUrl(path, "outStorageName", this.outStorageName);
139-
if (!string.IsNullOrEmpty(this.regoin)) path = UrlHelper.AddQueryParameterToUrl(path, "regoin", this.regoin);
139+
if (!string.IsNullOrEmpty(this.region)) path = UrlHelper.AddQueryParameterToUrl(path, "region", this.region);
140140
if (!string.IsNullOrEmpty(this.password)) path = UrlHelper.AddQueryParameterToUrl(path, "password", this.password);
141141
if (this.extendQueryParameterMap != null)
142142
{

Aspose.Cells.Cloud.SDK/Request/ConvertChartToImageRequest.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ public ConvertChartToImageRequest()
5454
/// <param name="outPath">(Optional) The folder path where the workbook is stored. The default is null.</param>
5555
/// <param name="outStorageName">Output file Storage Name.</param>
5656
/// <param name="fontsLocation">Use Custom fonts.</param>
57-
/// <param name="regoin">The spreadsheet region setting.</param>
57+
/// <param name="region">The spreadsheet region setting.</param>
5858
/// <param name="password">The password for opening spreadsheet file.</param>
59-
public ConvertChartToImageRequest(string spreadsheet, string worksheet, int? chartIndex, string format, string outPath = null, string outStorageName = null, string fontsLocation = null, string regoin = null, string password = null)
59+
public ConvertChartToImageRequest(string spreadsheet, string worksheet, int? chartIndex, string format, string outPath = null, string outStorageName = null, string fontsLocation = null, string region = null, string password = null)
6060
{
6161
this.Spreadsheet = spreadsheet;
6262
this.worksheet = worksheet;
@@ -65,7 +65,7 @@ public ConvertChartToImageRequest(string spreadsheet, string worksheet, int?
6565
this.outPath = outPath;
6666
this.outStorageName = outStorageName;
6767
this.fontsLocation = fontsLocation;
68-
this.regoin = regoin;
68+
this.region = region;
6969
this.password = password;
7070
}
7171

@@ -114,7 +114,7 @@ public ConvertChartToImageRequest(string spreadsheet, string worksheet, int?
114114
/// <summary>
115115
/// The spreadsheet region setting.
116116
/// </summary>
117-
public string regoin { get; set; }
117+
public string region { get; set; }
118118

119119

120120
/// <summary>
@@ -175,7 +175,7 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
175175
if (!string.IsNullOrEmpty(this.outPath)) path = UrlHelper.AddQueryParameterToUrl(path, "outPath", this.outPath);
176176
if (!string.IsNullOrEmpty(this.outStorageName)) path = UrlHelper.AddQueryParameterToUrl(path, "outStorageName", this.outStorageName);
177177
if (!string.IsNullOrEmpty(this.fontsLocation)) path = UrlHelper.AddQueryParameterToUrl(path, "fontsLocation", this.fontsLocation);
178-
if (!string.IsNullOrEmpty(this.regoin)) path = UrlHelper.AddQueryParameterToUrl(path, "regoin", this.regoin);
178+
if (!string.IsNullOrEmpty(this.region)) path = UrlHelper.AddQueryParameterToUrl(path, "region", this.region);
179179
if (!string.IsNullOrEmpty(this.password)) path = UrlHelper.AddQueryParameterToUrl(path, "password", this.password);
180180
if (this.extendQueryParameterMap != null)
181181
{

0 commit comments

Comments
 (0)