tencentcloud-sdk-nodejs 4.0.427 → 4.0.428
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 +120 -0
- package/SERVICE_CHANGELOG.md +182 -74
- package/package.json +1 -1
- package/products.md +8 -8
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cdn/v20180606/cdn_models.ts +0 -1
- package/src/services/cfs/v20190719/cfs_models.ts +37 -37
- package/src/services/cfw/v20190904/cfw_client.ts +19 -43
- package/src/services/cfw/v20190904/cfw_models.ts +48 -164
- package/src/services/ckafka/v20190819/ckafka_models.ts +30 -0
- package/src/services/ess/v20201111/ess_client.ts +12 -0
- package/src/services/ess/v20201111/ess_models.ts +30 -0
- package/src/services/essbasic/v20210526/essbasic_client.ts +132 -119
- package/src/services/essbasic/v20210526/essbasic_models.ts +63 -0
- package/src/services/ocr/v20181119/ocr_models.ts +20 -0
- package/src/services/vpc/v20170312/vpc_models.ts +2 -0
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +0 -1
- package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +37 -37
- package/tencentcloud/services/cfw/v20190904/cfw_client.d.ts +7 -15
- package/tencentcloud/services/cfw/v20190904/cfw_client.js +9 -21
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +36 -136
- package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +24 -0
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +5 -1
- package/tencentcloud/services/ess/v20201111/ess_client.js +6 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +26 -0
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +58 -54
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +81 -75
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +54 -0
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +16 -0
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +2 -0
- package/test/cfw.v20190904.test.js +6 -26
- package/test/ess.v20201111.test.js +10 -0
- package/test/essbasic.v20210526.test.js +52 -42
|
@@ -82,6 +82,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
82
82
|
async DescribeThirdPartyAuthCode(req, cb) {
|
|
83
83
|
return this.request("DescribeThirdPartyAuthCode", req, cb);
|
|
84
84
|
}
|
|
85
|
+
/**
|
|
86
|
+
* 创建出证报告,返回报告 URL
|
|
87
|
+
*/
|
|
88
|
+
async CreateFlowEvidenceReport(req, cb) {
|
|
89
|
+
return this.request("CreateFlowEvidenceReport", req, cb);
|
|
90
|
+
}
|
|
85
91
|
/**
|
|
86
92
|
* 创建签署流程
|
|
87
93
|
适用场景:在标准制式的合同场景中,可通过提前预制好模板文件,每次调用模板文件的id,补充合同内容信息及签署信息生成电子合同。
|
|
@@ -28,6 +28,19 @@ export interface CancelMultiFlowSignQRCodeRequest {
|
|
|
28
28
|
*/
|
|
29
29
|
Agent?: Agent;
|
|
30
30
|
}
|
|
31
|
+
/**
|
|
32
|
+
* CreateFlowEvidenceReport返回参数结构体
|
|
33
|
+
*/
|
|
34
|
+
export interface CreateFlowEvidenceReportResponse {
|
|
35
|
+
/**
|
|
36
|
+
* 出证报告 URL(有效期5分钟)
|
|
37
|
+
*/
|
|
38
|
+
ReportUrl: string;
|
|
39
|
+
/**
|
|
40
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
41
|
+
*/
|
|
42
|
+
RequestId?: string;
|
|
43
|
+
}
|
|
31
44
|
/**
|
|
32
45
|
* DescribeFileUrls返回参数结构体
|
|
33
46
|
*/
|
|
@@ -985,6 +998,19 @@ export interface DescribeFlowTemplatesResponse {
|
|
|
985
998
|
*/
|
|
986
999
|
RequestId?: string;
|
|
987
1000
|
}
|
|
1001
|
+
/**
|
|
1002
|
+
* CreateFlowEvidenceReport请求参数结构体
|
|
1003
|
+
*/
|
|
1004
|
+
export interface CreateFlowEvidenceReportRequest {
|
|
1005
|
+
/**
|
|
1006
|
+
* 调用方用户信息,userId 必填
|
|
1007
|
+
*/
|
|
1008
|
+
Operator: UserInfo;
|
|
1009
|
+
/**
|
|
1010
|
+
* 签署流程编号
|
|
1011
|
+
*/
|
|
1012
|
+
FlowId: string;
|
|
1013
|
+
}
|
|
988
1014
|
/**
|
|
989
1015
|
* CreateBatchCancelFlowUrl返回参数结构体
|
|
990
1016
|
*/
|
|
@@ -1,26 +1,12 @@
|
|
|
1
1
|
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
2
|
import { ClientConfig } from "../../../common/interface";
|
|
3
|
-
import { SyncProxyOrganizationResponse, ChannelCreateConvertTaskApiResponse, OperateChannelTemplateRequest, UploadFilesRequest, GetDownloadFlowUrlResponse, DescribeResourceUrlsByFlowsResponse, ChannelCreateMultiFlowSignQRCodeResponse, DescribeTemplatesResponse, OperateChannelTemplateResponse, CreateSignUrlsResponse, CreateSignUrlsRequest, ChannelCreateMultiFlowSignQRCodeRequest, DescribeFlowDetailInfoRequest, ChannelGetTaskResultApiResponse, ChannelGetTaskResultApiRequest, GetDownloadFlowUrlRequest, CreateConsoleLoginUrlRequest, CreateFlowsByTemplatesResponse, ChannelCreateFlowSignReviewRequest, PrepareFlowsRequest, SyncProxyOrganizationOperatorsResponse, CreateSealByImageResponse, DescribeTemplatesRequest, SyncProxyOrganizationOperatorsRequest, CreateConsoleLoginUrlResponse, CreateFlowsByTemplatesRequest, SyncProxyOrganizationRequest, CreateSealByImageRequest, DescribeUsageResponse, ChannelCreateBatchCancelFlowUrlResponse, DescribeResourceUrlsByFlowsRequest, ChannelCancelMultiFlowSignQRCodeRequest, PrepareFlowsResponse, DescribeUsageRequest, ChannelCreateBatchCancelFlowUrlRequest, ChannelCreateFlowByFilesRequest, ChannelCreateFlowByFilesResponse, UploadFilesResponse, ChannelCreateFlowSignReviewResponse, ChannelCreateConvertTaskApiRequest, ChannelCancelMultiFlowSignQRCodeResponse, DescribeFlowDetailInfoResponse } from "./essbasic_models";
|
|
3
|
+
import { SyncProxyOrganizationResponse, ChannelCreateConvertTaskApiResponse, OperateChannelTemplateRequest, UploadFilesRequest, GetDownloadFlowUrlResponse, DescribeResourceUrlsByFlowsResponse, ChannelCreateMultiFlowSignQRCodeResponse, DescribeTemplatesResponse, OperateChannelTemplateResponse, CreateSignUrlsResponse, CreateSignUrlsRequest, ChannelCreateMultiFlowSignQRCodeRequest, CreateChannelFlowEvidenceReportRequest, DescribeFlowDetailInfoRequest, ChannelGetTaskResultApiResponse, ChannelGetTaskResultApiRequest, GetDownloadFlowUrlRequest, CreateConsoleLoginUrlRequest, CreateFlowsByTemplatesResponse, ChannelCreateFlowSignReviewRequest, PrepareFlowsRequest, SyncProxyOrganizationOperatorsResponse, CreateSealByImageResponse, DescribeTemplatesRequest, SyncProxyOrganizationOperatorsRequest, CreateConsoleLoginUrlResponse, CreateFlowsByTemplatesRequest, SyncProxyOrganizationRequest, CreateSealByImageRequest, DescribeUsageResponse, ChannelCreateBatchCancelFlowUrlResponse, DescribeResourceUrlsByFlowsRequest, ChannelCancelMultiFlowSignQRCodeRequest, CreateChannelFlowEvidenceReportResponse, PrepareFlowsResponse, DescribeUsageRequest, ChannelCreateBatchCancelFlowUrlRequest, ChannelCreateFlowByFilesRequest, ChannelCreateFlowByFilesResponse, UploadFilesResponse, ChannelCreateFlowSignReviewResponse, ChannelCreateConvertTaskApiRequest, ChannelCancelMultiFlowSignQRCodeResponse, DescribeFlowDetailInfoResponse } from "./essbasic_models";
|
|
4
4
|
/**
|
|
5
5
|
* essbasic client
|
|
6
6
|
* @class
|
|
7
7
|
*/
|
|
8
8
|
export declare class Client extends AbstractClient {
|
|
9
9
|
constructor(clientConfig: ClientConfig);
|
|
10
|
-
/**
|
|
11
|
-
* 此接口(UploadFiles)用于文件上传。
|
|
12
|
-
调用时需要设置Domain 为 file.ess.tencent.cn
|
|
13
|
-
*/
|
|
14
|
-
UploadFiles(req: UploadFilesRequest, cb?: (error: string, rep: UploadFilesResponse) => void): Promise<UploadFilesResponse>;
|
|
15
|
-
/**
|
|
16
|
-
* 接口(CreateFlowsByTemplates)用于使用多个模板批量创建签署流程。当前可批量发起合同(签署流程)数量最大为20个。
|
|
17
|
-
|
|
18
|
-
*/
|
|
19
|
-
CreateFlowsByTemplates(req: CreateFlowsByTemplatesRequest, cb?: (error: string, rep: CreateFlowsByTemplatesResponse) => void): Promise<CreateFlowsByTemplatesResponse>;
|
|
20
|
-
/**
|
|
21
|
-
* 根据签署流程信息批量获取资源下载链接,需合作企业先进行授权
|
|
22
|
-
*/
|
|
23
|
-
DescribeResourceUrlsByFlows(req: DescribeResourceUrlsByFlowsRequest, cb?: (error: string, rep: DescribeResourceUrlsByFlowsResponse) => void): Promise<DescribeResourceUrlsByFlowsResponse>;
|
|
24
10
|
/**
|
|
25
11
|
* 提交企业签署流程审批结果
|
|
26
12
|
|
|
@@ -28,22 +14,6 @@ export declare class Client extends AbstractClient {
|
|
|
28
14
|
若签署流程状态正常,且本企业存在签署方未签署,同一签署流程可以多次提交签署审批结果,签署时的最后一个“审批结果”有效。
|
|
29
15
|
*/
|
|
30
16
|
ChannelCreateFlowSignReview(req: ChannelCreateFlowSignReviewRequest, cb?: (error: string, rep: ChannelCreateFlowSignReviewResponse) => void): Promise<ChannelCreateFlowSignReviewResponse>;
|
|
31
|
-
/**
|
|
32
|
-
* 通过此接口(DescribeTemplates)查询该企业在电子签渠道版中配置的有效模板列表
|
|
33
|
-
*/
|
|
34
|
-
DescribeTemplates(req: DescribeTemplatesRequest, cb?: (error: string, rep: DescribeTemplatesResponse) => void): Promise<DescribeTemplatesResponse>;
|
|
35
|
-
/**
|
|
36
|
-
* 此接口(OperateChannelTemplate)用于渠道侧将模板库中的模板对合作企业进行查询和设置, 其中包括可见性的修改以及对合作企业的设置.
|
|
37
|
-
1、同步标识=select时:
|
|
38
|
-
返回渠道侧模板库当前模板的属性.
|
|
39
|
-
2、同步标识=update或者delete时:
|
|
40
|
-
对渠道子客进行模板库中模板授权,修改操作
|
|
41
|
-
*/
|
|
42
|
-
OperateChannelTemplate(req: OperateChannelTemplateRequest, cb?: (error: string, rep: OperateChannelTemplateResponse) => void): Promise<OperateChannelTemplateResponse>;
|
|
43
|
-
/**
|
|
44
|
-
* 此接口(SyncProxyOrganizationOperators)用于同步渠道合作企业经办人列表
|
|
45
|
-
*/
|
|
46
|
-
SyncProxyOrganizationOperators(req: SyncProxyOrganizationOperatorsRequest, cb?: (error: string, rep: SyncProxyOrganizationOperatorsResponse) => void): Promise<SyncProxyOrganizationOperatorsResponse>;
|
|
47
17
|
/**
|
|
48
18
|
* 此接口(ChannelCreateMultiFlowSignQRCode)用于创建一码多扫签署流程二维码。
|
|
49
19
|
适用的模版仅限于B2C(1、无序签署,2、顺序签署时B静默签署,3、顺序签署时B非首位签署)、单C的模版,且模版中发起方没有填写控件。
|
|
@@ -53,16 +23,6 @@ export declare class Client extends AbstractClient {
|
|
|
53
23
|
* 接口(ChannelCreateFlowByFiles)用于渠道版通过文件创建签署流程。此接口不可直接使用,需要运营申请
|
|
54
24
|
*/
|
|
55
25
|
ChannelCreateFlowByFiles(req: ChannelCreateFlowByFilesRequest, cb?: (error: string, rep: ChannelCreateFlowByFilesResponse) => void): Promise<ChannelCreateFlowByFilesResponse>;
|
|
56
|
-
/**
|
|
57
|
-
* 该接口 (PrepareFlows) 用于创建待发起文件
|
|
58
|
-
用户通过该接口进入签署流程发起的确认页面,进行发起信息二次确认, 如果确认则进行正常发起。
|
|
59
|
-
目前该接口只支持B2C,不建议使用。
|
|
60
|
-
*/
|
|
61
|
-
PrepareFlows(req: PrepareFlowsRequest, cb?: (error: string, rep: PrepareFlowsResponse) => void): Promise<PrepareFlowsResponse>;
|
|
62
|
-
/**
|
|
63
|
-
* 创建跳转小程序查看或签署的链接;自动签署的签署方不创建签署链接;
|
|
64
|
-
*/
|
|
65
|
-
CreateSignUrls(req: CreateSignUrlsRequest, cb?: (error: string, rep: CreateSignUrlsResponse) => void): Promise<CreateSignUrlsResponse>;
|
|
66
26
|
/**
|
|
67
27
|
* 渠道通过图片为子客代创建印章,图片最大5m;此接口不可直接使用,需要运营申请
|
|
68
28
|
*/
|
|
@@ -71,6 +31,24 @@ export declare class Client extends AbstractClient {
|
|
|
71
31
|
* 此接口(ChannelCancelMultiFlowSignQRCode)用于取消一码多扫二维码。该接口对传入的二维码ID,若还在有效期内,可以提前失效。
|
|
72
32
|
*/
|
|
73
33
|
ChannelCancelMultiFlowSignQRCode(req: ChannelCancelMultiFlowSignQRCodeRequest, cb?: (error: string, rep: ChannelCancelMultiFlowSignQRCodeResponse) => void): Promise<ChannelCancelMultiFlowSignQRCodeResponse>;
|
|
34
|
+
/**
|
|
35
|
+
* 渠道创建文件转换任务
|
|
36
|
+
*/
|
|
37
|
+
ChannelCreateConvertTaskApi(req: ChannelCreateConvertTaskApiRequest, cb?: (error: string, rep: ChannelCreateConvertTaskApiResponse) => void): Promise<ChannelCreateConvertTaskApiResponse>;
|
|
38
|
+
/**
|
|
39
|
+
* 此接口(DescribeUsage)用于获取渠道所有合作企业流量消耗情况。
|
|
40
|
+
注: 此接口每日限频2次,若要扩大限制次数,请提前与客服经理或邮件至e-contract@tencent.com进行联系。
|
|
41
|
+
*/
|
|
42
|
+
DescribeUsage(req: DescribeUsageRequest, cb?: (error: string, rep: DescribeUsageResponse) => void): Promise<DescribeUsageResponse>;
|
|
43
|
+
/**
|
|
44
|
+
* 接口(CreateFlowsByTemplates)用于使用多个模板批量创建签署流程。当前可批量发起合同(签署流程)数量最大为20个。
|
|
45
|
+
|
|
46
|
+
*/
|
|
47
|
+
CreateFlowsByTemplates(req: CreateFlowsByTemplatesRequest, cb?: (error: string, rep: CreateFlowsByTemplatesResponse) => void): Promise<CreateFlowsByTemplatesResponse>;
|
|
48
|
+
/**
|
|
49
|
+
* 创建跳转小程序查看或签署的链接;自动签署的签署方不创建签署链接;
|
|
50
|
+
*/
|
|
51
|
+
CreateSignUrls(req: CreateSignUrlsRequest, cb?: (error: string, rep: CreateSignUrlsResponse) => void): Promise<CreateSignUrlsResponse>;
|
|
74
52
|
/**
|
|
75
53
|
* 此接口(CreateConsoleLoginUrl)用于创建电子签控制台登录链接。若企业未激活,调用同步企业信息、同步经办人信息
|
|
76
54
|
|
|
@@ -81,15 +59,6 @@ export declare class Client extends AbstractClient {
|
|
|
81
59
|
客户指定需要撤销的签署流程Id,最多100个,超过100不处理;接口调用成功返回批量撤销合同的链接,通过链接跳转到电子签小程序完成批量撤销
|
|
82
60
|
*/
|
|
83
61
|
ChannelCreateBatchCancelFlowUrl(req: ChannelCreateBatchCancelFlowUrlRequest, cb?: (error: string, rep: ChannelCreateBatchCancelFlowUrlResponse) => void): Promise<ChannelCreateBatchCancelFlowUrlResponse>;
|
|
84
|
-
/**
|
|
85
|
-
* 渠道创建文件转换任务
|
|
86
|
-
*/
|
|
87
|
-
ChannelCreateConvertTaskApi(req: ChannelCreateConvertTaskApiRequest, cb?: (error: string, rep: ChannelCreateConvertTaskApiResponse) => void): Promise<ChannelCreateConvertTaskApiResponse>;
|
|
88
|
-
/**
|
|
89
|
-
* 此接口(DescribeUsage)用于获取渠道所有合作企业流量消耗情况。
|
|
90
|
-
注: 此接口每日限频2次,若要扩大限制次数,请提前与客服经理或邮件至e-contract@tencent.com进行联系。
|
|
91
|
-
*/
|
|
92
|
-
DescribeUsage(req: DescribeUsageRequest, cb?: (error: string, rep: DescribeUsageResponse) => void): Promise<DescribeUsageResponse>;
|
|
93
62
|
/**
|
|
94
63
|
* 渠道版查询转换任务状态
|
|
95
64
|
*/
|
|
@@ -98,14 +67,49 @@ export declare class Client extends AbstractClient {
|
|
|
98
67
|
* 此接口(SyncProxyOrganization)用于同步渠道侧企业信息
|
|
99
68
|
*/
|
|
100
69
|
SyncProxyOrganization(req: SyncProxyOrganizationRequest, cb?: (error: string, rep: SyncProxyOrganizationResponse) => void): Promise<SyncProxyOrganizationResponse>;
|
|
101
|
-
/**
|
|
102
|
-
* 此接口(DescribeFlowDetailInfo)用于查询合同(签署流程)的详细信息。
|
|
103
|
-
*/
|
|
104
|
-
DescribeFlowDetailInfo(req: DescribeFlowDetailInfoRequest, cb?: (error: string, rep: DescribeFlowDetailInfoResponse) => void): Promise<DescribeFlowDetailInfoResponse>;
|
|
105
70
|
/**
|
|
106
71
|
* 此接口(GetDownloadFlowUrl)用于创建电子签批量下载地址,让合作企业进入控制台直接下载,支持客户合同(流程)按照自定义文件夹形式 分类下载。
|
|
107
72
|
当前接口限制最多合同(流程)50个.
|
|
108
73
|
|
|
109
74
|
*/
|
|
110
75
|
GetDownloadFlowUrl(req: GetDownloadFlowUrlRequest, cb?: (error: string, rep: GetDownloadFlowUrlResponse) => void): Promise<GetDownloadFlowUrlResponse>;
|
|
76
|
+
/**
|
|
77
|
+
* 该接口 (PrepareFlows) 用于创建待发起文件
|
|
78
|
+
用户通过该接口进入签署流程发起的确认页面,进行发起信息二次确认, 如果确认则进行正常发起。
|
|
79
|
+
目前该接口只支持B2C,不建议使用。
|
|
80
|
+
*/
|
|
81
|
+
PrepareFlows(req: PrepareFlowsRequest, cb?: (error: string, rep: PrepareFlowsResponse) => void): Promise<PrepareFlowsResponse>;
|
|
82
|
+
/**
|
|
83
|
+
* 根据签署流程信息批量获取资源下载链接,需合作企业先进行授权
|
|
84
|
+
*/
|
|
85
|
+
DescribeResourceUrlsByFlows(req: DescribeResourceUrlsByFlowsRequest, cb?: (error: string, rep: DescribeResourceUrlsByFlowsResponse) => void): Promise<DescribeResourceUrlsByFlowsResponse>;
|
|
86
|
+
/**
|
|
87
|
+
* 通过此接口(DescribeTemplates)查询该企业在电子签渠道版中配置的有效模板列表
|
|
88
|
+
*/
|
|
89
|
+
DescribeTemplates(req: DescribeTemplatesRequest, cb?: (error: string, rep: DescribeTemplatesResponse) => void): Promise<DescribeTemplatesResponse>;
|
|
90
|
+
/**
|
|
91
|
+
* 此接口(UploadFiles)用于文件上传。
|
|
92
|
+
调用时需要设置Domain 为 file.ess.tencent.cn
|
|
93
|
+
*/
|
|
94
|
+
UploadFiles(req: UploadFilesRequest, cb?: (error: string, rep: UploadFilesResponse) => void): Promise<UploadFilesResponse>;
|
|
95
|
+
/**
|
|
96
|
+
* 创建出证报告,返回报告 URL
|
|
97
|
+
*/
|
|
98
|
+
CreateChannelFlowEvidenceReport(req: CreateChannelFlowEvidenceReportRequest, cb?: (error: string, rep: CreateChannelFlowEvidenceReportResponse) => void): Promise<CreateChannelFlowEvidenceReportResponse>;
|
|
99
|
+
/**
|
|
100
|
+
* 此接口(OperateChannelTemplate)用于渠道侧将模板库中的模板对合作企业进行查询和设置, 其中包括可见性的修改以及对合作企业的设置.
|
|
101
|
+
1、同步标识=select时:
|
|
102
|
+
返回渠道侧模板库当前模板的属性.
|
|
103
|
+
2、同步标识=update或者delete时:
|
|
104
|
+
对渠道子客进行模板库中模板授权,修改操作
|
|
105
|
+
*/
|
|
106
|
+
OperateChannelTemplate(req: OperateChannelTemplateRequest, cb?: (error: string, rep: OperateChannelTemplateResponse) => void): Promise<OperateChannelTemplateResponse>;
|
|
107
|
+
/**
|
|
108
|
+
* 此接口(SyncProxyOrganizationOperators)用于同步渠道合作企业经办人列表
|
|
109
|
+
*/
|
|
110
|
+
SyncProxyOrganizationOperators(req: SyncProxyOrganizationOperatorsRequest, cb?: (error: string, rep: SyncProxyOrganizationOperatorsResponse) => void): Promise<SyncProxyOrganizationOperatorsResponse>;
|
|
111
|
+
/**
|
|
112
|
+
* 此接口(DescribeFlowDetailInfo)用于查询合同(签署流程)的详细信息。
|
|
113
|
+
*/
|
|
114
|
+
DescribeFlowDetailInfo(req: DescribeFlowDetailInfoRequest, cb?: (error: string, rep: DescribeFlowDetailInfoResponse) => void): Promise<DescribeFlowDetailInfoResponse>;
|
|
111
115
|
}
|
|
@@ -27,26 +27,6 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
27
27
|
constructor(clientConfig) {
|
|
28
28
|
super("essbasic.tencentcloudapi.com", "2021-05-26", clientConfig);
|
|
29
29
|
}
|
|
30
|
-
/**
|
|
31
|
-
* 此接口(UploadFiles)用于文件上传。
|
|
32
|
-
调用时需要设置Domain 为 file.ess.tencent.cn
|
|
33
|
-
*/
|
|
34
|
-
async UploadFiles(req, cb) {
|
|
35
|
-
return this.request("UploadFiles", req, cb);
|
|
36
|
-
}
|
|
37
|
-
/**
|
|
38
|
-
* 接口(CreateFlowsByTemplates)用于使用多个模板批量创建签署流程。当前可批量发起合同(签署流程)数量最大为20个。
|
|
39
|
-
|
|
40
|
-
*/
|
|
41
|
-
async CreateFlowsByTemplates(req, cb) {
|
|
42
|
-
return this.request("CreateFlowsByTemplates", req, cb);
|
|
43
|
-
}
|
|
44
|
-
/**
|
|
45
|
-
* 根据签署流程信息批量获取资源下载链接,需合作企业先进行授权
|
|
46
|
-
*/
|
|
47
|
-
async DescribeResourceUrlsByFlows(req, cb) {
|
|
48
|
-
return this.request("DescribeResourceUrlsByFlows", req, cb);
|
|
49
|
-
}
|
|
50
30
|
/**
|
|
51
31
|
* 提交企业签署流程审批结果
|
|
52
32
|
|
|
@@ -56,28 +36,6 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
56
36
|
async ChannelCreateFlowSignReview(req, cb) {
|
|
57
37
|
return this.request("ChannelCreateFlowSignReview", req, cb);
|
|
58
38
|
}
|
|
59
|
-
/**
|
|
60
|
-
* 通过此接口(DescribeTemplates)查询该企业在电子签渠道版中配置的有效模板列表
|
|
61
|
-
*/
|
|
62
|
-
async DescribeTemplates(req, cb) {
|
|
63
|
-
return this.request("DescribeTemplates", req, cb);
|
|
64
|
-
}
|
|
65
|
-
/**
|
|
66
|
-
* 此接口(OperateChannelTemplate)用于渠道侧将模板库中的模板对合作企业进行查询和设置, 其中包括可见性的修改以及对合作企业的设置.
|
|
67
|
-
1、同步标识=select时:
|
|
68
|
-
返回渠道侧模板库当前模板的属性.
|
|
69
|
-
2、同步标识=update或者delete时:
|
|
70
|
-
对渠道子客进行模板库中模板授权,修改操作
|
|
71
|
-
*/
|
|
72
|
-
async OperateChannelTemplate(req, cb) {
|
|
73
|
-
return this.request("OperateChannelTemplate", req, cb);
|
|
74
|
-
}
|
|
75
|
-
/**
|
|
76
|
-
* 此接口(SyncProxyOrganizationOperators)用于同步渠道合作企业经办人列表
|
|
77
|
-
*/
|
|
78
|
-
async SyncProxyOrganizationOperators(req, cb) {
|
|
79
|
-
return this.request("SyncProxyOrganizationOperators", req, cb);
|
|
80
|
-
}
|
|
81
39
|
/**
|
|
82
40
|
* 此接口(ChannelCreateMultiFlowSignQRCode)用于创建一码多扫签署流程二维码。
|
|
83
41
|
适用的模版仅限于B2C(1、无序签署,2、顺序签署时B静默签署,3、顺序签署时B非首位签署)、单C的模版,且模版中发起方没有填写控件。
|
|
@@ -91,20 +49,6 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
91
49
|
async ChannelCreateFlowByFiles(req, cb) {
|
|
92
50
|
return this.request("ChannelCreateFlowByFiles", req, cb);
|
|
93
51
|
}
|
|
94
|
-
/**
|
|
95
|
-
* 该接口 (PrepareFlows) 用于创建待发起文件
|
|
96
|
-
用户通过该接口进入签署流程发起的确认页面,进行发起信息二次确认, 如果确认则进行正常发起。
|
|
97
|
-
目前该接口只支持B2C,不建议使用。
|
|
98
|
-
*/
|
|
99
|
-
async PrepareFlows(req, cb) {
|
|
100
|
-
return this.request("PrepareFlows", req, cb);
|
|
101
|
-
}
|
|
102
|
-
/**
|
|
103
|
-
* 创建跳转小程序查看或签署的链接;自动签署的签署方不创建签署链接;
|
|
104
|
-
*/
|
|
105
|
-
async CreateSignUrls(req, cb) {
|
|
106
|
-
return this.request("CreateSignUrls", req, cb);
|
|
107
|
-
}
|
|
108
52
|
/**
|
|
109
53
|
* 渠道通过图片为子客代创建印章,图片最大5m;此接口不可直接使用,需要运营申请
|
|
110
54
|
*/
|
|
@@ -117,6 +61,32 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
117
61
|
async ChannelCancelMultiFlowSignQRCode(req, cb) {
|
|
118
62
|
return this.request("ChannelCancelMultiFlowSignQRCode", req, cb);
|
|
119
63
|
}
|
|
64
|
+
/**
|
|
65
|
+
* 渠道创建文件转换任务
|
|
66
|
+
*/
|
|
67
|
+
async ChannelCreateConvertTaskApi(req, cb) {
|
|
68
|
+
return this.request("ChannelCreateConvertTaskApi", req, cb);
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* 此接口(DescribeUsage)用于获取渠道所有合作企业流量消耗情况。
|
|
72
|
+
注: 此接口每日限频2次,若要扩大限制次数,请提前与客服经理或邮件至e-contract@tencent.com进行联系。
|
|
73
|
+
*/
|
|
74
|
+
async DescribeUsage(req, cb) {
|
|
75
|
+
return this.request("DescribeUsage", req, cb);
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* 接口(CreateFlowsByTemplates)用于使用多个模板批量创建签署流程。当前可批量发起合同(签署流程)数量最大为20个。
|
|
79
|
+
|
|
80
|
+
*/
|
|
81
|
+
async CreateFlowsByTemplates(req, cb) {
|
|
82
|
+
return this.request("CreateFlowsByTemplates", req, cb);
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* 创建跳转小程序查看或签署的链接;自动签署的签署方不创建签署链接;
|
|
86
|
+
*/
|
|
87
|
+
async CreateSignUrls(req, cb) {
|
|
88
|
+
return this.request("CreateSignUrls", req, cb);
|
|
89
|
+
}
|
|
120
90
|
/**
|
|
121
91
|
* 此接口(CreateConsoleLoginUrl)用于创建电子签控制台登录链接。若企业未激活,调用同步企业信息、同步经办人信息
|
|
122
92
|
|
|
@@ -131,19 +101,6 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
131
101
|
async ChannelCreateBatchCancelFlowUrl(req, cb) {
|
|
132
102
|
return this.request("ChannelCreateBatchCancelFlowUrl", req, cb);
|
|
133
103
|
}
|
|
134
|
-
/**
|
|
135
|
-
* 渠道创建文件转换任务
|
|
136
|
-
*/
|
|
137
|
-
async ChannelCreateConvertTaskApi(req, cb) {
|
|
138
|
-
return this.request("ChannelCreateConvertTaskApi", req, cb);
|
|
139
|
-
}
|
|
140
|
-
/**
|
|
141
|
-
* 此接口(DescribeUsage)用于获取渠道所有合作企业流量消耗情况。
|
|
142
|
-
注: 此接口每日限频2次,若要扩大限制次数,请提前与客服经理或邮件至e-contract@tencent.com进行联系。
|
|
143
|
-
*/
|
|
144
|
-
async DescribeUsage(req, cb) {
|
|
145
|
-
return this.request("DescribeUsage", req, cb);
|
|
146
|
-
}
|
|
147
104
|
/**
|
|
148
105
|
* 渠道版查询转换任务状态
|
|
149
106
|
*/
|
|
@@ -156,12 +113,6 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
156
113
|
async SyncProxyOrganization(req, cb) {
|
|
157
114
|
return this.request("SyncProxyOrganization", req, cb);
|
|
158
115
|
}
|
|
159
|
-
/**
|
|
160
|
-
* 此接口(DescribeFlowDetailInfo)用于查询合同(签署流程)的详细信息。
|
|
161
|
-
*/
|
|
162
|
-
async DescribeFlowDetailInfo(req, cb) {
|
|
163
|
-
return this.request("DescribeFlowDetailInfo", req, cb);
|
|
164
|
-
}
|
|
165
116
|
/**
|
|
166
117
|
* 此接口(GetDownloadFlowUrl)用于创建电子签批量下载地址,让合作企业进入控制台直接下载,支持客户合同(流程)按照自定义文件夹形式 分类下载。
|
|
167
118
|
当前接口限制最多合同(流程)50个.
|
|
@@ -170,5 +121,60 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
170
121
|
async GetDownloadFlowUrl(req, cb) {
|
|
171
122
|
return this.request("GetDownloadFlowUrl", req, cb);
|
|
172
123
|
}
|
|
124
|
+
/**
|
|
125
|
+
* 该接口 (PrepareFlows) 用于创建待发起文件
|
|
126
|
+
用户通过该接口进入签署流程发起的确认页面,进行发起信息二次确认, 如果确认则进行正常发起。
|
|
127
|
+
目前该接口只支持B2C,不建议使用。
|
|
128
|
+
*/
|
|
129
|
+
async PrepareFlows(req, cb) {
|
|
130
|
+
return this.request("PrepareFlows", req, cb);
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* 根据签署流程信息批量获取资源下载链接,需合作企业先进行授权
|
|
134
|
+
*/
|
|
135
|
+
async DescribeResourceUrlsByFlows(req, cb) {
|
|
136
|
+
return this.request("DescribeResourceUrlsByFlows", req, cb);
|
|
137
|
+
}
|
|
138
|
+
/**
|
|
139
|
+
* 通过此接口(DescribeTemplates)查询该企业在电子签渠道版中配置的有效模板列表
|
|
140
|
+
*/
|
|
141
|
+
async DescribeTemplates(req, cb) {
|
|
142
|
+
return this.request("DescribeTemplates", req, cb);
|
|
143
|
+
}
|
|
144
|
+
/**
|
|
145
|
+
* 此接口(UploadFiles)用于文件上传。
|
|
146
|
+
调用时需要设置Domain 为 file.ess.tencent.cn
|
|
147
|
+
*/
|
|
148
|
+
async UploadFiles(req, cb) {
|
|
149
|
+
return this.request("UploadFiles", req, cb);
|
|
150
|
+
}
|
|
151
|
+
/**
|
|
152
|
+
* 创建出证报告,返回报告 URL
|
|
153
|
+
*/
|
|
154
|
+
async CreateChannelFlowEvidenceReport(req, cb) {
|
|
155
|
+
return this.request("CreateChannelFlowEvidenceReport", req, cb);
|
|
156
|
+
}
|
|
157
|
+
/**
|
|
158
|
+
* 此接口(OperateChannelTemplate)用于渠道侧将模板库中的模板对合作企业进行查询和设置, 其中包括可见性的修改以及对合作企业的设置.
|
|
159
|
+
1、同步标识=select时:
|
|
160
|
+
返回渠道侧模板库当前模板的属性.
|
|
161
|
+
2、同步标识=update或者delete时:
|
|
162
|
+
对渠道子客进行模板库中模板授权,修改操作
|
|
163
|
+
*/
|
|
164
|
+
async OperateChannelTemplate(req, cb) {
|
|
165
|
+
return this.request("OperateChannelTemplate", req, cb);
|
|
166
|
+
}
|
|
167
|
+
/**
|
|
168
|
+
* 此接口(SyncProxyOrganizationOperators)用于同步渠道合作企业经办人列表
|
|
169
|
+
*/
|
|
170
|
+
async SyncProxyOrganizationOperators(req, cb) {
|
|
171
|
+
return this.request("SyncProxyOrganizationOperators", req, cb);
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* 此接口(DescribeFlowDetailInfo)用于查询合同(签署流程)的详细信息。
|
|
175
|
+
*/
|
|
176
|
+
async DescribeFlowDetailInfo(req, cb) {
|
|
177
|
+
return this.request("DescribeFlowDetailInfo", req, cb);
|
|
178
|
+
}
|
|
173
179
|
}
|
|
174
180
|
exports.Client = Client;
|
|
@@ -500,6 +500,23 @@ export interface AuthFailMessage {
|
|
|
500
500
|
*/
|
|
501
501
|
Message: string;
|
|
502
502
|
}
|
|
503
|
+
/**
|
|
504
|
+
* CreateChannelFlowEvidenceReport请求参数结构体
|
|
505
|
+
*/
|
|
506
|
+
export interface CreateChannelFlowEvidenceReportRequest {
|
|
507
|
+
/**
|
|
508
|
+
* 签署流程编号
|
|
509
|
+
*/
|
|
510
|
+
FlowId: string;
|
|
511
|
+
/**
|
|
512
|
+
* 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填
|
|
513
|
+
*/
|
|
514
|
+
Agent: Agent;
|
|
515
|
+
/**
|
|
516
|
+
* 操作者的信息
|
|
517
|
+
*/
|
|
518
|
+
Operator?: UserInfo;
|
|
519
|
+
}
|
|
503
520
|
/**
|
|
504
521
|
* DescribeFlowDetailInfo请求参数结构体
|
|
505
522
|
*/
|
|
@@ -549,6 +566,11 @@ ProcessTimeout - 转换文件超时
|
|
|
549
566
|
* 资源Id,也是FileId,用于文件发起使用
|
|
550
567
|
*/
|
|
551
568
|
ResourceId: string;
|
|
569
|
+
/**
|
|
570
|
+
* 预览文件Url,有效期30分钟
|
|
571
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
572
|
+
*/
|
|
573
|
+
PreviewUrl: string;
|
|
552
574
|
/**
|
|
553
575
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
554
576
|
*/
|
|
@@ -876,6 +898,10 @@ export interface CreateFlowsByTemplatesResponse {
|
|
|
876
898
|
* 预览模式下返回的预览文件url数组
|
|
877
899
|
*/
|
|
878
900
|
PreviewUrls: Array<string>;
|
|
901
|
+
/**
|
|
902
|
+
* 复杂文档合成任务的任务信息数组
|
|
903
|
+
*/
|
|
904
|
+
TaskInfos: Array<TaskInfo>;
|
|
879
905
|
/**
|
|
880
906
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
881
907
|
*/
|
|
@@ -1261,6 +1287,19 @@ export interface ChannelCancelMultiFlowSignQRCodeRequest {
|
|
|
1261
1287
|
*/
|
|
1262
1288
|
Operator?: UserInfo;
|
|
1263
1289
|
}
|
|
1290
|
+
/**
|
|
1291
|
+
* CreateChannelFlowEvidenceReport返回参数结构体
|
|
1292
|
+
*/
|
|
1293
|
+
export interface CreateChannelFlowEvidenceReportResponse {
|
|
1294
|
+
/**
|
|
1295
|
+
* 出证报告 URL(有效五分钟)
|
|
1296
|
+
*/
|
|
1297
|
+
ReportUrl: string;
|
|
1298
|
+
/**
|
|
1299
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1300
|
+
*/
|
|
1301
|
+
RequestId?: string;
|
|
1302
|
+
}
|
|
1264
1303
|
/**
|
|
1265
1304
|
* 同步经办人失败原因
|
|
1266
1305
|
*/
|
|
@@ -1811,6 +1850,21 @@ PERSON 自然人
|
|
|
1811
1850
|
*/
|
|
1812
1851
|
OpenId: string;
|
|
1813
1852
|
}
|
|
1853
|
+
/**
|
|
1854
|
+
* 复杂文档合成任务的任务信息
|
|
1855
|
+
*/
|
|
1856
|
+
export interface TaskInfo {
|
|
1857
|
+
/**
|
|
1858
|
+
* 合成任务Id,可以通过 ChannelGetTaskResultApi 接口获取任务信息
|
|
1859
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1860
|
+
*/
|
|
1861
|
+
TaskId: string;
|
|
1862
|
+
/**
|
|
1863
|
+
* 任务状态:READY - 任务已完成;NOTREADY - 任务未完成;
|
|
1864
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1865
|
+
*/
|
|
1866
|
+
TaskStatus: string;
|
|
1867
|
+
}
|
|
1814
1868
|
/**
|
|
1815
1869
|
* 抄送信息
|
|
1816
1870
|
*/
|
|
@@ -936,6 +936,10 @@ export interface VatInvoiceItem {
|
|
|
936
936
|
* 税额
|
|
937
937
|
*/
|
|
938
938
|
TaxAmount: string;
|
|
939
|
+
/**
|
|
940
|
+
* 税收分类编码
|
|
941
|
+
*/
|
|
942
|
+
TaxClassifyCode: string;
|
|
939
943
|
}
|
|
940
944
|
/**
|
|
941
945
|
* 机动车登记证书识别结果
|
|
@@ -1173,6 +1177,10 @@ export interface VehicleInvoiceInfo {
|
|
|
1173
1177
|
* 销售电话
|
|
1174
1178
|
*/
|
|
1175
1179
|
SellerTel: string;
|
|
1180
|
+
/**
|
|
1181
|
+
* 购方身份证
|
|
1182
|
+
*/
|
|
1183
|
+
BuyerNo: string;
|
|
1176
1184
|
}
|
|
1177
1185
|
/**
|
|
1178
1186
|
* DriverLicenseOCR请求参数结构体
|
|
@@ -5219,6 +5227,14 @@ Y: 有清单 N:无清单
|
|
|
5219
5227
|
* 项目明细
|
|
5220
5228
|
*/
|
|
5221
5229
|
Items: Array<VatInvoiceItem>;
|
|
5230
|
+
/**
|
|
5231
|
+
* 所属税局
|
|
5232
|
+
*/
|
|
5233
|
+
TaxBureau: string;
|
|
5234
|
+
/**
|
|
5235
|
+
* 通行费标志:Y、是;N、否
|
|
5236
|
+
*/
|
|
5237
|
+
TrafficFreeFlag: string;
|
|
5222
5238
|
}
|
|
5223
5239
|
/**
|
|
5224
5240
|
* HmtResidentPermitOCR返回参数结构体
|
|
@@ -281,6 +281,8 @@ export interface DescribeNetworkInterfacesRequest {
|
|
|
281
281
|
<li>tag:tag-key - String - 是否必填:否 - (过滤条件)按照标签键值对进行过滤。 tag-key使用具体的标签键进行替换。使用请参考示例3。</li>
|
|
282
282
|
<li>is-primary - Boolean - 是否必填:否 - (过滤条件)按照是否主网卡进行过滤。值为true时,仅过滤主网卡;值为false时,仅过滤辅助网卡;此过滤参数未提供时,同时过滤主网卡和辅助网卡。</li>
|
|
283
283
|
<li>eni-type - String -是否必填:否- (过滤条件)按照网卡类型进行过滤。“0”-辅助网卡,“1”-主网卡,“2”:中继网卡</li>
|
|
284
|
+
<li>eni-qos - String -是否必填:否- (过滤条件)按照网卡服务质量进行过滤。“AG”-服务质量云铜,“AU”-服务质量为银</li>
|
|
285
|
+
<li>address-ipv6 - String - 是否必填:否 -(过滤条件)内网IPv6地址过滤,支持多ipv6地址查询,如果和address-ip一起使用取交集。</li>
|
|
284
286
|
*/
|
|
285
287
|
Filters?: Array<Filter>;
|
|
286
288
|
/**
|
|
@@ -28,16 +28,6 @@ it("cfw.v20190904.DescribeNatFwInfoCount", async function () {
|
|
|
28
28
|
}
|
|
29
29
|
})
|
|
30
30
|
|
|
31
|
-
it("cfw.v20190904.DescribeNatRuleOverview", async function () {
|
|
32
|
-
try {
|
|
33
|
-
const data = await client.DescribeNatRuleOverview({})
|
|
34
|
-
expect(data).to.be.ok
|
|
35
|
-
} catch(error) {
|
|
36
|
-
expect(error.requestId).to.be.ok
|
|
37
|
-
expect(error.code).to.be.ok
|
|
38
|
-
}
|
|
39
|
-
})
|
|
40
|
-
|
|
41
31
|
it("cfw.v20190904.StopSecurityGroupRuleDispatch", async function () {
|
|
42
32
|
try {
|
|
43
33
|
const data = await client.StopSecurityGroupRuleDispatch({})
|
|
@@ -238,9 +228,9 @@ it("cfw.v20190904.CreateNatFwInstanceWithDomain", async function () {
|
|
|
238
228
|
}
|
|
239
229
|
})
|
|
240
230
|
|
|
241
|
-
it("cfw.v20190904.
|
|
231
|
+
it("cfw.v20190904.ModifySequenceRules", async function () {
|
|
242
232
|
try {
|
|
243
|
-
const data = await client.
|
|
233
|
+
const data = await client.ModifySequenceRules({})
|
|
244
234
|
expect(data).to.be.ok
|
|
245
235
|
} catch(error) {
|
|
246
236
|
expect(error.requestId).to.be.ok
|
|
@@ -438,16 +428,6 @@ it("cfw.v20190904.DescribeUnHandleEventTabList", async function () {
|
|
|
438
428
|
}
|
|
439
429
|
})
|
|
440
430
|
|
|
441
|
-
it("cfw.v20190904.SetNatFwEip", async function () {
|
|
442
|
-
try {
|
|
443
|
-
const data = await client.SetNatFwEip({})
|
|
444
|
-
expect(data).to.be.ok
|
|
445
|
-
} catch(error) {
|
|
446
|
-
expect(error.requestId).to.be.ok
|
|
447
|
-
expect(error.code).to.be.ok
|
|
448
|
-
}
|
|
449
|
-
})
|
|
450
|
-
|
|
451
431
|
it("cfw.v20190904.DescribeSourceAsset", async function () {
|
|
452
432
|
try {
|
|
453
433
|
const data = await client.DescribeSourceAsset({})
|
|
@@ -498,9 +478,9 @@ it("cfw.v20190904.ModifyAllRuleStatus", async function () {
|
|
|
498
478
|
}
|
|
499
479
|
})
|
|
500
480
|
|
|
501
|
-
it("cfw.v20190904.
|
|
481
|
+
it("cfw.v20190904.RemoveAcRule", async function () {
|
|
502
482
|
try {
|
|
503
|
-
const data = await client.
|
|
483
|
+
const data = await client.RemoveAcRule({})
|
|
504
484
|
expect(data).to.be.ok
|
|
505
485
|
} catch(error) {
|
|
506
486
|
expect(error.requestId).to.be.ok
|
|
@@ -508,9 +488,9 @@ it("cfw.v20190904.ModifySequenceRules", async function () {
|
|
|
508
488
|
}
|
|
509
489
|
})
|
|
510
490
|
|
|
511
|
-
it("cfw.v20190904.
|
|
491
|
+
it("cfw.v20190904.SetNatFwEip", async function () {
|
|
512
492
|
try {
|
|
513
|
-
const data = await client.
|
|
493
|
+
const data = await client.SetNatFwEip({})
|
|
514
494
|
expect(data).to.be.ok
|
|
515
495
|
} catch(error) {
|
|
516
496
|
expect(error.requestId).to.be.ok
|
|
@@ -88,6 +88,16 @@ it("ess.v20201111.DescribeThirdPartyAuthCode", async function () {
|
|
|
88
88
|
}
|
|
89
89
|
})
|
|
90
90
|
|
|
91
|
+
it("ess.v20201111.CreateFlowEvidenceReport", async function () {
|
|
92
|
+
try {
|
|
93
|
+
const data = await client.CreateFlowEvidenceReport({})
|
|
94
|
+
expect(data).to.be.ok
|
|
95
|
+
} catch(error) {
|
|
96
|
+
expect(error.requestId).to.be.ok
|
|
97
|
+
expect(error.code).to.be.ok
|
|
98
|
+
}
|
|
99
|
+
})
|
|
100
|
+
|
|
91
101
|
it("ess.v20201111.CreateFlow", async function () {
|
|
92
102
|
try {
|
|
93
103
|
const data = await client.CreateFlow({})
|