tencentcloud-sdk-nodejs-essbasic 4.0.553 → 4.0.554
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 +196 -0
- package/SERVICE_CHANGELOG.md +306 -197
- package/package.json +1 -1
- package/products.md +21 -22
- package/src/services/essbasic/v20210526/essbasic_client.ts +18 -2
- package/src/services/essbasic/v20210526/essbasic_models.ts +252 -13
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +5 -1
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +6 -0
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +215 -13
|
@@ -86,6 +86,16 @@ export interface Department {
|
|
|
86
86
|
*/
|
|
87
87
|
DepartmentName: string;
|
|
88
88
|
}
|
|
89
|
+
/**
|
|
90
|
+
* 签署人配置信息
|
|
91
|
+
*/
|
|
92
|
+
export interface CommonApproverOption {
|
|
93
|
+
/**
|
|
94
|
+
* 是否允许修改签署人信息
|
|
95
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
96
|
+
*/
|
|
97
|
+
CanEditApprover?: boolean;
|
|
98
|
+
}
|
|
89
99
|
/**
|
|
90
100
|
* ChannelCreateFlowSignReview请求参数结构体
|
|
91
101
|
*/
|
|
@@ -225,13 +235,17 @@ export interface ChannelCreateFlowSignUrlResponse {
|
|
|
225
235
|
RequestId?: string;
|
|
226
236
|
}
|
|
227
237
|
/**
|
|
228
|
-
*
|
|
238
|
+
* ChannelCreatePrepareFlow返回参数结构体
|
|
229
239
|
*/
|
|
230
|
-
export interface
|
|
240
|
+
export interface ChannelCreatePrepareFlowResponse {
|
|
231
241
|
/**
|
|
232
|
-
*
|
|
242
|
+
* 预发起的合同链接
|
|
233
243
|
*/
|
|
234
|
-
|
|
244
|
+
PrepareFlowUrl?: string;
|
|
245
|
+
/**
|
|
246
|
+
* 合同发起后预览链接
|
|
247
|
+
*/
|
|
248
|
+
PreviewFlowUrl?: string;
|
|
235
249
|
/**
|
|
236
250
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
237
251
|
*/
|
|
@@ -325,6 +339,61 @@ export interface FlowFileInfo {
|
|
|
325
339
|
*/
|
|
326
340
|
NeedSignReview?: boolean;
|
|
327
341
|
}
|
|
342
|
+
/**
|
|
343
|
+
* 创建合同配置信息
|
|
344
|
+
*/
|
|
345
|
+
export interface CreateFlowOption {
|
|
346
|
+
/**
|
|
347
|
+
* 是否允许修改合同信息
|
|
348
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
349
|
+
*/
|
|
350
|
+
CanEditFlow?: boolean;
|
|
351
|
+
}
|
|
352
|
+
/**
|
|
353
|
+
* 基础流程信息
|
|
354
|
+
*/
|
|
355
|
+
export interface BaseFlowInfo {
|
|
356
|
+
/**
|
|
357
|
+
* 合同流程名称
|
|
358
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
359
|
+
*/
|
|
360
|
+
FlowName: string;
|
|
361
|
+
/**
|
|
362
|
+
* 合同流程类型
|
|
363
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
364
|
+
*/
|
|
365
|
+
FlowType: string;
|
|
366
|
+
/**
|
|
367
|
+
* 合同流程描述信息
|
|
368
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
369
|
+
*/
|
|
370
|
+
FlowDescription: string;
|
|
371
|
+
/**
|
|
372
|
+
* 合同流程截止时间,unix时间戳
|
|
373
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
374
|
+
*/
|
|
375
|
+
Deadline: number;
|
|
376
|
+
/**
|
|
377
|
+
* 是否顺序签署(true:无序签,false:顺序签)
|
|
378
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
379
|
+
*/
|
|
380
|
+
Unordered?: boolean;
|
|
381
|
+
/**
|
|
382
|
+
* 打开智能添加填写区(默认开启,打开:"OPEN" 关闭:"CLOSE")
|
|
383
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
384
|
+
*/
|
|
385
|
+
IntelligentStatus?: string;
|
|
386
|
+
/**
|
|
387
|
+
* 填写控件内容
|
|
388
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
389
|
+
*/
|
|
390
|
+
FormFields?: Array<FormField>;
|
|
391
|
+
/**
|
|
392
|
+
* 本企业(发起方企业)是否需要签署审批,true:开启本企业签署审批
|
|
393
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
394
|
+
*/
|
|
395
|
+
NeedSignReview?: boolean;
|
|
396
|
+
}
|
|
328
397
|
/**
|
|
329
398
|
* CreateConsoleLoginUrl返回参数结构体
|
|
330
399
|
*/
|
|
@@ -382,23 +451,47 @@ export interface SyncProxyOrganizationRequest {
|
|
|
382
451
|
Operator?: UserInfo;
|
|
383
452
|
}
|
|
384
453
|
/**
|
|
385
|
-
*
|
|
454
|
+
* ChannelCreatePrepareFlow请求参数结构体
|
|
386
455
|
*/
|
|
387
|
-
export interface
|
|
456
|
+
export interface ChannelCreatePrepareFlowRequest {
|
|
388
457
|
/**
|
|
389
|
-
*
|
|
458
|
+
* 资源id,与ResourceType对应
|
|
390
459
|
*/
|
|
391
|
-
|
|
460
|
+
ResourceId: string;
|
|
392
461
|
/**
|
|
393
|
-
*
|
|
462
|
+
* 资源类型,1:模版,目前仅支持模版,与ResourceId对应
|
|
394
463
|
*/
|
|
395
|
-
|
|
464
|
+
ResourceType: number;
|
|
396
465
|
/**
|
|
397
|
-
*
|
|
466
|
+
* 合同流程基础信息
|
|
398
467
|
*/
|
|
399
|
-
|
|
468
|
+
FlowInfo: BaseFlowInfo;
|
|
400
469
|
/**
|
|
401
|
-
*
|
|
470
|
+
* 合同签署人信息
|
|
471
|
+
*/
|
|
472
|
+
FlowApproverList: Array<CommonFlowApprover>;
|
|
473
|
+
/**
|
|
474
|
+
* 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填
|
|
475
|
+
*/
|
|
476
|
+
Agent?: Agent;
|
|
477
|
+
/**
|
|
478
|
+
* 合同流程配置信息
|
|
479
|
+
*/
|
|
480
|
+
FlowOption?: CreateFlowOption;
|
|
481
|
+
/**
|
|
482
|
+
* 该参数不可用,请通过获取 web 可嵌入接口获取合同流程预览 URL
|
|
483
|
+
*/
|
|
484
|
+
FlowId?: string;
|
|
485
|
+
/**
|
|
486
|
+
* 该参数不可用,请通过获取 web 可嵌入接口获取合同流程预览 URL
|
|
487
|
+
*/
|
|
488
|
+
NeedPreview?: boolean;
|
|
489
|
+
/**
|
|
490
|
+
* 企业机构信息,不用传
|
|
491
|
+
*/
|
|
492
|
+
Organization?: OrganizationInfo;
|
|
493
|
+
/**
|
|
494
|
+
* 操作人(用户)信息,不用传
|
|
402
495
|
*/
|
|
403
496
|
Operator?: UserInfo;
|
|
404
497
|
}
|
|
@@ -1161,6 +1254,81 @@ export interface OrganizationInfo {
|
|
|
1161
1254
|
*/
|
|
1162
1255
|
Channel?: string;
|
|
1163
1256
|
}
|
|
1257
|
+
/**
|
|
1258
|
+
* 通用签署人信息
|
|
1259
|
+
*/
|
|
1260
|
+
export interface CommonFlowApprover {
|
|
1261
|
+
/**
|
|
1262
|
+
* 指定当前签署人为第三方应用集成子客,默认false:当前签署人为第三方应用集成子客,true:当前签署人为saas企业用户
|
|
1263
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1264
|
+
*/
|
|
1265
|
+
NotChannelOrganization: boolean;
|
|
1266
|
+
/**
|
|
1267
|
+
* 签署人类型,目前支持:0-企业签署人,1-个人签署人,3-企业静默签署人
|
|
1268
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1269
|
+
*/
|
|
1270
|
+
ApproverType?: number;
|
|
1271
|
+
/**
|
|
1272
|
+
* 企业id
|
|
1273
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1274
|
+
*/
|
|
1275
|
+
OrganizationId?: string;
|
|
1276
|
+
/**
|
|
1277
|
+
* 企业OpenId,第三方应用集成非静默签子客企业签署人发起合同毕传
|
|
1278
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1279
|
+
*/
|
|
1280
|
+
OrganizationOpenId?: string;
|
|
1281
|
+
/**
|
|
1282
|
+
* 企业名称,第三方应用集成非静默签子客企业签署人必传,saas企业签署人必传
|
|
1283
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1284
|
+
*/
|
|
1285
|
+
OrganizationName?: string;
|
|
1286
|
+
/**
|
|
1287
|
+
* 用户id
|
|
1288
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1289
|
+
*/
|
|
1290
|
+
UserId?: string;
|
|
1291
|
+
/**
|
|
1292
|
+
* 用户openId,第三方应用集成非静默签子客企业签署人必传
|
|
1293
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1294
|
+
*/
|
|
1295
|
+
OpenId?: string;
|
|
1296
|
+
/**
|
|
1297
|
+
* 签署人名称,saas企业签署人,个人签署人必传
|
|
1298
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1299
|
+
*/
|
|
1300
|
+
ApproverName?: string;
|
|
1301
|
+
/**
|
|
1302
|
+
* 签署人手机号,saas企业签署人,个人签署人必传
|
|
1303
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1304
|
+
*/
|
|
1305
|
+
ApproverMobile?: string;
|
|
1306
|
+
/**
|
|
1307
|
+
* 签署人Id,使用模版发起是,对应模版配置中的签署人RecipientId
|
|
1308
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1309
|
+
*/
|
|
1310
|
+
RecipientId?: string;
|
|
1311
|
+
/**
|
|
1312
|
+
* 签署前置条件:阅读时长限制,不传默认10s,最大300s,最小3s
|
|
1313
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1314
|
+
*/
|
|
1315
|
+
PreReadTime?: number;
|
|
1316
|
+
/**
|
|
1317
|
+
* 签署前置条件:阅读全文限制
|
|
1318
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1319
|
+
*/
|
|
1320
|
+
IsFullText?: boolean;
|
|
1321
|
+
/**
|
|
1322
|
+
* 通知类型:SMS(短信) NONE(不做通知), 不传 默认SMS
|
|
1323
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1324
|
+
*/
|
|
1325
|
+
NotifyType?: string;
|
|
1326
|
+
/**
|
|
1327
|
+
* 签署人配置
|
|
1328
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1329
|
+
*/
|
|
1330
|
+
ApproverOption?: CommonApproverOption;
|
|
1331
|
+
}
|
|
1164
1332
|
/**
|
|
1165
1333
|
* 合同文件验签单个结果结构体
|
|
1166
1334
|
*/
|
|
@@ -2341,6 +2509,19 @@ export interface ChannelDescribeOrganizationSealsResponse {
|
|
|
2341
2509
|
*/
|
|
2342
2510
|
RequestId?: string;
|
|
2343
2511
|
}
|
|
2512
|
+
/**
|
|
2513
|
+
* CreateSealByImage返回参数结构体
|
|
2514
|
+
*/
|
|
2515
|
+
export interface CreateSealByImageResponse {
|
|
2516
|
+
/**
|
|
2517
|
+
* 印章id
|
|
2518
|
+
*/
|
|
2519
|
+
SealId?: string;
|
|
2520
|
+
/**
|
|
2521
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2522
|
+
*/
|
|
2523
|
+
RequestId?: string;
|
|
2524
|
+
}
|
|
2344
2525
|
/**
|
|
2345
2526
|
* ChannelCancelMultiFlowSignQRCode返回参数结构体
|
|
2346
2527
|
*/
|
|
@@ -3236,6 +3417,27 @@ export interface DescribeChannelFlowEvidenceReportResponse {
|
|
|
3236
3417
|
*/
|
|
3237
3418
|
RequestId?: string;
|
|
3238
3419
|
}
|
|
3420
|
+
/**
|
|
3421
|
+
* CreateSealByImage请求参数结构体
|
|
3422
|
+
*/
|
|
3423
|
+
export interface CreateSealByImageRequest {
|
|
3424
|
+
/**
|
|
3425
|
+
* 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
|
|
3426
|
+
*/
|
|
3427
|
+
Agent: Agent;
|
|
3428
|
+
/**
|
|
3429
|
+
* 印章名称,最大长度不超过50字符
|
|
3430
|
+
*/
|
|
3431
|
+
SealName: string;
|
|
3432
|
+
/**
|
|
3433
|
+
* 印章图片base64,大小不超过10M(原始图片不超过7.6M)
|
|
3434
|
+
*/
|
|
3435
|
+
SealImage: string;
|
|
3436
|
+
/**
|
|
3437
|
+
* 操作者的信息
|
|
3438
|
+
*/
|
|
3439
|
+
Operator?: UserInfo;
|
|
3440
|
+
}
|
|
3239
3441
|
/**
|
|
3240
3442
|
* ChannelUpdateSealStatus返回参数结构体
|
|
3241
3443
|
*/
|