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/README.md +87 -76
- package/api.d.ts +87 -32
- package/api.js +180 -0
- package/internal/requestHelper.js +1 -1
- package/model.d.ts +235 -43
- package/model.js +171 -20
- package/package.json +24 -24
package/model.js
CHANGED
|
@@ -97,12 +97,14 @@ exports.Axis = Axis;
|
|
|
97
97
|
})(DisplayUnitEnum = Axis.DisplayUnitEnum || (Axis.DisplayUnitEnum = {}));
|
|
98
98
|
let BaseUnitScaleEnum;
|
|
99
99
|
(function (BaseUnitScaleEnum) {
|
|
100
|
+
BaseUnitScaleEnum[BaseUnitScaleEnum["None"] = 'None'] = "None";
|
|
100
101
|
BaseUnitScaleEnum[BaseUnitScaleEnum["Days"] = 'Days'] = "Days";
|
|
101
102
|
BaseUnitScaleEnum[BaseUnitScaleEnum["Months"] = 'Months'] = "Months";
|
|
102
103
|
BaseUnitScaleEnum[BaseUnitScaleEnum["Years"] = 'Years'] = "Years";
|
|
103
104
|
})(BaseUnitScaleEnum = Axis.BaseUnitScaleEnum || (Axis.BaseUnitScaleEnum = {}));
|
|
104
105
|
let MajorUnitScaleEnum;
|
|
105
106
|
(function (MajorUnitScaleEnum) {
|
|
107
|
+
MajorUnitScaleEnum[MajorUnitScaleEnum["None"] = 'None'] = "None";
|
|
106
108
|
MajorUnitScaleEnum[MajorUnitScaleEnum["Days"] = 'Days'] = "Days";
|
|
107
109
|
MajorUnitScaleEnum[MajorUnitScaleEnum["Months"] = 'Months'] = "Months";
|
|
108
110
|
MajorUnitScaleEnum[MajorUnitScaleEnum["Years"] = 'Years'] = "Years";
|
|
@@ -116,6 +118,7 @@ exports.Axis = Axis;
|
|
|
116
118
|
})(MajorTickMarkEnum = Axis.MajorTickMarkEnum || (Axis.MajorTickMarkEnum = {}));
|
|
117
119
|
let MinorUnitScaleEnum;
|
|
118
120
|
(function (MinorUnitScaleEnum) {
|
|
121
|
+
MinorUnitScaleEnum[MinorUnitScaleEnum["None"] = 'None'] = "None";
|
|
119
122
|
MinorUnitScaleEnum[MinorUnitScaleEnum["Days"] = 'Days'] = "Days";
|
|
120
123
|
MinorUnitScaleEnum[MinorUnitScaleEnum["Months"] = 'Months'] = "Months";
|
|
121
124
|
MinorUnitScaleEnum[MinorUnitScaleEnum["Years"] = 'Years'] = "Years";
|
|
@@ -568,6 +571,7 @@ var ExportFormat;
|
|
|
568
571
|
ExportFormat[ExportFormat["Bmp"] = 'Bmp'] = "Bmp";
|
|
569
572
|
ExportFormat[ExportFormat["Fodp"] = 'Fodp'] = "Fodp";
|
|
570
573
|
ExportFormat[ExportFormat["Xaml"] = 'Xaml'] = "Xaml";
|
|
574
|
+
ExportFormat[ExportFormat["Mpeg4"] = 'Mpeg4'] = "Mpeg4";
|
|
571
575
|
})(ExportFormat = exports.ExportFormat || (exports.ExportFormat = {}));
|
|
572
576
|
/**
|
|
573
577
|
* Represents export options for whole presentation.
|
|
@@ -1459,6 +1463,60 @@ exports.Task = Task;
|
|
|
1459
1463
|
TypeEnum[TypeEnum["ReplaceText"] = 'ReplaceText'] = "ReplaceText";
|
|
1460
1464
|
})(TypeEnum = Task.TypeEnum || (Task.TypeEnum = {}));
|
|
1461
1465
|
})(Task = exports.Task || (exports.Task = {}));
|
|
1466
|
+
/**
|
|
1467
|
+
* Contains the TextFrame's formatting properties.
|
|
1468
|
+
*/
|
|
1469
|
+
class TextFrameFormat {
|
|
1470
|
+
}
|
|
1471
|
+
exports.TextFrameFormat = TextFrameFormat;
|
|
1472
|
+
(function (TextFrameFormat) {
|
|
1473
|
+
let TransformEnum;
|
|
1474
|
+
(function (TransformEnum) {
|
|
1475
|
+
TransformEnum[TransformEnum["None"] = 'None'] = "None";
|
|
1476
|
+
TransformEnum[TransformEnum["Plain"] = 'Plain'] = "Plain";
|
|
1477
|
+
TransformEnum[TransformEnum["Stop"] = 'Stop'] = "Stop";
|
|
1478
|
+
TransformEnum[TransformEnum["Triangle"] = 'Triangle'] = "Triangle";
|
|
1479
|
+
TransformEnum[TransformEnum["TriangleInverted"] = 'TriangleInverted'] = "TriangleInverted";
|
|
1480
|
+
TransformEnum[TransformEnum["Chevron"] = 'Chevron'] = "Chevron";
|
|
1481
|
+
TransformEnum[TransformEnum["ChevronInverted"] = 'ChevronInverted'] = "ChevronInverted";
|
|
1482
|
+
TransformEnum[TransformEnum["RingInside"] = 'RingInside'] = "RingInside";
|
|
1483
|
+
TransformEnum[TransformEnum["RingOutside"] = 'RingOutside'] = "RingOutside";
|
|
1484
|
+
TransformEnum[TransformEnum["ArchUp"] = 'ArchUp'] = "ArchUp";
|
|
1485
|
+
TransformEnum[TransformEnum["ArchDown"] = 'ArchDown'] = "ArchDown";
|
|
1486
|
+
TransformEnum[TransformEnum["Circle"] = 'Circle'] = "Circle";
|
|
1487
|
+
TransformEnum[TransformEnum["Button"] = 'Button'] = "Button";
|
|
1488
|
+
TransformEnum[TransformEnum["ArchUpPour"] = 'ArchUpPour'] = "ArchUpPour";
|
|
1489
|
+
TransformEnum[TransformEnum["ArchDownPour"] = 'ArchDownPour'] = "ArchDownPour";
|
|
1490
|
+
TransformEnum[TransformEnum["CirclePour"] = 'CirclePour'] = "CirclePour";
|
|
1491
|
+
TransformEnum[TransformEnum["ButtonPour"] = 'ButtonPour'] = "ButtonPour";
|
|
1492
|
+
TransformEnum[TransformEnum["CurveUp"] = 'CurveUp'] = "CurveUp";
|
|
1493
|
+
TransformEnum[TransformEnum["CurveDown"] = 'CurveDown'] = "CurveDown";
|
|
1494
|
+
TransformEnum[TransformEnum["CanUp"] = 'CanUp'] = "CanUp";
|
|
1495
|
+
TransformEnum[TransformEnum["CanDown"] = 'CanDown'] = "CanDown";
|
|
1496
|
+
TransformEnum[TransformEnum["Wave1"] = 'Wave1'] = "Wave1";
|
|
1497
|
+
TransformEnum[TransformEnum["Wave2"] = 'Wave2'] = "Wave2";
|
|
1498
|
+
TransformEnum[TransformEnum["DoubleWave1"] = 'DoubleWave1'] = "DoubleWave1";
|
|
1499
|
+
TransformEnum[TransformEnum["Wave4"] = 'Wave4'] = "Wave4";
|
|
1500
|
+
TransformEnum[TransformEnum["Inflate"] = 'Inflate'] = "Inflate";
|
|
1501
|
+
TransformEnum[TransformEnum["Deflate"] = 'Deflate'] = "Deflate";
|
|
1502
|
+
TransformEnum[TransformEnum["InflateBottom"] = 'InflateBottom'] = "InflateBottom";
|
|
1503
|
+
TransformEnum[TransformEnum["DeflateBottom"] = 'DeflateBottom'] = "DeflateBottom";
|
|
1504
|
+
TransformEnum[TransformEnum["InflateTop"] = 'InflateTop'] = "InflateTop";
|
|
1505
|
+
TransformEnum[TransformEnum["DeflateTop"] = 'DeflateTop'] = "DeflateTop";
|
|
1506
|
+
TransformEnum[TransformEnum["DeflateInflate"] = 'DeflateInflate'] = "DeflateInflate";
|
|
1507
|
+
TransformEnum[TransformEnum["DeflateInflateDeflate"] = 'DeflateInflateDeflate'] = "DeflateInflateDeflate";
|
|
1508
|
+
TransformEnum[TransformEnum["FadeRight"] = 'FadeRight'] = "FadeRight";
|
|
1509
|
+
TransformEnum[TransformEnum["FadeLeft"] = 'FadeLeft'] = "FadeLeft";
|
|
1510
|
+
TransformEnum[TransformEnum["FadeUp"] = 'FadeUp'] = "FadeUp";
|
|
1511
|
+
TransformEnum[TransformEnum["FadeDown"] = 'FadeDown'] = "FadeDown";
|
|
1512
|
+
TransformEnum[TransformEnum["SlantUp"] = 'SlantUp'] = "SlantUp";
|
|
1513
|
+
TransformEnum[TransformEnum["SlantDown"] = 'SlantDown'] = "SlantDown";
|
|
1514
|
+
TransformEnum[TransformEnum["CascadeUp"] = 'CascadeUp'] = "CascadeUp";
|
|
1515
|
+
TransformEnum[TransformEnum["CascadeDown"] = 'CascadeDown'] = "CascadeDown";
|
|
1516
|
+
TransformEnum[TransformEnum["Custom"] = 'Custom'] = "Custom";
|
|
1517
|
+
TransformEnum[TransformEnum["NotDefined"] = 'NotDefined'] = "NotDefined";
|
|
1518
|
+
})(TransformEnum = TextFrameFormat.TransformEnum || (TextFrameFormat.TransformEnum = {}));
|
|
1519
|
+
})(TextFrameFormat = exports.TextFrameFormat || (exports.TextFrameFormat = {}));
|
|
1462
1520
|
/**
|
|
1463
1521
|
* Represents text item, referenced by TextItems
|
|
1464
1522
|
*/
|
|
@@ -1637,16 +1695,6 @@ class BoxElement extends MathElement {
|
|
|
1637
1695
|
}
|
|
1638
1696
|
}
|
|
1639
1697
|
exports.BoxElement = BoxElement;
|
|
1640
|
-
/**
|
|
1641
|
-
* A bubble series.
|
|
1642
|
-
*/
|
|
1643
|
-
class BubbleSeries extends Series {
|
|
1644
|
-
constructor() {
|
|
1645
|
-
super();
|
|
1646
|
-
this.dataPointType = BubbleSeries.DataPointTypeEnum.Bubble;
|
|
1647
|
-
}
|
|
1648
|
-
}
|
|
1649
|
-
exports.BubbleSeries = BubbleSeries;
|
|
1650
1698
|
/**
|
|
1651
1699
|
* Close path segment of the geometry path
|
|
1652
1700
|
*/
|
|
@@ -2752,6 +2800,7 @@ exports.Save = Save;
|
|
|
2752
2800
|
FormatEnum[FormatEnum["Bmp"] = 'Bmp'] = "Bmp";
|
|
2753
2801
|
FormatEnum[FormatEnum["Fodp"] = 'Fodp'] = "Fodp";
|
|
2754
2802
|
FormatEnum[FormatEnum["Xaml"] = 'Xaml'] = "Xaml";
|
|
2803
|
+
FormatEnum[FormatEnum["Mpeg4"] = 'Mpeg4'] = "Mpeg4";
|
|
2755
2804
|
})(FormatEnum = Save.FormatEnum || (Save.FormatEnum = {}));
|
|
2756
2805
|
})(Save = exports.Save || (exports.Save = {}));
|
|
2757
2806
|
/**
|
|
@@ -2821,16 +2870,6 @@ class ScatterChartDataPoint extends DataPoint {
|
|
|
2821
2870
|
}
|
|
2822
2871
|
}
|
|
2823
2872
|
exports.ScatterChartDataPoint = ScatterChartDataPoint;
|
|
2824
|
-
/**
|
|
2825
|
-
* A scatter series
|
|
2826
|
-
*/
|
|
2827
|
-
class ScatterSeries extends Series {
|
|
2828
|
-
constructor() {
|
|
2829
|
-
super();
|
|
2830
|
-
this.dataPointType = ScatterSeries.DataPointTypeEnum.Scatter;
|
|
2831
|
-
}
|
|
2832
|
-
}
|
|
2833
|
-
exports.ScatterSeries = ScatterSeries;
|
|
2834
2873
|
/**
|
|
2835
2874
|
* Presentation section.
|
|
2836
2875
|
*/
|
|
@@ -2873,6 +2912,10 @@ exports.ShapeBase = ShapeBase;
|
|
|
2873
2912
|
TypeEnum[TypeEnum["GraphicalObject"] = 'GraphicalObject'] = "GraphicalObject";
|
|
2874
2913
|
TypeEnum[TypeEnum["Connector"] = 'Connector'] = "Connector";
|
|
2875
2914
|
TypeEnum[TypeEnum["SmartArtShape"] = 'SmartArtShape'] = "SmartArtShape";
|
|
2915
|
+
TypeEnum[TypeEnum["ZoomFrame"] = 'ZoomFrame'] = "ZoomFrame";
|
|
2916
|
+
TypeEnum[TypeEnum["SectionZoomFrame"] = 'SectionZoomFrame'] = "SectionZoomFrame";
|
|
2917
|
+
TypeEnum[TypeEnum["SummaryZoomFrame"] = 'SummaryZoomFrame'] = "SummaryZoomFrame";
|
|
2918
|
+
TypeEnum[TypeEnum["SummaryZoomSection"] = 'SummaryZoomSection'] = "SummaryZoomSection";
|
|
2876
2919
|
})(TypeEnum = ShapeBase.TypeEnum || (ShapeBase.TypeEnum = {}));
|
|
2877
2920
|
})(ShapeBase = exports.ShapeBase || (exports.ShapeBase = {}));
|
|
2878
2921
|
/**
|
|
@@ -3161,6 +3204,25 @@ class UpdateShape extends Task {
|
|
|
3161
3204
|
}
|
|
3162
3205
|
}
|
|
3163
3206
|
exports.UpdateShape = UpdateShape;
|
|
3207
|
+
/**
|
|
3208
|
+
* Provides options that control how a presentation is saved in an video format.
|
|
3209
|
+
*/
|
|
3210
|
+
class VideoExportOptions extends ExportOptions {
|
|
3211
|
+
constructor() {
|
|
3212
|
+
super();
|
|
3213
|
+
this.format = 'mpeg4';
|
|
3214
|
+
}
|
|
3215
|
+
}
|
|
3216
|
+
exports.VideoExportOptions = VideoExportOptions;
|
|
3217
|
+
(function (VideoExportOptions) {
|
|
3218
|
+
let VideoResolutionTypeEnum;
|
|
3219
|
+
(function (VideoResolutionTypeEnum) {
|
|
3220
|
+
VideoResolutionTypeEnum[VideoResolutionTypeEnum["FullHD"] = 'FullHD'] = "FullHD";
|
|
3221
|
+
VideoResolutionTypeEnum[VideoResolutionTypeEnum["SD"] = 'SD'] = "SD";
|
|
3222
|
+
VideoResolutionTypeEnum[VideoResolutionTypeEnum["HD"] = 'HD'] = "HD";
|
|
3223
|
+
VideoResolutionTypeEnum[VideoResolutionTypeEnum["QHD"] = 'QHD'] = "QHD";
|
|
3224
|
+
})(VideoResolutionTypeEnum = VideoExportOptions.VideoResolutionTypeEnum || (VideoExportOptions.VideoResolutionTypeEnum = {}));
|
|
3225
|
+
})(VideoExportOptions = exports.VideoExportOptions || (exports.VideoExportOptions = {}));
|
|
3164
3226
|
/**
|
|
3165
3227
|
* Slides document properties.
|
|
3166
3228
|
*/
|
|
@@ -3202,6 +3264,15 @@ exports.ViewProperties = ViewProperties;
|
|
|
3202
3264
|
ShowCommentsEnum[ShowCommentsEnum["NotDefined"] = 'NotDefined'] = "NotDefined";
|
|
3203
3265
|
})(ShowCommentsEnum = ViewProperties.ShowCommentsEnum || (ViewProperties.ShowCommentsEnum = {}));
|
|
3204
3266
|
})(ViewProperties = exports.ViewProperties || (exports.ViewProperties = {}));
|
|
3267
|
+
/**
|
|
3268
|
+
* Common properties for Bubble and Scatter series.
|
|
3269
|
+
*/
|
|
3270
|
+
class XYSeries extends Series {
|
|
3271
|
+
constructor() {
|
|
3272
|
+
super();
|
|
3273
|
+
}
|
|
3274
|
+
}
|
|
3275
|
+
exports.XYSeries = XYSeries;
|
|
3205
3276
|
/**
|
|
3206
3277
|
* Provides options that control how a presentation is saved in XAML format.
|
|
3207
3278
|
*/
|
|
@@ -3248,6 +3319,16 @@ class BubbleChartDataPoint extends ScatterChartDataPoint {
|
|
|
3248
3319
|
}
|
|
3249
3320
|
}
|
|
3250
3321
|
exports.BubbleChartDataPoint = BubbleChartDataPoint;
|
|
3322
|
+
/**
|
|
3323
|
+
* A bubble series.
|
|
3324
|
+
*/
|
|
3325
|
+
class BubbleSeries extends XYSeries {
|
|
3326
|
+
constructor() {
|
|
3327
|
+
super();
|
|
3328
|
+
this.dataPointType = BubbleSeries.DataPointTypeEnum.Bubble;
|
|
3329
|
+
}
|
|
3330
|
+
}
|
|
3331
|
+
exports.BubbleSeries = BubbleSeries;
|
|
3251
3332
|
/**
|
|
3252
3333
|
* Represents chart resource
|
|
3253
3334
|
*/
|
|
@@ -3587,6 +3668,16 @@ class OleObjectFrame extends ShapeBase {
|
|
|
3587
3668
|
}
|
|
3588
3669
|
}
|
|
3589
3670
|
exports.OleObjectFrame = OleObjectFrame;
|
|
3671
|
+
/**
|
|
3672
|
+
* A scatter series
|
|
3673
|
+
*/
|
|
3674
|
+
class ScatterSeries extends XYSeries {
|
|
3675
|
+
constructor() {
|
|
3676
|
+
super();
|
|
3677
|
+
this.dataPointType = ScatterSeries.DataPointTypeEnum.Scatter;
|
|
3678
|
+
}
|
|
3679
|
+
}
|
|
3680
|
+
exports.ScatterSeries = ScatterSeries;
|
|
3590
3681
|
/**
|
|
3591
3682
|
* Represents slide replace result DTO.
|
|
3592
3683
|
*/
|
|
@@ -3805,6 +3896,23 @@ exports.SmartArt = SmartArt;
|
|
|
3805
3896
|
ColorStyleEnum[ColorStyleEnum["TransparentGradientRangeAccent6"] = 'TransparentGradientRangeAccent6'] = "TransparentGradientRangeAccent6";
|
|
3806
3897
|
})(ColorStyleEnum = SmartArt.ColorStyleEnum || (SmartArt.ColorStyleEnum = {}));
|
|
3807
3898
|
})(SmartArt = exports.SmartArt || (exports.SmartArt = {}));
|
|
3899
|
+
/**
|
|
3900
|
+
* Summary zoom frame.
|
|
3901
|
+
*/
|
|
3902
|
+
class SummaryZoomFrame extends ShapeBase {
|
|
3903
|
+
constructor() {
|
|
3904
|
+
super();
|
|
3905
|
+
this.type = SummaryZoomFrame.TypeEnum.SummaryZoomFrame;
|
|
3906
|
+
}
|
|
3907
|
+
}
|
|
3908
|
+
exports.SummaryZoomFrame = SummaryZoomFrame;
|
|
3909
|
+
(function (SummaryZoomFrame) {
|
|
3910
|
+
let ZoomLayoutEnum;
|
|
3911
|
+
(function (ZoomLayoutEnum) {
|
|
3912
|
+
ZoomLayoutEnum[ZoomLayoutEnum["GridLayout"] = 'GridLayout'] = "GridLayout";
|
|
3913
|
+
ZoomLayoutEnum[ZoomLayoutEnum["FixedLayout"] = 'FixedLayout'] = "FixedLayout";
|
|
3914
|
+
})(ZoomLayoutEnum = SummaryZoomFrame.ZoomLayoutEnum || (SummaryZoomFrame.ZoomLayoutEnum = {}));
|
|
3915
|
+
})(SummaryZoomFrame = exports.SummaryZoomFrame || (exports.SummaryZoomFrame = {}));
|
|
3808
3916
|
/**
|
|
3809
3917
|
* Represents Table shape resource.
|
|
3810
3918
|
*/
|
|
@@ -3915,6 +4023,19 @@ class WaterfallSeries extends OneValueSeries {
|
|
|
3915
4023
|
}
|
|
3916
4024
|
}
|
|
3917
4025
|
exports.WaterfallSeries = WaterfallSeries;
|
|
4026
|
+
class ZoomObject extends ShapeBase {
|
|
4027
|
+
constructor() {
|
|
4028
|
+
super();
|
|
4029
|
+
}
|
|
4030
|
+
}
|
|
4031
|
+
exports.ZoomObject = ZoomObject;
|
|
4032
|
+
(function (ZoomObject) {
|
|
4033
|
+
let ImageTypeEnum;
|
|
4034
|
+
(function (ImageTypeEnum) {
|
|
4035
|
+
ImageTypeEnum[ImageTypeEnum["Preview"] = 'Preview'] = "Preview";
|
|
4036
|
+
ImageTypeEnum[ImageTypeEnum["Cover"] = 'Cover'] = "Cover";
|
|
4037
|
+
})(ImageTypeEnum = ZoomObject.ImageTypeEnum || (ZoomObject.ImageTypeEnum = {}));
|
|
4038
|
+
})(ZoomObject = exports.ZoomObject || (exports.ZoomObject = {}));
|
|
3918
4039
|
/**
|
|
3919
4040
|
* Represents AudioFrame resource.
|
|
3920
4041
|
*/
|
|
@@ -3963,6 +4084,16 @@ class PictureFrame extends GeometryShape {
|
|
|
3963
4084
|
}
|
|
3964
4085
|
}
|
|
3965
4086
|
exports.PictureFrame = PictureFrame;
|
|
4087
|
+
/**
|
|
4088
|
+
* Section zoom frame.
|
|
4089
|
+
*/
|
|
4090
|
+
class SectionZoomFrame extends ZoomObject {
|
|
4091
|
+
constructor() {
|
|
4092
|
+
super();
|
|
4093
|
+
this.type = SectionZoomFrame.TypeEnum.SectionZoomFrame;
|
|
4094
|
+
}
|
|
4095
|
+
}
|
|
4096
|
+
exports.SectionZoomFrame = SectionZoomFrame;
|
|
3966
4097
|
/**
|
|
3967
4098
|
* Represents AutoShape resource.
|
|
3968
4099
|
*/
|
|
@@ -4011,3 +4142,23 @@ exports.VideoFrame = VideoFrame;
|
|
|
4011
4142
|
VolumeEnum[VolumeEnum["Mixed"] = 'Mixed'] = "Mixed";
|
|
4012
4143
|
})(VolumeEnum = VideoFrame.VolumeEnum || (VideoFrame.VolumeEnum = {}));
|
|
4013
4144
|
})(VideoFrame = exports.VideoFrame || (exports.VideoFrame = {}));
|
|
4145
|
+
/**
|
|
4146
|
+
* Zoom frame.
|
|
4147
|
+
*/
|
|
4148
|
+
class ZoomFrame extends ZoomObject {
|
|
4149
|
+
constructor() {
|
|
4150
|
+
super();
|
|
4151
|
+
this.type = ZoomFrame.TypeEnum.ZoomFrame;
|
|
4152
|
+
}
|
|
4153
|
+
}
|
|
4154
|
+
exports.ZoomFrame = ZoomFrame;
|
|
4155
|
+
/**
|
|
4156
|
+
* Represents summary zoom section
|
|
4157
|
+
*/
|
|
4158
|
+
class SummaryZoomSection extends SectionZoomFrame {
|
|
4159
|
+
constructor() {
|
|
4160
|
+
super();
|
|
4161
|
+
this.type = SummaryZoomSection.TypeEnum.SummaryZoomSection;
|
|
4162
|
+
}
|
|
4163
|
+
}
|
|
4164
|
+
exports.SummaryZoomSection = SummaryZoomSection;
|
package/package.json
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "asposeslidescloud",
|
|
3
|
-
"version": "22.
|
|
4
|
-
"description": "Aspose.Slides Cloud SDK for Node.js",
|
|
5
|
-
"homepage": "https://products.aspose.cloud/slides/cloud",
|
|
6
|
-
"author": {
|
|
7
|
-
"name": "Victor Putrov"
|
|
8
|
-
},
|
|
9
|
-
"license": "MIT",
|
|
10
|
-
"engines": {
|
|
11
|
-
"node": ">=4.8"
|
|
12
|
-
},
|
|
13
|
-
"keywords": [
|
|
14
|
-
"Aspose",
|
|
15
|
-
"Cloud",
|
|
16
|
-
"Slides"
|
|
17
|
-
],
|
|
18
|
-
"readmeFilename": "README.md",
|
|
19
|
-
"main": "api.js",
|
|
20
|
-
"dependencies": {
|
|
21
|
-
"request": "^2.85.0",
|
|
22
|
-
"request-debug": "^0.2.0"
|
|
23
|
-
}
|
|
24
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "asposeslidescloud",
|
|
3
|
+
"version": "22.2.0",
|
|
4
|
+
"description": "Aspose.Slides Cloud SDK for Node.js",
|
|
5
|
+
"homepage": "https://products.aspose.cloud/slides/cloud",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Victor Putrov"
|
|
8
|
+
},
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">=4.8"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"Aspose",
|
|
15
|
+
"Cloud",
|
|
16
|
+
"Slides"
|
|
17
|
+
],
|
|
18
|
+
"readmeFilename": "README.md",
|
|
19
|
+
"main": "api.js",
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"request": "^2.85.0",
|
|
22
|
+
"request-debug": "^0.2.0"
|
|
23
|
+
}
|
|
24
|
+
}
|