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 +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/faceid/v20180301/models.js +6 -2
- package/tencentcloud/index.js +1 -0
- package/tencentcloud/tdmysql/index.js +3 -0
- package/tencentcloud/tdmysql/v20211122/index.js +4 -0
- package/tencentcloud/tdmysql/v20211122/models.js +2476 -0
- package/tencentcloud/tdmysql/v20211122/tdmysql_client.js +313 -0
- package/tencentcloud/wedata/v20250806/models.js +161 -17
- package/tencentcloud/wedata/v20250806/wedata_client.js +21 -7
package/package.json
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
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:
|
|
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:
|
|
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
|
*/
|
package/tencentcloud/index.js
CHANGED