Skip to content

Commit 6f0b0fe

Browse files
Ivan KamkinIvan Kamkin
authored andcommitted
Update version
1 parent 1d92d67 commit 6f0b0fe

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Dart test](https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dart/actions/workflows/dart.yml/badge.svg?branch=main)](https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dart/actions/workflows/dart.yml)
44

55
- API version: 4.0
6-
- SDK version: 4.25.6
6+
- SDK version: 4.25.7
77

88
## SDK and API Version Compatibility:
99

@@ -39,7 +39,7 @@ Add this dependency to your *pubspec.yaml*:
3939

4040
```yaml
4141
dependencies:
42-
aspose_barcode_cloud: 4.25.6
42+
aspose_barcode_cloud: 4.25.7
4343
```
4444
4545
## Sample usage
@@ -115,10 +115,10 @@ Class | Method | HTTP request | Description
115115
*GenerateApi* | [**generate**](doc/api/GenerateApi.md#generate) | **GET** /barcode/generate/{barcodeType} | Generate barcode using GET request with parameters in route and query string.
116116
*GenerateApi* | [**generateBody**](doc/api/GenerateApi.md#generatebody) | **POST** /barcode/generate-body | Generate barcode using POST request with parameters in body in json or xml format.
117117
*GenerateApi* | [**generateMultipart**](doc/api/GenerateApi.md#generatemultipart) | **POST** /barcode/generate-multipart | Generate barcode using POST request with parameters in multipart form.
118-
*RecognizeApi* | [**recognize**](doc/api/RecognizeApi.md#recognize) | **GET** /barcode/recognize | Recognize barcode from file on server using GET requests with parameters in route and query string.
118+
*RecognizeApi* | [**recognize**](doc/api/RecognizeApi.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.
119119
*RecognizeApi* | [**recognizeBase64**](doc/api/RecognizeApi.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.
120120
*RecognizeApi* | [**recognizeMultipart**](doc/api/RecognizeApi.md#recognizemultipart) | **POST** /barcode/recognize-multipart | Recognize barcode from file in request body using POST requests with parameters in multipart form.
121-
*ScanApi* | [**scan**](doc/api/ScanApi.md#scan) | **GET** /barcode/scan | Scan barcode from file on server using GET requests with parameter in query string.
121+
*ScanApi* | [**scan**](doc/api/ScanApi.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.
122122
*ScanApi* | [**scanBase64**](doc/api/ScanApi.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.
123123
*ScanApi* | [**scanMultipart**](doc/api/ScanApi.md#scanmultipart) | **POST** /barcode/scan-multipart | Scan barcode from file in request body using POST requests with parameter in multipart form.
124124

doc/api/RecognizeApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ All URIs are relative to *https://api.aspose.cloud/v4.0*
99

1010
Method | HTTP request | Description
1111
------ | ------------ | -----------
12-
[**recognize**](RecognizeApi.md#recognize) | **GET** /barcode/recognize | Recognize barcode from file on server using GET requests with parameters in route and query string.
12+
[**recognize**](RecognizeApi.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.
1313
[**recognizeBase64**](RecognizeApi.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.
1414
[**recognizeMultipart**](RecognizeApi.md#recognizeMultipart) | **POST** /barcode/recognize-multipart | Recognize barcode from file in request body using POST requests with parameters in multipart form.
1515

1616

1717
# **recognize**
1818
> BarcodeResponseList recognize(barcodeType, fileUrl, recognitionMode, recognitionImageKind)
1919
20-
Recognize barcode from file on server using GET requests with parameters in route and query string.
20+
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.
2121

2222
### Parameters
2323

doc/api/ScanApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ All URIs are relative to *https://api.aspose.cloud/v4.0*
99

1010
Method | HTTP request | Description
1111
------ | ------------ | -----------
12-
[**scan**](ScanApi.md#scan) | **GET** /barcode/scan | Scan barcode from file on server using GET requests with parameter in query string.
12+
[**scan**](ScanApi.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.
1313
[**scanBase64**](ScanApi.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.
1414
[**scanMultipart**](ScanApi.md#scanMultipart) | **POST** /barcode/scan-multipart | Scan barcode from file in request body using POST requests with parameter in multipart form.
1515

1616

1717
# **scan**
1818
> BarcodeResponseList scan(fileUrl)
1919
20-
Scan barcode from file on server using GET requests with parameter in query string.
20+
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.
2121

2222
### Parameters
2323

lib/src/api/recognize_api.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class RecognizeApi {
1414
final ApiClient _apiClient;
1515

1616
///
17-
/// Recognize barcode from file on server using GET requests with parameters in route and query string.
17+
/// 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.
1818
///
1919
Future<BarcodeResponseList> recognize(
2020
DecodeBarcodeType barcodeType, String fileUrl,

lib/src/api/scan_api.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class ScanApi {
1414
final ApiClient _apiClient;
1515

1616
///
17-
/// Scan barcode from file on server using GET requests with parameter in query string.
17+
/// 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 &#x60;scan-body&#x60; or &#x60;scan-multipart&#x60; endpoints instead.
1818
///
1919
Future<BarcodeResponseList> scan(String fileUrl) async {
2020
// ignore: prefer_final_locals

lib/src/api_client.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import 'api_helper.dart';
1010
import 'auth/authentication.dart';
1111

1212
/// Current SDK Version
13-
const SDK_VERSION = "4.25.6";
13+
const SDK_VERSION = "4.25.7";
1414

1515
/// ApiClient is responsible for making HTTP requests to the API.
1616
class ApiClient {

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: aspose_barcode_cloud
22
description: This SDK allows you to work with Aspose.BarCode for Cloud REST APIs in your Dart or Flutter applications quickly and easily
3-
version: 4.25.6
3+
version: 4.25.7
44
homepage: https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dart
55

66
platforms:

0 commit comments

Comments
 (0)