tencentcloud-sdk-nodejs 4.0.466 → 4.0.467

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 (63) hide show
  1. package/CHANGELOG.md +255 -0
  2. package/SERVICE_CHANGELOG.md +298 -307
  3. package/package.json +1 -1
  4. package/products.md +17 -17
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/antiddos/v20200309/antiddos_models.ts +10 -0
  7. package/src/services/ccc/v20200210/ccc_client.ts +1 -0
  8. package/src/services/ccc/v20200210/ccc_models.ts +20 -0
  9. package/src/services/clb/v20180317/clb_models.ts +2 -2
  10. package/src/services/cls/v20201016/cls_models.ts +9 -0
  11. package/src/services/cpdp/v20190820/cpdp_client.ts +3 -2
  12. package/src/services/cpdp/v20190820/cpdp_models.ts +54 -29
  13. package/src/services/cwp/v20180228/cwp_models.ts +10 -0
  14. package/src/services/dc/v20180410/dc_models.ts +1 -1
  15. package/src/services/ess/v20201111/ess_client.ts +2 -1
  16. package/src/services/ess/v20201111/ess_models.ts +93 -73
  17. package/src/services/essbasic/v20210526/essbasic_client.ts +3 -2
  18. package/src/services/essbasic/v20210526/essbasic_models.ts +40 -20
  19. package/src/services/ivld/v20210903/ivld_models.ts +6 -0
  20. package/src/services/live/v20180801/live_client.ts +4 -4
  21. package/src/services/live/v20180801/live_models.ts +1 -1
  22. package/src/services/mariadb/v20170312/mariadb_client.ts +42 -6
  23. package/src/services/mariadb/v20170312/mariadb_models.ts +115 -0
  24. package/src/services/privatedns/v20201028/privatedns_client.ts +12 -0
  25. package/src/services/privatedns/v20201028/privatedns_models.ts +45 -0
  26. package/src/services/ses/v20201002/ses_models.ts +5 -0
  27. package/src/services/tag/v20180813/tag_client.ts +32 -8
  28. package/src/services/tag/v20180813/tag_models.ts +86 -16
  29. package/src/services/tcss/v20201101/tcss_models.ts +7 -7
  30. package/src/services/trp/v20210515/trp_models.ts +3 -3
  31. package/tencentcloud/common/sdk_version.d.ts +1 -1
  32. package/tencentcloud/common/sdk_version.js +1 -1
  33. package/tencentcloud/services/antiddos/v20200309/antiddos_models.d.ts +8 -0
  34. package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +17 -0
  35. package/tencentcloud/services/clb/v20180317/clb_models.d.ts +2 -2
  36. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +8 -0
  37. package/tencentcloud/services/cpdp/v20190820/cpdp_client.d.ts +1 -1
  38. package/tencentcloud/services/cpdp/v20190820/cpdp_models.d.ts +47 -26
  39. package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +8 -0
  40. package/tencentcloud/services/dc/v20180410/dc_models.d.ts +1 -1
  41. package/tencentcloud/services/ess/v20201111/ess_client.d.ts +1 -1
  42. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +78 -61
  43. package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +1 -1
  44. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +34 -17
  45. package/tencentcloud/services/ivld/v20210903/ivld_models.d.ts +5 -0
  46. package/tencentcloud/services/live/v20180801/live_client.d.ts +4 -4
  47. package/tencentcloud/services/live/v20180801/live_client.js +4 -4
  48. package/tencentcloud/services/live/v20180801/live_models.d.ts +1 -1
  49. package/tencentcloud/services/mariadb/v20170312/mariadb_client.d.ts +15 -3
  50. package/tencentcloud/services/mariadb/v20170312/mariadb_client.js +21 -3
  51. package/tencentcloud/services/mariadb/v20170312/mariadb_models.d.ts +98 -0
  52. package/tencentcloud/services/privatedns/v20201028/privatedns_client.d.ts +5 -1
  53. package/tencentcloud/services/privatedns/v20201028/privatedns_client.js +6 -0
  54. package/tencentcloud/services/privatedns/v20201028/privatedns_models.d.ts +38 -0
  55. package/tencentcloud/services/ses/v20201002/ses_models.d.ts +4 -0
  56. package/tencentcloud/services/tag/v20180813/tag_client.d.ts +11 -3
  57. package/tencentcloud/services/tag/v20180813/tag_client.js +15 -3
  58. package/tencentcloud/services/tag/v20180813/tag_models.d.ts +74 -14
  59. package/tencentcloud/services/tcss/v20201101/tcss_models.d.ts +7 -7
  60. package/tencentcloud/services/trp/v20210515/trp_models.d.ts +3 -3
  61. package/test/mariadb.v20170312.test.js +32 -2
  62. package/test/privatedns.v20201028.test.js +10 -0
  63. package/test/tag.v20180813.test.js +22 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs",
