asposeslidescloud 22.1.1 → 22.2.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/api.js CHANGED
@@ -4657,6 +4657,68 @@ class SlidesApi {
4657
4657
  return Promise.resolve({ body: result, response });
4658
4658
  });
4659
4659
  }
4660
+ /**
4661
+ * Removes unused layout slides.
4662
+ * @param name Document name.
4663
+ * @param password Document password.
4664
+ * @param folder Document folder.
4665
+ * @param storage Document storage.
4666
+ */
4667
+ deleteUnusedLayoutSlides(name, password = null, folder = null, storage = null) {
4668
+ return __awaiter(this, void 0, void 0, function* () {
4669
+ // verify required parameter 'name' is not null or undefined
4670
+ if (name === null || name === undefined) {
4671
+ throw new Error('The required parameter "name" was null or undefined when calling deleteUnusedLayoutSlides.');
4672
+ }
4673
+ let localVarPath = this.configuration.getApiBaseUrl() + "/slides/{name}/layoutSlides";
4674
+ localVarPath = requestHelper_1.addPathParameterToUrl(localVarPath, "name", objectSerializer_1.ObjectSerializer.toString(name));
4675
+ const queryParameters = {};
4676
+ localVarPath = requestHelper_1.addQueryParameterToUrl(localVarPath, queryParameters, "folder", folder);
4677
+ localVarPath = requestHelper_1.addQueryParameterToUrl(localVarPath, queryParameters, "storage", storage);
4678
+ const requestOptions = {
4679
+ method: "DELETE",
4680
+ qs: queryParameters,
4681
+ headers: {},
4682
+ uri: localVarPath,
4683
+ json: true
4684
+ };
4685
+ requestHelper_1.addHeaderParameter(requestOptions.headers, "password", password);
4686
+ const response = yield requestHelper_1.invokeApiMethod(requestOptions, this.configuration);
4687
+ const result = objectSerializer_1.ObjectSerializer.deserialize(response.body, "LayoutSlides");
4688
+ return Promise.resolve({ body: result, response });
4689
+ });
4690
+ }
4691
+ /**
4692
+ * Removes unused layout slides.
4693
+ * @param document Document data
4694
+ * @param password Document password.
4695
+ */
4696
+ deleteUnusedLayoutSlidesOnline(document, password = null) {
4697
+ return __awaiter(this, void 0, void 0, function* () {
4698
+ // verify required parameter 'document' is not null or undefined
4699
+ if (document === null || document === undefined) {
4700
+ throw new Error('The required parameter "document" was null or undefined when calling deleteUnusedLayoutSlidesOnline.');
4701
+ }
4702
+ let localVarPath = this.configuration.getApiBaseUrl() + "/slides/layoutSlides/delete";
4703
+ const queryParameters = {};
4704
+ const requestOptions = {
4705
+ method: "POST",
4706
+ qs: queryParameters,
4707
+ headers: {},
4708
+ uri: localVarPath,
4709
+ encoding: null
4710
+ };
4711
+ requestHelper_1.addHeaderParameter(requestOptions.headers, "password", password);
4712
+ let localVarFiles = [];
4713
+ if (document != null) {
4714
+ localVarFiles.push(document);
4715
+ }
4716
+ requestHelper_1.checkMultipartContent(requestOptions, localVarFiles);
4717
+ const response = yield requestHelper_1.invokeApiMethod(requestOptions, this.configuration);
4718
+ const result = objectSerializer_1.ObjectSerializer.deserialize(response.body, "Buffer");
4719
+ return Promise.resolve({ body: result, response });
4720
+ });
4721
+ }
4660
4722
  /**
4661
4723
  * Removes shapes with name \"watermark\" from the presentation.
4662
4724
  * @param name Document name.
@@ -8221,6 +8283,124 @@ class SlidesApi {
8221
8283
  return Promise.resolve({ body: result, response });
8222
8284
  });
8223
8285
  }
8286
+ /**
8287
+ * Highlight all matches of sample in text frame text using specified color.
8288
+ * @param name Document name.
8289
+ * @param slideIndex Slide index.
8290
+ * @param shapeIndex Shape index.
8291
+ * @param regex Regular expression.
8292
+ * @param color Highlighting color.
8293
+ * @param wholeWordsOnly Match only whole words.
8294
+ * @param ignoreCase True to search ignoring char case.
8295
+ * @param password Document password.
8296
+ * @param folder Document folder.
8297
+ * @param storage Document storage.
8298
+ */
8299
+ highlightShapeRegex(name, slideIndex, shapeIndex, regex, color, wholeWordsOnly = null, ignoreCase = null, password = null, folder = null, storage = null) {
8300
+ return __awaiter(this, void 0, void 0, function* () {
8301
+ // verify required parameter 'name' is not null or undefined
8302
+ if (name === null || name === undefined) {
8303
+ throw new Error('The required parameter "name" was null or undefined when calling highlightShapeRegex.');
8304
+ }
8305
+ // verify required parameter 'slideIndex' is not null or undefined
8306
+ if (slideIndex === null || slideIndex === undefined) {
8307
+ throw new Error('The required parameter "slideIndex" was null or undefined when calling highlightShapeRegex.');
8308
+ }
8309
+ // verify required parameter 'shapeIndex' is not null or undefined
8310
+ if (shapeIndex === null || shapeIndex === undefined) {
8311
+ throw new Error('The required parameter "shapeIndex" was null or undefined when calling highlightShapeRegex.');
8312
+ }
8313
+ // verify required parameter 'regex' is not null or undefined
8314
+ if (regex === null || regex === undefined) {
8315
+ throw new Error('The required parameter "regex" was null or undefined when calling highlightShapeRegex.');
8316
+ }
8317
+ // verify required parameter 'color' is not null or undefined
8318
+ if (color === null || color === undefined) {
8319
+ throw new Error('The required parameter "color" was null or undefined when calling highlightShapeRegex.');
8320
+ }
8321
+ let localVarPath = this.configuration.getApiBaseUrl() + "/slides/{name}/slides/{slideIndex}/shapes/{shapeIndex}/highlightRegex";
8322
+ localVarPath = requestHelper_1.addPathParameterToUrl(localVarPath, "name", objectSerializer_1.ObjectSerializer.toString(name));
8323
+ localVarPath = requestHelper_1.addPathParameterToUrl(localVarPath, "slideIndex", objectSerializer_1.ObjectSerializer.toString(slideIndex));
8324
+ localVarPath = requestHelper_1.addPathParameterToUrl(localVarPath, "shapeIndex", objectSerializer_1.ObjectSerializer.toString(shapeIndex));
8325
+ const queryParameters = {};
8326
+ localVarPath = requestHelper_1.addQueryParameterToUrl(localVarPath, queryParameters, "regex", regex);
8327
+ localVarPath = requestHelper_1.addQueryParameterToUrl(localVarPath, queryParameters, "color", color);
8328
+ localVarPath = requestHelper_1.addQueryParameterToUrl(localVarPath, queryParameters, "wholeWordsOnly", wholeWordsOnly);
8329
+ localVarPath = requestHelper_1.addQueryParameterToUrl(localVarPath, queryParameters, "ignoreCase", ignoreCase);
8330
+ localVarPath = requestHelper_1.addQueryParameterToUrl(localVarPath, queryParameters, "folder", folder);
8331
+ localVarPath = requestHelper_1.addQueryParameterToUrl(localVarPath, queryParameters, "storage", storage);
8332
+ const requestOptions = {
8333
+ method: "PUT",
8334
+ qs: queryParameters,
8335
+ headers: {},
8336
+ uri: localVarPath,
8337
+ json: true
8338
+ };
8339
+ requestHelper_1.addHeaderParameter(requestOptions.headers, "password", password);
8340
+ const response = yield requestHelper_1.invokeApiMethod(requestOptions, this.configuration);
8341
+ const result = objectSerializer_1.ObjectSerializer.deserialize(response.body, "Shape");
8342
+ return Promise.resolve({ body: result, response });
8343
+ });
8344
+ }
8345
+ /**
8346
+ * Highlight all matches of sample in text frame text using specified color.
8347
+ * @param name Document name.
8348
+ * @param slideIndex Slide index.
8349
+ * @param shapeIndex Shape index.
8350
+ * @param text Text sample to highlight.
8351
+ * @param color Highlighting color.
8352
+ * @param wholeWordsOnly Match only whole words.
8353
+ * @param ignoreCase True to search ignoring char case.
8354
+ * @param password Document password.
8355
+ * @param folder Document folder.
8356
+ * @param storage Document storage.
8357
+ */
8358
+ highlightShapeText(name, slideIndex, shapeIndex, text, color, wholeWordsOnly = null, ignoreCase = null, password = null, folder = null, storage = null) {
8359
+ return __awaiter(this, void 0, void 0, function* () {
8360
+ // verify required parameter 'name' is not null or undefined
8361
+ if (name === null || name === undefined) {
8362
+ throw new Error('The required parameter "name" was null or undefined when calling highlightShapeText.');
8363
+ }
8364
+ // verify required parameter 'slideIndex' is not null or undefined
8365
+ if (slideIndex === null || slideIndex === undefined) {
8366
+ throw new Error('The required parameter "slideIndex" was null or undefined when calling highlightShapeText.');
8367
+ }
8368
+ // verify required parameter 'shapeIndex' is not null or undefined
8369
+ if (shapeIndex === null || shapeIndex === undefined) {
8370
+ throw new Error('The required parameter "shapeIndex" was null or undefined when calling highlightShapeText.');
8371
+ }
8372
+ // verify required parameter 'text' is not null or undefined
8373
+ if (text === null || text === undefined) {
8374
+ throw new Error('The required parameter "text" was null or undefined when calling highlightShapeText.');
8375
+ }
8376
+ // verify required parameter 'color' is not null or undefined
8377
+ if (color === null || color === undefined) {
8378
+ throw new Error('The required parameter "color" was null or undefined when calling highlightShapeText.');
8379
+ }
8380
+ let localVarPath = this.configuration.getApiBaseUrl() + "/slides/{name}/slides/{slideIndex}/shapes/{shapeIndex}/highlightText";
8381
+ localVarPath = requestHelper_1.addPathParameterToUrl(localVarPath, "name", objectSerializer_1.ObjectSerializer.toString(name));
8382
+ localVarPath = requestHelper_1.addPathParameterToUrl(localVarPath, "slideIndex", objectSerializer_1.ObjectSerializer.toString(slideIndex));
8383
+ localVarPath = requestHelper_1.addPathParameterToUrl(localVarPath, "shapeIndex", objectSerializer_1.ObjectSerializer.toString(shapeIndex));
8384
+ const queryParameters = {};
8385
+ localVarPath = requestHelper_1.addQueryParameterToUrl(localVarPath, queryParameters, "text", text);
8386
+ localVarPath = requestHelper_1.addQueryParameterToUrl(localVarPath, queryParameters, "color", color);
8387
+ localVarPath = requestHelper_1.addQueryParameterToUrl(localVarPath, queryParameters, "wholeWordsOnly", wholeWordsOnly);
8388
+ localVarPath = requestHelper_1.addQueryParameterToUrl(localVarPath, queryParameters, "ignoreCase", ignoreCase);
8389
+ localVarPath = requestHelper_1.addQueryParameterToUrl(localVarPath, queryParameters, "folder", folder);
8390
+ localVarPath = requestHelper_1.addQueryParameterToUrl(localVarPath, queryParameters, "storage", storage);
8391
+ const requestOptions = {
8392
+ method: "PUT",
8393
+ qs: queryParameters,
8394
+ headers: {},
8395
+ uri: localVarPath,
8396
+ json: true
8397
+ };
8398
+ requestHelper_1.addHeaderParameter(requestOptions.headers, "password", password);
8399
+ const response = yield requestHelper_1.invokeApiMethod(requestOptions, this.configuration);
8400
+ const result = objectSerializer_1.ObjectSerializer.deserialize(response.body, "Shape");
8401
+ return Promise.resolve({ body: result, response });
8402
+ });
8403
+ }
8224
8404
  /**
8225
8405
  * Create presentation document from html.
8226
8406
  * @param name Document name.
@@ -144,7 +144,7 @@ function invokeApiMethodInternal(requestOptions, confguration, notApplyAuthToReq
144
144
  if (!requestOptions.headers) {
145
145
  requestOptions.headers = {};
146
146
  }
147
- requestOptions.headers["x-aspose-client"] = "nodejs sdk v22.1.0";
147
+ requestOptions.headers["x-aspose-client"] = "nodejs sdk v22.2.0";
148
148
  if (confguration.timeout) {
149
149
  requestOptions.headers["x-aspose-timeout"] = confguration.timeout;
150
150
  }
package/model.d.ts CHANGED
@@ -242,11 +242,13 @@ export declare namespace Axis {
242
242
  CustomValue
243
243
  }
244
244
  enum BaseUnitScaleEnum {
245
+ None,
245
246
  Days,
246
247
  Months,
247
248
  Years
248
249
  }
249
250
  enum MajorUnitScaleEnum {
251
+ None,
250
252
  Days,
251
253
  Months,
252
254
  Years
@@ -258,6 +260,7 @@ export declare namespace Axis {
258
260
  Outside
259
261
  }
260
262
  enum MinorUnitScaleEnum {
263
+ None,
261
264
  Days,
262
265
  Months,
263
266
  Years
@@ -896,7 +899,8 @@ export declare enum ExportFormat {
896
899
  'Gif',
897
900
  'Bmp',
898
901
  'Fodp',
899
- 'Xaml'
902
+ 'Xaml',
903
+ 'Mpeg4'
900
904
  }
901
905
  /**
902
906
  * Represents export options for whole presentation.
@@ -1898,22 +1902,6 @@ export declare class Series {
1898
1902
  * Series order.
1899
1903
  */
