tencentcloud-sdk-nodejs-essbasic 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.
Files changed (30) hide show
  1. package/README.md +18 -4
  2. package/es/index.js +1 -0
  3. package/es/services/essbasic/index.js +6 -0
  4. package/es/services/essbasic/v20201222/essbasic_client.js +165 -0
  5. package/es/services/essbasic/v20201222/essbasic_models.js +0 -0
  6. package/es/services/essbasic/v20201222/index.js +6 -0
  7. package/es/services/essbasic/v20210526/essbasic_client.js +273 -0
  8. package/es/services/essbasic/v20210526/essbasic_models.js +0 -0
  9. package/es/services/essbasic/v20210526/index.js +6 -0
  10. package/es/services/index.js +1 -0
  11. package/package.json +24 -8
  12. package/tencentcloud/services/essbasic/v20201222/essbasic_client.js +2 -1
  13. package/tencentcloud/services/essbasic/v20201222/index.js +2 -1
  14. package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +2 -1
  15. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +17 -1
  16. package/tencentcloud/services/essbasic/v20210526/index.js +2 -1
  17. package/index.d.ts +0 -2
  18. package/index.js +0 -6
  19. package/prettier.config.js +0 -38
  20. package/src/index.ts +0 -1
  21. package/src/services/essbasic/index.ts +0 -7
  22. package/src/services/essbasic/v20201222/essbasic_client.ts +0 -735
  23. package/src/services/essbasic/v20201222/essbasic_models.ts +0 -3354
  24. package/src/services/essbasic/v20201222/index.ts +0 -6
  25. package/src/services/essbasic/v20210526/essbasic_client.ts +0 -2192
  26. package/src/services/essbasic/v20210526/essbasic_models.ts +0 -9411
  27. package/src/services/essbasic/v20210526/index.ts +0 -6
  28. package/src/services/index.ts +0 -1
  29. package/tsconfig.json +0 -33
  30. 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. 前往 [GitHub 仓库](https://github.com/tencentcloud/tencentcloud-sdk-nodejs) 或者 [Gitee 仓库](https://gitee.com/tencentcloud/tencentcloud-sdk-nodejs) 下载源码压缩包。
56
- 2. 解压源码包到您项目合适的位置,例如 `sdk/tencentcloud-sdk-nodejs`。
57
- 3. 执行 `npm install ./sdk/tencentcloud-sdk-nodejs`。
58
- 4. 使用 `require("tencentcloud-sdk-nodejs")` 的方式引入 SDK,具体可参考示例。
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,6 @@
1
+ import { v20210526 } from "./v20210526";
2
+ import { v20201222 } from "./v20201222";
3
+ export const essbasic = {
4
+ v20210526: v20210526,
5
+ v20201222: v20201222,
6
+ };
@@ -0,0 +1,165 @@
1
+ import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
2
+ export class Client extends TencentCloudCommon.AbstractClient {
3
+ constructor(clientConfig) {
4
+ super("essbasic.tencentcloudapi.com", "2020-12-22", clientConfig);
5
+ }
6
+ async CheckMobileVerification(req, cb) {
7
+ return this.request("CheckMobileVerification", req, cb);
8
+ }
9
+ async CreateSubOrganization(req, cb) {
10
+ return this.request("CreateSubOrganization", req, cb);
11
+ }
12
+ async CancelFlow(req, cb) {
13
+ return this.request("CancelFlow", req, cb);
14
+ }
15
+ async DescribeFileUrls(req, cb) {
16
+ return this.request("DescribeFileUrls", req, cb);
17
+ }
18
+ async CreateH5FaceIdUrl(req, cb) {
19
+ return this.request("CreateH5FaceIdUrl", req, cb);
20
+ }
21
+ async DescribeFlowApprovers(req, cb) {
22
+ return this.request("DescribeFlowApprovers", req, cb);
23
+ }
24
+ async CheckBankCard4EVerification(req, cb) {
25
+ return this.request("CheckBankCard4EVerification", req, cb);
26
+ }
27
+ async DeleteSeal(req, cb) {
28
+ return this.request("DeleteSeal", req, cb);
29
+ }
30
+ async CreateSignUrl(req, cb) {
31
+ return this.request("CreateSignUrl", req, cb);
32
+ }
33
+ async DescribeUsers(req, cb) {
34
+ return this.request("DescribeUsers", req, cb);
35
+ }
36
+ async SendFlowUrl(req, cb) {
37
+ return this.request("SendFlowUrl", req, cb);
38
+ }
39
+ async SendSignInnerVerifyCode(req, cb) {
40
+ return this.request("SendSignInnerVerifyCode", req, cb);
41
+ }
42
+ async DescribeFlowFiles(req, cb) {
43
+ return this.request("DescribeFlowFiles", req, cb);
44
+ }
45
+ async CreateSeal(req, cb) {
46
+ return this.request("CreateSeal", req, cb);
47
+ }
48
+ async ModifyUserDefaultSeal(req, cb) {
49
+ return this.request("ModifyUserDefaultSeal", req, cb);
50
+ }
51
+ async CreatePreviewSignUrl(req, cb) {
52
+ return this.request("CreatePreviewSignUrl", req, cb);
53
+ }
54
+ async CheckVerifyCodeMatchFlowId(req, cb) {
55
+ return this.request("CheckVerifyCodeMatchFlowId", req, cb);
56
+ }
57
+ async CheckFaceIdentify(req, cb) {
58
+ return this.request("CheckFaceIdentify", req, cb);
59
+ }
60
+ async GenerateUserSeal(req, cb) {
61
+ return this.request("GenerateUserSeal", req, cb);
62
+ }
63
+ async UploadFiles(req, cb) {
64
+ return this.request("UploadFiles", req, cb);
65
+ }
66
+ async DescribeCustomFlowIds(req, cb) {
67
+ return this.request("DescribeCustomFlowIds", req, cb);
68
+ }
69
+ async CreateSubOrganizationAndSeal(req, cb) {
70
+ return this.request("CreateSubOrganizationAndSeal", req, cb);
71
+ }
72
+ async DescribeFlow(req, cb) {
73
+ return this.request("DescribeFlow", req, cb);
74
+ }
75
+ async CreateFlowByFiles(req, cb) {
76
+ return this.request("CreateFlowByFiles", req, cb);
77
+ }
78
+ async DescribeCatalogApprovers(req, cb) {
79
+ return this.request("DescribeCatalogApprovers", req, cb);
80
+ }
81
+ async DescribeSubOrganizations(req, cb) {
82
+ return this.request("DescribeSubOrganizations", req, cb);
83
+ }
84
+ async CheckBankCard2EVerification(req, cb) {
85
+ return this.request("CheckBankCard2EVerification", req, cb);
86
+ }
87
+ async ArchiveFlow(req, cb) {
88
+ return this.request("ArchiveFlow", req, cb);
89
+ }
90
+ async CheckMobileAndName(req, cb) {
91
+ return this.request("CheckMobileAndName", req, cb);
92
+ }
93
+ async GenerateOrganizationSeal(req, cb) {
94
+ return this.request("GenerateOrganizationSeal", req, cb);
95
+ }
96
+ async ModifySubOrganizationInfo(req, cb) {
97
+ return this.request("ModifySubOrganizationInfo", req, cb);
98
+ }
99
+ async CreateUserAndSeal(req, cb) {
100
+ return this.request("CreateUserAndSeal", req, cb);
101
+ }
102
+ async DestroyFlowFile(req, cb) {
103
+ return this.request("DestroyFlowFile", req, cb);
104
+ }
105
+ async ModifySeal(req, cb) {
106
+ return this.request("ModifySeal", req, cb);
107
+ }
108
+ async DescribeFileIdsByCustomIds(req, cb) {
109
+ return this.request("DescribeFileIdsByCustomIds", req, cb);
110
+ }
111
+ async SignFlow(req, cb) {
112
+ return this.request("SignFlow", req, cb);
113
+ }
114
+ async DescribeFaceIdResults(req, cb) {
115
+ return this.request("DescribeFaceIdResults", req, cb);
116
+ }
117
+ async DescribeCatalogSignComponents(req, cb) {
118
+ return this.request("DescribeCatalogSignComponents", req, cb);
119
+ }
120
+ async RejectFlow(req, cb) {
121
+ return this.request("RejectFlow", req, cb);
122
+ }
123
+ async ModifyUser(req, cb) {
124
+ return this.request("ModifyUser", req, cb);
125
+ }
126
+ async VerifySubOrganization(req, cb) {
127
+ return this.request("VerifySubOrganization", req, cb);
128
+ }
129
+ async VerifyUser(req, cb) {
130
+ return this.request("VerifyUser", req, cb);
131
+ }
132
+ async DescribeCustomFlowIdsByFlowId(req, cb) {
133
+ return this.request("DescribeCustomFlowIdsByFlowId", req, cb);
134
+ }
135
+ async DescribeFaceIdPhotos(req, cb) {
136
+ return this.request("DescribeFaceIdPhotos", req, cb);
137
+ }
138
+ async CreateFaceIdSign(req, cb) {
139
+ return this.request("CreateFaceIdSign", req, cb);
140
+ }
141
+ async CheckIdCardVerification(req, cb) {
142
+ return this.request("CheckIdCardVerification", req, cb);
143
+ }
144
+ async CheckBankCard3EVerification(req, cb) {
145
+ return this.request("CheckBankCard3EVerification", req, cb);
146
+ }
147
+ async SendFlow(req, cb) {
148
+ return this.request("SendFlow", req, cb);
149
+ }
150
+ async CreateUser(req, cb) {
151
+ return this.request("CreateUser", req, cb);
152
+ }
153
+ async ModifyOrganizationDefaultSeal(req, cb) {
154
+ return this.request("ModifyOrganizationDefaultSeal", req, cb);
155
+ }
156
+ async DescribeSeals(req, cb) {
157
+ return this.request("DescribeSeals", req, cb);
158
+ }
159
+ async CheckBankCardVerification(req, cb) {
160
+ return this.request("CheckBankCardVerification", req, cb);
161
+ }
162
+ async CreateServerFlowSign(req, cb) {
163
+ return this.request("CreateServerFlowSign", req, cb);
164
+ }
165
+ }
@@ -0,0 +1,6 @@
1
+ import * as Models from "./essbasic_models";
2
+ import { Client } from "./essbasic_client";
3
+ export const v20201222 = {
4
+ Client: Client,
5
+ Models: Models,
6
+ };
@@ -0,0 +1,273 @@
1
+ import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
2
+ export class Client extends TencentCloudCommon.AbstractClient {
3
+ constructor(clientConfig) {
4
+ super("essbasic.tencentcloudapi.com", "2021-05-26", clientConfig);
5
+ }
6
+ async ChannelCreateFlowSignReview(req, cb) {
7
+ return this.request("ChannelCreateFlowSignReview", req, cb);
8
+ }
9
+ async ChannelModifyRole(req, cb) {
10
+ return this.request("ChannelModifyRole", req, cb);
11
+ }
12
+ async CreateFlowGroupSignReview(req, cb) {
13
+ return this.request("CreateFlowGroupSignReview", req, cb);
14
+ }
15
+ async ChannelCancelMultiFlowSignQRCode(req, cb) {
16
+ return this.request("ChannelCancelMultiFlowSignQRCode", req, cb);
17
+ }
18
+ async DescribeExtendedServiceAuthInfo(req, cb) {
19
+ return this.request("DescribeExtendedServiceAuthInfo", req, cb);
20
+ }
21
+ async DescribeBatchOrganizationRegistrationUrls(req, cb) {
22
+ return this.request("DescribeBatchOrganizationRegistrationUrls", req, cb);
23
+ }
24
+ async DescribeUsage(req, cb) {
25
+ return this.request("DescribeUsage", req, cb);
26
+ }
27
+ async ChannelDescribeSignFaceVideo(req, cb) {
28
+ return this.request("ChannelDescribeSignFaceVideo", req, cb);
29
+ }
30
+ async ChannelDeleteRoleUsers(req, cb) {
31
+ return this.request("ChannelDeleteRoleUsers", req, cb);
32
+ }
33
+ async CreateSignUrls(req, cb) {
34
+ return this.request("CreateSignUrls", req, cb);
35
+ }
36
+ async ChannelCreateBoundFlows(req, cb) {
37
+ return this.request("ChannelCreateBoundFlows", req, cb);
38
+ }
39
+ async CreatePartnerAutoSignAuthUrl(req, cb) {
40
+ return this.request("CreatePartnerAutoSignAuthUrl", req, cb);
41
+ }
42
+ async ChannelCreateWebThemeConfig(req, cb) {
43
+ return this.request("ChannelCreateWebThemeConfig", req, cb);
44
+ }
45
+ async ChannelCreateFlowReminds(req, cb) {
46
+ return this.request("ChannelCreateFlowReminds", req, cb);
47
+ }
48
+ async ChannelBatchCancelFlows(req, cb) {
49
+ return this.request("ChannelBatchCancelFlows", req, cb);
50
+ }
51
+ async ChannelCreateFlowApprovers(req, cb) {
52
+ return this.request("ChannelCreateFlowApprovers", req, cb);
53
+ }
54
+ async CreatePersonAuthCertificateImage(req, cb) {
55
+ return this.request("CreatePersonAuthCertificateImage", req, cb);
56
+ }
57
+ async CreateChannelFlowEvidenceReport(req, cb) {
58
+ return this.request("CreateChannelFlowEvidenceReport", req, cb);
59
+ }
60
+ async ChannelCreatePreparedPersonalEsign(req, cb) {
61
+ return this.request("ChannelCreatePreparedPersonalEsign", req, cb);
62
+ }
63
+ async ChannelCreateFlowByFiles(req, cb) {
64
+ return this.request("ChannelCreateFlowByFiles", req, cb);
65
+ }
66
+ async CreateSealByImage(req, cb) {
67
+ return this.request("CreateSealByImage", req, cb);
68
+ }
69
+ async ChannelCreateConvertTaskApi(req, cb) {
70
+ return this.request("ChannelCreateConvertTaskApi", req, cb);
71
+ }
72
+ async ChannelCancelFlow(req, cb) {
73
+ return this.request("ChannelCancelFlow", req, cb);
74
+ }
75
+ async CreateFlowsByTemplates(req, cb) {
76
+ return this.request("CreateFlowsByTemplates", req, cb);
77
+ }
78
+ async ChannelCreateRole(req, cb) {
79
+ return this.request("ChannelCreateRole", req, cb);
80
+ }
81
+ async DescribeChannelSealPolicyWorkflowUrl(req, cb) {
82
+ return this.request("DescribeChannelSealPolicyWorkflowUrl", req, cb);
83
+ }
84
+ async ChannelCreateOrganizationModifyQrCode(req, cb) {
85
+ return this.request("ChannelCreateOrganizationModifyQrCode", req, cb);
86
+ }
87
+ async ChannelCreateDynamicFlowApprover(req, cb) {
88
+ return this.request("ChannelCreateDynamicFlowApprover", req, cb);
89
+ }
90
+ async CreateLegalSealQrCode(req, cb) {
91
+ return this.request("CreateLegalSealQrCode", req, cb);
92
+ }
93
+ async ChannelVerifyPdf(req, cb) {
94
+ return this.request("ChannelVerifyPdf", req, cb);
95
+ }
96
+ async GetDownloadFlowUrl(req, cb) {
97
+ return this.request("GetDownloadFlowUrl", req, cb);
98
+ }
99
+ async ChannelDescribeOrganizationSeals(req, cb) {
100
+ return this.request("ChannelDescribeOrganizationSeals", req, cb);
101
+ }
102
+ async DescribeExtendedServiceAuthDetail(req, cb) {
103
+ return this.request("DescribeExtendedServiceAuthDetail", req, cb);
104
+ }
105
+ async CreateCloseOrganizationUrl(req, cb) {
106
+ return this.request("CreateCloseOrganizationUrl", req, cb);
107
+ }
108
+ async PrepareFlows(req, cb) {
109
+ return this.request("PrepareFlows", req, cb);
110
+ }
111
+ async ChannelDescribeRoles(req, cb) {
112
+ return this.request("ChannelDescribeRoles", req, cb);
113
+ }
114
+ async DescribeResourceUrlsByFlows(req, cb) {
115
+ return this.request("DescribeResourceUrlsByFlows", req, cb);
116
+ }
117
+ async DescribeChannelOrganizations(req, cb) {
118
+ return this.request("DescribeChannelOrganizations", req, cb);
119
+ }
120
+ async CreateBatchInitOrganizationUrl(req, cb) {
121
+ return this.request("CreateBatchInitOrganizationUrl", req, cb);
122
+ }
123
+ async ChannelDescribeAccountBillDetail(req, cb) {
124
+ return this.request("ChannelDescribeAccountBillDetail", req, cb);
125
+ }
126
+ async ChannelDescribeFlowComponents(req, cb) {
127
+ return this.request("ChannelDescribeFlowComponents", req, cb);
128
+ }
129
+ async ChannelDeleteSealPolicies(req, cb) {
130
+ return this.request("ChannelDeleteSealPolicies", req, cb);
131
+ }
132
+ async ChannelCreateMultiFlowSignQRCode(req, cb) {
133
+ return this.request("ChannelCreateMultiFlowSignQRCode", req, cb);
134
+ }
135
+ async ModifyExtendedService(req, cb) {
136
+ return this.request("ModifyExtendedService", req, cb);
137
+ }
138
+ async CreateEmployeeChangeUrl(req, cb) {
139
+ return this.request("CreateEmployeeChangeUrl", req, cb);
140
+ }
141
+ async CreateFlowBlockchainEvidenceUrl(req, cb) {
142
+ return this.request("CreateFlowBlockchainEvidenceUrl", req, cb);
143
+ }
144
+ async CreateBatchOrganizationAuthorizationUrl(req, cb) {
145
+ return this.request("CreateBatchOrganizationAuthorizationUrl", req, cb);
146
+ }
147
+ async ChannelCreateBatchQuickSignUrl(req, cb) {
148
+ return this.request("ChannelCreateBatchQuickSignUrl", req, cb);
149
+ }
150
+ async ChannelDisableUserAutoSign(req, cb) {
151
+ return this.request("ChannelDisableUserAutoSign", req, cb);
152
+ }
153
+ async CreateBatchOrganizationRegistrationTasks(req, cb) {
154
+ return this.request("CreateBatchOrganizationRegistrationTasks", req, cb);
155
+ }
156
+ async CreateEmployeeQualificationSealQrCode(req, cb) {
157
+ return this.request("CreateEmployeeQualificationSealQrCode", req, cb);
158
+ }
159
+ async ChannelGetTaskResultApi(req, cb) {
160
+ return this.request("ChannelGetTaskResultApi", req, cb);
161
+ }
162
+ async ChannelCreateUserAutoSignSealUrl(req, cb) {
163
+ return this.request("ChannelCreateUserAutoSignSealUrl", req, cb);
164
+ }
165
+ async CreateChannelSubOrganizationActive(req, cb) {
166
+ return this.request("CreateChannelSubOrganizationActive", req, cb);
167
+ }
168
+ async DescribeTemplates(req, cb) {
169
+ return this.request("DescribeTemplates", req, cb);
170
+ }
171
+ async ChannelCancelUserAutoSignEnableUrl(req, cb) {
172
+ return this.request("ChannelCancelUserAutoSignEnableUrl", req, cb);
173
+ }
174
+ async UploadFiles(req, cb) {
175
+ return this.request("UploadFiles", req, cb);
176
+ }
177
+ async CreateFlowForwards(req, cb) {
178
+ return this.request("CreateFlowForwards", req, cb);
179
+ }
180
+ async ChannelCreateFlowSignUrl(req, cb) {
181
+ return this.request("ChannelCreateFlowSignUrl", req, cb);
182
+ }
183
+ async CreateChannelOrganizationInfoChangeUrl(req, cb) {
184
+ return this.request("CreateChannelOrganizationInfoChangeUrl", req, cb);
185
+ }
186
+ async DescribeUserFlowType(req, cb) {
187
+ return this.request("DescribeUserFlowType", req, cb);
188
+ }
189
+ async ChannelCreateFlowGroupByFiles(req, cb) {
190
+ return this.request("ChannelCreateFlowGroupByFiles", req, cb);
191
+ }
192
+ async DescribeFlowDetailInfo(req, cb) {
193
+ return this.request("DescribeFlowDetailInfo", req, cb);
194
+ }
195
+ async ChannelDescribeBillUsageDetail(req, cb) {
196
+ return this.request("ChannelDescribeBillUsageDetail", req, cb);
197
+ }
198
+ async DeleteOrganizationAuthorizations(req, cb) {
199
+ return this.request("DeleteOrganizationAuthorizations", req, cb);
200
+ }
201
+ async ModifyFlowDeadline(req, cb) {
202
+ return this.request("ModifyFlowDeadline", req, cb);
203
+ }
204
+ async ChannelCreateOrganizationBatchSignUrl(req, cb) {
205
+ return this.request("ChannelCreateOrganizationBatchSignUrl", req, cb);
206
+ }
207
+ async ChannelCreateSealPolicy(req, cb) {
208
+ return this.request("ChannelCreateSealPolicy", req, cb);
209
+ }
210
+ async DescribeCancelFlowsTask(req, cb) {
211
+ return this.request("DescribeCancelFlowsTask", req, cb);
212
+ }
213
+ async CreateConsoleLoginUrl(req, cb) {
214
+ return this.request("CreateConsoleLoginUrl", req, cb);
215
+ }
216
+ async ChannelCreatePrepareFlow(req, cb) {
217
+ return this.request("ChannelCreatePrepareFlow", req, cb);
218
+ }
219
+ async ChannelCreateBatchCancelFlowUrl(req, cb) {
220
+ return this.request("ChannelCreateBatchCancelFlowUrl", req, cb);
221
+ }
222
+ async ChannelDeleteRole(req, cb) {
223
+ return this.request("ChannelDeleteRole", req, cb);
224
+ }
225
+ async SyncProxyOrganization(req, cb) {
226
+ return this.request("SyncProxyOrganization", req, cb);
227
+ }
228
+ async ChannelUpdateSealStatus(req, cb) {
229
+ return this.request("ChannelUpdateSealStatus", req, cb);
230
+ }
231
+ async ChannelCreateBatchSignUrl(req, cb) {
232
+ return this.request("ChannelCreateBatchSignUrl", req, cb);
233
+ }
234
+ async ChannelRenewAutoSignLicense(req, cb) {
235
+ return this.request("ChannelRenewAutoSignLicense", req, cb);
236
+ }
237
+ async ChannelDescribeUserAutoSignStatus(req, cb) {
238
+ return this.request("ChannelDescribeUserAutoSignStatus", req, cb);
239
+ }
240
+ async ChannelCreateReleaseFlow(req, cb) {
241
+ return this.request("ChannelCreateReleaseFlow", req, cb);
242
+ }
243
+ async ChannelDescribeEmployees(req, cb) {
244
+ return this.request("ChannelDescribeEmployees", req, cb);
245
+ }
246
+ async ArchiveDynamicFlow(req, cb) {
247
+ return this.request("ArchiveDynamicFlow", req, cb);
248
+ }
249
+ async CreateOrganizationAuthFile(req, cb) {
250
+ return this.request("CreateOrganizationAuthFile", req, cb);
251
+ }
252
+ async ChannelCreateUserRoles(req, cb) {
253
+ return this.request("ChannelCreateUserRoles", req, cb);
254
+ }
255
+ async ChannelCreateFlowGroupByTemplates(req, cb) {
256
+ return this.request("ChannelCreateFlowGroupByTemplates", req, cb);
257
+ }
258
+ async DescribeChannelFlowEvidenceReport(req, cb) {
259
+ return this.request("DescribeChannelFlowEvidenceReport", req, cb);
260
+ }
261
+ async OperateChannelTemplate(req, cb) {
262
+ return this.request("OperateChannelTemplate", req, cb);
263
+ }
264
+ async SyncProxyOrganizationOperators(req, cb) {
265
+ return this.request("SyncProxyOrganizationOperators", req, cb);
266
+ }
267
+ async ChannelCreateEmbedWebUrl(req, cb) {
268
+ return this.request("ChannelCreateEmbedWebUrl", req, cb);
269
+ }
270
+ async ChannelCreateUserAutoSignEnableUrl(req, cb) {
271
+ return this.request("ChannelCreateUserAutoSignEnableUrl", req, cb);
272
+ }
273
+ }
@@ -0,0 +1,6 @@
1
+ import * as Models from "./essbasic_models";
2
+ import { Client } from "./essbasic_client";
3
+ export const v20210526 = {
4
+ Client: Client,
5
+ Models: Models,
6
+ };
@@ -0,0 +1 @@
1
+ export { essbasic } from "./essbasic";
package/package.json CHANGED
@@ -1,16 +1,25 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-essbasic",
3
- "version": "4.0.1053",
4
- "description": "Tencent Cloud API NODEJS SDK",
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": "tsc",
9
- "prettier": "prettier --config prettier.config.js --write 'src/**/*.{tsx,ts,jsx,js,css,json,vue}'"
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": "^4.0.488",
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
- "mocha": "^8.1.1",
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
  * essbasic client
24
25
  * @class
@@ -1,7 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.v20201222 = void 0;
4
- const Models = require("./essbasic_models");
4
+ const tslib_1 = require("tslib");
5
+ const Models = tslib_1.__importStar(require("./essbasic_models"));
5
6
  const essbasic_client_1 = require("./essbasic_client");
6
7
  exports.v20201222 = {
7
8
  Client: essbasic_client_1.Client,
@@ -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
  * essbasic client
24
25
  * @class
@@ -1177,6 +1177,11 @@ export interface CreateFlowOption {
1177
1177
  **false**:(默认)不跳过,需要传ResourceId
1178
1178
  */
1179
1179
  SkipUploadFile?: boolean;
1180
+ /**
1181
+ * 签署控件的配置信息,用在嵌入式发起的页面配置,包括
1182
+ - 签署控件 是否默认展示日期.
1183
+ */
1184
+ SignComponentConfig?: SignComponentConfig;
1180
1185
  }
1181
1186
  /**
1182
1187
  * ChannelCreateRole请求参数结构体
@@ -1577,9 +1582,11 @@ export interface ChannelCreatePrepareFlowRequest {
1577
1582
  */
1578
1583
  Operator?: UserInfo;
1579
1584
  /**
1580
- * 签署控件的配置信息,用在嵌入式发起的页面配置,包括
1585
+ * <font color="red">此参数已经废弃,请使用 CreateFlowOption 里面的 SignComponentConfig</font>
1586
+ 签署控件的配置信息,用在嵌入式发起的页面配置,包括
1581
1587
 
1582
1588
  - 签署控件 是否默认展示日期.
1589
+ * @deprecated
1583
1590
  */
1584
1591
  SignComponentConfig?: SignComponentConfig;
1585
1592
  }
@@ -4790,6 +4797,10 @@ export interface ChannelCreateBatchQuickSignUrlRequest {
4790
4797
  注: `若参与方为企业员工时,暂不支持对参与方信息进行缓存`
4791
4798
  */
4792
4799
  CacheApproverInfo?: boolean;
4800
+ /**
4801
+ * 是否允许此链接中签署方批量拒签。 <ul><li>false (默认): 不允许批量拒签</li> <li>true : 允许批量拒签。</li></ul>注:`合同组暂不支持批量拒签功能。`
4802
+ */
4803
+ CanBatchReject?: boolean;
4793
4804
  }
4794
4805
  /**
4795
4806
  * ChannelCreateBoundFlows请求参数结构体
@@ -7584,6 +7595,11 @@ export interface ChannelCreateBatchSignUrlRequest {
7584
7595
  参考 [公众号 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)。
7585
7596
  */
7586
7597
  UrlUseEnv?: string;
7598
+ /**
7599
+ * 是否允许此链接中签署方批量拒签。 <ul><li>false (默认): 不允许批量拒签</li> <li>true : 允许批量拒签。</li></ul>
7600
+ 注:`1. 合同组暂不支持批量拒签功能。2. 如果是链接直接跳转至详情页(JumpToDetail参数为true),也不支持批量拒签功能`
7601
+ */
7602
+ CanBatchReject?: boolean;
7587
7603
  }
7588
7604
  /**
7589
7605
  * ChannelCreateOrganizationModifyQrCode返回参数结构体
@@ -1,7 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.v20210526 = void 0;
4
- const Models = require("./essbasic_models");
4
+ const tslib_1 = require("tslib");
5
+ const Models = tslib_1.__importStar(require("./essbasic_models"));
5
6
  const essbasic_client_1 = require("./essbasic_client");
6
7
  exports.v20210526 = {
7
8
  Client: essbasic_client_1.Client,
package/index.d.ts DELETED
@@ -1,2 +0,0 @@
1
- import * as tencentcloud from './tencentcloud';
2
- export default tencentcloud;