asposeslidescloud 23.2.0 → 23.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/api.d.ts +4 -2
- package/api.js +616 -749
- package/internal/requestHelper.d.ts +2 -3
- package/internal/requestHelper.js +83 -58
- package/model.d.ts +4 -0
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -27,6 +27,11 @@ You may want to check out Aspose free [Powerpoint to PDF](https://products.aspos
|
|
|
27
27
|
**Web:** HTML/HTML5
|
|
28
28
|
**Other:** MPEG4, SWF (export whole presentations)
|
|
29
29
|
|
|
30
|
+
## Enhancements in Version 23.3
|
|
31
|
+
|
|
32
|
+
* Added **options** parameter to **SplitOnline** and **SplitAndSaveOnline** methods. Those options are the same as for other split & convert methods.
|
|
33
|
+
* Added **ShowHiddenSlides** boolean property to **ImageExportOptions** class.
|
|
34
|
+
|
|
30
35
|
## Enhancements in Version 23.2
|
|
31
36
|
|
|
32
37
|
* New **DownloadShapeFromDto** method allows to convert charts and other shapes from DTO to SVG and other formats without creating and storing presentation files.
|
package/api.d.ts
CHANGED
|
@@ -2954,8 +2954,9 @@ export declare class SlidesApi {
|
|
|
2954
2954
|
* @param password Document password.
|
|
2955
2955
|
* @param storage Document storage.
|
|
2956
2956
|
* @param fontsFolder Custom fonts folder.
|
|
2957
|
+
* @param options Export options.
|
|
2957
2958
|
*/
|
|
2958
|
-
splitAndSaveOnline(document: Readable, format: model.SlideExportFormat, destFolder?: string, width?: number, height?: number, from?: number, to?: number, password?: string, storage?: string, fontsFolder?: string): Promise<{
|
|
2959
|
+
splitAndSaveOnline(document: Readable, format: model.SlideExportFormat, destFolder?: string, width?: number, height?: number, from?: number, to?: number, password?: string, storage?: string, fontsFolder?: string, options?: model.ExportOptions): Promise<{
|
|
2959
2960
|
response: http.ServerResponse;
|
|
2960
2961
|
body: model.SplitDocumentResult;
|
|
2961
2962
|
}>;
|
|
@@ -2970,8 +2971,9 @@ export declare class SlidesApi {
|
|
|
2970
2971
|
* @param password Document password.
|
|
2971
2972
|
* @param storage Document storage.
|
|
2972
2973
|
* @param fontsFolder Custom fonts folder.
|
|
2974
|
+
* @param options Export options.
|
|
2973
2975
|
*/
|
|
2974
|
-
splitOnline(document: Readable, format: model.SlideExportFormat, width?: number, height?: number, from?: number, to?: number, password?: string, storage?: string, fontsFolder?: string): Promise<{
|
|
2976
|
+
splitOnline(document: Readable, format: model.SlideExportFormat, width?: number, height?: number, from?: number, to?: number, password?: string, storage?: string, fontsFolder?: string, options?: model.ExportOptions): Promise<{
|
|
2975
2977
|
response: http.ServerResponse;
|
|
2976
2978
|
body: Buffer;
|
|
2977
2979
|
}>;
|