tencentcloud-sdk-nodejs-ess 4.0.550 → 4.0.553

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.
@@ -294,6 +294,16 @@ export interface DescribeThirdPartyAuthCodeResponse {
294
294
  RequestId?: string
295
295
  }
296
296
 
297
+ /**
298
+ * DisableUserAutoSign返回参数结构体
299
+ */
300
+ export interface DisableUserAutoSignResponse {
301
+ /**
302
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
303
+ */
304
+ RequestId?: string
305
+ }
306
+
297
307
  /**
298
308
  * CreateIntegrationEmployees请求参数结构体
299
309
  */
@@ -906,19 +916,44 @@ false:有序签
906
916
  }
907
917
 
908
918
  /**
909
- * 下载文件的URL信息
919
+ * 自动签开启、签署相关配置
910
920
  */
911
- export interface FileUrl {
921
+ export interface AutoSignConfig {
912
922
  /**
913
- * 下载文件的URL
914
- */
915
- Url: string
923
+ * 自动签开通个人用户的三要素
924
+ 注意:此字段可能返回 null,表示取不到有效值。
925
+ */
926
+ UserInfo: UserThreeFactor
916
927
 
917
928
  /**
918
- * 下载文件的附加信息
929
+ * 回调链接
919
930
  注意:此字段可能返回 null,表示取不到有效值。
920
931
  */
921
- Option: string
932
+ CallbackUrl: string
933
+
934
+ /**
935
+ * 是否回调证书信息
936
+ 注意:此字段可能返回 null,表示取不到有效值。
937
+ */
938
+ CertInfoCallback?: boolean
939
+
940
+ /**
941
+ * 是否支持用户自定义签名印章
942
+ 注意:此字段可能返回 null,表示取不到有效值。
943
+ */
944
+ UserDefineSeal?: boolean
945
+
946
+ /**
947
+ * 是否需要回调的时候返回印章(签名) 图片的 base64
948
+ 注意:此字段可能返回 null,表示取不到有效值。
949
+ */
950
+ SealImgCallback?: boolean
951
+
952
+ /**
953
+ * 开通时候的验证方式,取值:WEIXINAPP(微信人脸识别),INSIGHT(慧眼人脸认别),TELECOM(运营商三要素验证)。如果是小程序开通链接,支持传 WEIXINAPP / TELECOM。如果是 H5 开通链接,支持传 INSIGHT / TELECOM。默认值 WEIXINAPP / INSIGHT。
954
+ 注意:此字段可能返回 null,表示取不到有效值。
955
+ */
956
+ VerifyChannels?: Array<string>
922
957
  }
923
958
 
924
959
  /**
@@ -991,6 +1026,21 @@ export interface OrganizationInfo {
991
1026
  ProxyIp?: string
992
1027
  }
993
1028
 
1029
+ /**
1030
+ * DescribeUserAutoSignStatus返回参数结构体
1031
+ */
1032
+ export interface DescribeUserAutoSignStatusResponse {
1033
+ /**
1034
+ * 是否开通
1035
+ */
1036
+ IsOpen?: boolean
1037
+
1038
+ /**
1039
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1040
+ */
1041
+ RequestId?: string
1042
+ }
1043
+
994
1044
  /**
995
1045
  * 补充签署人信息
996
1046
  */
@@ -1192,6 +1242,32 @@ export interface CreateBatchCancelFlowUrlResponse {
1192
1242
  RequestId?: string
1193
1243
  }
1194
1244
 
1245
+ /**
1246
+ * 用户的三要素:姓名,证件号,证件类型
1247
+ */
1248
+ export interface UserThreeFactor {
1249
+ /**
1250
+ * 姓名
1251
+ 注意:此字段可能返回 null,表示取不到有效值。
1252
+ */
1253
+ Name: string
1254
+
1255
+ /**
1256
+ * 证件类型:
1257
+ ID_CARD 身份证
1258
+ HONGKONG_AND_MACAO 港澳居民来往内地通行证
1259
+ HONGKONG_MACAO_AND_TAIWAN 港澳台居民居住证(格式同居民身份证)
1260
+ 注意:此字段可能返回 null,表示取不到有效值。
1261
+ */
1262
+ IdCardType: string
1263
+
1264
+ /**
1265
+ * 证件号,如果有 X 请大写
1266
+ 注意:此字段可能返回 null,表示取不到有效值。
1267
+ */
1268
+ IdCardNumber: string
1269
+ }
1270
+
1195
1271
  /**
1196
1272
  * CreateSealPolicy返回参数结构体
1197
1273
  */
@@ -1207,6 +1283,27 @@ export interface CreateSealPolicyResponse {
1207
1283
  RequestId?: string
1208
1284
  }
1209
1285
 
1286
+ /**
1287
+ * DisableUserAutoSign请求参数结构体
1288
+ */
1289
+ export interface DisableUserAutoSignRequest {
1290
+ /**
1291
+ * 操作人信息
1292
+ */
1293
+ Operator: UserInfo
1294
+
1295
+ /**
1296
+ * 自动签场景:
1297
+ E_PRESCRIPTION_AUTO_SIGN 电子处方
1298
+ */
1299
+ SceneKey: string
1300
+
1301
+ /**
1302
+ * 关闭自动签的个人的三要素
1303
+ */
1304
+ UserInfo: UserThreeFactor
1305
+ }
1306
+
1210
1307
  /**
1211
1308
  * DescribeIntegrationEmployees返回参数结构体
1212
1309
  */
@@ -1328,112 +1425,43 @@ export interface FailedCreateStaffData {
1328
1425
  }
1329
1426
 
1330
1427
  /**
1331
- * CreateFlowByFiles请求参数结构体
1428
+ * CreateUserAutoSignEnableUrl返回参数结构体
1332
1429
  */
1333
- export interface CreateFlowByFilesRequest {
1334
- /**
1335
- * 调用方用户信息,userId 必填。支持填入集团子公司经办人 userId 代发合同
1336
- */
1337
- Operator: UserInfo
1338
-
1339
- /**
1340
- * 签署流程名称,最大长度200个字符
1341
- */
1342
- FlowName: string
1343
-
1344
- /**
1345
- * 签署参与者信息,最大限制50方
1346
- */
1347
- Approvers: Array<ApproverInfo>
1348
-
1349
- /**
1350
- * 签署pdf文件的资源编号列表,通过UploadFiles接口获取,暂时仅支持单文件发起
1351
- */
1352
- FileIds: Array<string>
1353
-
1354
- /**
1355
- * 签署流程的类型(如销售合同/入职合同等),最大长度200个字符
1356
- */
1357
- FlowType?: string
1358
-
1430
+ export interface CreateUserAutoSignEnableUrlResponse {
1359
1431
  /**
1360
- * 经办人内容控件配置
1432
+ * 跳转短链
1361
1433
  */
1362
- Components?: Array<Component>
1363
-
1364
- /**
1365
- * 被抄送人的信息列表。
1366
- 注:此功能为白名单功能,若有需要,请联系电子签客服开白使用
1367
- */
1368
- CcInfos?: Array<CcInfo>
1369
-
1370
- /**
1371
- * 是否需要预览,true:预览模式,false:非预览(默认);
1372
- 预览链接有效期300秒;
1373
-
1374
- 注:如果使用“预览模式”,出参会返回合同预览链接 PreviewUrl,不会正式发起合同,且出参不会返回签署流程编号 FlowId;如果使用“非预览”,则会正常返回签署流程编号 FlowId,不会生成合同预览链接 PreviewUrl。
1375
- */
1376
- NeedPreview?: boolean
1434
+ Url?: string
1377
1435
 
1378
1436
  /**
1379
- * 预览链接类型 默认:0-文件流, 1- H5链接 注意:此参数在NeedPreview 为true 时有效,
1437
+ * 小程序AppId
1380
1438
  */
1381
- PreviewType?: number
1382
-
1383
- /**
1384
- * 签署流程的签署截止时间。
1385
- 值为unix时间戳,精确到秒,不传默认为当前时间一年后
1386
- */
1387
- Deadline?: number
1388
-
1389
- /**
1390
- * 发送类型:
1391
- true:无序签
1392
- false:有序签
1393
- 注:默认为false(有序签)
1394
- */
1395
- Unordered?: boolean
1439
+ AppId?: string
1396
1440
 
1397
1441
  /**
1398
- * 合同显示的页卡模板,说明:只支持{合同名称}, {发起方企业}, {发起方姓名}, {签署方N企业}, {签署方N姓名},且N不能超过签署人的数量,N从1开始
1442
+ * 小程序 原始 Id
1399
1443
  */
1400
- CustomShowMap?: string
1401
-
1402
- /**
1403
- * 发起方企业的签署人进行签署操作是否需要企业内部审批。使用此功能需要发起方企业有参与签署。
1404
- 若设置为true,审核结果需通过接口 CreateFlowSignReview 通知电子签,审核通过后,发起方企业签署人方可进行签署操作,否则会阻塞其签署操作。
1405
-
1406
- 注:企业可以通过此功能与企业内部的审批流程进行关联,支持手动、静默签署合同。
1407
- */
1408
- NeedSignReview?: boolean
1444
+ AppOriginalId?: string
1409
1445
 
1410
1446
  /**
1411
- * 用户自定义字段,回调的时候会进行透传,长度需要小于20480
1447
+ * 跳转路径
1412
1448
  */
1413
- UserData?: string
1414
-
1415
- /**
1416
- * 签署人校验方式
1417
- VerifyCheck: 人脸识别(默认)
1418
- MobileCheck:手机号验证
1419
- 参数说明:可选人脸识别或手机号验证两种方式,若选择后者,未实名个人签署方在签署合同时,无需经过实名认证和意愿确认两次人脸识别,该能力仅适用于个人签署方。
1420
- */
1421
- ApproverVerifyType?: string
1449
+ Path?: string
1422
1450
 
1423
1451
  /**
1424
- * 签署流程描述,最大长度1000个字符
1452
+ * base64格式跳转二维码
1425
1453
  */
1426
- FlowDescription?: string
1454
+ QrCode?: string
1427
1455
 
1428
1456
  /**
1429
- * 标识是否允许发起后添加控件。0为不允许1为允许。如果为1,创建的时候不能有签署控件,只能创建后添加。注意发起后添加控件功能不支持添加骑缝章和签批控件
1457
+ * 链接类型,空-默认小程序端链接,H5SIGN-h5端链接
1430
1458
  */
1431
- SignBeanTag?: number
1459
+ UrlType?: string
1432
1460
 
1433
1461
  /**
1434
- * 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
1462
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1435
1463
  */
1436
- Agent?: Agent
1464
+ RequestId?: string
1437
1465
  }
1438
1466
 
1439
1467
  /**
@@ -2448,6 +2476,32 @@ export interface CreateStaffResult {
2448
2476
  FailedEmployeeData: Array<FailedCreateStaffData>
2449
2477
  }
2450
2478
 
2479
+ /**
2480
+ * CreateUserAutoSignEnableUrl请求参数结构体
2481
+ */
2482
+ export interface CreateUserAutoSignEnableUrlRequest {
2483
+ /**
2484
+ * 操作人信息
2485
+ */
2486
+ Operator: UserInfo
2487
+
2488
+ /**
2489
+ * 自动签场景:
2490
+ E_PRESCRIPTION_AUTO_SIGN 电子处方
2491
+ */
2492
+ SceneKey: string
2493
+
2494
+ /**
2495
+ * 自动签开通,签署相关配置
2496
+ */
2497
+ AutoSignConfig: AutoSignConfig
2498
+
2499
+ /**
2500
+ * 链接类型,空-默认小程序端链接,H5SIGN-h5端链接
2501
+ */
2502
+ UrlType?: string
2503
+ }
2504
+
2451
2505
  /**
2452
2506
  * DescribeIntegrationMainOrganizationUser返回参数结构体
2453
2507
  */
@@ -2534,6 +2588,115 @@ export interface DeleteSealPoliciesRequest {
2534
2588
  UserIds?: Array<string>
2535
2589
  }
2536
2590
 
2591
+ /**
2592
+ * CreateFlowByFiles请求参数结构体
2593
+ */
2594
+ export interface CreateFlowByFilesRequest {
2595
+ /**
2596
+ * 调用方用户信息,userId 必填。支持填入集团子公司经办人 userId 代发合同
2597
+ */
2598
+ Operator: UserInfo
2599
+
2600
+ /**
2601
+ * 签署流程名称,最大长度200个字符
2602
+ */
2603
+ FlowName: string
2604
+
2605
+ /**
2606
+ * 签署参与者信息,最大限制50方
2607
+ */
2608
+ Approvers: Array<ApproverInfo>
2609
+
2610
+ /**
2611
+ * 签署pdf文件的资源编号列表,通过UploadFiles接口获取,暂时仅支持单文件发起
2612
+ */
2613
+ FileIds: Array<string>
2614
+
2615
+ /**
2616
+ * 签署流程的类型(如销售合同/入职合同等),最大长度200个字符
2617
+ */
2618
+ FlowType?: string
2619
+
2620
+ /**
2621
+ * 经办人内容控件配置
2622
+ */
2623
+ Components?: Array<Component>
2624
+
2625
+ /**
2626
+ * 被抄送人的信息列表。
2627
+ 注:此功能为白名单功能,若有需要,请联系电子签客服开白使用
2628
+ */
2629
+ CcInfos?: Array<CcInfo>
2630
+
2631
+ /**
2632
+ * 是否需要预览,true:预览模式,false:非预览(默认);
2633
+ 预览链接有效期300秒;
2634
+
2635
+ 注:如果使用“预览模式”,出参会返回合同预览链接 PreviewUrl,不会正式发起合同,且出参不会返回签署流程编号 FlowId;如果使用“非预览”,则会正常返回签署流程编号 FlowId,不会生成合同预览链接 PreviewUrl。
2636
+ */
2637
+ NeedPreview?: boolean
2638
+
2639
+ /**
2640
+ * 预览链接类型 默认:0-文件流, 1- H5链接 注意:此参数在NeedPreview 为true 时有效,
2641
+ */
2642
+ PreviewType?: number
2643
+
2644
+ /**
2645
+ * 签署流程的签署截止时间。
2646
+ 值为unix时间戳,精确到秒,不传默认为当前时间一年后
2647
+ */
2648
+ Deadline?: number
2649
+
2650
+ /**
2651
+ * 发送类型:
2652
+ true:无序签
2653
+ false:有序签
2654
+ 注:默认为false(有序签)
2655
+ */
2656
+ Unordered?: boolean
2657
+
2658
+ /**
2659
+ * 合同显示的页卡模板,说明:只支持{合同名称}, {发起方企业}, {发起方姓名}, {签署方N企业}, {签署方N姓名},且N不能超过签署人的数量,N从1开始
2660
+ */
2661
+ CustomShowMap?: string
2662
+
2663
+ /**
2664
+ * 发起方企业的签署人进行签署操作是否需要企业内部审批。使用此功能需要发起方企业有参与签署。
2665
+ 若设置为true,审核结果需通过接口 CreateFlowSignReview 通知电子签,审核通过后,发起方企业签署人方可进行签署操作,否则会阻塞其签署操作。
2666
+
2667
+ 注:企业可以通过此功能与企业内部的审批流程进行关联,支持手动、静默签署合同。
2668
+ */
2669
+ NeedSignReview?: boolean
2670
+
2671
+ /**
2672
+ * 用户自定义字段,回调的时候会进行透传,长度需要小于20480
2673
+ */
2674
+ UserData?: string
2675
+
2676
+ /**
2677
+ * 签署人校验方式
2678
+ VerifyCheck: 人脸识别(默认)
2679
+ MobileCheck:手机号验证
2680
+ 参数说明:可选人脸识别或手机号验证两种方式,若选择后者,未实名个人签署方在签署合同时,无需经过实名认证和意愿确认两次人脸识别,该能力仅适用于个人签署方。
2681
+ */
2682
+ ApproverVerifyType?: string
2683
+
2684
+ /**
2685
+ * 签署流程描述,最大长度1000个字符
2686
+ */
2687
+ FlowDescription?: string
2688
+
2689
+ /**
2690
+ * 标识是否允许发起后添加控件。0为不允许1为允许。如果为1,创建的时候不能有签署控件,只能创建后添加。注意发起后添加控件功能不支持添加骑缝章和签批控件
2691
+ */
2692
+ SignBeanTag?: number
2693
+
2694
+ /**
2695
+ * 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
2696
+ */
2697
+ Agent?: Agent
2698
+ }
2699
+
2537
2700
  /**
2538
2701
  * CreatePrepareFlow返回参数结构体
2539
2702
  */
@@ -2725,6 +2888,22 @@ export interface ApproverOption {
2725
2888
  NoTransfer?: boolean
2726
2889
  }
2727
2890
 
2891
+ /**
2892
+ * 下载文件的URL信息
2893
+ */
2894
+ export interface FileUrl {
2895
+ /**
2896
+ * 下载文件的URL
2897
+ */
2898
+ Url: string
2899
+
2900
+ /**
2901
+ * 下载文件的附加信息
2902
+ 注意:此字段可能返回 null,表示取不到有效值。
2903
+ */
2904
+ Option: string
2905
+ }
2906
+
2728
2907
  /**
2729
2908
  * CreateSealPolicy请求参数结构体
2730
2909
  */
@@ -3442,6 +3621,27 @@ export interface CreateFlowResponse {
3442
3621
  RequestId?: string
3443
3622
  }
3444
3623
 
3624
+ /**
3625
+ * DescribeUserAutoSignStatus请求参数结构体
3626
+ */
3627
+ export interface DescribeUserAutoSignStatusRequest {
3628
+ /**
3629
+ * 操作人信息
3630
+ */
3631
+ Operator: UserInfo
3632
+
3633
+ /**
3634
+ * 自动签场景:
3635
+ E_PRESCRIPTION_AUTO_SIGN 电子处方
3636
+ */
3637
+ SceneKey: string
3638
+
3639
+ /**
3640
+ * 查询开启状态的用户信息
3641
+ */
3642
+ UserInfo: UserThreeFactor
3643
+ }
3644
+
3445
3645
  /**
3446
3646
  * 流程信息摘要
3447
3647
  */
@@ -1,5 +1,5 @@
1
1
  import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
2
- import { CancelFlowResponse, DescribeFlowEvidenceReportRequest, CreateSchemeUrlRequest, CreateFlowApproversResponse, DescribeIntegrationMainOrganizationUserRequest, ModifyApplicationCallbackInfoResponse, CreateMultiFlowSignQRCodeResponse, DescribeThirdPartyAuthCodeResponse, CreateIntegrationEmployeesRequest, CreateFlowEvidenceReportRequest, StartFlowResponse, CreateConvertTaskApiRequest, CreateFlowRemindsResponse, DescribeOrganizationGroupOrganizationsRequest, DescribeFlowTemplatesRequest, DescribeFlowEvidenceReportResponse, CreateDocumentResponse, DescribeIntegrationEmployeesRequest, CreateFlowRequest, DescribeThirdPartyAuthCodeRequest, DescribeFlowInfoRequest, DeleteSealPoliciesResponse, CreateBatchCancelFlowUrlResponse, CreateSealPolicyResponse, DescribeIntegrationEmployeesResponse, CreateConvertTaskApiResponse, CreateFlowSignReviewRequest, CreateFlowByFilesRequest, CreateFlowSignUrlResponse, DescribeFileUrlsRequest, CreateFlowApproversRequest, CreateFlowEvidenceReportResponse, DescribeFileUrlsResponse, CreateDocumentRequest, DescribeOrganizationSealsResponse, DeleteIntegrationEmployeesRequest, GetTaskResultApiRequest, CreateFlowSignUrlRequest, CreateIntegrationEmployeesResponse, CreateFlowByFilesResponse, UploadFilesResponse, VerifyPdfRequest, CreateFlowSignReviewResponse, DescribeIntegrationMainOrganizationUserResponse, CreateSchemeUrlResponse, DeleteSealPoliciesRequest, CreatePrepareFlowResponse, GetTaskResultApiResponse, CancelMultiFlowSignQRCodeRequest, ModifyApplicationCallbackInfoRequest, StartFlowRequest, CreatePrepareFlowRequest, CreateSealPolicyRequest, DescribeOrganizationSealsRequest, CancelFlowRequest, CreateFlowRemindsRequest, DescribeFlowBriefsRequest, DeleteIntegrationEmployeesResponse, VerifyPdfResponse, DescribeFlowBriefsResponse, DescribeFlowTemplatesResponse, UploadFilesRequest, CreateBatchCancelFlowUrlRequest, CreateMultiFlowSignQRCodeRequest, DescribeFlowInfoResponse, CreateFlowResponse, DescribeOrganizationGroupOrganizationsResponse, CancelMultiFlowSignQRCodeResponse } from "./ess_models";
2
+ import { CancelFlowResponse, DescribeFlowEvidenceReportRequest, CreateSchemeUrlRequest, CreateFlowApproversResponse, DescribeIntegrationMainOrganizationUserRequest, ModifyApplicationCallbackInfoResponse, CreateMultiFlowSignQRCodeResponse, DescribeThirdPartyAuthCodeResponse, DisableUserAutoSignResponse, CreateIntegrationEmployeesRequest, CreateFlowEvidenceReportRequest, StartFlowResponse, CreateConvertTaskApiRequest, CreateFlowRemindsResponse, DescribeOrganizationGroupOrganizationsRequest, DescribeFlowTemplatesRequest, DescribeFlowEvidenceReportResponse, CreateDocumentResponse, DescribeIntegrationEmployeesRequest, CreateFlowRequest, DescribeThirdPartyAuthCodeRequest, DescribeFlowInfoRequest, DeleteSealPoliciesResponse, DescribeUserAutoSignStatusResponse, CreateBatchCancelFlowUrlResponse, CreateSealPolicyResponse, DisableUserAutoSignRequest, DescribeIntegrationEmployeesResponse, CreateConvertTaskApiResponse, CreateFlowSignReviewRequest, CreateUserAutoSignEnableUrlResponse, CreateFlowSignUrlResponse, DescribeFileUrlsRequest, CreateFlowApproversRequest, CreateFlowEvidenceReportResponse, DescribeFileUrlsResponse, CreateDocumentRequest, DescribeOrganizationSealsResponse, DeleteIntegrationEmployeesRequest, GetTaskResultApiRequest, CreateFlowSignUrlRequest, CreateIntegrationEmployeesResponse, CreateFlowByFilesResponse, UploadFilesResponse, VerifyPdfRequest, CreateFlowSignReviewResponse, CreateUserAutoSignEnableUrlRequest, DescribeIntegrationMainOrganizationUserResponse, CreateSchemeUrlResponse, DeleteSealPoliciesRequest, CreateFlowByFilesRequest, CreatePrepareFlowResponse, GetTaskResultApiResponse, CancelMultiFlowSignQRCodeRequest, ModifyApplicationCallbackInfoRequest, StartFlowRequest, CreatePrepareFlowRequest, CreateSealPolicyRequest, DescribeOrganizationSealsRequest, CancelFlowRequest, CreateFlowRemindsRequest, DescribeFlowBriefsRequest, DeleteIntegrationEmployeesResponse, VerifyPdfResponse, DescribeFlowBriefsResponse, DescribeFlowTemplatesResponse, UploadFilesRequest, CreateBatchCancelFlowUrlRequest, CreateMultiFlowSignQRCodeRequest, DescribeFlowInfoResponse, CreateFlowResponse, DescribeUserAutoSignStatusRequest, DescribeOrganizationGroupOrganizationsResponse, CancelMultiFlowSignQRCodeResponse } from "./ess_models";
3
3
  /**
4
4
  * ess client
5
5
  * @class
@@ -41,6 +41,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
41
41
  适用场景:通过传参合同流程编号,下载对应的合同PDF文件流到本地。
42
42
  */
43
43
  DescribeFileUrls(req: DescribeFileUrlsRequest, cb?: (error: string, rep: DescribeFileUrlsResponse) => void): Promise<DescribeFileUrlsResponse>;
44
+ /**
45
+ * 企业方可以通过此接口获取个人用户开启自动签的跳转链接
46
+ */
47
+ CreateUserAutoSignEnableUrl(req: CreateUserAutoSignEnableUrlRequest, cb?: (error: string, rep: CreateUserAutoSignEnableUrlResponse) => void): Promise<CreateUserAutoSignEnableUrlResponse>;
44
48
  /**
45
49
  * 创建出证报告,返回报告 ID。需要配合出证套餐才能调用。
46
50
  出证需要一定时间,建议调用创建出证24小时之后再通过DescribeFlowEvidenceReport进行查询。
@@ -63,6 +67,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
63
67
  注:目前暂时只支持补充来源于企业微信的员工作为候选签署人
64
68
  */
65
69
  CreateFlowApprovers(req: CreateFlowApproversRequest, cb?: (error: string, rep: CreateFlowApproversResponse) => void): Promise<CreateFlowApproversResponse>;
70
+ /**
71
+ * 企业方可以通过此接口关闭个人的自动签功能
72
+ */
73
+ DisableUserAutoSign(req: DisableUserAutoSignRequest, cb?: (error: string, rep: DisableUserAutoSignResponse) => void): Promise<DisableUserAutoSignResponse>;
66
74
  /**
67
75
  * 提交企业签署流程审批结果
68
76
  适用场景:
@@ -98,6 +106,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
98
106
  注:该接口是通过模板生成合同流程的前置接口,先创建一个不包含签署文件的流程。配合“创建电子文档”接口和“发起流程”接口使用。
99
107
  */
100
108
  CreateFlow(req: CreateFlowRequest, cb?: (error: string, rep: CreateFlowResponse) => void): Promise<CreateFlowResponse>;
109
+ /**
110
+ * 企业方可以通过此接口查询个人用户自动签开启状态
111
+ */
112
+ DescribeUserAutoSignStatus(req: DescribeUserAutoSignStatusRequest, cb?: (error: string, rep: DescribeUserAutoSignStatusResponse) => void): Promise<DescribeUserAutoSignStatusResponse>;
101
113
  /**
102
114
  * 查询出证报告,返回报告 URL。
103
115
  */
@@ -76,6 +76,12 @@ class Client extends TencentCloudCommon.AbstractClient {
76
76
  async DescribeFileUrls(req, cb) {
77
77
  return this.request("DescribeFileUrls", req, cb);
78
78
  }
79
+ /**
80
+ * 企业方可以通过此接口获取个人用户开启自动签的跳转链接
81
+ */
82
+ async CreateUserAutoSignEnableUrl(req, cb) {
83
+ return this.request("CreateUserAutoSignEnableUrl", req, cb);
84
+ }
79
85
  /**
80
86
  * 创建出证报告,返回报告 ID。需要配合出证套餐才能调用。
81
87
  出证需要一定时间,建议调用创建出证24小时之后再通过DescribeFlowEvidenceReport进行查询。
@@ -106,6 +112,12 @@ class Client extends TencentCloudCommon.AbstractClient {
106
112
  async CreateFlowApprovers(req, cb) {
107
113
  return this.request("CreateFlowApprovers", req, cb);
108
114
  }
115
+ /**
116
+ * 企业方可以通过此接口关闭个人的自动签功能
117
+ */
118
+ async DisableUserAutoSign(req, cb) {
119
+ return this.request("DisableUserAutoSign", req, cb);
120
+ }
109
121
  /**
110
122
  * 提交企业签署流程审批结果
111
123
  适用场景:
@@ -153,6 +165,12 @@ class Client extends TencentCloudCommon.AbstractClient {
153
165
  async CreateFlow(req, cb) {
154
166
  return this.request("CreateFlow", req, cb);
155
167
  }
168
+ /**
169
+ * 企业方可以通过此接口查询个人用户自动签开启状态
170
+ */
171
+ async DescribeUserAutoSignStatus(req, cb) {
172
+ return this.request("DescribeUserAutoSignStatus", req, cb);
173
+ }
156
174
  /**
157
175
  * 查询出证报告,返回报告 URL。
158
176
  */