alibabacloud-iqs20241111 1.4.0__tar.gz → 1.4.2__tar.gz
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.
- {alibabacloud_iqs20241111-1.4.0 → alibabacloud_iqs20241111-1.4.2}/ChangeLog.md +7 -0
- {alibabacloud_iqs20241111-1.4.0 → alibabacloud_iqs20241111-1.4.2}/PKG-INFO +1 -1
- alibabacloud_iqs20241111-1.4.2/alibabacloud_iqs20241111/__init__.py +1 -0
- {alibabacloud_iqs20241111-1.4.0 → alibabacloud_iqs20241111-1.4.2}/alibabacloud_iqs20241111/models.py +19 -1
- {alibabacloud_iqs20241111-1.4.0 → alibabacloud_iqs20241111-1.4.2}/alibabacloud_iqs20241111.egg-info/PKG-INFO +1 -1
- {alibabacloud_iqs20241111-1.4.0 → alibabacloud_iqs20241111-1.4.2}/alibabacloud_iqs20241111.egg-info/requires.txt +1 -1
- {alibabacloud_iqs20241111-1.4.0 → alibabacloud_iqs20241111-1.4.2}/setup.py +2 -2
- alibabacloud_iqs20241111-1.4.0/alibabacloud_iqs20241111/__init__.py +0 -1
- {alibabacloud_iqs20241111-1.4.0 → alibabacloud_iqs20241111-1.4.2}/LICENSE +0 -0
- {alibabacloud_iqs20241111-1.4.0 → alibabacloud_iqs20241111-1.4.2}/MANIFEST.in +0 -0
- {alibabacloud_iqs20241111-1.4.0 → alibabacloud_iqs20241111-1.4.2}/README-CN.md +0 -0
- {alibabacloud_iqs20241111-1.4.0 → alibabacloud_iqs20241111-1.4.2}/README.md +0 -0
- {alibabacloud_iqs20241111-1.4.0 → alibabacloud_iqs20241111-1.4.2}/alibabacloud_iqs20241111/client.py +0 -0
- {alibabacloud_iqs20241111-1.4.0 → alibabacloud_iqs20241111-1.4.2}/alibabacloud_iqs20241111.egg-info/SOURCES.txt +0 -0
- {alibabacloud_iqs20241111-1.4.0 → alibabacloud_iqs20241111-1.4.2}/alibabacloud_iqs20241111.egg-info/dependency_links.txt +0 -0
- {alibabacloud_iqs20241111-1.4.0 → alibabacloud_iqs20241111-1.4.2}/alibabacloud_iqs20241111.egg-info/top_level.txt +0 -0
- {alibabacloud_iqs20241111-1.4.0 → alibabacloud_iqs20241111-1.4.2}/setup.cfg +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '1.4.2'
|
{alibabacloud_iqs20241111-1.4.0 → alibabacloud_iqs20241111-1.4.2}/alibabacloud_iqs20241111/models.py
RENAMED
|
@@ -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:
|
|
@@ -24,7 +24,7 @@ from setuptools import setup, find_packages
|
|
|
24
24
|
"""
|
|
25
25
|
setup module for alibabacloud_iqs20241111.
|
|
26
26
|
|
|
27
|
-
Created on
|
|
27
|
+
Created on 08/09/2025
|
|
28
28
|
|
|
29
29
|
@author: Alibaba Cloud SDK
|
|
30
30
|
"""
|
|
@@ -38,7 +38,7 @@ URL = "https://github.com/aliyun/alibabacloud-python-sdk"
|
|
|
38
38
|
VERSION = __import__(PACKAGE).__version__
|
|
39
39
|
REQUIRES = [
|
|
40
40
|
"alibabacloud_tea_util>=0.3.13, <1.0.0",
|
|
41
|
-
"alibabacloud_tea_openapi>=0.3.
|
|
41
|
+
"alibabacloud_tea_openapi>=0.3.16, <1.0.0",
|
|
42
42
|
"alibabacloud_openapi_util>=0.2.2, <1.0.0",
|
|
43
43
|
"alibabacloud_endpoint_util>=0.0.4, <1.0.0"
|
|
44
44
|
]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '1.4.0'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{alibabacloud_iqs20241111-1.4.0 → alibabacloud_iqs20241111-1.4.2}/alibabacloud_iqs20241111/client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|