tencentcloud-sdk-nodejs-ess 4.0.1027 → 4.0.1029
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/README.md +21 -23
- package/package.json +1 -1
- package/src/services/ess/v20201111/ess_client.ts +46 -5
- package/src/services/ess/v20201111/ess_models.ts +270 -104
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +17 -1
- package/tencentcloud/services/ess/v20201111/ess_client.js +22 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +263 -104
|
@@ -179,6 +179,24 @@ export interface IntentionActionResult {
|
|
|
179
179
|
Details?: Array<IntentionActionResultDetail>
|
|
180
180
|
}
|
|
181
181
|
|
|
182
|
+
/**
|
|
183
|
+
* DescribeFileCounterSignResult请求参数结构体
|
|
184
|
+
*/
|
|
185
|
+
export interface DescribeFileCounterSignResultRequest {
|
|
186
|
+
/**
|
|
187
|
+
* 执行本接口操作的员工信息。注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
188
|
+
*/
|
|
189
|
+
Operator?: UserInfo
|
|
190
|
+
/**
|
|
191
|
+
* 代理企业和员工的信息。在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
192
|
+
*/
|
|
193
|
+
Agent?: Agent
|
|
194
|
+
/**
|
|
195
|
+
* 加签任务Id
|
|
196
|
+
*/
|
|
197
|
+
TaskId?: string
|
|
198
|
+
}
|
|
199
|
+
|
|
182
200
|
/**
|
|
183
201
|
* CreateSeal请求参数结构体
|
|
184
202
|
*/
|
|
@@ -469,6 +487,34 @@ export interface DescribeIntegrationDepartmentsResponse {
|
|
|
469
487
|
RequestId?: string
|
|
470
488
|
}
|
|
471
489
|
|
|
490
|
+
/**
|
|
491
|
+
* CreateFileCounterSign请求参数结构体
|
|
492
|
+
*/
|
|
493
|
+
export interface CreateFileCounterSignRequest {
|
|
494
|
+
/**
|
|
495
|
+
* 需要加签的文件Id。
|
|
496
|
+
|
|
497
|
+
注: `暂时只支持pdf类型的文件`
|
|
498
|
+
*/
|
|
499
|
+
FileId: string
|
|
500
|
+
/**
|
|
501
|
+
* 执行本接口操作的员工信息。注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
502
|
+
*/
|
|
503
|
+
Operator?: UserInfo
|
|
504
|
+
/**
|
|
505
|
+
* 代理企业和员工的信息。在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
506
|
+
*/
|
|
507
|
+
Agent?: Agent
|
|
508
|
+
/**
|
|
509
|
+
* 是否使用同步模式。
|
|
510
|
+
<ul><li><b>false</b>:异步模式,返回taskId。需要使用taskId轮询结果查询接口。</li>
|
|
511
|
+
<li><b>true</b>: 同步模式,此接口将直接返回taskId和ResultFileId(加签后文件id)。</li></ul>
|
|
512
|
+
注:
|
|
513
|
+
1. 当加签文件较大的时候,建议使用异步接口进行操作。否则文件加签时间过长会导致接口超时。
|
|
514
|
+
*/
|
|
515
|
+
SyncMode?: boolean
|
|
516
|
+
}
|
|
517
|
+
|
|
472
518
|
/**
|
|
473
519
|
* 模板中文件的信息结构
|
|
474
520
|
*/
|
|
@@ -582,25 +628,18 @@ export interface DescribeFileUrlsResponse {
|
|
|
582
628
|
}
|
|
583
629
|
|
|
584
630
|
/**
|
|
585
|
-
*
|
|
631
|
+
* CreateFlowReminds请求参数结构体
|
|
586
632
|
*/
|
|
587
|
-
export interface
|
|
633
|
+
export interface CreateFlowRemindsRequest {
|
|
588
634
|
/**
|
|
589
635
|
* 执行本接口操作的员工信息。
|
|
590
636
|
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
591
637
|
*/
|
|
592
638
|
Operator: UserInfo
|
|
593
639
|
/**
|
|
594
|
-
*
|
|
595
|
-
*/
|
|
596
|
-
UserIds: Array<string>
|
|
597
|
-
/**
|
|
598
|
-
* 取值
|
|
599
|
-
<ul><li>OPEN_SERVER_SIGN:企业自动签</li>
|
|
600
|
-
<li>BATCH_SIGN:批量签署</li>
|
|
601
|
-
</ul>
|
|
640
|
+
* 需执行催办的签署流程ID数组,最多包含100个。
|
|
602
641
|
*/
|
|
603
|
-
|
|
642
|
+
FlowIds: Array<string>
|
|
604
643
|
/**
|
|
605
644
|
* 代理企业和员工的信息。
|
|
606
645
|
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
@@ -4615,24 +4654,11 @@ export interface DescribeFileUrlsRequest {
|
|
|
4615
4654
|
*/
|
|
4616
4655
|
Operator: UserInfo
|
|
4617
4656
|
/**
|
|
4618
|
-
*
|
|
4619
|
-
<ul>
|
|
4620
|
-
<li>**FLOW ** : <font color="red">如需下载合同文件请选择此项</font></li>
|
|
4621
|
-
<li>**TEMPLATE ** : 如需下载模板文件请选择此项</li>
|
|
4622
|
-
<li>**DOCUMENT **: 如需下载文档文件请选择此项</li>
|
|
4623
|
-
<li>**SEAL **: 如需下载印章图片请选择此项</li>
|
|
4624
|
-
</ul>
|
|
4657
|
+
* 文件对应的业务类型,目前支持:<ul><li>**FLOW ** : <font color="red">如需下载合同文件请选择此项</font></li><li>**TEMPLATE ** : 如需下载模板文件请选择此项</li><li>**DOCUMENT **: 如需下载文档文件请选择此项</li><li>**SEAL **: 如需下载印章图片请选择此项</li><li>**DIGITFILE**: 如需下载加签文件请选择此项</li></ul>
|
|
4625
4658
|
*/
|
|
4626
4659
|
BusinessType: string
|
|
4627
4660
|
/**
|
|
4628
|
-
*
|
|
4629
|
-
<ul>
|
|
4630
|
-
<li>流程编号</li>
|
|
4631
|
-
<li>模板编号</li>
|
|
4632
|
-
<li>文档编号</li>
|
|
4633
|
-
<li>印章编号</li>
|
|
4634
|
-
<li>如需下载合同文件请传入FlowId,最大支持20个资源</li>
|
|
4635
|
-
</ul>
|
|
4661
|
+
* 业务编号的数组,取值如下:<ul><li>流程编号</li><li>模板编号</li><li>文档编号</li><li>印章编号</li><li>加签文件编号</li><li>如需下载合同文件请传入FlowId,最大支持20个资源</li></ul>
|
|
4636
4662
|
*/
|
|
4637
4663
|
BusinessIds: Array<string>
|
|
4638
4664
|
/**
|
|
@@ -5849,6 +5875,32 @@ export interface CreatePreparedPersonalEsignResponse {
|
|
|
5849
5875
|
RequestId?: string
|
|
5850
5876
|
}
|
|
5851
5877
|
|
|
5878
|
+
/**
|
|
5879
|
+
* VerifyDigitFile返回参数结构体
|
|
5880
|
+
*/
|
|
5881
|
+
export interface VerifyDigitFileResponse {
|
|
5882
|
+
/**
|
|
5883
|
+
* 加签文件MD5哈希值
|
|
5884
|
+
*/
|
|
5885
|
+
PdfResourceMd5?: string
|
|
5886
|
+
/**
|
|
5887
|
+
* 验签结果代码,代码的含义如下:<ul><li>**1**:文件验证成功。</li><li>**2**:文件验证失败。</li></ul>
|
|
5888
|
+
*/
|
|
5889
|
+
VerifyResult?: number
|
|
5890
|
+
/**
|
|
5891
|
+
* 验签序列号, 为11为数组组成的字符串
|
|
5892
|
+
*/
|
|
5893
|
+
VerifySerialNo?: string
|
|
5894
|
+
/**
|
|
5895
|
+
* 验签结果详情,每个签名域对应的验签结果。
|
|
5896
|
+
*/
|
|
5897
|
+
VerifyDigitFileResults?: Array<VerifyDigitFileResult>
|
|
5898
|
+
/**
|
|
5899
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5900
|
+
*/
|
|
5901
|
+
RequestId?: string
|
|
5902
|
+
}
|
|
5903
|
+
|
|
5852
5904
|
/**
|
|
5853
5905
|
* DescribeOrganizationSeals返回参数结构体
|
|
5854
5906
|
*/
|
|
@@ -6101,30 +6153,28 @@ export interface DeleteIntegrationEmployeesRequest {
|
|
|
6101
6153
|
}
|
|
6102
6154
|
|
|
6103
6155
|
/**
|
|
6104
|
-
*
|
|
6156
|
+
* DescribeUserAutoSignStatus请求参数结构体
|
|
6105
6157
|
*/
|
|
6106
|
-
export interface
|
|
6107
|
-
/**
|
|
6108
|
-
* 用户传入的名称
|
|
6109
|
-
*/
|
|
6110
|
-
DisplayName?: string
|
|
6158
|
+
export interface DescribeUserAutoSignStatusRequest {
|
|
6111
6159
|
/**
|
|
6112
|
-
*
|
|
6160
|
+
* 执行本接口操作的员工信息。
|
|
6161
|
+
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
6113
6162
|
*/
|
|
6114
|
-
|
|
6163
|
+
Operator: UserInfo
|
|
6115
6164
|
/**
|
|
6116
|
-
*
|
|
6165
|
+
* 自动签使用的场景值, 可以选择的场景值如下:
|
|
6166
|
+
<ul><li> **E_PRESCRIPTION_AUTO_SIGN** : 电子处方场景</li><li> **OTHER** : 通用场景</li></ul>
|
|
6117
6167
|
*/
|
|
6118
|
-
|
|
6168
|
+
SceneKey: string
|
|
6119
6169
|
/**
|
|
6120
|
-
*
|
|
6121
|
-
可登录腾讯电子签控制台,在 "更多能力"->"组织管理" 中查看某位员工的UserId(在页面中展示为用户ID)。
|
|
6170
|
+
* 要查询状态的用户信息, 包括名字,身份证等
|
|
6122
6171
|
*/
|
|
6123
|
-
|
|
6172
|
+
UserInfo: UserThreeFactor
|
|
6124
6173
|
/**
|
|
6125
|
-
*
|
|
6174
|
+
* 代理企业和员工的信息。
|
|
6175
|
+
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
6126
6176
|
*/
|
|
6127
|
-
|
|
6177
|
+
Agent?: Agent
|
|
6128
6178
|
}
|
|
6129
6179
|
|
|
6130
6180
|
/**
|
|
@@ -7721,6 +7771,33 @@ export interface GetTaskResultApiResponse {
|
|
|
7721
7771
|
RequestId?: string
|
|
7722
7772
|
}
|
|
7723
7773
|
|
|
7774
|
+
/**
|
|
7775
|
+
* 更新员工信息失败返回的数据信息
|
|
7776
|
+
*/
|
|
7777
|
+
export interface FailedUpdateStaffData {
|
|
7778
|
+
/**
|
|
7779
|
+
* 用户传入的名称
|
|
7780
|
+
*/
|
|
7781
|
+
DisplayName?: string
|
|
7782
|
+
/**
|
|
7783
|
+
* 用户传入的手机号,明文展示
|
|
7784
|
+
*/
|
|
7785
|
+
Mobile?: string
|
|
7786
|
+
/**
|
|
7787
|
+
* 失败原因
|
|
7788
|
+
*/
|
|
7789
|
+
Reason?: string
|
|
7790
|
+
/**
|
|
7791
|
+
* 员工在腾讯电子签平台的唯一身份标识,为32位字符串。
|
|
7792
|
+
可登录腾讯电子签控制台,在 "更多能力"->"组织管理" 中查看某位员工的UserId(在页面中展示为用户ID)。
|
|
7793
|
+
*/
|
|
7794
|
+
UserId?: string
|
|
7795
|
+
/**
|
|
7796
|
+
* 员工在第三方平台的openId
|
|
7797
|
+
*/
|
|
7798
|
+
OpenId?: string
|
|
7799
|
+
}
|
|
7800
|
+
|
|
7724
7801
|
/**
|
|
7725
7802
|
* DescribeOrganizationVerifyStatus请求参数结构体
|
|
7726
7803
|
*/
|
|
@@ -7847,28 +7924,70 @@ export interface ModifyApplicationCallbackInfoRequest {
|
|
|
7847
7924
|
}
|
|
7848
7925
|
|
|
7849
7926
|
/**
|
|
7850
|
-
*
|
|
7927
|
+
* CreateFileCounterSign返回参数结构体
|
|
7851
7928
|
*/
|
|
7852
|
-
export interface
|
|
7929
|
+
export interface CreateFileCounterSignResponse {
|
|
7853
7930
|
/**
|
|
7854
|
-
*
|
|
7855
|
-
|
|
7931
|
+
* 加签任务的状态。
|
|
7932
|
+
|
|
7933
|
+
<ul>
|
|
7934
|
+
<li><b>PROCESSING</b>: 任务正在执行中。</li>
|
|
7935
|
+
<li><b>FINISHED</b>: 已执行成功</li>
|
|
7936
|
+
</ul>
|
|
7856
7937
|
*/
|
|
7857
|
-
|
|
7938
|
+
Status?: string
|
|
7858
7939
|
/**
|
|
7859
|
-
*
|
|
7860
|
-
<ul><li> **E_PRESCRIPTION_AUTO_SIGN** : 电子处方场景</li><li> **OTHER** : 通用场景</li></ul>
|
|
7940
|
+
* 加签完成后新的文件Id
|
|
7861
7941
|
*/
|
|
7862
|
-
|
|
7942
|
+
ResultFileId?: string
|
|
7863
7943
|
/**
|
|
7864
|
-
*
|
|
7944
|
+
* 异步模式下用于轮询状态的任务Id
|
|
7865
7945
|
*/
|
|
7866
|
-
|
|
7946
|
+
TaskId?: string
|
|
7867
7947
|
/**
|
|
7868
|
-
*
|
|
7869
|
-
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
7948
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7870
7949
|
*/
|
|
7871
|
-
|
|
7950
|
+
RequestId?: string
|
|
7951
|
+
}
|
|
7952
|
+
|
|
7953
|
+
/**
|
|
7954
|
+
* 数字加签文件验签结果
|
|
7955
|
+
*/
|
|
7956
|
+
export interface VerifyDigitFileResult {
|
|
7957
|
+
/**
|
|
7958
|
+
* 证书起始时间的Unix时间戳,单位毫秒
|
|
7959
|
+
*/
|
|
7960
|
+
CertNotBefore?: number
|
|
7961
|
+
/**
|
|
7962
|
+
* 证书过期时间的时间戳,单位毫秒
|
|
7963
|
+
*/
|
|
7964
|
+
CertNotAfter?: number
|
|
7965
|
+
/**
|
|
7966
|
+
* 证书序列号,在数字证书申请过程中,系统会自动生成一个独一无二的序号。
|
|
7967
|
+
*/
|
|
7968
|
+
CertSn?: string
|
|
7969
|
+
/**
|
|
7970
|
+
* 证书签名算法, 如SHA1withRSA等算法
|
|
7971
|
+
*/
|
|
7972
|
+
SignAlgorithm?: string
|
|
7973
|
+
/**
|
|
7974
|
+
* 签署时间的Unix时间戳,单位毫秒
|
|
7975
|
+
*/
|
|
7976
|
+
SignTime?: number
|
|
7977
|
+
/**
|
|
7978
|
+
* 签名类型。0表示带签章的数字签名,1表示仅数字签名
|
|
7979
|
+
*/
|
|
7980
|
+
SignType?: number
|
|
7981
|
+
/**
|
|
7982
|
+
* 申请证书的主体的名字
|
|
7983
|
+
|
|
7984
|
+
如果是在腾讯电子签平台签署, 则对应的主体的名字个数如下
|
|
7985
|
+
**企业**: ESS@企业名称@编码
|
|
7986
|
+
**个人**: ESS@个人姓名@证件号@808854
|
|
7987
|
+
|
|
7988
|
+
如果在其他平台签署的, 主体的名字参考其他平台的说明
|
|
7989
|
+
*/
|
|
7990
|
+
SignerName?: string
|
|
7872
7991
|
}
|
|
7873
7992
|
|
|
7874
7993
|
/**
|
|
@@ -8203,56 +8322,31 @@ export interface FlowGroupApproverInfo {
|
|
|
8203
8322
|
}
|
|
8204
8323
|
|
|
8205
8324
|
/**
|
|
8206
|
-
*
|
|
8325
|
+
* DescribeFileCounterSignResult返回参数结构体
|
|
8207
8326
|
*/
|
|
8208
|
-
export interface
|
|
8209
|
-
/**
|
|
8210
|
-
* 执行本接口操作的员工信息。
|
|
8211
|
-
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
8212
|
-
*/
|
|
8213
|
-
Operator: UserInfo
|
|
8327
|
+
export interface DescribeFileCounterSignResultResponse {
|
|
8214
8328
|
/**
|
|
8215
|
-
*
|
|
8216
|
-
*/
|
|
8217
|
-
Limit?: number
|
|
8218
|
-
/**
|
|
8219
|
-
* 指定分页返回第几页的数据,如果不传默认返回第一页,页码从 0 开始,即首页为 0,最大 20000。
|
|
8220
|
-
*/
|
|
8221
|
-
Offset?: number
|
|
8222
|
-
/**
|
|
8223
|
-
* 查询授权用户信息类型,取值如下:
|
|
8329
|
+
* 加签任务的状态。
|
|
8224
8330
|
|
|
8225
|
-
<ul>
|
|
8226
|
-
|
|
8227
|
-
|
|
8228
|
-
|
|
8229
|
-
|
|
8331
|
+
<ul>
|
|
8332
|
+
<li><b>PROCESSING</b>: 任务正在执行中。</li>
|
|
8333
|
+
<li><b>FINISHED</b>: 已执行成功</li>
|
|
8334
|
+
<li><b>FAILED</b>: 执行失败</li>
|
|
8335
|
+
</ul>
|
|
8230
8336
|
*/
|
|
8231
|
-
|
|
8337
|
+
Status?: string
|
|
8232
8338
|
/**
|
|
8233
|
-
*
|
|
8339
|
+
* 加签完成后新的文件Id
|
|
8234
8340
|
*/
|
|
8235
|
-
|
|
8341
|
+
ResultFileId?: string
|
|
8236
8342
|
/**
|
|
8237
|
-
*
|
|
8238
|
-
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
8343
|
+
* 失败的错误信息,加签任务失败的情况下会返回。
|
|
8239
8344
|
*/
|
|
8240
|
-
|
|
8345
|
+
ErrorDetail?: string
|
|
8241
8346
|
/**
|
|
8242
|
-
*
|
|
8243
|
-
<ul>
|
|
8244
|
-
<li>空:(默认)仅查询启用状态的印章;</li>
|
|
8245
|
-
<li><strong>ALL</strong>:查询所有状态的印章;</li>
|
|
8246
|
-
<li><strong>CHECKING</strong>:查询待审核的印章;</li>
|
|
8247
|
-
<li><strong>SUCCESS</strong>:查询启用状态的印章;</li>
|
|
8248
|
-
<li><strong>FAIL</strong>:查询印章审核拒绝的印章;</li>
|
|
8249
|
-
<li><strong>DISABLE</strong>:查询已停用的印章;</li>
|
|
8250
|
-
<li><strong>STOPPED</strong>:查询已终止的印章;</li>
|
|
8251
|
-
<li><strong>VOID</strong>:查询已作废的印章;</li>
|
|
8252
|
-
<li><strong>INVALID</strong>:查询已失效的印章。</li>
|
|
8253
|
-
</ul>
|
|
8347
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
8254
8348
|
*/
|
|
8255
|
-
|
|
8349
|
+
RequestId?: string
|
|
8256
8350
|
}
|
|
8257
8351
|
|
|
8258
8352
|
/**
|
|
@@ -8864,18 +8958,25 @@ export interface CreateBatchSignUrlRequest {
|
|
|
8864
8958
|
}
|
|
8865
8959
|
|
|
8866
8960
|
/**
|
|
8867
|
-
*
|
|
8961
|
+
* CreateExtendedServiceAuthInfos请求参数结构体
|
|
8868
8962
|
*/
|
|
8869
|
-
export interface
|
|
8963
|
+
export interface CreateExtendedServiceAuthInfosRequest {
|
|
8870
8964
|
/**
|
|
8871
8965
|
* 执行本接口操作的员工信息。
|
|
8872
8966
|
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
8873
8967
|
*/
|
|
8874
8968
|
Operator: UserInfo
|
|
8875
8969
|
/**
|
|
8876
|
-
*
|
|
8970
|
+
* 本企业员工的id,需要已实名,正常在职员工
|
|
8877
8971
|
*/
|
|
8878
|
-
|
|
8972
|
+
UserIds: Array<string>
|
|
8973
|
+
/**
|
|
8974
|
+
* 取值
|
|
8975
|
+
<ul><li>OPEN_SERVER_SIGN:企业自动签</li>
|
|
8976
|
+
<li>BATCH_SIGN:批量签署</li>
|
|
8977
|
+
</ul>
|
|
8978
|
+
*/
|
|
8979
|
+
ExtendServiceType?: string
|
|
8879
8980
|
/**
|
|
8880
8981
|
* 代理企业和员工的信息。
|
|
8881
8982
|
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
@@ -8883,6 +8984,24 @@ export interface CreateFlowRemindsRequest {
|
|
|
8883
8984
|
Agent?: Agent
|
|
8884
8985
|
}
|
|
8885
8986
|
|
|
8987
|
+
/**
|
|
8988
|
+
* VerifyDigitFile请求参数结构体
|
|
8989
|
+
*/
|
|
8990
|
+
export interface VerifyDigitFileRequest {
|
|
8991
|
+
/**
|
|
8992
|
+
* 执行本接口操作的员工信息。注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
|
|
8993
|
+
*/
|
|
8994
|
+
Operator?: UserInfo
|
|
8995
|
+
/**
|
|
8996
|
+
* 代理企业和员工的信息。在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
8997
|
+
*/
|
|
8998
|
+
Agent?: Agent
|
|
8999
|
+
/**
|
|
9000
|
+
* 加签接口返回的文件Id
|
|
9001
|
+
*/
|
|
9002
|
+
FileId?: string
|
|
9003
|
+
}
|
|
9004
|
+
|
|
8886
9005
|
/**
|
|
8887
9006
|
* UpdateIntegrationEmployees请求参数结构体
|
|
8888
9007
|
*/
|
|
@@ -9472,6 +9591,59 @@ export interface UploadFilesRequest {
|
|
|
9472
9591
|
Agent?: Agent
|
|
9473
9592
|
}
|
|
9474
9593
|
|
|
9594
|
+
/**
|
|
9595
|
+
* DescribeOrganizationSeals请求参数结构体
|
|
9596
|
+
*/
|
|
9597
|
+
export interface DescribeOrganizationSealsRequest {
|
|
9598
|
+
/**
|
|
9599
|
+
* 执行本接口操作的员工信息。
|
|
9600
|
+
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
9601
|
+
*/
|
|
9602
|
+
Operator: UserInfo
|
|
9603
|
+
/**
|
|
9604
|
+
* 指定分页每页返回的数据条数,如果不传默认为 20,单页最大支持 200。
|
|
9605
|
+
*/
|
|
9606
|
+
Limit?: number
|
|
9607
|
+
/**
|
|
9608
|
+
* 指定分页返回第几页的数据,如果不传默认返回第一页,页码从 0 开始,即首页为 0,最大 20000。
|
|
9609
|
+
*/
|
|
9610
|
+
Offset?: number
|
|
9611
|
+
/**
|
|
9612
|
+
* 查询授权用户信息类型,取值如下:
|
|
9613
|
+
|
|
9614
|
+
<ul> <li><b>0</b>:(默认)不返回授权用户信息</li> <li><b>1</b>:返回授权用户的信息</li> </ul>
|
|
9615
|
+
*/
|
|
9616
|
+
InfoType?: number
|
|
9617
|
+
/**
|
|
9618
|
+
* 印章id,是否查询特定的印章(没有输入返回所有)
|
|
9619
|
+
*/
|
|
9620
|
+
SealId?: string
|
|
9621
|
+
/**
|
|
9622
|
+
* 印章种类列表(均为组织机构印章)。 若无特定需求,将展示所有类型的印章。 目前支持以下几种:<ul> <li><strong>OFFICIAL</strong>:企业公章;</li> <li><strong>CONTRACT</strong>:合同专用章;</li> <li><strong>ORGANIZATION_SEAL</strong>:企业印章(通过图片上传创建);</li> <li><strong>LEGAL_PERSON_SEAL</strong>:法定代表人章。</li> <li><strong>EMPLOYEE_QUALIFICATION_SEAL</strong>:员工执业章。</li> </ul>
|
|
9623
|
+
*/
|
|
9624
|
+
SealTypes?: Array<string>
|
|
9625
|
+
/**
|
|
9626
|
+
* 代理企业和员工的信息。
|
|
9627
|
+
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
9628
|
+
*/
|
|
9629
|
+
Agent?: Agent
|
|
9630
|
+
/**
|
|
9631
|
+
* 需查询的印章状态列表。
|
|
9632
|
+
<ul>
|
|
9633
|
+
<li>空:(默认)仅查询启用状态的印章;</li>
|
|
9634
|
+
<li><strong>ALL</strong>:查询所有状态的印章;</li>
|
|
9635
|
+
<li><strong>CHECKING</strong>:查询待审核的印章;</li>
|
|
9636
|
+
<li><strong>SUCCESS</strong>:查询启用状态的印章;</li>
|
|
9637
|
+
<li><strong>FAIL</strong>:查询印章审核拒绝的印章;</li>
|
|
9638
|
+
<li><strong>DISABLE</strong>:查询已停用的印章;</li>
|
|
9639
|
+
<li><strong>STOPPED</strong>:查询已终止的印章;</li>
|
|
9640
|
+
<li><strong>VOID</strong>:查询已作废的印章;</li>
|
|
9641
|
+
<li><strong>INVALID</strong>:查询已失效的印章。</li>
|
|
9642
|
+
</ul>
|
|
9643
|
+
*/
|
|
9644
|
+
SealStatuses?: Array<string>
|
|
9645
|
+
}
|
|
9646
|
+
|
|
9475
9647
|
/**
|
|
9476
9648
|
* DescribePersonCertificate请求参数结构体
|
|
9477
9649
|
*/
|
|
@@ -10108,33 +10280,27 @@ export interface CreateOrganizationInfoChangeUrlRequest {
|
|
|
10108
10280
|
export interface DescribeOrganizationGroupOrganizationsResponse {
|
|
10109
10281
|
/**
|
|
10110
10282
|
* 符合查询条件的资源实例总数量。
|
|
10111
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
10112
10283
|
*/
|
|
10113
10284
|
Total?: number
|
|
10114
10285
|
/**
|
|
10115
10286
|
* 已授权待激活的子企业总数量
|
|
10116
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
10117
10287
|
*/
|
|
10118
10288
|
JoinedTotal?: number
|
|
10119
10289
|
/**
|
|
10120
10290
|
* 已加入的企业数量(废弃,请使用ActivatedTotal)
|
|
10121
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
10122
10291
|
* @deprecated
|
|
10123
10292
|
*/
|
|
10124
10293
|
ActivedTotal?: number
|
|
10125
10294
|
/**
|
|
10126
10295
|
* 如果入参Export为 true 时使用,表示导出Excel的url
|
|
10127
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
10128
10296
|
*/
|
|
10129
10297
|
ExportUrl?: string
|
|
10130
10298
|
/**
|
|
10131
10299
|
* 成员企业信息列表
|
|
10132
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
10133
10300
|
*/
|
|
10134
10301
|
List?: Array<GroupOrganization>
|
|
10135
10302
|
/**
|
|
10136
10303
|
* 已加入的子企业总数量
|
|
10137
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
10138
10304
|
*/
|
|
10139
10305
|
ActivatedTotal?: number
|
|
10140
10306
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
|
2
|
-
import { DescribePersonCertificateResponse, CreateOrganizationGroupInvitationLinkRequest, DescribeCancelFlowsTaskResponse, CreateSealRequest, CancelFlowResponse, DescribeExtendedServiceAuthDetailResponse, UpdateIntegrationEmployeesResponse, CreatePreparedPersonalEsignRequest, CreateLegalSealQrCodeResponse, DescribeIntegrationDepartmentsResponse, DescribeOrganizationVerifyStatusResponse, DeleteExtendedServiceAuthInfosResponse, CreateDynamicFlowApproverRequest, CreateFlowApproversResponse, DescribeFileUrlsResponse,
|
|
2
|
+
import { DescribePersonCertificateResponse, CreateOrganizationGroupInvitationLinkRequest, DescribeCancelFlowsTaskResponse, DescribeFileCounterSignResultRequest, CreateSealRequest, CancelFlowResponse, DescribeExtendedServiceAuthDetailResponse, UpdateIntegrationEmployeesResponse, CreatePreparedPersonalEsignRequest, CreateLegalSealQrCodeResponse, DescribeIntegrationDepartmentsResponse, CreateFileCounterSignRequest, DescribeOrganizationVerifyStatusResponse, DeleteExtendedServiceAuthInfosResponse, CreateDynamicFlowApproverRequest, CreateFlowApproversResponse, DescribeFileUrlsResponse, CreateFlowRemindsRequest, CancelUserAutoSignEnableUrlRequest, ModifyApplicationCallbackInfoResponse, CreateMultiFlowSignQRCodeResponse, DescribeIntegrationDepartmentsRequest, DescribeThirdPartyAuthCodeResponse, DescribeUserVerifyStatusResponse, DisableUserAutoSignResponse, ModifyExtendedServiceRequest, CreateBatchInitOrganizationUrlResponse, BindEmployeeUserIdWithClientOpenIdResponse, CreateIntegrationEmployeesRequest, CreateOrganizationAuthFileResponse, DescribeIntegrationRolesRequest, CreateFlowEvidenceReportRequest, StartFlowResponse, CreateOrganizationAuthUrlRequest, CreateBatchQuickSignUrlResponse, CreateIntegrationRoleRequest, DeleteIntegrationRoleUsersResponse, CreateConvertTaskApiRequest, DeleteIntegrationEmployeesResponse, CreateFlowGroupSignReviewResponse, CreateBatchSignUrlResponse, CreateFlowRemindsResponse, DescribeOrganizationGroupOrganizationsRequest, DescribeUserAutoSignStatusResponse, CreateFlowGroupByFilesRequest, DescribeFlowComponentsResponse, DescribeFlowEvidenceReportResponse, DescribeSignFaceVideoRequest, CreateEmployeeQualificationSealQrCodeResponse, CreateFlowGroupByTemplatesResponse, CreateUserVerifyUrlResponse, DescribeBatchOrganizationRegistrationUrlsRequest, CreateDocumentResponse, DescribeIntegrationEmployeesRequest, UnbindEmployeeUserIdWithClientOpenIdResponse, CreateIntegrationUserRolesResponse, CreateFlowRequest, CreateSchemeUrlRequest, DeleteIntegrationDepartmentResponse, DescribeThirdPartyAuthCodeRequest, CreateDynamicFlowApproverResponse, CreateBatchOrganizationRegistrationTasksResponse, CreateReleaseFlowResponse, CreateBatchInitOrganizationUrlRequest, CreateWebThemeConfigResponse, BindEmployeeUserIdWithClientOpenIdRequest, CreateOrganizationInfoChangeUrlResponse, DeleteOrganizationAuthorizationsResponse, DescribeExtendedServiceAuthDetailRequest, CreateOrganizationAuthFileRequest, CreateIntegrationDepartmentResponse, DescribeFlowTemplatesRequest, CreateIntegrationSubOrganizationActiveRecordResponse, ArchiveDynamicFlowResponse, DeleteSealPoliciesResponse, CreateLegalSealQrCodeRequest, DescribeOrganizationAuthStatusResponse, CreateUserAutoSignSealUrlResponse, CreateEmployeeQualificationSealQrCodeRequest, CreatePersonAuthCertificateImageResponse, CreateBatchCancelFlowUrlResponse, CreateSealPolicyResponse, DisableUserAutoSignRequest, DescribeIntegrationEmployeesResponse, DeleteSealPoliciesRequest, CreateConvertTaskApiResponse, CreateFlowSignReviewRequest, CreateOrganizationAuthUrlResponse, DescribeOrganizationAuthStatusRequest, CreateSchemeUrlResponse, CreateFlowByFilesRequest, CreateFlowSignUrlResponse, DescribeFileUrlsRequest, CreatePartnerAutoSignAuthUrlResponse, ArchiveDynamicFlowRequest, CreateUserAutoSignSealUrlRequest, ModifyFlowDeadlineRequest, CreateFlowApproversRequest, ModifyFlowDeadlineResponse, CreateFlowEvidenceReportResponse, CreateIntegrationRoleResponse, DescribeFlowComponentsRequest, CreateIntegrationDepartmentRequest, DescribeUserVerifyStatusRequest, CreateFlowBlockchainEvidenceUrlResponse, CreateDocumentRequest, CreatePreparedPersonalEsignResponse, VerifyDigitFileResponse, DescribeOrganizationSealsResponse, CreateUserMobileChangeUrlRequest, CreateEmbedWebUrlRequest, DeleteIntegrationEmployeesRequest, DescribeUserAutoSignStatusRequest, GetTaskResultApiRequest, DescribeFlowBriefsResponse, ModifyIntegrationRoleRequest, CreateFlowGroupByFilesResponse, CreateReleaseFlowRequest, DeleteIntegrationRoleUsersRequest, CreateFlowSignUrlRequest, CreateIntegrationEmployeesResponse, CreateIntegrationUserRolesRequest, CreatePersonAuthCertificateImageRequest, CreateFlowByFilesResponse, UploadFilesResponse, DescribeFlowEvidenceReportRequest, DescribeBillUsageRequest, DescribeBillUsageResponse, CreateFlowSignReviewResponse, ModifyIntegrationDepartmentRequest, RenewAutoSignLicenseRequest, CreateUserAutoSignEnableUrlRequest, CreateOrganizationBatchSignUrlResponse, UnbindEmployeeUserIdWithClientOpenIdRequest, DeleteOrganizationAuthorizationsRequest, CreateBatchOrganizationRegistrationTasksRequest, CreateUserVerifyUrlRequest, CreatePartnerAutoSignAuthUrlRequest, CreateExtendedServiceAuthInfosResponse, CreateWebThemeConfigRequest, CreateOrganizationBatchSignUrlRequest, CreatePrepareFlowResponse, ModifyIntegrationDepartmentResponse, GetTaskResultApiResponse, DescribeOrganizationVerifyStatusRequest, CancelMultiFlowSignQRCodeRequest, DeleteIntegrationDepartmentRequest, CancelUserAutoSignEnableUrlResponse, ModifyApplicationCallbackInfoRequest, CreateFileCounterSignResponse, StartFlowRequest, CreateSealResponse, CreatePrepareFlowRequest, DescribeCancelFlowsTaskRequest, CreateEmbedWebUrlResponse, ModifyExtendedServiceResponse, CreateFlowGroupByTemplatesRequest, DescribeFileCounterSignResultResponse, CancelFlowRequest, DescribeExtendedServiceAuthInfosRequest, DescribeIntegrationRolesResponse, CreateBatchSignUrlRequest, CreateExtendedServiceAuthInfosRequest, VerifyDigitFileRequest, UpdateIntegrationEmployeesRequest, DescribeFlowBriefsRequest, CreateSealPolicyRequest, DescribeBillUsageDetailResponse, CreateUserMobileChangeUrlResponse, CreateUserAutoSignEnableUrlResponse, DescribeSignFaceVideoResponse, ModifyIntegrationRoleResponse, VerifyPdfResponse, CreateFlowGroupSignReviewRequest, DescribeBillUsageDetailRequest, DescribeFlowTemplatesResponse, DescribeBatchOrganizationRegistrationUrlsResponse, UploadFilesRequest, DescribeOrganizationSealsRequest, DescribePersonCertificateRequest, CreateBatchOrganizationAuthorizationUrlRequest, CreateBatchCancelFlowUrlRequest, CreateMultiFlowSignQRCodeRequest, VerifyPdfRequest, DescribeFlowInfoRequest, DeleteExtendedServiceAuthInfosRequest, DescribeExtendedServiceAuthInfosResponse, CreateBatchOrganizationAuthorizationUrlResponse, DescribeFlowInfoResponse, RenewAutoSignLicenseResponse, CancelMultiFlowSignQRCodeResponse, CreateFlowResponse, CreateIntegrationSubOrganizationActiveRecordRequest, CreateFlowBlockchainEvidenceUrlRequest, CreateBatchQuickSignUrlRequest, CreateOrganizationInfoChangeUrlRequest, DescribeOrganizationGroupOrganizationsResponse, CreateOrganizationGroupInvitationLinkResponse } from "./ess_models";
|
|
3
3
|
/**
|
|
4
4
|
* ess client
|
|
5
5
|
* @class
|
|
@@ -229,6 +229,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
229
229
|
### 4.合同组暂不支持抄送功能
|
|
230
230
|
*/
|
|
231
231
|
CreateFlowGroupByTemplates(req: CreateFlowGroupByTemplatesRequest, cb?: (error: string, rep: CreateFlowGroupByTemplatesResponse) => void): Promise<CreateFlowGroupByTemplatesResponse>;
|
|
232
|
+
/**
|
|
233
|
+
* 对加签后的文件进行数字签名验证,判断数字签名是否有效。
|
|
234
|
+
*/
|
|
235
|
+
VerifyDigitFile(req: VerifyDigitFileRequest, cb?: (error: string, rep: VerifyDigitFileResponse) => void): Promise<VerifyDigitFileResponse>;
|
|
232
236
|
/**
|
|
233
237
|
* 创建一个用于他方自动签授权的链接(可选择他方授权或我方授权)。通过这个链接,合作方企业可以直接进入小程序,进行自动签授权操作。
|
|
234
238
|
|
|
@@ -1165,6 +1169,12 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
1165
1169
|
<svg id="SvgjsSvg1006" width="262" height="229" xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.com/svgjs"><defs id="SvgjsDefs1007"><pattern patternUnits="userSpaceOnUse" id="pattern_mark_0" width="300" height="300"><text x="150" y="100" fill="rgba(229,229,229,0.8)" font-size="18" transform="rotate(-45, 150, 150)" style="dominant-baseline: middle; text-anchor: middle;"></text></pattern><pattern patternUnits="userSpaceOnUse" id="pattern_mark_1" width="300" height="300"><text x="150" y="200" fill="rgba(229,229,229,0.8)" font-size="18" transform="rotate(-45, 150, 150)" style="dominant-baseline: middle; text-anchor: middle;"></text></pattern><marker id="SvgjsMarker1021" markerWidth="12" markerHeight="8" refX="9" refY="4" viewBox="0 0 12 8" orient="auto" markerUnits="userSpaceOnUse" stroke-dasharray="0,0"><path id="SvgjsPath1022" d="M0,0 L12,4 L0,8 L0,0" fill="#323232" stroke="#323232" stroke-width="1"></path></marker></defs><rect id="svgbackgroundid" width="262" height="229" fill="transparent"></rect><rect id="SvgjsRect1009" width="262" height="229" fill="url(#pattern_mark_0)"></rect><rect id="SvgjsRect1010" width="262" height="229" fill="url(#pattern_mark_1)"></rect><g id="SvgjsG1011" transform="translate(31.75,25)"><path id="SvgjsPath1012" d="M 0 0L 198 0L 198 59L 0 59Z" stroke="rgba(86,146,48,1)" stroke-width="1" fill-opacity="1" fill="#e7ebed"></path><g id="SvgjsG1013"><text id="SvgjsText1014" font-family="微软雅黑" text-anchor="middle" font-size="13px" width="178px" fill="#323232" font-weight="400" align="middle" lineHeight="125%" anchor="middle" family="微软雅黑" size="13px" weight="400" font-style="" opacity="1" y="10.375" transform="rotate(0)"><tspan id="SvgjsTspan1015" dy="16" x="99"><tspan id="SvgjsTspan1016" style="text-decoration:;fill: rgb(28, 30, 33);">CreateFlowEvidenceReport</tspan></tspan><tspan id="SvgjsTspan1017" dy="16" x="99"><tspan id="SvgjsTspan1018" style="text-decoration:;fill: rgb(51, 51, 51);">提交申请出证报告任务</tspan></tspan></text></g></g><g id="SvgjsG1019"><path id="SvgjsPath1020" d="M130.75 84.5L130.75 114.5L130.75 114.5L130.75 143.2" stroke="#323232" stroke-width="1" fill="none" marker-end="url(#SvgjsMarker1021)"></path></g><g id="SvgjsG1023" transform="translate(25,145)"><path id="SvgjsPath1024" d="M 0 0L 211.5 0L 211.5 59L 0 59Z" stroke="rgba(86,146,48,1)" stroke-width="1" fill-opacity="1" fill="#e7ebed"></path><g id="SvgjsG1025"><text id="SvgjsText1026" font-family="微软雅黑" text-anchor="middle" font-size="13px" width="192px" fill="#323232" font-weight="400" align="middle" lineHeight="125%" anchor="middle" family="微软雅黑" size="13px" weight="400" font-style="" opacity="1" y="10.375" transform="rotate(0)"><tspan id="SvgjsTspan1027" dy="16" x="106"><tspan id="SvgjsTspan1028" style="text-decoration:;fill: rgb(28, 30, 33);">DescribeFlowEvidenceReport</tspan></tspan><tspan id="SvgjsTspan1029" dy="16" x="106"><tspan id="SvgjsTspan1030" style="text-decoration:;fill: rgb(51, 51, 51);">获取出证报告任务执行结果</tspan></tspan></text></g></g></svg>
|
|
1166
1170
|
*/
|
|
1167
1171
|
DescribeFlowEvidenceReport(req: DescribeFlowEvidenceReportRequest, cb?: (error: string, rep: DescribeFlowEvidenceReportResponse) => void): Promise<DescribeFlowEvidenceReportResponse>;
|
|
1172
|
+
/**
|
|
1173
|
+
* 文件CA加签任务结果查询接口,用于查询 CreateFileCounterSign接口 发起的异步加签任务。
|
|
1174
|
+
|
|
1175
|
+
注意:`此接口为『数字文件CA加签服务』白名单功能,使用前请联系对接的客户经理沟通。`
|
|
1176
|
+
*/
|
|
1177
|
+
DescribeFileCounterSignResult(req: DescribeFileCounterSignResultRequest, cb?: (error: string, rep: DescribeFileCounterSignResultResponse) => void): Promise<DescribeFileCounterSignResultResponse>;
|
|
1168
1178
|
/**
|
|
1169
1179
|
* 此接口(GetTaskResultApi)用来查询转换任务的状态。如需发起转换任务,请使用<a href="https://qian.tencent.com/developers/companyApis/templatesAndFiles/CreateConvertTaskApi" target="_blank">创建文件转换任务接口</a>进行资源文件的转换操作<br />
|
|
1170
1180
|
前提条件:已调用 <a href="https://qian.tencent.com/developers/companyApis/templatesAndFiles/CreateConvertTaskApi" target="_blank">创建文件转换任务接口</a>进行文件转换,并得到了返回的转换任务Id。<br />
|
|
@@ -1250,6 +1260,12 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
1250
1260
|
</ul>
|
|
1251
1261
|
*/
|
|
1252
1262
|
DescribeThirdPartyAuthCode(req: DescribeThirdPartyAuthCodeRequest, cb?: (error: string, rep: DescribeThirdPartyAuthCodeResponse) => void): Promise<DescribeThirdPartyAuthCodeResponse>;
|
|
1263
|
+
/**
|
|
1264
|
+
* 此接口用于发起数字文件CA加签操作。可以使用同步或者异步模式进行。
|
|
1265
|
+
|
|
1266
|
+
**注意: 1. 文件类型暂时仅支持PDF类型文件。2. 此接口为『数字文件CA加签服务』白名单功能,使用前请联系对接的客户经理沟通。**
|
|
1267
|
+
*/
|
|
1268
|
+
CreateFileCounterSign(req: CreateFileCounterSignRequest, cb?: (error: string, rep: CreateFileCounterSignResponse) => void): Promise<CreateFileCounterSignResponse>;
|
|
1253
1269
|
/**
|
|
1254
1270
|
* 查询企业印章列表。
|
|
1255
1271
|
|
|
@@ -276,6 +276,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
276
276
|
async CreateFlowGroupByTemplates(req, cb) {
|
|
277
277
|
return this.request("CreateFlowGroupByTemplates", req, cb);
|
|
278
278
|
}
|
|
279
|
+
/**
|
|
280
|
+
* 对加签后的文件进行数字签名验证,判断数字签名是否有效。
|
|
281
|
+
*/
|
|
282
|
+
async VerifyDigitFile(req, cb) {
|
|
283
|
+
return this.request("VerifyDigitFile", req, cb);
|
|
284
|
+
}
|
|
279
285
|
/**
|
|
280
286
|
* 创建一个用于他方自动签授权的链接(可选择他方授权或我方授权)。通过这个链接,合作方企业可以直接进入小程序,进行自动签授权操作。
|
|
281
287
|
|
|
@@ -1362,6 +1368,14 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
1362
1368
|
async DescribeFlowEvidenceReport(req, cb) {
|
|
1363
1369
|
return this.request("DescribeFlowEvidenceReport", req, cb);
|
|
1364
1370
|
}
|
|
1371
|
+
/**
|
|
1372
|
+
* 文件CA加签任务结果查询接口,用于查询 CreateFileCounterSign接口 发起的异步加签任务。
|
|
1373
|
+
|
|
1374
|
+
注意:`此接口为『数字文件CA加签服务』白名单功能,使用前请联系对接的客户经理沟通。`
|
|
1375
|
+
*/
|
|
1376
|
+
async DescribeFileCounterSignResult(req, cb) {
|
|
1377
|
+
return this.request("DescribeFileCounterSignResult", req, cb);
|
|
1378
|
+
}
|
|
1365
1379
|
/**
|
|
1366
1380
|
* 此接口(GetTaskResultApi)用来查询转换任务的状态。如需发起转换任务,请使用<a href="https://qian.tencent.com/developers/companyApis/templatesAndFiles/CreateConvertTaskApi" target="_blank">创建文件转换任务接口</a>进行资源文件的转换操作<br />
|
|
1367
1381
|
前提条件:已调用 <a href="https://qian.tencent.com/developers/companyApis/templatesAndFiles/CreateConvertTaskApi" target="_blank">创建文件转换任务接口</a>进行文件转换,并得到了返回的转换任务Id。<br />
|
|
@@ -1457,6 +1471,14 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
1457
1471
|
async DescribeThirdPartyAuthCode(req, cb) {
|
|
1458
1472
|
return this.request("DescribeThirdPartyAuthCode", req, cb);
|
|
1459
1473
|
}
|
|
1474
|
+
/**
|
|
1475
|
+
* 此接口用于发起数字文件CA加签操作。可以使用同步或者异步模式进行。
|
|
1476
|
+
|
|
1477
|
+
**注意: 1. 文件类型暂时仅支持PDF类型文件。2. 此接口为『数字文件CA加签服务』白名单功能,使用前请联系对接的客户经理沟通。**
|
|
1478
|
+
*/
|
|
1479
|
+
async CreateFileCounterSign(req, cb) {
|
|
1480
|
+
return this.request("CreateFileCounterSign", req, cb);
|
|
1481
|
+
}
|
|
1460
1482
|
/**
|
|
1461
1483
|
* 查询企业印章列表。
|
|
1462
1484
|
|