Skip to content

Commit 3c4ae75

Browse files
authored
Release 23.2 (#57)
* Update packages (#55) * Update version to 23.2.0 * Cloud Release 23.2
1 parent f66ce8c commit 3c4ae75

8 files changed

Lines changed: 318 additions & 305 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ lint:
4444
update:
4545
npm run check-updates
4646
npm update
47-
npm outdated
47+
npm outdated || true
4848
npm install --package-lock-only
4949

5050
.PHONY: check-git

README.md

Lines changed: 2 additions & 2 deletions
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.1.0
8+
+ Package version: 23.2.0
99

1010
## Demo applications
1111

@@ -115,7 +115,7 @@ Class | Method | HTTP request | Description
115115
----- | ------ | ------------ | -----------
116116
BarcodeApi | [**getBarcodeGenerate**](docs/index.md#getbarcodegenerate) | **GET** /barcode/generate | Generate barcode.
117117
BarcodeApi | [**getBarcodeRecognize**](docs/index.md#getbarcoderecognize) | **GET** /barcode/{name}/recognize | Recognize barcode from a file on server.
118-
BarcodeApi | [**postBarcodeRecognizeFromUrlOrContent**](docs/index.md#postbarcoderecognizefromurlorcontent) | **POST** /barcode/recognize | Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image or encoded with base64.
118+
BarcodeApi | [**postBarcodeRecognizeFromUrlOrContent**](docs/index.md#postbarcoderecognizefromurlorcontent) | **POST** /barcode/recognize | Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image with content-type \"application/octet-stream\". An image can also be passed as a form field.
119119
BarcodeApi | [**postGenerateMultiple**](docs/index.md#postgeneratemultiple) | **POST** /barcode/generateMultiple | Generate multiple barcodes and return in response stream
120120
BarcodeApi | [**putBarcodeGenerateFile**](docs/index.md#putbarcodegeneratefile) | **PUT** /barcode/{name}/generate | Generate barcode and save on server (from query params or from file with json or xml content)
121121
BarcodeApi | [**putBarcodeRecognizeFromBody**](docs/index.md#putbarcoderecognizefrombody) | **PUT** /barcode/{name}/recognize | Recognition of a barcode from file on server with parameters in body.

docs/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Name | Type | Description | Notes
7878
**rectWidth** | **number**| Set Width of area for recognition. | [optional]
7979
**rectHeight** | **number**| Set Height of area for recognition. | [optional]
8080
**stripFNC** | **boolean**| Value indicating whether FNC symbol strip must be done. | [optional]
81-
**timeout** | **number**| Timeout of recognition process. | [optional]
81+
**timeout** | **number**| Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. | [optional]
8282
**medianSmoothingWindowSize** | **number**| Window size for median smoothing. Typical values are 3 or 4. Default value is 3. AllowMedianSmoothing must be set. | [optional]
8383
**allowMedianSmoothing** | **boolean**| Allows engine to enable median smoothing as additional scan. Mode helps to recognize noised barcodes. | [optional]
8484
**allowComplexBackground** | **boolean**| Allows engine to recognize color barcodes on color background as additional scan. Extremely slow mode. | [optional]
@@ -102,7 +102,7 @@ Name | Type | Description | Notes
102102
**skipDiagonalSearch** | **boolean**| Allows detector to skip search for diagonal barcodes. Setting it to false will increase detection time but allow to find diagonal barcodes that can be missed otherwise. Enabling of diagonal search leads to a bigger detection time. | [optional]
103103
**readTinyBarcodes** | **boolean**| Allows engine to recognize tiny barcodes on large images. Ignored if AllowIncorrectBarcodes is set to True. Default value: False. | [optional]
104104
**australianPostEncodingTable** | 'CTable', 'NTable', 'Other' | Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other. | [optional]
105-
**ignoreEndingFillingPatternsForCTable** | **boolean**| The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequnce \"333\" of filling paterns is decoded as letter \"z\". | [optional]
105+
**ignoreEndingFillingPatternsForCTable** | **boolean**| The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequence \"333\" of filling patterns is decoded as letter \"z\". | [optional]
106106
**rectangleRegion** | **string**| | [optional]
107107
**storage** | **string**| The image storage. | [optional]
108108
**folder** | **string**| The image folder. | [optional]
@@ -115,7 +115,7 @@ Name | Type | Description | Notes
115115

116116
### postBarcodeRecognizeFromUrlOrContent
117117

118-
Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image or encoded with base64.
118+
Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image with content-type \"application/octet-stream\". An image can also be passed as a form field.
119119

120120
```ts
121121
postBarcodeRecognizeFromUrlOrContent(): BarcodeResponseList;
@@ -134,7 +134,7 @@ Name | Type | Description | Notes
134134
**rectWidth** | **number**| Set Width of area for recognition. | [optional]
135135
**rectHeight** | **number**| Set Height of area for recognition. | [optional]
136136
**stripFNC** | **boolean**| Value indicating whether FNC symbol strip must be done. | [optional]
137-
**timeout** | **number**| Timeout of recognition process. | [optional]
137+
**timeout** | **number**| Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. | [optional]
138138
**medianSmoothingWindowSize** | **number**| Window size for median smoothing. Typical values are 3 or 4. Default value is 3. AllowMedianSmoothing must be set. | [optional]
139139
**allowMedianSmoothing** | **boolean**| Allows engine to enable median smoothing as additional scan. Mode helps to recognize noised barcodes. | [optional]
140140
**allowComplexBackground** | **boolean**| Allows engine to recognize color barcodes on color background as additional scan. Extremely slow mode. | [optional]
@@ -158,7 +158,7 @@ Name | Type | Description | Notes
158158
**skipDiagonalSearch** | **boolean**| Allows detector to skip search for diagonal barcodes. Setting it to false will increase detection time but allow to find diagonal barcodes that can be missed otherwise. Enabling of diagonal search leads to a bigger detection time. | [optional]
159159
**readTinyBarcodes** | **boolean**| Allows engine to recognize tiny barcodes on large images. Ignored if AllowIncorrectBarcodes is set to True. Default value: False. | [optional]
160160
**australianPostEncodingTable** | 'CTable', 'NTable', 'Other' | Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other. | [optional]
161-
**ignoreEndingFillingPatternsForCTable** | **boolean**| The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequnce \"333\" of filling paterns is decoded as letter \"z\". | [optional]
161+
**ignoreEndingFillingPatternsForCTable** | **boolean**| The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequence \"333\" of filling patterns is decoded as letter \"z\". | [optional]
162162
**rectangleRegion** | **string**| | [optional]
163163
**url** | **string**| The image file url. | [optional]
164164
**image** | **Buffer**| Image data | [optional]

docs/models.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1765,7 +1765,7 @@ interface ReaderParams {
17651765
stripFNC?: boolean;
17661766

17671767
/**
1768-
* Timeout of recognition process.
1768+
* Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout.
17691769
*/
17701770
timeout?: number;
17711771

@@ -1885,7 +1885,7 @@ interface ReaderParams {
18851885
australianPostEncodingTable?: CustomerInformationInterpretingType;
18861886

18871887
/**
1888-
* The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequnce \"333\" of filling paterns is decoded as letter \"z\".
1888+
* The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequence \"333\" of filling patterns is decoded as letter \"z\".
18891889
*/
18901890
ignoreEndingFillingPatternsForCTable?: boolean;
18911891
}

0 commit comments

Comments
 (0)