alibabacloud-iqs20241111 1.4.0__py3-none-any.whl → 1.4.1__py3-none-any.whl

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 +1 @@
1
- __version__ = '1.4.0'
1
+ __version__ = '1.4.1'
@@ -1,7 +1,7 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  # This file is auto-generated, don't edit it. Thanks.
3
3
  from Tea.model import TeaModel
4
- from typing import List, Dict
4
+ from typing import List, Dict, Any
5
5
 
6
6
 
7
7
  class AISearchQuery(TeaModel):
@@ -1020,8 +1020,10 @@ class SearchCredits(TeaModel):
1020
1020
  def __init__(
1021
1021
  self,
1022
1022
  generic_text_search: int = None,
1023
+ lite_advanced_text_search: int = None,
1023
1024
  ):
1024
1025
  self.generic_text_search = generic_text_search
1026
+ self.lite_advanced_text_search = lite_advanced_text_search
1025
1027
 
1026
1028
  def validate(self):
1027
1029
  pass
@@ -1034,12 +1036,16 @@ class SearchCredits(TeaModel):
1034
1036
  result = dict()
1035
1037
  if self.generic_text_search is not None:
1036
1038
  result['genericTextSearch'] = self.generic_text_search
1039
+ if self.lite_advanced_text_search is not None:
1040
+ result['liteAdvancedTextSearch'] = self.lite_advanced_text_search
1037
1041
  return result
1038
1042
 
1039
1043
  def from_map(self, m: dict = None):
1040
1044
  m = m or dict()
1041
1045
  if m.get('genericTextSearch') is not None:
1042
1046
  self.generic_text_search = m.get('genericTextSearch')
1047
+ if m.get('liteAdvancedTextSearch') is not None:
1048
+ self.lite_advanced_text_search = m.get('liteAdvancedTextSearch')
1043
1049
  return self
1044
1050
 
1045
1051
 
@@ -1150,6 +1156,7 @@ class UnifiedOriginalQuery(TeaModel):
1150
1156
  class UnifiedPageItem(TeaModel):
1151
1157
  def __init__(
1152
1158
  self,
1159
+ host_authority_score: float = None,
1153
1160
  host_logo: str = None,
1154
1161
  hostname: str = None,
1155
1162
  images: List[str] = None,
@@ -1162,6 +1169,7 @@ class UnifiedPageItem(TeaModel):
1162
1169
  summary: str = None,
1163
1170
  title: str = None,
1164
1171
  ):
1172
+ self.host_authority_score = host_authority_score
1165
1173
  self.host_logo = host_logo
1166
1174
  self.hostname = hostname
1167
1175
  self.images = images
@@ -1183,6 +1191,8 @@ class UnifiedPageItem(TeaModel):
1183
1191
  return _map
1184
1192
 
1185
1193
  result = dict()
1194
+ if self.host_authority_score is not None:
1195
+ result['hostAuthorityScore'] = self.host_authority_score
1186
1196
  if self.host_logo is not None:
1187
1197
  result['hostLogo'] = self.host_logo
1188
1198
  if self.hostname is not None:
@@ -1209,6 +1219,8 @@ class UnifiedPageItem(TeaModel):
1209
1219
 
1210
1220
  def from_map(self, m: dict = None):
1211
1221
  m = m or dict()
1222
+ if m.get('hostAuthorityScore') is not None:
1223
+ self.host_authority_score = m.get('hostAuthorityScore')
1212
1224
  if m.get('hostLogo') is not None:
1213
1225
  self.host_logo = m.get('hostLogo')
1214
1226
  if m.get('hostname') is not None:
@@ -1374,6 +1386,7 @@ class UnifiedSearchInformation(TeaModel):
1374
1386
  class UnifiedSearchInput(TeaModel):
1375
1387
  def __init__(
1376
1388
  self,
1389
+ advanced_params: Dict[str, Any] = None,
1377
1390
  category: str = None,
1378
1391
  contents: RequestContents = None,
1379
1392
  engine_type: str = None,
@@ -1381,6 +1394,7 @@ class UnifiedSearchInput(TeaModel):
1381
1394
  query: str = None,
1382
1395
  time_range: str = None,
1383
1396
  ):
1397
+ self.advanced_params = advanced_params
1384
1398
  self.category = category
1385
1399
  self.contents = contents
