tencentcloud-sdk-nodejs 4.0.300 → 4.0.303

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.
Files changed (70) hide show
  1. package/CHANGELOG.md +269 -0
  2. package/SERVICE_CHANGELOG.md +286 -333
  3. package/package.json +1 -1
  4. package/products.md +16 -15
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/asr/v20190614/asr_models.ts +1 -1
  7. package/src/services/casb/index.ts +5 -0
  8. package/src/services/casb/v20200507/casb_client.ts +51 -0
  9. package/src/services/casb/v20200507/casb_models.ts +76 -0
  10. package/src/services/casb/v20200507/index.ts +6 -0
  11. package/src/services/ccc/v20200210/ccc_models.ts +12 -0
  12. package/src/services/cdn/v20180606/cdn_models.ts +18 -18
  13. package/src/services/ckafka/v20190819/ckafka_client.ts +44 -8
  14. package/src/services/ckafka/v20190819/ckafka_models.ts +123 -20
  15. package/src/services/cls/v20201016/cls_client.ts +2 -2
  16. package/src/services/cls/v20201016/cls_models.ts +36 -47
  17. package/src/services/cpdp/v20190820/cpdp_client.ts +123 -15
  18. package/src/services/cpdp/v20190820/cpdp_models.ts +1449 -493
  19. package/src/services/index.ts +1 -0
  20. package/src/services/ivld/v20210903/ivld_client.ts +2 -0
  21. package/src/services/ivld/v20210903/ivld_models.ts +48 -0
  22. package/src/services/organization/v20210331/organization_models.ts +6 -0
  23. package/src/services/ses/v20201002/ses_client.ts +15 -2
  24. package/src/services/ses/v20201002/ses_models.ts +51 -10
  25. package/src/services/tcss/v20201101/tcss_models.ts +5 -0
  26. package/src/services/tke/v20180525/tke_client.ts +25 -13
  27. package/src/services/tke/v20180525/tke_models.ts +39 -4
  28. package/src/services/tse/v20201207/tse_models.ts +15 -0
  29. package/src/services/vpc/v20170312/vpc_client.ts +1 -1
  30. package/tencentcloud/common/sdk_version.d.ts +1 -1
  31. package/tencentcloud/common/sdk_version.js +1 -1
  32. package/tencentcloud/services/asr/v20190614/asr_models.d.ts +1 -1
  33. package/tencentcloud/services/casb/index.d.ts +6 -0
  34. package/tencentcloud/services/casb/index.js +7 -0
  35. package/tencentcloud/services/casb/v20200507/casb_client.d.ts +21 -0
  36. package/tencentcloud/services/casb/v20200507/casb_client.js +44 -0
  37. package/tencentcloud/services/casb/v20200507/casb_models.d.ts +51 -0
  38. package/tencentcloud/services/casb/v20200507/casb_models.js +18 -0
  39. package/tencentcloud/services/casb/v20200507/index.d.ts +6 -0
  40. package/tencentcloud/services/casb/v20200507/index.js +9 -0
  41. package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +10 -0
  42. package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +18 -18
  43. package/tencentcloud/services/ckafka/v20190819/ckafka_client.d.ts +15 -3
  44. package/tencentcloud/services/ckafka/v20190819/ckafka_client.js +21 -3
  45. package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +108 -19
  46. package/tencentcloud/services/cls/v20201016/cls_client.d.ts +2 -2
  47. package/tencentcloud/services/cls/v20201016/cls_client.js +2 -2
  48. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +36 -47
  49. package/tencentcloud/services/cpdp/v20190820/cpdp_client.d.ts +36 -4
  50. package/tencentcloud/services/cpdp/v20190820/cpdp_client.js +52 -4
  51. package/tencentcloud/services/cpdp/v20190820/cpdp_models.d.ts +1294 -470
  52. package/tencentcloud/services/index.d.ts +1 -0
  53. package/tencentcloud/services/index.js +2 -0
  54. package/tencentcloud/services/ivld/v20210903/ivld_models.d.ts +41 -0
  55. package/tencentcloud/services/organization/v20210331/organization_models.d.ts +5 -0
  56. package/tencentcloud/services/ses/v20201002/ses_client.d.ts +5 -1
  57. package/tencentcloud/services/ses/v20201002/ses_client.js +6 -0
  58. package/tencentcloud/services/ses/v20201002/ses_models.d.ts +46 -10
  59. package/tencentcloud/services/tcss/v20201101/tcss_models.d.ts +4 -0
  60. package/tencentcloud/services/tke/v20180525/tke_client.d.ts +9 -5
  61. package/tencentcloud/services/tke/v20180525/tke_client.js +12 -6
  62. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +34 -4
  63. package/tencentcloud/services/tse/v20201207/tse_models.d.ts +12 -0
  64. package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +1 -1
  65. package/tencentcloud/services/vpc/v20170312/vpc_client.js +1 -1
  66. package/test/casb.v20200507.test.js +31 -0
  67. package/test/ckafka.v20190819.test.js +32 -2
  68. package/test/cpdp.v20190820.test.js +82 -2
  69. package/test/ses.v20201002.test.js +10 -0
  70. package/test/tke.v20180525.test.js +14 -4
