tencentcloud-sdk-nodejs-ess 4.0.638 → 4.0.640

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.
@@ -688,6 +688,20 @@ export interface CreateConvertTaskApiRequest {
688
688
  Organization?: OrganizationInfo
689
689
  }
690
690
 
691
+ /**
692
+ * DeleteIntegrationEmployees返回参数结构体
693
+ */
694
+ export interface DeleteIntegrationEmployeesResponse {
695
+ /**
696
+ * 员工删除数据
697
+ */
698
+ DeleteEmployeeResult?: DeleteStaffsResult
699
+ /**
700
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
701
+ */
702
+ RequestId?: string
703
+ }
704
+
691
705
  /**
692
706
  * CreateFlowReminds返回参数结构体
693
707
  */
@@ -773,7 +787,7 @@ export interface FlowApproverDetail {
773
787
  /**
774
788
  * 签署方姓名
775
789
  */
776
- ApproveName: string
790
+ ApproveName?: string
777
791
  /**
778
792
  * 签署方的签署状态
779
793
  0:还没有发起
@@ -790,104 +804,79 @@ export interface FlowApproverDetail {
790
804
  15:已解除
791
805
  19:转他人处理
792
806
  */
793
- ApproveStatus: number
807
+ ApproveStatus?: number
794
808
  /**
795
809
  * 模板配置中的参与方ID,与控件绑定
796
810
  */
797
- ReceiptId: string
811
+ ReceiptId?: string
798
812
  /**
799
813
  * 客户自定义的用户ID
800
814
  注意:此字段可能返回 null,表示取不到有效值。
801
815
  */
802
- CustomUserId: string
816
+ CustomUserId?: string
803
817
  /**
804
818
  * 签署人手机号
805
819
  */
806
- Mobile: string
820
+ Mobile?: string
807
821
  /**
808
822
  * 签署顺序,如果是有序签署,签署顺序从小到大
809
823
  */
810
- SignOrder: number
824
+ SignOrder?: number
811
825
  /**
812
826
  * 签署人签署时间,时间戳,单位秒
813
827
  */
814
- ApproveTime: number
828
+ ApproveTime?: number
815
829
  /**
816
830
  * 签署方类型,ORGANIZATION-企业员工,PERSON-个人,ENTERPRISESERVER-企业静默签
817
831
  注意:此字段可能返回 null,表示取不到有效值。
818
832
  */
819
- ApproveType: string
833
+ ApproveType?: string
820
834
  /**
821
835
  * 签署方侧用户来源,如WEWORKAPP-企业微信等
822
836
  注意:此字段可能返回 null,表示取不到有效值。
823
837
  */
824
- ApproverSource: string
838
+ ApproverSource?: string
825
839
  /**
826
840
  * 客户自定义签署方标识
827
841
  注意:此字段可能返回 null,表示取不到有效值。
828
842
  */
829
- CustomApproverTag: string
843
+ CustomApproverTag?: string
830
844
  /**
831
845
  * 签署方企业Id
832
846
  注意:此字段可能返回 null,表示取不到有效值。
833
847
  */
834
- OrganizationId: string
848
+ OrganizationId?: string
835
849
  /**
836
850
  * 签署方企业名称
837
851
  注意:此字段可能返回 null,表示取不到有效值。
838
852
  */
839
- OrganizationName: string
853
+ OrganizationName?: string
840
854
  }
841
855
 
842
856
  /**
843
- * DescribeFlowTemplates请求参数结构体
857
+ * CreateFlowGroupByFiles请求参数结构体
844
858
  */
