aspose-barcode-cloud-node 24.8.0 → 24.10.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 +1 -1
- package/dist/aspose-barcode-cloud-node.cjs.development.js +41 -36
- package/dist/aspose-barcode-cloud-node.cjs.development.js.map +1 -1
- package/dist/aspose-barcode-cloud-node.cjs.production.min.js +1 -1
- package/dist/aspose-barcode-cloud-node.cjs.production.min.js.map +1 -1
- package/dist/aspose-barcode-cloud-node.esm.js +41 -36
- package/dist/aspose-barcode-cloud-node.esm.js.map +1 -1
- package/dist/models.d.ts +34 -26
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -402,7 +402,7 @@ class CaptionParams {
|
|
|
402
402
|
*/
|
|
403
403
|
this['alignment'] = void 0;
|
|
404
404
|
/**
|
|
405
|
-
* Text color.
|
|
405
|
+
* Text color. Default value: black Use named colors like: red, green, blue Or HTML colors like: #FF0000, #00FF00, #0000FF
|
|
406
406
|
*/
|
|
407
407
|
this['color'] = void 0;
|
|
408
408
|
/**
|
|
@@ -1375,7 +1375,7 @@ class GeneratorParams {
|
|
|
1375
1375
|
*/
|
|
1376
1376
|
this['textAlignment'] = void 0;
|
|
1377
1377
|
/**
|
|
1378
|
-
* Specify the displaying CodeText's Color. Default value:
|
|
1378
|
+
* Specify the displaying CodeText's Color. Default value: black. Use named colors like: red, green, blue Or HTML colors like: #FF0000, #00FF00, #0000FF
|
|
1379
1379
|
*/
|
|
1380
1380
|
this['textColor'] = void 0;
|
|
1381
1381
|
/**
|
|
@@ -1447,15 +1447,15 @@ class GeneratorParams {
|
|
|
1447
1447
|
*/
|
|
1448
1448
|
this['captionBelow'] = void 0;
|
|
1449
1449
|
/**
|
|
1450
|
-
* Background color of the barcode image. Default value:
|
|
1450
|
+
* Background color of the barcode image. Default value: white. Use named colors like: red, green, blue Or HTML colors like: #FF0000, #00FF00, #0000FF
|
|
1451
1451
|
*/
|
|
1452
1452
|
this['backColor'] = void 0;
|
|
1453
1453
|
/**
|
|
1454
|
-
* Bars color. Default value:
|
|
1454
|
+
* Bars color. Default value: black. Use named colors like: red, green, blue Or HTML colors like: #FF0000, #00FF00, #0000FF
|
|
1455
1455
|
*/
|
|
1456
1456
|
this['barColor'] = void 0;
|
|
1457
1457
|
/**
|
|
1458
|
-
* Border color. Default value:
|
|
1458
|
+
* Border color. Default value: black. Use named colors like: red, green, blue Or HTML colors like: #FF0000, #00FF00, #0000FF
|
|
1459
1459
|
*/
|
|
1460
1460
|
this['borderColor'] = void 0;
|
|
1461
1461
|
/**
|
|
@@ -1571,7 +1571,7 @@ class GeneratorParams {
|
|
|
1571
1571
|
*/
|
|
1572
1572
|
this['patchCode'] = void 0;
|
|
1573
1573
|
/**
|
|
1574
|
-
* Code128
|
|
1574
|
+
* Code128 parameters
|
|
1575
1575
|
*/
|
|
1576
1576
|
this['code128'] = void 0;
|
|
1577
1577
|
/**
|
|
@@ -3259,15 +3259,11 @@ class GetBarcodeGenerateRequest {
|
|
|
3259
3259
|
this['textAlignment'] = void 0;
|
|
3260
3260
|
/**
|
|
3261
3261
|
* Specify the displaying CodeText's Color.
|
|
3262
|
-
Default value:
|
|
3262
|
+
Default value: black.
|
|
3263
|
+
Use named colors like: red, green, blue
|
|
3264
|
+
Or HTML colors like: #FF0000, #00FF00, #0000FF
|
|
3263
3265
|
*/
|
|
3264
3266
|
this['textColor'] = void 0;
|
|
3265
|
-
/**
|
|
3266
|
-
* Specify FontSizeMode. If FontSizeMode is set to Auto, font size will be calculated automatically based on xDimension value.
|
|
3267
|
-
It is recommended to use FontSizeMode.Auto especially in AutoSizeMode.Nearest or AutoSizeMode.Interpolation.
|
|
3268
|
-
Default value: FontSizeMode.Auto.
|
|
3269
|
-
*/
|
|
3270
|
-
this['fontSizeMode'] = void 0;
|
|
3271
3267
|
/**
|
|
3272
3268
|
* Specify word wraps (line breaks) within text.
|
|
3273
3269
|
Default value: false.
|
|
@@ -3328,17 +3324,23 @@ class GetBarcodeGenerateRequest {
|
|
|
3328
3324
|
this['rotationAngle'] = void 0;
|
|
3329
3325
|
/**
|
|
3330
3326
|
* Background color of the barcode image.
|
|
3331
|
-
Default value:
|
|
3327
|
+
Default value: white.
|
|
3328
|
+
Use named colors like: red, green, blue
|
|
3329
|
+
Or HTML colors like: #FF0000, #00FF00, #0000FF
|
|
3332
3330
|
*/
|
|
3333
3331
|
this['backColor'] = void 0;
|
|
3334
3332
|
/**
|
|
3335
3333
|
* Bars color.
|
|
3336
|
-
Default value:
|
|
3334
|
+
Default value: black.
|
|
3335
|
+
Use named colors like: red, green, blue
|
|
3336
|
+
Or HTML colors like: #FF0000, #00FF00, #0000FF
|
|
3337
3337
|
*/
|
|
3338
3338
|
this['barColor'] = void 0;
|
|
3339
3339
|
/**
|
|
3340
3340
|
* Border color.
|
|
3341
|
-
Default value:
|
|
3341
|
+
Default value: black.
|
|
3342
|
+
Use named colors like: red, green, blue
|
|
3343
|
+
Or HTML colors like: #FF0000, #00FF00, #0000FF
|
|
3342
3344
|
*/
|
|
3343
3345
|
this['borderColor'] = void 0;
|
|
3344
3346
|
/**
|
|
@@ -3865,15 +3867,11 @@ class PutBarcodeGenerateFileRequest {
|
|
|
3865
3867
|
this['textAlignment'] = void 0;
|
|
3866
3868
|
/**
|
|
3867
3869
|
* Specify the displaying CodeText's Color.
|
|
3868
|
-
Default value:
|
|
3870
|
+
Default value: black.
|
|
3871
|
+
Use named colors like: red, green, blue
|
|
3872
|
+
Or HTML colors like: #FF0000, #00FF00, #0000FF
|
|
3869
3873
|
*/
|
|
3870
3874
|
this['textColor'] = void 0;
|
|
3871
|
-
/**
|
|
3872
|
-
* Specify FontSizeMode. If FontSizeMode is set to Auto, font size will be calculated automatically based on xDimension value.
|
|
3873
|
-
It is recommended to use FontSizeMode.Auto especially in AutoSizeMode.Nearest or AutoSizeMode.Interpolation.
|
|
3874
|
-
Default value: FontSizeMode.Auto.
|
|
3875
|
-
*/
|
|
3876
|
-
this['fontSizeMode'] = void 0;
|
|
3877
3875
|
/**
|
|
3878
3876
|
* Specify word wraps (line breaks) within text.
|
|
3879
3877
|
Default value: false.
|
|
@@ -3934,17 +3932,23 @@ class PutBarcodeGenerateFileRequest {
|
|
|
3934
3932
|
this['rotationAngle'] = void 0;
|
|
3935
3933
|
/**
|
|
3936
3934
|
* Background color of the barcode image.
|
|
3937
|
-
Default value:
|
|
3935
|
+
Default value: white.
|
|
3936
|
+
Use named colors like: red, green, blue
|
|
3937
|
+
Or HTML colors like: #FF0000, #00FF00, #0000FF
|
|
3938
3938
|
*/
|
|
3939
3939
|
this['backColor'] = void 0;
|
|
3940
3940
|
/**
|
|
3941
3941
|
* Bars color.
|
|
3942
|
-
Default value:
|
|
3942
|
+
Default value: black.
|
|
3943
|
+
Use named colors like: red, green, blue
|
|
3944
|
+
Or HTML colors like: #FF0000, #00FF00, #0000FF
|
|
3943
3945
|
*/
|
|
3944
3946
|
this['barColor'] = void 0;
|
|
3945
3947
|
/**
|
|
3946
3948
|
* Border color.
|
|
3947
|
-
Default value:
|
|
3949
|
+
Default value: black.
|
|
3950
|
+
Use named colors like: red, green, blue
|
|
3951
|
+
Or HTML colors like: #FF0000, #00FF00, #0000FF
|
|
3948
3952
|
*/
|
|
3949
3953
|
this['borderColor'] = void 0;
|
|
3950
3954
|
/**
|
|
@@ -4125,6 +4129,10 @@ class ScanBarcodeRequest {
|
|
|
4125
4129
|
Try reducing the image size to avoid timeout.
|
|
4126
4130
|
*/
|
|
4127
4131
|
this['timeout'] = void 0;
|
|
4132
|
+
/**
|
|
4133
|
+
* Checksum validation setting. Default is ON.
|
|
4134
|
+
*/
|
|
4135
|
+
this['checksumValidation'] = void 0;
|
|
4128
4136
|
this.imageFile = imageFile;
|
|
4129
4137
|
}
|
|
4130
4138
|
}
|
|
@@ -4663,7 +4671,7 @@ class BarcodeApi {
|
|
|
4663
4671
|
constructor(configuration) {
|
|
4664
4672
|
this.defaultHeaders = {
|
|
4665
4673
|
'x-aspose-client': 'nodejs sdk',
|
|
4666
|
-
'x-aspose-client-version': '24.
|
|
4674
|
+
'x-aspose-client-version': '24.10.0'
|
|
4667
4675
|
};
|
|
4668
4676
|
this._configuration = void 0;
|
|
4669
4677
|
this._client = void 0;
|
|
@@ -4705,9 +4713,6 @@ class BarcodeApi {
|
|
|
4705
4713
|
if (request.textColor != null) {
|
|
4706
4714
|
queryParameters['TextColor'] = ObjectSerializer.serialize(request.textColor, 'string');
|
|
4707
4715
|
}
|
|
4708
|
-
if (request.fontSizeMode != null) {
|
|
4709
|
-
queryParameters['FontSizeMode'] = ObjectSerializer.serialize(request.fontSizeMode, "'Auto' | 'Manual'");
|
|
4710
|
-
}
|
|
4711
4716
|
if (request.noWrap != null) {
|
|
4712
4717
|
queryParameters['NoWrap'] = ObjectSerializer.serialize(request.noWrap, 'boolean');
|
|
4713
4718
|
}
|
|
@@ -5165,9 +5170,6 @@ class BarcodeApi {
|
|
|
5165
5170
|
if (request.textColor != null) {
|
|
5166
5171
|
queryParameters['TextColor'] = ObjectSerializer.serialize(request.textColor, 'string');
|
|
5167
5172
|
}
|
|
5168
|
-
if (request.fontSizeMode != null) {
|
|
5169
|
-
queryParameters['FontSizeMode'] = ObjectSerializer.serialize(request.fontSizeMode, "'Auto' | 'Manual'");
|
|
5170
|
-
}
|
|
5171
5173
|
if (request.noWrap != null) {
|
|
5172
5174
|
queryParameters['NoWrap'] = ObjectSerializer.serialize(request.noWrap, 'boolean');
|
|
5173
5175
|
}
|
|
@@ -5383,6 +5385,9 @@ class BarcodeApi {
|
|
|
5383
5385
|
if (request.timeout != null) {
|
|
5384
5386
|
formParams.push(['timeout', ObjectSerializer.serialize(request.timeout, 'number')]);
|
|
5385
5387
|
}
|
|
5388
|
+
if (request.checksumValidation != null) {
|
|
5389
|
+
formParams.push(['checksumValidation', ObjectSerializer.serialize(request.checksumValidation, 'string')]);
|
|
5390
|
+
}
|
|
5386
5391
|
const requestOptions = {
|
|
5387
5392
|
method: 'POST',
|
|
5388
5393
|
qs: queryParameters,
|
|
@@ -5407,7 +5412,7 @@ class FileApi {
|
|
|
5407
5412
|
constructor(configuration) {
|
|
5408
5413
|
this.defaultHeaders = {
|
|
5409
5414
|
'x-aspose-client': 'nodejs sdk',
|
|
5410
|
-
'x-aspose-client-version': '24.
|
|
5415
|
+
'x-aspose-client-version': '24.10.0'
|
|
5411
5416
|
};
|
|
5412
5417
|
this._configuration = void 0;
|
|
5413
5418
|
this._client = void 0;
|
|
@@ -5610,7 +5615,7 @@ class FolderApi {
|
|
|
5610
5615
|
constructor(configuration) {
|
|
5611
5616
|
this.defaultHeaders = {
|
|
5612
5617
|
'x-aspose-client': 'nodejs sdk',
|
|
5613
|
-
'x-aspose-client-version': '24.
|
|
5618
|
+
'x-aspose-client-version': '24.10.0'
|
|
5614
5619
|
};
|
|
5615
5620
|
this._configuration = void 0;
|
|
5616
5621
|
this._client = void 0;
|
|
@@ -5788,7 +5793,7 @@ class StorageApi {
|
|
|
5788
5793
|
constructor(configuration) {
|
|
5789
5794
|
this.defaultHeaders = {
|
|
5790
5795
|
'x-aspose-client': 'nodejs sdk',
|
|
5791
|
-
'x-aspose-client-version': '24.
|
|
5796
|
+
'x-aspose-client-version': '24.10.0'
|
|
5792
5797
|
};
|
|
5793
5798
|
this._configuration = void 0;
|
|
5794
5799
|
this._client = void 0;
|