Skip to content

Commit 6415a53

Browse files
Release 23.1 (#54)
* Bump json5 from 2.2.1 to 2.2.3 Bumps [json5](https://github.com/json5/json5) from 2.2.1 to 2.2.3. - [Release notes](https://github.com/json5/json5/releases) - [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md) - [Commits](json5/json5@v2.2.1...v2.2.3) --- updated-dependencies: - dependency-name: json5 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> * Add DotCodeEncodeMode Delete dotCodeMask Add DotCode params Add MaxiCodeEncodeMode Add HIBC decode types Version up Copyright updated * Update packages --------- Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 34ce1e9 commit 6415a53

8 files changed

Lines changed: 1356 additions & 652 deletions

File tree

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 Aspose Pty Ltd
3+
Copyright (c) 2023 Aspose Pty Ltd
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

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.12.0
8+
+ Package version: 23.1.0
99

1010
## Demo applications
1111

docs/index.md

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

docs/models.md

Lines changed: 66 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,18 @@ enum DecodeBarcodeType {
550550
DotCode = 'DotCode',
551551
DutchKIX = 'DutchKIX',
552552
CodablockF = 'CodablockF',
553-
Mailmark = 'Mailmark'
553+
Mailmark = 'Mailmark',
554+
GS1DotCode = 'GS1DotCode',
555+
HIBCCode39LIC = 'HIBCCode39LIC',
556+
HIBCCode128LIC = 'HIBCCode128LIC',
557+
HIBCAztecLIC = 'HIBCAztecLIC',
558+
HIBCDataMatrixLIC = 'HIBCDataMatrixLIC',
559+
HIBCQRLIC = 'HIBCQRLIC',
560+
HIBCCode39PAS = 'HIBCCode39PAS',
561+
HIBCCode128PAS = 'HIBCCode128PAS',
562+
HIBCAztecPAS = 'HIBCAztecPAS',
563+
HIBCDataMatrixPAS = 'HIBCDataMatrixPAS',
564+
HIBCQRPAS = 'HIBCQRPAS'
554565
}
555566
```
556567

@@ -573,6 +584,18 @@ interface DiscUsage {
573584
}
574585
```
575586

587+
## DotCodeEncodeMode
588+
589+
590+
591+
```ts
592+
enum DotCodeEncodeMode {
593+
Auto = 'Auto',
594+
Bytes = 'Bytes',
595+
ExtendedCodetext = 'ExtendedCodetext'
596+
}
597+
```
598+
576599
## DotCodeParams
577600

578601
DotCode parameters.
@@ -586,9 +609,29 @@ interface DotCodeParams {
586609
aspectRatio?: number;
587610

588611
/**
589-
* DEPRECATED: DotCodeMask is now calculated automatically
612+
* Identifies columns count. Sum of the number of rows plus the number of columns of a DotCode symbol must be odd. Number of columns must be at least 5.
613+
*/
614+
columns?: number;
615+
616+
/**
617+
* Identifies DotCode encode mode. Default value: Auto.
618+
*/
619+
encodeMode?: DotCodeEncodeMode;
620+
621+
/**
622+
* Identifies ECI encoding. Used when DotCodeEncodeMode is Auto. Default value: ISO-8859-1.
623+
*/
624+
eCIEncoding?: ECIEncodings;
625+
626+
/**
627+
* Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader. Default value is false.
590628
*/
591-
dotCodeMask?: number;
629+
isReaderInitialization?: boolean;
630+
631+
/**
632+
* Identifies rows count. Sum of the number of rows plus the number of columns of a DotCode symbol must be odd. Number of rows must be at least 5.
633+
*/
634+
rows?: number;
592635
}
593636
```
594637

@@ -712,7 +755,8 @@ enum EncodeBarcodeType {
712755
UpcaGs1DatabarCoupon = 'UpcaGs1DatabarCoupon',
713756
CodablockF = 'CodablockF',
714757
GS1CodablockF = 'GS1CodablockF',
715-
Mailmark = 'Mailmark'
758+
Mailmark = 'Mailmark',
759+
GS1DotCode = 'GS1DotCode'
716760
}
717761
```
718762

@@ -1179,6 +1223,18 @@ enum MacroCharacter {
11791223
}
11801224
```
11811225

1226+
## MaxiCodeEncodeMode
1227+
1228+
1229+
1230+
```ts
1231+
enum MaxiCodeEncodeMode {
1232+
Auto = 'Auto',
1233+
Bytes = 'Bytes',
1234+
ExtendedCodetext = 'ExtendedCodetext'
1235+
}
1236+
```
1237+
11821238
## MaxiCodeMode
11831239

11841240

@@ -1206,9 +1262,14 @@ interface MaxiCodeParams {
12061262
aspectRatio?: number;
12071263

12081264
/**
1209-
* Encoding mode for MaxiCode barcodes.
1265+
* Mode for MaxiCode barcodes.
12101266
*/
12111267
mode?: MaxiCodeMode;
1268+
1269+
/**
1270+
* Encoding mode for MaxiCode barcodes.
1271+
*/
1272+
encodeMode?: MaxiCodeEncodeMode;
12121273
}
12131274
```
12141275

0 commit comments

Comments
 (0)