tencentcloud-sdk-nodejs-wsa 4.1.173 → 4.1.239

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-wsa",
3
- "version": "4.1.173",
3
+ "version": "4.1.239",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -3,34 +3,31 @@
3
3
  */
4
4
  export interface SearchProRequest {
5
5
  /**
6
- * 搜索词
6
+ * <p>搜索词</p>
7
7
  */
8
8
  Query: string;
9
9
  /**
10
- * 返回结果类型,0-自然检索结果(默认),1-多模态VR结果,2-混合结果(多模态VR结果+自然检索结果)
10
+ * <p>返回结果类型,0-自然检索结果(默认),1-多模态VR结果,2-混合结果(多模态VR结果+自然检索结果)</p>
11
11
  */
12
12
  Mode?: number;
13
13
  /**
14
- * 指定域名站内搜索(用于过滤自然检索结果)
15
- 注意: mode=1模式下,参数无效;mode=0模式下,对所有结果生效;mode=2模式下,对输出的自然结果生效
14
+ * <p>指定域名站内搜索(用于过滤自然检索结果)<br>注意: mode=1模式下,参数无效;mode=0模式下,对所有结果生效;mode=2模式下,对输出的自然结果生效</p>
16
15
  */
17
16
  Site?: string;
18
17
  /**
19
- * 起始时间(用于过滤自然检索结果),精确到秒时间戳格式
20
- 注意: mode=1模式下,参数无效;mode=0模式下,对所有结果生效;mode=2模式下,对输出的自然结果生效
18
+ * <p>起始时间(用于过滤自然检索结果),精确到秒时间戳格式<br>注意: mode=1模式下,参数无效;mode=0模式下,对所有结果生效;mode=2模式下,对输出的自然结果生效</p>
21
19
  */
22
20
  FromTime?: number;
23
21
  /**
24
- * 结束时间(用于过滤自然检索结果),精确到秒时间戳格式
25
- 注意:mode=1模式下,参数无效;mode=0模式下,对所有结果生效;mode=2模式下,对输出的自然结果生效
22
+ * <p>结束时间(用于过滤自然检索结果),精确到秒时间戳格式<br>注意:mode=1模式下,参数无效;mode=0模式下,对所有结果生效;mode=2模式下,对输出的自然结果生效</p>
26
23
  */
27
24
  ToTime?: number;
28
25
  /**
29
- * cnt=10/20/30/40/50,最多可支持返回50条搜索结果,**仅限尊享版使用**
26
+ * <p>cnt=10/20/30/40/50,最多可支持返回50条搜索结果,<strong>仅限尊享版使用</strong></p>
30
27
  */
31
28
  Cnt?: number;
32
29
  /**
33
- * Industry=gov/news/acad/finance,对应党政机关、权威媒体、学术(英文)、金融,**仅限尊享版使用**
30
+ * <p>Industry=gov/news/acad/finance,对应党政机关、权威媒体、学术(英文)、金融,<strong>仅限尊享版使用</strong></p>
34
31
  */
35
32
  Industry?: string;
36
33
  }
@@ -39,28 +36,19 @@ export interface SearchProRequest {
39
36
  */
40
37
  export interface SearchProResponse {
41
38
  /**
42
- * 原始查询语
39
+ * <p>原始查询语</p>
43
40
  */
44
41
  Query?: string;
45
42
  /**
46
- * 搜索结果页面详情,格式为json字符串。
47
- title:结果标题
48
- date:内容发布时间
49
- url:内容发布源url
50
- passage:标准摘要
51
- content:动态摘要 (尊享版字段)
52
- site:网站名称,部分不知名站点结果可能为空
53
- score:相关性得分,取值0~1,越靠近1表示越相关
54
- images:图片列表
55
- favicon:网站图标链接,部分不知名站点结果可能为空
43
+ * <p>搜索结果页面详情,格式为json字符串。<br>title:结果标题<br>date:内容发布时间<br>url:内容发布源url<br>passage:标准摘要<br>content:动态摘要 (尊享版字段)<br>site:网站名称,部分不知名站点结果可能为空<br>score:相关性得分,取值0~1,越靠近1表示越相关<br>images:图片列表<br>favicon:网站图标链接,部分不知名站点结果可能为空</p>
56
44
  */
57
45
  Pages?: Array<string>;
58
46
  /**
59
- * 用户版本:standard/premium/lite
47
+ * <p>用户版本:standard/premium/lite/flagship</p>
60
48
  */
61
49
  Version?: string;
62
50
  /**
63
- * 提示信息
51
+ * <p>提示信息</p>
64
52
  */
65
53
  Msg?: string;
66
54
  /**