tencentcloud-sdk-nodejs-essbasic 4.0.1048 → 4.0.1050

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-essbasic",
3
- "version": "4.0.1048",
4
- "description": "Tencent Cloud API NODEJS SDK",
3
+ "version": "4.0.1050",
4
+ "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "tencentcloud/index.js",
6
6
  "scripts": {
7
7
  "test": "mocha -t 10000",
@@ -22,7 +22,7 @@
22
22
  "author": "tencentcloudapi",
23
23
  "license": "Apache-2.0",
24
24
  "dependencies": {
25
- "tencentcloud-sdk-nodejs-common": "^4.0.488",
25
+ "tencentcloud-sdk-nodejs-common": "*",
26
26
  "tslib": "1.13.0"
27
27
  },
28
28
  "directories": {
@@ -35,14 +35,19 @@
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/form-data": "^2.5.0",
38
+ "@types/json-bigint": "^1.0.1",
38
39
  "@types/node": "^14.0.26",
39
40
  "@types/node-fetch": "^2.5.7",
41
+ "@types/uuid": "^9.0.8",
40
42
  "@typescript-eslint/eslint-plugin": "^2.34.0",
41
43
  "@typescript-eslint/parser": "^2.34.0",
44
+ "babel-eslint": "^10.0.2",
42
45
  "chai": "^4.2.0",
43
46
  "eslint": "^6.8.0",
47
+ "eslint-plugin-react": "^7.17.0",
44
48
  "mocha": "^8.1.1",
49
+ "prettier": "^2.3.0",
45
50
  "ts-node": "^8.10.2",
46
51
  "typescript": "^3.9.7"
47
52
  }
48
- }
53
+ }
@@ -22,6 +22,7 @@ import {
22
22
  ChannelCreateConvertTaskApiResponse,
23
23
  ChannelCreateFlowRemindsResponse,
24
24
  Component,
25
+ DescribeUserFlowTypeResponse,
25
26
  ChannelDeleteSealPoliciesRequest,
26
27
  ChannelBatchCancelFlowsResponse,
27
28
  OrganizationAuthUrl,
@@ -135,6 +136,7 @@ import {
135
136
  FlowForwardResult,
136
137
  PdfVerifyResult,
137
138
  UserThreeFactor,
139
+ TemplateUserFlowType,
138
140
  ChannelCreateUserAutoSignEnableUrlRequest,
139
141
  ChannelCancelMultiFlowSignQRCodeRequest,
140
142
  FlowGroupOptions,
@@ -222,7 +224,7 @@ import {
222
224
  CreateChannelSubOrganizationActiveResponse,
223
225
  ChannelCreateReleaseFlowRequest,
224
226
  ChannelDescribeFlowComponentsResponse,
225
- WebThemeConfig,
227
+ UserFlowType,
226
228
  DeleteOrganizationAuthorizationsRequest,
227
229
  ChannelCreateFlowGroupByFilesResponse,
228
230
  ChannelCreateMultiFlowSignQRCodeResponse,
@@ -275,10 +277,12 @@ import {
275
277
  DescribeChannelFlowEvidenceReportResponse,
276
278
  IntentionQuestion,
277
279
  CreateFlowBlockchainEvidenceUrlRequest,
280
+ DescribeUserFlowTypeRequest,
278
281
  ChannelCreateFlowApproversRequest,
279
282
  ChannelUpdateSealStatusResponse,
280
283
  ChannelCreateFlowRemindsRequest,
281
284
  DescribeExtendedServiceAuthInfoResponse,
285
+ WebThemeConfig,
282
286
  ChannelCreateEmbedWebUrlRequest,
283
287
  CcInfo,
284
288
  ChannelDescribeFlowComponentsRequest,
@@ -1530,6 +1534,20 @@ httpProfile.setEndpoint("file.test.ess.tencent.cn");
1530
1534
  return this.request("CreateChannelOrganizationInfoChangeUrl", req, cb)
1531
1535
  }
1532
1536
 
1537
+ /**
1538
+ * 查询用户模版类型,分为两种模式:
1539
+ <ul>
1540
+ <li>QueryBindTemplate:false,查询用户合同模版类型,返回用户合同模版类型ID,用户合同模版类型名称,用户合同模版类型描述信息</li>
1541
+ <li>QueryBindTemplate:false,查询用户合同模版类型,返回用户合同模版类型ID,用户合同模版类型名称,用户合同模版类型描述信息,被绑定的模版数量</li>
1542
+ </ul>
1543
+ */
1544
+ async DescribeUserFlowType(
1545
+ req: DescribeUserFlowTypeRequest,
1546
+ cb?: (error: string, rep: DescribeUserFlowTypeResponse) => void
1547
+ ): Promise<DescribeUserFlowTypeResponse> {
1548
+ return this.request("DescribeUserFlowType", req, cb)
1549
+ }
1550
+
1533
1551
  /**
1534
1552
  * 接口(ChannelCreateFlowGroupByFiles)用于使用 PDF 文件创建合同组签署流程。
1535
1553
 
@@ -401,6 +401,20 @@ ChildrenComponent结构体定义:
401
401
  ForbidMoveAndDelete?: boolean
402
402
  }
403
403
 
404
+ /**
405
+ * DescribeUserFlowType返回参数结构体
406
+ */
407
+ export interface DescribeUserFlowTypeResponse {
408
+ /**
409
+ * 查询到的所有用户合同类型列表
410
+ */
411
+ AllUserFlowTypes?: Array<TemplateUserFlowType>
412
+ /**
413
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
414
+ */
415
+ RequestId?: string
416
+ }
417
+
404
418
  /**
405
419
  * ChannelDeleteSealPolicies请求参数结构体
406
420
  */
@@ -2795,6 +2809,10 @@ export interface TemplateInfo {
2795
2809
  <li>2:停用,表示模板处于停用状态,禁止用户使用该模板。</li></ul>
2796
2810
  */
2797
2811
  Available?: number
2812
+ /**
2813
+ * 模版的用户合同类型
2814
+ */
2815
+ UserFlowType?: UserFlowType
2798
2816
  }
2799
2817
 
2800
2818
  /**
@@ -4224,6 +4242,28 @@ export interface UserThreeFactor {
4224
4242
  IdCardNumber: string
4225
4243
  }
4226
4244
 
4245
+ /**
4246
+ * 模版对应的合同类型
4247
+ */
4248
+ export interface TemplateUserFlowType {
4249
+ /**
4250
+ * 合同类型id
4251
+ */
4252
+ UserFlowTypeId?: string
4253
+ /**
4254
+ * 用户合同类型名称
4255
+ */
4256
+ Name?: string
4257
+ /**
4258
+ * 每个合同类型绑定的模版数量
4259
+ */
4260
+ TemplateNum?: number
4261
+ /**
4262
+ * 合同类型的具体描述
4263
+ */
4264
+ Description?: string
4265
+ }
4266
+
4227
4267
  /**
4228
4268
  * ChannelCreateUserAutoSignEnableUrl请求参数结构体
4229
4269
  */
@@ -7291,38 +7331,21 @@ export interface ChannelDescribeFlowComponentsResponse {
7291
7331
  }
7292
7332
 
7293
7333
  /**
7294
- * 主题配置
7334
+ * 用户合同类型信息
7295
7335
  */
7296
- export interface WebThemeConfig {
7297
- /**
7298
- * 是否显示页面底部电子签logo,取值如下:
7299
- <ul><li> **true**:页面底部显示电子签logo</li>
7300
- <li> **false**:页面底部不显示电子签logo(默认)</li></ul>
7301
- */
7302
- DisplaySignBrandLogo?: boolean
7303
- /**
7304
- * 主题颜色:
7305
- 支持十六进制颜色值以及RGB格式颜色值,例如:#D54941,rgb(213, 73, 65)
7306
- <br/>
7307
- */
7308
- WebEmbedThemeColor?: string
7336
+ export interface UserFlowType {
7309
7337
  /**
7310
- * 企业认证页背景图(base64图片)
7311
-
7338
+ * 用户合同类型id
7312
7339
  */
7313
- AuthenticateBackground?: string
7340
+ UserFlowTypeId?: string
7314
7341
  /**
7315
- * 隐藏企业认证页面导航栏,取值如下:
7316
- <ul><li> **true**:隐藏企业认证页面导航栏</li>
7317
- <li> **false**:显示企业认证页面导航栏(默认)</li></ul>
7342
+ * 用户合同类型名称
7318
7343
  */
7319
- HideAuthenticateNavigationBar?: boolean
7344
+ Name?: string
7320
7345
  /**
7321
- * 隐藏企业认证顶部logo,取值如下:
7322
- <ul><li> **true**:隐藏企业认证顶部logo</li>
7323
- <li> **false**:显示企业认证顶部logo(默认)</li></ul>
7346
+ * 用户合同类型的描述信息
7324
7347
  */
7325
- HideAuthenticateTopLogo?: boolean
7348
+ Description?: string
7326
7349
  }
7327
7350
 
7328
7351
  /**
@@ -8366,6 +8389,10 @@ export interface DescribeTemplatesRequest {
8366
8389
  * @deprecated
8367
8390
  */
8368
8391
  Operator?: UserInfo
8392
+ /**
8393
+ * 用户合同类型id
8394
+ */
8395
+ UserFlowTypeId?: string
8369
8396
  }
8370
8397
 
8371
8398
  /**
@@ -9061,6 +9088,28 @@ export interface CreateFlowBlockchainEvidenceUrlRequest {
9061
9088
  ExpiredOn?: number
9062
9089
  }
9063
9090
 
9091
+ /**
9092
+ * DescribeUserFlowType请求参数结构体
9093
+ */
9094
+ export interface DescribeUserFlowTypeRequest {
9095
+ /**
9096
+ * 关于渠道应用的相关信息,包括渠道应用标识、第三方平台子客企业标识及第三方平台子客企业中的员工标识等内容,您可以参阅开发者中心所提供的 Agent 结构体以获取详细定义。 此接口下面信息必填。 <ul> <li>渠道应用标识: Agent.AppId</li> <li>第三方平台子客企业标识: Agent.ProxyOrganizationOpenId</li> <li>第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId</li> </ul> 第三方平台子客企业和员工必须已经经过实名认证
9097
+ */
9098
+ Agent: Agent
9099
+ /**
9100
+ * 搜索过滤的条件,本字段允许您通过指定模板 ID 或模板名称来进行查询。 <ul><li><strong>模板的用户合同类型</strong>:<strong>Key</strong>设置为 <code>user-flow-type-id</code> ,<strong>Values</strong>为您想要查询的用户模版类型id列表。</li></ul>
9101
+ */
9102
+ Filters?: Array<Filter>
9103
+ /**
9104
+ * 查询绑定了模版的用户合同类型
9105
+ <ul>
9106
+ <li>false(默认值),查询用户合同类型</li>
9107
+ <li>true,查询绑定了模版的用户合同类型</li>
9108
+ </ul>
9109
+ */
9110
+ QueryBindTemplate?: boolean
9111
+ }
9112
+
9064
9113
  /**
9065
9114
  * ChannelCreateFlowApprovers请求参数结构体
9066
9115
  */
@@ -9154,6 +9203,41 @@ export interface DescribeExtendedServiceAuthInfoResponse {
9154
9203
  RequestId?: string
9155
9204
  }
9156
9205
 
9206
+ /**
9207
+ * 主题配置
9208
+ */
9209
+ export interface WebThemeConfig {
9210
+ /**
9211
+ * 是否显示页面底部电子签logo,取值如下:
9212
+ <ul><li> **true**:页面底部显示电子签logo</li>
9213
+ <li> **false**:页面底部不显示电子签logo(默认)</li></ul>
9214
+ */
9215
+ DisplaySignBrandLogo?: boolean
9216
+ /**
9217
+ * 主题颜色:
9218
+ 支持十六进制颜色值以及RGB格式颜色值,例如:#D54941,rgb(213, 73, 65)
9219
+ <br/>
9220
+ */
9221
+ WebEmbedThemeColor?: string
9222
+ /**
9223
+ * 企业认证页背景图(base64图片)
9224
+
9225
+ */
9226
+ AuthenticateBackground?: string
9227
+ /**
9228
+ * 隐藏企业认证页面导航栏,取值如下:
9229
+ <ul><li> **true**:隐藏企业认证页面导航栏</li>
9230
+ <li> **false**:显示企业认证页面导航栏(默认)</li></ul>
9231
+ */
9232
+ HideAuthenticateNavigationBar?: boolean
9233
+ /**
9234
+ * 隐藏企业认证顶部logo,取值如下:
9235
+ <ul><li> **true**:隐藏企业认证顶部logo</li>
9236
+ <li> **false**:显示企业认证顶部logo(默认)</li></ul>
9237
+ */
9238
+ HideAuthenticateTopLogo?: boolean
9239
+ }
9240
+
9157
9241
  /**
9158
9242
  * ChannelCreateEmbedWebUrl请求参数结构体
9159
9243
  */
@@ -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, 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";
2
+ import { SyncProxyOrganizationResponse, ChannelCreateConvertTaskApiResponse, ChannelCreateFlowRemindsResponse, DescribeUserFlowTypeResponse, 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, DescribeUserFlowTypeRequest, ChannelCreateFlowApproversRequest, ChannelUpdateSealStatusResponse, ChannelCreateFlowRemindsRequest, DescribeExtendedServiceAuthInfoResponse, ChannelCreateEmbedWebUrlRequest, ChannelDescribeFlowComponentsRequest, PrepareFlowsRequest } from "./essbasic_models";
3
3
  /**
4
4
  * essbasic client
5
5
  * @class
@@ -882,6 +882,14 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
882
882
  2. 法人可以无需生成链接,直接在电子签小程序中更换本企业的超管
883
883
  */
884
884
  CreateChannelOrganizationInfoChangeUrl(req: CreateChannelOrganizationInfoChangeUrlRequest, cb?: (error: string, rep: CreateChannelOrganizationInfoChangeUrlResponse) => void): Promise<CreateChannelOrganizationInfoChangeUrlResponse>;
885
+ /**
886
+ * 查询用户模版类型,分为两种模式:
887
+ <ul>
888
+ <li>QueryBindTemplate:false,查询用户合同模版类型,返回用户合同模版类型ID,用户合同模版类型名称,用户合同模版类型描述信息</li>
889
+ <li>QueryBindTemplate:false,查询用户合同模版类型,返回用户合同模版类型ID,用户合同模版类型名称,用户合同模版类型描述信息,被绑定的模版数量</li>
890
+ </ul>
891
+ */
892
+ DescribeUserFlowType(req: DescribeUserFlowTypeRequest, cb?: (error: string, rep: DescribeUserFlowTypeResponse) => void): Promise<DescribeUserFlowTypeResponse>;
885
893
  /**
886
894
  * 接口(ChannelCreateFlowGroupByFiles)用于使用 PDF 文件创建合同组签署流程。
887
895
 
@@ -1023,6 +1023,16 @@ class Client extends TencentCloudCommon.AbstractClient {
1023
1023
  async CreateChannelOrganizationInfoChangeUrl(req, cb) {
1024
1024
  return this.request("CreateChannelOrganizationInfoChangeUrl", req, cb);
1025
1025
  }
1026
+ /**
1027
+ * 查询用户模版类型,分为两种模式:
1028
+ <ul>
1029
+ <li>QueryBindTemplate:false,查询用户合同模版类型,返回用户合同模版类型ID,用户合同模版类型名称,用户合同模版类型描述信息</li>
1030
+ <li>QueryBindTemplate:false,查询用户合同模版类型,返回用户合同模版类型ID,用户合同模版类型名称,用户合同模版类型描述信息,被绑定的模版数量</li>
1031
+ </ul>
1032
+ */
1033
+ async DescribeUserFlowType(req, cb) {
1034
+ return this.request("DescribeUserFlowType", req, cb);
1035
+ }
1026
1036
  /**
1027
1037
  * 接口(ChannelCreateFlowGroupByFiles)用于使用 PDF 文件创建合同组签署流程。
1028
1038
 
@@ -379,6 +379,19 @@ export interface Component {
379
379
  */
380
380
  ForbidMoveAndDelete?: boolean;
381
381
  }
382
+ /**
383
+ * DescribeUserFlowType返回参数结构体
384
+ */
385
+ export interface DescribeUserFlowTypeResponse {
386
+ /**
387
+ * 查询到的所有用户合同类型列表
388
+ */
389
+ AllUserFlowTypes?: Array<TemplateUserFlowType>;
390
+ /**
391
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
392
+ */
393
+ RequestId?: string;
394
+ }
382
395
  /**
383
396
  * ChannelDeleteSealPolicies请求参数结构体
384
397
  */
@@ -2699,6 +2712,10 @@ export interface TemplateInfo {
2699
2712
  <li>2:停用,表示模板处于停用状态,禁止用户使用该模板。</li></ul>
2700
2713
  */
2701
2714
  Available?: number;
2715
+ /**
2716
+ * 模版的用户合同类型
2717
+ */
2718
+ UserFlowType?: UserFlowType;
2702
2719
  }
2703
2720
  /**
2704
2721
  * 意愿核身(点头确认模式)使用的文案,若未使用意愿核身(点头确认模式),则该字段无需传入。当前仅支持一个提示文本。
@@ -4089,6 +4106,27 @@ export interface UserThreeFactor {
4089
4106
  */
4090
4107
  IdCardNumber: string;
4091
4108
  }
4109
+ /**
4110
+ * 模版对应的合同类型
4111
+ */
4112
+ export interface TemplateUserFlowType {
4113
+ /**
4114
+ * 合同类型id
4115
+ */
4116
+ UserFlowTypeId?: string;
4117
+ /**
4118
+ * 用户合同类型名称
4119
+ */
4120
+ Name?: string;
4121
+ /**
4122
+ * 每个合同类型绑定的模版数量
4123
+ */
4124
+ TemplateNum?: number;
4125
+ /**
4126
+ * 合同类型的具体描述
4127
+ */
4128
+ Description?: string;
4129
+ }
4092
4130
  /**
4093
4131
  * ChannelCreateUserAutoSignEnableUrl请求参数结构体
4094
4132
  */
@@ -7069,38 +7107,21 @@ export interface ChannelDescribeFlowComponentsResponse {
7069
7107
  RequestId?: string;
7070
7108
  }
7071
7109
  /**
7072
- * 主题配置
7110
+ * 用户合同类型信息
7073
7111
  */
7074
- export interface WebThemeConfig {
7112
+ export interface UserFlowType {
7075
7113
  /**
7076
- * 是否显示页面底部电子签logo,取值如下:
7077
- <ul><li> **true**:页面底部显示电子签logo</li>
7078
- <li> **false**:页面底部不显示电子签logo(默认)</li></ul>
7114
+ * 用户合同类型id
7079
7115
  */
7080
- DisplaySignBrandLogo?: boolean;
7116
+ UserFlowTypeId?: string;
7081
7117
  /**
7082
- * 主题颜色:
7083
- 支持十六进制颜色值以及RGB格式颜色值,例如:#D54941,rgb(213, 73, 65)
7084
- <br/>
7118
+ * 用户合同类型名称
7085
7119
  */
7086
- WebEmbedThemeColor?: string;
7087
- /**
7088
- * 企业认证页背景图(base64图片)
7089
-
7090
- */
7091
- AuthenticateBackground?: string;
7092
- /**
7093
- * 隐藏企业认证页面导航栏,取值如下:
7094
- <ul><li> **true**:隐藏企业认证页面导航栏</li>
7095
- <li> **false**:显示企业认证页面导航栏(默认)</li></ul>
7096
- */
7097
- HideAuthenticateNavigationBar?: boolean;
7120
+ Name?: string;
7098
7121
  /**
7099
- * 隐藏企业认证顶部logo,取值如下:
7100
- <ul><li> **true**:隐藏企业认证顶部logo</li>
7101
- <li> **false**:显示企业认证顶部logo(默认)</li></ul>
7122
+ * 用户合同类型的描述信息
7102
7123
  */
7103
- HideAuthenticateTopLogo?: boolean;
7124
+ Description?: string;
7104
7125
  }
7105
7126
  /**
7106
7127
  * DeleteOrganizationAuthorizations请求参数结构体
@@ -8115,6 +8136,10 @@ export interface DescribeTemplatesRequest {
8115
8136
  * @deprecated
8116
8137
  */
8117
8138
  Operator?: UserInfo;
8139
+ /**
8140
+ * 用户合同类型id
8141
+ */
8142
+ UserFlowTypeId?: string;
8118
8143
  }
8119
8144
  /**
8120
8145
  * 解除协议文档中内容信息,包括但不限于:解除理由、解除后仍然有效的条款-保留条款、原合同事项处理-费用结算、原合同事项处理-其他事项、其他约定等。下面各种字段在解除协议中的位置参考:
@@ -8786,6 +8811,27 @@ export interface CreateFlowBlockchainEvidenceUrlRequest {
8786
8811
  */
8787
8812
  ExpiredOn?: number;
8788
8813
  }
