asposeslidescloud 24.2.0 → 24.3.0

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 CHANGED
@@ -27,6 +27,19 @@ 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 24.3
31
+
32
+ * Added Markdown (**Md**) to the list of allowed export formats.
33
+ * Added **DeletePictureCroppedAreas** method to delete cropped areas of pictures.
34
+ * Added **SlidesLayoutOptions** property to **PdfExportOptions**, **HtmlExportOptions**, **TiffExportOptions** and **ImageExportOptions** classes. You can use it to specify handout or notes/comments layouting options.
35
+ * Added **AnimateTextType** enum property to **Effect** class.
36
+ * Added **NotesCommentsLayouting** property to **Html5ExportOptions** class.
37
+ * Added **BwConversionMode** property to **TiffExportOptions** class.
38
+ * Added **EmbedImages** boolean property to **Html5ExportOptions** class.
39
+ * Added **ShowMediaControls** boolean property to **SlideShowProperties** class.
40
+ * Added **IsDecorative** boolean property to **ShapeBase** class.
41
+
42
+
30
43
  ## Enhancements in Version 24.2
31
44
 
32
45
  * Added **GetCommentAuthors** method to get list of comment authors.
package/api.d.ts CHANGED
@@ -894,6 +894,18 @@ export declare class SlidesApi {
894
894
  response: http.ServerResponse;
895
895
  body: model.Paragraphs;
896
896
  }>;
897
+ /**
898
+ * Deletes cropped areas of a pictire.
899
+ * @param name Document name.
900
+ * @param slideIndex Slide index.
901
+ * @param shapeIndex Shape index (must refer to a picture frame).
902
+ * @param password Document password.
903
+ * @param folder Document folder.
904
+ * @param storage Presentation storage.
905
+ */
906
+ deletePictureCroppedAreas(name: string, slideIndex: number, shapeIndex: number, password: string, folder: string, storage?: string): Promise<{
907
+ response: http.ServerResponse;
908
+ }>;
897
909
  /**
898
910
  * Remove a portion.
899
911
  * @param name Document name.
package/api.js CHANGED
@@ -2898,6 +2898,55 @@ class SlidesApi {
2898
2898
  return Promise.resolve({ body: result, response });
2899
2899
  });
2900
2900
  }
2901
+ /**
2902
+ * Deletes cropped areas of a pictire.
2903
+ * @param name Document name.
2904
+ * @param slideIndex Slide index.
2905
+ * @param shapeIndex Shape index (must refer to a picture frame).
2906
+ * @param password Document password.
2907
+ * @param folder Document folder.
2908
+ * @param storage Presentation storage.
2909
+ */
2910
+ deletePictureCroppedAreas(name, slideIndex, shapeIndex, password, folder, storage = null) {
2911
+ return __awaiter(this, void 0, void 0, function* () {
2912
+ // verify required parameter 'name' is not null or undefined
2913
+ if (name === null || name === undefined) {
2914
+ throw new Error('The required parameter "name" was null or undefined when calling deletePictureCroppedAreas.');
2915
+ }
2916
+ // verify required parameter 'slideIndex' is not null or undefined
2917
+ if (slideIndex === null || slideIndex === undefined) {
2918
+ throw new Error('The required parameter "slideIndex" was null or undefined when calling deletePictureCroppedAreas.');
2919
+ }
2920
+ // verify required parameter 'shapeIndex' is not null or undefined
2921
+ if (shapeIndex === null || shapeIndex === undefined) {
2922
+ throw new Error('The required parameter "shapeIndex" was null or undefined when calling deletePictureCroppedAreas.');
2923
+ }
2924
+ // verify required parameter 'password' is not null or undefined
2925
+ if (password === null || password === undefined) {
2926
+ throw new Error('The required parameter "password" was null or undefined when calling deletePictureCroppedAreas.');
2927
+ }
2928
+ // verify required parameter 'folder' is not null or undefined
2929
+ if (folder === null || folder === undefined) {
2930
+ throw new Error('The required parameter "folder" was null or undefined when calling deletePictureCroppedAreas.');
2931
+ }
2932
+ let localVarPath = this.configuration.getApiBaseUrl() + "/slides/{name}/slides/{slideIndex}/shapes/{shapeIndex}/pictureCroppedAreas";
2933
+ localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "name", objectSerializer_1.ObjectSerializer.toString(name));
2934
+ localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "slideIndex", objectSerializer_1.ObjectSerializer.toString(slideIndex));
2935
+ localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "shapeIndex", objectSerializer_1.ObjectSerializer.toString(shapeIndex));
2936
+ const queryParameters = {};
2937
+ localVarPath = (0, requestHelper_1.addQueryParameterToUrl)(localVarPath, queryParameters, "folder", folder);
2938
+ localVarPath = (0, requestHelper_1.addQueryParameterToUrl)(localVarPath, queryParameters, "storage", storage);
2939
+ const requestOptions = {
2940
+ method: "DELETE",
2941
+ headers: {},
2942
+ url: localVarPath,
2943
+ params: queryParameters
2944
+ };
2945
+ (0, requestHelper_1.addHeaderParameter)(requestOptions.headers, "password", password);
2946
+ const response = yield (0, requestHelper_1.invokeApiMethod)(requestOptions, this.configuration);
2947
+ return Promise.resolve({ response });
2948
+ });
2949
+ }
2901
2950
  /**
2902
2951
  * Remove a portion.
2903
2952
  * @param name Document name.
@@ -157,7 +157,7 @@ function invokeApiMethodInternal(requestOptions, configuration, notApplyAuthToRe
157
157
  if (!requestOptions.headers) {
158
158
  requestOptions.headers = {};
159
159
  }
160
- requestOptions.headers["x-aspose-client"] = "nodejs sdk v24.2.0";
160
+ requestOptions.headers["x-aspose-client"] = "nodejs sdk v24.3.0";
161
161
  if (configuration.timeout) {
162
162
  requestOptions.headers["x-aspose-timeout"] = configuration.timeout;
163
163
  }
package/model.d.ts CHANGED
@@ -456,6 +456,10 @@ export declare class ShapeBase extends ResourceBase {
456
456
  * Gets or sets a value indicating whether this ShapeBase is hidden.
457
457
  */
458
458
  hidden?: boolean;
459
+ /**
460
+ * Gets or sets 'Mark as decorative' option.
461
+ */
462
+ isDecorative?: boolean;
459
463
  /**
460
464
  * Gets or sets the X
461
465
  */
