tencentcloud-sdk-nodejs-ocr 4.1.16 → 4.1.26
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
@@ -1821,13 +1821,19 @@ export interface SmartStructuralProRequest {
|
|
1821
1821
|
*/
|
1822
1822
|
ImageBase64?: string;
|
1823
1823
|
/**
|
1824
|
-
* 需要识别的PDF页面的对应页码,仅支持PDF单页识别,当上传文件为PDF且IsPdf参数值为true
|
1824
|
+
* 需要识别的PDF页面的对应页码,仅支持PDF单页识别,当上传文件为PDF且IsPdf参数值为true时有效,默认值为前3页。
|
1825
1825
|
*/
|
1826
1826
|
PdfPageNumber?: number;
|
1827
1827
|
/**
|
1828
1828
|
* 自定义结构化功能需返回的字段名称,例:若客户想新增返回姓名、性别两个字段的识别结果,则输入ItemNames=["姓名","性别"]
|
1829
1829
|
*/
|
1830
1830
|
ItemNames?: Array<string>;
|
1831
|
+
/**
|
1832
|
+
* true:仅输出自定义字段
|
1833
|
+
flase:输出默认字段+自定义字段
|
1834
|
+
默认true
|
1835
|
+
*/
|
1836
|
+
ItemNamesShowMode?: boolean;
|
1831
1837
|
/**
|
1832
1838
|
* 是否开启全文字段识别
|
1833
1839
|
*/
|
@@ -1849,6 +1855,7 @@ export interface SmartStructuralProRequest {
|
|
1849
1855
|
DispatchWeightNote -- 磅单发货单识别模板
|
1850
1856
|
ReceiptWeightNote -- 磅单收货单识别模板
|
1851
1857
|
ArticalRecognize -- 手写作文模版
|
1858
|
+
Table -- 表格模版
|
1852
1859
|
*/
|
1853
1860
|
ConfigId?: string;
|
1854
1861
|
/**
|