Skip to content

Commit de6b312

Browse files
committed
Revert "Release Aspose.Cells Cloud SDK 24.5.0"
This reverts commit 20eb519.
1 parent 20eb519 commit de6b312

File tree

582 files changed

+1277
-1069
lines changed

Some content is hidden

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

582 files changed

+1277
-1069
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFrameworks>Net6;Net452;netstandard2.0</TargetFrameworks>
4+
<TargetFrameworks>Net6</TargetFrameworks>
55
<AssemblyName>Aspose.Cells.Cloud.SDK</AssemblyName>
66
<PackageId>Aspose.Cells-Cloud</PackageId>
77
<OutputType>Library</OutputType>
@@ -10,16 +10,16 @@
1010
<PackageProjectUrl>https://products.aspose.cloud/cells/family</PackageProjectUrl>
1111
<Company>Aspose</Company>
1212
<AssemblyTitle>Aspose.Cells Cloud SDK for .NET</AssemblyTitle>
13-
<Description>A powerful and fast Aspose.Cells cloud SDK library written in C# for manipulating and converting Excel(XLS, XLSX,XLSB), ODS, CSV,JSON and HTML files.</Description>
13+
<Description>New generation of Aspose.Cells Cloud SDK for .NET, written in C#, enables the creation, editing, and conversion of Excel (XLS, XLSX, XLSB), ODS, CSV, JSON, and HTML files through easy interaction with the Aspose.Cells Cloud REST API.</Description>
1414
<PackageReleaseNotes>https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/releases/tag/23.10</PackageReleaseNotes>
15-
<PackageTags>Cloud REST API Excel XLS XLSX XLSB CSV to PDF JPG PNG HTML ODS Numbers XLSM OOXML Spreadsheet Markdown XPS DOCX PPTX MHTML JSON SVG TIFF</PackageTags>
15+
<PackageTags>Cloud REST API Excel XLS XLSX XLSB CSV-to-PDF JPG PNG HTML ODS Numbers XLSM OOXML Spreadsheet Markdown XPS DOCX PPTX MHTML JSON SVG TIFF</PackageTags>
1616
<RepositoryURL>https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/</RepositoryURL>
1717
<RepositoryType>GitHub</RepositoryType>
1818
<Copyright>MIT</Copyright>
19-
<StyleCopTreatErrorsAsWarnings>false</StyleCopTreatErrorsAsWarnings>
20-
<AssemblyVersion>24.5</AssemblyVersion>
21-
<FileVersion>24.5</FileVersion>
22-
<Version>24.5</Version>
19+
<StyleCopTreatErrorsAsWarnings>false</StyleCopTreatErrorsAsWarnings>
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.5");
53+
this.AddDefaultHeader(AsposeClientVersionHeaderName, "24.4");
5454
this.requestHandlers = requestHandlers;
5555
}
5656

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public void ProcessResponse(HttpWebResponse response, Stream resultStream)
7878

