tencentcloud-sdk-nodejs-essbasic 4.0.703 → 4.0.705
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/CHANGELOG.md +471 -0
- package/SERVICE_CHANGELOG.md +461 -134
- package/package.json +1 -1
- package/products.md +31 -31
- package/src/services/essbasic/index.ts +2 -2
- package/src/services/essbasic/v20210526/essbasic_client.ts +3 -2
- package/src/services/essbasic/v20210526/essbasic_models.ts +191 -11
- package/tencentcloud/services/essbasic/index.d.ts +4 -4
- package/tencentcloud/services/essbasic/index.js +2 -2
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +3 -2
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +3 -2
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +191 -11
|
@@ -508,11 +508,14 @@ export interface ModifyExtendedServiceRequest {
|
|
|
508
508
|
Agent: Agent;
|
|
509
509
|
/**
|
|
510
510
|
* 扩展服务类型
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
511
|
+
<ul>
|
|
512
|
+
<li>AUTO_SIGN 企业自动签(自动签署)</li>
|
|
513
|
+
<li> OVERSEA_SIGN 企业与港澳台居民*签署合同</li>
|
|
514
|
+
<li> MOBILE_CHECK_APPROVER 使用手机号验证签署方身份</li>
|
|
515
|
+
<li> PAGING_SEAL 骑缝章</li>
|
|
516
|
+
<li> DOWNLOAD_FLOW 授权渠道下载合同 </li>
|
|
517
|
+
<li>AGE_LIMIT_EXPANSION 拓宽签署方年龄限制</li>
|
|
518
|
+
</ul>
|
|
516
519
|
*/
|
|
517
520
|
ServiceType: string;
|
|
518
521
|
/**
|
|
@@ -2668,7 +2671,181 @@ export interface DescribeExtendedServiceAuthInfoRequest {
|
|
|
2668
2671
|
Agent: Agent;
|
|
2669
2672
|
}
|
|
2670
2673
|
/**
|
|
2671
|
-
*
|
|
2674
|
+
* 电子文档的控件填充信息。按照控件类型进行相应的填充。
|
|
2675
|
+
|
|
2676
|
+
当控件的 ComponentType='TEXT'时,FormField.ComponentValue填入文本内容
|
|
2677
|
+
```
|
|
2678
|
+
FormField输入示例:
|
|
2679
|
+
{
|
|
2680
|
+
"ComponentId": "componentId1",
|
|
2681
|
+
"ComponentValue": "文本内容"
|
|
2682
|
+
}
|
|
2683
|
+
```
|
|
2684
|
+
当控件的 ComponentType='MULTI_LINE_TEXT'时,FormField.ComponentValue填入文本内容,支持自动换行。
|
|
2685
|
+
```
|
|
2686
|
+
FormField输入示例:
|
|
2687
|
+
{
|
|
2688
|
+
"ComponentId": "componentId1",
|
|
2689
|
+
"ComponentValue": "多行文本内容"
|
|
2690
|
+
}
|
|
2691
|
+
```
|
|
2692
|
+
当控件的 ComponentType='CHECK_BOX'时,FormField.ComponentValue填入true或false文本
|
|
2693
|
+
```
|
|
2694
|
+
FormField输入示例:
|
|
2695
|
+
{
|
|
2696
|
+
"ComponentId": "componentId1",
|
|
2697
|
+
"ComponentValue": "true"
|
|
2698
|
+
}
|
|
2699
|
+
```
|
|
2700
|
+
当控件的 ComponentType='FILL_IMAGE'时,FormField.ComponentValue填入图片的资源ID
|
|
2701
|
+
```
|
|
2702
|
+
FormField输入示例:
|
|
2703
|
+
{
|
|
2704
|
+
"ComponentId": "componentId1",
|
|
2705
|
+
"ComponentValue": "yDwhsxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
|
2706
|
+
}
|
|
2707
|
+
```
|
|
2708
|
+
当控件的 ComponentType='ATTACHMENT'时,FormField.ComponentValue填入附件图片的资源ID列表,以逗号分隔,单个附件控件最多支持6个资源ID;
|
|
2709
|
+
```
|
|
2710
|
+
FormField输入示例:
|
|
2711
|
+
{
|
|
2712
|
+
"ComponentId": "componentId1",
|
|
2713
|
+
"ComponentValue": "yDwhsxxxxxxxxxxxxxxxxxxxxxxxxxx1,yDwhsxxxxxxxxxxxxxxxxxxxxxxxxxx2,yDwhsxxxxxxxxxxxxxxxxxxxxxxxxxx3"
|
|
2714
|
+
}
|
|
2715
|
+
```
|
|
2716
|
+
当控件的 ComponentType='SELECTOR'时,FormField.ComponentValue填入选择的选项内容;
|
|
2717
|
+
```
|
|
2718
|
+
FormField输入示例:
|
|
2719
|
+
{
|
|
2720
|
+
"ComponentId": "componentId1",
|
|
2721
|
+
"ComponentValue": "选择的内容"
|
|
2722
|
+
}
|
|
2723
|
+
```
|
|
2724
|
+
当控件的 ComponentType='DATE'时,FormField.ComponentValue填入日期内容;
|
|
2725
|
+
```
|
|
2726
|
+
FormField输入示例:
|
|
2727
|
+
{
|
|
2728
|
+
"ComponentId": "componentId1",
|
|
2729
|
+
"ComponentValue": "2023年01月01日"
|
|
2730
|
+
}
|
|
2731
|
+
```
|
|
2732
|
+
当控件的 ComponentType='DISTRICT'时,FormField.ComponentValue填入省市区内容;
|
|
2733
|
+
```
|
|
2734
|
+
FormField输入示例:
|
|
2735
|
+
{
|
|
2736
|
+
"ComponentId": "componentId1",
|
|
2737
|
+
"ComponentValue": "广东省深圳市福田区"
|
|
2738
|
+
}
|
|
2739
|
+
```
|
|
2740
|
+
【数据表格传参说明】
|
|
2741
|
+
当控件的 ComponentType='DYNAMIC_TABLE'时,FormField.ComponentValue需要传递json格式的字符串参数,用于确定表头&填充数据表格(支持内容的单元格合并)
|
|
2742
|
+
输入示例1:
|
|
2743
|
+
|
|
2744
|
+
```
|
|
2745
|
+
{
|
|
2746
|
+
"headers":[
|
|
2747
|
+
{
|
|
2748
|
+
"content":"head1"
|
|
2749
|
+
},
|
|
2750
|
+
{
|
|
2751
|
+
"content":"head2"
|
|
2752
|
+
},
|
|
2753
|
+
{
|
|
2754
|
+
"content":"head3"
|
|
2755
|
+
}
|
|
2756
|
+
],
|
|
2757
|
+
"rowCount":3,
|
|
2758
|
+
"body":{
|
|
2759
|
+
"cells":[
|
|
2760
|
+
{
|
|
2761
|
+
"rowStart":1,
|
|
2762
|
+
"rowEnd":1,
|
|
2763
|
+
"columnStart":1,
|
|
2764
|
+
"columnEnd":1,
|
|
2765
|
+
"content":"123"
|
|
2766
|
+
},
|
|
2767
|
+
{
|
|
2768
|
+
"rowStart":2,
|
|
2769
|
+
"rowEnd":3,
|
|
2770
|
+
"columnStart":1,
|
|
2771
|
+
"columnEnd":2,
|
|
2772
|
+
"content":"456"
|
|
2773
|
+
},
|
|
2774
|
+
{
|
|
2775
|
+
"rowStart":3,
|
|
2776
|
+
"rowEnd":3,
|
|
2777
|
+
"columnStart":3,
|
|
2778
|
+
"columnEnd":3,
|
|
2779
|
+
"content":"789"
|
|
2780
|
+
}
|
|
2781
|
+
]
|
|
2782
|
+
}
|
|
2783
|
+
}
|
|
2784
|
+
|
|
2785
|
+
```
|
|
2786
|
+
|
|
2787
|
+
输入示例2(表格表头宽度比例配置):
|
|
2788
|
+
|
|
2789
|
+
```
|
|
2790
|
+
{
|
|
2791
|
+
"headers":[
|
|
2792
|
+
{
|
|
2793
|
+
"content":"head1",
|
|
2794
|
+
"widthPercent": 30
|
|
2795
|
+
},
|
|
2796
|
+
{
|
|
2797
|
+
"content":"head2",
|
|
2798
|
+
"widthPercent": 30
|
|
2799
|
+
},
|
|
2800
|
+
{
|
|
2801
|
+
"content":"head3",
|
|
2802
|
+
"widthPercent": 40
|
|
2803
|
+
}
|
|
2804
|
+
],
|
|
2805
|
+
"rowCount":3,
|
|
2806
|
+
"body":{
|
|
2807
|
+
"cells":[
|
|
2808
|
+
{
|
|
2809
|
+
"rowStart":1,
|
|
2810
|
+
"rowEnd":1,
|
|
2811
|
+
"columnStart":1,
|
|
2812
|
+
"columnEnd":1,
|
|
2813
|
+
"content":"123"
|
|
2814
|
+
},
|
|
2815
|
+
{
|
|
2816
|
+
"rowStart":2,
|
|
2817
|
+
"rowEnd":3,
|
|
2818
|
+
"columnStart":1,
|
|
2819
|
+
"columnEnd":2,
|
|
2820
|
+
"content":"456"
|
|
2821
|
+
},
|
|
2822
|
+
{
|
|
2823
|
+
"rowStart":3,
|
|
2824
|
+
"rowEnd":3,
|
|
2825
|
+
"columnStart":3,
|
|
2826
|
+
"columnEnd":3,
|
|
2827
|
+
"content":"789"
|
|
2828
|
+
}
|
|
2829
|
+
]
|
|
2830
|
+
}
|
|
2831
|
+
}
|
|
2832
|
+
|
|
2833
|
+
```
|
|
2834
|
+
表格参数说明
|
|
2835
|
+
|
|
2836
|
+
| 名称 | 类型 | 描述 |
|
|
2837
|
+
| ------------------- | ------- | ------------------------------------------------- |
|
|
2838
|
+
| headers | Array | 表头:不超过10列,不支持单元格合并,字数不超过100 |
|
|
2839
|
+
| rowCount | Integer | 表格内容最大行数 |
|
|
2840
|
+
| cells.N.rowStart | Integer | 单元格坐标:行起始index |
|
|
2841
|
+
| cells.N.rowEnd | Integer | 单元格坐标:行结束index |
|
|
2842
|
+
| cells.N.columnStart | Integer | 单元格坐标:列起始index |
|
|
2843
|
+
| cells.N.columnEnd | Integer | 单元格坐标:列结束index |
|
|
2844
|
+
| cells.N.content | String | 单元格内容,字数不超过100 |
|
|
2845
|
+
|
|
2846
|
+
表格参数headers说明
|
|
2847
|
+
widthPercent Integer 表头单元格列占总表头的比例,例如1:30表示 此列占表头的30%,不填写时列宽度平均拆分;例如2:总2列,某一列填写40,剩余列可以为空,按照60计算。;例如3:总3列,某一列填写30,剩余2列可以为空,分别为(100-30)/2=35
|
|
2848
|
+
content String 表头单元格内容,字数不超过100
|
|
2672
2849
|
*/
|
|
2673
2850
|
export interface FormField {
|
|
2674
2851
|
/**
|
|
@@ -3748,11 +3925,14 @@ export interface UploadFile {
|
|
|
3748
3925
|
export interface ExtentServiceAuthInfo {
|
|
3749
3926
|
/**
|
|
3750
3927
|
* 扩展服务类型
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
3754
|
-
|
|
3755
|
-
|
|
3928
|
+
<ul>
|
|
3929
|
+
<li>AUTO_SIGN 企业静默签(自动签署)</li>
|
|
3930
|
+
<li> OVERSEA_SIGN 企业与港澳台居民*签署合同</li>
|
|
3931
|
+
<li> MOBILE_CHECK_APPROVER 使用手机号验证签署方身份</li>
|
|
3932
|
+
<li> PAGING_SEAL 骑缝章</li>
|
|
3933
|
+
<li> DOWNLOAD_FLOW 授权渠道下载合同 </li>
|
|
3934
|
+
<li>AGE_LIMIT_EXPANSION 拓宽签署方年龄限制</li>
|
|
3935
|
+
</ul>
|
|
3756
3936
|
*/
|
|
3757
3937
|
Type?: string;
|
|
3758
3938
|
/**
|