tencentcloud-sdk-nodejs-essbasic 4.0.438 → 4.0.439
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 +472 -0
- package/SERVICE_CHANGELOG.md +654 -281
- package/package.json +1 -1
- package/products.md +20 -20
- package/src/services/essbasic/v20210526/essbasic_client.ts +39 -12
- package/src/services/essbasic/v20210526/essbasic_models.ts +273 -102
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +15 -5
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +19 -5
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +236 -93
|
@@ -273,6 +273,21 @@ export interface UploadFilesRequest {
|
|
|
273
273
|
Operator?: UserInfo
|
|
274
274
|
}
|
|
275
275
|
|
|
276
|
+
/**
|
|
277
|
+
* ChannelBatchCancelFlows返回参数结构体
|
|
278
|
+
*/
|
|
279
|
+
export interface ChannelBatchCancelFlowsResponse {
|
|
280
|
+
/**
|
|
281
|
+
* 签署流程批量撤销失败原因,错误信息与流程Id一一对应,如果部分流程不可撤销,不会返回错误信息,只会撤销可撤销流程
|
|
282
|
+
*/
|
|
283
|
+
FailMessages: Array<string>
|
|
284
|
+
|
|
285
|
+
/**
|
|
286
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
287
|
+
*/
|
|
288
|
+
RequestId?: string
|
|
289
|
+
}
|
|
290
|
+
|
|
276
291
|
/**
|
|
277
292
|
* GetDownloadFlowUrl返回参数结构体
|
|
278
293
|
*/
|
|
@@ -485,9 +500,9 @@ export interface CreateSignUrlsRequest {
|
|
|
485
500
|
Agent: Agent
|
|
486
501
|
|
|
487
502
|
/**
|
|
488
|
-
* 签署流程编号数组,最多支持100个。
|
|
503
|
+
* 签署流程编号数组,最多支持100个。(备注:该参数和合同组编号必须二选一)
|
|
489
504
|
*/
|
|
490
|
-
FlowIds
|
|
505
|
+
FlowIds?: Array<string>
|
|
491
506
|
|
|
492
507
|
/**
|
|
493
508
|
* 签署链接类型:“WEIXINAPP”-直接跳小程序;“CHANNEL”-跳转H5页面;“APP”-第三方APP或小程序跳转电子签小程序;默认“WEIXINAPP”类型,即跳转至小程序;
|
|
@@ -544,6 +559,11 @@ GenerateType为"PERSON"或"FOLLOWER"时必填
|
|
|
544
559
|
* 操作者的信息
|
|
545
560
|
*/
|
|
546
561
|
Operator?: UserInfo
|
|
562
|
+
|
|
563
|
+
/**
|
|
564
|
+
* 合同组编号(备注:该参数和合同(流程)编号数组必须二选一)
|
|
565
|
+
*/
|
|
566
|
+
FlowGroupId?: string
|
|
547
567
|
}
|
|
548
568
|
|
|
549
569
|
/**
|
|
@@ -644,14 +664,20 @@ export interface DescribeFlowDetailInfoRequest {
|
|
|
644
664
|
Agent: Agent
|
|
645
665
|
|
|
646
666
|
/**
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
667
|
+
* 合同(流程)编号数组,最多支持100个。
|
|
668
|
+
(备注:该参数和合同组编号必须二选一)
|
|
669
|
+
*/
|
|
670
|
+
FlowIds?: Array<string>
|
|
650
671
|
|
|
651
672
|
/**
|
|
652
673
|
* 操作者的信息
|
|
653
674
|
*/
|
|
654
675
|
Operator?: UserInfo
|
|
676
|
+
|
|
677
|
+
/**
|
|
678
|
+
* 合同组编号(备注:该参数和合同(流程)编号数组必须二选一)
|
|
679
|
+
*/
|
|
680
|
+
FlowGroupId?: string
|
|
655
681
|
}
|
|
656
682
|
|
|
657
683
|
/**
|
|
@@ -702,6 +728,21 @@ ProcessTimeout - 转换文件超时
|
|
|
702
728
|
RequestId?: string
|
|
703
729
|
}
|
|
704
730
|
|
|
731
|
+
/**
|
|
732
|
+
* 此结构体 (UploadFile) 用于描述多文件上传的文件信息。
|
|
733
|
+
*/
|
|
734
|
+
export interface UploadFile {
|
|
735
|
+
/**
|
|
736
|
+
* Base64编码后的文件内容
|
|
737
|
+
*/
|
|
738
|
+
FileBody: string
|
|
739
|
+
|
|
740
|
+
/**
|
|
741
|
+
* 文件名
|
|
742
|
+
*/
|
|
743
|
+
FileName?: string
|
|
744
|
+
}
|
|
745
|
+
|
|
705
746
|
/**
|
|
706
747
|
* 合作企业经办人列表信息
|
|
707
748
|
*/
|
|
@@ -761,18 +802,88 @@ export interface ChannelGetTaskResultApiRequest {
|
|
|
761
802
|
}
|
|
762
803
|
|
|
763
804
|
/**
|
|
764
|
-
*
|
|
805
|
+
* 签署链接内容
|
|
765
806
|
*/
|
|
766
|
-
export interface
|
|
807
|
+
export interface SignUrlInfo {
|
|
767
808
|
/**
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
809
|
+
* 签署链接
|
|
810
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
811
|
+
*/
|
|
812
|
+
SignUrl: string
|
|
771
813
|
|
|
772
814
|
/**
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
815
|
+
* 链接失效时间,默认30分钟
|
|
816
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
817
|
+
*/
|
|
818
|
+
Deadline: number
|
|
819
|
+
|
|
820
|
+
/**
|
|
821
|
+
* 当流程为顺序签署此参数有效时,数字越小优先级越高,暂不支持并行签署 可选
|
|
822
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
823
|
+
*/
|
|
824
|
+
SignOrder: number
|
|
825
|
+
|
|
826
|
+
/**
|
|
827
|
+
* 签署人编号
|
|
828
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
829
|
+
*/
|
|
830
|
+
SignId: string
|
|
831
|
+
|
|
832
|
+
/**
|
|
833
|
+
* 自定义用户编号
|
|
834
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
835
|
+
*/
|
|
836
|
+
CustomUserId: string
|
|
837
|
+
|
|
838
|
+
/**
|
|
839
|
+
* 用户姓名
|
|
840
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
841
|
+
*/
|
|
842
|
+
Name: string
|
|
843
|
+
|
|
844
|
+
/**
|
|
845
|
+
* 用户手机号码
|
|
846
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
847
|
+
*/
|
|
848
|
+
Mobile: string
|
|
849
|
+
|
|
850
|
+
/**
|
|
851
|
+
* 签署参与者机构名字
|
|
852
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
853
|
+
*/
|
|
854
|
+
OrganizationName: string
|
|
855
|
+
|
|
856
|
+
/**
|
|
857
|
+
* 参与者类型:
|
|
858
|
+
ORGANIZATION 企业经办人
|
|
859
|
+
PERSON 自然人
|
|
860
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
861
|
+
*/
|
|
862
|
+
ApproverType: string
|
|
863
|
+
|
|
864
|
+
/**
|
|
865
|
+
* 经办人身份证号
|
|
866
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
867
|
+
*/
|
|
868
|
+
IdCardNumber: string
|
|
869
|
+
|
|
870
|
+
/**
|
|
871
|
+
* 签署链接对应流程Id
|
|
872
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
873
|
+
*/
|
|
874
|
+
FlowId: string
|
|
875
|
+
|
|
876
|
+
/**
|
|
877
|
+
* 企业经办人 用户在渠道的编号
|
|
878
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
879
|
+
*/
|
|
880
|
+
OpenId: string
|
|
881
|
+
|
|
882
|
+
/**
|
|
883
|
+
* 合同组签署链接对应的合同组id
|
|
884
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
885
|
+
*/
|
|
886
|
+
FlowGroupId: string
|
|
776
887
|
}
|
|
777
888
|
|
|
778
889
|
/**
|
|
@@ -931,6 +1042,26 @@ export interface GetDownloadFlowUrlRequest {
|
|
|
931
1042
|
Operator?: UserInfo
|
|
932
1043
|
}
|
|
933
1044
|
|
|
1045
|
+
/**
|
|
1046
|
+
* ChannelBatchCancelFlows请求参数结构体
|
|
1047
|
+
*/
|
|
1048
|
+
export interface ChannelBatchCancelFlowsRequest {
|
|
1049
|
+
/**
|
|
1050
|
+
* 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
|
|
1051
|
+
*/
|
|
1052
|
+
Agent: Agent
|
|
1053
|
+
|
|
1054
|
+
/**
|
|
1055
|
+
* 签署流程Id数组,最多100个,超过100不处理
|
|
1056
|
+
*/
|
|
1057
|
+
FlowIds: Array<string>
|
|
1058
|
+
|
|
1059
|
+
/**
|
|
1060
|
+
* 操作人信息
|
|
1061
|
+
*/
|
|
1062
|
+
Operator?: UserInfo
|
|
1063
|
+
}
|
|
1064
|
+
|
|
934
1065
|
/**
|
|
935
1066
|
* 此结构体(FlowDetailInfo)描述的是合同(流程)的详细信息
|
|
936
1067
|
*/
|
|
@@ -1122,28 +1253,24 @@ REJECT: 拒绝
|
|
|
1122
1253
|
}
|
|
1123
1254
|
|
|
1124
1255
|
/**
|
|
1125
|
-
*
|
|
1256
|
+
* DescribeUsage返回参数结构体
|
|
1126
1257
|
*/
|
|
1127
|
-
export interface
|
|
1128
|
-
/**
|
|
1129
|
-
* 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
|
|
1130
|
-
*/
|
|
1131
|
-
Agent: Agent
|
|
1132
|
-
|
|
1258
|
+
export interface DescribeUsageResponse {
|
|
1133
1259
|
/**
|
|
1134
|
-
*
|
|
1260
|
+
* 用量明细条数
|
|
1135
1261
|
*/
|
|
1136
|
-
|
|
1262
|
+
Total: number
|
|
1137
1263
|
|
|
1138
1264
|
/**
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1265
|
+
* 用量明细
|
|
1266
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1267
|
+
*/
|
|
1268
|
+
Details: Array<UsageDetail>
|
|
1142
1269
|
|
|
1143
1270
|
/**
|
|
1144
|
-
*
|
|
1271
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1145
1272
|
*/
|
|
1146
|
-
|
|
1273
|
+
RequestId?: string
|
|
1147
1274
|
}
|
|
1148
1275
|
|
|
1149
1276
|
/**
|
|
@@ -1222,6 +1349,66 @@ export interface FlowResourceUrlInfo {
|
|
|
1222
1349
|
ResourceUrlInfos: Array<ResourceUrlInfo>
|
|
1223
1350
|
}
|
|
1224
1351
|
|
|
1352
|
+
/**
|
|
1353
|
+
* 合同组中每个子合同的发起信息
|
|
1354
|
+
*/
|
|
1355
|
+
export interface FlowFileInfo {
|
|
1356
|
+
/**
|
|
1357
|
+
* 签署文件资源Id列表,目前仅支持单个文件
|
|
1358
|
+
*/
|
|
1359
|
+
FileIds: Array<string>
|
|
1360
|
+
|
|
1361
|
+
/**
|
|
1362
|
+
* 签署流程名称,长度不超过200个字符
|
|
1363
|
+
*/
|
|
1364
|
+
FlowName: string
|
|
1365
|
+
|
|
1366
|
+
/**
|
|
1367
|
+
* 签署流程签约方列表,最多不超过5个参与方
|
|
1368
|
+
*/
|
|
1369
|
+
FlowApprovers: Array<FlowApproverInfo>
|
|
1370
|
+
|
|
1371
|
+
/**
|
|
1372
|
+
* 签署流程截止时间,十位数时间戳,最大值为33162419560,即3020年
|
|
1373
|
+
*/
|
|
1374
|
+
Deadline?: number
|
|
1375
|
+
|
|
1376
|
+
/**
|
|
1377
|
+
* 签署流程的描述,长度不超过1000个字符
|
|
1378
|
+
*/
|
|
1379
|
+
FlowDescription?: string
|
|
1380
|
+
|
|
1381
|
+
/**
|
|
1382
|
+
* 签署流程的类型,长度不超过255个字符
|
|
1383
|
+
*/
|
|
1384
|
+
FlowType?: string
|
|
1385
|
+
|
|
1386
|
+
/**
|
|
1387
|
+
* 签署流程回调地址,长度不超过255个字符
|
|
1388
|
+
*/
|
|
1389
|
+
CallbackUrl?: string
|
|
1390
|
+
|
|
1391
|
+
/**
|
|
1392
|
+
* 渠道的业务信息,最大长度1000个字符。发起自动签署时,需设置对应自动签署场景,目前仅支持场景:处方单-E_PRESCRIPTION_AUTO_SIGN
|
|
1393
|
+
*/
|
|
1394
|
+
CustomerData?: string
|
|
1395
|
+
|
|
1396
|
+
/**
|
|
1397
|
+
* 合同签署顺序类型(无序签,顺序签),默认为false,即有序签署
|
|
1398
|
+
*/
|
|
1399
|
+
Unordered?: boolean
|
|
1400
|
+
|
|
1401
|
+
/**
|
|
1402
|
+
* 合同显示的页卡模板,说明:只支持{合同名称}, {发起方企业}, {发起方姓名}, {签署方N企业}, {签署方N姓名},且N不能超过签署人的数量,N从1开始
|
|
1403
|
+
*/
|
|
1404
|
+
CustomShowMap?: string
|
|
1405
|
+
|
|
1406
|
+
/**
|
|
1407
|
+
* 本企业(发起方企业)是否需要签署审批
|
|
1408
|
+
*/
|
|
1409
|
+
NeedSignReview?: boolean
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1225
1412
|
/**
|
|
1226
1413
|
* DescribeTemplates请求参数结构体
|
|
1227
1414
|
*/
|
|
@@ -1416,19 +1603,20 @@ export interface SignQrCode {
|
|
|
1416
1603
|
}
|
|
1417
1604
|
|
|
1418
1605
|
/**
|
|
1419
|
-
*
|
|
1606
|
+
* ChannelCreateFlowGroupByFiles返回参数结构体
|
|
1420
1607
|
*/
|
|
1421
|
-
export interface
|
|
1608
|
+
export interface ChannelCreateFlowGroupByFilesResponse {
|
|
1422
1609
|
/**
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1610
|
+
* 合同组ID
|
|
1611
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1612
|
+
*/
|
|
1613
|
+
FlowGroupId: string
|
|
1426
1614
|
|
|
1427
1615
|
/**
|
|
1428
|
-
*
|
|
1616
|
+
* 子合同ID列表
|
|
1429
1617
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1430
1618
|
*/
|
|
1431
|
-
|
|
1619
|
+
FlowIds: Array<string>
|
|
1432
1620
|
|
|
1433
1621
|
/**
|
|
1434
1622
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -1436,6 +1624,31 @@ export interface DescribeUsageResponse {
|
|
|
1436
1624
|
RequestId?: string
|
|
1437
1625
|
}
|
|
1438
1626
|
|
|
1627
|
+
/**
|
|
1628
|
+
* PrepareFlows请求参数结构体
|
|
1629
|
+
*/
|
|
1630
|
+
export interface PrepareFlowsRequest {
|
|
1631
|
+
/**
|
|
1632
|
+
* 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
|
|
1633
|
+
*/
|
|
1634
|
+
Agent: Agent
|
|
1635
|
+
|
|
1636
|
+
/**
|
|
1637
|
+
* 多个合同(签署流程)信息,最大支持20个签署流程。
|
|
1638
|
+
*/
|
|
1639
|
+
FlowInfos: Array<FlowInfo>
|
|
1640
|
+
|
|
1641
|
+
/**
|
|
1642
|
+
* 操作完成后的跳转地址,最大长度200
|
|
1643
|
+
*/
|
|
1644
|
+
JumpUrl: string
|
|
1645
|
+
|
|
1646
|
+
/**
|
|
1647
|
+
* 操作者的信息
|
|
1648
|
+
*/
|
|
1649
|
+
Operator?: UserInfo
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1439
1652
|
/**
|
|
1440
1653
|
* 用量明细
|
|
1441
1654
|
*/
|
|
@@ -2130,82 +2343,28 @@ export interface FlowInfo {
|
|
|
2130
2343
|
}
|
|
2131
2344
|
|
|
2132
2345
|
/**
|
|
2133
|
-
*
|
|
2346
|
+
* ChannelCreateFlowGroupByFiles请求参数结构体
|
|
2134
2347
|
*/
|
|
2135
|
-
export interface
|
|
2136
|
-
/**
|
|
2137
|
-
* 签署链接
|
|
2138
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2139
|
-
*/
|
|
2140
|
-
SignUrl: string
|
|
2141
|
-
|
|
2142
|
-
/**
|
|
2143
|
-
* 链接失效时间,默认30分钟
|
|
2144
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2145
|
-
*/
|
|
2146
|
-
Deadline: number
|
|
2147
|
-
|
|
2148
|
-
/**
|
|
2149
|
-
* 当流程为顺序签署此参数有效时,数字越小优先级越高,暂不支持并行签署 可选
|
|
2150
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2151
|
-
*/
|
|
2152
|
-
SignOrder: number
|
|
2153
|
-
|
|
2154
|
-
/**
|
|
2155
|
-
* 签署人编号
|
|
2156
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2157
|
-
*/
|
|
2158
|
-
SignId: string
|
|
2159
|
-
|
|
2160
|
-
/**
|
|
2161
|
-
* 自定义用户编号
|
|
2162
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2163
|
-
*/
|
|
2164
|
-
CustomUserId: string
|
|
2165
|
-
|
|
2166
|
-
/**
|
|
2167
|
-
* 用户姓名
|
|
2168
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2169
|
-
*/
|
|
2170
|
-
Name: string
|
|
2171
|
-
|
|
2172
|
-
/**
|
|
2173
|
-
* 用户手机号码
|
|
2174
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2175
|
-
*/
|
|
2176
|
-
Mobile: string
|
|
2177
|
-
|
|
2348
|
+
export interface ChannelCreateFlowGroupByFilesRequest {
|
|
2178
2349
|
/**
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
OrganizationName: string
|
|
2183
|
-
|
|
2184
|
-
/**
|
|
2185
|
-
* 参与者类型:
|
|
2186
|
-
ORGANIZATION 企业经办人
|
|
2187
|
-
PERSON 自然人
|
|
2188
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2189
|
-
*/
|
|
2190
|
-
ApproverType: string
|
|
2350
|
+
* 每个子合同的发起所需的信息,数量限制2-100
|
|
2351
|
+
*/
|
|
2352
|
+
FlowFileInfos: Array<FlowFileInfo>
|
|
2191
2353
|
|
|
2192
2354
|
/**
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
IdCardNumber: string
|
|
2355
|
+
* 合同组名称,长度不超过200个字符
|
|
2356
|
+
*/
|
|
2357
|
+
FlowGroupName: string
|
|
2197
2358
|
|
|
2198
2359
|
/**
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
FlowId: string
|
|
2360
|
+
* 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
|
|
2361
|
+
*/
|
|
2362
|
+
Agent?: Agent
|
|
2203
2363
|
|
|
2204
2364
|
/**
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
OpenId: string
|
|
2365
|
+
* 操作者的信息
|
|
2366
|
+
*/
|
|
2367
|
+
Operator?: UserInfo
|
|
2209
2368
|
}
|
|
2210
2369
|
|
|
2211
2370
|
/**
|
|
@@ -2265,6 +2424,18 @@ export interface DescribeFlowDetailInfoResponse {
|
|
|
2265
2424
|
*/
|
|
2266
2425
|
FlowInfo: Array<FlowDetailInfo>
|
|
2267
2426
|
|
|
2427
|
+
/**
|
|
2428
|
+
* 合同组编号
|
|
2429
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2430
|
+
*/
|
|
2431
|
+
FlowGroupId: string
|
|
2432
|
+
|
|
2433
|
+
/**
|
|
2434
|
+
* 合同组名称
|
|
2435
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2436
|
+
*/
|
|
2437
|
+
FlowGroupName: string
|
|
2438
|
+
|
|
2268
2439
|
/**
|
|
2269
2440
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2270
2441
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
|
2
|
-
import { SyncProxyOrganizationResponse, ChannelCreateConvertTaskApiResponse, OperateChannelTemplateRequest, UploadFilesRequest, GetDownloadFlowUrlResponse, DescribeResourceUrlsByFlowsResponse, ChannelCreateMultiFlowSignQRCodeResponse, DescribeTemplatesResponse, OperateChannelTemplateResponse, CreateSignUrlsResponse, CreateSignUrlsRequest, ChannelCreateMultiFlowSignQRCodeRequest, CreateChannelFlowEvidenceReportRequest, DescribeFlowDetailInfoRequest, ChannelGetTaskResultApiResponse, ChannelGetTaskResultApiRequest, GetDownloadFlowUrlRequest, CreateConsoleLoginUrlRequest, CreateFlowsByTemplatesResponse, ChannelCreateFlowSignReviewRequest,
|
|
2
|
+
import { SyncProxyOrganizationResponse, ChannelCreateConvertTaskApiResponse, OperateChannelTemplateRequest, UploadFilesRequest, ChannelBatchCancelFlowsResponse, GetDownloadFlowUrlResponse, DescribeResourceUrlsByFlowsResponse, ChannelCreateMultiFlowSignQRCodeResponse, DescribeTemplatesResponse, OperateChannelTemplateResponse, CreateSignUrlsResponse, CreateSignUrlsRequest, ChannelCreateMultiFlowSignQRCodeRequest, CreateChannelFlowEvidenceReportRequest, DescribeFlowDetailInfoRequest, ChannelGetTaskResultApiResponse, ChannelGetTaskResultApiRequest, GetDownloadFlowUrlRequest, ChannelBatchCancelFlowsRequest, CreateConsoleLoginUrlRequest, CreateFlowsByTemplatesResponse, ChannelCreateFlowSignReviewRequest, DescribeUsageResponse, SyncProxyOrganizationOperatorsResponse, CreateSealByImageResponse, DescribeTemplatesRequest, SyncProxyOrganizationOperatorsRequest, CreateConsoleLoginUrlResponse, CreateFlowsByTemplatesRequest, SyncProxyOrganizationRequest, CreateSealByImageRequest, ChannelCreateFlowGroupByFilesResponse, PrepareFlowsRequest, ChannelCreateBatchCancelFlowUrlResponse, DescribeResourceUrlsByFlowsRequest, ChannelCancelMultiFlowSignQRCodeRequest, CreateChannelFlowEvidenceReportResponse, PrepareFlowsResponse, DescribeUsageRequest, ChannelCreateBatchCancelFlowUrlRequest, ChannelCreateFlowByFilesRequest, ChannelCreateFlowByFilesResponse, UploadFilesResponse, ChannelCreateFlowSignReviewResponse, ChannelCreateConvertTaskApiRequest, ChannelCreateFlowGroupByFilesRequest, ChannelCancelMultiFlowSignQRCodeResponse, DescribeFlowDetailInfoResponse } from "./essbasic_models";
|
|
3
3
|
/**
|
|
4
4
|
* essbasic client
|
|
5
5
|
* @class
|
|
@@ -72,6 +72,15 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
72
72
|
|
|
73
73
|
*/
|
|
74
74
|
GetDownloadFlowUrl(req: GetDownloadFlowUrlRequest, cb?: (error: string, rep: GetDownloadFlowUrlResponse) => void): Promise<GetDownloadFlowUrlResponse>;
|
|
75
|
+
/**
|
|
76
|
+
* 此接口(SyncProxyOrganizationOperators)用于同步渠道合作企业经办人列表
|
|
77
|
+
*/
|
|
78
|
+
SyncProxyOrganizationOperators(req: SyncProxyOrganizationOperatorsRequest, cb?: (error: string, rep: SyncProxyOrganizationOperatorsResponse) => void): Promise<SyncProxyOrganizationOperatorsResponse>;
|
|
79
|
+
/**
|
|
80
|
+
* 指定需要批量撤销的签署流程Id,批量撤销合同
|
|
81
|
+
客户指定需要撤销的签署流程Id,最多100个,超过100不处理;接口失败后返回错误信息
|
|
82
|
+
*/
|
|
83
|
+
ChannelBatchCancelFlows(req: ChannelBatchCancelFlowsRequest, cb?: (error: string, rep: ChannelBatchCancelFlowsResponse) => void): Promise<ChannelBatchCancelFlowsResponse>;
|
|
75
84
|
/**
|
|
76
85
|
* 该接口 (PrepareFlows) 用于创建待发起文件
|
|
77
86
|
用户通过该接口进入签署流程发起的确认页面,进行发起信息二次确认, 如果确认则进行正常发起。
|
|
@@ -92,8 +101,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
92
101
|
*/
|
|
93
102
|
UploadFiles(req: UploadFilesRequest, cb?: (error: string, rep: UploadFilesResponse) => void): Promise<UploadFilesResponse>;
|
|
94
103
|
/**
|
|
95
|
-
|
|
96
|
-
|
|
104
|
+
* 【描述】:创建出证报告,返回报告 URL
|
|
105
|
+
【注意】:此接口需要通过添加白名单获取调用权限,请联系运营人员加白
|
|
106
|
+
*/
|
|
97
107
|
CreateChannelFlowEvidenceReport(req: CreateChannelFlowEvidenceReportRequest, cb?: (error: string, rep: CreateChannelFlowEvidenceReportResponse) => void): Promise<CreateChannelFlowEvidenceReportResponse>;
|
|
98
108
|
/**
|
|
99
109
|
* 此接口(OperateChannelTemplate)用于渠道侧将模板库中的模板对合作企业进行查询和设置, 其中包括可见性的修改以及对合作企业的设置.
|
|
@@ -104,9 +114,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
104
114
|
*/
|
|
105
115
|
OperateChannelTemplate(req: OperateChannelTemplateRequest, cb?: (error: string, rep: OperateChannelTemplateResponse) => void): Promise<OperateChannelTemplateResponse>;
|
|
106
116
|
/**
|
|
107
|
-
*
|
|
117
|
+
* 接口(ChannelCreateFlowGroupByFiles)用于通过多文件创建合同组签署流程。
|
|
108
118
|
*/
|
|
109
|
-
|
|
119
|
+
ChannelCreateFlowGroupByFiles(req: ChannelCreateFlowGroupByFilesRequest, cb?: (error: string, rep: ChannelCreateFlowGroupByFilesResponse) => void): Promise<ChannelCreateFlowGroupByFilesResponse>;
|
|
110
120
|
/**
|
|
111
121
|
* 此接口(DescribeFlowDetailInfo)用于查询合同(签署流程)的详细信息。
|
|
112
122
|
*/
|
|
@@ -121,6 +121,19 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
121
121
|
async GetDownloadFlowUrl(req, cb) {
|
|
122
122
|
return this.request("GetDownloadFlowUrl", req, cb);
|
|
123
123
|
}
|
|
124
|
+
/**
|
|
125
|
+
* 此接口(SyncProxyOrganizationOperators)用于同步渠道合作企业经办人列表
|
|
126
|
+
*/
|
|
127
|
+
async SyncProxyOrganizationOperators(req, cb) {
|
|
128
|
+
return this.request("SyncProxyOrganizationOperators", req, cb);
|
|
129
|
+
}
|
|
130
|
+
/**
|
|
131
|
+
* 指定需要批量撤销的签署流程Id,批量撤销合同
|
|
132
|
+
客户指定需要撤销的签署流程Id,最多100个,超过100不处理;接口失败后返回错误信息
|
|
133
|
+
*/
|
|
134
|
+
async ChannelBatchCancelFlows(req, cb) {
|
|
135
|
+
return this.request("ChannelBatchCancelFlows", req, cb);
|
|
136
|
+
}
|
|
124
137
|
/**
|
|
125
138
|
* 该接口 (PrepareFlows) 用于创建待发起文件
|
|
126
139
|
用户通过该接口进入签署流程发起的确认页面,进行发起信息二次确认, 如果确认则进行正常发起。
|
|
@@ -149,8 +162,9 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
149
162
|
return this.request("UploadFiles", req, cb);
|
|
150
163
|
}
|
|
151
164
|
/**
|
|
152
|
-
|
|
153
|
-
|
|
165
|
+
* 【描述】:创建出证报告,返回报告 URL
|
|
166
|
+
【注意】:此接口需要通过添加白名单获取调用权限,请联系运营人员加白
|
|
167
|
+
*/
|
|
154
168
|
async CreateChannelFlowEvidenceReport(req, cb) {
|
|
155
169
|
return this.request("CreateChannelFlowEvidenceReport", req, cb);
|
|
156
170
|
}
|
|
@@ -165,10 +179,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
165
179
|
return this.request("OperateChannelTemplate", req, cb);
|
|
166
180
|
}
|
|
167
181
|
/**
|
|
168
|
-
*
|
|
182
|
+
* 接口(ChannelCreateFlowGroupByFiles)用于通过多文件创建合同组签署流程。
|
|
169
183
|
*/
|
|
170
|
-
async
|
|
171
|
-
return this.request("
|
|
184
|
+
async ChannelCreateFlowGroupByFiles(req, cb) {
|
|
185
|
+
return this.request("ChannelCreateFlowGroupByFiles", req, cb);
|
|
172
186
|
}
|
|
173
187
|
/**
|
|
174
188
|
* 此接口(DescribeFlowDetailInfo)用于查询合同(签署流程)的详细信息。
|