Skip to content

Commit f21195e

Browse files
committed
Release Aspose.Cells Cloud SDK 22.2
1 parent 22c6bab commit f21195e

File tree

7 files changed

+109
-113
lines changed

7 files changed

+109
-113
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ public void CellsPostSetCellHtmlStringTest()
552552
string htmlString = "https://api.aspose.cloud/v3.0/cells";
553553
UpdateDataFile(instance,TEMPFOLDER, BOOK1);
554554
var response = instance.CellsPostSetCellHtmlString(name, sheetName, cellName, System.Text.Encoding.Default.GetBytes(htmlString),folder);
555-
Assert.IsInstanceOf<CellResponse>(response, "response is CellResponse");
555+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is CellResponse");
556556
Assert.AreEqual(response.Status, "OK");
557557
}
558558

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public void CellsWorksheetsDeleteUnprotectWorksheetTest()
5959
string folder = TEMPFOLDER;
6060
UpdateDataFile(instance,folder, name);
6161
var response = instance.CellsWorksheetsDeleteUnprotectWorksheet(name, sheetName, protectParameter, folder);
62-
Assert.IsInstanceOf<WorksheetResponse>(response, "response is WorksheetResponse");
62+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is WorksheetResponse");
6363
Assert.AreEqual(response.Code, 200);
6464
}
6565

@@ -451,7 +451,7 @@ public void CellsWorksheetsPostUpdateWorksheetPropertyTest()
451451
string folder = TEMPFOLDER;
452452
UpdateDataFile(instance,folder, name);
453453
var response = instance.CellsWorksheetsPostUpdateWorksheetProperty(name, sheetName, sheet, folder);
454-
Assert.IsInstanceOf<WorksheetResponse>(response, "response is WorksheetResponse");
454+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is WorksheetResponse");
455455
Assert.AreEqual(response.Code, 200);
456456
}
457457

@@ -541,7 +541,7 @@ public void CellsWorksheetsPostWorsheetTextReplaceTest()
541541
string folder = TEMPFOLDER;
542542
UpdateDataFile(instance,folder, name);
543543
var response = instance.CellsWorksheetsPostWorsheetTextReplace(name, sheetName, oldValue, newValue, folder);
544-
Assert.IsInstanceOf<WorksheetReplaceResponse>(response, "response is WorksheetReplaceResponse");
544+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is WorksheetReplaceResponse");
545545
Assert.AreEqual(response.Code, 200);
546546
}
547547

@@ -596,7 +596,7 @@ public void CellsWorksheetsPutProtectWorksheetTest()
596596
string folder = TEMPFOLDER;
597597
UpdateDataFile(instance,folder, name);
598598
var response = instance.CellsWorksheetsPutProtectWorksheet(name, sheetName, protectParameter, folder);
599-
Assert.IsInstanceOf<WorksheetResponse>(response, "response is WorksheetResponse");
599+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is WorksheetResponse");
600600
Assert.AreEqual(response.Code, 200);
601601
}
602602

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

Lines changed: 88 additions & 88 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
@@ -11,9 +11,9 @@
1111
<Description>This SDK allows you to work with Aspose.Cells Cloud REST APIs in your .NET applications quickly and easily, with zero initial cost.</Description>
1212
<Copyright>MIT</Copyright>
1313
<StyleCopTreatErrorsAsWarnings>false</StyleCopTreatErrorsAsWarnings>
14-
<AssemblyVersion>22.1</AssemblyVersion>
15-
<FileVersion>22.1</FileVersion>
16-
<Version>22.1</Version>
14+
<AssemblyVersion>22.2</AssemblyVersion>
15+
<FileVersion>22.2</FileVersion>
16+
<Version>22.2</Version>
1717
</PropertyGroup>
1818

1919
<ItemGroup>

