tencentcloud-sdk-nodejs 4.0.462 → 4.0.463

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 (50) hide show
  1. package/CHANGELOG.md +168 -0
  2. package/SERVICE_CHANGELOG.md +214 -67
  3. package/package.json +1 -1
  4. package/products.md +13 -13
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/bma/v20210624/bma_client.ts +14 -2
  7. package/src/services/bma/v20210624/bma_models.ts +96 -1
  8. package/src/services/captcha/v20190722/captcha_client.ts +8 -4
  9. package/src/services/captcha/v20190722/captcha_models.ts +214 -42
  10. package/src/services/cpdp/v20190820/cpdp_client.ts +18 -2
  11. package/src/services/cpdp/v20190820/cpdp_models.ts +358 -33
  12. package/src/services/essbasic/v20210526/essbasic_client.ts +11 -8
  13. package/src/services/essbasic/v20210526/essbasic_models.ts +18 -13
  14. package/src/services/lcic/v20220817/lcic_client.ts +74 -25
  15. package/src/services/lcic/v20220817/lcic_models.ts +333 -137
  16. package/src/services/monitor/v20180724/monitor_client.ts +1 -0
  17. package/src/services/monitor/v20180724/monitor_models.ts +29 -0
  18. package/src/services/ses/v20201002/ses_client.ts +2 -2
  19. package/src/services/soe/v20180724/soe_models.ts +2 -2
  20. package/src/services/tcb/v20180608/tcb_client.ts +12 -0
  21. package/src/services/tcb/v20180608/tcb_models.ts +25 -0
  22. package/src/services/trp/v20210515/trp_models.ts +7 -7
  23. package/tencentcloud/common/sdk_version.d.ts +1 -1
  24. package/tencentcloud/common/sdk_version.js +1 -1
  25. package/tencentcloud/services/bma/v20210624/bma_client.d.ts +7 -3
  26. package/tencentcloud/services/bma/v20210624/bma_client.js +8 -2
  27. package/tencentcloud/services/bma/v20210624/bma_models.d.ts +79 -1
  28. package/tencentcloud/services/captcha/v20190722/captcha_client.d.ts +2 -2
  29. package/tencentcloud/services/captcha/v20190722/captcha_models.d.ts +182 -38
  30. package/tencentcloud/services/cpdp/v20190820/cpdp_client.d.ts +5 -1
  31. package/tencentcloud/services/cpdp/v20190820/cpdp_client.js +6 -0
  32. package/tencentcloud/services/cpdp/v20190820/cpdp_models.d.ts +298 -29
  33. package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +11 -8
  34. package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +11 -8
  35. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +15 -11
  36. package/tencentcloud/services/lcic/v20220817/lcic_client.d.ts +21 -5
  37. package/tencentcloud/services/lcic/v20220817/lcic_client.js +30 -6
  38. package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +299 -133
  39. package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +25 -0
  40. package/tencentcloud/services/ses/v20201002/ses_client.d.ts +2 -2
  41. package/tencentcloud/services/ses/v20201002/ses_client.js +2 -2
  42. package/tencentcloud/services/soe/v20180724/soe_models.d.ts +2 -2
  43. package/tencentcloud/services/tcb/v20180608/tcb_client.d.ts +5 -1
  44. package/tencentcloud/services/tcb/v20180608/tcb_client.js +6 -0
  45. package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +22 -0
  46. package/tencentcloud/services/trp/v20210515/trp_models.d.ts +7 -7
  47. package/test/bma.v20210624.test.js +10 -0
  48. package/test/cpdp.v20190820.test.js +10 -0
  49. package/test/lcic.v20220817.test.js +44 -4
  50. package/test/tcb.v20180608.test.js +10 -0
@@ -116,7 +116,7 @@ ServerType不填默认为0
116
116
  */
