tencentcloud-sdk-nodejs-ess 4.0.567 → 4.0.569

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.
@@ -40,6 +40,26 @@ export interface DescribeFlowEvidenceReportRequest {
40
40
  ReportId: string
41
41
  }
42
42
 
43
+ /**
44
+ * UpdateIntegrationEmployees返回参数结构体
45
+ */
46
+ export interface UpdateIntegrationEmployeesResponse {
47
+ /**
48
+ * 更新成功的用户列表
49
+ */
50
+ SuccessEmployeeData?: Array<SuccessUpdateStaffData>
51
+
52
+ /**
53
+ * 更新失败的用户列表
54
+ */
55
+ FailedEmployeeData?: Array<FailedUpdateStaffData>
56
+
57
+ /**
58
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
59
+ */
60
+ RequestId?: string
61
+ }
62
+
43
63
  /**
44
64
  * 集成版员工部门信息
45
65
  */
@@ -321,6 +341,41 @@ export interface CreateIntegrationEmployeesRequest {
321
341
  Agent?: Agent
322
342
  }
323
343
 
344
+ /**
345
+ * CreateConvertTaskApi请求参数结构体
346
+ */
347
+ export interface CreateConvertTaskApiRequest {
348
+ /**
349
+ * 资源类型 取值范围doc,docx,html,xls,xlsx之一
350
+ */
351
+ ResourceType: string
352
+
353
+ /**
354
+ * 资源名称,长度限制为256字符
355
+ */
356
+ ResourceName: string
357
+
358
+ /**
359
+ * 资源Id,通过UploadFiles获取
360
+ */
361
+ ResourceId: string
362
+
363
+ /**
364
+ * 调用方用户信息,userId 必填
365
+ */
366
+ Operator?: UserInfo
367
+
368
+ /**
369
+ * 应用号信息
370
+ */
371
+ Agent?: Agent
372
+
373
+ /**
374
+ * 暂未开放
375
+ */
376
+ Organization?: OrganizationInfo
377
+ }
378
+
324
379
  /**
325
380
  * CreateFlowEvidenceReport请求参数结构体
326
381
  */
@@ -398,38 +453,46 @@ export interface FlowApproverUrlInfo {
398
453
  }
399
454
 
400
455
  /**
401
- * CreateConvertTaskApi请求参数结构体
456
+ * 授权用户
402
457
  */
