wordlift-client 1.121.0__py3-none-any.whl → 1.122.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/autocomplete_api.py +7 -7
- wordlift_client/api/content_generation_records_api.py +16 -16
- wordlift_client/api/content_generation_stats_api.py +7 -7
- wordlift_client/api/content_generation_syncs_api.py +7 -7
- wordlift_client/api/data_uri_api.py +7 -7
- wordlift_client/api/inspector_api.py +7 -7
- wordlift_client/api/merchant_syncs_api.py +7 -7
- wordlift_client/api/redeem_codes_api.py +16 -16
- wordlift_client/api/web_asyncs_metadata_api.py +7 -7
- wordlift_client/api_client.py +1 -1
- wordlift_client/configuration.py +1 -1
- wordlift_client/models/entity.py +7 -23
- wordlift_client/models/entity1.py +23 -7
- wordlift_client/models/longtail_response.py +3 -3
- wordlift_client/models/properties.py +8 -8
- wordlift_client/models/properties1.py +8 -8
- wordlift_client/models/rank_entities.py +3 -3
- wordlift_client/models/request1.py +4 -11
- wordlift_client/models/request2.py +11 -4
- wordlift_client/models/response2.py +3 -3
- wordlift_client/models/with_limits.py +2 -3
- {wordlift_client-1.121.0.dist-info → wordlift_client-1.122.0.dist-info}/METADATA +1 -1
- {wordlift_client-1.121.0.dist-info → wordlift_client-1.122.0.dist-info}/RECORD +27 -27
- {wordlift_client-1.121.0.dist-info → wordlift_client-1.122.0.dist-info}/LICENSE +0 -0
- {wordlift_client-1.121.0.dist-info → wordlift_client-1.122.0.dist-info}/WHEEL +0 -0
- {wordlift_client-1.121.0.dist-info → wordlift_client-1.122.0.dist-info}/top_level.txt +0 -0
wordlift_client/__init__.py
CHANGED
|
@@ -41,7 +41,7 @@ class AutocompleteApi:
|
|
|
41
41
|
|
|
42
42
|
|
|
43
43
|
@validate_call
|
|
44
|
-
async def
|
|
44
|
+
async def get4(
|
|
45
45
|
self,
|
|
46
46
|
query: Annotated[StrictStr, Field(description="Autocomplete query")],
|
|
47
47
|
language: Annotated[StrictStr, Field(description="2-letter language code, e.g. 'en'.")],
|
|
@@ -97,7 +97,7 @@ class AutocompleteApi:
|
|
|
97
97
|
:return: Returns the result object.
|
|
98
98
|
""" # noqa: E501
|
|
99
99
|
|
|
100
|
-
_param = self.
|
|
100
|
+
_param = self._get4_serialize(
|
|
101
101
|
query=query,
|
|
102
102
|
language=language,
|
|
103
103
|
scope=scope,
|
|
@@ -126,7 +126,7 @@ class AutocompleteApi:
|
|
|
126
126
|
|
|
127
127
|
|
|
128
128
|
@validate_call
|
|
129
|
-
async def
|
|
129
|
+
async def get4_with_http_info(
|
|
130
130
|
self,
|
|
131
131
|
query: Annotated[StrictStr, Field(description="Autocomplete query")],
|
|
132
132
|
language: Annotated[StrictStr, Field(description="2-letter language code, e.g. 'en'.")],
|
|
@@ -182,7 +182,7 @@ class AutocompleteApi:
|
|
|
182
182
|
:return: Returns the result object.
|
|
183
183
|
""" # noqa: E501
|
|
184
184
|
|
|
185
|
-
_param = self.
|
|
185
|
+
_param = self._get4_serialize(
|
|
186
186
|
query=query,
|
|
187
187
|
language=language,
|
|
188
188
|
scope=scope,
|
|
@@ -211,7 +211,7 @@ class AutocompleteApi:
|
|
|
211
211
|
|
|
212
212
|
|
|
213
213
|
@validate_call
|
|
214
|
-
async def
|
|
214
|
+
async def get4_without_preload_content(
|
|
215
215
|
self,
|
|
216
216
|
query: Annotated[StrictStr, Field(description="Autocomplete query")],
|
|
217
217
|
language: Annotated[StrictStr, Field(description="2-letter language code, e.g. 'en'.")],
|
|
@@ -267,7 +267,7 @@ class AutocompleteApi:
|
|
|
267
267
|
:return: Returns the result object.
|
|
268
268
|
""" # noqa: E501
|
|
269
269
|
|
|
270
|
-
_param = self.
|
|
270
|
+
_param = self._get4_serialize(
|
|
271
271
|
query=query,
|
|
272
272
|
language=language,
|
|
273
273
|
scope=scope,
|
|
@@ -291,7 +291,7 @@ class AutocompleteApi:
|
|
|
291
291
|
return response_data.response
|
|
292
292
|
|
|
293
293
|
|
|
294
|
-
def
|
|
294
|
+
def _get4_serialize(
|
|
295
295
|
self,
|
|
296
296
|
query,
|
|
297
297
|
language,
|
|
@@ -22,7 +22,7 @@ from typing import List, Optional
|
|
|
22
22
|
from typing_extensions import Annotated
|
|
23
23
|
from wordlift_client.models.page_record import PageRecord
|
|
24
24
|
from wordlift_client.models.record import Record
|
|
25
|
-
from wordlift_client.models.
|
|
25
|
+
from wordlift_client.models.request2 import Request2
|
|
26
26
|
from wordlift_client.models.update_record_request import UpdateRecordRequest
|
|
27
27
|
from wordlift_client.models.update_records_request import UpdateRecordsRequest
|
|
28
28
|
|
|
@@ -886,7 +886,7 @@ class ContentGenerationRecordsApi:
|
|
|
886
886
|
self,
|
|
887
887
|
content_generation_id: Annotated[StrictInt, Field(description="The Content Generation id.")],
|
|
888
888
|
record_id: Annotated[StrictInt, Field(description="The Record id.")],
|
|
889
|
-
|
|
889
|
+
request2: Request2,
|
|
890
890
|
_request_timeout: Union[
|
|
891
891
|
None,
|
|
892
892
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -907,8 +907,8 @@ class ContentGenerationRecordsApi:
|
|
|
907
907
|
:type content_generation_id: int
|
|
908
908
|
:param record_id: The Record id. (required)
|
|
909
909
|
:type record_id: int
|
|
910
|
-
:param
|
|
911
|
-
:type
|
|
910
|
+
:param request2: (required)
|
|
911
|
+
:type request2: Request2
|
|
912
912
|
:param _request_timeout: timeout setting for this request. If one
|
|
913
913
|
number provided, it will be total request
|
|
914
914
|
timeout. It can also be a pair (tuple) of
|
|
@@ -934,7 +934,7 @@ class ContentGenerationRecordsApi:
|
|
|
934
934
|
_param = self._update_record_serialize(
|
|
935
935
|
content_generation_id=content_generation_id,
|
|
936
936
|
record_id=record_id,
|
|
937
|
-
|
|
937
|
+
request2=request2,
|
|
938
938
|
_request_auth=_request_auth,
|
|
939
939
|
_content_type=_content_type,
|
|
940
940
|
_headers=_headers,
|
|
@@ -962,7 +962,7 @@ class ContentGenerationRecordsApi:
|
|
|
962
962
|
self,
|
|
963
963
|
content_generation_id: Annotated[StrictInt, Field(description="The Content Generation id.")],
|
|
964
964
|
record_id: Annotated[StrictInt, Field(description="The Record id.")],
|
|
965
|
-
|
|
965
|
+
request2: Request2,
|
|
966
966
|
_request_timeout: Union[
|
|
967
967
|
None,
|
|
968
968
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -983,8 +983,8 @@ class ContentGenerationRecordsApi:
|
|
|
983
983
|
:type content_generation_id: int
|
|
984
984
|
:param record_id: The Record id. (required)
|
|
985
985
|
:type record_id: int
|
|
986
|
-
:param
|
|
987
|
-
:type
|
|
986
|
+
:param request2: (required)
|
|
987
|
+
:type request2: Request2
|
|
988
988
|
:param _request_timeout: timeout setting for this request. If one
|
|
989
989
|
number provided, it will be total request
|
|
990
990
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1010,7 +1010,7 @@ class ContentGenerationRecordsApi:
|
|
|
1010
1010
|
_param = self._update_record_serialize(
|
|
1011
1011
|
content_generation_id=content_generation_id,
|
|
1012
1012
|
record_id=record_id,
|
|
1013
|
-
|
|
1013
|
+
request2=request2,
|
|
1014
1014
|
_request_auth=_request_auth,
|
|
1015
1015
|
_content_type=_content_type,
|
|
1016
1016
|
_headers=_headers,
|
|
@@ -1038,7 +1038,7 @@ class ContentGenerationRecordsApi:
|
|
|
1038
1038
|
self,
|
|
1039
1039
|
content_generation_id: Annotated[StrictInt, Field(description="The Content Generation id.")],
|
|
1040
1040
|
record_id: Annotated[StrictInt, Field(description="The Record id.")],
|
|
1041
|
-
|
|
1041
|
+
request2: Request2,
|
|
1042
1042
|
_request_timeout: Union[
|
|
1043
1043
|
None,
|
|
1044
1044
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1059,8 +1059,8 @@ class ContentGenerationRecordsApi:
|
|
|
1059
1059
|
:type content_generation_id: int
|
|
1060
1060
|
:param record_id: The Record id. (required)
|
|
1061
1061
|
:type record_id: int
|
|
1062
|
-
:param
|
|
1063
|
-
:type
|
|
1062
|
+
:param request2: (required)
|
|
1063
|
+
:type request2: Request2
|
|
1064
1064
|
:param _request_timeout: timeout setting for this request. If one
|
|
1065
1065
|
number provided, it will be total request
|
|
1066
1066
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1086,7 +1086,7 @@ class ContentGenerationRecordsApi:
|
|
|
1086
1086
|
_param = self._update_record_serialize(
|
|
1087
1087
|
content_generation_id=content_generation_id,
|
|
1088
1088
|
record_id=record_id,
|
|
1089
|
-
|
|
1089
|
+
request2=request2,
|
|
1090
1090
|
_request_auth=_request_auth,
|
|
1091
1091
|
_content_type=_content_type,
|
|
1092
1092
|
_headers=_headers,
|
|
@@ -1109,7 +1109,7 @@ class ContentGenerationRecordsApi:
|
|
|
1109
1109
|
self,
|
|
1110
1110
|
content_generation_id,
|
|
1111
1111
|
record_id,
|
|
1112
|
-
|
|
1112
|
+
request2,
|
|
1113
1113
|
_request_auth,
|
|
1114
1114
|
_content_type,
|
|
1115
1115
|
_headers,
|
|
@@ -1137,8 +1137,8 @@ class ContentGenerationRecordsApi:
|
|
|
1137
1137
|
# process the header parameters
|
|
1138
1138
|
# process the form parameters
|
|
1139
1139
|
# process the body parameter
|
|
1140
|
-
if
|
|
1141
|
-
_body_params =
|
|
1140
|
+
if request2 is not None:
|
|
1141
|
+
_body_params = request2
|
|
1142
1142
|
|
|
1143
1143
|
|
|
1144
1144
|
# set the HTTP header `Accept`
|
|
@@ -40,7 +40,7 @@ class ContentGenerationStatsApi:
|
|
|
40
40
|
|
|
41
41
|
|
|
42
42
|
@validate_call
|
|
43
|
-
async def
|
|
43
|
+
async def get2(
|
|
44
44
|
self,
|
|
45
45
|
content_generation_id: Annotated[StrictInt, Field(description="The Content Generation id.")],
|
|
46
46
|
_request_timeout: Union[
|
|
@@ -83,7 +83,7 @@ class ContentGenerationStatsApi:
|
|
|
83
83
|
:return: Returns the result object.
|
|
84
84
|
""" # noqa: E501
|
|
85
85
|
|
|
86
|
-
_param = self.
|
|
86
|
+
_param = self._get2_serialize(
|
|
87
87
|
content_generation_id=content_generation_id,
|
|
88
88
|
_request_auth=_request_auth,
|
|
89
89
|
_content_type=_content_type,
|
|
@@ -108,7 +108,7 @@ class ContentGenerationStatsApi:
|
|
|
108
108
|
|
|
109
109
|
|
|
110
110
|
@validate_call
|
|
111
|
-
async def
|
|
111
|
+
async def get2_with_http_info(
|
|
112
112
|
self,
|
|
113
113
|
content_generation_id: Annotated[StrictInt, Field(description="The Content Generation id.")],
|
|
114
114
|
_request_timeout: Union[
|
|
@@ -151,7 +151,7 @@ class ContentGenerationStatsApi:
|
|
|
151
151
|
:return: Returns the result object.
|
|
152
152
|
""" # noqa: E501
|
|
153
153
|
|
|
154
|
-
_param = self.
|
|
154
|
+
_param = self._get2_serialize(
|
|
155
155
|
content_generation_id=content_generation_id,
|
|
156
156
|
_request_auth=_request_auth,
|
|
157
157
|
_content_type=_content_type,
|
|
@@ -176,7 +176,7 @@ class ContentGenerationStatsApi:
|
|
|
176
176
|
|
|
177
177
|
|
|
178
178
|
@validate_call
|
|
179
|
-
async def
|
|
179
|
+
async def get2_without_preload_content(
|
|
180
180
|
self,
|
|
181
181
|
content_generation_id: Annotated[StrictInt, Field(description="The Content Generation id.")],
|
|
182
182
|
_request_timeout: Union[
|
|
@@ -219,7 +219,7 @@ class ContentGenerationStatsApi:
|
|
|
219
219
|
:return: Returns the result object.
|
|
220
220
|
""" # noqa: E501
|
|
221
221
|
|
|
222
|
-
_param = self.
|
|
222
|
+
_param = self._get2_serialize(
|
|
223
223
|
content_generation_id=content_generation_id,
|
|
224
224
|
_request_auth=_request_auth,
|
|
225
225
|
_content_type=_content_type,
|
|
@@ -239,7 +239,7 @@ class ContentGenerationStatsApi:
|
|
|
239
239
|
return response_data.response
|
|
240
240
|
|
|
241
241
|
|
|
242
|
-
def
|
|
242
|
+
def _get2_serialize(
|
|
243
243
|
self,
|
|
244
244
|
content_generation_id,
|
|
245
245
|
_request_auth,
|
|
@@ -39,7 +39,7 @@ class ContentGenerationSyncsApi:
|
|
|
39
39
|
|
|
40
40
|
|
|
41
41
|
@validate_call
|
|
42
|
-
async def
|
|
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.
|
|
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
|
|
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.
|
|
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
|
|
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.
|
|
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
|
|
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
|
|
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.
|
|
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
|
|
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.
|
|
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
|
|
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.
|
|
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
|
|
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
|
|
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.
|
|
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
|
|
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.
|
|
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
|
|
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.
|
|
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
|
|
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
|
|
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.
|
|
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
|
|
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.
|
|
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
|
|
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.
|
|
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
|
|
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.
|
|
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
|
-
|
|
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
|
|
62
|
-
:type
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
131
|
-
:type
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
200
|
-
:type
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
271
|
-
_body_params =
|
|
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
|
|
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.
|
|
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
|
|
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.
|
|
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
|
|
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.
|
|
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
|
|
246
|
+
def _get_serialize(
|
|
247
247
|
self,
|
|
248
248
|
id,
|
|
249
249
|
_request_auth,
|
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.122.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.122.0".\
|
|
430
430
|
format(env=sys.platform, pyversion=sys.version)
|
|
431
431
|
|
|
432
432
|
def get_host_settings(self):
|
wordlift_client/models/entity.py
CHANGED
|
@@ -18,27 +18,19 @@ import pprint
|
|
|
18
18
|
import re # noqa: F401
|
|
19
19
|
import json
|
|
20
20
|
|
|
21
|
-
from pydantic import BaseModel, ConfigDict, Field,
|
|
22
|
-
from typing import Any, ClassVar, Dict, List, Optional
|
|
21
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
22
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
23
|
from wordlift_client.models.properties import Properties
|
|
24
24
|
from typing import Optional, Set
|
|
25
25
|
from typing_extensions import Self
|
|
26
26
|
|
|
27
27
|
class Entity(BaseModel):
|
|
28
28
|
"""
|
|
29
|
-
|
|
29
|
+
The list of entities matching the query.
|
|
30
30
|
""" # noqa: E501
|
|
31
|
-
|
|
32
|
-
confidence: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Confidence score representing the entity match level.")
|
|
33
|
-
main_type: Optional[StrictStr] = Field(default=None, description="The main schema type for the current entity.", alias="mainType")
|
|
34
|
-
types: Optional[List[StrictStr]] = Field(default=None, description="The list of schema types which the entity can be classified to.")
|
|
35
|
-
label: Optional[StrictStr] = Field(default=None, description="The title of the entity.")
|
|
36
|
-
description: Optional[StrictStr] = Field(default=None, description="The description about the entity.")
|
|
37
|
-
images: Optional[List[StrictStr]] = Field(default=None, description="The list of entity image URIs.")
|
|
38
|
-
same_as: Optional[List[StrictStr]] = Field(default=None, description="The list of entity sameas URIs.", alias="sameAs")
|
|
31
|
+
reference: Optional[StrictStr] = Field(default=None, description="The referenced entity URI")
|
|
39
32
|
properties: Optional[Properties] = None
|
|
40
|
-
|
|
41
|
-
__properties: ClassVar[List[str]] = ["entityId", "confidence", "mainType", "types", "label", "description", "images", "sameAs", "properties", "synonyms"]
|
|
33
|
+
__properties: ClassVar[List[str]] = ["reference", "properties"]
|
|
42
34
|
|
|
43
35
|
model_config = ConfigDict(
|
|
44
36
|
populate_by_name=True,
|
|
@@ -94,16 +86,8 @@ class Entity(BaseModel):
|
|
|
94
86
|
return cls.model_validate(obj)
|
|
95
87
|
|
|
96
88
|
_obj = cls.model_validate({
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"mainType": obj.get("mainType"),
|
|
100
|
-
"types": obj.get("types"),
|
|
101
|
-
"label": obj.get("label"),
|
|
102
|
-
"description": obj.get("description"),
|
|
103
|
-
"images": obj.get("images"),
|
|
104
|
-
"sameAs": obj.get("sameAs"),
|
|
105
|
-
"properties": Properties.from_dict(obj["properties"]) if obj.get("properties") is not None else None,
|
|
106
|
-
"synonyms": obj.get("synonyms")
|
|
89
|
+
"reference": obj.get("reference"),
|
|
90
|
+
"properties": Properties.from_dict(obj["properties"]) if obj.get("properties") is not None else None
|
|
107
91
|
})
|
|
108
92
|
return _obj
|
|
109
93
|
|
|
@@ -18,19 +18,27 @@ import pprint
|
|
|
18
18
|
import re # noqa: F401
|
|
19
19
|
import json
|
|
20
20
|
|
|
21
|
-
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
22
|
-
from typing import Any, ClassVar, Dict, List, Optional
|
|
21
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
|
|
22
|
+
from typing import Any, ClassVar, Dict, List, Optional, Union
|
|
23
23
|
from wordlift_client.models.properties1 import Properties1
|
|
24
24
|
from typing import Optional, Set
|
|
25
25
|
from typing_extensions import Self
|
|
26
26
|
|
|
27
27
|
class Entity1(BaseModel):
|
|
28
28
|
"""
|
|
29
|
-
|
|
29
|
+
Entity
|
|
30
30
|
""" # noqa: E501
|
|
31
|
-
|
|
31
|
+
entity_id: Optional[StrictStr] = Field(default=None, description="The entity URI.", alias="entityId")
|
|
32
|
+
confidence: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Confidence score representing the entity match level.")
|
|
33
|
+
main_type: Optional[StrictStr] = Field(default=None, description="The main schema type for the current entity.", alias="mainType")
|
|
34
|
+
types: Optional[List[StrictStr]] = Field(default=None, description="The list of schema types which the entity can be classified to.")
|
|
35
|
+
label: Optional[StrictStr] = Field(default=None, description="The title of the entity.")
|
|
36
|
+
description: Optional[StrictStr] = Field(default=None, description="The description about the entity.")
|
|
37
|
+
images: Optional[List[StrictStr]] = Field(default=None, description="The list of entity image URIs.")
|
|
38
|
+
same_as: Optional[List[StrictStr]] = Field(default=None, description="The list of entity sameas URIs.", alias="sameAs")
|
|
32
39
|
properties: Optional[Properties1] = None
|
|
33
|
-
|
|
40
|
+
synonyms: Optional[List[StrictStr]] = None
|
|
41
|
+
__properties: ClassVar[List[str]] = ["entityId", "confidence", "mainType", "types", "label", "description", "images", "sameAs", "properties", "synonyms"]
|
|
34
42
|
|
|
35
43
|
model_config = ConfigDict(
|
|
36
44
|
populate_by_name=True,
|
|
@@ -86,8 +94,16 @@ class Entity1(BaseModel):
|
|
|
86
94
|
return cls.model_validate(obj)
|
|
87
95
|
|
|
88
96
|
_obj = cls.model_validate({
|
|
89
|
-
"
|
|
90
|
-
"
|
|
97
|
+
"entityId": obj.get("entityId"),
|
|
98
|
+
"confidence": obj.get("confidence"),
|
|
99
|
+
"mainType": obj.get("mainType"),
|
|
100
|
+
"types": obj.get("types"),
|
|
101
|
+
"label": obj.get("label"),
|
|
102
|
+
"description": obj.get("description"),
|
|
103
|
+
"images": obj.get("images"),
|
|
104
|
+
"sameAs": obj.get("sameAs"),
|
|
105
|
+
"properties": Properties1.from_dict(obj["properties"]) if obj.get("properties") is not None else None,
|
|
106
|
+
"synonyms": obj.get("synonyms")
|
|
91
107
|
})
|
|
92
108
|
return _obj
|
|
93
109
|
|
|
@@ -20,7 +20,7 @@ import json
|
|
|
20
20
|
|
|
21
21
|
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
22
22
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
|
-
from wordlift_client.models.
|
|
23
|
+
from wordlift_client.models.entity import Entity
|
|
24
24
|
from typing import Optional, Set
|
|
25
25
|
from typing_extensions import Self
|
|
26
26
|
|
|
@@ -29,7 +29,7 @@ class LongtailResponse(BaseModel):
|
|
|
29
29
|
LongtailResponse
|
|
30
30
|
""" # noqa: E501
|
|
31
31
|
summary: Optional[StrictStr] = Field(default=None, description="The page summary.")
|
|
32
|
-
entities: Optional[List[
|
|
32
|
+
entities: Optional[List[Entity]] = Field(default=None, description="The list of entities matching the query.")
|
|
33
33
|
__properties: ClassVar[List[str]] = ["summary", "entities"]
|
|
34
34
|
|
|
35
35
|
model_config = ConfigDict(
|
|
@@ -91,7 +91,7 @@ class LongtailResponse(BaseModel):
|
|
|
91
91
|
|
|
92
92
|
_obj = cls.model_validate({
|
|
93
93
|
"summary": obj.get("summary"),
|
|
94
|
-
"entities": [
|
|
94
|
+
"entities": [Entity.from_dict(_item) for _item in obj["entities"]] if obj.get("entities") is not None else None
|
|
95
95
|
})
|
|
96
96
|
return _obj
|
|
97
97
|
|
|
@@ -18,18 +18,18 @@ import pprint
|
|
|
18
18
|
import re # noqa: F401
|
|
19
19
|
import json
|
|
20
20
|
|
|
21
|
-
from pydantic import BaseModel, ConfigDict, Field,
|
|
22
|
-
from typing import Any, ClassVar, Dict, List, Optional
|
|
21
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
22
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
23
|
from typing import Optional, Set
|
|
24
24
|
from typing_extensions import Self
|
|
25
25
|
|
|
26
26
|
class Properties(BaseModel):
|
|
27
27
|
"""
|
|
28
|
-
|
|
28
|
+
Properties
|
|
29
29
|
""" # noqa: E501
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
__properties: ClassVar[List[str]] = ["
|
|
30
|
+
name: Optional[StrictStr] = Field(default=None, description="The name of the entity.")
|
|
31
|
+
same_as: Optional[List[StrictStr]] = Field(default=None, description="A list of sameAs entity URIs.", alias="sameAs")
|
|
32
|
+
__properties: ClassVar[List[str]] = ["name", "sameAs"]
|
|
33
33
|
|
|
34
34
|
model_config = ConfigDict(
|
|
35
35
|
populate_by_name=True,
|
|
@@ -82,8 +82,8 @@ class Properties(BaseModel):
|
|
|
82
82
|
return cls.model_validate(obj)
|
|
83
83
|
|
|
84
84
|
_obj = cls.model_validate({
|
|
85
|
-
"
|
|
86
|
-
"
|
|
85
|
+
"name": obj.get("name"),
|
|
86
|
+
"sameAs": obj.get("sameAs")
|
|
87
87
|
})
|
|
88
88
|
return _obj
|
|
89
89
|
|
|
@@ -18,18 +18,18 @@ import pprint
|
|
|
18
18
|
import re # noqa: F401
|
|
19
19
|
import json
|
|
20
20
|
|
|
21
|
-
from pydantic import BaseModel, ConfigDict, Field,
|
|
22
|
-
from typing import Any, ClassVar, Dict, List, Optional
|
|
21
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt
|
|
22
|
+
from typing import Any, ClassVar, Dict, List, Optional, Union
|
|
23
23
|
from typing import Optional, Set
|
|
24
24
|
from typing_extensions import Self
|
|
25
25
|
|
|
26
26
|
class Properties1(BaseModel):
|
|
27
27
|
"""
|
|
28
|
-
|
|
28
|
+
The entity properties.
|
|
29
29
|
""" # noqa: E501
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
__properties: ClassVar[List[str]] = ["
|
|
30
|
+
latitude: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="The latitude.")
|
|
31
|
+
longitude: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="The longitude.")
|
|
32
|
+
__properties: ClassVar[List[str]] = ["latitude", "longitude"]
|
|
33
33
|
|
|
34
34
|
model_config = ConfigDict(
|
|
35
35
|
populate_by_name=True,
|
|
@@ -82,8 +82,8 @@ class Properties1(BaseModel):
|
|
|
82
82
|
return cls.model_validate(obj)
|
|
83
83
|
|
|
84
84
|
_obj = cls.model_validate({
|
|
85
|
-
"
|
|
86
|
-
"
|
|
85
|
+
"latitude": obj.get("latitude"),
|
|
86
|
+
"longitude": obj.get("longitude")
|
|
87
87
|
})
|
|
88
88
|
return _obj
|
|
89
89
|
|
|
@@ -20,7 +20,7 @@ import json
|
|
|
20
20
|
|
|
21
21
|
from pydantic import BaseModel, ConfigDict, StrictInt
|
|
22
22
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
|
-
from wordlift_client.models.
|
|
23
|
+
from wordlift_client.models.entity import Entity
|
|
24
24
|
from typing import Optional, Set
|
|
25
25
|
from typing_extensions import Self
|
|
26
26
|
|
|
@@ -29,7 +29,7 @@ class RankEntities(BaseModel):
|
|
|
29
29
|
RankEntities
|
|
30
30
|
""" # noqa: E501
|
|
31
31
|
rank: Optional[StrictInt] = None
|
|
32
|
-
entities: Optional[List[
|
|
32
|
+
entities: Optional[List[Entity]] = None
|
|
33
33
|
__properties: ClassVar[List[str]] = ["rank", "entities"]
|
|
34
34
|
|
|
35
35
|
model_config = ConfigDict(
|
|
@@ -91,7 +91,7 @@ class RankEntities(BaseModel):
|
|
|
91
91
|
|
|
92
92
|
_obj = cls.model_validate({
|
|
93
93
|
"rank": obj.get("rank"),
|
|
94
|
-
"entities": [
|
|
94
|
+
"entities": [Entity.from_dict(_item) for _item in obj["entities"]] if obj.get("entities") is not None else None
|
|
95
95
|
})
|
|
96
96
|
return _obj
|
|
97
97
|
|
|
@@ -18,8 +18,7 @@ import pprint
|
|
|
18
18
|
import re # noqa: F401
|
|
19
19
|
import json
|
|
20
20
|
|
|
21
|
-
from
|
|
22
|
-
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
|
|
21
|
+
from pydantic import BaseModel, ConfigDict, StrictStr
|
|
23
22
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
24
23
|
from typing import Optional, Set
|
|
25
24
|
from typing_extensions import Self
|
|
@@ -28,11 +27,8 @@ class Request1(BaseModel):
|
|
|
28
27
|
"""
|
|
29
28
|
Request1
|
|
30
29
|
""" # noqa: E501
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
is_accepted: StrictBool = Field(description="This indicates whether the completion is accepted by the user.")
|
|
34
|
-
validated_at: Optional[datetime] = Field(default=None, description="Validation time of the record - null to revalidate.")
|
|
35
|
-
__properties: ClassVar[List[str]] = ["completion", "has_upvote", "is_accepted", "validated_at"]
|
|
30
|
+
redeem_code: Optional[StrictStr] = None
|
|
31
|
+
__properties: ClassVar[List[str]] = ["redeem_code"]
|
|
36
32
|
|
|
37
33
|
model_config = ConfigDict(
|
|
38
34
|
populate_by_name=True,
|
|
@@ -85,10 +81,7 @@ class Request1(BaseModel):
|
|
|
85
81
|
return cls.model_validate(obj)
|
|
86
82
|
|
|
87
83
|
_obj = cls.model_validate({
|
|
88
|
-
"
|
|
89
|
-
"has_upvote": obj.get("has_upvote"),
|
|
90
|
-
"is_accepted": obj.get("is_accepted"),
|
|
91
|
-
"validated_at": obj.get("validated_at")
|
|
84
|
+
"redeem_code": obj.get("redeem_code")
|
|
92
85
|
})
|
|
93
86
|
return _obj
|
|
94
87
|
|
|
@@ -18,7 +18,8 @@ import pprint
|
|
|
18
18
|
import re # noqa: F401
|
|
19
19
|
import json
|
|
20
20
|
|
|
21
|
-
from
|
|
21
|
+
from datetime import datetime
|
|
22
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
|
|
22
23
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
24
|
from typing import Optional, Set
|
|
24
25
|
from typing_extensions import Self
|
|
@@ -27,8 +28,11 @@ class Request2(BaseModel):
|
|
|
27
28
|
"""
|
|
28
29
|
Request2
|
|
29
30
|
""" # noqa: E501
|
|
30
|
-
|
|
31
|
-
|
|
31
|
+
completion: Optional[StrictStr] = None
|
|
32
|
+
has_upvote: StrictBool = Field(description="This indicates whether the user upvoted the completion.")
|
|
33
|
+
is_accepted: StrictBool = Field(description="This indicates whether the completion is accepted by the user.")
|
|
34
|
+
validated_at: Optional[datetime] = Field(default=None, description="Validation time of the record - null to revalidate.")
|
|
35
|
+
__properties: ClassVar[List[str]] = ["completion", "has_upvote", "is_accepted", "validated_at"]
|
|
32
36
|
|
|
33
37
|
model_config = ConfigDict(
|
|
34
38
|
populate_by_name=True,
|
|
@@ -81,7 +85,10 @@ class Request2(BaseModel):
|
|
|
81
85
|
return cls.model_validate(obj)
|
|
82
86
|
|
|
83
87
|
_obj = cls.model_validate({
|
|
84
|
-
"
|
|
88
|
+
"completion": obj.get("completion"),
|
|
89
|
+
"has_upvote": obj.get("has_upvote"),
|
|
90
|
+
"is_accepted": obj.get("is_accepted"),
|
|
91
|
+
"validated_at": obj.get("validated_at")
|
|
85
92
|
})
|
|
86
93
|
return _obj
|
|
87
94
|
|
|
@@ -21,7 +21,7 @@ import json
|
|
|
21
21
|
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
22
22
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
23
|
from wordlift_client.models.annotation import Annotation
|
|
24
|
-
from wordlift_client.models.
|
|
24
|
+
from wordlift_client.models.entity1 import Entity1
|
|
25
25
|
from wordlift_client.models.image import Image
|
|
26
26
|
from wordlift_client.models.topic import Topic
|
|
27
27
|
from typing import Optional, Set
|
|
@@ -31,7 +31,7 @@ class Response2(BaseModel):
|
|
|
31
31
|
"""
|
|
32
32
|
Response
|
|
33
33
|
""" # noqa: E501
|
|
34
|
-
entities: Optional[Dict[str,
|
|
34
|
+
entities: Optional[Dict[str, Entity1]] = Field(default=None, description="A map of entity URI to the respective entity.")
|
|
35
35
|
annotations: Optional[Dict[str, Annotation]] = Field(default=None, description="A map of annotation id to the respective annotation.")
|
|
36
36
|
images: Optional[List[Image]] = Field(default=None, description="A list of images.")
|
|
37
37
|
languages: Optional[List[StrictStr]] = Field(default=None, description="A list of languages.")
|
|
@@ -119,7 +119,7 @@ class Response2(BaseModel):
|
|
|
119
119
|
|
|
120
120
|
_obj = cls.model_validate({
|
|
121
121
|
"entities": dict(
|
|
122
|
-
(_k,
|
|
122
|
+
(_k, Entity1.from_dict(_v))
|
|
123
123
|
for _k, _v in obj["entities"].items()
|
|
124
124
|
)
|
|
125
125
|
if obj.get("entities") is not None
|
|
@@ -18,9 +18,8 @@ import pprint
|
|
|
18
18
|
import re # noqa: F401
|
|
19
19
|
import json
|
|
20
20
|
|
|
21
|
-
from pydantic import BaseModel, ConfigDict,
|
|
21
|
+
from pydantic import BaseModel, ConfigDict, StrictBool, StrictInt, StrictStr, field_validator
|
|
22
22
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
|
-
from typing_extensions import Annotated
|
|
24
23
|
from typing import Optional, Set
|
|
25
24
|
from typing_extensions import Self
|
|
26
25
|
|
|
@@ -31,7 +30,7 @@ class WithLimits(BaseModel):
|
|
|
31
30
|
account_limits: Optional[StrictInt] = None
|
|
32
31
|
applies_to: StrictStr
|
|
33
32
|
block: Optional[StrictBool] = None
|
|
34
|
-
consumption: Optional[
|
|
33
|
+
consumption: Optional[StrictInt] = None
|
|
35
34
|
id: Optional[StrictInt] = None
|
|
36
35
|
limits: Optional[StrictInt] = None
|
|
37
36
|
reference_id: StrictInt
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
wordlift_client/__init__.py,sha256=
|
|
2
|
-
wordlift_client/api_client.py,sha256=
|
|
1
|
+
wordlift_client/__init__.py,sha256=atdo8JD3LzYTfMKELJ8zaCelDKUB4MZOWrS5mnSNzlE,19003
|
|
2
|
+
wordlift_client/api_client.py,sha256=RYP1K4BABJxxj7Mkaf402yPTB1HxC0Nn5Dlf4A70qXA,26397
|
|
3
3
|
wordlift_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
-
wordlift_client/configuration.py,sha256=
|
|
4
|
+
wordlift_client/configuration.py,sha256=aJlZNNGLxGBveiYHG_mpytezMCHrkEr3f-fTtZdzpdc,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
|
|
@@ -16,7 +16,7 @@ wordlift_client/api/analyses_api.py,sha256=S4VB2WoTG5WuPdg4xdrLfAR47YrUQzNmoVmVS
|
|
|
16
16
|
wordlift_client/api/analytics_imports_api.py,sha256=3H2K6QLm7gFck67KCnIXLrKbxsKwjteNgTHD1utDE3s,11969
|
|
17
17
|
wordlift_client/api/analytics_syncs_api.py,sha256=yblLuk2iz9zjqT8rRkmVb7C1rPPxmOcLFnuMpSqq3-Q,22587
|
|
18
18
|
wordlift_client/api/authors_api.py,sha256=YlGTulVByNBPIAeeLc9nBL3V_INiaoRjXFshfIagNYk,11447
|
|
19
|
-
wordlift_client/api/autocomplete_api.py,sha256=
|
|
19
|
+
wordlift_client/api/autocomplete_api.py,sha256=swjFzQDBQtHMgkK5mXeQfgFrVcCBm4WmsMJTItlJmas,14324
|
|
20
20
|
wordlift_client/api/botify_crawl_imports_api.py,sha256=oMRuZBN9xL-LRrvBdqk1JGPjgLLycLZFJ8CWD4Aq5qc,11821
|
|
21
21
|
wordlift_client/api/classifications_api.py,sha256=fL1hvz3-mw_Qz7Ik7UR5mZziNUVIqF0j-Pz7PEr2_y4,13687
|
|
22
22
|
wordlift_client/api/content_evaluations_api.py,sha256=gY77JPkiT0x6COgP9ed5IypvSUYRTfOagwCQpVZb3Es,12105
|
|
@@ -25,15 +25,15 @@ wordlift_client/api/content_generation_completion_api.py,sha256=GL_4rNcsMmJWPXb-
|
|
|
25
25
|
wordlift_client/api/content_generation_fields_api.py,sha256=UXoNJOe2w6ZYY9Gq50idMet9pPQ-sTqtwjzB5qBsXSg,22795
|
|
26
26
|
wordlift_client/api/content_generation_models_api.py,sha256=9iCesCG0ER4RvxLt8dbigp1sfOJiD-8STdiOJtnvX5M,11580
|
|
27
27
|
wordlift_client/api/content_generation_presets_api.py,sha256=4joeSIw0rH8SD4v5eoFJfqOv8KcI1UwHWydN3DFRoQs,11610
|
|
28
|
-
wordlift_client/api/content_generation_records_api.py,sha256=
|
|
28
|
+
wordlift_client/api/content_generation_records_api.py,sha256=AqYqgBQoqzRDBmnu3WKgwINhb9qOj6AeNR5hgP4iBbM,69584
|
|
29
29
|
wordlift_client/api/content_generation_records_export_api.py,sha256=8MBJJQu6dMzNp9zF4Qq9_dG5EcV5LP8JNDFyF0LezPY,11042
|
|
30
30
|
wordlift_client/api/content_generation_renders_api.py,sha256=fgAfCPrQEqH-lRcmHKXzHSUTih9taY4UGSRCFIdhGWQ,22482
|
|
31
|
-
wordlift_client/api/content_generation_stats_api.py,sha256=
|
|
32
|
-
wordlift_client/api/content_generation_syncs_api.py,sha256=
|
|
31
|
+
wordlift_client/api/content_generation_stats_api.py,sha256=caf_h5GL1Hwf5c4tz5h6ZF_FcOc5PWowogAMPzh8DoU,11276
|
|
32
|
+
wordlift_client/api/content_generation_syncs_api.py,sha256=LpEScXGKphVK6NlqTP4mG6FSM95LtAGW3F7Cv1M_q6o,10903
|
|
33
33
|
wordlift_client/api/content_generation_word_biases_api.py,sha256=CXG9nRJOZ1oid00-O95o-POVfx6L_wRWvj9m4hj4EAw,69338
|
|
34
34
|
wordlift_client/api/content_generations_api.py,sha256=kGWaT5YqqQevaFP-RHvceewI1MhvZXp3k5W1FhKvzAE,64419
|
|
35
35
|
wordlift_client/api/custom_domains_api.py,sha256=LuKLllZaBA9k7W3SBRP4gKDLoF3liCpgffnCdUjZvZ4,11736
|
|
36
|
-
wordlift_client/api/data_uri_api.py,sha256=
|
|
36
|
+
wordlift_client/api/data_uri_api.py,sha256=DB1OfSj7aKtp_YnCzZEZE0RsvwKKTeIs2dyU4hKHRxU,10860
|
|
37
37
|
wordlift_client/api/dataset_api.py,sha256=1HI7Ssmvx5mFLZa_Xldq944GdgLiTF7mY7pU6mbfjj8,42369
|
|
38
38
|
wordlift_client/api/default_api.py,sha256=yxtYQghfU_e_UAB5crSS1YTqV725mtlsv2QSKz2VIg4,11335
|
|
39
39
|
wordlift_client/api/embedding_api.py,sha256=zvNmwVIaLguoIz7wtb4mmI84CKHil8jBPVhMpdoLyeQ,11732
|
|
@@ -50,11 +50,11 @@ wordlift_client/api/graph_ql_api.py,sha256=6yVvt7Wb1APb08ZH8ZoMctdtn_Y4KhRvFed8f
|
|
|
50
50
|
wordlift_client/api/image_to_text_api.py,sha256=5rlEdcn48P6ZG18Xp6EBTIF_2eBmCRxpIHaPO6M8Ons,11974
|
|
51
51
|
wordlift_client/api/include_excludes_api.py,sha256=VkAiiIPIHyIDRh77A2J6upXDuDYQYmU83RmAFduq4Wk,21592
|
|
52
52
|
wordlift_client/api/include_excludes_word_press_plugin_api.py,sha256=rpJx3UQIH0ro6lmdo3N6Zs3kQyjBUIrx6cgaqRzzlWQ,22677
|
|
53
|
-
wordlift_client/api/inspector_api.py,sha256=
|
|
53
|
+
wordlift_client/api/inspector_api.py,sha256=vFSMTjvzPLm_r8lQ_WfpuXJdMX2FZ5VLQEgz2aOlX9k,13261
|
|
54
54
|
wordlift_client/api/internal_links_api.py,sha256=8_zUtLpdu9dlMuBfeDXeIDGkfib9qJBpXFwN0ofcGC8,22262
|
|
55
55
|
wordlift_client/api/link_groups_api.py,sha256=NK0pzKIVg7EF8-FdjVLwiDDJ9o7bDnySPopAnv6qXsg,11531
|
|
56
56
|
wordlift_client/api/long_tails_api.py,sha256=IGAndSFSOzbbArcHt77kqByjYCQHCx8xG7dNNRplwNc,41132
|
|
57
|
-
wordlift_client/api/merchant_syncs_api.py,sha256=
|
|
57
|
+
wordlift_client/api/merchant_syncs_api.py,sha256=DqWJ0cTCGhf9J_AuYqoKMStDmGDJy6cC46xkfL--FpM,33908
|
|
58
58
|
wordlift_client/api/merchants_api.py,sha256=LmXtyqjDpD_adnSmJkILtYuLxtUrGv6hsTcIj6RfQvw,53325
|
|
59
59
|
wordlift_client/api/microdata_api.py,sha256=4GGa3lGseAvplF_1f08XvHJTjdW3RSRRhQ9NQosM7Bo,11150
|
|
60
60
|
wordlift_client/api/o_auth2_authorized_clients_api.py,sha256=tFMfXQyTHWLakkbsZaybIN2Vs7VbKzKCJ2nBf7elZn4,54309
|
|
@@ -63,7 +63,7 @@ wordlift_client/api/platform_limits_api.py,sha256=TpcTfw04rEYGctHe5rMNzdV0HRDN1J
|
|
|
63
63
|
wordlift_client/api/plugin_diagnostics_api.py,sha256=qB3JbZSYIKPIcwVOYWD8EsBflldHkaTGkXw9q72A59g,12536
|
|
64
64
|
wordlift_client/api/plugin_events_api.py,sha256=knq7Bab7ukTANLRZF-UCNm8Nftoueoc0oWZkEF8GqPo,25860
|
|
65
65
|
wordlift_client/api/questions_and_answers_api.py,sha256=OME5ucn7_fwj5vHBJgbXC64US58uE-kNDK46pzz5Y8A,75218
|
|
66
|
-
wordlift_client/api/redeem_codes_api.py,sha256=
|
|
66
|
+
wordlift_client/api/redeem_codes_api.py,sha256=GG7LIFHqCL--KH6hEtXO-Gn1NQKa5w4qYJIhjlZVuZU,11462
|
|
67
67
|
wordlift_client/api/rules_api.py,sha256=6ESuYM5gHzdzIs1LO69CcnODUXRqnloiHLB6TaGio-M,68256
|
|
68
68
|
wordlift_client/api/search_analytics_synchronizations_api.py,sha256=fFyx93ILvoHu0jBndT433HPrMmSTGFDxjHBqBgQkz2o,22719
|
|
69
69
|
wordlift_client/api/seo_scores_api.py,sha256=UoFYPcpJOKxf0cLZuz-6YOkWRXy6bk9W_PXwUcGXSXY,11954
|
|
@@ -75,7 +75,7 @@ wordlift_client/api/tokens_api.py,sha256=4jMeBMhi8RMFuoeWQlTqXkNLCABvwfV5rzjt25e
|
|
|
75
75
|
wordlift_client/api/vector_search_nodes_api.py,sha256=nMo4inpx6N2xn7_ZLlPVFH861zHjqVAgZ3xPX7L3Mow,11171
|
|
76
76
|
wordlift_client/api/vector_search_queries_api.py,sha256=_KVcphjWH-dbI0YaJ4fizT0BbA3q2a0Ro3ts5425hb4,11817
|
|
77
77
|
wordlift_client/api/vector_search_questions_api.py,sha256=XDvyi6y6mRv7nrKnse6XH6V6q7n3FBoX51qzUSDh4WQ,12050
|
|
78
|
-
wordlift_client/api/web_asyncs_metadata_api.py,sha256=
|
|
78
|
+
wordlift_client/api/web_asyncs_metadata_api.py,sha256=cpDQmIGc6uHu5rFXwZAy1cVgcWOb9eTiDe9LUH5pjJA,19997
|
|
79
79
|
wordlift_client/api/web_asyncs_responses_api.py,sha256=h91xI3iIgGoMUcZ7Oft5xiLy0rHh_2qzZDrFTRz3P8w,10889
|
|
80
80
|
wordlift_client/api/web_pages_api.py,sha256=VKPLIaQRxxDn3daP0zvXRiHj2eegsZIjxUmHKzxZXoc,10839
|
|
81
81
|
wordlift_client/api/web_pages_imports_api.py,sha256=yPhNLZ1jV2dEDnYuHb7OpiFH3K2ROrRYHG4ZrAf4VMU,11719
|
|
@@ -133,8 +133,8 @@ wordlift_client/models/diagnostic_plugin_request.py,sha256=3PyfOenoFYHTHE8BxWuxE
|
|
|
133
133
|
wordlift_client/models/domain_validation_request.py,sha256=QuwI43904xfAE732CvM_YpsXqWiia2YMAIp-2t8lIUY,2719
|
|
134
134
|
wordlift_client/models/duplicate_authorization_request.py,sha256=1iTS2UDo361DVJQA7WzYrCQzIYKAhjMX4fkykX41TcA,2635
|
|
135
135
|
wordlift_client/models/embedding_request.py,sha256=INYDivuXiSp6NCrCEkOgfVDny9xU8FkgIVv9FLZvFbI,2846
|
|
136
|
-
wordlift_client/models/entity.py,sha256=
|
|
137
|
-
wordlift_client/models/entity1.py,sha256=
|
|
136
|
+
wordlift_client/models/entity.py,sha256=l2FOIjCglinnmwoyncfjVFYzQChFXMrPluXW8vApJm0,2930
|
|
137
|
+
wordlift_client/models/entity1.py,sha256=_pSO-7X226Yl4xuDComx6svvWwOG1AwAhQtj2L1HP0A,4278
|
|
138
138
|
wordlift_client/models/entity_gap_request.py,sha256=3fLHOgNw2hH-oUjAvZ-pXh4D0ZQL4kpoyBfOSe25gEo,3633
|
|
139
139
|
wordlift_client/models/entity_match.py,sha256=85AQijb-srqDP9n-L1if13_n6Uej7VW6ihHzxLY0pzI,2744
|
|
140
140
|
wordlift_client/models/entity_patch_request.py,sha256=OQIXtQ76_i-iJSnN0dn8CxukuHzy7UoH7nv4LwNaE5I,3292
|
|
@@ -167,7 +167,7 @@ wordlift_client/models/level_enum.py,sha256=0SRm7XXcgWCxcbrVHFi7GoFdmpla38Fl3RXI
|
|
|
167
167
|
wordlift_client/models/link_group.py,sha256=Y0BIo11JQrNFOYrrqL6NV3Pp_ptFwceydeLL0ISVi24,3107
|
|
168
168
|
wordlift_client/models/link_group_response.py,sha256=WJ1D5Rdr5MgctIpo16BXPPqBhFa1xAyjoxWR07Oy7s8,2937
|
|
169
169
|
wordlift_client/models/location_inner.py,sha256=Y_RHc_JGr4sWRHqSJgyFvoiWU8HCLbmtpQEjBAkk70c,4765
|
|
170
|
-
wordlift_client/models/longtail_response.py,sha256=
|
|
170
|
+
wordlift_client/models/longtail_response.py,sha256=MOJRLQ14lB2Zjl5Df4W0I-WVBwnmwnHx3eLk4fdxOy4,3124
|
|
171
171
|
wordlift_client/models/merchant.py,sha256=vMnqcLyinefzFA2ebt9NpSEBjrHQGy8DWvxLcsVBZaE,7396
|
|
172
172
|
wordlift_client/models/merchant_entry.py,sha256=e8nRIDNb9CHwX1nvTN50aJEWX8RnNeKeRWhwufL4S_8,2727
|
|
173
173
|
wordlift_client/models/merchant_request.py,sha256=QGDRo2iCNy3dhmQj8kF_zWZSUwDx8o0IclcXNQdTkgk,5519
|
|
@@ -205,20 +205,20 @@ wordlift_client/models/platform_limit_request.py,sha256=GlLwW9h9CcAvWBA2uj2_5hOX
|
|
|
205
205
|
wordlift_client/models/preset.py,sha256=M7h8a7r5-mR-89_xo-XLl5Hv1Oq6YzKR3hUnJWz6aWk,2666
|
|
206
206
|
wordlift_client/models/problem_detail.py,sha256=4_7xA64rpygLnTPtKyCYLeOcjBKs0GIDXzFAAOtc4WE,2932
|
|
207
207
|
wordlift_client/models/project_type.py,sha256=nUZ2YFzVSArByM6HMCzVdR7GH2cab22RcwhD5ROPqPM,745
|
|
208
|
-
wordlift_client/models/properties.py,sha256=
|
|
209
|
-
wordlift_client/models/properties1.py,sha256=
|
|
208
|
+
wordlift_client/models/properties.py,sha256=MiXOK8WyyBI_n-SCFq0ZFzyiNesx3IRud9FHculCk4g,2657
|
|
209
|
+
wordlift_client/models/properties1.py,sha256=bcVIqb9yCa3bLztYT3Z8hwcTbNhz_FuBvzwnES6s05s,2712
|
|
210
210
|
wordlift_client/models/question_and_answer.py,sha256=y2-ZyG-KKlRQZzG-u8GX2QB_w8FiWKS24x5ngbJOQMs,5655
|
|
211
211
|
wordlift_client/models/question_and_answer_request.py,sha256=yPMv-dFIkCkyMD0mwfYujvecVo0TAhEVy6gkHKOCwzc,3111
|
|
212
|
-
wordlift_client/models/rank_entities.py,sha256=
|
|
212
|
+
wordlift_client/models/rank_entities.py,sha256=bxUpRZh9h2_9xA6uDGDy_27aqntjdzG-IDFp16F7pww,2970
|
|
213
213
|
wordlift_client/models/record.py,sha256=2OG3oruT9T6tPb7SVf96PWLOm3Z4kO-p7TrOSKSJ42c,7299
|
|
214
214
|
wordlift_client/models/render_request.py,sha256=wec9Td1ZTqrHG4F1y7eJvM2q2MDnHfHYNi5FbzEGaH4,2754
|
|
215
215
|
wordlift_client/models/request.py,sha256=PL7d59qE4VwxM2wLqhnWEBVk_DLJwwUSshwLVu0Foig,2594
|
|
216
|
-
wordlift_client/models/request1.py,sha256=
|
|
217
|
-
wordlift_client/models/request2.py,sha256=
|
|
216
|
+
wordlift_client/models/request1.py,sha256=cR_bu4gDRhjtQZGHJqUCiOTozXoa7SqRN37b6iLBrBI,2443
|
|
217
|
+
wordlift_client/models/request2.py,sha256=vnVcG_wkd--8pXYXzXH7Lz0rQOHcBF21ADUpeLVQ7NY,3032
|
|
218
218
|
wordlift_client/models/request3.py,sha256=hx2ycjXnT98175_dz-neeWbUbLpr0SJN_lO7czXAixY,4644
|
|
219
219
|
wordlift_client/models/response.py,sha256=wCYFHFjegG9LEb4IeYWiv3FbDwHuujWqriILi_iY-pE,3295
|
|
220
220
|
wordlift_client/models/response1.py,sha256=ua6ENkrgFI_AFa7ABfAugTcvOp7Q5Ki2BrAdVAOHbgo,2415
|
|
221
|
-
wordlift_client/models/response2.py,sha256=
|
|
221
|
+
wordlift_client/models/response2.py,sha256=8ZNs6RJIVuUtUMcH2Nvdrc8d4syJ5DkF9SRkbRqpnbY,5346
|
|
222
222
|
wordlift_client/models/rule.py,sha256=23YiNYJrMuFG4FYjBtDHmlS1H_zLFIb190Y7wTY_WQU,5679
|
|
223
223
|
wordlift_client/models/rule_request.py,sha256=LlSs39bL6JG00IFNrhX0NyVe7VsW5nE8p1Lvo0HZ_bI,5186
|
|
224
224
|
wordlift_client/models/scope.py,sha256=VwGzE4WpI5IwFwjJ-E00a0VfUHQhfOFvAEB4KW73hmE,676
|
|
@@ -255,12 +255,12 @@ wordlift_client/models/website_search.py,sha256=T6Ccf5VN1LekJW6WnMS7IUydpcpZgmif
|
|
|
255
255
|
wordlift_client/models/what_operand_lhs.py,sha256=ZaSHq-9exe9YAt83sL5SkXuQ6VX5BTeHPXOJe3WUtYk,787
|
|
256
256
|
wordlift_client/models/what_operator.py,sha256=iEaLYq0ADpFJ8vapT-h56WFoE0eYLlbbgqNapVxll8s,823
|
|
257
257
|
wordlift_client/models/when_operator.py,sha256=p4t2am4kx9be4TQSKJY_gd99z6EIkdIDhm8yYLy32z8,739
|
|
258
|
-
wordlift_client/models/with_limits.py,sha256=
|
|
258
|
+
wordlift_client/models/with_limits.py,sha256=rSzDb_If8APxR2Rw2U6cfFRFubnnai3Vj3-_iAVEDhM,3832
|
|
259
259
|
wordlift_client/models/word.py,sha256=FPCGb6ohwdfydE5_qG4PT-UrnMzaTktAWqEEnezwaso,3922
|
|
260
260
|
wordlift_client/models/word_repetition_data.py,sha256=CQnxCnhakt12czl6a_AQIPgHlJtvR9YGBIjGV22rq14,2659
|
|
261
261
|
wordlift_client/models/word_request.py,sha256=ZD13xNRYCZmF14jxEDrRRyEMAd-quDT-HsqkbUP_xWU,2627
|
|
262
|
-
wordlift_client-1.
|
|
263
|
-
wordlift_client-1.
|
|
264
|
-
wordlift_client-1.
|
|
265
|
-
wordlift_client-1.
|
|
266
|
-
wordlift_client-1.
|
|
262
|
+
wordlift_client-1.122.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
263
|
+
wordlift_client-1.122.0.dist-info/METADATA,sha256=0HFOefAr14cv-9aS5N49Yke-1AVDDRsYJ2UHD9AT6_M,530
|
|
264
|
+
wordlift_client-1.122.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
265
|
+
wordlift_client-1.122.0.dist-info/top_level.txt,sha256=p7KFYU869ksxkpP7ADvg8baPgWkTYCzcOpDl1qrJdHk,16
|
|
266
|
+
wordlift_client-1.122.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|