tencentcloud-sdk-nodejs-ess 4.0.1053 → 4.1.1
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/README.md +18 -4
- package/es/index.js +1 -0
- package/es/services/ess/index.js +4 -0
- package/es/services/ess/v20201111/ess_client.js +312 -0
- package/es/services/ess/v20201111/ess_models.js +0 -0
- package/es/services/ess/v20201111/index.js +6 -0
- package/es/services/index.js +1 -0
- package/package.json +24 -8
- package/tencentcloud/services/ess/v20201111/ess_client.js +2 -1
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +23 -2
- package/tencentcloud/services/ess/v20201111/index.js +2 -1
- package/index.d.ts +0 -2
- package/index.js +0 -6
- package/prettier.config.js +0 -38
- package/src/index.ts +0 -1
- package/src/services/ess/index.ts +0 -5
- package/src/services/ess/v20201111/ess_client.ts +0 -2271
- package/src/services/ess/v20201111/ess_models.ts +0 -10451
- package/src/services/ess/v20201111/index.ts +0 -6
- package/src/services/index.ts +0 -1
- package/tsconfig.json +0 -33
- package/typings/index.d.ts +0 -2
package/README.md
CHANGED
|
@@ -52,10 +52,24 @@ npm install tencentcloud-sdk-nodejs --save
|
|
|
52
52
|
|
|
53
53
|
## 通过源码包安装
|
|
54
54
|
|
|
55
|
-
1.
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
55
|
+
1. clone 代码到本地:
|
|
56
|
+
```
|
|
57
|
+
git clone https://github.com/tencentcloud/tencentcloud-sdk-nodejs
|
|
58
|
+
# 或者
|
|
59
|
+
git clone https://gitee.com/tencentcloud/tencentcloud-sdk-nodejs
|
|
60
|
+
```
|
|
61
|
+
2. 在项目根目录执行以下命令完成构建:
|
|
62
|
+
```
|
|
63
|
+
npm install && npm run build
|
|
64
|
+
```
|
|
65
|
+
3. 打包 NPM 压缩文件,例如 `tencentcloud-sdk-nodejs-4.0.0.tgz`
|
|
66
|
+
```
|
|
67
|
+
npm pack
|
|
68
|
+
```
|
|
69
|
+
4. 安装包到你的项目里:
|
|
70
|
+
```
|
|
71
|
+
npm install /path/to/tencentcloud-sdk-nodejs/tencentcloud-sdk-nodejs-4.0.0.tgz
|
|
72
|
+
```
|
|
59
73
|
|
|
60
74
|
# 示例
|
|
61
75
|
|
package/es/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./services";
|
|
@@ -0,0 +1,312 @@
|
|
|
1
|
+
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
|
2
|
+
export class Client extends TencentCloudCommon.AbstractClient {
|
|
3
|
+
constructor(clientConfig) {
|
|
4
|
+
super("ess.tencentcloudapi.com", "2020-11-11", clientConfig);
|
|
5
|
+
}
|
|
6
|
+
async StartFlow(req, cb) {
|
|
7
|
+
return this.request("StartFlow", req, cb);
|
|
8
|
+
}
|
|
9
|
+
async DescribeFlowTemplates(req, cb) {
|
|
10
|
+
return this.request("DescribeFlowTemplates", req, cb);
|
|
11
|
+
}
|
|
12
|
+
async CreateUserAutoSignEnableUrl(req, cb) {
|
|
13
|
+
return this.request("CreateUserAutoSignEnableUrl", req, cb);
|
|
14
|
+
}
|
|
15
|
+
async CreateFlowGroupSignReview(req, cb) {
|
|
16
|
+
return this.request("CreateFlowGroupSignReview", req, cb);
|
|
17
|
+
}
|
|
18
|
+
async CreateUserVerifyUrl(req, cb) {
|
|
19
|
+
return this.request("CreateUserVerifyUrl", req, cb);
|
|
20
|
+
}
|
|
21
|
+
async CreateEmbedWebUrl(req, cb) {
|
|
22
|
+
return this.request("CreateEmbedWebUrl", req, cb);
|
|
23
|
+
}
|
|
24
|
+
async DescribeBatchOrganizationRegistrationUrls(req, cb) {
|
|
25
|
+
return this.request("DescribeBatchOrganizationRegistrationUrls", req, cb);
|
|
26
|
+
}
|
|
27
|
+
async CreatePreparedPersonalEsign(req, cb) {
|
|
28
|
+
return this.request("CreatePreparedPersonalEsign", req, cb);
|
|
29
|
+
}
|
|
30
|
+
async CreateFlowSignReview(req, cb) {
|
|
31
|
+
return this.request("CreateFlowSignReview", req, cb);
|
|
32
|
+
}
|
|
33
|
+
async CreateDocument(req, cb) {
|
|
34
|
+
return this.request("CreateDocument", req, cb);
|
|
35
|
+
}
|
|
36
|
+
async DescribeExtendedServiceAuthInfos(req, cb) {
|
|
37
|
+
return this.request("DescribeExtendedServiceAuthInfos", req, cb);
|
|
38
|
+
}
|
|
39
|
+
async DescribeUserAutoSignStatus(req, cb) {
|
|
40
|
+
return this.request("DescribeUserAutoSignStatus", req, cb);
|
|
41
|
+
}
|
|
42
|
+
async CreateFlowGroupByTemplates(req, cb) {
|
|
43
|
+
return this.request("CreateFlowGroupByTemplates", req, cb);
|
|
44
|
+
}
|
|
45
|
+
async VerifyDigitFile(req, cb) {
|
|
46
|
+
return this.request("VerifyDigitFile", req, cb);
|
|
47
|
+
}
|
|
48
|
+
async CreatePartnerAutoSignAuthUrl(req, cb) {
|
|
49
|
+
return this.request("CreatePartnerAutoSignAuthUrl", req, cb);
|
|
50
|
+
}
|
|
51
|
+
async CreateFlowByFiles(req, cb) {
|
|
52
|
+
return this.request("CreateFlowByFiles", req, cb);
|
|
53
|
+
}
|
|
54
|
+
async CreateFlowForwards(req, cb) {
|
|
55
|
+
return this.request("CreateFlowForwards", req, cb);
|
|
56
|
+
}
|
|
57
|
+
async DescribeIntegrationRoles(req, cb) {
|
|
58
|
+
return this.request("DescribeIntegrationRoles", req, cb);
|
|
59
|
+
}
|
|
60
|
+
async DescribeIntegrationEmployees(req, cb) {
|
|
61
|
+
return this.request("DescribeIntegrationEmployees", req, cb);
|
|
62
|
+
}
|
|
63
|
+
async CreatePersonAuthCertificateImage(req, cb) {
|
|
64
|
+
return this.request("CreatePersonAuthCertificateImage", req, cb);
|
|
65
|
+
}
|
|
66
|
+
async CreateIntegrationUserRoles(req, cb) {
|
|
67
|
+
return this.request("CreateIntegrationUserRoles", req, cb);
|
|
68
|
+
}
|
|
69
|
+
async CreateBatchSignUrl(req, cb) {
|
|
70
|
+
return this.request("CreateBatchSignUrl", req, cb);
|
|
71
|
+
}
|
|
72
|
+
async CreateFlowReminds(req, cb) {
|
|
73
|
+
return this.request("CreateFlowReminds", req, cb);
|
|
74
|
+
}
|
|
75
|
+
async DescribePersonCertificate(req, cb) {
|
|
76
|
+
return this.request("DescribePersonCertificate", req, cb);
|
|
77
|
+
}
|
|
78
|
+
async DisableUserAutoSign(req, cb) {
|
|
79
|
+
return this.request("DisableUserAutoSign", req, cb);
|
|
80
|
+
}
|
|
81
|
+
async DeleteIntegrationEmployees(req, cb) {
|
|
82
|
+
return this.request("DeleteIntegrationEmployees", req, cb);
|
|
83
|
+
}
|
|
84
|
+
async CreateUserAutoSignSealUrl(req, cb) {
|
|
85
|
+
return this.request("CreateUserAutoSignSealUrl", req, cb);
|
|
86
|
+
}
|
|
87
|
+
async DescribeOrganizationAuthStatus(req, cb) {
|
|
88
|
+
return this.request("DescribeOrganizationAuthStatus", req, cb);
|
|
89
|
+
}
|
|
90
|
+
async RenewAutoSignLicense(req, cb) {
|
|
91
|
+
return this.request("RenewAutoSignLicense", req, cb);
|
|
92
|
+
}
|
|
93
|
+
async VerifyPdf(req, cb) {
|
|
94
|
+
return this.request("VerifyPdf", req, cb);
|
|
95
|
+
}
|
|
96
|
+
async BindEmployeeUserIdWithClientOpenId(req, cb) {
|
|
97
|
+
return this.request("BindEmployeeUserIdWithClientOpenId", req, cb);
|
|
98
|
+
}
|
|
99
|
+
async CreateOrganizationAuthFile(req, cb) {
|
|
100
|
+
return this.request("CreateOrganizationAuthFile", req, cb);
|
|
101
|
+
}
|
|
102
|
+
async DeleteIntegrationRoleUsers(req, cb) {
|
|
103
|
+
return this.request("DeleteIntegrationRoleUsers", req, cb);
|
|
104
|
+
}
|
|
105
|
+
async CreateFlowGroupByFiles(req, cb) {
|
|
106
|
+
return this.request("CreateFlowGroupByFiles", req, cb);
|
|
107
|
+
}
|
|
108
|
+
async CreateIntegrationDepartment(req, cb) {
|
|
109
|
+
return this.request("CreateIntegrationDepartment", req, cb);
|
|
110
|
+
}
|
|
111
|
+
async CreateFlowEvidenceReport(req, cb) {
|
|
112
|
+
return this.request("CreateFlowEvidenceReport", req, cb);
|
|
113
|
+
}
|
|
114
|
+
async CreateFlow(req, cb) {
|
|
115
|
+
return this.request("CreateFlow", req, cb);
|
|
116
|
+
}
|
|
117
|
+
async CreateReleaseFlow(req, cb) {
|
|
118
|
+
return this.request("CreateReleaseFlow", req, cb);
|
|
119
|
+
}
|
|
120
|
+
async CreateLegalSealQrCode(req, cb) {
|
|
121
|
+
return this.request("CreateLegalSealQrCode", req, cb);
|
|
122
|
+
}
|
|
123
|
+
async CreateSeal(req, cb) {
|
|
124
|
+
return this.request("CreateSeal", req, cb);
|
|
125
|
+
}
|
|
126
|
+
async CreateMultiFlowSignQRCode(req, cb) {
|
|
127
|
+
return this.request("CreateMultiFlowSignQRCode", req, cb);
|
|
128
|
+
}
|
|
129
|
+
async DescribeExtendedServiceAuthDetail(req, cb) {
|
|
130
|
+
return this.request("DescribeExtendedServiceAuthDetail", req, cb);
|
|
131
|
+
}
|
|
132
|
+
async CancelMultiFlowSignQRCode(req, cb) {
|
|
133
|
+
return this.request("CancelMultiFlowSignQRCode", req, cb);
|
|
134
|
+
}
|
|
135
|
+
async DescribeFlowBriefs(req, cb) {
|
|
136
|
+
return this.request("DescribeFlowBriefs", req, cb);
|
|
137
|
+
}
|
|
138
|
+
async DescribeSignFaceVideo(req, cb) {
|
|
139
|
+
return this.request("DescribeSignFaceVideo", req, cb);
|
|
140
|
+
}
|
|
141
|
+
async CreateFlowSignUrl(req, cb) {
|
|
142
|
+
return this.request("CreateFlowSignUrl", req, cb);
|
|
143
|
+
}
|
|
144
|
+
async CreateBatchInitOrganizationUrl(req, cb) {
|
|
145
|
+
return this.request("CreateBatchInitOrganizationUrl", req, cb);
|
|
146
|
+
}
|
|
147
|
+
async CancelUserAutoSignEnableUrl(req, cb) {
|
|
148
|
+
return this.request("CancelUserAutoSignEnableUrl", req, cb);
|
|
149
|
+
}
|
|
150
|
+
async DescribeBillUsageDetail(req, cb) {
|
|
151
|
+
return this.request("DescribeBillUsageDetail", req, cb);
|
|
152
|
+
}
|
|
153
|
+
async DescribeIntegrationDepartments(req, cb) {
|
|
154
|
+
return this.request("DescribeIntegrationDepartments", req, cb);
|
|
155
|
+
}
|
|
156
|
+
async ModifyIntegrationDepartment(req, cb) {
|
|
157
|
+
return this.request("ModifyIntegrationDepartment", req, cb);
|
|
158
|
+
}
|
|
159
|
+
async DescribeOrganizationGroupOrganizations(req, cb) {
|
|
160
|
+
return this.request("DescribeOrganizationGroupOrganizations", req, cb);
|
|
161
|
+
}
|
|
162
|
+
async CreateUserMobileChangeUrl(req, cb) {
|
|
163
|
+
return this.request("CreateUserMobileChangeUrl", req, cb);
|
|
164
|
+
}
|
|
165
|
+
async DeleteSealPolicies(req, cb) {
|
|
166
|
+
return this.request("DeleteSealPolicies", req, cb);
|
|
167
|
+
}
|
|
168
|
+
async DescribeFileUrls(req, cb) {
|
|
169
|
+
return this.request("DescribeFileUrls", req, cb);
|
|
170
|
+
}
|
|
171
|
+
async CreateIntegrationRole(req, cb) {
|
|
172
|
+
return this.request("CreateIntegrationRole", req, cb);
|
|
173
|
+
}
|
|
174
|
+
async ModifyExtendedService(req, cb) {
|
|
175
|
+
return this.request("ModifyExtendedService", req, cb);
|
|
176
|
+
}
|
|
177
|
+
async CreateEmployeeChangeUrl(req, cb) {
|
|
178
|
+
return this.request("CreateEmployeeChangeUrl", req, cb);
|
|
179
|
+
}
|
|
180
|
+
async ModifyFlowDeadline(req, cb) {
|
|
181
|
+
return this.request("ModifyFlowDeadline", req, cb);
|
|
182
|
+
}
|
|
183
|
+
async CreateFlowBlockchainEvidenceUrl(req, cb) {
|
|
184
|
+
return this.request("CreateFlowBlockchainEvidenceUrl", req, cb);
|
|
185
|
+
}
|
|
186
|
+
async CreateBatchOrganizationRegistrationTasks(req, cb) {
|
|
187
|
+
return this.request("CreateBatchOrganizationRegistrationTasks", req, cb);
|
|
188
|
+
}
|
|
189
|
+
async DescribeUserVerifyStatus(req, cb) {
|
|
190
|
+
return this.request("DescribeUserVerifyStatus", req, cb);
|
|
191
|
+
}
|
|
192
|
+
async ModifyIntegrationRole(req, cb) {
|
|
193
|
+
return this.request("ModifyIntegrationRole", req, cb);
|
|
194
|
+
}
|
|
195
|
+
async CreateBatchOrganizationAuthorizationUrl(req, cb) {
|
|
196
|
+
return this.request("CreateBatchOrganizationAuthorizationUrl", req, cb);
|
|
197
|
+
}
|
|
198
|
+
async CreateEmployeeQualificationSealQrCode(req, cb) {
|
|
199
|
+
return this.request("CreateEmployeeQualificationSealQrCode", req, cb);
|
|
200
|
+
}
|
|
201
|
+
async CreateExtendedServiceAuthInfos(req, cb) {
|
|
202
|
+
return this.request("CreateExtendedServiceAuthInfos", req, cb);
|
|
203
|
+
}
|
|
204
|
+
async CreateOrganizationInfoChangeUrl(req, cb) {
|
|
205
|
+
return this.request("CreateOrganizationInfoChangeUrl", req, cb);
|
|
206
|
+
}
|
|
207
|
+
async CreateConvertTaskApi(req, cb) {
|
|
208
|
+
return this.request("CreateConvertTaskApi", req, cb);
|
|
209
|
+
}
|
|
210
|
+
async CreateOrganizationAuthUrl(req, cb) {
|
|
211
|
+
return this.request("CreateOrganizationAuthUrl", req, cb);
|
|
212
|
+
}
|
|
213
|
+
async UploadFiles(req, cb) {
|
|
214
|
+
return this.request("UploadFiles", req, cb);
|
|
215
|
+
}
|
|
216
|
+
async CreateIntegrationSubOrganizationActiveRecord(req, cb) {
|
|
217
|
+
return this.request("CreateIntegrationSubOrganizationActiveRecord", req, cb);
|
|
218
|
+
}
|
|
219
|
+
async DescribeFlowComponents(req, cb) {
|
|
220
|
+
return this.request("DescribeFlowComponents", req, cb);
|
|
221
|
+
}
|
|
222
|
+
async CreateWebThemeConfig(req, cb) {
|
|
223
|
+
return this.request("CreateWebThemeConfig", req, cb);
|
|
224
|
+
}
|
|
225
|
+
async CreateDynamicFlowApprover(req, cb) {
|
|
226
|
+
return this.request("CreateDynamicFlowApprover", req, cb);
|
|
227
|
+
}
|
|
228
|
+
async DescribeUserFlowType(req, cb) {
|
|
229
|
+
return this.request("DescribeUserFlowType", req, cb);
|
|
230
|
+
}
|
|
231
|
+
async CreateIntegrationEmployees(req, cb) {
|
|
232
|
+
return this.request("CreateIntegrationEmployees", req, cb);
|
|
233
|
+
}
|
|
234
|
+
async DeleteOrganizationAuthorizations(req, cb) {
|
|
235
|
+
return this.request("DeleteOrganizationAuthorizations", req, cb);
|
|
236
|
+
}
|
|
237
|
+
async CreateBatchQuickSignUrl(req, cb) {
|
|
238
|
+
return this.request("CreateBatchQuickSignUrl", req, cb);
|
|
239
|
+
}
|
|
240
|
+
async ModifyApplicationCallbackInfo(req, cb) {
|
|
241
|
+
return this.request("ModifyApplicationCallbackInfo", req, cb);
|
|
242
|
+
}
|
|
243
|
+
async CancelFlow(req, cb) {
|
|
244
|
+
return this.request("CancelFlow", req, cb);
|
|
245
|
+
}
|
|
246
|
+
async UnbindEmployeeUserIdWithClientOpenId(req, cb) {
|
|
247
|
+
return this.request("UnbindEmployeeUserIdWithClientOpenId", req, cb);
|
|
248
|
+
}
|
|
249
|
+
async CreateBatchCancelFlowUrl(req, cb) {
|
|
250
|
+
return this.request("CreateBatchCancelFlowUrl", req, cb);
|
|
251
|
+
}
|
|
252
|
+
async DeleteIntegrationDepartment(req, cb) {
|
|
253
|
+
return this.request("DeleteIntegrationDepartment", req, cb);
|
|
254
|
+
}
|
|
255
|
+
async CreateFlowApprovers(req, cb) {
|
|
256
|
+
return this.request("CreateFlowApprovers", req, cb);
|
|
257
|
+
}
|
|
258
|
+
async CreatePrepareFlow(req, cb) {
|
|
259
|
+
return this.request("CreatePrepareFlow", req, cb);
|
|
260
|
+
}
|
|
261
|
+
async DescribeBillUsage(req, cb) {
|
|
262
|
+
return this.request("DescribeBillUsage", req, cb);
|
|
263
|
+
}
|
|
264
|
+
async DescribeFlowInfo(req, cb) {
|
|
265
|
+
return this.request("DescribeFlowInfo", req, cb);
|
|
266
|
+
}
|
|
267
|
+
async CreateSealPolicy(req, cb) {
|
|
268
|
+
return this.request("CreateSealPolicy", req, cb);
|
|
269
|
+
}
|
|
270
|
+
async DescribeCancelFlowsTask(req, cb) {
|
|
271
|
+
return this.request("DescribeCancelFlowsTask", req, cb);
|
|
272
|
+
}
|
|
273
|
+
async DescribeOrganizationVerifyStatus(req, cb) {
|
|
274
|
+
return this.request("DescribeOrganizationVerifyStatus", req, cb);
|
|
275
|
+
}
|
|
276
|
+
async CreateOrganizationGroupInvitationLink(req, cb) {
|
|
277
|
+
return this.request("CreateOrganizationGroupInvitationLink", req, cb);
|
|
278
|
+
}
|
|
279
|
+
async DescribeFlowEvidenceReport(req, cb) {
|
|
280
|
+
return this.request("DescribeFlowEvidenceReport", req, cb);
|
|
281
|
+
}
|
|
282
|
+
async DescribeFileCounterSignResult(req, cb) {
|
|
283
|
+
return this.request("DescribeFileCounterSignResult", req, cb);
|
|
284
|
+
}
|
|
285
|
+
async GetTaskResultApi(req, cb) {
|
|
286
|
+
return this.request("GetTaskResultApi", req, cb);
|
|
287
|
+
}
|
|
288
|
+
async ArchiveDynamicFlow(req, cb) {
|
|
289
|
+
return this.request("ArchiveDynamicFlow", req, cb);
|
|
290
|
+
}
|
|
291
|
+
async UpdateIntegrationEmployees(req, cb) {
|
|
292
|
+
return this.request("UpdateIntegrationEmployees", req, cb);
|
|
293
|
+
}
|
|
294
|
+
async CreateOrganizationBatchSignUrl(req, cb) {
|
|
295
|
+
return this.request("CreateOrganizationBatchSignUrl", req, cb);
|
|
296
|
+
}
|
|
297
|
+
async DescribeThirdPartyAuthCode(req, cb) {
|
|
298
|
+
return this.request("DescribeThirdPartyAuthCode", req, cb);
|
|
299
|
+
}
|
|
300
|
+
async CreateFileCounterSign(req, cb) {
|
|
301
|
+
return this.request("CreateFileCounterSign", req, cb);
|
|
302
|
+
}
|
|
303
|
+
async DescribeOrganizationSeals(req, cb) {
|
|
304
|
+
return this.request("DescribeOrganizationSeals", req, cb);
|
|
305
|
+
}
|
|
306
|
+
async CreateSchemeUrl(req, cb) {
|
|
307
|
+
return this.request("CreateSchemeUrl", req, cb);
|
|
308
|
+
}
|
|
309
|
+
async DeleteExtendedServiceAuthInfos(req, cb) {
|
|
310
|
+
return this.request("DeleteExtendedServiceAuthInfos", req, cb);
|
|
311
|
+
}
|
|
312
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ess } from "./ess";
|
package/package.json
CHANGED
|
@@ -1,16 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tencentcloud-sdk-nodejs-ess",
|
|
3
|
-
"version": "4.
|
|
4
|
-
"description": "
|
|
5
|
-
"main": "tencentcloud/index.js",
|
|
3
|
+
"version": "4.1.1",
|
|
4
|
+
"description": "腾讯云 API NODEJS SDK",
|
|
5
|
+
"main": "./tencentcloud/index.js",
|
|
6
|
+
"module": "./es/index.js",
|
|
7
|
+
"types": "./tencentcloud/index.d.ts",
|
|
6
8
|
"scripts": {
|
|
7
9
|
"test": "mocha -t 10000",
|
|
8
|
-
"build": "
|
|
9
|
-
"
|
|
10
|
+
"build": "concurrently 'npm:build:cjs' 'npm:build:es'",
|
|
11
|
+
"build:cjs": "tsc -p tsconfig.json",
|
|
12
|
+
"build:es": "tsc -p tsconfig.es.json",
|
|
13
|
+
"prettier": "prettier --config prettier.config.js --write 'src/**/*.{tsx,ts,jsx,js,css,json,vue}'",
|
|
14
|
+
"clean": "rimraf tencentcloud es"
|
|
10
15
|
},
|
|
11
16
|
"engines": {
|
|
12
17
|
"node": ">=10"
|
|
13
18
|
},
|
|
19
|
+
"files": [
|
|
20
|
+
"tencentcloud",
|
|
21
|
+
"es"
|
|
22
|
+
],
|
|
14
23
|
"keywords": [
|
|
15
24
|
"tencentcloudapi",
|
|
16
25
|
"tencentcloud",
|
|
@@ -22,7 +31,7 @@
|
|
|
22
31
|
"author": "tencentcloudapi",
|
|
23
32
|
"license": "Apache-2.0",
|
|
24
33
|
"dependencies": {
|
|
25
|
-
"tencentcloud-sdk-nodejs-common": "
|
|
34
|
+
"tencentcloud-sdk-nodejs-common": "*",
|
|
26
35
|
"tslib": "1.13.0"
|
|
27
36
|
},
|
|
28
37
|
"directories": {
|
|
@@ -35,14 +44,21 @@
|
|
|
35
44
|
},
|
|
36
45
|
"devDependencies": {
|
|
37
46
|
"@types/form-data": "^2.5.0",
|
|
47
|
+
"@types/json-bigint": "^1.0.1",
|
|
38
48
|
"@types/node": "^14.0.26",
|
|
39
49
|
"@types/node-fetch": "^2.5.7",
|
|
50
|
+
"@types/uuid": "^9.0.8",
|
|
40
51
|
"@typescript-eslint/eslint-plugin": "^2.34.0",
|
|
41
52
|
"@typescript-eslint/parser": "^2.34.0",
|
|
53
|
+
"babel-eslint": "^10.0.2",
|
|
42
54
|
"chai": "^4.2.0",
|
|
55
|
+
"concurrently": "^6.5.1",
|
|
43
56
|
"eslint": "^6.8.0",
|
|
44
|
-
"
|
|
57
|
+
"eslint-plugin-react": "^7.17.0",
|
|
58
|
+
"mocha": "^8.4.0",
|
|
59
|
+
"prettier": "^2.3.0",
|
|
60
|
+
"rimraf": "^5.0.10",
|
|
45
61
|
"ts-node": "^8.10.2",
|
|
46
62
|
"typescript": "^3.9.7"
|
|
47
63
|
}
|
|
48
|
-
}
|
|
64
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Client = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
4
5
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
5
6
|
/*
|
|
6
7
|
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
|
|
@@ -18,7 +19,7 @@ exports.Client = void 0;
|
|
|
18
19
|
* specific language governing permissions and limitations
|
|
19
20
|
* under the License.
|
|
20
21
|
*/
|
|
21
|
-
const TencentCloudCommon = require("tencentcloud-sdk-nodejs-common");
|
|
22
|
+
const TencentCloudCommon = tslib_1.__importStar(require("tencentcloud-sdk-nodejs-common"));
|
|
22
23
|
/**
|
|
23
24
|
* ess client
|
|
24
25
|
* @class
|
|
@@ -1230,6 +1230,11 @@ export interface CreateFlowOption {
|
|
|
1230
1230
|
* 发起流程的可嵌入页面结果页配置
|
|
1231
1231
|
*/
|
|
1232
1232
|
ResultPageConfig?: Array<CreateResultPageConfig>;
|
|
1233
|
+
/**
|
|
1234
|
+
* 签署控件的配置信息,用在嵌入式发起的页面配置,包括
|
|
1235
|
+
- 签署控件 是否默认展示日期.
|
|
1236
|
+
*/
|
|
1237
|
+
SignComponentConfig?: SignComponentConfig;
|
|
1233
1238
|
}
|
|
1234
1239
|
/**
|
|
1235
1240
|
* CreateOrganizationAuthFile返回参数结构体
|
|
@@ -7927,13 +7932,16 @@ export interface CreatePrepareFlowRequest {
|
|
|
7927
7932
|
*/
|
|
7928
7933
|
InitiatorComponents?: Array<Component>;
|
|
7929
7934
|
/**
|
|
7930
|
-
* 在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li></ul>效果如下:
|
|
7935
|
+
* 在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li><li> <b>3</b> :文书</li></ul>效果如下:
|
|
7931
7936
|
*/
|
|
7932
7937
|
FlowDisplayType?: number;
|
|
7933
7938
|
/**
|
|
7934
|
-
*
|
|
7939
|
+
* <font color="red">此参数已经废弃,请使用 CreateFlowOption 里面的 SignComponentConfig</font>
|
|
7940
|
+
签署控件的配置信息,用在嵌入式发起的页面配置,
|
|
7941
|
+
包括
|
|
7935
7942
|
|
|
7936
7943
|
- 签署控件 是否默认展示日期.
|
|
7944
|
+
* @deprecated
|
|
7937
7945
|
*/
|
|
7938
7946
|
SignComponentConfig?: SignComponentConfig;
|
|
7939
7947
|
}
|
|
@@ -8726,6 +8734,11 @@ export interface CreateBatchSignUrlRequest {
|
|
|
8726
8734
|
参考 [公众号 H5 跳转电子签小程序](https://qian.tencent.com/developers/company/openwxminiprogram/#23-%E5%85%AC%E4%BC%97%E5%8F%B7-h5-%E4%B8%AD%E8%B7%B3%E8%BD%AC)。
|
|
8727
8735
|
*/
|
|
8728
8736
|
UrlUseEnv?: string;
|
|
8737
|
+
/**
|
|
8738
|
+
* 是否允许此链接中签署方批量拒签。 <ul><li>false (默认): 不允许批量拒签</li> <li>true : 允许批量拒签。</li></ul>
|
|
8739
|
+
注:`1. 合同组暂不支持批量拒签功能。2. 如果是链接直接跳转至详情页(JumpToDetail参数为true),也不支持批量拒签功能`
|
|
8740
|
+
*/
|
|
8741
|
+
CanBatchReject?: boolean;
|
|
8729
8742
|
}
|
|
8730
8743
|
/**
|
|
8731
8744
|
* CreateExtendedServiceAuthInfos请求参数结构体
|
|
@@ -9958,6 +9971,14 @@ export interface CreateBatchQuickSignUrlRequest {
|
|
|
9958
9971
|
注: `若参与方为企业员工时,暂不支持对参与方信息进行缓存`
|
|
9959
9972
|
*/
|
|
9960
9973
|
CacheApproverInfo?: boolean;
|
|
9974
|
+
/**
|
|
9975
|
+
* 是否允许此链接中签署方批量拒签。
|
|
9976
|
+
<ul><li>false (默认): 不允许批量拒签</li> <li>true : 允许批量拒签。</li></ul>
|
|
9977
|
+
|
|
9978
|
+
注:`合同组暂不支持批量拒签功能。`
|
|
9979
|
+
|
|
9980
|
+
*/
|
|
9981
|
+
CanBatchReject?: boolean;
|
|
9961
9982
|
}
|
|
9962
9983
|
/**
|
|
9963
9984
|
* 下载文件的URL信息
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.v20201111 = void 0;
|
|
4
|
-
const
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const Models = tslib_1.__importStar(require("./ess_models"));
|
|
5
6
|
const ess_client_1 = require("./ess_client");
|
|
6
7
|
exports.v20201111 = {
|
|
7
8
|
Client: ess_client_1.Client,
|
package/index.d.ts
DELETED
package/index.js
DELETED
package/prettier.config.js
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
// prettier.config.js
|
|
2
|
-
module.exports = {
|
|
3
|
-
// 一行最多 100 字符
|
|
4
|
-
printWidth: 100,
|
|
5
|
-
// 使用 4 个空格缩进
|
|
6
|
-
tabWidth: 2,
|
|
7
|
-
// 不使用缩进符,而使用空格
|
|
8
|
-
useTabs: false,
|
|
9
|
-
// 行尾需要有分号
|
|
10
|
-
semi: false,
|
|
11
|
-
// 使用单引号
|
|
12
|
-
singleQuote: false,
|
|
13
|
-
// 对象的 key 仅在必要时用引号
|
|
14
|
-
quoteProps: "as-needed",
|
|
15
|
-
// jsx 不使用单引号,而使用双引号
|
|
16
|
-
jsxSingleQuote: false,
|
|
17
|
-
// 末尾不需要逗号
|
|
18
|
-
trailingComma: "es5",
|
|
19
|
-
// 大括号内的首尾需要空格
|
|
20
|
-
bracketSpacing: true,
|
|
21
|
-
// jsx 标签的反尖括号需要换行
|
|
22
|
-
jsxBracketSameLine: false,
|
|
23
|
-
// 箭头函数,只有一个参数的时候,也需要括号
|
|
24
|
-
arrowParens: "always",
|
|
25
|
-
// 每个文件格式化的范围是文件的全部内容
|
|
26
|
-
rangeStart: 0,
|
|
27
|
-
rangeEnd: Infinity,
|
|
28
|
-
// 不需要写文件开头的 @prettier
|
|
29
|
-
requirePragma: false,
|
|
30
|
-
// 不需要自动在文件开头插入 @prettier
|
|
31
|
-
insertPragma: false,
|
|
32
|
-
// 使用默认的折行标准
|
|
33
|
-
proseWrap: "preserve",
|
|
34
|
-
// 根据显示样式决定 html 要不要折行
|
|
35
|
-
htmlWhitespaceSensitivity: "css",
|
|
36
|
-
// 换行符使用 lf
|
|
37
|
-
endOfLine: "lf",
|
|
38
|
-
}
|
package/src/index.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./services"
|