tencentcloud-sdk-nodejs 4.0.580 → 4.0.582

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 (47) hide show
  1. package/CHANGELOG.md +187 -0
  2. package/SERVICE_CHANGELOG.md +210 -246
  3. package/package.json +1 -1
  4. package/products.md +16 -16
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/cdn/v20180606/cdn_models.ts +2 -2
  7. package/src/services/cfs/v20190719/cfs_client.ts +72 -5
  8. package/src/services/cfs/v20190719/cfs_models.ts +461 -59
  9. package/src/services/cwp/v20180228/cwp_client.ts +4 -2
  10. package/src/services/ess/v20201111/ess_client.ts +25 -1
  11. package/src/services/ess/v20201111/ess_models.ts +91 -16
  12. package/src/services/faceid/v20180301/faceid_models.ts +34 -3
  13. package/src/services/ms/v20180408/ms_client.ts +4 -2
  14. package/src/services/rum/v20210622/rum_client.ts +86 -38
  15. package/src/services/rum/v20210622/rum_models.ts +283 -13
  16. package/src/services/trp/v20210515/trp_client.ts +67 -17
  17. package/src/services/trp/v20210515/trp_models.ts +187 -26
  18. package/src/services/waf/v20180125/waf_client.ts +39 -14
  19. package/src/services/waf/v20180125/waf_models.ts +197 -25
  20. package/tencentcloud/common/sdk_version.d.ts +1 -1
  21. package/tencentcloud/common/sdk_version.js +1 -1
  22. package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +2 -2
  23. package/tencentcloud/services/cfs/v20190719/cfs_client.d.ts +26 -1
  24. package/tencentcloud/services/cfs/v20190719/cfs_client.js +35 -0
  25. package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +391 -51
  26. package/tencentcloud/services/cwp/v20180228/cwp_client.d.ts +3 -1
  27. package/tencentcloud/services/cwp/v20180228/cwp_client.js +3 -1
  28. package/tencentcloud/services/ess/v20201111/ess_client.d.ts +9 -1
  29. package/tencentcloud/services/ess/v20201111/ess_client.js +12 -0
  30. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +81 -16
  31. package/tencentcloud/services/faceid/v20180301/faceid_models.d.ts +34 -5
  32. package/tencentcloud/services/ms/v20180408/ms_client.d.ts +3 -1
  33. package/tencentcloud/services/ms/v20180408/ms_client.js +3 -1
  34. package/tencentcloud/services/rum/v20210622/rum_client.d.ts +29 -13
  35. package/tencentcloud/services/rum/v20210622/rum_client.js +42 -18
  36. package/tencentcloud/services/rum/v20210622/rum_models.d.ts +236 -12
  37. package/tencentcloud/services/trp/v20210515/trp_client.d.ts +21 -5
  38. package/tencentcloud/services/trp/v20210515/trp_client.js +30 -6
  39. package/tencentcloud/services/trp/v20210515/trp_models.d.ts +166 -26
  40. package/tencentcloud/services/waf/v20180125/waf_client.d.ts +13 -5
  41. package/tencentcloud/services/waf/v20180125/waf_client.js +18 -6
  42. package/tencentcloud/services/waf/v20180125/waf_models.d.ts +168 -23
  43. package/test/cfs.v20190719.test.js +50 -0
  44. package/test/ess.v20201111.test.js +20 -0
  45. package/test/rum.v20210622.test.js +52 -12
  46. package/test/trp.v20210515.test.js +44 -4
  47. package/test/waf.v20180125.test.js +24 -4
@@ -118,6 +118,16 @@ it("ess.v20201111.VerifyPdf", async function () {
118
118
  }
119
119
  })
120
120
 
