asposeslidescloud 22.6.0 → 22.7.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 +9 -0
- package/api.d.ts +81 -15
- package/api.js +284 -54
- package/internal/requestHelper.js +1 -1
- package/model.d.ts +48 -4
- package/model.js +51 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,6 +27,15 @@ You may want to check out Aspose free [PPT to PDF](https://products.aspose.app/s
|
|
|
27
27
|
**Web:** HTML/HTML5
|
|
28
28
|
**Other:** MPEG4, SWF (export whole presentations)
|
|
29
29
|
|
|
30
|
+
## Enhancements in Version 22.7
|
|
31
|
+
|
|
32
|
+
* Added **Html**, **Pdf**, **Xps**, **Pptx**, **Odp**, **Otp**, **Ppt**, **Pps**, **Ppsx**, **Pptm**, **Ppsm**, **Potx**, **Pot**, **Potm**, **Svg**, **Fodp**, **Xaml**, **Html5** to the list of allowed values for **SlideExportFormat** enum. You can now export slide notes to those formats.
|
|
33
|
+
* Added **Html5** to the list of allowed values for **SlideExportFormat** enum. You can now export individual slides to HTML5.
|
|
34
|
+
* Added **Url** to the list of allowed values for **PresentationToMerge.SourceEnum** enum. You can now merge presentations from external URLs.
|
|
35
|
+
* New **DeleteUnusedMasterSlides** and **DeleteUnusedMasterSlidesOnline** methods.
|
|
36
|
+
* New **SetChartAxis**, **SetChartLegend**, **SetChartWall** methods allow to moduly chart elements more conveniently.
|
|
37
|
+
* **UpdateChartSeriesGroup** method was renamed to **SetChartSeriesGroup**.
|
|
38
|
+
|
|
30
39
|
## Enhancements in Version 22.6
|
|
31
40
|
* Added ned **GetSubshapeParagraphEffective**, **GetParagraphEffective** and **GetSubshapePortionEffective**, **GetPortionEffective** methods to retrieve actual format values for paragraphs and portions, whether they are inherited from parent entities or not.
|
|
32
41
|
* Password parameter is now optional for **GetProtectionProperties** method. So, you don't need to specify the password to check whether a presentation has a password.
|
package/api.d.ts
CHANGED
|
@@ -1412,6 +1412,28 @@ export declare class SlidesApi {
|
|
|
1412
1412
|
response: http.ServerResponse;
|
|
1413
1413
|
body: Buffer;
|
|
1414
1414
|
}>;
|
|
1415
|
+
/**
|
|
1416
|
+
* Removes unused master slides.
|
|
1417
|
+
* @param name Document name.
|
|
1418
|
+
* @param ignorePreserveField Determines, whether this method should remove unused master even if its preserve property is set to true.
|
|
1419
|
+
* @param password Document password.
|
|
1420
|
+
* @param folder Document folder.
|
|
1421
|
+
* @param storage Document storage.
|
|
1422
|
+
*/
|
|
1423
|
+
deleteUnusedMasterSlides(name: string, ignorePreserveField?: boolean, password?: string, folder?: string, storage?: string): Promise<{
|
|
1424
|
+
response: http.ServerResponse;
|
|
1425
|
+
body: model.MasterSlides;
|
|
1426
|
+
}>;
|
|
1427
|
+
/**
|
|
1428
|
+
* Removes unused master slides.
|
|
1429
|
+
* @param document Document data
|
|
1430
|
+
* @param ignorePreserveField Determines, whether this method should remove unused master even if its preserve property is set to true.
|
|
1431
|
+
* @param password Document password.
|
|
1432
|
+
*/
|
|
1433
|
+
deleteUnusedMasterSlidesOnline(document: Readable, ignorePreserveField?: boolean, password?: string): Promise<{
|
|
1434
|
+
response: http.ServerResponse;
|
|
1435
|
+
body: Buffer;
|
|
1436
|
+
}>;
|
|
1415
1437
|
/**
|
|
1416
1438
|
* Removes shapes with name \"watermark\" from the presentation.
|
|
1417
1439
|
* @param name Document name.
|
|
@@ -3030,6 +3052,65 @@ export declare class SlidesApi {
|
|
|
3030
3052
|
response: http.ServerResponse;
|
|
3031
3053
|
body: model.SlideBackground;
|
|
3032
3054
|
}>;
|
|
3055
|
+
/**
|
|
3056
|
+
* Set chart axis.
|
|
3057
|
+
* @param name Document name.
|
|
3058
|
+
* @param slideIndex Slide index.
|
|
3059
|
+
* @param shapeIndex Shape index.
|
|
3060
|
+
* @param axisType Axis type. Horizontal, Vertical, SecondaryHorizontal or SecondaryVertical.
|
|
3061
|
+
* @param axis Axis DTO.
|
|
3062
|
+
* @param password Document password.
|
|
3063
|
+
* @param folder Document folder.
|
|
3064
|
+
* @param storage Document storage.
|
|
3065
|
+
*/
|
|
3066
|
+
setChartAxis(name: string, slideIndex: number, shapeIndex: number, axisType: model.AxisType, axis: model.Axis, password?: string, folder?: string, storage?: string): Promise<{
|
|
3067
|
+
response: http.ServerResponse;
|
|
3068
|
+
body: model.Axis;
|
|
3069
|
+
}>;
|
|
3070
|
+
/**
|
|
3071
|
+
* Set chart axis.
|
|
3072
|
+
* @param name Document name.
|
|
3073
|
+
* @param slideIndex Slide index.
|
|
3074
|
+
* @param shapeIndex Shape index.
|
|
3075
|
+
* @param legend Chart legend DTO.
|
|
3076
|
+
* @param password Document password.
|
|
3077
|
+
* @param folder Document folder.
|
|
3078
|
+
* @param storage Document storage.
|
|
3079
|
+
*/
|
|
3080
|
+
setChartLegend(name: string, slideIndex: number, shapeIndex: number, legend: model.Legend, password?: string, folder?: string, storage?: string): Promise<{
|
|
3081
|
+
response: http.ServerResponse;
|
|
3082
|
+
body: model.Legend;
|
|
3083
|
+
}>;
|
|
3084
|
+
/**
|
|
3085
|
+
* Set a series group in a chart.
|
|
3086
|
+
* @param name Document name.
|
|
3087
|
+
* @param slideIndex Slide index.
|
|
3088
|
+
* @param shapeIndex Shape index (must be a chart).
|
|
3089
|
+
* @param seriesGroupIndex Series group index.
|
|
3090
|
+
* @param seriesGroup Series group DTO.
|
|
3091
|
+
* @param password Document password.
|
|
3092
|
+
* @param folder Document folder.
|
|
3093
|
+
* @param storage Document storage.
|
|
3094
|
+
*/
|
|
3095
|
+
setChartSeriesGroup(name: string, slideIndex: number, shapeIndex: number, seriesGroupIndex: number, seriesGroup: model.ChartSeriesGroup, password?: string, folder?: string, storage?: string): Promise<{
|
|
3096
|
+
response: http.ServerResponse;
|
|
3097
|
+
body: model.Chart;
|
|
3098
|
+
}>;
|
|
3099
|
+
/**
|
|
3100
|
+
* Set 3D chart wall.
|
|
3101
|
+
* @param name Document name.
|
|
3102
|
+
* @param slideIndex Slide index.
|
|
3103
|
+
* @param shapeIndex Shape index.
|
|
3104
|
+
* @param chartWallType Chart wall type: floor, sideWall or backWall.
|
|
3105
|
+
* @param chartWall Chart wall DTO.
|
|
3106
|
+
* @param password Document password.
|
|
3107
|
+
* @param folder Document folder.
|
|
3108
|
+
* @param storage Document storage.
|
|
3109
|
+
*/
|
|
3110
|
+
setChartWall(name: string, slideIndex: number, shapeIndex: number, chartWallType: model.ChartWallType, chartWall: model.ChartWall, password?: string, folder?: string, storage?: string): Promise<{
|
|
3111
|
+
response: http.ServerResponse;
|
|
3112
|
+
body: model.ChartWall;
|
|
3113
|
+
}>;
|
|
3033
3114
|
/**
|
|
3034
3115
|
* Set document properties.
|
|
3035
3116
|
* @param name Document name.
|
|
@@ -3314,21 +3395,6 @@ export declare class SlidesApi {
|
|
|
3314
3395
|
response: http.ServerResponse;
|
|
3315
3396
|
body: model.Chart;
|
|
3316
3397
|
}>;
|
|
3317
|
-
/**
|
|
3318
|
-
* Update a series group in a chart.
|
|
3319
|
-
* @param name Document name.
|
|
3320
|
-
* @param slideIndex Slide index.
|
|
3321
|
-
* @param shapeIndex Shape index (must be a chart).
|
|
3322
|
-
* @param seriesGroupIndex Series group index.
|
|
3323
|
-
* @param seriesGroup Series group DTO.
|
|
3324
|
-
* @param password Document password.
|
|
3325
|
-
* @param folder Document folder.
|
|
3326
|
-
* @param storage Document storage.
|
|
3327
|
-
*/
|
|
3328
|
-
updateChartSeriesGroup(name: string, slideIndex: number, shapeIndex: number, seriesGroupIndex: number, seriesGroup: model.ChartSeriesGroup, password?: string, folder?: string, storage?: string): Promise<{
|
|
3329
|
-
response: http.ServerResponse;
|
|
3330
|
-
body: model.Chart;
|
|
3331
|
-
}>;
|
|
3332
3398
|
/**
|
|
3333
3399
|
* Update a layoutSlide.
|
|
3334
3400
|
* @param name Document name.
|
package/api.js
CHANGED
|
@@ -4736,6 +4736,72 @@ class SlidesApi {
|
|
|
4736
4736
|
return Promise.resolve({ body: result, response });
|
|
4737
4737
|
});
|
|
4738
4738
|
}
|
|
4739
|
+
/**
|
|
4740
|
+
* Removes unused master slides.
|
|
4741
|
+
* @param name Document name.
|
|
4742
|
+
* @param ignorePreserveField Determines, whether this method should remove unused master even if its preserve property is set to true.
|
|
4743
|
+
* @param password Document password.
|
|
4744
|
+
* @param folder Document folder.
|
|
4745
|
+
* @param storage Document storage.
|
|
4746
|
+
*/
|
|
4747
|
+
deleteUnusedMasterSlides(name, ignorePreserveField = null, password = null, folder = null, storage = null) {
|
|
4748
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
4749
|
+
// verify required parameter 'name' is not null or undefined
|
|
4750
|
+
if (name === null || name === undefined) {
|
|
4751
|
+
throw new Error('The required parameter "name" was null or undefined when calling deleteUnusedMasterSlides.');
|
|
4752
|
+
}
|
|
4753
|
+
let localVarPath = this.configuration.getApiBaseUrl() + "/slides/{name}/masterSlides";
|
|
4754
|
+
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "name", objectSerializer_1.ObjectSerializer.toString(name));
|
|
4755
|
+
const queryParameters = {};
|
|
4756
|
+
localVarPath = (0, requestHelper_1.addQueryParameterToUrl)(localVarPath, queryParameters, "ignorePreserveField", ignorePreserveField);
|
|
4757
|
+
localVarPath = (0, requestHelper_1.addQueryParameterToUrl)(localVarPath, queryParameters, "folder", folder);
|
|
4758
|
+
localVarPath = (0, requestHelper_1.addQueryParameterToUrl)(localVarPath, queryParameters, "storage", storage);
|
|
4759
|
+
const requestOptions = {
|
|
4760
|
+
method: "DELETE",
|
|
4761
|
+
qs: queryParameters,
|
|
4762
|
+
headers: {},
|
|
4763
|
+
uri: localVarPath,
|
|
4764
|
+
json: true
|
|
4765
|
+
};
|
|
4766
|
+
(0, requestHelper_1.addHeaderParameter)(requestOptions.headers, "password", password);
|
|
4767
|
+
const response = yield (0, requestHelper_1.invokeApiMethod)(requestOptions, this.configuration);
|
|
4768
|
+
const result = objectSerializer_1.ObjectSerializer.deserialize(response.body, "MasterSlides");
|
|
4769
|
+
return Promise.resolve({ body: result, response });
|
|
4770
|
+
});
|
|
4771
|
+
}
|
|
4772
|
+
/**
|
|
4773
|
+
* Removes unused master slides.
|
|
4774
|
+
* @param document Document data
|
|
4775
|
+
* @param ignorePreserveField Determines, whether this method should remove unused master even if its preserve property is set to true.
|
|
4776
|
+
* @param password Document password.
|
|
4777
|
+
*/
|
|
4778
|
+
deleteUnusedMasterSlidesOnline(document, ignorePreserveField = null, password = null) {
|
|
4779
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
4780
|
+
// verify required parameter 'document' is not null or undefined
|
|
4781
|
+
if (document === null || document === undefined) {
|
|
4782
|
+
throw new Error('The required parameter "document" was null or undefined when calling deleteUnusedMasterSlidesOnline.');
|
|
4783
|
+
}
|
|
4784
|
+
let localVarPath = this.configuration.getApiBaseUrl() + "/slides/masterSlides/delete";
|
|
4785
|
+
const queryParameters = {};
|
|
4786
|
+
localVarPath = (0, requestHelper_1.addQueryParameterToUrl)(localVarPath, queryParameters, "ignorePreserveField", ignorePreserveField);
|
|
4787
|
+
const requestOptions = {
|
|
4788
|
+
method: "POST",
|
|
4789
|
+
qs: queryParameters,
|
|
4790
|
+
headers: {},
|
|
4791
|
+
uri: localVarPath,
|
|
4792
|
+
encoding: null
|
|
4793
|
+
};
|
|
4794
|
+
(0, requestHelper_1.addHeaderParameter)(requestOptions.headers, "password", password);
|
|
4795
|
+
let localVarFiles = [];
|
|
4796
|
+
if (document != null) {
|
|
4797
|
+
localVarFiles.push(document);
|
|
4798
|
+
}
|
|
4799
|
+
(0, requestHelper_1.checkMultipartContent)(requestOptions, localVarFiles);
|
|
4800
|
+
const response = yield (0, requestHelper_1.invokeApiMethod)(requestOptions, this.configuration);
|
|
4801
|
+
const result = objectSerializer_1.ObjectSerializer.deserialize(response.body, "Buffer");
|
|
4802
|
+
return Promise.resolve({ body: result, response });
|
|
4803
|
+
});
|
|
4804
|
+
}
|
|
4739
4805
|
/**
|
|
4740
4806
|
* Removes shapes with name \"watermark\" from the presentation.
|
|
4741
4807
|
* @param name Document name.
|
|
@@ -10194,6 +10260,224 @@ class SlidesApi {
|
|
|
10194
10260
|
return Promise.resolve({ body: result, response });
|
|
10195
10261
|
});
|
|
10196
10262
|
}
|
|
10263
|
+
/**
|
|
10264
|
+
* Set chart axis.
|
|
10265
|
+
* @param name Document name.
|
|
10266
|
+
* @param slideIndex Slide index.
|
|
10267
|
+
* @param shapeIndex Shape index.
|
|
10268
|
+
* @param axisType Axis type. Horizontal, Vertical, SecondaryHorizontal or SecondaryVertical.
|
|
10269
|
+
* @param axis Axis DTO.
|
|
10270
|
+
* @param password Document password.
|
|
10271
|
+
* @param folder Document folder.
|
|
10272
|
+
* @param storage Document storage.
|
|
10273
|
+
*/
|
|
10274
|
+
setChartAxis(name, slideIndex, shapeIndex, axisType, axis, password = null, folder = null, storage = null) {
|
|
10275
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
10276
|
+
// verify required parameter 'name' is not null or undefined
|
|
10277
|
+
if (name === null || name === undefined) {
|
|
10278
|
+
throw new Error('The required parameter "name" was null or undefined when calling setChartAxis.');
|
|
10279
|
+
}
|
|
10280
|
+
// verify required parameter 'slideIndex' is not null or undefined
|
|
10281
|
+
if (slideIndex === null || slideIndex === undefined) {
|
|
10282
|
+
throw new Error('The required parameter "slideIndex" was null or undefined when calling setChartAxis.');
|
|
10283
|
+
}
|
|
10284
|
+
// verify required parameter 'shapeIndex' is not null or undefined
|
|
10285
|
+
if (shapeIndex === null || shapeIndex === undefined) {
|
|
10286
|
+
throw new Error('The required parameter "shapeIndex" was null or undefined when calling setChartAxis.');
|
|
10287
|
+
}
|
|
10288
|
+
// verify required parameter 'axisType' is not null or undefined
|
|
10289
|
+
if (axisType === null || axisType === undefined) {
|
|
10290
|
+
throw new Error('The required parameter "axisType" was null or undefined when calling setChartAxis.');
|
|
10291
|
+
}
|
|
10292
|
+
// verify value of enum parameter 'axisType' is valid
|
|
10293
|
+
if (!Object.keys(model.AxisType).filter(i => model.AxisType[i].toLowerCase() == axisType.toString().toLowerCase()).length) {
|
|
10294
|
+
throw new Error('Invalid value for axisType: ' + axisType + '. Must be one of the following: ' + Object.keys(model.AxisType).map(key => model.AxisType[key]).join());
|
|
10295
|
+
}
|
|
10296
|
+
// verify required parameter 'axis' is not null or undefined
|
|
10297
|
+
if (axis === null || axis === undefined) {
|
|
10298
|
+
throw new Error('The required parameter "axis" was null or undefined when calling setChartAxis.');
|
|
10299
|
+
}
|
|
10300
|
+
let localVarPath = this.configuration.getApiBaseUrl() + "/slides/{name}/slides/{slideIndex}/shapes/{shapeIndex}/{axisType}";
|
|
10301
|
+
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "name", objectSerializer_1.ObjectSerializer.toString(name));
|
|
10302
|
+
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "slideIndex", objectSerializer_1.ObjectSerializer.toString(slideIndex));
|
|
10303
|
+
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "shapeIndex", objectSerializer_1.ObjectSerializer.toString(shapeIndex));
|
|
10304
|
+
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "axisType", objectSerializer_1.ObjectSerializer.toString(axisType));
|
|
10305
|
+
const queryParameters = {};
|
|
10306
|
+
localVarPath = (0, requestHelper_1.addQueryParameterToUrl)(localVarPath, queryParameters, "folder", folder);
|
|
10307
|
+
localVarPath = (0, requestHelper_1.addQueryParameterToUrl)(localVarPath, queryParameters, "storage", storage);
|
|
10308
|
+
const requestOptions = {
|
|
10309
|
+
method: "PUT",
|
|
10310
|
+
qs: queryParameters,
|
|
10311
|
+
headers: {},
|
|
10312
|
+
uri: localVarPath,
|
|
10313
|
+
json: axis
|
|
10314
|
+
};
|
|
10315
|
+
(0, requestHelper_1.addHeaderParameter)(requestOptions.headers, "password", password);
|
|
10316
|
+
const response = yield (0, requestHelper_1.invokeApiMethod)(requestOptions, this.configuration);
|
|
10317
|
+
const result = objectSerializer_1.ObjectSerializer.deserialize(response.body, "Axis");
|
|
10318
|
+
return Promise.resolve({ body: result, response });
|
|
10319
|
+
});
|
|
10320
|
+
}
|
|
10321
|
+
/**
|
|
10322
|
+
* Set chart axis.
|
|
10323
|
+
* @param name Document name.
|
|
10324
|
+
* @param slideIndex Slide index.
|
|
10325
|
+
* @param shapeIndex Shape index.
|
|
10326
|
+
* @param legend Chart legend DTO.
|
|
10327
|
+
* @param password Document password.
|
|
10328
|
+
* @param folder Document folder.
|
|
10329
|
+
* @param storage Document storage.
|
|
10330
|
+
*/
|
|
10331
|
+
setChartLegend(name, slideIndex, shapeIndex, legend, password = null, folder = null, storage = null) {
|
|
10332
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
10333
|
+
// verify required parameter 'name' is not null or undefined
|
|
10334
|
+
if (name === null || name === undefined) {
|
|
10335
|
+
throw new Error('The required parameter "name" was null or undefined when calling setChartLegend.');
|
|
10336
|
+
}
|
|
10337
|
+
// verify required parameter 'slideIndex' is not null or undefined
|
|
10338
|
+
if (slideIndex === null || slideIndex === undefined) {
|
|
10339
|
+
throw new Error('The required parameter "slideIndex" was null or undefined when calling setChartLegend.');
|
|
10340
|
+
}
|
|
10341
|
+
// verify required parameter 'shapeIndex' is not null or undefined
|
|
10342
|
+
if (shapeIndex === null || shapeIndex === undefined) {
|
|
10343
|
+
throw new Error('The required parameter "shapeIndex" was null or undefined when calling setChartLegend.');
|
|
10344
|
+
}
|
|
10345
|
+
// verify required parameter 'legend' is not null or undefined
|
|
10346
|
+
if (legend === null || legend === undefined) {
|
|
10347
|
+
throw new Error('The required parameter "legend" was null or undefined when calling setChartLegend.');
|
|
10348
|
+
}
|
|
10349
|
+
let localVarPath = this.configuration.getApiBaseUrl() + "/slides/{name}/slides/{slideIndex}/shapes/{shapeIndex}/legend";
|
|
10350
|
+
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "name", objectSerializer_1.ObjectSerializer.toString(name));
|
|
10351
|
+
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "slideIndex", objectSerializer_1.ObjectSerializer.toString(slideIndex));
|
|
10352
|
+
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "shapeIndex", objectSerializer_1.ObjectSerializer.toString(shapeIndex));
|
|
10353
|
+
const queryParameters = {};
|
|
10354
|
+
localVarPath = (0, requestHelper_1.addQueryParameterToUrl)(localVarPath, queryParameters, "folder", folder);
|
|
10355
|
+
localVarPath = (0, requestHelper_1.addQueryParameterToUrl)(localVarPath, queryParameters, "storage", storage);
|
|
10356
|
+
const requestOptions = {
|
|
10357
|
+
method: "PUT",
|
|
10358
|
+
qs: queryParameters,
|
|
10359
|
+
headers: {},
|
|
10360
|
+
uri: localVarPath,
|
|
10361
|
+
json: legend
|
|
10362
|
+
};
|
|
10363
|
+
(0, requestHelper_1.addHeaderParameter)(requestOptions.headers, "password", password);
|
|
10364
|
+
const response = yield (0, requestHelper_1.invokeApiMethod)(requestOptions, this.configuration);
|
|
10365
|
+
const result = objectSerializer_1.ObjectSerializer.deserialize(response.body, "Legend");
|
|
10366
|
+
return Promise.resolve({ body: result, response });
|
|
10367
|
+
});
|
|
10368
|
+
}
|
|
10369
|
+
/**
|
|
10370
|
+
* Set a series group in a chart.
|
|
10371
|
+
* @param name Document name.
|
|
10372
|
+
* @param slideIndex Slide index.
|
|
10373
|
+
* @param shapeIndex Shape index (must be a chart).
|
|
10374
|
+
* @param seriesGroupIndex Series group index.
|
|
10375
|
+
* @param seriesGroup Series group DTO.
|
|
10376
|
+
* @param password Document password.
|
|
10377
|
+
* @param folder Document folder.
|
|
10378
|
+
* @param storage Document storage.
|
|
10379
|
+
*/
|
|
10380
|
+
setChartSeriesGroup(name, slideIndex, shapeIndex, seriesGroupIndex, seriesGroup, password = null, folder = null, storage = null) {
|
|
10381
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
10382
|
+
// verify required parameter 'name' is not null or undefined
|
|
10383
|
+
if (name === null || name === undefined) {
|
|
10384
|
+
throw new Error('The required parameter "name" was null or undefined when calling setChartSeriesGroup.');
|
|
10385
|
+
}
|
|
10386
|
+
// verify required parameter 'slideIndex' is not null or undefined
|
|
10387
|
+
if (slideIndex === null || slideIndex === undefined) {
|
|
10388
|
+
throw new Error('The required parameter "slideIndex" was null or undefined when calling setChartSeriesGroup.');
|
|
10389
|
+
}
|
|
10390
|
+
// verify required parameter 'shapeIndex' is not null or undefined
|
|
10391
|
+
if (shapeIndex === null || shapeIndex === undefined) {
|
|
10392
|
+
throw new Error('The required parameter "shapeIndex" was null or undefined when calling setChartSeriesGroup.');
|
|
10393
|
+
}
|
|
10394
|
+
// verify required parameter 'seriesGroupIndex' is not null or undefined
|
|
10395
|
+
if (seriesGroupIndex === null || seriesGroupIndex === undefined) {
|
|
10396
|
+
throw new Error('The required parameter "seriesGroupIndex" was null or undefined when calling setChartSeriesGroup.');
|
|
10397
|
+
}
|
|
10398
|
+
// verify required parameter 'seriesGroup' is not null or undefined
|
|
10399
|
+
if (seriesGroup === null || seriesGroup === undefined) {
|
|
10400
|
+
throw new Error('The required parameter "seriesGroup" was null or undefined when calling setChartSeriesGroup.');
|
|
10401
|
+
}
|
|
10402
|
+
let localVarPath = this.configuration.getApiBaseUrl() + "/slides/{name}/slides/{slideIndex}/shapes/{shapeIndex}/seriesGroup/{seriesGroupIndex}";
|
|
10403
|
+
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "name", objectSerializer_1.ObjectSerializer.toString(name));
|
|
10404
|
+
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "slideIndex", objectSerializer_1.ObjectSerializer.toString(slideIndex));
|
|
10405
|
+
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "shapeIndex", objectSerializer_1.ObjectSerializer.toString(shapeIndex));
|
|
10406
|
+
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "seriesGroupIndex", objectSerializer_1.ObjectSerializer.toString(seriesGroupIndex));
|
|
10407
|
+
const queryParameters = {};
|
|
10408
|
+
localVarPath = (0, requestHelper_1.addQueryParameterToUrl)(localVarPath, queryParameters, "folder", folder);
|
|
10409
|
+
localVarPath = (0, requestHelper_1.addQueryParameterToUrl)(localVarPath, queryParameters, "storage", storage);
|
|
10410
|
+
const requestOptions = {
|
|
10411
|
+
method: "PUT",
|
|
10412
|
+
qs: queryParameters,
|
|
10413
|
+
headers: {},
|
|
10414
|
+
uri: localVarPath,
|
|
10415
|
+
json: seriesGroup
|
|
10416
|
+
};
|
|
10417
|
+
(0, requestHelper_1.addHeaderParameter)(requestOptions.headers, "password", password);
|
|
10418
|
+
const response = yield (0, requestHelper_1.invokeApiMethod)(requestOptions, this.configuration);
|
|
10419
|
+
const result = objectSerializer_1.ObjectSerializer.deserialize(response.body, "Chart");
|
|
10420
|
+
return Promise.resolve({ body: result, response });
|
|
10421
|
+
});
|
|
10422
|
+
}
|
|
10423
|
+
/**
|
|
10424
|
+
* Set 3D chart wall.
|
|
10425
|
+
* @param name Document name.
|
|
10426
|
+
* @param slideIndex Slide index.
|
|
10427
|
+
* @param shapeIndex Shape index.
|
|
10428
|
+
* @param chartWallType Chart wall type: floor, sideWall or backWall.
|
|
10429
|
+
* @param chartWall Chart wall DTO.
|
|
10430
|
+
* @param password Document password.
|
|
10431
|
+
* @param folder Document folder.
|
|
10432
|
+
* @param storage Document storage.
|
|
10433
|
+
*/
|
|
10434
|
+
setChartWall(name, slideIndex, shapeIndex, chartWallType, chartWall, password = null, folder = null, storage = null) {
|
|
10435
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
10436
|
+
// verify required parameter 'name' is not null or undefined
|
|
10437
|
+
if (name === null || name === undefined) {
|
|
10438
|
+
throw new Error('The required parameter "name" was null or undefined when calling setChartWall.');
|
|
10439
|
+
}
|
|
10440
|
+
// verify required parameter 'slideIndex' is not null or undefined
|
|
10441
|
+
if (slideIndex === null || slideIndex === undefined) {
|
|
10442
|
+
throw new Error('The required parameter "slideIndex" was null or undefined when calling setChartWall.');
|
|
10443
|
+
}
|
|
10444
|
+
// verify required parameter 'shapeIndex' is not null or undefined
|
|
10445
|
+
if (shapeIndex === null || shapeIndex === undefined) {
|
|
10446
|
+
throw new Error('The required parameter "shapeIndex" was null or undefined when calling setChartWall.');
|
|
10447
|
+
}
|
|
10448
|
+
// verify required parameter 'chartWallType' is not null or undefined
|
|
10449
|
+
if (chartWallType === null || chartWallType === undefined) {
|
|
10450
|
+
throw new Error('The required parameter "chartWallType" was null or undefined when calling setChartWall.');
|
|
10451
|
+
}
|
|
10452
|
+
// verify value of enum parameter 'chartWallType' is valid
|
|
10453
|
+
if (!Object.keys(model.ChartWallType).filter(i => model.ChartWallType[i].toLowerCase() == chartWallType.toString().toLowerCase()).length) {
|
|
10454
|
+
throw new Error('Invalid value for chartWallType: ' + chartWallType + '. Must be one of the following: ' + Object.keys(model.ChartWallType).map(key => model.ChartWallType[key]).join());
|
|
10455
|
+
}
|
|
10456
|
+
// verify required parameter 'chartWall' is not null or undefined
|
|
10457
|
+
if (chartWall === null || chartWall === undefined) {
|
|
10458
|
+
throw new Error('The required parameter "chartWall" was null or undefined when calling setChartWall.');
|
|
10459
|
+
}
|
|
10460
|
+
let localVarPath = this.configuration.getApiBaseUrl() + "/slides/{name}/slides/{slideIndex}/shapes/{shapeIndex}/{chartWallType}";
|
|
10461
|
+
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "name", objectSerializer_1.ObjectSerializer.toString(name));
|
|
10462
|
+
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "slideIndex", objectSerializer_1.ObjectSerializer.toString(slideIndex));
|
|
10463
|
+
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "shapeIndex", objectSerializer_1.ObjectSerializer.toString(shapeIndex));
|
|
10464
|
+
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "chartWallType", objectSerializer_1.ObjectSerializer.toString(chartWallType));
|
|
10465
|
+
const queryParameters = {};
|
|
10466
|
+
localVarPath = (0, requestHelper_1.addQueryParameterToUrl)(localVarPath, queryParameters, "folder", folder);
|
|
10467
|
+
localVarPath = (0, requestHelper_1.addQueryParameterToUrl)(localVarPath, queryParameters, "storage", storage);
|
|
10468
|
+
const requestOptions = {
|
|
10469
|
+
method: "PUT",
|
|
10470
|
+
qs: queryParameters,
|
|
10471
|
+
headers: {},
|
|
10472
|
+
uri: localVarPath,
|
|
10473
|
+
json: chartWall
|
|
10474
|
+
};
|
|
10475
|
+
(0, requestHelper_1.addHeaderParameter)(requestOptions.headers, "password", password);
|
|
10476
|
+
const response = yield (0, requestHelper_1.invokeApiMethod)(requestOptions, this.configuration);
|
|
10477
|
+
const result = objectSerializer_1.ObjectSerializer.deserialize(response.body, "ChartWall");
|
|
10478
|
+
return Promise.resolve({ body: result, response });
|
|
10479
|
+
});
|
|
10480
|
+
}
|
|
10197
10481
|
/**
|
|
10198
10482
|
* Set document properties.
|
|
10199
10483
|
* @param name Document name.
|
|
@@ -11125,60 +11409,6 @@ class SlidesApi {
|
|
|
11125
11409
|
return Promise.resolve({ body: result, response });
|
|
11126
11410
|
});
|
|
11127
11411
|
}
|
|
11128
|
-
/**
|
|
11129
|
-
* Update a series group in a chart.
|
|
11130
|
-
* @param name Document name.
|
|
11131
|
-
* @param slideIndex Slide index.
|
|
11132
|
-
* @param shapeIndex Shape index (must be a chart).
|
|
11133
|
-
* @param seriesGroupIndex Series group index.
|
|
11134
|
-
* @param seriesGroup Series group DTO.
|
|
11135
|
-
* @param password Document password.
|
|
11136
|
-
* @param folder Document folder.
|
|
11137
|
-
* @param storage Document storage.
|
|
11138
|
-
*/
|
|
11139
|
-
updateChartSeriesGroup(name, slideIndex, shapeIndex, seriesGroupIndex, seriesGroup, password = null, folder = null, storage = null) {
|
|
11140
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
11141
|
-
// verify required parameter 'name' is not null or undefined
|
|
11142
|
-
if (name === null || name === undefined) {
|
|
11143
|
-
throw new Error('The required parameter "name" was null or undefined when calling updateChartSeriesGroup.');
|
|
11144
|
-
}
|
|
11145
|
-
// verify required parameter 'slideIndex' is not null or undefined
|
|
11146
|
-
if (slideIndex === null || slideIndex === undefined) {
|
|
11147
|
-
throw new Error('The required parameter "slideIndex" was null or undefined when calling updateChartSeriesGroup.');
|
|
11148
|
-
}
|
|
11149
|
-
// verify required parameter 'shapeIndex' is not null or undefined
|
|
11150
|
-
if (shapeIndex === null || shapeIndex === undefined) {
|
|
11151
|
-
throw new Error('The required parameter "shapeIndex" was null or undefined when calling updateChartSeriesGroup.');
|
|
11152
|
-
}
|
|
11153
|
-
// verify required parameter 'seriesGroupIndex' is not null or undefined
|
|
11154
|
-
if (seriesGroupIndex === null || seriesGroupIndex === undefined) {
|
|
11155
|
-
throw new Error('The required parameter "seriesGroupIndex" was null or undefined when calling updateChartSeriesGroup.');
|
|
11156
|
-
}
|
|
11157
|
-
// verify required parameter 'seriesGroup' is not null or undefined
|
|
11158
|
-
if (seriesGroup === null || seriesGroup === undefined) {
|
|
11159
|
-
throw new Error('The required parameter "seriesGroup" was null or undefined when calling updateChartSeriesGroup.');
|
|
11160
|
-
}
|
|
11161
|
-
let localVarPath = this.configuration.getApiBaseUrl() + "/slides/{name}/slides/{slideIndex}/shapes/{shapeIndex}/seriesGroup/{seriesGroupIndex}";
|
|
11162
|
-
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "name", objectSerializer_1.ObjectSerializer.toString(name));
|
|
11163
|
-
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "slideIndex", objectSerializer_1.ObjectSerializer.toString(slideIndex));
|
|
11164
|
-
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "shapeIndex", objectSerializer_1.ObjectSerializer.toString(shapeIndex));
|
|
11165
|
-
localVarPath = (0, requestHelper_1.addPathParameterToUrl)(localVarPath, "seriesGroupIndex", objectSerializer_1.ObjectSerializer.toString(seriesGroupIndex));
|
|
11166
|
-
const queryParameters = {};
|
|
11167
|
-
localVarPath = (0, requestHelper_1.addQueryParameterToUrl)(localVarPath, queryParameters, "folder", folder);
|
|
11168
|
-
localVarPath = (0, requestHelper_1.addQueryParameterToUrl)(localVarPath, queryParameters, "storage", storage);
|
|
11169
|
-
const requestOptions = {
|
|
11170
|
-
method: "PUT",
|
|
11171
|
-
qs: queryParameters,
|
|
11172
|
-
headers: {},
|
|
11173
|
-
uri: localVarPath,
|
|
11174
|
-
json: seriesGroup
|
|
11175
|
-
};
|
|
11176
|
-
(0, requestHelper_1.addHeaderParameter)(requestOptions.headers, "password", password);
|
|
11177
|
-
const response = yield (0, requestHelper_1.invokeApiMethod)(requestOptions, this.configuration);
|
|
11178
|
-
const result = objectSerializer_1.ObjectSerializer.deserialize(response.body, "Chart");
|
|
11179
|
-
return Promise.resolve({ body: result, response });
|
|
11180
|
-
});
|
|
11181
|
-
}
|
|
11182
11412
|
/**
|
|
11183
11413
|
* Update a layoutSlide.
|
|
11184
11414
|
* @param name Document name.
|
|
@@ -146,7 +146,7 @@ function invokeApiMethodInternal(requestOptions, confguration, notApplyAuthToReq
|
|
|
146
146
|
if (!requestOptions.headers) {
|
|
147
147
|
requestOptions.headers = {};
|
|
148
148
|
}
|
|
149
|
-
requestOptions.headers["x-aspose-client"] = "nodejs sdk v22.
|
|
149
|
+
requestOptions.headers["x-aspose-client"] = "nodejs sdk v22.7.0";
|
|
150
150
|
if (confguration.timeout) {
|
|
151
151
|
requestOptions.headers["x-aspose-timeout"] = confguration.timeout;
|
|
152
152
|
}
|
package/model.d.ts
CHANGED
|
@@ -332,6 +332,18 @@ export declare namespace Axis {
|
|
|
332
332
|
None
|
|
333
333
|
}
|
|
334
334
|
}
|
|
335
|
+
/**
|
|
336
|
+
* Defines axis type.
|
|
337
|
+
*/
|
|
338
|
+
/**
|
|
339
|
+
* Defines axis type.
|
|
340
|
+
*/
|
|
341
|
+
export declare enum AxisType {
|
|
342
|
+
'HorizontalAxis',
|
|
343
|
+
'VerticalAxis',
|
|
344
|
+
'SecondaryHorizontalAxis',
|
|
345
|
+
'SecondaryVerticalAxis'
|
|
346
|
+
}
|
|
335
347
|
/**
|
|
336
348
|
* Represents blur effect
|
|
337
349
|
*/
|
|
@@ -670,6 +682,17 @@ export declare namespace ChartWall {
|
|
|
670
682
|
NotDefined
|
|
671
683
|
}
|
|
672
684
|
}
|
|
685
|
+
/**
|
|
686
|
+
* 3D chart wall type
|
|
687
|
+
*/
|
|
688
|
+
/**
|
|
689
|
+
* 3D chart wall type
|
|
690
|
+
*/
|
|
691
|
+
export declare enum ChartWallType {
|
|
692
|
+
'Floor',
|
|
693
|
+
'SideWall',
|
|
694
|
+
'BackWall'
|
|
695
|
+
}
|
|
673
696
|
/**
|
|
674
697
|
* Slide view properties.
|
|
675
698
|
*/
|
|
@@ -1786,7 +1809,25 @@ export declare enum NotesSlideExportFormat {
|
|
|
1786
1809
|
'Png',
|
|
1787
1810
|
'Gif',
|
|
1788
1811
|
'Bmp',
|
|
1789
|
-
'Tiff'
|
|
1812
|
+
'Tiff',
|
|
1813
|
+
'Html',
|
|
1814
|
+
'Pdf',
|
|
1815
|
+
'Xps',
|
|
1816
|
+
'Pptx',
|
|
1817
|
+
'Odp',
|
|
1818
|
+
'Otp',
|
|
1819
|
+
'Ppt',
|
|
1820
|
+
'Pps',
|
|
1821
|
+
'Ppsx',
|
|
1822
|
+
'Pptm',
|
|
1823
|
+
'Ppsm',
|
|
1824
|
+
'Potx',
|
|
1825
|
+
'Pot',
|
|
1826
|
+
'Potm',
|
|
1827
|
+
'Svg',
|
|
1828
|
+
'Fodp',
|
|
1829
|
+
'Xaml',
|
|
1830
|
+
'Html5'
|
|
1790
1831
|
}
|
|
1791
1832
|
/**
|
|
1792
1833
|
* Object exists
|
|
@@ -2130,7 +2171,8 @@ export declare class PresentationToMerge {
|
|
|
2130
2171
|
export declare namespace PresentationToMerge {
|
|
2131
2172
|
enum SourceEnum {
|
|
2132
2173
|
Storage,
|
|
2133
|
-
Request
|
|
2174
|
+
Request,
|
|
2175
|
+
Url
|
|
2134
2176
|
}
|
|
2135
2177
|
}
|
|
2136
2178
|
/**
|
|
@@ -2681,7 +2723,8 @@ export declare enum SlideExportFormat {
|
|
|
2681
2723
|
'Potm',
|
|
2682
2724
|
'Svg',
|
|
2683
2725
|
'Fodp',
|
|
2684
|
-
'Xaml'
|
|
2726
|
+
'Xaml',
|
|
2727
|
+
'Html5'
|
|
2685
2728
|
}
|
|
2686
2729
|
/**
|
|
2687
2730
|
* Smart art node.
|
|
@@ -5580,7 +5623,8 @@ export declare namespace SaveSlide {
|
|
|
5580
5623
|
Potm,
|
|
5581
5624
|
Svg,
|
|
5582
5625
|
Fodp,
|
|
5583
|
-
Xaml
|
|
5626
|
+
Xaml,
|
|
5627
|
+
Html5
|
|
5584
5628
|
}
|
|
5585
5629
|
}
|
|
5586
5630
|
/**
|
package/model.js
CHANGED
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
* SOFTWARE.
|
|
24
24
|
*/
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
28
|
-
exports.
|
|
29
|
-
exports.
|
|
30
|
-
exports.SummaryZoomSection = exports.ZoomFrame = exports.VideoFrame = exports.SmartArtShape = exports.Shape = exports.SectionZoomFrame = exports.PictureFrame = exports.Connector = exports.AudioFrame = exports.ZoomObject = exports.TiffExportOptions = exports.Table = exports.SummaryZoomFrame = exports.SmartArt = exports.SlideReplaceResult = exports.ScatterSeries = exports.OleObjectFrame = exports.ImageExportOptions = exports.GroupShape = exports.GraphicalObject = exports.GifExportOptions = exports.GeometryShape = exports.DocumentReplaceResult = exports.Chart = exports.BubbleSeries = exports.BubbleChartDataPoint = exports.XpsExportOptions = exports.XamlExportOptions = exports.XYSeries = exports.ViewProperties = exports.VideoExportOptions = exports.UpdateShape = exports.UpdateBackground = void 0;
|
|
26
|
+
exports.ModelError = exports.MergingSource = exports.MathParagraph = exports.MathElement = exports.LineFormat = exports.LightRig = exports.Legend = exports.InteractiveSequence = exports.InputFile = exports.Input = exports.InnerShadowEffect = exports.ImageTransformEffect = exports.ImageExportFormat = exports.IShapeExportOptions = exports.Hyperlink = exports.GradientFillStop = exports.GlowEffect = exports.GeometryPaths = exports.GeometryPath = exports.FontSet = exports.FontFallbackRule = exports.FillOverlayEffect = exports.FillFormat = exports.FilesUploadResult = exports.FilesList = exports.FileVersions = exports.ExportOptions = exports.ExportFormat = exports.ErrorDetails = exports.EntityExists = exports.EffectFormat = exports.Effect = exports.DiscUsage = exports.DataPoint = exports.CustomDashPattern = exports.CommonSlideViewProperties = exports.ChartWallType = exports.ChartWall = exports.ChartTitle = exports.ChartSeriesGroup = exports.ChartLinesFormat = exports.ChartCategory = exports.Camera = exports.BlurEffect = exports.AxisType = exports.Axis = exports.Axes = exports.ArrowHeadProperties = exports.ApiInfo = exports.AccessPermissions = void 0;
|
|
27
|
+
exports.AlphaModulateFixedEffect = exports.AlphaModulateEffect = exports.AlphaInverseEffect = exports.AlphaFloorEffect = exports.AlphaCeilingEffect = exports.AlphaBiLevelEffect = exports.AddSlide = exports.AddShape = exports.AddMasterSlide = exports.AddLayoutSlide = exports.AccentElement = exports.ThreeDFormat = exports.TextItem = exports.TextFrameFormat = exports.TextBounds = exports.Task = exports.TableRow = exports.TableColumn = exports.TableCell = exports.StorageFile = exports.StorageExist = exports.SpecialSlideType = exports.SoftEdgeEffect = exports.SmartArtNode = exports.SlideExportFormat = exports.SlideCommentBase = exports.ShapesAlignmentType = exports.ShapeType = exports.ShapeThumbnailBounds = exports.ShapeImageExportOptions = exports.ShapeExportFormat = exports.ShapeBevel = exports.SeriesMarker = exports.Series = exports.ResourceUri = exports.ResourceBase = exports.ReflectionEffect = exports.PresetShadowEffect = exports.PresentationsMergeRequest = exports.PresentationToMerge = exports.PortionFormat = exports.PlotArea = exports.Pipeline = exports.PathSegment = exports.OutputFile = exports.OuterShadowEffect = exports.OrderedMergeRequest = exports.ObjectExist = exports.NotesSlideExportFormat = exports.NormalViewRestoredProperties = void 0;
|
|
28
|
+
exports.NotesSlide = exports.NoFill = exports.NaryOperatorElement = exports.MoveToPathSegment = exports.Merge = exports.MatrixElement = exports.MasterSlides = exports.MasterSlide = exports.LuminanceEffect = exports.LineToPathSegment = exports.LimitElement = exports.LeftSubSuperscriptElement = exports.LayoutSlides = exports.LayoutSlide = exports.Images = exports.ImageExportOptionsBase = exports.Image = exports.HtmlExportOptions = exports.Html5ExportOptions = exports.HslEffect = exports.HeaderFooter = exports.GroupingCharacterElement = exports.GrayScaleEffect = exports.GradientFill = exports.FunctionElement = exports.FractionElement = exports.FormatScheme = exports.FontScheme = exports.FillOverlayImageEffect = exports.FileVersion = exports.DuotoneEffect = exports.DocumentProperty = exports.DocumentProperties = exports.Document = exports.DelimiterElement = exports.CubicBezierToPathSegment = exports.ColorScheme = exports.ColorReplaceEffect = exports.ColorChangeEffect = exports.ClosePathSegment = exports.BoxElement = exports.BorderBoxElement = exports.BlurImageEffect = exports.BlockElement = exports.BiLevelEffect = exports.Base64InputFile = exports.BarElement = exports.ArrayElement = exports.ArcToPathSegment = exports.AlphaReplaceEffect = void 0;
|
|
29
|
+
exports.TextItems = exports.TextElement = exports.SwfExportOptions = exports.SvgExportOptions = exports.SuperscriptElement = exports.SubscriptElement = exports.SplitDocumentResult = exports.SolidFill = exports.Slides = exports.SlideProperties = exports.SlideModernComment = exports.SlideComments = exports.SlideComment = exports.SlideBackground = exports.SlideAnimation = exports.Slide = exports.Shapes = exports.ShapeBase = exports.Sections = exports.Section = exports.ScatterChartDataPoint = exports.SaveSlide = exports.SaveShape = exports.Save = exports.RightSubSuperscriptElement = exports.ResponseOutputFile = exports.ResetSlide = exports.RequestInputFile = exports.ReplaceText = exports.ReorderSlide = exports.RemoveSlide = exports.RemoveShape = exports.RadicalElement = exports.QuadraticBezierToPathSegment = exports.ProtectionProperties = exports.PptxExportOptions = exports.Portions = exports.Portion = exports.Placeholders = exports.Placeholder = exports.PictureFill = exports.PdfExportOptions = exports.PatternFill = exports.PathOutputFile = exports.PathInputFile = exports.Paragraphs = exports.Paragraph = exports.OneValueSeries = exports.OneValueChartDataPoint = exports.NotesSlideHeaderFooter = void 0;
|
|
30
|
+
exports.SummaryZoomSection = exports.ZoomFrame = exports.VideoFrame = exports.SmartArtShape = exports.Shape = exports.SectionZoomFrame = exports.PictureFrame = exports.Connector = exports.AudioFrame = exports.ZoomObject = exports.TiffExportOptions = exports.Table = exports.SummaryZoomFrame = exports.SmartArt = exports.SlideReplaceResult = exports.ScatterSeries = exports.OleObjectFrame = exports.ImageExportOptions = exports.GroupShape = exports.GraphicalObject = exports.GifExportOptions = exports.GeometryShape = exports.DocumentReplaceResult = exports.Chart = exports.BubbleSeries = exports.BubbleChartDataPoint = exports.XpsExportOptions = exports.XamlExportOptions = exports.XYSeries = exports.ViewProperties = exports.VideoExportOptions = exports.UpdateShape = exports.UpdateBackground = exports.TintEffect = exports.Theme = void 0;
|
|
31
31
|
/**
|
|
32
32
|
* A set of properties specifying which access permissions should be granted when the document is opened with user access.
|
|
33
33
|
*/
|
|
@@ -160,6 +160,19 @@ exports.Axis = Axis;
|
|
|
160
160
|
TickLabelPositionEnum[TickLabelPositionEnum["None"] = 'None'] = "None";
|
|
161
161
|
})(TickLabelPositionEnum = Axis.TickLabelPositionEnum || (Axis.TickLabelPositionEnum = {}));
|
|
162
162
|
})(Axis = exports.Axis || (exports.Axis = {}));
|
|
163
|
+
/**
|
|
164
|
+
* Defines axis type.
|
|
165
|
+
*/
|
|
166
|
+
/**
|
|
167
|
+
* Defines axis type.
|
|
168
|
+
*/
|
|
169
|
+
var AxisType;
|
|
170
|
+
(function (AxisType) {
|
|
171
|
+
AxisType[AxisType["HorizontalAxis"] = 'HorizontalAxis'] = "HorizontalAxis";
|
|
172
|
+
AxisType[AxisType["VerticalAxis"] = 'VerticalAxis'] = "VerticalAxis";
|
|
173
|
+
AxisType[AxisType["SecondaryHorizontalAxis"] = 'SecondaryHorizontalAxis'] = "SecondaryHorizontalAxis";
|
|
174
|
+
AxisType[AxisType["SecondaryVerticalAxis"] = 'SecondaryVerticalAxis'] = "SecondaryVerticalAxis";
|
|
175
|
+
})(AxisType = exports.AxisType || (exports.AxisType = {}));
|
|
163
176
|
/**
|
|
164
177
|
* Represents blur effect
|
|
165
178
|
*/
|
|
@@ -358,6 +371,18 @@ exports.ChartWall = ChartWall;
|
|
|
358
371
|
PictureTypeEnum[PictureTypeEnum["NotDefined"] = 'NotDefined'] = "NotDefined";
|
|
359
372
|
})(PictureTypeEnum = ChartWall.PictureTypeEnum || (ChartWall.PictureTypeEnum = {}));
|
|
360
373
|
})(ChartWall = exports.ChartWall || (exports.ChartWall = {}));
|
|
374
|
+
/**
|
|
375
|
+
* 3D chart wall type
|
|
376
|
+
*/
|
|
377
|
+
/**
|
|
378
|
+
* 3D chart wall type
|
|
379
|
+
*/
|
|
380
|
+
var ChartWallType;
|
|
381
|
+
(function (ChartWallType) {
|
|
382
|
+
ChartWallType[ChartWallType["Floor"] = 'Floor'] = "Floor";
|
|
383
|
+
ChartWallType[ChartWallType["SideWall"] = 'SideWall'] = "SideWall";
|
|
384
|
+
ChartWallType[ChartWallType["BackWall"] = 'BackWall'] = "BackWall";
|
|
385
|
+
})(ChartWallType = exports.ChartWallType || (exports.ChartWallType = {}));
|
|
361
386
|
/**
|
|
362
387
|
* Slide view properties.
|
|
363
388
|
*/
|
|
@@ -1095,6 +1120,24 @@ var NotesSlideExportFormat;
|
|
|
1095
1120
|
NotesSlideExportFormat[NotesSlideExportFormat["Gif"] = 'Gif'] = "Gif";
|
|
1096
1121
|
NotesSlideExportFormat[NotesSlideExportFormat["Bmp"] = 'Bmp'] = "Bmp";
|
|
1097
1122
|
NotesSlideExportFormat[NotesSlideExportFormat["Tiff"] = 'Tiff'] = "Tiff";
|
|
1123
|
+
NotesSlideExportFormat[NotesSlideExportFormat["Html"] = 'Html'] = "Html";
|
|
1124
|
+
NotesSlideExportFormat[NotesSlideExportFormat["Pdf"] = 'Pdf'] = "Pdf";
|
|
1125
|
+
NotesSlideExportFormat[NotesSlideExportFormat["Xps"] = 'Xps'] = "Xps";
|
|
1126
|
+
NotesSlideExportFormat[NotesSlideExportFormat["Pptx"] = 'Pptx'] = "Pptx";
|
|
1127
|
+
NotesSlideExportFormat[NotesSlideExportFormat["Odp"] = 'Odp'] = "Odp";
|
|
1128
|
+
NotesSlideExportFormat[NotesSlideExportFormat["Otp"] = 'Otp'] = "Otp";
|
|
1129
|
+
NotesSlideExportFormat[NotesSlideExportFormat["Ppt"] = 'Ppt'] = "Ppt";
|
|
1130
|
+
NotesSlideExportFormat[NotesSlideExportFormat["Pps"] = 'Pps'] = "Pps";
|
|
1131
|
+
NotesSlideExportFormat[NotesSlideExportFormat["Ppsx"] = 'Ppsx'] = "Ppsx";
|
|
1132
|
+
NotesSlideExportFormat[NotesSlideExportFormat["Pptm"] = 'Pptm'] = "Pptm";
|
|
1133
|
+
NotesSlideExportFormat[NotesSlideExportFormat["Ppsm"] = 'Ppsm'] = "Ppsm";
|
|
1134
|
+
NotesSlideExportFormat[NotesSlideExportFormat["Potx"] = 'Potx'] = "Potx";
|
|
1135
|
+
NotesSlideExportFormat[NotesSlideExportFormat["Pot"] = 'Pot'] = "Pot";
|
|
1136
|
+
NotesSlideExportFormat[NotesSlideExportFormat["Potm"] = 'Potm'] = "Potm";
|
|
1137
|
+
NotesSlideExportFormat[NotesSlideExportFormat["Svg"] = 'Svg'] = "Svg";
|
|
1138
|
+
NotesSlideExportFormat[NotesSlideExportFormat["Fodp"] = 'Fodp'] = "Fodp";
|
|
1139
|
+
NotesSlideExportFormat[NotesSlideExportFormat["Xaml"] = 'Xaml'] = "Xaml";
|
|
1140
|
+
NotesSlideExportFormat[NotesSlideExportFormat["Html5"] = 'Html5'] = "Html5";
|
|
1098
1141
|
})(NotesSlideExportFormat = exports.NotesSlideExportFormat || (exports.NotesSlideExportFormat = {}));
|
|
1099
1142
|
/**
|
|
1100
1143
|
* Object exists
|
|
@@ -1260,6 +1303,7 @@ exports.PresentationToMerge = PresentationToMerge;
|
|
|
1260
1303
|
(function (SourceEnum) {
|
|
1261
1304
|
SourceEnum[SourceEnum["Storage"] = 'Storage'] = "Storage";
|
|
1262
1305
|
SourceEnum[SourceEnum["Request"] = 'Request'] = "Request";
|
|
1306
|
+
SourceEnum[SourceEnum["Url"] = 'Url'] = "Url";
|
|
1263
1307
|
})(SourceEnum = PresentationToMerge.SourceEnum || (PresentationToMerge.SourceEnum = {}));
|
|
1264
1308
|
})(PresentationToMerge = exports.PresentationToMerge || (exports.PresentationToMerge = {}));
|
|
1265
1309
|
/**
|
|
@@ -1604,6 +1648,7 @@ var SlideExportFormat;
|
|
|
1604
1648
|
SlideExportFormat[SlideExportFormat["Svg"] = 'Svg'] = "Svg";
|
|
1605
1649
|
SlideExportFormat[SlideExportFormat["Fodp"] = 'Fodp'] = "Fodp";
|
|
1606
1650
|
SlideExportFormat[SlideExportFormat["Xaml"] = 'Xaml'] = "Xaml";
|
|
1651
|
+
SlideExportFormat[SlideExportFormat["Html5"] = 'Html5'] = "Html5";
|
|
1607
1652
|
})(SlideExportFormat = exports.SlideExportFormat || (exports.SlideExportFormat = {}));
|
|
1608
1653
|
/**
|
|
1609
1654
|
* Smart art node.
|
|
@@ -3259,6 +3304,7 @@ exports.SaveSlide = SaveSlide;
|
|
|
3259
3304
|
FormatEnum[FormatEnum["Svg"] = 'Svg'] = "Svg";
|
|
3260
3305
|
FormatEnum[FormatEnum["Fodp"] = 'Fodp'] = "Fodp";
|
|
3261
3306
|
FormatEnum[FormatEnum["Xaml"] = 'Xaml'] = "Xaml";
|
|
3307
|
+
FormatEnum[FormatEnum["Html5"] = 'Html5'] = "Html5";
|
|
3262
3308
|
})(FormatEnum = SaveSlide.FormatEnum || (SaveSlide.FormatEnum = {}));
|
|
3263
3309
|
})(SaveSlide = exports.SaveSlide || (exports.SaveSlide = {}));
|
|
3264
3310
|
/**
|