1900
1904
  order?: number;
1901
- /**
1902
- * The number format for the series y values.
1903
- */
1904
- numberFormatOfYValues?: string;
1905
- /**
1906
- * The number format for the series x values.
1907
- */
1908
- numberFormatOfXValues?: string;
1909
- /**
1910
- * The number format for the series values.
1911
- */
1912
- numberFormatOfValues?: string;
1913
- /**
1914
- * The number format for the series bubble sizes.
1915
- */
1916
- numberFormatOfBubbleSizes?: string;
1917
1905
  /**
1918
1906
  * True if the series shall invert its colors if the value is negative. Applies to bar, column and bubble series.
1919
1907
  */
@@ -2454,6 +2442,66 @@ export declare namespace Task {
2454
2442
  ReplaceText
2455
2443
  }
2456
2444
  }
2445
+ /**
2446
+ * Contains the TextFrame's formatting properties.
2447
+ */
2448
+ export declare class TextFrameFormat {
2449
+ /**
2450
+ * Represents 3d effect properties for a text.
2451
+ */
2452
+ threeDFormat?: ThreeDFormat;
2453
+ /**
2454
+ * Gets or sets text wrapping shape.
2455
+ */
2456
+ transform?: TextFrameFormat.TransformEnum;
2457
+ }
2458
+ export declare namespace TextFrameFormat {
2459
+ enum TransformEnum {
2460
+ None,
2461
+ Plain,
2462
+ Stop,
2463
+ Triangle,
2464
+ TriangleInverted,
2465
+ Chevron,
2466
+ ChevronInverted,
2467
+ RingInside,
2468
+ RingOutside,
2469
+ ArchUp,
2470
+ ArchDown,
2471
+ Circle,
2472
+ Button,
2473
+ ArchUpPour,
2474
+ ArchDownPour,
2475
+ CirclePour,
2476
+ ButtonPour,
2477
+ CurveUp,
2478
+ CurveDown,
2479
+ CanUp,
2480
+ CanDown,
2481
+ Wave1,
2482
+ Wave2,
2483
+ DoubleWave1,
2484
+ Wave4,
2485
+ Inflate,
2486
+ Deflate,
2487
+ InflateBottom,
2488
+ DeflateBottom,
2489
+ InflateTop,
2490
+ DeflateTop,
2491
+ DeflateInflate,
2492
+ DeflateInflateDeflate,
2493
+ FadeRight,
2494
+ FadeLeft,
2495
+ FadeUp,
2496
+ FadeDown,
2497
+ SlantUp,
2498
+ SlantDown,
2499
+ CascadeUp,
2500
+ CascadeDown,
2501
+ Custom,
2502
+ NotDefined
2503
+ }
2504
+ }
2457
2505
  /**
2458
2506
  * Represents text item, referenced by TextItems
2459
2507
  */
