tencentcloud-sdk-nodejs-essbasic 4.0.445 → 4.0.447

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.
@@ -19,13 +19,65 @@ export interface ResourceUrlInfo {
19
19
  Type: string;
20
20
  }
21
21
  /**
22
- * SyncProxyOrganization返回参数结构体
22
+ * 合同文件验签单个结果结构体
23
23
  */
24
- export interface SyncProxyOrganizationResponse {
24
+ export interface PdfVerifyResult {
25
25
  /**
26
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
26
+ * 验签结果
27
27
  */
28
- RequestId?: string;
28
+ VerifyResult: number;
29
+ /**
30
+ * 签署平台
31
+ */
32
+ SignPlatform: string;
33
+ /**
34
+ * 签署人名称
35
+ */
36
+ SignerName: string;
37
+ /**
38
+ * 签署时间
39
+ */
40
+ SignTime: number;
41
+ /**
42
+ * 签名算法
43
+ */
44
+ SignAlgorithm: string;
45
+ /**
46
+ * 签名证书序列号
47
+ */
48
+ CertSn: string;
49
+ /**
50
+ * 证书起始时间
51
+ */
52
+ CertNotBefore: number;
53
+ /**
54
+ * 证书过期时间
55
+ */
56
+ CertNotAfter: number;
57
+ /**
58
+ * 签名类型
59
+ */
60
+ SignType: number;
61
+ /**
62
+ * 签名域横坐标
63
+ */
64
+ ComponentPosX: number;
65
+ /**
66
+ * 签名域纵坐标
67
+ */
68
+ ComponentPosY: number;
69
+ /**
70
+ * 签名域宽度
71
+ */
72
+ ComponentWidth: number;
73
+ /**
74
+ * 签名域高度
75
+ */
76
+ ComponentHeight: number;
77
+ /**
78
+ * 签名域所在页码
79
+ */
80
+ ComponentPage: number;
29
81
  }
30
82
  /**
31
83
  * 创建签署流程签署人入参
@@ -214,6 +266,15 @@ export interface UploadFilesRequest {
214
266
  */
215
267
  Operator?: UserInfo;
216
268
  }
269
+ /**
270
+ * SyncProxyOrganization返回参数结构体
271
+ */
272
+ export interface SyncProxyOrganizationResponse {
273
+ /**
274
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
275
+ */
276
+ RequestId?: string;
277
+ }
217
278
  /**
218
279
  * ChannelBatchCancelFlows返回参数结构体
219
280
  */
@@ -660,6 +721,24 @@ export interface ChannelGetTaskResultApiRequest {
660
721
  */
661
722
  Organization?: OrganizationInfo;
662
723
  }
724
+ /**
725
+ * ChannelVerifyPdf返回参数结构体
726
+ */
727
+ export interface ChannelVerifyPdfResponse {
728
+ /**
729
+ * 验签结果,1-文件未被篡改,全部签名在腾讯电子签完成; 2-文件未被篡改,部分签名在腾讯电子签完成;3-文件被篡改;4-异常:文件内没有签名域;5-异常:文件签名格式错误
730
+ */
731
+ VerifyResult: number;
732
+ /**
733
+ * 验签结果详情,内部状态1-验签成功,在电子签签署;2-验签成功,在其他平台签署;3-验签失败;4-pdf文件没有签名域
734
+ ;5-文件签名格式错误
735
+ */
736
+ PdfVerifyResults: Array<PdfVerifyResult>;
737
+ /**
738
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
739
+ */
740
+ RequestId?: string;
741
+ }
663
742
  /**
664
743
  * 签署链接内容
665
744
  */
@@ -1095,21 +1174,21 @@ export interface CreateSealByImageResponse {
1095
1174
  RequestId?: string;
1096
1175
  }
1097
1176
  /**
1098
- * 一码多扫签署二维码签署信息
1177
+ * ChannelVerifyPdf请求参数结构体
1099
1178
  */
1100
- export interface SignUrl {
1179
+ export interface ChannelVerifyPdfRequest {
1101
1180
  /**
1102
- * 小程序签署链接
1181
+ * 合同Id,流程Id
1103
1182
  */
1104
- AppSignUrl: string;
1183
+ FlowId: string;
1105
1184
  /**
1106
- * 签署链接有效时间
1185
+ * 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
1107
1186
  */
1108
- EffectiveTime: string;
1187
+ Agent?: Agent;
1109
1188
  /**
1110
- * 移动端签署链接
1189
+ * 操作者的信息
1111
1190
  */
1112
- HttpSignUrl: string;
1191
+ Operator?: UserInfo;
1113
1192
  }
1114
1193
  /**
1115
1194
  * 流程对应资源链接信息
@@ -1336,6 +1415,23 @@ export interface SignQrCode {
1336
1415
  */
1337
1416
  ExpiredTime: number;
1338
1417
  }
1418
+ /**
1419
+ * 一码多扫签署二维码签署信息
1420
+ */
1421
+ export interface SignUrl {
1422
+ /**
1423
+ * 小程序签署链接
1424
+ */
1425
+ AppSignUrl: string;
1426
+ /**
1427
+ * 签署链接有效时间
1428
+ */
1429
+ EffectiveTime: string;
1430
+ /**
1431
+ * 移动端签署链接
1432
+ */
1433
+ HttpSignUrl: string;
1434
+ }
1339
1435
  /**
1340
1436
  * ChannelCreateFlowGroupByFiles返回参数结构体
1341
1437
  */