tencentcloud-sdk-nodejs-ess 4.0.567 → 4.0.568
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/CHANGELOG.md +160 -0
- package/SERVICE_CHANGELOG.md +259 -296
- package/package.json +1 -1
- package/products.md +21 -21
- package/src/services/ess/v20201111/ess_client.ts +57 -5
- package/src/services/ess/v20201111/ess_models.ts +335 -50
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +17 -1
- package/tencentcloud/services/ess/v20201111/ess_client.js +24 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +291 -49
|
@@ -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
|
-
*
|
|
456
|
+
* 授权用户
|
|
402
457
|
*/
|
|
403
|
-
export interface
|
|
458
|
+
export interface AuthorizedUser {
|
|
404
459
|
/**
|
|
405
|
-
*
|
|
460
|
+
* 用户id
|
|
406
461
|
*/
|
|
407
|
-
|
|
462
|
+
UserId: string
|
|
463
|
+
}
|
|
408
464
|
|
|
465
|
+
/**
|
|
466
|
+
* DescribeIntegrationRoles请求参数结构体
|
|
467
|
+
*/
|
|
468
|
+
export interface DescribeIntegrationRolesRequest {
|
|
409
469
|
/**
|
|
410
|
-
*
|
|
470
|
+
* 操作人信息
|
|
411
471
|
*/
|
|
412
|
-
|
|
472
|
+
Operator: UserInfo
|
|
413
473
|
|
|
414
474
|
/**
|
|
415
|
-
*
|
|
475
|
+
* 返回最大数量,最大为200
|
|
416
476
|
*/
|
|
417
|
-
|
|
477
|
+
Limit: number
|
|
418
478
|
|
|
419
479
|
/**
|
|
420
|
-
*
|
|
480
|
+
* 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
|
421
481
|
*/
|
|
422
|
-
|
|
482
|
+
Agent?: Agent
|
|
423
483
|
|
|
424
484
|
/**
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
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
|
-
|
|
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
|
|
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
|
|
|
@@ -826,6 +889,21 @@ export interface DescribeIntegrationEmployeesRequest {
|
|
|
826
889
|
Offset?: number
|
|
827
890
|
}
|
|
828
891
|
|
|
892
|
+
/**
|
|
893
|
+
* CreateIntegrationUserRoles返回参数结构体
|
|
894
|
+
*/
|
|
895
|
+
export interface CreateIntegrationUserRolesResponse {
|
|
896
|
+
/**
|
|
897
|
+
* 绑定角色失败列表信息
|
|
898
|
+
*/
|
|
899
|
+
FailedCreateRoleData?: Array<FailedCreateRoleData>
|
|
900
|
+
|
|
901
|
+
/**
|
|
902
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
903
|
+
*/
|
|
904
|
+
RequestId?: string
|
|
905
|
+
}
|
|
906
|
+
|
|
829
907
|
/**
|
|
830
908
|
* CreateFlow请求参数结构体
|
|
831
909
|
*/
|
|
@@ -1327,6 +1405,26 @@ HONGKONG_MACAO_AND_TAIWAN 港澳台居民居住证(格式同居民身份证)
|
|
|
1327
1405
|
IdCardNumber: string
|
|
1328
1406
|
}
|
|
1329
1407
|
|
|
1408
|
+
/**
|
|
1409
|
+
* 一码多扫签署二维码对象
|
|
1410
|
+
*/
|
|
1411
|
+
export interface SignQrCode {
|
|
1412
|
+
/**
|
|
1413
|
+
* 二维码id
|
|
1414
|
+
*/
|
|
1415
|
+
QrCodeId: string
|
|
1416
|
+
|
|
1417
|
+
/**
|
|
1418
|
+
* 二维码url
|
|
1419
|
+
*/
|
|
1420
|
+
QrCodeUrl: string
|
|
1421
|
+
|
|
1422
|
+
/**
|
|
1423
|
+
* 二维码过期时间
|
|
1424
|
+
*/
|
|
1425
|
+
ExpiredTime: number
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1330
1428
|
/**
|
|
1331
1429
|
* CreateSealPolicy返回参数结构体
|
|
1332
1430
|
*/
|
|
@@ -1464,23 +1562,18 @@ REJECT: 拒绝
|
|
|
1464
1562
|
}
|
|
1465
1563
|
|
|
1466
1564
|
/**
|
|
1467
|
-
*
|
|
1565
|
+
* CreateSchemeUrl返回参数结构体
|
|
1468
1566
|
*/
|
|
1469
|
-
export interface
|
|
1470
|
-
/**
|
|
1471
|
-
* 员工名
|
|
1472
|
-
*/
|
|
1473
|
-
DisplayName: string
|
|
1474
|
-
|
|
1567
|
+
export interface CreateSchemeUrlResponse {
|
|
1475
1568
|
/**
|
|
1476
|
-
*
|
|
1569
|
+
* 小程序链接地址
|
|
1477
1570
|
*/
|
|
1478
|
-
|
|
1571
|
+
SchemeUrl?: string
|
|
1479
1572
|
|
|
1480
1573
|
/**
|
|
1481
|
-
*
|
|
1574
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1482
1575
|
*/
|
|
1483
|
-
|
|
1576
|
+
RequestId?: string
|
|
1484
1577
|
}
|
|
1485
1578
|
|
|
1486
1579
|
/**
|
|
@@ -1607,7 +1700,7 @@ export interface DescribeFileUrlsRequest {
|
|
|
1607
1700
|
* 电子文档的控件填充信息。按照控件类型进行相应的填充。
|
|
1608
1701
|
|
|
1609
1702
|
【数据表格传参说明】
|
|
1610
|
-
当模板的 ComponentType='DYNAMIC_TABLE'
|
|
1703
|
+
当模板的 ComponentType='DYNAMIC_TABLE'时,FormField.ComponentValue需要传递json格式的字符串参数,用于确定表头&填充数据表格(支持内容的单元格合并)
|
|
1611
1704
|
输入示例1:
|
|
1612
1705
|
|
|
1613
1706
|
```
|
|
@@ -1997,13 +2090,18 @@ export interface GroupOrganization {
|
|
|
1997
2090
|
}
|
|
1998
2091
|
|
|
1999
2092
|
/**
|
|
2000
|
-
*
|
|
2093
|
+
* DeleteIntegrationRoleUsers返回参数结构体
|
|
2001
2094
|
*/
|
|
2002
|
-
export interface
|
|
2095
|
+
export interface DeleteIntegrationRoleUsersResponse {
|
|
2003
2096
|
/**
|
|
2004
|
-
*
|
|
2097
|
+
* 角色id
|
|
2005
2098
|
*/
|
|
2006
|
-
|
|
2099
|
+
RoleId?: string
|
|
2100
|
+
|
|
2101
|
+
/**
|
|
2102
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2103
|
+
*/
|
|
2104
|
+
RequestId?: string
|
|
2007
2105
|
}
|
|
2008
2106
|
|
|
2009
2107
|
/**
|
|
@@ -2133,23 +2231,33 @@ export interface DeleteIntegrationEmployeesRequest {
|
|
|
2133
2231
|
}
|
|
2134
2232
|
|
|
2135
2233
|
/**
|
|
2136
|
-
*
|
|
2234
|
+
* 更新员工信息失败返回的数据信息
|
|
2137
2235
|
*/
|
|
2138
|
-
export interface
|
|
2236
|
+
export interface FailedUpdateStaffData {
|
|
2139
2237
|
/**
|
|
2140
|
-
*
|
|
2238
|
+
* 用户传入的名称
|
|
2141
2239
|
*/
|
|
2142
|
-
|
|
2240
|
+
DisplayName?: string
|
|
2143
2241
|
|
|
2144
2242
|
/**
|
|
2145
|
-
*
|
|
2243
|
+
* 用户传入的手机号
|
|
2146
2244
|
*/
|
|
2147
|
-
|
|
2245
|
+
Mobile?: string
|
|
2148
2246
|
|
|
2149
2247
|
/**
|
|
2150
|
-
*
|
|
2248
|
+
* 失败原因
|
|
2151
2249
|
*/
|
|
2152
|
-
|
|
2250
|
+
Reason?: string
|
|
2251
|
+
|
|
2252
|
+
/**
|
|
2253
|
+
* 用户Id
|
|
2254
|
+
*/
|
|
2255
|
+
UserId?: string
|
|
2256
|
+
|
|
2257
|
+
/**
|
|
2258
|
+
* 用户OpenId
|
|
2259
|
+
*/
|
|
2260
|
+
OpenId?: string
|
|
2153
2261
|
}
|
|
2154
2262
|
|
|
2155
2263
|
/**
|
|
@@ -2207,6 +2315,31 @@ export interface CreateIntegrationEmployeesResponse {
|
|
|
2207
2315
|
RequestId?: string
|
|
2208
2316
|
}
|
|
2209
2317
|
|
|
2318
|
+
/**
|
|
2319
|
+
* DeleteIntegrationRoleUsers请求参数结构体
|
|
2320
|
+
*/
|
|
2321
|
+
export interface DeleteIntegrationRoleUsersRequest {
|
|
2322
|
+
/**
|
|
2323
|
+
* 操作人
|
|
2324
|
+
*/
|
|
2325
|
+
Operator: UserInfo
|
|
2326
|
+
|
|
2327
|
+
/**
|
|
2328
|
+
* 角色id
|
|
2329
|
+
*/
|
|
2330
|
+
RoleId: string
|
|
2331
|
+
|
|
2332
|
+
/**
|
|
2333
|
+
* 用户信息
|
|
2334
|
+
*/
|
|
2335
|
+
Users: Array<UserInfo>
|
|
2336
|
+
|
|
2337
|
+
/**
|
|
2338
|
+
* 代理信息
|
|
2339
|
+
*/
|
|
2340
|
+
Agent?: Agent
|
|
2341
|
+
}
|
|
2342
|
+
|
|
2210
2343
|
/**
|
|
2211
2344
|
* CreateFlowSignUrl请求参数结构体
|
|
2212
2345
|
*/
|
|
@@ -2259,6 +2392,31 @@ export interface CreateReleaseFlowRequest {
|
|
|
2259
2392
|
ReleasedApprovers?: Array<ReleasedApprover>
|
|
2260
2393
|
}
|
|
2261
2394
|
|
|
2395
|
+
/**
|
|
2396
|
+
* CreateIntegrationUserRoles请求参数结构体
|
|
2397
|
+
*/
|
|
2398
|
+
export interface CreateIntegrationUserRolesRequest {
|
|
2399
|
+
/**
|
|
2400
|
+
* 操作人信息
|
|
2401
|
+
*/
|
|
2402
|
+
Operator: UserInfo
|
|
2403
|
+
|
|
2404
|
+
/**
|
|
2405
|
+
* 绑定角色的用户id列表
|
|
2406
|
+
*/
|
|
2407
|
+
UserIds: Array<string>
|
|
2408
|
+
|
|
2409
|
+
/**
|
|
2410
|
+
* 绑定角色的角色id列表
|
|
2411
|
+
*/
|
|
2412
|
+
RoleIds: Array<string>
|
|
2413
|
+
|
|
2414
|
+
/**
|
|
2415
|
+
* 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
|
2416
|
+
*/
|
|
2417
|
+
Agent?: Agent
|
|
2418
|
+
}
|
|
2419
|
+
|
|
2262
2420
|
/**
|
|
2263
2421
|
* 此结构体(FlowDetailInfo)描述的是合同(流程)的详细信息
|
|
2264
2422
|
*/
|
|
@@ -2313,6 +2471,26 @@ export interface FlowDetailInfo {
|
|
|
2313
2471
|
FlowApproverInfos: Array<FlowApproverDetail>
|
|
2314
2472
|
}
|
|
2315
2473
|
|
|
2474
|
+
/**
|
|
2475
|
+
* 更新员工信息成功返回的数据信息
|
|
2476
|
+
*/
|
|
2477
|
+
export interface SuccessUpdateStaffData {
|
|
2478
|
+
/**
|
|
2479
|
+
* 传入的用户名称
|
|
2480
|
+
*/
|
|
2481
|
+
DisplayName?: string
|
|
2482
|
+
|
|
2483
|
+
/**
|
|
2484
|
+
* 传入的手机号
|
|
2485
|
+
*/
|
|
2486
|
+
Mobile?: string
|
|
2487
|
+
|
|
2488
|
+
/**
|
|
2489
|
+
* 用户Id
|
|
2490
|
+
*/
|
|
2491
|
+
UserId?: string
|
|
2492
|
+
}
|
|
2493
|
+
|
|
2316
2494
|
/**
|
|
2317
2495
|
* CreateFlowByFiles返回参数结构体
|
|
2318
2496
|
*/
|
|
@@ -2469,6 +2647,23 @@ export interface VerifyPdfRequest {
|
|
|
2469
2647
|
Operator?: UserInfo
|
|
2470
2648
|
}
|
|
2471
2649
|
|
|
2650
|
+
/**
|
|
2651
|
+
* 绑定角色失败信息
|
|
2652
|
+
*/
|
|
2653
|
+
export interface FailedCreateRoleData {
|
|
2654
|
+
/**
|
|
2655
|
+
* 用户userId
|
|
2656
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2657
|
+
*/
|
|
2658
|
+
UserId?: string
|
|
2659
|
+
|
|
2660
|
+
/**
|
|
2661
|
+
* 角色id列表
|
|
2662
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2663
|
+
*/
|
|
2664
|
+
RoleIds?: Array<string>
|
|
2665
|
+
}
|
|
2666
|
+
|
|
2472
2667
|
/**
|
|
2473
2668
|
* 参与者信息
|
|
2474
2669
|
*/
|
|
@@ -2655,18 +2850,23 @@ export interface DescribeIntegrationMainOrganizationUserResponse {
|
|
|
2655
2850
|
}
|
|
2656
2851
|
|
|
2657
2852
|
/**
|
|
2658
|
-
*
|
|
2853
|
+
* 创建员工的失败数据
|
|
2659
2854
|
*/
|
|
2660
|
-
export interface
|
|
2855
|
+
export interface FailedCreateStaffData {
|
|
2661
2856
|
/**
|
|
2662
|
-
*
|
|
2857
|
+
* 员工名
|
|
2663
2858
|
*/
|
|
2664
|
-
|
|
2859
|
+
DisplayName: string
|
|
2665
2860
|
|
|
2666
2861
|
/**
|
|
2667
|
-
*
|
|
2862
|
+
* 员工手机号
|
|
2668
2863
|
*/
|
|
2669
|
-
|
|
2864
|
+
Mobile: string
|
|
2865
|
+
|
|
2866
|
+
/**
|
|
2867
|
+
* 失败原因
|
|
2868
|
+
*/
|
|
2869
|
+
Reason: string
|
|
2670
2870
|
}
|
|
2671
2871
|
|
|
2672
2872
|
/**
|
|
@@ -2838,6 +3038,41 @@ MobileCheck:手机号验证
|
|
|
2838
3038
|
CcNotifyType?: number
|
|
2839
3039
|
}
|
|
2840
3040
|
|
|
3041
|
+
/**
|
|
3042
|
+
* 企业角色数据信息
|
|
3043
|
+
*/
|
|
3044
|
+
export interface IntegrateRole {
|
|
3045
|
+
/**
|
|
3046
|
+
* 角色id
|
|
3047
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3048
|
+
*/
|
|
3049
|
+
RoleId?: string
|
|
3050
|
+
|
|
3051
|
+
/**
|
|
3052
|
+
* 角色名
|
|
3053
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3054
|
+
*/
|
|
3055
|
+
RoleName?: string
|
|
3056
|
+
|
|
3057
|
+
/**
|
|
3058
|
+
* 角色类型:1-系统角色,2-自定义角色
|
|
3059
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3060
|
+
*/
|
|
3061
|
+
RoleStatus?: number
|
|
3062
|
+
|
|
3063
|
+
/**
|
|
3064
|
+
* 是否是集团角色
|
|
3065
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3066
|
+
*/
|
|
3067
|
+
IsGroupRole?: boolean
|
|
3068
|
+
|
|
3069
|
+
/**
|
|
3070
|
+
* 管辖的子企业列表
|
|
3071
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3072
|
+
*/
|
|
3073
|
+
SubOrgIdList?: Array<string>
|
|
3074
|
+
}
|
|
3075
|
+
|
|
2841
3076
|
/**
|
|
2842
3077
|
* CreatePrepareFlow返回参数结构体
|
|
2843
3078
|
*/
|
|
@@ -3372,7 +3607,7 @@ KEYWORD 关键字,使用ComponentId指定关键字
|
|
|
3372
3607
|
ComponentDateFontSize?: number
|
|
3373
3608
|
|
|
3374
3609
|
/**
|
|
3375
|
-
*
|
|
3610
|
+
* 平台模板控件 id 标识
|
|
3376
3611
|
*/
|
|
3377
3612
|
ChannelComponentId?: string
|
|
3378
3613
|
|
|
@@ -3387,7 +3622,7 @@ KEYWORD 关键字,使用ComponentId指定关键字
|
|
|
3387
3622
|
OffsetY?: number
|
|
3388
3623
|
|
|
3389
3624
|
/**
|
|
3390
|
-
*
|
|
3625
|
+
* //子客控件来源。0-平台指定;1-用户自定义
|
|
3391
3626
|
*/
|
|
3392
3627
|
ChannelComponentSource?: number
|
|
3393
3628
|
|
|
@@ -3413,6 +3648,36 @@ KEYWORD 关键字,使用ComponentId指定关键字
|
|
|
3413
3648
|
KeywordIndexes?: Array<number>
|
|
3414
3649
|
}
|
|
3415
3650
|
|
|
3651
|
+
/**
|
|
3652
|
+
* DescribeIntegrationRoles返回参数结构体
|
|
3653
|
+
*/
|
|
3654
|
+
export interface DescribeIntegrationRolesResponse {
|
|
3655
|
+
/**
|
|
3656
|
+
* 偏移量,默认为0,最大为2000
|
|
3657
|
+
*/
|
|
3658
|
+
Offset?: number
|
|
3659
|
+
|
|
3660
|
+
/**
|
|
3661
|
+
* 返回最大数量,最大为200
|
|
3662
|
+
*/
|
|
3663
|
+
Limit?: number
|
|
3664
|
+
|
|
3665
|
+
/**
|
|
3666
|
+
* 符合查询条件的总的角色数
|
|
3667
|
+
*/
|
|
3668
|
+
TotalCount?: number
|
|
3669
|
+
|
|
3670
|
+
/**
|
|
3671
|
+
* 企业角色信息列表
|
|
3672
|
+
*/
|
|
3673
|
+
IntegrateRoles?: Array<IntegrateRole>
|
|
3674
|
+
|
|
3675
|
+
/**
|
|
3676
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3677
|
+
*/
|
|
3678
|
+
RequestId?: string
|
|
3679
|
+
}
|
|
3680
|
+
|
|
3416
3681
|
/**
|
|
3417
3682
|
* CreateFlowReminds请求参数结构体
|
|
3418
3683
|
*/
|
|
@@ -3428,6 +3693,26 @@ export interface CreateFlowRemindsRequest {
|
|
|
3428
3693
|
FlowIds: Array<string>
|
|
3429
3694
|
}
|
|
3430
3695
|
|
|
3696
|
+
/**
|
|
3697
|
+
* UpdateIntegrationEmployees请求参数结构体
|
|
3698
|
+
*/
|
|
3699
|
+
export interface UpdateIntegrationEmployeesRequest {
|
|
3700
|
+
/**
|
|
3701
|
+
* 操作人信息
|
|
3702
|
+
*/
|
|
3703
|
+
Operator: UserInfo
|
|
3704
|
+
|
|
3705
|
+
/**
|
|
3706
|
+
* 代理信息
|
|
3707
|
+
*/
|
|
3708
|
+
Agent: Agent
|
|
3709
|
+
|
|
3710
|
+
/**
|
|
3711
|
+
* 员工信息
|
|
3712
|
+
*/
|
|
3713
|
+
Employees: Array<Staff>
|
|
3714
|
+
}
|
|
3715
|
+
|
|
3431
3716
|
/**
|
|
3432
3717
|
* DescribeFlowBriefs请求参数结构体
|
|
3433
3718
|
*/
|
|
@@ -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,
|
|
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
|
|
@@ -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
|
}
|
|
@@ -124,6 +124,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
124
124
|
async DisableUserAutoSign(req, cb) {
|
|
125
125
|
return this.request("DisableUserAutoSign", req, cb);
|
|
126
126
|
}
|
|
127
|
+
/**
|
|
128
|
+
* 解绑用户角色绑定关系
|
|
129
|
+
*/
|
|
130
|
+
async DeleteIntegrationRoleUsers(req, cb) {
|
|
131
|
+
return this.request("DeleteIntegrationRoleUsers", req, cb);
|
|
132
|
+
}
|
|
127
133
|
/**
|
|
128
134
|
* 提交企业签署流程审批结果
|
|
129
135
|
适用场景:
|
|
@@ -198,6 +204,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
198
204
|
async CreateFlowByFiles(req, cb) {
|
|
199
205
|
return this.request("CreateFlowByFiles", req, cb);
|
|
200
206
|
}
|
|
207
|
+
/**
|
|
208
|
+
* 查询集成版角色
|
|
209
|
+
*/
|
|
210
|
+
async DescribeIntegrationRoles(req, cb) {
|
|
211
|
+
return this.request("DescribeIntegrationRoles", req, cb);
|
|
212
|
+
}
|
|
201
213
|
/**
|
|
202
214
|
* 此接口(CreateMultiFlowSignQRCode)用于创建一码多扫流程签署二维码。
|
|
203
215
|
适用场景:无需填写签署人信息,可通过模板id生成签署二维码,签署人可通过扫描二维码补充签署信息进行实名签署。常用于提前不知道签署人的身份信息场景,例如:劳务工招工、大批量员工入职等场景。
|
|
@@ -244,6 +256,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
244
256
|
async DescribeFlowBriefs(req, cb) {
|
|
245
257
|
return this.request("DescribeFlowBriefs", req, cb);
|
|
246
258
|
}
|
|
259
|
+
/**
|
|
260
|
+
* 集成版绑定员工角色
|
|
261
|
+
*/
|
|
262
|
+
async CreateIntegrationUserRoles(req, cb) {
|
|
263
|
+
return this.request("CreateIntegrationUserRoles", req, cb);
|
|
264
|
+
}
|
|
247
265
|
/**
|
|
248
266
|
* 此接口(UploadFiles)用于文件上传。
|
|
249
267
|
适用场景:用于生成pdf资源编号(FileIds)来配合“用PDF创建流程”接口使用,使用场景可详见“用PDF创建流程”接口说明。
|
|
@@ -308,5 +326,11 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
308
326
|
async CreateIntegrationEmployees(req, cb) {
|
|
309
327
|
return this.request("CreateIntegrationEmployees", req, cb);
|
|
310
328
|
}
|
|
329
|
+
/**
|
|
330
|
+
* 更新集成版员工信息(姓名,手机号,邮件),用户实名后无法更改姓名与手机号
|
|
331
|
+
*/
|
|
332
|
+
async UpdateIntegrationEmployees(req, cb) {
|
|
333
|
+
return this.request("UpdateIntegrationEmployees", req, cb);
|
|
334
|
+
}
|
|
311
335
|
}
|
|
312
336
|
exports.Client = Client;
|