Skip to content

Commit 721ce62

Browse files
authored
Release 20.12 (#16)
1 parent 081baf7 commit 721ce62

7 files changed

Lines changed: 410 additions & 153 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Aspose.BarCode Cloud SDK for Node.js
22

33
+ API version: 3.0
4-
+ Package version: 20.11.1
4+
+ Package version: 20.12.0
55

66
Aspose.BarCode for Cloud is a REST API for Linear, 2D and postal barcode generation and recognition in the cloud. API recognizes and generates barcode images in a variety of formats. Barcode REST API allows to specify barcode image attributes like image width, height, border style and output image format in order to customize the generation process. Developers can also specify the barcode type and text attributes such as text location and font styles in order to suit the application requirements.
77

docs/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Name | Type | Description | Notes
2121
**textAlignment** | 'Left', 'Center', 'Right' | Text alignment. | [optional]
2222
**textColor** | **string**| Specify the displaying CodeText's Color. Default value: Color.Black. | [optional]
2323
**fontSizeMode** | 'Auto', 'Manual' | Specify FontSizeMode. If FontSizeMode is set to Auto, font size will be calculated automatically based on xDimension value. It is recommended to use FontSizeMode.Auto especially in AutoSizeMode.Nearest or AutoSizeMode.Interpolation. Default value: FontSizeMode.Auto. | [optional]
24+
**noWrap** | **boolean**| Specify word wraps (line breaks) within text. Default value: false. | [optional]
2425
**resolution** | **number**| Resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. | [optional]
2526
**resolutionX** | **number**| DEPRECATED: Use 'Resolution' instead. | [optional]
2627
**resolutionY** | **number**| DEPRECATED: Use 'Resolution' instead. | [optional]
@@ -203,6 +204,7 @@ Name | Type | Description | Notes
203204
**textAlignment** | 'Left', 'Center', 'Right' | Text alignment. | [optional]
204205
**textColor** | **string**| Specify the displaying CodeText's Color. Default value: Color.Black. | [optional]
205206
**fontSizeMode** | 'Auto', 'Manual' | Specify FontSizeMode. If FontSizeMode is set to Auto, font size will be calculated automatically based on xDimension value. It is recommended to use FontSizeMode.Auto especially in AutoSizeMode.Nearest or AutoSizeMode.Interpolation. Default value: FontSizeMode.Auto. | [optional]
207+
**noWrap** | **boolean**| Specify word wraps (line breaks) within text. Default value: false. | [optional]
206208
**resolution** | **number**| Resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. | [optional]
207209
**resolutionX** | **number**| DEPRECATED: Use 'Resolution' instead. | [optional]
208210
**resolutionY** | **number**| DEPRECATED: Use 'Resolution' instead. | [optional]

docs/models.md

Lines changed: 68 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,11 @@ interface CaptionParams {
198198
* Padding.
199199
*/
200200
padding?: Padding;
201+
202+
/**
203+
* Specify word wraps (line breaks) within text. Default value: false.
204+
*/
205+
noWrap?: boolean;
201206
}
202207
```
203208

@@ -368,6 +373,16 @@ interface DataBarParams {
368373
* Rows count.
369374
*/
370375
rows?: number;
376+
377+
/**
378+
* Enables flag of 2D composite component with DataBar barcode
379+
*/
380+
is2DCompositeComponent?: boolean;
381+
382+
/**
383+
* If this flag is set, it allows only GS1 encoding standard for Databar barcode types
384+
*/
385+
isAllowOnlyGS1Encoding?: boolean;
371386
}
372387
```
373388

@@ -400,7 +415,8 @@ enum DataMatrixEncodeMode {
400415
C40 = 'C40',
401416
Text = 'Text',
402417
EDIFACT = 'EDIFACT',
403-
ANSIX12 = 'ANSIX12'
418+
ANSIX12 = 'ANSIX12',
419+
ExtendedCodetext = 'ExtendedCodetext'
404420
}
405421
```
406422

@@ -440,6 +456,11 @@ interface DataMatrixParams {
440456
* Rows count.
441457
*/
442458
rows?: number;
459+
460+
/**
461+
* Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with DataMatrixEccType.Ecc200 or DataMatrixEccType.EccAuto. Cannot be used with EncodeTypes.GS1DataMatrix Default value: MacroCharacters.None.
462+
*/
463+
macroCharacters?: MacroCharacter;
443464
}
444465
```
445466

@@ -842,6 +863,11 @@ interface GeneratorParams {
842863
*/
843864
fontSizeMode?: FontMode;
844865

866+
/**
867+
* Specify word wraps (line breaks) within text. Default value: false.
868+
*/
869+
noWrap?: boolean;
870+
845871
/**
846872
* Resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi.
847873
*/
@@ -1126,6 +1152,18 @@ interface ITFParams {
11261152
}
11271153
```
11281154

1155+
## MacroCharacter
1156+
1157+
1158+
1159+
```ts
1160+
enum MacroCharacter {
1161+
None = 'None',
1162+
Macro05 = 'Macro05',
1163+
Macro06 = 'Macro06'
1164+
}
1165+
```
1166+
11291167
## MaxiCodeParams
11301168

11311169
MaxiCode parameters.
@@ -1519,6 +1557,11 @@ interface QrParams {
15191557
* Version of QR Code. From Version1 to Version40 for QR code and from M1 to M4 for MicroQr. Default value is QRVersion.Auto.
15201558
*/
15211559
version?: QRVersion;
1560+
1561+
/**
1562+
* QR structured append parameters.
1563+
*/
1564+
structuredAppend?: StructuredAppend;
15221565
}
15231566
```
15241567

@@ -1777,6 +1820,30 @@ interface StorageFile {
17771820
}
17781821
```
17791822

1823+
## StructuredAppend
1824+
1825+
QR structured append parameters.
1826+
1827+
```ts
1828+
interface StructuredAppend {
1829+
1830+
/**
1831+
* The index of the QR structured append mode barcode. Index starts from 0.
1832+
*/
1833+
sequenceIndicator?: number;
1834+
1835+
/**
1836+
* Gets or sets the QR structured append mode barcodes quantity. Max value is 16.
1837+
*/
1838+
totalCount?: number;
1839+
1840+
/**
1841+
* Gets or sets the QR structured append mode parity data.
1842+
*/
1843+
parityByte?: number;
1844+
}
1845+
```
1846+
17801847
## TextAlignment
17811848

17821849

0 commit comments

Comments
 (0)