wordlift-client 1.109.0__py3-none-any.whl → 1.110.0__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.
- wordlift_client/__init__.py +1 -1
- wordlift_client/api_client.py +1 -1
- wordlift_client/configuration.py +1 -1
- wordlift_client/models/web_page_import_response.py +4 -2
- {wordlift_client-1.109.0.dist-info → wordlift_client-1.110.0.dist-info}/METADATA +1 -1
- {wordlift_client-1.109.0.dist-info → wordlift_client-1.110.0.dist-info}/RECORD +9 -9
- {wordlift_client-1.109.0.dist-info → wordlift_client-1.110.0.dist-info}/LICENSE +0 -0
- {wordlift_client-1.109.0.dist-info → wordlift_client-1.110.0.dist-info}/WHEEL +0 -0
- {wordlift_client-1.109.0.dist-info → wordlift_client-1.110.0.dist-info}/top_level.txt +0 -0
wordlift_client/__init__.py
CHANGED
wordlift_client/api_client.py
CHANGED
|
@@ -89,7 +89,7 @@ class ApiClient:
|
|
|
89
89
|
self.default_headers[header_name] = header_value
|
|
90
90
|
self.cookie = cookie
|
|
91
91
|
# Set default User-Agent.
|
|
92
|
-
self.user_agent = 'OpenAPI-Generator/1.
|
|
92
|
+
self.user_agent = 'OpenAPI-Generator/1.110.0/python'
|
|
93
93
|
self.client_side_validation = configuration.client_side_validation
|
|
94
94
|
|
|
95
95
|
async def __aenter__(self):
|
wordlift_client/configuration.py
CHANGED
|
@@ -426,7 +426,7 @@ conf = wordlift_client.Configuration(
|
|
|
426
426
|
"OS: {env}\n"\
|
|
427
427
|
"Python Version: {pyversion}\n"\
|
|
428
428
|
"Version of the API: 1.0\n"\
|
|
429
|
-
"SDK Package Version: 1.
|
|
429
|
+
"SDK Package Version: 1.110.0".\
|
|
430
430
|
format(env=sys.platform, pyversion=sys.version)
|
|
431
431
|
|
|
432
432
|
def get_host_settings(self):
|
|
@@ -18,7 +18,7 @@ import pprint
|
|
|
18
18
|
import re # noqa: F401
|
|
19
19
|
import json
|
|
20
20
|
|
|
21
|
-
from pydantic import BaseModel, ConfigDict, StrictStr
|
|
21
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
22
22
|
from typing import Any, ClassVar, Dict, List
|
|
23
23
|
from wordlift_client.models.web_page import WebPage
|
|
24
24
|
from typing import Optional, Set
|
|
@@ -28,9 +28,10 @@ class WebPageImportResponse(BaseModel):
|
|
|
28
28
|
"""
|
|
29
29
|
Web Page Import Response
|
|
30
30
|
""" # noqa: E501
|
|
31
|
+
id: StrictStr = Field(description="The id/iri of the web page in the Graph.")
|
|
31
32
|
model: StrictStr
|
|
32
33
|
web_page: WebPage
|
|
33
|
-
__properties: ClassVar[List[str]] = ["model", "web_page"]
|
|
34
|
+
__properties: ClassVar[List[str]] = ["id", "model", "web_page"]
|
|
34
35
|
|
|
35
36
|
model_config = ConfigDict(
|
|
36
37
|
populate_by_name=True,
|
|
@@ -86,6 +87,7 @@ class WebPageImportResponse(BaseModel):
|
|
|
86
87
|
return cls.model_validate(obj)
|
|
87
88
|
|
|
88
89
|
_obj = cls.model_validate({
|
|
90
|
+
"id": obj.get("id"),
|
|
89
91
|
"model": obj.get("model"),
|
|
90
92
|
"web_page": WebPage.from_dict(obj["web_page"]) if obj.get("web_page") is not None else None
|
|
91
93
|
})
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
wordlift_client/__init__.py,sha256=
|
|
2
|
-
wordlift_client/api_client.py,sha256=
|
|
1
|
+
wordlift_client/__init__.py,sha256=Ha8ErVb4uFj4qqCVi2HVaMsVkzzM3KKwQzhOqC0GVNE,18735
|
|
2
|
+
wordlift_client/api_client.py,sha256=lIU8xinqvNtDefOEcQJZF_qyNhVPZbRSoJc6gdsSWUw,26397
|
|
3
3
|
wordlift_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
-
wordlift_client/configuration.py,sha256=
|
|
4
|
+
wordlift_client/configuration.py,sha256=UN6a2tH9HwXGYvQEgVzqWX2Glfnp7Ud8fp4o1Wsn4kA,15932
|
|
5
5
|
wordlift_client/exceptions.py,sha256=KvTu-E964XhAzMXOSfVycfOL1Eeraob5bgD4CfElD7M,5912
|
|
6
6
|
wordlift_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
wordlift_client/rest.py,sha256=3D4hicZkeSFLxmhmgnlH63K7P39ToGyPk_3aQlHGznI,6817
|
|
@@ -244,7 +244,7 @@ wordlift_client/models/vector_search_question_response_item.py,sha256=5QHi3pKqyg
|
|
|
244
244
|
wordlift_client/models/web_async.py,sha256=FGUyO30Ad5aaSZCNGlfa9QSese6kMKGIycZrO8hrznA,3162
|
|
245
245
|
wordlift_client/models/web_page.py,sha256=PqCZtUlpg0-GWYyPlFzSl02LQXoqY8RNpATnn6NaGKg,3196
|
|
246
246
|
wordlift_client/models/web_page_import_request.py,sha256=FA1DHrhqXPVUy3W4cVFGsZ1YIB3pBpdkMZ1Wr4xPCw0,3945
|
|
247
|
-
wordlift_client/models/web_page_import_response.py,sha256=
|
|
247
|
+
wordlift_client/models/web_page_import_response.py,sha256=QtfeCarnH3--yntOxA2RuKWsZgKMiOea7oOTU3Awvgw,2935
|
|
248
248
|
wordlift_client/models/webpage_properties.py,sha256=OFKuE3fd881U37yBAcfCc9ZJnlIVd0Y-V5cNguqzMj0,2664
|
|
249
249
|
wordlift_client/models/website.py,sha256=SWK6iGit88xYzxM8h7eaf5YK4czzXmyMFpZo5lsBUTc,2478
|
|
250
250
|
wordlift_client/models/website_search.py,sha256=T6Ccf5VN1LekJW6WnMS7IUydpcpZgmifL2myjEaGl6o,3408
|
|
@@ -255,8 +255,8 @@ wordlift_client/models/with_limits.py,sha256=9I6-JNIb8pgUfVUegNqTc3YNx0micXUTpDo
|
|
|
255
255
|
wordlift_client/models/word.py,sha256=FPCGb6ohwdfydE5_qG4PT-UrnMzaTktAWqEEnezwaso,3922
|
|
256
256
|
wordlift_client/models/word_repetition_data.py,sha256=CQnxCnhakt12czl6a_AQIPgHlJtvR9YGBIjGV22rq14,2659
|
|
257
257
|
wordlift_client/models/word_request.py,sha256=ZD13xNRYCZmF14jxEDrRRyEMAd-quDT-HsqkbUP_xWU,2627
|
|
258
|
-
wordlift_client-1.
|
|
259
|
-
wordlift_client-1.
|
|
260
|
-
wordlift_client-1.
|
|
261
|
-
wordlift_client-1.
|
|
262
|
-
wordlift_client-1.
|
|
258
|
+
wordlift_client-1.110.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
259
|
+
wordlift_client-1.110.0.dist-info/METADATA,sha256=IdDtJ4Cnv-URHHvOIjNdQlTwKaILMSdvg92SNQu0Ufk,530
|
|
260
|
+
wordlift_client-1.110.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
261
|
+
wordlift_client-1.110.0.dist-info/top_level.txt,sha256=p7KFYU869ksxkpP7ADvg8baPgWkTYCzcOpDl1qrJdHk,16
|
|
262
|
+
wordlift_client-1.110.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|