8814
+ /**
8815
+ * DescribeUserFlowType请求参数结构体
8816
+ */
8817
+ export interface DescribeUserFlowTypeRequest {
8818
+ /**
8819
+ * 关于渠道应用的相关信息,包括渠道应用标识、第三方平台子客企业标识及第三方平台子客企业中的员工标识等内容,您可以参阅开发者中心所提供的 Agent 结构体以获取详细定义。 此接口下面信息必填。 <ul> <li>渠道应用标识: Agent.AppId</li> <li>第三方平台子客企业标识: Agent.ProxyOrganizationOpenId</li> <li>第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId</li> </ul> 第三方平台子客企业和员工必须已经经过实名认证
8820
+ */
8821
+ Agent: Agent;
8822
+ /**
8823
+ * 搜索过滤的条件,本字段允许您通过指定模板 ID 或模板名称来进行查询。 <ul><li><strong>模板的用户合同类型</strong>:<strong>Key</strong>设置为 <code>user-flow-type-id</code> ,<strong>Values</strong>为您想要查询的用户模版类型id列表。</li></ul>
8824
+ */
8825
+ Filters?: Array<Filter>;
8826
+ /**
8827
+ * 查询绑定了模版的用户合同类型
8828
+ <ul>
8829
+ <li>false(默认值),查询用户合同类型</li>
8830
+ <li>true,查询绑定了模版的用户合同类型</li>
8831
+ </ul>
8832
+ */
8833
+ QueryBindTemplate?: boolean;
8834
+ }
8789
8835
  /**
8790
8836
  * ChannelCreateFlowApprovers请求参数结构体
8791
8837
  */
