wordlift-client 1.134.0__py3-none-any.whl → 1.136.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 +25 -3
- wordlift_client/api/__init__.py +1 -0
- wordlift_client/api/audit_api.py +18 -6
- wordlift_client/api/default_api.py +1767 -39
- wordlift_client/api_client.py +1 -1
- wordlift_client/configuration.py +1 -1
- wordlift_client/models/__init__.py +23 -2
- wordlift_client/models/audit_data.py +27 -11
- wordlift_client/models/automation_issue.py +110 -0
- wordlift_client/models/automation_readiness.py +16 -5
- wordlift_client/models/bot_status.py +102 -0
- wordlift_client/models/content_freshness.py +106 -0
- wordlift_client/models/content_structure.py +10 -6
- wordlift_client/models/detected_schema.py +100 -0
- wordlift_client/models/error_response.py +5 -3
- wordlift_client/models/html_semantics.py +100 -0
- wordlift_client/models/http_validation_error1.py +96 -0
- wordlift_client/models/image_accessibility.py +9 -7
- wordlift_client/models/internal_linking.py +100 -0
- wordlift_client/models/js_rendering.py +8 -17
- wordlift_client/models/monitor_result_item.py +117 -0
- wordlift_client/models/monitor_state.py +39 -0
- wordlift_client/models/monitor_summary_item.py +105 -0
- wordlift_client/models/neighbors.py +101 -0
- wordlift_client/models/page_info.py +95 -0
- wordlift_client/models/quick_wins_result.py +110 -0
- wordlift_client/models/resource_request.py +92 -0
- wordlift_client/models/resource_type.py +40 -0
- wordlift_client/models/schema_recommendation.py +90 -0
- wordlift_client/models/seo_fundamentals.py +6 -3
- wordlift_client/models/site_files.py +25 -10
- wordlift_client/models/structured_data.py +28 -5
- wordlift_client/models/url_list_item.py +132 -0
- wordlift_client/models/url_list_response.py +104 -0
- wordlift_client/models/url_results_response.py +121 -0
- wordlift_client/models/url_summary_response.py +136 -0
- wordlift_client/models/validation_error1.py +22 -9
- wordlift_client/models/validation_error2.py +96 -0
- wordlift_client/models/validation_error2_detail_inner.py +92 -0
- wordlift_client/models/well_known_files.py +98 -0
- {wordlift_client-1.134.0.dist-info → wordlift_client-1.136.0.dist-info}/METADATA +1 -1
- {wordlift_client-1.134.0.dist-info → wordlift_client-1.136.0.dist-info}/RECORD +45 -22
- {wordlift_client-1.134.0.dist-info → wordlift_client-1.136.0.dist-info}/LICENSE +0 -0
- {wordlift_client-1.134.0.dist-info → wordlift_client-1.136.0.dist-info}/WHEEL +0 -0
- {wordlift_client-1.134.0.dist-info → wordlift_client-1.136.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.136.0"
|
|
19
19
|
|
|
20
20
|
# import apis into sdk package
|
|
21
21
|
from wordlift_client.api.account_api import AccountApi
|
|
@@ -87,6 +87,7 @@ from wordlift_client.api.web_asyncs_metadata_api import WebAsyncsMetadataApi
|
|
|
87
87
|
from wordlift_client.api.web_asyncs_responses_api import WebAsyncsResponsesApi
|
|
88
88
|
from wordlift_client.api.web_pages_imports_api import WebPagesImportsApi
|
|
89
89
|
from wordlift_client.api.web_pages_api import WebPagesApi
|
|
90
|
+
from wordlift_client.api.default_api import DefaultApi
|
|
90
91
|
|
|
91
92
|
# import ApiClient
|
|
92
93
|
from wordlift_client.api_response import ApiResponse
|
|
@@ -126,8 +127,10 @@ from wordlift_client.models.author_request import AuthorRequest
|
|
|
126
127
|
from wordlift_client.models.authorization import Authorization
|
|
127
128
|
from wordlift_client.models.authorization_status import AuthorizationStatus
|
|
128
129
|
from wordlift_client.models.autocomplete_result import AutocompleteResult
|
|
130
|
+
from wordlift_client.models.automation_issue import AutomationIssue
|
|
129
131
|
from wordlift_client.models.automation_readiness import AutomationReadiness
|
|
130
132
|
from wordlift_client.models.batch_request import BatchRequest
|
|
133
|
+
from wordlift_client.models.bot_status import BotStatus
|
|
131
134
|
from wordlift_client.models.botify_crawl_import_request import BotifyCrawlImportRequest
|
|
132
135
|
from wordlift_client.models.build_authorize_uri_request import BuildAuthorizeUriRequest
|
|
133
136
|
from wordlift_client.models.build_authorize_uri_response import BuildAuthorizeUriResponse
|
|
@@ -148,12 +151,14 @@ from wordlift_client.models.content_evaluation_response_quality_score_breakdown_
|
|
|
148
151
|
from wordlift_client.models.content_evaluation_response_quality_score_breakdown_seo_top_entities_value_inner import ContentEvaluationResponseQualityScoreBreakdownSeoTopEntitiesValueInner
|
|
149
152
|
from wordlift_client.models.content_expansion_request import ContentExpansionRequest
|
|
150
153
|
from wordlift_client.models.content_expansion_response import ContentExpansionResponse
|
|
154
|
+
from wordlift_client.models.content_freshness import ContentFreshness
|
|
151
155
|
from wordlift_client.models.content_generation import ContentGeneration
|
|
152
156
|
from wordlift_client.models.content_generation_request import ContentGenerationRequest
|
|
153
157
|
from wordlift_client.models.content_generation_stats import ContentGenerationStats
|
|
154
158
|
from wordlift_client.models.content_structure import ContentStructure
|
|
155
159
|
from wordlift_client.models.create_embeddings_input import CreateEmbeddingsInput
|
|
156
160
|
from wordlift_client.models.create_url_inspection_request import CreateUrlInspectionRequest
|
|
161
|
+
from wordlift_client.models.detected_schema import DetectedSchema
|
|
157
162
|
from wordlift_client.models.diagnostic_plugin import DiagnosticPlugin
|
|
158
163
|
from wordlift_client.models.diagnostic_plugin_request import DiagnosticPluginRequest
|
|
159
164
|
from wordlift_client.models.domain_validation_request import DomainValidationRequest
|
|
@@ -174,7 +179,9 @@ from wordlift_client.models.generate_sitemap200_response import GenerateSitemap2
|
|
|
174
179
|
from wordlift_client.models.generate_sitemap_request import GenerateSitemapRequest
|
|
175
180
|
from wordlift_client.models.graphql_request import GraphqlRequest
|
|
176
181
|
from wordlift_client.models.http_validation_error import HTTPValidationError
|
|
182
|
+
from wordlift_client.models.http_validation_error1 import HTTPValidationError1
|
|
177
183
|
from wordlift_client.models.html import Html
|
|
184
|
+
from wordlift_client.models.html_semantics import HtmlSemantics
|
|
178
185
|
from wordlift_client.models.image import Image
|
|
179
186
|
from wordlift_client.models.image_accessibility import ImageAccessibility
|
|
180
187
|
from wordlift_client.models.include_exclude import IncludeExclude
|
|
@@ -184,6 +191,7 @@ from wordlift_client.models.internal_link import InternalLink
|
|
|
184
191
|
from wordlift_client.models.internal_link_destination import InternalLinkDestination
|
|
185
192
|
from wordlift_client.models.internal_link_request import InternalLinkRequest
|
|
186
193
|
from wordlift_client.models.internal_link_source import InternalLinkSource
|
|
194
|
+
from wordlift_client.models.internal_linking import InternalLinking
|
|
187
195
|
from wordlift_client.models.item import Item
|
|
188
196
|
from wordlift_client.models.js_rendering import JsRendering
|
|
189
197
|
from wordlift_client.models.kg_embedding_request import KgEmbeddingRequest
|
|
@@ -200,6 +208,10 @@ from wordlift_client.models.merchant_sync import MerchantSync
|
|
|
200
208
|
from wordlift_client.models.merchant_view import MerchantView
|
|
201
209
|
from wordlift_client.models.model import Model
|
|
202
210
|
from wordlift_client.models.model_field import ModelField
|
|
211
|
+
from wordlift_client.models.monitor_result_item import MonitorResultItem
|
|
212
|
+
from wordlift_client.models.monitor_state import MonitorState
|
|
213
|
+
from wordlift_client.models.monitor_summary_item import MonitorSummaryItem
|
|
214
|
+
from wordlift_client.models.neighbors import Neighbors
|
|
203
215
|
from wordlift_client.models.network_account_info import NetworkAccountInfo
|
|
204
216
|
from wordlift_client.models.node_request import NodeRequest
|
|
205
217
|
from wordlift_client.models.node_request_metadata_value import NodeRequestMetadataValue
|
|
@@ -209,6 +221,7 @@ from wordlift_client.models.page_active_account import PageActiveAccount
|
|
|
209
221
|
from wordlift_client.models.page_add_on_configuration import PageAddOnConfiguration
|
|
210
222
|
from wordlift_client.models.page_content_generation import PageContentGeneration
|
|
211
223
|
from wordlift_client.models.page_field import PageField
|
|
224
|
+
from wordlift_client.models.page_info import PageInfo
|
|
212
225
|
from wordlift_client.models.page_merchant_entry import PageMerchantEntry
|
|
213
226
|
from wordlift_client.models.page_merchant_sync import PageMerchantSync
|
|
214
227
|
from wordlift_client.models.page_merchant_view import PageMerchantView
|
|
@@ -235,6 +248,7 @@ from wordlift_client.models.query_coverage_output import QueryCoverageOutput
|
|
|
235
248
|
from wordlift_client.models.question_and_answer import QuestionAndAnswer
|
|
236
249
|
from wordlift_client.models.question_and_answer_request import QuestionAndAnswerRequest
|
|
237
250
|
from wordlift_client.models.quick_win import QuickWin
|
|
251
|
+
from wordlift_client.models.quick_wins_result import QuickWinsResult
|
|
238
252
|
from wordlift_client.models.rank_entities import RankEntities
|
|
239
253
|
from wordlift_client.models.record import Record
|
|
240
254
|
from wordlift_client.models.render_request import RenderRequest
|
|
@@ -242,15 +256,17 @@ from wordlift_client.models.request import Request
|
|
|
242
256
|
from wordlift_client.models.request1 import Request1
|
|
243
257
|
from wordlift_client.models.request2 import Request2
|
|
244
258
|
from wordlift_client.models.request3 import Request3
|
|
259
|
+
from wordlift_client.models.resource_request import ResourceRequest
|
|
260
|
+
from wordlift_client.models.resource_type import ResourceType
|
|
245
261
|
from wordlift_client.models.response import Response
|
|
246
262
|
from wordlift_client.models.response1 import Response1
|
|
247
263
|
from wordlift_client.models.response2 import Response2
|
|
248
264
|
from wordlift_client.models.rule import Rule
|
|
249
265
|
from wordlift_client.models.rule_request import RuleRequest
|
|
266
|
+
from wordlift_client.models.schema_recommendation import SchemaRecommendation
|
|
250
267
|
from wordlift_client.models.scope import Scope
|
|
251
268
|
from wordlift_client.models.seo_fundamentals import SeoFundamentals
|
|
252
269
|
from wordlift_client.models.site_files import SiteFiles
|
|
253
|
-
from wordlift_client.models.site_files_bot_access import SiteFilesBotAccess
|
|
254
270
|
from wordlift_client.models.sitemap_import_request import SitemapImportRequest
|
|
255
271
|
from wordlift_client.models.smart_content import SmartContent
|
|
256
272
|
from wordlift_client.models.smart_content_request import SmartContentRequest
|
|
@@ -265,9 +281,14 @@ from wordlift_client.models.update_question_and_answer_request import UpdateQues
|
|
|
265
281
|
from wordlift_client.models.update_record_request import UpdateRecordRequest
|
|
266
282
|
from wordlift_client.models.update_records_request import UpdateRecordsRequest
|
|
267
283
|
from wordlift_client.models.update_site_url_request import UpdateSiteUrlRequest
|
|
284
|
+
from wordlift_client.models.url_list_item import UrlListItem
|
|
285
|
+
from wordlift_client.models.url_list_response import UrlListResponse
|
|
286
|
+
from wordlift_client.models.url_results_response import UrlResultsResponse
|
|
287
|
+
from wordlift_client.models.url_summary_response import UrlSummaryResponse
|
|
268
288
|
from wordlift_client.models.validation_error import ValidationError
|
|
269
289
|
from wordlift_client.models.validation_error1 import ValidationError1
|
|
270
|
-
from wordlift_client.models.
|
|
290
|
+
from wordlift_client.models.validation_error2 import ValidationError2
|
|
291
|
+
from wordlift_client.models.validation_error2_detail_inner import ValidationError2DetailInner
|
|
271
292
|
from wordlift_client.models.validation_fix import ValidationFix
|
|
272
293
|
from wordlift_client.models.validation_result import ValidationResult
|
|
273
294
|
from wordlift_client.models.validation_type_enum import ValidationTypeEnum
|
|
@@ -284,6 +305,7 @@ from wordlift_client.models.web_page_import_response import WebPageImportRespons
|
|
|
284
305
|
from wordlift_client.models.webpage_properties import WebpageProperties
|
|
285
306
|
from wordlift_client.models.website import Website
|
|
286
307
|
from wordlift_client.models.website_search import WebsiteSearch
|
|
308
|
+
from wordlift_client.models.well_known_files import WellKnownFiles
|
|
287
309
|
from wordlift_client.models.what_operand_lhs import WhatOperandLhs
|
|
288
310
|
from wordlift_client.models.what_operator import WhatOperator
|
|
289
311
|
from wordlift_client.models.when_operator import WhenOperator
|
wordlift_client/api/__init__.py
CHANGED
|
@@ -70,4 +70,5 @@ from wordlift_client.api.web_asyncs_metadata_api import WebAsyncsMetadataApi
|
|
|
70
70
|
from wordlift_client.api.web_asyncs_responses_api import WebAsyncsResponsesApi
|
|
71
71
|
from wordlift_client.api.web_pages_imports_api import WebPagesImportsApi
|
|
72
72
|
from wordlift_client.api.web_pages_api import WebPagesApi
|
|
73
|
+
from wordlift_client.api.default_api import DefaultApi
|
|
73
74
|
|
wordlift_client/api/audit_api.py
CHANGED
|
@@ -57,7 +57,7 @@ class AuditApi:
|
|
|
57
57
|
) -> AuditResponse:
|
|
58
58
|
"""Website Audit
|
|
59
59
|
|
|
60
|
-
Performs a comprehensive SEO and AI-readiness audit of a specified URL. The audit analyzes: - Site files (robots.txt, llms.txt) - SEO fundamentals (title, description, headings) - Structured data (Schema.org, JSON-LD) - Content structure and semantic HTML - Image accessibility - Automation readiness for AI agents - JavaScript rendering and bot accessibility Returns an overall score (0-100) and detailed recommendations for improvement.
|
|
60
|
+
Performs a comprehensive SEO and AI-readiness audit of a specified URL. The audit analyzes: - Site files (robots.txt, llms.txt, .well-known directory) - SEO fundamentals (title, description, headings) - Structured data (Schema.org, JSON-LD, Microdata) - Content structure and semantic HTML - Image accessibility - Automation readiness for AI agents - JavaScript rendering and bot accessibility - Content freshness (legacy field, status Unknown) - Internal linking (legacy field, status Unknown) - HTML semantics (legacy field, status Unknown) Returns an overall score (0-100) and detailed recommendations for improvement.
|
|
61
61
|
|
|
62
62
|
:param audit_request: (required)
|
|
63
63
|
:type audit_request: AuditRequest
|
|
@@ -93,8 +93,12 @@ class AuditApi:
|
|
|
93
93
|
|
|
94
94
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
95
95
|
'200': "AuditResponse",
|
|
96
|
+
'400': "ErrorResponse",
|
|
96
97
|
'401': "ErrorResponse",
|
|
97
|
-
'
|
|
98
|
+
'403': "ErrorResponse",
|
|
99
|
+
'404': "ErrorResponse",
|
|
100
|
+
'422': "ValidationError2",
|
|
101
|
+
'500': "ErrorResponse",
|
|
98
102
|
}
|
|
99
103
|
response_data = await self.api_client.call_api(
|
|
100
104
|
*_param,
|
|
@@ -126,7 +130,7 @@ class AuditApi:
|
|
|
126
130
|
) -> ApiResponse[AuditResponse]:
|
|
127
131
|
"""Website Audit
|
|
128
132
|
|
|
129
|
-
Performs a comprehensive SEO and AI-readiness audit of a specified URL. The audit analyzes: - Site files (robots.txt, llms.txt) - SEO fundamentals (title, description, headings) - Structured data (Schema.org, JSON-LD) - Content structure and semantic HTML - Image accessibility - Automation readiness for AI agents - JavaScript rendering and bot accessibility Returns an overall score (0-100) and detailed recommendations for improvement.
|
|
133
|
+
Performs a comprehensive SEO and AI-readiness audit of a specified URL. The audit analyzes: - Site files (robots.txt, llms.txt, .well-known directory) - SEO fundamentals (title, description, headings) - Structured data (Schema.org, JSON-LD, Microdata) - Content structure and semantic HTML - Image accessibility - Automation readiness for AI agents - JavaScript rendering and bot accessibility - Content freshness (legacy field, status Unknown) - Internal linking (legacy field, status Unknown) - HTML semantics (legacy field, status Unknown) Returns an overall score (0-100) and detailed recommendations for improvement.
|
|
130
134
|
|
|
131
135
|
:param audit_request: (required)
|
|
132
136
|
:type audit_request: AuditRequest
|
|
@@ -162,8 +166,12 @@ class AuditApi:
|
|
|
162
166
|
|
|
163
167
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
164
168
|
'200': "AuditResponse",
|
|
169
|
+
'400': "ErrorResponse",
|
|
165
170
|
'401': "ErrorResponse",
|
|
166
|
-
'
|
|
171
|
+
'403': "ErrorResponse",
|
|
172
|
+
'404': "ErrorResponse",
|
|
173
|
+
'422': "ValidationError2",
|
|
174
|
+
'500': "ErrorResponse",
|
|
167
175
|
}
|
|
168
176
|
response_data = await self.api_client.call_api(
|
|
169
177
|
*_param,
|
|
@@ -195,7 +203,7 @@ class AuditApi:
|
|
|
195
203
|
) -> RESTResponseType:
|
|
196
204
|
"""Website Audit
|
|
197
205
|
|
|
198
|
-
Performs a comprehensive SEO and AI-readiness audit of a specified URL. The audit analyzes: - Site files (robots.txt, llms.txt) - SEO fundamentals (title, description, headings) - Structured data (Schema.org, JSON-LD) - Content structure and semantic HTML - Image accessibility - Automation readiness for AI agents - JavaScript rendering and bot accessibility Returns an overall score (0-100) and detailed recommendations for improvement.
|
|
206
|
+
Performs a comprehensive SEO and AI-readiness audit of a specified URL. The audit analyzes: - Site files (robots.txt, llms.txt, .well-known directory) - SEO fundamentals (title, description, headings) - Structured data (Schema.org, JSON-LD, Microdata) - Content structure and semantic HTML - Image accessibility - Automation readiness for AI agents - JavaScript rendering and bot accessibility - Content freshness (legacy field, status Unknown) - Internal linking (legacy field, status Unknown) - HTML semantics (legacy field, status Unknown) Returns an overall score (0-100) and detailed recommendations for improvement.
|
|
199
207
|
|
|
200
208
|
:param audit_request: (required)
|
|
201
209
|
:type audit_request: AuditRequest
|
|
@@ -231,8 +239,12 @@ class AuditApi:
|
|
|
231
239
|
|
|
232
240
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
233
241
|
'200': "AuditResponse",
|
|
242
|
+
'400': "ErrorResponse",
|
|
234
243
|
'401': "ErrorResponse",
|
|
235
|
-
'
|
|
244
|
+
'403': "ErrorResponse",
|
|
245
|
+
'404': "ErrorResponse",
|
|
246
|
+
'422': "ValidationError2",
|
|
247
|
+
'500': "ErrorResponse",
|
|
236
248
|
}
|
|
237
249
|
response_data = await self.api_client.call_api(
|
|
238
250
|
*_param,
|