tencentcloud-sdk-nodejs-ocr 4.1.258 → 4.1.260

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.258",
3
+ "version": "4.1.260",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -726,8 +726,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
726
726
  */
727
727
  VerifyOfdVatInvoiceOCR(req: VerifyOfdVatInvoiceOCRRequest, cb?: (error: string, rep: VerifyOfdVatInvoiceOCRResponse) => void): Promise<VerifyOfdVatInvoiceOCRResponse>;
728
728
  /**
729
- * 提供比对核验企业名称、统一社会信用代码、法人姓名一致性的服务,助力快速核验企业资质。
730
- 注意:核验准确率在99%以上,存在个别特殊情况下核验结果不准确,请选用前知悉。
729
+ * 提供比对核验企业名称、统一社会信用代码、法人姓名(可选)一致性的服务,助力快速核验企业资质。
730
+ 注意:
731
+ 存在个别特殊情况下核验结果不准确,请选用前知悉;
732
+ 按周更新企业信息变更情况,如遇到未及时更新的情况,可联系在线客服转产品团队进行人工处理。
731
733
  */
732
734
  VerifyBizLicenseEnterprise3(req: VerifyBizLicenseEnterprise3Request, cb?: (error: string, rep: VerifyBizLicenseEnterprise3Response) => void): Promise<VerifyBizLicenseEnterprise3Response>;
733
735
  /**
@@ -894,8 +894,10 @@ class Client extends TencentCloudCommon.AbstractClient {
894
894
  return this.request("VerifyOfdVatInvoiceOCR", req, cb);
895
895
  }
896
896
  /**
897
- * 提供比对核验企业名称、统一社会信用代码、法人姓名一致性的服务,助力快速核验企业资质。
898
- 注意:核验准确率在99%以上,存在个别特殊情况下核验结果不准确,请选用前知悉。
897
+ * 提供比对核验企业名称、统一社会信用代码、法人姓名(可选)一致性的服务,助力快速核验企业资质。
898
+ 注意:
899
+ 存在个别特殊情况下核验结果不准确,请选用前知悉;
900
+ 按周更新企业信息变更情况,如遇到未及时更新的情况,可联系在线客服转产品团队进行人工处理。
899
901
  */
900
902
  async VerifyBizLicenseEnterprise3(req, cb) {
901
903
  return this.request("VerifyBizLicenseEnterprise3", req, cb);
@@ -1885,11 +1885,11 @@ export interface TextEduPaper {
1885
1885
  */
1886
1886
  export interface QrcodeOCRResponse {
1887
1887
  /**
1888
- * 二维码/条形码识别结果信息,具体内容请点击左侧链接。
1888
+ * <p>二维码/条形码识别结果信息,具体内容请点击左侧链接。</p>
1889
1889
  */
1890
1890
  CodeResults?: Array<QrcodeResultsInfo>;
1891
1891
  /**
1892
- * 图片大小,具体内容请点击左侧链接。
1892
+ * <p>图片大小,具体内容请点击左侧链接。</p>
1893
1893
  */
1894
1894
  ImgSize?: QrcodeImgSize;
1895
1895
  /**
@@ -3147,11 +3147,11 @@ export interface BusInvoice {
3147
3147
  */
3148
3148
  export interface QrcodeOCRRequest {
3149
3149
  /**
3150
- * 图片的 Base64 值。要求图片经Base64编码后不超过 10M,支持PNG、JPG、JPEG格式。图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl
3150
+ * <p>图片的 Base64 值。要求图片经Base64编码后不超过 10M,支持PNG、JPG、JPEG、PDF格式。图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。</p>
3151
3151
  */
3152
3152
  ImageBase64?: string;
3153
3153
  /**
3154
- * 图片的 Url 地址。要求图片经Base64编码后不超过 10M,支持PNG、JPG、JPEG格式。建议图片存储于腾讯云,可保障更高的下载速度和稳定性。
3154
+ * <p>图片的 Url 地址。要求图片经Base64编码后不超过 10M,支持PNG、JPG、JPEG、PDF格式。建议图片存储于腾讯云,可保障更高的下载速度和稳定性。</p>
3155
3155
  */
3156
3156
  ImageUrl?: string;
3157
3157
  }