tencentcloud-sdk-nodejs-ims 4.0.521 → 4.0.522

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.
@@ -1,5 +1,5 @@
1
1
  import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
2
- import { DescribeImageStatRequest, ImageModerationResponse, ImageModerationRequest, DescribeImsListResponse, DescribeImageStatResponse, DescribeImsListRequest } from "./ims_models";
2
+ import { ImageModerationRequest, ImageModerationResponse } from "./ims_models";
3
3
  /**
4
4
  * ims client
5
5
  * @class
@@ -26,12 +26,4 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
26
26
  </div>
27
27
  */
28
28
  ImageModeration(req: ImageModerationRequest, cb?: (error: string, rep: ImageModerationResponse) => void): Promise<ImageModerationResponse>;
29
- /**
30
- * 图片机器审核明细
31
- */
32
- DescribeImsList(req: DescribeImsListRequest, cb?: (error: string, rep: DescribeImsListResponse) => void): Promise<DescribeImsListResponse>;
33
- /**
34
- * 控制台识别统计
35
- */
36
- DescribeImageStat(req: DescribeImageStatRequest, cb?: (error: string, rep: DescribeImageStatResponse) => void): Promise<DescribeImageStatResponse>;
37
29
  }
@@ -49,17 +49,5 @@ class Client extends TencentCloudCommon.AbstractClient {
49
49
  async ImageModeration(req, cb) {
50
50
  return this.request("ImageModeration", req, cb);
51
51
  }
52
- /**
53
- * 图片机器审核明细
54
- */
55
- async DescribeImsList(req, cb) {
56
- return this.request("DescribeImsList", req, cb);
57
- }
58
- /**
59
- * 控制台识别统计
60
- */
61
- async DescribeImageStat(req, cb) {
62
- return this.request("DescribeImageStat", req, cb);
63
- }
64
52
  }
65
53
  exports.Client = Client;