845
- export interface DescribeFlowTemplatesRequest {
859
+ export interface CreateFlowGroupByFilesRequest {
846
860
  /**
847
- * 调用方用户信息,userId 必填
861
+ * 调用方用户信息,userId 必填。支持填入集团子公司经办人 userId 代发合同
848
862
  */
849
863
  Operator: UserInfo
850
864
  /**
851
- * 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
865
+ * 合同(流程)组名称,最大长度200个字符
852
866
  */
853
- Agent?: Agent
854
- /**
855
- * 查询内容:0-模板列表及详情(默认),1-仅模板列表
856
- */
857
- ContentType?: number
867
+ FlowGroupName: string
858
868
  /**
859
- * 搜索条件,具体参考Filter结构体。本接口取值:template-id:按照【 **模板唯一标识** 】进行过滤
869
+ * 合同(流程)组的子合同信息,支持2-50个子合同
860
870
  */
861
- Filters?: Array<Filter>
871
+ FlowGroupInfos: Array<FlowGroupInfo>
862
872
  /**
863
- * 查询偏移位置,默认0
864
- */
865
- Offset?: number
866
- /**
867
- * 查询个数,默认20,最大200
868
- */
869
- Limit?: number
870
- /**
871
- * ApplicationId不为空,查询指定应用下的模板列表
872
- ApplicationId为空,查询所有应用下的模板列表
873
- */
874
- ApplicationId?: string
875
- /**
876
- * 默认为false,查询SaaS模板库列表;
877
- 为true,查询第三方应用集成平台企业模板库管理列表
878
- * @deprecated
879
- */
880
- IsChannel?: boolean
881
- /**
882
- * 暂未开放
883
- * @deprecated
873
+ * 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
884
874
  */
885
- Organization?: OrganizationInfo
875
+ Agent?: Agent
886
876
  /**
887
- * 暂未开放
888
- * @deprecated
877
+ * 合同(流程)组的配置项信息。包括是否通知本企业签署方,是否通知其他签署方
889
878
  */
890
- GenerateSource?: number
879
+ FlowGroupOptions?: FlowGroupOptions
891
880
  }
892
881
 
893
882
  /**
@@ -950,29 +939,23 @@ export interface CallbackInfo {
950
939
  }
951
940
 
952
941
  /**
953
- * 参与方填写控件信息
942
+ * CreateFlowGroupByTemplates返回参数结构体
954
943
  */
955
- export interface RecipientComponentInfo {
956
- /**
957
- * 参与方Id
958
- 注意:此字段可能返回 null,表示取不到有效值。
959
- */
960
- RecipientId?: string
944
+ export interface CreateFlowGroupByTemplatesResponse {
961
945
  /**
962
- * 参与方填写状态
946
+ * 合同(流程)组的合同组Id
963
947
  注意:此字段可能返回 null,表示取不到有效值。
964
948
  */
965
- RecipientFillStatus?: string
949
+ FlowGroupId?: string
966
950
  /**
967
- * 是否发起方
951
+ * 合同(流程)组中子合同列表.
968
952
  注意:此字段可能返回 null,表示取不到有效值。
969
953
  */
970
- IsPromoter?: boolean
954
+ FlowIds?: Array<string>
971
955
  /**
972
- * 填写控件内容
973
- 注意:此字段可能返回 null,表示取不到有效值。
956
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
974
957
  */
975
- Components?: Array<FilledComponent>
958
+ RequestId?: string
976
959
  }
977
960
 
978
961
  /**
@@ -1253,6 +1236,10 @@ APP:第三方APP或小程序跳转电子签小程序的path。
1253
1236
  * 签署流程编号 (PathType=1时必传)
1254
1237
  */
1255
1238
  FlowId?: string
1239
+ /**
1240
+ * 合同组ID
1241
+ */
1242
+ FlowGroupId?: string
1256
1243
  /**
1257
1244
  * 跳转页面 1: 小程序合同详情 2: 小程序合同列表页 0: 不传, 默认主页
1258
1245
  */
@@ -1400,6 +1387,57 @@ export interface CreateIntegrationDepartmentResponse {
1400
1387
  RequestId?: string
1401
1388
  }
1402
1389
 
1390
+ /**
1391
+ * DescribeFlowTemplates请求参数结构体
1392
+ */
1393
+ export interface DescribeFlowTemplatesRequest {
1394
+ /**
1395
+ * 调用方用户信息,userId 必填
1396
+ */
1397
+ Operator: UserInfo
1398
+ /**
1399
+ * 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
1400
+ */
1401
+ Agent?: Agent
1402
+ /**
1403
+ * 查询内容:0-模板列表及详情(默认),1-仅模板列表
1404
+ */
1405
+ ContentType?: number
1406
+ /**
1407
+ * 搜索条件,具体参考Filter结构体。本接口取值:template-id:按照【 **模板唯一标识** 】进行过滤
1408
+ */
1409
+ Filters?: Array<Filter>
1410
+ /**
1411
+ * 查询偏移位置,默认0
1412
+ */
1413
+ Offset?: number
1414
+ /**
1415
+ * 查询个数,默认20,最大200
1416
+ */
1417
+ Limit?: number
1418
+ /**
1419
+ * ApplicationId不为空,查询指定应用下的模板列表
1420
+ ApplicationId为空,查询所有应用下的模板列表
1421
+ */
1422
+ ApplicationId?: string
1423
+ /**
1424
+ * 默认为false,查询SaaS模板库列表;
1425
+ 为true,查询第三方应用集成平台企业模板库管理列表
1426
+ * @deprecated
1427
+ */
1428
+ IsChannel?: boolean
1429
+ /**
1430
+ * 暂未开放
1431
+ * @deprecated
1432
+ */
1433
+ Organization?: OrganizationInfo
1434
+ /**
1435
+ * 暂未开放
1436
+ * @deprecated
1437
+ */
1438
+ GenerateSource?: number
1439
+ }
1440
+
1403
1441
  /**
1404
1442
  * DeleteSealPolicies返回参数结构体
1405
1443
  */
@@ -1799,9 +1837,13 @@ REJECT: 拒绝
1799
1837
  */
1800
1838
  RecipientId?: string
1801
1839
  /**
1802
- * 操作类型:
1803
- 操作类型,默认:SignReview;SignReview:签署审核
1804
- 注:接口通过该字段区分操作类型
1840
+ * 操作类型:(接口通过该字段区分操作类型)
1841
+
1842
+ SignReview:签署审核
1843
+ CreateReview:发起审核
1844
+
1845
+ 默认:SignReview;SignReview:签署审核
1846
+
1805
1847
  该字段不传或者为空,则默认为SignReview签署审核,走签署审核流程
1806
1848
  若发起个人审核,则指定该字段为:SignReview(注意,给个人审核时,需联系客户经理开白使用)
1807
1849
  */
@@ -1874,6 +1916,64 @@ export interface CreateUserAutoSignEnableUrlResponse {
1874
1916
  RequestId?: string
1875
1917
  }
1876
1918
 
1919
+ /**
1920
+ * 此结构体(FlowGroupInfo)描述的是合同组(流程组)的单个合同(流程)信息
1921
+ */
1922
+ export interface FlowGroupInfo {
1923
+ /**
1924
+ * 合同(流程)的名称
1925
+ */
1926
+ FlowName: string
1927
+ /**
1928
+ * 合同(流程)的签署方信息
1929
+ */
1930
+ Approvers: Array<ApproverInfo>
1931
+ /**
1932
+ * 发起合同(流程)的资源Id,此资源必须是PDF文件,来自UploadFiles,使用文件发起合同(流程)组时必传
1933
+ */
1934
+ FileIds?: Array<string>
1935
+ /**
1936
+ * 发起合同(流程)的模板Id,用模板发起合同(流程)组时必填
1937
+ */
1938
+ TemplateId?: string
1939
+ /**
1940
+ * 合同(流程)的类型
1941
+ */
1942
+ FlowType?: string
1943
+ /**
1944
+ * 合同(流程)的描述
1945
+ */
1946
+ FlowDescription?: string
1947
+ /**
1948
+ * 合同(流程)的截止时间戳,单位秒。默认是一年
1949
+ */
1950
+ Deadline?: number
1951
+ /**
1952
+ * 合同(流程)的回调地址
1953
+ */
1954
+ CallbackUrl?: string
1955
+ /**
1956
+ * 第三方平台传递过来的信息, 限制1024字符 格式必须是base64的
1957
+ */
1958
+ UserData?: string
1959
+ /**
1960
+ * 合同(流程)的签署是否是无序签, true - 无序。 false - 有序, 默认
1961
+ */
1962
+ Unordered?: boolean
1963
+ /**
1964
+ * 合同(流程)发起方的填写控件,用户
1965
+ */
1966
+ Components?: Array<Component>
1967
+ /**
1968
+ * 本企业(发起方)是否需要签署审批,若需要审批则只允许查看不允许签署,需要您调用接口CreateFlowSignReview提交审批结果。
1969
+ */
1970
+ NeedSignReview?: boolean
1971
+ /**
1972
+ * 本企业(发起方)自动签署,需要您在发起合同时给印章控件指定自动签的印章。
1973
+ */
1974
+ AutoSignScene?: string
1975
+ }
1976
+
1877
1977
  /**
1878
1978
  * CreateFlowSignUrl返回参数结构体
1879
1979
  */
@@ -2224,6 +2324,32 @@ export interface Staff {
2224
2324
  WeworkOpenId?: string
2225
2325
  }
2226
2326
 
2327
+ /**
2328
+ * 参与方填写控件信息
2329
+ */
2330
+ export interface RecipientComponentInfo {
2331
+ /**
2332
+ * 参与方Id
2333
+ 注意:此字段可能返回 null,表示取不到有效值。
2334
+ */
2335
+ RecipientId?: string
2336
+ /**
2337
+ * 参与方填写状态
2338
+ 注意:此字段可能返回 null,表示取不到有效值。
2339
+ */
2340
+ RecipientFillStatus?: string
2341
+ /**
2342
+ * 是否发起方
2343
+ 注意:此字段可能返回 null,表示取不到有效值。
2344
+ */
2345
+ IsPromoter?: boolean
2346
+ /**
2347
+ * 填写控件内容
2348
+ 注意:此字段可能返回 null,表示取不到有效值。
2349
+ */
2350
+ Components?: Array<FilledComponent>
2351
+ }
2352
+
2227
2353
  /**
2228
2354
  * CreateFlowEvidenceReport返回参数结构体
2229
2355
  */
@@ -2447,16 +2573,16 @@ export interface FlowDetailInfo {
2447
2573
  /**
2448
2574
  * 合同(流程)的ID
2449
2575
  */
2450
- FlowId: string
2576
+ FlowId?: string
2451
2577
  /**
2452
2578
  * 合同(流程)的名字
2453
2579
  */
2454
- FlowName: string
2580
+ FlowName?: string
2455
2581
  /**
2456
2582
  * 合同(流程)的类型
2457
2583
  注意:此字段可能返回 null,表示取不到有效值。
2458
2584
  */
2459
- FlowType: string
2585
+ FlowType?: string
2460
2586
  /**
2461
2587
  * 流程状态
2462
2588
  - 0 还没有发起
@@ -2472,25 +2598,25 @@ export interface FlowDetailInfo {
2472
2598
  - 10 拒填
2473
2599
  - 21 已解除
2474
2600
  */
2475
- FlowStatus: number
2601
+ FlowStatus?: number
2476
2602
  /**
2477
2603
  * 合同(流程)的信息
2478
2604
  注意:此字段可能返回 null,表示取不到有效值。
2479
2605
  */
2480
- FlowMessage: string
2606
+ FlowMessage?: string
2481
2607
  /**
2482
2608
  * 流程的描述
2483
2609
  注意:此字段可能返回 null,表示取不到有效值。
2484
2610
  */
2485
- FlowDescription: string
2611
+ FlowDescription?: string
2486
2612
  /**
2487
2613
  * 合同(流程)的创建时间戳,单位秒
2488
2614
  */
2489
- CreatedOn: number
2615
+ CreatedOn?: number
2490
2616
  /**
2491
2617
  * 合同(流程)的签署方数组
2492
2618
  */
2493
- FlowApproverInfos: Array<FlowApproverDetail>
2619
+ FlowApproverInfos?: Array<FlowApproverDetail>
2494
2620
  /**
2495
2621
  * 合同(流程)的关注方信息列表
2496
2622
  */
@@ -2602,6 +2728,29 @@ export interface GetTaskResultApiRequest {
2602
2728
  Organization?: OrganizationInfo
2603
2729
  }
2604
2730
 
2731
+ /**
2732
+ * 此结构体(FlowGroupOptions)描述的是合同组的个性化配置,支持控制是否发送短信、未实名个人签署方查看合同组时是否需要实名认证(仅在合同组文件发起配置时生效)
2733
+ */
2734
+ export interface FlowGroupOptions {
2735
+ /**
2736
+ * 发起合同(流程)组的合同(流程)签署人校验方式
2737
+ VerifyCheck: 人脸识别(默认)
2738
+ MobileCheck:手机号验证
2739
+ 参数说明:此参数仅在合同组文件发起有效,可选人脸识别或手机号验证两种方式,若选择后者,未实名个人签署方在签署合同时,无需经过实名认证和意愿确认两次人脸识别,该能力仅适用于个人签署方。
2740
+ */
2741
+ ApproverVerifyType?: string
2742
+ /**
2743
+ * 发起合同(流程)组本方企业经办人通知方式
2744
+ 签署通知类型:sms--短信,none--不通知
2745
+ */
2746
+ SelfOrganizationApproverNotifyType?: string
2747
+ /**
2748
+ * 发起合同(流程)组他方经办人通知方式
2749
+ 签署通知类型:sms--短信,none--不通知
2750
+ */
2751
+ OtherApproverNotifyType?: string
2752
+ }
2753
+
2605
2754
  /**
2606
2755
  * 发起流程快速注册相关信息
2607
2756
  */
@@ -2616,6 +2765,26 @@ export interface RegisterInfo {
2616
2765
  Uscc: string
2617
2766
  }
2618
2767
 
2768
+ /**
2769
+ * CreateFlowGroupByFiles返回参数结构体
2770
+ */
2771
+ export interface CreateFlowGroupByFilesResponse {
2772
+ /**
2773
+ * 合同(流程)组的合同组Id
2774
+ 注意:此字段可能返回 null,表示取不到有效值。
2775
+ */
2776
+ FlowGroupId?: string
2777
+ /**
2778
+ * 合同(流程)组中子合同列表.
2779
+ 注意:此字段可能返回 null,表示取不到有效值。
2780
+ */
2781
+ FlowIds?: Array<string>
2782
+ /**
2783
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2784
+ */
2785
+ RequestId?: string
2786
+ }
2787
+
2619
2788
  /**
2620
2789
  * CreateIntegrationEmployees返回参数结构体
2621
2790
  */
@@ -2941,14 +3110,14 @@ export interface ApproverInfo {
2941
3110
  * 签署人的手机号,11位数字
2942
3111
  */
2943
3112
  ApproverMobile: string
2944
- /**
2945
- * 签署人的签署控件列表
2946
- */
2947
- SignComponents: Array<Component>
2948
3113
  /**
2949
3114
  * 如果签署方是企业签署方,则为企业名
2950
3115
  */
2951
3116
  OrganizationName?: string
3117
+ /**
3118
+ * 签署人的签署控件列表
3119
+ */
3120
+ SignComponents?: Array<Component>
2952
3121
  /**
2953
3122
  * 签署人的身份证号
2954
3123
  */
@@ -4085,17 +4254,29 @@ export interface DescribeFlowBriefsRequest {
4085
4254
  }
4086
4255
 
4087
4256
  /**
4088
- * DeleteIntegrationEmployees返回参数结构体
4257
+ * CreateFlowGroupByTemplates请求参数结构体
4089
4258
  */
4090
- export interface DeleteIntegrationEmployeesResponse {
4259
+ export interface CreateFlowGroupByTemplatesRequest {
4091
4260
  /**
4092
- * 员工删除数据
4261
+ * 调用方用户信息,userId 必填。支持填入集团子公司经办人 userId 代发合同
4093
4262
  */
4094
- DeleteEmployeeResult?: DeleteStaffsResult
4263
+ Operator: UserInfo
4095
4264
  /**
4096
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4265
+ * 合同组名称,最大长度200个字符
4097
4266
  */
4098
- RequestId?: string
4267
+ FlowGroupName: string
4268
+ /**
4269
+ * 合同组的子合同信息,支持2-50个子合同
4270
+ */
4271
+ FlowGroupInfos: Array<FlowGroupInfo>
4272
+ /**
4273
+ * 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
4274
+ */
4275
+ Agent?: Agent
4276
+ /**
4277
+ * 合同组的配置信息。包括是否通知本企业签署方,是否通知其他签署方
4278
+ */
4279
+ FlowGroupOptions?: FlowGroupOptions
4099
4280
  }
4100
4281
 
4101
4282
  /**
@@ -4415,18 +4596,22 @@ export interface CreateMultiFlowSignQRCodeRequest {
4415
4596
  * DescribeFlowInfo请求参数结构体
4416
4597
  */
4417
4598
  export interface DescribeFlowInfoRequest {
4418
- /**
4419
- * 需要查询的流程ID列表,限制最大100个
4420
- */
4421
- FlowIds: Array<string>
4422
4599
  /**
4423
4600
  * 调用方用户信息,userId 必填
4424
4601
  */
4425
4602
  Operator?: UserInfo
4603
+ /**
4604
+ * 需要查询的流程ID列表,限制最大100个
4605
+ */
4606
+ FlowIds?: Array<string>
4426
4607
  /**
4427
4608
  * 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
4428
4609
  */
4429
4610
  Agent?: Agent
4611
+ /**
4612
+ * 合同组ID
4613
+ */
4614
+ FlowGroupId?: string
4430
4615
  }
4431
4616
 
4432
4617
  /**
@@ -4437,6 +4622,14 @@ export interface DescribeFlowInfoResponse {
4437
4622
  * 签署流程信息
4438
4623
  */
4439
4624
  FlowDetailInfos?: Array<FlowDetailInfo>
4625
+ /**
4626
+ * 合同组ID
4627
+ */
4628
+ FlowGroupId?: string
4629
+ /**
4630
+ * 合同组名称
4631
+ */
4632
+ FlowGroupName?: string
4440
4633
  /**
4441
4634
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4442
4635
  */
@@ -1,5 +1,5 @@
1
1
  import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
2
- import { CreateSealRequest, ModifyIntegrationDepartmentResponse, CancelFlowResponse, DescribeFlowEvidenceReportRequest, UpdateIntegrationEmployeesResponse, CreatePreparedPersonalEsignRequest, DescribeIntegrationDepartmentsResponse, CreateFlowApproversResponse, DescribeIntegrationMainOrganizationUserRequest, ModifyApplicationCallbackInfoResponse, CreateMultiFlowSignQRCodeResponse, DescribeThirdPartyAuthCodeResponse, DisableUserAutoSignResponse, CancelUserAutoSignEnableUrlResponse, BindEmployeeUserIdWithClientOpenIdResponse, CreateIntegrationEmployeesRequest, DescribeIntegrationRolesRequest, CreateFlowEvidenceReportRequest, StartFlowResponse, CreateConvertTaskApiRequest, CreateFlowRemindsResponse, DescribeOrganizationGroupOrganizationsRequest, DescribeFlowTemplatesRequest, DescribeFlowComponentsResponse, DescribeFlowEvidenceReportResponse, CreateDocumentResponse, DescribeIntegrationEmployeesRequest, CreateIntegrationUserRolesResponse, CreateFlowRequest, CreateSchemeUrlRequest, DeleteIntegrationDepartmentResponse, DescribeThirdPartyAuthCodeRequest, UnbindEmployeeUserIdWithClientOpenIdResponse, CreateReleaseFlowResponse, BindEmployeeUserIdWithClientOpenIdRequest, DescribeIntegrationDepartmentsRequest, CreateIntegrationDepartmentResponse, DeleteSealPoliciesResponse, DescribeUserAutoSignStatusResponse, CreateBatchCancelFlowUrlResponse, CreateSealPolicyResponse, DisableUserAutoSignRequest, DescribeIntegrationEmployeesResponse, CreateConvertTaskApiResponse, CreateFlowSignReviewRequest, UnbindEmployeeUserIdWithClientOpenIdRequest, CreateSchemeUrlResponse, CreateUserAutoSignEnableUrlResponse, CreateFlowSignUrlResponse, DescribeFileUrlsRequest, CreateChannelSubOrganizationModifyQrCodeRequest, CreateFlowApproversRequest, CreateFlowEvidenceReportResponse, DescribeFileUrlsResponse, DescribeFlowComponentsRequest, CreateIntegrationDepartmentRequest, DeleteIntegrationRoleUsersResponse, CreateDocumentRequest, CreatePreparedPersonalEsignResponse, DescribeOrganizationSealsResponse, DeleteIntegrationEmployeesRequest, GetTaskResultApiRequest, CreateIntegrationEmployeesResponse, DeleteIntegrationRoleUsersRequest, CreateFlowSignUrlRequest, CreateReleaseFlowRequest, CreateIntegrationUserRolesRequest, CreateChannelSubOrganizationModifyQrCodeResponse, CreateFlowByFilesResponse, UploadFilesResponse, VerifyPdfRequest, CreateFlowSignReviewResponse, ModifyIntegrationDepartmentRequest, CreateUserAutoSignEnableUrlRequest, DescribeIntegrationMainOrganizationUserResponse, CancelUserAutoSignEnableUrlRequest, DeleteSealPoliciesRequest, CreateFlowByFilesRequest, CreatePrepareFlowResponse, GetTaskResultApiResponse, CancelMultiFlowSignQRCodeRequest, DeleteIntegrationDepartmentRequest, ModifyApplicationCallbackInfoRequest, StartFlowRequest, CreateSealResponse, CreatePrepareFlowRequest, CreateSealPolicyRequest, DescribeOrganizationSealsRequest, CancelFlowRequest, DescribeExtendedServiceAuthInfosRequest, DescribeIntegrationRolesResponse, CreateFlowRemindsRequest, UpdateIntegrationEmployeesRequest, DescribeFlowBriefsRequest, DeleteIntegrationEmployeesResponse, VerifyPdfResponse, DescribeFlowBriefsResponse, DescribeFlowTemplatesResponse, UploadFilesRequest, CreateBatchCancelFlowUrlRequest, CreateMultiFlowSignQRCodeRequest, DescribeFlowInfoRequest, DescribeFlowInfoResponse, CancelMultiFlowSignQRCodeResponse, CreateFlowResponse, DescribeUserAutoSignStatusRequest, DescribeOrganizationGroupOrganizationsResponse, DescribeExtendedServiceAuthInfosResponse } from "./ess_models";
2
+ import { CreateSealRequest, ModifyIntegrationDepartmentResponse, CancelFlowResponse, DescribeFlowEvidenceReportRequest, UpdateIntegrationEmployeesResponse, CreatePreparedPersonalEsignRequest, DescribeIntegrationDepartmentsResponse, CreateFlowApproversResponse, DescribeIntegrationMainOrganizationUserRequest, ModifyApplicationCallbackInfoResponse, CreateMultiFlowSignQRCodeResponse, DescribeThirdPartyAuthCodeResponse, DisableUserAutoSignResponse, CancelUserAutoSignEnableUrlResponse, BindEmployeeUserIdWithClientOpenIdResponse, CreateIntegrationEmployeesRequest, DescribeIntegrationRolesRequest, CreateFlowEvidenceReportRequest, StartFlowResponse, CreateConvertTaskApiRequest, DeleteIntegrationEmployeesResponse, CreateFlowRemindsResponse, DescribeOrganizationGroupOrganizationsRequest, CreateFlowGroupByFilesRequest, DescribeFlowComponentsResponse, DescribeFlowEvidenceReportResponse, CreateFlowGroupByTemplatesResponse, CreateDocumentResponse, DescribeIntegrationEmployeesRequest, CreateIntegrationUserRolesResponse, CreateFlowRequest, CreateSchemeUrlRequest, DeleteIntegrationDepartmentResponse, DescribeThirdPartyAuthCodeRequest, UnbindEmployeeUserIdWithClientOpenIdResponse, CreateReleaseFlowResponse, BindEmployeeUserIdWithClientOpenIdRequest, DescribeIntegrationDepartmentsRequest, CreateIntegrationDepartmentResponse, DescribeFlowTemplatesRequest, DeleteSealPoliciesResponse, DescribeUserAutoSignStatusResponse, CreateBatchCancelFlowUrlResponse, CreateSealPolicyResponse, DisableUserAutoSignRequest, DescribeIntegrationEmployeesResponse, CreateConvertTaskApiResponse, CreateFlowSignReviewRequest, UnbindEmployeeUserIdWithClientOpenIdRequest, CreateSchemeUrlResponse, CreateUserAutoSignEnableUrlResponse, CreateFlowSignUrlResponse, DescribeFileUrlsRequest, CreateChannelSubOrganizationModifyQrCodeRequest, CreateFlowApproversRequest, CreateFlowEvidenceReportResponse, DescribeFileUrlsResponse, DescribeFlowComponentsRequest, CreateIntegrationDepartmentRequest, DeleteIntegrationRoleUsersResponse, CreateDocumentRequest, CreatePreparedPersonalEsignResponse, DescribeOrganizationSealsResponse, DeleteIntegrationEmployeesRequest, GetTaskResultApiRequest, CreateFlowGroupByFilesResponse, CreateIntegrationEmployeesResponse, DeleteIntegrationRoleUsersRequest, CreateFlowSignUrlRequest, CreateReleaseFlowRequest, CreateIntegrationUserRolesRequest, CreateChannelSubOrganizationModifyQrCodeResponse, CreateFlowByFilesResponse, UploadFilesResponse, VerifyPdfRequest, CreateFlowSignReviewResponse, ModifyIntegrationDepartmentRequest, CreateUserAutoSignEnableUrlRequest, DescribeIntegrationMainOrganizationUserResponse, CancelUserAutoSignEnableUrlRequest, DeleteSealPoliciesRequest, CreateFlowByFilesRequest, CreatePrepareFlowResponse, GetTaskResultApiResponse, CancelMultiFlowSignQRCodeRequest, DeleteIntegrationDepartmentRequest, ModifyApplicationCallbackInfoRequest, StartFlowRequest, CreateSealResponse, CreatePrepareFlowRequest, CreateSealPolicyRequest, DescribeOrganizationSealsRequest, CancelFlowRequest, DescribeExtendedServiceAuthInfosRequest, DescribeIntegrationRolesResponse, CreateFlowRemindsRequest, UpdateIntegrationEmployeesRequest, DescribeFlowBriefsRequest, CreateFlowGroupByTemplatesRequest, VerifyPdfResponse, DescribeFlowBriefsResponse, DescribeFlowTemplatesResponse, UploadFilesRequest, CreateBatchCancelFlowUrlRequest, CreateMultiFlowSignQRCodeRequest, DescribeFlowInfoRequest, DescribeFlowInfoResponse, CancelMultiFlowSignQRCodeResponse, CreateFlowResponse, DescribeUserAutoSignStatusRequest, DescribeOrganizationGroupOrganizationsResponse, DescribeExtendedServiceAuthInfosResponse } from "./ess_models";
3
3
  /**
4
4
  * ess client
5
5
  * @class
@@ -89,6 +89,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
89
89
  注:目前暂时只支持补充来源于企业微信的员工作为候选签署人
90
90
  */
91
91
  CreateFlowApprovers(req: CreateFlowApproversRequest, cb?: (error: string, rep: CreateFlowApproversResponse) => void): Promise<CreateFlowApproversResponse>;
92
+ /**
93
+ * 通过此接口,更新企业的部门信息,支持更新部门名、客户系统部门ID、部门序列号。
94
+ */
95
+ ModifyIntegrationDepartment(req: ModifyIntegrationDepartmentRequest, cb?: (error: string, rep: ModifyIntegrationDepartmentResponse) => void): Promise<ModifyIntegrationDepartmentResponse>;
92
96
  /**
93
97
  * 企业方可以通过此接口关闭个人的自动签功能(处方单场景专用,使用此接口请与客户经理确认)
94
98
  */
@@ -148,6 +152,11 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
148
152
  * 企业方可以通过此接口查询个人用户自动签开启状态。(处方单场景专用,使用此接口请与客户经理确认)
149
153
  */
150
154
  DescribeUserAutoSignStatus(req: DescribeUserAutoSignStatusRequest, cb?: (error: string, rep: DescribeUserAutoSignStatusResponse) => void): Promise<DescribeUserAutoSignStatusResponse>;
155
+ /**
156
+ * 此接口(CreateFlowGroupByTemplates)通过多模板创建合同组签署流程。<br/>
157
+ 此接口合同组中的子合同必须都是模板发起的合同。 <br/>目前最大仅支持50个子合同
158
+ */
159
+ CreateFlowGroupByTemplates(req: CreateFlowGroupByTemplatesRequest, cb?: (error: string, rep: CreateFlowGroupByTemplatesResponse) => void): Promise<CreateFlowGroupByTemplatesResponse>;
151
160
  /**
152
161
  * 查询企业扩展服务授权信息,目前支持查询:企业静默签,企业与港澳台居民签署合同,使用手机号验证签署方身份,骑缝章,批量签署能力是否已经开通
153
162
  */
@@ -276,9 +285,11 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
276
285
  */
277
286
  DescribeIntegrationDepartments(req: DescribeIntegrationDepartmentsRequest, cb?: (error: string, rep: DescribeIntegrationDepartmentsResponse) => void): Promise<DescribeIntegrationDepartmentsResponse>;
278
287
  /**
279
- * 通过此接口,更新企业的部门信息,支持更新部门名、客户系统部门ID、部门序列号。
280
- */
281
- ModifyIntegrationDepartment(req: ModifyIntegrationDepartmentRequest, cb?: (error: string, rep: ModifyIntegrationDepartmentResponse) => void): Promise<ModifyIntegrationDepartmentResponse>;
288
+ * 此接口(CreateFlowGroupByFiles)通过多文件创建合同组签署流程。<br/>
289
+ PDF资源Id 通过上传文件接口获取
290
+ 此接口合同组中的子合同必须都是文件发起的合同
291
+ */
292
+ CreateFlowGroupByFiles(req: CreateFlowGroupByFilesRequest, cb?: (error: string, rep: CreateFlowGroupByFilesResponse) => void): Promise<CreateFlowGroupByFilesResponse>;
282
293
  /**
283
294
  * 创建员工,此接口会发送提醒员工实名的短信
284
295
  */
@@ -144,6 +144,12 @@ class Client extends TencentCloudCommon.AbstractClient {
144
144
  async CreateFlowApprovers(req, cb) {
145
145
  return this.request("CreateFlowApprovers", req, cb);
146
146
  }
147
+ /**
148
+ * 通过此接口,更新企业的部门信息,支持更新部门名、客户系统部门ID、部门序列号。
149
+ */
150
+ async ModifyIntegrationDepartment(req, cb) {
151
+ return this.request("ModifyIntegrationDepartment", req, cb);
152
+ }
147
153
  /**
148
154
  * 企业方可以通过此接口关闭个人的自动签功能(处方单场景专用,使用此接口请与客户经理确认)
149
155
  */
@@ -223,6 +229,13 @@ class Client extends TencentCloudCommon.AbstractClient {
223
229
  async DescribeUserAutoSignStatus(req, cb) {
224
230
  return this.request("DescribeUserAutoSignStatus", req, cb);
225
231
  }
232
+ /**
233
+ * 此接口(CreateFlowGroupByTemplates)通过多模板创建合同组签署流程。<br/>
234
+ 此接口合同组中的子合同必须都是模板发起的合同。 <br/>目前最大仅支持50个子合同
235
+ */
236
+ async CreateFlowGroupByTemplates(req, cb) {
237
+ return this.request("CreateFlowGroupByTemplates", req, cb);
238
+ }
226
239
  /**
227
240
  * 查询企业扩展服务授权信息,目前支持查询:企业静默签,企业与港澳台居民签署合同,使用手机号验证签署方身份,骑缝章,批量签署能力是否已经开通
228
241
  */
@@ -399,10 +412,12 @@ class Client extends TencentCloudCommon.AbstractClient {
399
412
  return this.request("DescribeIntegrationDepartments", req, cb);
400
413
  }
401
414
  /**
402
- * 通过此接口,更新企业的部门信息,支持更新部门名、客户系统部门ID、部门序列号。
403
- */
404
- async ModifyIntegrationDepartment(req, cb) {
405
- return this.request("ModifyIntegrationDepartment", req, cb);
415
+ * 此接口(CreateFlowGroupByFiles)通过多文件创建合同组签署流程。<br/>
416
+ PDF资源Id 通过上传文件接口获取
417
+ 此接口合同组中的子合同必须都是文件发起的合同
418
+ */
419
+ async CreateFlowGroupByFiles(req, cb) {
420
+ return this.request("CreateFlowGroupByFiles", req, cb);
406
421
  }
407
422
  /**
408
423
  * 创建员工,此接口会发送提醒员工实名的短信