wordlift-client 1.121.0__py3-none-any.whl → 1.123.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.
Files changed (45) hide show
  1. wordlift_client/__init__.py +17 -1
  2. wordlift_client/api/__init__.py +1 -0
  3. wordlift_client/api/audit_api.py +315 -0
  4. wordlift_client/api/autocomplete_api.py +7 -7
  5. wordlift_client/api/content_generation_records_api.py +16 -16
  6. wordlift_client/api/content_generation_stats_api.py +7 -7
  7. wordlift_client/api/content_generation_syncs_api.py +7 -7
  8. wordlift_client/api/data_uri_api.py +7 -7
  9. wordlift_client/api/inspector_api.py +7 -7
  10. wordlift_client/api/merchant_syncs_api.py +7 -7
  11. wordlift_client/api/redeem_codes_api.py +16 -16
  12. wordlift_client/api/web_asyncs_metadata_api.py +7 -7
  13. wordlift_client/api_client.py +1 -1
  14. wordlift_client/configuration.py +1 -1
  15. wordlift_client/models/__init__.py +15 -0
  16. wordlift_client/models/audit_data.py +166 -0
  17. wordlift_client/models/audit_request.py +88 -0
  18. wordlift_client/models/audit_response.py +94 -0
  19. wordlift_client/models/automation_readiness.py +102 -0
  20. wordlift_client/models/content_structure.py +103 -0
  21. wordlift_client/models/entity.py +7 -23
  22. wordlift_client/models/entity1.py +23 -7
  23. wordlift_client/models/error_response.py +90 -0
  24. wordlift_client/models/image_accessibility.py +107 -0
  25. wordlift_client/models/js_rendering.py +130 -0
  26. wordlift_client/models/longtail_response.py +3 -3
  27. wordlift_client/models/properties.py +8 -8
  28. wordlift_client/models/properties1.py +8 -8
  29. wordlift_client/models/quick_win.py +102 -0
  30. wordlift_client/models/rank_entities.py +3 -3
  31. wordlift_client/models/request1.py +4 -11
  32. wordlift_client/models/request2.py +11 -4
  33. wordlift_client/models/response2.py +3 -3
  34. wordlift_client/models/seo_fundamentals.py +116 -0
  35. wordlift_client/models/site_files.py +130 -0
  36. wordlift_client/models/site_files_bot_access.py +122 -0
  37. wordlift_client/models/structured_data.py +106 -0
  38. wordlift_client/models/validation_error1.py +96 -0
  39. wordlift_client/models/validation_error1_detail_inner.py +92 -0
  40. wordlift_client/models/with_limits.py +2 -3
  41. {wordlift_client-1.121.0.dist-info → wordlift_client-1.123.0.dist-info}/METADATA +1 -1
  42. {wordlift_client-1.121.0.dist-info → wordlift_client-1.123.0.dist-info}/RECORD +45 -29
  43. {wordlift_client-1.121.0.dist-info → wordlift_client-1.123.0.dist-info}/LICENSE +0 -0
  44. {wordlift_client-1.121.0.dist-info → wordlift_client-1.123.0.dist-info}/WHEEL +0 -0
  45. {wordlift_client-1.121.0.dist-info → wordlift_client-1.123.0.dist-info}/top_level.txt +0 -0
@@ -39,7 +39,7 @@ class ContentGenerationSyncsApi:
39
39
 
40
40
 
41
41
  @validate_call
