tencentcloud-sdk-nodejs 4.0.528 → 4.0.529
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 +108 -0
- package/SERVICE_CHANGELOG.md +137 -45
- package/package.json +1 -1
- package/products.md +27 -26
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cdb/v20170320/cdb_client.ts +1 -1
- package/src/services/cdb/v20170320/cdb_models.ts +2 -2
- package/src/services/es/v20180416/es_models.ts +5 -0
- package/src/services/ess/v20201111/ess_client.ts +25 -8
- package/src/services/ess/v20201111/ess_models.ts +58 -8
- package/src/services/essbasic/v20210526/essbasic_client.ts +41 -24
- package/src/services/essbasic/v20210526/essbasic_models.ts +209 -153
- package/src/services/goosefs/index.ts +5 -0
- package/src/services/goosefs/v20220519/goosefs_client.ts +40 -0
- package/src/services/goosefs/v20220519/goosefs_models.ts +61 -0
- package/src/services/goosefs/v20220519/index.ts +6 -0
- package/src/services/index.ts +1 -0
- package/src/services/lcic/v20220817/lcic_models.ts +4 -3
- package/src/services/vpc/v20170312/vpc_client.ts +3 -2
- package/src/services/vpc/v20170312/vpc_models.ts +35 -2
- package/src/services/waf/v20180125/waf_models.ts +10 -10
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cdb/v20170320/cdb_client.d.ts +1 -1
- package/tencentcloud/services/cdb/v20170320/cdb_client.js +1 -1
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +2 -2
- package/tencentcloud/services/es/v20180416/es_models.d.ts +4 -0
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +11 -3
- package/tencentcloud/services/ess/v20201111/ess_client.js +13 -3
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +51 -8
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +16 -8
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +19 -9
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +180 -131
- package/tencentcloud/services/goosefs/index.d.ts +6 -0
- package/tencentcloud/services/goosefs/index.js +7 -0
- package/tencentcloud/services/goosefs/v20220519/goosefs_client.d.ts +14 -0
- package/tencentcloud/services/goosefs/v20220519/goosefs_client.js +37 -0
- package/tencentcloud/services/goosefs/v20220519/goosefs_models.d.ts +38 -0
- package/tencentcloud/services/goosefs/v20220519/goosefs_models.js +18 -0
- package/tencentcloud/services/goosefs/v20220519/index.d.ts +6 -0
- package/tencentcloud/services/goosefs/v20220519/index.js +9 -0
- package/tencentcloud/services/index.d.ts +1 -0
- package/tencentcloud/services/index.js +2 -0
- package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +3 -2
- package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +2 -2
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +32 -2
- package/tencentcloud/services/waf/v20180125/waf_models.d.ts +10 -10
- package/test/ess.v20201111.test.js +12 -2
- package/test/essbasic.v20210526.test.js +14 -4
- package/test/goosefs.v20220519.test.js +31 -0
|
@@ -24,7 +24,7 @@ import {
|
|
|
24
24
|
CreateSchemeUrlRequest,
|
|
25
25
|
CreateFlowApproversResponse,
|
|
26
26
|
UploadFilesRequest,
|
|
27
|
-
|
|
27
|
+
RemindFlowRecords,
|
|
28
28
|
FlowCreateApprover,
|
|
29
29
|
DescribeThirdPartyAuthCodeResponse,
|
|
30
30
|
CreateIntegrationEmployeesRequest,
|
|
@@ -33,6 +33,7 @@ import {
|
|
|
33
33
|
StaffRole,
|
|
34
34
|
FlowApproverUrlInfo,
|
|
35
35
|
CreateConvertTaskApiRequest,
|
|
36
|
+
CreateFlowRemindsResponse,
|
|
36
37
|
Agent,
|
|
37
38
|
FlowApproverDetail,
|
|
38
39
|
DescribeFlowTemplatesRequest,
|
|
@@ -66,6 +67,7 @@ import {
|
|
|
66
67
|
DescribeFileUrlsResponse,
|
|
67
68
|
AuthorizedUser,
|
|
68
69
|
CreateDocumentRequest,
|
|
70
|
+
CreateMultiFlowSignQRCodeResponse,
|
|
69
71
|
DescribeOrganizationSealsResponse,
|
|
70
72
|
DeleteIntegrationEmployeesRequest,
|
|
71
73
|
SignQrCode,
|
|
@@ -97,6 +99,7 @@ import {
|
|
|
97
99
|
CancelFlowRequest,
|
|
98
100
|
UploadFile,
|
|
99
101
|
Component,
|
|
102
|
+
CreateFlowRemindsRequest,
|
|
100
103
|
DescribeFlowBriefsRequest,
|
|
101
104
|
SignUrl,
|
|
102
105
|
VerifyPdfResponse,
|
|
@@ -339,6 +342,16 @@ export class Client extends AbstractClient {
|
|
|
339
342
|
return this.request("DescribeIntegrationEmployees", req, cb)
|
|
340
343
|
}
|
|
341
344
|
|
|
345
|
+
/**
|
|
346
|
+
* 创建签署链接,需要联系运营人员开白后才可使用
|
|
347
|
+
*/
|
|
348
|
+
async CreateFlowSignUrl(
|
|
349
|
+
req: CreateFlowSignUrlRequest,
|
|
350
|
+
cb?: (error: string, rep: CreateFlowSignUrlResponse) => void
|
|
351
|
+
): Promise<CreateFlowSignUrlResponse> {
|
|
352
|
+
return this.request("CreateFlowSignUrl", req, cb)
|
|
353
|
+
}
|
|
354
|
+
|
|
342
355
|
/**
|
|
343
356
|
* 创建文件转换任务
|
|
344
357
|
*/
|
|
@@ -374,13 +387,17 @@ export class Client extends AbstractClient {
|
|
|
374
387
|
}
|
|
375
388
|
|
|
376
389
|
/**
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
390
|
+
* 指定需要批量撤销的签署流程Id,批量催办合同
|
|
391
|
+
客户指定需要撤销的签署流程Id,最多100个;接口失败后返回错误信息
|
|
392
|
+
注意:
|
|
393
|
+
能撤回合同的只能是合同的发起人或者签署人
|
|
394
|
+
该接口需要开白后使用
|
|
395
|
+
*/
|
|
396
|
+
async CreateFlowReminds(
|
|
397
|
+
req: CreateFlowRemindsRequest,
|
|
398
|
+
cb?: (error: string, rep: CreateFlowRemindsResponse) => void
|
|
399
|
+
): Promise<CreateFlowRemindsResponse> {
|
|
400
|
+
return this.request("CreateFlowReminds", req, cb)
|
|
384
401
|
}
|
|
385
402
|
|
|
386
403
|
/**
|
|
@@ -165,23 +165,23 @@ true--是,处理置白
|
|
|
165
165
|
}
|
|
166
166
|
|
|
167
167
|
/**
|
|
168
|
-
*
|
|
168
|
+
* 催办接口返回详细信息
|
|
169
169
|
*/
|
|
170
|
-
export interface
|
|
170
|
+
export interface RemindFlowRecords {
|
|
171
171
|
/**
|
|
172
|
-
*
|
|
172
|
+
* 是否能够催办
|
|
173
173
|
*/
|
|
174
|
-
|
|
174
|
+
CanRemind: boolean
|
|
175
175
|
|
|
176
176
|
/**
|
|
177
|
-
*
|
|
177
|
+
* 合同id
|
|
178
178
|
*/
|
|
179
|
-
|
|
179
|
+
FlowId: string
|
|
180
180
|
|
|
181
181
|
/**
|
|
182
|
-
*
|
|
182
|
+
* 催办详情
|
|
183
183
|
*/
|
|
184
|
-
|
|
184
|
+
RemindMessage: string
|
|
185
185
|
}
|
|
186
186
|
|
|
187
187
|
/**
|
|
@@ -421,6 +421,21 @@ export interface CreateConvertTaskApiRequest {
|
|
|
421
421
|
Organization?: OrganizationInfo
|
|
422
422
|
}
|
|
423
423
|
|
|
424
|
+
/**
|
|
425
|
+
* CreateFlowReminds返回参数结构体
|
|
426
|
+
*/
|
|
427
|
+
export interface CreateFlowRemindsResponse {
|
|
428
|
+
/**
|
|
429
|
+
* 签署连接过期时间字符串:年月日-时分秒
|
|
430
|
+
*/
|
|
431
|
+
RemindFlowRecords: Array<RemindFlowRecords>
|
|
432
|
+
|
|
433
|
+
/**
|
|
434
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
435
|
+
*/
|
|
436
|
+
RequestId?: string
|
|
437
|
+
}
|
|
438
|
+
|
|
424
439
|
/**
|
|
425
440
|
* 应用相关信息
|
|
426
441
|
*/
|
|
@@ -1734,6 +1749,26 @@ export interface CreateDocumentRequest {
|
|
|
1734
1749
|
ClientToken?: string
|
|
1735
1750
|
}
|
|
1736
1751
|
|
|
1752
|
+
/**
|
|
1753
|
+
* CreateMultiFlowSignQRCode返回参数结构体
|
|
1754
|
+
*/
|
|
1755
|
+
export interface CreateMultiFlowSignQRCodeResponse {
|
|
1756
|
+
/**
|
|
1757
|
+
* 签署二维码对象
|
|
1758
|
+
*/
|
|
1759
|
+
QrCode: SignQrCode
|
|
1760
|
+
|
|
1761
|
+
/**
|
|
1762
|
+
* 签署链接对象
|
|
1763
|
+
*/
|
|
1764
|
+
SignUrls: SignUrl
|
|
1765
|
+
|
|
1766
|
+
/**
|
|
1767
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1768
|
+
*/
|
|
1769
|
+
RequestId?: string
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1737
1772
|
/**
|
|
1738
1773
|
* DescribeOrganizationSeals返回参数结构体
|
|
1739
1774
|
*/
|
|
@@ -2751,6 +2786,21 @@ KEYWORD 关键字,使用ComponentId指定关键字
|
|
|
2751
2786
|
KeywordIndexes?: Array<number>
|
|
2752
2787
|
}
|
|
2753
2788
|
|
|
2789
|
+
/**
|
|
2790
|
+
* CreateFlowReminds请求参数结构体
|
|
2791
|
+
*/
|
|
2792
|
+
export interface CreateFlowRemindsRequest {
|
|
2793
|
+
/**
|
|
2794
|
+
* 调用方用户信息,userId 必填
|
|
2795
|
+
*/
|
|
2796
|
+
Operator: UserInfo
|
|
2797
|
+
|
|
2798
|
+
/**
|
|
2799
|
+
* 需要执行撤回的签署流程id数组,最多100个
|
|
2800
|
+
*/
|
|
2801
|
+
FlowIds: Array<string>
|
|
2802
|
+
}
|
|
2803
|
+
|
|
2754
2804
|
/**
|
|
2755
2805
|
* DescribeFlowBriefs请求参数结构体
|
|
2756
2806
|
*/
|
|
@@ -20,7 +20,7 @@ import { ClientConfig } from "../../../common/interface"
|
|
|
20
20
|
import {
|
|
21
21
|
SyncProxyOrganizationResponse,
|
|
22
22
|
ChannelCreateConvertTaskApiResponse,
|
|
23
|
-
|
|
23
|
+
ChannelCreateFlowRemindsResponse,
|
|
24
24
|
ChannelBatchCancelFlowsResponse,
|
|
25
25
|
Department,
|
|
26
26
|
ChannelCreateFlowSignReviewRequest,
|
|
@@ -28,13 +28,15 @@ import {
|
|
|
28
28
|
DescribeFlowDetailInfoRequest,
|
|
29
29
|
ModifyExtendedServiceRequest,
|
|
30
30
|
DescribeResourceUrlsByFlowsRequest,
|
|
31
|
+
RemindFlowRecords,
|
|
32
|
+
ChannelCreateFlowSignUrlResponse,
|
|
31
33
|
CreateSealByImageResponse,
|
|
32
34
|
OperateChannelTemplateResponse,
|
|
33
35
|
FlowFileInfo,
|
|
34
36
|
CreateConsoleLoginUrlResponse,
|
|
35
37
|
SyncProxyOrganizationRequest,
|
|
36
38
|
CreateSealByImageRequest,
|
|
37
|
-
|
|
39
|
+
ChannelCreateFlowRemindsRequest,
|
|
38
40
|
ChannelCancelFlowResponse,
|
|
39
41
|
DownloadFlowInfo,
|
|
40
42
|
FlowApproverUrlInfo,
|
|
@@ -50,19 +52,19 @@ import {
|
|
|
50
52
|
PrepareFlowsResponse,
|
|
51
53
|
TemplateInfo,
|
|
52
54
|
GetDownloadFlowUrlResponse,
|
|
55
|
+
Recipient,
|
|
53
56
|
DescribeTemplatesResponse,
|
|
54
57
|
StaffRole,
|
|
55
58
|
ChannelVerifyPdfRequest,
|
|
56
59
|
CreateChannelFlowEvidenceReportRequest,
|
|
57
60
|
ChannelVerifyPdfResponse,
|
|
58
|
-
DescribeChannelFlowEvidenceReportRequest,
|
|
59
61
|
CreateConsoleLoginUrlRequest,
|
|
60
62
|
OrganizationInfo,
|
|
61
63
|
PdfVerifyResult,
|
|
62
64
|
ChannelCancelMultiFlowSignQRCodeRequest,
|
|
63
65
|
UploadFilesRequest,
|
|
64
66
|
ChannelDescribeOrganizationSealsRequest,
|
|
65
|
-
|
|
67
|
+
DescribeUsageRequest,
|
|
66
68
|
DescribeExtendedServiceAuthInfoRequest,
|
|
67
69
|
FormField,
|
|
68
70
|
FlowInfo,
|
|
@@ -81,7 +83,7 @@ import {
|
|
|
81
83
|
ChannelGetTaskResultApiRequest,
|
|
82
84
|
FlowDetailInfo,
|
|
83
85
|
CreateFlowsByTemplatesResponse,
|
|
84
|
-
|
|
86
|
+
PrepareFlowsRequest,
|
|
85
87
|
SyncProxyOrganizationOperatorsResponse,
|
|
86
88
|
SignUrlInfo,
|
|
87
89
|
FlowResourceUrlInfo,
|
|
@@ -89,12 +91,11 @@ import {
|
|
|
89
91
|
ExtentServiceAuthInfo,
|
|
90
92
|
Filter,
|
|
91
93
|
ReleasedApprover,
|
|
92
|
-
DescribeUsageRequest,
|
|
93
94
|
CreateSignUrlsResponse,
|
|
94
95
|
UploadFilesResponse,
|
|
95
96
|
ChannelCreateBatchCancelFlowUrlRequest,
|
|
96
97
|
ApproverRestriction,
|
|
97
|
-
|
|
98
|
+
DescribeChannelFlowEvidenceReportRequest,
|
|
98
99
|
ChannelCreateFlowByFilesResponse,
|
|
99
100
|
ChannelCreateFlowSignReviewResponse,
|
|
100
101
|
ChannelDescribeOrganizationSealsResponse,
|
|
@@ -104,6 +105,7 @@ import {
|
|
|
104
105
|
ChannelCreateMultiFlowSignQRCodeResponse,
|
|
105
106
|
ApproverOption,
|
|
106
107
|
ChannelCreateBoundFlowsResponse,
|
|
108
|
+
ProxyOrganizationOperator,
|
|
107
109
|
ModifyExtendedServiceResponse,
|
|
108
110
|
ChannelGetTaskResultApiResponse,
|
|
109
111
|
DescribeExtendedServiceAuthInfoResponse,
|
|
@@ -123,6 +125,7 @@ import {
|
|
|
123
125
|
ChannelDescribeEmployeesResponse,
|
|
124
126
|
ChannelCreateReleaseFlowResponse,
|
|
125
127
|
DescribeChannelFlowEvidenceReportResponse,
|
|
128
|
+
ChannelCreateFlowSignUrlRequest,
|
|
126
129
|
CcInfo,
|
|
127
130
|
} from "./essbasic_models"
|
|
128
131
|
|
|
@@ -190,7 +193,7 @@ export class Client extends AbstractClient {
|
|
|
190
193
|
}
|
|
191
194
|
|
|
192
195
|
/**
|
|
193
|
-
*
|
|
196
|
+
* 查询企业扩展服务授权信息,企业经办人需要是企业超管或者法人
|
|
194
197
|
*/
|
|
195
198
|
async DescribeExtendedServiceAuthInfo(
|
|
196
199
|
req: DescribeExtendedServiceAuthInfoRequest,
|
|
@@ -200,7 +203,7 @@ export class Client extends AbstractClient {
|
|
|
200
203
|
}
|
|
201
204
|
|
|
202
205
|
/**
|
|
203
|
-
* 修改(操作)企业扩展服务
|
|
206
|
+
* 修改(操作)企业扩展服务 ,企业经办人需要是企业超管或者法人
|
|
204
207
|
*/
|
|
205
208
|
async ModifyExtendedService(
|
|
206
209
|
req: ModifyExtendedServiceRequest,
|
|
@@ -255,6 +258,17 @@ export class Client extends AbstractClient {
|
|
|
255
258
|
return this.request("CreateFlowsByTemplates", req, cb)
|
|
256
259
|
}
|
|
257
260
|
|
|
261
|
+
/**
|
|
262
|
+
* 查询渠道子客企业电子印章,需要操作者具有管理印章权限
|
|
263
|
+
客户指定需要获取的印章数量和偏移量,数量最多100,超过100按100处理;入参InfoType控制印章是否携带授权人信息,为1则携带,为0则返回的授权人信息为空数组。接口调用成功返回印章的信息列表还有企业印章的总数。
|
|
264
|
+
*/
|
|
265
|
+
async ChannelDescribeOrganizationSeals(
|
|
266
|
+
req: ChannelDescribeOrganizationSealsRequest,
|
|
267
|
+
cb?: (error: string, rep: ChannelDescribeOrganizationSealsResponse) => void
|
|
268
|
+
): Promise<ChannelDescribeOrganizationSealsResponse> {
|
|
269
|
+
return this.request("ChannelDescribeOrganizationSeals", req, cb)
|
|
270
|
+
}
|
|
271
|
+
|
|
258
272
|
/**
|
|
259
273
|
* 创建跳转小程序查看或签署的链接。
|
|
260
274
|
|
|
@@ -363,14 +377,13 @@ export class Client extends AbstractClient {
|
|
|
363
377
|
}
|
|
364
378
|
|
|
365
379
|
/**
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
return this.request("ChannelDescribeOrganizationSeals", req, cb)
|
|
380
|
+
* 渠道版创建签署链接,需要联系运营人员开白后才可使用
|
|
381
|
+
*/
|
|
382
|
+
async ChannelCreateFlowSignUrl(
|
|
383
|
+
req: ChannelCreateFlowSignUrlRequest,
|
|
384
|
+
cb?: (error: string, rep: ChannelCreateFlowSignUrlResponse) => void
|
|
385
|
+
): Promise<ChannelCreateFlowSignUrlResponse> {
|
|
386
|
+
return this.request("ChannelCreateFlowSignUrl", req, cb)
|
|
374
387
|
}
|
|
375
388
|
|
|
376
389
|
/**
|
|
@@ -455,13 +468,17 @@ httpProfile.setEndpoint("file.test.ess.tencent.cn");
|
|
|
455
468
|
}
|
|
456
469
|
|
|
457
470
|
/**
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
471
|
+
* 指定需要批量撤销的签署流程Id,批量催办合同
|
|
472
|
+
客户指定需要撤销的签署流程Id,最多100个,超过100不处理;接口失败后返回错误信息
|
|
473
|
+
注意:
|
|
474
|
+
能撤回合同的只能是合同的发起人或者签署人
|
|
475
|
+
该接口需要开白后使用
|
|
476
|
+
*/
|
|
477
|
+
async ChannelCreateFlowReminds(
|
|
478
|
+
req: ChannelCreateFlowRemindsRequest,
|
|
479
|
+
cb?: (error: string, rep: ChannelCreateFlowRemindsResponse) => void
|
|
480
|
+
): Promise<ChannelCreateFlowRemindsResponse> {
|
|
481
|
+
return this.request("ChannelCreateFlowReminds", req, cb)
|
|
465
482
|
}
|
|
466
483
|
|
|
467
484
|
/**
|