tencentcloud-sdk-nodejs-essbasic 4.0.1054 → 4.1.2

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 +16 -5
  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 +2 -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 -9426
  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.1054",
3
+ "version": "4.1.2",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
- "main": "tencentcloud/index.js",
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",
@@ -43,10 +52,12 @@
43
52
  "@typescript-eslint/parser": "^2.34.0",
44
53
  "babel-eslint": "^10.0.2",
45
54
  "chai": "^4.2.0",
55
+ "concurrently": "^6.5.1",
46
56
  "eslint": "^6.8.0",
47
57
  "eslint-plugin-react": "^7.17.0",
48
- "mocha": "^8.1.1",
58
+ "mocha": "^8.4.0",
49
59
  "prettier": "^2.3.0",
60
+ "rimraf": "^5.0.10",
50
61
  "ts-node": "^8.10.2",
51
62
  "typescript": "^3.9.7"
52
63
  }
@@ -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
@@ -7596,7 +7596,8 @@ export interface ChannelCreateBatchSignUrlRequest {
7596
7596
  */
7597
7597
  UrlUseEnv?: string;
7598
7598
  /**
7599
- * 是否允许此链接中签署方批量拒签。 <ul><li>false (默认): 不允许批量拒签</li> <li>true : 允许批量拒签。</li></ul>注:`合同组暂不支持批量拒签功能。`
7599
+ * 是否允许此链接中签署方批量拒签。 <ul><li>false (默认): 不允许批量拒签</li> <li>true : 允许批量拒签。</li></ul>
7600
+ 注:`1. 合同组暂不支持批量拒签功能。2. 如果是链接直接跳转至详情页(JumpToDetail参数为true),也不支持批量拒签功能`
7600
7601
  */
7601
7602
  CanBatchReject?: boolean;
7602
7603
  }
@@ -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;
package/index.js DELETED
@@ -1,6 +0,0 @@
1
- 'use strict'
2
- Object.defineProperty(exports, '__esModule', { value: true })
3
- const tslib_1 = require('tslib')
4
- const tencentcloud = tslib_1.__importStar(require('./tencentcloud'))
5
- exports.default = tencentcloud
6
- //# sourceMappingURL=index.js.map
@@ -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"