tencentcloud-sdk-nodejs-ess 4.0.566 → 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 +524 -0
- package/SERVICE_CHANGELOG.md +535 -170
- package/package.json +1 -1
- package/products.md +37 -37
- package/src/services/ess/v20201111/ess_client.ts +71 -7
- package/src/services/ess/v20201111/ess_models.ts +463 -88
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +22 -2
- package/tencentcloud/services/ess/v20201111/ess_client.js +31 -1
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +403 -86
|
@@ -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
|
*/
|
|
@@ -56,56 +76,53 @@ export interface Department {
|
|
|
56
76
|
}
|
|
57
77
|
|
|
58
78
|
/**
|
|
59
|
-
*
|
|
79
|
+
* CreatePreparedPersonalEsign请求参数结构体
|
|
60
80
|
*/
|
|
61
|
-
export interface
|
|
81
|
+
export interface CreatePreparedPersonalEsignRequest {
|
|
62
82
|
/**
|
|
63
|
-
*
|
|
83
|
+
* 个人用户名称
|
|
64
84
|
*/
|
|
65
|
-
|
|
85
|
+
UserName: string
|
|
66
86
|
|
|
67
87
|
/**
|
|
68
|
-
*
|
|
88
|
+
* 身份证件号码
|
|
69
89
|
*/
|
|
70
|
-
|
|
90
|
+
IdCardNumber: string
|
|
71
91
|
|
|
72
92
|
/**
|
|
73
|
-
*
|
|
93
|
+
* 印章图片的base64
|
|
74
94
|
*/
|
|
75
|
-
|
|
95
|
+
SealImage: string
|
|
76
96
|
|
|
77
97
|
/**
|
|
78
|
-
*
|
|
98
|
+
* 印章名称
|
|
79
99
|
*/
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
/**
|
|
83
|
-
* 链接类型
|
|
84
|
-
HTTP:跳转电子签小程序的http_url,
|
|
85
|
-
APP:第三方APP或小程序跳转电子签小程序的path。
|
|
86
|
-
默认为HTTP类型
|
|
87
|
-
*/
|
|
88
|
-
EndPoint?: string
|
|
100
|
+
SealName: string
|
|
89
101
|
|
|
90
102
|
/**
|
|
91
|
-
*
|
|
103
|
+
* 调用方用户信息,userId 必填。支持填入集团子公司经办人 userId代发合同。
|
|
92
104
|
*/
|
|
93
|
-
|
|
105
|
+
Operator?: UserInfo
|
|
94
106
|
|
|
95
107
|
/**
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
108
|
+
* 身份证件类型:
|
|
109
|
+
ID_CARD 身份证
|
|
110
|
+
PASSPORT 护照
|
|
111
|
+
HONGKONG_AND_MACAO 香港身份
|
|
112
|
+
FOREIGN_ID_CARD 国外身份
|
|
113
|
+
HONGKONG_MACAO_AND_TAIWAN 港台身份
|
|
114
|
+
*/
|
|
115
|
+
IdCardType?: string
|
|
99
116
|
|
|
100
117
|
/**
|
|
101
|
-
*
|
|
118
|
+
* 手机号码
|
|
102
119
|
*/
|
|
103
|
-
|
|
120
|
+
Mobile?: string
|
|
104
121
|
|
|
105
122
|
/**
|
|
106
|
-
*
|
|
123
|
+
* 是否需开通自动签
|
|
107
124
|
*/
|
|
108
|
-
|
|
125
|
+
EnableAutoSign?: boolean
|
|
109
126
|
}
|
|
110
127
|
|
|
111
128
|
/**
|
|
@@ -317,6 +334,46 @@ export interface CreateIntegrationEmployeesRequest {
|
|
|
317
334
|
* 待创建员工的信息,Mobile和DisplayName必填
|
|
318
335
|
*/
|
|
319
336
|
Employees: Array<Staff>
|
|
337
|
+
|
|
338
|
+
/**
|
|
339
|
+
* 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
|
340
|
+
*/
|
|
341
|
+
Agent?: Agent
|
|
342
|
+
}
|
|
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
|
|
320
377
|
}
|
|
321
378
|
|
|
322
379
|
/**
|
|
@@ -396,38 +453,46 @@ export interface FlowApproverUrlInfo {
|
|
|
396
453
|
}
|
|
397
454
|
|
|
398
455
|
/**
|
|
399
|
-
*
|
|
456
|
+
* 授权用户
|
|
400
457
|
*/
|
|
401
|
-
export interface
|
|
458
|
+
export interface AuthorizedUser {
|
|
402
459
|
/**
|
|
403
|
-
*
|
|
460
|
+
* 用户id
|
|
404
461
|
*/
|
|
405
|
-
|
|
462
|
+
UserId: string
|
|
463
|
+
}
|
|
406
464
|
|
|
465
|
+
/**
|
|
466
|
+
* DescribeIntegrationRoles请求参数结构体
|
|
467
|
+
*/
|
|
468
|
+
export interface DescribeIntegrationRolesRequest {
|
|
407
469
|
/**
|
|
408
|
-
*
|
|
470
|
+
* 操作人信息
|
|
409
471
|
*/
|
|
410
|
-
|
|
472
|
+
Operator: UserInfo
|
|
411
473
|
|
|
412
474
|
/**
|
|
413
|
-
*
|
|
475
|
+
* 返回最大数量,最大为200
|
|
414
476
|
*/
|
|
415
|
-
|
|
477
|
+
Limit: number
|
|
416
478
|
|
|
417
479
|
/**
|
|
418
|
-
*
|
|
480
|
+
* 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
|
419
481
|
*/
|
|
420
|
-
|
|
482
|
+
Agent?: Agent
|
|
421
483
|
|
|
422
484
|
/**
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
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>
|
|
426
491
|
|
|
427
492
|
/**
|
|
428
|
-
*
|
|
493
|
+
* 偏移量,默认为0,最大为2000
|
|
429
494
|
*/
|
|
430
|
-
|
|
495
|
+
Offset?: number
|
|
431
496
|
}
|
|
432
497
|
|
|
433
498
|
/**
|
|
@@ -634,14 +699,14 @@ export interface DescribeFlowTemplatesRequest {
|
|
|
634
699
|
/**
|
|
635
700
|
* 这个参数跟下面的IsChannel参数配合使用。
|
|
636
701
|
IsChannel=false时,ApplicationId参数不起任何作用。
|
|
637
|
-
IsChannel=true时,ApplicationId
|
|
638
|
-
ApplicationId
|
|
702
|
+
IsChannel=true时,ApplicationId为空,查询所有第三方应用集成平台企业模板列表;ApplicationId不为空,查询指定应用下的模板列表
|
|
703
|
+
ApplicationId为空,查询所有应用下的模板列表
|
|
639
704
|
*/
|
|
640
705
|
ApplicationId?: string
|
|
641
706
|
|
|
642
707
|
/**
|
|
643
708
|
* 默认为false,查询SaaS模板库列表;
|
|
644
|
-
为true
|
|
709
|
+
为true,查询第三方应用集成平台企业模板库管理列表
|
|
645
710
|
*/
|
|
646
711
|
IsChannel?: boolean
|
|
647
712
|
|
|
@@ -824,6 +889,21 @@ export interface DescribeIntegrationEmployeesRequest {
|
|
|
824
889
|
Offset?: number
|
|
825
890
|
}
|
|
826
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
|
+
|
|
827
907
|
/**
|
|
828
908
|
* CreateFlow请求参数结构体
|
|
829
909
|
*/
|
|
@@ -912,6 +992,59 @@ false:有序签
|
|
|
912
992
|
CcInfos?: Array<CcInfo>
|
|
913
993
|
}
|
|
914
994
|
|
|
995
|
+
/**
|
|
996
|
+
* CreateSchemeUrl请求参数结构体
|
|
997
|
+
*/
|
|
998
|
+
export interface CreateSchemeUrlRequest {
|
|
999
|
+
/**
|
|
1000
|
+
* 调用方用户信息,userId 必填
|
|
1001
|
+
*/
|
|
1002
|
+
Operator: UserInfo
|
|
1003
|
+
|
|
1004
|
+
/**
|
|
1005
|
+
* 企业名称
|
|
1006
|
+
*/
|
|
1007
|
+
OrganizationName?: string
|
|
1008
|
+
|
|
1009
|
+
/**
|
|
1010
|
+
* 姓名,最大长度50个字符
|
|
1011
|
+
*/
|
|
1012
|
+
Name?: string
|
|
1013
|
+
|
|
1014
|
+
/**
|
|
1015
|
+
* 手机号,大陆手机号11位
|
|
1016
|
+
*/
|
|
1017
|
+
Mobile?: string
|
|
1018
|
+
|
|
1019
|
+
/**
|
|
1020
|
+
* 链接类型
|
|
1021
|
+
HTTP:跳转电子签小程序的http_url,
|
|
1022
|
+
APP:第三方APP或小程序跳转电子签小程序的path。
|
|
1023
|
+
默认为HTTP类型
|
|
1024
|
+
*/
|
|
1025
|
+
EndPoint?: string
|
|
1026
|
+
|
|
1027
|
+
/**
|
|
1028
|
+
* 签署流程编号 (PathType=1时必传)
|
|
1029
|
+
*/
|
|
1030
|
+
FlowId?: string
|
|
1031
|
+
|
|
1032
|
+
/**
|
|
1033
|
+
* 跳转页面 1: 小程序合同详情 2: 小程序合同列表页 0: 不传, 默认主页
|
|
1034
|
+
*/
|
|
1035
|
+
PathType?: number
|
|
1036
|
+
|
|
1037
|
+
/**
|
|
1038
|
+
* 是否自动回跳 true:是, false:否。该参数只针对"APP" 类型的签署链接有效
|
|
1039
|
+
*/
|
|
1040
|
+
AutoJumpBack?: boolean
|
|
1041
|
+
|
|
1042
|
+
/**
|
|
1043
|
+
* 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
|
1044
|
+
*/
|
|
1045
|
+
Agent?: Agent
|
|
1046
|
+
}
|
|
1047
|
+
|
|
915
1048
|
/**
|
|
916
1049
|
* 自动签开启、签署相关配置
|
|
917
1050
|
*/
|
|
@@ -1272,6 +1405,26 @@ HONGKONG_MACAO_AND_TAIWAN 港澳台居民居住证(格式同居民身份证)
|
|
|
1272
1405
|
IdCardNumber: string
|
|
1273
1406
|
}
|
|
1274
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
|
+
|
|
1275
1428
|
/**
|
|
1276
1429
|
* CreateSealPolicy返回参数结构体
|
|
1277
1430
|
*/
|
|
@@ -1409,23 +1562,18 @@ REJECT: 拒绝
|
|
|
1409
1562
|
}
|
|
1410
1563
|
|
|
1411
1564
|
/**
|
|
1412
|
-
*
|
|
1565
|
+
* CreateSchemeUrl返回参数结构体
|
|
1413
1566
|
*/
|
|
1414
|
-
export interface
|
|
1415
|
-
/**
|
|
1416
|
-
* 员工名
|
|
1417
|
-
*/
|
|
1418
|
-
DisplayName: string
|
|
1419
|
-
|
|
1567
|
+
export interface CreateSchemeUrlResponse {
|
|
1420
1568
|
/**
|
|
1421
|
-
*
|
|
1569
|
+
* 小程序链接地址
|
|
1422
1570
|
*/
|
|
1423
|
-
|
|
1571
|
+
SchemeUrl?: string
|
|
1424
1572
|
|
|
1425
1573
|
/**
|
|
1426
|
-
*
|
|
1574
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1427
1575
|
*/
|
|
1428
|
-
|
|
1576
|
+
RequestId?: string
|
|
1429
1577
|
}
|
|
1430
1578
|
|
|
1431
1579
|
/**
|
|
@@ -1552,7 +1700,7 @@ export interface DescribeFileUrlsRequest {
|
|
|
1552
1700
|
* 电子文档的控件填充信息。按照控件类型进行相应的填充。
|
|
1553
1701
|
|
|
1554
1702
|
【数据表格传参说明】
|
|
1555
|
-
当模板的 ComponentType='DYNAMIC_TABLE'
|
|
1703
|
+
当模板的 ComponentType='DYNAMIC_TABLE'时,FormField.ComponentValue需要传递json格式的字符串参数,用于确定表头&填充数据表格(支持内容的单元格合并)
|
|
1556
1704
|
输入示例1:
|
|
1557
1705
|
|
|
1558
1706
|
```
|
|
@@ -1765,7 +1913,7 @@ export interface Staff {
|
|
|
1765
1913
|
Email?: string
|
|
1766
1914
|
|
|
1767
1915
|
/**
|
|
1768
|
-
* 用户在第三方平台id
|
|
1916
|
+
* 用户在第三方平台id,如需在此接口提醒员工实名,该参数不传
|
|
1769
1917
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1770
1918
|
*/
|
|
1771
1919
|
OpenId?: string
|
|
@@ -1803,6 +1951,16 @@ export interface Staff {
|
|
|
1803
1951
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1804
1952
|
*/
|
|
1805
1953
|
QuiteJob?: number
|
|
1954
|
+
|
|
1955
|
+
/**
|
|
1956
|
+
* 员工离职交接人用户id
|
|
1957
|
+
*/
|
|
1958
|
+
ReceiveUserId?: string
|
|
1959
|
+
|
|
1960
|
+
/**
|
|
1961
|
+
* 员工离职交接人用户OpenId
|
|
1962
|
+
*/
|
|
1963
|
+
ReceiveOpenId?: string
|
|
1806
1964
|
}
|
|
1807
1965
|
|
|
1808
1966
|
/**
|
|
@@ -1932,13 +2090,18 @@ export interface GroupOrganization {
|
|
|
1932
2090
|
}
|
|
1933
2091
|
|
|
1934
2092
|
/**
|
|
1935
|
-
*
|
|
2093
|
+
* DeleteIntegrationRoleUsers返回参数结构体
|
|
1936
2094
|
*/
|
|
1937
|
-
export interface
|
|
2095
|
+
export interface DeleteIntegrationRoleUsersResponse {
|
|
1938
2096
|
/**
|
|
1939
|
-
*
|
|
2097
|
+
* 角色id
|
|
1940
2098
|
*/
|
|
1941
|
-
|
|
2099
|
+
RoleId?: string
|
|
2100
|
+
|
|
2101
|
+
/**
|
|
2102
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2103
|
+
*/
|
|
2104
|
+
RequestId?: string
|
|
1942
2105
|
}
|
|
1943
2106
|
|
|
1944
2107
|
/**
|
|
@@ -2012,6 +2175,21 @@ export interface RemindFlowRecords {
|
|
|
2012
2175
|
RemindMessage: string
|
|
2013
2176
|
}
|
|
2014
2177
|
|
|
2178
|
+
/**
|
|
2179
|
+
* CreatePreparedPersonalEsign返回参数结构体
|
|
2180
|
+
*/
|
|
2181
|
+
export interface CreatePreparedPersonalEsignResponse {
|
|
2182
|
+
/**
|
|
2183
|
+
* 导入生成的印章ID
|
|
2184
|
+
*/
|
|
2185
|
+
SealId?: string
|
|
2186
|
+
|
|
2187
|
+
/**
|
|
2188
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2189
|
+
*/
|
|
2190
|
+
RequestId?: string
|
|
2191
|
+
}
|
|
2192
|
+
|
|
2015
2193
|
/**
|
|
2016
2194
|
* DescribeOrganizationSeals返回参数结构体
|
|
2017
2195
|
*/
|
|
@@ -2045,26 +2223,41 @@ export interface DeleteIntegrationEmployeesRequest {
|
|
|
2045
2223
|
* 待移除员工的信息,userId和openId二选一,必填一个
|
|
2046
2224
|
*/
|
|
2047
2225
|
Employees: Array<Staff>
|
|
2226
|
+
|
|
2227
|
+
/**
|
|
2228
|
+
* 代理信息
|
|
2229
|
+
*/
|
|
2230
|
+
Agent?: Agent
|
|
2048
2231
|
}
|
|
2049
2232
|
|
|
2050
2233
|
/**
|
|
2051
|
-
*
|
|
2234
|
+
* 更新员工信息失败返回的数据信息
|
|
2052
2235
|
*/
|
|
2053
|
-
export interface
|
|
2236
|
+
export interface FailedUpdateStaffData {
|
|
2054
2237
|
/**
|
|
2055
|
-
*
|
|
2238
|
+
* 用户传入的名称
|
|
2056
2239
|
*/
|
|
2057
|
-
|
|
2240
|
+
DisplayName?: string
|
|
2058
2241
|
|
|
2059
2242
|
/**
|
|
2060
|
-
*
|
|
2243
|
+
* 用户传入的手机号
|
|
2061
2244
|
*/
|
|
2062
|
-
|
|
2245
|
+
Mobile?: string
|
|
2063
2246
|
|
|
2064
2247
|
/**
|
|
2065
|
-
*
|
|
2248
|
+
* 失败原因
|
|
2066
2249
|
*/
|
|
2067
|
-
|
|
2250
|
+
Reason?: string
|
|
2251
|
+
|
|
2252
|
+
/**
|
|
2253
|
+
* 用户Id
|
|
2254
|
+
*/
|
|
2255
|
+
UserId?: string
|
|
2256
|
+
|
|
2257
|
+
/**
|
|
2258
|
+
* 用户OpenId
|
|
2259
|
+
*/
|
|
2260
|
+
OpenId?: string
|
|
2068
2261
|
}
|
|
2069
2262
|
|
|
2070
2263
|
/**
|
|
@@ -2114,7 +2307,7 @@ export interface CreateIntegrationEmployeesResponse {
|
|
|
2114
2307
|
/**
|
|
2115
2308
|
* 创建员工的结果
|
|
2116
2309
|
*/
|
|
2117
|
-
CreateEmployeeResult
|
|
2310
|
+
CreateEmployeeResult?: CreateStaffResult
|
|
2118
2311
|
|
|
2119
2312
|
/**
|
|
2120
2313
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -2122,6 +2315,31 @@ export interface CreateIntegrationEmployeesResponse {
|
|
|
2122
2315
|
RequestId?: string
|
|
2123
2316
|
}
|
|
2124
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
|
+
|
|
2125
2343
|
/**
|
|
2126
2344
|
* CreateFlowSignUrl请求参数结构体
|
|
2127
2345
|
*/
|
|
@@ -2174,6 +2392,31 @@ export interface CreateReleaseFlowRequest {
|
|
|
2174
2392
|
ReleasedApprovers?: Array<ReleasedApprover>
|
|
2175
2393
|
}
|
|
2176
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
|
+
|
|
2177
2420
|
/**
|
|
2178
2421
|
* 此结构体(FlowDetailInfo)描述的是合同(流程)的详细信息
|
|
2179
2422
|
*/
|
|
@@ -2228,6 +2471,26 @@ export interface FlowDetailInfo {
|
|
|
2228
2471
|
FlowApproverInfos: Array<FlowApproverDetail>
|
|
2229
2472
|
}
|
|
2230
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
|
+
|
|
2231
2494
|
/**
|
|
2232
2495
|
* CreateFlowByFiles返回参数结构体
|
|
2233
2496
|
*/
|
|
@@ -2291,6 +2554,12 @@ export interface SuccessCreateStaffData {
|
|
|
2291
2554
|
* 员工在电子签平台的id
|
|
2292
2555
|
*/
|
|
2293
2556
|
UserId: string
|
|
2557
|
+
|
|
2558
|
+
/**
|
|
2559
|
+
* 提示,当创建已存在未实名用户时,改字段有值
|
|
2560
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2561
|
+
*/
|
|
2562
|
+
Note?: string
|
|
2294
2563
|
}
|
|
2295
2564
|
|
|
2296
2565
|
/**
|
|
@@ -2368,7 +2637,7 @@ export interface Recipient {
|
|
|
2368
2637
|
*/
|
|
2369
2638
|
export interface VerifyPdfRequest {
|
|
2370
2639
|
/**
|
|
2371
|
-
*
|
|
2640
|
+
* 流程ID
|
|
2372
2641
|
*/
|
|
2373
2642
|
FlowId: string
|
|
2374
2643
|
|
|
@@ -2378,6 +2647,23 @@ export interface VerifyPdfRequest {
|
|
|
2378
2647
|
Operator?: UserInfo
|
|
2379
2648
|
}
|
|
2380
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
|
+
|
|
2381
2667
|
/**
|
|
2382
2668
|
* 参与者信息
|
|
2383
2669
|
*/
|
|
@@ -2564,18 +2850,23 @@ export interface DescribeIntegrationMainOrganizationUserResponse {
|
|
|
2564
2850
|
}
|
|
2565
2851
|
|
|
2566
2852
|
/**
|
|
2567
|
-
*
|
|
2853
|
+
* 创建员工的失败数据
|
|
2568
2854
|
*/
|
|
2569
|
-
export interface
|
|
2855
|
+
export interface FailedCreateStaffData {
|
|
2570
2856
|
/**
|
|
2571
|
-
*
|
|
2857
|
+
* 员工名
|
|
2572
2858
|
*/
|
|
2573
|
-
|
|
2859
|
+
DisplayName: string
|
|
2574
2860
|
|
|
2575
2861
|
/**
|
|
2576
|
-
*
|
|
2862
|
+
* 员工手机号
|
|
2577
2863
|
*/
|
|
2578
|
-
|
|
2864
|
+
Mobile: string
|
|
2865
|
+
|
|
2866
|
+
/**
|
|
2867
|
+
* 失败原因
|
|
2868
|
+
*/
|
|
2869
|
+
Reason: string
|
|
2579
2870
|
}
|
|
2580
2871
|
|
|
2581
2872
|
/**
|
|
@@ -2747,6 +3038,41 @@ MobileCheck:手机号验证
|
|
|
2747
3038
|
CcNotifyType?: number
|
|
2748
3039
|
}
|
|
2749
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
|
+
|
|
2750
3076
|
/**
|
|
2751
3077
|
* CreatePrepareFlow返回参数结构体
|
|
2752
3078
|
*/
|
|
@@ -3096,7 +3422,7 @@ MULTI_LINE_TEXT - 多行文本控件,输入文本字符串;
|
|
|
3096
3422
|
CHECK_BOX - 勾选框控件,若选中填写ComponentValue 填写 true或者 false 字符串;
|
|
3097
3423
|
FILL_IMAGE - 图片控件,ComponentValue 填写图片的资源 ID;
|
|
3098
3424
|
DYNAMIC_TABLE - 动态表格控件;
|
|
3099
|
-
ATTACHMENT - 附件控件,ComponentValue
|
|
3425
|
+
ATTACHMENT - 附件控件,ComponentValue 填写附件图片的资源 ID列表,以逗号分割;
|
|
3100
3426
|
SELECTOR - 选择器控件,ComponentValue填写选择的字符串内容;
|
|
3101
3427
|
DATE - 日期控件;默认是格式化为xxxx年xx月xx日字符串;
|
|
3102
3428
|
DISTRICT - 省市区行政区划控件,ComponentValue填写省市区行政区划字符串内容;
|
|
@@ -3281,7 +3607,7 @@ KEYWORD 关键字,使用ComponentId指定关键字
|
|
|
3281
3607
|
ComponentDateFontSize?: number
|
|
3282
3608
|
|
|
3283
3609
|
/**
|
|
3284
|
-
*
|
|
3610
|
+
* 平台模板控件 id 标识
|
|
3285
3611
|
*/
|
|
3286
3612
|
ChannelComponentId?: string
|
|
3287
3613
|
|
|
@@ -3296,7 +3622,7 @@ KEYWORD 关键字,使用ComponentId指定关键字
|
|
|
3296
3622
|
OffsetY?: number
|
|
3297
3623
|
|
|
3298
3624
|
/**
|
|
3299
|
-
*
|
|
3625
|
+
* //子客控件来源。0-平台指定;1-用户自定义
|
|
3300
3626
|
*/
|
|
3301
3627
|
ChannelComponentSource?: number
|
|
3302
3628
|
|
|
@@ -3322,6 +3648,36 @@ KEYWORD 关键字,使用ComponentId指定关键字
|
|
|
3322
3648
|
KeywordIndexes?: Array<number>
|
|
3323
3649
|
}
|
|
3324
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
|
+
|
|
3325
3681
|
/**
|
|
3326
3682
|
* CreateFlowReminds请求参数结构体
|
|
3327
3683
|
*/
|
|
@@ -3337,6 +3693,26 @@ export interface CreateFlowRemindsRequest {
|
|
|
3337
3693
|
FlowIds: Array<string>
|
|
3338
3694
|
}
|
|
3339
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
|
+
|
|
3340
3716
|
/**
|
|
3341
3717
|
* DescribeFlowBriefs请求参数结构体
|
|
3342
3718
|
*/
|
|
@@ -3364,7 +3740,7 @@ export interface DeleteIntegrationEmployeesResponse {
|
|
|
3364
3740
|
/**
|
|
3365
3741
|
* 员工删除数据
|
|
3366
3742
|
*/
|
|
3367
|
-
DeleteEmployeeResult
|
|
3743
|
+
DeleteEmployeeResult?: DeleteStaffsResult
|
|
3368
3744
|
|
|
3369
3745
|
/**
|
|
3370
3746
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -3399,18 +3775,17 @@ export interface VerifyPdfResponse {
|
|
|
3399
3775
|
/**
|
|
3400
3776
|
* 验签结果,1-文件未被篡改,全部签名在腾讯电子签完成; 2-文件未被篡改,部分签名在腾讯电子签完成;3-文件被篡改;4-异常:文件内没有签名域;5-异常:文件签名格式错误
|
|
3401
3777
|
*/
|
|
3402
|
-
VerifyResult
|
|
3778
|
+
VerifyResult?: number
|
|
3403
3779
|
|
|
3404
3780
|
/**
|
|
3405
|
-
|
|
3406
|
-
|
|
3407
|
-
|
|
3408
|
-
PdfVerifyResults: Array<PdfVerifyResult>
|
|
3781
|
+
* 验签结果详情,内部状态1-验签成功,在电子签签署;2-验签成功,在其他平台签署;3-验签失败;4-pdf文件没有签名域;5-文件签名格式错误
|
|
3782
|
+
*/
|
|
3783
|
+
PdfVerifyResults?: Array<PdfVerifyResult>
|
|
3409
3784
|
|
|
3410
3785
|
/**
|
|
3411
3786
|
* 验签序列号
|
|
3412
3787
|
*/
|
|
3413
|
-
VerifySerialNo
|
|
3788
|
+
VerifySerialNo?: string
|
|
3414
3789
|
|
|
3415
3790
|
/**
|
|
3416
3791
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|