tencentcloud-sdk-nodejs-essbasic 4.0.1038 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-essbasic",
3
- "version": "4.0.1038",
3
+ "version": "4.0.1041",
4
4
  "description": "Tencent Cloud API NODEJS SDK",
5
5
  "main": "tencentcloud/index.js",
6
6
  "scripts": {
@@ -173,6 +173,7 @@ import {
173
173
  DescribeChannelOrganizationsRequest,
174
174
  ChannelCreatePreparedPersonalEsignRequest,
175
175
  FillError,
176
+ CreateEmployeeChangeUrlResponse,
176
177
  ChannelRenewAutoSignLicenseRequest,
177
178
  ChannelDescribeBillUsageDetailResponse,
178
179
  IntentionActionResult,
@@ -184,6 +185,7 @@ import {
184
185
  ChannelCreateRoleResponse,
185
186
  FormField,
186
187
  FailedCreateRoleData,
188
+ CreateEmployeeChangeUrlRequest,
187
189
  ChannelDescribeUserAutoSignStatusRequest,
188
190
  FlowResourceUrlInfo,
189
191
  UploadFile,
@@ -1166,6 +1168,20 @@ Agent参数中的OpenId 必须为审批者的openId,且链接必须由审批
1166
1168
  return this.request("ModifyExtendedService", req, cb)
1167
1169
  }
1168
1170
 
1171
+ /**
1172
+ * 生成员工信息变更链接,当前仅支持变更手机号
1173
+
1174
+ 注:
1175
+ 1. 目前仅支持修改员工手机号,待修改员工必须已经实名且在职
1176
+ 2. 仅支持返回小程序链接
1177
+ */
1178
+ async CreateEmployeeChangeUrl(
1179
+ req: CreateEmployeeChangeUrlRequest,
1180
+ cb?: (error: string, rep: CreateEmployeeChangeUrlResponse) => void
1181
+ ): Promise<CreateEmployeeChangeUrlResponse> {
1182
+ return this.request("CreateEmployeeChangeUrl", req, cb)
1183
+ }
1184
+
1169
1185
  /**
1170
1186
  * 获取区块链存证证书查看链接/二维码接口
1171
1187