tencentcloud-sdk-nodejs 4.0.780 → 4.0.782
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 +163 -0
- package/SERVICE_CHANGELOG.md +406 -48
- package/package.json +1 -1
- package/products.md +14 -14
- package/src/common/sdk_version.ts +1 -1
- package/src/services/dbbrain/v20210527/dbbrain_models.ts +15 -2
- package/src/services/ess/v20201111/ess_client.ts +65 -10
- package/src/services/ess/v20201111/ess_models.ts +68 -12
- package/src/services/essbasic/v20210526/essbasic_client.ts +5 -6
- package/src/services/essbasic/v20210526/essbasic_models.ts +53 -9
- package/src/services/monitor/v20180724/monitor_models.ts +2 -2
- package/src/services/ocr/v20181119/ocr_client.ts +21 -9
- package/src/services/ocr/v20181119/ocr_models.ts +72 -1
- package/src/services/teo/v20220901/teo_models.ts +5 -3
- package/src/services/tsf/v20180326/tsf_models.ts +13 -8
- package/src/services/wedata/v20210820/wedata_client.ts +0 -14
- package/src/services/wedata/v20210820/wedata_models.ts +0 -24
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/dbbrain/v20210527/dbbrain_models.d.ts +15 -2
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +64 -9
- package/tencentcloud/services/ess/v20201111/ess_client.js +64 -9
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +68 -12
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +5 -6
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +5 -6
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +53 -9
- package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +2 -2
- package/tencentcloud/services/ocr/v20181119/ocr_client.d.ts +9 -5
- package/tencentcloud/services/ocr/v20181119/ocr_client.js +11 -5
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +70 -1
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +5 -3
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +13 -8
- package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +1 -7
- package/tencentcloud/services/wedata/v20210820/wedata_client.js +0 -8
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +0 -22
- package/test/ocr.v20181119.test.js +12 -2
- package/test/wedata.v20210820.test.js +0 -10
|
@@ -208,6 +208,16 @@ it("ocr.v20181119.QuotaInvoiceOCR", async function () {
|
|
|
208
208
|
}
|
|
209
209
|
})
|
|
210
210
|
|
|
211
|
+
it("ocr.v20181119.WaybillOCR", async function () {
|
|
212
|
+
try {
|
|
213
|
+
const data = await client.WaybillOCR({})
|
|
214
|
+
expect(data).to.be.ok
|
|
215
|
+
} catch(error) {
|
|
216
|
+
expect(error.requestId).to.be.ok
|
|
217
|
+
expect(error.code).to.be.ok
|
|
218
|
+
}
|
|
219
|
+
})
|
|
220
|
+
|
|
211
221
|
it("ocr.v20181119.RecognizePhilippinesUMIDOCR", async function () {
|
|
212
222
|
try {
|
|
213
223
|
const data = await client.RecognizePhilippinesUMIDOCR({})
|
|
@@ -268,9 +278,9 @@ it("ocr.v20181119.GeneralHandwritingOCR", async function () {
|
|
|
268
278
|
}
|
|
269
279
|
})
|
|
270
280
|
|
|
271
|
-
it("ocr.v20181119.
|
|
281
|
+
it("ocr.v20181119.RecognizeForeignPermanentResidentIdCard", async function () {
|
|
272
282
|
try {
|
|
273
|
-
const data = await client.
|
|
283
|
+
const data = await client.RecognizeForeignPermanentResidentIdCard({})
|
|
274
284
|
expect(data).to.be.ok
|
|
275
285
|
} catch(error) {
|
|
276
286
|
expect(error.requestId).to.be.ok
|
|
@@ -3038,16 +3038,6 @@ it("wedata.v20210820.DescribeTableMeta", async function () {
|
|
|
3038
3038
|
}
|
|
3039
3039
|
})
|
|
3040
3040
|
|
|
3041
|
-
it("wedata.v20210820.DescribeKafkaTopicInfo", async function () {
|
|
3042
|
-
try {
|
|
3043
|
-
const data = await client.DescribeKafkaTopicInfo({})
|
|
3044
|
-
expect(data).to.be.ok
|
|
3045
|
-
} catch(error) {
|
|
3046
|
-
expect(error.requestId).to.be.ok
|
|
3047
|
-
expect(error.code).to.be.ok
|
|
3048
|
-
}
|
|
3049
|
-
})
|
|
3050
|
-
|
|
3051
3041
|
it("wedata.v20210820.GetIntegrationNodeColumnSchema", async function () {
|
|
3052
3042
|
try {
|
|
3053
3043
|
const data = await client.GetIntegrationNodeColumnSchema({})
|