aspose-barcode-cloud-node 23.1.0 → 23.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/api.d.ts +1 -1
- package/dist/aspose-barcode-cloud-node.cjs.development.js +2 -2
- package/dist/aspose-barcode-cloud-node.cjs.development.js.map +1 -1
- package/dist/aspose-barcode-cloud-node.cjs.production.min.js.map +1 -1
- package/dist/aspose-barcode-cloud-node.esm.js +2 -2
- package/dist/aspose-barcode-cloud-node.esm.js.map +1 -1
- package/dist/models.d.ts +13 -7
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
[](https://www.npmjs.com/package/aspose-barcode-cloud-node)
|
|
6
6
|
|
|
7
7
|
+ API version: 3.0
|
|
8
|
-
+ Package version: 23.
|
|
8
|
+
+ Package version: 23.2.0
|
|
9
9
|
|
|
10
10
|
## Demo applications
|
|
11
11
|
|
|
@@ -115,7 +115,7 @@ Class | Method | HTTP request | Description
|
|
|
115
115
|
----- | ------ | ------------ | -----------
|
|
116
116
|
BarcodeApi | [**getBarcodeGenerate**](docs/index.md#getbarcodegenerate) | **GET** /barcode/generate | Generate barcode.
|
|
117
117
|
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
|
|
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.
|
|
119
119
|
BarcodeApi | [**postGenerateMultiple**](docs/index.md#postgeneratemultiple) | **POST** /barcode/generateMultiple | Generate multiple barcodes and return in response stream
|
|
120
120
|
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)
|
|
121
121
|
BarcodeApi | [**putBarcodeRecognizeFromBody**](docs/index.md#putbarcoderecognizefrombody) | **PUT** /barcode/{name}/recognize | Recognition of a barcode from file on server with parameters in body.
|
package/dist/api.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ export declare class BarcodeApi {
|
|
|
28
28
|
}>;
|
|
29
29
|
/**
|
|
30
30
|
*
|
|
31
|
-
* @summary Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image
|
|
31
|
+
* @summary 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.
|
|
32
32
|
* @param request PostBarcodeRecognizeFromUrlOrContentRequest
|
|
33
33
|
*/
|
|
34
34
|
postBarcodeRecognizeFromUrlOrContent(request: PostBarcodeRecognizeFromUrlOrContentRequest): Promise<{
|
|
@@ -1689,7 +1689,7 @@ class GetBarcodeRecognizeRequest {
|
|
|
1689
1689
|
}
|
|
1690
1690
|
}
|
|
1691
1691
|
/**
|
|
1692
|
-
* Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image
|
|
1692
|
+
* 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.
|
|
1693
1693
|
*/
|
|
1694
1694
|
class PostBarcodeRecognizeFromUrlOrContentRequest {}
|
|
1695
1695
|
/**
|
|
@@ -2457,7 +2457,7 @@ class BarcodeApi {
|
|
|
2457
2457
|
}
|
|
2458
2458
|
/**
|
|
2459
2459
|
*
|
|
2460
|
-
* @summary Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image
|
|
2460
|
+
* @summary 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.
|
|
2461
2461
|
* @param request PostBarcodeRecognizeFromUrlOrContentRequest
|
|
2462
2462
|
*/
|
|
2463
2463
|
async postBarcodeRecognizeFromUrlOrContent(request) {
|