tencentcloud-sdk-nodejs-faceid 4.1.167 → 4.1.180

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-faceid",
3
- "version": "4.1.167",
3
+ "version": "4.1.180",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -2414,15 +2414,15 @@ export interface DetectInfoText {
2414
2414
  */
2415
2415
  export interface ImageRecognitionResponse {
2416
2416
  /**
2417
- * 相似度,取值范围 [0.00, 100.00]。推荐相似度大于等于70时可判断为同一人,可根据具体场景自行调整阈值(阈值70的误通过率为千分之一,阈值80的误通过率是万分之一)
2417
+ * <p>相似度,取值范围 [0.00, 100.00]。推荐相似度大于等于70时可判断为同一人,可根据具体场景自行调整阈值(阈值70的误通过率为千分之一,阈值80的误通过率是万分之一)</p>
2418
2418
  */
2419
2419
  Sim?: number;
2420
2420
  /**
2421
- * 业务错误码,成功情况返回Success, 错误情况请参考下方错误码 列表中FailedOperation部分
2421
+ * <p>业务错误码,成功情况返回Success, 错误情况请参考下方错误码 列表中FailedOperation部分</p>
2422
2422
  */
2423
2423
  Result?: string;
2424
2424
  /**
2425
- * 业务结果描述。
2425
+ * <p>业务结果描述。</p>
2426
2426
  */
2427
2427
  Description?: string;
2428
2428
  /**
@@ -3139,25 +3139,23 @@ export interface PhoneVerificationCTCCRequest {
3139
3139
  */
3140
3140
  export interface ImageRecognitionRequest {
3141
3141
  /**
3142
- * 身份证号
3142
+ * <p>身份证号</p>
3143
3143
  */
3144
3144
  IdCard: string;
3145
3145
  /**
3146
- * 姓名。中文请使用UTF-8编码。
3146
+ * <p>姓名。中文请使用UTF-8编码。</p>
3147
3147
  */
3148
3148
  Name: string;
3149
3149
  /**
3150
- * 用于人脸比对的照片,图片的Base64值;
3151
- Base64编码后的图片数据大小不超过3M,仅支持jpg、png格式。
3152
- 请使用标准的Base64编码方式(带=补位),编码规范参考RFC4648。
3150
+ * <p>用于人脸比对的照片,图片的Base64值;<br>Base64编码后的图片数据大小不超过3M,仅支持jpg、png格式。<br>请使用标准的Base64编码方式(带=补位),编码规范参考RFC4648。</p>
3153
3151
  */
3154
3152
  ImageBase64: string;
3155
3153
  /**
3156
- * 本接口不需要传递此参数。
3154
+ * <p>本接口不需要传递此参数。</p>
3157
3155
  */
3158
3156
  Optional?: string;
3159
3157
  /**
3160
- * 敏感数据加密信息。对传入信息(姓名、身份证号)有加密需求的用户可使用此参数,详情请点击左侧链接。
3158
+ * <p>敏感数据加密信息。对传入信息(姓名、身份证号)有加密需求的用户可使用此参数,详情请点击左侧链接。</p>
3161
3159
  */
3162
3160
  Encryption?: Encryption;
3163
3161
  }