tencentcloud-sdk-nodejs-ess 4.0.698 → 4.0.700

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.
@@ -32,6 +32,7 @@ import {
32
32
  CreateMultiFlowSignQRCodeResponse,
33
33
  FlowApproverUrlInfo,
34
34
  ReviewerInfo,
35
+ FlowBrief,
35
36
  DescribeThirdPartyAuthCodeResponse,
36
37
  HasAuthUser,
37
38
  DisableUserAutoSignResponse,
@@ -73,7 +74,7 @@ import {
73
74
  CreateReleaseFlowResponse,
74
75
  CreateWebThemeConfigResponse,
75
76
  BindEmployeeUserIdWithClientOpenIdRequest,
76
- DescribeIntegrationDepartmentsRequest,
77
+ CreateOrganizationInfoChangeUrlResponse,
77
78
  Permission,
78
79
  Staff,
79
80
  ComponentLimit,
@@ -197,13 +198,14 @@ import {
197
198
  CreateBatchCancelFlowUrlRequest,
198
199
  CreateMultiFlowSignQRCodeRequest,
199
200
  DescribeFlowInfoRequest,
201
+ DescribeIntegrationDepartmentsRequest,
200
202
  DescribeFlowInfoResponse,
201
203
  CancelMultiFlowSignQRCodeResponse,
202
204
  CreateFlowResponse,
203
205
  DescribeUserAutoSignStatusRequest,
204
206
  FilledComponent,
205
207
  FileUrl,
206
- FlowBrief,
208
+ CreateOrganizationInfoChangeUrlRequest,
207
209
  DescribeOrganizationGroupOrganizationsResponse,
208
210
  DescribeExtendedServiceAuthInfosResponse,
209
211
  CcInfo,
@@ -576,6 +578,31 @@ export class Client extends TencentCloudCommon.AbstractClient {
576
578
  return this.request("CreateReleaseFlow", req, cb)
577
579
  }
578
580
 
581
+ /**
582
+ * 获取跳转至腾讯电子签小程序的签署链接
583
+
584
+ 适用场景:如果需要签署人在自己的APP、小程序、H5应用中签署,可以通过此接口获取跳转腾讯电子签小程序的签署跳转链接。
585
+
586
+ 跳转到小程序的实现,参考微信官方文档(分为<a href="https://developers.weixin.qq.com/miniprogram/dev/api/navigate/wx.navigateToMiniProgram.html">全屏</a>、<a href="https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/openEmbeddedMiniProgram.html">半屏</a>两种方式),如何配置也可以请参考: <a href="https://qian.tencent.com/developers/company/openwxminiprogram">跳转电子签小程序配置</a>
587
+
588
+ 注:
589
+ `1. 如果签署人是在PC端扫码签署,可以通过生成跳转链接自主转换成二维码,让签署人在PC端扫码签署`
590
+ `2. 签署链接的有效期为90天,超过有效期链接不可用`
591
+
592
+ 其中小程序的原始Id如下,或者查看小程序信息自助获取。
593
+
594
+ | 小程序 | AppID | 原始ID |
595
+ | ------------ | ------------ | ------------ |
596
+ | 腾讯电子签(正式版) | wxa023b292fd19d41d | gh_da88f6188665 |
597
+ | 腾讯电子签Demo | wx371151823f6f3edf | gh_39a5d3de69fa |
598
+ */
599
+ async CreateSchemeUrl(
600
+ req: CreateSchemeUrlRequest,
601
+ cb?: (error: string, rep: CreateSchemeUrlResponse) => void
602
+ ): Promise<CreateSchemeUrlResponse> {
603
+ return this.request("CreateSchemeUrl", req, cb)
604
+ }
605
+
579
606
  /**
580
607
  * 通过此接口获取个人用户自动签的开通状态。
581
608
 
@@ -969,28 +996,13 @@ httpProfile.setEndpoint("file.test.ess.tencent.cn");
969
996
  }
970
997
 
971
998
  /**
972
- * 获取跳转至腾讯电子签小程序的签署链接
973
-
974
- 适用场景:如果需要签署人在自己的APP、小程序、H5应用中签署,可以通过此接口获取跳转腾讯电子签小程序的签署跳转链接。
975
-
976
- 跳转到小程序的实现,参考微信官方文档(分为<a href="https://developers.weixin.qq.com/miniprogram/dev/api/navigate/wx.navigateToMiniProgram.html">全屏</a>、<a href="https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/openEmbeddedMiniProgram.html">半屏</a>两种方式),如何配置也可以请参考: <a href="https://qian.tencent.com/developers/company/openwxminiprogram">跳转电子签小程序配置</a>
977
-
978
- 注:
979
- `1. 如果签署人是在PC端扫码签署,可以通过生成跳转链接自主转换成二维码,让签署人在PC端扫码签署`
980
- `2. 签署链接的有效期为90天,超过有效期链接不可用`
981
-
982
- 其中小程序的原始Id如下,或者查看小程序信息自助获取。
983
-
984
- | 小程序 | AppID | 原始ID |
985
- | ------------ | ------------ | ------------ |
986
- | 腾讯电子签(正式版) | wxa023b292fd19d41d | gh_da88f6188665 |
987
- | 腾讯电子签Demo | wx371151823f6f3edf | gh_39a5d3de69fa |
988
- */
989
- async CreateSchemeUrl(
990
- req: CreateSchemeUrlRequest,
991
- cb?: (error: string, rep: CreateSchemeUrlResponse) => void
992
- ): Promise<CreateSchemeUrlResponse> {
993
- return this.request("CreateSchemeUrl", req, cb)
999
+ * 此接口(CreateOrganizationInfoChangeUrl)用于创建企业信息变更链接,支持创建企业超管变更链接或企业基础信息变更链接,通过入参ChangeType指定。
1000
+ */
1001
+ async CreateOrganizationInfoChangeUrl(
1002
+ req: CreateOrganizationInfoChangeUrlRequest,
1003
+ cb?: (error: string, rep: CreateOrganizationInfoChangeUrlResponse) => void
1004
+ ): Promise<CreateOrganizationInfoChangeUrlResponse> {
1005
+ return this.request("CreateOrganizationInfoChangeUrl", req, cb)
994
1006
  }
995
1007
 
996
1008
  /**
@@ -404,6 +404,66 @@ export interface ReviewerInfo {
404
404
  Mobile?: string
405
405
  }
406
406
 
407
+ /**
408
+ * 合同流程的基础信息
409
+ */
410
+ export interface FlowBrief {
411
+ /**
412
+ * 合同流程ID,为32位字符串。
413
+ */
414
+ FlowId?: string
415
+ /**
416
+ * 合同流程的名称。
417
+ */
418
+ FlowName?: string
419
+ /**
420
+ * 合同流程描述信息。
421
+ 注意:此字段可能返回 null,表示取不到有效值。
422
+ */
423
+ FlowDescription?: string
424
+ /**
425
+ * 合同流程的类别分类(如销售合同/入职合同等)。
426
+ */
427
+ FlowType?: string
428
+ /**
429
+ * 合同流程当前的签署状态, 会存在下列的状态值
430
+ <ul><li> **0** : 未开启流程(合同中不存在填写环节)</li>
431
+ <li> **1** : 待签署</li>
432
+ <li> **2** : 部分签署</li>
433
+ <li> **3** : 已拒签</li>
434
+ <li> **4** : 已签署</li>
435
+ <li> **5** : 已过期</li>
436
+ <li> **6** : 已撤销</li>
437
+ <li> **7** : 未开启流程(合同中存在填写环节)</li>
438
+ <li> **8** : 等待填写</li>
439
+ <li> **9** : 部分填写</li>
440
+ <li> **10** : 已拒填</li>
441
+ <li> **21** : 已解除</li></ul>
442
+ 注意:此字段可能返回 null,表示取不到有效值。
443
+ */
444
+ FlowStatus?: number
445
+ /**
446
+ * 合同流程创建时间,格式为Unix标准时间戳(秒)。
447
+ 注意:此字段可能返回 null,表示取不到有效值。
448
+ */
449
+ CreatedOn?: number
450
+ /**
451
+ * 当合同流程状态为已拒签(即 FlowStatus=3)或已撤销(即 FlowStatus=6)时,此字段 FlowMessage 为拒签或撤销原因。
452
+ 注意:此字段可能返回 null,表示取不到有效值。
453
+ */
454
+ FlowMessage?: string
455
+ /**
456
+ * 合同流程发起方的员工编号, 即员工在腾讯电子签平台的唯一身份标识。
457
+ 注意:此字段可能返回 null,表示取不到有效值。
458
+ */
459
+ Creator?: string
460
+ /**
461
+ * 合同流程的签署截止时间,格式为Unix标准时间戳(秒)。
462
+ 注意:此字段可能返回 null,表示取不到有效值。
463
+ */
464
+ Deadline?: number
465
+ }
466
+
407
467
  /**
408
468
  * DescribeThirdPartyAuthCode返回参数结构体
409
469
  */
@@ -1721,35 +1781,21 @@ export interface BindEmployeeUserIdWithClientOpenIdRequest {
1721
1781
  }
1722
1782
 
1723
1783
  /**
1724
- * DescribeIntegrationDepartments请求参数结构体
1784
+ * CreateOrganizationInfoChangeUrl返回参数结构体
1725
1785
  */
1726
- export interface DescribeIntegrationDepartmentsRequest {
1786
+ export interface CreateOrganizationInfoChangeUrlResponse {
1727
1787
  /**
1728
- * 执行本接口操作的员工信息。
1729
- 注: `在调用此接口时,请确保指定的员工已获得组织架构管理权限,并具备接口传入的相应资源的数据权限。`
1788
+ * 创建的企业信息变更链接。
1730
1789
  */
1731
- Operator: UserInfo
1732
- /**
1733
- * 查询类型,支持以下类型:
1734
- <ul><li>**0**:查询单个部门节点列表,不包含子节点部门信息</li>
1735
- <li>**1**:查询单个部门节点级一级子节点部门信息列表</li></ul>
1736
- */
1737
- QueryType: number
1790
+ Url?: string
1738
1791
  /**
1739
- * 代理企业和员工的信息。
1740
- 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
1792
+ * 链接过期时间。链接7天有效。
1741
1793
  */
1742
- Agent?: Agent
1743
- /**
1744
- * 查询的部门ID。
1745
- 注:`如果同时指定了DeptId与DeptOpenId参数,系统将优先使用DeptId参数进行查询。当二者都未指定时,系统将返回根节点部门数据。`
1746
- */
1747
- DeptId?: string
1794
+ ExpiredTime?: number
1748
1795
  /**
1749
- * 查询的客户系统部门ID。
1750
- 注:`如果同时指定了DeptId与DeptOpenId参数,系统将优先使用DeptId参数进行查询。当二者都未指定时,系统将返回根节点部门数据。`
1796
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId
1751
1797
  */
1752
- DeptOpenId?: string
1798
+ RequestId?: string
1753
1799
  }
1754
1800
 
1755
1801
  /**
@@ -6365,6 +6411,38 @@ export interface DescribeFlowInfoRequest {
6365
6411
  FlowGroupId?: string
6366
6412
  }
6367
6413
 
6414
+ /**
6415
+ * DescribeIntegrationDepartments请求参数结构体
6416
+ */
6417
+ export interface DescribeIntegrationDepartmentsRequest {
6418
+ /**
6419
+ * 执行本接口操作的员工信息。
6420
+ 注: `在调用此接口时,请确保指定的员工已获得组织架构管理权限,并具备接口传入的相应资源的数据权限。`
6421
+ */
6422
+ Operator: UserInfo
6423
+ /**
6424
+ * 查询类型,支持以下类型:
6425
+ <ul><li>**0**:查询单个部门节点列表,不包含子节点部门信息</li>
6426
+ <li>**1**:查询单个部门节点级一级子节点部门信息列表</li></ul>
6427
+ */
6428
+ QueryType: number
6429
+ /**
6430
+ * 代理企业和员工的信息。
6431
+ 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
6432
+ */
6433
+ Agent?: Agent
6434
+ /**
6435
+ * 查询的部门ID。
6436
+ 注:`如果同时指定了DeptId与DeptOpenId参数,系统将优先使用DeptId参数进行查询。当二者都未指定时,系统将返回根节点部门数据。`
6437
+ */
6438
+ DeptId?: string
6439
+ /**
6440
+ * 查询的客户系统部门ID。
6441
+ 注:`如果同时指定了DeptId与DeptOpenId参数,系统将优先使用DeptId参数进行查询。当二者都未指定时,系统将返回根节点部门数据。`
6442
+ */
6443
+ DeptOpenId?: string
6444
+ }
6445
+
6368
6446
  /**
6369
6447
  * DescribeFlowInfo返回参数结构体
6370
6448
  */
@@ -6497,63 +6575,24 @@ export interface FileUrl {
6497
6575
  }
6498
6576
 
6499
6577
  /**
6500
- * 合同流程的基础信息
6578
+ * CreateOrganizationInfoChangeUrl请求参数结构体
6501
6579
  */
6502
- export interface FlowBrief {
6580
+ export interface CreateOrganizationInfoChangeUrlRequest {
6503
6581
  /**
6504
- * 合同流程ID,为32位字符串。
6505
- */
6506
- FlowId?: string
6507
- /**
6508
- * 合同流程的名称。
6509
- */
6510
- FlowName?: string
6511
- /**
6512
- * 合同流程描述信息。
6513
- 注意:此字段可能返回 null,表示取不到有效值。
6514
- */
6515
- FlowDescription?: string
6516
- /**
6517
- * 合同流程的类别分类(如销售合同/入职合同等)。
6518
- */
6519
- FlowType?: string
6520
- /**
6521
- * 合同流程当前的签署状态, 会存在下列的状态值
6522
- <ul><li> **0** : 未开启流程(合同中不存在填写环节)</li>
6523
- <li> **1** : 待签署</li>
6524
- <li> **2** : 部分签署</li>
6525
- <li> **3** : 已拒签</li>
6526
- <li> **4** : 已签署</li>
6527
- <li> **5** : 已过期</li>
6528
- <li> **6** : 已撤销</li>
6529
- <li> **7** : 未开启流程(合同中存在填写环节)</li>
6530
- <li> **8** : 等待填写</li>
6531
- <li> **9** : 部分填写</li>
6532
- <li> **10** : 已拒填</li>
6533
- <li> **21** : 已解除</li></ul>
6534
- 注意:此字段可能返回 null,表示取不到有效值。
6535
- */
6536
- FlowStatus?: number
6537
- /**
6538
- * 合同流程创建时间,格式为Unix标准时间戳(秒)。
6539
- 注意:此字段可能返回 null,表示取不到有效值。
6540
- */
6541
- CreatedOn?: number
6542
- /**
6543
- * 当合同流程状态为已拒签(即 FlowStatus=3)或已撤销(即 FlowStatus=6)时,此字段 FlowMessage 为拒签或撤销原因。
6544
- 注意:此字段可能返回 null,表示取不到有效值。
6582
+ * 执行本接口操作的员工信息。
6583
+ 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
6545
6584
  */
6546
- FlowMessage?: string
6585
+ Operator: UserInfo
6547
6586
  /**
6548
- * 合同流程发起方的员工编号, 即员工在腾讯电子签平台的唯一身份标识。
6549
- 注意:此字段可能返回 null,表示取不到有效值。
6587
+ * 企业信息变更类型,可选类型如下:
6588
+ <ul><li>**1**:企业超管变更</li><li>**2**:企业基础信息变更</li></ul>
6550
6589
  */
6551
- Creator?: string
6590
+ ChangeType: number
6552
6591
  /**
6553
- * 合同流程的签署截止时间,格式为Unix标准时间戳(秒)。
6554
- 注意:此字段可能返回 null,表示取不到有效值。
6592
+ * 代理企业和员工的信息。
6593
+ 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
6555
6594
  */
6556
- Deadline?: number
6595
+ Agent?: Agent
6557
6596
  }
6558
6597
 
6559
6598
  /**
@@ -1,5 +1,5 @@
1
1
  import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
2
- import { DescribePersonCertificateResponse, CreateSealRequest, ModifyIntegrationDepartmentResponse, CancelFlowResponse, DescribeFlowEvidenceReportRequest, UpdateIntegrationEmployeesResponse, CreatePreparedPersonalEsignRequest, DescribeIntegrationDepartmentsResponse, CreateFlowApproversResponse, DescribeFileUrlsResponse, ModifyApplicationCallbackInfoResponse, CreateMultiFlowSignQRCodeResponse, DescribeThirdPartyAuthCodeResponse, DisableUserAutoSignResponse, CancelUserAutoSignEnableUrlResponse, BindEmployeeUserIdWithClientOpenIdResponse, CreateIntegrationEmployeesRequest, DescribeIntegrationRolesRequest, CreateFlowEvidenceReportRequest, StartFlowResponse, CreateIntegrationRoleRequest, DeleteIntegrationRoleUsersResponse, CreateConvertTaskApiRequest, DeleteIntegrationEmployeesResponse, CreateBatchSignUrlResponse, CreateFlowRemindsResponse, DescribeOrganizationGroupOrganizationsRequest, CreateFlowGroupByFilesRequest, DescribeFlowComponentsResponse, DescribeFlowEvidenceReportResponse, DeleteSealPoliciesRequest, CreateFlowGroupByTemplatesResponse, CreateDocumentResponse, DescribeIntegrationEmployeesRequest, CreateIntegrationUserRolesResponse, CreateFlowRequest, CreateSchemeUrlRequest, DeleteIntegrationDepartmentResponse, DescribeThirdPartyAuthCodeRequest, UnbindEmployeeUserIdWithClientOpenIdResponse, CreateReleaseFlowResponse, CreateWebThemeConfigResponse, BindEmployeeUserIdWithClientOpenIdRequest, DescribeIntegrationDepartmentsRequest, CreateIntegrationDepartmentResponse, DescribeFlowTemplatesRequest, DeleteSealPoliciesResponse, DescribeUserAutoSignStatusResponse, CreatePersonAuthCertificateImageResponse, CreateBatchCancelFlowUrlResponse, CreateSealPolicyResponse, DisableUserAutoSignRequest, DescribeIntegrationEmployeesResponse, CreateConvertTaskApiResponse, CreateFlowSignReviewRequest, UnbindEmployeeUserIdWithClientOpenIdRequest, CreateSchemeUrlResponse, CreateUserAutoSignEnableUrlResponse, CreateFlowSignUrlResponse, DescribeFileUrlsRequest, CreateFlowApproversRequest, ModifyIntegrationRoleResponse, CreateFlowEvidenceReportResponse, CreateIntegrationRoleResponse, DescribeFlowComponentsRequest, CreateIntegrationDepartmentRequest, CreateDocumentRequest, CreatePreparedPersonalEsignResponse, DescribeOrganizationSealsResponse, CreateEmbedWebUrlRequest, DeleteIntegrationEmployeesRequest, GetTaskResultApiRequest, ModifyIntegrationRoleRequest, CreateFlowGroupByFilesResponse, CreateIntegrationEmployeesResponse, DeleteIntegrationRoleUsersRequest, CreateFlowByFilesRequest, CreateFlowSignUrlRequest, CreateReleaseFlowRequest, CreateIntegrationUserRolesRequest, CreatePersonAuthCertificateImageRequest, CreateFlowByFilesResponse, UploadFilesResponse, VerifyPdfRequest, CreateFlowSignReviewResponse, ModifyIntegrationDepartmentRequest, CreateUserAutoSignEnableUrlRequest, CreateOrganizationBatchSignUrlResponse, CancelUserAutoSignEnableUrlRequest, CreateWebThemeConfigRequest, CreateOrganizationBatchSignUrlRequest, CreatePrepareFlowResponse, GetTaskResultApiResponse, CancelMultiFlowSignQRCodeRequest, DeleteIntegrationDepartmentRequest, ModifyApplicationCallbackInfoRequest, StartFlowRequest, CreateSealResponse, CreatePrepareFlowRequest, CreateEmbedWebUrlResponse, CreateSealPolicyRequest, DescribeOrganizationSealsRequest, CancelFlowRequest, DescribeExtendedServiceAuthInfosRequest, DescribeIntegrationRolesResponse, CreateBatchSignUrlRequest, CreateFlowRemindsRequest, UpdateIntegrationEmployeesRequest, DescribeFlowBriefsRequest, CreateFlowGroupByTemplatesRequest, VerifyPdfResponse, DescribeFlowBriefsResponse, DescribeFlowTemplatesResponse, UploadFilesRequest, DescribePersonCertificateRequest, CreateBatchCancelFlowUrlRequest, CreateMultiFlowSignQRCodeRequest, DescribeFlowInfoRequest, DescribeFlowInfoResponse, CancelMultiFlowSignQRCodeResponse, CreateFlowResponse, DescribeUserAutoSignStatusRequest, DescribeOrganizationGroupOrganizationsResponse, DescribeExtendedServiceAuthInfosResponse } from "./ess_models";
2
+ import { DescribePersonCertificateResponse, CreateSealRequest, ModifyIntegrationDepartmentResponse, CancelFlowResponse, DescribeFlowEvidenceReportRequest, UpdateIntegrationEmployeesResponse, CreatePreparedPersonalEsignRequest, DescribeIntegrationDepartmentsResponse, CreateFlowApproversResponse, DescribeFileUrlsResponse, ModifyApplicationCallbackInfoResponse, CreateMultiFlowSignQRCodeResponse, DescribeThirdPartyAuthCodeResponse, DisableUserAutoSignResponse, CancelUserAutoSignEnableUrlResponse, BindEmployeeUserIdWithClientOpenIdResponse, CreateIntegrationEmployeesRequest, DescribeIntegrationRolesRequest, CreateFlowEvidenceReportRequest, StartFlowResponse, CreateIntegrationRoleRequest, DeleteIntegrationRoleUsersResponse, CreateConvertTaskApiRequest, DeleteIntegrationEmployeesResponse, CreateBatchSignUrlResponse, CreateFlowRemindsResponse, DescribeOrganizationGroupOrganizationsRequest, CreateFlowGroupByFilesRequest, DescribeFlowComponentsResponse, DescribeFlowEvidenceReportResponse, DeleteSealPoliciesRequest, CreateFlowGroupByTemplatesResponse, CreateDocumentResponse, DescribeIntegrationEmployeesRequest, CreateIntegrationUserRolesResponse, CreateFlowRequest, CreateSchemeUrlRequest, DeleteIntegrationDepartmentResponse, DescribeThirdPartyAuthCodeRequest, UnbindEmployeeUserIdWithClientOpenIdResponse, CreateReleaseFlowResponse, CreateWebThemeConfigResponse, BindEmployeeUserIdWithClientOpenIdRequest, CreateOrganizationInfoChangeUrlResponse, CreateIntegrationDepartmentResponse, DescribeFlowTemplatesRequest, DeleteSealPoliciesResponse, DescribeUserAutoSignStatusResponse, CreatePersonAuthCertificateImageResponse, CreateBatchCancelFlowUrlResponse, CreateSealPolicyResponse, DisableUserAutoSignRequest, DescribeIntegrationEmployeesResponse, CreateConvertTaskApiResponse, CreateFlowSignReviewRequest, UnbindEmployeeUserIdWithClientOpenIdRequest, CreateSchemeUrlResponse, CreateUserAutoSignEnableUrlResponse, CreateFlowSignUrlResponse, DescribeFileUrlsRequest, CreateFlowApproversRequest, ModifyIntegrationRoleResponse, CreateFlowEvidenceReportResponse, CreateIntegrationRoleResponse, DescribeFlowComponentsRequest, CreateIntegrationDepartmentRequest, CreateDocumentRequest, CreatePreparedPersonalEsignResponse, DescribeOrganizationSealsResponse, CreateEmbedWebUrlRequest, DeleteIntegrationEmployeesRequest, GetTaskResultApiRequest, ModifyIntegrationRoleRequest, CreateFlowGroupByFilesResponse, CreateIntegrationEmployeesResponse, DeleteIntegrationRoleUsersRequest, CreateFlowByFilesRequest, CreateFlowSignUrlRequest, CreateReleaseFlowRequest, CreateIntegrationUserRolesRequest, CreatePersonAuthCertificateImageRequest, CreateFlowByFilesResponse, UploadFilesResponse, VerifyPdfRequest, CreateFlowSignReviewResponse, ModifyIntegrationDepartmentRequest, CreateUserAutoSignEnableUrlRequest, CreateOrganizationBatchSignUrlResponse, CancelUserAutoSignEnableUrlRequest, CreateWebThemeConfigRequest, CreateOrganizationBatchSignUrlRequest, CreatePrepareFlowResponse, GetTaskResultApiResponse, CancelMultiFlowSignQRCodeRequest, DeleteIntegrationDepartmentRequest, ModifyApplicationCallbackInfoRequest, StartFlowRequest, CreateSealResponse, CreatePrepareFlowRequest, CreateEmbedWebUrlResponse, CreateSealPolicyRequest, DescribeOrganizationSealsRequest, CancelFlowRequest, DescribeExtendedServiceAuthInfosRequest, DescribeIntegrationRolesResponse, CreateBatchSignUrlRequest, CreateFlowRemindsRequest, UpdateIntegrationEmployeesRequest, DescribeFlowBriefsRequest, CreateFlowGroupByTemplatesRequest, VerifyPdfResponse, DescribeFlowBriefsResponse, DescribeFlowTemplatesResponse, UploadFilesRequest, DescribePersonCertificateRequest, CreateBatchCancelFlowUrlRequest, CreateMultiFlowSignQRCodeRequest, DescribeFlowInfoRequest, DescribeIntegrationDepartmentsRequest, DescribeFlowInfoResponse, CancelMultiFlowSignQRCodeResponse, CreateFlowResponse, DescribeUserAutoSignStatusRequest, CreateOrganizationInfoChangeUrlRequest, DescribeOrganizationGroupOrganizationsResponse, DescribeExtendedServiceAuthInfosResponse } from "./ess_models";
3
3
  /**
4
4
  * ess client
5
5
  * @class
@@ -208,6 +208,25 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
208
208
  <li>在解除协议发起之后,原合同的状态将转变为解除中。一旦解除协议签署完毕,原合同及解除协议均变为已解除状态。</li></ul>
209
209
  */
210
210
  CreateReleaseFlow(req: CreateReleaseFlowRequest, cb?: (error: string, rep: CreateReleaseFlowResponse) => void): Promise<CreateReleaseFlowResponse>;
211
+ /**
212
+ * 获取跳转至腾讯电子签小程序的签署链接
213
+
214
+ 适用场景:如果需要签署人在自己的APP、小程序、H5应用中签署,可以通过此接口获取跳转腾讯电子签小程序的签署跳转链接。
215
+
216
+ 跳转到小程序的实现,参考微信官方文档(分为<a href="https://developers.weixin.qq.com/miniprogram/dev/api/navigate/wx.navigateToMiniProgram.html">全屏</a>、<a href="https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/openEmbeddedMiniProgram.html">半屏</a>两种方式),如何配置也可以请参考: <a href="https://qian.tencent.com/developers/company/openwxminiprogram">跳转电子签小程序配置</a>
217
+
218
+ 注:
219
+ `1. 如果签署人是在PC端扫码签署,可以通过生成跳转链接自主转换成二维码,让签署人在PC端扫码签署`
220
+ `2. 签署链接的有效期为90天,超过有效期链接不可用`
221
+
222
+ 其中小程序的原始Id如下,或者查看小程序信息自助获取。
223
+
224
+ | 小程序 | AppID | 原始ID |
225
+ | ------------ | ------------ | ------------ |
226
+ | 腾讯电子签(正式版) | wxa023b292fd19d41d | gh_da88f6188665 |
227
+ | 腾讯电子签Demo | wx371151823f6f3edf | gh_39a5d3de69fa |
228
+ */
229
+ CreateSchemeUrl(req: CreateSchemeUrlRequest, cb?: (error: string, rep: CreateSchemeUrlResponse) => void): Promise<CreateSchemeUrlResponse>;
211
230
  /**
212
231
  * 通过此接口获取个人用户自动签的开通状态。
213
232
 
@@ -433,24 +452,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
433
452
  */
434
453
  DeleteIntegrationEmployees(req: DeleteIntegrationEmployeesRequest, cb?: (error: string, rep: DeleteIntegrationEmployeesResponse) => void): Promise<DeleteIntegrationEmployeesResponse>;
435
454
  /**
436
- * 获取跳转至腾讯电子签小程序的签署链接
437
-
438
- 适用场景:如果需要签署人在自己的APP、小程序、H5应用中签署,可以通过此接口获取跳转腾讯电子签小程序的签署跳转链接。
439
-
440
- 跳转到小程序的实现,参考微信官方文档(分为<a href="https://developers.weixin.qq.com/miniprogram/dev/api/navigate/wx.navigateToMiniProgram.html">全屏</a>、<a href="https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/openEmbeddedMiniProgram.html">半屏</a>两种方式),如何配置也可以请参考: <a href="https://qian.tencent.com/developers/company/openwxminiprogram">跳转电子签小程序配置</a>
441
-
442
- 注:
443
- `1. 如果签署人是在PC端扫码签署,可以通过生成跳转链接自主转换成二维码,让签署人在PC端扫码签署`
444
- `2. 签署链接的有效期为90天,超过有效期链接不可用`
445
-
446
- 其中小程序的原始Id如下,或者查看小程序信息自助获取。
447
-
448
- | 小程序 | AppID | 原始ID |
449
- | ------------ | ------------ | ------------ |
450
- | 腾讯电子签(正式版) | wxa023b292fd19d41d | gh_da88f6188665 |
451
- | 腾讯电子签Demo | wx371151823f6f3edf | gh_39a5d3de69fa |
452
- */
453
- CreateSchemeUrl(req: CreateSchemeUrlRequest, cb?: (error: string, rep: CreateSchemeUrlResponse) => void): Promise<CreateSchemeUrlResponse>;
455
+ * 此接口(CreateOrganizationInfoChangeUrl)用于创建企业信息变更链接,支持创建企业超管变更链接或企业基础信息变更链接,通过入参ChangeType指定。
456
+ */
457
+ CreateOrganizationInfoChangeUrl(req: CreateOrganizationInfoChangeUrlRequest, cb?: (error: string, rep: CreateOrganizationInfoChangeUrlResponse) => void): Promise<CreateOrganizationInfoChangeUrlResponse>;
454
458
  /**
455
459
  * 用来撤销<a href="https://qian.tencent.com/developers/companyApis/users/CreateUserAutoSignEnableUrl" target="_blank">获取个人用户自动签的开通状态</a>生成的开通链接,撤销生成的链接失效。
456
460
 
@@ -281,6 +281,27 @@ class Client extends TencentCloudCommon.AbstractClient {
281
281
  async CreateReleaseFlow(req, cb) {
282
282
  return this.request("CreateReleaseFlow", req, cb);
283
283
  }
284
+ /**
285
+ * 获取跳转至腾讯电子签小程序的签署链接
286
+
287
+ 适用场景:如果需要签署人在自己的APP、小程序、H5应用中签署,可以通过此接口获取跳转腾讯电子签小程序的签署跳转链接。
288
+
289
+ 跳转到小程序的实现,参考微信官方文档(分为<a href="https://developers.weixin.qq.com/miniprogram/dev/api/navigate/wx.navigateToMiniProgram.html">全屏</a>、<a href="https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/openEmbeddedMiniProgram.html">半屏</a>两种方式),如何配置也可以请参考: <a href="https://qian.tencent.com/developers/company/openwxminiprogram">跳转电子签小程序配置</a>
290
+
291
+ 注:
292
+ `1. 如果签署人是在PC端扫码签署,可以通过生成跳转链接自主转换成二维码,让签署人在PC端扫码签署`
293
+ `2. 签署链接的有效期为90天,超过有效期链接不可用`
294
+
295
+ 其中小程序的原始Id如下,或者查看小程序信息自助获取。
296
+
297
+ | 小程序 | AppID | 原始ID |
298
+ | ------------ | ------------ | ------------ |
299
+ | 腾讯电子签(正式版) | wxa023b292fd19d41d | gh_da88f6188665 |
300
+ | 腾讯电子签Demo | wx371151823f6f3edf | gh_39a5d3de69fa |
301
+ */
302
+ async CreateSchemeUrl(req, cb) {
303
+ return this.request("CreateSchemeUrl", req, cb);
304
+ }
284
305
  /**
285
306
  * 通过此接口获取个人用户自动签的开通状态。
286
307
 
@@ -562,25 +583,10 @@ class Client extends TencentCloudCommon.AbstractClient {
562
583
  return this.request("DeleteIntegrationEmployees", req, cb);
563
584
  }
564
585
  /**
565
- * 获取跳转至腾讯电子签小程序的签署链接
566
-
567
- 适用场景:如果需要签署人在自己的APP、小程序、H5应用中签署,可以通过此接口获取跳转腾讯电子签小程序的签署跳转链接。
568
-
569
- 跳转到小程序的实现,参考微信官方文档(分为<a href="https://developers.weixin.qq.com/miniprogram/dev/api/navigate/wx.navigateToMiniProgram.html">全屏</a>、<a href="https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/openEmbeddedMiniProgram.html">半屏</a>两种方式),如何配置也可以请参考: <a href="https://qian.tencent.com/developers/company/openwxminiprogram">跳转电子签小程序配置</a>
570
-
571
- 注:
572
- `1. 如果签署人是在PC端扫码签署,可以通过生成跳转链接自主转换成二维码,让签署人在PC端扫码签署`
573
- `2. 签署链接的有效期为90天,超过有效期链接不可用`
574
-
575
- 其中小程序的原始Id如下,或者查看小程序信息自助获取。
576
-
577
- | 小程序 | AppID | 原始ID |
578
- | ------------ | ------------ | ------------ |
579
- | 腾讯电子签(正式版) | wxa023b292fd19d41d | gh_da88f6188665 |
580
- | 腾讯电子签Demo | wx371151823f6f3edf | gh_39a5d3de69fa |
581
- */
582
- async CreateSchemeUrl(req, cb) {
583
- return this.request("CreateSchemeUrl", req, cb);
586
+ * 此接口(CreateOrganizationInfoChangeUrl)用于创建企业信息变更链接,支持创建企业超管变更链接或企业基础信息变更链接,通过入参ChangeType指定。
587
+ */
588
+ async CreateOrganizationInfoChangeUrl(req, cb) {
589
+ return this.request("CreateOrganizationInfoChangeUrl", req, cb);
584
590
  }
585
591
  /**
586
592
  * 用来撤销<a href="https://qian.tencent.com/developers/companyApis/users/CreateUserAutoSignEnableUrl" target="_blank">获取个人用户自动签的开通状态</a>生成的开通链接,撤销生成的链接失效。