tencentcloud-sdk-nodejs 4.0.534 → 4.0.535
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 +228 -0
- package/SERVICE_CHANGELOG.md +369 -248
- package/package.json +1 -1
- package/products.md +17 -17
- package/src/common/sdk_version.ts +1 -1
- package/src/services/asr/v20190614/asr_models.ts +14 -2
- package/src/services/cbs/v20170312/cbs_models.ts +5 -0
- package/src/services/ccc/v20200210/ccc_client.ts +46 -9
- package/src/services/ccc/v20200210/ccc_models.ts +138 -17
- package/src/services/cme/v20191029/cme_models.ts +6 -4
- package/src/services/dlc/v20210125/dlc_client.ts +204 -52
- package/src/services/dlc/v20210125/dlc_models.ts +1101 -87
- package/src/services/lcic/v20220817/lcic_client.ts +198 -72
- package/src/services/lcic/v20220817/lcic_models.ts +856 -120
- package/src/services/live/v20180801/live_client.ts +1 -1
- package/src/services/live/v20180801/live_models.ts +1 -1
- package/src/services/sqlserver/v20180328/sqlserver_client.ts +3 -2
- package/src/services/sqlserver/v20180328/sqlserver_models.ts +105 -54
- package/src/services/teo/v20220901/teo_client.ts +551 -488
- package/src/services/teo/v20220901/teo_models.ts +450 -113
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/asr/v20190614/asr_models.d.ts +12 -2
- package/tencentcloud/services/cbs/v20170312/cbs_models.d.ts +4 -0
- package/tencentcloud/services/ccc/v20200210/ccc_client.d.ts +15 -3
- package/tencentcloud/services/ccc/v20200210/ccc_client.js +21 -3
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +119 -15
- package/tencentcloud/services/cme/v20191029/cme_models.d.ts +4 -2
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +64 -16
- package/tencentcloud/services/dlc/v20210125/dlc_client.js +94 -22
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +909 -52
- package/tencentcloud/services/lcic/v20220817/lcic_client.d.ts +65 -25
- package/tencentcloud/services/lcic/v20220817/lcic_client.js +96 -36
- package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +727 -101
- package/tencentcloud/services/live/v20180801/live_client.d.ts +1 -1
- package/tencentcloud/services/live/v20180801/live_client.js +1 -1
- package/tencentcloud/services/live/v20180801/live_models.d.ts +1 -1
- package/tencentcloud/services/sqlserver/v20180328/sqlserver_models.d.ts +90 -48
- package/tencentcloud/services/teo/v20220901/teo_client.d.ts +183 -163
- package/tencentcloud/services/teo/v20220901/teo_client.js +273 -243
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +390 -99
- package/test/ccc.v20200210.test.js +32 -2
- package/test/dlc.v20210125.test.js +134 -14
- package/test/lcic.v20220817.test.js +124 -24
- package/test/teo.v20220901.test.js +212 -162
|
@@ -18,6 +18,16 @@ const client = new tencentcloud.ccc.v20200210.Client({
|
|
|
18
18
|
})
|
|
19
19
|
describe("ccc.v20200210.test.js", function () {
|
|
20
20
|
|
|
21
|
+
it("ccc.v20200210.UnbindNumberCallOutSkillGroup", async function () {
|
|
22
|
+
try {
|
|
23
|
+
const data = await client.UnbindNumberCallOutSkillGroup({})
|
|
24
|
+
expect(data).to.be.ok
|
|
25
|
+
} catch(error) {
|
|
26
|
+
expect(error.requestId).to.be.ok
|
|
27
|
+
expect(error.code).to.be.ok
|
|
28
|
+
}
|
|
29
|
+
})
|
|
30
|
+
|
|
21
31
|
it("ccc.v20200210.DescribeExtensions", async function () {
|
|
22
32
|
try {
|
|
23
33
|
const data = await client.DescribeExtensions({})
|
|
@@ -88,9 +98,9 @@ it("ccc.v20200210.BindStaffSkillGroupList", async function () {
|
|
|
88
98
|
}
|
|
89
99
|
})
|
|
90
100
|
|
|
91
|
-
it("ccc.v20200210.
|
|
101
|
+
it("ccc.v20200210.BindNumberCallOutSkillGroup", async function () {
|
|
92
102
|
try {
|
|
93
|
-
const data = await client.
|
|
103
|
+
const data = await client.BindNumberCallOutSkillGroup({})
|
|
94
104
|
expect(data).to.be.ok
|
|
95
105
|
} catch(error) {
|
|
96
106
|
expect(error.requestId).to.be.ok
|
|
@@ -238,6 +248,16 @@ it("ccc.v20200210.StopAutoCalloutTask", async function () {
|
|
|
238
248
|
}
|
|
239
249
|
})
|
|
240
250
|
|
|
251
|
+
it("ccc.v20200210.CreateCarrierPrivilegeNumberApplicant", async function () {
|
|
252
|
+
try {
|
|
253
|
+
const data = await client.CreateCarrierPrivilegeNumberApplicant({})
|
|
254
|
+
expect(data).to.be.ok
|
|
255
|
+
} catch(error) {
|
|
256
|
+
expect(error.requestId).to.be.ok
|
|
257
|
+
expect(error.code).to.be.ok
|
|
258
|
+
}
|
|
259
|
+
})
|
|
260
|
+
|
|
241
261
|
it("ccc.v20200210.DescribeChatMessages", async function () {
|
|
242
262
|
try {
|
|
243
263
|
const data = await client.DescribeChatMessages({})
|
|
@@ -378,4 +398,14 @@ it("ccc.v20200210.DescribeActiveCarrierPrivilegeNumber", async function () {
|
|
|
378
398
|
}
|
|
379
399
|
})
|
|
380
400
|
|
|
401
|
+
it("ccc.v20200210.DescribeNumbers", async function () {
|
|
402
|
+
try {
|
|
403
|
+
const data = await client.DescribeNumbers({})
|
|
404
|
+
expect(data).to.be.ok
|
|
405
|
+
} catch(error) {
|
|
406
|
+
expect(error.requestId).to.be.ok
|
|
407
|
+
expect(error.code).to.be.ok
|
|
408
|
+
}
|
|
409
|
+
})
|
|
410
|
+
|
|
381
411
|
})
|
|
@@ -88,9 +88,9 @@ it("dlc.v20210125.DescribeNotebookSession", async function () {
|
|
|
88
88
|
}
|
|
89
89
|
})
|
|
90
90
|
|
|
91
|
-
it("dlc.v20210125.
|
|
91
|
+
it("dlc.v20210125.CancelNotebookSessionStatement", async function () {
|
|
92
92
|
try {
|
|
93
|
-
const data = await client.
|
|
93
|
+
const data = await client.CancelNotebookSessionStatement({})
|
|
94
94
|
expect(data).to.be.ok
|
|
95
95
|
} catch(error) {
|
|
96
96
|
expect(error.requestId).to.be.ok
|
|
@@ -148,9 +148,9 @@ it("dlc.v20210125.DescribeTaskResult", async function () {
|
|
|
148
148
|
}
|
|
149
149
|
})
|
|
150
150
|
|
|
151
|
-
it("dlc.v20210125.
|
|
151
|
+
it("dlc.v20210125.CancelNotebookSessionStatementBatch", async function () {
|
|
152
152
|
try {
|
|
153
|
-
const data = await client.
|
|
153
|
+
const data = await client.CancelNotebookSessionStatementBatch({})
|
|
154
154
|
expect(data).to.be.ok
|
|
155
155
|
} catch(error) {
|
|
156
156
|
expect(error.requestId).to.be.ok
|
|
@@ -238,6 +238,16 @@ it("dlc.v20210125.DescribeResultDownload", async function () {
|
|
|
238
238
|
}
|
|
239
239
|
})
|
|
240
240
|
|
|
241
|
+
it("dlc.v20210125.DescribeDataEngines", async function () {
|
|
242
|
+
try {
|
|
243
|
+
const data = await client.DescribeDataEngines({})
|
|
244
|
+
expect(data).to.be.ok
|
|
245
|
+
} catch(error) {
|
|
246
|
+
expect(error.requestId).to.be.ok
|
|
247
|
+
expect(error.code).to.be.ok
|
|
248
|
+
}
|
|
249
|
+
})
|
|
250
|
+
|
|
241
251
|
it("dlc.v20210125.CreateStoreLocation", async function () {
|
|
242
252
|
try {
|
|
243
253
|
const data = await client.CreateStoreLocation({})
|
|
@@ -288,9 +298,19 @@ it("dlc.v20210125.CreateWorkGroup", async function () {
|
|
|
288
298
|
}
|
|
289
299
|
})
|
|
290
300
|
|
|
291
|
-
it("dlc.v20210125.
|
|
301
|
+
it("dlc.v20210125.CreateNotebookSessionStatementSupportBatchSQL", async function () {
|
|
292
302
|
try {
|
|
293
|
-
const data = await client.
|
|
303
|
+
const data = await client.CreateNotebookSessionStatementSupportBatchSQL({})
|
|
304
|
+
expect(data).to.be.ok
|
|
305
|
+
} catch(error) {
|
|
306
|
+
expect(error.requestId).to.be.ok
|
|
307
|
+
expect(error.code).to.be.ok
|
|
308
|
+
}
|
|
309
|
+
})
|
|
310
|
+
|
|
311
|
+
it("dlc.v20210125.DescribeNotebookSessionLog", async function () {
|
|
312
|
+
try {
|
|
313
|
+
const data = await client.DescribeNotebookSessionLog({})
|
|
294
314
|
expect(data).to.be.ok
|
|
295
315
|
} catch(error) {
|
|
296
316
|
expect(error.requestId).to.be.ok
|
|
@@ -308,9 +328,9 @@ it("dlc.v20210125.AlterDMSDatabase", async function () {
|
|
|
308
328
|
}
|
|
309
329
|
})
|
|
310
330
|
|
|
311
|
-
it("dlc.v20210125.
|
|
331
|
+
it("dlc.v20210125.ModifySparkApp", async function () {
|
|
312
332
|
try {
|
|
313
|
-
const data = await client.
|
|
333
|
+
const data = await client.ModifySparkApp({})
|
|
314
334
|
expect(data).to.be.ok
|
|
315
335
|
} catch(error) {
|
|
316
336
|
expect(error.requestId).to.be.ok
|
|
@@ -328,9 +348,19 @@ it("dlc.v20210125.CreateInternalTable", async function () {
|
|
|
328
348
|
}
|
|
329
349
|
})
|
|
330
350
|
|
|
331
|
-
it("dlc.v20210125.
|
|
351
|
+
it("dlc.v20210125.DeleteNotebookSession", async function () {
|
|
332
352
|
try {
|
|
333
|
-
const data = await client.
|
|
353
|
+
const data = await client.DeleteNotebookSession({})
|
|
354
|
+
expect(data).to.be.ok
|
|
355
|
+
} catch(error) {
|
|
356
|
+
expect(error.requestId).to.be.ok
|
|
357
|
+
expect(error.code).to.be.ok
|
|
358
|
+
}
|
|
359
|
+
})
|
|
360
|
+
|
|
361
|
+
it("dlc.v20210125.GenerateCreateMangedTableSql", async function () {
|
|
362
|
+
try {
|
|
363
|
+
const data = await client.GenerateCreateMangedTableSql({})
|
|
334
364
|
expect(data).to.be.ok
|
|
335
365
|
} catch(error) {
|
|
336
366
|
expect(error.requestId).to.be.ok
|
|
@@ -348,6 +378,16 @@ it("dlc.v20210125.AttachWorkGroupPolicy", async function () {
|
|
|
348
378
|
}
|
|
349
379
|
})
|
|
350
380
|
|
|
381
|
+
it("dlc.v20210125.DescribeNotebookSessions", async function () {
|
|
382
|
+
try {
|
|
383
|
+
const data = await client.DescribeNotebookSessions({})
|
|
384
|
+
expect(data).to.be.ok
|
|
385
|
+
} catch(error) {
|
|
386
|
+
expect(error.requestId).to.be.ok
|
|
387
|
+
expect(error.code).to.be.ok
|
|
388
|
+
}
|
|
389
|
+
})
|
|
390
|
+
|
|
351
391
|
it("dlc.v20210125.DescribeDMSPartitions", async function () {
|
|
352
392
|
try {
|
|
353
393
|
const data = await client.DescribeDMSPartitions({})
|
|
@@ -418,6 +458,36 @@ it("dlc.v20210125.CreateDatabase", async function () {
|
|
|
418
458
|
}
|
|
419
459
|
})
|
|
420
460
|
|
|
461
|
+
it("dlc.v20210125.DescribeNotebookSessionStatement", async function () {
|
|
462
|
+
try {
|
|
463
|
+
const data = await client.DescribeNotebookSessionStatement({})
|
|
464
|
+
expect(data).to.be.ok
|
|
465
|
+
} catch(error) {
|
|
466
|
+
expect(error.requestId).to.be.ok
|
|
467
|
+
expect(error.code).to.be.ok
|
|
468
|
+
}
|
|
469
|
+
})
|
|
470
|
+
|
|
471
|
+
it("dlc.v20210125.UnbindWorkGroupsFromUser", async function () {
|
|
472
|
+
try {
|
|
473
|
+
const data = await client.UnbindWorkGroupsFromUser({})
|
|
474
|
+
expect(data).to.be.ok
|
|
475
|
+
} catch(error) {
|
|
476
|
+
expect(error.requestId).to.be.ok
|
|
477
|
+
expect(error.code).to.be.ok
|
|
478
|
+
}
|
|
479
|
+
})
|
|
480
|
+
|
|
481
|
+
it("dlc.v20210125.DescribeSparkAppJobs", async function () {
|
|
482
|
+
try {
|
|
483
|
+
const data = await client.DescribeSparkAppJobs({})
|
|
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
|
+
|
|
421
491
|
it("dlc.v20210125.DescribeWorkGroups", async function () {
|
|
422
492
|
try {
|
|
423
493
|
const data = await client.DescribeWorkGroups({})
|
|
@@ -438,9 +508,9 @@ it("dlc.v20210125.ModifyWorkGroup", async function () {
|
|
|
438
508
|
}
|
|
439
509
|
})
|
|
440
510
|
|
|
441
|
-
it("dlc.v20210125.
|
|
511
|
+
it("dlc.v20210125.ListTaskJobLogDetail", async function () {
|
|
442
512
|
try {
|
|
443
|
-
const data = await client.
|
|
513
|
+
const data = await client.ListTaskJobLogDetail({})
|
|
444
514
|
expect(data).to.be.ok
|
|
445
515
|
} catch(error) {
|
|
446
516
|
expect(error.requestId).to.be.ok
|
|
@@ -468,6 +538,26 @@ it("dlc.v20210125.DescribeTable", async function () {
|
|
|
468
538
|
}
|
|
469
539
|
})
|
|
470
540
|
|
|
541
|
+
it("dlc.v20210125.DescribeNotebookSessionStatements", async function () {
|
|
542
|
+
try {
|
|
543
|
+
const data = await client.DescribeNotebookSessionStatements({})
|
|
544
|
+
expect(data).to.be.ok
|
|
545
|
+
} catch(error) {
|
|
546
|
+
expect(error.requestId).to.be.ok
|
|
547
|
+
expect(error.code).to.be.ok
|
|
548
|
+
}
|
|
549
|
+
})
|
|
550
|
+
|
|
551
|
+
it("dlc.v20210125.DescribeUsers", async function () {
|
|
552
|
+
try {
|
|
553
|
+
const data = await client.DescribeUsers({})
|
|
554
|
+
expect(data).to.be.ok
|
|
555
|
+
} catch(error) {
|
|
556
|
+
expect(error.requestId).to.be.ok
|
|
557
|
+
expect(error.code).to.be.ok
|
|
558
|
+
}
|
|
559
|
+
})
|
|
560
|
+
|
|
471
561
|
it("dlc.v20210125.DescribeDMSDatabase", async function () {
|
|
472
562
|
try {
|
|
473
563
|
const data = await client.DescribeDMSDatabase({})
|
|
@@ -648,9 +738,19 @@ it("dlc.v20210125.DescribeSparkAppTasks", async function () {
|
|
|
648
738
|
}
|
|
649
739
|
})
|
|
650
740
|
|
|
651
|
-
it("dlc.v20210125.
|
|
741
|
+
it("dlc.v20210125.DescribeNotebookSessionStatementSqlResult", async function () {
|
|
652
742
|
try {
|
|
653
|
-
const data = await client.
|
|
743
|
+
const data = await client.DescribeNotebookSessionStatementSqlResult({})
|
|
744
|
+
expect(data).to.be.ok
|
|
745
|
+
} catch(error) {
|
|
746
|
+
expect(error.requestId).to.be.ok
|
|
747
|
+
expect(error.code).to.be.ok
|
|
748
|
+
}
|
|
749
|
+
})
|
|
750
|
+
|
|
751
|
+
it("dlc.v20210125.DropDMSDatabase", async function () {
|
|
752
|
+
try {
|
|
753
|
+
const data = await client.DropDMSDatabase({})
|
|
654
754
|
expect(data).to.be.ok
|
|
655
755
|
} catch(error) {
|
|
656
756
|
expect(error.requestId).to.be.ok
|
|
@@ -668,6 +768,16 @@ it("dlc.v20210125.CreateUser", async function () {
|
|
|
668
768
|
}
|
|
669
769
|
})
|
|
670
770
|
|
|
771
|
+
it("dlc.v20210125.CreateNotebookSessionStatement", async function () {
|
|
772
|
+
try {
|
|
773
|
+
const data = await client.CreateNotebookSessionStatement({})
|
|
774
|
+
expect(data).to.be.ok
|
|
775
|
+
} catch(error) {
|
|
776
|
+
expect(error.requestId).to.be.ok
|
|
777
|
+
expect(error.code).to.be.ok
|
|
778
|
+
}
|
|
779
|
+
})
|
|
780
|
+
|
|
671
781
|
it("dlc.v20210125.DetachUserPolicy", async function () {
|
|
672
782
|
try {
|
|
673
783
|
const data = await client.DetachUserPolicy({})
|
|
@@ -688,4 +798,14 @@ it("dlc.v20210125.DescribeTables", async function () {
|
|
|
688
798
|
}
|
|
689
799
|
})
|
|
690
800
|
|
|
801
|
+
it("dlc.v20210125.CreateExportTask", async function () {
|
|
802
|
+
try {
|
|
803
|
+
const data = await client.CreateExportTask({})
|
|
804
|
+
expect(data).to.be.ok
|
|
805
|
+
} catch(error) {
|
|
806
|
+
expect(error.requestId).to.be.ok
|
|
807
|
+
expect(error.code).to.be.ok
|
|
808
|
+
}
|
|
809
|
+
})
|
|
810
|
+
|
|
691
811
|
})
|
|
@@ -18,9 +18,9 @@ const client = new tencentcloud.lcic.v20220817.Client({
|
|
|
18
18
|
})
|
|
19
19
|
describe("lcic.v20220817.test.js", function () {
|
|
20
20
|
|
|
21
|
-
it("lcic.v20220817.
|
|
21
|
+
it("lcic.v20220817.SetWatermark", async function () {
|
|
22
22
|
try {
|
|
23
|
-
const data = await client.
|
|
23
|
+
const data = await client.SetWatermark({})
|
|
24
24
|
expect(data).to.be.ok
|
|
25
25
|
} catch(error) {
|
|
26
26
|
expect(error.requestId).to.be.ok
|
|
@@ -28,9 +28,19 @@ it("lcic.v20220817.DescribeAppDetail", async function () {
|
|
|
28
28
|
}
|
|
29
29
|
})
|
|
30
30
|
|
|
31
|
-
it("lcic.v20220817.
|
|
31
|
+
it("lcic.v20220817.DescribeDocumentsByRoom", async function () {
|
|
32
32
|
try {
|
|
33
|
-
const data = await client.
|
|
33
|
+
const data = await client.DescribeDocumentsByRoom({})
|
|
34
|
+
expect(data).to.be.ok
|
|
35
|
+
} catch(error) {
|
|
36
|
+
expect(error.requestId).to.be.ok
|
|
37
|
+
expect(error.code).to.be.ok
|
|
38
|
+
}
|
|
39
|
+
})
|
|
40
|
+
|
|
41
|
+
it("lcic.v20220817.GetWatermark", async function () {
|
|
42
|
+
try {
|
|
43
|
+
const data = await client.GetWatermark({})
|
|
34
44
|
expect(data).to.be.ok
|
|
35
45
|
} catch(error) {
|
|
36
46
|
expect(error.requestId).to.be.ok
|
|
@@ -48,9 +58,9 @@ it("lcic.v20220817.ModifyApp", async function () {
|
|
|
48
58
|
}
|
|
49
59
|
})
|
|
50
60
|
|
|
51
|
-
it("lcic.v20220817.
|
|
61
|
+
it("lcic.v20220817.UnbindDocumentFromRoom", async function () {
|
|
52
62
|
try {
|
|
53
|
-
const data = await client.
|
|
63
|
+
const data = await client.UnbindDocumentFromRoom({})
|
|
54
64
|
expect(data).to.be.ok
|
|
55
65
|
} catch(error) {
|
|
56
66
|
expect(error.requestId).to.be.ok
|
|
@@ -58,9 +68,9 @@ it("lcic.v20220817.SetAppCustomContent", async function () {
|
|
|
58
68
|
}
|
|
59
69
|
})
|
|
60
70
|
|
|
61
|
-
it("lcic.v20220817.
|
|
71
|
+
it("lcic.v20220817.DescribeSdkAppIdUsers", async function () {
|
|
62
72
|
try {
|
|
63
|
-
const data = await client.
|
|
73
|
+
const data = await client.DescribeSdkAppIdUsers({})
|
|
64
74
|
expect(data).to.be.ok
|
|
65
75
|
} catch(error) {
|
|
66
76
|
expect(error.requestId).to.be.ok
|
|
@@ -68,9 +78,9 @@ it("lcic.v20220817.DescribeRoomStatistics", async function () {
|
|
|
68
78
|
}
|
|
69
79
|
})
|
|
70
80
|
|
|
71
|
-
it("lcic.v20220817.
|
|
81
|
+
it("lcic.v20220817.CreateDocument", async function () {
|
|
72
82
|
try {
|
|
73
|
-
const data = await client.
|
|
83
|
+
const data = await client.CreateDocument({})
|
|
74
84
|
expect(data).to.be.ok
|
|
75
85
|
} catch(error) {
|
|
76
86
|
expect(error.requestId).to.be.ok
|
|
@@ -88,9 +98,9 @@ it("lcic.v20220817.ModifyRoom", async function () {
|
|
|
88
98
|
}
|
|
89
99
|
})
|
|
90
100
|
|
|
91
|
-
it("lcic.v20220817.
|
|
101
|
+
it("lcic.v20220817.DescribeUser", async function () {
|
|
92
102
|
try {
|
|
93
|
-
const data = await client.
|
|
103
|
+
const data = await client.DescribeUser({})
|
|
94
104
|
expect(data).to.be.ok
|
|
95
105
|
} catch(error) {
|
|
96
106
|
expect(error.requestId).to.be.ok
|
|
@@ -98,9 +108,9 @@ it("lcic.v20220817.UnbindDocumentFromRoom", async function () {
|
|
|
98
108
|
}
|
|
99
109
|
})
|
|
100
110
|
|
|
101
|
-
it("lcic.v20220817.
|
|
111
|
+
it("lcic.v20220817.BatchRegister", async function () {
|
|
102
112
|
try {
|
|
103
|
-
const data = await client.
|
|
113
|
+
const data = await client.BatchRegister({})
|
|
104
114
|
expect(data).to.be.ok
|
|
105
115
|
} catch(error) {
|
|
106
116
|
expect(error.requestId).to.be.ok
|
|
@@ -108,9 +118,9 @@ it("lcic.v20220817.BindDocumentToRoom", async function () {
|
|
|
108
118
|
}
|
|
109
119
|
})
|
|
110
120
|
|
|
111
|
-
it("lcic.v20220817.
|
|
121
|
+
it("lcic.v20220817.ModifyUserProfile", async function () {
|
|
112
122
|
try {
|
|
113
|
-
const data = await client.
|
|
123
|
+
const data = await client.ModifyUserProfile({})
|
|
114
124
|
expect(data).to.be.ok
|
|
115
125
|
} catch(error) {
|
|
116
126
|
expect(error.requestId).to.be.ok
|
|
@@ -118,9 +128,9 @@ it("lcic.v20220817.LoginOriginId", async function () {
|
|
|
118
128
|
}
|
|
119
129
|
})
|
|
120
130
|
|
|
121
|
-
it("lcic.v20220817.
|
|
131
|
+
it("lcic.v20220817.DescribeRoom", async function () {
|
|
122
132
|
try {
|
|
123
|
-
const data = await client.
|
|
133
|
+
const data = await client.DescribeRoom({})
|
|
124
134
|
expect(data).to.be.ok
|
|
125
135
|
} catch(error) {
|
|
126
136
|
expect(error.requestId).to.be.ok
|
|
@@ -128,9 +138,59 @@ it("lcic.v20220817.DescribeUser", async function () {
|
|
|
128
138
|
}
|
|
129
139
|
})
|
|
130
140
|
|
|
131
|
-
it("lcic.v20220817.
|
|
141
|
+
it("lcic.v20220817.DeleteRecord", async function () {
|
|
132
142
|
try {
|
|
133
|
-
const data = await client.
|
|
143
|
+
const data = await client.DeleteRecord({})
|
|
144
|
+
expect(data).to.be.ok
|
|
145
|
+
} catch(error) {
|
|
146
|
+
expect(error.requestId).to.be.ok
|
|
147
|
+
expect(error.code).to.be.ok
|
|
148
|
+
}
|
|
149
|
+
})
|
|
150
|
+
|
|
151
|
+
it("lcic.v20220817.BatchCreateRoom", async function () {
|
|
152
|
+
try {
|
|
153
|
+
const data = await client.BatchCreateRoom({})
|
|
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
|
+
|
|
161
|
+
it("lcic.v20220817.RegisterUser", async function () {
|
|
162
|
+
try {
|
|
163
|
+
const data = await client.RegisterUser({})
|
|
164
|
+
expect(data).to.be.ok
|
|
165
|
+
} catch(error) {
|
|
166
|
+
expect(error.requestId).to.be.ok
|
|
167
|
+
expect(error.code).to.be.ok
|
|
168
|
+
}
|
|
169
|
+
})
|
|
170
|
+
|
|
171
|
+
it("lcic.v20220817.DescribeRoomStatistics", async function () {
|
|
172
|
+
try {
|
|
173
|
+
const data = await client.DescribeRoomStatistics({})
|
|
174
|
+
expect(data).to.be.ok
|
|
175
|
+
} catch(error) {
|
|
176
|
+
expect(error.requestId).to.be.ok
|
|
177
|
+
expect(error.code).to.be.ok
|
|
178
|
+
}
|
|
179
|
+
})
|
|
180
|
+
|
|
181
|
+
it("lcic.v20220817.BindDocumentToRoom", async function () {
|
|
182
|
+
try {
|
|
183
|
+
const data = await client.BindDocumentToRoom({})
|
|
184
|
+
expect(data).to.be.ok
|
|
185
|
+
} catch(error) {
|
|
186
|
+
expect(error.requestId).to.be.ok
|
|
187
|
+
expect(error.code).to.be.ok
|
|
188
|
+
}
|
|
189
|
+
})
|
|
190
|
+
|
|
191
|
+
it("lcic.v20220817.LoginOriginId", async function () {
|
|
192
|
+
try {
|
|
193
|
+
const data = await client.LoginOriginId({})
|
|
134
194
|
expect(data).to.be.ok
|
|
135
195
|
} catch(error) {
|
|
136
196
|
expect(error.requestId).to.be.ok
|
|
@@ -158,9 +218,9 @@ it("lcic.v20220817.CreateSupervisor", async function () {
|
|
|
158
218
|
}
|
|
159
219
|
})
|
|
160
220
|
|
|
161
|
-
it("lcic.v20220817.
|
|
221
|
+
it("lcic.v20220817.SetAppCustomContent", async function () {
|
|
162
222
|
try {
|
|
163
|
-
const data = await client.
|
|
223
|
+
const data = await client.SetAppCustomContent({})
|
|
164
224
|
expect(data).to.be.ok
|
|
165
225
|
} catch(error) {
|
|
166
226
|
expect(error.requestId).to.be.ok
|
|
@@ -168,9 +228,49 @@ it("lcic.v20220817.RegisterUser", async function () {
|
|
|
168
228
|
}
|
|
169
229
|
})
|
|
170
230
|
|
|
171
|
-
it("lcic.v20220817.
|
|
231
|
+
it("lcic.v20220817.DescribeAppDetail", async function () {
|
|
172
232
|
try {
|
|
173
|
-
const data = await client.
|
|
233
|
+
const data = await client.DescribeAppDetail({})
|
|
234
|
+
expect(data).to.be.ok
|
|
235
|
+
} catch(error) {
|
|
236
|
+
expect(error.requestId).to.be.ok
|
|
237
|
+
expect(error.code).to.be.ok
|
|
238
|
+
}
|
|
239
|
+
})
|
|
240
|
+
|
|
241
|
+
it("lcic.v20220817.DeleteDocument", async function () {
|
|
242
|
+
try {
|
|
243
|
+
const data = await client.DeleteDocument({})
|
|
244
|
+
expect(data).to.be.ok
|
|
245
|
+
} catch(error) {
|
|
246
|
+
expect(error.requestId).to.be.ok
|
|
247
|
+
expect(error.code).to.be.ok
|
|
248
|
+
}
|
|
249
|
+
})
|
|
250
|
+
|
|
251
|
+
it("lcic.v20220817.BatchDeleteRecord", async function () {
|
|
252
|
+
try {
|
|
253
|
+
const data = await client.BatchDeleteRecord({})
|
|
254
|
+
expect(data).to.be.ok
|
|
255
|
+
} catch(error) {
|
|
256
|
+
expect(error.requestId).to.be.ok
|
|
257
|
+
expect(error.code).to.be.ok
|
|
258
|
+
}
|
|
259
|
+
})
|
|
260
|
+
|
|
261
|
+
it("lcic.v20220817.DeleteRoom", async function () {
|
|
262
|
+
try {
|
|
263
|
+
const data = await client.DeleteRoom({})
|
|
264
|
+
expect(data).to.be.ok
|
|
265
|
+
} catch(error) {
|
|
266
|
+
expect(error.requestId).to.be.ok
|
|
267
|
+
expect(error.code).to.be.ok
|
|
268
|
+
}
|
|
269
|
+
})
|
|
270
|
+
|
|
271
|
+
it("lcic.v20220817.DescribeDocument", async function () {
|
|
272
|
+
try {
|
|
273
|
+
const data = await client.DescribeDocument({})
|
|
174
274
|
expect(data).to.be.ok
|
|
175
275
|
} catch(error) {
|
|
176
276
|
expect(error.requestId).to.be.ok
|