Skip to content

Commit 30383cf

Browse files
committed
Release Aspose.Cells Cloud SDK 23.7
1 parent f253929 commit 30383cf

File tree

5 files changed

+25
-77
lines changed

5 files changed

+25
-77
lines changed

Aspose.Cells-Cloud.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata>
44
<id>Aspose.Cells-Cloud</id>
5-
<version>23.3</version>
5+
<version>23.7</version>
66
<title>Aspose.Cells Cloud SDK for .NET</title>
77
<authors>Aspose</authors>
88
<owners>asposecloud</owners>
@@ -12,7 +12,7 @@
1212
<requireLicenseAcceptance>true</requireLicenseAcceptance>
1313
<summary>Aspose.Cells Cloud SDK for .NET.</summary>
1414
<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>
15-
<releaseNotes>https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/releases/tag/23.3</releaseNotes>
15+
<releaseNotes>https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/releases/tag/23.7</releaseNotes>
1616
<copyright>Aspose 2002-2023. All Rights Reserved.</copyright>
1717
<tags>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</tags>
1818
<dependencies>

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

Lines changed: 0 additions & 62 deletions
This file was deleted.

Aspose.Cells.Cloud.SDK.Test/Document/LightCellsTests.cs

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -487,6 +487,28 @@ public void TestPostClearObjects(string objecttype)
487487
var actual = this.CellsApi.PostClearObjects(request);
488488
Assert.IsNotNull(actual);
489489
}
490+
/// <summary>
491+
/// Test for repair workbook as one of the available formats.
492+
/// </summary>
493+
[TestCategory(ProductName)]
494+
[TestMethod]
495+
[DataRow("xlsx")]
496+
[DataRow("pdf")]
497+
[DataRow("csv")]
498+
[DataRow("png")]
499+
public void TestPostRepair(string format)
500+
{
501+
string book1Xlsx = "Book1.xlsx";
502+
503+
System.Collections.Generic.IDictionary<string, System.IO.Stream> mapFiles =new System.Collections.Generic.Dictionary<string, System.IO.Stream>();
504+
AddFileParameter(book1Xlsx,mapFiles);
505+
var request = new PostRepairRequest(
506+
file: mapFiles,
507+
format: format
508+
);
509+
var actual = this.CellsApi.PostRepair(request);
510+
Assert.IsNotNull(actual);
511+
}
490512

491513
/// <summary>
492514
/// Test for save workbook as one of the available formats.

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

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -302,18 +302,6 @@ public Stream PostBatchSplit(PostBatchSplitRequest request)
302302
return result;
303303
}
304304

305-
/// <summary>
306-
/// </summary>
307-
/// <param name="request">Request. <see cref="GetExtractBarcodesRequest" /></param>
308-
public BarcodeResponseList GetExtractBarcodes(GetExtractBarcodesRequest request)
309-
{
310-
requestHandlers.ForEach(p => p.ProcessUrl(""));
311-
var result = invoker.InvokeApiAsync< BarcodeResponseList >(request.CreateHttpRequest(BaseUri +"/" +Version, this.invoker.DefaultHeaderMap, this.requestHandlers)).Result;
312-
return result;
313-
}
314-
315-
316-
317305
/// <summary>
318306
/// </summary>
319307
/// <param name="request">Request. <see cref="PostClearContentsRequest" /></param>
@@ -325,7 +313,6 @@ public CellsCloudResponse PostClearContents(PostClearContentsRequest request)
325313
}
326314

327315

328-
329316
/// <summary>
330317
/// </summary>
331318
/// <param name="request">Request. <see cref="PostClearFormatsRequest" /></param>

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ The Cloud SDK enhances your C#, ASP.NET, & other .NET-based cloud apps to [proce
2424
## Feature & Enhancements in Version 23.7
2525

2626
- Support to repair API.
27+
- Remove GetExtractBarcodes API.
2728

2829
## Read & Write Spreadsheet Formats
2930

0 commit comments

Comments
 (0)