tencentcloud-sdk-nodejs-ess 4.0.624 → 4.0.626
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 +394 -0
- package/SERVICE_CHANGELOG.md +503 -67
- package/package.json +1 -1
- package/products.md +32 -32
- package/src/services/ess/v20201111/ess_client.ts +15 -1
- package/src/services/ess/v20201111/ess_models.ts +114 -15
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +5 -1
- package/tencentcloud/services/ess/v20201111/ess_client.js +6 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +110 -15
|
@@ -447,6 +447,31 @@ export interface CreateIntegrationEmployeesRequest {
|
|
|
447
447
|
*/
|
|
448
448
|
Agent?: Agent;
|
|
449
449
|
}
|
|
450
|
+
/**
|
|
451
|
+
* 解除协议的签署人,如不指定,默认使用待解除流程(即原流程)中的签署人。
|
|
452
|
+
注意:不支持更换C端(个人身份类型)签署人,如果原流程中含有C端签署人,默认使用原流程中的该C端签署人。
|
|
453
|
+
*/
|
|
454
|
+
export interface ReleasedApprover {
|
|
455
|
+
/**
|
|
456
|
+
* 签署人姓名,最大长度50个字符
|
|
457
|
+
|
|
458
|
+
*/
|
|
459
|
+
Name: string;
|
|
460
|
+
/**
|
|
461
|
+
* 签署人手机号
|
|
462
|
+
*/
|
|
463
|
+
Mobile: string;
|
|
464
|
+
/**
|
|
465
|
+
* 要替换的参与人在原合同参与人列表中的签署人编号,通过DescribeFlowInfo 接口获取(即FlowDetailInfos. FlowApproverInfos 结构中的ReceiptId )
|
|
466
|
+
*/
|
|
467
|
+
RelievedApproverReceiptId: string;
|
|
468
|
+
/**
|
|
469
|
+
* 指定签署人类型,目前仅支持
|
|
470
|
+
ORGANIZATION-企业
|
|
471
|
+
ENTERPRISESERVER-企业静默签
|
|
472
|
+
*/
|
|
473
|
+
ApproverType?: string;
|
|
474
|
+
}
|
|
450
475
|
/**
|
|
451
476
|
* DescribeIntegrationRoles请求参数结构体
|
|
452
477
|
*/
|
|
@@ -787,6 +812,20 @@ export interface DescribeFlowTemplatesRequest {
|
|
|
787
812
|
*/
|
|
788
813
|
GenerateSource?: number;
|
|
789
814
|
}
|
|
815
|
+
/**
|
|
816
|
+
* DescribeFlowComponents返回参数结构体
|
|
817
|
+
*/
|
|
818
|
+
export interface DescribeFlowComponentsResponse {
|
|
819
|
+
/**
|
|
820
|
+
* 流程关联的填写控件信息
|
|
821
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
822
|
+
*/
|
|
823
|
+
RecipientComponentInfos?: Array<RecipientComponentInfo>;
|
|
824
|
+
/**
|
|
825
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
826
|
+
*/
|
|
827
|
+
RequestId?: string;
|
|
828
|
+
}
|
|
790
829
|
/**
|
|
791
830
|
* DescribeFlowEvidenceReport返回参数结构体
|
|
792
831
|
*/
|
|
@@ -829,6 +868,31 @@ export interface CallbackInfo {
|
|
|
829
868
|
*/
|
|
830
869
|
CallbackToken?: string;
|
|
831
870
|
}
|
|
871
|
+
/**
|
|
872
|
+
* 参与方填写控件信息
|
|
873
|
+
*/
|
|
874
|
+
export interface RecipientComponentInfo {
|
|
875
|
+
/**
|
|
876
|
+
* 参与方Id
|
|
877
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
878
|
+
*/
|
|
879
|
+
RecipientId?: string;
|
|
880
|
+
/**
|
|
881
|
+
* 参与方填写状态
|
|
882
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
883
|
+
*/
|
|
884
|
+
RecipientFillStatus?: string;
|
|
885
|
+
/**
|
|
886
|
+
* 是否发起方
|
|
887
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
888
|
+
*/
|
|
889
|
+
IsPromoter?: boolean;
|
|
890
|
+
/**
|
|
891
|
+
* 填写控件内容
|
|
892
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
893
|
+
*/
|
|
894
|
+
Components?: Array<FilledComponent>;
|
|
895
|
+
}
|
|
832
896
|
/**
|
|
833
897
|
* 企业模板的信息结构
|
|
834
898
|
*/
|
|
@@ -2055,6 +2119,23 @@ export interface DescribeFileUrlsResponse {
|
|
|
2055
2119
|
*/
|
|
2056
2120
|
RequestId?: string;
|
|
2057
2121
|
}
|
|
2122
|
+
/**
|
|
2123
|
+
* DescribeFlowComponents请求参数结构体
|
|
2124
|
+
*/
|
|
2125
|
+
export interface DescribeFlowComponentsRequest {
|
|
2126
|
+
/**
|
|
2127
|
+
* 操作者信息
|
|
2128
|
+
*/
|
|
2129
|
+
Operator: UserInfo;
|
|
2130
|
+
/**
|
|
2131
|
+
* 电子签流程的Id
|
|
2132
|
+
*/
|
|
2133
|
+
FlowId: string;
|
|
2134
|
+
/**
|
|
2135
|
+
* 应用相关信息
|
|
2136
|
+
*/
|
|
2137
|
+
Agent?: Agent;
|
|
2138
|
+
}
|
|
2058
2139
|
/**
|
|
2059
2140
|
* CreateIntegrationDepartment请求参数结构体
|
|
2060
2141
|
*/
|
|
@@ -3509,7 +3590,11 @@ export interface Component {
|
|
|
3509
3590
|
5 Gaps:: 字符串类型,仅在Format为“yyyy m d”时起作用,格式为用逗号分开的两个整数,例如”2,2”,两个数字分别是日期格式的前后两个空隙中的空格个数
|
|
3510
3591
|
如果extra参数为空,默认为”yyyy年m月d日”格式的居中日期
|
|
3511
3592
|
特别地,如果extra中Format字段为空或无法被识别,则extra参数会被当作默认值处理(Font,FontSize,Gaps和FontAlign都不会起效)
|
|
3512
|
-
参数样例: "ComponentExtra": "{\"Format\":“yyyy m d”,\"FontSize\":12,\"Gaps\":\"2,2\", \"FontAlign\":\"Right\"}"
|
|
3593
|
+
参数样例: "ComponentExtra": "{\"Format\":“yyyy m d”,\"FontSize\":12,\"Gaps\":\"2,2\", \"FontAlign\":\"Right\"}"
|
|
3594
|
+
|
|
3595
|
+
ComponentType为SIGN_SEAL类型时,支持以下参数:
|
|
3596
|
+
1.PageRanges:PageRange的数组,通过PageRanges属性设置该印章在PDF所有页面上盖章(适用于标书在所有页面盖章的情况)
|
|
3597
|
+
参数样例: "ComponentExtra":"{\"PageRanges\":[\"PageRange\":{\"BeginPage\":1,\"EndPage\":-1}]}"
|
|
3513
3598
|
*/
|
|
3514
3599
|
ComponentExtra?: string;
|
|
3515
3600
|
/**
|
|
@@ -4148,29 +4233,39 @@ export interface DescribeUserAutoSignStatusRequest {
|
|
|
4148
4233
|
UserInfo: UserThreeFactor;
|
|
4149
4234
|
}
|
|
4150
4235
|
/**
|
|
4151
|
-
*
|
|
4152
|
-
注意:不支持更换C端(个人身份类型)签署人,如果原流程中含有C端签署人,默认使用原流程中的该C端签署人。
|
|
4236
|
+
* 文档内的填充控件返回结构体,返回控件的基本信息和填写内容值
|
|
4153
4237
|
*/
|
|
4154
|
-
export interface
|
|
4238
|
+
export interface FilledComponent {
|
|
4155
4239
|
/**
|
|
4156
|
-
*
|
|
4157
|
-
|
|
4240
|
+
* 控件Id
|
|
4241
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4158
4242
|
*/
|
|
4159
|
-
|
|
4243
|
+
ComponentId?: string;
|
|
4160
4244
|
/**
|
|
4161
|
-
*
|
|
4245
|
+
* 控件名称
|
|
4246
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4162
4247
|
*/
|
|
4163
|
-
|
|
4248
|
+
ComponentName?: string;
|
|
4164
4249
|
/**
|
|
4165
|
-
*
|
|
4250
|
+
* 控件填写状态;0-未填写;1-已填写
|
|
4251
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4166
4252
|
*/
|
|
4167
|
-
|
|
4253
|
+
ComponentFillStatus?: string;
|
|
4168
4254
|
/**
|
|
4169
|
-
*
|
|
4170
|
-
|
|
4171
|
-
ENTERPRISESERVER-企业静默签
|
|
4255
|
+
* 控件填写内容
|
|
4256
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4172
4257
|
*/
|
|
4173
|
-
|
|
4258
|
+
ComponentValue?: string;
|
|
4259
|
+
/**
|
|
4260
|
+
* 控件所属参与方Id
|
|
4261
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4262
|
+
*/
|
|
4263
|
+
ComponentRecipientId?: string;
|
|
4264
|
+
/**
|
|
4265
|
+
* 图片填充控件下载链接,如果是图片填充控件时,这里返回图片的下载链接。
|
|
4266
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4267
|
+
*/
|
|
4268
|
+
ImageUrl?: string;
|
|
4174
4269
|
}
|
|
4175
4270
|
/**
|
|
4176
4271
|
* 流程信息摘要
|