Skip to content

Commit 0b83b84

Browse files
committed
Update sources
1 parent f47edc0 commit 0b83b84

17 files changed

Lines changed: 127 additions & 53 deletions

GroupDocs.Conversion.Cloud.Sdk.Test/GroupDocs.Conversion.Cloud.Sdk.Test.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,9 @@ OpenAPI spec version: 1.0
126126
<Name>GroupDocs.Conversion.Cloud.Sdk</Name>
127127
</ProjectReference>
128128
</ItemGroup>
129-
<ItemGroup />
129+
<ItemGroup>
130+
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
131+
</ItemGroup>
130132
<Import Project="$(MsBuildToolsPath)\Microsoft.CSharp.targets" />
131133
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
132134
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">

GroupDocs.Conversion.Cloud.Sdk/Api/ConversionApi.cs

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public ConversionApi(Configuration configuration)
7373
}
7474

7575
/// <summary>
76-
/// Returns document with the result of conversion
76+
/// Returns CELLS document, result of conversion of the source file, specified by the provided CellsConversionSettings
7777
/// </summary>
7878
/// <param name="request">Request. <see cref="ConvertToCellsRequest" /></param>
7979
/// <returns><see cref="Link"/></returns>
@@ -103,7 +103,7 @@ public Link ConvertToCells(ConvertToCellsRequest request)
103103
}
104104

105105
/// <summary>
106-
/// Returns stream of document with the result of conversion
106+
/// Returns CELLS stream, result of conversion of the source file, specified by the provided CellsConversionSettings
107107
/// </summary>
108108
/// <param name="request">Request. <see cref="ConvertToCellsStreamRequest" /></param>
109109
/// <returns><see cref="System.IO.Stream"/></returns>
@@ -132,7 +132,7 @@ public System.IO.Stream ConvertToCellsStream(ConvertToCellsStreamRequest request
132132
}
133133

134134
/// <summary>
135-
/// Returns document with the result of conversion
135+
/// Returns HTML document, result of conversion of the source file, specified by the provided HtmlConversionSettings
136136
/// </summary>
137137
/// <param name="request">Request. <see cref="ConvertToHtmlRequest" /></param>
138138
/// <returns><see cref="Link"/></returns>
@@ -162,7 +162,7 @@ public Link ConvertToHtml(ConvertToHtmlRequest request)
162162
}
163163

164164
/// <summary>
165-
/// Returns stream of document with the result of conversion
165+
/// Returns HTML stream, result of conversion of the source file, specified by the provided HtmlConversionSettings
166166
/// </summary>
167167
/// <param name="request">Request. <see cref="ConvertToHtmlStreamRequest" /></param>
168168
/// <returns><see cref="System.IO.Stream"/></returns>
@@ -191,7 +191,7 @@ public System.IO.Stream ConvertToHtmlStream(ConvertToHtmlStreamRequest request)
191191
}
192192

193193
/// <summary>
194-
/// Returns document with the result of conversion
194+
/// Returns IMAGE document, result of conversion of the source file, specified by the provided ImageConversionSettings
195195
/// </summary>
196196
/// <param name="request">Request. <see cref="ConvertToImageRequest" /></param>
197197
/// <returns><see cref="Link"/></returns>
@@ -221,7 +221,7 @@ public Link ConvertToImage(ConvertToImageRequest request)
221221
}
222222

223223
/// <summary>
224-
/// Returns stream of document with the result of conversion
224+
/// Returns IMAGE stream, result of conversion of the source file, specified by the provided ImageConversionSettings
225225
/// </summary>
226226
/// <param name="request">Request. <see cref="ConvertToImageStreamRequest" /></param>
227227
/// <returns><see cref="System.IO.Stream"/></returns>
@@ -250,7 +250,7 @@ public System.IO.Stream ConvertToImageStream(ConvertToImageStreamRequest request
250250
}
251251

252252
/// <summary>
253-
/// Returns document with the result of conversion
253+
/// Returns PDF document, result of conversion of the source file, specified by the provided PdfConversionSettings
254254
/// </summary>
255255
/// <param name="request">Request. <see cref="ConvertToPdfRequest" /></param>
256256
/// <returns><see cref="Link"/></returns>
@@ -280,7 +280,7 @@ public Link ConvertToPdf(ConvertToPdfRequest request)
280280
}
281281

282282
/// <summary>
283-
/// Returns stream of document with the result of conversion
283+
/// Returns PDF stream, result of conversion of the source file, specified by the provided PdfConversionSettings
284284
/// </summary>
285285
/// <param name="request">Request. <see cref="ConvertToPdfStreamRequest" /></param>
286286
/// <returns><see cref="System.IO.Stream"/></returns>
@@ -309,7 +309,7 @@ public System.IO.Stream ConvertToPdfStream(ConvertToPdfStreamRequest request)
309309
}
310310

