tencentcloud-sdk-nodejs-essbasic 4.0.1041 → 4.0.1043
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/package.json +1 -1
- package/src/services/essbasic/v20210526/essbasic_client.ts +22 -1
- package/src/services/essbasic/v20210526/essbasic_models.ts +70 -4
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +12 -1
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +13 -0
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +66 -4
package/package.json
CHANGED
|
@@ -37,6 +37,7 @@ import {
|
|
|
37
37
|
ChannelCreateFlowGroupByTemplatesResponse,
|
|
38
38
|
ChannelCreateFlowSignReviewRequest,
|
|
39
39
|
AuthFailMessage,
|
|
40
|
+
CreateFlowForwardsRequest,
|
|
40
41
|
DescribeFlowDetailInfoRequest,
|
|
41
42
|
ChannelCancelFlowResponse,
|
|
42
43
|
ModifyExtendedServiceRequest,
|
|
@@ -96,6 +97,7 @@ import {
|
|
|
96
97
|
SignUrl,
|
|
97
98
|
ChannelCancelFlowRequest,
|
|
98
99
|
TemplateInfo,
|
|
100
|
+
IntentionAction,
|
|
99
101
|
ChannelCreateOrganizationBatchSignUrlRequest,
|
|
100
102
|
DynamicFlowApproverResult,
|
|
101
103
|
GetDownloadFlowUrlResponse,
|
|
@@ -130,6 +132,7 @@ import {
|
|
|
130
132
|
CreateEmployeeQualificationSealQrCodeRequest,
|
|
131
133
|
ChannelArchiveDynamicApproverData,
|
|
132
134
|
ChannelCreateUserAutoSignSealUrlRequest,
|
|
135
|
+
FlowForwardResult,
|
|
133
136
|
PdfVerifyResult,
|
|
134
137
|
UserThreeFactor,
|
|
135
138
|
ChannelCreateUserAutoSignEnableUrlRequest,
|
|
@@ -179,6 +182,7 @@ import {
|
|
|
179
182
|
IntentionActionResult,
|
|
180
183
|
FlowDetailInfo,
|
|
181
184
|
CreatePersonAuthCertificateImageRequest,
|
|
185
|
+
FlowForwardInfo,
|
|
182
186
|
CreateFlowsByTemplatesResponse,
|
|
183
187
|
SyncFailReason,
|
|
184
188
|
DescribeChannelFlowEvidenceReportRequest,
|
|
@@ -205,7 +209,7 @@ import {
|
|
|
205
209
|
ChannelCreateBatchCancelFlowUrlRequest,
|
|
206
210
|
ChannelDescribeAccountBillDetailResponse,
|
|
207
211
|
ApproverRestriction,
|
|
208
|
-
|
|
212
|
+
CreateFlowForwardsResponse,
|
|
209
213
|
ChannelCreateFlowByFilesResponse,
|
|
210
214
|
ChannelCreateFlowSignReviewResponse,
|
|
211
215
|
ChannelDisableUserAutoSignRequest,
|
|
@@ -1434,6 +1438,23 @@ httpProfile.setEndpoint("file.test.ess.tencent.cn");
|
|
|
1434
1438
|
return this.request("UploadFiles", req, cb)
|
|
1435
1439
|
}
|
|
1436
1440
|
|
|
1441
|
+
/**
|
|
1442
|
+
* 该接口用于将合同中本企业当前经办人转为本企业其他员工进行操作。
|
|
1443
|
+
|
|
1444
|
+
注意:
|
|
1445
|
+
1. 转交的目标经办人需要已经加入企业,且完成实名。
|
|
1446
|
+
2. 仅企业拥有`超管`或`法人角色`的员工才有调用本接口的权限。
|
|
1447
|
+
3. 仅支持当前经办人为待签署或待填写状态时进行转交操作。
|
|
1448
|
+
4. 若原合同有填写控件,且当前经办人已经完成填写,则不支持进行转交。
|
|
1449
|
+
5. 若当前经办人已签署完成,或者处于签署流程中,则不支持进行转交。
|
|
1450
|
+
*/
|
|
1451
|
+
async CreateFlowForwards(
|
|
1452
|
+
req: CreateFlowForwardsRequest,
|
|
1453
|
+
cb?: (error: string, rep: CreateFlowForwardsResponse) => void
|
|
1454
|
+
): Promise<CreateFlowForwardsResponse> {
|
|
1455
|
+
return this.request("CreateFlowForwards", req, cb)
|
|
1456
|
+
}
|
|
1457
|
+
|
|
1437
1458
|
/**
|
|
1438
1459
|
* 该接口用于发起合同后,生成用户的签署链接 <br/>
|
|
1439
1460
|
|
|
@@ -713,6 +713,26 @@ export interface AuthFailMessage {
|
|
|
713
713
|
Message?: string
|
|
714
714
|
}
|
|
715
715
|
|
|
716
|
+
/**
|
|
717
|
+
* CreateFlowForwards请求参数结构体
|
|
718
|
+
*/
|
|
719
|
+
export interface CreateFlowForwardsRequest {
|
|
720
|
+
/**
|
|
721
|
+
* 合同对应参与方需要修改的目标经办人对应的OpenId。
|
|
722
|
+
|
|
723
|
+
注意:`需要保证目标经办人已经加入企业且已实名`
|
|
724
|
+
*/
|
|
725
|
+
TargetOpenId: string
|
|
726
|
+
/**
|
|
727
|
+
* 企业签署方的合同及对应签署方
|
|
728
|
+
*/
|
|
729
|
+
FlowForwardInfos: Array<FlowForwardInfo>
|
|
730
|
+
/**
|
|
731
|
+
* 关于渠道应用的相关信息,包括渠道应用标识、第三方平台子客企业标识及第三方平台子客企业中的员工标识等内容,您可以参阅开发者中心所提供的 Agent 结构体以获取详细定义。此接口下面信息必填。<ul><li>渠道应用标识: Agent.AppId</li><li>第三方平台子客企业标识: Agent.ProxyOrganizationOpenId</li><li>第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId</li></ul>第三方平台子客企业和员工必须已经经过实名认证
|
|
732
|
+
*/
|
|
733
|
+
Agent: Agent
|
|
734
|
+
}
|
|
735
|
+
|
|
716
736
|
/**
|
|
717
737
|
* DescribeFlowDetailInfo请求参数结构体
|
|
718
738
|
*/
|
|
@@ -2774,6 +2794,16 @@ export interface TemplateInfo {
|
|
|
2774
2794
|
Available?: number
|
|
2775
2795
|
}
|
|
2776
2796
|
|
|
2797
|
+
/**
|
|
2798
|
+
* 意愿核身(点头确认模式)使用的文案,若未使用意愿核身(点头确认模式),则该字段无需传入。当前仅支持一个提示文本。
|
|
2799
|
+
*/
|
|
2800
|
+
export interface IntentionAction {
|
|
2801
|
+
/**
|
|
2802
|
+
* 点头确认模式下,系统语音播报使用的问题文本,问题最大长度为150个字符。
|
|
2803
|
+
*/
|
|
2804
|
+
Text?: string
|
|
2805
|
+
}
|
|
2806
|
+
|
|
2777
2807
|
/**
|
|
2778
2808
|
* ChannelCreateOrganizationBatchSignUrl请求参数结构体
|
|
2779
2809
|
*/
|
|
@@ -4075,6 +4105,20 @@ export interface ChannelCreateUserAutoSignSealUrlRequest {
|
|
|
4075
4105
|
ExpiredTime?: number
|
|
4076
4106
|
}
|
|
4077
4107
|
|
|
4108
|
+
/**
|
|
4109
|
+
* 转交合同结果
|
|
4110
|
+
*/
|
|
4111
|
+
export interface FlowForwardResult {
|
|
4112
|
+
/**
|
|
4113
|
+
* 合同流程ID为32位字符串。您可以登录腾讯电子签控制台,在 "合同" -> "合同中心" 中查看某个合同的FlowId(在页面中展示为合同ID)。[点击查看FlowId在控制台中的位置](https://qcloudimg.tencent-cloud.cn/raw/0a83015166cfe1cb043d14f9ec4bd75e.png)。
|
|
4114
|
+
*/
|
|
4115
|
+
FlowId?: string
|
|
4116
|
+
/**
|
|
4117
|
+
* 如果失败,返回的错误细节。
|
|
4118
|
+
*/
|
|
4119
|
+
ErrorDetail?: string
|
|
4120
|
+
}
|
|
4121
|
+
|
|
4078
4122
|
/**
|
|
4079
4123
|
* 合同验签每个签署区的信息
|
|
4080
4124
|
*/
|
|
@@ -6027,6 +6071,20 @@ export interface CreatePersonAuthCertificateImageRequest {
|
|
|
6027
6071
|
SceneKey?: string
|
|
6028
6072
|
}
|
|
6029
6073
|
|
|
6074
|
+
/**
|
|
6075
|
+
* 合同转交相关信息
|
|
6076
|
+
*/
|
|
6077
|
+
export interface FlowForwardInfo {
|
|
6078
|
+
/**
|
|
6079
|
+
* 合同流程ID,为32位字符串。此接口的合同流程ID需要由[创建签署流程](https://qian.tencent.com/developers/companyApis/startFlows/CreateFlow)接口创建得到。
|
|
6080
|
+
*/
|
|
6081
|
+
FlowId: string
|
|
6082
|
+
/**
|
|
6083
|
+
* 签署方经办人在合同中的参与方ID,为32位字符串。
|
|
6084
|
+
*/
|
|
6085
|
+
RecipientId: string
|
|
6086
|
+
}
|
|
6087
|
+
|
|
6030
6088
|
/**
|
|
6031
6089
|
* CreateFlowsByTemplates返回参数结构体
|
|
6032
6090
|
*/
|
|
@@ -6943,13 +7001,21 @@ export interface ApproverRestriction {
|
|
|
6943
7001
|
}
|
|
6944
7002
|
|
|
6945
7003
|
/**
|
|
6946
|
-
*
|
|
7004
|
+
* CreateFlowForwards返回参数结构体
|
|
6947
7005
|
*/
|
|
6948
|
-
export interface
|
|
7006
|
+
export interface CreateFlowForwardsResponse {
|
|
6949
7007
|
/**
|
|
6950
|
-
*
|
|
7008
|
+
* 失败的合同id以及错误详情
|
|
6951
7009
|
*/
|
|
6952
|
-
|
|
7010
|
+
FailedFlows?: Array<FlowForwardResult>
|
|
7011
|
+
/**
|
|
7012
|
+
* 成功的合同id
|
|
7013
|
+
*/
|
|
7014
|
+
SuccessFlows?: Array<string>
|
|
7015
|
+
/**
|
|
7016
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7017
|
+
*/
|
|
7018
|
+
RequestId?: string
|
|
6953
7019
|
}
|
|
6954
7020
|
|
|
6955
7021
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
|
2
|
-
import { SyncProxyOrganizationResponse, ChannelCreateConvertTaskApiResponse, ChannelCreateFlowRemindsResponse, ChannelDeleteSealPoliciesRequest, ChannelBatchCancelFlowsResponse, ChannelDescribeSignFaceVideoRequest, ChannelDisableUserAutoSignResponse, DescribeExtendedServiceAuthDetailResponse, CreateLegalSealQrCodeResponse, DescribeCancelFlowsTaskResponse, CreateEmployeeQualificationSealQrCodeResponse, ChannelCreateFlowGroupByTemplatesResponse, ChannelCreateFlowSignReviewRequest, DescribeFlowDetailInfoRequest, ChannelCancelFlowResponse, ModifyExtendedServiceRequest, DescribeResourceUrlsByFlowsRequest, CreateChannelOrganizationInfoChangeUrlResponse, ChannelCreateFlowSignUrlResponse, ChannelCreateBatchSignUrlResponse, ChannelCreatePrepareFlowResponse, CreateBatchInitOrganizationUrlResponse, OperateChannelTemplateResponse, ChannelCreateDynamicFlowApproverResponse, ChannelCreateRoleRequest, CreateOrganizationAuthFileResponse, CreateConsoleLoginUrlResponse, ChannelDeleteRoleUsersRequest, ChannelCreateUserRolesResponse, SyncProxyOrganizationRequest, ChannelCreatePrepareFlowRequest, ChannelCreateFlowSignUrlRequest, ChannelCreateSealPolicyResponse, ChannelDescribeSignFaceVideoResponse, ChannelCancelUserAutoSignEnableUrlResponse, ChannelCreateWebThemeConfigRequest, CreateFlowGroupSignReviewResponse, ChannelCreateConvertTaskApiRequest, ChannelCreateFlowByFilesRequest, UploadFilesResponse, ChannelCreatePreparedPersonalEsignResponse, DescribeResourceUrlsByFlowsResponse, ChannelCreateFlowGroupByFilesRequest, ChannelCreateOrganizationModifyQrCodeRequest, CreateChannelSubOrganizationActiveRequest, ChannelRenewAutoSignLicenseResponse, DescribeFlowDetailInfoResponse, ChannelDescribeRolesRequest, DescribeBatchOrganizationRegistrationUrlsRequest, PrepareFlowsResponse, ChannelCancelFlowRequest, ChannelCreateOrganizationBatchSignUrlRequest, GetDownloadFlowUrlResponse, DescribeTemplatesResponse, CreateBatchOrganizationRegistrationTasksResponse, ChannelVerifyPdfRequest, CreateChannelFlowEvidenceReportRequest, ChannelDescribeBillUsageDetailRequest, ChannelCancelUserAutoSignEnableUrlRequest, DeleteOrganizationAuthorizationsResponse, DescribeExtendedServiceAuthDetailRequest, CreateOrganizationAuthFileRequest, ChannelVerifyPdfResponse, ArchiveDynamicFlowResponse, CreateConsoleLoginUrlRequest, CreateLegalSealQrCodeRequest, CreateCloseOrganizationUrlRequest, CreatePersonAuthCertificateImageResponse, CreateEmployeeQualificationSealQrCodeRequest, ChannelCreateUserAutoSignSealUrlRequest, ChannelCreateUserAutoSignEnableUrlRequest, ChannelCancelMultiFlowSignQRCodeRequest, ChannelDescribeOrganizationSealsRequest, DescribeUsageRequest, DescribeExtendedServiceAuthInfoRequest, CreateCloseOrganizationUrlResponse, DescribeChannelSealPolicyWorkflowUrlRequest, CreatePartnerAutoSignAuthUrlResponse, ArchiveDynamicFlowRequest, ChannelCreateDynamicFlowApproverRequest, ModifyFlowDeadlineResponse, ChannelCreateBoundFlowsResponse, ChannelCreateUserAutoSignSealUrlResponse, ChannelCreateBatchQuickSignUrlRequest, ChannelCreateBoundFlowsRequest, ChannelDescribeEmployeesRequest, CreateFlowBlockchainEvidenceUrlResponse, ChannelDeleteRoleUsersResponse, SyncProxyOrganizationOperatorsRequest, ChannelCreateFlowApproversResponse, DescribeUsageResponse, CreateSignUrlsRequest, ChannelCreateMultiFlowSignQRCodeRequest, ChannelCreateUserAutoSignEnableUrlResponse, ChannelGetTaskResultApiRequest, DescribeChannelOrganizationsRequest, ChannelCreatePreparedPersonalEsignRequest, CreateEmployeeChangeUrlResponse, ChannelRenewAutoSignLicenseRequest, ChannelDescribeBillUsageDetailResponse, CreatePersonAuthCertificateImageRequest, CreateFlowsByTemplatesResponse, DescribeChannelFlowEvidenceReportRequest, ChannelCreateRoleResponse, CreateEmployeeChangeUrlRequest, ChannelDescribeUserAutoSignStatusRequest, ChannelModifyRoleResponse, CreateSignUrlsResponse, ChannelDeleteRoleRequest, CreateBatchOrganizationRegistrationTasksRequest, ChannelCreateBatchQuickSignUrlResponse, CreateBatchOrganizationAuthorizationUrlResponse, CreatePartnerAutoSignAuthUrlRequest, ChannelCreateBatchCancelFlowUrlRequest, ChannelDescribeAccountBillDetailResponse, ChannelCreateFlowByFilesResponse, ChannelCreateFlowSignReviewResponse, ChannelDisableUserAutoSignRequest, ChannelDescribeOrganizationSealsResponse, SyncProxyOrganizationOperatorsResponse, CreateSealByImageResponse, ChannelCancelMultiFlowSignQRCodeResponse, ChannelDescribeRolesResponse, CreateChannelSubOrganizationActiveResponse, ChannelCreateReleaseFlowRequest, ChannelDescribeFlowComponentsResponse, DeleteOrganizationAuthorizationsRequest, ChannelCreateFlowGroupByFilesResponse, ChannelCreateMultiFlowSignQRCodeResponse, DescribeCancelFlowsTaskRequest, ChannelDescribeUserAutoSignStatusResponse, ModifyExtendedServiceResponse, ChannelCreateUserRolesRequest, ChannelGetTaskResultApiResponse, ChannelCreateBatchSignUrlRequest, ChannelCreateOrganizationModifyQrCodeResponse, ChannelDeleteSealPoliciesResponse, ChannelCreateWebThemeConfigResponse, GetDownloadFlowUrlRequest, ChannelCreateEmbedWebUrlResponse, ChannelBatchCancelFlowsRequest, CreateChannelOrganizationInfoChangeUrlRequest, ChannelModifyRoleRequest, ModifyFlowDeadlineRequest, ChannelUpdateSealStatusRequest, ChannelCreateFlowGroupByTemplatesRequest, CreateBatchInitOrganizationUrlRequest, CreateFlowGroupSignReviewRequest, DescribeTemplatesRequest, ChannelCreateSealPolicyRequest, CreateFlowsByTemplatesRequest, DescribeBatchOrganizationRegistrationUrlsResponse, UploadFilesRequest, CreateSealByImageRequest, DescribeChannelOrganizationsResponse, ChannelCreateOrganizationBatchSignUrlResponse, CreateBatchOrganizationAuthorizationUrlRequest, ChannelCreateBatchCancelFlowUrlResponse, OperateChannelTemplateRequest, DescribeChannelSealPolicyWorkflowUrlResponse, CreateChannelFlowEvidenceReportResponse, ChannelDescribeAccountBillDetailRequest, ChannelDescribeEmployeesResponse, ChannelDeleteRoleResponse, ChannelCreateReleaseFlowResponse, DescribeChannelFlowEvidenceReportResponse, CreateFlowBlockchainEvidenceUrlRequest, ChannelCreateFlowApproversRequest, ChannelUpdateSealStatusResponse, ChannelCreateFlowRemindsRequest, DescribeExtendedServiceAuthInfoResponse, ChannelCreateEmbedWebUrlRequest, ChannelDescribeFlowComponentsRequest, PrepareFlowsRequest } from "./essbasic_models";
|
|
2
|
+
import { SyncProxyOrganizationResponse, ChannelCreateConvertTaskApiResponse, ChannelCreateFlowRemindsResponse, ChannelDeleteSealPoliciesRequest, ChannelBatchCancelFlowsResponse, ChannelDescribeSignFaceVideoRequest, ChannelDisableUserAutoSignResponse, DescribeExtendedServiceAuthDetailResponse, CreateLegalSealQrCodeResponse, DescribeCancelFlowsTaskResponse, CreateEmployeeQualificationSealQrCodeResponse, ChannelCreateFlowGroupByTemplatesResponse, ChannelCreateFlowSignReviewRequest, CreateFlowForwardsRequest, DescribeFlowDetailInfoRequest, ChannelCancelFlowResponse, ModifyExtendedServiceRequest, DescribeResourceUrlsByFlowsRequest, CreateChannelOrganizationInfoChangeUrlResponse, ChannelCreateFlowSignUrlResponse, ChannelCreateBatchSignUrlResponse, ChannelCreatePrepareFlowResponse, CreateBatchInitOrganizationUrlResponse, OperateChannelTemplateResponse, ChannelCreateDynamicFlowApproverResponse, ChannelCreateRoleRequest, CreateOrganizationAuthFileResponse, CreateConsoleLoginUrlResponse, ChannelDeleteRoleUsersRequest, ChannelCreateUserRolesResponse, SyncProxyOrganizationRequest, ChannelCreatePrepareFlowRequest, ChannelCreateFlowSignUrlRequest, ChannelCreateSealPolicyResponse, ChannelDescribeSignFaceVideoResponse, ChannelCancelUserAutoSignEnableUrlResponse, ChannelCreateWebThemeConfigRequest, CreateFlowGroupSignReviewResponse, ChannelCreateConvertTaskApiRequest, ChannelCreateFlowByFilesRequest, UploadFilesResponse, ChannelCreatePreparedPersonalEsignResponse, DescribeResourceUrlsByFlowsResponse, ChannelCreateFlowGroupByFilesRequest, ChannelCreateOrganizationModifyQrCodeRequest, CreateChannelSubOrganizationActiveRequest, ChannelRenewAutoSignLicenseResponse, DescribeFlowDetailInfoResponse, ChannelDescribeRolesRequest, DescribeBatchOrganizationRegistrationUrlsRequest, PrepareFlowsResponse, ChannelCancelFlowRequest, ChannelCreateOrganizationBatchSignUrlRequest, GetDownloadFlowUrlResponse, DescribeTemplatesResponse, CreateBatchOrganizationRegistrationTasksResponse, ChannelVerifyPdfRequest, CreateChannelFlowEvidenceReportRequest, ChannelDescribeBillUsageDetailRequest, ChannelCancelUserAutoSignEnableUrlRequest, DeleteOrganizationAuthorizationsResponse, DescribeExtendedServiceAuthDetailRequest, CreateOrganizationAuthFileRequest, ChannelVerifyPdfResponse, ArchiveDynamicFlowResponse, CreateConsoleLoginUrlRequest, CreateLegalSealQrCodeRequest, CreateCloseOrganizationUrlRequest, CreatePersonAuthCertificateImageResponse, CreateEmployeeQualificationSealQrCodeRequest, ChannelCreateUserAutoSignSealUrlRequest, ChannelCreateUserAutoSignEnableUrlRequest, ChannelCancelMultiFlowSignQRCodeRequest, ChannelDescribeOrganizationSealsRequest, DescribeUsageRequest, DescribeExtendedServiceAuthInfoRequest, CreateCloseOrganizationUrlResponse, DescribeChannelSealPolicyWorkflowUrlRequest, CreatePartnerAutoSignAuthUrlResponse, ArchiveDynamicFlowRequest, ChannelCreateDynamicFlowApproverRequest, ModifyFlowDeadlineResponse, ChannelCreateBoundFlowsResponse, ChannelCreateUserAutoSignSealUrlResponse, ChannelCreateBatchQuickSignUrlRequest, ChannelCreateBoundFlowsRequest, ChannelDescribeEmployeesRequest, CreateFlowBlockchainEvidenceUrlResponse, ChannelDeleteRoleUsersResponse, SyncProxyOrganizationOperatorsRequest, ChannelCreateFlowApproversResponse, DescribeUsageResponse, CreateSignUrlsRequest, ChannelCreateMultiFlowSignQRCodeRequest, ChannelCreateUserAutoSignEnableUrlResponse, ChannelGetTaskResultApiRequest, DescribeChannelOrganizationsRequest, ChannelCreatePreparedPersonalEsignRequest, CreateEmployeeChangeUrlResponse, ChannelRenewAutoSignLicenseRequest, ChannelDescribeBillUsageDetailResponse, CreatePersonAuthCertificateImageRequest, CreateFlowsByTemplatesResponse, DescribeChannelFlowEvidenceReportRequest, ChannelCreateRoleResponse, CreateEmployeeChangeUrlRequest, ChannelDescribeUserAutoSignStatusRequest, ChannelModifyRoleResponse, CreateSignUrlsResponse, ChannelDeleteRoleRequest, CreateBatchOrganizationRegistrationTasksRequest, ChannelCreateBatchQuickSignUrlResponse, CreateBatchOrganizationAuthorizationUrlResponse, CreatePartnerAutoSignAuthUrlRequest, ChannelCreateBatchCancelFlowUrlRequest, ChannelDescribeAccountBillDetailResponse, CreateFlowForwardsResponse, ChannelCreateFlowByFilesResponse, ChannelCreateFlowSignReviewResponse, ChannelDisableUserAutoSignRequest, ChannelDescribeOrganizationSealsResponse, SyncProxyOrganizationOperatorsResponse, CreateSealByImageResponse, ChannelCancelMultiFlowSignQRCodeResponse, ChannelDescribeRolesResponse, CreateChannelSubOrganizationActiveResponse, ChannelCreateReleaseFlowRequest, ChannelDescribeFlowComponentsResponse, DeleteOrganizationAuthorizationsRequest, ChannelCreateFlowGroupByFilesResponse, ChannelCreateMultiFlowSignQRCodeResponse, DescribeCancelFlowsTaskRequest, ChannelDescribeUserAutoSignStatusResponse, ModifyExtendedServiceResponse, ChannelCreateUserRolesRequest, ChannelGetTaskResultApiResponse, ChannelCreateBatchSignUrlRequest, ChannelCreateOrganizationModifyQrCodeResponse, ChannelDeleteSealPoliciesResponse, ChannelCreateWebThemeConfigResponse, GetDownloadFlowUrlRequest, ChannelCreateEmbedWebUrlResponse, ChannelBatchCancelFlowsRequest, CreateChannelOrganizationInfoChangeUrlRequest, ChannelModifyRoleRequest, ModifyFlowDeadlineRequest, ChannelUpdateSealStatusRequest, ChannelCreateFlowGroupByTemplatesRequest, CreateBatchInitOrganizationUrlRequest, CreateFlowGroupSignReviewRequest, DescribeTemplatesRequest, ChannelCreateSealPolicyRequest, CreateFlowsByTemplatesRequest, DescribeBatchOrganizationRegistrationUrlsResponse, UploadFilesRequest, CreateSealByImageRequest, DescribeChannelOrganizationsResponse, ChannelCreateOrganizationBatchSignUrlResponse, CreateBatchOrganizationAuthorizationUrlRequest, ChannelCreateBatchCancelFlowUrlResponse, OperateChannelTemplateRequest, DescribeChannelSealPolicyWorkflowUrlResponse, CreateChannelFlowEvidenceReportResponse, ChannelDescribeAccountBillDetailRequest, ChannelDescribeEmployeesResponse, ChannelDeleteRoleResponse, ChannelCreateReleaseFlowResponse, DescribeChannelFlowEvidenceReportResponse, CreateFlowBlockchainEvidenceUrlRequest, ChannelCreateFlowApproversRequest, ChannelUpdateSealStatusResponse, ChannelCreateFlowRemindsRequest, DescribeExtendedServiceAuthInfoResponse, ChannelCreateEmbedWebUrlRequest, ChannelDescribeFlowComponentsRequest, PrepareFlowsRequest } from "./essbasic_models";
|
|
3
3
|
/**
|
|
4
4
|
* essbasic client
|
|
5
5
|
* @class
|
|
@@ -808,6 +808,17 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
808
808
|
1. <a href="https://dyn.ess.tencent.cn/guide/apivideo/essbasic-UploadFiles.mp4" target="_blank">【上传文件代码】编写示例</a><br>
|
|
809
809
|
*/
|
|
810
810
|
UploadFiles(req: UploadFilesRequest, cb?: (error: string, rep: UploadFilesResponse) => void): Promise<UploadFilesResponse>;
|
|
811
|
+
/**
|
|
812
|
+
* 该接口用于将合同中本企业当前经办人转为本企业其他员工进行操作。
|
|
813
|
+
|
|
814
|
+
注意:
|
|
815
|
+
1. 转交的目标经办人需要已经加入企业,且完成实名。
|
|
816
|
+
2. 仅企业拥有`超管`或`法人角色`的员工才有调用本接口的权限。
|
|
817
|
+
3. 仅支持当前经办人为待签署或待填写状态时进行转交操作。
|
|
818
|
+
4. 若原合同有填写控件,且当前经办人已经完成填写,则不支持进行转交。
|
|
819
|
+
5. 若当前经办人已签署完成,或者处于签署流程中,则不支持进行转交。
|
|
820
|
+
*/
|
|
821
|
+
CreateFlowForwards(req: CreateFlowForwardsRequest, cb?: (error: string, rep: CreateFlowForwardsResponse) => void): Promise<CreateFlowForwardsResponse>;
|
|
811
822
|
/**
|
|
812
823
|
* 该接口用于发起合同后,生成用户的签署链接 <br/>
|
|
813
824
|
|
|
@@ -943,6 +943,19 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
943
943
|
async UploadFiles(req, cb) {
|
|
944
944
|
return this.request("UploadFiles", req, cb);
|
|
945
945
|
}
|
|
946
|
+
/**
|
|
947
|
+
* 该接口用于将合同中本企业当前经办人转为本企业其他员工进行操作。
|
|
948
|
+
|
|
949
|
+
注意:
|
|
950
|
+
1. 转交的目标经办人需要已经加入企业,且完成实名。
|
|
951
|
+
2. 仅企业拥有`超管`或`法人角色`的员工才有调用本接口的权限。
|
|
952
|
+
3. 仅支持当前经办人为待签署或待填写状态时进行转交操作。
|
|
953
|
+
4. 若原合同有填写控件,且当前经办人已经完成填写,则不支持进行转交。
|
|
954
|
+
5. 若当前经办人已签署完成,或者处于签署流程中,则不支持进行转交。
|
|
955
|
+
*/
|
|
956
|
+
async CreateFlowForwards(req, cb) {
|
|
957
|
+
return this.request("CreateFlowForwards", req, cb);
|
|
958
|
+
}
|
|
946
959
|
/**
|
|
947
960
|
* 该接口用于发起合同后,生成用户的签署链接 <br/>
|
|
948
961
|
|
|
@@ -676,6 +676,25 @@ export interface AuthFailMessage {
|
|
|
676
676
|
*/
|
|
677
677
|
Message?: string;
|
|
678
678
|
}
|
|
679
|
+
/**
|
|
680
|
+
* CreateFlowForwards请求参数结构体
|
|
681
|
+
*/
|
|
682
|
+
export interface CreateFlowForwardsRequest {
|
|
683
|
+
/**
|
|
684
|
+
* 合同对应参与方需要修改的目标经办人对应的OpenId。
|
|
685
|
+
|
|
686
|
+
注意:`需要保证目标经办人已经加入企业且已实名`
|
|
687
|
+
*/
|
|
688
|
+
TargetOpenId: string;
|
|
689
|
+
/**
|
|
690
|
+
* 企业签署方的合同及对应签署方
|
|
691
|
+
*/
|
|
692
|
+
FlowForwardInfos: Array<FlowForwardInfo>;
|
|
693
|
+
/**
|
|
694
|
+
* 关于渠道应用的相关信息,包括渠道应用标识、第三方平台子客企业标识及第三方平台子客企业中的员工标识等内容,您可以参阅开发者中心所提供的 Agent 结构体以获取详细定义。此接口下面信息必填。<ul><li>渠道应用标识: Agent.AppId</li><li>第三方平台子客企业标识: Agent.ProxyOrganizationOpenId</li><li>第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId</li></ul>第三方平台子客企业和员工必须已经经过实名认证
|
|
695
|
+
*/
|
|
696
|
+
Agent: Agent;
|
|
697
|
+
}
|
|
679
698
|
/**
|
|
680
699
|
* DescribeFlowDetailInfo请求参数结构体
|
|
681
700
|
*/
|
|
@@ -2678,6 +2697,15 @@ export interface TemplateInfo {
|
|
|
2678
2697
|
*/
|
|
2679
2698
|
Available?: number;
|
|
2680
2699
|
}
|
|
2700
|
+
/**
|
|
2701
|
+
* 意愿核身(点头确认模式)使用的文案,若未使用意愿核身(点头确认模式),则该字段无需传入。当前仅支持一个提示文本。
|
|
2702
|
+
*/
|
|
2703
|
+
export interface IntentionAction {
|
|
2704
|
+
/**
|
|
2705
|
+
* 点头确认模式下,系统语音播报使用的问题文本,问题最大长度为150个字符。
|
|
2706
|
+
*/
|
|
2707
|
+
Text?: string;
|
|
2708
|
+
}
|
|
2681
2709
|
/**
|
|
2682
2710
|
* ChannelCreateOrganizationBatchSignUrl请求参数结构体
|
|
2683
2711
|
*/
|
|
@@ -3945,6 +3973,19 @@ export interface ChannelCreateUserAutoSignSealUrlRequest {
|
|
|
3945
3973
|
*/
|
|
3946
3974
|
ExpiredTime?: number;
|
|
3947
3975
|
}
|
|
3976
|
+
/**
|
|
3977
|
+
* 转交合同结果
|
|
3978
|
+
*/
|
|
3979
|
+
export interface FlowForwardResult {
|
|
3980
|
+
/**
|
|
3981
|
+
* 合同流程ID为32位字符串。您可以登录腾讯电子签控制台,在 "合同" -> "合同中心" 中查看某个合同的FlowId(在页面中展示为合同ID)。[点击查看FlowId在控制台中的位置](https://qcloudimg.tencent-cloud.cn/raw/0a83015166cfe1cb043d14f9ec4bd75e.png)。
|
|
3982
|
+
*/
|
|
3983
|
+
FlowId?: string;
|
|
3984
|
+
/**
|
|
3985
|
+
* 如果失败,返回的错误细节。
|
|
3986
|
+
*/
|
|
3987
|
+
ErrorDetail?: string;
|
|
3988
|
+
}
|
|
3948
3989
|
/**
|
|
3949
3990
|
* 合同验签每个签署区的信息
|
|
3950
3991
|
*/
|
|
@@ -5848,6 +5889,19 @@ export interface CreatePersonAuthCertificateImageRequest {
|
|
|
5848
5889
|
*/
|
|
5849
5890
|
SceneKey?: string;
|
|
5850
5891
|
}
|
|
5892
|
+
/**
|
|
5893
|
+
* 合同转交相关信息
|
|
5894
|
+
*/
|
|
5895
|
+
export interface FlowForwardInfo {
|
|
5896
|
+
/**
|
|
5897
|
+
* 合同流程ID,为32位字符串。此接口的合同流程ID需要由[创建签署流程](https://qian.tencent.com/developers/companyApis/startFlows/CreateFlow)接口创建得到。
|
|
5898
|
+
*/
|
|
5899
|
+
FlowId: string;
|
|
5900
|
+
/**
|
|
5901
|
+
* 签署方经办人在合同中的参与方ID,为32位字符串。
|
|
5902
|
+
*/
|
|
5903
|
+
RecipientId: string;
|
|
5904
|
+
}
|
|
5851
5905
|
/**
|
|
5852
5906
|
* CreateFlowsByTemplates返回参数结构体
|
|
5853
5907
|
*/
|
|
@@ -6738,13 +6792,21 @@ export interface ApproverRestriction {
|
|
|
6738
6792
|
IdCardNumber?: string;
|
|
6739
6793
|
}
|
|
6740
6794
|
/**
|
|
6741
|
-
*
|
|
6795
|
+
* CreateFlowForwards返回参数结构体
|
|
6742
6796
|
*/
|
|
6743
|
-
export interface
|
|
6797
|
+
export interface CreateFlowForwardsResponse {
|
|
6744
6798
|
/**
|
|
6745
|
-
*
|
|
6799
|
+
* 失败的合同id以及错误详情
|
|
6746
6800
|
*/
|
|
6747
|
-
|
|
6801
|
+
FailedFlows?: Array<FlowForwardResult>;
|
|
6802
|
+
/**
|
|
6803
|
+
* 成功的合同id
|
|
6804
|
+
*/
|
|
6805
|
+
SuccessFlows?: Array<string>;
|
|
6806
|
+
/**
|
|
6807
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6808
|
+
*/
|
|
6809
|
+
RequestId?: string;
|
|
6748
6810
|
}
|
|
6749
6811
|
/**
|
|
6750
6812
|
* ChannelCreateFlowByFiles返回参数结构体
|