tencentcloud-sdk-nodejs-ess 4.0.616 → 4.0.618
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 +353 -0
- package/SERVICE_CHANGELOG.md +398 -196
- package/package.json +1 -1
- package/products.md +21 -21
- package/src/services/ess/v20201111/ess_client.ts +110 -49
- package/src/services/ess/v20201111/ess_models.ts +292 -61
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +46 -26
- package/tencentcloud/services/ess/v20201111/ess_client.js +60 -30
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +254 -57
|
@@ -15,6 +15,16 @@
|
|
|
15
15
|
* under the License.
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
|
+
/**
|
|
19
|
+
* ModifyIntegrationDepartment返回参数结构体
|
|
20
|
+
*/
|
|
21
|
+
export interface ModifyIntegrationDepartmentResponse {
|
|
22
|
+
/**
|
|
23
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
24
|
+
*/
|
|
25
|
+
RequestId?: string
|
|
26
|
+
}
|
|
27
|
+
|
|
18
28
|
/**
|
|
19
29
|
* CancelFlow返回参数结构体
|
|
20
30
|
*/
|
|
@@ -157,6 +167,21 @@ true:做透明化处理和颜色增强。
|
|
|
157
167
|
FileId?: string
|
|
158
168
|
}
|
|
159
169
|
|
|
170
|
+
/**
|
|
171
|
+
* DescribeIntegrationDepartments返回参数结构体
|
|
172
|
+
*/
|
|
173
|
+
export interface DescribeIntegrationDepartmentsResponse {
|
|
174
|
+
/**
|
|
175
|
+
* 部门列表
|
|
176
|
+
*/
|
|
177
|
+
Departments?: Array<IntegrationDepartment>
|
|
178
|
+
|
|
179
|
+
/**
|
|
180
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
181
|
+
*/
|
|
182
|
+
RequestId?: string
|
|
183
|
+
}
|
|
184
|
+
|
|
160
185
|
/**
|
|
161
186
|
* 模板中文件的信息结构
|
|
162
187
|
*/
|
|
@@ -365,6 +390,16 @@ export interface DisableUserAutoSignResponse {
|
|
|
365
390
|
RequestId?: string
|
|
366
391
|
}
|
|
367
392
|
|
|
393
|
+
/**
|
|
394
|
+
* CancelUserAutoSignEnableUrl返回参数结构体
|
|
395
|
+
*/
|
|
396
|
+
export interface CancelUserAutoSignEnableUrlResponse {
|
|
397
|
+
/**
|
|
398
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
399
|
+
*/
|
|
400
|
+
RequestId?: string
|
|
401
|
+
}
|
|
402
|
+
|
|
368
403
|
/**
|
|
369
404
|
* BindEmployeeUserIdWithClientOpenId返回参数结构体
|
|
370
405
|
*/
|
|
@@ -401,38 +436,36 @@ export interface CreateIntegrationEmployeesRequest {
|
|
|
401
436
|
}
|
|
402
437
|
|
|
403
438
|
/**
|
|
404
|
-
*
|
|
439
|
+
* DescribeIntegrationRoles请求参数结构体
|
|
405
440
|
*/
|
|
406
|
-
export interface
|
|
407
|
-
/**
|
|
408
|
-
* 资源类型 取值范围doc,docx,html,xls,xlsx之一
|
|
409
|
-
*/
|
|
410
|
-
ResourceType: string
|
|
411
|
-
|
|
441
|
+
export interface DescribeIntegrationRolesRequest {
|
|
412
442
|
/**
|
|
413
|
-
*
|
|
443
|
+
* 操作人信息
|
|
414
444
|
*/
|
|
415
|
-
|
|
445
|
+
Operator: UserInfo
|
|
416
446
|
|
|
417
447
|
/**
|
|
418
|
-
*
|
|
448
|
+
* 返回最大数量,最大为200
|
|
419
449
|
*/
|
|
420
|
-
|
|
450
|
+
Limit: number
|
|
421
451
|
|
|
422
452
|
/**
|
|
423
|
-
*
|
|
453
|
+
* 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
|
424
454
|
*/
|
|
425
|
-
|
|
455
|
+
Agent?: Agent
|
|
426
456
|
|
|
427
457
|
/**
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
458
|
+
* 查询的关键字段:
|
|
459
|
+
Key:"RoleType",Values:["1"]查询系统角色,Values:["2"]查询自定义角色
|
|
460
|
+
Key:"RoleStatus",Values:["1"]查询启用角色,Values:["2"]查询禁用角色
|
|
461
|
+
Key:"IsGroupRole",Values:["0"],查询非集团角色,Values:["1"]表示查询集团角色
|
|
462
|
+
*/
|
|
463
|
+
Filters?: Array<Filter>
|
|
431
464
|
|
|
432
465
|
/**
|
|
433
|
-
*
|
|
466
|
+
* 偏移量,默认为0,最大为2000
|
|
434
467
|
*/
|
|
435
|
-
|
|
468
|
+
Offset?: number
|
|
436
469
|
}
|
|
437
470
|
|
|
438
471
|
/**
|
|
@@ -528,36 +561,38 @@ export interface AuthorizedUser {
|
|
|
528
561
|
}
|
|
529
562
|
|
|
530
563
|
/**
|
|
531
|
-
*
|
|
564
|
+
* CreateConvertTaskApi请求参数结构体
|
|
532
565
|
*/
|
|
533
|
-
export interface
|
|
566
|
+
export interface CreateConvertTaskApiRequest {
|
|
534
567
|
/**
|
|
535
|
-
*
|
|
568
|
+
* 资源类型 支持doc,docx,html,xls,xlsx,jpg,jpeg,png,bmp文件类型
|
|
536
569
|
*/
|
|
537
|
-
|
|
570
|
+
ResourceType: string
|
|
538
571
|
|
|
539
572
|
/**
|
|
540
|
-
*
|
|
573
|
+
* 资源名称,长度限制为256字符
|
|
541
574
|
*/
|
|
542
|
-
|
|
575
|
+
ResourceName: string
|
|
543
576
|
|
|
544
577
|
/**
|
|
545
|
-
*
|
|
578
|
+
* 资源Id,通过UploadFiles获取
|
|
546
579
|
*/
|
|
547
|
-
|
|
580
|
+
ResourceId: string
|
|
548
581
|
|
|
549
582
|
/**
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
Key:"IsGroupRole",Values:["0"],查询非集团角色,Values:["1"]表示查询集团角色
|
|
554
|
-
*/
|
|
555
|
-
Filters?: Array<Filter>
|
|
583
|
+
* 调用方用户信息,userId 必填
|
|
584
|
+
*/
|
|
585
|
+
Operator?: UserInfo
|
|
556
586
|
|
|
557
587
|
/**
|
|
558
|
-
*
|
|
588
|
+
* 应用号信息
|
|
559
589
|
*/
|
|
560
|
-
|
|
590
|
+
Agent?: Agent
|
|
591
|
+
|
|
592
|
+
/**
|
|
593
|
+
* 暂未开放
|
|
594
|
+
*/
|
|
595
|
+
Organization?: OrganizationInfo
|
|
561
596
|
}
|
|
562
597
|
|
|
563
598
|
/**
|
|
@@ -1161,6 +1196,16 @@ APP:第三方APP或小程序跳转电子签小程序的path。
|
|
|
1161
1196
|
Agent?: Agent
|
|
1162
1197
|
}
|
|
1163
1198
|
|
|
1199
|
+
/**
|
|
1200
|
+
* DeleteIntegrationDepartment返回参数结构体
|
|
1201
|
+
*/
|
|
1202
|
+
export interface DeleteIntegrationDepartmentResponse {
|
|
1203
|
+
/**
|
|
1204
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1205
|
+
*/
|
|
1206
|
+
RequestId?: string
|
|
1207
|
+
}
|
|
1208
|
+
|
|
1164
1209
|
/**
|
|
1165
1210
|
* 自动签开启、签署相关配置
|
|
1166
1211
|
*/
|
|
@@ -1257,6 +1302,46 @@ export interface BindEmployeeUserIdWithClientOpenIdRequest {
|
|
|
1257
1302
|
OpenId: string
|
|
1258
1303
|
}
|
|
1259
1304
|
|
|
1305
|
+
/**
|
|
1306
|
+
* DescribeIntegrationDepartments请求参数结构体
|
|
1307
|
+
*/
|
|
1308
|
+
export interface DescribeIntegrationDepartmentsRequest {
|
|
1309
|
+
/**
|
|
1310
|
+
* 操作人信息,UserId必填且需拥有组织架构管理权限
|
|
1311
|
+
*/
|
|
1312
|
+
Operator: UserInfo
|
|
1313
|
+
|
|
1314
|
+
/**
|
|
1315
|
+
* 查询类型 0-查询单个部门节点 1-单个部门节点及一级子节点部门列表
|
|
1316
|
+
*/
|
|
1317
|
+
QueryType: number
|
|
1318
|
+
|
|
1319
|
+
/**
|
|
1320
|
+
* 部门ID,与DeptOpenId二选一,优先DeptId,都为空时获取根节点数据
|
|
1321
|
+
*/
|
|
1322
|
+
DeptId?: string
|
|
1323
|
+
|
|
1324
|
+
/**
|
|
1325
|
+
* 客户系统部门ID,与DeptId二选一,优先DeptId,都为空时获取根节点数据
|
|
1326
|
+
*/
|
|
1327
|
+
DeptOpenId?: string
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
/**
|
|
1331
|
+
* CreateIntegrationDepartment返回参数结构体
|
|
1332
|
+
*/
|
|
1333
|
+
export interface CreateIntegrationDepartmentResponse {
|
|
1334
|
+
/**
|
|
1335
|
+
* 电子签部门ID
|
|
1336
|
+
*/
|
|
1337
|
+
DeptId?: string
|
|
1338
|
+
|
|
1339
|
+
/**
|
|
1340
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1341
|
+
*/
|
|
1342
|
+
RequestId?: string
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1260
1345
|
/**
|
|
1261
1346
|
* DeleteSealPolicies返回参数结构体
|
|
1262
1347
|
*/
|
|
@@ -2189,6 +2274,41 @@ export interface DescribeFileUrlsResponse {
|
|
|
2189
2274
|
RequestId?: string
|
|
2190
2275
|
}
|
|
2191
2276
|
|
|
2277
|
+
/**
|
|
2278
|
+
* CreateIntegrationDepartment请求参数结构体
|
|
2279
|
+
*/
|
|
2280
|
+
export interface CreateIntegrationDepartmentRequest {
|
|
2281
|
+
/**
|
|
2282
|
+
* 操作人信息,UserId必填且需拥有组织架构管理权限
|
|
2283
|
+
*/
|
|
2284
|
+
Operator: UserInfo
|
|
2285
|
+
|
|
2286
|
+
/**
|
|
2287
|
+
* 部门名称,不超过50个字符
|
|
2288
|
+
*/
|
|
2289
|
+
DeptName: string
|
|
2290
|
+
|
|
2291
|
+
/**
|
|
2292
|
+
* 电子签父部门ID,与ParentDeptOpenId二选一,优先ParentDeptId,都为空时自动填充至根节点下
|
|
2293
|
+
*/
|
|
2294
|
+
ParentDeptId?: string
|
|
2295
|
+
|
|
2296
|
+
/**
|
|
2297
|
+
* 第三方平台中父部门ID,与ParentDeptId二选一,优先ParentDeptId,都为空时自动填充至根节点下
|
|
2298
|
+
*/
|
|
2299
|
+
ParentDeptOpenId?: string
|
|
2300
|
+
|
|
2301
|
+
/**
|
|
2302
|
+
* 客户系统部门ID,不超过64个字符
|
|
2303
|
+
*/
|
|
2304
|
+
DeptOpenId?: string
|
|
2305
|
+
|
|
2306
|
+
/**
|
|
2307
|
+
* 排序号,1~30000范围内
|
|
2308
|
+
*/
|
|
2309
|
+
OrderNo?: number
|
|
2310
|
+
}
|
|
2311
|
+
|
|
2192
2312
|
/**
|
|
2193
2313
|
* 成员企业信息
|
|
2194
2314
|
*/
|
|
@@ -2974,6 +3094,41 @@ export interface CreateFlowSignReviewResponse {
|
|
|
2974
3094
|
RequestId?: string
|
|
2975
3095
|
}
|
|
2976
3096
|
|
|
3097
|
+
/**
|
|
3098
|
+
* ModifyIntegrationDepartment请求参数结构体
|
|
3099
|
+
*/
|
|
3100
|
+
export interface ModifyIntegrationDepartmentRequest {
|
|
3101
|
+
/**
|
|
3102
|
+
* 操作人信息,UserId必填且需拥有组织架构管理权限
|
|
3103
|
+
*/
|
|
3104
|
+
Operator: UserInfo
|
|
3105
|
+
|
|
3106
|
+
/**
|
|
3107
|
+
* 电子签部门ID
|
|
3108
|
+
*/
|
|
3109
|
+
DeptId: string
|
|
3110
|
+
|
|
3111
|
+
/**
|
|
3112
|
+
* 电子签父部门ID
|
|
3113
|
+
*/
|
|
3114
|
+
ParentDeptId?: string
|
|
3115
|
+
|
|
3116
|
+
/**
|
|
3117
|
+
* 部门名称,不超过50个字符
|
|
3118
|
+
*/
|
|
3119
|
+
DeptName?: string
|
|
3120
|
+
|
|
3121
|
+
/**
|
|
3122
|
+
* 客户系统部门ID,不超过64个字符
|
|
3123
|
+
*/
|
|
3124
|
+
DeptOpenId?: string
|
|
3125
|
+
|
|
3126
|
+
/**
|
|
3127
|
+
* 排序号,1~30000范围内
|
|
3128
|
+
*/
|
|
3129
|
+
OrderNo?: number
|
|
3130
|
+
}
|
|
3131
|
+
|
|
2977
3132
|
/**
|
|
2978
3133
|
* 查询过滤条件
|
|
2979
3134
|
*/
|
|
@@ -3083,6 +3238,27 @@ export interface RemindFlowRecords {
|
|
|
3083
3238
|
RemindMessage: string
|
|
3084
3239
|
}
|
|
3085
3240
|
|
|
3241
|
+
/**
|
|
3242
|
+
* CancelUserAutoSignEnableUrl请求参数结构体
|
|
3243
|
+
*/
|
|
3244
|
+
export interface CancelUserAutoSignEnableUrlRequest {
|
|
3245
|
+
/**
|
|
3246
|
+
* 操作人信息,UseId必填
|
|
3247
|
+
*/
|
|
3248
|
+
Operator: UserInfo
|
|
3249
|
+
|
|
3250
|
+
/**
|
|
3251
|
+
* 自动签场景: E_PRESCRIPTION_AUTO_SIGN 电子处方
|
|
3252
|
+
*/
|
|
3253
|
+
SceneKey: string
|
|
3254
|
+
|
|
3255
|
+
/**
|
|
3256
|
+
* 指定撤销链接的用户指定撤销链接的用户信息,包含姓名、证件类型、证件号码。
|
|
3257
|
+
|
|
3258
|
+
*/
|
|
3259
|
+
UserInfo: UserThreeFactor
|
|
3260
|
+
}
|
|
3261
|
+
|
|
3086
3262
|
/**
|
|
3087
3263
|
* 创建员工的失败数据
|
|
3088
3264
|
*/
|
|
@@ -3389,6 +3565,26 @@ export interface CancelMultiFlowSignQRCodeRequest {
|
|
|
3389
3565
|
Agent?: Agent
|
|
3390
3566
|
}
|
|
3391
3567
|
|
|
3568
|
+
/**
|
|
3569
|
+
* DeleteIntegrationDepartment请求参数结构体
|
|
3570
|
+
*/
|
|
3571
|
+
export interface DeleteIntegrationDepartmentRequest {
|
|
3572
|
+
/**
|
|
3573
|
+
* 操作人信息,UserId必填且需拥有组织架构管理权限
|
|
3574
|
+
*/
|
|
3575
|
+
Operator: UserInfo
|
|
3576
|
+
|
|
3577
|
+
/**
|
|
3578
|
+
* 电子签中的部门id
|
|
3579
|
+
*/
|
|
3580
|
+
DeptId: string
|
|
3581
|
+
|
|
3582
|
+
/**
|
|
3583
|
+
* 交接部门ID。待删除部门中的合同、印章和模版数据,交接至该部门ID下,未填写交接至公司根部门。
|
|
3584
|
+
*/
|
|
3585
|
+
ReceiveDeptId?: string
|
|
3586
|
+
}
|
|
3587
|
+
|
|
3392
3588
|
/**
|
|
3393
3589
|
* ModifyApplicationCallbackInfo请求参数结构体
|
|
3394
3590
|
*/
|
|
@@ -3913,6 +4109,41 @@ KEYWORD 关键字,使用ComponentId指定关键字
|
|
|
3913
4109
|
KeywordIndexes?: Array<number>
|
|
3914
4110
|
}
|
|
3915
4111
|
|
|
4112
|
+
/**
|
|
4113
|
+
* 部门信息
|
|
4114
|
+
*/
|
|
4115
|
+
export interface IntegrationDepartment {
|
|
4116
|
+
/**
|
|
4117
|
+
* 部门ID
|
|
4118
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4119
|
+
*/
|
|
4120
|
+
DeptId?: string
|
|
4121
|
+
|
|
4122
|
+
/**
|
|
4123
|
+
* 部门名
|
|
4124
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4125
|
+
*/
|
|
4126
|
+
DeptName?: string
|
|
4127
|
+
|
|
4128
|
+
/**
|
|
4129
|
+
* 父部门ID
|
|
4130
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4131
|
+
*/
|
|
4132
|
+
ParentDeptId?: string
|
|
4133
|
+
|
|
4134
|
+
/**
|
|
4135
|
+
* 客户系统部门ID
|
|
4136
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4137
|
+
*/
|
|
4138
|
+
DeptOpenId?: string
|
|
4139
|
+
|
|
4140
|
+
/**
|
|
4141
|
+
* 序列号
|
|
4142
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4143
|
+
*/
|
|
4144
|
+
OrderNo?: number
|
|
4145
|
+
}
|
|
4146
|
+
|
|
3916
4147
|
/**
|
|
3917
4148
|
* DescribeIntegrationRoles返回参数结构体
|
|
3918
4149
|
*/
|
|
@@ -4346,32 +4577,13 @@ export interface DescribeFlowInfoResponse {
|
|
|
4346
4577
|
}
|
|
4347
4578
|
|
|
4348
4579
|
/**
|
|
4349
|
-
*
|
|
4580
|
+
* CancelMultiFlowSignQRCode返回参数结构体
|
|
4350
4581
|
*/
|
|
4351
|
-
export interface
|
|
4352
|
-
/**
|
|
4353
|
-
* 被抄送人手机号,11位数字
|
|
4354
|
-
*/
|
|
4355
|
-
Mobile?: string
|
|
4356
|
-
|
|
4582
|
+
export interface CancelMultiFlowSignQRCodeResponse {
|
|
4357
4583
|
/**
|
|
4358
|
-
*
|
|
4584
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4359
4585
|
*/
|
|
4360
|
-
|
|
4361
|
-
|
|
4362
|
-
/**
|
|
4363
|
-
* 被抄送人类型,
|
|
4364
|
-
0--个人
|
|
4365
|
-
1--员工
|
|
4366
|
-
*/
|
|
4367
|
-
CcType?: number
|
|
4368
|
-
|
|
4369
|
-
/**
|
|
4370
|
-
* 被抄送人权限
|
|
4371
|
-
0--可查看
|
|
4372
|
-
1--可查看也可下载
|
|
4373
|
-
*/
|
|
4374
|
-
CcPermission?: number
|
|
4586
|
+
RequestId?: string
|
|
4375
4587
|
}
|
|
4376
4588
|
|
|
4377
4589
|
/**
|
|
@@ -4548,11 +4760,30 @@ export interface DescribeOrganizationGroupOrganizationsResponse {
|
|
|
4548
4760
|
}
|
|
4549
4761
|
|
|
4550
4762
|
/**
|
|
4551
|
-
*
|
|
4763
|
+
* 抄送信息
|
|
4552
4764
|
*/
|
|
4553
|
-
export interface
|
|
4765
|
+
export interface CcInfo {
|
|
4554
4766
|
/**
|
|
4555
|
-
*
|
|
4767
|
+
* 被抄送人手机号,11位数字
|
|
4556
4768
|
*/
|
|
4557
|
-
|
|
4769
|
+
Mobile?: string
|
|
4770
|
+
|
|
4771
|
+
/**
|
|
4772
|
+
* 被抄送人姓名
|
|
4773
|
+
*/
|
|
4774
|
+
Name?: string
|
|
4775
|
+
|
|
4776
|
+
/**
|
|
4777
|
+
* 被抄送人类型,
|
|
4778
|
+
0--个人
|
|
4779
|
+
1--员工
|
|
4780
|
+
*/
|
|
4781
|
+
CcType?: number
|
|
4782
|
+
|
|
4783
|
+
/**
|
|
4784
|
+
* 被抄送人权限
|
|
4785
|
+
0--可查看
|
|
4786
|
+
1--可查看也可下载
|
|
4787
|
+
*/
|
|
4788
|
+
CcPermission?: number
|
|
4558
4789
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
|
2
|
-
import { CancelFlowResponse, DescribeFlowEvidenceReportRequest, UpdateIntegrationEmployeesResponse, CreatePreparedPersonalEsignRequest, CreateFlowApproversResponse, DescribeIntegrationMainOrganizationUserRequest, ModifyApplicationCallbackInfoResponse, CreateMultiFlowSignQRCodeResponse, DescribeThirdPartyAuthCodeResponse, DisableUserAutoSignResponse, BindEmployeeUserIdWithClientOpenIdResponse, CreateIntegrationEmployeesRequest,
|
|
2
|
+
import { ModifyIntegrationDepartmentResponse, CancelFlowResponse, DescribeFlowEvidenceReportRequest, UpdateIntegrationEmployeesResponse, CreatePreparedPersonalEsignRequest, DescribeIntegrationDepartmentsResponse, CreateFlowApproversResponse, DescribeIntegrationMainOrganizationUserRequest, ModifyApplicationCallbackInfoResponse, CreateMultiFlowSignQRCodeResponse, DescribeThirdPartyAuthCodeResponse, DisableUserAutoSignResponse, CancelUserAutoSignEnableUrlResponse, BindEmployeeUserIdWithClientOpenIdResponse, CreateIntegrationEmployeesRequest, DescribeIntegrationRolesRequest, CreateFlowEvidenceReportRequest, StartFlowResponse, CreateConvertTaskApiRequest, CreateFlowRemindsResponse, DescribeOrganizationGroupOrganizationsRequest, DescribeFlowTemplatesRequest, 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, 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, CreatePrepareFlowRequest, CreateSealPolicyRequest, DescribeOrganizationSealsRequest, CancelFlowRequest, DescribeIntegrationRolesResponse, CreateFlowRemindsRequest, UpdateIntegrationEmployeesRequest, DescribeFlowBriefsRequest, DeleteIntegrationEmployeesResponse, VerifyPdfResponse, DescribeFlowBriefsResponse, DescribeFlowTemplatesResponse, UploadFilesRequest, CreateBatchCancelFlowUrlRequest, CreateMultiFlowSignQRCodeRequest, DescribeFlowInfoRequest, DescribeFlowInfoResponse, CancelMultiFlowSignQRCodeResponse, CreateFlowResponse, DescribeUserAutoSignStatusRequest, DescribeOrganizationGroupOrganizationsResponse } from "./ess_models";
|
|
3
3
|
/**
|
|
4
4
|
* ess client
|
|
5
5
|
* @class
|
|
@@ -7,9 +7,10 @@ import { CancelFlowResponse, DescribeFlowEvidenceReportRequest, UpdateIntegratio
|
|
|
7
7
|
export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
8
8
|
constructor(clientConfig: TencentCloudCommon.ClientConfig);
|
|
9
9
|
/**
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
* 查询合同详情
|
|
11
|
+
适用场景:可用于主动查询某个合同详情信息。
|
|
12
|
+
*/
|
|
13
|
+
DescribeFlowInfo(req: DescribeFlowInfoRequest, cb?: (error: string, rep: DescribeFlowInfoResponse) => void): Promise<DescribeFlowInfoResponse>;
|
|
13
14
|
/**
|
|
14
15
|
* 新增/删除应用callbackinfo
|
|
15
16
|
callbackinfo包含: 回调地址和签名key
|
|
@@ -47,10 +48,13 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
47
48
|
*/
|
|
48
49
|
CreateUserAutoSignEnableUrl(req: CreateUserAutoSignEnableUrlRequest, cb?: (error: string, rep: CreateUserAutoSignEnableUrlResponse) => void): Promise<CreateUserAutoSignEnableUrlResponse>;
|
|
49
50
|
/**
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
51
|
+
* 对企业员工进行印章授权
|
|
52
|
+
*/
|
|
53
|
+
CreateSealPolicy(req: CreateSealPolicyRequest, cb?: (error: string, rep: CreateSealPolicyResponse) => void): Promise<CreateSealPolicyResponse>;
|
|
54
|
+
/**
|
|
55
|
+
* 此API接口用户查询加入集团的成员企业
|
|
56
|
+
*/
|
|
57
|
+
DescribeOrganizationGroupOrganizations(req: DescribeOrganizationGroupOrganizationsRequest, cb?: (error: string, rep: DescribeOrganizationGroupOrganizationsResponse) => void): Promise<DescribeOrganizationGroupOrganizationsResponse>;
|
|
54
58
|
/**
|
|
55
59
|
* 对流程的合同文件进行验证,判断文件是否合法。
|
|
56
60
|
*/
|
|
@@ -65,6 +69,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
65
69
|
客户指定需要撤回的签署流程Id,最多100个,超过100不处理;接口调用成功返回批量撤回合同的链接,通过链接跳转到电子签小程序完成批量撤回。
|
|
66
70
|
*/
|
|
67
71
|
CreateBatchCancelFlowUrl(req: CreateBatchCancelFlowUrlRequest, cb?: (error: string, rep: CreateBatchCancelFlowUrlResponse) => void): Promise<CreateBatchCancelFlowUrlResponse>;
|
|
72
|
+
/**
|
|
73
|
+
* 通过此接口,删除企业的部门。
|
|
74
|
+
*/
|
|
75
|
+
DeleteIntegrationDepartment(req: DeleteIntegrationDepartmentRequest, cb?: (error: string, rep: DeleteIntegrationDepartmentResponse) => void): Promise<DeleteIntegrationDepartmentResponse>;
|
|
68
76
|
/**
|
|
69
77
|
* 将电子签系统员工userId与客户系统员工openId进行绑定
|
|
70
78
|
*/
|
|
@@ -109,14 +117,22 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
109
117
|
*/
|
|
110
118
|
CreateDocument(req: CreateDocumentRequest, cb?: (error: string, rep: CreateDocumentResponse) => void): Promise<CreateDocumentResponse>;
|
|
111
119
|
/**
|
|
112
|
-
*
|
|
113
|
-
|
|
120
|
+
* 此接口(CreateMultiFlowSignQRCode)用于创建一码多扫流程签署二维码。
|
|
121
|
+
适用场景:无需填写签署人信息,可通过模板id生成签署二维码,签署人可通过扫描二维码补充签署信息进行实名签署。常用于提前不知道签署人的身份信息场景,例如:劳务工招工、大批量员工入职等场景。
|
|
122
|
+
|
|
123
|
+
**本接口适用于发起方没有填写控件的 B2C或者单C模板**
|
|
124
|
+
|
|
125
|
+
**若是B2C模板,还要满足以下任意一个条件**
|
|
126
|
+
- 模板中配置的签署顺序是无序
|
|
127
|
+
- B端企业的签署方式是静默签署
|
|
128
|
+
- B端企业是非首位签署
|
|
114
129
|
*/
|
|
115
|
-
|
|
130
|
+
CreateMultiFlowSignQRCode(req: CreateMultiFlowSignQRCodeRequest, cb?: (error: string, rep: CreateMultiFlowSignQRCodeResponse) => void): Promise<CreateMultiFlowSignQRCodeResponse>;
|
|
116
131
|
/**
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
132
|
+
* 创建出证报告,返回报告 ID。需要配合出证套餐才能调用。
|
|
133
|
+
出证需要一定时间,建议调用创建出证24小时之后再通过DescribeFlowEvidenceReport进行查询。
|
|
134
|
+
*/
|
|
135
|
+
CreateFlowEvidenceReport(req: CreateFlowEvidenceReportRequest, cb?: (error: string, rep: CreateFlowEvidenceReportResponse) => void): Promise<CreateFlowEvidenceReportResponse>;
|
|
120
136
|
/**
|
|
121
137
|
* 通过模板创建签署流程<br/>
|
|
122
138
|
适用场景:在标准制式的合同场景中,可通过提前预制好模板文件,每次调用模板文件的id,补充合同内容信息及签署信息生成电子合同。<br/>
|
|
@@ -152,17 +168,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
152
168
|
*/
|
|
153
169
|
DescribeIntegrationRoles(req: DescribeIntegrationRolesRequest, cb?: (error: string, rep: DescribeIntegrationRolesResponse) => void): Promise<DescribeIntegrationRolesResponse>;
|
|
154
170
|
/**
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
**本接口适用于发起方没有填写控件的 B2C或者单C模板**
|
|
159
|
-
|
|
160
|
-
**若是B2C模板,还要满足以下任意一个条件**
|
|
161
|
-
- 模板中配置的签署顺序是无序
|
|
162
|
-
- B端企业的签署方式是静默签署
|
|
163
|
-
- B端企业是非首位签署
|
|
164
|
-
*/
|
|
165
|
-
CreateMultiFlowSignQRCode(req: CreateMultiFlowSignQRCodeRequest, cb?: (error: string, rep: CreateMultiFlowSignQRCodeResponse) => void): Promise<CreateMultiFlowSignQRCodeResponse>;
|
|
171
|
+
* 通过此接口,创建企业的部门,支持绑定客户系统部门ID。
|
|
172
|
+
*/
|
|
173
|
+
CreateIntegrationDepartment(req: CreateIntegrationDepartmentRequest, cb?: (error: string, rep: CreateIntegrationDepartmentResponse) => void): Promise<CreateIntegrationDepartmentResponse>;
|
|
166
174
|
/**
|
|
167
175
|
* 通过发起转换任务接口(CreateConvertTaskApi)返回的任务Id查询转换任务状态,通过本接口确认转换任务是否完成。<br/>
|
|
168
176
|
大文件转换所需的时间可能会比较长。
|
|
@@ -185,7 +193,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
185
193
|
*/
|
|
186
194
|
CreateFlowSignUrl(req: CreateFlowSignUrlRequest, cb?: (error: string, rep: CreateFlowSignUrlResponse) => void): Promise<CreateFlowSignUrlResponse>;
|
|
187
195
|
/**
|
|
188
|
-
* 上传了word、excel
|
|
196
|
+
* 上传了word、excel、图片文件后,通过该接口发起文件转换任务,将word、excel、图片文件转换为pdf文件。
|
|
189
197
|
*/
|
|
190
198
|
CreateConvertTaskApi(req: CreateConvertTaskApiRequest, cb?: (error: string, rep: CreateConvertTaskApiResponse) => void): Promise<CreateConvertTaskApiResponse>;
|
|
191
199
|
/**
|
|
@@ -247,6 +255,18 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
247
255
|
如您需要自主配置小程序跳转链接,请参考: <a href="https://cloud.tencent.com/document/product/1323/74774">跳转小程序链接配置说明</a>
|
|
248
256
|
*/
|
|
249
257
|
CreateSchemeUrl(req: CreateSchemeUrlRequest, cb?: (error: string, rep: CreateSchemeUrlResponse) => void): Promise<CreateSchemeUrlResponse>;
|
|
258
|
+
/**
|
|
259
|
+
* 此接口(CancelUserAutoSignEnableUrl)用来撤销发送给个人用户的自动签开通链接,撤销后对应的个人用户开通链接失效。若个人用户已经完成开通,将无法撤销。(处方单场景专用,使用此接口请与客户经理确认)
|
|
260
|
+
*/
|
|
261
|
+
CancelUserAutoSignEnableUrl(req: CancelUserAutoSignEnableUrlRequest, cb?: (error: string, rep: CancelUserAutoSignEnableUrlResponse) => void): Promise<CancelUserAutoSignEnableUrlResponse>;
|
|
262
|
+
/**
|
|
263
|
+
* 通过此接口,查询企业的部门,支持查询单个部门节点或单个部门节点及一级子节点部门列表。
|
|
264
|
+
*/
|
|
265
|
+
DescribeIntegrationDepartments(req: DescribeIntegrationDepartmentsRequest, cb?: (error: string, rep: DescribeIntegrationDepartmentsResponse) => void): Promise<DescribeIntegrationDepartmentsResponse>;
|
|
266
|
+
/**
|
|
267
|
+
* 通过此接口,更新企业的部门信息,支持更新部门名、客户系统部门ID、部门序列号。
|
|
268
|
+
*/
|
|
269
|
+
ModifyIntegrationDepartment(req: ModifyIntegrationDepartmentRequest, cb?: (error: string, rep: ModifyIntegrationDepartmentResponse) => void): Promise<ModifyIntegrationDepartmentResponse>;
|
|
250
270
|
/**
|
|
251
271
|
* 创建员工,如需在此接口提醒员工实名,入参Employees的OpenId不传
|
|
252
272
|
*/
|