tencentcloud-sdk-nodejs 4.0.616 → 4.0.617
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 +49 -0
- package/SERVICE_CHANGELOG.md +62 -365
- package/package.json +1 -1
- package/products.md +3 -3
- package/src/common/sdk_version.ts +1 -1
- package/src/services/apigateway/v20180808/apigateway_client.ts +3 -1
- package/src/services/apigateway/v20180808/apigateway_models.ts +132 -5
- package/src/services/ess/v20201111/ess_client.ts +95 -46
- package/src/services/ess/v20201111/ess_models.ts +234 -34
- package/src/services/essbasic/v20210526/essbasic_models.ts +10 -7
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/apigateway/v20180808/apigateway_client.d.ts +1 -1
- package/tencentcloud/services/apigateway/v20180808/apigateway_models.d.ts +111 -5
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +37 -21
- package/tencentcloud/services/ess/v20201111/ess_client.js +49 -25
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +201 -31
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +5 -2
- package/test/ess.v20201111.test.js +50 -10
|
@@ -18,9 +18,9 @@ const client = new tencentcloud.ess.v20201111.Client({
|
|
|
18
18
|
})
|
|
19
19
|
describe("ess.v20201111.test.js", function () {
|
|
20
20
|
|
|
21
|
-
it("ess.v20201111.
|
|
21
|
+
it("ess.v20201111.DescribeFlowInfo", async function () {
|
|
22
22
|
try {
|
|
23
|
-
const data = await client.
|
|
23
|
+
const data = await client.DescribeFlowInfo({})
|
|
24
24
|
expect(data).to.be.ok
|
|
25
25
|
} catch(error) {
|
|
26
26
|
expect(error.requestId).to.be.ok
|
|
@@ -98,9 +98,19 @@ it("ess.v20201111.CreateUserAutoSignEnableUrl", async function () {
|
|
|
98
98
|
}
|
|
99
99
|
})
|
|
100
100
|
|
|
101
|
-
it("ess.v20201111.
|
|
101
|
+
it("ess.v20201111.CreateSealPolicy", async function () {
|
|
102
102
|
try {
|
|
103
|
-
const data = await client.
|
|
103
|
+
const data = await client.CreateSealPolicy({})
|
|
104
|
+
expect(data).to.be.ok
|
|
105
|
+
} catch(error) {
|
|
106
|
+
expect(error.requestId).to.be.ok
|
|
107
|
+
expect(error.code).to.be.ok
|
|
108
|
+
}
|
|
109
|
+
})
|
|
110
|
+
|
|
111
|
+
it("ess.v20201111.DescribeOrganizationGroupOrganizations", async function () {
|
|
112
|
+
try {
|
|
113
|
+
const data = await client.DescribeOrganizationGroupOrganizations({})
|
|
104
114
|
expect(data).to.be.ok
|
|
105
115
|
} catch(error) {
|
|
106
116
|
expect(error.requestId).to.be.ok
|
|
@@ -138,6 +148,16 @@ it("ess.v20201111.CreateBatchCancelFlowUrl", async function () {
|
|
|
138
148
|
}
|
|
139
149
|
})
|
|
140
150
|
|
|
151
|
+
it("ess.v20201111.DeleteIntegrationDepartment", async function () {
|
|
152
|
+
try {
|
|
153
|
+
const data = await client.DeleteIntegrationDepartment({})
|
|
154
|
+
expect(data).to.be.ok
|
|
155
|
+
} catch(error) {
|
|
156
|
+
expect(error.requestId).to.be.ok
|
|
157
|
+
expect(error.code).to.be.ok
|
|
158
|
+
}
|
|
159
|
+
})
|
|
160
|
+
|
|
141
161
|
it("ess.v20201111.BindEmployeeUserIdWithClientOpenId", async function () {
|
|
142
162
|
try {
|
|
143
163
|
const data = await client.BindEmployeeUserIdWithClientOpenId({})
|
|
@@ -218,9 +238,9 @@ it("ess.v20201111.CreateDocument", async function () {
|
|
|
218
238
|
}
|
|
219
239
|
})
|
|
220
240
|
|
|
221
|
-
it("ess.v20201111.
|
|
241
|
+
it("ess.v20201111.CreateMultiFlowSignQRCode", async function () {
|
|
222
242
|
try {
|
|
223
|
-
const data = await client.
|
|
243
|
+
const data = await client.CreateMultiFlowSignQRCode({})
|
|
224
244
|
expect(data).to.be.ok
|
|
225
245
|
} catch(error) {
|
|
226
246
|
expect(error.requestId).to.be.ok
|
|
@@ -228,9 +248,9 @@ it("ess.v20201111.DescribeFlowInfo", async function () {
|
|
|
228
248
|
}
|
|
229
249
|
})
|
|
230
250
|
|
|
231
|
-
it("ess.v20201111.
|
|
251
|
+
it("ess.v20201111.CreateFlowEvidenceReport", async function () {
|
|
232
252
|
try {
|
|
233
|
-
const data = await client.
|
|
253
|
+
const data = await client.CreateFlowEvidenceReport({})
|
|
234
254
|
expect(data).to.be.ok
|
|
235
255
|
} catch(error) {
|
|
236
256
|
expect(error.requestId).to.be.ok
|
|
@@ -308,9 +328,9 @@ it("ess.v20201111.DescribeIntegrationRoles", async function () {
|
|
|
308
328
|
}
|
|
309
329
|
})
|
|
310
330
|
|
|
311
|
-
it("ess.v20201111.
|
|
331
|
+
it("ess.v20201111.CreateIntegrationDepartment", async function () {
|
|
312
332
|
try {
|
|
313
|
-
const data = await client.
|
|
333
|
+
const data = await client.CreateIntegrationDepartment({})
|
|
314
334
|
expect(data).to.be.ok
|
|
315
335
|
} catch(error) {
|
|
316
336
|
expect(error.requestId).to.be.ok
|
|
@@ -458,6 +478,26 @@ it("ess.v20201111.CreateSchemeUrl", async function () {
|
|
|
458
478
|
}
|
|
459
479
|
})
|
|
460
480
|
|
|
481
|
+
it("ess.v20201111.DescribeIntegrationDepartments", async function () {
|
|
482
|
+
try {
|
|
483
|
+
const data = await client.DescribeIntegrationDepartments({})
|
|
484
|
+
expect(data).to.be.ok
|
|
485
|
+
} catch(error) {
|
|
486
|
+
expect(error.requestId).to.be.ok
|
|
487
|
+
expect(error.code).to.be.ok
|
|
488
|
+
}
|
|
489
|
+
})
|
|
490
|
+
|
|
491
|
+
it("ess.v20201111.ModifyIntegrationDepartment", async function () {
|
|
492
|
+
try {
|
|
493
|
+
const data = await client.ModifyIntegrationDepartment({})
|
|
494
|
+
expect(data).to.be.ok
|
|
495
|
+
} catch(error) {
|
|
496
|
+
expect(error.requestId).to.be.ok
|
|
497
|
+
expect(error.code).to.be.ok
|
|
498
|
+
}
|
|
499
|
+
})
|
|
500
|
+
|
|
461
501
|
it("ess.v20201111.CreateIntegrationEmployees", async function () {
|
|
462
502
|
try {
|
|
463
503
|
const data = await client.CreateIntegrationEmployees({})
|