tencentcloud-sdk-nodejs-ess 4.1.267 → 4.1.269
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
CHANGED
|
@@ -4288,6 +4288,19 @@ export interface RecipientComponentInfo {
|
|
|
4288
4288
|
*/
|
|
4289
4289
|
SignComponents?: Array<FilledComponent>;
|
|
4290
4290
|
}
|
|
4291
|
+
/**
|
|
4292
|
+
* 根据合同对印章授权
|
|
4293
|
+
*/
|
|
4294
|
+
export interface SealPolicyAuthorizationFlows {
|
|
4295
|
+
/**
|
|
4296
|
+
* <p>合同id列表,最大支持50个</p>
|
|
4297
|
+
*/
|
|
4298
|
+
FlowIds?: Array<string>;
|
|
4299
|
+
/**
|
|
4300
|
+
* <p>合同组id列表, 最大支持10个<br>FlowGroupIds(合同组)与FlowIds(合同列表) 两个参数只能选择其中一个,两者同时传会提示参数错误。</p>
|
|
4301
|
+
*/
|
|
4302
|
+
FlowGroupIds?: Array<string>;
|
|
4303
|
+
}
|
|
4291
4304
|
/**
|
|
4292
4305
|
* ExportContractReviewResult返回参数结构体
|
|
4293
4306
|
*/
|
|
@@ -4891,16 +4904,15 @@ export interface SignQrCode {
|
|
|
4891
4904
|
*/
|
|
4892
4905
|
export interface CreateSealPolicyResponse {
|
|
4893
4906
|
/**
|
|
4894
|
-
*
|
|
4895
|
-
可登录腾讯电子签控制台,在 "更多能力"->"组织管理" 中查看某位员工的UserId(在页面中展示为用户ID)。
|
|
4907
|
+
* <p>最终授权成功的用户ID,在腾讯电子签平台的唯一身份标识,为32位字符串。<br>可登录腾讯电子签控制台,在 "更多能力"->"组织管理" 中查看某位员工的UserId(在页面中展示为用户ID)。</p>
|
|
4896
4908
|
*/
|
|
4897
4909
|
UserIds?: Array<string>;
|
|
4898
4910
|
/**
|
|
4899
|
-
*
|
|
4911
|
+
* <p>人脸验证操作人链接,用法可以参考"<a href="https://qian.tencent.com/developers/company/openwxminiprogram/">跳转电子签小程序配置</a>",默认为空。</p>
|
|
4900
4912
|
*/
|
|
4901
4913
|
SealOperatorVerifyPath?: string;
|
|
4902
4914
|
/**
|
|
4903
|
-
*
|
|
4915
|
+
* <p>人脸验证操作人二维码链接,扫码后会跳转到腾讯电子签小程序进行人脸验证,默认为空。</p>
|
|
4904
4916
|
*/
|
|
4905
4917
|
SealOperatorVerifyQrcodeUrl?: string;
|
|
4906
4918
|
/**
|
|
@@ -7568,6 +7580,10 @@ export interface CreateOrganizationAuthUrlRequest {
|
|
|
7568
7580
|
* <p>企业认证页面隐藏上传营业执照<br><img src="https://qcloudimg.tencent-cloud.cn/raw/cf827ce0e2043d8cc85e0735c9cfa3fc.png" alt="image"><br><img src="https://qcloudimg.tencent-cloud.cn/raw/f908cabe71238c78ee8fafc70888a344.png" alt="image"></p>
|
|
7569
7581
|
*/
|
|
7570
7582
|
HideBizLicense?: boolean;
|
|
7583
|
+
/**
|
|
7584
|
+
* <p>对方打开链接认证时,公司地址是否要与接口传递上来的保持一致。</p><ul><li><b>false(默认值)</b>:关闭状态,实际认证时允许与接口传递的信息存在不一致。</li><li><b>true</b>:启用状态,实际认证时必须与接口传递的信息完全相符。</li></ul><p></p><p>p.s. 仅在公司地址(OrganizationAddress)不为空时有效</p>
|
|
7585
|
+
*/
|
|
7586
|
+
AddressSame?: boolean;
|
|
7571
7587
|
}
|
|
7572
7588
|
/**
|
|
7573
7589
|
* CreateIntegrationRole请求参数结构体
|
|
@@ -9787,41 +9803,41 @@ export interface DescribeContractReviewMarkedRiskExportTaskResponse {
|
|
|
9787
9803
|
*/
|
|
9788
9804
|
export interface CreateSealPolicyRequest {
|
|
9789
9805
|
/**
|
|
9790
|
-
*
|
|
9791
|
-
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
9806
|
+
* <p>执行本接口操作的员工信息。<br>注: <code>在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。</code></p>
|
|
9792
9807
|
*/
|
|
9793
9808
|
Operator: UserInfo;
|
|
9794
9809
|
/**
|
|
9795
|
-
*
|
|
9810
|
+
* <p>用户在电子文件签署平台标识信息,具体参考UserInfo结构体。可跟下面的UserIds可叠加起作用,<br>同时也支持使用主企业的User进行授权, 当使用主企业的User时, 需要有集团角色。</p>
|
|
9796
9811
|
*/
|
|
9797
9812
|
Users: Array<UserInfo>;
|
|
9798
9813
|
/**
|
|
9799
|
-
*
|
|
9800
|
-
建议开发者保留此印章ID,后续指定签署区印章或者操作印章需此印章ID。
|
|
9801
|
-
可登录腾讯电子签控制台,在 "印章"->"印章中心"选择查看的印章,在"印章详情" 中查看某个印章的SealId(在页面中展示为印章ID)。
|
|
9814
|
+
* <p>电子印章ID,为32位字符串。<br>建议开发者保留此印章ID,后续指定签署区印章或者操作印章需此印章ID。<br>可登录腾讯电子签控制台,在 "印章"->"印章中心"选择查看的印章,在"印章详情" 中查看某个印章的SealId(在页面中展示为印章ID)。</p>
|
|
9802
9815
|
*/
|
|
9803
9816
|
SealId: string;
|
|
9804
9817
|
/**
|
|
9805
|
-
*
|
|
9818
|
+
* <p>授权有效期,时间戳秒级。可以传0,代表有效期到2099年12月12日23点59分59秒。</p>
|
|
9806
9819
|
*/
|
|
9807
9820
|
Expired: number;
|
|
9808
9821
|
/**
|
|
9809
|
-
*
|
|
9822
|
+
* <p>需要授权的用户UserId集合。跟上面的SealId参数配合使用。选填,跟上面的Users同时起作用。<br>支持使用主企业的UserId进行授权, 当使用主企业的UserId时,该UserId 需要有集团角色。</p>
|
|
9810
9823
|
*/
|
|
9811
9824
|
UserIds?: Array<string>;
|
|
9812
9825
|
/**
|
|
9813
|
-
*
|
|
9826
|
+
* <p>印章授权内容,最多300 个字符。</p>
|
|
9814
9827
|
*/
|
|
9815
9828
|
Policy?: string;
|
|
9816
9829
|
/**
|
|
9817
|
-
*
|
|
9818
|
-
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
9830
|
+
* <p>代理企业和员工的信息。<br>在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。</p>
|
|
9819
9831
|
*/
|
|
9820
9832
|
Agent?: Agent;
|
|
9821
9833
|
/**
|
|
9822
|
-
*
|
|
9834
|
+
* <p>个性化配置字段,默认不传。</p>
|
|
9823
9835
|
*/
|
|
9824
9836
|
Options?: Array<Option>;
|
|
9837
|
+
/**
|
|
9838
|
+
* <p>针对用印的合同/合同组授权。<br>当单次用印授权时,可以仅在指定合同获得印章授权。<br>此场景下不会触发印章授权回调。</p>
|
|
9839
|
+
*/
|
|
9840
|
+
AuthorizationFlows?: SealPolicyAuthorizationFlows;
|
|
9825
9841
|
}
|
|
9826
9842
|
/**
|
|
9827
9843
|
* DescribeContractReviewTask返回参数结构体
|