tencentcloud-sdk-nodejs-ess 4.0.1037 → 4.0.1041
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 +1 -1
- package/src/services/ess/v20201111/ess_client.ts +18 -2
- package/src/services/ess/v20201111/ess_models.ts +84 -200
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +9 -1
- package/tencentcloud/services/ess/v20201111/ess_client.js +10 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +76 -194
package/package.json
CHANGED
|
@@ -141,11 +141,12 @@ import {
|
|
|
141
141
|
OrganizationAuthUrl,
|
|
142
142
|
AuthRecord,
|
|
143
143
|
CreateSealPolicyResponse,
|
|
144
|
+
DeleteSealPoliciesRequest,
|
|
144
145
|
FlowApproverUrlInfo,
|
|
145
146
|
DisableUserAutoSignRequest,
|
|
146
147
|
DescribeIntegrationEmployeesResponse,
|
|
147
148
|
SuccessDeleteStaffData,
|
|
148
|
-
|
|
149
|
+
CreateEmployeeChangeUrlResponse,
|
|
149
150
|
CreateConvertTaskApiResponse,
|
|
150
151
|
CreateFlowSignReviewRequest,
|
|
151
152
|
CreateOrganizationAuthUrlResponse,
|
|
@@ -208,7 +209,7 @@ import {
|
|
|
208
209
|
Recipient,
|
|
209
210
|
DescribeFlowEvidenceReportRequest,
|
|
210
211
|
FailedCreateRoleData,
|
|
211
|
-
|
|
212
|
+
CreateEmployeeChangeUrlRequest,
|
|
212
213
|
ExtendScene,
|
|
213
214
|
DescribeBillUsageResponse,
|
|
214
215
|
ApproverInfo,
|
|
@@ -239,6 +240,7 @@ import {
|
|
|
239
240
|
FailedUpdateStaffData,
|
|
240
241
|
DescribeOrganizationVerifyStatusRequest,
|
|
241
242
|
SubOrgBillSummary,
|
|
243
|
+
DescribeBillUsageRequest,
|
|
242
244
|
DeleteStaffsResult,
|
|
243
245
|
CancelMultiFlowSignQRCodeRequest,
|
|
244
246
|
DeleteIntegrationDepartmentRequest,
|
|
@@ -1356,6 +1358,20 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
1356
1358
|
return this.request("ModifyExtendedService", req, cb)
|
|
1357
1359
|
}
|
|
1358
1360
|
|
|
1361
|
+
/**
|
|
1362
|
+
* 生成员工信息变更链接,当前仅支持变更手机号
|
|
1363
|
+
|
|
1364
|
+
注:
|
|
1365
|
+
1. 目前仅支持修改员工手机号,待修改员工必须已经实名且在职
|
|
1366
|
+
2. 仅支持返回小程序链接
|
|
1367
|
+
*/
|
|
1368
|
+
async CreateEmployeeChangeUrl(
|
|
1369
|
+
req: CreateEmployeeChangeUrlRequest,
|
|
1370
|
+
cb?: (error: string, rep: CreateEmployeeChangeUrlResponse) => void
|
|
1371
|
+
): Promise<CreateEmployeeChangeUrlResponse> {
|
|
1372
|
+
return this.request("CreateEmployeeChangeUrl", req, cb)
|
|
1373
|
+
}
|
|
1374
|
+
|
|
1359
1375
|
/**
|
|
1360
1376
|
* 在已启动的签署流程中,可对签署截止日期进行延期操作,主要分为以下两个层面:
|
|
1361
1377
|
1. <b> 合同(流程)层面</b>:仅需提供签署流程ID。此操作将对整个签署流程以及未单独设置签署截止时间的签署人进行延期。
|