tencentcloud-sdk-nodejs 4.0.484 → 4.0.485

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 (44) hide show
  1. package/CHANGELOG.md +125 -0
  2. package/SERVICE_CHANGELOG.md +142 -102
  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/ccc/v20200210/ccc_client.ts +54 -15
  7. package/src/services/ccc/v20200210/ccc_models.ts +283 -60
  8. package/src/services/cfs/v20190719/cfs_models.ts +6 -1
  9. package/src/services/cvm/v20170312/cvm_client.ts +1 -0
  10. package/src/services/ess/v20201111/ess_client.ts +112 -0
  11. package/src/services/essbasic/v20210526/essbasic_client.ts +12 -0
  12. package/src/services/essbasic/v20210526/essbasic_models.ts +86 -2
  13. package/src/services/iai/v20180301/iai_models.ts +1 -1
  14. package/src/services/iai/v20200303/iai_models.ts +1 -1
  15. package/src/services/iotexplorer/v20190423/iotexplorer_client.ts +16 -3
  16. package/src/services/iotexplorer/v20190423/iotexplorer_models.ts +102 -26
  17. package/src/services/ssl/v20191205/ssl_models.ts +7 -1
  18. package/src/services/tke/v20180525/tke_models.ts +20 -0
  19. package/src/services/trtc/v20190722/trtc_client.ts +4 -4
  20. package/tencentcloud/common/sdk_version.d.ts +1 -1
  21. package/tencentcloud/common/sdk_version.js +1 -1
  22. package/tencentcloud/services/ccc/v20200210/ccc_client.d.ts +17 -5
  23. package/tencentcloud/services/ccc/v20200210/ccc_client.js +24 -6
  24. package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +239 -51
  25. package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +5 -1
  26. package/tencentcloud/services/cvm/v20170312/cvm_client.d.ts +1 -0
  27. package/tencentcloud/services/cvm/v20170312/cvm_client.js +1 -0
  28. package/tencentcloud/services/ess/v20201111/ess_client.d.ts +112 -0
  29. package/tencentcloud/services/ess/v20201111/ess_client.js +112 -0
  30. package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +5 -1
  31. package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +6 -0
  32. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +82 -2
  33. package/tencentcloud/services/iai/v20180301/iai_models.d.ts +1 -1
  34. package/tencentcloud/services/iai/v20200303/iai_models.d.ts +1 -1
  35. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.d.ts +5 -1
  36. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.js +6 -0
  37. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +89 -25
  38. package/tencentcloud/services/ssl/v20191205/ssl_models.d.ts +6 -1
  39. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +16 -0
  40. package/tencentcloud/services/trtc/v20190722/trtc_client.d.ts +4 -4
  41. package/tencentcloud/services/trtc/v20190722/trtc_client.js +4 -4
  42. package/test/ccc.v20200210.test.js +34 -4
  43. package/test/essbasic.v20210526.test.js +10 -0
  44. package/test/iotexplorer.v20190423.test.js +10 -0
@@ -78,9 +78,9 @@ it("ccc.v20200210.BindStaffSkillGroupList", async function () {
78
78
  }
79
79
  })
80
80
 
81
- it("ccc.v20200210.DescribeChatMessages", async function () {
81
+ it("ccc.v20200210.CreateCarrierPrivilegeNumberApplicant", async function () {
82
82
  try {
83
- const data = await client.DescribeChatMessages({})
83
+ const data = await client.CreateCarrierPrivilegeNumberApplicant({})
84
84
  expect(data).to.be.ok
85
85
  } catch(error) {
86
86
  expect(error.requestId).to.be.ok
@@ -158,9 +158,9 @@ it("ccc.v20200210.DescribeExtension", async function () {
158
158
  }
159
159
  })
160
160
 
161
- it("ccc.v20200210.DescribeTelSession", async function () {
161
+ it("ccc.v20200210.DescribeCarrierPrivilegeNumberApplicants", async function () {
162
162
  try {
163
- const data = await client.DescribeTelSession({})
163
+ const data = await client.DescribeCarrierPrivilegeNumberApplicants({})
164
164
  expect(data).to.be.ok
165
165
  } catch(error) {
166
166
  expect(error.requestId).to.be.ok
@@ -178,6 +178,16 @@ it("ccc.v20200210.CreateCallOutSession", async function () {
178
178
  }
179
179
  })
180
180
 
181
+ it("ccc.v20200210.DescribeTelSession", async function () {
182
+ try {
183
+ const data = await client.DescribeTelSession({})
184
+ expect(data).to.be.ok
185
+ } catch(error) {
186
+ expect(error.requestId).to.be.ok
187
+ expect(error.code).to.be.ok
188
+ }
189
+ })
190
+
181
191
  it("ccc.v20200210.DescribeAutoCalloutTask", async function () {
182
192
  try {
183
193
  const data = await client.DescribeAutoCalloutTask({})
@@ -218,6 +228,16 @@ it("ccc.v20200210.StopAutoCalloutTask", async function () {
218
228
  }
219
229
  })
220
230
 
231
+ it("ccc.v20200210.DescribeChatMessages", async function () {
232
+ try {
233
+ const data = await client.DescribeChatMessages({})
234
+ expect(data).to.be.ok
235
+ } catch(error) {
236
+ expect(error.requestId).to.be.ok
237
+ expect(error.code).to.be.ok
238
+ }
239
+ })
240
+
221
241
  it("ccc.v20200210.DescribeCCCBuyInfoList", async function () {
222
242
  try {
223
243
  const data = await client.DescribeCCCBuyInfoList({})
@@ -338,4 +358,14 @@ it("ccc.v20200210.CreateSDKLoginToken", async function () {
338
358
  }
339
359
  })
340
360
 
361
+ it("ccc.v20200210.DescribeActiveCarrierPrivilegeNumber", async function () {
362
+ try {
363
+ const data = await client.DescribeActiveCarrierPrivilegeNumber({})
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
  })
@@ -128,6 +128,16 @@ it("essbasic.v20210526.CreateConsoleLoginUrl", async function () {
128
128
  }
129
129
  })
130
130
 
131
+ it("essbasic.v20210526.ChannelCreateBoundFlows", async function () {
132
+ try {
133
+ const data = await client.ChannelCreateBoundFlows({})
134
+ expect(data).to.be.ok
135
+ } catch(error) {
136
+ expect(error.requestId).to.be.ok
137
+ expect(error.code).to.be.ok
138
+ }
139
+ })
140
+
131
141
  it("essbasic.v20210526.ChannelCreateBatchCancelFlowUrl", async function () {
132
142
  try {
133
143
  const data = await client.ChannelCreateBatchCancelFlowUrl({})
@@ -88,6 +88,16 @@ it("iotexplorer.v20190423.DirectBindDeviceInFamily", async function () {
88
88
  }
89
89
  })
90
90
 
91
+ it("iotexplorer.v20190423.DescribeDeviceLocationSolve", async function () {
92
+ try {
93
+ const data = await client.DescribeDeviceLocationSolve({})
94
+ expect(data).to.be.ok
95
+ } catch(error) {
96
+ expect(error.requestId).to.be.ok
97
+ expect(error.code).to.be.ok
98
+ }
99
+ })
100
+
91
101
  it("iotexplorer.v20190423.DescribeDeviceBindGateway", async function () {
92
102
  try {
93
103
  const data = await client.DescribeDeviceBindGateway({})