@@ -2814,18 +2862,6 @@ export declare class BoxElement extends MathElement {
2814
2862
  }
2815
2863
  export declare namespace BoxElement {
2816
2864
  }
2817
- /**
2818
- * A bubble series.
2819
- */
2820
- export declare class BubbleSeries extends Series {
2821
- constructor();
2822
- /**
2823
- * Gets or sets the values.
2824
- */
2825
- dataPoints?: Array<BubbleChartDataPoint>;
2826
- }
2827
- export declare namespace BubbleSeries {
2828
- }
2829
2865
  /**
2830
2866
  * Close path segment of the geometry path
2831
2867
  */
@@ -3756,6 +3792,10 @@ export declare class OneValueSeries extends Series {
3756
3792
  * Gets or sets the values.
3757
3793
  */
3758
3794
  dataPoints?: Array<OneValueChartDataPoint>;
3795
+ /**
3796
+ * The number format for the series values.
3797
+ */
3798
+ numberFormatOfValues?: string;
3759
3799
  }
3760
3800
  export declare namespace OneValueSeries {
3761
3801
  }
@@ -4735,7 +4775,8 @@ export declare namespace Save {
4735
4775
  Gif,
4736
4776
  Bmp,
4737
4777
  Fodp,
4738
- Xaml
4778
+ Xaml,
4779
+ Mpeg4
4739
4780
  }
