Skip to content

Commit 8cf9a00

Browse files
committed
Release Aspose.Cells Cloud SDK 24.7.0
1 parent 3b84bc6 commit 8cf9a00

20 files changed

+554
-12
lines changed

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

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,19 @@ public Stream PostBatchSplit(PostBatchSplitRequest request)
338338

339339

340340

341+
/// <summary>
342+
/// Get Access Token Result
343+
/// </summary>
344+
/// <param name="request">Request. <see cref="PostAccessTokenRequest" /></param>
345+
public string PostAccessToken(PostAccessTokenRequest request)
346+
{
347+
requestHandlers.ForEach(p => p.ProcessUrl(""));
348+
var result = invoker.InvokeApiAsync< string >(request.CreateHttpRequest(BaseUri +"/" +Version, this.invoker.DefaultHeaderMap, this.requestHandlers)).Result;
349+
return result;
350+
}
351+
352+
353+
341354
/// <summary>
342355
/// Clear cell area contents in the worksheet.
343356
/// </summary>
@@ -3356,7 +3369,19 @@ public Stream PostRunTask(PostRunTaskRequest request)
33563369

33573370

33583371
/// <summary>
3359-
/// Retrieve the description of the default style for the workbook.
3372+
/// </summary>
3373+
/// <param name="request">Request. <see cref="PostAddTextContentRequest" /></param>
3374+
public FileInfo PostAddTextContent(PostAddTextContentRequest request)
3375+
{
3376+
requestHandlers.ForEach(p => p.ProcessUrl(""));
3377+
var result = invoker.InvokeApiAsync< FileInfo >(request.CreateHttpRequest(BaseUri +"/" +Version, this.invoker.DefaultHeaderMap, this.requestHandlers)).Result;
3378+
return result;
3379+
}
3380+
3381+
3382+
3383+
/// <summary>
3384+
/// Retrieve the description of the default style for the workbook .
33603385
/// </summary>
33613386
/// <param name="request">Request. <see cref="GetWorkbookDefaultStyleRequest" /></param>
33623387
public StyleResponse GetWorkbookDefaultStyle(GetWorkbookDefaultStyleRequest request)

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

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
// --------------------------------------------------------------------------------------------------------------------
2+
// <copyright company="Aspose" file="AddTextOptions.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+
///
39+
/// </summary>
40+
public class AddTextOptions : BaseOperateOptions
41+
{
42+
/// <summary>
43+
///
44+
/// </summary>
45+
public override string Name { get; set; }
46+
47+
/// <summary>
48+
///
49+
/// </summary>
50+
public virtual DataSource DataSource { get; set; }
51+
52+
/// <summary>
53+
///
54+
/// </summary>
55+
public virtual FileInfo FileInfo { get; set; }
56+
57+
/// <summary>
58+
///
59+
/// </summary>
60+
public virtual string Text { get; set; }
61+
62+
/// <summary>
63+
///
64+
/// </summary>
65+
public virtual string Worksheet { get; set; }
66+
67+
/// <summary>
68+
///
69+
/// </summary>
70+
public virtual string Range { get; set; }
71+
72+
/// <summary>
73+
///
74+
/// </summary>
75+
public virtual string SelectPoistion { get; set; }
76+
77+
/// <summary>
78+
///
79+
/// </summary>
80+
public virtual string SelectText { get; set; }
81+
82+
/// <summary>
83+
///
84+
/// </summary>
85+
public virtual bool? SkipEmptyCells { get; set; }
86+
87+
/// <summary>
88+
/// Get the string presentation of the object.
89+
/// </summary>
90+
/// <returns>String presentation of the object.</returns>
91+
public override string ToString()
92+
{
93+
var sb = new StringBuilder();
94+
sb.Append("class AddTextOptions {\n");
95+
sb.Append(" Name: ").Append(this.Name).Append("\n");
96+
sb.Append(" DataSource: ").Append(this.DataSource).Append("\n");
97+
sb.Append(" FileInfo: ").Append(this.FileInfo).Append("\n");
98+
sb.Append(" Text: ").Append(this.Text).Append("\n");
99+
sb.Append(" Worksheet: ").Append(this.Worksheet).Append("\n");
100+
sb.Append(" Range: ").Append(this.Range).Append("\n");
101+
sb.Append(" SelectPoistion: ").Append(this.SelectPoistion).Append("\n");
102+
sb.Append(" SelectText: ").Append(this.SelectText).Append("\n");
103+
sb.Append(" SkipEmptyCells: ").Append(this.SkipEmptyCells).Append("\n");
104+
sb.Append("}\n");
105+
return sb.ToString();
106+
}
107+
}
108+
}
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
// --------------------------------------------------------------------------------------------------------------------
2+
// <copyright company="Aspose" file="BaseOperateOptions.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+
///
39+
/// </summary>
40+
public abstract class BaseOperateOptions
41+
{
42+
/// <summary>
43+
///
44+
/// </summary>
45+
public virtual string Name { 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 BaseOperateOptions {\n");
55+
sb.Append(" Name: ").Append(this.Name).Append("\n");
56+
sb.Append("}\n");
57+
return sb.ToString();
58+
}
59+
}
60+
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ namespace Aspose.Cells.Cloud.SDK.Model
3737
/// <summary>
3838
///
3939
/// </summary>
40-
public class MultipleFilter
40+
public abstract class MultipleFilter
4141
{
4242
/// <summary>
4343
/// Get the string presentation of the object.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ namespace Aspose.Cells.Cloud.SDK.Model
3737
/// <summary>
3838
/// ObjectExistsExtensions.
3939
/// </summary>
40-
public class ObjectExistsExtensions
40+
public abstract class ObjectExistsExtensions
4141
{
4242
/// <summary>
4343
/// Get the string presentation of the object.
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
// --------------------------------------------------------------------------------------------------------------------
2+
// <copyright company="Aspose" file="SearchScopeOptionsType.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+
/// SearchScopeOptionsType.
39+
/// </summary>
40+
[JsonConverter(typeof(StringEnumConverter))]
41+
public enum SearchScopeOptionsType
42+
{
43+
}
44+
}
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
// --------------------------------------------------------------------------------------------------------------------
2+
// <copyright company="Aspose" file="SelectPositionOptionsType.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+
///
39+
/// </summary>
40+
[JsonConverter(typeof(StringEnumConverter))]
41+
public enum SelectPositionOptionsType
42+
{
43+
}
44+
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public class TextOptions : Font
105105
public override bool? IsSuperscript { get; set; }
106106

107107
/// <summary>
108-
/// Gets or sets Name.
108+
///
109109
/// </summary>
110110
public override string Name { get; set; }
111111

0 commit comments

Comments
 (0)