@@ -38,6 +38,16 @@ it("cpdp.v20190820.DistributeAccreditQuery", async function () {
38
38
  }
39
39
  })
40
40
 
41
+ it("cpdp.v20190820.QueryMemberTransactionDetails", async function () {
42
+ try {
43
+ const data = await client.QueryMemberTransactionDetails({})
44
+ expect(data).to.be.ok
45
+ } catch(error) {
46
+ expect(error.requestId).to.be.ok
47
+ expect(error.code).to.be.ok
48
+ }
49
+ })
50
+
41
51
  it("cpdp.v20190820.ModifyAgentTaxPaymentInfo", async function () {
42
52
  try {
43
53
  const data = await client.ModifyAgentTaxPaymentInfo({})
@@ -198,6 +208,16 @@ it("cpdp.v20190820.ModifyMerchant", async function () {
198
208
  }
199
209
  })
200
210
 
211
+ it("cpdp.v20190820.QueryOpenBankDailyReceiptDownloadUrl", async function () {
212
+ try {
213
+ const data = await client.QueryOpenBankDailyReceiptDownloadUrl({})
214
+ expect(data).to.be.ok
215
+ } catch(error) {
216
+ expect(error.requestId).to.be.ok
217
+ expect(error.code).to.be.ok
218
+ }
219
+ })
220
+
201
221
  it("cpdp.v20190820.QueryTrade", async function () {
202
222
  try {
203
223
  const data = await client.QueryTrade({})
@@ -278,6 +298,16 @@ it("cpdp.v20190820.QueryInvoice", async function () {
278
298
  }
279
299
  })
280
300
 
301
+ it("cpdp.v20190820.QueryOpenBankBankBranchList", async function () {
302
+ try {
303
+ const data = await client.QueryOpenBankBankBranchList({})
304
+ expect(data).to.be.ok
305
+ } catch(error) {
306
+ expect(error.requestId).to.be.ok
307
+ expect(error.code).to.be.ok
308
+ }
309
+ })
310
+
281
311
  it("cpdp.v20190820.QueryExchangeRate", async function () {
282
312
  try {
283
313
  const data = await client.QueryExchangeRate({})
@@ -368,6 +398,16 @@ it("cpdp.v20190820.RefundTlinxOrder", async function () {
368
398
  }
369
399
  })
370
400
 
401
+ it("cpdp.v20190820.UnBindAcct", async function () {
402
+ try {
403
+ const data = await client.UnBindAcct({})
404
+ expect(data).to.be.ok
405
+ } catch(error) {
406
+ expect(error.requestId).to.be.ok
407
+ expect(error.code).to.be.ok
408
+ }
409
+ })
410
+
371
411
  it("cpdp.v20190820.DescribeChargeDetail", async function () {
372
412
  try {
373
413
  const data = await client.DescribeChargeDetail({})
@@ -598,9 +638,19 @@ it("cpdp.v20190820.QueryAcctInfo", async function () {
598
638
  }
599
639
  })
600
640
 
601
- it("cpdp.v20190820.UnBindAcct", async function () {
641
+ it("cpdp.v20190820.ApplyReconciliationFile", async function () {
602
642
  try {
603
- const data = await client.UnBindAcct({})
643
+ const data = await client.ApplyReconciliationFile({})
644
+ expect(data).to.be.ok
645
+ } catch(error) {
646
+ expect(error.requestId).to.be.ok
647
+ expect(error.code).to.be.ok
648
+ }
649
+ })
650
+
651
+ it("cpdp.v20190820.QueryReconciliationFileApplyInfo", async function () {
652
+ try {
653
+ const data = await client.QueryReconciliationFileApplyInfo({})
604
654
  expect(data).to.be.ok
605
655
  } catch(error) {
606
656
  expect(error.requestId).to.be.ok
@@ -858,6 +908,16 @@ it("cpdp.v20190820.QueryAcctBinding", async function () {
858
908
  }
859
909
  })
860
910
 
911
+ it("cpdp.v20190820.QueryFundsTransactionDetails", async function () {
912
+ try {
913
+ const data = await client.QueryFundsTransactionDetails({})
914
+ expect(data).to.be.ok
915
+ } catch(error) {
916
+ expect(error.requestId).to.be.ok
917
+ expect(error.code).to.be.ok
918
+ }
919
+ })
920
+
861
921
  it("cpdp.v20190820.ApplyReWithdrawal", async function () {
862
922
  try {
863
923
  const data = await client.ApplyReWithdrawal({})
@@ -1218,6 +1278,16 @@ it("cpdp.v20190820.RevokeMemberRechargeThirdPay", async function () {
1218
1278
  }
1219
1279
  })
1220
1280
 
1281
+ it("cpdp.v20190820.QueryOpenBankSupportBankList", async function () {
1282
+ try {
1283
+ const data = await client.QueryOpenBankSupportBankList({})
1284
+ expect(data).to.be.ok
1285
+ } catch(error) {
1286
+ expect(error.requestId).to.be.ok
1287
+ expect(error.code).to.be.ok
1288
+ }
1289
+ })
1290
+
1221
1291
  it("cpdp.v20190820.DistributeCancel", async function () {
1222
1292
  try {
1223
1293
  const data = await client.DistributeCancel({})
@@ -1458,6 +1528,16 @@ it("cpdp.v20190820.TerminateContract", async function () {
1458
1528
  }
1459
1529
  })
1460
1530
 
1531
+ it("cpdp.v20190820.QueryOpenBankBankAccountBalance", async function () {
1532
+ try {
1533
+ const data = await client.QueryOpenBankBankAccountBalance({})
1534
+ expect(data).to.be.ok
1535
+ } catch(error) {
1536
+ expect(error.requestId).to.be.ok
1537
+ expect(error.code).to.be.ok
1538
+ }
1539
+ })
1540
+
1461
1541
  it("cpdp.v20190820.QueryAcctInfoList", async function () {
1462
1542
  try {
1463
1543
  const data = await client.QueryAcctInfoList({})
@@ -38,6 +38,16 @@ it("ses.v20201002.CreateEmailAddress", async function () {
38
38
  }
39
39
  })
40
40
 
41
+ it("ses.v20201002.CreateReceiverDetailWithData", async function () {
42
+ try {
43
+ const data = await client.CreateReceiverDetailWithData({})
44
+ expect(data).to.be.ok
45
+ } catch(error) {
46
+ expect(error.requestId).to.be.ok
47
+ expect(error.code).to.be.ok
48
+ }
49
+ })
50
+
41
51
  it("ses.v20201002.GetSendEmailStatus", async function () {
42
52
  try {
43
53
  const data = await client.GetSendEmailStatus({})
@@ -168,9 +168,9 @@ it("tke.v20180525.DeleteEKSCluster", async function () {
168
168
  }
169
169
  })
170
170
 
171
- it("tke.v20180525.DescribeClusterEndpointStatus", async function () {
171
+ it("tke.v20180525.ModifyClusterNodePool", async function () {
172
172
  try {
173
- const data = await client.DescribeClusterEndpointStatus({})
173
+ const data = await client.ModifyClusterNodePool({})
174
174
  expect(data).to.be.ok
175
175
  } catch(error) {
176
176
  expect(error.requestId).to.be.ok
@@ -378,9 +378,9 @@ it("tke.v20180525.DescribeClusters", async function () {
378
378
  }
379
379
  })
380
380
 
381
- it("tke.v20180525.ModifyClusterNodePool", async function () {
381
+ it("tke.v20180525.DescribeClusterEndpointStatus", async function () {
382
382
  try {
383
- const data = await client.ModifyClusterNodePool({})
383
+ const data = await client.DescribeClusterEndpointStatus({})
384
384
  expect(data).to.be.ok
385
385
  } catch(error) {
386
386
  expect(error.requestId).to.be.ok
@@ -508,6 +508,16 @@ it("tke.v20180525.RestartEKSContainerInstances", async function () {
508
508
  }
509
509
  })
510
510
 
511
+ it("tke.v20180525.DescribeTKEEdgeScript", async function () {
512
+ try {
513
+ const data = await client.DescribeTKEEdgeScript({})
514
+ expect(data).to.be.ok
515
+ } catch(error) {
516
+ expect(error.requestId).to.be.ok
517
+ expect(error.code).to.be.ok
518
+ }
519
+ })
520
+
511
521
  it("tke.v20180525.ModifyNodePoolDesiredCapacityAboutAsg", async function () {
512
522
  try {
513
523
  const data = await client.ModifyNodePoolDesiredCapacityAboutAsg({})