tencentcloud-sdk-nodejs-intl-en 3.0.1321 → 3.0.1323

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.1321",
3
+ "version": "3.0.1323",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.1321";
1
+ const sdkVersion = "3.0.1323";
2
2
  module.exports = sdkVersion
@@ -4542,14 +4542,18 @@ class GetFaceIdResultIntlResponse extends AbstractModel {
4542
4542
  /**
4543
4543
  * The return code of the verification result.
4544
4544
  0: Succeeded.
4545
- 1001: System error.
4545
+ 1001: Failed to call the liveness engine.
4546
+ 1002:Suspected spoofed recording.
4546
4547
  1004: Selfie verification comparison failed.
4548
+ 1005:Liveness detection failed.
4549
+ 1201:Lighting is too dark or overexposed.
4547
4550
  2004: The image passed in is too large or too small.
4548
- 2012: Several faces were detected.
4551
+ 2012: Multiple faces detected.
4549
4552
  2013: No face was detected, or the face detected was incomplete.
4550
4553
  2014: The image resolution is too low or the quality does not meet the requirements.
4551
4554
  2015: Face comparison failed.
4552
4555
  2016: The similarity did not reach the standard passing threshold.
4556
+ 2017:Facial occlusion detected.
4553
4557
  -999: The verification process wasn't finished.
4554
4558
  * @type {string || null}
4555
4559
  */
@@ -5757,15 +5761,19 @@ class CompareResult extends AbstractModel {
5757
5761
 
5758
5762
  /**
5759
5763
  * The final verification result code.
5760
- 0: Success.
5761
- 1001: Failed to call the liveness detection engine.
5764
+ 0: Succeeded.
5765
+ 1001: Failed to call the liveness engine.
5766
+ 1002: Suspected spoofed recording.
5762
5767
  1004: Face detection failed.
5763
- 2004: The uploaded face image is too large or too small.
5764
- 2012: The face is not fully exposed.
5765
- 2013: No face is detected.
5766
- 2014: The resolution of the uploaded image is too low . Please upload a new one.
5768
+ 1005: Liveness detection failed.
5769
+ 1201: Lighting is too dark or overexposed.
5770
+ 2004: The image passed in is too large or too small.
5771
+ 2012: Multiple faces detected.
5772
+ 2013: No face was detected, or the face detected was incomplete.
5773
+ 2014: The image resolution is too low or the quality does not meet the requirements.
5767
5774
  2015: Face comparison failed.
5768
- 2016: The similarity did not reach the passing standard.
5775
+ 2016: The similarity did not reach the standard passing threshold.
5776
+ 2017: Facial occlusion detected.
5769
5777
  * @type {string || null}
5770
5778
  */
5771
5779
  this.ErrorCode = null;
@@ -5798,7 +5806,11 @@ class CompareResult extends AbstractModel {
5798
5806
  * The liveness detection result code.
5799
5807
  0: Success.
5800
5808
  1001: Failed to call the liveness detection engine.
5809
+ 1002: Suspected spoofed recording.
5801
5810
  1004: Face detection failed.
5811
+ 1005: Liveness detection failed.
5812
+ 1201: Lighting is too dark or overexposed.
5813
+
5802
5814
  * @type {string || null}
5803
5815
  */
5804
5816
  this.LiveErrorCode = null;
@@ -5825,12 +5837,13 @@ Note: This field may return null, indicating that no valid value can be obtained
5825
5837
  /**
5826
5838
  * The face comparison result code.
5827
5839
  0: Success.
5828
- 2004: The uploaded face image is too large or too small.
5829
- 2012: The face is not fully exposed.
5830
- 2013: No face is detected.
5831
- 2014: The resolution of the uploaded image is too low . Please upload a new one.
5840
+ 2004: The image passed in is too large or too small.
5841
+ 2012: Multiple faces detected.
5842
+ 2013: No face was detected, or the face detected was incomplete.
5843
+ 2014: The image resolution is too low or the quality does not meet the requirements.
5832
5844
  2015: Face comparison failed.
5833
- 2016: The similarity did not reach the passing standard.
5845
+ 2016: The similarity did not reach the standard passing threshold.
5846
+ 2017: Facial occlusion detected.
5834
5847
  Note: This field may return null, indicating that no valid value can be obtained.
5835
5848
  * @type {string || null}
5836
5849
  */
@@ -116,6 +116,7 @@ module.exports = {
116
116
  tcss: require("./tcss"),
117
117
  tdid: require("./tdid"),
118
118
  tdmq: require("./tdmq"),
119
+ tdmysql: require("./tdmysql"),
119
120
  tem: require("./tem"),
120
121
  teo: require("./teo"),
121
122
  tione: require("./tione"),
@@ -0,0 +1,3 @@
1
+ module.exports = {
2
+ v20211122: require("./v20211122"),
3
+ };
@@ -0,0 +1,4 @@
1
+ module.exports = {
2
+ Client: require("./tdmysql_client"),
3
+ Models: require("./models"),
4
+ };