Skip to content

Commit dbf4d6d

Browse files
ivankamkinIvan KamkinDenis-Averin
authored
Release 22.10 (#49)
* Pdf417MacroTerminator enum added * Update node package versions Co-authored-by: Ivan Kamkin <234-Ivan.Kamkin@users.noreply.git.saltov.dynabic.com> Co-authored-by: Denis Averin <denis.averin@aspose.com>
1 parent bffc6a5 commit dbf4d6d

6 files changed

Lines changed: 493 additions & 468 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![npm](https://img.shields.io/npm/v/aspose-barcode-cloud-node)](https://www.npmjs.com/package/aspose-barcode-cloud-node)
66

77
+ API version: 3.0
8-
+ Package version: 22.9.0
8+
+ Package version: 22.10.0
99

1010
## Demo applications
1111

docs/models.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1339,6 +1339,18 @@ enum Pdf417ErrorLevel {
13391339
}
13401340
```
13411341

1342+
## Pdf417MacroTerminator
1343+
1344+
1345+
1346+
```ts
1347+
enum Pdf417MacroTerminator {
1348+
Auto = 'Auto',
1349+
None = 'None',
1350+
Set = 'Set'
1351+
}
1352+
```
1353+
13421354
## Pdf417Params
13431355

13441356
PDF417 parameters.
@@ -1445,6 +1457,11 @@ interface Pdf417Params {
14451457
* Function codeword for Code 128 emulation. Applied for MicroPDF417 only. Ignored for PDF417 and MacroPDF417 barcodes.
14461458
*/
14471459
code128Emulation?: Code128Emulation;
1460+
1461+
/**
1462+
* Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. Applied only for Macro PDF417.
1463+
*/
1464+
pdf417MacroTerminator?: Pdf417MacroTerminator;
14481465
}
14491466
```
14501467

0 commit comments

Comments
 (0)