@@ -2328,6 +2332,10 @@ export declare class Effect {
2328
2332
  * Preset class type.
2329
2333
  */
2330
2334
  presetClassType?: Effect.PresetClassTypeEnum;
2335
+ /**
2336
+ * Preset class type.
2337
+ */
2338
+ animateTextType?: Effect.AnimateTextTypeEnum;
2331
2339
  /**
2332
2340
  * Shape index.
2333
2341
  */
@@ -2619,6 +2627,11 @@ export declare namespace Effect {
2619
2627
  MediaCall,
2620
2628
  OLEActionVerbs
2621
2629
  }
2630
+ enum AnimateTextTypeEnum {
2631
+ AllAtOnce,
2632
+ ByWord,
2633
+ ByLetter
2634
+ }
2622
2635
  enum TriggerTypeEnum {
2623
2636
  AfterPrevious,
2624
2637
  OnClick,
@@ -2727,7 +2740,8 @@ export declare enum ExportFormat {
2727
2740
  'Bmp',
2728
2741
  'Fodp',
2729
2742
  'Xaml',
2730
- 'Mpeg4'
2743
+ 'Mpeg4',
2744
+ 'Md'
2731
2745
  }
2732
2746
  /**
2733
2747
  * Represents export options for whole presentation.
@@ -3243,6 +3257,53 @@ export declare namespace GroupingCharacterElement {
3243
3257
  Bottom
3244
3258
  }
3245
3259
  }
3260
+ /**
3261
+ * Slides layouting options.
3262
+ */
3263
+ export declare class SlidesLayoutOptions {
3264
+ layoutType?: SlidesLayoutOptions.LayoutTypeEnum;
3265
+ }
3266
+ export declare namespace SlidesLayoutOptions {
3267
+ enum LayoutTypeEnum {
3268
+ NotesComments,
3269
+ Handout
3270
+ }
3271
+ }
3272
+ /**
3273
+ * Handout layouting options
3274
+ */
3275
+ export declare class HandoutLayoutingOptions extends SlidesLayoutOptions {
3276
+ constructor();
3277
+ /**
3278
+ * Specified how many pages and in what sequence will be placed on the page.
3279
+ */
3280
+ handout?: HandoutLayoutingOptions.HandoutEnum;
3281
+ /**
3282
+ * True to print the displayed slide numbers.
3283
+ */
3284
+ printSlideNumbers?: boolean;
3285
+ /**
3286
+ * True to display comments on slide.
3287
+ */
3288
+ printComments?: boolean;
3289
+ /**
3290
+ * True to draw frames around the displayed slides.
3291
+ */
3292
+ printFrameSlide?: boolean;
3293
+ }
3294
+ export declare namespace HandoutLayoutingOptions {
3295
+ enum HandoutEnum {
3296
+ Handouts1,
3297
+ Handouts2,
3298
+ Handouts3,
3299
+ Handouts4Horizontal,
3300
+ Handouts4Vertical,
3301
+ Handouts6Horizontal,
3302
+ Handouts6Vertical,
3303
+ Handouts9Horizontal,
3304
+ Handouts9Vertical
3305
+ }
3306
+ }
3246
3307
  /**
3247
3308
  * Represents header/footer info of slide
3248
3309
  */
@@ -3302,6 +3363,14 @@ export declare class Html5ExportOptions extends ExportOptions {
3302
3363
  * Gets or sets shapes animation option.
3303
3364
  */
3304
3365
  animateShapes?: boolean;
3366
+ /**
3367
+ * Gets or sets embed images option.
3368
+ */
3369
+ embedImages?: boolean;
3370
+ /**
3371
+ * Slides layouting options
3372
+ */
3373
+ notesCommentsLayouting?: NotesCommentsLayoutingOptions;
3305
3374
  }
3306
3375
  /**
3307
3376
  * Provides options that control how a presentation is saved in Html format.
@@ -3337,25 +3406,9 @@ export declare class HtmlExportOptions extends ExportOptions {
3337
3406
  */
3338
3407
  deletePicturesCroppedAreas?: boolean;
3339
3408
  /**
3340
- * Gets or sets the position of the notes on the page.
3341
- */
3342
- notesPosition?: HtmlExportOptions.NotesPositionEnum;
3343
- /**
3344
- * Gets or sets the position of the comments on the page.
3345
- */
3346
- commentsPosition?: HtmlExportOptions.CommentsPositionEnum;
3347
- /**
3348
- * Gets or sets the width of the comment output area in pixels (Applies only if comments are displayed on the right).
3349
- */
3350
- commentsAreaWidth?: number;
3351
- /**
3352
- * Gets or sets the color of comments area (Applies only if comments are displayed on the right).
3353
- */
3354
- commentsAreaColor?: string;
3355
- /**
3356
- * True if comments that have no author are displayed. (Applies only if comments are displayed).
3409
+ * Slides layouting options
3357
3410
  */
3358
- showCommentsByNoAuthor?: boolean;
3411
+ slidesLayoutOptions?: SlidesLayoutOptions;
3359
3412
  }
3360
3413
  export declare namespace HtmlExportOptions {
3361
3414
  enum PicturesCompressionEnum {
@@ -3366,16 +3419,6 @@ export declare namespace HtmlExportOptions {
3366
3419
  Dpi72,
3367
3420
  DocumentResolution
3368
3421
  }
3369
- enum NotesPositionEnum {
3370
- None,
3371
- BottomFull,
3372
- BottomTruncated
3373
- }
3374
- enum CommentsPositionEnum {
3375
- None,
3376
- Bottom,
3377
- Right
3378
- }
3379
3422
  }
3380
3423
  /**
3381
3424
  * Hyperlink
@@ -3491,38 +3534,14 @@ export declare enum ImageExportFormat {
3491
3534
  */
3492
3535
  export declare class ImageExportOptions extends ImageExportOptionsBase {
3493
3536
  constructor();
3494
- /**
3495
- * Gets or sets the position of the notes on the page.
3496
- */
3497
- notesPosition?: ImageExportOptions.NotesPositionEnum;
3498
- /**
3499
- * Gets or sets the position of the comments on the page.
3500
- */
3501
- commentsPosition?: ImageExportOptions.CommentsPositionEnum;
3502
- /**
3503
- * Gets or sets the width of the comment output area in pixels (Applies only if comments are displayed on the right).
3504
- */
3505
- commentsAreaWidth?: number;
3506
- /**
3507
- * Gets or sets the color of comments area (Applies only if comments are displayed on the right).
3508
- */
3509
- commentsAreaColor?: string;
3510
3537
  /**
3511
3538
  * Show hidden slides. If true, hidden are exported.
3512
3539
  */
3513
3540
  showHiddenSlides?: boolean;
3514
- }
3515
- export declare namespace ImageExportOptions {
3516
- enum NotesPositionEnum {
3517
- None,
3518
- BottomFull,
3519
- BottomTruncated
3520
- }
3521
- enum CommentsPositionEnum {
3522
- None,
3523
- Bottom,
3524
- Right
3525
- }
3541
+ /**
3542
+ * Slides layouting options
3543
+ */
3544
+ slidesLayoutOptions?: SlidesLayoutOptions;
3526
3545
  }
3527
3546
  /**
3528
3547
  * List of images.
@@ -4198,6 +4217,44 @@ export declare class NormalViewRestoredProperties {
4198
4217
  */
4199
4218
  dimensionSize?: number;
4200
4219
  }
4220
+ /**
4221
+ * Notes &amp; comments layouting options.
4222
+ */
4223
+ export declare class NotesCommentsLayoutingOptions extends SlidesLayoutOptions {
4224
+ constructor();
4225
+ /**
4226
+ * Gets or sets the position of the notes on the page.
4227
+ */
4228
+ notesPosition?: NotesCommentsLayoutingOptions.NotesPositionEnum;
4229
+ /**
4230
+ * Gets or sets the position of the comments on the page.
4231
+ */
4232
+ commentsPosition?: NotesCommentsLayoutingOptions.CommentsPositionEnum;
4233
+ /**
4234
+ * Gets or sets the width of the comment output area in pixels (Applies only if comments are displayed on the right).
4235
+ */
4236
+ commentsAreaWidth?: number;
4237
+ /**
4238
+ * Gets or sets the color of comments area (Applies only if comments are displayed on the right).
4239
+ */
4240
+ commentsAreaColor?: string;
4241
+ /**
4242
+ * True if comments that have no author are displayed. (Applies only if comments are displayed).
4243
+ */
4244
+ showCommentsByNoAuthor?: boolean;
4245
+ }
4246
+ export declare namespace NotesCommentsLayoutingOptions {
4247
+ enum NotesPositionEnum {
4248
+ None,
4249
+ BottomFull,
4250
+ BottomTruncated
4251
+ }
4252
+ enum CommentsPositionEnum {
4253
+ None,
4254
+ Bottom,
4255
+ Right
4256
+ }
4257
+ }
4201
4258
  /**
4202
4259
  * Represents notes slide DTO.
4203
4260
  */
@@ -5029,25 +5086,9 @@ export declare class PdfExportOptions extends ExportOptions {
5029
5086
  */
5030
5087
  additionalCommonFontFamilies?: Array<string>;
5031
5088
  /**
5032
- * Gets or sets the position of the notes on the page.
5033
- */
5034
- notesPosition?: PdfExportOptions.NotesPositionEnum;
5035
- /**
5036
- * Gets or sets the position of the comments on the page.
5037
- */
5038
- commentsPosition?: PdfExportOptions.CommentsPositionEnum;
5039
- /**
5040
- * Gets or sets the width of the comment output area in pixels (Applies only if comments are displayed on the right).
5041
- */
5042
- commentsAreaWidth?: number;
5043
- /**
5044
- * Gets or sets the color of comments area (Applies only if comments are displayed on the right).
5045
- */
5046
- commentsAreaColor?: string;
5047
- /**
5048
- * True if comments that have no author are displayed. (Applies only if comments are displayed).
5089
+ * Slides layouting options
5049
5090
  */
5050
- showCommentsByNoAuthor?: boolean;
5091
+ slidesLayoutOptions?: SlidesLayoutOptions;
5051
5092
  /**
5052
5093
  * Image transparent color.
5053
5094
  */
@@ -5079,16 +5120,6 @@ export declare namespace PdfExportOptions {
5079
5120
  PdfUa,
5080
5121
  PdfA2u
5081
5122
  }
5082
- enum NotesPositionEnum {
5083
- None,
5084
- BottomFull,
5085
- BottomTruncated
5086
- }
5087
- enum CommentsPositionEnum {
5088
- None,
5089
- Bottom,
5090
- Right
5091
- }
5092
5123
  }
5093
5124
  /**
5094
5125
  * Picture fill.
@@ -6121,7 +6152,8 @@ export declare namespace Save {
6121
6152
  Bmp,
6122
6153
  Fodp,
6123
6154
  Xaml,
6124
- Mpeg4
6155
+ Mpeg4,
6156
+ Md
6125
6157
  }
6126
6158
  }
6127
6159
  /**
@@ -6210,7 +6242,8 @@ export declare namespace SaveSlide {
6210
6242
  Svg,
6211
6243
  Fodp,
6212
6244
  Xaml,
6213
- Html5
6245
+ Html5,
6246
+ Md
6214
6247
  }
6215
6248
  }
6216
6249
  /**
@@ -6666,7 +6699,8 @@ export declare enum SlideExportFormat {
6666
6699
  'Svg',
6667
6700
  'Fodp',
6668
6701
  'Xaml',
6669
- 'Html5'
6702
+ 'Html5',
6703
+ 'Md'
6670
6704
  }
6671
6705
  /**
6672
6706
  * Represents modern comment of slide
@@ -6793,6 +6827,10 @@ export declare class SlideShowProperties extends ResourceBase {
6793
6827
  * Show narrration.
6794
6828
  */
6795
6829
  showNarration?: boolean;
6830
+ /**
6831
+ * Show media controls.
6832
+ */
6833
+ showMediaControls?: boolean;
6796
6834
  /**
6797
6835
  * Use timings.
6798
6836
  */
@@ -8216,25 +8254,13 @@ export declare class TiffExportOptions extends ImageExportOptionsBase {
8216
8254
  */
8217
8255
  pixelFormat?: TiffExportOptions.PixelFormatEnum;
8218
8256
  /**
8219
- * Gets or sets the position of the notes on the page.
8257
+ * Slides layouting options
8220
8258
  */
8221
- notesPosition?: TiffExportOptions.NotesPositionEnum;
8259
+ slidesLayoutOptions?: SlidesLayoutOptions;
8222
8260
  /**
8223
- * Gets or sets the position of the comments on the page.
8261
+ * Specifies the algorithm for converting a color image into a black and white image. This option will applied only if Aspose.Slides.Export.TiffOptions.CompressionType is set to Aspose.Slides.Export.TiffCompressionTypes.CCITT4 or Aspose.Slides.Export.TiffCompressionTypes.CCITT3.
8224
8262
  */
8225
- commentsPosition?: TiffExportOptions.CommentsPositionEnum;
8226
- /**
8227
- * Gets or sets the width of the comment output area in pixels (Applies only if comments are displayed on the right).
8228
- */
8229
- commentsAreaWidth?: number;
8230
- /**
8231
- * Gets or sets the color of comments area (Applies only if comments are displayed on the right).
8232
- */
8233
- commentsAreaColor?: string;
8234
- /**
8235
- * True if comments that have no author are displayed. (Applies only if comments are displayed).
8236
- */
8237
- showCommentsByNoAuthor?: boolean;
8263
+ bwConversionMode?: TiffExportOptions.BwConversionModeEnum;
8238
8264
  }
8239
8265
  export declare namespace TiffExportOptions {
8240
8266
  enum CompressionEnum {
@@ -8252,15 +8278,15 @@ export declare namespace TiffExportOptions {
8252
8278
  Format24bppRgb,
8253
8279
  Format32bppArgb
8254
8280
  }
8255
- enum NotesPositionEnum {
8256
- None,
8257
- BottomFull,
8258
- BottomTruncated
8259
- }
8260
- enum CommentsPositionEnum {
8261
- None,
8262
- Bottom,
8263
- Right
8281
+ enum BwConversionModeEnum {
8282
+ Default,
8283
+ Dithering,
8284
+ DitheringFloydSteinberg,
8285
+ Auto,
8286
+ AutoOtsu,
8287
+ Threshold25,
8288
+ Threshold50,
8289
+ Threshold75
8264
8290
  }
8265
8291
  }
8266
8292
  /**
package/model.js CHANGED
@@ -25,10 +25,10 @@
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.ChartWall = exports.ChartTitle = exports.ChartSeriesGroup = exports.ChartLinesFormat = exports.ChartCategory = exports.Chart = exports.Camera = exports.BubbleSeries = exports.XYSeries = exports.Series = exports.BubbleChartDataPoint = exports.ScatterChartDataPoint = exports.DataPoint = exports.BoxElement = exports.BorderBoxElement = exports.BlurImageEffect = exports.BlurEffect = exports.BlockElement = exports.BiLevelEffect = exports.Base64InputFile = exports.InputFile = exports.BarElement = exports.AxisType = exports.Axis = exports.Axes = exports.AudioFrame = exports.GeometryShape = exports.ShapeBase = exports.ResourceBase = exports.ArrowHeadProperties = exports.ArrayElement = exports.ArcToPathSegment = exports.PathSegment = exports.ApiInfo = exports.AlphaReplaceEffect = exports.AlphaModulateFixedEffect = exports.AlphaModulateEffect = exports.AlphaInverseEffect = exports.AlphaFloorEffect = exports.AlphaCeilingEffect = exports.AlphaBiLevelEffect = exports.ImageTransformEffect = exports.AddSlide = exports.AddShape = exports.AddMasterSlide = exports.AddLayoutSlide = exports.Task = exports.AccessPermissions = exports.AccentElement = exports.MathElement = void 0;
27
27
  exports.GraphicalObject = exports.GradientFillStop = exports.GradientFill = exports.GlowEffect = exports.GifExportOptions = exports.ImageExportOptionsBase = exports.GeometryPaths = exports.GeometryPath = exports.FunctionElement = exports.FractionElement = exports.FormatScheme = exports.FontsData = exports.FontSubstRule = exports.FontSet = exports.FontScheme = exports.FontFallbackRule = exports.FontData = exports.FillOverlayImageEffect = exports.FillOverlayEffect = exports.FillFormat = exports.FilesUploadResult = exports.FilesList = exports.FileVersions = exports.FileVersion = exports.StorageFile = exports.ExportOptions = exports.ExportFormat = exports.ErrorDetails = exports.EntityExists = exports.EffectFormat = exports.Effect = exports.DuotoneEffect = exports.DocumentReplaceResult = exports.DocumentProperty = exports.DocumentProperties = exports.Document = exports.DiscUsage = exports.DelimiterElement = exports.DataSource = exports.CustomDashPattern = exports.CubicBezierToPathSegment = exports.Connector = exports.CommonSlideViewProperties = exports.CommentAuthors = exports.CommentAuthor = exports.ColorScheme = exports.ColorReplaceEffect = exports.ColorChangeEffect = exports.ClosePathSegment = exports.ChartWallType = void 0;
28
- exports.Paragraph = exports.OutputFile = exports.OuterShadowEffect = exports.OrderedMergeRequest = exports.OperationProgress = exports.Operation = exports.OneValueSeries = exports.OneValueChartDataPoint = exports.OleObjectFrame = exports.ObjectExist = exports.NotesSlideHeaderFooter = exports.NotesSlideExportFormat = exports.NotesSlide = exports.NormalViewRestoredProperties = exports.NoFill = exports.NaryOperatorElement = exports.MoveToPathSegment = exports.ModelError = exports.MergingSource = exports.Merge = exports.MatrixElement = exports.MathParagraph = exports.MasterSlides = exports.MasterSlide = exports.LuminanceEffect = exports.Literals = exports.LineToPathSegment = exports.LineFormat = exports.LimitElement = exports.LightRig = exports.Legend = exports.LeftSubSuperscriptElement = exports.LayoutSlides = exports.LayoutSlide = exports.InteractiveSequence = exports.Input = exports.InnerShadowEffect = exports.Images = exports.ImageExportOptions = exports.ImageExportFormat = exports.Image = exports.IShapeExportOptions = exports.Hyperlink = exports.HtmlExportOptions = exports.Html5ExportOptions = exports.HslEffect = exports.HeaderFooter = exports.GroupingCharacterElement = exports.GroupShape = exports.GrayScaleEffect = void 0;
29
- exports.Slide = exports.ShapesAlignmentType = exports.Shapes = exports.ShapeType = exports.ShapeThumbnailBounds = exports.ShapeImageExportOptions = exports.ShapeExportFormat = exports.ShapeBevel = exports.Shape = exports.SeriesMarker = exports.Sections = exports.SectionZoomFrame = exports.ZoomObject = exports.Section = exports.ScatterSeries = exports.SaveSlide = exports.SaveShape = exports.Save = exports.RightSubSuperscriptElement = exports.ResponseOutputFile = exports.ResourceUri = exports.ResetSlide = exports.RequestInputFile = exports.ReplaceText = exports.ReorderSlide = exports.RemoveSlide = exports.RemoveShape = exports.ReflectionEffect = exports.RadicalElement = exports.QuadraticBezierToPathSegment = exports.ProtectionProperties = exports.PresetShadowEffect = exports.PresentationsMergeRequest = exports.PresentationToMerge = exports.PptxExportOptions = exports.Portions = exports.PortionFormat = exports.Portion = exports.PlotArea = exports.Placeholders = exports.Placeholder = exports.Pipeline = exports.PictureFrame = exports.PictureFill = exports.PdfExportOptions = exports.PatternFill = exports.PathOutputFile = exports.PathInputFile = exports.Paragraphs = exports.ParagraphFormat = void 0;
30
- exports.Workbook = exports.ViewProperties = exports.VideoFrame = exports.VideoExportOptions = exports.VbaReference = exports.VbaProject = exports.VbaModule = exports.UpdateShape = exports.UpdateBackground = exports.TintEffect = exports.TiffExportOptions = exports.ThreeDFormat = exports.Theme = exports.TextItems = exports.TextItem = exports.TextFrameFormat = exports.TextElement = exports.TextBounds = exports.TableRow = exports.TableColumn = exports.TableCellSplitType = exports.TableCellMergeOptions = exports.TableCell = exports.Table = exports.SwfExportOptions = exports.SvgExportOptions = exports.SuperscriptElement = exports.SummaryZoomSection = exports.SummaryZoomFrame = exports.SubscriptElement = exports.StorageExist = exports.SplitDocumentResult = exports.SpecialSlideType = exports.SolidFill = exports.SoftEdgeEffect = exports.SmartArtShape = exports.SmartArtNode = exports.SmartArt = exports.Slides = exports.SlideShowTransition = exports.SlideShowProperties = exports.SlideReplaceResult = exports.SlideProperties = exports.SlideModernComment = exports.SlideExportFormat = exports.SlideComments = exports.SlideComment = exports.SlideCommentBase = exports.SlideBackground = exports.SlideAnimation = void 0;
31
- exports.ZoomFrame = exports.XpsExportOptions = exports.XamlExportOptions = void 0;
28
+ exports.OrderedMergeRequest = exports.OperationProgress = exports.Operation = exports.OneValueSeries = exports.OneValueChartDataPoint = exports.OleObjectFrame = exports.ObjectExist = exports.NotesSlideHeaderFooter = exports.NotesSlideExportFormat = exports.NotesSlide = exports.NotesCommentsLayoutingOptions = exports.NormalViewRestoredProperties = exports.NoFill = exports.NaryOperatorElement = exports.MoveToPathSegment = exports.ModelError = exports.MergingSource = exports.Merge = exports.MatrixElement = exports.MathParagraph = exports.MasterSlides = exports.MasterSlide = exports.LuminanceEffect = exports.Literals = exports.LineToPathSegment = exports.LineFormat = exports.LimitElement = exports.LightRig = exports.Legend = exports.LeftSubSuperscriptElement = exports.LayoutSlides = exports.LayoutSlide = exports.InteractiveSequence = exports.Input = exports.InnerShadowEffect = exports.Images = exports.ImageExportOptions = exports.ImageExportFormat = exports.Image = exports.IShapeExportOptions = exports.Hyperlink = exports.HtmlExportOptions = exports.Html5ExportOptions = exports.HslEffect = exports.HeaderFooter = exports.HandoutLayoutingOptions = exports.SlidesLayoutOptions = exports.GroupingCharacterElement = exports.GroupShape = exports.GrayScaleEffect = void 0;
29
+ exports.ShapeType = exports.ShapeThumbnailBounds = exports.ShapeImageExportOptions = exports.ShapeExportFormat = exports.ShapeBevel = exports.Shape = exports.SeriesMarker = exports.Sections = exports.SectionZoomFrame = exports.ZoomObject = exports.Section = exports.ScatterSeries = exports.SaveSlide = exports.SaveShape = exports.Save = exports.RightSubSuperscriptElement = exports.ResponseOutputFile = exports.ResourceUri = exports.ResetSlide = exports.RequestInputFile = exports.ReplaceText = exports.ReorderSlide = exports.RemoveSlide = exports.RemoveShape = exports.ReflectionEffect = exports.RadicalElement = exports.QuadraticBezierToPathSegment = exports.ProtectionProperties = exports.PresetShadowEffect = exports.PresentationsMergeRequest = exports.PresentationToMerge = exports.PptxExportOptions = exports.Portions = exports.PortionFormat = exports.Portion = exports.PlotArea = exports.Placeholders = exports.Placeholder = exports.Pipeline = exports.PictureFrame = exports.PictureFill = exports.PdfExportOptions = exports.PatternFill = exports.PathOutputFile = exports.PathInputFile = exports.Paragraphs = exports.ParagraphFormat = exports.Paragraph = exports.OutputFile = exports.OuterShadowEffect = void 0;
30
+ exports.VideoExportOptions = exports.VbaReference = exports.VbaProject = exports.VbaModule = exports.UpdateShape = exports.UpdateBackground = exports.TintEffect = exports.TiffExportOptions = exports.ThreeDFormat = exports.Theme = exports.TextItems = exports.TextItem = exports.TextFrameFormat = exports.TextElement = exports.TextBounds = exports.TableRow = exports.TableColumn = exports.TableCellSplitType = exports.TableCellMergeOptions = exports.TableCell = exports.Table = exports.SwfExportOptions = exports.SvgExportOptions = exports.SuperscriptElement = exports.SummaryZoomSection = exports.SummaryZoomFrame = exports.SubscriptElement = exports.StorageExist = exports.SplitDocumentResult = exports.SpecialSlideType = exports.SolidFill = exports.SoftEdgeEffect = exports.SmartArtShape = exports.SmartArtNode = exports.SmartArt = exports.Slides = exports.SlideShowTransition = exports.SlideShowProperties = exports.SlideReplaceResult = exports.SlideProperties = exports.SlideModernComment = exports.SlideExportFormat = exports.SlideComments = exports.SlideComment = exports.SlideCommentBase = exports.SlideBackground = exports.SlideAnimation = exports.Slide = exports.ShapesAlignmentType = exports.Shapes = void 0;
31
+ exports.ZoomFrame = exports.XpsExportOptions = exports.XamlExportOptions = exports.Workbook = exports.ViewProperties = exports.VideoFrame = void 0;
32
32
  /**
33
33
  * Math element.
34
34
  */
@@ -1645,6 +1645,12 @@ exports.Effect = Effect;
1645
1645
  PresetClassTypeEnum[PresetClassTypeEnum["MediaCall"] = 'MediaCall'] = "MediaCall";
1646
1646
  PresetClassTypeEnum[PresetClassTypeEnum["OLEActionVerbs"] = 'OLEActionVerbs'] = "OLEActionVerbs";
1647
1647
  })(PresetClassTypeEnum = Effect.PresetClassTypeEnum || (Effect.PresetClassTypeEnum = {}));
1648
+ let AnimateTextTypeEnum;
1649
+ (function (AnimateTextTypeEnum) {
1650
+ AnimateTextTypeEnum[AnimateTextTypeEnum["AllAtOnce"] = 'AllAtOnce'] = "AllAtOnce";
1651
+ AnimateTextTypeEnum[AnimateTextTypeEnum["ByWord"] = 'ByWord'] = "ByWord";
1652
+ AnimateTextTypeEnum[AnimateTextTypeEnum["ByLetter"] = 'ByLetter'] = "ByLetter";
1653
+ })(AnimateTextTypeEnum = Effect.AnimateTextTypeEnum || (Effect.AnimateTextTypeEnum = {}));
1648
1654
  let TriggerTypeEnum;
1649
1655
  (function (TriggerTypeEnum) {
1650
1656
  TriggerTypeEnum[TriggerTypeEnum["AfterPrevious"] = 'AfterPrevious'] = "AfterPrevious";
@@ -1717,6 +1723,7 @@ var ExportFormat;
1717
1723
  ExportFormat[ExportFormat["Fodp"] = 'Fodp'] = "Fodp";
1718
1724
  ExportFormat[ExportFormat["Xaml"] = 'Xaml'] = "Xaml";
1719
1725
  ExportFormat[ExportFormat["Mpeg4"] = 'Mpeg4'] = "Mpeg4";
1726
+ ExportFormat[ExportFormat["Md"] = 'Md'] = "Md";
1720
1727
  })(ExportFormat = exports.ExportFormat || (exports.ExportFormat = {}));
1721
1728
  /**
1722
1729
  * Represents export options for whole presentation.
@@ -2032,6 +2039,43 @@ exports.GroupingCharacterElement = GroupingCharacterElement;
2032
2039
  VerticalJustificationEnum[VerticalJustificationEnum["Bottom"] = 'Bottom'] = "Bottom";
2033
2040
  })(VerticalJustificationEnum = GroupingCharacterElement.VerticalJustificationEnum || (GroupingCharacterElement.VerticalJustificationEnum = {}));
2034
2041
  })(GroupingCharacterElement = exports.GroupingCharacterElement || (exports.GroupingCharacterElement = {}));
2042
+ /**
2043
+ * Slides layouting options.
2044
+ */
2045
+ class SlidesLayoutOptions {
2046
+ }
2047
+ exports.SlidesLayoutOptions = SlidesLayoutOptions;
2048
+ (function (SlidesLayoutOptions) {
2049
+ let LayoutTypeEnum;
2050
+ (function (LayoutTypeEnum) {
2051
+ LayoutTypeEnum[LayoutTypeEnum["NotesComments"] = 'NotesComments'] = "NotesComments";
2052
+ LayoutTypeEnum[LayoutTypeEnum["Handout"] = 'Handout'] = "Handout";
2053
+ })(LayoutTypeEnum = SlidesLayoutOptions.LayoutTypeEnum || (SlidesLayoutOptions.LayoutTypeEnum = {}));
2054
+ })(SlidesLayoutOptions = exports.SlidesLayoutOptions || (exports.SlidesLayoutOptions = {}));
2055
+ /**
2056
+ * Handout layouting options
2057
+ */
2058
+ class HandoutLayoutingOptions extends SlidesLayoutOptions {
2059
+ constructor() {
2060
+ super();
2061
+ this.layoutType = HandoutLayoutingOptions.LayoutTypeEnum.Handout;
2062
+ }
2063
+ }
2064
+ exports.HandoutLayoutingOptions = HandoutLayoutingOptions;
2065
+ (function (HandoutLayoutingOptions) {
2066
+ let HandoutEnum;
2067
+ (function (HandoutEnum) {
2068
+ HandoutEnum[HandoutEnum["Handouts1"] = 'Handouts1'] = "Handouts1";
2069
+ HandoutEnum[HandoutEnum["Handouts2"] = 'Handouts2'] = "Handouts2";
2070
+ HandoutEnum[HandoutEnum["Handouts3"] = 'Handouts3'] = "Handouts3";
2071
+ HandoutEnum[HandoutEnum["Handouts4Horizontal"] = 'Handouts4Horizontal'] = "Handouts4Horizontal";
2072
+ HandoutEnum[HandoutEnum["Handouts4Vertical"] = 'Handouts4Vertical'] = "Handouts4Vertical";
2073
+ HandoutEnum[HandoutEnum["Handouts6Horizontal"] = 'Handouts6Horizontal'] = "Handouts6Horizontal";
2074
+ HandoutEnum[HandoutEnum["Handouts6Vertical"] = 'Handouts6Vertical'] = "Handouts6Vertical";
2075
+ HandoutEnum[HandoutEnum["Handouts9Horizontal"] = 'Handouts9Horizontal'] = "Handouts9Horizontal";
2076
+ HandoutEnum[HandoutEnum["Handouts9Vertical"] = 'Handouts9Vertical'] = "Handouts9Vertical";
2077
+ })(HandoutEnum = HandoutLayoutingOptions.HandoutEnum || (HandoutLayoutingOptions.HandoutEnum = {}));
2078
+ })(HandoutLayoutingOptions = exports.HandoutLayoutingOptions || (exports.HandoutLayoutingOptions = {}));
2035
2079
  /**
2036
2080
  * Represents header/footer info of slide
2037
2081
  */
@@ -2081,18 +2125,6 @@ exports.HtmlExportOptions = HtmlExportOptions;
2081
2125
  PicturesCompressionEnum[PicturesCompressionEnum["Dpi72"] = 'Dpi72'] = "Dpi72";
2082
2126
  PicturesCompressionEnum[PicturesCompressionEnum["DocumentResolution"] = 'DocumentResolution'] = "DocumentResolution";
2083
2127
  })(PicturesCompressionEnum = HtmlExportOptions.PicturesCompressionEnum || (HtmlExportOptions.PicturesCompressionEnum = {}));
