You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GenerateApi | [**generate**](docs/index.md#generate) | **GET** /barcode/generate/{barcodeType} | Generate barcode using GET request with parameters in route and query string.
121
121
GenerateApi | [**generateBody**](docs/index.md#generatebody) | **POST** /barcode/generate-body | Generate barcode using POST request with parameters in body in json or xml format.
122
122
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.
124
124
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.
125
125
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.
127
127
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.
128
128
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.
Copy file name to clipboardExpand all lines: docs/index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,7 @@ Buffer
88
88
89
89
### recognize
90
90
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.
@@ -156,7 +156,7 @@ Name | Type | Description | Notes
156
156
157
157
### scan
158
158
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.
Copy file name to clipboardExpand all lines: src/api.ts
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -203,7 +203,7 @@ let typeMap: { [index: string]: any } = {
203
203
exportclassGenerateApi{
204
204
protecteddefaultHeaders: any={
205
205
'x-aspose-client': 'nodejs sdk',
206
-
'x-aspose-client-version': '25.6.0',
206
+
'x-aspose-client-version': '25.7.0',
207
207
};
208
208
protected_configuration: Configuration;
209
209
private_client: HttpClient;
@@ -423,7 +423,7 @@ export class GenerateApi {
423
423
exportclassRecognizeApi{
424
424
protecteddefaultHeaders: any={
425
425
'x-aspose-client': 'nodejs sdk',
426
-
'x-aspose-client-version': '25.6.0',
426
+
'x-aspose-client-version': '25.7.0',
427
427
};
428
428
protected_configuration: Configuration;
429
429
private_client: HttpClient;
@@ -435,7 +435,7 @@ export class RecognizeApi {
435
435
436
436
/**
437
437
*
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.
439
439
* @param request RecognizeRequestWrapper
440
440
*/
441
441
publicasyncrecognize(
@@ -598,7 +598,7 @@ export class RecognizeApi {
598
598
exportclassScanApi{
599
599
protecteddefaultHeaders: any={
600
600
'x-aspose-client': 'nodejs sdk',
601
-
'x-aspose-client-version': '25.6.0',
601
+
'x-aspose-client-version': '25.7.0',
602
602
};
603
603
protected_configuration: Configuration;
604
604
private_client: HttpClient;
@@ -610,7 +610,7 @@ export class ScanApi {
610
610
611
611
/**
612
612
*
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.
Copy file name to clipboardExpand all lines: src/models.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -780,7 +780,7 @@ export class GenerateMultipartRequestWrapper {
780
780
// RecognizeApi
781
781
782
782
/**
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.
784
784
*/
785
785
exportclassRecognizeRequestWrapper{
786
786
/**
@@ -863,7 +863,7 @@ export class RecognizeMultipartRequestWrapper {
863
863
// ScanApi
864
864
865
865
/**
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.
0 commit comments