tencentcloud-sdk-nodejs-ess 4.0.620 → 4.0.622

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.
@@ -92,6 +92,7 @@ export interface CreatePreparedPersonalEsignRequest {
92
92
  * 印章图片的base64
93
93
  注:已废弃
94
94
  请先通过UploadFiles接口上传文件,获取 FileId
95
+ * @deprecated
95
96
  */
96
97
  SealImage?: string;
97
98
  /**
@@ -310,6 +311,23 @@ export interface DescribeThirdPartyAuthCodeResponse {
310
311
  */
311
312
  RequestId?: string;
312
313
  }
314
+ /**
315
+ * 被授权用户信息
316
+ */
317
+ export interface HasAuthUser {
318
+ /**
319
+ * 用户id
320
+ 注意:此字段可能返回 null,表示取不到有效值。
321
+ */
322
+ UserId?: string;
323
+ /**
324
+ * 用户归属
325
+ MainOrg:主企业
326
+ CurrentOrg:当前企业
327
+ 注意:此字段可能返回 null,表示取不到有效值。
328
+ */
329
+ BelongTo?: string;
330
+ }
313
331
  /**
314
332
  * DisableUserAutoSign返回参数结构体
315
333
  */
@@ -350,7 +368,8 @@ export interface CreateIntegrationEmployeesRequest {
350
368
  */
351
369
  Operator: UserInfo;
352
370
  /**
353
- * 待创建员工的信息,Mobile和DisplayName必填
371
+ * 待创建员工的信息,不超过20个。
372
+ Mobile和DisplayName必填,OpenId、Email和Department.DepartmentId选填,其他字段暂不支持。
354
373
  */
355
374
  Employees: Array<Staff>;
356
375
  /**
@@ -363,7 +382,7 @@ export interface CreateIntegrationEmployeesRequest {
363
382
  */
364
383
  export interface DescribeIntegrationRolesRequest {
365
384
  /**
366
- * 操作人信息
385
+ * 操作人信息,UserId必填
367
386
  */
368
387
  Operator: UserInfo;
369
388
  /**
@@ -412,6 +431,10 @@ export interface StartFlowResponse {
412
431
  */
413
432
  RequestId?: string;
414
433
  }
434
+ /**
435
+ * 模板结构体中的印章信息
436
+ */
437
+ export declare type SealInfo = null;
415
438
  /**
416
439
  * 集成版企业角色信息
417
440
  */
@@ -673,15 +696,14 @@ export interface DescribeFlowTemplatesRequest {
673
696
  */
674
697
  Limit?: number;
675
698
  /**
676
- * 这个参数跟下面的IsChannel参数配合使用。
677
- IsChannel=false时,ApplicationId参数不起任何作用。
678
- IsChannel=true时,ApplicationId为空,查询所有第三方应用集成平台企业模板列表;ApplicationId不为空,查询指定应用下的模板列表
699
+ * ApplicationId不为空,查询指定应用下的模板列表
679
700
  ApplicationId为空,查询所有应用下的模板列表
680
701
  */
681
702
  ApplicationId?: string;
682
703
  /**
683
704
  * 默认为false,查询SaaS模板库列表;
684
705
  为true,查询第三方应用集成平台企业模板库管理列表
706
+ * @deprecated
685
707
  */
686
708
  IsChannel?: boolean;
687
709
  /**
@@ -827,6 +849,17 @@ export interface TemplateInfo {
827
849
  注意:此字段可能返回 null,表示取不到有效值。
828
850
  */
829
851
  Published?: boolean;
852
+ /**
853
+ * 模板内部指定的印章列表
854
+ 注意:此字段可能返回 null,表示取不到有效值。
855
+ */
856
+ TemplateSeals?: Array<SealInfo>;
857
+ /**
858
+ * 模板内部指定的印章列表
859
+ 注意:此字段可能返回 null,表示取不到有效值。
860
+ * @deprecated
861
+ */
862
+ Seals?: Array<SealInfo>;
830
863
  }
831
864
  /**
832
865
  * CreateDocument返回参数结构体
@@ -3372,11 +3405,10 @@ export interface Component {
3372
3405
  {“ComponentTypeLimit”: [“xxx”]}
3373
3406
  xxx可以为:
3374
3407
  HANDWRITE – 手写签名
3375
- BORDERLESS_ESIGN – 自动生成无边框腾讯体
3376
3408
  OCR_ESIGN -- AI智能识别手写签名
3377
3409
  ESIGN -- 个人印章类型
3378
3410
  SYSTEM_ESIGN -- 系统签名(该类型可以在用户签署时根据用户姓名一键生成一个签名来进行签署)
3379
- 如:{“ComponentTypeLimit”: [“BORDERLESS_ESIGN”]}
3411
+ 如:{“ComponentTypeLimit”: [“SYSTEM_ESIGN”]}
3380
3412
 
3381
3413
  ComponentType为SIGN_DATE时,支持以下参数:
3382
3414
  1 Font:字符串类型目前只支持"黑体"、"宋体",如果不填默认为"黑体"
@@ -3391,6 +3423,7 @@ export interface Component {
3391
3423
  ComponentExtra?: string;
3392
3424
  /**
3393
3425
  * 是否是表单域类型,默认不false-不是
3426
+ 注意:此字段可能返回 null,表示取不到有效值。
3394
3427
  */
3395
3428
  IsFormType?: boolean;
3396
3429
  /**
@@ -3488,10 +3521,12 @@ export interface Component {
3488
3521
  ChannelComponentId?: string;
3489
3522
  /**
3490
3523
  * 指定关键字时横坐标偏移量,单位pt
3524
+ 注意:此字段可能返回 null,表示取不到有效值。
3491
3525
  */
3492
3526
  OffsetX?: number;
3493
3527
  /**
3494
3528
  * 指定关键字时纵坐标偏移量,单位pt
3529
+ 注意:此字段可能返回 null,表示取不到有效值。
3495
3530
  */
3496
3531
  OffsetY?: number;
3497
3532
  /**
@@ -3546,6 +3581,28 @@ export interface IntegrationDepartment {
3546
3581
  */
3547
3582
  OrderNo?: number;
3548
3583
  }