2084
- let NotesPositionEnum;
2085
- (function (NotesPositionEnum) {
2086
- NotesPositionEnum[NotesPositionEnum["None"] = 'None'] = "None";
2087
- NotesPositionEnum[NotesPositionEnum["BottomFull"] = 'BottomFull'] = "BottomFull";
2088
- NotesPositionEnum[NotesPositionEnum["BottomTruncated"] = 'BottomTruncated'] = "BottomTruncated";
2089
- })(NotesPositionEnum = HtmlExportOptions.NotesPositionEnum || (HtmlExportOptions.NotesPositionEnum = {}));
2090
- let CommentsPositionEnum;
2091
- (function (CommentsPositionEnum) {
2092
- CommentsPositionEnum[CommentsPositionEnum["None"] = 'None'] = "None";
2093
- CommentsPositionEnum[CommentsPositionEnum["Bottom"] = 'Bottom'] = "Bottom";
2094
- CommentsPositionEnum[CommentsPositionEnum["Right"] = 'Right'] = "Right";
2095
- })(CommentsPositionEnum = HtmlExportOptions.CommentsPositionEnum || (HtmlExportOptions.CommentsPositionEnum = {}));
2096
2128
  })(HtmlExportOptions = exports.HtmlExportOptions || (exports.HtmlExportOptions = {}));
