tencentcloud-sdk-nodejs-intl-en 3.0.776 → 3.0.778
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,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.778";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -46,6 +46,7 @@ const GetWebVerificationResultResponse = models.GetWebVerificationResultResponse
|
|
|
46
46
|
const FileInfo = models.FileInfo;
|
|
47
47
|
const ApplyLivenessTokenRequest = models.ApplyLivenessTokenRequest;
|
|
48
48
|
const GenerateReflectSequenceResponse = models.GenerateReflectSequenceResponse;
|
|
49
|
+
const WebVerificationConfigIntl = models.WebVerificationConfigIntl;
|
|
49
50
|
const LivenessCompareRequest = models.LivenessCompareRequest;
|
|
50
51
|
const GetFaceIdResultIntlResponse = models.GetFaceIdResultIntlResponse;
|
|
51
52
|
const GetWebVerificationResultIntlRequest = models.GetWebVerificationResultIntlRequest;
|
|
@@ -223,6 +223,12 @@ class ApplyWebVerificationBizTokenIntlResponse extends AbstractModel {
|
|
|
223
223
|
*/
|
|
224
224
|
this.BizToken = null;
|
|
225
225
|
|
|
226
|
+
/**
|
|
227
|
+
*
|
|
228
|
+
* @type {string || null}
|
|
229
|
+
*/
|
|
230
|
+
this.VerificationURL = null;
|
|
231
|
+
|
|
226
232
|
/**
|
|
227
233
|
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
228
234
|
* @type {string || null}
|
|
@@ -240,6 +246,7 @@ class ApplyWebVerificationBizTokenIntlResponse extends AbstractModel {
|
|
|
240
246
|
}
|
|
241
247
|
this.VerificationUrl = 'VerificationUrl' in params ? params.VerificationUrl : null;
|
|
242
248
|
this.BizToken = 'BizToken' in params ? params.BizToken : null;
|
|
249
|
+
this.VerificationURL = 'VerificationURL' in params ? params.VerificationURL : null;
|
|
243
250
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
244
251
|
|
|
245
252
|
}
|
|
@@ -433,6 +440,12 @@ After the verification process is completed, the `BizToken` of this process will
|
|
|
433
440
|
*/
|
|
434
441
|
this.Extra = null;
|
|
435
442
|
|
|
443
|
+
/**
|
|
444
|
+
* The parameter control the page configuration.
|
|
445
|
+
* @type {WebVerificationConfigIntl || null}
|
|
446
|
+
*/
|
|
447
|
+
this.Config = null;
|
|
448
|
+
|
|
436
449
|
}
|
|
437
450
|
|
|
438
451
|
/**
|
|
@@ -446,6 +459,12 @@ After the verification process is completed, the `BizToken` of this process will
|
|
|
446
459
|
this.RedirectURL = 'RedirectURL' in params ? params.RedirectURL : null;
|
|
447
460
|
this.Extra = 'Extra' in params ? params.Extra : null;
|
|
448
461
|
|
|
462
|
+
if (params.Config) {
|
|
463
|
+
let obj = new WebVerificationConfigIntl();
|
|
464
|
+
obj.deserialize(params.Config)
|
|
465
|
+
this.Config = obj;
|
|
466
|
+
}
|
|
467
|
+
|
|
449
468
|
}
|
|
450
469
|
}
|
|
451
470
|
|
|
@@ -1686,6 +1705,34 @@ class GenerateReflectSequenceResponse extends AbstractModel {
|
|
|
1686
1705
|
}
|
|
1687
1706
|
}
|
|
1688
1707
|
|
|
1708
|
+
/**
|
|
1709
|
+
*
|
|
1710
|
+
* @class
|
|
1711
|
+
*/
|
|
1712
|
+
class WebVerificationConfigIntl extends AbstractModel {
|
|
1713
|
+
constructor(){
|
|
1714
|
+
super();
|
|
1715
|
+
|
|
1716
|
+
/**
|
|
1717
|
+
* Whether to automatically redirect to `RedirectUrl` after successful verification. Default value: `false`.
|
|
1718
|
+
* @type {boolean || null}
|
|
1719
|
+
*/
|
|
1720
|
+
this.AutoSkip = null;
|
|
1721
|
+
|
|
1722
|
+
}
|
|
1723
|
+
|
|
1724
|
+
/**
|
|
1725
|
+
* @private
|
|
1726
|
+
*/
|
|
1727
|
+
deserialize(params) {
|
|
1728
|
+
if (!params) {
|
|
1729
|
+
return;
|
|
1730
|
+
}
|
|
1731
|
+
this.AutoSkip = 'AutoSkip' in params ? params.AutoSkip : null;
|
|
1732
|
+
|
|
1733
|
+
}
|
|
1734
|
+
}
|
|
1735
|
+
|
|
1689
1736
|
/**
|
|
1690
1737
|
* LivenessCompare request structure.
|
|
1691
1738
|
* @class
|
|
@@ -2087,6 +2134,7 @@ module.exports = {
|
|
|
2087
2134
|
FileInfo: FileInfo,
|
|
2088
2135
|
ApplyLivenessTokenRequest: ApplyLivenessTokenRequest,
|
|
2089
2136
|
GenerateReflectSequenceResponse: GenerateReflectSequenceResponse,
|
|
2137
|
+
WebVerificationConfigIntl: WebVerificationConfigIntl,
|
|
2090
2138
|
LivenessCompareRequest: LivenessCompareRequest,
|
|
2091
2139
|
GetFaceIdResultIntlResponse: GetFaceIdResultIntlResponse,
|
|
2092
2140
|
GetWebVerificationResultIntlRequest: GetWebVerificationResultIntlRequest,
|
|
@@ -4971,14 +4971,17 @@ class DescribeVisitTopSumInfoListRequest extends AbstractModel {
|
|
|
4971
4971
|
super();
|
|
4972
4972
|
|
|
4973
4973
|
/**
|
|
4974
|
-
*
|
|
4974
|
+
* The start time of the request, supports data query for the last one day, the gap between the start time and the end time cannot exceed four hours. Interface request supports two time formats:
|
|
4975
|
+
1) YYYY-MM-DDThh:mm:ssZ: ISO time format, for details, see [ISO Date Format Description](https://cloud.tencent.com/document/product/267/38543#:~:text=I- ,ISO,-%E6%97%A5%E6%9C%9F%E6%A0%BC%E5%BC%8F)
|
|
4976
|
+
2) YYYY-MM-DD hh:mm:ss: When using this format, it represents Beijing time by default.
|
|
4975
4977
|
* @type {string || null}
|
|
4976
4978
|
*/
|
|
4977
4979
|
this.StartTime = null;
|
|
4978
4980
|
|
|
4979
4981
|
/**
|
|
4980
|
-
*
|
|
4981
|
-
|
|
4982
|
+
* The end time of the request, supports data query for the last one day, the gap between the start time and the end time cannot exceed four hours. Interface request supports two time formats:
|
|
4983
|
+
1) YYYY-MM-DDThh:mm:ssZ: ISO time format,for details,see [ISO Date Format Description](https://cloud.tencent.com/document/product/267/38543#:~:text=I- ,ISO,-%E6%97%A5%E6%9C%9F%E6%A0%BC%E5%BC%8F)
|
|
4984
|
+
2) YYYY-MM-DD hh:mm:ss: When using this format, it represents Beijing time by default.
|
|
4982
4985
|
* @type {string || null}
|
|
4983
4986
|
*/
|
|
4984
4987
|
this.EndTime = null;
|
|
@@ -8183,13 +8186,17 @@ class DescribeStreamPushInfoListRequest extends AbstractModel {
|
|
|
8183
8186
|
this.StreamName = null;
|
|
8184
8187
|
|
|
8185
8188
|
/**
|
|
8186
|
-
* The start time
|
|
8189
|
+
* The start time of the request, supports data query for the last seven days, the gap between the start time and the end time cannot exceed three hours. Interface request supports two time formats:
|
|
8190
|
+
1) YYYY-MM-DDThh:mm:ssZ: ISO time format, for details, see [ISO Date Format Description](https://cloud.tencent.com/document/product/267/38543#:~:text=I- ,ISO,-%E6%97%A5%E6%9C%9F%E6%A0%BC%E5%BC%8F)
|
|
8191
|
+
2) YYYY-MM-DD hh:mm:ss: When using this format, it represents Beijing time by default.
|
|
8187
8192
|
* @type {string || null}
|
|
8188
8193
|
*/
|
|
8189
8194
|
this.StartTime = null;
|
|
8190
8195
|
|
|
8191
8196
|
/**
|
|
8192
|
-
* The end time
|
|
8197
|
+
* The end time of the request, supports data query for the last seven days, the gap between the start time and the end time cannot exceed three hours. Interface request supports two time formats:
|
|
8198
|
+
1) YYYY-MM-DDThh:mm:ssZ: ISO time format,for details,see [ISO Date Format Description](https://cloud.tencent.com/document/product/267/38543#:~:text=I- ,ISO,-%E6%97%A5%E6%9C%9F%E6%A0%BC%E5%BC%8F)
|
|
8199
|
+
2) YYYY-MM-DD hh:mm:ss: When using this format, it represents Beijing time by default.
|
|
8193
8200
|
* @type {string || null}
|
|
8194
8201
|
*/
|
|
8195
8202
|
this.EndTime = null;
|