403
- export interface CreateConvertTaskApiRequest {
458
+ export interface AuthorizedUser {
404
459
  /**
405
- * 资源类型 取值范围doc,docx,html,xls,xlsx之一
460
+ * 用户id
406
461
  */
407
- ResourceType: string
462
+ UserId: string
463
+ }
408
464
 
465
+ /**
466
+ * DescribeIntegrationRoles请求参数结构体
467
+ */
468
+ export interface DescribeIntegrationRolesRequest {
409
469
  /**
410
- * 资源名称,长度限制为256字符
470
+ * 操作人信息
411
471
  */
412
- ResourceName: string
472
+ Operator: UserInfo
413
473
 
414
474
  /**
415
- * 资源Id,通过UploadFiles获取
475
+ * 返回最大数量,最大为200
416
476
  */
417
- ResourceId: string
477
+ Limit: number
418
478
 
419
479
  /**
420
- * 调用方用户信息,userId 必填
480
+ * 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
421
481
  */
422
- Operator?: UserInfo
482
+ Agent?: Agent
423
483
 
424
484
  /**
425
- * 应用号信息
426
- */
427
- Agent?: Agent
485
+ * 查询的关键字段:
486
+ Key:"RoleType",Vales:["1"]查询系统角色,Values:["2]查询自定义角色
487
+ Key:"RoleStatus",Values:["1"]查询启用角色,Values:["2"]查询禁用角色
488
+ Key:"IsGroupRole",Values:["0"],查询非集团角色,Values:["1"]表示查询集团角色
489
+ */
490
+ Filters?: Array<Filter>
428
491
 
429
492
  /**
430
- * 暂未开放
493
+ * 偏移量,默认为0,最大为2000
431
494
  */
432
- Organization?: OrganizationInfo
495
+ Offset?: number
433
496
  }
434
497
 
435
498
  /**
@@ -636,14 +699,14 @@ export interface DescribeFlowTemplatesRequest {
636
699
  /**
637
700
  * 这个参数跟下面的IsChannel参数配合使用。
638
701
  IsChannel=false时,ApplicationId参数不起任何作用。
639
- IsChannel=true时,ApplicationId为空,查询所有渠道模板列表;ApplicationId不为空,查询指定渠道下的模板列表
640
- ApplicationId为空,查询渠道模板列表
702
+ IsChannel=true时,ApplicationId为空,查询所有第三方应用集成平台企业模板列表;ApplicationId不为空,查询指定应用下的模板列表
703
+ ApplicationId为空,查询所有应用下的模板列表
641
704
  */
642
705
  ApplicationId?: string
643
706
 
644
707
  /**
645
708
  * 默认为false,查询SaaS模板库列表;
646
- 为true,查询渠道模板库管理列表
709
+ 为true,查询第三方应用集成平台企业模板库管理列表
647
710
  */
648
711
  IsChannel?: boolean
649
712
 
@@ -681,6 +744,21 @@ export interface DescribeFlowEvidenceReportResponse {
681
744
  RequestId?: string
682
745
  }
683
746
 
747
+ /**
748
+ * 应用回调信息
749
+ */
750
+ export interface CallbackInfo {
751
+ /**
752
+ * 回调url
753
+ */
754
+ CallbackUrl: string
755
+
756
+ /**
757
+ * 回调加密token
758
+ */
759
+ Token: string
760
+ }
761
+
684
762
  /**
685
763
  * 二期接口返回的模板的信息结构
686
764
  */
@@ -826,6 +904,21 @@ export interface DescribeIntegrationEmployeesRequest {
826
904
  Offset?: number
827
905
  }
828
906
 
907
+ /**
908
+ * CreateIntegrationUserRoles返回参数结构体
909
+ */
910
+ export interface CreateIntegrationUserRolesResponse {
911
+ /**
912
+ * 绑定角色失败列表信息
913
+ */
914
+ FailedCreateRoleData?: Array<FailedCreateRoleData>
915
+
916
+ /**
917
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
918
+ */
919
+ RequestId?: string
920
+ }
921
+
829
922
  /**
830
923
  * CreateFlow请求参数结构体
831
924
  */
@@ -1327,6 +1420,26 @@ HONGKONG_MACAO_AND_TAIWAN 港澳台居民居住证(格式同居民身份证)
1327
1420
  IdCardNumber: string
1328
1421
  }
1329
1422
 
1423
+ /**
1424
+ * 一码多扫签署二维码对象
1425
+ */
1426
+ export interface SignQrCode {
1427
+ /**
1428
+ * 二维码id
1429
+ */
1430
+ QrCodeId: string
1431
+
1432
+ /**
1433
+ * 二维码url
1434
+ */
1435
+ QrCodeUrl: string
1436
+
1437
+ /**
1438
+ * 二维码过期时间
1439
+ */
1440
+ ExpiredTime: number
1441
+ }
1442
+
1330
1443
  /**
1331
1444
  * CreateSealPolicy返回参数结构体
1332
1445
  */
@@ -1464,23 +1577,18 @@ REJECT: 拒绝
1464
1577
  }
1465
1578
 
1466
1579
  /**
1467
- * 创建员工的失败数据
1580
+ * CreateSchemeUrl返回参数结构体
1468
1581
  */
