wordlift-client 1.129.0__py3-none-any.whl → 1.131.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 -1
- wordlift_client/api/link_groups_api.py +19 -1
- wordlift_client/api_client.py +1 -1
- wordlift_client/configuration.py +1 -1
- {wordlift_client-1.129.0.dist-info → wordlift_client-1.131.0.dist-info}/METADATA +1 -1
- {wordlift_client-1.129.0.dist-info → wordlift_client-1.131.0.dist-info}/RECORD +9 -9
- {wordlift_client-1.129.0.dist-info → wordlift_client-1.131.0.dist-info}/LICENSE +0 -0
- {wordlift_client-1.129.0.dist-info → wordlift_client-1.131.0.dist-info}/WHEEL +0 -0
- {wordlift_client-1.129.0.dist-info → wordlift_client-1.131.0.dist-info}/top_level.txt +0 -0
wordlift_client/__init__.py
CHANGED
|
@@ -18,7 +18,7 @@ from typing import Any, Dict, List, Optional, Tuple, Union
|
|
|
18
18
|
from typing_extensions import Annotated
|
|
19
19
|
|
|
20
20
|
from pydantic import Field, StrictInt, StrictStr
|
|
21
|
-
from typing import List
|
|
21
|
+
from typing import List, Optional
|
|
22
22
|
from typing_extensions import Annotated
|
|
23
23
|
from wordlift_client.models.link_group_response import LinkGroupResponse
|
|
24
24
|
|
|
@@ -45,6 +45,7 @@ class LinkGroupsApi:
|
|
|
45
45
|
self,
|
|
46
46
|
id: Annotated[StrictInt, Field(description="Graph id")],
|
|
47
47
|
url: Annotated[List[StrictStr], Field(description="One or more URLs.")],
|
|
48
|
+
link_group: Annotated[Optional[List[StrictStr]], Field(description="Zero or more Link Group identifiers.")] = None,
|
|
48
49
|
_request_timeout: Union[
|
|
49
50
|
None,
|
|
50
51
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -66,6 +67,8 @@ class LinkGroupsApi:
|
|
|
66
67
|
:type id: int
|
|
67
68
|
:param url: One or more URLs. (required)
|
|
68
69
|
:type url: List[str]
|
|
70
|
+
:param link_group: Zero or more Link Group identifiers.
|
|
71
|
+
:type link_group: List[str]
|
|
69
72
|
:param _request_timeout: timeout setting for this request. If one
|
|
70
73
|
number provided, it will be total request
|
|
71
74
|
timeout. It can also be a pair (tuple) of
|
|
@@ -91,6 +94,7 @@ class LinkGroupsApi:
|
|
|
91
94
|
_param = self._get_link_groups_serialize(
|
|
92
95
|
id=id,
|
|
93
96
|
url=url,
|
|
97
|
+
link_group=link_group,
|
|
94
98
|
_request_auth=_request_auth,
|
|
95
99
|
_content_type=_content_type,
|
|
96
100
|
_headers=_headers,
|
|
@@ -117,6 +121,7 @@ class LinkGroupsApi:
|
|
|
117
121
|
self,
|
|
118
122
|
id: Annotated[StrictInt, Field(description="Graph id")],
|
|
119
123
|
url: Annotated[List[StrictStr], Field(description="One or more URLs.")],
|
|
124
|
+
link_group: Annotated[Optional[List[StrictStr]], Field(description="Zero or more Link Group identifiers.")] = None,
|
|
120
125
|
_request_timeout: Union[
|
|
121
126
|
None,
|
|
122
127
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -138,6 +143,8 @@ class LinkGroupsApi:
|
|
|
138
143
|
:type id: int
|
|
139
144
|
:param url: One or more URLs. (required)
|
|
140
145
|
:type url: List[str]
|
|
146
|
+
:param link_group: Zero or more Link Group identifiers.
|
|
147
|
+
:type link_group: List[str]
|
|
141
148
|
:param _request_timeout: timeout setting for this request. If one
|
|
142
149
|
number provided, it will be total request
|
|
143
150
|
timeout. It can also be a pair (tuple) of
|
|
@@ -163,6 +170,7 @@ class LinkGroupsApi:
|
|
|
163
170
|
_param = self._get_link_groups_serialize(
|
|
164
171
|
id=id,
|
|
165
172
|
url=url,
|
|
173
|
+
link_group=link_group,
|
|
166
174
|
_request_auth=_request_auth,
|
|
167
175
|
_content_type=_content_type,
|
|
168
176
|
_headers=_headers,
|
|
@@ -189,6 +197,7 @@ class LinkGroupsApi:
|
|
|
189
197
|
self,
|
|
190
198
|
id: Annotated[StrictInt, Field(description="Graph id")],
|
|
191
199
|
url: Annotated[List[StrictStr], Field(description="One or more URLs.")],
|
|
200
|
+
link_group: Annotated[Optional[List[StrictStr]], Field(description="Zero or more Link Group identifiers.")] = None,
|
|
192
201
|
_request_timeout: Union[
|
|
193
202
|
None,
|
|
194
203
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -210,6 +219,8 @@ class LinkGroupsApi:
|
|
|
210
219
|
:type id: int
|
|
211
220
|
:param url: One or more URLs. (required)
|
|
212
221
|
:type url: List[str]
|
|
222
|
+
:param link_group: Zero or more Link Group identifiers.
|
|
223
|
+
:type link_group: List[str]
|
|
213
224
|
:param _request_timeout: timeout setting for this request. If one
|
|
214
225
|
number provided, it will be total request
|
|
215
226
|
timeout. It can also be a pair (tuple) of
|
|
@@ -235,6 +246,7 @@ class LinkGroupsApi:
|
|
|
235
246
|
_param = self._get_link_groups_serialize(
|
|
236
247
|
id=id,
|
|
237
248
|
url=url,
|
|
249
|
+
link_group=link_group,
|
|
238
250
|
_request_auth=_request_auth,
|
|
239
251
|
_content_type=_content_type,
|
|
240
252
|
_headers=_headers,
|
|
@@ -256,6 +268,7 @@ class LinkGroupsApi:
|
|
|
256
268
|
self,
|
|
257
269
|
id,
|
|
258
270
|
url,
|
|
271
|
+
link_group,
|
|
259
272
|
_request_auth,
|
|
260
273
|
_content_type,
|
|
261
274
|
_headers,
|
|
@@ -266,6 +279,7 @@ class LinkGroupsApi:
|
|
|
266
279
|
|
|
267
280
|
_collection_formats: Dict[str, str] = {
|
|
268
281
|
'url': 'multi',
|
|
282
|
+
'link-group': 'multi',
|
|
269
283
|
}
|
|
270
284
|
|
|
271
285
|
_path_params: Dict[str, str] = {}
|
|
@@ -283,6 +297,10 @@ class LinkGroupsApi:
|
|
|
283
297
|
|
|
284
298
|
_query_params.append(('url', url))
|
|
285
299
|
|
|
300
|
+
if link_group is not None:
|
|
301
|
+
|
|
302
|
+
_query_params.append(('link-group', link_group))
|
|
303
|
+
|
|
286
304
|
# process the header parameters
|
|
287
305
|
# process the form parameters
|
|
288
306
|
# process the body parameter
|
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.131.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.131.0".\
|
|
430
430
|
format(env=sys.platform, pyversion=sys.version)
|
|
431
431
|
|
|
432
432
|
def get_host_settings(self):
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
wordlift_client/__init__.py,sha256=
|
|
2
|
-
wordlift_client/api_client.py,sha256=
|
|
1
|
+
wordlift_client/__init__.py,sha256=n0JcLTLspRiKehAMo8Sfsw3laIn7eoM79fuNTfIUjFg,20231
|
|
2
|
+
wordlift_client/api_client.py,sha256=YcNBHhvKA7D2sclTh5rMT6y5jhivexDAz-knJqcxXN8,26397
|
|
3
3
|
wordlift_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
-
wordlift_client/configuration.py,sha256=
|
|
4
|
+
wordlift_client/configuration.py,sha256=oVvRP9tE7HyYqZ3xNXYLDz-bjAIBg4aQWX8bQBVjrb8,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
|
|
@@ -54,7 +54,7 @@ wordlift_client/api/include_excludes_api.py,sha256=VkAiiIPIHyIDRh77A2J6upXDuDYQY
|
|
|
54
54
|
wordlift_client/api/include_excludes_word_press_plugin_api.py,sha256=rpJx3UQIH0ro6lmdo3N6Zs3kQyjBUIrx6cgaqRzzlWQ,22677
|
|
55
55
|
wordlift_client/api/inspector_api.py,sha256=vFSMTjvzPLm_r8lQ_WfpuXJdMX2FZ5VLQEgz2aOlX9k,13261
|
|
56
56
|
wordlift_client/api/internal_links_api.py,sha256=8_zUtLpdu9dlMuBfeDXeIDGkfib9qJBpXFwN0ofcGC8,22262
|
|
57
|
-
wordlift_client/api/link_groups_api.py,sha256=
|
|
57
|
+
wordlift_client/api/link_groups_api.py,sha256=klVeZq0J81485r0MMiZY0vU3D2Na2x8y162AH_-MSrc,12495
|
|
58
58
|
wordlift_client/api/long_tails_api.py,sha256=IGAndSFSOzbbArcHt77kqByjYCQHCx8xG7dNNRplwNc,41132
|
|
59
59
|
wordlift_client/api/merchant_syncs_api.py,sha256=DqWJ0cTCGhf9J_AuYqoKMStDmGDJy6cC46xkfL--FpM,33908
|
|
60
60
|
wordlift_client/api/merchants_api.py,sha256=LmXtyqjDpD_adnSmJkILtYuLxtUrGv6hsTcIj6RfQvw,53325
|
|
@@ -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.131.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
286
|
+
wordlift_client-1.131.0.dist-info/METADATA,sha256=4QY6WCMKCOp4_wcZTLVVG1l9aoGBwyb1UP4rx2Yh-Aw,530
|
|
287
|
+
wordlift_client-1.131.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
288
|
+
wordlift_client-1.131.0.dist-info/top_level.txt,sha256=p7KFYU869ksxkpP7ADvg8baPgWkTYCzcOpDl1qrJdHk,16
|
|
289
|
+
wordlift_client-1.131.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|