tencentcloud-sdk-nodejs 4.0.463 → 4.0.464

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 (62) hide show
  1. package/CHANGELOG.md +491 -0
  2. package/SERVICE_CHANGELOG.md +828 -72
  3. package/package.json +1 -1
  4. package/products.md +15 -15
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/bma/v20210624/bma_client.ts +13 -1
  7. package/src/services/bma/v20210624/bma_models.ts +41 -16
  8. package/src/services/ckafka/v20190819/ckafka_models.ts +5 -0
  9. package/src/services/cpdp/v20190820/cpdp_models.ts +8 -0
  10. package/src/services/ess/v20201111/ess_models.ts +23 -17
  11. package/src/services/essbasic/v20210526/essbasic_client.ts +24 -7
  12. package/src/services/essbasic/v20210526/essbasic_models.ts +38 -12
  13. package/src/services/pts/v20210728/pts_models.ts +36 -0
  14. package/src/services/ssm/v20190923/ssm_models.ts +1 -1
  15. package/src/services/tcm/v20210413/tcm_client.ts +40 -16
  16. package/src/services/tcm/v20210413/tcm_models.ts +50 -0
  17. package/src/services/tcss/v20201101/tcss_client.ts +2008 -287
  18. package/src/services/tcss/v20201101/tcss_models.ts +12366 -4182
  19. package/src/services/teo/v20220901/teo_client.ts +2 -0
  20. package/src/services/teo/v20220901/teo_models.ts +68 -4
  21. package/src/services/tke/v20180525/tke_client.ts +3 -3
  22. package/src/services/tke/v20180525/tke_models.ts +38 -2
  23. package/src/services/trp/v20210515/trp_models.ts +5 -5
  24. package/src/services/trtc/v20190722/trtc_client.ts +8 -81
  25. package/src/services/trtc/v20190722/trtc_models.ts +107 -692
  26. package/src/services/wedata/v20210820/wedata_client.ts +79 -41
  27. package/src/services/wedata/v20210820/wedata_models.ts +417 -64
  28. package/tencentcloud/common/sdk_version.d.ts +1 -1
  29. package/tencentcloud/common/sdk_version.js +1 -1
  30. package/tencentcloud/services/bma/v20210624/bma_client.d.ts +5 -1
  31. package/tencentcloud/services/bma/v20210624/bma_client.js +6 -0
  32. package/tencentcloud/services/bma/v20210624/bma_models.d.ts +36 -14
  33. package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +4 -0
  34. package/tencentcloud/services/cpdp/v20190820/cpdp_models.d.ts +7 -0
  35. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +19 -14
  36. package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +22 -5
  37. package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +22 -5
  38. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +36 -11
  39. package/tencentcloud/services/pts/v20210728/pts_models.d.ts +30 -0
  40. package/tencentcloud/services/ssm/v20190923/ssm_models.d.ts +1 -1
  41. package/tencentcloud/services/tcm/v20210413/tcm_client.d.ts +15 -7
  42. package/tencentcloud/services/tcm/v20210413/tcm_client.js +21 -9
  43. package/tencentcloud/services/tcm/v20210413/tcm_models.d.ts +44 -0
  44. package/tencentcloud/services/tcss/v20201101/tcss_client.d.ts +621 -65
  45. package/tencentcloud/services/tcss/v20201101/tcss_client.js +948 -114
  46. package/tencentcloud/services/tcss/v20201101/tcss_models.d.ts +9626 -2675
  47. package/tencentcloud/services/teo/v20220901/teo_models.d.ts +58 -4
  48. package/tencentcloud/services/tke/v20180525/tke_client.d.ts +3 -3
  49. package/tencentcloud/services/tke/v20180525/tke_client.js +1 -1
  50. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +34 -2
  51. package/tencentcloud/services/trp/v20210515/trp_models.d.ts +5 -5
  52. package/tencentcloud/services/trtc/v20190722/trtc_client.d.ts +3 -33
  53. package/tencentcloud/services/trtc/v20190722/trtc_client.js +2 -38
  54. package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +60 -556
  55. package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +25 -13
  56. package/tencentcloud/services/wedata/v20210820/wedata_client.js +35 -17
  57. package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +352 -54
  58. package/test/bma.v20210624.test.js +10 -0
  59. package/test/tcm.v20210413.test.js +26 -6
  60. package/test/tcss.v20201101.test.js +1713 -323
  61. package/test/trtc.v20190722.test.js +0 -30
  62. package/test/wedata.v20210820.test.js +40 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs",