311311
/// <summary>
312-
/// Returns document with the result of conversion
312+
/// Returns SLIDES document, result of conversion of the source file, specified by the provided SlidesConversionSettings
313313
/// </summary>
314314
/// <param name="request">Request. <see cref="ConvertToSlidesRequest" /></param>
315315
/// <returns><see cref="Link"/></returns>
@@ -339,7 +339,7 @@ public Link ConvertToSlides(ConvertToSlidesRequest request)
339339
}
340340

341341
/// <summary>
342-
/// Returns stream of document with the result of conversion
342+
/// Returns SLIDES stream, result of conversion of the source file, specified by the provided SlidesConversionSettings
343343
/// </summary>
344344
/// <param name="request">Request. <see cref="ConvertToSlidesStreamRequest" /></param>
345345
/// <returns><see cref="System.IO.Stream"/></returns>
@@ -368,7 +368,7 @@ public System.IO.Stream ConvertToSlidesStream(ConvertToSlidesStreamRequest reque
368368
}
369369

370370
/// <summary>
371-
/// Returns document with the result of conversion
371+
/// Returns WORDS document, result of conversion of the source file, specified by the provided WordsConversionSettings
372372
/// </summary>
373373
/// <param name="request">Request. <see cref="ConvertToWordsRequest" /></param>
374374
/// <returns><see cref="Link"/></returns>
@@ -398,7 +398,7 @@ public Link ConvertToWords(ConvertToWordsRequest request)
398398
}
399399

400400
/// <summary>
401-
/// Returns stream of document with the result of conversion
401+
/// Returns WORDS stream, result of conversion of the source file, specified by the provided WordsConversionSettings
402402
/// </summary>
403403
/// <param name="request">Request. <see cref="ConvertToWordsStreamRequest" /></param>
404404
/// <returns><see cref="System.IO.Stream"/></returns>
@@ -533,7 +533,7 @@ public PossibleConversionResponse PossibleConversionsForDocument(PossibleConvers
533533
}
534534

535535
/// <summary>
536-
/// Returns document with the result of conversion
536+
/// Returns document, result of conversion of the source file, specified by the provided QuickConversionSettings
537537
/// </summary>
538538
/// <param name="request">Request. <see cref="QuickConvertRequest" /></param>
539539
/// <returns><see cref="Link"/></returns>
@@ -563,7 +563,7 @@ public Link QuickConvert(QuickConvertRequest request)
563563
}
564564

565565
/// <summary>
566-
/// Returns stream of document with the result of conversion
566+
/// Returns stream, result of conversion of the source file, specified by the provided QuickConversionSettings
567567
/// </summary>
568568
/// <param name="request">Request. <see cref="QuickConvertToStreamRequest" /></param>
569569
/// <returns><see cref="System.IO.Stream"/></returns>

GroupDocs.Conversion.Cloud.Sdk/GroupDocs.Conversion.Cloud.Sdk.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@
144144
<Compile Include="Model\TiffOptionsDto.cs" />
145145
<Compile Include="Model\WatermarkOptionsDto.cs" />
146146
<Compile Include="Model\WebpOptionsDto.cs" />
147+
<Compile Include="Model\WordBookmarksOptionsDto.cs" />
147148
<Compile Include="Model\WordsConversionSettings.cs" />
148149
<Compile Include="Model\WordsSaveOptionsDto.cs" />
149150
<Compile Include="Properties\AssemblyInfo.cs" />

GroupDocs.Conversion.Cloud.Sdk/Model/PdfSaveOptionsDto.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public enum ConvertFileTypeEnum
6969
/// <summary>
7070
/// If the input document is Word the conversion will handle the word bookmarks regarding this option.
7171
/// </summary>
72-
public string WordBookmarks { get; set; }
72+
public WordBookmarksOptionsDto WordBookmarksOptions { get; set; }
7373

7474
/// <summary>
7575
/// Desired page width in pixels after conversion
@@ -125,7 +125,7 @@ public override string ToString()
125125
var sb = new StringBuilder();
126126
sb.Append("class PdfSaveOptionsDto {\n");
127127
sb.Append(" ConvertFileType: ").Append(this.ConvertFileType).Append("\n");
128-
sb.Append(" WordBookmarks: ").Append(this.WordBookmarks).Append("\n");
128+
sb.Append(" WordBookmarksOptions: ").Append(this.WordBookmarksOptions).Append("\n");
129129
sb.Append(" Width: ").Append(this.Width).Append("\n");
130130
sb.Append(" Height: ").Append(this.Height).Append("\n");
131131
sb.Append(" Dpi: ").Append(this.Dpi).Append("\n");

GroupDocs.Conversion.Cloud.Sdk/Model/Requests/ConvertToCellsRequest.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,21 +42,21 @@ public ConvertToCellsRequest()
4242
/// <summary>
4343
/// Initializes a new instance of the <see cref="ConvertToCellsRequest"/> class.
4444
/// </summary>
45-
/// <param name="settings">The settings.</param>
46-
/// <param name="outPath">outPath: path to output document on file storage</param>
45+
/// <param name="settings">The settings</param>
46+
/// <param name="outPath">path to output document on file storage</param>
4747
public ConvertToCellsRequest(CellsConversionSettings settings = null, string outPath = null)
4848
{
4949
this.Settings = settings;
5050
this.OutPath = outPath;
5151
}
5252