7979
private void RequestToken()
8080
{
81-
var requestUrl ="https://id.aspose.cloud/connect/token";
81+
var requestUrl = baseApiUrl + "/connect/token";
8282

8383
var postData = "grant_type=client_credentials";
8484
postData += "&client_id=" + clientId;
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
// --------------------------------------------------------------------------------------------------------------------
2+
// <copyright company="Aspose" file="AnalyzeExcelResponse.cs">
3+
// Copyright (c) 2024 Aspose.Cells Cloud
4+
// </copyright>
5+
// <summary>
6+
// Permission is hereby granted, free of charge, to any person obtaining a copy
7+
// of this software and associated documentation files (the "Software"), to deal
8+
// in the Software without restriction, including without limitation the rights
9+
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
// copies of the Software, and to permit persons to whom the Software is
11+
// furnished to do so, subject to the following conditions:
12+
//
13+
// The above copyright notice and this permission notice shall be included in all
14+
// copies or substantial portions of the Software.
15+
//
16+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
// SOFTWARE.
23+
// </summary>
24+
// --------------------------------------------------------------------------------------------------------------------
25+
26+
namespace Aspose.Cells.Cloud.SDK.Model
27+
{
28+
using System;
29+
using System.Collections;
30+
using System.Collections.Generic;
31+
using System.Runtime.Serialization;
32+
using System.Text;
33+
using System.Drawing;
34+
using Newtonsoft.Json;
35+
using Newtonsoft.Json.Converters;
36+
37+
/// <summary>
38+
/// Represents
39+
/// </summary>
40+
public class AnalyzeExcelResponse
41+
{
42+
/// <summary>
43+
///
44+
/// </summary>
45+
public virtual IList<AnalyzeSuggestion> Suggestions { get; set; }
46+
47+
/// <summary>
48+
/// Get the string presentation of the object.
49+
/// </summary>
50+
/// <returns>String presentation of the object.</returns>
51+
public override string ToString()
52+
{
53+
var sb = new StringBuilder();
54+
sb.Append("class AnalyzeExcelResponse {\n");
55+
sb.Append(" Suggestions: ").Append(this.Suggestions).Append("\n");
56+
sb.Append("}\n");
57+
return sb.ToString();
58+
}
59+
}
60+
}

Aspose.Cells.Cloud.SDK/Model/MergeQueries.cs renamed to Aspose.Cells.Cloud.SDK/Model/AnalyzeSuggestion.cs

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

3737
/// <summary>
38-
/// Represents merge quesies.
38+
///
3939
/// </summary>
40-
public class MergeQueries
40+
public class AnalyzeSuggestion
4141
{
42-
/// <summary>
43-
/// Indicates the source of the mount data.
44-
/// </summary>
45-
public virtual DataSource DataSourceA { get; set; }
46-
4742
/// <summary>
4843
///
4944
/// </summary>
50-
public virtual FileInfo FileInfoA { get; set; }
45+
public virtual string Name { get; set; }
5146

5247
/// <summary>
53-
/// Represents data item.
48+
/// Excel file name.
5449
/// </summary>
55-
public virtual DataItem DataItemA { get; set; }
50+
public virtual string Filename { get; set; }
5651

5752
/// <summary>
58-
/// Represents index field of DataA
53+
/// The worksheet where the data is aAnalyzed.
5954
/// </summary>
60-
public virtual string DataAIndexField { get; set; }
55+
public virtual string SheetName { get; set; }
6156

6257
/// <summary>
63-
/// Indicates the source of the mount data.
58+
/// The type of data being analyzed.
6459
/// </summary>
65-
public virtual DataSource DataSourceB { get; set; }
60+
public virtual string DateSourceType { get; set; }
6661

6762
/// <summary>
68-
///
63+
/// Based on the results of the data analysis, suggestions for creating new data types are given.
6964
/// </summary>
70-
public virtual FileInfo FileInfoB { get; set; }
65+
public virtual string SuggestedOutputType { get; set; }
7166

7267
/// <summary>
73-
/// Represents data item.
68+
/// Based on the results of the data analysis, a business description of the new data object is created.
7469
/// </summary>
75-
public virtual DataItem DataItemB { get; set; }
70+
public virtual string Description { get; set; }
7671

7772
/// <summary>
78-
/// Represents index field of DataB
73+
///
7974
/// </summary>
80-
public virtual string DataBIndexField { get; set; }
75+
public virtual string DataSouceThumbnail { get; set; }
8176

8277
/// <summary>
8378
///
8479
/// </summary>
85-
public virtual string JoinType { get; set; }
80+
public virtual string Thumbnail { get; set; }
8681

8782
/// <summary>
8883
/// Get the string presentation of the object.
@@ -91,16 +86,15 @@ public class MergeQueries
9186
public override string ToString()
9287
{
9388
var sb = new StringBuilder();
94-
sb.Append("class MergeQueries {\n");
95-
sb.Append(" DataSourceA: ").Append(this.DataSourceA).Append("\n");
96-
sb.Append(" FileInfoA: ").Append(this.FileInfoA).Append("\n");
97-
sb.Append(" DataItemA: ").Append(this.DataItemA).Append("\n");
98-
sb.Append(" DataAIndexField: ").Append(this.DataAIndexField).Append("\n");
99-
sb.Append(" DataSourceB: ").Append(this.DataSourceB).Append("\n");
100-
sb.Append(" FileInfoB: ").Append(this.FileInfoB).Append("\n");
101-
sb.Append(" DataItemB: ").Append(this.DataItemB).Append("\n");
102-
sb.Append(" DataBIndexField: ").Append(this.DataBIndexField).Append("\n");
103-
sb.Append(" JoinType: ").Append(this.JoinType).Append("\n");
89+
sb.Append("class AnalyzeSuggestion {\n");
90+
sb.Append(" Name: ").Append(this.Name).Append("\n");
91+
sb.Append(" Filename: ").Append(this.Filename).Append("\n");
92+
sb.Append(" SheetName: ").Append(this.SheetName).Append("\n");
93+
sb.Append(" DateSourceType: ").Append(this.DateSourceType).Append("\n");
94+
sb.Append(" SuggestedOutputType: ").Append(this.SuggestedOutputType).Append("\n");
95+
sb.Append(" Description: ").Append(this.Description).Append("\n");
96+
sb.Append(" DataSouceThumbnail: ").Append(this.DataSouceThumbnail).Append("\n");
97+
sb.Append(" Thumbnail: ").Append(this.Thumbnail).Append("\n");
10498
sb.Append("}\n");
10599
return sb.ToString();
106100
}

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

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

3737
/// <summary>
38-
/// Represents description of analyzed column.
38+
/// How to use the properties of each column: currently divided into timeline, product line, numerical statistics line
39+
/// How to present the product, a unified plan
40+
/// How to solve the problem of full digital?
41+
/// Full text How to solve it?
42+
/// Two columns: Text, Number is the easiest
43+
/// Three columns: Text, Text, Number
44+
/// text, number, number --- date date ; Date Numeric ; Numeric Digital
45+
/// What about four columns, five columns?
3946
/// </summary>
4047
public class AnalyzedColumnDescription
4148
{

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

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

3737
/// <summary>
38-
/// Represents results of analyzed data.
38+
///
3939
/// </summary>
4040
public class AnalyzedResult
4141
{
4242
/// <summary>
43-
/// Represents the file name of data file.
43+
///
4444
/// </summary>
4545
public virtual string Filename { get; set; }
4646

4747
/// <summary>
48-
/// Represents summary about results of analyzed data.
48+
///
4949
/// </summary>
5050
public virtual string Description { get; set; }
5151

5252
/// <summary>
53-
/// Represents Excel data statistics.
53+
///
5454
/// </summary>
5555
public virtual ExcelDataStatistics BasicStatistics { get; set; }
5656

5757
/// <summary>
58-
/// Represents analyzed table description.
58+
///
5959
/// </summary>
6060
public virtual IList<AnalyzedTableDescription> Results { get; set; }
6161

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

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

3737
/// <summary>
38-
/// Represents analyzed table description.
38+
///
3939
/// </summary>
4040
public class AnalyzedTableDescription
4141
{
4242
/// <summary>
43-
/// Represents table name.
43+
///
4444
/// </summary>
4545
public virtual string Name { get; set; }
4646

4747
/// <summary>
48-
/// Represents worksheet name which is where the table is located.
48+
///
4949
/// </summary>
5050
public virtual string SheetName { get; set; }
5151

5252
/// <summary>
53-
/// Represents analyzed description about table columns.
53+
///
5454
/// </summary>
5555
public virtual IList<AnalyzedColumnDescription> Columns { get; set; }
5656

5757
/// <summary>
58-
/// Represents date columns list.
58+
///
5959
/// </summary>
6060
public virtual IList<int?> DateColumns { get; set; }
6161

6262
/// <summary>
63-
/// Represents number columns list.
63+
///
6464
/// </summary>
6565
public virtual IList<int?> NumberColumns { get; set; }
6666

6767
/// <summary>
68-
/// Represents string columns list.
68+
///
6969
/// </summary>
7070
public virtual IList<int?> TextColumns { get; set; }
7171

7272
/// <summary>
73-
/// Represents exception columns list.
73+
///
7474
/// </summary>
7575
public virtual IList<int?> ExceptionColumns { get; set; }
7676

7777
/// <summary>
78-
/// Represents there is a table header in the table.
78+
///
7979
/// </summary>
8080
public virtual bool? HasTableHeaderRow { get; set; }
8181

8282
/// <summary>
83-
/// Represents there is a total row in the table.
83+
///
8484
/// </summary>
8585
public virtual bool? HasTableTotalRow { get; set; }
8686

8787
/// <summary>
88-
/// Represents the column index as the start data column.
88+
///
8989
/// </summary>
9090
public virtual int? StartDataColumnIndex { get; set; }
9191

9292
/// <summary>
93-
/// Represents the column index as the end data column.
93+
///
9494
/// </summary>
9595
public virtual int? EndDataColumnIndex { get; set; }
9696

9797
/// <summary>
98-
/// Represents the row index as the start data row.
98+
///
9999
/// </summary>
100100
public virtual int? StartDataRowIndex { get; set; }
101101

102102
/// <summary>
103-
/// Represents the row index as the end data row.
103+
///
104104
/// </summary>
105105
public virtual int? EndDataRowIndex { get; set; }
106106

107107
/// <summary>
108-
/// Represents table thumbnail. Base64String
108+
/// Base64String
109109
/// </summary>
110110
public virtual string Thumbnail { get; set; }
111111

112112
/// <summary>
113-
/// Represents a collection of charts, which is a collection of charts created based on data analysis of a table.
113+
///
114114
/// </summary>
115115
public virtual IList<DiscoverChart> DiscoverCharts { get; set; }
116116

117117
/// <summary>
118-
/// Represents a collection of pivot tables, which is a collection of pivot tables created based on data analysis of a table.
118+
///
119119
/// </summary>
120120
public virtual IList<DiscoverPivotTable> DiscoverPivotTables { get; set; }
121121

Aspose.Cells.Cloud.SDK/Model/ArcShape.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-
/// Represents the arc shape.
38+
///
3939
/// </summary>
4040
public class ArcShape : Shape
4141
{

Aspose.Cells.Cloud.SDK/Model/ArcShapeResponse.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-
/// Represents the ArcShape Response.
38+
///
3939
/// </summary>
4040
public class ArcShapeResponse : CellsCloudResponse
4141
{

0 commit comments

Comments
 (0)