@@ -8875,6 +8921,40 @@ export interface DescribeExtendedServiceAuthInfoResponse {
8875
8921
  */
8876
8922
  RequestId?: string;
8877
8923
  }
8924
+ /**
8925
+ * 主题配置
8926
+ */
8927
+ export interface WebThemeConfig {
8928
+ /**
8929
+ * 是否显示页面底部电子签logo,取值如下:
8930
+ <ul><li> **true**:页面底部显示电子签logo</li>
8931
+ <li> **false**:页面底部不显示电子签logo(默认)</li></ul>
8932
+ */
8933
+ DisplaySignBrandLogo?: boolean;
8934
+ /**
8935
+ * 主题颜色:
8936
+ 支持十六进制颜色值以及RGB格式颜色值,例如:#D54941,rgb(213, 73, 65)
8937
+ <br/>
8938
+ */
8939
+ WebEmbedThemeColor?: string;
8940
+ /**
8941
+ * 企业认证页背景图(base64图片)
8942
+
8943
+ */
8944
+ AuthenticateBackground?: string;
8945
+ /**
8946
+ * 隐藏企业认证页面导航栏,取值如下:
8947
+ <ul><li> **true**:隐藏企业认证页面导航栏</li>
8948
+ <li> **false**:显示企业认证页面导航栏(默认)</li></ul>
8949
+ */
8950
+ HideAuthenticateNavigationBar?: boolean;
8951
+ /**
8952
+ * 隐藏企业认证顶部logo,取值如下:
8953
+ <ul><li> **true**:隐藏企业认证顶部logo</li>
8954
+ <li> **false**:显示企业认证顶部logo(默认)</li></ul>
8955
+ */
8956
+ HideAuthenticateTopLogo?: boolean;
8957
+ }
8878
8958
  /**
8879
8959
  * ChannelCreateEmbedWebUrl请求参数结构体
8880
8960
  */