42
- async def create_sync(
42
+ async def create_sync1(
43
43
  self,
44
44
  content_generation_id: Annotated[StrictInt, Field(description="The Content Generation id.")],
45
45
  _request_timeout: Union[
@@ -82,7 +82,7 @@ class ContentGenerationSyncsApi:
82
82
  :return: Returns the result object.
83
83
  """ # noqa: E501
84
84
 
85
- _param = self._create_sync_serialize(
85
+ _param = self._create_sync1_serialize(
86
86
  content_generation_id=content_generation_id,
87
87
  _request_auth=_request_auth,
88
88
  _content_type=_content_type,
@@ -106,7 +106,7 @@ class ContentGenerationSyncsApi:
106
106
 
107
107
 
108
108
  @validate_call
109
- async def create_sync_with_http_info(
109
+ async def create_sync1_with_http_info(
110
110
  self,
111
111
  content_generation_id: Annotated[StrictInt, Field(description="The Content Generation id.")],
112
112
  _request_timeout: Union[
@@ -149,7 +149,7 @@ class ContentGenerationSyncsApi:
149
149
  :return: Returns the result object.
150
150
  """ # noqa: E501
151
151
 
152
- _param = self._create_sync_serialize(
152
+ _param = self._create_sync1_serialize(
153
153
  content_generation_id=content_generation_id,
154
154
  _request_auth=_request_auth,
155
155
  _content_type=_content_type,
@@ -173,7 +173,7 @@ class ContentGenerationSyncsApi:
173
173
 
174
174
 
175
175
  @validate_call
176
- async def create_sync_without_preload_content(
176
+ async def create_sync1_without_preload_content(
177
177
  self,
178
178
  content_generation_id: Annotated[StrictInt, Field(description="The Content Generation id.")],
179
179
  _request_timeout: Union[
@@ -216,7 +216,7 @@ class ContentGenerationSyncsApi:
216
216
  :return: Returns the result object.
217
217
  """ # noqa: E501
218
218
 
219
- _param = self._create_sync_serialize(
219
+ _param = self._create_sync1_serialize(
220
220
  content_generation_id=content_generation_id,
221
221
  _request_auth=_request_auth,
222
222
  _content_type=_content_type,
@@ -235,7 +235,7 @@ class ContentGenerationSyncsApi:
235
235
  return response_data.response
236
236
 
237
237
 
238
- def _create_sync_serialize(
238
+ def _create_sync1_serialize(
239
239
  self,
240
240
  content_generation_id,
241
241
  _request_auth,
@@ -39,7 +39,7 @@ class DataURIApi:
39
39
 
40
40
 
41
41
  @validate_call
42
- async def get3(
42
+ async def get1(
43
43
  self,
44
44
  u: Annotated[StrictStr, Field(description="The Web Page URL.")],
45
45
  _request_timeout: Union[
@@ -83,7 +83,7 @@ class DataURIApi:
83
83
  :return: Returns the result object.
84
84
  """ # noqa: E501
85
85
 
86
- _param = self._get3_serialize(
86
+ _param = self._get1_serialize(
87
87
  u=u,
88
88
  _request_auth=_request_auth,
89
89
  _content_type=_content_type,
@@ -106,7 +106,7 @@ class DataURIApi:
106
106
 
107
107
 
108
108
  @validate_call
109
- async def get3_with_http_info(
109
+ async def get1_with_http_info(
110
110
  self,
111
111
  u: Annotated[StrictStr, Field(description="The Web Page URL.")],
112
112
  _request_timeout: Union[
@@ -150,7 +150,7 @@ class DataURIApi:
150
150
  :return: Returns the result object.
151
151
  """ # noqa: E501
152
152
 
153
- _param = self._get3_serialize(
153
+ _param = self._get1_serialize(
154
154
  u=u,
155
155
  _request_auth=_request_auth,
156
156
  _content_type=_content_type,
@@ -173,7 +173,7 @@ class DataURIApi:
173
173
 
174
174
 
175
175
  @validate_call
176
- async def get3_without_preload_content(
176
+ async def get1_without_preload_content(
177
177
  self,
178
178
  u: Annotated[StrictStr, Field(description="The Web Page URL.")],
179
179
  _request_timeout: Union[
@@ -217,7 +217,7 @@ class DataURIApi:
217
217
  :return: Returns the result object.
218
218
  """ # noqa: E501
219
219
 
220
- _param = self._get3_serialize(
220
+ _param = self._get1_serialize(
221
221
  u=u,
222
222
  _request_auth=_request_auth,
223
223
  _content_type=_content_type,
@@ -235,7 +235,7 @@ class DataURIApi:
235
235
  return response_data.response
236
236
 
237
237
 
238
- def _get3_serialize(
238
+ def _get1_serialize(
239
239
  self,
240
240
  u,
241
241
  _request_auth,
@@ -41,7 +41,7 @@ class InspectorApi:
41
41
 
42
42
 
43
43
  @validate_call
44
- async def get2(
44
+ async def get3(
45
45
  self,
46
46
  u: Annotated[StrictStr, Field(description="The URL to inspect")],
47
47
  f: Annotated[StrictStr, Field(description="Filters to be applied on the result, if you want to apply multiple filters they should be separated by comma")],
@@ -91,7 +91,7 @@ class InspectorApi:
91
91
  :return: Returns the result object.
92
92
  """ # noqa: E501
93
93
 
94
- _param = self._get2_serialize(
94
+ _param = self._get3_serialize(
95
95
  u=u,
96
96
  f=f,
97
97
  classes=classes,
@@ -118,7 +118,7 @@ class InspectorApi:
118
118
 
119
119
 
120
120
  @validate_call
121
- async def get2_with_http_info(
121
+ async def get3_with_http_info(
122
122
  self,
123
123
  u: Annotated[StrictStr, Field(description="The URL to inspect")],
124
124
  f: Annotated[StrictStr, Field(description="Filters to be applied on the result, if you want to apply multiple filters they should be separated by comma")],
@@ -168,7 +168,7 @@ class InspectorApi:
168
168
  :return: Returns the result object.
169
169
  """ # noqa: E501
170
170
 
171
- _param = self._get2_serialize(
171
+ _param = self._get3_serialize(
172
172
  u=u,
173
173
  f=f,
174
174
  classes=classes,
@@ -195,7 +195,7 @@ class InspectorApi:
195
195
 
196
196
 
197
197
  @validate_call
198
- async def get2_without_preload_content(
198
+ async def get3_without_preload_content(
199
199
  self,
200
200
  u: Annotated[StrictStr, Field(description="The URL to inspect")],
201
201
  f: Annotated[StrictStr, Field(description="Filters to be applied on the result, if you want to apply multiple filters they should be separated by comma")],
@@ -245,7 +245,7 @@ class InspectorApi:
245
245
  :return: Returns the result object.
246
246
  """ # noqa: E501
247
247
 
248
- _param = self._get2_serialize(
248
+ _param = self._get3_serialize(
249
249
  u=u,
250
250
  f=f,
251
251
  classes=classes,
@@ -267,7 +267,7 @@ class InspectorApi:
267
267
  return response_data.response
268
268
 
269
269
 
270
- def _get2_serialize(
270
+ def _get3_serialize(
271
271
  self,
272
272
  u,
273
273
  f,
@@ -42,7 +42,7 @@ class MerchantSyncsApi:
42
42
 
43
43
 
44
44
  @validate_call
45
- async def create_sync1(
45
+ async def create_sync(
46
46
  self,
47
47
  merchant_id: Annotated[StrictInt, Field(description="The Merchant's `id`")],
48
48
  _request_timeout: Union[
@@ -85,7 +85,7 @@ class MerchantSyncsApi:
85
85
  :return: Returns the result object.
86
86
  """ # noqa: E501
87
87
 
88
- _param = self._create_sync1_serialize(
88
+ _param = self._create_sync_serialize(
89
89
  merchant_id=merchant_id,
90
90
  _request_auth=_request_auth,
91
91
  _content_type=_content_type,
@@ -111,7 +111,7 @@ class MerchantSyncsApi:
111
111
 
112
112
 
113
113
  @validate_call
114
- async def create_sync1_with_http_info(
114
+ async def create_sync_with_http_info(
115
115
  self,
116
116
  merchant_id: Annotated[StrictInt, Field(description="The Merchant's `id`")],
117
117
  _request_timeout: Union[
@@ -154,7 +154,7 @@ class MerchantSyncsApi:
154
154
  :return: Returns the result object.
155
155
  """ # noqa: E501
156
156
 
157
- _param = self._create_sync1_serialize(
157
+ _param = self._create_sync_serialize(
158
158
  merchant_id=merchant_id,
159
159
  _request_auth=_request_auth,
160
160
  _content_type=_content_type,
@@ -180,7 +180,7 @@ class MerchantSyncsApi:
180
180
 
181
181
 
182
182
  @validate_call
183
- async def create_sync1_without_preload_content(
183
+ async def create_sync_without_preload_content(
184
184
  self,
185
185
  merchant_id: Annotated[StrictInt, Field(description="The Merchant's `id`")],
186
186
  _request_timeout: Union[
@@ -223,7 +223,7 @@ class MerchantSyncsApi:
223
223
  :return: Returns the result object.
224
224
  """ # noqa: E501
225
225
 
226
- _param = self._create_sync1_serialize(
226
+ _param = self._create_sync_serialize(
227
227
  merchant_id=merchant_id,
228
228
  _request_auth=_request_auth,
229
229
  _content_type=_content_type,
@@ -244,7 +244,7 @@ class MerchantSyncsApi:
244
244
  return response_data.response
245
245
 
246
246
 
247
- def _create_sync1_serialize(
247
+ def _create_sync_serialize(
248
248
  self,
249
249
  merchant_id,
250
250
  _request_auth,
@@ -17,7 +17,7 @@ from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
17
17
  from typing import Any, Dict, List, Optional, Tuple, Union
18
18
  from typing_extensions import Annotated
19
19
 
20
- from wordlift_client.models.request2 import Request2
20
+ from wordlift_client.models.request1 import Request1
21
21
  from wordlift_client.models.response1 import Response1
22
22
 
23
23
  from wordlift_client.api_client import ApiClient, RequestSerialized
@@ -41,7 +41,7 @@ class RedeemCodesApi:
41
41
  @validate_call
42
42
  async def redeem_code(
43
43
  self,
44
- request2: Request2,
44
+ request1: Request1,
45
45
  _request_timeout: Union[
46
46
  None,
47
47
  Annotated[StrictFloat, Field(gt=0)],
@@ -58,8 +58,8 @@ class RedeemCodesApi:
58
58
  """Redeem the provided code and get a key
59
59
 
60
60
 
61
- :param request2: (required)
62
- :type request2: Request2
61
+ :param request1: (required)
62
+ :type request1: Request1
63
63
  :param _request_timeout: timeout setting for this request. If one
64
64
  number provided, it will be total request
65
65
  timeout. It can also be a pair (tuple) of
@@ -83,7 +83,7 @@ class RedeemCodesApi:
83
83
  """ # noqa: E501
84
84
 
85
85
  _param = self._redeem_code_serialize(
86
- request2=request2,
86
+ request1=request1,
87
87
  _request_auth=_request_auth,
88
88
  _content_type=_content_type,
89
89
  _headers=_headers,
@@ -110,7 +110,7 @@ class RedeemCodesApi:
110
110
  @validate_call
111
111
  async def redeem_code_with_http_info(
112
112
  self,
113
- request2: Request2,
113
+ request1: Request1,
114
114
  _request_timeout: Union[
115
115
  None,
116
116
  Annotated[StrictFloat, Field(gt=0)],
@@ -127,8 +127,8 @@ class RedeemCodesApi:
127
127
  """Redeem the provided code and get a key
128
128
 
129
129
 
130
- :param request2: (required)
131
- :type request2: Request2
130
+ :param request1: (required)
131
+ :type request1: Request1
132
132
  :param _request_timeout: timeout setting for this request. If one
133
133
  number provided, it will be total request
134
134
  timeout. It can also be a pair (tuple) of
@@ -152,7 +152,7 @@ class RedeemCodesApi:
152
152
  """ # noqa: E501
153
153
 
154
154
  _param = self._redeem_code_serialize(
155
- request2=request2,
155
+ request1=request1,
156
156
  _request_auth=_request_auth,
157
157
  _content_type=_content_type,
158
158
  _headers=_headers,
@@ -179,7 +179,7 @@ class RedeemCodesApi:
179
179
  @validate_call
180
180
  async def redeem_code_without_preload_content(
181
181
  self,
182
- request2: Request2,
182
+ request1: Request1,
183
183
  _request_timeout: Union[
184
184
  None,
185
185
  Annotated[StrictFloat, Field(gt=0)],
@@ -196,8 +196,8 @@ class RedeemCodesApi:
196
196
  """Redeem the provided code and get a key
197
197
 
198
198
 
199
- :param request2: (required)
200
- :type request2: Request2
199
+ :param request1: (required)
200
+ :type request1: Request1
201
201
  :param _request_timeout: timeout setting for this request. If one
202
202
  number provided, it will be total request
203
203
  timeout. It can also be a pair (tuple) of
@@ -221,7 +221,7 @@ class RedeemCodesApi:
221
221
  """ # noqa: E501
222
222
 
223
223
  _param = self._redeem_code_serialize(
224
- request2=request2,
224
+ request1=request1,
225
225
  _request_auth=_request_auth,
226
226
  _content_type=_content_type,
227
227
  _headers=_headers,
@@ -243,7 +243,7 @@ class RedeemCodesApi:
243
243
 
244
244
  def _redeem_code_serialize(
245
245
  self,
246
- request2,
246
+ request1,
247
247
  _request_auth,
248
248
  _content_type,
249
249
  _headers,
@@ -267,8 +267,8 @@ class RedeemCodesApi:
267
267
  # process the header parameters
268
268
  # process the form parameters
269
269
  # process the body parameter
270
- if request2 is not None:
271
- _body_params = request2
270
+ if request1 is not None:
271
+ _body_params = request1
272
272
 
273
273
 
274
274
  # set the HTTP header `Accept`
@@ -41,7 +41,7 @@ class WebAsyncsMetadataApi:
41
41
 
42
42
 
43
43
  @validate_call
44
- async def get4(
44
+ async def get(
45
45
  self,
46
46
  id: Annotated[StrictStr, Field(description="The Web Async id")],
47
47
  _request_timeout: Union[
@@ -85,7 +85,7 @@ class WebAsyncsMetadataApi:
85
85
  :return: Returns the result object.
86
86
  """ # noqa: E501
87
87
 
88
- _param = self._get4_serialize(
88
+ _param = self._get_serialize(
89
89
  id=id,
90
90
  _request_auth=_request_auth,
91
91
  _content_type=_content_type,
@@ -110,7 +110,7 @@ class WebAsyncsMetadataApi:
110
110
 
111
111
 
112
112
  @validate_call
113
- async def get4_with_http_info(
113
+ async def get_with_http_info(
114
114
  self,
115
115
  id: Annotated[StrictStr, Field(description="The Web Async id")],
116
116
  _request_timeout: Union[
@@ -154,7 +154,7 @@ class WebAsyncsMetadataApi:
154
154
  :return: Returns the result object.
155
155
  """ # noqa: E501
156
156
 
157
- _param = self._get4_serialize(
157
+ _param = self._get_serialize(
158
158
  id=id,
159
159
  _request_auth=_request_auth,
160
160
  _content_type=_content_type,
@@ -179,7 +179,7 @@ class WebAsyncsMetadataApi:
179
179
 
180
180
 
181
181
  @validate_call
182
- async def get4_without_preload_content(
182
+ async def get_without_preload_content(
183
183
  self,
184
184
  id: Annotated[StrictStr, Field(description="The Web Async id")],
185
185
  _request_timeout: Union[
@@ -223,7 +223,7 @@ class WebAsyncsMetadataApi:
223
223
  :return: Returns the result object.
224
224
  """ # noqa: E501
225
225
 
226
- _param = self._get4_serialize(
226
+ _param = self._get_serialize(
227
227
  id=id,
228
228
  _request_auth=_request_auth,
229
229
  _content_type=_content_type,
@@ -243,7 +243,7 @@ class WebAsyncsMetadataApi:
243
243
  return response_data.response
244
244
 
245
245
 
246
- def _get4_serialize(
246
+ def _get_serialize(
247
247
  self,
248
248
  id,
249
249
  _request_auth,
@@ -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.121.0/python'
92
+ self.user_agent = 'OpenAPI-Generator/1.123.0/python'
93
93
  self.client_side_validation = configuration.client_side_validation
94
94
 
95
95
  async def __aenter__(self):
@@ -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.121.0".\
429
+ "SDK Package Version: 1.123.0".\
430
430
  format(env=sys.platform, pyversion=sys.version)
431
431
 
432
432
  def get_host_settings(self):
@@ -32,10 +32,14 @@ from wordlift_client.models.anchor_text import AnchorText
32
32
  from wordlift_client.models.annotation import Annotation
33
33
  from wordlift_client.models.ask_request import AskRequest
34
34
  from wordlift_client.models.ask_response import AskResponse
35
+ from wordlift_client.models.audit_data import AuditData
36
+ from wordlift_client.models.audit_request import AuditRequest
37
+ from wordlift_client.models.audit_response import AuditResponse
35
38
  from wordlift_client.models.author_request import AuthorRequest
36
39
  from wordlift_client.models.authorization import Authorization
37
40
  from wordlift_client.models.authorization_status import AuthorizationStatus
38
41
  from wordlift_client.models.autocomplete_result import AutocompleteResult
42
+ from wordlift_client.models.automation_readiness import AutomationReadiness
39
43
  from wordlift_client.models.batch_request import BatchRequest
40
44
  from wordlift_client.models.botify_crawl_import_request import BotifyCrawlImportRequest
41
45
  from wordlift_client.models.build_authorize_uri_request import BuildAuthorizeUriRequest
@@ -60,6 +64,7 @@ from wordlift_client.models.content_expansion_response import ContentExpansionRe
60
64
  from wordlift_client.models.content_generation import ContentGeneration
61
65
  from wordlift_client.models.content_generation_request import ContentGenerationRequest
62
66
  from wordlift_client.models.content_generation_stats import ContentGenerationStats
67
+ from wordlift_client.models.content_structure import ContentStructure
63
68
  from wordlift_client.models.create_embeddings_input import CreateEmbeddingsInput
64
69
  from wordlift_client.models.create_seo_score200_response import CreateSEOScore200Response
65
70
  from wordlift_client.models.create_seo_score_request import CreateSEOScoreRequest
@@ -73,6 +78,7 @@ from wordlift_client.models.entity1 import Entity1
73
78
  from wordlift_client.models.entity_gap_request import EntityGapRequest
74
79
  from wordlift_client.models.entity_match import EntityMatch
75
80
  from wordlift_client.models.entity_patch_request import EntityPatchRequest
81
+ from wordlift_client.models.error_response import ErrorResponse
76
82
  from wordlift_client.models.event import Event
77
83
  from wordlift_client.models.exchange_auth_code_request import ExchangeAuthCodeRequest
78
84
  from wordlift_client.models.exchange_auth_code_response import ExchangeAuthCodeResponse
@@ -84,6 +90,7 @@ from wordlift_client.models.graphql_request import GraphqlRequest
84
90
  from wordlift_client.models.http_validation_error import HTTPValidationError
85
91
  from wordlift_client.models.html import Html
86
92
  from wordlift_client.models.image import Image
93
+ from wordlift_client.models.image_accessibility import ImageAccessibility
87
94
  from wordlift_client.models.image_to_text_request import ImageToTextRequest
88
95
  from wordlift_client.models.image_to_text_response import ImageToTextResponse
89
96
  from wordlift_client.models.include_exclude import IncludeExclude
@@ -94,6 +101,7 @@ from wordlift_client.models.internal_link_destination import InternalLinkDestina
94
101
  from wordlift_client.models.internal_link_request import InternalLinkRequest
95
102
  from wordlift_client.models.internal_link_source import InternalLinkSource
96
103
  from wordlift_client.models.item import Item
104
+ from wordlift_client.models.js_rendering import JsRendering
97
105
  from wordlift_client.models.kg_embedding_request import KgEmbeddingRequest
98
106
  from wordlift_client.models.kg_embedding_response import KgEmbeddingResponse
99
107
  from wordlift_client.models.level_enum import LevelEnum
@@ -141,6 +149,7 @@ from wordlift_client.models.properties import Properties
141
149
  from wordlift_client.models.properties1 import Properties1
142
150
  from wordlift_client.models.question_and_answer import QuestionAndAnswer
143
151
  from wordlift_client.models.question_and_answer_request import QuestionAndAnswerRequest
152
+ from wordlift_client.models.quick_win import QuickWin
144
153
  from wordlift_client.models.rank_entities import RankEntities
145
154
  from wordlift_client.models.record import Record
146
155
  from wordlift_client.models.render_request import RenderRequest
@@ -154,9 +163,13 @@ from wordlift_client.models.response2 import Response2
154
163
  from wordlift_client.models.rule import Rule
155
164
  from wordlift_client.models.rule_request import RuleRequest
156
165
  from wordlift_client.models.scope import Scope
166
+ from wordlift_client.models.seo_fundamentals import SeoFundamentals
167
+ from wordlift_client.models.site_files import SiteFiles
168
+ from wordlift_client.models.site_files_bot_access import SiteFilesBotAccess
157
169
  from wordlift_client.models.sitemap_import_request import SitemapImportRequest
158
170
  from wordlift_client.models.smart_content import SmartContent
159
171
  from wordlift_client.models.smart_content_request import SmartContentRequest
172
+ from wordlift_client.models.structured_data import StructuredData
160
173
  from wordlift_client.models.submit_fact_check200_response import SubmitFactCheck200Response
161
174
  from wordlift_client.models.submit_fact_check_request import SubmitFactCheckRequest
162
175
  from wordlift_client.models.token_response import TokenResponse
@@ -168,6 +181,8 @@ from wordlift_client.models.update_record_request import UpdateRecordRequest
168
181
  from wordlift_client.models.update_records_request import UpdateRecordsRequest
169
182
  from wordlift_client.models.update_site_url_request import UpdateSiteUrlRequest
170
183
  from wordlift_client.models.validation_error import ValidationError
184
+ from wordlift_client.models.validation_error1 import ValidationError1
185
+ from wordlift_client.models.validation_error1_detail_inner import ValidationError1DetailInner
171
186
  from wordlift_client.models.validation_fix import ValidationFix
172
187
  from wordlift_client.models.validation_result import ValidationResult
173
188
  from wordlift_client.models.validation_type_enum import ValidationTypeEnum