Skip to content

Commit 2771e0f

Browse files
authored
Release 23.11 (#80)
* Update version to 23.11.0 * Update API * Change Maximum timeout value * Add Node v21 to test and update package-lock.json
1 parent 5119a9f commit 2771e0f

8 files changed

Lines changed: 104 additions & 63 deletions

File tree

.github/workflows/node.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818

1919
strategy:
2020
matrix:
21-
# see https://nodejs.dev/en/about/releases/ for active releases
22-
node-version: [16.x, 18.x, 20.x, lts/*, latest]
21+
# see https://nodejs.org/en/about/previous-releases for active releases
22+
node-version: [16.x, 18.x, 20.x, 21.x, lts/*, latest]
2323

2424
steps:
2525
- uses: actions/checkout@v3

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: 23.10.0
8+
+ Package version: 23.11.0
99

1010
## Demo applications
1111

docs/index.md

Lines changed: 9 additions & 9 deletions
Large diffs are not rendered by default.

docs/models.md

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ interface CodablockParams {
324324

325325
## Code128Emulation
326326

327-
327+
DEPRECATED. This enum will be removed in future releases Function codewords for Code 128 emulation. Applied for MicroPDF417 only. Ignored for PDF417 and MacroPDF417 barcodes.
328328

329329
```ts
330330
enum Code128Emulation {
@@ -712,7 +712,8 @@ enum DecodeBarcodeType {
712712
HanXin = 'HanXin',
713713
GS1HanXin = 'GS1HanXin',
714714
GS1Aztec = 'GS1Aztec',
715-
GS1CompositeBar = 'GS1CompositeBar'
715+
GS1CompositeBar = 'GS1CompositeBar',
716+
GS1MicroPdf417 = 'GS1MicroPdf417'
716717
}
717718
```
718719

@@ -910,7 +911,8 @@ enum EncodeBarcodeType {
910911
GS1DotCode = 'GS1DotCode',
911912
HanXin = 'HanXin',
912913
GS1HanXin = 'GS1HanXin',
913-
GS1Aztec = 'GS1Aztec'
914+
GS1Aztec = 'GS1Aztec',
915+
GS1MicroPdf417 = 'GS1MicroPdf417'
914916
}
915917
```
916918

@@ -1849,14 +1851,29 @@ interface Pdf417Params {
18491851
macroECIEncoding?: ECIEncodings;
18501852

18511853
/**
1852-
* Function codeword for Code 128 emulation. Applied for MicroPDF417 only. Ignored for PDF417 and MacroPDF417 barcodes.
1854+
* DEPRECATED: This property is obsolete and will be removed in future releases. See samples of using new parameters on https://releases.aspose.com/barcode/net/release-notes/2023/aspose-barcode-for-net-23-10-release-notes/ Function codeword for Code 128 emulation. Applied for MicroPDF417 only. Ignored for PDF417 and MacroPDF417 barcodes.
18531855
*/
18541856
code128Emulation?: Code128Emulation;
18551857

1858+
/**
1859+
* Can be used only with MicroPdf417 and encodes Code 128 emulation modes. Can encode FNC1 in second position modes 908 and 909, also can encode 910 and 911 which just indicate that recognized MicroPdf417 can be interpret as Code 128.
1860+
*/
1861+
isCode128Emulation?: boolean;
1862+
18561863
/**
18571864
* Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. Applied only for Macro PDF417.
18581865
*/
18591866
pdf417MacroTerminator?: Pdf417MacroTerminator;
1867+
1868+
/**
1869+
* Defines linked modes with GS1MicroPdf417, MicroPdf417 and Pdf417 barcodes. With GS1MicroPdf417 symbology encodes 906, 907, 912, 913, 914, 915 “Linked” UCC/EAN-128 modes. With MicroPdf417 and Pdf417 symbologies encodes 918 linkage flag to associated linear component other than an EAN.UCC.
1870+
*/
1871+
isLinked?: boolean;
1872+
1873+
/**
1874+
* Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with MicroPdf417 and encodes 916 and 917 MicroPdf417 modes. Default value: MacroCharacters.None.
1875+
*/
1876+
macroCharacters?: MacroCharacter;
18601877
}
18611878
```
18621879

@@ -2085,7 +2102,7 @@ interface ReaderParams {
20852102
stripFNC?: boolean;
20862103

20872104
/**
2088-
* Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 60_000 (1 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout.
2105+
* Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 30_000 (1/2 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout.
20892106
*/
20902107
timeout?: number;
20912108

package-lock.json

Lines changed: 12 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aspose-barcode-cloud-node",
3-
"version": "23.10.0",
3+
"version": "23.11.0",
44
"description": "Aspose.BarCode Cloud SDK for Node.js",
55
"homepage": "https://products.aspose.cloud/barcode/nodejs",
66
"repository": {

0 commit comments

Comments
 (0)