4740
4781
  }
4741
4782
  /**
@@ -4840,18 +4881,6 @@ export declare class ScatterChartDataPoint extends DataPoint {
4840
4881
  */
4841
4882
  yValue: number;
4842
4883
  }
4843
- /**
4844
- * A scatter series
4845
- */
4846
- export declare class ScatterSeries extends Series {
4847
- constructor();
4848
- /**
4849
- * Gets or sets the values.
4850
- */
4851
- dataPoints?: Array<ScatterChartDataPoint>;
4852
- }
4853
- export declare namespace ScatterSeries {
4854
- }
4855
4884
  /**
4856
4885
  * Presentation section.
4857
4886
  */
@@ -4964,7 +4993,11 @@ export declare namespace ShapeBase {
4964
4993
  GroupShape,
4965
4994
  GraphicalObject,
4966
4995
  Connector,
4967
- SmartArtShape
4996
+ SmartArtShape,
4997
+ ZoomFrame,
4998
+ SectionZoomFrame,
4999
+ SummaryZoomFrame,
5000
+ SummaryZoomSection
4968
5001
  }
4969
5002
  }
4970
5003
  /**
@@ -5507,6 +5540,28 @@ export declare class UpdateShape extends Task {
5507
5540
  }
5508
5541
  export declare namespace UpdateShape {
5509
5542
  }
5543
+ /**
5544
+ * Provides options that control how a presentation is saved in an video format.
5545
+ */
5546
+ export declare class VideoExportOptions extends ExportOptions {
5547
+ constructor();
5548
+ /**
5549
+ * Transition duration.
5550
+ */
5551
+ transitionDuration?: number;
5552
+ /**
5553
+ * Video resolution type
5554
+ */
5555
+ videoResolutionType?: VideoExportOptions.VideoResolutionTypeEnum;
5556
+ }
5557
+ export declare namespace VideoExportOptions {
5558
+ enum VideoResolutionTypeEnum {
5559
+ FullHD,
5560
+ SD,
5561
+ HD,
5562
+ QHD
5563
+ }
5564
+ }
5510
5565
  /**
5511
5566
  * Slides document properties.
5512
5567
  */
