tencentcloud-sdk-nodejs 4.0.834 → 4.0.836
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.
- package/CHANGELOG.md +242 -0
- package/SERVICE_CHANGELOG.md +460 -529
- package/package.json +1 -1
- package/products.md +19 -19
- package/src/common/sdk_version.ts +1 -1
- package/src/services/aiart/v20221229/aiart_models.ts +11 -0
- package/src/services/asr/v20190614/asr_client.ts +1 -1
- package/src/services/asr/v20190614/asr_models.ts +3 -0
- package/src/services/bsca/v20210811/bsca_models.ts +9 -1
- package/src/services/ccc/v20200210/ccc_client.ts +2 -2
- package/src/services/ccc/v20200210/ccc_models.ts +10 -10
- package/src/services/domain/v20180808/domain_client.ts +30 -5
- package/src/services/domain/v20180808/domain_models.ts +298 -206
- package/src/services/dts/v20211206/dts_models.ts +2 -2
- package/src/services/ess/v20201111/ess_client.ts +71 -20
- package/src/services/ess/v20201111/ess_models.ts +321 -56
- package/src/services/essbasic/v20210526/essbasic_models.ts +1 -2
- package/src/services/iai/v20180301/iai_models.ts +10 -9
- package/src/services/lcic/v20220817/lcic_models.ts +22 -0
- package/src/services/lke/v20231130/lke_models.ts +6 -2
- package/src/services/monitor/v20180724/monitor_models.ts +15 -5
- package/src/services/ocr/v20181119/ocr_models.ts +10 -10
- package/src/services/rce/v20201103/rce_models.ts +5 -4
- package/src/services/sqlserver/v20180328/sqlserver_client.ts +12 -0
- package/src/services/sqlserver/v20180328/sqlserver_models.ts +32 -0
- package/src/services/tat/v20201028/tat_models.ts +4 -4
- package/src/services/tke/v20180525/tke_client.ts +27 -0
- package/src/services/tke/v20180525/tke_models.ts +125 -5
- package/src/services/trtc/v20190722/trtc_client.ts +3 -3
- package/src/services/vod/v20180717/vod_client.ts +2 -2
- package/src/services/vod/v20180717/vod_models.ts +20 -21
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/aiart/v20221229/aiart_models.d.ts +11 -0
- package/tencentcloud/services/asr/v20190614/asr_client.d.ts +1 -1
- package/tencentcloud/services/asr/v20190614/asr_client.js +1 -1
- package/tencentcloud/services/asr/v20190614/asr_models.d.ts +3 -0
- package/tencentcloud/services/bsca/v20210811/bsca_models.d.ts +9 -1
- package/tencentcloud/services/ccc/v20200210/ccc_client.d.ts +2 -2
- package/tencentcloud/services/ccc/v20200210/ccc_client.js +2 -2
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +10 -10
- package/tencentcloud/services/domain/v20180808/domain_client.d.ts +9 -1
- package/tencentcloud/services/domain/v20180808/domain_client.js +12 -0
- package/tencentcloud/services/domain/v20180808/domain_models.d.ts +293 -206
- package/tencentcloud/services/dts/v20211206/dts_models.d.ts +2 -2
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +42 -8
- package/tencentcloud/services/ess/v20201111/ess_client.js +47 -9
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +316 -56
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +1 -2
- package/tencentcloud/services/iai/v20180301/iai_models.d.ts +10 -9
- package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +22 -0
- package/tencentcloud/services/lke/v20231130/lke_models.d.ts +6 -2
- package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +15 -5
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +10 -10
- package/tencentcloud/services/rce/v20201103/rce_models.d.ts +5 -4
- package/tencentcloud/services/sqlserver/v20180328/sqlserver_client.d.ts +5 -1
- package/tencentcloud/services/sqlserver/v20180328/sqlserver_client.js +6 -0
- package/tencentcloud/services/sqlserver/v20180328/sqlserver_models.d.ts +30 -0
- package/tencentcloud/services/tat/v20201028/tat_models.d.ts +3 -3
- package/tencentcloud/services/tke/v20180525/tke_client.d.ts +9 -1
- package/tencentcloud/services/tke/v20180525/tke_client.js +12 -0
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +118 -5
- package/tencentcloud/services/trtc/v20190722/trtc_client.d.ts +3 -3
- package/tencentcloud/services/trtc/v20190722/trtc_client.js +3 -3
- package/tencentcloud/services/vod/v20180717/vod_client.d.ts +2 -2
- package/tencentcloud/services/vod/v20180717/vod_client.js +2 -2
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +20 -21
- package/test/domain.v20180808.test.js +20 -0
- package/test/ess.v20201111.test.js +24 -4
- package/test/sqlserver.v20180328.test.js +10 -0
- package/test/tke.v20180525.test.js +20 -0
package/package.json
CHANGED
package/products.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
| advisor | [云顾问](https://cloud.tencent.com/document/product/1264) | 2024-03-20 01:07:31 |
|
|
7
7
|
| af | [借贷反欺诈](https://cloud.tencent.com/document/product/668) | 2024-03-20 01:07:31 |
|
|
8
8
|
| afc | [定制建模](https://cloud.tencent.com/document/product/1029) | 2024-03-27 01:07:50 |
|
|
9
|
-
| aiart | [大模型图像创作引擎](https://cloud.tencent.com/document/product/1668) | 2024-04-
|
|
9
|
+
| aiart | [大模型图像创作引擎](https://cloud.tencent.com/document/product/1668) | 2024-04-16 01:03:52 |
|
|
10
10
|
| ame | [正版曲库直通车](https://cloud.tencent.com/document/product/1155) | 2023-08-17 01:06:14 |
|
|
11
11
|
| ams | [音频内容安全](https://cloud.tencent.com/document/product/1219) | 2024-03-20 01:07:34 |
|
|
12
12
|
| anicloud | [动效素材服务](https://cloud.tencent.com/document/product/1641) | 2023-05-18 01:01:53 |
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
| apigateway | [API 网关](https://cloud.tencent.com/document/product/628) | 2024-03-25 01:07:43 |
|
|
18
18
|
| apm | [应用性能监控](https://cloud.tencent.com/document/product/1463) | 2024-03-20 01:08:03 |
|
|
19
19
|
| as | [弹性伸缩](https://cloud.tencent.com/document/product/377) | 2024-03-20 01:08:05 |
|
|
20
|
-
| asr | [语音识别](https://cloud.tencent.com/document/product/1093) | 2024-04-
|
|
20
|
+
| asr | [语音识别](https://cloud.tencent.com/document/product/1093) | 2024-04-16 01:04:30 |
|
|
21
21
|
| asw | [应用与服务编排工作流](https://cloud.tencent.com/document/product/1272) | 2023-05-18 01:04:02 |
|
|
22
22
|
| ba | [ICP备案](https://cloud.tencent.com/document/product/243) | 2024-03-20 01:08:17 |
|
|
23
23
|
| batch | [批量计算](https://cloud.tencent.com/document/product/599) | 2024-04-01 01:08:28 |
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
| bmvpc | [黑石私有网络](https://cloud.tencent.com/document/product/1024) | 2024-03-20 01:09:02 |
|
|
33
33
|
| bpaas | [商业流程服务](https://cloud.tencent.com/document/product/1083) | 2024-03-20 01:09:09 |
|
|
34
34
|
| bri | [业务风险情报](https://cloud.tencent.com/document/product/1064) | 2024-04-09 01:08:44 |
|
|
35
|
-
| bsca | [二进制软件成分分析](https://cloud.tencent.com/document/product/1483) | 2024-
|
|
35
|
+
| bsca | [二进制软件成分分析](https://cloud.tencent.com/document/product/1483) | 2024-04-16 01:05:23 |
|
|
36
36
|
| btoe | [区块链可信取证](https://cloud.tencent.com/document/product/1259) | 2024-03-20 01:09:12 |
|
|
37
37
|
| cam | [访问管理](https://cloud.tencent.com/document/product/598) | 2024-03-20 01:09:14 |
|
|
38
38
|
| captcha | [验证码](https://cloud.tencent.com/document/product/1110) | 2024-04-11 01:08:49 |
|
|
39
39
|
| car | [应用云渲染](https://cloud.tencent.com/document/product/1547) | 2024-03-20 01:09:27 |
|
|
40
40
|
| cat | [云拨测](https://cloud.tencent.com/document/product/280) | 2024-03-20 01:09:28 |
|
|
41
41
|
| cbs | [云硬盘](https://cloud.tencent.com/document/product/362) | 2024-03-21 01:09:20 |
|
|
42
|
-
| ccc | [云联络中心](https://cloud.tencent.com/document/product/679) | 2024-04-
|
|
42
|
+
| ccc | [云联络中心](https://cloud.tencent.com/document/product/679) | 2024-04-16 01:05:49 |
|
|
43
43
|
| cdb | [云数据库 MySQL](https://cloud.tencent.com/document/product/236) | 2024-04-12 01:09:15 |
|
|
44
44
|
| cdc | [本地专用集群](https://cloud.tencent.com/document/product/1346) | 2024-03-20 01:10:04 |
|
|
45
45
|
| cdn | [内容分发网络 CDN](https://cloud.tencent.com/document/product/228) | 2024-04-12 01:09:42 |
|
|
@@ -82,12 +82,12 @@
|
|
|
82
82
|
| dcdb | [TDSQL MySQL 版](https://cloud.tencent.com/document/product/557) | 2024-03-20 01:14:30 |
|
|
83
83
|
| dlc | [数据湖计算 DLC](https://cloud.tencent.com/document/product/1342) | 2024-03-28 01:14:58 |
|
|
84
84
|
| dnspod | [DNSPod](https://cloud.tencent.com/document/product/1427) | 2024-03-20 01:14:57 |
|
|
85
|
-
| domain | [域名注册](https://cloud.tencent.com/document/product/242) | 2024-04-
|
|
85
|
+
| domain | [域名注册](https://cloud.tencent.com/document/product/242) | 2024-04-16 01:10:26 |
|
|
86
86
|
| drm | [数字版权管理](https://cloud.tencent.com/document/product/1000) | 2024-03-20 01:15:11 |
|
|
87
87
|
| ds | [文档服务](https://cloud.tencent.com/document/product/869) | 2024-03-20 01:15:13 |
|
|
88
88
|
| dsgc | [数据安全治理中心](https://cloud.tencent.com/document/product/1087) | 2024-04-10 01:14:15 |
|
|
89
89
|
| dtf | [分布式事务](https://cloud.tencent.com/document/product/1224) | 2022-04-04 06:38:57 |
|
|
90
|
-
| dts | [数据传输服务](https://cloud.tencent.com/document/product/571) | 2024-04-
|
|
90
|
+
| dts | [数据传输服务](https://cloud.tencent.com/document/product/571) | 2024-04-16 01:10:56 |
|
|
91
91
|
| eb | [事件总线](https://cloud.tencent.com/document/product/1359) | 2024-03-20 01:15:46 |
|
|
92
92
|
| ecc | [英文作文批改](https://cloud.tencent.com/document/product/1076) | 2024-03-20 01:15:51 |
|
|
93
93
|
| ecdn | [全站加速网络](https://cloud.tencent.com/document/product/570) | 2024-03-20 01:15:52 |
|
|
@@ -96,8 +96,8 @@
|
|
|
96
96
|
| eis | [数据连接器](https://cloud.tencent.com/document/product/1270) | 2023-08-10 01:17:44 |
|
|
97
97
|
| emr | [弹性 MapReduce](https://cloud.tencent.com/document/product/589) | 2024-03-27 01:16:55 |
|
|
98
98
|
| es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2024-04-11 16:23:06 |
|
|
99
|
-
| ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2024-04-
|
|
100
|
-
| essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2024-04-
|
|
99
|
+
| ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2024-04-16 01:12:05 |
|
|
100
|
+
| essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2024-04-15 01:41:39 |
|
|
101
101
|
| facefusion | [人脸融合](https://cloud.tencent.com/document/product/670) | 2024-03-20 01:17:05 |
|
|
102
102
|
| faceid | [人脸核身](https://cloud.tencent.com/document/product/1007) | 2024-04-12 01:15:49 |
|
|
103
103
|
| fmu | [人脸试妆](https://cloud.tencent.com/document/product/1172) | 2024-03-20 01:17:11 |
|
|
@@ -132,10 +132,10 @@
|
|
|
132
132
|
| ivld | [媒体智能标签](https://cloud.tencent.com/document/product/1509) | 2024-03-20 01:19:17 |
|
|
133
133
|
| keewidb | [云数据库 KeeWiDB](https://cloud.tencent.com/document/product/1520) | 2024-03-20 01:19:20 |
|
|
134
134
|
| kms | [密钥管理系统](https://cloud.tencent.com/document/product/573) | 2024-03-20 01:19:25 |
|
|
135
|
-
| lcic | [实时互动-教育版](https://cloud.tencent.com/document/product/1639) | 2024-04-
|
|
135
|
+
| lcic | [实时互动-教育版](https://cloud.tencent.com/document/product/1639) | 2024-04-16 01:14:56 |
|
|
136
136
|
| lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2024-04-09 01:17:37 |
|
|
137
137
|
| live | [云直播CSS](https://cloud.tencent.com/document/product/267) | 2024-04-11 01:17:46 |
|
|
138
|
-
| lke | [大模型知识引擎](https://cloud.tencent.com/document/product/1759) | 2024-04-
|
|
138
|
+
| lke | [大模型知识引擎](https://cloud.tencent.com/document/product/1759) | 2024-04-16 01:15:35 |
|
|
139
139
|
| lowcode | [云开发低码](https://cloud.tencent.com/document/product/1301) | 2022-04-04 06:56:51 |
|
|
140
140
|
| lp | [登录保护](https://cloud.tencent.com/document/product/1190) | 2022-04-04 06:56:52 |
|
|
141
141
|
| mall | [商场客留大数据](https://cloud.tencent.com/document/product/1707) | 2024-03-20 01:20:11 |
|
|
@@ -146,7 +146,7 @@
|
|
|
146
146
|
| mmps | [小程序安全](https://cloud.tencent.com/document/product/1223) | 2024-03-20 01:20:23 |
|
|
147
147
|
| mna | [多网聚合加速](https://cloud.tencent.com/document/product/1385) | 2024-04-12 01:19:07 |
|
|
148
148
|
| mongodb | [云数据库 MongoDB](https://cloud.tencent.com/document/product/240) | 2024-04-09 01:18:23 |
|
|
149
|
-
| monitor | [腾讯云可观测平台](https://cloud.tencent.com/document/product/248) | 2024-04-
|
|
149
|
+
| monitor | [腾讯云可观测平台](https://cloud.tencent.com/document/product/248) | 2024-04-15 01:57:02 |
|
|
150
150
|
| mps | [媒体处理](https://cloud.tencent.com/document/product/862) | 2024-04-02 01:19:24 |
|
|
151
151
|
| mrs | [医疗报告结构化](https://cloud.tencent.com/document/product/1314) | 2024-04-03 11:24:07 |
|
|
152
152
|
| ms | [移动应用安全](https://cloud.tencent.com/document/product/283) | 2024-04-01 01:22:02 |
|
|
@@ -155,7 +155,7 @@
|
|
|
155
155
|
| nlp | [NLP 服务](https://cloud.tencent.com/document/product/271) | 2024-03-20 01:21:33 |
|
|
156
156
|
| npp | [号码保护](https://cloud.tencent.com/document/product) | 2020-04-22 08:00:22 |
|
|
157
157
|
| oceanus | [流计算 Oceanus](https://cloud.tencent.com/document/product/849) | 2024-03-26 01:21:37 |
|
|
158
|
-
| ocr | [文字识别](https://cloud.tencent.com/document/product/866) | 2024-04-
|
|
158
|
+
| ocr | [文字识别](https://cloud.tencent.com/document/product/866) | 2024-04-16 01:17:03 |
|
|
159
159
|
| omics | [腾讯健康组学平台](https://cloud.tencent.com/document/product/1643) | 2024-04-03 11:24:43 |
|
|
160
160
|
| organization | [集团账号管理](https://cloud.tencent.com/document/product/850) | 2024-04-10 01:20:13 |
|
|
161
161
|
| partners | [渠道合作伙伴](https://cloud.tencent.com/document/product/563) | 2024-03-20 01:22:23 |
|
|
@@ -163,21 +163,21 @@
|
|
|
163
163
|
| postgres | [云数据库 PostgreSQL](https://cloud.tencent.com/document/product/409) | 2024-03-20 01:22:26 |
|
|
164
164
|
| privatedns | [私有域解析 Private DNS](https://cloud.tencent.com/document/product/1338) | 2024-03-20 01:22:42 |
|
|
165
165
|
| pts | [云压测](https://cloud.tencent.com/document/product/1484) | 2024-03-27 01:23:10 |
|
|
166
|
-
| rce | [全栈式风控引擎](https://cloud.tencent.com/document/product/1343) | 2024-
|
|
166
|
+
| rce | [全栈式风控引擎](https://cloud.tencent.com/document/product/1343) | 2024-04-16 01:17:50 |
|
|
167
167
|
| redis | [云数据库Redis](https://cloud.tencent.com/document/product/239) | 2024-04-12 01:21:07 |
|
|
168
168
|
| region | [地域管理系统](https://cloud.tencent.com/document/product/1596) | 2024-03-20 01:23:06 |
|
|
169
169
|
| rkp | [风险探针](https://cloud.tencent.com/document/product/1169) | 2023-12-25 00:16:39 |
|
|
170
170
|
| rp | [注册保护](https://cloud.tencent.com/document/product/1191) | 2022-04-04 07:04:06 |
|
|
171
171
|
| rum | [前端性能监控](https://cloud.tencent.com/document/product/1464) | 2024-03-20 01:23:07 |
|
|
172
|
-
| scf | [云函数](https://cloud.tencent.com/document/product/583) | 2024-
|
|
172
|
+
| scf | [云函数](https://cloud.tencent.com/document/product/583) | 2024-04-15 02:05:44 |
|
|
173
173
|
| ses | [邮件推送](https://cloud.tencent.com/document/product/1288) | 2024-03-20 01:23:23 |
|
|
174
|
-
| smh | [智能媒资托管](https://cloud.tencent.com/document/product/1339) | 2024-
|
|
174
|
+
| smh | [智能媒资托管](https://cloud.tencent.com/document/product/1339) | 2024-04-16 01:18:21 |
|
|
175
175
|
| smop | [腾讯安心用户运营平台](https://cloud.tencent.com/document/product/1310) | 2024-04-11 01:20:38 |
|
|
176
176
|
| smpn | [营销号码安全](https://cloud.tencent.com/document/product/1127) | 2024-03-20 01:23:29 |
|
|
177
177
|
| sms | [短信](https://cloud.tencent.com/document/product/382) | 2024-04-12 01:21:45 |
|
|
178
178
|
| soe | [智聆口语评测](https://cloud.tencent.com/document/product/884) | 2024-04-11 01:20:45 |
|
|
179
179
|
| solar | [智汇零售](https://cloud.tencent.com/document/product) | 2020-03-19 08:01:59 |
|
|
180
|
-
| sqlserver | [云数据库 SQL Server](https://cloud.tencent.com/document/product/238) | 2024-04-
|
|
180
|
+
| sqlserver | [云数据库 SQL Server](https://cloud.tencent.com/document/product/238) | 2024-04-15 02:06:58 |
|
|
181
181
|
| ssa | [安全运营中心](https://cloud.tencent.com/document/product/664) | 2023-11-15 02:18:28 |
|
|
182
182
|
| ssl | [SSL 证书](https://cloud.tencent.com/document/product/400) | 2024-04-09 01:21:02 |
|
|
183
183
|
| sslpod | [证书监控 SSLPod](https://cloud.tencent.com/document/product/1084) | 2024-03-20 01:24:03 |
|
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
| taf | [流量反欺诈](https://cloud.tencent.com/document/product/1031) | 2024-03-21 01:24:01 |
|
|
188
188
|
| tag | [标签](https://cloud.tencent.com/document/product/651) | 2024-03-22 01:21:43 |
|
|
189
189
|
| tan | [碳引擎](https://cloud.tencent.com/document/product/1498) | 2024-03-20 01:24:15 |
|
|
190
|
-
| tat | [自动化助手](https://cloud.tencent.com/document/product/1340) | 2024-
|
|
190
|
+
| tat | [自动化助手](https://cloud.tencent.com/document/product/1340) | 2024-04-16 01:19:04 |
|
|
191
191
|
| tav | [文件检测](https://cloud.tencent.com/document/product) | 2019-11-28 22:10:04 |
|
|
192
192
|
| tbaas | [腾讯云区块链服务平台 TBaaS](https://cloud.tencent.com/document/product/663) | 2024-03-20 01:24:19 |
|
|
193
193
|
| tbm | [](https://cloud.tencent.com/document/product) | 2019-03-29 14:49:11 |
|
|
@@ -225,7 +225,7 @@
|
|
|
225
225
|
| trocket | [消息队列 RocketMQ 版](https://cloud.tencent.com/document/product/1493) | 2024-04-04 01:25:24 |
|
|
226
226
|
| trp | [T-Sec-安心平台(RP)](https://cloud.tencent.com/document/product/1458) | 2024-03-26 01:27:42 |
|
|
227
227
|
| trro | [远程实时操控](https://cloud.tencent.com/document/product/1584) | 2024-03-20 01:29:13 |
|
|
228
|
-
| trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2024-04-
|
|
228
|
+
| trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2024-04-15 02:23:53 |
|
|
229
229
|
| tse | [微服务引擎](https://cloud.tencent.com/document/product/1364) | 2024-04-02 01:25:46 |
|
|
230
230
|
| tsf | [微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2024-03-20 01:29:39 |
|
|
231
231
|
| tsw | [微服务观测平台 TSW](https://cloud.tencent.com/document/product/1311) | 2024-03-20 01:30:06 |
|
|
@@ -233,7 +233,7 @@
|
|
|
233
233
|
| ump | [客流数字化平台](https://cloud.tencent.com/document/product/1320) | 2024-03-20 01:30:08 |
|
|
234
234
|
| vm | [视频内容安全](https://cloud.tencent.com/document/product/1265) | 2024-03-20 01:30:12 |
|
|
235
235
|
| vms | [语音消息](https://cloud.tencent.com/document/product/1128) | 2024-03-20 01:30:13 |
|
|
236
|
-
| vod | [云点播](https://cloud.tencent.com/document/product/266) | 2024-04-
|
|
236
|
+
| vod | [云点播](https://cloud.tencent.com/document/product/266) | 2024-04-16 01:23:45 |
|
|
237
237
|
| vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2024-04-08 01:27:01 |
|
|
238
238
|
| vrs | [声音复刻](https://cloud.tencent.com/document/product/1283) | 2024-04-02 01:27:45 |
|
|
239
239
|
| waf | [Web 应用防火墙](https://cloud.tencent.com/document/product/627) | 2024-03-20 01:31:28 |
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const sdkVersion = "4.0.
|
|
1
|
+
export const sdkVersion = "4.0.836"
|
|
@@ -67,6 +67,13 @@ engine1
|
|
|
67
67
|
engine2
|
|
68
68
|
*/
|
|
69
69
|
Engine?: string
|
|
70
|
+
/**
|
|
71
|
+
* prompt 扩写开关。1为开启,0为关闭,不传默认开启。
|
|
72
|
+
开启扩写后,将自动扩写原始输入的 prompt 并使用扩写后的 prompt 生成图片,返回生成图片结果时将一并返回扩写后的 prompt 文本。
|
|
73
|
+
如果关闭扩写,将直接使用原始输入的 prompt 生成图片。
|
|
74
|
+
建议开启,在多数场景下可提升生成图片效果、丰富生成图片细节。
|
|
75
|
+
*/
|
|
76
|
+
Revise?: number
|
|
70
77
|
}
|
|
71
78
|
|
|
72
79
|
/**
|
|
@@ -210,6 +217,10 @@ export interface QueryTextToImageProJobResponse {
|
|
|
210
217
|
|
|
211
218
|
*/
|
|
212
219
|
ResultDetails?: Array<string>
|
|
220
|
+
/**
|
|
221
|
+
* 对应 SubmitTextToImageProJob 接口中 Revise 参数。开启扩写时,返回扩写后的 prompt 文本。 如果关闭扩写,将直接返回原始输入的 prompt。
|
|
222
|
+
*/
|
|
223
|
+
RevisedPrompt?: Array<string>
|
|
213
224
|
/**
|
|
214
225
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
215
226
|
*/
|
|
@@ -213,7 +213,7 @@ export class Client extends AbstractClient {
|
|
|
213
213
|
}
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
|
-
* 本接口用于对60秒之内的短音频文件进行识别。<br>•
|
|
216
|
+
* 本接口用于对60秒之内的短音频文件进行识别。<br>• 支持中文普通话、英语、粤语、日语、越南语、马来语、印度尼西亚语、菲律宾语、泰语、葡萄牙语、土耳其语、阿拉伯语、印地语、法语、德语、上海话、四川话、武汉话、贵阳话、昆明话、西安话、郑州话、太原话、兰州话、银川话、西宁话、南京话、合肥话、南昌话、长沙话、苏州话、杭州话、济南话、天津话、石家庄话、黑龙江话、吉林话、辽宁话。<br>• 支持本地语音文件上传和语音URL上传两种请求方式,音频时长不能超过60s,音频文件大小不能超过3MB。<br>• 音频格式支持wav、pcm、ogg-opus、speex、silk、mp3、m4a、aac、 amr。<br>• 请求方法为 HTTP POST , Content-Type为"application/json; charset=utf-8"<br>• 签名方法参考 [公共参数](https://cloud.tencent.com/document/api/1093/35640) 中签名方法v3。<br>• 默认接口请求频率限制:30次/秒,如您有提高请求频率限制的需求,请[前往购买](https://buy.cloud.tencent.com/asr)。
|
|
217
217
|
*/
|
|
218
218
|
async SentenceRecognition(
|
|
219
219
|
req: SentenceRecognitionRequest,
|
|
@@ -168,6 +168,7 @@ export interface CreateAsyncRecognitionTaskRequest {
|
|
|
168
168
|
• 16k_es:西班牙语;
|
|
169
169
|
• 16k_hi:印地语;
|
|
170
170
|
• 16k_fr:法语;
|
|
171
|
+
• 16k_de:法语;
|
|
171
172
|
*/
|
|
172
173
|
EngineType: string
|
|
173
174
|
/**
|
|
@@ -281,6 +282,7 @@ export interface SentenceRecognitionRequest {
|
|
|
281
282
|
• 16k_es:西班牙语;
|
|
282
283
|
• 16k_hi:印地语;
|
|
283
284
|
• 16k_fr:法语;
|
|
285
|
+
• 16k_de:德语;
|
|
284
286
|
• 16k_zh_dialect:多方言,支持23种方言(上海话、四川话、武汉话、贵阳话、昆明话、西安话、郑州话、太原话、兰州话、银川话、西宁话、南京话、合肥话、南昌话、长沙话、苏州话、杭州话、济南话、天津话、石家庄话、黑龙江话、吉林话、辽宁话);
|
|
285
287
|
*/
|
|
286
288
|
EngSerViceType: string
|
|
@@ -653,6 +655,7 @@ export interface CreateRecTaskRequest {
|
|
|
653
655
|
• **16k_hi:**印地语;
|
|
654
656
|
• **16k_fr:**法语;
|
|
655
657
|
• **16k_zh_medical:**中文医疗引擎;
|
|
658
|
+
• **16k_de:**德语;
|
|
656
659
|
*/
|
|
657
660
|
EngineModelType: string
|
|
658
661
|
/**
|
|
@@ -41,6 +41,10 @@ export interface DescribeKBComponentVulnerabilityRequest {
|
|
|
41
41
|
* 组件的PURL,其中Name和Version为必填字段
|
|
42
42
|
*/
|
|
43
43
|
PURL: PURL
|
|
44
|
+
/**
|
|
45
|
+
* 语言,ZH或EN
|
|
46
|
+
*/
|
|
47
|
+
Language?: string
|
|
44
48
|
}
|
|
45
49
|
|
|
46
50
|
/**
|
|
@@ -110,7 +114,7 @@ export interface DescribeKBComponentVulnerabilityResponse {
|
|
|
110
114
|
* 漏洞信息列表
|
|
111
115
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
112
116
|
*/
|
|
113
|
-
VulnerabilityList
|
|
117
|
+
VulnerabilityList?: Array<ComponentVulnerabilityUnion>
|
|
114
118
|
/**
|
|
115
119
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
116
120
|
*/
|
|
@@ -407,6 +411,10 @@ export interface DescribeKBVulnerabilityRequest {
|
|
|
407
411
|
* 根据CNNVD ID查询(不能与其他参数同时存在)
|
|
408
412
|
*/
|
|
409
413
|
CNNVDID?: Array<string>
|
|
414
|
+
/**
|
|
415
|
+
* 语言,ZH或EN
|
|
416
|
+
*/
|
|
417
|
+
Language?: string
|
|
410
418
|
}
|
|
411
419
|
|
|
412
420
|
/**
|
|
@@ -301,7 +301,7 @@ export class Client extends AbstractClient {
|
|
|
301
301
|
}
|
|
302
302
|
|
|
303
303
|
/**
|
|
304
|
-
* 修改公司资质申请,只能修改状态为驳回或待审核的申请单。(1
|
|
304
|
+
* 修改公司资质申请,只能修改状态为驳回或待审核的申请单。(1、首次使用接口,建议先在云联络中心控制台查看各个资料模板:https://console.cloud.tencent.com/ccc/enterprise/update。2、参数中图片Url建议使用腾讯云Cos存储的临时链接)
|
|
305
305
|
*/
|
|
306
306
|
async ModifyCompanyApply(
|
|
307
307
|
req: ModifyCompanyApplyRequest,
|
|
@@ -411,7 +411,7 @@ export class Client extends AbstractClient {
|
|
|
411
411
|
}
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
|
-
* 创建公司资质申请(1
|
|
414
|
+
* 创建公司资质申请(1、首次使用接口,建议先在云联络中心控制台查看各个资料模板:https://console.cloud.tencent.com/ccc/enterprise/update。2、参数中图片Url建议使用腾讯云Cos存储的临时链接)
|
|
415
415
|
*/
|
|
416
416
|
async CreateCompanyApply(
|
|
417
417
|
req: CreateCompanyApplyRequest,
|
|
@@ -63,7 +63,7 @@ export interface CompanyApplyInfo {
|
|
|
63
63
|
*/
|
|
64
64
|
BusinessId: string
|
|
65
65
|
/**
|
|
66
|
-
* 营业执照扫描件(加盖公章)。(支持jpg、png、gif、jpeg格式的图片,每张图片应大于50K,不超过5MB
|
|
66
|
+
* 营业执照扫描件(加盖公章)。(支持jpg、png、gif、jpeg格式的图片,每张图片应大于50K,不超过5MB,模板参见控制台:https://console.cloud.tencent.com/ccc/enterprise/update)
|
|
67
67
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
68
68
|
*/
|
|
69
69
|
BusinessIdPicUrl: string
|
|
@@ -78,7 +78,7 @@ export interface CompanyApplyInfo {
|
|
|
78
78
|
*/
|
|
79
79
|
CorporationId: string
|
|
80
80
|
/**
|
|
81
|
-
* 法定代表人身份证正反面扫描件。(支持jpg、png、gif、jpeg格式的图片,每张图片应大于50K,不超过5MB
|
|
81
|
+
* 法定代表人身份证正反面扫描件。(支持jpg、png、gif、jpeg格式的图片,每张图片应大于50K,不超过5MB,模板参见控制台:https://console.cloud.tencent.com/ccc/enterprise/update)
|
|
82
82
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
83
83
|
*/
|
|
84
84
|
CorporationIdPicUrl: string
|
|
@@ -88,17 +88,17 @@ export interface CompanyApplyInfo {
|
|
|
88
88
|
*/
|
|
89
89
|
BusinessScope: string
|
|
90
90
|
/**
|
|
91
|
-
* 电话受理单。(支持jpg、png、gif、jpeg格式的图片,每张图片应大于50K,不超过5MB
|
|
91
|
+
* 电话受理单。(支持jpg、png、gif、jpeg格式的图片,每张图片应大于50K,不超过5MB,模板参见控制台:https://console.cloud.tencent.com/ccc/enterprise/update)
|
|
92
92
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
93
93
|
*/
|
|
94
94
|
AcceptPicUrl: string
|
|
95
95
|
/**
|
|
96
|
-
* 电信入网承诺书。(支持jpg、png、gif、jpeg格式的图片,每张图片应大于50K,不超过5MB
|
|
96
|
+
* 电信入网承诺书。(支持jpg、png、gif、jpeg格式的图片,每张图片应大于50K,不超过5MB,模板参见控制台:https://console.cloud.tencent.com/ccc/enterprise/update)
|
|
97
97
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
98
98
|
*/
|
|
99
99
|
NetworkCommitmentPicUrl: string
|
|
100
100
|
/**
|
|
101
|
-
* 法定代表人手持身份证照,申请人类型为法定代表人时必填。(支持jpg、png、gif、jpeg格式的图片,每张图片应大于50K,不超过5MB
|
|
101
|
+
* 法定代表人手持身份证照,申请人类型为法定代表人时必填。(支持jpg、png、gif、jpeg格式的图片,每张图片应大于50K,不超过5MB,模板参见控制台:https://console.cloud.tencent.com/ccc/enterprise/update)
|
|
102
102
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
103
103
|
*/
|
|
104
104
|
CorporationHoldingOnIdPicUrl?: string
|
|
@@ -113,17 +113,17 @@ export interface CompanyApplyInfo {
|
|
|
113
113
|
*/
|
|
114
114
|
OperatorId?: string
|
|
115
115
|
/**
|
|
116
|
-
* 经办人身份证正反面扫描件,申请人类型为经办人时必填。(支持jpg、png、gif、jpeg格式的图片,每张图片应大于50K,不超过5MB
|
|
116
|
+
* 经办人身份证正反面扫描件,申请人类型为经办人时必填。(支持jpg、png、gif、jpeg格式的图片,每张图片应大于50K,不超过5MB,模板参见控制台:https://console.cloud.tencent.com/ccc/enterprise/update)
|
|
117
117
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
118
118
|
*/
|
|
119
119
|
OperatorIdPicUrl?: string
|
|
120
120
|
/**
|
|
121
|
-
* 经办人手持身份证照,申请人类型为经办人时必填。(支持jpg、png、gif、jpeg格式的图片,每张图片应大于50K,不超过5MB
|
|
121
|
+
* 经办人手持身份证照,申请人类型为经办人时必填。(支持jpg、png、gif、jpeg格式的图片,每张图片应大于50K,不超过5MB,模板参见控制台:https://console.cloud.tencent.com/ccc/enterprise/update)
|
|
122
122
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
123
123
|
*/
|
|
124
124
|
OperatorHoldingOnIdPicUrl?: string
|
|
125
125
|
/**
|
|
126
|
-
* 委托授权书,申请人类型为经办人时必填。(支持jpg、png、gif、jpeg格式的图片,每张图片应大于50K,不超过5MB
|
|
126
|
+
* 委托授权书,申请人类型为经办人时必填。(支持jpg、png、gif、jpeg格式的图片,每张图片应大于50K,不超过5MB,模板参见控制台:https://console.cloud.tencent.com/ccc/enterprise/update)
|
|
127
127
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
128
128
|
*/
|
|
129
129
|
CommissionPicUrl?: string
|
|
@@ -2560,11 +2560,11 @@ export interface DescribePredictiveDialingCampaignsResponse {
|
|
|
2560
2560
|
*/
|
|
2561
2561
|
export interface DescribeTelCallInfoRequest {
|
|
2562
2562
|
/**
|
|
2563
|
-
* 起始时间戳,Unix 时间戳(
|
|
2563
|
+
* 起始时间戳,Unix 时间戳(查询维度仅支持天,例如查询5月1日应该传startTime:"2023-05-01 00:00:00","endTime":"2023-05-01 23:59:59"的时间戳,查5月1日和5月2日的应该传startTime:"2023-05-01 00:00:00","endTime":"2023-05-02 23:59:59"的时间戳)
|
|
2564
2564
|
*/
|
|
2565
2565
|
StartTimeStamp: number
|
|
2566
2566
|
/**
|
|
2567
|
-
* 结束时间戳,Unix 时间戳,查询时间范围最大为90天(
|
|
2567
|
+
* 结束时间戳,Unix 时间戳,查询时间范围最大为90天(查询维度仅支持天,例如查询5月1日应该传startTime:"2023-05-01 00:00:00","endTime":"2023-05-01 23:59:59"的时间戳,查5月1日和5月2日的应该传startTime:"2023-05-01 00:00:00","endTime":"2023-05-02 23:59:59"的时间戳)
|
|
2568
2568
|
*/
|
|
2569
2569
|
EndTimeStamp: number
|
|
2570
2570
|
/**
|
|
@@ -31,17 +31,20 @@ import {
|
|
|
31
31
|
ModifyCustomDnsHostRequest,
|
|
32
32
|
DescribeDomainPriceListResponse,
|
|
33
33
|
CheckBatchStatusRequest,
|
|
34
|
-
|
|
34
|
+
ReserveBidInfo,
|
|
35
|
+
CreateDomainBatchRequest,
|
|
35
36
|
DescribeBatchOperationLogsRequest,
|
|
36
37
|
UploadImageRequest,
|
|
37
38
|
ModifyCustomDnsHostResponse,
|
|
39
|
+
BidPreDomainsResponse,
|
|
38
40
|
ModifyDomainDNSBatchRequest,
|
|
39
41
|
DescribeBatchOperationLogDetailsResponse,
|
|
42
|
+
DescribeReservedBidInfoRequest,
|
|
40
43
|
DeletePhoneEmailResponse,
|
|
41
44
|
ReservedPreDomainsResponse,
|
|
42
45
|
DomainBatchDetailSet,
|
|
43
46
|
UploadImageResponse,
|
|
44
|
-
|
|
47
|
+
DomainSimpleInfo,
|
|
45
48
|
CreateDomainRedemptionResponse,
|
|
46
49
|
DeletePhoneEmailRequest,
|
|
47
50
|
DescribeReservedPreDomainInfoResponse,
|
|
@@ -72,31 +75,33 @@ import {
|
|
|
72
75
|
DescribeTemplateResponse,
|
|
73
76
|
DescribeDomainSimpleInfoRequest,
|
|
74
77
|
DescribeDomainSimpleInfoResponse,
|
|
75
|
-
|
|
78
|
+
TemplateInfo,
|
|
76
79
|
ModifyDomainOwnerBatchResponse,
|
|
77
80
|
TransferInDomainBatchRequest,
|
|
78
81
|
ModifyDomainDNSBatchResponse,
|
|
79
82
|
DescribeReservedPreDomainInfoRequest,
|
|
80
83
|
DescribeDomainPriceListRequest,
|
|
81
84
|
ModifyIntlCustomDnsHostRequest,
|
|
85
|
+
ReservedPreDomainInfo,
|
|
82
86
|
CheckDomainRequest,
|
|
83
87
|
TransferProhibitionBatchResponse,
|
|
84
88
|
ModifyIntlCustomDnsHostResponse,
|
|
85
89
|
DescribeTemplateListRequest,
|
|
86
90
|
CertificateInfo,
|
|
87
|
-
|
|
91
|
+
BidPreDomainsRequest,
|
|
88
92
|
CreateTemplateRequest,
|
|
89
93
|
UpdateProhibitionBatchResponse,
|
|
90
94
|
CreatePhoneEmailRequest,
|
|
91
95
|
PriceInfo,
|
|
92
96
|
DescribeTemplateRequest,
|
|
97
|
+
DescribeReservedBidInfoResponse,
|
|
93
98
|
DescribeTldListRequest,
|
|
94
99
|
DescribeBatchOperationLogDetailsRequest,
|
|
95
100
|
DescribeDomainNameListResponse,
|
|
96
101
|
SyncCustomDnsHostRequest,
|
|
97
102
|
ContactInfo,
|
|
98
103
|
DeleteTemplateRequest,
|
|
99
|
-
|
|
104
|
+
SetDomainAutoRenewResponse,
|
|
100
105
|
CustomDnsHost,
|
|
101
106
|
DomainList,
|
|
102
107
|
DescribePhoneEmailListRequest,
|
|
@@ -130,6 +135,16 @@ export class Client extends AbstractClient {
|
|
|
130
135
|
return this.request("SetDomainAutoRenew", req, cb)
|
|
131
136
|
}
|
|
132
137
|
|
|
138
|
+
/**
|
|
139
|
+
* 接口用于获取合作商竞价过程中竞价详情数据
|
|
140
|
+
*/
|
|
141
|
+
async DescribeReservedBidInfo(
|
|
142
|
+
req: DescribeReservedBidInfoRequest,
|
|
143
|
+
cb?: (error: string, rep: DescribeReservedBidInfoResponse) => void
|
|
144
|
+
): Promise<DescribeReservedBidInfoResponse> {
|
|
145
|
+
return this.request("DescribeReservedBidInfo", req, cb)
|
|
146
|
+
}
|
|
147
|
+
|
|
133
148
|
/**
|
|
134
149
|
* 修改自定义DNS Host
|
|
135
150
|
*/
|
|
@@ -180,6 +195,16 @@ export class Client extends AbstractClient {
|
|
|
180
195
|
return this.request("DescribePreDomainList", req, cb)
|
|
181
196
|
}
|
|
182
197
|
|
|
198
|
+
/**
|
|
199
|
+
* 用户合作商预释放出价
|
|
200
|
+
*/
|
|
201
|
+
async BidPreDomains(
|
|
202
|
+
req: BidPreDomainsRequest,
|
|
203
|
+
cb?: (error: string, rep: BidPreDomainsResponse) => void
|
|
204
|
+
): Promise<BidPreDomainsResponse> {
|
|
205
|
+
return this.request("BidPreDomains", req, cb)
|
|
206
|
+
}
|
|
207
|
+
|
|
183
208
|
/**
|
|
184
209
|
* 查询自定义DNS Host
|
|
185
210
|
*/
|