117
117
  export interface Keyword {
118
118
  /**
119
- * 被评估语音对应的文本,句子模式下不超过个 20 单词或者中文文字,段落模式不超过 120 单词或者中文文字,中文评估使用 utf-8 编码,自由说模式RefText可以不填。如需要在单词模式和句子模式下使用自定义音素,可以通过设置 TextMode 使用[音素标注](https://cloud.tencent.com/document/product/884/33698)。
119
+ * 被评估语音对应的文本,句子模式下不超过 20个单词或者中文文字,段落模式不超过 120个单词或者中文文字,中文文字需使用 utf-8 编码,自由说模式RefText可以不填。如需要在单词模式和句子模式下使用自定义音素,可以通过设置 TextMode 使用[音素标注](https://cloud.tencent.com/document/product/884/33698)。
120
120
  */
121
121
  RefText: string;
122
122
  /**
@@ -129,7 +129,7 @@ export interface Keyword {
129
129
  ScoreCoeff: number;
130
130
  /**
131
131
  * 评估语言,0:英文,1:中文。
132
- ServerType不填默认传0
132
+ ServerType不填默认为0
133
133
  */
134
134
  ServerType?: number;
135
135
  /**
@@ -1,6 +1,6 @@
1
1
  import { AbstractClient } from "../../../common/abstract_client";
2
2
  import { ClientConfig } from "../../../common/interface";
3
- import { DescribeEnvLimitResponse, DescribeCloudBaseRunAllVpcsResponse, CheckTcbServiceResponse, DescribeCloudBaseRunConfForGateWayRequest, DescribeCloudBaseRunServerVersionRequest, TurnOnStandaloneGatewayResponse, DescribeEnvLimitRequest, DescribeEnvDealRegionResponse, DeleteCloudBaseRunServerVersionResponse, RollUpdateCloudBaseRunServerVersionResponse, SearchClsLogResponse, CommonServiceAPIResponse, DescribeStandaloneGatewayRequest, DescribeStandaloneGatewayPackageRequest, DescribePostpayPackageFreeQuotasRequest, DescribeEndUserLoginStatisticRequest, DescribeCloudBaseBuildServiceResponse, DescribeEndUsersRequest, DescribeCloudBaseRunPodListResponse, DescribeCloudBaseRunServerDomainNameResponse, DestroyStandaloneGatewayRequest, CreateWxCloudBaseRunServerDBClusterResponse, ReplaceActivityRecordResponse, DescribeSpecialCostItemsRequest, CreatePostpayPackageRequest, DescribeWxCloudBaseRunSubNetsRequest, ModifyEndUserRequest, DescribeCurveDataResponse, DescribeBaasPackageListRequest, DescribeCloudBaseRunOperationTypesRequest, DescribeAuthDomainsResponse, DescribeCloudBaseRunOneClickTaskExternalRequest, DescribeStandaloneGatewayResponse, DescribeWxCloudBaseRunEnvsResponse, CreateHostingDomainRequest, DescribeCloudBaseRunResourceRequest, DescribeCloudBaseRunServerRequest, DescribePostpayFreeQuotasRequest, DescribeActivityInfoResponse, DestroyStandaloneGatewayResponse, DescribeCloudBaseRunServerVersionResponse, DeleteEndUserRequest, DescribeHostingDomainTaskRequest, FreezeCloudBaseRunServersRequest, DescribeQuotaDataResponse, CommonServiceAPIRequest, DestroyStaticStoreRequest, CreateWxCloudBaseRunEnvRequest, ModifyCloudBaseRunServerFlowConfRequest, DescribeActivityRecordResponse, CreateStaticStoreRequest, CreateWxCloudBaseRunServerDBClusterRequest, DeleteCloudBaseProjectLatestVersionResponse, CreateAuthDomainResponse, ModifyDatabaseACLRequest, DescribeEnvsRequest, DeleteWxGatewayRouteRequest, DescribeEnvPostpaidDeductRequest, DescribeExtraPkgBillingInfoRequest, BindEnvGatewayResponse, DescribeWxCloudBaseRunSubNetsResponse, DescribeEnvFreeQuotaRequest, DescribeEndUserLoginStatisticResponse, DescribeExtensionUploadInfoRequest, DescribeEnvPostpaidDeductResponse, CreateCloudBaseRunResourceResponse, DescribeStandaloneGatewayPackageResponse, DestroyStaticStoreResponse, DeleteEndUserResponse, ModifyDatabaseACLResponse, ModifyCloudBaseRunServerFlowConfResponse, DescribeCloudBaseRunOperationTypesResponse, EstablishCloudBaseRunServerResponse, DestroyEnvRequest, DestroyEnvResponse, DescribeCloudBaseProjectVersionListRequest, DescribeCloudBaseRunOneClickTaskExternalResponse, TurnOffStandaloneGatewayResponse, DescribeEnvsResponse, CreateAuthDomainRequest, CreateHostingDomainResponse, DescribeActivityRecordRequest, CreateWxCloudBaseRunEnvResponse, DeleteCloudBaseRunServerVersionRequest, CreateCloudBaseRunServerVersionRequest, DescribeCloudBaseRunServerDomainNameRequest, DescribeCloudBaseRunAllVpcsRequest, CreatePostpayPackageResponse, DescribeBaasPackageListResponse, ReplaceActivityRecordRequest, DeleteWxGatewayRouteResponse, UnfreezeCloudBaseRunServersRequest, EstablishCloudBaseRunServerRequest, ReinstateEnvResponse, DescribeSpecialCostItemsResponse, CreateStandaloneGatewayRequest, DescribeCloudBaseProjectVersionListResponse, DescribeDownloadFileRequest, DescribeEndUserStatisticRequest, DescribeEnvFreeQuotaResponse, CreateAndDeployCloudBaseProjectResponse, DescribeCloudBaseRunResourceForExtendResponse, CreateAndDeployCloudBaseProjectRequest, DescribeCloudBaseRunVersionRequest, EstablishWxGatewayRouteRequest, UnfreezeCloudBaseRunServersResponse, DescribeCloudBaseRunConfForGateWayResponse, TurnOffStandaloneGatewayRequest, ReinstateEnvRequest, EstablishWxGatewayRouteResponse, DescribeDatabaseACLRequest, CreateCloudBaseRunServerVersionResponse, DeleteCloudBaseProjectLatestVersionRequest, DescribeCloudBaseProjectLatestVersionListResponse, DescribeSmsQuotasResponse, DescribeWxCloudBaseRunEnvsRequest, DescribeCloudBaseRunVersionRsByConditionResponse, DescribeCurveDataRequest, DescribeActivityInfoRequest, BindEnvGatewayRequest, ModifyEnvResponse, DescribeDownloadFileResponse, CreateStandaloneGatewayResponse, DescribeQuotaDataRequest, CreateStaticStoreResponse, DescribeCloudBaseRunResourceResponse, DescribeCloudBaseRunVersionSnapshotRequest, TurnOnStandaloneGatewayRequest, DescribeUserActivityInfoResponse, DescribePostpayFreeQuotasResponse, DescribeCloudBaseProjectLatestVersionListRequest, DescribeEndUsersResponse, DescribeHostingDomainTaskResponse, DescribeEndUserStatisticResponse, DescribeSmsQuotasRequest, DescribeCloudBaseRunVersionResponse, DescribeCloudBaseRunResourceForExtendRequest, DescribeCloudBaseBuildServiceRequest, SearchClsLogRequest, CheckTcbServiceRequest, DescribeCloudBaseRunVersionRsByConditionRequest, DescribeCloudBaseRunServerResponse, DescribeUserActivityInfoRequest, DescribeCloudBaseRunPodListRequest, CreateCloudBaseRunResourceRequest, ModifyEndUserResponse, DescribeAuthDomainsRequest, FreezeCloudBaseRunServersResponse, DescribeEnvDealRegionRequest, DescribeDatabaseACLResponse, ModifyCloudBaseRunServerVersionResponse, DescribeExtensionUploadInfoResponse, ModifyEnvRequest, DescribeCloudBaseRunVersionSnapshotResponse, DescribePostpayPackageFreeQuotasResponse, DescribeExtraPkgBillingInfoResponse, ModifyCloudBaseRunServerVersionRequest, RollUpdateCloudBaseRunServerVersionRequest } from "./tcb_models";
3
+ import { DescribeEnvLimitResponse, DescribeCloudBaseRunAllVpcsResponse, CheckTcbServiceResponse, DescribeCloudBaseRunConfForGateWayRequest, DescribeCloudBaseRunServerVersionRequest, TurnOnStandaloneGatewayResponse, DescribeEnvLimitRequest, DescribeEnvDealRegionResponse, DeleteCloudBaseRunServerVersionResponse, RollUpdateCloudBaseRunServerVersionResponse, SearchClsLogResponse, ModifyClsTopicResponse, CommonServiceAPIResponse, DescribeStandaloneGatewayRequest, DescribeStandaloneGatewayPackageRequest, DescribePostpayPackageFreeQuotasRequest, DescribeEndUserLoginStatisticRequest, DescribeCloudBaseBuildServiceResponse, DescribeEndUsersRequest, DescribeCloudBaseRunPodListResponse, DescribeCloudBaseRunServerDomainNameResponse, DestroyStandaloneGatewayRequest, CreateWxCloudBaseRunServerDBClusterResponse, ReplaceActivityRecordResponse, DescribeSpecialCostItemsRequest, CreatePostpayPackageRequest, DescribeWxCloudBaseRunSubNetsRequest, ModifyEndUserRequest, DescribeCurveDataResponse, DescribeBaasPackageListRequest, DescribeCloudBaseRunOperationTypesRequest, DescribeAuthDomainsResponse, DescribeCloudBaseRunOneClickTaskExternalRequest, ModifyClsTopicRequest, DescribeStandaloneGatewayResponse, DescribeWxCloudBaseRunEnvsResponse, CreateHostingDomainRequest, DescribeCloudBaseRunResourceRequest, DescribeCloudBaseRunServerRequest, DescribePostpayFreeQuotasRequest, DescribeActivityInfoResponse, DestroyStandaloneGatewayResponse, DescribeCloudBaseRunServerVersionResponse, DeleteEndUserRequest, DescribeHostingDomainTaskRequest, FreezeCloudBaseRunServersRequest, DescribeQuotaDataResponse, CommonServiceAPIRequest, DestroyStaticStoreRequest, CreateWxCloudBaseRunEnvRequest, ModifyCloudBaseRunServerFlowConfRequest, DescribeActivityRecordResponse, CreateStaticStoreRequest, CreateWxCloudBaseRunServerDBClusterRequest, DeleteCloudBaseProjectLatestVersionResponse, CreateAuthDomainResponse, ModifyDatabaseACLRequest, DescribeEnvsRequest, DeleteWxGatewayRouteRequest, DescribeEnvPostpaidDeductRequest, DescribeExtraPkgBillingInfoRequest, BindEnvGatewayResponse, DescribeWxCloudBaseRunSubNetsResponse, DescribeEnvFreeQuotaRequest, DescribeEndUserLoginStatisticResponse, DescribeExtensionUploadInfoRequest, DescribeEnvPostpaidDeductResponse, CreateCloudBaseRunResourceResponse, DescribeStandaloneGatewayPackageResponse, DestroyStaticStoreResponse, DeleteEndUserResponse, ModifyDatabaseACLResponse, ModifyCloudBaseRunServerFlowConfResponse, DescribeCloudBaseRunOperationTypesResponse, EstablishCloudBaseRunServerResponse, DestroyEnvRequest, DestroyEnvResponse, DescribeCloudBaseProjectVersionListRequest, DescribeCloudBaseRunOneClickTaskExternalResponse, TurnOffStandaloneGatewayResponse, DescribeEnvsResponse, CreateAuthDomainRequest, CreateHostingDomainResponse, DescribeActivityRecordRequest, CreateWxCloudBaseRunEnvResponse, DeleteCloudBaseRunServerVersionRequest, CreateCloudBaseRunServerVersionRequest, DescribeCloudBaseRunServerDomainNameRequest, DescribeCloudBaseRunAllVpcsRequest, CreatePostpayPackageResponse, DescribeBaasPackageListResponse, ReplaceActivityRecordRequest, DeleteWxGatewayRouteResponse, UnfreezeCloudBaseRunServersRequest, EstablishCloudBaseRunServerRequest, ReinstateEnvResponse, DescribeSpecialCostItemsResponse, CreateStandaloneGatewayRequest, DescribeCloudBaseProjectVersionListResponse, DescribeDownloadFileRequest, DescribeEndUserStatisticRequest, DescribeEnvFreeQuotaResponse, CreateAndDeployCloudBaseProjectResponse, DescribeCloudBaseRunResourceForExtendResponse, CreateAndDeployCloudBaseProjectRequest, DescribeCloudBaseRunVersionRequest, EstablishWxGatewayRouteRequest, UnfreezeCloudBaseRunServersResponse, DescribeCloudBaseRunConfForGateWayResponse, TurnOffStandaloneGatewayRequest, ReinstateEnvRequest, EstablishWxGatewayRouteResponse, DescribeDatabaseACLRequest, CreateCloudBaseRunServerVersionResponse, DeleteCloudBaseProjectLatestVersionRequest, DescribeCloudBaseProjectLatestVersionListResponse, DescribeSmsQuotasResponse, DescribeWxCloudBaseRunEnvsRequest, DescribeCloudBaseRunVersionRsByConditionResponse, DescribeCurveDataRequest, DescribeActivityInfoRequest, BindEnvGatewayRequest, ModifyEnvResponse, DescribeDownloadFileResponse, CreateStandaloneGatewayResponse, DescribeQuotaDataRequest, CreateStaticStoreResponse, DescribeCloudBaseRunResourceResponse, DescribeCloudBaseRunVersionSnapshotRequest, TurnOnStandaloneGatewayRequest, DescribeUserActivityInfoResponse, DescribePostpayFreeQuotasResponse, DescribeCloudBaseProjectLatestVersionListRequest, DescribeEndUsersResponse, DescribeHostingDomainTaskResponse, DescribeEndUserStatisticResponse, DescribeSmsQuotasRequest, DescribeCloudBaseRunVersionResponse, DescribeCloudBaseRunResourceForExtendRequest, DescribeCloudBaseBuildServiceRequest, SearchClsLogRequest, CheckTcbServiceRequest, DescribeCloudBaseRunVersionRsByConditionRequest, DescribeCloudBaseRunServerResponse, DescribeUserActivityInfoRequest, DescribeCloudBaseRunPodListRequest, CreateCloudBaseRunResourceRequest, ModifyEndUserResponse, DescribeAuthDomainsRequest, FreezeCloudBaseRunServersResponse, DescribeEnvDealRegionRequest, DescribeDatabaseACLResponse, ModifyCloudBaseRunServerVersionResponse, DescribeExtensionUploadInfoResponse, ModifyEnvRequest, DescribeCloudBaseRunVersionSnapshotResponse, DescribePostpayPackageFreeQuotasResponse, DescribeExtraPkgBillingInfoResponse, ModifyCloudBaseRunServerVersionRequest, RollUpdateCloudBaseRunServerVersionRequest } from "./tcb_models";
4
4
  /**
5
5
  * tcb client
6
6
  * @class
@@ -23,6 +23,10 @@ export declare class Client extends AbstractClient {
23
23
  * 创建或修改安全网关路由
24
24
  */
25
25
  EstablishWxGatewayRoute(req: EstablishWxGatewayRouteRequest, cb?: (error: string, rep: EstablishWxGatewayRouteResponse) => void): Promise<EstablishWxGatewayRouteResponse>;
26
+ /**
27
+ * 修改日志主题
28
+ */
29
+ ModifyClsTopic(req: ModifyClsTopicRequest, cb?: (error: string, rep: ModifyClsTopicResponse) => void): Promise<ModifyClsTopicResponse>;
26
30
  /**
27
31
  * 本接口(DestroyStandaloneGateway)用于销毁小租户网关。
28
32
  */
@@ -51,6 +51,12 @@ class Client extends abstract_client_1.AbstractClient {
51
51
  async EstablishWxGatewayRoute(req, cb) {
52
52
  return this.request("EstablishWxGatewayRoute", req, cb);
53
53
  }
54
+ /**
55
+ * 修改日志主题
56
+ */
57
+ async ModifyClsTopic(req, cb) {
58
+ return this.request("ModifyClsTopic", req, cb);
59
+ }
54
60
  /**
55
61
  * 本接口(DestroyStandaloneGateway)用于销毁小租户网关。
56
62
  */
@@ -279,6 +279,15 @@ export interface SearchClsLogResponse {
279
279
  */
280
280
  RequestId?: string;
281
281
  }
282
+ /**
283
+ * ModifyClsTopic返回参数结构体
284
+ */
285
+ export interface ModifyClsTopicResponse {
286
+ /**
287
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
288
+ */
289
+ RequestId?: string;
290
+ }
282
291
  /**
283
292
  * 独立网关信息
284
293
  */
@@ -978,6 +987,19 @@ export interface DescribeCloudBaseRunOneClickTaskExternalRequest {
978
987
  */
979
988
  ExternalId: string;
980
989
  }
990
+ /**
991
+ * ModifyClsTopic请求参数结构体
992
+ */
993
+ export interface ModifyClsTopicRequest {
994
+ /**
995
+ * 环境ID
996
+ */
997
+ EnvId: string;
998
+ /**
999
+ * 日志生命周期,单位天,可取值范围1~3600,取值为3640时代表永久保存
1000
+ */
1001
+ Period?: number;
1002
+ }
981
1003
  /**
982
1004
  * DescribeStandaloneGateway返回参数结构体
983
1005
  */
@@ -244,12 +244,12 @@ export interface CodePack {
244
244
  */
245
245
  UpdateTime: string;
246
246
  /**
247
- * 状态
247
+ * 制码状态 init: 初始化, pending: 执行中, done: 完成, error: 失败
248
248
  注意:此字段可能返回 null,表示取不到有效值。
249
249
  */
250
250
  Status: string;
251
251
  /**
252
- * 记录
252
+ * 执行日志
253
253
  注意:此字段可能返回 null,表示取不到有效值。
254
254
  */
255
255
  Log: string;
@@ -279,12 +279,12 @@ export interface CodePack {
279
279
  */
280
280
  Cipher: number;
281
281
  /**
282
- * 文字码地址
282
+ * [弃用] 文字码地址,通过另一个接口查
283
283
  注意:此字段可能返回 null,表示取不到有效值。
284
284
  */
285
285
  TextUrl: string;
286
286
  /**
287
- * 二维码地址
287
+ * [弃用] 二维码地址,通过另一个接口查
288
288
  注意:此字段可能返回 null,表示取不到有效值。
289
289
  */
290
290
  PackUrl: string;
@@ -1846,7 +1846,7 @@ export interface DescribeTmpTokenRequest {
1846
1846
  */
1847
1847
  export interface TraceCode {
1848
1848
  /**
1849
- *
1849
+ * 二维码
1850
1850
  */
1851
1851
  Code: string;
1852
1852
  /**
@@ -1854,7 +1854,7 @@ export interface TraceCode {
1854
1854
  */
1855
1855
  CorpId: number;
1856
1856
  /**
1857
- * ID
1857
+ * 码包ID
1858
1858
  */
1859
1859
  PackId: string;
1860
1860
  /**
@@ -1870,7 +1870,7 @@ export interface TraceCode {
1870
1870
  */
1871
1871
  ProductId: string;
1872
1872
  /**
1873
- * 状态
1873
+ * 码状态 0: 冻结 1: 激活
1874
1874
  */
1875
1875
  Status: number;
1876
1876
  /**
@@ -68,6 +68,16 @@ it("bma.v20210624.CreateBPOfflineTicket", async function () {
68
68
  }
69
69
  })
70
70
 
71
+ it("bma.v20210624.DescribeCRObtainDetail", async function () {
72
+ try {
73
+ const data = await client.DescribeCRObtainDetail({})
74
+ expect(data).to.be.ok
75
+ } catch(error) {
76
+ expect(error.requestId).to.be.ok
77
+ expect(error.code).to.be.ok
78
+ }
79
+ })
80
+
71
81
  it("bma.v20210624.CreateCRBlock", async function () {
72
82
  try {
73
83
  const data = await client.CreateCRBlock({})
@@ -668,6 +668,16 @@ it("cpdp.v20190820.CreatePayRollPreOrder", async function () {
668
668
  }
669
669
  })
670
670
 
671
+ it("cpdp.v20190820.CreateOpenBankGlobalPaymentOrder", async function () {
672
+ try {
673
+ const data = await client.CreateOpenBankGlobalPaymentOrder({})
674
+ expect(data).to.be.ok
675
+ } catch(error) {
676
+ expect(error.requestId).to.be.ok
677
+ expect(error.code).to.be.ok
678
+ }
679
+ })
680
+
671
681
  it("cpdp.v20190820.AddContract", async function () {
672
682
  try {
673
683
  const data = await client.AddContract({})
@@ -38,9 +38,39 @@ it("lcic.v20220817.SetAppCustomContent", async function () {
38
38
  }
39
39
  })
40
40
 
41
- it("lcic.v20220817.DescribeUser", async function () {
41
+ it("lcic.v20220817.DescribeRoomStatistics", async function () {
42
42
  try {
43
- const data = await client.DescribeUser({})
43
+ const data = await client.DescribeRoomStatistics({})
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
+
51
+ it("lcic.v20220817.DeleteRoom", async function () {
52
+ try {
53
+ const data = await client.DeleteRoom({})
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
+
61
+ it("lcic.v20220817.UnbindDocumentFromRoom", async function () {
62
+ try {
63
+ const data = await client.UnbindDocumentFromRoom({})
64
+ expect(data).to.be.ok
65
+ } catch(error) {
66
+ expect(error.requestId).to.be.ok
67
+ expect(error.code).to.be.ok
68
+ }
69
+ })
70
+
71
+ it("lcic.v20220817.BindDocumentToRoom", async function () {
72
+ try {
73
+ const data = await client.BindDocumentToRoom({})
44
74
  expect(data).to.be.ok
45
75
  } catch(error) {
46
76
  expect(error.requestId).to.be.ok
@@ -58,9 +88,19 @@ it("lcic.v20220817.LoginOriginId", async function () {
58
88
  }
59
89
  })
60
90
 
61
- it("lcic.v20220817.DeleteRoom", async function () {
91
+ it("lcic.v20220817.DescribeUser", async function () {
62
92
  try {
63
- const data = await client.DeleteRoom({})
93
+ const data = await client.DescribeUser({})
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
+
101
+ it("lcic.v20220817.ModifyApp", async function () {
102
+ try {
103
+ const data = await client.ModifyApp({})
64
104
  expect(data).to.be.ok
65
105
  } catch(error) {
66
106
  expect(error.requestId).to.be.ok
@@ -58,6 +58,16 @@ it("tcb.v20180608.EstablishWxGatewayRoute", async function () {
58
58
  }
59
59
  })
60
60
 
61
+ it("tcb.v20180608.ModifyClsTopic", async function () {
62
+ try {
63
+ const data = await client.ModifyClsTopic({})
64
+ expect(data).to.be.ok
65
+ } catch(error) {
66
+ expect(error.requestId).to.be.ok
67
+ expect(error.code).to.be.ok
68
+ }
69
+ })
70
+
61
71
  it("tcb.v20180608.DestroyStandaloneGateway", async function () {
62
72
  try {
63
73
  const data = await client.DestroyStandaloneGateway({})