1386
1400
  self.engine_type = engine_type
@@ -1398,6 +1412,8 @@ class UnifiedSearchInput(TeaModel):
1398
1412
  return _map
1399
1413
 
1400
1414
  result = dict()
1415
+ if self.advanced_params is not None:
1416
+ result['advancedParams'] = self.advanced_params
1401
1417
  if self.category is not None:
1402
1418
  result['category'] = self.category
1403
1419
  if self.contents is not None:
@@ -1414,6 +1430,8 @@ class UnifiedSearchInput(TeaModel):
1414
1430
 
1415
1431
  def from_map(self, m: dict = None):
1416
1432
  m = m or dict()
1433
+ if m.get('advancedParams') is not None:
1434
+ self.advanced_params = m.get('advancedParams')
1417
1435
  if m.get('category') is not None:
1418
1436
  self.category = m.get('category')
1419
1437
  if m.get('contents') is not None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-iqs20241111
3
- Version: 1.4.0
3
+ Version: 1.4.1
4
4
  Summary: Alibaba Cloud IQS (20241111) SDK Library for Python
5
5
  Home-page: https://github.com/aliyun/alibabacloud-python-sdk
6
6
  Author: Alibaba Cloud SDK
@@ -23,7 +23,7 @@ Description-Content-Type: text/markdown
23
23
  License-File: LICENSE
24
24
  Requires-Dist: alibabacloud-endpoint-util (<1.0.0,>=0.0.4)
25
25
  Requires-Dist: alibabacloud-openapi-util (<1.0.0,>=0.2.2)
26
- Requires-Dist: alibabacloud-tea-openapi (<1.0.0,>=0.3.15)
26
+ Requires-Dist: alibabacloud-tea-openapi (<1.0.0,>=0.3.16)
27
27
  Requires-Dist: alibabacloud-tea-util (<1.0.0,>=0.3.13)
28
28
 
29
29
  English | [简体中文](README-CN.md)
@@ -0,0 +1,8 @@
1
+ alibabacloud_iqs20241111/__init__.py,sha256=qltunaLfNeX0B2L2BSablXuwOixybn61iaD9JN2tJTs,21
2
+ alibabacloud_iqs20241111/client.py,sha256=v6vmWALnK3gNHXyAqZy6WKv9w71HcUl1OZkRzFiXz6M,27140
3
+ alibabacloud_iqs20241111/models.py,sha256=z_n0MjTe_-KpBfSWnlc0Lerd_83-EF-i5c9WUAlohro,70319
4
+ alibabacloud_iqs20241111-1.4.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
5
+ alibabacloud_iqs20241111-1.4.1.dist-info/METADATA,sha256=ANwNVic0VMOcKSZZJMN6xISfLtZngjAJhOovtBKHg2E,2312
6
+ alibabacloud_iqs20241111-1.4.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
7
+ alibabacloud_iqs20241111-1.4.1.dist-info/top_level.txt,sha256=DCTUMSkrMH7RuTTLUEqGJeM2_EXN79YXzwpAtYbk-bU,25
8
+ alibabacloud_iqs20241111-1.4.1.dist-info/RECORD,,
@@ -1,8 +0,0 @@
1
- alibabacloud_iqs20241111/__init__.py,sha256=R4yO1-T_1mGmXG30xDxIA44z6cxCh-PK6l33V9MTqxk,21
2
- alibabacloud_iqs20241111/client.py,sha256=v6vmWALnK3gNHXyAqZy6WKv9w71HcUl1OZkRzFiXz6M,27140
3
- alibabacloud_iqs20241111/models.py,sha256=Laub50mPT6Ql0EWZn_8KfUM_kR-U4Bjea42ZepRtyaY,69287
4
- alibabacloud_iqs20241111-1.4.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
5
- alibabacloud_iqs20241111-1.4.0.dist-info/METADATA,sha256=rkIidfCYedf5fAHwty6jY2CA5rg2oW9rjgcunmQ7Uz8,2312
6
- alibabacloud_iqs20241111-1.4.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
7
- alibabacloud_iqs20241111-1.4.0.dist-info/top_level.txt,sha256=DCTUMSkrMH7RuTTLUEqGJeM2_EXN79YXzwpAtYbk-bU,25
8
- alibabacloud_iqs20241111-1.4.0.dist-info/RECORD,,