tencentcloud-sdk-nodejs-ess 4.0.615 → 4.0.617
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 +440 -0
- package/SERVICE_CHANGELOG.md +385 -201
- package/package.json +1 -1
- package/products.md +21 -21
- package/src/services/ess/v20201111/ess_client.ts +95 -46
- package/src/services/ess/v20201111/ess_models.ts +241 -34
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +41 -25
- package/tencentcloud/services/ess/v20201111/ess_client.js +53 -29
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +209 -33
|
@@ -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
|
*/
|
|
@@ -331,6 +356,13 @@ HONGKONG_MACAO_AND_TAIWAN 港澳台居民居住证(格式同居民身份证)
|
|
|
331
356
|
* 签署完前端跳转的url,暂未使用
|
|
332
357
|
*/
|
|
333
358
|
JumpUrl?: string
|
|
359
|
+
|
|
360
|
+
/**
|
|
361
|
+
* 签署ID
|
|
362
|
+
- 发起流程时系统自动补充
|
|
363
|
+
- 创建签署链接时,可以通过查询详情接口获得签署人的SignId,然后可传入此值为该签署人创建签署链接,无需再传姓名、手机号、证件号等其他信息
|
|
364
|
+
*/
|
|
365
|
+
SignId?: string
|
|
334
366
|
}
|
|
335
367
|
|
|
336
368
|
/**
|
|
@@ -394,38 +426,36 @@ export interface CreateIntegrationEmployeesRequest {
|
|
|
394
426
|
}
|
|
395
427
|
|
|
396
428
|
/**
|
|
397
|
-
*
|
|
429
|
+
* DescribeIntegrationRoles请求参数结构体
|
|
398
430
|
*/
|
|
399
|
-
export interface
|
|
400
|
-
/**
|
|
401
|
-
* 资源类型 取值范围doc,docx,html,xls,xlsx之一
|
|
402
|
-
*/
|
|
403
|
-
ResourceType: string
|
|
404
|
-
|
|
431
|
+
export interface DescribeIntegrationRolesRequest {
|
|
405
432
|
/**
|
|
406
|
-
*
|
|
433
|
+
* 操作人信息
|
|
407
434
|
*/
|
|
408
|
-
|
|
435
|
+
Operator: UserInfo
|
|
409
436
|
|
|
410
437
|
/**
|
|
411
|
-
*
|
|
438
|
+
* 返回最大数量,最大为200
|
|
412
439
|
*/
|
|
413
|
-
|
|
440
|
+
Limit: number
|
|
414
441
|
|
|
415
442
|
/**
|
|
416
|
-
*
|
|
443
|
+
* 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
|
417
444
|
*/
|
|
418
|
-
|
|
445
|
+
Agent?: Agent
|
|
419
446
|
|
|
420
447
|
/**
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
448
|
+
* 查询的关键字段:
|
|
449
|
+
Key:"RoleType",Values:["1"]查询系统角色,Values:["2"]查询自定义角色
|
|
450
|
+
Key:"RoleStatus",Values:["1"]查询启用角色,Values:["2"]查询禁用角色
|
|
451
|
+
Key:"IsGroupRole",Values:["0"],查询非集团角色,Values:["1"]表示查询集团角色
|
|
452
|
+
*/
|
|
453
|
+
Filters?: Array<Filter>
|
|
424
454
|
|
|
425
455
|
/**
|
|
426
|
-
*
|
|
456
|
+
* 偏移量,默认为0,最大为2000
|
|
427
457
|
*/
|
|
428
|
-
|
|
458
|
+
Offset?: number
|
|
429
459
|
}
|
|
430
460
|
|
|
431
461
|
/**
|
|
@@ -521,36 +551,38 @@ export interface AuthorizedUser {
|
|
|
521
551
|
}
|
|
522
552
|
|
|
523
553
|
/**
|
|
524
|
-
*
|
|
554
|
+
* CreateConvertTaskApi请求参数结构体
|
|
525
555
|
*/
|
|
526
|
-
export interface
|
|
556
|
+
export interface CreateConvertTaskApiRequest {
|
|
527
557
|
/**
|
|
528
|
-
*
|
|
558
|
+
* 资源类型 取值范围doc,docx,html,xls,xlsx之一
|
|
529
559
|
*/
|
|
530
|
-
|
|
560
|
+
ResourceType: string
|
|
531
561
|
|
|
532
562
|
/**
|
|
533
|
-
*
|
|
563
|
+
* 资源名称,长度限制为256字符
|
|
534
564
|
*/
|
|
535
|
-
|
|
565
|
+
ResourceName: string
|
|
536
566
|
|
|
537
567
|
/**
|
|
538
|
-
*
|
|
568
|
+
* 资源Id,通过UploadFiles获取
|
|
539
569
|
*/
|
|
540
|
-
|
|
570
|
+
ResourceId: string
|
|
541
571
|
|
|
542
572
|
/**
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
Key:"IsGroupRole",Values:["0"],查询非集团角色,Values:["1"]表示查询集团角色
|
|
547
|
-
*/
|
|
548
|
-
Filters?: Array<Filter>
|
|
573
|
+
* 调用方用户信息,userId 必填
|
|
574
|
+
*/
|
|
575
|
+
Operator?: UserInfo
|
|
549
576
|
|
|
550
577
|
/**
|
|
551
|
-
*
|
|
578
|
+
* 应用号信息
|
|
552
579
|
*/
|
|
553
|
-
|
|
580
|
+
Agent?: Agent
|
|
581
|
+
|
|
582
|
+
/**
|
|
583
|
+
* 暂未开放
|
|
584
|
+
*/
|
|
585
|
+
Organization?: OrganizationInfo
|
|
554
586
|
}
|
|
555
587
|
|
|
556
588
|
/**
|
|
@@ -1154,6 +1186,16 @@ APP:第三方APP或小程序跳转电子签小程序的path。
|
|
|
1154
1186
|
Agent?: Agent
|
|
1155
1187
|
}
|
|
1156
1188
|
|
|
1189
|
+
/**
|
|
1190
|
+
* DeleteIntegrationDepartment返回参数结构体
|
|
1191
|
+
*/
|
|
1192
|
+
export interface DeleteIntegrationDepartmentResponse {
|
|
1193
|
+
/**
|
|
1194
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1195
|
+
*/
|
|
1196
|
+
RequestId?: string
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1157
1199
|
/**
|
|
1158
1200
|
* 自动签开启、签署相关配置
|
|
1159
1201
|
*/
|
|
@@ -1250,6 +1292,46 @@ export interface BindEmployeeUserIdWithClientOpenIdRequest {
|
|
|
1250
1292
|
OpenId: string
|
|
1251
1293
|
}
|
|
1252
1294
|
|
|
1295
|
+
/**
|
|
1296
|
+
* DescribeIntegrationDepartments请求参数结构体
|
|
1297
|
+
*/
|
|
1298
|
+
export interface DescribeIntegrationDepartmentsRequest {
|
|
1299
|
+
/**
|
|
1300
|
+
* 操作人信息,UserId必填且需拥有组织架构管理权限
|
|
1301
|
+
*/
|
|
1302
|
+
Operator: UserInfo
|
|
1303
|
+
|
|
1304
|
+
/**
|
|
1305
|
+
* 查询类型 0-查询单个部门节点 1-单个部门节点及一级子节点部门列表
|
|
1306
|
+
*/
|
|
1307
|
+
QueryType: number
|
|
1308
|
+
|
|
1309
|
+
/**
|
|
1310
|
+
* 部门ID,与DeptOpenId二选一,优先DeptId,都为空时获取根节点数据
|
|
1311
|
+
*/
|
|
1312
|
+
DeptId?: string
|
|
1313
|
+
|
|
1314
|
+
/**
|
|
1315
|
+
* 客户系统部门ID,与DeptId二选一,优先DeptId,都为空时获取根节点数据
|
|
1316
|
+
*/
|
|
1317
|
+
DeptOpenId?: string
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
/**
|
|
1321
|
+
* CreateIntegrationDepartment返回参数结构体
|
|
1322
|
+
*/
|
|
1323
|
+
export interface CreateIntegrationDepartmentResponse {
|
|
1324
|
+
/**
|
|
1325
|
+
* 电子签部门ID
|
|
1326
|
+
*/
|
|
1327
|
+
DeptId?: string
|
|
1328
|
+
|
|
1329
|
+
/**
|
|
1330
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1331
|
+
*/
|
|
1332
|
+
RequestId?: string
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1253
1335
|
/**
|
|
1254
1336
|
* DeleteSealPolicies返回参数结构体
|
|
1255
1337
|
*/
|
|
@@ -2182,6 +2264,41 @@ export interface DescribeFileUrlsResponse {
|
|
|
2182
2264
|
RequestId?: string
|
|
2183
2265
|
}
|
|
2184
2266
|
|
|
2267
|
+
/**
|
|
2268
|
+
* CreateIntegrationDepartment请求参数结构体
|
|
2269
|
+
*/
|
|
2270
|
+
export interface CreateIntegrationDepartmentRequest {
|
|
2271
|
+
/**
|
|
2272
|
+
* 操作人信息,UserId必填且需拥有组织架构管理权限
|
|
2273
|
+
*/
|
|
2274
|
+
Operator: UserInfo
|
|
2275
|
+
|
|
2276
|
+
/**
|
|
2277
|
+
* 部门名称,不超过50个字符
|
|
2278
|
+
*/
|
|
2279
|
+
DeptName: string
|
|
2280
|
+
|
|
2281
|
+
/**
|
|
2282
|
+
* 电子签父部门ID,与ParentDeptOpenId二选一,优先ParentDeptId,都为空时自动填充至根节点下
|
|
2283
|
+
*/
|
|
2284
|
+
ParentDeptId?: string
|
|
2285
|
+
|
|
2286
|
+
/**
|
|
2287
|
+
* 第三方平台中父部门ID,与ParentDeptId二选一,优先ParentDeptId,都为空时自动填充至根节点下
|
|
2288
|
+
*/
|
|
2289
|
+
ParentDeptOpenId?: string
|
|
2290
|
+
|
|
2291
|
+
/**
|
|
2292
|
+
* 客户系统部门ID,不超过64个字符
|
|
2293
|
+
*/
|
|
2294
|
+
DeptOpenId?: string
|
|
2295
|
+
|
|
2296
|
+
/**
|
|
2297
|
+
* 排序号,1~30000范围内
|
|
2298
|
+
*/
|
|
2299
|
+
OrderNo?: number
|
|
2300
|
+
}
|
|
2301
|
+
|
|
2185
2302
|
/**
|
|
2186
2303
|
* 成员企业信息
|
|
2187
2304
|
*/
|
|
@@ -2967,6 +3084,41 @@ export interface CreateFlowSignReviewResponse {
|
|
|
2967
3084
|
RequestId?: string
|
|
2968
3085
|
}
|
|
2969
3086
|
|
|
3087
|
+
/**
|
|
3088
|
+
* ModifyIntegrationDepartment请求参数结构体
|
|
3089
|
+
*/
|
|
3090
|
+
export interface ModifyIntegrationDepartmentRequest {
|
|
3091
|
+
/**
|
|
3092
|
+
* 操作人信息,UserId必填且需拥有组织架构管理权限
|
|
3093
|
+
*/
|
|
3094
|
+
Operator: UserInfo
|
|
3095
|
+
|
|
3096
|
+
/**
|
|
3097
|
+
* 电子签部门ID
|
|
3098
|
+
*/
|
|
3099
|
+
DeptId: string
|
|
3100
|
+
|
|
3101
|
+
/**
|
|
3102
|
+
* 电子签父部门ID
|
|
3103
|
+
*/
|
|
3104
|
+
ParentDeptId?: string
|
|
3105
|
+
|
|
3106
|
+
/**
|
|
3107
|
+
* 部门名称,不超过50个字符
|
|
3108
|
+
*/
|
|
3109
|
+
DeptName?: string
|
|
3110
|
+
|
|
3111
|
+
/**
|
|
3112
|
+
* 客户系统部门ID,不超过64个字符
|
|
3113
|
+
*/
|
|
3114
|
+
DeptOpenId?: string
|
|
3115
|
+
|
|
3116
|
+
/**
|
|
3117
|
+
* 排序号,1~30000范围内
|
|
3118
|
+
*/
|
|
3119
|
+
OrderNo?: number
|
|
3120
|
+
}
|
|
3121
|
+
|
|
2970
3122
|
/**
|
|
2971
3123
|
* 查询过滤条件
|
|
2972
3124
|
*/
|
|
@@ -3382,6 +3534,26 @@ export interface CancelMultiFlowSignQRCodeRequest {
|
|
|
3382
3534
|
Agent?: Agent
|
|
3383
3535
|
}
|
|
3384
3536
|
|
|
3537
|
+
/**
|
|
3538
|
+
* DeleteIntegrationDepartment请求参数结构体
|
|
3539
|
+
*/
|
|
3540
|
+
export interface DeleteIntegrationDepartmentRequest {
|
|
3541
|
+
/**
|
|
3542
|
+
* 操作人信息,UserId必填且需拥有组织架构管理权限
|
|
3543
|
+
*/
|
|
3544
|
+
Operator: UserInfo
|
|
3545
|
+
|
|
3546
|
+
/**
|
|
3547
|
+
* 电子签中的部门id
|
|
3548
|
+
*/
|
|
3549
|
+
DeptId: string
|
|
3550
|
+
|
|
3551
|
+
/**
|
|
3552
|
+
* 交接部门ID。待删除部门中的合同、印章和模版数据,交接至该部门ID下,未填写交接至公司根部门。
|
|
3553
|
+
*/
|
|
3554
|
+
ReceiveDeptId?: string
|
|
3555
|
+
}
|
|
3556
|
+
|
|
3385
3557
|
/**
|
|
3386
3558
|
* ModifyApplicationCallbackInfo请求参数结构体
|
|
3387
3559
|
*/
|
|
@@ -3906,6 +4078,41 @@ KEYWORD 关键字,使用ComponentId指定关键字
|
|
|
3906
4078
|
KeywordIndexes?: Array<number>
|
|
3907
4079
|
}
|
|
3908
4080
|
|
|
4081
|
+
/**
|
|
4082
|
+
* 部门信息
|
|
4083
|
+
*/
|
|
4084
|
+
export interface IntegrationDepartment {
|
|
4085
|
+
/**
|
|
4086
|
+
* 部门ID
|
|
4087
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4088
|
+
*/
|
|
4089
|
+
DeptId?: string
|
|
4090
|
+
|
|
4091
|
+
/**
|
|
4092
|
+
* 部门名
|
|
4093
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4094
|
+
*/
|
|
4095
|
+
DeptName?: string
|
|
4096
|
+
|
|
4097
|
+
/**
|
|
4098
|
+
* 父部门ID
|
|
4099
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4100
|
+
*/
|
|
4101
|
+
ParentDeptId?: string
|
|
4102
|
+
|
|
4103
|
+
/**
|
|
4104
|
+
* 客户系统部门ID
|
|
4105
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4106
|
+
*/
|
|
4107
|
+
DeptOpenId?: string
|
|
4108
|
+
|
|
4109
|
+
/**
|
|
4110
|
+
* 序列号
|
|
4111
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4112
|
+
*/
|
|
4113
|
+
OrderNo?: number
|
|
4114
|
+
}
|
|
4115
|
+
|
|
3909
4116
|
/**
|
|
3910
4117
|
* DescribeIntegrationRoles返回参数结构体
|
|
3911
4118
|
*/
|
|
@@ -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, 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, 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, CreateFlowResponse, DescribeUserAutoSignStatusRequest, DescribeOrganizationGroupOrganizationsResponse, CancelMultiFlowSignQRCodeResponse } 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
|
大文件转换所需的时间可能会比较长。
|
|
@@ -247,6 +255,14 @@ 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
|
+
* 通过此接口,查询企业的部门,支持查询单个部门节点或单个部门节点及一级子节点部门列表。
|
|
260
|
+
*/
|
|
261
|
+
DescribeIntegrationDepartments(req: DescribeIntegrationDepartmentsRequest, cb?: (error: string, rep: DescribeIntegrationDepartmentsResponse) => void): Promise<DescribeIntegrationDepartmentsResponse>;
|
|
262
|
+
/**
|
|
263
|
+
* 通过此接口,更新企业的部门信息,支持更新部门名、客户系统部门ID、部门序列号。
|
|
264
|
+
*/
|
|
265
|
+
ModifyIntegrationDepartment(req: ModifyIntegrationDepartmentRequest, cb?: (error: string, rep: ModifyIntegrationDepartmentResponse) => void): Promise<ModifyIntegrationDepartmentResponse>;
|
|
250
266
|
/**
|
|
251
267
|
* 创建员工,如需在此接口提醒员工实名,入参Employees的OpenId不传
|
|
252
268
|
*/
|
|
@@ -28,10 +28,11 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
28
28
|
super("ess.tencentcloudapi.com", "2020-11-11", clientConfig);
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
31
|
+
* 查询合同详情
|
|
32
|
+
适用场景:可用于主动查询某个合同详情信息。
|
|
33
|
+
*/
|
|
34
|
+
async DescribeFlowInfo(req, cb) {
|
|
35
|
+
return this.request("DescribeFlowInfo", req, cb);
|
|
35
36
|
}
|
|
36
37
|
/**
|
|
37
38
|
* 新增/删除应用callbackinfo
|
|
@@ -84,11 +85,16 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
84
85
|
return this.request("CreateUserAutoSignEnableUrl", req, cb);
|
|
85
86
|
}
|
|
86
87
|
/**
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
88
|
+
* 对企业员工进行印章授权
|
|
89
|
+
*/
|
|
90
|
+
async CreateSealPolicy(req, cb) {
|
|
91
|
+
return this.request("CreateSealPolicy", req, cb);
|
|
92
|
+
}
|
|
93
|
+
/**
|
|
94
|
+
* 此API接口用户查询加入集团的成员企业
|
|
95
|
+
*/
|
|
96
|
+
async DescribeOrganizationGroupOrganizations(req, cb) {
|
|
97
|
+
return this.request("DescribeOrganizationGroupOrganizations", req, cb);
|
|
92
98
|
}
|
|
93
99
|
/**
|
|
94
100
|
* 对流程的合同文件进行验证,判断文件是否合法。
|
|
@@ -110,6 +116,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
110
116
|
async CreateBatchCancelFlowUrl(req, cb) {
|
|
111
117
|
return this.request("CreateBatchCancelFlowUrl", req, cb);
|
|
112
118
|
}
|
|
119
|
+
/**
|
|
120
|
+
* 通过此接口,删除企业的部门。
|
|
121
|
+
*/
|
|
122
|
+
async DeleteIntegrationDepartment(req, cb) {
|
|
123
|
+
return this.request("DeleteIntegrationDepartment", req, cb);
|
|
124
|
+
}
|
|
113
125
|
/**
|
|
114
126
|
* 将电子签系统员工userId与客户系统员工openId进行绑定
|
|
115
127
|
*/
|
|
@@ -170,17 +182,25 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
170
182
|
return this.request("CreateDocument", req, cb);
|
|
171
183
|
}
|
|
172
184
|
/**
|
|
173
|
-
*
|
|
174
|
-
|
|
185
|
+
* 此接口(CreateMultiFlowSignQRCode)用于创建一码多扫流程签署二维码。
|
|
186
|
+
适用场景:无需填写签署人信息,可通过模板id生成签署二维码,签署人可通过扫描二维码补充签署信息进行实名签署。常用于提前不知道签署人的身份信息场景,例如:劳务工招工、大批量员工入职等场景。
|
|
187
|
+
|
|
188
|
+
**本接口适用于发起方没有填写控件的 B2C或者单C模板**
|
|
189
|
+
|
|
190
|
+
**若是B2C模板,还要满足以下任意一个条件**
|
|
191
|
+
- 模板中配置的签署顺序是无序
|
|
192
|
+
- B端企业的签署方式是静默签署
|
|
193
|
+
- B端企业是非首位签署
|
|
175
194
|
*/
|
|
176
|
-
async
|
|
177
|
-
return this.request("
|
|
195
|
+
async CreateMultiFlowSignQRCode(req, cb) {
|
|
196
|
+
return this.request("CreateMultiFlowSignQRCode", req, cb);
|
|
178
197
|
}
|
|
179
198
|
/**
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
199
|
+
* 创建出证报告,返回报告 ID。需要配合出证套餐才能调用。
|
|
200
|
+
出证需要一定时间,建议调用创建出证24小时之后再通过DescribeFlowEvidenceReport进行查询。
|
|
201
|
+
*/
|
|
202
|
+
async CreateFlowEvidenceReport(req, cb) {
|
|
203
|
+
return this.request("CreateFlowEvidenceReport", req, cb);
|
|
184
204
|
}
|
|
185
205
|
/**
|
|
186
206
|
* 通过模板创建签署流程<br/>
|
|
@@ -231,18 +251,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
231
251
|
return this.request("DescribeIntegrationRoles", req, cb);
|
|
232
252
|
}
|
|
233
253
|
/**
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
**若是B2C模板,还要满足以下任意一个条件**
|
|
240
|
-
- 模板中配置的签署顺序是无序
|
|
241
|
-
- B端企业的签署方式是静默签署
|
|
242
|
-
- B端企业是非首位签署
|
|
243
|
-
*/
|
|
244
|
-
async CreateMultiFlowSignQRCode(req, cb) {
|
|
245
|
-
return this.request("CreateMultiFlowSignQRCode", req, cb);
|
|
254
|
+
* 通过此接口,创建企业的部门,支持绑定客户系统部门ID。
|
|
255
|
+
*/
|
|
256
|
+
async CreateIntegrationDepartment(req, cb) {
|
|
257
|
+
return this.request("CreateIntegrationDepartment", req, cb);
|
|
246
258
|
}
|
|
247
259
|
/**
|
|
248
260
|
* 通过发起转换任务接口(CreateConvertTaskApi)返回的任务Id查询转换任务状态,通过本接口确认转换任务是否完成。<br/>
|
|
@@ -356,6 +368,18 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
356
368
|
async CreateSchemeUrl(req, cb) {
|
|
357
369
|
return this.request("CreateSchemeUrl", req, cb);
|
|
358
370
|
}
|
|
371
|
+
/**
|
|
372
|
+
* 通过此接口,查询企业的部门,支持查询单个部门节点或单个部门节点及一级子节点部门列表。
|
|
373
|
+
*/
|
|
374
|
+
async DescribeIntegrationDepartments(req, cb) {
|
|
375
|
+
return this.request("DescribeIntegrationDepartments", req, cb);
|
|
376
|
+
}
|
|
377
|
+
/**
|
|
378
|
+
* 通过此接口,更新企业的部门信息,支持更新部门名、客户系统部门ID、部门序列号。
|
|
379
|
+
*/
|
|
380
|
+
async ModifyIntegrationDepartment(req, cb) {
|
|
381
|
+
return this.request("ModifyIntegrationDepartment", req, cb);
|
|
382
|
+
}
|
|
359
383
|
/**
|
|
360
384
|
* 创建员工,如需在此接口提醒员工实名,入参Employees的OpenId不传
|
|
361
385
|
*/
|