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 +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/faceid/v20180301/models.js +27 -14
- 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 +2207 -0
- package/tencentcloud/tdmysql/v20211122/tdmysql_client.js +267 -0
- package/tencentcloud/vod/v20180717/models.js +532 -337
- package/tencentcloud/vod/v20180717/vod_client.js +81 -42
- 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.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:
|
|
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
|
*/
|
|
@@ -5757,15 +5761,19 @@ class CompareResult extends AbstractModel {
|
|
|
5757
5761
|
|
|
5758
5762
|
/**
|
|
5759
5763
|
* The final verification result code.
|
|
5760
|
-
0:
|
|
5761
|
-
1001: Failed to call the liveness
|
|
5764
|
+
0: Succeeded.
|
|
5765
|
+
1001: Failed to call the liveness engine.
|
|
5766
|
+
1002: Suspected spoofed recording.
|
|
5762
5767
|
1004: Face detection failed.
|
|
5763
|
-
|
|
5764
|
-
|
|
5765
|
-
|
|
5766
|
-
|
|
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
|
|
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
|
|
5829
|
-
2012:
|
|
5830
|
-
2013: No face
|
|
5831
|
-
2014: The resolution
|
|
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
|
|
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
|
*/
|
package/tencentcloud/index.js
CHANGED