2097
2129
  /**
2098
2130
  * Hyperlink
@@ -2165,20 +2197,6 @@ class ImageExportOptions extends ImageExportOptionsBase {
2165
2197
  }
2166
2198
  }
2167
2199
  exports.ImageExportOptions = ImageExportOptions;
2168
- (function (ImageExportOptions) {
2169
- let NotesPositionEnum;
2170
- (function (NotesPositionEnum) {
2171
- NotesPositionEnum[NotesPositionEnum["None"] = 'None'] = "None";
2172
- NotesPositionEnum[NotesPositionEnum["BottomFull"] = 'BottomFull'] = "BottomFull";
2173
- NotesPositionEnum[NotesPositionEnum["BottomTruncated"] = 'BottomTruncated'] = "BottomTruncated";
2174
- })(NotesPositionEnum = ImageExportOptions.NotesPositionEnum || (ImageExportOptions.NotesPositionEnum = {}));
2175
- let CommentsPositionEnum;
2176
- (function (CommentsPositionEnum) {
2177
- CommentsPositionEnum[CommentsPositionEnum["None"] = 'None'] = "None";
2178
- CommentsPositionEnum[CommentsPositionEnum["Bottom"] = 'Bottom'] = "Bottom";
2179
- CommentsPositionEnum[CommentsPositionEnum["Right"] = 'Right'] = "Right";
2180
- })(CommentsPositionEnum = ImageExportOptions.CommentsPositionEnum || (ImageExportOptions.CommentsPositionEnum = {}));
2181
- })(ImageExportOptions = exports.ImageExportOptions || (exports.ImageExportOptions = {}));
2182
2200
  /**
2183
2201
  * List of images.
2184
2202
  */