3
- "version": "4.0.463",
3
+ "version": "4.0.464",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "tencentcloud/index.js",
6
6
  "scripts": {
package/products.md CHANGED
@@ -24,7 +24,7 @@
24
24
  | billing | [计费相关](https://cloud.tencent.com/document/product/555) | 2022-08-15 06:09:23 |
25
25
  | bizlive | [商业直播](https://cloud.tencent.com/document/product) | 2020-03-10 01:08:07 |
26
26
  | bm | [黑石物理服务器1.0](https://cloud.tencent.com/document/product/386) | 2022-08-09 11:50:03 |
27
- | bma | [品牌经营管家](https://cloud.tencent.com/document/product/1296) | 2022-10-19 06:10:00 |
27
+ | bma | [品牌经营管家](https://cloud.tencent.com/document/product/1296) | 2022-10-19 17:32:07 |
28
28
  | bmeip | [黑石弹性公网IP](https://cloud.tencent.com/document/product/1028) | 2022-04-19 06:04:56 |
29
29
  | bmlb | [黑石负载均衡](https://cloud.tencent.com/document/product/1027) | 2022-04-04 06:09:37 |
30
30
  | bmvpc | [黑石私有网络](https://cloud.tencent.com/document/product/1024) | 2022-04-15 06:02:36 |
@@ -51,7 +51,7 @@
51
51
  | cii | [智能保险助手](https://cloud.tencent.com/document/product/1368) | 2022-06-27 06:06:02 |
52
52
  | cim | [](https://cloud.tencent.com/document/product) | 2019-05-16 17:21:18 |
53
53
  | cis | [](https://cloud.tencent.com/document/product) | 2018-06-07 15:01:42 |
54
- | ckafka | [消息队列 Ckafka](https://cloud.tencent.com/document/product/597) | 2022-10-14 06:17:04 |
54
+ | ckafka | [消息队列 Ckafka](https://cloud.tencent.com/document/product/597) | 2022-10-20 06:14:29 |
55
55
  | clb | [负载均衡](https://cloud.tencent.com/document/product/214) | 2022-09-22 06:16:46 |
56
56
  | cloudaudit | [云审计](https://cloud.tencent.com/document/product/629) | 2022-07-08 06:05:30 |
57
57
  | cloudhsm | [云加密机](https://cloud.tencent.com/document/product/639) | 2022-06-22 06:04:38 |
@@ -60,7 +60,7 @@
60
60
  | cme | [多媒体创作引擎](https://cloud.tencent.com/document/product/1156) | 2022-08-24 06:19:05 |
61
61
  | cmq | [消息队列 CMQ](https://cloud.tencent.com/document/product/406) | 2022-10-17 06:17:26 |
62
62
  | cms | [内容安全](https://cloud.tencent.com/document/product) | 2020-10-29 08:03:08 |
63
- | cpdp | [企业收付平台](https://cloud.tencent.com/document/product/1122) | 2022-10-19 06:17:23 |
63
+ | cpdp | [企业收付平台](https://cloud.tencent.com/document/product/1122) | 2022-10-20 06:16:38 |
64
64
  | cr | [金融联络机器人](https://cloud.tencent.com/document/product/656) | 2021-02-24 08:03:24 |
65
65
  | cvm | [云服务器](https://cloud.tencent.com/document/product/213) | 2022-10-12 06:23:14 |
66
66
  | cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2022-10-14 06:21:52 |
@@ -88,8 +88,8 @@
88
88
  | eis | [企业集成服务](https://cloud.tencent.com/document/product/1270) | 2022-08-16 06:23:41 |
89
89
  | emr | [弹性 MapReduce](https://cloud.tencent.com/document/product/589) | 2022-09-06 06:30:34 |
90
90
  | es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2022-09-28 06:30:23 |
91
- | ess | [电子签服务](https://cloud.tencent.com/document/product/1323) | 2022-09-30 06:31:46 |
92
- | essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2022-10-19 06:25:55 |
91
+ | ess | [电子签服务](https://cloud.tencent.com/document/product/1323) | 2022-10-20 06:24:19 |
92
+ | essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2022-10-19 20:26:32 |
93
93
  | facefusion | [人脸融合](https://cloud.tencent.com/document/product/670) | 2022-06-15 06:09:10 |
94
94
  | faceid | [人脸核身](https://cloud.tencent.com/document/product/1007) | 2022-10-17 06:26:28 |
95
95
  | fmu | [人脸试妆](https://cloud.tencent.com/document/product/1172) | 2022-04-04 06:43:06 |
@@ -119,7 +119,7 @@
119
119
  | kms | [密钥管理系统](https://cloud.tencent.com/document/product/573) | 2022-08-05 06:26:44 |
120
120
  | lcic | [低代码互动课堂](https://cloud.tencent.com/document/product/1639) | 2022-10-19 06:31:50 |
121
121
  | lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2022-09-14 06:27:13 |
122
- | live | [云直播](https://cloud.tencent.com/document/product/267) | 2022-09-23 06:36:42 |
122
+ | live | [云直播](https://cloud.tencent.com/document/product/267) | 2022-10-20 06:30:31 |
123
123
  | lowcode | [云开发低码](https://cloud.tencent.com/document/product/1301) | 2022-04-04 06:56:51 |
124
124
  | lp | [登录保护](https://cloud.tencent.com/document/product/1190) | 2022-04-04 06:56:52 |
125
125
  | mariadb | [云数据库 MariaDB](https://cloud.tencent.com/document/product/237) | 2022-10-13 06:35:29 |
@@ -144,7 +144,7 @@
144
144
  | pds | [私域安全](https://cloud.tencent.com/document/product/1473) | 2022-04-04 07:02:02 |
145
145
  | postgres | [云数据库 PostgreSQL](https://cloud.tencent.com/document/product/409) | 2022-09-23 06:42:05 |
146
146
  | privatedns | [私有域解析 Private DNS](https://cloud.tencent.com/document/product/1338) | 2022-09-19 06:43:11 |
147
- | pts | [云压测](https://cloud.tencent.com/document/product/1484) | 2022-09-19 06:43:24 |
147
+ | pts | [云压测](https://cloud.tencent.com/document/product/1484) | 2022-10-20 06:35:28 |
148
148
  | rce | [全栈式风控引擎](https://cloud.tencent.com/document/product/1343) | 2022-09-23 06:43:17 |
149
149
  | redis | [云数据库 Redis](https://cloud.tencent.com/document/product/239) | 2022-10-18 06:44:04 |
150
150
  | region | [地域管理系统](https://cloud.tencent.com/document/product/1596) | 2022-07-27 21:10:02 |
@@ -162,7 +162,7 @@
162
162
  | ssa | [安全运营中心](https://cloud.tencent.com/document/product/664) | 2022-08-16 06:39:20 |
163
163
  | ssl | [证书](https://cloud.tencent.com/document/product/400) | 2022-10-18 06:47:25 |
164
164
  | sslpod | [SSL 证书监控](https://cloud.tencent.com/document/product/1084) | 2022-04-04 07:07:55 |
165
- | ssm | [凭据管理系统](https://cloud.tencent.com/document/product/1140) | 2022-07-18 06:15:58 |
165
+ | ssm | [凭据管理系统](https://cloud.tencent.com/document/product/1140) | 2022-10-20 06:38:33 |
166
166
  | sts | [安全凭证服务](https://cloud.tencent.com/document/product/1312) | 2022-07-07 06:15:25 |
167
167
  | taf | [流量反欺诈](https://cloud.tencent.com/document/product/1031) | 2022-09-12 06:39:19 |
168
168
  | tag | [标签](https://cloud.tencent.com/document/product/651) | 2022-09-05 06:46:56 |
@@ -177,15 +177,15 @@
177
177
  | tcbr | [云托管 CloudBase Run](https://cloud.tencent.com/document/product/1243) | 2022-08-23 06:50:39 |
178
178
  | tcex | [腾讯云释义](https://cloud.tencent.com/document/product/1266) | 2022-07-21 06:17:29 |
179
179
  | tci | [腾讯智学课堂分析](https://cloud.tencent.com/document/product) | 2020-08-24 08:06:03 |
180
- | tcm | [服务网格](https://cloud.tencent.com/document/product/1261) | 2022-10-11 06:54:36 |
180
+ | tcm | [服务网格](https://cloud.tencent.com/document/product/1261) | 2022-10-20 06:40:11 |
181
181
  | tcr | [容器镜像服务](https://cloud.tencent.com/document/product/1141) | 2022-09-26 06:53:07 |
182
- | tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2022-09-08 06:41:25 |
182
+ | tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2022-10-20 06:40:56 |
183
183
  | tdcpg | [TDSQL-C PostgreSQL 版](https://cloud.tencent.com/document/product/1556) | 2022-10-14 06:51:40 |
184
184
  | tdid | [分布式身份](https://cloud.tencent.com/document/product/1439) | 2022-04-04 07:15:50 |
185
185
  | tdmq | [分布式消息队列](https://cloud.tencent.com/document/product/1179) | 2022-10-17 06:45:52 |
186
186
  | tds | [设备安全](https://cloud.tencent.com/document/product/1628) | 2022-10-10 06:42:56 |
187
187
  | tem | [弹性微服务](https://cloud.tencent.com/document/product/1371) | 2022-09-28 06:54:52 |
188
- | teo | [边缘安全加速平台](https://cloud.tencent.com/document/product/1552) | 2022-10-18 06:53:22 |
188
+ | teo | [边缘安全加速平台](https://cloud.tencent.com/document/product/1552) | 2022-10-20 06:52:24 |
189
189
  | thpc | [高性能计算平台](https://cloud.tencent.com/document/product/1527) | 2022-06-02 06:15:03 |
190
190
  | tia | [智能钛机器学习](https://cloud.tencent.com/document/product/851) | 2021-10-21 11:12:52 |
191
191
  | tic | [腾讯云IaC平台](https://cloud.tencent.com/document/product/1213) | 2022-04-04 07:16:52 |
@@ -195,12 +195,12 @@
195
195
  | tiia | [图像分析](https://cloud.tencent.com/document/product/865) | 2022-09-20 06:53:40 |
196
196
  | tione | [腾讯云 TI 平台 TI-ONE](https://cloud.tencent.com/document/product/851) | 2022-09-30 07:00:21 |
197
197
  | tiw | [互动白板](https://cloud.tencent.com/document/product/1137) | 2022-05-17 06:17:19 |
198
- | tke | [容器服务](https://cloud.tencent.com/document/product/457) | 2022-10-19 06:47:26 |
198
+ | tke | [容器服务](https://cloud.tencent.com/document/product/457) | 2022-10-20 06:54:45 |
199
199
  | tkgdq | [腾讯知识图谱数据查询](https://cloud.tencent.com/document/product) | 2020-03-10 00:51:44 |
200
200
  | tms | [文本内容安全](https://cloud.tencent.com/document/product/1124) | 2022-04-04 07:18:11 |
201
201
  | tmt | [机器翻译](https://cloud.tencent.com/document/product/551) | 2022-08-31 06:55:53 |
202
- | trp | [T-Sec-安心平台(RP)](https://cloud.tencent.com/document/product/1458) | 2022-10-19 06:48:35 |
203
- | trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2022-10-17 06:50:00 |
202
+ | trp | [T-Sec-安心平台(RP)](https://cloud.tencent.com/document/product/1458) | 2022-10-20 06:56:09 |
203
+ | trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2022-10-19 15:31:57 |
204
204
  | tse | [腾讯云微服务引擎](https://cloud.tencent.com/document/product/1364) | 2022-10-12 07:03:55 |
205
205
  | tsf | [腾讯微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2022-10-11 07:02:55 |
206
206
  | tsw | [腾讯微服务观测平台 TSW](https://cloud.tencent.com/document/product/1311) | 2022-04-04 07:22:40 |
@@ -212,7 +212,7 @@
212
212
  | vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2022-10-10 06:50:01 |
213
213
  | waf | [Web 应用防火墙](https://cloud.tencent.com/document/product/627) | 2022-09-15 06:49:04 |
214
214
  | wav | [企业微信汽车行业版](https://cloud.tencent.com/document/product/1318) | 2022-10-12 07:10:28 |
215
- | wedata | [数据开发治理平台 WeData](https://cloud.tencent.com/document/product/1267) | 2022-10-17 06:55:30 |
215
+ | wedata | [数据开发治理平台 WeData](https://cloud.tencent.com/document/product/1267) | 2022-10-20 07:01:15 |
216
216
  | wss | [SSL证书管理服务](https://cloud.tencent.com/document/product) | 2020-04-01 08:53:44 |
217
217
  | yinsuda | [音速达直播音乐版权引擎](https://cloud.tencent.com/document/product/1592) | 2022-09-16 06:52:09 |
218
218
  | youmall | [](https://cloud.tencent.com/document/product) | 2019-01-11 11:24:15 |
@@ -1 +1 @@
1
- export const sdkVersion = "4.0.463"
1
+ export const sdkVersion = "4.0.464"
@@ -39,6 +39,7 @@ import {
39
39
  DescribeBPFakeURLsResponse,
40
40
  CreateBPOfflineAttachmentResponse,
41
41
  DescribeBPReportFakeURLsRequest,
42
+ DescribeCRMonitorDetailResponse,
42
43
  MonitorTort,
43
44
  CreateBPFakeURLRequest,
44
45
  UpdateCRWorkResponse,
@@ -47,11 +48,12 @@ import {
47
48
  DescribeCRMonitorsResponse,
48
49
  CreateCRCompanyVerifyResponse,
49
50
  CreateBPOfflineAttachmentRequest,
51
+ CreateCRDesktopCodeResponse,
50
52
  CreateBPProtectURLsRequest,
51
53
  CreateCRObtainRequest,
52
54
  ModifyCRBlockStatusRequest,
53
55
  ModifyCRMonitorRequest,
54
- DescribeCRMonitorDetailResponse,
56
+ CreateCRDesktopCodeRequest,
55
57
  CreateCRWorkRequest,
56
58
  DescribeBPCompanyInfoRequest,
57
59
  DescribeCRObtainDetailRequest,
@@ -103,6 +105,16 @@ export class Client extends AbstractClient {
103
105
  return this.request("UpdateCRWork", req, cb)
104
106
  }
105
107
 
108
+ /**
109
+ * 新建过程取证码
110
+ */
111
+ async CreateCRDesktopCode(
112
+ req: CreateCRDesktopCodeRequest,
113
+ cb?: (error: string, rep: CreateCRDesktopCodeResponse) => void
114
+ ): Promise<CreateCRDesktopCodeResponse> {
115
+ return this.request("CreateCRDesktopCode", req, cb)
116
+ }
117
+
106
118
  /**
107
119
  * 查询企业信息
108
120
  */
@@ -620,6 +620,31 @@ export interface DescribeBPReportFakeURLsRequest {
620
620
  PageNumber?: number
621
621
  }
622
622
 
623
+ /**
624
+ * DescribeCRMonitorDetail返回参数结构体
625
+ */
626
+ export interface DescribeCRMonitorDetailResponse {
627
+ /**
628
+ * 侵权数组
629
+ */
630
+ Torts: Array<MonitorTort>
631
+
632
+ /**
633
+ * 总记录数
634
+ */
635
+ TotalCount: number
636
+
637
+ /**
638
+ * 监测状态
639
+ */
640
+ MonitorStatus: number
641
+
642
+ /**
643
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
644
+ */
645
+ RequestId?: string
646
+ }
647
+
623
648
  /**
624
649
  * 监测侵权信息详情
625
650
  */
@@ -890,6 +915,16 @@ export interface CreateBPOfflineAttachmentRequest {
890
915
  AuthorizationName?: string
891
916
  }
892
917
 
918
+ /**
919
+ * CreateCRDesktopCode返回参数结构体
920
+ */
921
+ export interface CreateCRDesktopCodeResponse {
922
+ /**
923
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
924
+ */
925
+ RequestId?: string
926
+ }
927
+
893
928
  /**
894
929
  * CreateBPProtectURLs请求参数结构体
895
930
  */
@@ -1006,28 +1041,18 @@ export interface ModifyCRMonitorRequest {
1006
1041
  }
1007
1042
 
1008
1043
  /**
1009
- * DescribeCRMonitorDetail返回参数结构体
1044
+ * CreateCRDesktopCode请求参数结构体
1010
1045
  */
1011
- export interface DescribeCRMonitorDetailResponse {
1012
- /**
1013
- * 侵权数组
1014
- */
1015
- Torts: Array<MonitorTort>
1016
-
1046
+ export interface CreateCRDesktopCodeRequest {
1017
1047
  /**
1018
- * 总记录数
1019
- */
1020
- TotalCount: number
1021
-
1022
- /**
1023
- * 监测状态
1048
+ * xxx
1024
1049
  */
1025
- MonitorStatus: number
1050
+ TortId: number
1026
1051
 
1027
1052
  /**
1028
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1053
+ * xxx
1029
1054
  */
1030
- RequestId?: string
1055
+ DesktopCode: string
1031
1056
  }
1032
1057
 
1033
1058
  /**
@@ -7733,6 +7733,11 @@ export interface MySQLParam {
7733
7733
  * 如果该值为 true,则消息中会携带消息结构体对应的schema,如果该值为false则不会携带
7734
7734
  */
7735
7735
  RecordWithSchema?: boolean
7736
+
7737
+ /**
7738
+ * 存放信令表的数据库名称
7739
+ */
7740
+ SignalDatabase?: string
7736
7741
  }
7737
7742
 
7738
7743
  /**
@@ -17430,6 +17430,14 @@ export interface CreateOpenBankGlobalPaymentOrderRequest {
17430
17430
  * 账单信息
17431
17431
  */
17432
17432
  BillingInfo?: OpenBankBillingInfo
17433
+
17434
+ /**
17435
+ * 环境类型
17436
+ __release__:生产环境
17437
+ __sandbox__:沙箱环境
17438
+ 缺省默认为生产环境
17439
+ */
17440
+ Environment?: string
17433
17441
  }
17434
17442
 
17435
17443
  /**
@@ -787,6 +787,7 @@ CHECK_BOX - true/false
787
787
  FILL_IMAGE、ATTACHMENT - 附件的FileId,需要通过UploadFiles接口上传获取
788
788
  SELECTOR - 选项值
789
789
  DYNAMIC_TABLE - 传入json格式的表格内容,具体见数据结构FlowInfo:https://cloud.tencent.com/document/api/1420/61525#FlowInfo
790
+ SIGN_SEAL - 印章Id,于控制台查询获取
790
791
  */
791
792
  ComponentValue?: string
792
793
 
@@ -1824,32 +1825,20 @@ export interface SuccessDeleteStaffData {
1824
1825
  * CreateMultiFlowSignQRCode请求参数结构体
1825
1826
  */
1826
1827
  export interface CreateMultiFlowSignQRCodeRequest {
1827
- /**
1828
- * 模板ID
1829
- */
1830
- TemplateId: string
1831
-
1832
- /**
1833
- * 签署流程名称,最大长度不超过200字符
1834
- */
1835
- FlowName: string
1836
-
1837
1828
  /**
1838
1829
  * 用户信息
1839
1830
  */
1840
1831
  Operator: UserInfo
1841
1832
 
1842
1833
  /**
1843
- * 应用信息
1834
+ * 模板ID
1844
1835
  */
1845
- Agent?: Agent
1836
+ TemplateId: string
1846
1837
 
1847
1838
  /**
1848
- * 回调地址,最大长度1000字符串
1849
- 回调时机:
1850
- 用户通过签署二维码发起签署流程时,企业额度不足导致失败
1851
- */
1852
- CallbackUrl?: string
1839
+ * 签署流程名称,最大长度不超过200字符
1840
+ */
1841
+ FlowName: string
1853
1842
 
1854
1843
  /**
1855
1844
  * 最大可发起签署流程份数,默认5份
@@ -1870,6 +1859,23 @@ export interface CreateMultiFlowSignQRCodeRequest {
1870
1859
  /**
1871
1860
  * 限制二维码用户条件
1872
1861
  */
1862
+ Restrictions?: Array<ApproverRestriction>
1863
+
1864
+ /**
1865
+ * 回调地址,最大长度1000字符串
1866
+ 回调时机:
1867
+ 用户通过签署二维码发起签署流程时,企业额度不足导致失败
1868
+ */
1869
+ CallbackUrl?: string
1870
+
1871
+ /**
1872
+ * 应用信息
1873
+ */
1874
+ Agent?: Agent
1875
+
1876
+ /**
1877
+ * 限制二维码用户条件(已弃用)
1878
+ */
1873
1879
  ApproverRestrictions?: ApproverRestriction
1874
1880
  }
1875
1881
 
@@ -145,7 +145,7 @@ export class Client extends AbstractClient {
145
145
  }
146
146
 
147
147
  /**
148
- * 渠道通过图片为子客代创建印章,图片最大5m;此接口不可直接使用,需要运营申请
148
+ * 渠道通过图片为子客代创建印章,图片最大5m;此接口不可直接使用,请联系运营/客服咨询相关流程
149
149
  */
150
150
  async CreateSealByImage(
151
151
  req: CreateSealByImageRequest,
@@ -187,7 +187,7 @@ export class Client extends AbstractClient {
187
187
 
188
188
  /**
189
189
  * 接口(CreateFlowsByTemplates)用于使用多个模板批量创建签署流程。当前可批量发起合同(签署流程)数量最大为20个。
190
-
190
+ 合同发起人必须在电子签已经进行实名。
191
191
  */
192
192
  async CreateFlowsByTemplates(
193
193
  req: CreateFlowsByTemplatesRequest,
@@ -197,8 +197,24 @@ export class Client extends AbstractClient {
197
197
  }
198
198
 
199
199
  /**
200
- * 创建跳转小程序查看或签署的链接;自动签署的签署方不创建签署链接;
201
- */
200
+ * 创建跳转小程序查看或签署的链接。
201
+
202
+ 跳转小程序的几种方式:主要是设置不同的EndPoint
203
+ 1. 通过链接Url直接跳转到小程序,不需要返回
204
+ 设置EndPoint为WEIXINAPP,得到链接打开即可。(与短信提醒用户签署形式一样)。
205
+ 2. 通过链接Url打开H5引导页-->点击跳转到小程序-->签署完退出小程序-->回到H5引导页-->跳转到指定JumpUrl
206
+ 设置EndPoint为CHANNEL,指定JumpUrl,得到链接打开即可。
207
+ 3. 客户App直接跳转到小程序-->小程序签署完成-->返回App
208
+ 跳转到小程序的实现,参考官方文档(分为全屏、半屏两种方式)
209
+ 全屏方式:
210
+ (https://developers.weixin.qq.com/miniprogram/dev/api/navigate/wx.navigateToMiniProgram.html)
211
+ 半屏方式:
212
+ (https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/openEmbeddedMiniProgram.html)
213
+ 其中小程序的原始Id,请联系<对接技术人员>获取,或者查看小程序信息自助获取。
214
+ 使用CreateSignUrls,设置EndPoint为APP,得到path。
215
+ 4. 客户小程序直接跳到电子签小程序-->签署完成退出电子签小程序-->回到客户小程序
216
+ 实现方式同App跳小程序。
217
+ */
202
218
  async CreateSignUrls(
203
219
  req: CreateSignUrlsRequest,
204
220
  cb?: (error: string, rep: CreateSignUrlsResponse) => void
@@ -211,7 +227,7 @@ export class Client extends AbstractClient {
211
227
  若子客企业未激活,会进入企业激活流程,首次参与激活流程的经办人会成为超管。(若企业激活过程中填写信息有误,需要重置激活流程,可以换一个经办人OpenId获取新的链接进入。)
212
228
  若子客企业已激活,使用了新的经办人OpenId进入,则会进入经办人的实名流程。
213
229
  若子客企业、经办人均已完成认证,则会直接进入子客Web控制台。
214
-
230
+ 返回的Url仅支持PC端操作。
215
231
  */
216
232
  async CreateConsoleLoginUrl(
217
233
  req: CreateConsoleLoginUrlRequest,
@@ -323,8 +339,9 @@ export class Client extends AbstractClient {
323
339
  }
324
340
 
325
341
  /**
326
- * 根据签署流程信息批量获取资源下载链接,需合作企业先进行授权
327
- */
342
+ * 根据签署流程信息批量获取资源下载链接,可以下载签署中、签署完的合同,需合作企业先进行授权。
343
+ 此接口直接返回下载的资源的url,与接口GetDownloadFlowUrl跳转到控制台的下载方式不同。
344
+ */
328
345
  async DescribeResourceUrlsByFlows(
329
346
  req: DescribeResourceUrlsByFlowsRequest,
330
347
  cb?: (error: string, rep: DescribeResourceUrlsByFlowsResponse) => void
@@ -114,7 +114,17 @@ export interface PdfVerifyResult {
114
114
  }
115
115
 
116
116
  /**
117
- * 创建签署流程签署人入参
117
+ * 创建签署流程签署人入参。
118
+
119
+ 其中签署方FlowApproverInfo需要传递的参数
120
+ 非单C、单B、B2C合同,ApproverType、RecipientId(模版发起合同时)必传,建议都传。其他身份标识
121
+ 1-个人:Name、Mobile必传
122
+ 2-渠道子客企业指定经办人:OpenId必传,OrgName必传、OrgOpenId必传;
123
+ 3-渠道合作企业不指定经办人:(暂不支持)
124
+ 4-非渠道合作企业:Name、Mobile必传,OrgName必传,且NotChannelOrganization=True。
125
+
126
+ RecipientId参数:
127
+ 从DescribeTemplates接口中,可以得到模版下的签署方Recipient列表,根据模版自定义的Rolename在此结构体中确定其RecipientId
118
128
  */
119
129
  export interface FlowApproverInfo {
120
130
  /**
@@ -628,7 +638,7 @@ export interface CreateSignUrlsRequest {
628
638
 
629
639
  /**
630
640
  * 签署链接生成类型,默认是 "ALL";
631
- "ALL":全部签署方签署链接;
641
+ "ALL":全部签署方签署链接,此时不会给自动签署的签署方创建签署链接;
632
642
  "CHANNEL":渠道合作企业;
633
643
  "NOT_CHANNEL":非渠道合作企业;
634
644
  "PERSON":个人;
@@ -713,6 +723,11 @@ export interface ChannelCreateMultiFlowSignQRCodeRequest {
713
723
  */
714
724
  QrEffectiveDay?: number
715
725
 
726
+ /**
727
+ * 限制二维码用户条件
728
+ */
729
+ Restrictions?: Array<ApproverRestriction>
730
+
716
731
  /**
717
732
  * 回调地址,最大长度1000个字符
718
733
  不传默认使用渠道应用号配置的回调地址
@@ -721,14 +736,14 @@ export interface ChannelCreateMultiFlowSignQRCodeRequest {
721
736
  CallbackUrl?: string
722
737
 
723
738
  /**
724
- * 限制二维码用户条件
739
+ * 用户信息
725
740
  */
726
- ApproverRestrictions?: ApproverRestriction
741
+ Operator?: UserInfo
727
742
 
728
743
  /**
729
- * 用户信息
744
+ * 限制二维码用户条件(已弃用)
730
745
  */
731
- Operator?: UserInfo
746
+ ApproverRestrictions?: ApproverRestriction
732
747
  }
733
748
 
734
749
  /**
@@ -1002,6 +1017,12 @@ PERSON 自然人
1002
1017
  /**
1003
1018
  * 此结构体 (Component) 用于描述控件属性。
1004
1019
 
1020
+ 在通过文件发起合同时,对应的component有三种定位方式
1021
+ 1. 绝对定位方式
1022
+ 2. 表单域(FIELD)定位方式
1023
+ 3. 关键字(KEYWORD)定位方式
1024
+ 可以参考官网说明
1025
+ https://cloud.tencent.com/document/product/1323/78346#component-.E4.B8.89.E7.A7.8D.E5.AE.9A.E4.BD.8D.E6.96.B9.E5.BC.8F.E8.AF.B4.E6.98.8E
1005
1026
  */
1006
1027
  export interface Component {
1007
1028
  /**
@@ -1096,7 +1117,10 @@ KEYWORD - 关键字
1096
1117
  /**
1097
1118
  * 参数控件样式,json格式表述
1098
1119
  不同类型的控件会有部分非通用参数
1099
- TEXT控件可以指定字体
1120
+ TEXT/MULTI_LINE_TEXT控件可以指定
1121
+ 1 Font:目前只支持黑体、宋体
1122
+ 2 FontSize: 范围12-72
1123
+ 3 FontAlign: Left/Right/Center,左对齐/居中/右对齐
1100
1124
  例如:{"FontSize":12}
1101
1125
  */
1102
1126
  ComponentExtra?: string
@@ -1619,12 +1643,14 @@ export interface SyncProxyOrganizationOperatorsRequest {
1619
1643
  */
1620
1644
  export interface CreateConsoleLoginUrlResponse {
1621
1645
  /**
1622
- * 子客Web控制台url,此链接5分钟内有效,且只能访问一次
1623
- */
1646
+ * 子客Web控制台url,此链接5分钟内有效,且只能访问一次。同时需要注意:
1647
+ 1. 此链接仅单次有效,使用后需要再次创建新的链接(部分聊天软件,如企业微信默认会对链接进行解析,此时需要使用类似“代码片段”的方式或者放到txt文件里发送链接);
1648
+ 2. 创建的链接应避免被转义,如:&被转义为\u0026;如使用Postman请求后,请选择响应类型为 JSON,否则链接将被转义
1649
+ */
1624
1650
  ConsoleUrl: string
1625
1651
 
1626
1652
  /**
1627
- * 渠道子客企业是否已开通腾讯电子签。
1653
+ * 渠道子客企业是否已开通腾讯电子签
1628
1654
  */
1629
1655
  IsActivated: boolean
1630
1656
 
@@ -1649,7 +1675,7 @@ export interface CreateFlowsByTemplatesRequest {
1649
1675
  FlowInfos: Array<FlowInfo>
1650
1676
 
1651
1677
  /**
1652
- * 是否为预览模式;默认为false,即非预览模式,此时发起合同并返回FlowIds;若为预览模式,则返回PreviewUrls
1678
+ * 是否为预览模式;默认为false,即非预览模式,此时发起合同并返回FlowIds;若为预览模式,不会发起合同,会返回PreviewUrls(此Url返回的是PDF文件流 );
1653
1679
  预览链接有效期300秒;
1654
1680
  */
1655
1681
  NeedPreview?: boolean
@@ -1887,7 +1913,7 @@ export interface DescribeResourceUrlsByFlowsRequest {
1887
1913
  Agent: Agent
1888
1914
 
1889
1915
  /**
1890
- * 查询资源所对应的签署流程Id,最多支持50个。
1916
+ * 查询资源所对应的签署流程Id,最多支持50
1891
1917
  */
1892
1918
  FlowIds?: Array<string>
1893
1919
 
@@ -237,6 +237,12 @@ export interface Concurrency {
237
237
  注意:此字段可能返回 null,表示取不到有效值。
238
238
  */
239
239
  MaxRequestsPerSecond?: number
240
+
241
+ /**
242
+ * 优雅终止任务的等待时间
243
+ 注意:此字段可能返回 null,表示取不到有效值。
244
+ */
245
+ GracefulStopSeconds?: number
240
246
  }
241
247
 
242
248
  /**
@@ -890,6 +896,12 @@ export interface CustomSample {
890
896
  * 指标对应的单位,当前单位有:s,bytes,bytes/s,reqs,reqs/s,checks,checks/s,iters,iters/s,VUs, %
891
897
  */
892
898
  Unit: string
899
+
900
+ /**
901
+ * 指标序列名字
902
+ 注意:此字段可能返回 null,表示取不到有效值。
903
+ */
904
+ Name: string
893
905
  }
894
906
 
895
907
  /**
@@ -1934,6 +1946,12 @@ export interface RequestsPerSecond {
1934
1946
  注意:此字段可能返回 null,表示取不到有效值。
1935
1947
  */
1936
1948
  TargetRequestsPerSecond?: number
1949
+
1950
+ /**
1951
+ * 优雅关停的等待时间
1952
+ 注意:此字段可能返回 null,表示取不到有效值。
1953
+ */
1954
+ GracefulStopSeconds?: number
1937
1955
  }
1938
1956
 
1939
1957
  /**
@@ -4061,6 +4079,24 @@ export interface File {
4061
4079
  注意:此字段可能返回 null,表示取不到有效值。
4062
4080
  */
4063
4081
  ProjectId: string
4082
+
4083
+ /**
4084
+ * 用户账号的 App ID
4085
+ 注意:此字段可能返回 null,表示取不到有效值。
4086
+ */
4087
+ AppID: number
4088
+
4089
+ /**
4090
+ * 用户主账号
4091
+ 注意:此字段可能返回 null,表示取不到有效值。
4092
+ */
4093
+ Uin: string
4094
+
4095
+ /**
4096
+ * 用户子账号
4097
+ 注意:此字段可能返回 null,表示取不到有效值。
4098
+ */
4099
+ SubAccountUin: string
4064
4100
  }
4065
4101
 
4066
4102
  /**
@@ -213,7 +213,7 @@ False -- 表示仅仅清理此凭据中存储的SSH密钥信息,不在CVM进
213
213
  */
214
214
  export interface CreateSecretRequest {
215
215
  /**
216
- * 凭据名称,同一region内不可重复,最长128字节,使用字母、数字或者 - _ 的组合,第一个字符必须为字母或者数字。
216
+ * 凭据名称,同一region内不可重复,最长128字节,使用字母、数字或者 - _ 的组合,第一个字符必须为字母或者数字。一旦创建不可修改。
217
217
  */
218
218
  SecretName: string
219
219