5353
/// <summary>
54-
/// The settings.
54+
/// The settings
5555
/// </summary>
5656
public CellsConversionSettings Settings { get; set; }
5757

5858
/// <summary>
59-
/// outPath: path to output document on file storage
59+
/// path to output document on file storage
6060
/// </summary>
6161
public string OutPath { get; set; }
6262
}

GroupDocs.Conversion.Cloud.Sdk/Model/Requests/ConvertToCellsStreamRequest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ public ConvertToCellsStreamRequest()
4242
/// <summary>
4343
/// Initializes a new instance of the <see cref="ConvertToCellsStreamRequest"/> class.
4444
/// </summary>
45-
/// <param name="settings">The settings.</param>
45+
/// <param name="settings">The settings</param>
4646
public ConvertToCellsStreamRequest(CellsConversionSettings settings = null)
4747
{
4848
this.Settings = settings;
4949
}
5050

5151
/// <summary>
52-
/// The settings.
52+
/// The settings
5353
/// </summary>
5454
public CellsConversionSettings Settings { get; set; }
5555
}

GroupDocs.Conversion.Cloud.Sdk/Model/Requests/ConvertToHtmlRequest.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,21 +42,21 @@ public ConvertToHtmlRequest()
4242
/// <summary>
4343
/// Initializes a new instance of the <see cref="ConvertToHtmlRequest"/> class.
4444
/// </summary>
45-
/// <param name="settings">The settings.</param>
46-
/// <param name="outPath">outPath: path to output document on file storage</param>
45+
/// <param name="settings">The settings</param>
46+
/// <param name="outPath">path to output document on file storage</param>
4747
public ConvertToHtmlRequest(HtmlConversionSettings settings = null, string outPath = null)
4848
{
4949
this.Settings = settings;
5050
this.OutPath = outPath;
5151
}
5252

5353
/// <summary>
54-
/// The settings.
54+
/// The settings
5555
/// </summary>
5656
public HtmlConversionSettings Settings { get; set; }
5757

5858
/// <summary>
59-
/// outPath: path to output document on file storage
59+
/// path to output document on file storage
6060
/// </summary>
6161
public string OutPath { get; set; }
6262
}

GroupDocs.Conversion.Cloud.Sdk/Model/Requests/ConvertToHtmlStreamRequest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ public ConvertToHtmlStreamRequest()
4242
/// <summary>
4343
/// Initializes a new instance of the <see cref="ConvertToHtmlStreamRequest"/> class.
4444
/// </summary>
45-
/// <param name="settings">The settings.</param>
45+
/// <param name="settings">The settings</param>
4646
public ConvertToHtmlStreamRequest(HtmlConversionSettings settings = null)
4747
{
4848
this.Settings = settings;
4949
}
5050

5151
/// <summary>
52-
/// The settings.
52+
/// The settings
5353
/// </summary>
5454
public HtmlConversionSettings Settings { get; set; }
5555
}

GroupDocs.Conversion.Cloud.Sdk/Model/Requests/ConvertToImageRequest.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,21 +42,21 @@ public ConvertToImageRequest()
4242
/// <summary>
4343
/// Initializes a new instance of the <see cref="ConvertToImageRequest"/> class.
4444
/// </summary>
45-
/// <param name="settings">The settings.</param>
46-
/// <param name="outPath">outPath: path to output document on file storage</param>
45+
/// <param name="settings">The settings</param>
46+
/// <param name="outPath">path to output document on file storage</param>
4747
public ConvertToImageRequest(ImageConversionSettings settings = null, string outPath = null)
4848
{
4949
this.Settings = settings;
5050
this.OutPath = outPath;
5151
}
5252

5353
/// <summary>
54-
/// The settings.
54+
/// The settings
5555
/// </summary>
5656
public ImageConversionSettings Settings { get; set; }
5757

5858
/// <summary>
59-
/// outPath: path to output document on file storage
59+
/// path to output document on file storage
6060
/// </summary>
6161
public string OutPath { get; set; }
6262
}

GroupDocs.Conversion.Cloud.Sdk/Model/Requests/ConvertToImageStreamRequest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ public ConvertToImageStreamRequest()
4242
/// <summary>
4343
/// Initializes a new instance of the <see cref="ConvertToImageStreamRequest"/> class.
4444
/// </summary>
45-
/// <param name="settings">The settings.</param>
45+
/// <param name="settings">The settings</param>
4646
public ConvertToImageStreamRequest(ImageConversionSettings settings = null)
4747
{
4848
this.Settings = settings;
4949
}
5050

5151
/// <summary>
52-
/// The settings.
52+
/// The settings
5353
/// </summary>
5454
public ImageConversionSettings Settings { get; set; }
5555
}

0 commit comments

Comments
 (0)