Skip to content

Commit fa03939

Browse files
Ivan KamkinIvan Kamkin
authored andcommitted
Version updated
1 parent 38f2682 commit fa03939

6 files changed

Lines changed: 15 additions & 15 deletions

File tree

README.md

Lines changed: 3 additions & 3 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: 4.0
8-
+ Package version: 25.6.0
8+
+ Package version: 25.7.0
99

1010
## SDK and API Version Compatibility:
1111

@@ -120,10 +120,10 @@ Class | Method | HTTP request | Description
120120
GenerateApi | [**generate**](docs/index.md#generate) | **GET** /barcode/generate/{barcodeType} | Generate barcode using GET request with parameters in route and query string.
121121
GenerateApi | [**generateBody**](docs/index.md#generatebody) | **POST** /barcode/generate-body | Generate barcode using POST request with parameters in body in json or xml format.
122122
GenerateApi | [**generateMultipart**](docs/index.md#generatemultipart) | **POST** /barcode/generate-multipart | Generate barcode using POST request with parameters in multipart form.
123-
RecognizeApi | [**recognize**](docs/index.md#recognize) | **GET** /barcode/recognize | Recognize barcode from file on server using GET requests with parameters in route and query string.
123+
RecognizeApi | [**recognize**](docs/index.md#recognize) | **GET** /barcode/recognize | Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead.
124124
RecognizeApi | [**recognizeBase64**](docs/index.md#recognizebase64) | **POST** /barcode/recognize-body | Recognize barcode from file in request body using POST requests with parameters in body in json or xml format.
125125
RecognizeApi | [**recognizeMultipart**](docs/index.md#recognizemultipart) | **POST** /barcode/recognize-multipart | Recognize barcode from file in request body using POST requests with parameters in multipart form.
126-
ScanApi | [**scan**](docs/index.md#scan) | **GET** /barcode/scan | Scan barcode from file on server using GET requests with parameter in query string.
126+
ScanApi | [**scan**](docs/index.md#scan) | **GET** /barcode/scan | Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead.
127127
ScanApi | [**scanBase64**](docs/index.md#scanbase64) | **POST** /barcode/scan-body | Scan barcode from file in request body using POST requests with parameter in body in json or xml format.
128128
ScanApi | [**scanMultipart**](docs/index.md#scanmultipart) | **POST** /barcode/scan-multipart | Scan barcode from file in request body using POST requests with parameter in multipart form.
129129

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Buffer
8888

8989
### recognize
9090

91-
Recognize barcode from file on server using GET requests with parameters in route and query string.
91+
Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead.
9292

9393
```ts
9494
recognize(barcodeType: DecodeBarcodeType, fileUrl: string): BarcodeResponseList;
@@ -156,7 +156,7 @@ Name | Type | Description | Notes
156156

157157
### scan
158158

159-
Scan barcode from file on server using GET requests with parameter in query string.
159+
Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead.
160160

161161
```ts
162162
scan(fileUrl: string): BarcodeResponseList;

package-lock.json

Lines changed: 2 additions & 2 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": "25.6.0",
3+
"version": "25.7.0",
44
"description": "Aspose.BarCode Cloud SDK for Node.js",
55
"homepage": "https://products.aspose.cloud/barcode/nodejs",
66
"repository": {

src/api.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ let typeMap: { [index: string]: any } = {
203203
export class GenerateApi {
204204
protected defaultHeaders: any = {
205205
'x-aspose-client': 'nodejs sdk',
206-
'x-aspose-client-version': '25.6.0',
206+
'x-aspose-client-version': '25.7.0',
207207
};
208208
protected _configuration: Configuration;
209209
private _client: HttpClient;
@@ -423,7 +423,7 @@ export class GenerateApi {
423423
export class RecognizeApi {
424424
protected defaultHeaders: any = {
425425
'x-aspose-client': 'nodejs sdk',
426-
'x-aspose-client-version': '25.6.0',
426+
'x-aspose-client-version': '25.7.0',
427427
};
428428
protected _configuration: Configuration;
429429
private _client: HttpClient;
@@ -435,7 +435,7 @@ export class RecognizeApi {
435435

436436
/**
437437
*
438-
* @summary Recognize barcode from file on server using GET requests with parameters in route and query string.
438+
* @summary Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead.
439439
* @param request RecognizeRequestWrapper
440440
*/
441441
public async recognize(
@@ -598,7 +598,7 @@ export class RecognizeApi {
598598
export class ScanApi {
599599
protected defaultHeaders: any = {
600600
'x-aspose-client': 'nodejs sdk',
601-
'x-aspose-client-version': '25.6.0',
601+
'x-aspose-client-version': '25.7.0',
602602
};
603603
protected _configuration: Configuration;
604604
private _client: HttpClient;
@@ -610,7 +610,7 @@ export class ScanApi {
610610

611611
/**
612612
*
613-
* @summary Scan barcode from file on server using GET requests with parameter in query string.
613+
* @summary Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead.
614614
* @param request ScanRequestWrapper
615615
*/
616616
public async scan(request: ScanRequestWrapper): Promise<{ response: HttpResponse; body: BarcodeResponseList }> {

src/models.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -780,7 +780,7 @@ export class GenerateMultipartRequestWrapper {
780780
// RecognizeApi
781781

782782
/**
783-
* Recognize barcode from file on server using GET requests with parameters in route and query string.
783+
* Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead.
784784
*/
785785
export class RecognizeRequestWrapper {
786786
/**
@@ -863,7 +863,7 @@ export class RecognizeMultipartRequestWrapper {
863863
// ScanApi
864864

865865
/**
866-
* Scan barcode from file on server using GET requests with parameter in query string.
866+
* Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead.
867867
*/
868868
export class ScanRequestWrapper {
869869
/**

0 commit comments

Comments
 (0)