1469
- export interface FailedCreateStaffData {
1470
- /**
1471
- * 员工名
1472
- */
1473
- DisplayName: string
1474
-
1582
+ export interface CreateSchemeUrlResponse {
1475
1583
  /**
1476
- * 员工手机号
1584
+ * 小程序链接地址
1477
1585
  */
1478
- Mobile: string
1586
+ SchemeUrl?: string
1479
1587
 
1480
1588
  /**
1481
- * 失败原因
1589
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1482
1590
  */
1483
- Reason: string
1591
+ RequestId?: string
1484
1592
  }
1485
1593
 
1486
1594
  /**
@@ -1607,7 +1715,7 @@ export interface DescribeFileUrlsRequest {
1607
1715
  * 电子文档的控件填充信息。按照控件类型进行相应的填充。
1608
1716
 
1609
1717
  【数据表格传参说明】
1610
- 当模板的 ComponentType='DYNAMIC_TABLE'时(渠道版或集成版),FormField.ComponentValue需要传递json格式的字符串参数,用于确定表头&填充数据表格(支持内容的单元格合并)
1718
+ 当模板的 ComponentType='DYNAMIC_TABLE'时,FormField.ComponentValue需要传递json格式的字符串参数,用于确定表头&填充数据表格(支持内容的单元格合并)
1611
1719
  输入示例1:
1612
1720
 
1613
1721
  ```
@@ -1997,13 +2105,18 @@ export interface GroupOrganization {
1997
2105
  }
1998
2106
 
1999
2107
  /**
2000
- * 授权用户
2108
+ * DeleteIntegrationRoleUsers返回参数结构体
2001
2109
  */
2002
- export interface AuthorizedUser {
2110
+ export interface DeleteIntegrationRoleUsersResponse {
2003
2111
  /**
2004
- * 用户id
2112
+ * 角色id
2005
2113
  */
2006
- UserId: string
2114
+ RoleId?: string
2115
+
2116
+ /**
2117
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2118
+ */
2119
+ RequestId?: string
2007
2120
  }
2008
2121
 
2009
2122
  /**
@@ -2133,23 +2246,33 @@ export interface DeleteIntegrationEmployeesRequest {
2133
2246
  }
2134
2247
 
2135
2248
  /**
2136
- * 一码多扫签署二维码对象
2249
+ * 更新员工信息失败返回的数据信息
2137
2250
  */
2138
- export interface SignQrCode {
2251
+ export interface FailedUpdateStaffData {
2139
2252
  /**
2140
- * 二维码id
2253
+ * 用户传入的名称
2141
2254
  */
2142
- QrCodeId: string
2255
+ DisplayName?: string
2143
2256
 
2144
2257
  /**
2145
- * 二维码url
2258
+ * 用户传入的手机号
2146
2259
  */
2147
- QrCodeUrl: string
2260
+ Mobile?: string
2148
2261
 
2149
2262
  /**
2150
- * 二维码过期时间
2263
+ * 失败原因
2151
2264
  */
2152
- ExpiredTime: number
2265
+ Reason?: string
2266
+
2267
+ /**
2268
+ * 用户Id
2269
+ */
2270
+ UserId?: string
2271
+
2272
+ /**
2273
+ * 用户OpenId
2274
+ */
2275
+ OpenId?: string
2153
2276
  }
2154
2277
 
2155
2278
  /**
@@ -2207,6 +2330,31 @@ export interface CreateIntegrationEmployeesResponse {
2207
2330
  RequestId?: string
2208
2331
  }
2209
2332
 
2333
+ /**
2334
+ * DeleteIntegrationRoleUsers请求参数结构体
2335
+ */
2336
+ export interface DeleteIntegrationRoleUsersRequest {
2337
+ /**
2338
+ * 操作人
2339
+ */
2340
+ Operator: UserInfo
2341
+
2342
+ /**
2343
+ * 角色id
2344
+ */
2345
+ RoleId: string
2346
+
2347
+ /**
2348
+ * 用户信息
2349
+ */
2350
+ Users: Array<UserInfo>
2351
+
2352
+ /**
2353
+ * 代理信息
2354
+ */
2355
+ Agent?: Agent
2356
+ }
2357
+
2210
2358
  /**
2211
2359
  * CreateFlowSignUrl请求参数结构体
2212
2360
  */
@@ -2259,6 +2407,31 @@ export interface CreateReleaseFlowRequest {
2259
2407
  ReleasedApprovers?: Array<ReleasedApprover>
2260
2408
  }
2261
2409
 
2410
+ /**
2411
+ * CreateIntegrationUserRoles请求参数结构体
2412
+ */
2413
+ export interface CreateIntegrationUserRolesRequest {
2414
+ /**
2415
+ * 操作人信息
2416
+ */
2417
+ Operator: UserInfo
2418
+
2419
+ /**
2420
+ * 绑定角色的用户id列表
2421
+ */
2422
+ UserIds: Array<string>
2423
+
2424
+ /**
2425
+ * 绑定角色的角色id列表
2426
+ */
2427
+ RoleIds: Array<string>
2428
+
2429
+ /**
2430
+ * 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
2431
+ */
2432
+ Agent?: Agent
2433
+ }
2434
+
2262
2435
  /**
2263
2436
  * 此结构体(FlowDetailInfo)描述的是合同(流程)的详细信息
2264
2437
  */
@@ -2313,6 +2486,26 @@ export interface FlowDetailInfo {
2313
2486
  FlowApproverInfos: Array<FlowApproverDetail>
2314
2487
  }
2315
2488
 
2489
+ /**
2490
+ * 更新员工信息成功返回的数据信息
2491
+ */
2492
+ export interface SuccessUpdateStaffData {
2493
+ /**
2494
+ * 传入的用户名称
2495
+ */
2496
+ DisplayName?: string
2497
+
2498
+ /**
2499
+ * 传入的手机号
2500
+ */
2501
+ Mobile?: string
2502
+
2503
+ /**
2504
+ * 用户Id
2505
+ */
2506
+ UserId?: string
2507
+ }
2508
+
2316
2509
  /**
2317
2510
  * CreateFlowByFiles返回参数结构体
2318
2511
  */
@@ -2469,6 +2662,23 @@ export interface VerifyPdfRequest {
2469
2662
  Operator?: UserInfo
2470
2663
  }
2471
2664
 
2665
+ /**
2666
+ * 绑定角色失败信息
2667
+ */
2668
+ export interface FailedCreateRoleData {
2669
+ /**
2670
+ * 用户userId
2671
+ 注意:此字段可能返回 null,表示取不到有效值。
2672
+ */
2673
+ UserId?: string
2674
+
2675
+ /**
2676
+ * 角色id列表
2677
+ 注意:此字段可能返回 null,表示取不到有效值。
2678
+ */
2679
+ RoleIds?: Array<string>
2680
+ }
2681
+
2472
2682
  /**
2473
2683
  * 参与者信息
2474
2684
  */
@@ -2655,18 +2865,23 @@ export interface DescribeIntegrationMainOrganizationUserResponse {
2655
2865
  }
2656
2866
 
2657
2867
  /**
2658
- * CreateSchemeUrl返回参数结构体
2868
+ * 创建员工的失败数据
2659
2869
  */
2660
- export interface CreateSchemeUrlResponse {
2870
+ export interface FailedCreateStaffData {
2661
2871
  /**
2662
- * 小程序链接地址
2872
+ * 员工名
2663
2873
  */
2664
- SchemeUrl?: string
2874
+ DisplayName: string
2665
2875
 
2666
2876
  /**
2667
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2877
+ * 员工手机号
2668
2878
  */
2669
- RequestId?: string
2879
+ Mobile: string
2880
+
2881
+ /**
2882
+ * 失败原因
2883
+ */
2884
+ Reason: string
2670
2885
  }
2671
2886
 
2672
2887
  /**
@@ -2838,6 +3053,41 @@ MobileCheck:手机号验证
2838
3053
  CcNotifyType?: number
2839
3054
  }
2840
3055
 
3056
+ /**
3057
+ * 企业角色数据信息
3058
+ */
3059
+ export interface IntegrateRole {
3060
+ /**
3061
+ * 角色id
3062
+ 注意:此字段可能返回 null,表示取不到有效值。
3063
+ */
3064
+ RoleId?: string
3065
+
3066
+ /**
3067
+ * 角色名
3068
+ 注意:此字段可能返回 null,表示取不到有效值。
3069
+ */
3070
+ RoleName?: string
3071
+
3072
+ /**
3073
+ * 角色类型:1-系统角色,2-自定义角色
3074
+ 注意:此字段可能返回 null,表示取不到有效值。
3075
+ */
3076
+ RoleStatus?: number
3077
+
3078
+ /**
3079
+ * 是否是集团角色
3080
+ 注意:此字段可能返回 null,表示取不到有效值。
3081
+ */
3082
+ IsGroupRole?: boolean
3083
+
3084
+ /**
3085
+ * 管辖的子企业列表
3086
+ 注意:此字段可能返回 null,表示取不到有效值。
3087
+ */
3088
+ SubOrgIdList?: Array<string>
3089
+ }
3090
+
2841
3091
  /**
2842
3092
  * CreatePrepareFlow返回参数结构体
2843
3093
  */
@@ -2918,7 +3168,22 @@ export interface CancelMultiFlowSignQRCodeRequest {
2918
3168
  /**
2919
3169
  * ModifyApplicationCallbackInfo请求参数结构体
2920
3170
  */
2921
- export type ModifyApplicationCallbackInfoRequest = null
3171
+ export interface ModifyApplicationCallbackInfoRequest {
3172
+ /**
3173
+ * 调用方用户信息,userId 必填
3174
+ */
3175
+ Operator: UserInfo
3176
+
3177
+ /**
3178
+ * 操作类型:1-新增,2-删除
3179
+ */
3180
+ OperateType: number
3181
+
3182
+ /**
3183
+ * 回调信息
3184
+ */
3185
+ CallbackInfo: CallbackInfo
3186
+ }
2922
3187
 
2923
3188
  /**
2924
3189
  * 主企业员工账号信息
@@ -3372,7 +3637,7 @@ KEYWORD 关键字,使用ComponentId指定关键字
3372
3637
  ComponentDateFontSize?: number
3373
3638
 
3374
3639
  /**
3375
- * 渠道版控件 id 标识
3640
+ * 平台模板控件 id 标识
3376
3641
  */
3377
3642
  ChannelComponentId?: string
3378
3643
 
@@ -3387,7 +3652,7 @@ KEYWORD 关键字,使用ComponentId指定关键字
3387
3652
  OffsetY?: number
3388
3653
 
3389
3654
  /**
3390
- * //渠道子客控件来源。0-渠道指定;1-用户自定义
3655
+ * //子客控件来源。0-平台指定;1-用户自定义
3391
3656
  */
3392
3657
  ChannelComponentSource?: number
3393
3658
 
@@ -3413,6 +3678,36 @@ KEYWORD 关键字,使用ComponentId指定关键字
3413
3678
  KeywordIndexes?: Array<number>
3414
3679
  }
3415
3680
 
3681
+ /**
3682
+ * DescribeIntegrationRoles返回参数结构体
3683
+ */
3684
+ export interface DescribeIntegrationRolesResponse {
3685
+ /**
3686
+ * 偏移量,默认为0,最大为2000
3687
+ */
3688
+ Offset?: number
3689
+
3690
+ /**
3691
+ * 返回最大数量,最大为200
3692
+ */
3693
+ Limit?: number
3694
+
3695
+ /**
3696
+ * 符合查询条件的总的角色数
3697
+ */
3698
+ TotalCount?: number
3699
+
3700
+ /**
3701
+ * 企业角色信息列表
3702
+ */
3703
+ IntegrateRoles?: Array<IntegrateRole>
3704
+
3705
+ /**
3706
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3707
+ */
3708
+ RequestId?: string
3709
+ }
3710
+
3416
3711
  /**
3417
3712
  * CreateFlowReminds请求参数结构体
3418
3713
  */
@@ -3428,6 +3723,26 @@ export interface CreateFlowRemindsRequest {
3428
3723
  FlowIds: Array<string>
3429
3724
  }
3430
3725
 
3726
+ /**
3727
+ * UpdateIntegrationEmployees请求参数结构体
3728
+ */
3729
+ export interface UpdateIntegrationEmployeesRequest {
3730
+ /**
3731
+ * 操作人信息
3732
+ */
3733
+ Operator: UserInfo
3734
+
3735
+ /**
3736
+ * 代理信息
3737
+ */
3738
+ Agent: Agent
3739
+
3740
+ /**
3741
+ * 员工信息
3742
+ */
3743
+ Employees: Array<Staff>
3744
+ }
3745
+
3431
3746
  /**
3432
3747
  * DescribeFlowBriefs请求参数结构体
3433
3748
  */
@@ -1,5 +1,5 @@
1
1
  import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
2
- import { CancelFlowResponse, DescribeFlowEvidenceReportRequest, CreatePreparedPersonalEsignRequest, CreateFlowApproversResponse, DescribeIntegrationMainOrganizationUserRequest, ModifyApplicationCallbackInfoResponse, CreateMultiFlowSignQRCodeResponse, DescribeThirdPartyAuthCodeResponse, DisableUserAutoSignResponse, CreateIntegrationEmployeesRequest, CreateFlowEvidenceReportRequest, StartFlowResponse, CreateConvertTaskApiRequest, CreateFlowRemindsResponse, DescribeOrganizationGroupOrganizationsRequest, DescribeFlowTemplatesRequest, DescribeFlowEvidenceReportResponse, CreateDocumentResponse, DescribeIntegrationEmployeesRequest, CreateFlowRequest, CreateSchemeUrlRequest, DescribeThirdPartyAuthCodeRequest, CreateReleaseFlowResponse, DescribeFlowInfoRequest, DeleteSealPoliciesResponse, DescribeUserAutoSignStatusResponse, CreateBatchCancelFlowUrlResponse, CreateSealPolicyResponse, DisableUserAutoSignRequest, DescribeIntegrationEmployeesResponse, CreateConvertTaskApiResponse, CreateFlowSignReviewRequest, CreateUserAutoSignEnableUrlResponse, CreateFlowSignUrlResponse, DescribeFileUrlsRequest, CreateFlowApproversRequest, CreateFlowEvidenceReportResponse, DescribeFileUrlsResponse, CreateDocumentRequest, CreatePreparedPersonalEsignResponse, DescribeOrganizationSealsResponse, DeleteIntegrationEmployeesRequest, GetTaskResultApiRequest, CreateIntegrationEmployeesResponse, CreateFlowSignUrlRequest, CreateReleaseFlowRequest, 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";
2
+ import { CancelFlowResponse, DescribeFlowEvidenceReportRequest, UpdateIntegrationEmployeesResponse, CreatePreparedPersonalEsignRequest, CreateFlowApproversResponse, DescribeIntegrationMainOrganizationUserRequest, ModifyApplicationCallbackInfoResponse, CreateMultiFlowSignQRCodeResponse, DescribeThirdPartyAuthCodeResponse, DisableUserAutoSignResponse, CreateIntegrationEmployeesRequest, CreateConvertTaskApiRequest, CreateFlowEvidenceReportRequest, StartFlowResponse, DescribeIntegrationRolesRequest, CreateFlowRemindsResponse, DescribeOrganizationGroupOrganizationsRequest, DescribeFlowTemplatesRequest, DescribeFlowEvidenceReportResponse, CreateDocumentResponse, DescribeIntegrationEmployeesRequest, CreateIntegrationUserRolesResponse, CreateFlowRequest, CreateSchemeUrlRequest, DescribeThirdPartyAuthCodeRequest, CreateReleaseFlowResponse, DescribeFlowInfoRequest, DeleteSealPoliciesResponse, DescribeUserAutoSignStatusResponse, CreateBatchCancelFlowUrlResponse, CreateSealPolicyResponse, DisableUserAutoSignRequest, DescribeIntegrationEmployeesResponse, CreateConvertTaskApiResponse, CreateFlowSignReviewRequest, CreateSchemeUrlResponse, CreateUserAutoSignEnableUrlResponse, CreateFlowSignUrlResponse, DescribeFileUrlsRequest, CreateFlowApproversRequest, CreateFlowEvidenceReportResponse, DescribeFileUrlsResponse, DeleteIntegrationRoleUsersResponse, CreateDocumentRequest, CreatePreparedPersonalEsignResponse, DescribeOrganizationSealsResponse, DeleteIntegrationEmployeesRequest, GetTaskResultApiRequest, CreateIntegrationEmployeesResponse, DeleteIntegrationRoleUsersRequest, CreateFlowSignUrlRequest, CreateReleaseFlowRequest, CreateIntegrationUserRolesRequest, CreateFlowByFilesResponse, UploadFilesResponse, VerifyPdfRequest, CreateFlowSignReviewResponse, CreateUserAutoSignEnableUrlRequest, DescribeIntegrationMainOrganizationUserResponse, DeleteSealPoliciesRequest, CreateFlowByFilesRequest, CreatePrepareFlowResponse, GetTaskResultApiResponse, CancelMultiFlowSignQRCodeRequest, ModifyApplicationCallbackInfoRequest, StartFlowRequest, CreatePrepareFlowRequest, CreateSealPolicyRequest, DescribeOrganizationSealsRequest, CancelFlowRequest, DescribeIntegrationRolesResponse, CreateFlowRemindsRequest, UpdateIntegrationEmployeesRequest, 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
@@ -15,7 +15,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
15
15
  callbackinfo包含: 回调地址和签名key
16
16
  操作:新增/删除
17
17
  */
18
- ModifyApplicationCallbackInfo(req?: ModifyApplicationCallbackInfoRequest, cb?: (error: string, rep: ModifyApplicationCallbackInfoResponse) => void): Promise<ModifyApplicationCallbackInfoResponse>;
18
+ ModifyApplicationCallbackInfo(req: ModifyApplicationCallbackInfoRequest, cb?: (error: string, rep: ModifyApplicationCallbackInfoResponse) => void): Promise<ModifyApplicationCallbackInfoResponse>;
19
19
  /**
20
20
  * 此接口用于发起流程
21
21
  适用场景:见创建签署流程接口。
@@ -75,6 +75,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
75
75
  * 企业方可以通过此接口关闭个人的自动签功能
76
76
  */
77
77
  DisableUserAutoSign(req: DisableUserAutoSignRequest, cb?: (error: string, rep: DisableUserAutoSignResponse) => void): Promise<DisableUserAutoSignResponse>;
78
+ /**
79
+ * 解绑用户角色绑定关系
80
+ */
81
+ DeleteIntegrationRoleUsers(req: DeleteIntegrationRoleUsersRequest, cb?: (error: string, rep: DeleteIntegrationRoleUsersResponse) => void): Promise<DeleteIntegrationRoleUsersResponse>;
78
82
  /**
79
83
  * 提交企业签署流程审批结果
80
84
  适用场景:
@@ -129,6 +133,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
129
133
  注意事项:该接口需要依赖“多文件上传”接口生成pdf资源编号(FileIds)进行使用。
130
134
  */
131
135
  CreateFlowByFiles(req: CreateFlowByFilesRequest, cb?: (error: string, rep: CreateFlowByFilesResponse) => void): Promise<CreateFlowByFilesResponse>;
136
+ /**
137
+ * 查询集成版角色
138
+ */
139
+ DescribeIntegrationRoles(req: DescribeIntegrationRolesRequest, cb?: (error: string, rep: DescribeIntegrationRolesResponse) => void): Promise<DescribeIntegrationRolesResponse>;
132
140
  /**
133
141
  * 此接口(CreateMultiFlowSignQRCode)用于创建一码多扫流程签署二维码。
134
142
  适用场景:无需填写签署人信息,可通过模板id生成签署二维码,签署人可通过扫描二维码补充签署信息进行实名签署。常用于提前不知道签署人的身份信息场景,例如:劳务工招工、大批量员工入职等场景。
@@ -161,6 +169,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
161
169
  日调用量默认10W
162
170
  */
163
171
  DescribeFlowBriefs(req: DescribeFlowBriefsRequest, cb?: (error: string, rep: DescribeFlowBriefsResponse) => void): Promise<DescribeFlowBriefsResponse>;
172
+ /**
173
+ * 集成版绑定员工角色
174
+ */
175
+ CreateIntegrationUserRoles(req: CreateIntegrationUserRolesRequest, cb?: (error: string, rep: CreateIntegrationUserRolesResponse) => void): Promise<CreateIntegrationUserRolesResponse>;
164
176
  /**
165
177
  * 此接口(UploadFiles)用于文件上传。
166
178
  适用场景:用于生成pdf资源编号(FileIds)来配合“用PDF创建流程”接口使用,使用场景可详见“用PDF创建流程”接口说明。
@@ -209,4 +221,8 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
209
221
  * 创建员工,如需在此接口提醒员工实名,入参Employees的OpenId不传
210
222
  */
211
223
  CreateIntegrationEmployees(req: CreateIntegrationEmployeesRequest, cb?: (error: string, rep: CreateIntegrationEmployeesResponse) => void): Promise<CreateIntegrationEmployeesResponse>;
224
+ /**
225
+ * 更新集成版员工信息(姓名,手机号,邮件),用户实名后无法更改姓名与手机号
226
+ */
227
+ UpdateIntegrationEmployees(req: UpdateIntegrationEmployeesRequest, cb?: (error: string, rep: UpdateIntegrationEmployeesResponse) => void): Promise<UpdateIntegrationEmployeesResponse>;
212
228
  }