tencentcloud-sdk-nodejs-essbasic 4.0.1038 → 4.0.1042

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-essbasic",
3
- "version": "4.0.1038",
3
+ "version": "4.0.1042",
4
4
  "description": "Tencent Cloud API NODEJS SDK",
5
5
  "main": "tencentcloud/index.js",
6
6
  "scripts": {
@@ -37,6 +37,7 @@ import {
37
37
  ChannelCreateFlowGroupByTemplatesResponse,
38
38
  ChannelCreateFlowSignReviewRequest,
39
39
  AuthFailMessage,
40
+ CreateFlowForwardsRequest,
40
41
  DescribeFlowDetailInfoRequest,
41
42
  ChannelCancelFlowResponse,
42
43
  ModifyExtendedServiceRequest,
@@ -96,6 +97,7 @@ import {
96
97
  SignUrl,
97
98
  ChannelCancelFlowRequest,
98
99
  TemplateInfo,
100
+ IntentionAction,
99
101
  ChannelCreateOrganizationBatchSignUrlRequest,
100
102
  DynamicFlowApproverResult,
101
103
  GetDownloadFlowUrlResponse,
@@ -130,6 +132,7 @@ import {
130
132
  CreateEmployeeQualificationSealQrCodeRequest,
131
133
  ChannelArchiveDynamicApproverData,
132
134
  ChannelCreateUserAutoSignSealUrlRequest,
135
+ FlowForwardResult,
133
136
  PdfVerifyResult,
134
137
  UserThreeFactor,
135
138
  ChannelCreateUserAutoSignEnableUrlRequest,
@@ -173,17 +176,20 @@ import {
173
176
  DescribeChannelOrganizationsRequest,
174
177
  ChannelCreatePreparedPersonalEsignRequest,
175
178
  FillError,
179
+ CreateEmployeeChangeUrlResponse,
176
180
  ChannelRenewAutoSignLicenseRequest,
177
181
  ChannelDescribeBillUsageDetailResponse,
178
182
  IntentionActionResult,
179
183
  FlowDetailInfo,
180
184
  CreatePersonAuthCertificateImageRequest,
185
+ FlowForwardInfo,
181
186
  CreateFlowsByTemplatesResponse,
182
187
  SyncFailReason,
183
188
  DescribeChannelFlowEvidenceReportRequest,
184
189
  ChannelCreateRoleResponse,
185
190
  FormField,
186
191
  FailedCreateRoleData,
192
+ CreateEmployeeChangeUrlRequest,
187
193
  ChannelDescribeUserAutoSignStatusRequest,
188
194
  FlowResourceUrlInfo,
189
195
  UploadFile,
@@ -203,7 +209,7 @@ import {
203
209
  ChannelCreateBatchCancelFlowUrlRequest,
204
210
  ChannelDescribeAccountBillDetailResponse,
205
211
  ApproverRestriction,
206
- IntentionAction,
212
+ CreateFlowForwardsResponse,
207
213
  ChannelCreateFlowByFilesResponse,
208
214
  ChannelCreateFlowSignReviewResponse,
209
215
  ChannelDisableUserAutoSignRequest,
@@ -1166,6 +1172,20 @@ Agent参数中的OpenId 必须为审批者的openId,且链接必须由审批
1166
1172
  return this.request("ModifyExtendedService", req, cb)
1167
1173
  }
1168
1174
 
1175
+ /**
1176
+ * 生成员工信息变更链接,当前仅支持变更手机号
1177
+
1178
+ 注:
1179
+ 1. 目前仅支持修改员工手机号,待修改员工必须已经实名且在职
1180
+ 2. 仅支持返回小程序链接
1181
+ */
1182
+ async CreateEmployeeChangeUrl(
1183
+ req: CreateEmployeeChangeUrlRequest,
1184
+ cb?: (error: string, rep: CreateEmployeeChangeUrlResponse) => void
1185
+ ): Promise<CreateEmployeeChangeUrlResponse> {
1186
+ return this.request("CreateEmployeeChangeUrl", req, cb)
1187
+ }
1188
+
1169
1189
  /**
1170
1190
  * 获取区块链存证证书查看链接/二维码接口
1171
1191
 
@@ -1418,6 +1438,23 @@ httpProfile.setEndpoint("file.test.ess.tencent.cn");
1418
1438
  return this.request("UploadFiles", req, cb)
1419
1439
  }
1420
1440
 
1441
+ /**
1442
+ * 该接口用于将合同中本企业当前经办人转为本企业其他员工进行操作。
1443
+
1444
+ 注意:
1445
+ 1. 转交的目标经办人需要已经加入企业,且完成实名。
1446
+ 2. 仅企业拥有`超管`或`法人角色`的员工才有调用本接口的权限。
1447
+ 3. 仅支持当前经办人为待签署或待填写状态时进行转交操作。
1448
+ 4. 若原合同有填写控件,且当前经办人已经完成填写,则不支持进行转交。
1449
+ 5. 若当前经办人已签署完成,或者处于签署流程中,则不支持进行转交。
1450
+ */
1451
+ async CreateFlowForwards(
1452
+ req: CreateFlowForwardsRequest,
1453
+ cb?: (error: string, rep: CreateFlowForwardsResponse) => void
1454
+ ): Promise<CreateFlowForwardsResponse> {
1455
+ return this.request("CreateFlowForwards", req, cb)
1456
+ }
1457
+
1421
1458
  /**
1422
1459
  * 该接口用于发起合同后,生成用户的签署链接 <br/>
1423
1460