tencentcloud-sdk-nodejs-intl-en 3.0.1028 → 3.0.1029
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/faceid_client.js +2 -1
- package/tencentcloud/faceid/v20180301/models.js +141 -48
- package/tencentcloud/lcic/v20220817/models.js +10 -1
- package/tencentcloud/trtc/v20190722/trtc_client.js +3 -3
package/package.json
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1029";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -71,6 +71,7 @@ const CreateUploadUrlRequest = models.CreateUploadUrlRequest;
|
|
|
71
71
|
const ApplyWebVerificationBizTokenIntlRequest = models.ApplyWebVerificationBizTokenIntlRequest;
|
|
72
72
|
const GetWebVerificationResultResponse = models.GetWebVerificationResultResponse;
|
|
73
73
|
const CompareFaceLivenessRequest = models.CompareFaceLivenessRequest;
|
|
74
|
+
const MacaoIDCard = models.MacaoIDCard;
|
|
74
75
|
const ApplyLivenessTokenRequest = models.ApplyLivenessTokenRequest;
|
|
75
76
|
const NormalThailandIDCard = models.NormalThailandIDCard;
|
|
76
77
|
const PhilippinesDrivingLicense = models.PhilippinesDrivingLicense;
|
|
@@ -79,7 +80,7 @@ const GenerateReflectSequenceResponse = models.GenerateReflectSequenceResponse;
|
|
|
79
80
|
const GetWebVerificationResultIntlRequest = models.GetWebVerificationResultIntlRequest;
|
|
80
81
|
const GeneralCard = models.GeneralCard;
|
|
81
82
|
const LivenessCompareResponse = models.LivenessCompareResponse;
|
|
82
|
-
const
|
|
83
|
+
const HMTPermit = models.HMTPermit;
|
|
83
84
|
const PhilippinesUMID = models.PhilippinesUMID;
|
|
84
85
|
const PhilippinesTinID = models.PhilippinesTinID;
|
|
85
86
|
const ApplyCardVerificationRequest = models.ApplyCardVerificationRequest;
|
|
@@ -1752,6 +1752,13 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1752
1752
|
*/
|
|
1753
1753
|
this.TaiWanIDCard = null;
|
|
1754
1754
|
|
|
1755
|
+
/**
|
|
1756
|
+
* exit/entry permit (card) for traveling to and from Hong Kong, Macao, or Taiwan.
|
|
1757
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1758
|
+
* @type {HMTPermit || null}
|
|
1759
|
+
*/
|
|
1760
|
+
this.HMTPermitCard = null;
|
|
1761
|
+
|
|
1755
1762
|
}
|
|
1756
1763
|
|
|
1757
1764
|
/**
|
|
@@ -1864,6 +1871,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1864
1871
|
this.TaiWanIDCard = obj;
|
|
1865
1872
|
}
|
|
1866
1873
|
|
|
1874
|
+
if (params.HMTPermitCard) {
|
|
1875
|
+
let obj = new HMTPermit();
|
|
1876
|
+
obj.deserialize(params.HMTPermitCard)
|
|
1877
|
+
this.HMTPermitCard = obj;
|
|
1878
|
+
}
|
|
1879
|
+
|
|
1867
1880
|
}
|
|
1868
1881
|
}
|
|
1869
1882
|
|
|
@@ -1999,6 +2012,8 @@ Default value: 4
|
|
|
1999
2012
|
17.ThailandDrivingLicense: Thailand Driving License
|
|
2000
2013
|
18.SingaporeDrivingLicense: Singapore Driving License
|
|
2001
2014
|
19.JapanDrivingLicense: Japan Driving License
|
|
2015
|
+
20.TaiWanIDCard:Taiwan ID Card
|
|
2016
|
+
21.HMTPermit: exit/entry permit (card) for traveling to and from Hong Kong, Macao, or Taiwan
|
|
2002
2017
|
* @type {string || null}
|
|
2003
2018
|
*/
|
|
2004
2019
|
this.IdCardType = null;
|
|
@@ -4226,6 +4241,107 @@ Example value: ""
|
|
|
4226
4241
|
}
|
|
4227
4242
|
}
|
|
4228
4243
|
|
|
4244
|
+
/**
|
|
4245
|
+
* Macao ID Card
|
|
4246
|
+
* @class
|
|
4247
|
+
*/
|
|
4248
|
+
class MacaoIDCard extends AbstractModel {
|
|
4249
|
+
constructor(){
|
|
4250
|
+
super();
|
|
4251
|
+
|
|
4252
|
+
/**
|
|
4253
|
+
* First name
|
|
4254
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4255
|
+
* @type {string || null}
|
|
4256
|
+
*/
|
|
4257
|
+
this.FirstName = null;
|
|
4258
|
+
|
|
4259
|
+
/**
|
|
4260
|
+
* Last name
|
|
4261
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4262
|
+
* @type {string || null}
|
|
4263
|
+
*/
|
|
4264
|
+
this.LastName = null;
|
|
4265
|
+
|
|
4266
|
+
/**
|
|
4267
|
+
* Birthday
|
|
4268
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4269
|
+
* @type {string || null}
|
|
4270
|
+
*/
|
|
4271
|
+
this.Birthday = null;
|
|
4272
|
+
|
|
4273
|
+
/**
|
|
4274
|
+
* Expiration date
|
|
4275
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4276
|
+
* @type {string || null}
|
|
4277
|
+
*/
|
|
4278
|
+
this.ExpirationDate = null;
|
|
4279
|
+
|
|
4280
|
+
/**
|
|
4281
|
+
* License number
|
|
4282
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4283
|
+
* @type {string || null}
|
|
4284
|
+
*/
|
|
4285
|
+
this.LicenseNumber = null;
|
|
4286
|
+
|
|
4287
|
+
/**
|
|
4288
|
+
* Sex
|
|
4289
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4290
|
+
* @type {string || null}
|
|
4291
|
+
*/
|
|
4292
|
+
this.Sex = null;
|
|
4293
|
+
|
|
4294
|
+
/**
|
|
4295
|
+
* Age
|
|
4296
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4297
|
+
* @type {string || null}
|
|
4298
|
+
*/
|
|
4299
|
+
this.Age = null;
|
|
4300
|
+
|
|
4301
|
+
/**
|
|
4302
|
+
* Issued country
|
|
4303
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4304
|
+
* @type {string || null}
|
|
4305
|
+
*/
|
|
4306
|
+
this.IssuedCountry = null;
|
|
4307
|
+
|
|
4308
|
+
/**
|
|
4309
|
+
* MRZ1 on card
|
|
4310
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4311
|
+
* @type {string || null}
|
|
4312
|
+
*/
|
|
4313
|
+
this.Field1 = null;
|
|
4314
|
+
|
|
4315
|
+
/**
|
|
4316
|
+
* MRZ2 on card
|
|
4317
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4318
|
+
* @type {string || null}
|
|
4319
|
+
*/
|
|
4320
|
+
this.Field2 = null;
|
|
4321
|
+
|
|
4322
|
+
}
|
|
4323
|
+
|
|
4324
|
+
/**
|
|
4325
|
+
* @private
|
|
4326
|
+
*/
|
|
4327
|
+
deserialize(params) {
|
|
4328
|
+
if (!params) {
|
|
4329
|
+
return;
|
|
4330
|
+
}
|
|
4331
|
+
this.FirstName = 'FirstName' in params ? params.FirstName : null;
|
|
4332
|
+
this.LastName = 'LastName' in params ? params.LastName : null;
|
|
4333
|
+
this.Birthday = 'Birthday' in params ? params.Birthday : null;
|
|
4334
|
+
this.ExpirationDate = 'ExpirationDate' in params ? params.ExpirationDate : null;
|
|
4335
|
+
this.LicenseNumber = 'LicenseNumber' in params ? params.LicenseNumber : null;
|
|
4336
|
+
this.Sex = 'Sex' in params ? params.Sex : null;
|
|
4337
|
+
this.Age = 'Age' in params ? params.Age : null;
|
|
4338
|
+
this.IssuedCountry = 'IssuedCountry' in params ? params.IssuedCountry : null;
|
|
4339
|
+
this.Field1 = 'Field1' in params ? params.Field1 : null;
|
|
4340
|
+
this.Field2 = 'Field2' in params ? params.Field2 : null;
|
|
4341
|
+
|
|
4342
|
+
}
|
|
4343
|
+
}
|
|
4344
|
+
|
|
4229
4345
|
/**
|
|
4230
4346
|
* ApplyLivenessToken request structure.
|
|
4231
4347
|
* @class
|
|
@@ -4907,82 +5023,60 @@ class LivenessCompareResponse extends AbstractModel {
|
|
|
4907
5023
|
}
|
|
4908
5024
|
|
|
4909
5025
|
/**
|
|
4910
|
-
* Macao
|
|
5026
|
+
* Exit/entry permit (card) for traveling to and from Hong Kong, Macao, or Taiwan
|
|
4911
5027
|
* @class
|
|
4912
5028
|
*/
|
|
4913
|
-
class
|
|
5029
|
+
class HMTPermit extends AbstractModel {
|
|
4914
5030
|
constructor(){
|
|
4915
5031
|
super();
|
|
4916
5032
|
|
|
4917
5033
|
/**
|
|
4918
|
-
*
|
|
4919
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4920
|
-
* @type {string || null}
|
|
4921
|
-
*/
|
|
4922
|
-
this.FirstName = null;
|
|
4923
|
-
|
|
4924
|
-
/**
|
|
4925
|
-
* Last name
|
|
4926
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4927
|
-
* @type {string || null}
|
|
4928
|
-
*/
|
|
4929
|
-
this.LastName = null;
|
|
4930
|
-
|
|
4931
|
-
/**
|
|
4932
|
-
* Birthday
|
|
4933
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5034
|
+
* Name
|
|
4934
5035
|
* @type {string || null}
|
|
4935
5036
|
*/
|
|
4936
|
-
this.
|
|
5037
|
+
this.Name = null;
|
|
4937
5038
|
|
|
4938
5039
|
/**
|
|
4939
|
-
*
|
|
4940
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5040
|
+
* English name
|
|
4941
5041
|
* @type {string || null}
|
|
4942
5042
|
*/
|
|
4943
|
-
this.
|
|
5043
|
+
this.EnglishName = null;
|
|
4944
5044
|
|
|
4945
5045
|
/**
|
|
4946
5046
|
* License number
|
|
4947
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4948
5047
|
* @type {string || null}
|
|
4949
5048
|
*/
|
|
4950
|
-
this.
|
|
5049
|
+
this.Number = null;
|
|
4951
5050
|
|
|
4952
5051
|
/**
|
|
4953
|
-
*
|
|
4954
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5052
|
+
* Gender
|
|
4955
5053
|
* @type {string || null}
|
|
4956
5054
|
*/
|
|
4957
5055
|
this.Sex = null;
|
|
4958
5056
|
|
|
4959
5057
|
/**
|
|
4960
|
-
*
|
|
4961
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5058
|
+
* Valid date
|
|
4962
5059
|
* @type {string || null}
|
|
4963
5060
|
*/
|
|
4964
|
-
this.
|
|
5061
|
+
this.ValidDate = null;
|
|
4965
5062
|
|
|
4966
5063
|
/**
|
|
4967
|
-
* Issued
|
|
4968
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5064
|
+
* Issued authority
|
|
4969
5065
|
* @type {string || null}
|
|
4970
5066
|
*/
|
|
4971
|
-
this.
|
|
5067
|
+
this.IssueAuthority = null;
|
|
4972
5068
|
|
|
4973
5069
|
/**
|
|
4974
|
-
*
|
|
4975
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5070
|
+
* Issued address
|
|
4976
5071
|
* @type {string || null}
|
|
4977
5072
|
*/
|
|
4978
|
-
this.
|
|
5073
|
+
this.IssueAddress = null;
|
|
4979
5074
|
|
|
4980
5075
|
/**
|
|
4981
|
-
*
|
|
4982
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5076
|
+
* Birthday
|
|
4983
5077
|
* @type {string || null}
|
|
4984
5078
|
*/
|
|
4985
|
-
this.
|
|
5079
|
+
this.Birthday = null;
|
|
4986
5080
|
|
|
4987
5081
|
}
|
|
4988
5082
|
|
|
@@ -4993,16 +5087,14 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4993
5087
|
if (!params) {
|
|
4994
5088
|
return;
|
|
4995
5089
|
}
|
|
4996
|
-
this.
|
|
4997
|
-
this.
|
|
4998
|
-
this.
|
|
4999
|
-
this.ExpirationDate = 'ExpirationDate' in params ? params.ExpirationDate : null;
|
|
5000
|
-
this.LicenseNumber = 'LicenseNumber' in params ? params.LicenseNumber : null;
|
|
5090
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
5091
|
+
this.EnglishName = 'EnglishName' in params ? params.EnglishName : null;
|
|
5092
|
+
this.Number = 'Number' in params ? params.Number : null;
|
|
5001
5093
|
this.Sex = 'Sex' in params ? params.Sex : null;
|
|
5002
|
-
this.
|
|
5003
|
-
this.
|
|
5004
|
-
this.
|
|
5005
|
-
this.
|
|
5094
|
+
this.ValidDate = 'ValidDate' in params ? params.ValidDate : null;
|
|
5095
|
+
this.IssueAuthority = 'IssueAuthority' in params ? params.IssueAuthority : null;
|
|
5096
|
+
this.IssueAddress = 'IssueAddress' in params ? params.IssueAddress : null;
|
|
5097
|
+
this.Birthday = 'Birthday' in params ? params.Birthday : null;
|
|
5006
5098
|
|
|
5007
5099
|
}
|
|
5008
5100
|
}
|
|
@@ -5789,6 +5881,7 @@ module.exports = {
|
|
|
5789
5881
|
ApplyWebVerificationBizTokenIntlRequest: ApplyWebVerificationBizTokenIntlRequest,
|
|
5790
5882
|
GetWebVerificationResultResponse: GetWebVerificationResultResponse,
|
|
5791
5883
|
CompareFaceLivenessRequest: CompareFaceLivenessRequest,
|
|
5884
|
+
MacaoIDCard: MacaoIDCard,
|
|
5792
5885
|
ApplyLivenessTokenRequest: ApplyLivenessTokenRequest,
|
|
5793
5886
|
NormalThailandIDCard: NormalThailandIDCard,
|
|
5794
5887
|
PhilippinesDrivingLicense: PhilippinesDrivingLicense,
|
|
@@ -5797,7 +5890,7 @@ module.exports = {
|
|
|
5797
5890
|
GetWebVerificationResultIntlRequest: GetWebVerificationResultIntlRequest,
|
|
5798
5891
|
GeneralCard: GeneralCard,
|
|
5799
5892
|
LivenessCompareResponse: LivenessCompareResponse,
|
|
5800
|
-
|
|
5893
|
+
HMTPermit: HMTPermit,
|
|
5801
5894
|
PhilippinesUMID: PhilippinesUMID,
|
|
5802
5895
|
PhilippinesTinID: PhilippinesTinID,
|
|
5803
5896
|
ApplyCardVerificationRequest: ApplyCardVerificationRequest,
|
|
@@ -55,7 +55,9 @@ class CreateRoomRequest extends AbstractModel {
|
|
|
55
55
|
this.Resolution = null;
|
|
56
56
|
|
|
57
57
|
/**
|
|
58
|
-
* Maximum number of mic-on users (excluding teachers). Value range: [0, 16]
|
|
58
|
+
* Maximum number of mic-on users (excluding teachers). Value range: [0, 16]. This value affects billing, please set it according to the actual business situation. For billing rules, see "Billing Overview" under "Purchase Guide". Example:
|
|
59
|
+
1: Billing based on the 1v1 rule;
|
|
60
|
+
10: Billing based on the 1v7-12 rule.
|
|
59
61
|
* @type {number || null}
|
|
60
62
|
*/
|
|
61
63
|
this.MaxMicNumber = null;
|
|
@@ -200,6 +202,12 @@ class CreateRoomRequest extends AbstractModel {
|
|
|
200
202
|
*/
|
|
201
203
|
this.RecordLang = null;
|
|
202
204
|
|
|
205
|
+
/**
|
|
206
|
+
* Recording type. 0: Records only mixed streams (default); 1: Records mixed streams and single streams. In this mode, in addition to the mixed streams, the audio and video streams of the teacher and students on stage are recorded separately. Each recording incurs corresponding recording fees. Example: 0.
|
|
207
|
+
* @type {number || null}
|
|
208
|
+
*/
|
|
209
|
+
this.RecordStream = null;
|
|
210
|
+
|
|
203
211
|
}
|
|
204
212
|
|
|
205
213
|
/**
|
|
@@ -238,6 +246,7 @@ class CreateRoomRequest extends AbstractModel {
|
|
|
238
246
|
this.RecordBackground = 'RecordBackground' in params ? params.RecordBackground : null;
|
|
239
247
|
this.RecordScene = 'RecordScene' in params ? params.RecordScene : null;
|
|
240
248
|
this.RecordLang = 'RecordLang' in params ? params.RecordLang : null;
|
|
249
|
+
this.RecordStream = 'RecordStream' in params ? params.RecordStream : null;
|
|
241
250
|
|
|
242
251
|
}
|
|
243
252
|
}
|
|
@@ -254,7 +254,7 @@ Usage Precautions:
|
|
|
254
254
|
* This API (the old `DescribeCallDetail`) is used to query the user list and call quality data of a specified time range in the last 14 days. If `DataType` is not null, the data of up to six users during a period of up to one hour can be queried (the period can start and end on different days). If `DataType` is null, the data of up to 100 users can be returned per page (the value of `PageSize` cannot exceed 100). Six users are queried by default. The period queried cannot exceed four hours. This API is used to query call quality and is not recommended for billing purposes.
|
|
255
255
|
**Note**:
|
|
256
256
|
1. You can use this API to query historical data or for reconciliation purposes, but we do not recommend you use it for crucial business logic.
|
|
257
|
-
2. If you need to call this API, please upgrade the monitoring dashboard version to "Standard". For more details, please refer to: https://
|
|
257
|
+
2. If you need to call this API, please upgrade the monitoring dashboard version to "Standard". For more details, please refer to: https://trtc.io/document/54481?product=pricing.
|
|
258
258
|
* @param {DescribeCallDetailInfoRequest} req
|
|
259
259
|
* @param {function(string, DescribeCallDetailInfoResponse):void} cb
|
|
260
260
|
* @public
|
|
@@ -357,7 +357,7 @@ Note: For details about how to use this API, see the `StartPublishCdnStream` doc
|
|
|
357
357
|
* This API (the old `DescribeDetailEvent`) is used to query the events of a call in the last 14 days, including user entry and exit, turning the camera on/off, etc.
|
|
358
358
|
**Note**:
|
|
359
359
|
1. You can use this API to query historical data or for reconciliation purposes, but we do not recommend you use it for crucial business logic.
|
|
360
|
-
2. If you need to call this API, please upgrade the monitoring dashboard version to "Standard". For more details, please refer to: https://
|
|
360
|
+
2. If you need to call this API, please upgrade the monitoring dashboard version to "Standard". For more details, please refer to: https://trtc.io/document/54481?product=pricing.
|
|
361
361
|
* @param {DescribeUserEventRequest} req
|
|
362
362
|
* @param {function(string, DescribeUserEventResponse):void} cb
|
|
363
363
|
* @public
|
|
@@ -438,7 +438,7 @@ Mixed-stream recording: Mix the audios and videos of subscribed users (`UserId`)
|
|
|
438
438
|
* This API (the old `DescribeUserInformation`) is used to query the user list of a specified time range (up to four hours) in the last 14 days. The data of up to 100 users can be returned per page (six are returned by default).
|
|
439
439
|
**Note**:
|
|
440
440
|
1. You can use this API to query historical data or for reconciliation purposes, but we do not recommend you use it for crucial business logic.
|
|
441
|
-
2. If you need to call this API, please upgrade the monitoring dashboard version to "Standard". For more details, please refer to: https://
|
|
441
|
+
2. If you need to call this API, please upgrade the monitoring dashboard version to "Standard". For more details, please refer to: https://trtc.io/document/60214?product=pricing.
|
|
442
442
|
* @param {DescribeUserInfoRequest} req
|
|
443
443
|
* @param {function(string, DescribeUserInfoResponse):void} cb
|
|
444
444
|
* @public
|