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.
- package/CHANGELOG.md +395 -0
- package/SERVICE_CHANGELOG.md +491 -249
- package/package.json +1 -1
- package/products.md +41 -41
- package/src/services/ess/v20201111/ess_client.ts +59 -6
- package/src/services/ess/v20201111/ess_models.ts +366 -51
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +18 -2
- package/tencentcloud/services/ess/v20201111/ess_client.js +24 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +318 -50
|
@@ -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;
|
|
@@ -20,6 +20,23 @@ export interface DescribeFlowEvidenceReportRequest {
|
|
|
20
20
|
*/
|
|
21
21
|
ReportId: string;
|
|
22
22
|
}
|
|
23
|
+
/**
|
|
24
|
+
* UpdateIntegrationEmployees返回参数结构体
|
|
25
|
+
*/
|
|
26
|
+
export interface UpdateIntegrationEmployeesResponse {
|
|
27
|
+
/**
|
|
28
|
+
* 更新成功的用户列表
|
|
29
|
+
*/
|
|
30
|
+
SuccessEmployeeData?: Array<SuccessUpdateStaffData>;
|
|
31
|
+
/**
|
|
32
|
+
* 更新失败的用户列表
|
|
33
|
+
*/
|
|
34
|
+
FailedEmployeeData?: Array<FailedUpdateStaffData>;
|
|
35
|
+
/**
|
|
36
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
37
|
+
*/
|
|
38
|
+
RequestId?: string;
|
|
39
|
+
}
|
|
23
40
|
/**
|
|
24
41
|
* 集成版员工部门信息
|
|
25
42
|
*/
|
|
@@ -258,6 +275,35 @@ export interface CreateIntegrationEmployeesRequest {
|
|
|
258
275
|
*/
|
|
259
276
|
Agent?: Agent;
|
|
260
277
|
}
|
|
278
|
+
/**
|
|
279
|
+
* CreateConvertTaskApi请求参数结构体
|
|
280
|
+
*/
|
|
281
|
+
export interface CreateConvertTaskApiRequest {
|
|
282
|
+
/**
|
|
283
|
+
* 资源类型 取值范围doc,docx,html,xls,xlsx之一
|
|
284
|
+
*/
|
|
285
|
+
ResourceType: string;
|
|
286
|
+
/**
|
|
287
|
+
* 资源名称,长度限制为256字符
|
|
288
|
+
*/
|
|
289
|
+
ResourceName: string;
|
|
290
|
+
/**
|
|
291
|
+
* 资源Id,通过UploadFiles获取
|
|
292
|
+
*/
|
|
293
|
+
ResourceId: string;
|
|
294
|
+
/**
|
|
295
|
+
* 调用方用户信息,userId 必填
|
|
296
|
+
*/
|
|
297
|
+
Operator?: UserInfo;
|
|
298
|
+
/**
|
|
299
|
+
* 应用号信息
|
|
300
|
+
*/
|
|
301
|
+
Agent?: Agent;
|
|
302
|
+
/**
|
|
303
|
+
* 暂未开放
|
|
304
|
+
*/
|
|
305
|
+
Organization?: OrganizationInfo;
|
|
306
|
+
}
|
|
261
307
|
/**
|
|
262
308
|
* CreateFlowEvidenceReport请求参数结构体
|
|
263
309
|
*/
|
|
@@ -325,33 +371,41 @@ export interface FlowApproverUrlInfo {
|
|
|
325
371
|
ApproverType?: number;
|
|
326
372
|
}
|
|
327
373
|
/**
|
|
328
|
-
*
|
|
374
|
+
* 授权用户
|
|
329
375
|
*/
|
|
330
|
-
export interface
|
|
331
|
-
/**
|
|
332
|
-
* 资源类型 取值范围doc,docx,html,xls,xlsx之一
|
|
333
|
-
*/
|
|
334
|
-
ResourceType: string;
|
|
376
|
+
export interface AuthorizedUser {
|
|
335
377
|
/**
|
|
336
|
-
*
|
|
378
|
+
* 用户id
|
|
337
379
|
*/
|
|
338
|
-
|
|
380
|
+
UserId: string;
|
|
381
|
+
}
|
|
382
|
+
/**
|
|
383
|
+
* DescribeIntegrationRoles请求参数结构体
|
|
384
|
+
*/
|
|
385
|
+
export interface DescribeIntegrationRolesRequest {
|
|
339
386
|
/**
|
|
340
|
-
*
|
|
387
|
+
* 操作人信息
|
|
341
388
|
*/
|
|
342
|
-
|
|
389
|
+
Operator: UserInfo;
|
|
343
390
|
/**
|
|
344
|
-
*
|
|
391
|
+
* 返回最大数量,最大为200
|
|
345
392
|
*/
|
|
346
|
-
|
|
393
|
+
Limit: number;
|
|
347
394
|
/**
|
|
348
|
-
*
|
|
395
|
+
* 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
|
349
396
|
*/
|
|
350
397
|
Agent?: Agent;
|
|
351
398
|
/**
|
|
352
|
-
|
|
399
|
+
* 查询的关键字段:
|
|
400
|
+
Key:"RoleType",Vales:["1"]查询系统角色,Values:["2]查询自定义角色
|
|
401
|
+
Key:"RoleStatus",Values:["1"]查询启用角色,Values:["2"]查询禁用角色
|
|
402
|
+
Key:"IsGroupRole",Values:["0"],查询非集团角色,Values:["1"]表示查询集团角色
|
|
403
|
+
*/
|
|
404
|
+
Filters?: Array<Filter>;
|
|
405
|
+
/**
|
|
406
|
+
* 偏移量,默认为0,最大为2000
|
|
353
407
|
*/
|
|
354
|
-
|
|
408
|
+
Offset?: number;
|
|
355
409
|
}
|
|
356
410
|
/**
|
|
357
411
|
* CreateFlowReminds返回参数结构体
|
|
@@ -525,13 +579,13 @@ export interface DescribeFlowTemplatesRequest {
|
|
|
525
579
|
/**
|
|
526
580
|
* 这个参数跟下面的IsChannel参数配合使用。
|
|
527
581
|
IsChannel=false时,ApplicationId参数不起任何作用。
|
|
528
|
-
IsChannel=true时,ApplicationId
|
|
529
|
-
ApplicationId
|
|
582
|
+
IsChannel=true时,ApplicationId为空,查询所有第三方应用集成平台企业模板列表;ApplicationId不为空,查询指定应用下的模板列表
|
|
583
|
+
ApplicationId为空,查询所有应用下的模板列表
|
|
530
584
|
*/
|
|
531
585
|
ApplicationId?: string;
|
|
532
586
|
/**
|
|
533
587
|
* 默认为false,查询SaaS模板库列表;
|
|
534
|
-
为true
|
|
588
|
+
为true,查询第三方应用集成平台企业模板库管理列表
|
|
535
589
|
*/
|
|
536
590
|
IsChannel?: boolean;
|
|
537
591
|
/**
|
|
@@ -563,6 +617,19 @@ export interface DescribeFlowEvidenceReportResponse {
|
|
|
563
617
|
*/
|
|
564
618
|
RequestId?: string;
|
|
565
619
|
}
|
|
620
|
+
/**
|
|
621
|
+
* 应用回调信息
|
|
622
|
+
*/
|
|
623
|
+
export interface CallbackInfo {
|
|
624
|
+
/**
|
|
625
|
+
* 回调url
|
|
626
|
+
*/
|
|
627
|
+
CallbackUrl: string;
|
|
628
|
+
/**
|
|
629
|
+
* 回调加密token
|
|
630
|
+
*/
|
|
631
|
+
Token: string;
|
|
632
|
+
}
|
|
566
633
|
/**
|
|
567
634
|
* 二期接口返回的模板的信息结构
|
|
568
635
|
*/
|
|
@@ -683,6 +750,19 @@ export interface DescribeIntegrationEmployeesRequest {
|
|
|
683
750
|
*/
|
|
684
751
|
Offset?: number;
|
|
685
752
|
}
|
|
753
|
+
/**
|
|
754
|
+
* CreateIntegrationUserRoles返回参数结构体
|
|
755
|
+
*/
|
|
756
|
+
export interface CreateIntegrationUserRolesResponse {
|
|
757
|
+
/**
|
|
758
|
+
* 绑定角色失败列表信息
|
|
759
|
+
*/
|
|
760
|
+
FailedCreateRoleData?: Array<FailedCreateRoleData>;
|
|
761
|
+
/**
|
|
762
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
763
|
+
*/
|
|
764
|
+
RequestId?: string;
|
|
765
|
+
}
|
|
686
766
|
/**
|
|
687
767
|
* CreateFlow请求参数结构体
|
|
688
768
|
*/
|
|
@@ -1103,6 +1183,23 @@ export interface UserThreeFactor {
|
|
|
1103
1183
|
*/
|
|
1104
1184
|
IdCardNumber: string;
|
|
1105
1185
|
}
|
|
1186
|
+
/**
|
|
1187
|
+
* 一码多扫签署二维码对象
|
|
1188
|
+
*/
|
|
1189
|
+
export interface SignQrCode {
|
|
1190
|
+
/**
|
|
1191
|
+
* 二维码id
|
|
1192
|
+
*/
|
|
1193
|
+
QrCodeId: string;
|
|
1194
|
+
/**
|
|
1195
|
+
* 二维码url
|
|
1196
|
+
*/
|
|
1197
|
+
QrCodeUrl: string;
|
|
1198
|
+
/**
|
|
1199
|
+
* 二维码过期时间
|
|
1200
|
+
*/
|
|
1201
|
+
ExpiredTime: number;
|
|
1202
|
+
}
|
|
1106
1203
|
/**
|
|
1107
1204
|
* CreateSealPolicy返回参数结构体
|
|
1108
1205
|
*/
|
|
@@ -1220,21 +1317,17 @@ export interface CreateFlowSignReviewRequest {
|
|
|
1220
1317
|
Agent?: Agent;
|
|
1221
1318
|
}
|
|
1222
1319
|
/**
|
|
1223
|
-
*
|
|
1320
|
+
* CreateSchemeUrl返回参数结构体
|
|
1224
1321
|
*/
|
|
1225
|
-
export interface
|
|
1226
|
-
/**
|
|
1227
|
-
* 员工名
|
|
1228
|
-
*/
|
|
1229
|
-
DisplayName: string;
|
|
1322
|
+
export interface CreateSchemeUrlResponse {
|
|
1230
1323
|
/**
|
|
1231
|
-
*
|
|
1324
|
+
* 小程序链接地址
|
|
1232
1325
|
*/
|
|
1233
|
-
|
|
1326
|
+
SchemeUrl?: string;
|
|
1234
1327
|
/**
|
|
1235
|
-
*
|
|
1328
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1236
1329
|
*/
|
|
1237
|
-
|
|
1330
|
+
RequestId?: string;
|
|
1238
1331
|
}
|
|
1239
1332
|
/**
|
|
1240
1333
|
* CreateUserAutoSignEnableUrl返回参数结构体
|
|
@@ -1340,7 +1433,7 @@ export interface DescribeFileUrlsRequest {
|
|
|
1340
1433
|
* 电子文档的控件填充信息。按照控件类型进行相应的填充。
|
|
1341
1434
|
|
|
1342
1435
|
【数据表格传参说明】
|
|
1343
|
-
当模板的 ComponentType='DYNAMIC_TABLE'
|
|
1436
|
+
当模板的 ComponentType='DYNAMIC_TABLE'时,FormField.ComponentValue需要传递json格式的字符串参数,用于确定表头&填充数据表格(支持内容的单元格合并)
|
|
1344
1437
|
输入示例1:
|
|
1345
1438
|
|
|
1346
1439
|
```
|
|
@@ -1686,13 +1779,17 @@ export interface GroupOrganization {
|
|
|
1686
1779
|
FlowEngineEnable?: boolean;
|
|
1687
1780
|
}
|
|
1688
1781
|
/**
|
|
1689
|
-
*
|
|
1782
|
+
* DeleteIntegrationRoleUsers返回参数结构体
|
|
1690
1783
|
*/
|
|
1691
|
-
export interface
|
|
1784
|
+
export interface DeleteIntegrationRoleUsersResponse {
|
|
1692
1785
|
/**
|
|
1693
|
-
*
|
|
1786
|
+
* 角色id
|
|
1694
1787
|
*/
|
|
1695
|
-
|
|
1788
|
+
RoleId?: string;
|
|
1789
|
+
/**
|
|
1790
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1791
|
+
*/
|
|
1792
|
+
RequestId?: string;
|
|
1696
1793
|
}
|
|
1697
1794
|
/**
|
|
1698
1795
|
* CreateDocument请求参数结构体
|
|
@@ -1801,21 +1898,29 @@ export interface DeleteIntegrationEmployeesRequest {
|
|
|
1801
1898
|
Agent?: Agent;
|
|
1802
1899
|
}
|
|
1803
1900
|
/**
|
|
1804
|
-
*
|
|
1901
|
+
* 更新员工信息失败返回的数据信息
|
|
1805
1902
|
*/
|
|
1806
|
-
export interface
|
|
1903
|
+
export interface FailedUpdateStaffData {
|
|
1807
1904
|
/**
|
|
1808
|
-
*
|
|
1905
|
+
* 用户传入的名称
|
|
1809
1906
|
*/
|
|
1810
|
-
|
|
1907
|
+
DisplayName?: string;
|
|
1811
1908
|
/**
|
|
1812
|
-
*
|
|
1909
|
+
* 用户传入的手机号
|
|
1813
1910
|
*/
|
|
1814
|
-
|
|
1911
|
+
Mobile?: string;
|
|
1815
1912
|
/**
|
|
1816
|
-
*
|
|
1913
|
+
* 失败原因
|
|
1817
1914
|
*/
|
|
1818
|
-
|
|
1915
|
+
Reason?: string;
|
|
1916
|
+
/**
|
|
1917
|
+
* 用户Id
|
|
1918
|
+
*/
|
|
1919
|
+
UserId?: string;
|
|
1920
|
+
/**
|
|
1921
|
+
* 用户OpenId
|
|
1922
|
+
*/
|
|
1923
|
+
OpenId?: string;
|
|
1819
1924
|
}
|
|
1820
1925
|
/**
|
|
1821
1926
|
* GetTaskResultApi请求参数结构体
|
|
@@ -1864,6 +1969,27 @@ export interface CreateIntegrationEmployeesResponse {
|
|
|
1864
1969
|
*/
|
|
1865
1970
|
RequestId?: string;
|
|
1866
1971
|
}
|
|
1972
|
+
/**
|
|
1973
|
+
* DeleteIntegrationRoleUsers请求参数结构体
|
|
1974
|
+
*/
|
|
1975
|
+
export interface DeleteIntegrationRoleUsersRequest {
|
|
1976
|
+
/**
|
|
1977
|
+
* 操作人
|
|
1978
|
+
*/
|
|
1979
|
+
Operator: UserInfo;
|
|
1980
|
+
/**
|
|
1981
|
+
* 角色id
|
|
1982
|
+
*/
|
|
1983
|
+
RoleId: string;
|
|
1984
|
+
/**
|
|
1985
|
+
* 用户信息
|
|
1986
|
+
*/
|
|
1987
|
+
Users: Array<UserInfo>;
|
|
1988
|
+
/**
|
|
1989
|
+
* 代理信息
|
|
1990
|
+
*/
|
|
1991
|
+
Agent?: Agent;
|
|
1992
|
+
}
|
|
1867
1993
|
/**
|
|
1868
1994
|
* CreateFlowSignUrl请求参数结构体
|
|
1869
1995
|
*/
|
|
@@ -1908,6 +2034,27 @@ export interface CreateReleaseFlowRequest {
|
|
|
1908
2034
|
*/
|
|
1909
2035
|
ReleasedApprovers?: Array<ReleasedApprover>;
|
|
1910
2036
|
}
|
|
2037
|
+
/**
|
|
2038
|
+
* CreateIntegrationUserRoles请求参数结构体
|
|
2039
|
+
*/
|
|
2040
|
+
export interface CreateIntegrationUserRolesRequest {
|
|
2041
|
+
/**
|
|
2042
|
+
* 操作人信息
|
|
2043
|
+
*/
|
|
2044
|
+
Operator: UserInfo;
|
|
2045
|
+
/**
|
|
2046
|
+
* 绑定角色的用户id列表
|
|
2047
|
+
*/
|
|
2048
|
+
UserIds: Array<string>;
|
|
2049
|
+
/**
|
|
2050
|
+
* 绑定角色的角色id列表
|
|
2051
|
+
*/
|
|
2052
|
+
RoleIds: Array<string>;
|
|
2053
|
+
/**
|
|
2054
|
+
* 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
|
2055
|
+
*/
|
|
2056
|
+
Agent?: Agent;
|
|
2057
|
+
}
|
|
1911
2058
|
/**
|
|
1912
2059
|
* 此结构体(FlowDetailInfo)描述的是合同(流程)的详细信息
|
|
1913
2060
|
*/
|
|
@@ -1954,6 +2101,23 @@ export interface FlowDetailInfo {
|
|
|
1954
2101
|
*/
|
|
1955
2102
|
FlowApproverInfos: Array<FlowApproverDetail>;
|
|
1956
2103
|
}
|
|
2104
|
+
/**
|
|
2105
|
+
* 更新员工信息成功返回的数据信息
|
|
2106
|
+
*/
|
|
2107
|
+
export interface SuccessUpdateStaffData {
|
|
2108
|
+
/**
|
|
2109
|
+
* 传入的用户名称
|
|
2110
|
+
*/
|
|
2111
|
+
DisplayName?: string;
|
|
2112
|
+
/**
|
|
2113
|
+
* 传入的手机号
|
|
2114
|
+
*/
|
|
2115
|
+
Mobile?: string;
|
|
2116
|
+
/**
|
|
2117
|
+
* 用户Id
|
|
2118
|
+
*/
|
|
2119
|
+
UserId?: string;
|
|
2120
|
+
}
|
|
1957
2121
|
/**
|
|
1958
2122
|
* CreateFlowByFiles返回参数结构体
|
|
1959
2123
|
*/
|
|
@@ -2085,6 +2249,21 @@ export interface VerifyPdfRequest {
|
|
|
2085
2249
|
*/
|
|
2086
2250
|
Operator?: UserInfo;
|
|
2087
2251
|
}
|
|
2252
|
+
/**
|
|
2253
|
+
* 绑定角色失败信息
|
|
2254
|
+
*/
|
|
2255
|
+
export interface FailedCreateRoleData {
|
|
2256
|
+
/**
|
|
2257
|
+
* 用户userId
|
|
2258
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2259
|
+
*/
|
|
2260
|
+
UserId?: string;
|
|
2261
|
+
/**
|
|
2262
|
+
* 角色id列表
|
|
2263
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2264
|
+
*/
|
|
2265
|
+
RoleIds?: Array<string>;
|
|
2266
|
+
}
|
|
2088
2267
|
/**
|
|
2089
2268
|
* 参与者信息
|
|
2090
2269
|
*/
|
|
@@ -2243,17 +2422,21 @@ export interface DescribeIntegrationMainOrganizationUserResponse {
|
|
|
2243
2422
|
RequestId?: string;
|
|
2244
2423
|
}
|
|
2245
2424
|
/**
|
|
2246
|
-
*
|
|
2425
|
+
* 创建员工的失败数据
|
|
2247
2426
|
*/
|
|
2248
|
-
export interface
|
|
2427
|
+
export interface FailedCreateStaffData {
|
|
2249
2428
|
/**
|
|
2250
|
-
*
|
|
2429
|
+
* 员工名
|
|
2251
2430
|
*/
|
|
2252
|
-
|
|
2431
|
+
DisplayName: string;
|
|
2253
2432
|
/**
|
|
2254
|
-
*
|
|
2433
|
+
* 员工手机号
|
|
2255
2434
|
*/
|
|
2256
|
-
|
|
2435
|
+
Mobile: string;
|
|
2436
|
+
/**
|
|
2437
|
+
* 失败原因
|
|
2438
|
+
*/
|
|
2439
|
+
Reason: string;
|
|
2257
2440
|
}
|
|
2258
2441
|
/**
|
|
2259
2442
|
* 指定签署人限制项
|
|
@@ -2396,6 +2579,36 @@ export interface CreateFlowByFilesRequest {
|
|
|
2396
2579
|
*/
|
|
2397
2580
|
CcNotifyType?: number;
|
|
2398
2581
|
}
|
|
2582
|
+
/**
|
|
2583
|
+
* 企业角色数据信息
|
|
2584
|
+
*/
|
|
2585
|
+
export interface IntegrateRole {
|
|
2586
|
+
/**
|
|
2587
|
+
* 角色id
|
|
2588
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2589
|
+
*/
|
|
2590
|
+
RoleId?: string;
|
|
2591
|
+
/**
|
|
2592
|
+
* 角色名
|
|
2593
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2594
|
+
*/
|
|
2595
|
+
RoleName?: string;
|
|
2596
|
+
/**
|
|
2597
|
+
* 角色类型:1-系统角色,2-自定义角色
|
|
2598
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2599
|
+
*/
|
|
2600
|
+
RoleStatus?: number;
|
|
2601
|
+
/**
|
|
2602
|
+
* 是否是集团角色
|
|
2603
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2604
|
+
*/
|
|
2605
|
+
IsGroupRole?: boolean;
|
|
2606
|
+
/**
|
|
2607
|
+
* 管辖的子企业列表
|
|
2608
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2609
|
+
*/
|
|
2610
|
+
SubOrgIdList?: Array<string>;
|
|
2611
|
+
}
|
|
2399
2612
|
/**
|
|
2400
2613
|
* CreatePrepareFlow返回参数结构体
|
|
2401
2614
|
*/
|
|
@@ -2466,7 +2679,20 @@ export interface CancelMultiFlowSignQRCodeRequest {
|
|
|
2466
2679
|
/**
|
|
2467
2680
|
* ModifyApplicationCallbackInfo请求参数结构体
|
|
2468
2681
|
*/
|
|
2469
|
-
export
|
|
2682
|
+
export interface ModifyApplicationCallbackInfoRequest {
|
|
2683
|
+
/**
|
|
2684
|
+
* 调用方用户信息,userId 必填
|
|
2685
|
+
*/
|
|
2686
|
+
Operator: UserInfo;
|
|
2687
|
+
/**
|
|
2688
|
+
* 操作类型:1-新增,2-删除
|
|
2689
|
+
*/
|
|
2690
|
+
OperateType: number;
|
|
2691
|
+
/**
|
|
2692
|
+
* 回调信息
|
|
2693
|
+
*/
|
|
2694
|
+
CallbackInfo: CallbackInfo;
|
|
2695
|
+
}
|
|
2470
2696
|
/**
|
|
2471
2697
|
* 主企业员工账号信息
|
|
2472
2698
|
*/
|
|
@@ -2863,7 +3089,7 @@ export interface Component {
|
|
|
2863
3089
|
*/
|
|
2864
3090
|
ComponentDateFontSize?: number;
|
|
2865
3091
|
/**
|
|
2866
|
-
*
|
|
3092
|
+
* 平台模板控件 id 标识
|
|
2867
3093
|
*/
|
|
2868
3094
|
ChannelComponentId?: string;
|
|
2869
3095
|
/**
|
|
@@ -2875,7 +3101,7 @@ export interface Component {
|
|
|
2875
3101
|
*/
|
|
2876
3102
|
OffsetY?: number;
|
|
2877
3103
|
/**
|
|
2878
|
-
*
|
|
3104
|
+
* //子客控件来源。0-平台指定;1-用户自定义
|
|
2879
3105
|
*/
|
|
2880
3106
|
ChannelComponentSource?: number;
|
|
2881
3107
|
/**
|
|
@@ -2896,6 +3122,31 @@ export interface Component {
|
|
|
2896
3122
|
*/
|
|
2897
3123
|
KeywordIndexes?: Array<number>;
|
|
2898
3124
|
}
|
|
3125
|
+
/**
|
|
3126
|
+
* DescribeIntegrationRoles返回参数结构体
|
|
3127
|
+
*/
|
|
3128
|
+
export interface DescribeIntegrationRolesResponse {
|
|
3129
|
+
/**
|
|
3130
|
+
* 偏移量,默认为0,最大为2000
|
|
3131
|
+
*/
|
|
3132
|
+
Offset?: number;
|
|
3133
|
+
/**
|
|
3134
|
+
* 返回最大数量,最大为200
|
|
3135
|
+
*/
|
|
3136
|
+
Limit?: number;
|
|
3137
|
+
/**
|
|
3138
|
+
* 符合查询条件的总的角色数
|
|
3139
|
+
*/
|
|
3140
|
+
TotalCount?: number;
|
|
3141
|
+
/**
|
|
3142
|
+
* 企业角色信息列表
|
|
3143
|
+
*/
|
|
3144
|
+
IntegrateRoles?: Array<IntegrateRole>;
|
|
3145
|
+
/**
|
|
3146
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3147
|
+
*/
|
|
3148
|
+
RequestId?: string;
|
|
3149
|
+
}
|
|
2899
3150
|
/**
|
|
2900
3151
|
* CreateFlowReminds请求参数结构体
|
|
2901
3152
|
*/
|
|
@@ -2909,6 +3160,23 @@ export interface CreateFlowRemindsRequest {
|
|
|
2909
3160
|
*/
|
|
2910
3161
|
FlowIds: Array<string>;
|
|
2911
3162
|
}
|
|
3163
|
+
/**
|
|
3164
|
+
* UpdateIntegrationEmployees请求参数结构体
|
|
3165
|
+
*/
|
|
3166
|
+
export interface UpdateIntegrationEmployeesRequest {
|
|
3167
|
+
/**
|
|
3168
|
+
* 操作人信息
|
|
3169
|
+
*/
|
|
3170
|
+
Operator: UserInfo;
|
|
3171
|
+
/**
|
|
3172
|
+
* 代理信息
|
|
3173
|
+
*/
|
|
3174
|
+
Agent: Agent;
|
|
3175
|
+
/**
|
|
3176
|
+
* 员工信息
|
|
3177
|
+
*/
|
|
3178
|
+
Employees: Array<Staff>;
|
|
3179
|
+
}
|
|
2912
3180
|
/**
|
|
2913
3181
|
* DescribeFlowBriefs请求参数结构体
|
|
2914
3182
|
*/
|