3584
+ /**
3585
+ * DescribeExtendedServiceAuthInfos请求参数结构体
3586
+ */
3587
+ export interface DescribeExtendedServiceAuthInfosRequest {
3588
+ /**
3589
+ * 操作人信息
3590
+ */
3591
+ Operator: UserInfo;
3592
+ /**
3593
+ * 代理相关应用信息,如集团主企业代子企业操作
3594
+ */
3595
+ Agent?: Agent;
3596
+ /**
3597
+ * 扩展服务类型,默认为空,查询目前支持的所有扩展服务信息,单个指定则查询单个扩展服务开通信息,取值:
3598
+ OPEN_SERVER_SIGN:开通企业静默签署
3599
+ OVERSEA_SIGN:企业与港澳台居民签署合同
3600
+ MOBILE_CHECK_APPROVER:使用手机号验证签署方身份
3601
+ PAGING_SEAL:骑缝章
3602
+ BATCH_SIGN:批量签署
3603
+ */
3604
+ ExtendServiceType?: string;
3605
+ }
3549
3606
  /**
3550
3607
  * DescribeIntegrationRoles返回参数结构体
3551
3608
  */
@@ -3589,11 +3646,13 @@ export interface CreateFlowRemindsRequest {
3589
3646
  */
3590
3647
  export interface UpdateIntegrationEmployeesRequest {
3591
3648
  /**
3592
- * 操作人信息
3649
+ * 操作人信息,userId必填
3593
3650
  */
3594
3651
  Operator: UserInfo;
3595
3652
  /**
3596
- * 员工信息
3653
+ * 员工信息,不超过100个。
3654
+ 根据UserId或OpenId更新员工,必填一个,优先UserId。
3655
+ 可更新Mobile、DisplayName、Email和Department.DepartmentId字段,其他字段暂不支持
3597
3656
  */
3598
3657
  Employees: Array<Staff>;
3599
3658
  /**
@@ -3793,6 +3852,44 @@ export interface UploadFilesRequest {
3793
3852
  */
3794
3853
  FileUrls?: string;
3795
3854
  }
3855
+ /**
3856
+ * 授权服务信息
3857
+ */
3858
+ export interface ExtendAuthInfo {
3859
+ /**
3860
+ * 授权服务类型
3861
+ OPEN_SERVER_SIGN:开通企业静默签署
3862
+ OVERSEA_SIGN:企业与港澳台居民签署合同
3863
+ MOBILE_CHECK_APPROVER:使用手机号验证签署方身份
3864
+ PAGING_SEAL:骑缝章
3865
+ BATCH_SIGN:批量签署
3866
+ */
3867
+ Type?: string;
3868
+ /**
3869
+ * 授权服务名称
3870
+ */
3871
+ Name?: string;
3872
+ /**
3873
+ * 授权服务状态,ENABLE:开通
3874
+ DISABLE:未开通
3875
+ */
3876
+ Status?: string;
3877
+ /**
3878
+ * 授权人用户id
3879
+ 注意:此字段可能返回 null,表示取不到有效值。
3880
+ */
3881
+ OperatorUserId?: string;
3882
+ /**
3883
+ * 授权时间戳,单位秒
3884
+ 注意:此字段可能返回 null,表示取不到有效值。
3885
+ */
3886
+ OperateOn?: number;
3887
+ /**
3888
+ * 被授权用户列表
3889
+ 注意:此字段可能返回 null,表示取不到有效值。
3890
+ */
3891
+ HasAuthUserList?: Array<HasAuthUser>;
3892
+ }
3796
3893
  /**
3797
3894
  * 解除协议文档中内容信息,包括但不限于:解除理由、解除后仍然有效的条款-保留条款、原合同事项处理-费用结算、原合同事项处理-其他事项、其他约定等。
3798
3895
  */
@@ -4077,6 +4174,19 @@ export interface DescribeOrganizationGroupOrganizationsResponse {
4077
4174
  */
4078
4175
  RequestId?: string;
4079
4176
  }
4177
+ /**
4178
+ * DescribeExtendedServiceAuthInfos返回参数结构体
4179
+ */
4180
+ export interface DescribeExtendedServiceAuthInfosResponse {
4181
+ /**
4182
+ * 授权服务信息列表
4183
+ */
4184
+ AuthInfoList?: Array<ExtendAuthInfo>;
4185
+ /**
4186
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4187
+ */
4188
+ RequestId?: string;
4189
+ }
4080
4190
  /**
4081
4191
  * 抄送信息
4082
4192
  */