tencentcloud-sdk-nodejs-essbasic 4.0.259 → 4.0.263
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 +807 -116
- package/SERVICE_CHANGELOG.md +68052 -0
- package/package.json +1 -1
- package/products.md +51 -50
- package/src/services/essbasic/v20210526/essbasic_client.ts +72 -17
- package/src/services/essbasic/v20210526/essbasic_models.ts +495 -162
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +31 -5
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +38 -6
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +415 -135
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
|
2
|
-
import { SyncProxyOrganizationResponse, PrepareFlowsResponse, DescribeResourceUrlsByFlowsResponse, DescribeTemplatesResponse,
|
|
2
|
+
import { SyncProxyOrganizationResponse, PrepareFlowsResponse, GetDownloadFlowUrlResponse, DescribeResourceUrlsByFlowsResponse, DescribeTemplatesResponse, OperateChannelTemplateResponse, CreateSignUrlsRequest, DescribeFlowDetailInfoRequest, DescribeResourceUrlsByFlowsRequest, GetDownloadFlowUrlRequest, CreateConsoleLoginUrlRequest, CreateFlowsByTemplatesResponse, PrepareFlowsRequest, SyncProxyOrganizationOperatorsResponse, DescribeTemplatesRequest, SyncProxyOrganizationOperatorsRequest, CreateConsoleLoginUrlResponse, CreateFlowsByTemplatesRequest, SyncProxyOrganizationRequest, CreateSignUrlsResponse, OperateChannelTemplateRequest, DescribeUsageRequest, DescribeUsageResponse, DescribeFlowDetailInfoResponse } from "./essbasic_models";
|
|
3
3
|
/**
|
|
4
4
|
* essbasic client
|
|
5
5
|
* @class
|
|
@@ -10,10 +10,36 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
10
10
|
* 接口(CreateFlowsByTemplates)用于使用多个模板批量创建流程
|
|
11
11
|
*/
|
|
12
12
|
CreateFlowsByTemplates(req: CreateFlowsByTemplatesRequest, cb?: (error: string, rep: CreateFlowsByTemplatesResponse) => void): Promise<CreateFlowsByTemplatesResponse>;
|
|
13
|
+
/**
|
|
14
|
+
* 此接口(GetDownloadFlowUrl)用于创建电子签批量下载确认页面链接,支持客户合同(流程)归类打包下载。
|
|
15
|
+
|
|
16
|
+
*/
|
|
17
|
+
GetDownloadFlowUrl(req: GetDownloadFlowUrlRequest, cb?: (error: string, rep: GetDownloadFlowUrlResponse) => void): Promise<GetDownloadFlowUrlResponse>;
|
|
18
|
+
/**
|
|
19
|
+
* 通过此接口(DescribeTemplates)查询该企业在电子签渠道版中配置的有效模板列表
|
|
20
|
+
*/
|
|
21
|
+
DescribeTemplates(req: DescribeTemplatesRequest, cb?: (error: string, rep: DescribeTemplatesResponse) => void): Promise<DescribeTemplatesResponse>;
|
|
13
22
|
/**
|
|
14
23
|
* 该接口 (PrepareFlows) 用于创建待发起文件
|
|
15
24
|
*/
|
|
16
25
|
PrepareFlows(req: PrepareFlowsRequest, cb?: (error: string, rep: PrepareFlowsResponse) => void): Promise<PrepareFlowsResponse>;
|
|
26
|
+
/**
|
|
27
|
+
* 此接口(OperateChannelTemplate)用于渠道侧将模板库中的模板对合作企业进行查询和设置, 其中包括可见性的修改以及对合作企业的指定.
|
|
28
|
+
1、同步标识=select时:
|
|
29
|
+
输入规则:“可见标识”、“指定合作企业列表”为空。
|
|
30
|
+
处理规则:返回指定模版的可见标识、指定合作企业列表。
|
|
31
|
+
2、同步标识=update时:
|
|
32
|
+
输入规则:“可见标识”、“指定合作企业列表”非必填输入。
|
|
33
|
+
处理规则:
|
|
34
|
+
若“可见标识”=空,不做处理,返回当前的可见标识。
|
|
35
|
+
若“可见标识”=所有合作企业,不取“指定合作企业列表”的值处理。
|
|
36
|
+
若“可见标识”=指定合作企业,取“指定合作企业列表”的值进行更新/插入。
|
|
37
|
+
3、同步标识=delete时:
|
|
38
|
+
输入规则:“可见标识”、“指定合作企业列表”非必填输入。
|
|
39
|
+
处理规则:
|
|
40
|
+
仅取“指定合作企业列表”的值进行删除处理,为空时不做处。
|
|
41
|
+
*/
|
|
42
|
+
OperateChannelTemplate(req: OperateChannelTemplateRequest, cb?: (error: string, rep: OperateChannelTemplateResponse) => void): Promise<OperateChannelTemplateResponse>;
|
|
17
43
|
/**
|
|
18
44
|
* 根据流程Id批量创建签署参与者签署H5链接
|
|
19
45
|
*/
|
|
@@ -33,15 +59,15 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
33
59
|
*/
|
|
34
60
|
DescribeUsage(req: DescribeUsageRequest, cb?: (error: string, rep: DescribeUsageResponse) => void): Promise<DescribeUsageResponse>;
|
|
35
61
|
/**
|
|
36
|
-
*
|
|
62
|
+
* 此接口(DescribeFlowDetailInfo)用于查询合同(流程)的详细信息。
|
|
37
63
|
*/
|
|
38
|
-
|
|
64
|
+
DescribeFlowDetailInfo(req: DescribeFlowDetailInfoRequest, cb?: (error: string, rep: DescribeFlowDetailInfoResponse) => void): Promise<DescribeFlowDetailInfoResponse>;
|
|
39
65
|
/**
|
|
40
66
|
* 此接口(SyncProxyOrganization)用于同步渠道侧企业信息
|
|
41
67
|
*/
|
|
42
68
|
SyncProxyOrganization(req: SyncProxyOrganizationRequest, cb?: (error: string, rep: SyncProxyOrganizationResponse) => void): Promise<SyncProxyOrganizationResponse>;
|
|
43
69
|
/**
|
|
44
|
-
*
|
|
70
|
+
* 根据流程信息批量获取资源下载链接
|
|
45
71
|
*/
|
|
46
|
-
|
|
72
|
+
DescribeResourceUrlsByFlows(req: DescribeResourceUrlsByFlowsRequest, cb?: (error: string, rep: DescribeResourceUrlsByFlowsResponse) => void): Promise<DescribeResourceUrlsByFlowsResponse>;
|
|
47
73
|
}
|
|
@@ -33,12 +33,44 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
33
33
|
async CreateFlowsByTemplates(req, cb) {
|
|
34
34
|
return this.request("CreateFlowsByTemplates", req, cb);
|
|
35
35
|
}
|
|
36
|
+
/**
|
|
37
|
+
* 此接口(GetDownloadFlowUrl)用于创建电子签批量下载确认页面链接,支持客户合同(流程)归类打包下载。
|
|
38
|
+
|
|
39
|
+
*/
|
|
40
|
+
async GetDownloadFlowUrl(req, cb) {
|
|
41
|
+
return this.request("GetDownloadFlowUrl", req, cb);
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* 通过此接口(DescribeTemplates)查询该企业在电子签渠道版中配置的有效模板列表
|
|
45
|
+
*/
|
|
46
|
+
async DescribeTemplates(req, cb) {
|
|
47
|
+
return this.request("DescribeTemplates", req, cb);
|
|
48
|
+
}
|
|
36
49
|
/**
|
|
37
50
|
* 该接口 (PrepareFlows) 用于创建待发起文件
|
|
38
51
|
*/
|
|
39
52
|
async PrepareFlows(req, cb) {
|
|
40
53
|
return this.request("PrepareFlows", req, cb);
|
|
41
54
|
}
|
|
55
|
+
/**
|
|
56
|
+
* 此接口(OperateChannelTemplate)用于渠道侧将模板库中的模板对合作企业进行查询和设置, 其中包括可见性的修改以及对合作企业的指定.
|
|
57
|
+
1、同步标识=select时:
|
|
58
|
+
输入规则:“可见标识”、“指定合作企业列表”为空。
|
|
59
|
+
处理规则:返回指定模版的可见标识、指定合作企业列表。
|
|
60
|
+
2、同步标识=update时:
|
|
61
|
+
输入规则:“可见标识”、“指定合作企业列表”非必填输入。
|
|
62
|
+
处理规则:
|
|
63
|
+
若“可见标识”=空,不做处理,返回当前的可见标识。
|
|
64
|
+
若“可见标识”=所有合作企业,不取“指定合作企业列表”的值处理。
|
|
65
|
+
若“可见标识”=指定合作企业,取“指定合作企业列表”的值进行更新/插入。
|
|
66
|
+
3、同步标识=delete时:
|
|
67
|
+
输入规则:“可见标识”、“指定合作企业列表”非必填输入。
|
|
68
|
+
处理规则:
|
|
69
|
+
仅取“指定合作企业列表”的值进行删除处理,为空时不做处。
|
|
70
|
+
*/
|
|
71
|
+
async OperateChannelTemplate(req, cb) {
|
|
72
|
+
return this.request("OperateChannelTemplate", req, cb);
|
|
73
|
+
}
|
|
42
74
|
/**
|
|
43
75
|
* 根据流程Id批量创建签署参与者签署H5链接
|
|
44
76
|
*/
|
|
@@ -66,10 +98,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
66
98
|
return this.request("DescribeUsage", req, cb);
|
|
67
99
|
}
|
|
68
100
|
/**
|
|
69
|
-
*
|
|
101
|
+
* 此接口(DescribeFlowDetailInfo)用于查询合同(流程)的详细信息。
|
|
70
102
|
*/
|
|
71
|
-
async
|
|
72
|
-
return this.request("
|
|
103
|
+
async DescribeFlowDetailInfo(req, cb) {
|
|
104
|
+
return this.request("DescribeFlowDetailInfo", req, cb);
|
|
73
105
|
}
|
|
74
106
|
/**
|
|
75
107
|
* 此接口(SyncProxyOrganization)用于同步渠道侧企业信息
|
|
@@ -78,10 +110,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
78
110
|
return this.request("SyncProxyOrganization", req, cb);
|
|
79
111
|
}
|
|
80
112
|
/**
|
|
81
|
-
*
|
|
113
|
+
* 根据流程信息批量获取资源下载链接
|
|
82
114
|
*/
|
|
83
|
-
async
|
|
84
|
-
return this.request("
|
|
115
|
+
async DescribeResourceUrlsByFlows(req, cb) {
|
|
116
|
+
return this.request("DescribeResourceUrlsByFlows", req, cb);
|
|
85
117
|
}
|
|
86
118
|
}
|
|
87
119
|
exports.Client = Client;
|