tencentcloud-sdk-nodejs 4.0.300 → 4.0.301
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 +71 -0
- package/SERVICE_CHANGELOG.md +93 -333
- package/package.json +1 -1
- package/products.md +4 -4
- package/src/common/sdk_version.ts +1 -1
- package/src/services/ccc/v20200210/ccc_models.ts +12 -0
- package/src/services/ckafka/v20190819/ckafka_client.ts +44 -8
- package/src/services/ckafka/v20190819/ckafka_models.ts +123 -20
- package/src/services/cls/v20201016/cls_client.ts +1 -1
- package/src/services/cls/v20201016/cls_models.ts +5 -5
- package/src/services/cpdp/v20190820/cpdp_client.ts +66 -12
- package/src/services/cpdp/v20190820/cpdp_models.ts +957 -407
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +10 -0
- package/tencentcloud/services/ckafka/v20190819/ckafka_client.d.ts +15 -3
- package/tencentcloud/services/ckafka/v20190819/ckafka_client.js +21 -3
- package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +108 -19
- package/tencentcloud/services/cls/v20201016/cls_client.d.ts +1 -1
- package/tencentcloud/services/cls/v20201016/cls_client.js +1 -1
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +5 -5
- package/tencentcloud/services/cpdp/v20190820/cpdp_client.d.ts +20 -4
- package/tencentcloud/services/cpdp/v20190820/cpdp_client.js +28 -4
- package/tencentcloud/services/cpdp/v20190820/cpdp_models.d.ts +868 -393
- package/test/ckafka.v20190819.test.js +32 -2
- package/test/cpdp.v20190820.test.js +42 -2
|
@@ -178,9 +178,9 @@ it("ckafka.v20190819.DescribeACL", async function () {
|
|
|
178
178
|
}
|
|
179
179
|
})
|
|
180
180
|
|
|
181
|
-
it("ckafka.v20190819.
|
|
181
|
+
it("ckafka.v20190819.CancelAuthorizationToken", async function () {
|
|
182
182
|
try {
|
|
183
|
-
const data = await client.
|
|
183
|
+
const data = await client.CancelAuthorizationToken({})
|
|
184
184
|
expect(data).to.be.ok
|
|
185
185
|
} catch(error) {
|
|
186
186
|
expect(error.requestId).to.be.ok
|
|
@@ -268,6 +268,26 @@ it("ckafka.v20190819.DeleteUser", async function () {
|
|
|
268
268
|
}
|
|
269
269
|
})
|
|
270
270
|
|
|
271
|
+
it("ckafka.v20190819.CreateToken", async function () {
|
|
272
|
+
try {
|
|
273
|
+
const data = await client.CreateToken({})
|
|
274
|
+
expect(data).to.be.ok
|
|
275
|
+
} catch(error) {
|
|
276
|
+
expect(error.requestId).to.be.ok
|
|
277
|
+
expect(error.code).to.be.ok
|
|
278
|
+
}
|
|
279
|
+
})
|
|
280
|
+
|
|
281
|
+
it("ckafka.v20190819.DescribeTopicDetail", async function () {
|
|
282
|
+
try {
|
|
283
|
+
const data = await client.DescribeTopicDetail({})
|
|
284
|
+
expect(data).to.be.ok
|
|
285
|
+
} catch(error) {
|
|
286
|
+
expect(error.requestId).to.be.ok
|
|
287
|
+
expect(error.code).to.be.ok
|
|
288
|
+
}
|
|
289
|
+
})
|
|
290
|
+
|
|
271
291
|
it("ckafka.v20190819.DeleteAcl", async function () {
|
|
272
292
|
try {
|
|
273
293
|
const data = await client.DeleteAcl({})
|
|
@@ -388,6 +408,16 @@ it("ckafka.v20190819.DescribeGroupOffsets", async function () {
|
|
|
388
408
|
}
|
|
389
409
|
})
|
|
390
410
|
|
|
411
|
+
it("ckafka.v20190819.AuthorizeToken", async function () {
|
|
412
|
+
try {
|
|
413
|
+
const data = await client.AuthorizeToken({})
|
|
414
|
+
expect(data).to.be.ok
|
|
415
|
+
} catch(error) {
|
|
416
|
+
expect(error.requestId).to.be.ok
|
|
417
|
+
expect(error.code).to.be.ok
|
|
418
|
+
}
|
|
419
|
+
})
|
|
420
|
+
|
|
391
421
|
it("ckafka.v20190819.DescribeTopic", async function () {
|
|
392
422
|
try {
|
|
393
423
|
const data = await client.DescribeTopic({})
|
|
@@ -38,6 +38,16 @@ it("cpdp.v20190820.DistributeAccreditQuery", async function () {
|
|
|
38
38
|
}
|
|
39
39
|
})
|
|
40
40
|
|
|
41
|
+
it("cpdp.v20190820.QueryMemberTransactionDetails", async function () {
|
|
42
|
+
try {
|
|
43
|
+
const data = await client.QueryMemberTransactionDetails({})
|
|
44
|
+
expect(data).to.be.ok
|
|
45
|
+
} catch(error) {
|
|
46
|
+
expect(error.requestId).to.be.ok
|
|
47
|
+
expect(error.code).to.be.ok
|
|
48
|
+
}
|
|
49
|
+
})
|
|
50
|
+
|
|
41
51
|
it("cpdp.v20190820.ModifyAgentTaxPaymentInfo", async function () {
|
|
42
52
|
try {
|
|
43
53
|
const data = await client.ModifyAgentTaxPaymentInfo({})
|
|
@@ -368,6 +378,16 @@ it("cpdp.v20190820.RefundTlinxOrder", async function () {
|
|
|
368
378
|
}
|
|
369
379
|
})
|
|
370
380
|
|
|
381
|
+
it("cpdp.v20190820.UnBindAcct", async function () {
|
|
382
|
+
try {
|
|
383
|
+
const data = await client.UnBindAcct({})
|
|
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
|
+
|
|
371
391
|
it("cpdp.v20190820.DescribeChargeDetail", async function () {
|
|
372
392
|
try {
|
|
373
393
|
const data = await client.DescribeChargeDetail({})
|
|
@@ -598,9 +618,19 @@ it("cpdp.v20190820.QueryAcctInfo", async function () {
|
|
|
598
618
|
}
|
|
599
619
|
})
|
|
600
620
|
|
|
601
|
-
it("cpdp.v20190820.
|
|
621
|
+
it("cpdp.v20190820.ApplyReconciliationFile", async function () {
|
|
602
622
|
try {
|
|
603
|
-
const data = await client.
|
|
623
|
+
const data = await client.ApplyReconciliationFile({})
|
|
624
|
+
expect(data).to.be.ok
|
|
625
|
+
} catch(error) {
|
|
626
|
+
expect(error.requestId).to.be.ok
|
|
627
|
+
expect(error.code).to.be.ok
|
|
628
|
+
}
|
|
629
|
+
})
|
|
630
|
+
|
|
631
|
+
it("cpdp.v20190820.QueryReconciliationFileApplyInfo", async function () {
|
|
632
|
+
try {
|
|
633
|
+
const data = await client.QueryReconciliationFileApplyInfo({})
|
|
604
634
|
expect(data).to.be.ok
|
|
605
635
|
} catch(error) {
|
|
606
636
|
expect(error.requestId).to.be.ok
|
|
@@ -858,6 +888,16 @@ it("cpdp.v20190820.QueryAcctBinding", async function () {
|
|
|
858
888
|
}
|
|
859
889
|
})
|
|
860
890
|
|
|
891
|
+
it("cpdp.v20190820.QueryFundsTransactionDetails", async function () {
|
|
892
|
+
try {
|
|
893
|
+
const data = await client.QueryFundsTransactionDetails({})
|
|
894
|
+
expect(data).to.be.ok
|
|
895
|
+
} catch(error) {
|
|
896
|
+
expect(error.requestId).to.be.ok
|
|
897
|
+
expect(error.code).to.be.ok
|
|
898
|
+
}
|
|
899
|
+
})
|
|
900
|
+
|
|
861
901
|
it("cpdp.v20190820.ApplyReWithdrawal", async function () {
|
|
862
902
|
try {
|
|
863
903
|
const data = await client.ApplyReWithdrawal({})
|