@@ -2577,6 +2595,30 @@ exports.NoFill = NoFill;
2577
2595
  class NormalViewRestoredProperties {
2578
2596
  }
2579
2597
  exports.NormalViewRestoredProperties = NormalViewRestoredProperties;
2598
+ /**
2599
+ * Notes &amp; comments layouting options.
2600
+ */
2601
+ class NotesCommentsLayoutingOptions extends SlidesLayoutOptions {
2602
+ constructor() {
2603
+ super();
2604
+ this.layoutType = NotesCommentsLayoutingOptions.LayoutTypeEnum.NotesComments;
2605
+ }
2606
+ }
2607
+ exports.NotesCommentsLayoutingOptions = NotesCommentsLayoutingOptions;
2608
+ (function (NotesCommentsLayoutingOptions) {
2609
+ let NotesPositionEnum;
2610
+ (function (NotesPositionEnum) {
2611
+ NotesPositionEnum[NotesPositionEnum["None"] = 'None'] = "None";
2612
+ NotesPositionEnum[NotesPositionEnum["BottomFull"] = 'BottomFull'] = "BottomFull";
2613
+ NotesPositionEnum[NotesPositionEnum["BottomTruncated"] = 'BottomTruncated'] = "BottomTruncated";
2614
+ })(NotesPositionEnum = NotesCommentsLayoutingOptions.NotesPositionEnum || (NotesCommentsLayoutingOptions.NotesPositionEnum = {}));
2615
+ let CommentsPositionEnum;
2616
+ (function (CommentsPositionEnum) {
2617
+ CommentsPositionEnum[CommentsPositionEnum["None"] = 'None'] = "None";
2618
+ CommentsPositionEnum[CommentsPositionEnum["Bottom"] = 'Bottom'] = "Bottom";
2619
+ CommentsPositionEnum[CommentsPositionEnum["Right"] = 'Right'] = "Right";
2620
+ })(CommentsPositionEnum = NotesCommentsLayoutingOptions.CommentsPositionEnum || (NotesCommentsLayoutingOptions.CommentsPositionEnum = {}));
2621
+ })(NotesCommentsLayoutingOptions = exports.NotesCommentsLayoutingOptions || (exports.NotesCommentsLayoutingOptions = {}));
2580
2622
  /**
2581
2623
  * Represents notes slide DTO.
2582
2624
  */
