wordlift-client 1.135.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 +16 -2
- wordlift_client/api/__init__.py +1 -0
- wordlift_client/api/audit_api.py +3 -3
- 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 +14 -1
- wordlift_client/models/http_validation_error1.py +96 -0
- 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/resource_request.py +92 -0
- wordlift_client/models/resource_type.py +40 -0
- 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-1.135.0.dist-info → wordlift_client-1.136.0.dist-info}/METADATA +1 -1
- {wordlift_client-1.135.0.dist-info → wordlift_client-1.136.0.dist-info}/RECORD +27 -13
- {wordlift_client-1.135.0.dist-info → wordlift_client-1.136.0.dist-info}/LICENSE +0 -0
- {wordlift_client-1.135.0.dist-info → wordlift_client-1.136.0.dist-info}/WHEEL +0 -0
- {wordlift_client-1.135.0.dist-info → wordlift_client-1.136.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
WordLift API
|
|
5
|
+
|
|
6
|
+
WordLift API
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Contact: hello@wordlift.io
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
from __future__ import annotations
|
|
17
|
+
import pprint
|
|
18
|
+
import re # noqa: F401
|
|
19
|
+
import json
|
|
20
|
+
|
|
21
|
+
from pydantic import BaseModel, ConfigDict
|
|
22
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
|
+
from wordlift_client.models.validation_error2_detail_inner import ValidationError2DetailInner
|
|
24
|
+
from typing import Optional, Set
|
|
25
|
+
from typing_extensions import Self
|
|
26
|
+
|
|
27
|
+
class ValidationError2(BaseModel):
|
|
28
|
+
"""
|
|
29
|
+
ValidationError2
|
|
30
|
+
""" # noqa: E501
|
|
31
|
+
detail: Optional[List[ValidationError2DetailInner]] = None
|
|
32
|
+
__properties: ClassVar[List[str]] = ["detail"]
|
|
33
|
+
|
|
34
|
+
model_config = ConfigDict(
|
|
35
|
+
populate_by_name=True,
|
|
36
|
+
validate_assignment=True,
|
|
37
|
+
protected_namespaces=(),
|
|
38
|
+
)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
def to_str(self) -> str:
|
|
42
|
+
"""Returns the string representation of the model using alias"""
|
|
43
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
44
|
+
|
|
45
|
+
def to_json(self) -> str:
|
|
46
|
+
"""Returns the JSON representation of the model using alias"""
|
|
47
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
48
|
+
return json.dumps(self.to_dict())
|
|
49
|
+
|
|
50
|
+
@classmethod
|
|
51
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
52
|
+
"""Create an instance of ValidationError2 from a JSON string"""
|
|
53
|
+
return cls.from_dict(json.loads(json_str))
|
|
54
|
+
|
|
55
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
56
|
+
"""Return the dictionary representation of the model using alias.
|
|
57
|
+
|
|
58
|
+
This has the following differences from calling pydantic's
|
|
59
|
+
`self.model_dump(by_alias=True)`:
|
|
60
|
+
|
|
61
|
+
* `None` is only added to the output dict for nullable fields that
|
|
62
|
+
were set at model initialization. Other fields with value `None`
|
|
63
|
+
are ignored.
|
|
64
|
+
"""
|
|
65
|
+
excluded_fields: Set[str] = set([
|
|
66
|
+
])
|
|
67
|
+
|
|
68
|
+
_dict = self.model_dump(
|
|
69
|
+
by_alias=True,
|
|
70
|
+
exclude=excluded_fields,
|
|
71
|
+
exclude_none=True,
|
|
72
|
+
)
|
|
73
|
+
# override the default output from pydantic by calling `to_dict()` of each item in detail (list)
|
|
74
|
+
_items = []
|
|
75
|
+
if self.detail:
|
|
76
|
+
for _item in self.detail:
|
|
77
|
+
if _item:
|
|
78
|
+
_items.append(_item.to_dict())
|
|
79
|
+
_dict['detail'] = _items
|
|
80
|
+
return _dict
|
|
81
|
+
|
|
82
|
+
@classmethod
|
|
83
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
84
|
+
"""Create an instance of ValidationError2 from a dict"""
|
|
85
|
+
if obj is None:
|
|
86
|
+
return None
|
|
87
|
+
|
|
88
|
+
if not isinstance(obj, dict):
|
|
89
|
+
return cls.model_validate(obj)
|
|
90
|
+
|
|
91
|
+
_obj = cls.model_validate({
|
|
92
|
+
"detail": [ValidationError2DetailInner.from_dict(_item) for _item in obj["detail"]] if obj.get("detail") is not None else None
|
|
93
|
+
})
|
|
94
|
+
return _obj
|
|
95
|
+
|
|
96
|
+
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
WordLift API
|
|
5
|
+
|
|
6
|
+
WordLift API
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Contact: hello@wordlift.io
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
from __future__ import annotations
|
|
17
|
+
import pprint
|
|
18
|
+
import re # noqa: F401
|
|
19
|
+
import json
|
|
20
|
+
|
|
21
|
+
from pydantic import BaseModel, ConfigDict, StrictStr
|
|
22
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
|
+
from typing import Optional, Set
|
|
24
|
+
from typing_extensions import Self
|
|
25
|
+
|
|
26
|
+
class ValidationError2DetailInner(BaseModel):
|
|
27
|
+
"""
|
|
28
|
+
ValidationError2DetailInner
|
|
29
|
+
""" # noqa: E501
|
|
30
|
+
loc: Optional[List[StrictStr]] = None
|
|
31
|
+
msg: Optional[StrictStr] = None
|
|
32
|
+
type: Optional[StrictStr] = None
|
|
33
|
+
__properties: ClassVar[List[str]] = ["loc", "msg", "type"]
|
|
34
|
+
|
|
35
|
+
model_config = ConfigDict(
|
|
36
|
+
populate_by_name=True,
|
|
37
|
+
validate_assignment=True,
|
|
38
|
+
protected_namespaces=(),
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
def to_str(self) -> str:
|
|
43
|
+
"""Returns the string representation of the model using alias"""
|
|
44
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
45
|
+
|
|
46
|
+
def to_json(self) -> str:
|
|
47
|
+
"""Returns the JSON representation of the model using alias"""
|
|
48
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
49
|
+
return json.dumps(self.to_dict())
|
|
50
|
+
|
|
51
|
+
@classmethod
|
|
52
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
53
|
+
"""Create an instance of ValidationError2DetailInner from a JSON string"""
|
|
54
|
+
return cls.from_dict(json.loads(json_str))
|
|
55
|
+
|
|
56
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
57
|
+
"""Return the dictionary representation of the model using alias.
|
|
58
|
+
|
|
59
|
+
This has the following differences from calling pydantic's
|
|
60
|
+
`self.model_dump(by_alias=True)`:
|
|
61
|
+
|
|
62
|
+
* `None` is only added to the output dict for nullable fields that
|
|
63
|
+
were set at model initialization. Other fields with value `None`
|
|
64
|
+
are ignored.
|
|
65
|
+
"""
|
|
66
|
+
excluded_fields: Set[str] = set([
|
|
67
|
+
])
|
|
68
|
+
|
|
69
|
+
_dict = self.model_dump(
|
|
70
|
+
by_alias=True,
|
|
71
|
+
exclude=excluded_fields,
|
|
72
|
+
exclude_none=True,
|
|
73
|
+
)
|
|
74
|
+
return _dict
|
|
75
|
+
|
|
76
|
+
@classmethod
|
|
77
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
78
|
+
"""Create an instance of ValidationError2DetailInner from a dict"""
|
|
79
|
+
if obj is None:
|
|
80
|
+
return None
|
|
81
|
+
|
|
82
|
+
if not isinstance(obj, dict):
|
|
83
|
+
return cls.model_validate(obj)
|
|
84
|
+
|
|
85
|
+
_obj = cls.model_validate({
|
|
86
|
+
"loc": obj.get("loc"),
|
|
87
|
+
"msg": obj.get("msg"),
|
|
88
|
+
"type": obj.get("type")
|
|
89
|
+
})
|
|
90
|
+
return _obj
|
|
91
|
+
|
|
92
|
+
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
wordlift_client/__init__.py,sha256=
|
|
2
|
-
wordlift_client/api_client.py,sha256=
|
|
1
|
+
wordlift_client/__init__.py,sha256=vmfEu_6ptcCsaKjgSjJ6rMdEhn0qnZkhKS3ewXz0ayU,21483
|
|
2
|
+
wordlift_client/api_client.py,sha256=BVyw4uYPUBBFglvesV_Br9brpIp3QUUZ_C0jC0a_ZwY,26397
|
|
3
3
|
wordlift_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
-
wordlift_client/configuration.py,sha256=
|
|
4
|
+
wordlift_client/configuration.py,sha256=Te21k42TCARC2hGjg5-0V5s3Jr1WTmtEmfoy3Jo--ts,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=3zQPqa8KXNPnz6XQLBZ3RpVD5ulQ6anUfQQ2rimIvm8,5086
|
|
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
|
|
@@ -16,7 +16,7 @@ wordlift_client/api/ai_visibility_api.py,sha256=CfuOGWLl92Vx7k_w-tmj4WOBiyDfPI2s
|
|
|
16
16
|
wordlift_client/api/analyses_api.py,sha256=S4VB2WoTG5WuPdg4xdrLfAR47YrUQzNmoVmVSTdcdvk,42549
|
|
17
17
|
wordlift_client/api/analytics_imports_api.py,sha256=3H2K6QLm7gFck67KCnIXLrKbxsKwjteNgTHD1utDE3s,11969
|
|
18
18
|
wordlift_client/api/analytics_syncs_api.py,sha256=yblLuk2iz9zjqT8rRkmVb7C1rPPxmOcLFnuMpSqq3-Q,22587
|
|
19
|
-
wordlift_client/api/audit_api.py,sha256=
|
|
19
|
+
wordlift_client/api/audit_api.py,sha256=7zreYIo2wcjhqQHJ6dGLBOQ6AJ9pRFgRuayQLDfs4zw,13724
|
|
20
20
|
wordlift_client/api/authors_api.py,sha256=YlGTulVByNBPIAeeLc9nBL3V_INiaoRjXFshfIagNYk,11447
|
|
21
21
|
wordlift_client/api/autocomplete_api.py,sha256=swjFzQDBQtHMgkK5mXeQfgFrVcCBm4WmsMJTItlJmas,14324
|
|
22
22
|
wordlift_client/api/botify_crawl_imports_api.py,sha256=oMRuZBN9xL-LRrvBdqk1JGPjgLLycLZFJ8CWD4Aq5qc,11821
|
|
@@ -37,7 +37,7 @@ wordlift_client/api/content_generations_api.py,sha256=kGWaT5YqqQevaFP-RHvceewI1M
|
|
|
37
37
|
wordlift_client/api/custom_domains_api.py,sha256=LuKLllZaBA9k7W3SBRP4gKDLoF3liCpgffnCdUjZvZ4,11736
|
|
38
38
|
wordlift_client/api/data_uri_api.py,sha256=DB1OfSj7aKtp_YnCzZEZE0RsvwKKTeIs2dyU4hKHRxU,10860
|
|
39
39
|
wordlift_client/api/dataset_api.py,sha256=1HI7Ssmvx5mFLZa_Xldq944GdgLiTF7mY7pU6mbfjj8,42369
|
|
40
|
-
wordlift_client/api/default_api.py,sha256=
|
|
40
|
+
wordlift_client/api/default_api.py,sha256=yV9jpu9T1V8mile0rFDd7Es45tlffyJmifoAVf0p62U,76607
|
|
41
41
|
wordlift_client/api/embedding_api.py,sha256=zvNmwVIaLguoIz7wtb4mmI84CKHil8jBPVhMpdoLyeQ,11732
|
|
42
42
|
wordlift_client/api/embeddings_api.py,sha256=SaKKcVZ6voLpH0Coo5glu7sTsAClHR7eTc9wKiMIMsc,11181
|
|
43
43
|
wordlift_client/api/entities_api.py,sha256=6cQ2m_b5f9aWCGnbb6auGiyrBP6LV7ZQQZDyve7y3ik,59076
|
|
@@ -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=squnFZ909OKoc0qCqZR_rX7V8LUXJDBlom8aBKFgz1g,15890
|
|
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
|
|
@@ -168,6 +168,7 @@ wordlift_client/models/graphql_request.py,sha256=TkvPntW0xmcruYj5j3fxLCvMdwMIxQQ
|
|
|
168
168
|
wordlift_client/models/html.py,sha256=keTq3omKua8Yhi4mdrgq1NhXCSLKQSnCnpV1w3fpoXM,2700
|
|
169
169
|
wordlift_client/models/html_semantics.py,sha256=OcimPSJNYDGXsyh1uHat3GN67Jvn4g4TG8cGcQKhbBM,3097
|
|
170
170
|
wordlift_client/models/http_validation_error.py,sha256=4qnhNjH0bYJfmTa-UTbfPA4lc8fZUzrMOy44aks-MRo,2924
|
|
171
|
+
wordlift_client/models/http_validation_error1.py,sha256=-npNWIZShgJJNdamFDDORTByo8quoZ91nw6xWXZ6KvQ,2932
|
|
171
172
|
wordlift_client/models/image.py,sha256=EknFeRXBnBAkgyXyS78NPrtYHz6lI1sG8wvn0ZbkPuI,2591
|
|
172
173
|
wordlift_client/models/image_accessibility.py,sha256=wHbNtk80ERNe-WMXNa5OJo3aaF4gSpFjPCEHa9Ig9fE,3901
|
|
173
174
|
wordlift_client/models/image_to_text_request.py,sha256=7F1d91USnr4U9-u7h5c2laoTGTVXyFLC_EUwWRaYBKc,3157
|
|
@@ -197,6 +198,10 @@ wordlift_client/models/merchant_view.py,sha256=f5QLaDTArsEYJL0vzD54705NoLpiePXAL
|
|
|
197
198
|
wordlift_client/models/model.py,sha256=g25Ex8ppSUNg5UnFJ4oUNQs8wvWkcgvhaOryAFDhTrc,3107
|
|
198
199
|
wordlift_client/models/model1.py,sha256=8fCFStzvUnJjr1Fs58AgH2bQkiuEA7nQ66RFofgwGJM,5262
|
|
199
200
|
wordlift_client/models/model_field.py,sha256=F0IMs_1Tkg6qODgbtdkaAQLZcPT3PSh_IXdH_H3W9gI,2508
|
|
201
|
+
wordlift_client/models/monitor_result_item.py,sha256=RrCPCPcKmPQJtz9ybwakbq_T2DW37s7MDTOsXIiiL-U,3810
|
|
202
|
+
wordlift_client/models/monitor_state.py,sha256=hIos3pPgX3u42I90ahdpui1aDSg2nlxEeMjXN2ZpAnc,695
|
|
203
|
+
wordlift_client/models/monitor_summary_item.py,sha256=SIWVrMk6um4gTslbguYMfwEx53naByjmGmSdmjzbl40,3217
|
|
204
|
+
wordlift_client/models/neighbors.py,sha256=E8Hb-vNm8UkPsM3jOAyfL0dvmYK9OSecWD8kpNFqrCA,3079
|
|
200
205
|
wordlift_client/models/network_account_info.py,sha256=pFyMcgQJWxtElQ6_8qdXTGguV9C37dH_DnpJbnIY-tc,3305
|
|
201
206
|
wordlift_client/models/node_request.py,sha256=7yzi9FdghGOJiwpXJIwosuDFznvPWpTUPLd3goyWKn8,3856
|
|
202
207
|
wordlift_client/models/node_request_metadata_value.py,sha256=2vdf4_XFxTweAQXFTyXkH84oX6wGhRdq6DoPqwutULo,7462
|
|
@@ -206,6 +211,7 @@ wordlift_client/models/page_active_account.py,sha256=HmsoNTKK39F6eJJ9WZF-t_OJESv
|
|
|
206
211
|
wordlift_client/models/page_add_on_configuration.py,sha256=CS5mwIew9FG5jHJrgAd35Qjtd6NpZpnp0YgANbPQl7Y,4759
|
|
207
212
|
wordlift_client/models/page_content_generation.py,sha256=DiVRuxlF0r0XNHaINxp0SOUtjEoemCaT6dEDPDF8_i4,4751
|
|
208
213
|
wordlift_client/models/page_field.py,sha256=pkHmbBln2uNeuiGjBOv39MlER_4vMxm9EHHHIR4zu2E,4687
|
|
214
|
+
wordlift_client/models/page_info.py,sha256=Q8n8SDXERpbyr_C63CqT_SwHaGdtyi7ti-bZ06tFbOE,2710
|
|
209
215
|
wordlift_client/models/page_merchant_entry.py,sha256=E20iY5DjqfgurlznfUeT81HyQZ9zyAYO11P93kLRu94,4723
|
|
210
216
|
wordlift_client/models/page_merchant_sync.py,sha256=T6Kd7C1zX0aIOPAtMc-UyPWhS01_Xd0AvlXXRfh634Q,4716
|
|
211
217
|
wordlift_client/models/page_merchant_view.py,sha256=npdsRXWXswW36Msn1dHsuf805-3xQNZBS3YuTGq_ZaQ,4716
|
|
@@ -241,6 +247,8 @@ wordlift_client/models/request.py,sha256=PL7d59qE4VwxM2wLqhnWEBVk_DLJwwUSshwLVu0
|
|
|
241
247
|
wordlift_client/models/request1.py,sha256=cR_bu4gDRhjtQZGHJqUCiOTozXoa7SqRN37b6iLBrBI,2443
|
|
242
248
|
wordlift_client/models/request2.py,sha256=vnVcG_wkd--8pXYXzXH7Lz0rQOHcBF21ADUpeLVQ7NY,3032
|
|
243
249
|
wordlift_client/models/request3.py,sha256=hx2ycjXnT98175_dz-neeWbUbLpr0SJN_lO7czXAixY,4644
|
|
250
|
+
wordlift_client/models/resource_request.py,sha256=FnN-OlWjzmxqe74OPqkiSbUweux6yO103l8vZNb-4TE,2661
|
|
251
|
+
wordlift_client/models/resource_type.py,sha256=te-Hx9dJyNUxGJ9X1tMcMkCInivIFxHnITmIqTN3iBo,729
|
|
244
252
|
wordlift_client/models/response.py,sha256=wCYFHFjegG9LEb4IeYWiv3FbDwHuujWqriILi_iY-pE,3295
|
|
245
253
|
wordlift_client/models/response1.py,sha256=ua6ENkrgFI_AFa7ABfAugTcvOp7Q5Ki2BrAdVAOHbgo,2415
|
|
246
254
|
wordlift_client/models/response2.py,sha256=8ZNs6RJIVuUtUMcH2Nvdrc8d4syJ5DkF9SRkbRqpnbY,5346
|
|
@@ -265,9 +273,15 @@ wordlift_client/models/update_question_and_answer_request.py,sha256=6Lw8S0uzHXp6
|
|
|
265
273
|
wordlift_client/models/update_record_request.py,sha256=TueYMT10XscbkeZm7dXhh0HHVQr3wKG4id624QO9v1c,2917
|
|
266
274
|
wordlift_client/models/update_records_request.py,sha256=05NFBEBPdon1gFQNx1iAGleyHoPVS1G8agcbNXIuluw,2620
|
|
267
275
|
wordlift_client/models/update_site_url_request.py,sha256=h4zldnuclEZbOQ35mdo4n_9DX2IuUNzFY_zKMUJuuro,2935
|
|
276
|
+
wordlift_client/models/url_list_item.py,sha256=xLpwdUh43gxGaOcmRycCsZUbBiuuAf_nAAb4-X4Dx7E,4598
|
|
277
|
+
wordlift_client/models/url_list_response.py,sha256=qHCgNE766LvgE4JxEJPuI4__7-WwO5r-hABHjdLc8Vo,3276
|
|
278
|
+
wordlift_client/models/url_results_response.py,sha256=ZGTr5l0zdQKCa8KZuaFjckqNKbkKf7jH6sHHlyz5P9I,4095
|
|
279
|
+
wordlift_client/models/url_summary_response.py,sha256=zta7QJKMBm9jde0rK5R9ceq9hQJ6ep6apH59iElQVCk,4962
|
|
268
280
|
wordlift_client/models/validation_error.py,sha256=kB-02nm4DAEc596k55ugTlZRUFJZIHjYNO265F0-Exs,2983
|
|
269
|
-
wordlift_client/models/validation_error1.py,sha256=
|
|
281
|
+
wordlift_client/models/validation_error1.py,sha256=MkpadArKAAI4zvqv2qENEDc36XMe3UmGlID04DmOp5Q,3363
|
|
270
282
|
wordlift_client/models/validation_error1_detail_inner.py,sha256=aIR5v6qlGJkyxIqjUW4T3--4u2Ekdbru97_mhNQHvQ8,2653
|
|
283
|
+
wordlift_client/models/validation_error2.py,sha256=layv_kRJ2Tt0glMttzGniUeoIF7Qrk9flG_GfJeAL5U,2962
|
|
284
|
+
wordlift_client/models/validation_error2_detail_inner.py,sha256=InrncVdGclfEL6WMdySLqwNaSGtTVDH-RGdzJvUz6Fc,2653
|
|
271
285
|
wordlift_client/models/validation_fix.py,sha256=nyNidCpmngFC4mK1ISgqadwLMsq9G1fVceSTRg3WblM,2768
|
|
272
286
|
wordlift_client/models/validation_result.py,sha256=X1Ymff8UZZgzl11DYY7xfbsajYpE3_FiuDu3bYdcIDo,3116
|
|
273
287
|
wordlift_client/models/validation_type_enum.py,sha256=wR-V_iFQ1zp9tsP4hp3nGmLwQnQOUJtf62Jel9ONL9Y,751
|
|
@@ -292,8 +306,8 @@ wordlift_client/models/with_limits.py,sha256=rSzDb_If8APxR2Rw2U6cfFRFubnnai3Vj3-
|
|
|
292
306
|
wordlift_client/models/word.py,sha256=FPCGb6ohwdfydE5_qG4PT-UrnMzaTktAWqEEnezwaso,3922
|
|
293
307
|
wordlift_client/models/word_repetition_data.py,sha256=CQnxCnhakt12czl6a_AQIPgHlJtvR9YGBIjGV22rq14,2659
|
|
294
308
|
wordlift_client/models/word_request.py,sha256=ZD13xNRYCZmF14jxEDrRRyEMAd-quDT-HsqkbUP_xWU,2627
|
|
295
|
-
wordlift_client-1.
|
|
296
|
-
wordlift_client-1.
|
|
297
|
-
wordlift_client-1.
|
|
298
|
-
wordlift_client-1.
|
|
299
|
-
wordlift_client-1.
|
|
309
|
+
wordlift_client-1.136.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
310
|
+
wordlift_client-1.136.0.dist-info/METADATA,sha256=VAAJI6FZokGLRnrpRC8nh9YGH0GOzsuZ1XKlsUYMfso,530
|
|
311
|
+
wordlift_client-1.136.0.dist-info/WHEEL,sha256=WnJ8fYhv8N4SYVK2lLYNI6N0kVATA7b0piVUNvqIIJE,91
|
|
312
|
+
wordlift_client-1.136.0.dist-info/top_level.txt,sha256=p7KFYU869ksxkpP7ADvg8baPgWkTYCzcOpDl1qrJdHk,16
|
|
313
|
+
wordlift_client-1.136.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|