tencentcloud-sdk-nodejs-intl-en 3.0.1229 → 3.0.1230
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 +21 -2
- package/tencentcloud/mps/v20190612/models.js +601 -112
- package/tencentcloud/mps/v20190612/mps_client.js +14 -7
- package/tencentcloud/sqlserver/v20180328/models.js +32 -16
- package/tencentcloud/teo/v20220901/models.js +5305 -1135
- package/tencentcloud/teo/v20220901/teo_client.js +672 -157
package/package.json
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1230";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -2108,11 +2108,17 @@ class GetFaceIdResultIntlResponse extends AbstractModel {
|
|
|
2108
2108
|
this.BestFrame = null;
|
|
2109
2109
|
|
|
2110
2110
|
/**
|
|
2111
|
-
* The video file (Base64) for verification.
|
|
2111
|
+
* The video file (Base64) for verification.Used for verification, contains specific color reflection effects.
|
|
2112
2112
|
* @type {string || null}
|
|
2113
2113
|
*/
|
|
2114
2114
|
this.Video = null;
|
|
2115
2115
|
|
|
2116
|
+
/**
|
|
2117
|
+
* Records the specific action performed by the user, used for AI Face Shield analysis.
|
|
2118
|
+
* @type {string || null}
|
|
2119
|
+
*/
|
|
2120
|
+
this.ActionVideo = null;
|
|
2121
|
+
|
|
2116
2122
|
/**
|
|
2117
2123
|
* The similarity, with a value range of 0-100. A greater value indicates higher similarity. This parameter is returned only in the `compare` (selfie verification) mode.
|
|
2118
2124
|
Note: This field may return `null`, indicating that no valid values can be obtained.
|
|
@@ -2146,6 +2152,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
2146
2152
|
this.Description = 'Description' in params ? params.Description : null;
|
|
2147
2153
|
this.BestFrame = 'BestFrame' in params ? params.BestFrame : null;
|
|
2148
2154
|
this.Video = 'Video' in params ? params.Video : null;
|
|
2155
|
+
this.ActionVideo = 'ActionVideo' in params ? params.ActionVideo : null;
|
|
2149
2156
|
this.Similarity = 'Similarity' in params ? params.Similarity : null;
|
|
2150
2157
|
this.Extra = 'Extra' in params ? params.Extra : null;
|
|
2151
2158
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
@@ -6210,11 +6217,17 @@ class CompareResult extends AbstractModel {
|
|
|
6210
6217
|
this.LiveData = null;
|
|
6211
6218
|
|
|
6212
6219
|
/**
|
|
6213
|
-
* The download URL of the video used for verification, which is valid for 10 minutes.
|
|
6220
|
+
* The download URL of the video used for verification, which contains specific color reflection effects, is valid for 10 minutes.
|
|
6214
6221
|
* @type {FileInfo || null}
|
|
6215
6222
|
*/
|
|
6216
6223
|
this.LiveVideo = null;
|
|
6217
6224
|
|
|
6225
|
+
/**
|
|
6226
|
+
* Records the specific action performed by the user, used for AI Face Shield analysis.
|
|
6227
|
+
* @type {FileInfo || null}
|
|
6228
|
+
*/
|
|
6229
|
+
this.ActionVideo = null;
|
|
6230
|
+
|
|
6218
6231
|
/**
|
|
6219
6232
|
* The liveness detection result code.
|
|
6220
6233
|
0: Success.
|
|
@@ -6313,6 +6326,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
6313
6326
|
obj.deserialize(params.LiveVideo)
|
|
6314
6327
|
this.LiveVideo = obj;
|
|
6315
6328
|
}
|
|
6329
|
+
|
|
6330
|
+
if (params.ActionVideo) {
|
|
6331
|
+
let obj = new FileInfo();
|
|
6332
|
+
obj.deserialize(params.ActionVideo)
|
|
6333
|
+
this.ActionVideo = obj;
|
|
6334
|
+
}
|
|
6316
6335
|
this.LiveErrorCode = 'LiveErrorCode' in params ? params.LiveErrorCode : null;
|
|
6317
6336
|
this.LiveErrorMsg = 'LiveErrorMsg' in params ? params.LiveErrorMsg : null;
|
|
6318
6337
|
|