@@ -3065,18 +3107,6 @@ exports.PdfExportOptions = PdfExportOptions;
3065
3107
  ComplianceEnum[ComplianceEnum["PdfUa"] = 'PdfUa'] = "PdfUa";
3066
3108
  ComplianceEnum[ComplianceEnum["PdfA2u"] = 'PdfA2u'] = "PdfA2u";
3067
3109
  })(ComplianceEnum = PdfExportOptions.ComplianceEnum || (PdfExportOptions.ComplianceEnum = {}));
3068
- let NotesPositionEnum;
3069
- (function (NotesPositionEnum) {
3070
- NotesPositionEnum[NotesPositionEnum["None"] = 'None'] = "None";
3071
- NotesPositionEnum[NotesPositionEnum["BottomFull"] = 'BottomFull'] = "BottomFull";
3072
- NotesPositionEnum[NotesPositionEnum["BottomTruncated"] = 'BottomTruncated'] = "BottomTruncated";
3073
- })(NotesPositionEnum = PdfExportOptions.NotesPositionEnum || (PdfExportOptions.NotesPositionEnum = {}));
3074
- let CommentsPositionEnum;
3075
- (function (CommentsPositionEnum) {
3076
- CommentsPositionEnum[CommentsPositionEnum["None"] = 'None'] = "None";
3077
- CommentsPositionEnum[CommentsPositionEnum["Bottom"] = 'Bottom'] = "Bottom";
3078
- CommentsPositionEnum[CommentsPositionEnum["Right"] = 'Right'] = "Right";
3079
- })(CommentsPositionEnum = PdfExportOptions.CommentsPositionEnum || (PdfExportOptions.CommentsPositionEnum = {}));
3080
3110
  })(PdfExportOptions = exports.PdfExportOptions || (exports.PdfExportOptions = {}));
