tencentcloud-sdk-nodejs-ocr 4.1.300 → 4.1.301
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tencentcloud-sdk-nodejs-ocr",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.301",
|
|
4
4
|
"description": "腾讯云 API NODEJS SDK",
|
|
5
5
|
"main": "./tencentcloud/index.js",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -49,7 +49,6 @@
|
|
|
49
49
|
"@types/json-bigint": "^1.0.1",
|
|
50
50
|
"@types/node": "^18.0.0",
|
|
51
51
|
"@types/node-fetch": "^2.5.7",
|
|
52
|
-
"@types/uuid": "^9.0.8",
|
|
53
52
|
"@typescript-eslint/eslint-plugin": "^2.34.0",
|
|
54
53
|
"@typescript-eslint/parser": "^2.34.0",
|
|
55
54
|
"babel-eslint": "^10.0.2",
|
|
@@ -2824,9 +2824,13 @@ export interface CropEnhanceImageOCRResponse {
|
|
|
2824
2824
|
*/
|
|
2825
2825
|
CroppedHeight?: number;
|
|
2826
2826
|
/**
|
|
2827
|
-
* <p>图像处理后的jpg图片,base64格式</p>
|
|
2827
|
+
* <p>图像处理后的jpg图片,base64格式</p><p><strong><p><code>该字段后续不返回内容,请使用CroppedImageUrl</code></p></strong></p>
|
|
2828
2828
|
*/
|
|
2829
2829
|
CroppedImage?: string;
|
|
2830
|
+
/**
|
|
2831
|
+
* <p>图像处理后的jpg图片</p><p>参数格式:url格式</p>
|
|
2832
|
+
*/
|
|
2833
|
+
CroppedImageUrl?: string;
|
|
2830
2834
|
/**
|
|
2831
2835
|
* <p>切图区域的4个角点坐标, 是个长度为8的数组<br>[0,1,2,3,4,5,6,7]</p><p>(0,1) 左上角坐标<br>(2,3) 右上角坐标<br>(4,5) 右下角坐标<br>(6,7) 左下角坐标</p>
|
|
2832
2836
|
*/
|