121
+ it("ess.v20201111.UnbindEmployeeUserIdWithClientOpenId", async function () {
122
+ try {
123
+ const data = await client.UnbindEmployeeUserIdWithClientOpenId({})
124
+ expect(data).to.be.ok
125
+ } catch(error) {
126
+ expect(error.requestId).to.be.ok
127
+ expect(error.code).to.be.ok
128
+ }
129
+ })
130
+
121
131
  it("ess.v20201111.CreateBatchCancelFlowUrl", async function () {
122
132
  try {
123
133
  const data = await client.CreateBatchCancelFlowUrl({})
@@ -128,6 +138,16 @@ it("ess.v20201111.CreateBatchCancelFlowUrl", async function () {
128
138
  }
129
139
  })
130
140
 
141
+ it("ess.v20201111.BindEmployeeUserIdWithClientOpenId", async function () {
142
+ try {
143
+ const data = await client.BindEmployeeUserIdWithClientOpenId({})
144
+ expect(data).to.be.ok
145
+ } catch(error) {
146
+ expect(error.requestId).to.be.ok
147
+ expect(error.code).to.be.ok
148
+ }
149
+ })
150
+
131
151
  it("ess.v20201111.CreatePreparedPersonalEsign", async function () {
132
152
  try {
133
153
  const data = await client.CreatePreparedPersonalEsign({})
@@ -98,9 +98,9 @@ it("rum.v20210622.DescribeDataLogUrlStatistics", async function () {
98
98
  }
99
99
  })
100
100
 
101
- it("rum.v20210622.DescribeDataFetchProject", async function () {
101
+ it("rum.v20210622.DeleteOfflineLogConfig", async function () {
102
102
  try {
103
- const data = await client.DescribeDataFetchProject({})
103
+ const data = await client.DeleteOfflineLogConfig({})
104
104
  expect(data).to.be.ok
105
105
  } catch(error) {
106
106
  expect(error.requestId).to.be.ok
@@ -208,9 +208,9 @@ it("rum.v20210622.DescribeOfflineLogs", async function () {
208
208
  }
209
209
  })
210
210
 
211
- it("rum.v20210622.CreateTawInstance", async function () {
211
+ it("rum.v20210622.DescribeAppSingleCaseList", async function () {
212
212
  try {
213
- const data = await client.CreateTawInstance({})
213
+ const data = await client.DescribeAppSingleCaseList({})
214
214
  expect(data).to.be.ok
215
215
  } catch(error) {
216
216
  expect(error.requestId).to.be.ok
@@ -258,9 +258,9 @@ it("rum.v20210622.DescribeDataStaticUrl", async function () {
258
258
  }
259
259
  })
260
260
 
261
- it("rum.v20210622.ModifyProjectLimit", async function () {
261
+ it("rum.v20210622.DescribeDataFetchUrlInfo", async function () {
262
262
  try {
263
- const data = await client.ModifyProjectLimit({})
263
+ const data = await client.DescribeDataFetchUrlInfo({})
264
264
  expect(data).to.be.ok
265
265
  } catch(error) {
266
266
  expect(error.requestId).to.be.ok
@@ -278,9 +278,19 @@ it("rum.v20210622.DescribeDataPvUrlStatistics", async function () {
278
278
  }
279
279
  })
280
280
 
281
- it("rum.v20210622.DescribeReleaseFileSign", async function () {
281
+ it("rum.v20210622.DescribeAppSingleCaseDetailList", async function () {
282
282
  try {
283
- const data = await client.DescribeReleaseFileSign({})
283
+ const data = await client.DescribeAppSingleCaseDetailList({})
284
+ expect(data).to.be.ok
285
+ } catch(error) {
286
+ expect(error.requestId).to.be.ok
287
+ expect(error.code).to.be.ok
288
+ }
289
+ })
290
+
291
+ it("rum.v20210622.DescribeAppMetricsData", async function () {
292
+ try {
293
+ const data = await client.DescribeAppMetricsData({})
284
294
  expect(data).to.be.ok
285
295
  } catch(error) {
286
296
  expect(error.requestId).to.be.ok
@@ -318,6 +328,16 @@ it("rum.v20210622.ModifyInstance", async function () {
318
328
  }
319
329
  })
320
330
 
331
+ it("rum.v20210622.ModifyProjectLimit", async function () {
332
+ try {
333
+ const data = await client.ModifyProjectLimit({})
334
+ expect(data).to.be.ok
335
+ } catch(error) {
336
+ expect(error.requestId).to.be.ok
337
+ expect(error.code).to.be.ok
338
+ }
339
+ })
340
+
321
341
  it("rum.v20210622.DescribeDataStaticResource", async function () {
322
342
  try {
323
343
  const data = await client.DescribeDataStaticResource({})
@@ -338,6 +358,16 @@ it("rum.v20210622.DescribeProjectLimits", async function () {
338
358
  }
339
359
  })
340
360
 
361
+ it("rum.v20210622.DescribeAppDimensionMetrics", async function () {
362
+ try {
363
+ const data = await client.DescribeAppDimensionMetrics({})
364
+ expect(data).to.be.ok
365
+ } catch(error) {
366
+ expect(error.requestId).to.be.ok
367
+ expect(error.code).to.be.ok
368
+ }
369
+ })
370
+
341
371
  it("rum.v20210622.DescribeDataCustomUrl", async function () {
342
372
  try {
343
373
  const data = await client.DescribeDataCustomUrl({})
@@ -408,9 +438,9 @@ it("rum.v20210622.DeleteWhitelist", async function () {
408
438
  }
409
439
  })
410
440
 
411
- it("rum.v20210622.DescribeDataFetchUrlInfo", async function () {
441
+ it("rum.v20210622.CreateTawInstance", async function () {
412
442
  try {
413
- const data = await client.DescribeDataFetchUrlInfo({})
443
+ const data = await client.CreateTawInstance({})
414
444
  expect(data).to.be.ok
415
445
  } catch(error) {
416
446
  expect(error.requestId).to.be.ok
@@ -498,6 +528,16 @@ it("rum.v20210622.DescribeOfflineLogConfigs", async function () {
498
528
  }
499
529
  })
500
530
 
531
+ it("rum.v20210622.DescribeReleaseFileSign", async function () {
532
+ try {
533
+ const data = await client.DescribeReleaseFileSign({})
534
+ expect(data).to.be.ok
535
+ } catch(error) {
536
+ expect(error.requestId).to.be.ok
537
+ expect(error.code).to.be.ok
538
+ }
539
+ })
540
+
501
541
  it("rum.v20210622.DescribeDataLogUrlInfo", async function () {
502
542
  try {
503
543
  const data = await client.DescribeDataLogUrlInfo({})
@@ -578,9 +618,9 @@ it("rum.v20210622.DescribeUvList", async function () {
578
618
  }
579
619
  })
580
620
 
581
- it("rum.v20210622.DeleteOfflineLogConfig", async function () {
621
+ it("rum.v20210622.DescribeDataFetchProject", async function () {
582
622
  try {
583
- const data = await client.DeleteOfflineLogConfig({})
623
+ const data = await client.DescribeDataFetchProject({})
584
624
  expect(data).to.be.ok
585
625
  } catch(error) {
586
626
  expect(error.requestId).to.be.ok
@@ -48,6 +48,16 @@ it("trp.v20210515.ModifyTraceCodeUnlink", async function () {
48
48
  }
49
49
  })
50
50
 
51
+ it("trp.v20210515.AuthorizedTransfer", async function () {
52
+ try {
53
+ const data = await client.AuthorizedTransfer({})
54
+ expect(data).to.be.ok
55
+ } catch(error) {
56
+ expect(error.requestId).to.be.ok
57
+ expect(error.code).to.be.ok
58
+ }
59
+ })
60
+
51
61
  it("trp.v20210515.DescribeCustomRuleById", async function () {
52
62
  try {
53
63
  const data = await client.DescribeCustomRuleById({})
@@ -148,6 +158,16 @@ it("trp.v20210515.DescribeCorpQuotas", async function () {
148
158
  }
149
159
  })
150
160
 
161
+ it("trp.v20210515.ReportBatchCallbackStatus", async function () {
162
+ try {
163
+ const data = await client.ReportBatchCallbackStatus({})
164
+ expect(data).to.be.ok
165
+ } catch(error) {
166
+ expect(error.requestId).to.be.ok
167
+ expect(error.code).to.be.ok
168
+ }
169
+ })
170
+
151
171
  it("trp.v20210515.ModifyCustomRule", async function () {
152
172
  try {
153
173
  const data = await client.ModifyCustomRule({})
@@ -248,6 +268,16 @@ it("trp.v20210515.CreateCustomPack", async function () {
248
268
  }
249
269
  })
250
270
 
271
+ it("trp.v20210515.DescribeTraceDataById", async function () {
272
+ try {
273
+ const data = await client.DescribeTraceDataById({})
274
+ expect(data).to.be.ok
275
+ } catch(error) {
276
+ expect(error.requestId).to.be.ok
277
+ expect(error.code).to.be.ok
278
+ }
279
+ })
280
+
251
281
  it("trp.v20210515.CreateCorporationOrder", async function () {
252
282
  try {
253
283
  const data = await client.CreateCorporationOrder({})
@@ -338,6 +368,16 @@ it("trp.v20210515.CreateCodeBatch", async function () {
338
368
  }
339
369
  })
340
370
 
371
+ it("trp.v20210515.EffectFeedback", async function () {
372
+ try {
373
+ const data = await client.EffectFeedback({})
374
+ expect(data).to.be.ok
375
+ } catch(error) {
376
+ expect(error.requestId).to.be.ok
377
+ expect(error.code).to.be.ok
378
+ }
379
+ })
380
+
341
381
  it("trp.v20210515.DeleteCodeBatch", async function () {
342
382
  try {
343
383
  const data = await client.DeleteCodeBatch({})
@@ -368,9 +408,9 @@ it("trp.v20210515.CreateTraceData", async function () {
368
408
  }
369
409
  })
370
410
 
371
- it("trp.v20210515.CreateMerchant", async function () {
411
+ it("trp.v20210515.CreateCodePack", async function () {
372
412
  try {
373
- const data = await client.CreateMerchant({})
413
+ const data = await client.CreateCodePack({})
374
414
  expect(data).to.be.ok
375
415
  } catch(error) {
376
416
  expect(error.requestId).to.be.ok
@@ -438,9 +478,9 @@ it("trp.v20210515.DescribeMerchants", async function () {
438
478
  }
439
479
  })
440
480
 
441
- it("trp.v20210515.CreateCodePack", async function () {
481
+ it("trp.v20210515.CreateMerchant", async function () {
442
482
  try {
443
- const data = await client.CreateCodePack({})
483
+ const data = await client.CreateMerchant({})
444
484
  expect(data).to.be.ok
445
485
  } catch(error) {
446
486
  expect(error.requestId).to.be.ok
@@ -28,9 +28,9 @@ it("waf.v20180125.DescribeAccessExports", async function () {
28
28
  }
29
29
  })
30
30
 
31
- it("waf.v20180125.ModifyCustomRuleStatus", async function () {
31
+ it("waf.v20180125.DescribePeakPoints", async function () {
32
32
  try {
33
- const data = await client.ModifyCustomRuleStatus({})
33
+ const data = await client.DescribePeakPoints({})
34
34
  expect(data).to.be.ok
35
35
  } catch(error) {
36
36
  expect(error.requestId).to.be.ok
@@ -278,9 +278,19 @@ it("waf.v20180125.PostAttackDownloadTask", async function () {
278
278
  }
279
279
  })
280
280
 
281
- it("waf.v20180125.SwitchDomainRules", async function () {
281
+ it("waf.v20180125.ModifyCustomRuleStatus", async function () {
282
282
  try {
283
- const data = await client.SwitchDomainRules({})
283
+ const data = await client.ModifyCustomRuleStatus({})
284
+ expect(data).to.be.ok
285
+ } catch(error) {
286
+ expect(error.requestId).to.be.ok
287
+ expect(error.code).to.be.ok
288
+ }
289
+ })
290
+
291
+ it("waf.v20180125.DescribePeakValue", async function () {
292
+ try {
293
+ const data = await client.DescribePeakValue({})
284
294
  expect(data).to.be.ok
285
295
  } catch(error) {
286
296
  expect(error.requestId).to.be.ok
@@ -448,6 +458,16 @@ it("waf.v20180125.AddDomainWhiteRule", async function () {
448
458
  }
449
459
  })
450
460
 
461
+ it("waf.v20180125.SwitchDomainRules", async function () {
462
+ try {
463
+ const data = await client.SwitchDomainRules({})
464
+ expect(data).to.be.ok
465
+ } catch(error) {
466
+ expect(error.requestId).to.be.ok
467
+ expect(error.code).to.be.ok
468
+ }
469
+ })
470
+
451
471
  it("waf.v20180125.DescribeCustomWhiteRule", async function () {
452
472
  try {
453
473
  const data = await client.DescribeCustomWhiteRule({})