wordlift-client 1.124.0__py3-none-any.whl → 1.125.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/models/automation_readiness.py +2 -2
- wordlift_client/models/content_structure.py +2 -2
- wordlift_client/models/image_accessibility.py +2 -2
- wordlift_client/models/js_rendering.py +6 -6
- wordlift_client/models/seo_fundamentals.py +2 -2
- wordlift_client/models/site_files.py +2 -2
- wordlift_client/models/site_files_bot_access.py +6 -6
- wordlift_client/models/structured_data.py +2 -2
- {wordlift_client-1.124.0.dist-info → wordlift_client-1.125.0.dist-info}/METADATA +1 -1
- {wordlift_client-1.124.0.dist-info → wordlift_client-1.125.0.dist-info}/RECORD +18 -18
- {wordlift_client-1.124.0.dist-info → wordlift_client-1.125.0.dist-info}/LICENSE +0 -0
- {wordlift_client-1.124.0.dist-info → wordlift_client-1.125.0.dist-info}/WHEEL +0 -0
- {wordlift_client-1.124.0.dist-info → wordlift_client-1.125.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.125.0"
|
|
19
19
|
|
|
20
20
|
# import apis into sdk package
|
|
21
21
|
from wordlift_client.api.account_api import AccountApi
|
|
@@ -76,7 +76,6 @@ from wordlift_client.api.plugin_events_api import PluginEventsApi
|
|
|
76
76
|
from wordlift_client.api.questions_and_answers_api import QuestionsAndAnswersApi
|
|
77
77
|
from wordlift_client.api.redeem_codes_api import RedeemCodesApi
|
|
78
78
|
from wordlift_client.api.rules_api import RulesApi
|
|
79
|
-
from wordlift_client.api.seo_scores_api import SEOScoresApi
|
|
80
79
|
from wordlift_client.api.sitemap_generator_api import SitemapGeneratorApi
|
|
81
80
|
from wordlift_client.api.sitemap_imports_api import SitemapImportsApi
|
|
82
81
|
from wordlift_client.api.summarizations_api import SummarizationsApi
|
|
@@ -152,8 +151,6 @@ from wordlift_client.models.content_generation_request import ContentGenerationR
|
|
|
152
151
|
from wordlift_client.models.content_generation_stats import ContentGenerationStats
|
|
153
152
|
from wordlift_client.models.content_structure import ContentStructure
|
|
154
153
|
from wordlift_client.models.create_embeddings_input import CreateEmbeddingsInput
|
|
155
|
-
from wordlift_client.models.create_seo_score200_response import CreateSEOScore200Response
|
|
156
|
-
from wordlift_client.models.create_seo_score_request import CreateSEOScoreRequest
|
|
157
154
|
from wordlift_client.models.create_url_inspection_request import CreateUrlInspectionRequest
|
|
158
155
|
from wordlift_client.models.diagnostic_plugin import DiagnosticPlugin
|
|
159
156
|
from wordlift_client.models.diagnostic_plugin_request import DiagnosticPluginRequest
|
wordlift_client/api/__init__.py
CHANGED
|
@@ -59,7 +59,6 @@ from wordlift_client.api.plugin_events_api import PluginEventsApi
|
|
|
59
59
|
from wordlift_client.api.questions_and_answers_api import QuestionsAndAnswersApi
|
|
60
60
|
from wordlift_client.api.redeem_codes_api import RedeemCodesApi
|
|
61
61
|
from wordlift_client.api.rules_api import RulesApi
|
|
62
|
-
from wordlift_client.api.seo_scores_api import SEOScoresApi
|
|
63
62
|
from wordlift_client.api.sitemap_generator_api import SitemapGeneratorApi
|
|
64
63
|
from wordlift_client.api.sitemap_imports_api import SitemapImportsApi
|
|
65
64
|
from wordlift_client.api.summarizations_api import SummarizationsApi
|
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.125.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.125.0".\
|
|
430
430
|
format(env=sys.platform, pyversion=sys.version)
|
|
431
431
|
|
|
432
432
|
def get_host_settings(self):
|
|
@@ -66,8 +66,6 @@ from wordlift_client.models.content_generation_request import ContentGenerationR
|
|
|
66
66
|
from wordlift_client.models.content_generation_stats import ContentGenerationStats
|
|
67
67
|
from wordlift_client.models.content_structure import ContentStructure
|
|
68
68
|
from wordlift_client.models.create_embeddings_input import CreateEmbeddingsInput
|
|
69
|
-
from wordlift_client.models.create_seo_score200_response import CreateSEOScore200Response
|
|
70
|
-
from wordlift_client.models.create_seo_score_request import CreateSEOScoreRequest
|
|
71
69
|
from wordlift_client.models.create_url_inspection_request import CreateUrlInspectionRequest
|
|
72
70
|
from wordlift_client.models.diagnostic_plugin import DiagnosticPlugin
|
|
73
71
|
from wordlift_client.models.diagnostic_plugin_request import DiagnosticPluginRequest
|
|
@@ -38,8 +38,8 @@ class AutomationReadiness(BaseModel):
|
|
|
38
38
|
if value is None:
|
|
39
39
|
return value
|
|
40
40
|
|
|
41
|
-
if value not in set(['
|
|
42
|
-
raise ValueError("must be one of enum values ('
|
|
41
|
+
if value not in set(['Good', 'Needs Improvement', 'Poor']):
|
|
42
|
+
raise ValueError("must be one of enum values ('Good', 'Needs Improvement', 'Poor')")
|
|
43
43
|
return value
|
|
44
44
|
|
|
45
45
|
model_config = ConfigDict(
|
|
@@ -39,8 +39,8 @@ class ContentStructure(BaseModel):
|
|
|
39
39
|
if value is None:
|
|
40
40
|
return value
|
|
41
41
|
|
|
42
|
-
if value not in set(['
|
|
43
|
-
raise ValueError("must be one of enum values ('
|
|
42
|
+
if value not in set(['Good', 'Needs Improvement', 'Poor']):
|
|
43
|
+
raise ValueError("must be one of enum values ('Good', 'Needs Improvement', 'Poor')")
|
|
44
44
|
return value
|
|
45
45
|
|
|
46
46
|
model_config = ConfigDict(
|
|
@@ -41,8 +41,8 @@ class ImageAccessibility(BaseModel):
|
|
|
41
41
|
if value is None:
|
|
42
42
|
return value
|
|
43
43
|
|
|
44
|
-
if value not in set(['
|
|
45
|
-
raise ValueError("must be one of enum values ('
|
|
44
|
+
if value not in set(['Good', 'Needs Improvement', 'Poor']):
|
|
45
|
+
raise ValueError("must be one of enum values ('Good', 'Needs Improvement', 'Poor')")
|
|
46
46
|
return value
|
|
47
47
|
|
|
48
48
|
model_config = ConfigDict(
|
|
@@ -42,8 +42,8 @@ class JsRendering(BaseModel):
|
|
|
42
42
|
if value is None:
|
|
43
43
|
return value
|
|
44
44
|
|
|
45
|
-
if value not in set(['
|
|
46
|
-
raise ValueError("must be one of enum values ('
|
|
45
|
+
if value not in set(['Good', 'Needs Improvement', 'Poor']):
|
|
46
|
+
raise ValueError("must be one of enum values ('Good', 'Needs Improvement', 'Poor')")
|
|
47
47
|
return value
|
|
48
48
|
|
|
49
49
|
@field_validator('rendering_type')
|
|
@@ -52,8 +52,8 @@ class JsRendering(BaseModel):
|
|
|
52
52
|
if value is None:
|
|
53
53
|
return value
|
|
54
54
|
|
|
55
|
-
if value not in set(['Static', 'SSR', 'CSR', 'Hybrid']):
|
|
56
|
-
raise ValueError("must be one of enum values ('Static', 'SSR', 'CSR', 'Hybrid')")
|
|
55
|
+
if value not in set(['Static', 'SSR', 'SSG', 'CSR', 'Hybrid']):
|
|
56
|
+
raise ValueError("must be one of enum values ('Static', 'SSR', 'SSG', 'CSR', 'Hybrid')")
|
|
57
57
|
return value
|
|
58
58
|
|
|
59
59
|
@field_validator('ai_accessibility')
|
|
@@ -62,8 +62,8 @@ class JsRendering(BaseModel):
|
|
|
62
62
|
if value is None:
|
|
63
63
|
return value
|
|
64
64
|
|
|
65
|
-
if value not in set(['Excellent', 'Good', '
|
|
66
|
-
raise ValueError("must be one of enum values ('Excellent', 'Good', '
|
|
65
|
+
if value not in set(['Excellent', 'Good', 'Limited', 'Blocked']):
|
|
66
|
+
raise ValueError("must be one of enum values ('Excellent', 'Good', 'Limited', 'Blocked')")
|
|
67
67
|
return value
|
|
68
68
|
|
|
69
69
|
model_config = ConfigDict(
|
|
@@ -40,8 +40,8 @@ class SeoFundamentals(BaseModel):
|
|
|
40
40
|
if value is None:
|
|
41
41
|
return value
|
|
42
42
|
|
|
43
|
-
if value not in set(['
|
|
44
|
-
raise ValueError("must be one of enum values ('
|
|
43
|
+
if value not in set(['Good', 'Needs Improvement', 'Poor']):
|
|
44
|
+
raise ValueError("must be one of enum values ('Good', 'Needs Improvement', 'Poor')")
|
|
45
45
|
return value
|
|
46
46
|
|
|
47
47
|
model_config = ConfigDict(
|
|
@@ -41,8 +41,8 @@ class SiteFiles(BaseModel):
|
|
|
41
41
|
if value is None:
|
|
42
42
|
return value
|
|
43
43
|
|
|
44
|
-
if value not in set(['
|
|
45
|
-
raise ValueError("must be one of enum values ('
|
|
44
|
+
if value not in set(['Good', 'Needs Improvement', 'Poor']):
|
|
45
|
+
raise ValueError("must be one of enum values ('Good', 'Needs Improvement', 'Poor')")
|
|
46
46
|
return value
|
|
47
47
|
|
|
48
48
|
@field_validator('robots_txt')
|
|
@@ -38,8 +38,8 @@ class SiteFilesBotAccess(BaseModel):
|
|
|
38
38
|
if value is None:
|
|
39
39
|
return value
|
|
40
40
|
|
|
41
|
-
if value not in set(['allowed', '
|
|
42
|
-
raise ValueError("must be one of enum values ('allowed', '
|
|
41
|
+
if value not in set(['allowed', 'blocked', 'not_specified']):
|
|
42
|
+
raise ValueError("must be one of enum values ('allowed', 'blocked', 'not_specified')")
|
|
43
43
|
return value
|
|
44
44
|
|
|
45
45
|
@field_validator('claude')
|
|
@@ -48,8 +48,8 @@ class SiteFilesBotAccess(BaseModel):
|
|
|
48
48
|
if value is None:
|
|
49
49
|
return value
|
|
50
50
|
|
|
51
|
-
if value not in set(['allowed', '
|
|
52
|
-
raise ValueError("must be one of enum values ('allowed', '
|
|
51
|
+
if value not in set(['allowed', 'blocked', 'not_specified']):
|
|
52
|
+
raise ValueError("must be one of enum values ('allowed', 'blocked', 'not_specified')")
|
|
53
53
|
return value
|
|
54
54
|
|
|
55
55
|
@field_validator('googlebot')
|
|
@@ -58,8 +58,8 @@ class SiteFilesBotAccess(BaseModel):
|
|
|
58
58
|
if value is None:
|
|
59
59
|
return value
|
|
60
60
|
|
|
61
|
-
if value not in set(['allowed', '
|
|
62
|
-
raise ValueError("must be one of enum values ('allowed', '
|
|
61
|
+
if value not in set(['allowed', 'blocked', 'not_specified']):
|
|
62
|
+
raise ValueError("must be one of enum values ('allowed', 'blocked', 'not_specified')")
|
|
63
63
|
return value
|
|
64
64
|
|
|
65
65
|
model_config = ConfigDict(
|
|
@@ -40,8 +40,8 @@ class StructuredData(BaseModel):
|
|
|
40
40
|
if value is None:
|
|
41
41
|
return value
|
|
42
42
|
|
|
43
|
-
if value not in set(['
|
|
44
|
-
raise ValueError("must be one of enum values ('
|
|
43
|
+
if value not in set(['Good', 'Needs Improvement', 'Poor']):
|
|
44
|
+
raise ValueError("must be one of enum values ('Good', 'Needs Improvement', 'Poor')")
|
|
45
45
|
return value
|
|
46
46
|
|
|
47
47
|
model_config = ConfigDict(
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
wordlift_client/__init__.py,sha256=
|
|
2
|
-
wordlift_client/api_client.py,sha256=
|
|
1
|
+
wordlift_client/__init__.py,sha256=iXu3Zo9pb4XhmLw14wLMdwaj1QXeuxRnlajLy-DvhWc,19924
|
|
2
|
+
wordlift_client/api_client.py,sha256=OgQYk9oKCoaugvRbDU6jttk7Itwq_3jZqQC_bIbcYqs,26397
|
|
3
3
|
wordlift_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
-
wordlift_client/configuration.py,sha256
|
|
4
|
+
wordlift_client/configuration.py,sha256=-tL1kSArEyQzMYyeK533c0OHwy6u3CGRxvwix-cBXik,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=ZFtlLTTprWNEj_vslrt3v3nploOs7k1X7XAAixnYIN4,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
|
|
@@ -80,7 +80,7 @@ wordlift_client/api/web_asyncs_metadata_api.py,sha256=cpDQmIGc6uHu5rFXwZAy1cVgcW
|
|
|
80
80
|
wordlift_client/api/web_asyncs_responses_api.py,sha256=h91xI3iIgGoMUcZ7Oft5xiLy0rHh_2qzZDrFTRz3P8w,10889
|
|
81
81
|
wordlift_client/api/web_pages_api.py,sha256=VKPLIaQRxxDn3daP0zvXRiHj2eegsZIjxUmHKzxZXoc,10839
|
|
82
82
|
wordlift_client/api/web_pages_imports_api.py,sha256=yPhNLZ1jV2dEDnYuHb7OpiFH3K2ROrRYHG4ZrAf4VMU,11719
|
|
83
|
-
wordlift_client/models/__init__.py,sha256=
|
|
83
|
+
wordlift_client/models/__init__.py,sha256=JiVI6hniFzJl7yIWkF_uALxoroNrgbZjUiS2clqtgps,14386
|
|
84
84
|
wordlift_client/models/account.py,sha256=trGNzy3ZBGE1VsSke4aoXBQem-3jK60xVz0OWOOMWso,5523
|
|
85
85
|
wordlift_client/models/account_config.py,sha256=_4YZ8IGS4h16wa9aSaL9rpeoZYR8faiwEAtovP4eBVI,2592
|
|
86
86
|
wordlift_client/models/account_info.py,sha256=tCqVHqfeK5u1cQkLOBgJRUTs-e8vmGCjqZ4wgfmNIuw,7750
|
|
@@ -105,7 +105,7 @@ wordlift_client/models/author_request.py,sha256=-tlrtx2BacQhIqWOxdEp5shjHf6Pfwfh
|
|
|
105
105
|
wordlift_client/models/authorization.py,sha256=VNm4E9yox7vunAjtmSV-5SnL_jWFZ2ey7TRMtvLtwfc,3324
|
|
106
106
|
wordlift_client/models/authorization_status.py,sha256=YLw0WWVlTTtqS7KMfd21Wh97SyPkKSuZZf6u0Ac7fTk,697
|
|
107
107
|
wordlift_client/models/autocomplete_result.py,sha256=EIAcjVe8lmX5tI-FKvidO5c4jTOBSVmHosRYZY0oW0I,4159
|
|
108
|
-
wordlift_client/models/automation_readiness.py,sha256=
|
|
108
|
+
wordlift_client/models/automation_readiness.py,sha256=Fh0pi0n4f1E65hSpFfwScCce-nTakIcHG-gZCk9hDsY,3118
|
|
109
109
|
wordlift_client/models/batch_request.py,sha256=grr0474p7OooNlz2xwqWCYuBSMP6s9TMUdoKxQWgMqw,2742
|
|
110
110
|
wordlift_client/models/botify_crawl_import_request.py,sha256=mKP8_tSa2AB299-Tp1wDmiJXymN82WPiHkl_6eB4hTw,3656
|
|
111
111
|
wordlift_client/models/build_authorize_uri_request.py,sha256=6KxljTA8M8InFNOl3RRsDKzycSFZWJomPCu-MkS7bFM,2617
|
|
@@ -130,7 +130,7 @@ wordlift_client/models/content_expansion_response.py,sha256=M3UGVHEHpPne6kTYaa-B
|
|
|
130
130
|
wordlift_client/models/content_generation.py,sha256=5VY9sDx8frKNy2hEWnF9N381vJZfFgbb4JoLAPmeKN4,5883
|
|
131
131
|
wordlift_client/models/content_generation_request.py,sha256=pH3mXp9_bwWg9l_giZgZBDGtagGN5MWp-yPWHwcn3aw,5030
|
|
132
132
|
wordlift_client/models/content_generation_stats.py,sha256=phgHuD65AXa1Z39OLwIIA56qeH4AKZSzeANDHW8-yBw,3190
|
|
133
|
-
wordlift_client/models/content_structure.py,sha256=
|
|
133
|
+
wordlift_client/models/content_structure.py,sha256=ulwbJfzQ24GqcM2j7SLxc-ljEbkKFRhDpb6KIAQqLJ0,3242
|
|
134
134
|
wordlift_client/models/create_embeddings_input.py,sha256=tbdsI0ptkn7zr_jcWwOPA8lAX2UydT4R-KzW82wzoFg,2440
|
|
135
135
|
wordlift_client/models/create_seo_score200_response.py,sha256=qh4q1BUNCp6ZaXPftYNbPTuiGAbfP6sk8J2iKvaiZVM,2632
|
|
136
136
|
wordlift_client/models/create_seo_score_request.py,sha256=yOMTVyZqWIOwqm4wtRW7VEIUtJQLHywaAcVUCNH3Itk,3149
|
|
@@ -159,7 +159,7 @@ wordlift_client/models/graphql_request.py,sha256=TkvPntW0xmcruYj5j3fxLCvMdwMIxQQ
|
|
|
159
159
|
wordlift_client/models/html.py,sha256=keTq3omKua8Yhi4mdrgq1NhXCSLKQSnCnpV1w3fpoXM,2700
|
|
160
160
|
wordlift_client/models/http_validation_error.py,sha256=4qnhNjH0bYJfmTa-UTbfPA4lc8fZUzrMOy44aks-MRo,2924
|
|
161
161
|
wordlift_client/models/image.py,sha256=EknFeRXBnBAkgyXyS78NPrtYHz6lI1sG8wvn0ZbkPuI,2591
|
|
162
|
-
wordlift_client/models/image_accessibility.py,sha256=
|
|
162
|
+
wordlift_client/models/image_accessibility.py,sha256=_xwaepcdvy2V7jDUbrx2mtAc2Ztr3oQlPJ8oZ7hNwkA,3763
|
|
163
163
|
wordlift_client/models/image_to_text_request.py,sha256=7F1d91USnr4U9-u7h5c2laoTGTVXyFLC_EUwWRaYBKc,3157
|
|
164
164
|
wordlift_client/models/image_to_text_response.py,sha256=czD74ZlWPGXaxwT2ngZaSJTekfj9f8V2uYktOgyzIG0,2502
|
|
165
165
|
wordlift_client/models/include_exclude.py,sha256=oYpxf-RmSRG2D3ghdxk6X70wsvCHpDaBmvzuTaNm_Gk,3302
|
|
@@ -170,7 +170,7 @@ wordlift_client/models/internal_link_destination.py,sha256=xWWqeUtc7MY2ErG7zitUP
|
|
|
170
170
|
wordlift_client/models/internal_link_request.py,sha256=72ouLEOqachUNYOAEDxhOwrG43wBTGDZ5g1y6dibfvs,3537
|
|
171
171
|
wordlift_client/models/internal_link_source.py,sha256=TCovpxQBR2v537rFePpptO4DEi--5V9fmmqMYA0jPrQ,2740
|
|
172
172
|
wordlift_client/models/item.py,sha256=MvFFi8thULENZd9sbzTYlZH2bwqCGxwXJp4YJqtQvFs,3092
|
|
173
|
-
wordlift_client/models/js_rendering.py,sha256=
|
|
173
|
+
wordlift_client/models/js_rendering.py,sha256=Dj8noiEnug888bjQijWWg9Y0dHbsInDB_F0c7pEmL44,4793
|
|
174
174
|
wordlift_client/models/kg_embedding_request.py,sha256=du2ce52FsAkkr5sLGvShzCQXFsXJHvQ8dDy5ita2tWw,2974
|
|
175
175
|
wordlift_client/models/kg_embedding_response.py,sha256=v4fz8xCXdcHclAbvBxLmmgV2k-Fki_OJfIhL8GzIHpk,2569
|
|
176
176
|
wordlift_client/models/level_enum.py,sha256=0SRm7XXcgWCxcbrVHFi7GoFdmpla38Fl3RXIXH8_YVk,700
|
|
@@ -233,13 +233,13 @@ wordlift_client/models/response2.py,sha256=8ZNs6RJIVuUtUMcH2Nvdrc8d4syJ5DkF9SRkb
|
|
|
233
233
|
wordlift_client/models/rule.py,sha256=23YiNYJrMuFG4FYjBtDHmlS1H_zLFIb190Y7wTY_WQU,5679
|
|
234
234
|
wordlift_client/models/rule_request.py,sha256=LlSs39bL6JG00IFNrhX0NyVe7VsW5nE8p1Lvo0HZ_bI,5186
|
|
235
235
|
wordlift_client/models/scope.py,sha256=VwGzE4WpI5IwFwjJ-E00a0VfUHQhfOFvAEB4KW73hmE,676
|
|
236
|
-
wordlift_client/models/seo_fundamentals.py,sha256=
|
|
237
|
-
wordlift_client/models/site_files.py,sha256=
|
|
238
|
-
wordlift_client/models/site_files_bot_access.py,sha256=
|
|
236
|
+
wordlift_client/models/seo_fundamentals.py,sha256=RJGN7J-upS7kpglVA3Ylnf_Klo0KvsWyaYKV2TU5Gc8,3851
|
|
237
|
+
wordlift_client/models/site_files.py,sha256=73VbrmAkTWBRz-SJ4kJJCDE7Lyx9HHbwdpE4a7KVYic,4557
|
|
238
|
+
wordlift_client/models/site_files_bot_access.py,sha256=_54Atx51_zCrxgXgxXRM_Cd_bnnOTNz8uUZSHS1WYXw,3725
|
|
239
239
|
wordlift_client/models/sitemap_import_request.py,sha256=sa_eJNleJlPCiJ7eZp6Alc2pG-Q3Qa7g4f-P5mMnCnQ,4440
|
|
240
240
|
wordlift_client/models/smart_content.py,sha256=k6p7FXUkoEZ-UPy8WRTuMwA3E7dODmVPOdvSvIn1XRI,3274
|
|
241
241
|
wordlift_client/models/smart_content_request.py,sha256=DKmgsasJuBhv7wItsMMWga016qcawhaM5RSHrsq16FE,3991
|
|
242
|
-
wordlift_client/models/structured_data.py,sha256=
|
|
242
|
+
wordlift_client/models/structured_data.py,sha256=t7BYdqGMA1sFsdQ_v1XdwN4cJgsVT6_xH6TdSSMww40,3543
|
|
243
243
|
wordlift_client/models/submit_fact_check200_response.py,sha256=K_J_8_N12bSWcnDi_rmvWzl6Hujz5PswSoxhWaKtkaY,2503
|
|
244
244
|
wordlift_client/models/submit_fact_check_request.py,sha256=CZmGQklpRWMn5OnBUAFId9b_DQFxMJ-RurF3IcJtPJg,2475
|
|
245
245
|
wordlift_client/models/token_response.py,sha256=Bc0JsyjFwIEw057vbtGQKvBe4we-xjUs_uqNuahhW88,3195
|
|
@@ -276,8 +276,8 @@ wordlift_client/models/with_limits.py,sha256=rSzDb_If8APxR2Rw2U6cfFRFubnnai3Vj3-
|
|
|
276
276
|
wordlift_client/models/word.py,sha256=FPCGb6ohwdfydE5_qG4PT-UrnMzaTktAWqEEnezwaso,3922
|
|
277
277
|
wordlift_client/models/word_repetition_data.py,sha256=CQnxCnhakt12czl6a_AQIPgHlJtvR9YGBIjGV22rq14,2659
|
|
278
278
|
wordlift_client/models/word_request.py,sha256=ZD13xNRYCZmF14jxEDrRRyEMAd-quDT-HsqkbUP_xWU,2627
|
|
279
|
-
wordlift_client-1.
|
|
280
|
-
wordlift_client-1.
|
|
281
|
-
wordlift_client-1.
|
|
282
|
-
wordlift_client-1.
|
|
283
|
-
wordlift_client-1.
|
|
279
|
+
wordlift_client-1.125.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
280
|
+
wordlift_client-1.125.0.dist-info/METADATA,sha256=33SE7W7PVoOAKyJeg6IEmZDZhRcF6yiRuuSR2M_t8a8,530
|
|
281
|
+
wordlift_client-1.125.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
282
|
+
wordlift_client-1.125.0.dist-info/top_level.txt,sha256=p7KFYU869ksxkpP7ADvg8baPgWkTYCzcOpDl1qrJdHk,16
|
|
283
|
+
wordlift_client-1.125.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|