Skip to content

Commit 48cb4fa

Browse files
committed
Release Aspose.Cells Cloud SDK 24.4.0
1 parent 88faa7b commit 48cb4fa

File tree

250 files changed

+1536
-337
lines changed

Some content is hidden

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

250 files changed

+1536
-337
lines changed

Aspose.Cells.Cloud.SDK.Examples/ExamplePostWorkbookImportXML.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
this.UploadFile( localName, remoteFolder + "/" + remoteName, "");
1616
this.UploadFile( dataXML, remoteFolder + "/data.xml", "");
1717

18-
var importXMLRequestXMLFileSource = new FileSource()
18+
var importXMLRequestXMLFileSource = new DataSource()
1919
{
20-
FileSourceType = "CloudFileSystem",
21-
FilePath = remoteFolder + "/data.xml"
20+
DataSourceType = "CloudFileSystem",
21+
DataPath = remoteFolder + "/data.xml"
2222
};
2323
var importXMLRequestImportPosition = new ImportPosition()
2424
{

Aspose.Cells.Cloud.SDK.Test/Api/CellsStatusControllerTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1010
// copies of the Software, and to permit persons to whom the Software is
1111
// furnished to do so, subject to the following conditions:
12-
//
12+
//
1313
// The above copyright notice and this permission notice shall be included in all
1414
// copies or substantial portions of the Software.
15-
//
15+
//
1616
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1717
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1818
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
@@ -25,7 +25,7 @@
2525

2626
namespace Aspose.Cells.Cloud.SDK.Tests.Api.Api
2727
{
28-
using Microsoft.VisualStudio.TestTools.UnitTesting;
28+
using Microsoft.VisualStudio.TestTools.UnitTesting;
2929
using Aspose.Cells.Cloud.SDK.Model;
3030
using Aspose.Cells.Cloud.SDK.Request;
3131
using System.Collections.Generic;
@@ -52,7 +52,7 @@ public void TestGetCellsCloudServicesHealthCheck()
5252
var request = new GetCellsCloudServicesHealthCheckRequest(
5353
);
5454
var actual = this.CellsApi.GetCellsCloudServicesHealthCheck(request);
55-
Assert.AreEqual("{\"Status\":\"Cells Cloud(v24.3.2) is working fine!\"}", actual);
55+
Assert.AreEqual("{\"Status\":\"Cells Cloud(v24.1.0) is working fine!\"}", actual);
5656
}
5757

5858
/// <summary>

Aspose.Cells.Cloud.SDK.Test/Api/XmlControllerTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,10 @@ public void TestPostWorkbookImportXML()
7272
this.UploadFile( localName, remoteFolder + "/" + remoteName, "");
7373
this.UploadFile( dataXML, remoteFolder + "/data.xml", "");
7474

75-
var importXMLRequestXMLFileSource = new FileSource()
75+
var importXMLRequestXMLFileSource = new DataSource()
7676
{
77-
FileSourceType = "CloudFileSystem",
78-
FilePath = remoteFolder + "/data.xml"
77+
DataSourceType = "CloudFileSystem",
78+
DataPath = remoteFolder + "/data.xml"
7979
};
8080
var importXMLRequestImportPosition = new ImportPosition()
8181
{

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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1665,6 +1665,19 @@ public FileInfo PostDeleteIncompleteRows(PostDeleteIncompleteRowsRequest requ
16651665

16661666

16671667

1668+
/// <summary>
1669+
/// Transform spreadsheet data is mainly used to pivot columns, unpivot columns.
1670+
/// </summary>
1671+
/// <param name="request">Request. <see cref="PostDataTransformationRequest" /></param>
1672+
public FileInfo PostDataTransformation(PostDataTransformationRequest request)
1673+
{
1674+
requestHandlers.ForEach(p => p.ProcessUrl(""));
1675+
var result = invoker.InvokeApiAsync< FileInfo >(request.CreateHttpRequest(BaseUri +"/" +Version, this.invoker.DefaultHeaderMap, this.requestHandlers)).Result;
1676+
return result;
1677+
}
1678+
1679+
1680+
16681681
/// <summary>
16691682
/// Retrieve descriptions of hyperlinks in the worksheet.
16701683
/// </summary>

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>24.3</AssemblyVersion>
21-
<FileVersion>24.3</FileVersion>
22-
<Version>24.3</Version>
20+
<AssemblyVersion>24.4</AssemblyVersion>
21+
<FileVersion>24.4</FileVersion>
22+
<Version>24.4</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, "24.3");
53+
this.AddDefaultHeader(AsposeClientVersionHeaderName, "24.4");
5454
this.requestHandlers = requestHandlers;
5555
}
5656

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,22 +35,22 @@ namespace Aspose.Cells.Cloud.SDK.Model
3535
using Newtonsoft.Json.Converters;
3636

3737
/// <summary>
38-
/// AnalyzeExcelRequest.
38+
///
3939
/// </summary>
4040
public class AnalyzeExcelRequest
4141
{
4242
/// <summary>
43-
/// Gets or sets Files.
43+
///
4444
/// </summary>
4545
public virtual IList<FileInfo> Files { get; set; }
4646

4747
/// <summary>
48-
/// Gets or sets NeedThumbnail.
48+
///
4949
/// </summary>
5050
public virtual bool? NeedThumbnail { get; set; }
5151

5252
/// <summary>
53-
/// Gets or sets BuildSuggestoinSheet.
53+
///
5454
/// </summary>
5555
public virtual bool? BuildSuggestoinSheet { get; set; }
5656

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ namespace Aspose.Cells.Cloud.SDK.Model
3535
using Newtonsoft.Json.Converters;
3636

3737
/// <summary>
38-
///
38+
/// Represents
3939
/// </summary>
4040
public class AnalyzeExcelResponse
4141
{

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ namespace Aspose.Cells.Cloud.SDK.Model
3535
using Newtonsoft.Json.Converters;
3636

3737
/// <summary>
38-
/// Area.
38+
///
3939
/// </summary>
4040
public class Area
4141
{
@@ -58,7 +58,7 @@ public class Area
5858
public virtual Color ForegroundColor { get; set; }
5959

6060
/// <summary>
61-
/// Gets or sets Format.
61+
///
6262
/// </summary>
6363
public virtual string Format { get; set; }
6464

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ namespace Aspose.Cells.Cloud.SDK.Model
3535
using Newtonsoft.Json.Converters;
3636

3737
/// <summary>
38-
/// AutoFilter.
38+
/// Represents autofiltering for the specified worksheet.
3939
/// </summary>
4040
public class AutoFilter : LinkElement
4141
{

0 commit comments

Comments
 (0)