tencentcloud-sdk-nodejs 4.0.885 → 4.0.886

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 (46) hide show
  1. package/CHANGELOG.md +109 -0
  2. package/SERVICE_CHANGELOG.md +136 -267
  3. package/package.json +1 -1
  4. package/products.md +10 -10
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/emr/v20190103/emr_models.ts +4 -0
  7. package/src/services/ess/v20201111/ess_client.ts +10 -3
  8. package/src/services/ess/v20201111/ess_models.ts +24 -29
  9. package/src/services/essbasic/v20210526/essbasic_client.ts +14 -7
  10. package/src/services/essbasic/v20210526/essbasic_models.ts +15 -13
  11. package/src/services/iotexplorer/v20190423/iotexplorer_client.ts +1 -0
  12. package/src/services/iotexplorer/v20190423/iotexplorer_models.ts +26 -0
  13. package/src/services/iss/v20230517/iss_client.ts +29 -2
  14. package/src/services/iss/v20230517/iss_models.ts +154 -36
  15. package/src/services/ses/v20201002/ses_client.ts +70 -21
  16. package/src/services/ses/v20201002/ses_models.ts +278 -135
  17. package/src/services/ssl/v20191205/ssl_client.ts +2 -2
  18. package/src/services/ssl/v20191205/ssl_models.ts +6 -1
  19. package/src/services/tcr/v20190924/tcr_models.ts +4 -0
  20. package/src/services/tdmq/v20200217/tdmq_models.ts +1 -1
  21. package/src/services/vpc/v20170312/vpc_client.ts +2 -3
  22. package/tencentcloud/common/sdk_version.d.ts +1 -1
  23. package/tencentcloud/common/sdk_version.js +1 -1
  24. package/tencentcloud/services/emr/v20190103/emr_models.d.ts +4 -0
  25. package/tencentcloud/services/ess/v20201111/ess_client.d.ts +10 -3
  26. package/tencentcloud/services/ess/v20201111/ess_client.js +10 -3
  27. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +24 -29
  28. package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +13 -6
  29. package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +13 -6
  30. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +15 -13
  31. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +25 -0
  32. package/tencentcloud/services/iss/v20230517/iss_client.d.ts +9 -1
  33. package/tencentcloud/services/iss/v20230517/iss_client.js +12 -0
  34. package/tencentcloud/services/iss/v20230517/iss_models.d.ts +147 -36
  35. package/tencentcloud/services/ses/v20201002/ses_client.d.ts +21 -5
  36. package/tencentcloud/services/ses/v20201002/ses_client.js +30 -6
  37. package/tencentcloud/services/ses/v20201002/ses_models.d.ts +267 -133
  38. package/tencentcloud/services/ssl/v20191205/ssl_client.d.ts +2 -2
  39. package/tencentcloud/services/ssl/v20191205/ssl_client.js +2 -2
  40. package/tencentcloud/services/ssl/v20191205/ssl_models.d.ts +6 -1
  41. package/tencentcloud/services/tcr/v20190924/tcr_models.d.ts +4 -0
  42. package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +1 -1
  43. package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +0 -1
  44. package/tencentcloud/services/vpc/v20170312/vpc_client.js +0 -1
  45. package/test/iss.v20230517.test.js +20 -0
  46. package/test/ses.v20201002.test.js +44 -4
@@ -298,6 +298,16 @@ it("iss.v20230517.DescribeUserDevice", async function () {
298
298
  }
299
299
  })
300
300
 
301
+ it("iss.v20230517.QueryForbidPlayChannelList", async function () {
302
+ try {
303
+ const data = await client.QueryForbidPlayChannelList({})
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
+
301
311
  it("iss.v20230517.DescribeAITaskResult", async function () {
302
312
  try {
303
313
  const data = await client.DescribeAITaskResult({})
@@ -558,6 +568,16 @@ it("iss.v20230517.AddRecordPlan", async function () {
558
568
  }
559
569
  })
560
570
 
571
+ it("iss.v20230517.SetForbidPlayChannels", async function () {
572
+ try {
573
+ const data = await client.SetForbidPlayChannels({})
574
+ expect(data).to.be.ok
575
+ } catch(error) {
576
+ expect(error.requestId).to.be.ok
577
+ expect(error.code).to.be.ok
578
+ }
579
+ })
580
+
561
581
  it("iss.v20230517.ListOrganizationChannelNumbers", async function () {
562
582
  try {
563
583
  const data = await client.ListOrganizationChannelNumbers({})
@@ -98,9 +98,19 @@ it("ses.v20201002.GetEmailTemplate", async function () {
98
98
  }
99
99
  })
100
100
 
101
- it("ses.v20201002.GetStatisticsReport", async function () {
101
+ it("ses.v20201002.UpdateCustomBlackList", async function () {
102
102
  try {
103
- const data = await client.GetStatisticsReport({})
103
+ const data = await client.UpdateCustomBlackList({})
104
+ expect(data).to.be.ok
105
+ } catch(error) {
106
+ expect(error.requestId).to.be.ok
107
+ expect(error.code).to.be.ok
108
+ }
109
+ })
110
+
111
+ it("ses.v20201002.ListBlackEmailAddress", async function () {
112
+ try {
113
+ const data = await client.ListBlackEmailAddress({})
104
114
  expect(data).to.be.ok
105
115
  } catch(error) {
106
116
  expect(error.requestId).to.be.ok
@@ -188,6 +198,16 @@ it("ses.v20201002.UpdateEmailSmtpPassWord", async function () {
188
198
  }
189
199
  })
190
200
 
201
+ it("ses.v20201002.CreateCustomBlacklist", async function () {
202
+ try {
203
+ const data = await client.CreateCustomBlacklist({})
204
+ expect(data).to.be.ok
205
+ } catch(error) {
206
+ expect(error.requestId).to.be.ok
207
+ expect(error.code).to.be.ok
208
+ }
209
+ })
210
+
191
211
  it("ses.v20201002.DeleteEmailTemplate", async function () {
192
212
  try {
193
213
  const data = await client.DeleteEmailTemplate({})
@@ -228,6 +248,16 @@ it("ses.v20201002.CreateEmailIdentity", async function () {
228
248
  }
229
249
  })
230
250
 
251
+ it("ses.v20201002.DeleteCustomBlackList", async function () {
252
+ try {
253
+ const data = await client.DeleteCustomBlackList({})
254
+ expect(data).to.be.ok
255
+ } catch(error) {
256
+ expect(error.requestId).to.be.ok
257
+ expect(error.code).to.be.ok
258
+ }
259
+ })
260
+
231
261
  it("ses.v20201002.DeleteBlackList", async function () {
232
262
  try {
233
263
  const data = await client.DeleteBlackList({})
@@ -248,9 +278,19 @@ it("ses.v20201002.SendEmail", async function () {
248
278
  }
249
279
  })
250
280
 
251
- it("ses.v20201002.ListBlackEmailAddress", async function () {
281
+ it("ses.v20201002.ListCustomBlacklist", async function () {
252
282
  try {
253
- const data = await client.ListBlackEmailAddress({})
283
+ const data = await client.ListCustomBlacklist({})
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("ses.v20201002.GetStatisticsReport", async function () {
292
+ try {
293
+ const data = await client.GetStatisticsReport({})
254
294
  expect(data).to.be.ok
255
295
  } catch(error) {
256
296
  expect(error.requestId).to.be.ok