@@ -5577,6 +5632,22 @@ export declare namespace ViewProperties {
5577
5632
  NotDefined
5578
5633
  }
5579
5634
  }
5635
+ /**
5636
+ * Common properties for Bubble and Scatter series.
5637
+ */
5638
+ export declare class XYSeries extends Series {
5639
+ constructor();
5640
+ /**
5641
+ * The number format for the series y values.
5642
+ */
5643
+ numberFormatOfYValues?: string;
5644
+ /**
5645
+ * The number format for the series x values.
5646
+ */
5647
+ numberFormatOfXValues?: string;
5648
+ }
5649
+ export declare namespace XYSeries {
5650
+ }
5580
5651
  /**
5581
5652
  * Provides options that control how a presentation is saved in XAML format.
5582
5653
  */
@@ -5647,6 +5718,22 @@ export declare class BubbleChartDataPoint extends ScatterChartDataPoint {
5647
5718
  */
5648
5719
  bubbleSize: number;
5649
5720
  }
5721
+ /**
5722
+ * A bubble series.
5723
+ */
5724
+ export declare class BubbleSeries extends XYSeries {
5725
+ constructor();
5726
+ /**
5727
+ * Gets or sets the values.
5728
+ */
5729
+ dataPoints?: Array<BubbleChartDataPoint>;
5730
+ /**
5731
+ * The number format for the series bubble sizes.
5732
+ */
5733
+ numberFormatOfBubbleSizes?: string;
5734
+ }
5735
+ export declare namespace BubbleSeries {
5736
+ }
5650
5737
  /**
5651
5738
  * Represents chart resource
5652
5739
  */
