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

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.1322",
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.1322";
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
  */
@@ -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
+ };