aspose-barcode-cloud-node 22.9.0 → 22.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/LICENSE +0 -0
- package/README.md +1 -1
- package/dist/aspose-barcode-cloud-node.cjs.development.js +61 -518
- 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 +66 -560
- package/dist/aspose-barcode-cloud-node.esm.js.map +1 -1
- package/dist/models.d.ts +12 -0
- package/package.json +2 -2
package/dist/models.d.ts
CHANGED
|
@@ -1288,6 +1288,14 @@ export declare enum Pdf417ErrorLevel {
|
|
|
1288
1288
|
Level7 = "Level7",
|
|
1289
1289
|
Level8 = "Level8"
|
|
1290
1290
|
}
|
|
1291
|
+
/**
|
|
1292
|
+
*
|
|
1293
|
+
*/
|
|
1294
|
+
export declare enum Pdf417MacroTerminator {
|
|
1295
|
+
Auto = "Auto",
|
|
1296
|
+
None = "None",
|
|
1297
|
+
Set = "Set"
|
|
1298
|
+
}
|
|
1291
1299
|
/**
|
|
1292
1300
|
* PDF417 parameters.
|
|
1293
1301
|
*/
|
|
@@ -1372,6 +1380,10 @@ export declare class Pdf417Params {
|
|
|
1372
1380
|
* Function codeword for Code 128 emulation. Applied for MicroPDF417 only. Ignored for PDF417 and MacroPDF417 barcodes.
|
|
1373
1381
|
*/
|
|
1374
1382
|
'code128Emulation'?: Code128Emulation;
|
|
1383
|
+
/**
|
|
1384
|
+
* Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. Applied only for Macro PDF417.
|
|
1385
|
+
*/
|
|
1386
|
+
'pdf417MacroTerminator'?: Pdf417MacroTerminator;
|
|
1375
1387
|
static attributeTypeMap: Array<{
|
|
1376
1388
|
name: string;
|
|
1377
1389
|
baseName: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aspose-barcode-cloud-node",
|
|
3
|
-
"version": "22.
|
|
3
|
+
"version": "22.10.0",
|
|
4
4
|
"description": "Aspose.BarCode Cloud SDK for Node.js",
|
|
5
5
|
"homepage": "https://products.aspose.cloud/barcode/nodejs",
|
|
6
6
|
"repository": {
|
|
@@ -155,7 +155,7 @@
|
|
|
155
155
|
"npm-check-updates": "^12.5.12",
|
|
156
156
|
"tsdx": "^0.14.1",
|
|
157
157
|
"tslib": "^2.4.0",
|
|
158
|
-
"typescript": "^4.8.
|
|
158
|
+
"typescript": "^4.8.4",
|
|
159
159
|
"uuid": "^8.3.2"
|
|
160
160
|
},
|
|
161
161
|
"bugs": {
|