tencentcloud-sdk-nodejs-essbasic 4.0.372 → 4.0.375
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 +760 -0
- package/SERVICE_CHANGELOG.md +791 -51
- package/package.json +1 -1
- package/products.md +30 -28
- package/src/services/essbasic/v20210526/essbasic_client.ts +7 -7
- package/src/services/essbasic/v20210526/essbasic_models.ts +222 -206
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +7 -7
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +7 -7
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +212 -199
|
@@ -7,7 +7,7 @@ import { SyncProxyOrganizationResponse, PrepareFlowsResponse, GetDownloadFlowUrl
|
|
|
7
7
|
export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
8
8
|
constructor(clientConfig: TencentCloudCommon.ClientConfig);
|
|
9
9
|
/**
|
|
10
|
-
* 接口(CreateFlowsByTemplates
|
|
10
|
+
* 接口(CreateFlowsByTemplates)用于使用多个模板批量创建签署流程。当前可批量发起合同(签署流程)数量最大为20个。
|
|
11
11
|
*/
|
|
12
12
|
CreateFlowsByTemplates(req: CreateFlowsByTemplatesRequest, cb?: (error: string, rep: CreateFlowsByTemplatesResponse) => void): Promise<CreateFlowsByTemplatesResponse>;
|
|
13
13
|
/**
|
|
@@ -29,17 +29,17 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
29
29
|
*/
|
|
30
30
|
OperateChannelTemplate(req: OperateChannelTemplateRequest, cb?: (error: string, rep: OperateChannelTemplateResponse) => void): Promise<OperateChannelTemplateResponse>;
|
|
31
31
|
/**
|
|
32
|
-
* 此接口(ChannelCreateMultiFlowSignQRCode
|
|
32
|
+
* 此接口(ChannelCreateMultiFlowSignQRCode)用于创建一码多扫签署流程二维码。
|
|
33
33
|
适用的模版仅限于B2C(1、无序签署,2、顺序签署时B静默签署,3、顺序签署时B非首位签署)、单C的模版,且模版中发起方没有填写控件。
|
|
34
34
|
*/
|
|
35
35
|
ChannelCreateMultiFlowSignQRCode(req: ChannelCreateMultiFlowSignQRCodeRequest, cb?: (error: string, rep: ChannelCreateMultiFlowSignQRCodeResponse) => void): Promise<ChannelCreateMultiFlowSignQRCodeResponse>;
|
|
36
36
|
/**
|
|
37
|
-
* 接口(ChannelCreateFlowByFiles
|
|
37
|
+
* 接口(ChannelCreateFlowByFiles)用于渠道版通过文件创建签署流程。此接口不可直接使用,需要运营申请
|
|
38
38
|
*/
|
|
39
39
|
ChannelCreateFlowByFiles(req: ChannelCreateFlowByFilesRequest, cb?: (error: string, rep: ChannelCreateFlowByFilesResponse) => void): Promise<ChannelCreateFlowByFilesResponse>;
|
|
40
40
|
/**
|
|
41
41
|
* 该接口 (PrepareFlows) 用于创建待发起文件
|
|
42
|
-
|
|
42
|
+
用户通过该接口进入签署流程发起的确认页面,进行发起信息二次确认, 如果确认则进行正常发起。
|
|
43
43
|
目前该接口只支持B2C,不建议使用。
|
|
44
44
|
*/
|
|
45
45
|
PrepareFlows(req: PrepareFlowsRequest, cb?: (error: string, rep: PrepareFlowsResponse) => void): Promise<PrepareFlowsResponse>;
|
|
@@ -70,7 +70,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
70
70
|
*/
|
|
71
71
|
DescribeUsage(req: DescribeUsageRequest, cb?: (error: string, rep: DescribeUsageResponse) => void): Promise<DescribeUsageResponse>;
|
|
72
72
|
/**
|
|
73
|
-
* 此接口(DescribeFlowDetailInfo)用于查询合同(
|
|
73
|
+
* 此接口(DescribeFlowDetailInfo)用于查询合同(签署流程)的详细信息。
|
|
74
74
|
*/
|
|
75
75
|
DescribeFlowDetailInfo(req: DescribeFlowDetailInfoRequest, cb?: (error: string, rep: DescribeFlowDetailInfoResponse) => void): Promise<DescribeFlowDetailInfoResponse>;
|
|
76
76
|
/**
|
|
@@ -78,8 +78,8 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
78
78
|
*/
|
|
79
79
|
SyncProxyOrganization(req: SyncProxyOrganizationRequest, cb?: (error: string, rep: SyncProxyOrganizationResponse) => void): Promise<SyncProxyOrganizationResponse>;
|
|
80
80
|
/**
|
|
81
|
-
*
|
|
82
|
-
|
|
81
|
+
* 根据签署流程信息批量获取资源下载链接,可直接下载
|
|
82
|
+
限制:只能下载合作企业授权过的、单方签署的签署流程文件(若合作企业与渠道是同一企业,可以下载所有签署流程文件)
|
|
83
83
|
*/
|
|
84
84
|
DescribeResourceUrlsByFlows(req: DescribeResourceUrlsByFlowsRequest, cb?: (error: string, rep: DescribeResourceUrlsByFlowsResponse) => void): Promise<DescribeResourceUrlsByFlowsResponse>;
|
|
85
85
|
/**
|
|
@@ -28,7 +28,7 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
28
28
|
super("essbasic.tencentcloudapi.com", "2021-05-26", clientConfig);
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
31
|
-
* 接口(CreateFlowsByTemplates
|
|
31
|
+
* 接口(CreateFlowsByTemplates)用于使用多个模板批量创建签署流程。当前可批量发起合同(签署流程)数量最大为20个。
|
|
32
32
|
*/
|
|
33
33
|
async CreateFlowsByTemplates(req, cb) {
|
|
34
34
|
return this.request("CreateFlowsByTemplates", req, cb);
|
|
@@ -58,21 +58,21 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
58
58
|
return this.request("OperateChannelTemplate", req, cb);
|
|
59
59
|
}
|
|
60
60
|
/**
|
|
61
|
-
* 此接口(ChannelCreateMultiFlowSignQRCode
|
|
61
|
+
* 此接口(ChannelCreateMultiFlowSignQRCode)用于创建一码多扫签署流程二维码。
|
|
62
62
|
适用的模版仅限于B2C(1、无序签署,2、顺序签署时B静默签署,3、顺序签署时B非首位签署)、单C的模版,且模版中发起方没有填写控件。
|
|
63
63
|
*/
|
|
64
64
|
async ChannelCreateMultiFlowSignQRCode(req, cb) {
|
|
65
65
|
return this.request("ChannelCreateMultiFlowSignQRCode", req, cb);
|
|
66
66
|
}
|
|
67
67
|
/**
|
|
68
|
-
* 接口(ChannelCreateFlowByFiles
|
|
68
|
+
* 接口(ChannelCreateFlowByFiles)用于渠道版通过文件创建签署流程。此接口不可直接使用,需要运营申请
|
|
69
69
|
*/
|
|
70
70
|
async ChannelCreateFlowByFiles(req, cb) {
|
|
71
71
|
return this.request("ChannelCreateFlowByFiles", req, cb);
|
|
72
72
|
}
|
|
73
73
|
/**
|
|
74
74
|
* 该接口 (PrepareFlows) 用于创建待发起文件
|
|
75
|
-
|
|
75
|
+
用户通过该接口进入签署流程发起的确认页面,进行发起信息二次确认, 如果确认则进行正常发起。
|
|
76
76
|
目前该接口只支持B2C,不建议使用。
|
|
77
77
|
*/
|
|
78
78
|
async PrepareFlows(req, cb) {
|
|
@@ -117,7 +117,7 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
117
117
|
return this.request("DescribeUsage", req, cb);
|
|
118
118
|
}
|
|
119
119
|
/**
|
|
120
|
-
* 此接口(DescribeFlowDetailInfo)用于查询合同(
|
|
120
|
+
* 此接口(DescribeFlowDetailInfo)用于查询合同(签署流程)的详细信息。
|
|
121
121
|
*/
|
|
122
122
|
async DescribeFlowDetailInfo(req, cb) {
|
|
123
123
|
return this.request("DescribeFlowDetailInfo", req, cb);
|
|
@@ -129,8 +129,8 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
129
129
|
return this.request("SyncProxyOrganization", req, cb);
|
|
130
130
|
}
|
|
131
131
|
/**
|
|
132
|
-
*
|
|
133
|
-
|
|
132
|
+
* 根据签署流程信息批量获取资源下载链接,可直接下载
|
|
133
|
+
限制:只能下载合作企业授权过的、单方签署的签署流程文件(若合作企业与渠道是同一企业,可以下载所有签署流程文件)
|
|
134
134
|
*/
|
|
135
135
|
async DescribeResourceUrlsByFlows(req, cb) {
|
|
136
136
|
return this.request("DescribeResourceUrlsByFlows", req, cb);
|