asposeslidescloud 22.11.0 → 22.12.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/internal/requestHelper.js +1 -1
- package/model.d.ts +18 -4
- package/model.js +11 -0
- package/package.json +1 -1
|
@@ -149,7 +149,7 @@ function invokeApiMethodInternal(requestOptions, configuration, notApplyAuthToRe
|
|
|
149
149
|
if (!requestOptions.headers) {
|
|
150
150
|
requestOptions.headers = {};
|
|
151
151
|
}
|
|
152
|
-
requestOptions.headers["x-aspose-client"] = "nodejs sdk v22.
|
|
152
|
+
requestOptions.headers["x-aspose-client"] = "nodejs sdk v22.12.0";
|
|
153
153
|
if (configuration.timeout) {
|
|
154
154
|
requestOptions.headers["x-aspose-timeout"] = configuration.timeout;
|
|
155
155
|
}
|
package/model.d.ts
CHANGED
|
@@ -1246,6 +1246,14 @@ export declare class DataPoint {
|
|
|
1246
1246
|
* Gets or sets the line format.
|
|
1247
1247
|
*/
|
|
1248
1248
|
lineFormat?: LineFormat;
|
|
1249
|
+
type?: DataPoint.TypeEnum;
|
|
1250
|
+
}
|
|
1251
|
+
export declare namespace DataPoint {
|
|
1252
|
+
enum TypeEnum {
|
|
1253
|
+
OneValue,
|
|
1254
|
+
Scatter,
|
|
1255
|
+
Bubble
|
|
1256
|
+
}
|
|
1249
1257
|
}
|
|
1250
1258
|
/**
|
|
1251
1259
|
* Scatter chart (two-dimensional) data point
|
|
@@ -1255,11 +1263,11 @@ export declare class ScatterChartDataPoint extends DataPoint {
|
|
|
1255
1263
|
/**
|
|
1256
1264
|
* X-value
|
|
1257
1265
|
*/
|
|
1258
|
-
xValue
|
|
1266
|
+
xValue?: number;
|
|
1259
1267
|
/**
|
|
1260
1268
|
* Y-value
|
|
1261
1269
|
*/
|
|
1262
|
-
yValue
|
|
1270
|
+
yValue?: number;
|
|
1263
1271
|
/**
|
|
1264
1272
|
* Spreadsheet formula in A1-style.
|
|
1265
1273
|
*/
|
|
@@ -1269,6 +1277,8 @@ export declare class ScatterChartDataPoint extends DataPoint {
|
|
|
1269
1277
|
*/
|
|
1270
1278
|
yValueFormula?: string;
|
|
1271
1279
|
}
|
|
1280
|
+
export declare namespace ScatterChartDataPoint {
|
|
1281
|
+
}
|
|
1272
1282
|
/**
|
|
1273
1283
|
* Bubble chart data point.
|
|
1274
1284
|
*/
|
|
@@ -1277,12 +1287,14 @@ export declare class BubbleChartDataPoint extends ScatterChartDataPoint {
|
|
|
1277
1287
|
/**
|
|
1278
1288
|
* Bubble size.
|
|
1279
1289
|
*/
|
|
1280
|
-
bubbleSize
|
|
1290
|
+
bubbleSize?: number;
|
|
1281
1291
|
/**
|
|
1282
1292
|
* Spreadsheet formula in A1-style.
|
|
1283
1293
|
*/
|
|
1284
1294
|
bubbleSizeFormula?: string;
|
|
1285
1295
|
}
|
|
1296
|
+
export declare namespace BubbleChartDataPoint {
|
|
1297
|
+
}
|
|
1286
1298
|
/**
|
|
1287
1299
|
* A chart series.
|
|
1288
1300
|
*/
|
|
@@ -4273,7 +4285,7 @@ export declare class OneValueChartDataPoint extends DataPoint {
|
|
|
4273
4285
|
/**
|
|
4274
4286
|
* Value.
|
|
4275
4287
|
*/
|
|
4276
|
-
value
|
|
4288
|
+
value?: number;
|
|
4277
4289
|
/**
|
|
4278
4290
|
* Spreadsheet formula in A1-style.
|
|
4279
4291
|
*/
|
|
@@ -4287,6 +4299,8 @@ export declare class OneValueChartDataPoint extends DataPoint {
|
|
|
4287
4299
|
*/
|
|
4288
4300
|
invertIfNegative?: boolean;
|
|
4289
4301
|
}
|
|
4302
|
+
export declare namespace OneValueChartDataPoint {
|
|
4303
|
+
}
|
|
4290
4304
|
/**
|
|
4291
4305
|
* One value series.
|
|
4292
4306
|
*/
|
package/model.js
CHANGED
|
@@ -802,12 +802,21 @@ exports.BoxElement = BoxElement;
|
|
|
802
802
|
class DataPoint {
|
|
803
803
|
}
|
|
804
804
|
exports.DataPoint = DataPoint;
|
|
805
|
+
(function (DataPoint) {
|
|
806
|
+
let TypeEnum;
|
|
807
|
+
(function (TypeEnum) {
|
|
808
|
+
TypeEnum[TypeEnum["OneValue"] = 'OneValue'] = "OneValue";
|
|
809
|
+
TypeEnum[TypeEnum["Scatter"] = 'Scatter'] = "Scatter";
|
|
810
|
+
TypeEnum[TypeEnum["Bubble"] = 'Bubble'] = "Bubble";
|
|
811
|
+
})(TypeEnum = DataPoint.TypeEnum || (DataPoint.TypeEnum = {}));
|
|
812
|
+
})(DataPoint = exports.DataPoint || (exports.DataPoint = {}));
|
|
805
813
|
/**
|
|
806
814
|
* Scatter chart (two-dimensional) data point
|
|
807
815
|
*/
|
|
808
816
|
class ScatterChartDataPoint extends DataPoint {
|
|
809
817
|
constructor() {
|
|
810
818
|
super();
|
|
819
|
+
this.type = ScatterChartDataPoint.TypeEnum.Scatter;
|
|
811
820
|
}
|
|
812
821
|
}
|
|
813
822
|
exports.ScatterChartDataPoint = ScatterChartDataPoint;
|
|
@@ -817,6 +826,7 @@ exports.ScatterChartDataPoint = ScatterChartDataPoint;
|
|
|
817
826
|
class BubbleChartDataPoint extends ScatterChartDataPoint {
|
|
818
827
|
constructor() {
|
|
819
828
|
super();
|
|
829
|
+
this.type = BubbleChartDataPoint.TypeEnum.Bubble;
|
|
820
830
|
}
|
|
821
831
|
}
|
|
822
832
|
exports.BubbleChartDataPoint = BubbleChartDataPoint;
|
|
@@ -2616,6 +2626,7 @@ exports.OleObjectFrame = OleObjectFrame;
|
|
|
2616
2626
|
class OneValueChartDataPoint extends DataPoint {
|
|
2617
2627
|
constructor() {
|
|
2618
2628
|
super();
|
|
2629
|
+
this.type = OneValueChartDataPoint.TypeEnum.OneValue;
|
|
2619
2630
|
}
|
|
2620
2631
|
}
|
|
2621
2632
|
exports.OneValueChartDataPoint = OneValueChartDataPoint;
|