3
- "version": "4.0.466",
3
+ "version": "4.0.467",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "tencentcloud/index.js",
6
6
  "scripts": {
package/products.md CHANGED
@@ -8,7 +8,7 @@
8
8
  | afc | [定制建模](https://cloud.tencent.com/document/product/1029) | 2022-05-23 06:01:56 |
9
9
  | ame | [正版曲库直通车](https://cloud.tencent.com/document/product/1155) | 2022-04-15 06:01:25 |
10
10
  | ams | [音频内容检测](https://cloud.tencent.com/document/product/1219) | 2022-10-19 06:07:20 |
11
- | antiddos | [DDoS 防护](https://cloud.tencent.com/document/product/1021) | 2022-09-12 06:07:03 |
11
+ | antiddos | [DDoS 防护](https://cloud.tencent.com/document/product/1021) | 2022-10-26 06:07:49 |
12
12
  | apcas | [汽车精准获客服务](https://cloud.tencent.com/document/product/1244) | 2022-04-04 06:05:36 |
13
13
  | ape | [正版图库直通车](https://cloud.tencent.com/document/product/1181) | 2022-04-04 06:05:40 |
14
14
  | api | [云 API](https://cloud.tencent.com/document/product/1278) | 2022-06-07 06:00:45 |
@@ -38,7 +38,7 @@
38
38
  | casb | [云数据加密代理网关](https://cloud.tencent.com/document/product/1303) | 2022-04-04 06:11:55 |
39
39
  | cat | [云拨测](https://cloud.tencent.com/document/product/280) | 2022-09-15 11:03:22 |
40
40
  | cbs | [云硬盘](https://cloud.tencent.com/document/product/362) | 2022-10-14 06:13:09 |
41
- | ccc | [云呼叫中心](https://cloud.tencent.com/document/product/679) | 2022-09-22 06:12:48 |
41
+ | ccc | [云呼叫中心](https://cloud.tencent.com/document/product/679) | 2022-10-26 06:15:12 |
42
42
  | cdb | [云数据库 MySQL](https://cloud.tencent.com/document/product/236) | 2022-10-11 06:14:09 |
43
43
  | cdc | [本地专用集群](https://cloud.tencent.com/document/product/1346) | 2022-07-30 15:07:54 |
44
44
  | cdn | [内容分发网络](https://cloud.tencent.com/document/product/228) | 2022-10-25 06:16:59 |
@@ -52,18 +52,18 @@
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
54
  | ckafka | [消息队列 Ckafka](https://cloud.tencent.com/document/product/597) | 2022-10-25 06:19:36 |
55
- | clb | [负载均衡](https://cloud.tencent.com/document/product/214) | 2022-09-22 06:16:46 |
55
+ | clb | [负载均衡](https://cloud.tencent.com/document/product/214) | 2022-10-26 06:20:13 |
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 |
58
58
  | cloudstudio | [云端 IDE](https://cloud.tencent.com/document/product/1039) | 2022-09-28 17:57:07 |
59
- | cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2022-10-13 06:17:18 |
59
+ | cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2022-10-26 06:21:36 |
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-25 06:22:30 |
63
+ | cpdp | [企业收付平台](https://cloud.tencent.com/document/product/1122) | 2022-10-26 06:23:03 |
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
- | cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2022-10-25 06:25:41 |
66
+ | cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2022-10-26 06:25:43 |
67
67
  | cws | [漏洞扫描服务](https://cloud.tencent.com/document/product) | 2019-11-22 12:16:15 |
68
68
  | cynosdb | [云原生数据库 TDSQL-C](https://cloud.tencent.com/document/product/1003) | 2022-10-17 13:57:08 |
69
69
  | dasb | [堡垒机](https://cloud.tencent.com/document/product/1025) | 2022-08-16 06:19:02 |
@@ -71,7 +71,7 @@
71
71
  | dayu | [DDoS 高防包](https://cloud.tencent.com/document/product/1021) | 2022-07-29 06:07:15 |
72
72
  | dbbrain | [数据库智能管家 DBbrain](https://cloud.tencent.com/document/product/1130) | 2022-09-29 06:25:38 |
73
73
  | dbdc | [云数据库独享集群](https://cloud.tencent.com/document/product/1322) | 2022-07-27 06:08:38 |
74
- | dc | [专线接入](https://cloud.tencent.com/document/product/216) | 2022-10-14 06:25:18 |
74
+ | dc | [专线接入](https://cloud.tencent.com/document/product/216) | 2022-10-26 06:29:47 |
75
75
  | dcdb | [分布式数据库 TDSQL](https://cloud.tencent.com/document/product/557) | 2022-08-31 06:24:58 |
76
76
  | dlc | [数据湖计算](https://cloud.tencent.com/document/product/1342) | 2022-09-14 06:20:02 |
77
77
  | dnspod | [DNSPod](https://cloud.tencent.com/document/product/1427) | 2022-09-16 06:21:57 |
@@ -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-10-25 06:33:28 |
90
90
  | es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2022-10-25 06:33:48 |
91
- | ess | [电子签服务](https://cloud.tencent.com/document/product/1323) | 2022-10-21 06:26:34 |
92
- | essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2022-10-24 15:26:34 |
91
+ | ess | [电子签服务](https://cloud.tencent.com/document/product/1323) | 2022-10-26 06:35:22 |
92
+ | essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2022-10-26 06:35:40 |
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 |
@@ -115,14 +115,14 @@
115
115
  | iotvideo | [物联网智能视频服务](https://cloud.tencent.com/document/product/1131) | 2022-10-18 06:34:47 |
116
116
  | iotvideoindustry | [物联网智能视频服务(行业版)](https://cloud.tencent.com/document/product/1361) | 2022-08-11 06:37:02 |
117
117
  | irp | [智能推荐平台](https://cloud.tencent.com/document/product/1541) | 2022-08-19 06:27:03 |
118
- | ivld | [视频智能标签](https://cloud.tencent.com/document/product/1509) | 2022-09-20 19:36:34 |
118
+ | ivld | [媒体智能标签](https://cloud.tencent.com/document/product/1509) | 2022-10-25 19:11:18 |
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-10-25 06:43:03 |
122
+ | live | [云直播](https://cloud.tencent.com/document/product/267) | 2022-10-26 06:45:09 |
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
- | mariadb | [云数据库 MariaDB](https://cloud.tencent.com/document/product/237) | 2022-10-13 06:35:29 |
125
+ | mariadb | [云数据库 MariaDB](https://cloud.tencent.com/document/product/237) | 2022-10-26 06:46:25 |
126
126
  | market | [云市场](https://cloud.tencent.com/document/product/306) | 2022-04-04 06:57:43 |
127
127
  | memcached | [云数据库 Memcached](https://cloud.tencent.com/document/product/241) | 2022-04-04 06:57:44 |
128
128
  | mgobe | [游戏联机对战引擎](https://cloud.tencent.com/document/product/1038) | 2022-07-08 06:11:32 |
@@ -143,7 +143,7 @@
143
143
  | partners | [渠道合作伙伴](https://cloud.tencent.com/document/product/563) | 2022-09-05 06:41:45 |
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
- | privatedns | [私有域解析 Private DNS](https://cloud.tencent.com/document/product/1338) | 2022-09-19 06:43:11 |
146
+ | privatedns | [私有域解析 Private DNS](https://cloud.tencent.com/document/product/1338) | 2022-10-26 06:52:45 |
147
147
  | pts | [云压测](https://cloud.tencent.com/document/product/1484) | 2022-10-25 06:49:31 |
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 |
@@ -152,7 +152,7 @@
152
152
  | rp | [注册保护](https://cloud.tencent.com/document/product/1191) | 2022-04-04 07:04:06 |
153
153
  | rum | [前端性能监控](https://cloud.tencent.com/document/product/1464) | 2022-10-10 06:36:43 |
154
154
  | scf | [云函数](https://cloud.tencent.com/document/product/583) | 2022-09-30 06:49:15 |
155
- | ses | [邮件推送](https://cloud.tencent.com/document/product/1288) | 2022-10-19 06:39:14 |
155
+ | ses | [邮件推送](https://cloud.tencent.com/document/product/1288) | 2022-10-26 06:55:19 |
156
156
  | smh | [智能媒资托管](https://cloud.tencent.com/document/product/1339) | 2022-10-19 06:39:28 |
157
157
  | smpn | [营销号码安全](https://cloud.tencent.com/document/product/1127) | 2022-04-04 07:05:41 |
158
158
  | sms | [短信](https://cloud.tencent.com/document/product/382) | 2022-08-17 06:36:01 |
@@ -165,7 +165,7 @@
165
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
- | tag | [标签](https://cloud.tencent.com/document/product/651) | 2022-09-05 06:46:56 |
168
+ | tag | [标签](https://cloud.tencent.com/document/product/651) | 2022-10-26 06:58:19 |
169
169
  | tan | [碳引擎](https://cloud.tencent.com/document/product/1498) | 2022-07-19 06:17:34 |
170
170
  | tat | [腾讯云自动化助手](https://cloud.tencent.com/document/product/1340) | 2022-04-08 06:12:44 |
171
171
  | tav | [文件检测](https://cloud.tencent.com/document/product) | 2019-11-28 22:10:04 |
@@ -179,7 +179,7 @@
179
179
  | tci | [腾讯智学课堂分析](https://cloud.tencent.com/document/product) | 2020-08-24 08:06:03 |
180
180
  | tcm | [服务网格](https://cloud.tencent.com/document/product/1261) | 2022-10-21 06:44:08 |
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-10-25 06:57:07 |
182
+ | tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2022-10-26 07:01:49 |
183
183
  | tdcpg | [TDSQL-C PostgreSQL 版](https://cloud.tencent.com/document/product/1556) | 2022-10-21 06:47:14 |
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 |
@@ -199,7 +199,7 @@
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-20 06:56:09 |
202
+ | trp | [T-Sec-安心平台(RP)](https://cloud.tencent.com/document/product/1458) | 2022-10-26 07:10:48 |
203
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-25 07:07:46 |
205
205
  | tsf | [腾讯微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2022-10-11 07:02:55 |
@@ -1 +1 @@
1
- export const sdkVersion = "4.0.466"
1
+ export const sdkVersion = "4.0.467"
@@ -681,6 +681,16 @@ export interface DescribeListBGPInstancesRequest {
681
681
  */
682
682
  FilterEnterpriseFlag?: number
683
683
 
684
+ /**
685
+ * 轻量版搜索
686
+ */
687
+ FilterLightFlag?: number
688
+
689
+ /**
690
+ * 定制版搜索
691
+ */
692
+ FilterChannelFlag?: number
693
+
684
694
  /**
685
695
  * 标签搜索
686
696
  */
@@ -76,6 +76,7 @@ import {
76
76
  DescribeTelCallInfoResponse,
77
77
  SkillGroupInfoItem,
78
78
  StopAutoCalloutTaskResponse,
79
+ Variable,
79
80
  CreateCallOutSessionRequest,
80
81
  StaffStatusMetrics,
81
82
  BindStaffSkillGroupListResponse,
@@ -155,6 +155,11 @@ export interface CreateAutoCalloutTaskRequest {
155
155
  * 最大尝试次数
156
156
  */
157
157
  Tries?: number
158
+
159
+ /**
160
+ * 自定义变量(仅高级版支持)
161
+ */
162
+ Variables?: Array<Variable>
158
163
  }
159
164
 
160
165
  /**
@@ -1844,6 +1849,21 @@ export interface StopAutoCalloutTaskResponse {
1844
1849
  RequestId?: string
1845
1850
  }
1846
1851
 
1852
+ /**
1853
+ * 变量
1854
+ */
1855
+ export interface Variable {
1856
+ /**
1857
+ * 变量名
1858
+ */
1859
+ Key: string
1860
+
1861
+ /**
1862
+ * 变量值
1863
+ */
1864
+ Value: string
1865
+ }
1866
+
1847
1867
  /**
1848
1868
  * CreateCallOutSession请求参数结构体
1849
1869
  */
@@ -750,12 +750,12 @@ OPEN:公网属性, INTERNAL:内网属性。
750
750
  LoadBalancerVips?: Array<string>
751
751
 
752
752
  /**
753
- * 负载均衡绑定的后端服务的外网 IP。
753
+ * 负载均衡绑定的后端服务的外网 IP,只支持查询云服务器的公网 IP
754
754
  */
755
755
  BackendPublicIps?: Array<string>
756
756
 
757
757
  /**
758
- * 负载均衡绑定的后端服务的内网 IP。
758
+ * 负载均衡绑定的后端服务的内网 IP,只支持查询云服务器的内网 IP
759
759
  */
760
760
  BackendPrivateIps?: Array<string>
761
761
 
@@ -3953,6 +3953,15 @@ export interface SearchLogRequest {
3953
3953
  两种返回方式在编码格式上有少量区别,建议使用true
3954
3954
  */
3955
3955
  UseNewAnalysis?: boolean
3956
+
3957
+ /**
3958
+ * 执行统计分析(Query中包含SQL)时,是否对原始日志先进行采样,再进行统计分析。
3959
+ 0:自动采样;
3960
+ 0~1:按指定采样率采样,例如0.02;
3961
+ 1:不采样,即精确分析
3962
+ 默认值为1
3963
+ */
3964
+ SamplingRate?: number
3956
3965
  }
3957
3966
 
3958
3967
  /**
@@ -106,7 +106,7 @@ import {
106
106
  QueryOpenBankBillData,
107
107
  QueryContractRelateShopRequest,
108
108
  CreateOpenBankRechargeOrderRequest,
109
- QueryContractPayFeeResult,
109
+ CloudExternalAttachmentData,
110
110
  QueryExceedingInfoResponse,
111
111
  AddContractRequest,
112
112
  CreateAcctResponse,
@@ -122,7 +122,7 @@ import {
122
122
  BindOpenBankExternalSubMerchantBankAccountResponse,
123
123
  QueryTradeData,
124
124
  QueryOpenBankSettleOrderResponse,
125
- QueryMemberTransactionDetailsResponse,
125
+ QueryContractPayFeeResult,
126
126
  ApplyFlexPaymentResult,
127
127
  FundsTransactionItem,
128
128
  BindOpenBankProfitSharePayeeRequest,
@@ -455,6 +455,7 @@ import {
455
455
  OpenBankApprovalGuideInfo,
456
456
  AddContractResponse,
457
457
  CreateOrderResponse,
458
+ QueryMemberTransactionDetailsResponse,
458
459
  MultiApplyOrder,
459
460
  AddFlexIdInfoRequest,
460
461
  ModifyMerchantRequest,
@@ -3170,25 +3170,18 @@ _不填默认为生产环境_
3170
3170
  }
3171
3171
 
3172
3172
  /**
3173
- * 支付方式费率及自定义表单项
3173
+ * 渠道透传字段
3174
3174
  */
3175
- export interface QueryContractPayFeeResult {
3176
- /**
3177
- * pay支付方式json数据
3178
- 注意:此字段可能返回 null,表示取不到有效值。
3179
- */
3180
- Pay: PayDataResult
3181
-
3175
+ export interface CloudExternalAttachmentData {
3182
3176
  /**
3183
- * 合同扩展自定义字段
3177
+ * 渠道名
3184
3178
  */
3185
- ExtraInput?: Array<string>
3179
+ ChannelName: string
3186
3180
 
3187
3181
  /**
3188
- * pay_fee支付方式行业分类费率json数据
3189
- 注意:此字段可能返回 null,表示取不到有效值。
3190
- */
3191
- PayFee: Array<PayFeeDataResult>
3182
+ * 渠道透传字段,由各个渠道自行定义
3183
+ */
3184
+ AttachmentData: string
3192
3185
  }
3193
3186
 
3194
3187
  /**
@@ -3841,31 +3834,25 @@ export interface QueryOpenBankSettleOrderResponse {
3841
3834
  }
3842
3835
 
3843
3836
  /**
3844
- * QueryMemberTransactionDetails返回参数结构体
3837
+ * 支付方式费率及自定义表单项
3845
3838
  */
3846
- export interface QueryMemberTransactionDetailsResponse {
3839
+ export interface QueryContractPayFeeResult {
3847
3840
  /**
3848
- * 错误码。
3849
- __SUCCESS__: 成功
3850
- __其他__: 见附录-错误码表
3841
+ * pay支付方式json数据
3842
+ 注意:此字段可能返回 null,表示取不到有效值。
3851
3843
  */
3852
- ErrCode: string
3844
+ Pay: PayDataResult
3853
3845
 
3854
3846
  /**
3855
- * 错误消息。
3847
+ * 合同扩展自定义字段
3856
3848
  */
3857
- ErrMessage: string
3849
+ ExtraInput?: Array<string>
3858
3850
 
3859
3851
  /**
3860
- * 返回结果。
3852
+ * pay_fee支付方式行业分类费率json数据
3861
3853
  注意:此字段可能返回 null,表示取不到有效值。
3862
3854
  */
3863
- Result: QueryMemberTransactionDetailsResult
3864
-
3865
- /**
3866
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3867
- */
3868
- RequestId?: string
3855
+ PayFee: Array<PayFeeDataResult>
3869
3856
  }
3870
3857
 
3871
3858
  /**
@@ -11438,6 +11425,11 @@ export interface CloudSubOrder {
11438
11425
  通过该字段可以实现渠道方的优惠抵扣补贴等营销功能。
11439
11426
  */
11440
11427
  AttachmentInfoList?: Array<CloudAttachmentInfo>
11428
+
11429
+ /**
11430
+ * 渠道透传数据列表。
11431
+ */
11432
+ ExternalAttachmentDataList?: Array<CloudExternalAttachmentData>
11441
11433
  }
11442
11434
 
11443
11435
  /**
@@ -18208,6 +18200,34 @@ export interface CreateOrderResponse {
18208
18200
  RequestId?: string
18209
18201
  }
18210
18202
 
18203
+ /**
18204
+ * QueryMemberTransactionDetails返回参数结构体
18205
+ */
18206
+ export interface QueryMemberTransactionDetailsResponse {
18207
+ /**
18208
+ * 错误码。
18209
+ __SUCCESS__: 成功
18210
+ __其他__: 见附录-错误码表
18211
+ */
18212
+ ErrCode: string
18213
+
18214
+ /**
18215
+ * 错误消息。
18216
+ */
18217
+ ErrMessage: string
18218
+
18219
+ /**
18220
+ * 返回结果。
18221
+ 注意:此字段可能返回 null,表示取不到有效值。
18222
+ */
18223
+ Result: QueryMemberTransactionDetailsResult
18224
+
18225
+ /**
18226
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
18227
+ */
18228
+ RequestId?: string
18229
+ }
18230
+
18211
18231
  /**
18212
18232
  * 分账订单信息
18213
18233
  */
@@ -23152,6 +23172,11 @@ ORDER_RECEIVE_MODE_V_COMBINE - 虚拟合单支付
23152
23172
  * 渠道方用户信息列表
23153
23173
  */
23154
23174
  ExternalUserInfoList?: Array<CloudExternalUserInfo>
23175
+
23176
+ /**
23177
+ * 渠道透传数据列表
23178
+ */
23179
+ ExternalAttachmentDataList?: Array<CloudExternalAttachmentData>
23155
23180
  }
23156
23181
 
23157
23182
  /**
@@ -11257,6 +11257,11 @@ export interface DescribeMalwareTimingScanSettingResponse {
11257
11257
  */
11258
11258
  EngineType: number
11259
11259
 
11260
+ /**
11261
+ * 启发引擎 0 关闭 1开启
11262
+ */
11263
+ EnableInspiredEngine: number
11264
+
11260
11265
  /**
11261
11266
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11262
11267
  */
@@ -14003,6 +14008,11 @@ export interface ModifyMalwareTimingScanSettingsRequest {
14003
14008
  * 1标准模式(只报严重、高危)、2增强模式(报严重、高危、中危)、3严格模式(报严重、高、中、低、提示)
14004
14009
  */
14005
14010
  EngineType?: number
14011
+
14012
+ /**
14013
+ * 启发引擎开关 0 关闭 1开启
14014
+ */
14015
+ EnableInspiredEngine?: number
14006
14016
  }
14007
14017
 
14008
14018
  /**
@@ -514,7 +514,7 @@ export interface ApplyInternetAddressResponse {
514
514
  * 互联网公网地址ID
515
515
  注意:此字段可能返回 null,表示取不到有效值。
516
516
  */
517
- InstanceId?: string
517
+ InstanceId: string
518
518
 
519
519
  /**
520
520
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -21,6 +21,7 @@ import {
21
21
  PdfVerifyResult,
22
22
  CancelMultiFlowSignQRCodeRequest,
23
23
  CreateFlowEvidenceReportResponse,
24
+ CreateFlowRequest,
24
25
  DescribeFileUrlsResponse,
25
26
  TemplateInfo,
26
27
  CreateDocumentResponse,
@@ -28,7 +29,7 @@ import {
28
29
  StartFlowRequest,
29
30
  CancelFlowResponse,
30
31
  CreateDocumentRequest,
31
- CreateFlowRequest,
32
+ ApproverOption,
32
33
  Department,
33
34
  CreateSchemeUrlRequest,
34
35
  DeleteStaffsResult,
@@ -120,6 +120,88 @@ export interface CreateFlowEvidenceReportResponse {
120
120
  RequestId?: string
121
121
  }
122
122
 
123
+ /**
124
+ * CreateFlow请求参数结构体
125
+ */
126
+ export interface CreateFlowRequest {
127
+ /**
128
+ * 调用方用户信息,userId 必填
129
+ */
130
+ Operator: UserInfo
131
+
132
+ /**
133
+ * 签署流程名称,最大长度200个字符
134
+ */
135
+ FlowName: string
136
+
137
+ /**
138
+ * 签署流程参与者信息,最大限制50方
139
+ */
140
+ Approvers: Array<FlowCreateApprover>
141
+
142
+ /**
143
+ * 签署流程的类型(如销售合同/入职合同等),最大长度200个字符
144
+ */
145
+ FlowType?: string
146
+
147
+ /**
148
+ * 客户端Token,保持接口幂等性,最大长度64个字符
149
+ */
150
+ ClientToken?: string
151
+
152
+ /**
153
+ * 暂未开放
154
+ */
155
+ RelatedFlowId?: string
156
+
157
+ /**
158
+ * 签署流程的签署截止时间。
159
+ 值为unix时间戳,精确到秒,不传默认为当前时间一年后
160
+ */
161
+ DeadLine?: number
162
+
163
+ /**
164
+ * 用户自定义字段(需进行base64 encode),回调的时候会进行透传, 长度需要小于20480
165
+ */
166
+ UserData?: string
167
+
168
+ /**
169
+ * 签署流程描述,最大长度1000个字符
170
+ */
171
+ FlowDescription?: string
172
+
173
+ /**
174
+ * 发送类型:
175
+ true:无序签
176
+ false:有序签
177
+ 注:默认为false(有序签),请和模板中的配置保持一致
178
+ */
179
+ Unordered?: boolean
180
+
181
+ /**
182
+ * 合同显示的页卡模板,说明:只支持{合同名称}, {发起方企业}, {发起方姓名}, {签署方N企业}, {签署方N姓名},且N不能超过签署人的数量,N从1开始
183
+ */
184
+ CustomShowMap?: string
185
+
186
+ /**
187
+ * 发起方企业的签署人进行签署操作是否需要企业内部审批。使用此功能需要发起方企业有参与签署。
188
+ 若设置为true,审核结果需通过接口 CreateFlowSignReview 通知电子签,审核通过后,发起方企业签署人方可进行签署操作,否则会阻塞其签署操作。
189
+
190
+ 注:企业可以通过此功能与企业内部的审批流程进行关联,支持手动、静默签署合同。
191
+ */
192
+ NeedSignReview?: boolean
193
+
194
+ /**
195
+ * 暂未开放
196
+ */
197
+ CallbackUrl?: string
198
+
199
+ /**
200
+ * 应用相关信息
201
+ */
202
+ Agent?: Agent
203
+ }
204
+
123
205
  /**
124
206
  * DescribeFileUrls返回参数结构体
125
207
  */
@@ -343,85 +425,18 @@ export interface CreateDocumentRequest {
343
425
  }
344
426
 
345
427
  /**
346
- * CreateFlow请求参数结构体
428
+ * 签署人个性化能力信息
347
429
  */
348
- export interface CreateFlowRequest {
349
- /**
350
- * 调用方用户信息,userId 必填
351
- */
352
- Operator: UserInfo
353
-
354
- /**
355
- * 签署流程名称,最大长度200个字符
356
- */
357
- FlowName: string
358
-
359
- /**
360
- * 签署流程参与者信息,最大限制50方
361
- */
362
- Approvers: Array<FlowCreateApprover>
363
-
430
+ export interface ApproverOption {
364
431
  /**
365
- * 签署流程的类型(如销售合同/入职合同等),最大长度200个字符
366
- */
367
- FlowType?: string
368
-
369
- /**
370
- * 客户端Token,保持接口幂等性,最大长度64个字符
371
- */
372
- ClientToken?: string
373
-
374
- /**
375
- * 暂未开放
432
+ * 是否可以拒签 false-可以拒签,默认 true-不可以拒签
376
433
  */
377
- RelatedFlowId?: string
378
-
379
- /**
380
- * 签署流程的签署截止时间。
381
- 值为unix时间戳,精确到秒,不传默认为当前时间一年后
382
- */
383
- DeadLine?: number
434
+ NoRefuse?: boolean
384
435
 
385
436
  /**
386
- * 用户自定义字段(需进行base64 encode),回调的时候会进行透传, 长度需要小于20480
437
+ * 是否可以转发 false-可以转发,默认 true-不可以转发
387
438
  */
388
- UserData?: string
389
-
390
- /**
391
- * 签署流程描述,最大长度1000个字符
392
- */
393
- FlowDescription?: string
394
-
395
- /**
396
- * 发送类型:
397
- true:无序签
398
- false:有序签
399
- 注:默认为false(有序签),请和模板中的配置保持一致
400
- */
401
- Unordered?: boolean
402
-
403
- /**
404
- * 合同显示的页卡模板,说明:只支持{合同名称}, {发起方企业}, {发起方姓名}, {签署方N企业}, {签署方N姓名},且N不能超过签署人的数量,N从1开始
405
- */
406
- CustomShowMap?: string
407
-
408
- /**
409
- * 发起方企业的签署人进行签署操作是否需要企业内部审批。使用此功能需要发起方企业有参与签署。
410
- 若设置为true,审核结果需通过接口 CreateFlowSignReview 通知电子签,审核通过后,发起方企业签署人方可进行签署操作,否则会阻塞其签署操作。
411
-
412
- 注:企业可以通过此功能与企业内部的审批流程进行关联,支持手动、静默签署合同。
413
- */
414
- NeedSignReview?: boolean
415
-
416
- /**
417
- * 暂未开放
418
- */
419
- CallbackUrl?: string
420
-
421
- /**
422
- * 应用相关信息
423
- */
424
- Agent?: Agent
439
+ NoTransfer?: boolean
425
440
  }
426
441
 
427
442
  /**
@@ -928,6 +943,11 @@ HONGKONG_MACAO_AND_TAIWAN 港澳台居民居住证(格式同居民身份证)
928
943
  * 快速注册相关信息,目前暂未开放!
929
944
  */
930
945
  RegisterInfo?: RegisterInfo
946
+
947
+ /**
948
+ * 签署人个性化能力值
949
+ */
950
+ ApproverOption?: ApproverOption
931
951
  }
932
952
 
933
953
  /**
@@ -26,11 +26,12 @@ import {
26
26
  TemplateInfo,
27
27
  ChannelDescribeEmployeesRequest,
28
28
  SyncProxyOrganizationResponse,
29
- ChannelBatchCancelFlowsResponse,
29
+ ChannelCreateFlowGroupByFilesResponse,
30
30
  GetDownloadFlowUrlResponse,
31
31
  DescribeTemplatesResponse,
32
32
  DescribeResourceUrlsByFlowsResponse,
33
33
  ChannelCreateMultiFlowSignQRCodeResponse,
34
+ ApproverOption,
34
35
  Recipient,
35
36
  Department,
36
37
  OperateChannelTemplateResponse,
@@ -72,7 +73,7 @@ import {
72
73
  CreateSealByImageRequest,
73
74
  SignQrCode,
74
75
  SignUrl,
75
- ChannelCreateFlowGroupByFilesResponse,
76
+ ChannelBatchCancelFlowsResponse,
76
77
  PrepareFlowsRequest,
77
78
  UsageDetail,
78
79
  ChannelCreateBatchCancelFlowUrlResponse,