tencentcloud-sdk-nodejs-essbasic 4.1.100 → 4.1.102
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
|
@@ -472,6 +472,14 @@ export interface OrganizationAuthUrl {
|
|
|
472
472
|
* 企业批量注册的错误信息,例如:企业三要素不通过
|
|
473
473
|
*/
|
|
474
474
|
ErrorMessage?: string;
|
|
475
|
+
/**
|
|
476
|
+
* 企业批量注册 传递过来的企业名称,方便客户定位企业
|
|
477
|
+
*/
|
|
478
|
+
OrganizationName?: string;
|
|
479
|
+
/**
|
|
480
|
+
* 企业批量注册的唯一 Id, 此 Id 可以用在[创建企业批量认证链接-单链接](https://qian.tencent.com/developers/partnerApis/accounts/CreateBatchOrganizationRegistrationTasks)。
|
|
481
|
+
*/
|
|
482
|
+
SubTaskId?: string;
|
|
475
483
|
}
|
|
476
484
|
/**
|
|
477
485
|
* 合同组相关信息,指定合同组子合同和签署方的信息,用于补充动态签署人。
|
|
@@ -9062,10 +9070,7 @@ export interface UploadFilesRequest {
|
|
|
9062
9070
|
*/
|
|
9063
9071
|
Agent: Agent;
|
|
9064
9072
|
/**
|
|
9065
|
-
*
|
|
9066
|
-
文件对应业务类型,可以选择的类型如下
|
|
9067
|
-
<ul><li> **TEMPLATE** : 此上传的文件用户生成合同模板,文件类型支持.pdf/.doc/.docx/.html格式,如果非pdf文件需要通过<a href="https://qian.tencent.com/developers/partnerApis/files/ChannelGetTaskResultApi" target="_blank">创建文件转换任务</a>转换后才能使用</li>
|
|
9068
|
-
<li> **DOCUMENT** : 此文件用来发起合同流程,文件类型支持.pdf/.doc/.docx/.jpg/.png/.xls.xlsx/.html,如果非pdf文件需要通过<a href="https://qian.tencent.com/developers/partnerApis/files/ChannelGetTaskResultApi" target="_blank">创建文件转换任务</a>转换后才能使用</li></ul>
|
|
9073
|
+
* 文件对应业务类型,可以选择的类型如下<ul><li> **TEMPLATE** : 此上传的文件用户生成合同模板,文件类型支持.pdf/.doc/.docx/.html格式,如果非pdf文件需要通过<a href="https://qian.tencent.com/developers/companyApis/templatesAndFiles/CreateConvertTaskApi" target="_blank">创建文件转换任务</a>转换后才能使用</li><li> **DOCUMENT** : 此文件用来发起合同流程,文件类型支持.pdf/.doc/.docx/.jpg/.png/.xls.xlsx/.html。如果上传的是非pdf文件,用来发起流程,还需要通过<a href="https://qian.tencent.com/developers/companyApis/templatesAndFiles/CreateConvertTaskApi" target="_blank">创建文件转换任务</a>转换后得到的pdf文件才能用于发起合同接口。如果上传的文件不是用来发起合同,直接上传后使用返回的文件资源Id即可</li><li> **SEAL** : 此文件用于印章的生成,文件类型支持.jpg/.jpeg/.png</li></ul>
|
|
9069
9074
|
*/
|
|
9070
9075
|
BusinessType: string;
|
|
9071
9076
|
/**
|
|
@@ -9233,6 +9238,15 @@ export interface EmbedUrlOption {
|
|
|
9233
9238
|
<ul><li>(默认) false -否</li> <li> true - 禁止编辑</li></ul>
|
|
9234
9239
|
*/
|
|
9235
9240
|
ForbidEditWatermark?: boolean;
|
|
9241
|
+
/**
|
|
9242
|
+
* 印章描述
|
|
9243
|
+
*/
|
|
9244
|
+
SealDescription?: string;
|
|
9245
|
+
/**
|
|
9246
|
+
* 是否禁止编辑印章描述内容
|
|
9247
|
+
<ul><li>(默认) false -否</li> <li> true - 禁止编辑</li></ul>
|
|
9248
|
+
*/
|
|
9249
|
+
ForbidEditSealDescription?: string;
|
|
9236
9250
|
}
|
|
9237
9251
|
/**
|
|
9238
9252
|
* CreateBatchOrganizationAuthorizationUrl请求参数结构体
|