Aspose.Cells.Cloud.SDK/Client/Configuration.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public Configuration(ApiClient apiClient = null,
5959
string tempFolderPath = null,
6060
string dateTimeFormat = null,
6161
int timeout = 100000,
62-
string userAgent = "Swagger-Codegen/22.1/csharp"
62+
string userAgent = "Swagger-Codegen/22.2/csharp"
6363
)
6464
{
6565
setApiClientUsingDefault(apiClient);
@@ -94,7 +94,7 @@ public Configuration(ApiClient apiClient)
9494
/// Version of the package.
9595
/// </summary>
9696
/// <value>Version of the package.</value>
97-
public const string Version = "22.1";
97+
public const string Version = "22.2";
9898

9999
/// <summary>
100100
/// Gets or sets the default Configuration.
@@ -338,7 +338,7 @@ public static String ToDebugReport()
338338
.GetExecutingAssembly()
339339
.GetReferencedAssemblies()
340340
.Where(x => x.Name == "System.Core").First().Version.ToString() + "\n";
341-
report += " SDK Package Version: 22.1\n";
341+
report += " SDK Package Version: 22.2\n";
342342

343343
return report;
344344
}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public class RangeSetOutlineBorderRequest
4242
/// <summary>
4343
/// Gets or sets BorderColor
4444
/// </summary>
45-
[DataMember(Name="borderColor", EmitDefaultValue=false)]
45+
[DataMember(Name="BorderColor", EmitDefaultValue=false)]
4646
public Color BorderColor { get; set; }
4747

4848
/// <summary>
@@ -54,13 +54,13 @@ public class RangeSetOutlineBorderRequest
5454
/// <summary>
5555
/// Gets or sets BorderStyle
5656
/// </summary>
57-
[DataMember(Name="borderStyle", EmitDefaultValue=false)]
57+
[DataMember(Name="BorderStyle", EmitDefaultValue=false)]
5858
public string BorderStyle { get; set; }
5959

6060
/// <summary>
6161
/// Gets or sets BorderEdge
6262
/// </summary>
63-
[DataMember(Name="borderEdge", EmitDefaultValue=false)]
63+
[DataMember(Name="BorderEdge", EmitDefaultValue=false)]
6464
public string BorderEdge { get; set; }
6565

6666
/// <summary>

README.md

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![Nuget](https://img.shields.io/nuget/v/Aspose.Cells-Cloud) ![Nuget](https://img.shields.io/nuget/dt/Aspose.Cells-Cloud) ![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-dotnet)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-dotnet/22.1)
1+
![Nuget](https://img.shields.io/nuget/v/Aspose.Cells-Cloud) ![Nuget](https://img.shields.io/nuget/dt/Aspose.Cells-Cloud) ![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-dotnet)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-dotnet/22.2)
22

33
# .NET SDK for Spreadsheet Processing in the Cloud
44

@@ -21,18 +21,14 @@ The Cloud SDK enhances your C#, ASP.NET, & other .NET-based cloud apps to [proce
2121
- [Leverage the power of Pivot Tables](https://docs.aspose.cloud/cells/working-with-pivot-tables/) & Ranges.
2222

2323

24-
## Feature & Enhancements in Version 22.1
24+
## Feature & Enhancements in Version 22.2
2525

26-
- SaveAs API add the parameter of target storage name.
27-
- Workbok merged API add the parameter of merged file storage name.
28-
- Workbok split API add the parameter of target storage name
29-
- Workbok smart marker API add the parameter of output storage name.
30-
- Batch convert API add the parameters of intput and output storage name.
31-
- Remove AutoshapesController from Aspose.Cells Cloud.
32-
- Rename LiteCellsApi to LightCellsApi.
33-
- Add Portect API.
34-
- Add Unlock API.
26+
- Update return value for the DeleteUnprotectWorksheet API on Aspose.Cells Cloud.
27+
- Update return value for the PutProtectWorksheet API on Aspose.Cells Cloud.
28+
- Update return value for the PostSetCellHtmlString API on Aspose.Cells Cloud.
29+
- Update return value for the PostUpdateWorksheetProperty API on Aspose.Cells Cloud.
3530

31+
3632
## Read & Write Spreadsheet Formats
3733

3834
**Microsoft Excel:** XLS, XLSX, XLSB, XLSM, XLT, XLTX, XLTM

0 commit comments

Comments
 (0)