tencentcloud-sdk-nodejs-intl-en 3.0.1289 → 3.0.1290
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/dbbrain/index.js +1 -1
- package/tencentcloud/dts/index.js +1 -1
- package/tencentcloud/faceid/v20180301/models.js +9 -0
- package/tencentcloud/mongodb/v20190725/models.js +1256 -188
- package/tencentcloud/mongodb/v20190725/mongodb_client.js +170 -49
- package/tencentcloud/mps/v20190612/models.js +1593 -431
- package/tencentcloud/mps/v20190612/mps_client.js +170 -48
- package/tencentcloud/organization/index.js +1 -1
- package/tencentcloud/sms/index.js +1 -1
- package/tencentcloud/teo/index.js +1 -1
- package/tencentcloud/tke/index.js +1 -1
package/package.json
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1290";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -3648,6 +3648,14 @@ The default value is blink. The different action types passed in this parameter
|
|
|
3648
3648
|
*/
|
|
3649
3649
|
this.SelectedWarningCodes = null;
|
|
3650
3650
|
|
|
3651
|
+
/**
|
|
3652
|
+
* Whether expired identity documents are permitted to proceed to the liveness detection process. This parameter only takes effect when the document type is Hong Kong Identity Card (HKID).
|
|
3653
|
+
true (default value): Expired HKID is allowed to enter the liveness process.
|
|
3654
|
+
false : Expired HKID is rejected and cannot enter the liveness process.
|
|
3655
|
+
* @type {boolean || null}
|
|
3656
|
+
*/
|
|
3657
|
+
this.AllowExpiredDocument = null;
|
|
3658
|
+
|
|
3651
3659
|
}
|
|
3652
3660
|
|
|
3653
3661
|
/**
|
|
@@ -3672,6 +3680,7 @@ The default value is blink. The different action types passed in this parameter
|
|
|
3672
3680
|
this.LivenessRetryLimit = 'LivenessRetryLimit' in params ? params.LivenessRetryLimit : null;
|
|
3673
3681
|
this.LivenessTimeout = 'LivenessTimeout' in params ? params.LivenessTimeout : null;
|
|
3674
3682
|
this.SelectedWarningCodes = 'SelectedWarningCodes' in params ? params.SelectedWarningCodes : null;
|
|
3683
|
+
this.AllowExpiredDocument = 'AllowExpiredDocument' in params ? params.AllowExpiredDocument : null;
|
|
3675
3684
|
|
|
3676
3685
|
}
|
|
3677
3686
|
}
|