@@ -6028,6 +6115,18 @@ export declare class OleObjectFrame extends ShapeBase {
6028
6115
  }
6029
6116
  export declare namespace OleObjectFrame {
6030
6117
  }
6118
+ /**
6119
+ * A scatter series
6120
+ */
6121
+ export declare class ScatterSeries extends XYSeries {
6122
+ constructor();
6123
+ /**
6124
+ * Gets or sets the values.
6125
+ */
6126
+ dataPoints?: Array<ScatterChartDataPoint>;
6127
+ }
6128
+ export declare namespace ScatterSeries {
6129
+ }
6031
6130
  /**
6032
6131
  * Represents slide replace result DTO.
6033
6132
  */
@@ -6260,6 +6359,26 @@ export declare namespace SmartArt {
6260
6359
  TransparentGradientRangeAccent6
6261
6360
  }
6262
6361
  }
6362
+ /**
6363
+ * Summary zoom frame.
6364
+ */
6365
+ export declare class SummaryZoomFrame extends ShapeBase {
6366
+ constructor();
6367
+ /**
6368
+ * Zoom layout type
6369
+ */
6370
+ zoomLayout?: SummaryZoomFrame.ZoomLayoutEnum;
6371
+ /**
6372
+ * Zoom frame sections
6373
+ */
6374
+ sections?: Array<SummaryZoomSection>;
6375
+ }
6376
+ export declare namespace SummaryZoomFrame {
6377
+ enum ZoomLayoutEnum {
6378
+ GridLayout,
6379
+ FixedLayout
6380
+ }
6381
+ }
6263
6382
  /**
6264
6383
  * Represents Table shape resource.
6265
6384
  */
