tencentcloud-sdk-nodejs-intl-en 3.0.1097 → 3.0.1098

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-intl-en",
3
- "version": "3.0.1097",
3
+ "version": "3.0.1098",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.1097";
1
+ const sdkVersion = "3.0.1098";
2
2
  module.exports = sdkVersion
@@ -3585,6 +3585,12 @@ class RecognizeThaiIDCardOCRResponse extends AbstractModel {
3585
3585
  */
3586
3586
  this.Address = null;
3587
3587
 
3588
+ /**
3589
+ * LaserID in the back of the card.
3590
+ * @type {string || null}
3591
+ */
3592
+ this.LaserID = null;
3593
+
3588
3594
  /**
3589
3595
  * Identity photo
3590
3596
  * @type {string || null}
@@ -3639,6 +3645,7 @@ class RecognizeThaiIDCardOCRResponse extends AbstractModel {
3639
3645
  this.Religion = 'Religion' in params ? params.Religion : null;
3640
3646
  this.SerialNumber = 'SerialNumber' in params ? params.SerialNumber : null;
3641
3647
  this.Address = 'Address' in params ? params.Address : null;
3648
+ this.LaserID = 'LaserID' in params ? params.LaserID : null;
3642
3649
  this.PortraitImage = 'PortraitImage' in params ? params.PortraitImage : null;
3643
3650
  this.WarnCardInfos = 'WarnCardInfos' in params ? params.WarnCardInfos : null;
3644
3651
  this.AdvancedInfo = 'AdvancedInfo' in params ? params.AdvancedInfo : null;
@@ -5063,6 +5070,12 @@ Either `ImageUrl` or `ImageBase64` of the image must be provided. If both are pr
5063
5070
  */
5064
5071
  this.ImageBase64 = null;
5065
5072
 
5073
+ /**
5074
+ * Base64 value of the image on the back of the card. Supported image formats: PNG, JPG, JPEG. GIF format is not supported yet. Supported image size: The downloaded image does not exceed 7M after Base64 encoding. The image download takes no more than 3 seconds. One of ImageUrl and ImageBase64 of the image must be provided. If both are provided, only ImageUrl will be used.
5075
+ * @type {string || null}
5076
+ */
5077
+ this.BackImageBase64 = null;
5078
+
5066
5079
  /**
5067
5080
  * The URL of the image. The image cannot exceed 7 MB after being Base64-encoded. A resolution above 500 x 800 is recommended. PNG, JPG, JPEG, and BMP formats are supported. It is recommended that the card part occupy more than 2/3 area of the image.
5068
5081
  We recommend that you store the image in Tencent Cloud for higher download speed and stability.
@@ -5070,6 +5083,12 @@ We recommend that you store the image in Tencent Cloud for higher download speed
5070
5083
  */
5071
5084
  this.ImageUrl = null;
5072
5085
 
5086
+ /**
5087
+ * The URL address of the image on the back of the card. Supported image formats: PNG, JPG, JPEG. GIF format is not supported yet. Supported image size: The downloaded image does not exceed 7M after Base64 encoding. The image download takes no more than 3 seconds. Storing images in Tencent Cloud URLs can ensure higher download speed and stability. It is recommended that images be stored in Tencent Cloud. The URL speed and stability of non-Tencent cloud storage may be affected to a certain extent.
5088
+ * @type {string || null}
5089
+ */
5090
+ this.BackImageUrl = null;
5091
+
5073
5092
  /**
5074
5093
  * Whether to crop the profile photo. The default value is `false`, meaning not to return the Base64-encoded value of the profile photo on the Thai identity card.
5075
5094
  When this parameter is set to `true`, the Base64-encoded value of the profile photo on the Thai identity card after rotation correction is returned.
@@ -5087,7 +5106,9 @@ When this parameter is set to `true`, the Base64-encoded value of the profile ph
5087
5106
  return;
5088
5107
  }
5089
5108
  this.ImageBase64 = 'ImageBase64' in params ? params.ImageBase64 : null;
5109
+ this.BackImageBase64 = 'BackImageBase64' in params ? params.BackImageBase64 : null;
5090
5110
  this.ImageUrl = 'ImageUrl' in params ? params.ImageUrl : null;
5111
+ this.BackImageUrl = 'BackImageUrl' in params ? params.BackImageUrl : null;
5091
5112
  this.CropPortrait = 'CropPortrait' in params ? params.CropPortrait : null;
5092
5113
 
5093
5114
  }
@@ -11056,7 +11056,7 @@ class RuleCondition extends AbstractModel {
11056
11056
 
11057
11057
  /**
11058
11058
  * Operator. Valid values:
11059
- <li>`equals`: Equals</li>
11059
+ <li>`equal`: Equal</li>
11060
11060
  <li>`notEquals`: Does not equal</li>
11061
11061
  <li>`exist`: Exists</li>
11062
11062
  <li>`notexist`: Does not exist</li>