tencentcloud-sdk-nodejs-intl-en 3.0.1016 → 3.0.1017

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.1016",
3
+ "version": "3.0.1017",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.1016";
1
+ const sdkVersion = "3.0.1017";
2
2
  module.exports = sdkVersion
@@ -3082,6 +3082,17 @@ Example value: 3
3082
3082
  7.PhilippinesSSSID: Philippines SSSID card
3083
3083
  8.PhilippinesUMID: Philippines UMID card
3084
3084
  9.InternationalIDPassport: ID cards of Hong Kong, Macao and Taiwan (China), and international passport.
3085
+ 10.IndonesiaDrivingLicense:Indonesia driving license
3086
+ 11.ThailandIDCard: Thailand ID card
3087
+ 12.ThailandDrivingLicense: Thailand driving license
3088
+ 13.MLDrivingLicense: Malaysia driving license
3089
+ 14.SingaporeIDCard: Singapore ID card
3090
+ 15.SingaporeDrivingLicense: Singapore driving license
3091
+ 16.JapanIDCard: Japan ID card
3092
+ 17.JapanDrivingLicense: Japan driving license
3093
+ 18.PhilippinesIDCard: Philippines ID card
3094
+ 19.MainlandIDCard: Mainland ID card
3095
+ 20.MacaoIDCard: Macao ID card
3085
3096
  Example: HKIDCard
3086
3097
  * @type {string || null}
3087
3098
  */
@@ -5127,6 +5138,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
5127
5138
  */
5128
5139
  this.CardInfo = null;
5129
5140
 
5141
+ /**
5142
+ * OCR result of the ID card.
5143
+ * @type {NormalCardInfo || null}
5144
+ */
5145
+ this.NormalCardInfo = null;
5146
+
5130
5147
  /**
5131
5148
  * The request id
5132
5149
  * @type {string || null}
@@ -5162,6 +5179,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
5162
5179
  obj.deserialize(params.CardInfo)
5163
5180
  this.CardInfo = obj;
5164
5181
  }
5182
+
5183
+ if (params.NormalCardInfo) {
5184
+ let obj = new NormalCardInfo();
5185
+ obj.deserialize(params.NormalCardInfo)
5186
+ this.NormalCardInfo = obj;
5187
+ }
5165
5188
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
5166
5189
  this.CardCutImageBase64 = 'CardCutImageBase64' in params ? params.CardCutImageBase64 : null;
5167
5190
  this.CardBackCutImageBase64 = 'CardBackCutImageBase64' in params ? params.CardBackCutImageBase64 : null;