@@ -6408,6 +6527,35 @@ export declare class WaterfallSeries extends OneValueSeries {
6408
6527
  }
6409
6528
  export declare namespace WaterfallSeries {
6410
6529
  }
6530
+ export declare class ZoomObject extends ShapeBase {
6531
+ constructor();
6532
+ /**
6533
+ * Image type of a zoom object.
6534
+ */
6535
+ imageType?: ZoomObject.ImageTypeEnum;
6536
+ /**
6537
+ * Navigation behavior in slideshow.
6538
+ */
6539
+ returnToParent?: boolean;
6540
+ /**
6541
+ * Specifies whether the Zoom will use the background of the destination slide.
6542
+ */
6543
+ showBackground?: boolean;
6544
+ /**
6545
+ * Internal image link for zoom object
6546
+ */
6547
+ image?: ResourceUri;
6548
+ /**
6549
+ * Duration of the transition between Zoom and slide.
6550
+ */
6551
+ transitionDuration?: number;
6552
+ }
6553
+ export declare namespace ZoomObject {
6554
+ enum ImageTypeEnum {
6555
+ Preview,
6556
+ Cover
6557
+ }
6558
+ }
6411
6559
  /**
6412
6560
  * Represents AudioFrame resource.
6413
6561
  */
@@ -6514,6 +6662,18 @@ export declare class PictureFrame extends GeometryShape {
6514
6662
  }
6515
6663
  export declare namespace PictureFrame {
6516
6664
  }
6665
+ /**
6666
+ * Section zoom frame.
6667
+ */
6668
+ export declare class SectionZoomFrame extends ZoomObject {
6669
+ constructor();
6670
+ /**
6671
+ * Index of the target section
6672
+ */
6673
+ targetSectionIndex?: number;
6674
+ }
6675
+ export declare namespace SectionZoomFrame {
6676
+ }
6517
6677
  /**
6518
6678
  * Represents AutoShape resource.
6519
6679
  */
@@ -6527,6 +6687,10 @@ export declare class Shape extends GeometryShape {
6527
6687
  * Get or sets list to paragraphs list
6528
6688
  */
6529
6689
  paragraphs?: ResourceUri;
6690
+ /**
6691
+ * Returns TextFrame's formatting properties.
6692
+ */
6693
+ textFrameFormat?: TextFrameFormat;
6530
6694
  }
6531
6695
  export declare namespace Shape {
6532
6696
  }
@@ -6588,3 +6752,31 @@ export declare namespace VideoFrame {
6588
6752
  Mixed
6589
6753
  }
6590
6754
  }
6755
+ /**
6756
+ * Zoom frame.
6757
+ */
6758
+ export declare class ZoomFrame extends ZoomObject {
6759
+ constructor();
6760
+ /**
6761
+ * Links to the target slide
6762
+ */
6763
+ targetSlideIndex?: number;
6764
+ }
6765
+ export declare namespace ZoomFrame {
6766
+ }
6767
+ /**
6768
+ * Represents summary zoom section
6769
+ */
6770
+ export declare class SummaryZoomSection extends SectionZoomFrame {
6771
+ constructor();
6772
+ /**
6773
+ * Section title
6774
+ */
6775
+ title?: string;
6776
+ /**
6777
+ * Description of the Summary Zoom Section object.
6778
+ */
6779
+ description?: string;
6780
+ }
6781
+ export declare namespace SummaryZoomSection {
6782
+ }