wordlift-client 1.131.0__py3-none-any.whl → 1.132.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 -4
- wordlift_client/api/__init__.py +0 -1
- wordlift_client/api_client.py +1 -1
- wordlift_client/configuration.py +1 -1
- wordlift_client/models/__init__.py +0 -2
- {wordlift_client-1.131.0.dist-info → wordlift_client-1.132.0.dist-info}/METADATA +1 -1
- {wordlift_client-1.131.0.dist-info → wordlift_client-1.132.0.dist-info}/RECORD +10 -10
- {wordlift_client-1.131.0.dist-info → wordlift_client-1.132.0.dist-info}/LICENSE +0 -0
- {wordlift_client-1.131.0.dist-info → wordlift_client-1.132.0.dist-info}/WHEEL +0 -0
- {wordlift_client-1.131.0.dist-info → wordlift_client-1.132.0.dist-info}/top_level.txt +0 -0
wordlift_client/__init__.py
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
""" # noqa: E501
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
__version__ = "1.
|
|
18
|
+
__version__ = "1.132.0"
|
|
19
19
|
|
|
20
20
|
# import apis into sdk package
|
|
21
21
|
from wordlift_client.api.account_api import AccountApi
|
|
@@ -59,7 +59,6 @@ from wordlift_client.api.google_search_console_o_auth2_api import GoogleSearchCo
|
|
|
59
59
|
from wordlift_client.api.google_search_console_searches_api import GoogleSearchConsoleSearchesApi
|
|
60
60
|
from wordlift_client.api.google_search_console_websites_api import GoogleSearchConsoleWebsitesApi
|
|
61
61
|
from wordlift_client.api.graph_ql_api import GraphQLApi
|
|
62
|
-
from wordlift_client.api.image_to_text_api import ImageToTextApi
|
|
63
62
|
from wordlift_client.api.include_excludes_api import IncludeExcludesApi
|
|
64
63
|
from wordlift_client.api.inspector_api import InspectorApi
|
|
65
64
|
from wordlift_client.api.internal_links_api import InternalLinksApi
|
|
@@ -178,8 +177,6 @@ from wordlift_client.models.http_validation_error import HTTPValidationError
|
|
|
178
177
|
from wordlift_client.models.html import Html
|
|
179
178
|
from wordlift_client.models.image import Image
|
|
180
179
|
from wordlift_client.models.image_accessibility import ImageAccessibility
|
|
181
|
-
from wordlift_client.models.image_to_text_request import ImageToTextRequest
|
|
182
|
-
from wordlift_client.models.image_to_text_response import ImageToTextResponse
|
|
183
180
|
from wordlift_client.models.include_exclude import IncludeExclude
|
|
184
181
|
from wordlift_client.models.include_exclude_request import IncludeExcludeRequest
|
|
185
182
|
from wordlift_client.models.inspect_response import InspectResponse
|
wordlift_client/api/__init__.py
CHANGED
|
@@ -42,7 +42,6 @@ from wordlift_client.api.google_search_console_o_auth2_api import GoogleSearchCo
|
|
|
42
42
|
from wordlift_client.api.google_search_console_searches_api import GoogleSearchConsoleSearchesApi
|
|
43
43
|
from wordlift_client.api.google_search_console_websites_api import GoogleSearchConsoleWebsitesApi
|
|
44
44
|
from wordlift_client.api.graph_ql_api import GraphQLApi
|
|
45
|
-
from wordlift_client.api.image_to_text_api import ImageToTextApi
|
|
46
45
|
from wordlift_client.api.include_excludes_api import IncludeExcludesApi
|
|
47
46
|
from wordlift_client.api.inspector_api import InspectorApi
|
|
48
47
|
from wordlift_client.api.internal_links_api import InternalLinksApi
|
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.132.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.132.0".\
|
|
430
430
|
format(env=sys.platform, pyversion=sys.version)
|
|
431
431
|
|
|
432
432
|
def get_host_settings(self):
|
|
@@ -92,8 +92,6 @@ from wordlift_client.models.http_validation_error import HTTPValidationError
|
|
|
92
92
|
from wordlift_client.models.html import Html
|
|
93
93
|
from wordlift_client.models.image import Image
|
|
94
94
|
from wordlift_client.models.image_accessibility import ImageAccessibility
|
|
95
|
-
from wordlift_client.models.image_to_text_request import ImageToTextRequest
|
|
96
|
-
from wordlift_client.models.image_to_text_response import ImageToTextResponse
|
|
97
95
|
from wordlift_client.models.include_exclude import IncludeExclude
|
|
98
96
|
from wordlift_client.models.include_exclude_request import IncludeExcludeRequest
|
|
99
97
|
from wordlift_client.models.inspect_response import InspectResponse
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
wordlift_client/__init__.py,sha256=
|
|
2
|
-
wordlift_client/api_client.py,sha256=
|
|
1
|
+
wordlift_client/__init__.py,sha256=pcoPbWMFtmAUgeYthwQgdxycApJLSUJCvDenQ6OCe0E,20012
|
|
2
|
+
wordlift_client/api_client.py,sha256=711SJKP2yNrj-wBJrKzAiViRikzoeZc9im8aj0MeiJk,26397
|
|
3
3
|
wordlift_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
-
wordlift_client/configuration.py,sha256=
|
|
4
|
+
wordlift_client/configuration.py,sha256=dg_Xz5LEEo0Diq8nPmAbczJobyv46YCJJVRXZHe6nfM,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
|
|
8
|
-
wordlift_client/api/__init__.py,sha256=
|
|
8
|
+
wordlift_client/api/__init__.py,sha256=OKNPniCC9gj-ihBuqIHRoV5tj2Q4VV1gi26kf1PbGNE,5031
|
|
9
9
|
wordlift_client/api/account_api.py,sha256=wxVhHEPyMfNpC1_sBLp2nECfvyGIVwlqqM2Xu3EGSHI,10288
|
|
10
10
|
wordlift_client/api/account_google_search_console_api.py,sha256=QruHrGZ1LMRhVrVt5k1UOAQZSkMY8zMZWkQ2DdeD5Dw,12119
|
|
11
11
|
wordlift_client/api/account_stats_api.py,sha256=tQshIfkbME-WMY-sBMwUUZdSTDBeoaV0wnrtAnaFv_g,10480
|
|
@@ -82,7 +82,7 @@ wordlift_client/api/web_asyncs_metadata_api.py,sha256=cpDQmIGc6uHu5rFXwZAy1cVgcW
|
|
|
82
82
|
wordlift_client/api/web_asyncs_responses_api.py,sha256=h91xI3iIgGoMUcZ7Oft5xiLy0rHh_2qzZDrFTRz3P8w,10889
|
|
83
83
|
wordlift_client/api/web_pages_api.py,sha256=VKPLIaQRxxDn3daP0zvXRiHj2eegsZIjxUmHKzxZXoc,10839
|
|
84
84
|
wordlift_client/api/web_pages_imports_api.py,sha256=yPhNLZ1jV2dEDnYuHb7OpiFH3K2ROrRYHG4ZrAf4VMU,11719
|
|
85
|
-
wordlift_client/models/__init__.py,sha256=
|
|
85
|
+
wordlift_client/models/__init__.py,sha256=kBhWQsN98AIW7yKVF4JkL9ENyIiPDaIK2l32ZkIA9gg,14474
|
|
86
86
|
wordlift_client/models/account.py,sha256=trGNzy3ZBGE1VsSke4aoXBQem-3jK60xVz0OWOOMWso,5523
|
|
87
87
|
wordlift_client/models/account_config.py,sha256=_4YZ8IGS4h16wa9aSaL9rpeoZYR8faiwEAtovP4eBVI,2592
|
|
88
88
|
wordlift_client/models/account_info.py,sha256=tCqVHqfeK5u1cQkLOBgJRUTs-e8vmGCjqZ4wgfmNIuw,7750
|
|
@@ -282,8 +282,8 @@ wordlift_client/models/with_limits.py,sha256=rSzDb_If8APxR2Rw2U6cfFRFubnnai3Vj3-
|
|
|
282
282
|
wordlift_client/models/word.py,sha256=FPCGb6ohwdfydE5_qG4PT-UrnMzaTktAWqEEnezwaso,3922
|
|
283
283
|
wordlift_client/models/word_repetition_data.py,sha256=CQnxCnhakt12czl6a_AQIPgHlJtvR9YGBIjGV22rq14,2659
|
|
284
284
|
wordlift_client/models/word_request.py,sha256=ZD13xNRYCZmF14jxEDrRRyEMAd-quDT-HsqkbUP_xWU,2627
|
|
285
|
-
wordlift_client-1.
|
|
286
|
-
wordlift_client-1.
|
|
287
|
-
wordlift_client-1.
|
|
288
|
-
wordlift_client-1.
|
|
289
|
-
wordlift_client-1.
|
|
285
|
+
wordlift_client-1.132.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
286
|
+
wordlift_client-1.132.0.dist-info/METADATA,sha256=p0vxdh5DJqx29jt9BM_7goL5VlJgmcyGXiMbn6jkGyI,530
|
|
287
|
+
wordlift_client-1.132.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
288
|
+
wordlift_client-1.132.0.dist-info/top_level.txt,sha256=p7KFYU869ksxkpP7ADvg8baPgWkTYCzcOpDl1qrJdHk,16
|
|
289
|
+
wordlift_client-1.132.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|