3081
3111
  /**
3082
3112
  * Picture fill.
@@ -3601,6 +3631,7 @@ exports.Save = Save;
3601
3631
  FormatEnum[FormatEnum["Fodp"] = 'Fodp'] = "Fodp";
3602
3632
  FormatEnum[FormatEnum["Xaml"] = 'Xaml'] = "Xaml";
3603
3633
  FormatEnum[FormatEnum["Mpeg4"] = 'Mpeg4'] = "Mpeg4";
3634
+ FormatEnum[FormatEnum["Md"] = 'Md'] = "Md";
3604
3635
  })(FormatEnum = Save.FormatEnum || (Save.FormatEnum = {}));
3605
3636
  })(Save = exports.Save || (exports.Save = {}));
3606
3637
  /**
@@ -3660,6 +3691,7 @@ exports.SaveSlide = SaveSlide;
3660
3691
  FormatEnum[FormatEnum["Fodp"] = 'Fodp'] = "Fodp";
3661
3692
  FormatEnum[FormatEnum["Xaml"] = 'Xaml'] = "Xaml";
3662
3693
  FormatEnum[FormatEnum["Html5"] = 'Html5'] = "Html5";
3694
+ FormatEnum[FormatEnum["Md"] = 'Md'] = "Md";
3663
3695
  })(FormatEnum = SaveSlide.FormatEnum || (SaveSlide.FormatEnum = {}));
3664
3696
  })(SaveSlide = exports.SaveSlide || (exports.SaveSlide = {}));
3665
3697
  /**
@@ -3966,6 +3998,7 @@ var SlideExportFormat;
3966
3998
  SlideExportFormat[SlideExportFormat["Fodp"] = 'Fodp'] = "Fodp";
3967
3999
  SlideExportFormat[SlideExportFormat["Xaml"] = 'Xaml'] = "Xaml";
3968
4000
  SlideExportFormat[SlideExportFormat["Html5"] = 'Html5'] = "Html5";
4001
+ SlideExportFormat[SlideExportFormat["Md"] = 'Md'] = "Md";
3969
4002
  })(SlideExportFormat = exports.SlideExportFormat || (exports.SlideExportFormat = {}));
3970
4003
  /**
3971
4004
  * Represents modern comment of slide
@@ -4926,18 +4959,17 @@ exports.TiffExportOptions = TiffExportOptions;
4926
4959
  PixelFormatEnum[PixelFormatEnum["Format24bppRgb"] = 'Format24bppRgb'] = "Format24bppRgb";
4927
4960
  PixelFormatEnum[PixelFormatEnum["Format32bppArgb"] = 'Format32bppArgb'] = "Format32bppArgb";
4928
4961
  })(PixelFormatEnum = TiffExportOptions.PixelFormatEnum || (TiffExportOptions.PixelFormatEnum = {}));
4929
- let NotesPositionEnum;
4930
- (function (NotesPositionEnum) {
4931
- NotesPositionEnum[NotesPositionEnum["None"] = 'None'] = "None";
4932
- NotesPositionEnum[NotesPositionEnum["BottomFull"] = 'BottomFull'] = "BottomFull";
4933
- NotesPositionEnum[NotesPositionEnum["BottomTruncated"] = 'BottomTruncated'] = "BottomTruncated";
4934
- })(NotesPositionEnum = TiffExportOptions.NotesPositionEnum || (TiffExportOptions.NotesPositionEnum = {}));
4935
- let CommentsPositionEnum;
4936
- (function (CommentsPositionEnum) {
4937
- CommentsPositionEnum[CommentsPositionEnum["None"] = 'None'] = "None";
4938
- CommentsPositionEnum[CommentsPositionEnum["Bottom"] = 'Bottom'] = "Bottom";
4939
- CommentsPositionEnum[CommentsPositionEnum["Right"] = 'Right'] = "Right";
4940
- })(CommentsPositionEnum = TiffExportOptions.CommentsPositionEnum || (TiffExportOptions.CommentsPositionEnum = {}));
4962
+ let BwConversionModeEnum;
4963
+ (function (BwConversionModeEnum) {
4964
+ BwConversionModeEnum[BwConversionModeEnum["Default"] = 'Default'] = "Default";
4965
+ BwConversionModeEnum[BwConversionModeEnum["Dithering"] = 'Dithering'] = "Dithering";
4966
+ BwConversionModeEnum[BwConversionModeEnum["DitheringFloydSteinberg"] = 'DitheringFloydSteinberg'] = "DitheringFloydSteinberg";
4967
+ BwConversionModeEnum[BwConversionModeEnum["Auto"] = 'Auto'] = "Auto";
4968
+ BwConversionModeEnum[BwConversionModeEnum["AutoOtsu"] = 'AutoOtsu'] = "AutoOtsu";
4969
+ BwConversionModeEnum[BwConversionModeEnum["Threshold25"] = 'Threshold25'] = "Threshold25";
4970
+ BwConversionModeEnum[BwConversionModeEnum["Threshold50"] = 'Threshold50'] = "Threshold50";
4971
+ BwConversionModeEnum[BwConversionModeEnum["Threshold75"] = 'Threshold75'] = "Threshold75";
4972
+ })(BwConversionModeEnum = TiffExportOptions.BwConversionModeEnum || (TiffExportOptions.BwConversionModeEnum = {}));
4941
4973
  })(TiffExportOptions = exports.TiffExportOptions || (exports.TiffExportOptions = {}));
4942
4974
  /**
4943
4975
  * Represents a Tint effect.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asposeslidescloud",
3
- "version": "24.2.0",
3
+ "version": "24.3.0",
4
4
  "description": "Aspose.Slides Cloud SDK for Node.js",
5
5
  "homepage": "https://products.aspose.cloud/slides/cloud",
6
6
  "author": {