convexity-api-client 0.21.0.dev331__py3-none-any.whl → 0.21.0.dev332__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.
- convexity_api_client/api/v1/inventory_list_templates.py +18 -61
- convexity_api_client/api/v1/purchasing_list_pos.py +18 -61
- convexity_api_client/api/v1/purchasing_list_vendors.py +18 -61
- convexity_api_client/api/v1/sales_list_invoices.py +18 -61
- convexity_api_client/api/v1/sales_list_orders.py +18 -61
- convexity_api_client/models/__init__.py +6 -12
- convexity_api_client/models/erp_configured_column_config.py +31 -0
- convexity_api_client/models/erp_configured_column_config_data_type_type_0.py +12 -0
- convexity_api_client/models/import_task_payload.py +108 -0
- convexity_api_client/models/import_task_payload_type.py +9 -0
- convexity_api_client/models/list_inventory_items_request.py +11 -62
- convexity_api_client/models/search_purchase_orders_request.py +11 -51
- convexity_api_client/models/worker_task_response.py +18 -2
- {convexity_api_client-0.21.0.dev331.dist-info → convexity_api_client-0.21.0.dev332.dist-info}/METADATA +1 -1
- {convexity_api_client-0.21.0.dev331.dist-info → convexity_api_client-0.21.0.dev332.dist-info}/RECORD +16 -19
- convexity_api_client/models/inventory_list_templates_filter_operator_type_0.py +0 -19
- convexity_api_client/models/list_inventory_items_request_filter_operator_type_0.py +0 -19
- convexity_api_client/models/purchasing_list_pos_filter_operator_type_0.py +0 -19
- convexity_api_client/models/purchasing_list_vendors_filter_operator_type_0.py +0 -19
- convexity_api_client/models/sales_list_invoices_filter_operator_type_0.py +0 -19
- convexity_api_client/models/sales_list_orders_filter_operator_type_0.py +0 -19
- {convexity_api_client-0.21.0.dev331.dist-info → convexity_api_client-0.21.0.dev332.dist-info}/WHEEL +0 -0
|
@@ -6,7 +6,6 @@ from typing import Any, TypeVar, cast
|
|
|
6
6
|
from attrs import define as _attrs_define
|
|
7
7
|
from attrs import field as _attrs_field
|
|
8
8
|
|
|
9
|
-
from ..models.list_inventory_items_request_filter_operator_type_0 import ListInventoryItemsRequestFilterOperatorType0
|
|
10
9
|
from ..models.list_inventory_items_request_sort_direction_type_0 import ListInventoryItemsRequestSortDirectionType0
|
|
11
10
|
from ..types import UNSET, Unset
|
|
12
11
|
|
|
@@ -29,9 +28,7 @@ class ListInventoryItemsRequest:
|
|
|
29
28
|
is_active (bool | None | Unset):
|
|
30
29
|
sort_by (None | str | Unset):
|
|
31
30
|
sort_direction (ListInventoryItemsRequestSortDirectionType0 | None | Unset):
|
|
32
|
-
|
|
33
|
-
filter_operator (ListInventoryItemsRequestFilterOperatorType0 | None | Unset):
|
|
34
|
-
filter_value (None | str | Unset):
|
|
31
|
+
filters (None | str | Unset):
|
|
35
32
|
limit (int | Unset): Default: 50.
|
|
36
33
|
offset (int | Unset): Default: 0.
|
|
37
34
|
"""
|
|
@@ -43,9 +40,7 @@ class ListInventoryItemsRequest:
|
|
|
43
40
|
is_active: bool | None | Unset = UNSET
|
|
44
41
|
sort_by: None | str | Unset = UNSET
|
|
45
42
|
sort_direction: ListInventoryItemsRequestSortDirectionType0 | None | Unset = UNSET
|
|
46
|
-
|
|
47
|
-
filter_operator: ListInventoryItemsRequestFilterOperatorType0 | None | Unset = UNSET
|
|
48
|
-
filter_value: None | str | Unset = UNSET
|
|
43
|
+
filters: None | str | Unset = UNSET
|
|
49
44
|
limit: int | Unset = 50
|
|
50
45
|
offset: int | Unset = 0
|
|
51
46
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
@@ -101,25 +96,11 @@ class ListInventoryItemsRequest:
|
|
|
101
96
|
else:
|
|
102
97
|
sort_direction = self.sort_direction
|
|
103
98
|
|
|
104
|
-
|
|
105
|
-
if isinstance(self.
|
|
106
|
-
|
|
99
|
+
filters: None | str | Unset
|
|
100
|
+
if isinstance(self.filters, Unset):
|
|
101
|
+
filters = UNSET
|
|
107
102
|
else:
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
filter_operator: None | str | Unset
|
|
111
|
-
if isinstance(self.filter_operator, Unset):
|
|
112
|
-
filter_operator = UNSET
|
|
113
|
-
elif isinstance(self.filter_operator, ListInventoryItemsRequestFilterOperatorType0):
|
|
114
|
-
filter_operator = self.filter_operator.value
|
|
115
|
-
else:
|
|
116
|
-
filter_operator = self.filter_operator
|
|
117
|
-
|
|
118
|
-
filter_value: None | str | Unset
|
|
119
|
-
if isinstance(self.filter_value, Unset):
|
|
120
|
-
filter_value = UNSET
|
|
121
|
-
else:
|
|
122
|
-
filter_value = self.filter_value
|
|
103
|
+
filters = self.filters
|
|
123
104
|
|
|
124
105
|
limit = self.limit
|
|
125
106
|
|
|
@@ -142,12 +123,8 @@ class ListInventoryItemsRequest:
|
|
|
142
123
|
field_dict["sort_by"] = sort_by
|
|
143
124
|
if sort_direction is not UNSET:
|
|
144
125
|
field_dict["sort_direction"] = sort_direction
|
|
145
|
-
if
|
|
146
|
-
field_dict["
|
|
147
|
-
if filter_operator is not UNSET:
|
|
148
|
-
field_dict["filter_operator"] = filter_operator
|
|
149
|
-
if filter_value is not UNSET:
|
|
150
|
-
field_dict["filter_value"] = filter_value
|
|
126
|
+
if filters is not UNSET:
|
|
127
|
+
field_dict["filters"] = filters
|
|
151
128
|
if limit is not UNSET:
|
|
152
129
|
field_dict["limit"] = limit
|
|
153
130
|
if offset is not UNSET:
|
|
@@ -246,40 +223,14 @@ class ListInventoryItemsRequest:
|
|
|
246
223
|
|
|
247
224
|
sort_direction = _parse_sort_direction(d.pop("sort_direction", UNSET))
|
|
248
225
|
|
|
249
|
-
def
|
|
250
|
-
if data is None:
|
|
251
|
-
return data
|
|
252
|
-
if isinstance(data, Unset):
|
|
253
|
-
return data
|
|
254
|
-
return cast(None | str | Unset, data)
|
|
255
|
-
|
|
256
|
-
filter_column = _parse_filter_column(d.pop("filter_column", UNSET))
|
|
257
|
-
|
|
258
|
-
def _parse_filter_operator(data: object) -> ListInventoryItemsRequestFilterOperatorType0 | None | Unset:
|
|
259
|
-
if data is None:
|
|
260
|
-
return data
|
|
261
|
-
if isinstance(data, Unset):
|
|
262
|
-
return data
|
|
263
|
-
try:
|
|
264
|
-
if not isinstance(data, str):
|
|
265
|
-
raise TypeError()
|
|
266
|
-
filter_operator_type_0 = ListInventoryItemsRequestFilterOperatorType0(data)
|
|
267
|
-
|
|
268
|
-
return filter_operator_type_0
|
|
269
|
-
except (TypeError, ValueError, AttributeError, KeyError):
|
|
270
|
-
pass
|
|
271
|
-
return cast(ListInventoryItemsRequestFilterOperatorType0 | None | Unset, data)
|
|
272
|
-
|
|
273
|
-
filter_operator = _parse_filter_operator(d.pop("filter_operator", UNSET))
|
|
274
|
-
|
|
275
|
-
def _parse_filter_value(data: object) -> None | str | Unset:
|
|
226
|
+
def _parse_filters(data: object) -> None | str | Unset:
|
|
276
227
|
if data is None:
|
|
277
228
|
return data
|
|
278
229
|
if isinstance(data, Unset):
|
|
279
230
|
return data
|
|
280
231
|
return cast(None | str | Unset, data)
|
|
281
232
|
|
|
282
|
-
|
|
233
|
+
filters = _parse_filters(d.pop("filters", UNSET))
|
|
283
234
|
|
|
284
235
|
limit = d.pop("limit", UNSET)
|
|
285
236
|
|
|
@@ -293,9 +244,7 @@ class ListInventoryItemsRequest:
|
|
|
293
244
|
is_active=is_active,
|
|
294
245
|
sort_by=sort_by,
|
|
295
246
|
sort_direction=sort_direction,
|
|
296
|
-
|
|
297
|
-
filter_operator=filter_operator,
|
|
298
|
-
filter_value=filter_value,
|
|
247
|
+
filters=filters,
|
|
299
248
|
limit=limit,
|
|
300
249
|
offset=offset,
|
|
301
250
|
)
|
|
@@ -34,9 +34,7 @@ class SearchPurchaseOrdersRequest:
|
|
|
34
34
|
reference_ids (list[str] | None | Unset):
|
|
35
35
|
sort_by (None | str | Unset):
|
|
36
36
|
sort_direction (None | SearchPurchaseOrdersRequestSortDirectionType0 | Unset):
|
|
37
|
-
|
|
38
|
-
filter_operator (None | str | Unset):
|
|
39
|
-
filter_value (None | str | Unset):
|
|
37
|
+
filters (None | str | Unset):
|
|
40
38
|
limit (int | Unset): Default: 50.
|
|
41
39
|
offset (int | Unset): Default: 0.
|
|
42
40
|
"""
|
|
@@ -49,9 +47,7 @@ class SearchPurchaseOrdersRequest:
|
|
|
49
47
|
reference_ids: list[str] | None | Unset = UNSET
|
|
50
48
|
sort_by: None | str | Unset = UNSET
|
|
51
49
|
sort_direction: None | SearchPurchaseOrdersRequestSortDirectionType0 | Unset = UNSET
|
|
52
|
-
|
|
53
|
-
filter_operator: None | str | Unset = UNSET
|
|
54
|
-
filter_value: None | str | Unset = UNSET
|
|
50
|
+
filters: None | str | Unset = UNSET
|
|
55
51
|
limit: int | Unset = 50
|
|
56
52
|
offset: int | Unset = 0
|
|
57
53
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
@@ -118,23 +114,11 @@ class SearchPurchaseOrdersRequest:
|
|
|
118
114
|
else:
|
|
119
115
|
sort_direction = self.sort_direction
|
|
120
116
|
|
|
121
|
-
|
|
122
|
-
if isinstance(self.
|
|
123
|
-
|
|
117
|
+
filters: None | str | Unset
|
|
118
|
+
if isinstance(self.filters, Unset):
|
|
119
|
+
filters = UNSET
|
|
124
120
|
else:
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
filter_operator: None | str | Unset
|
|
128
|
-
if isinstance(self.filter_operator, Unset):
|
|
129
|
-
filter_operator = UNSET
|
|
130
|
-
else:
|
|
131
|
-
filter_operator = self.filter_operator
|
|
132
|
-
|
|
133
|
-
filter_value: None | str | Unset
|
|
134
|
-
if isinstance(self.filter_value, Unset):
|
|
135
|
-
filter_value = UNSET
|
|
136
|
-
else:
|
|
137
|
-
filter_value = self.filter_value
|
|
121
|
+
filters = self.filters
|
|
138
122
|
|
|
139
123
|
limit = self.limit
|
|
140
124
|
|
|
@@ -159,12 +143,8 @@ class SearchPurchaseOrdersRequest:
|
|
|
159
143
|
field_dict["sort_by"] = sort_by
|
|
160
144
|
if sort_direction is not UNSET:
|
|
161
145
|
field_dict["sort_direction"] = sort_direction
|
|
162
|
-
if
|
|
163
|
-
field_dict["
|
|
164
|
-
if filter_operator is not UNSET:
|
|
165
|
-
field_dict["filter_operator"] = filter_operator
|
|
166
|
-
if filter_value is not UNSET:
|
|
167
|
-
field_dict["filter_value"] = filter_value
|
|
146
|
+
if filters is not UNSET:
|
|
147
|
+
field_dict["filters"] = filters
|
|
168
148
|
if limit is not UNSET:
|
|
169
149
|
field_dict["limit"] = limit
|
|
170
150
|
if offset is not UNSET:
|
|
@@ -296,32 +276,14 @@ class SearchPurchaseOrdersRequest:
|
|
|
296
276
|
|
|
297
277
|
sort_direction = _parse_sort_direction(d.pop("sort_direction", UNSET))
|
|
298
278
|
|
|
299
|
-
def
|
|
300
|
-
if data is None:
|
|
301
|
-
return data
|
|
302
|
-
if isinstance(data, Unset):
|
|
303
|
-
return data
|
|
304
|
-
return cast(None | str | Unset, data)
|
|
305
|
-
|
|
306
|
-
filter_column = _parse_filter_column(d.pop("filter_column", UNSET))
|
|
307
|
-
|
|
308
|
-
def _parse_filter_operator(data: object) -> None | str | Unset:
|
|
309
|
-
if data is None:
|
|
310
|
-
return data
|
|
311
|
-
if isinstance(data, Unset):
|
|
312
|
-
return data
|
|
313
|
-
return cast(None | str | Unset, data)
|
|
314
|
-
|
|
315
|
-
filter_operator = _parse_filter_operator(d.pop("filter_operator", UNSET))
|
|
316
|
-
|
|
317
|
-
def _parse_filter_value(data: object) -> None | str | Unset:
|
|
279
|
+
def _parse_filters(data: object) -> None | str | Unset:
|
|
318
280
|
if data is None:
|
|
319
281
|
return data
|
|
320
282
|
if isinstance(data, Unset):
|
|
321
283
|
return data
|
|
322
284
|
return cast(None | str | Unset, data)
|
|
323
285
|
|
|
324
|
-
|
|
286
|
+
filters = _parse_filters(d.pop("filters", UNSET))
|
|
325
287
|
|
|
326
288
|
limit = d.pop("limit", UNSET)
|
|
327
289
|
|
|
@@ -336,9 +298,7 @@ class SearchPurchaseOrdersRequest:
|
|
|
336
298
|
reference_ids=reference_ids,
|
|
337
299
|
sort_by=sort_by,
|
|
338
300
|
sort_direction=sort_direction,
|
|
339
|
-
|
|
340
|
-
filter_operator=filter_operator,
|
|
341
|
-
filter_value=filter_value,
|
|
301
|
+
filters=filters,
|
|
342
302
|
limit=limit,
|
|
343
303
|
offset=offset,
|
|
344
304
|
)
|
|
@@ -29,6 +29,7 @@ if TYPE_CHECKING:
|
|
|
29
29
|
from ..models.email_agent_reply_payload import EmailAgentReplyPayload
|
|
30
30
|
from ..models.execute_run_output import ExecuteRunOutput
|
|
31
31
|
from ..models.execute_run_payload import ExecuteRunPayload
|
|
32
|
+
from ..models.import_task_payload import ImportTaskPayload
|
|
32
33
|
from ..models.refresh_dataset_output import RefreshDatasetOutput
|
|
33
34
|
from ..models.refresh_dataset_payload import RefreshDatasetPayload
|
|
34
35
|
|
|
@@ -47,8 +48,8 @@ class WorkerTaskResponse:
|
|
|
47
48
|
error (None | str | Unset):
|
|
48
49
|
payload (ComputeClassificationPayload | ComputeForecastPayload | ComputeKpiPayload |
|
|
49
50
|
ComputeRecommendationPayload | ComputeReplenishmentPayload | DelegatePiAgentPayload | DeleteDatasetPayload |
|
|
50
|
-
EmailAgentReplyPayload | ExecuteRunPayload | None | RefreshDatasetPayload | Unset): Typed
|
|
51
|
-
progress information
|
|
51
|
+
EmailAgentReplyPayload | ExecuteRunPayload | ImportTaskPayload | None | RefreshDatasetPayload | Unset): Typed
|
|
52
|
+
task payload with progress information
|
|
52
53
|
output (ComputeClassificationOutput | ComputeForecastOutput | ComputeKpiOutput | ComputeRecommendationOutput |
|
|
53
54
|
ComputeReplenishmentOutput | DelegatePiAgentOutput | DeleteDatasetOutput | EmailAgentReplyOutput |
|
|
54
55
|
ExecuteRunOutput | None | RefreshDatasetOutput | Unset): Typed task output written by the handler on completion
|
|
@@ -73,6 +74,7 @@ class WorkerTaskResponse:
|
|
|
73
74
|
| DeleteDatasetPayload
|
|
74
75
|
| EmailAgentReplyPayload
|
|
75
76
|
| ExecuteRunPayload
|
|
77
|
+
| ImportTaskPayload
|
|
76
78
|
| None
|
|
77
79
|
| RefreshDatasetPayload
|
|
78
80
|
| Unset
|
|
@@ -117,6 +119,7 @@ class WorkerTaskResponse:
|
|
|
117
119
|
from ..models.email_agent_reply_payload import EmailAgentReplyPayload
|
|
118
120
|
from ..models.execute_run_output import ExecuteRunOutput
|
|
119
121
|
from ..models.execute_run_payload import ExecuteRunPayload
|
|
122
|
+
from ..models.import_task_payload import ImportTaskPayload
|
|
120
123
|
from ..models.refresh_dataset_output import RefreshDatasetOutput
|
|
121
124
|
from ..models.refresh_dataset_payload import RefreshDatasetPayload
|
|
122
125
|
|
|
@@ -155,6 +158,8 @@ class WorkerTaskResponse:
|
|
|
155
158
|
payload = self.payload.to_dict()
|
|
156
159
|
elif isinstance(self.payload, DelegatePiAgentPayload):
|
|
157
160
|
payload = self.payload.to_dict()
|
|
161
|
+
elif isinstance(self.payload, ImportTaskPayload):
|
|
162
|
+
payload = self.payload.to_dict()
|
|
158
163
|
else:
|
|
159
164
|
payload = self.payload
|
|
160
165
|
|
|
@@ -262,6 +267,7 @@ class WorkerTaskResponse:
|
|
|
262
267
|
from ..models.email_agent_reply_payload import EmailAgentReplyPayload
|
|
263
268
|
from ..models.execute_run_output import ExecuteRunOutput
|
|
264
269
|
from ..models.execute_run_payload import ExecuteRunPayload
|
|
270
|
+
from ..models.import_task_payload import ImportTaskPayload
|
|
265
271
|
from ..models.refresh_dataset_output import RefreshDatasetOutput
|
|
266
272
|
from ..models.refresh_dataset_payload import RefreshDatasetPayload
|
|
267
273
|
|
|
@@ -293,6 +299,7 @@ class WorkerTaskResponse:
|
|
|
293
299
|
| DeleteDatasetPayload
|
|
294
300
|
| EmailAgentReplyPayload
|
|
295
301
|
| ExecuteRunPayload
|
|
302
|
+
| ImportTaskPayload
|
|
296
303
|
| None
|
|
297
304
|
| RefreshDatasetPayload
|
|
298
305
|
| Unset
|
|
@@ -381,6 +388,14 @@ class WorkerTaskResponse:
|
|
|
381
388
|
return payload_type_0_type_9
|
|
382
389
|
except (TypeError, ValueError, AttributeError, KeyError):
|
|
383
390
|
pass
|
|
391
|
+
try:
|
|
392
|
+
if not isinstance(data, dict):
|
|
393
|
+
raise TypeError()
|
|
394
|
+
payload_type_0_type_10 = ImportTaskPayload.from_dict(data)
|
|
395
|
+
|
|
396
|
+
return payload_type_0_type_10
|
|
397
|
+
except (TypeError, ValueError, AttributeError, KeyError):
|
|
398
|
+
pass
|
|
384
399
|
return cast(
|
|
385
400
|
ComputeClassificationPayload
|
|
386
401
|
| ComputeForecastPayload
|
|
@@ -391,6 +406,7 @@ class WorkerTaskResponse:
|
|
|
391
406
|
| DeleteDatasetPayload
|
|
392
407
|
| EmailAgentReplyPayload
|
|
393
408
|
| ExecuteRunPayload
|
|
409
|
+
| ImportTaskPayload
|
|
394
410
|
| None
|
|
395
411
|
| RefreshDatasetPayload
|
|
396
412
|
| Unset,
|
{convexity_api_client-0.21.0.dev331.dist-info → convexity_api_client-0.21.0.dev332.dist-info}/RECORD
RENAMED
|
@@ -235,7 +235,7 @@ convexity_api_client/api/v1/inventory_list_stock_balances.py,sha256=yIz26qkzkpb4
|
|
|
235
235
|
convexity_api_client/api/v1/inventory_list_stock_transactions.py,sha256=mFjHzhfAd6KlGSF3LK1q07tIaiH5MortSM4BHq6M7kU,9177
|
|
236
236
|
convexity_api_client/api/v1/inventory_list_stock_transactions_project.py,sha256=HvhrXJI5Nw8A4rx6OL0yLGx8uLhwebVjsJhR87lHGZU,11145
|
|
237
237
|
convexity_api_client/api/v1/inventory_list_template_categories.py,sha256=0kuU73iqZR1xkq9rVYn-yBZdPdahG0_lCU_tgAMlCkk,6836
|
|
238
|
-
convexity_api_client/api/v1/inventory_list_templates.py,sha256=
|
|
238
|
+
convexity_api_client/api/v1/inventory_list_templates.py,sha256=spSvT8R4ETNNQ7pGkL_bfB6GFrNENWSbS2URwiyVXHY,10942
|
|
239
239
|
convexity_api_client/api/v1/inventory_list_warehouse_locations.py,sha256=y_40JdI2RLa4vEYtFtOQwborNXRimetxuwtFFNLl-sM,9658
|
|
240
240
|
convexity_api_client/api/v1/inventory_list_warehouses.py,sha256=JtnzGRNIOhjgQHSdQvnT7gSt6y0sWkW8PZclpjkzsLc,6519
|
|
241
241
|
convexity_api_client/api/v1/inventory_post_stock_transaction.py,sha256=5ixzOI5Saeo_sQqW5ycgbpQzt1xHbeqK6NJ2QNGI2go,5075
|
|
@@ -324,9 +324,9 @@ convexity_api_client/api/v1/purchasing_get_vendor_bill.py,sha256=OVFM_Q8K8lGXiH3
|
|
|
324
324
|
convexity_api_client/api/v1/purchasing_get_vendor_bill_match.py,sha256=X9rCBDrlpTS3bdZBXE0Psshmg2gVqhf2FBGQT9sJKXE,4992
|
|
325
325
|
convexity_api_client/api/v1/purchasing_list_bill_payments.py,sha256=YJiTEx4wfrt3MM45gntS7JWja3kI7yX4PHMhsLubJpI,5935
|
|
326
326
|
convexity_api_client/api/v1/purchasing_list_goods_receipts_ready_to_bill.py,sha256=-X706Bp3DL_H-ct9g0UrarTqCAJ38M5dSwOoL_v_SdA,6128
|
|
327
|
-
convexity_api_client/api/v1/purchasing_list_pos.py,sha256=
|
|
327
|
+
convexity_api_client/api/v1/purchasing_list_pos.py,sha256=cyOb0xD3SQ1JrWqPO259WVs8S8laQveHLjgvNEV2KlQ,13253
|
|
328
328
|
convexity_api_client/api/v1/purchasing_list_vendor_bills.py,sha256=-3iPQzK-mjXelmV42jTwSgeF1EwIEKJIwqAFiQr9iH4,8752
|
|
329
|
-
convexity_api_client/api/v1/purchasing_list_vendors.py,sha256=
|
|
329
|
+
convexity_api_client/api/v1/purchasing_list_vendors.py,sha256=rz6Zll7L8MCAEMK0duR5g9yyFWUc3iXBZ9SqpqarzBk,11157
|
|
330
330
|
convexity_api_client/api/v1/purchasing_override_vendor_bill_match.py,sha256=7Gpz1Xqo7451ZqnksJ7cR3i41H93Xvo_67DFW_fYeuk,5584
|
|
331
331
|
convexity_api_client/api/v1/purchasing_reactivate_vendor.py,sha256=xlY9SbtBB_D7d78yWVOlZMl62dZ_61-h_Wtsk1htC3w,4666
|
|
332
332
|
convexity_api_client/api/v1/purchasing_receive_po.py,sha256=DtzdFjdHXFcXKKUGMYS_mPg0_AbAFLNpSIN5E6A6om8,5389
|
|
@@ -375,9 +375,9 @@ convexity_api_client/api/v1/sales_get_order.py,sha256=Cvysu0istN4ysdD52dtXFlIxi9
|
|
|
375
375
|
convexity_api_client/api/v1/sales_get_order_availability.py,sha256=kH5fHv0et6I51UpcYLeHO6XgVJv83VH0IQVS2QXl2dw,4835
|
|
376
376
|
convexity_api_client/api/v1/sales_get_order_warehouse_lifecycle.py,sha256=aTIvQZ7ldHuRMvNj0_Y6yS4IqgxIFIw7bJjDRbdgFFk,4949
|
|
377
377
|
convexity_api_client/api/v1/sales_get_report_by_channel.py,sha256=IEis13xxvz6tnaXpVrRyv1KZ-qrPqg2Rhr9UgnWVYXc,11002
|
|
378
|
-
convexity_api_client/api/v1/sales_list_invoices.py,sha256
|
|
378
|
+
convexity_api_client/api/v1/sales_list_invoices.py,sha256=A7z8Ll4jb6plgQbY2s1Skc0pNgTH3jO750bBELvq5vc,12490
|
|
379
379
|
convexity_api_client/api/v1/sales_list_invoicing_queue.py,sha256=TawZO4O4sTPVwUcqvw_mrRFlEO1oA0HLELEGbdgTZJ0,5343
|
|
380
|
-
convexity_api_client/api/v1/sales_list_orders.py,sha256=
|
|
380
|
+
convexity_api_client/api/v1/sales_list_orders.py,sha256=BCKPjuNCp4H0_2h8DIH1liNXHLh_T9kcufCKlIcYrm8,11288
|
|
381
381
|
convexity_api_client/api/v1/sales_mark_invoice_overdue.py,sha256=wc6bvKBMaPOxRkUd2sERt5gsrNAeiNWuSziutrlqEAo,4743
|
|
382
382
|
convexity_api_client/api/v1/sales_open_invoice_dispute.py,sha256=_PofU6vaMMadCa4oROpsKeozow52yXVjiB0wO9IL7cE,5329
|
|
383
383
|
convexity_api_client/api/v1/sales_record_invoice_payment.py,sha256=4k4wTnZ8Cg6Raabb9pE0qhx0TQ65HVN6KYBvWl4VzMI,5361
|
|
@@ -466,7 +466,7 @@ convexity_api_client/api/v1/worker_tasks_list.py,sha256=9OyBuDxzdBgOcp4yZxZdXy29
|
|
|
466
466
|
convexity_api_client/api/v1/worker_tasks_trigger_analytics.py,sha256=cgixgwhPg5BhKSaQuaCT20w119_wFKX9cxdBBuTNCHo,6754
|
|
467
467
|
convexity_api_client/client.py,sha256=-rT3epMc77Y7QMTy5o1oH5hkGLufY9qFrD1rb7qItFU,12384
|
|
468
468
|
convexity_api_client/errors.py,sha256=gO8GBmKqmSNgAg-E5oT-oOyxztvp7V_6XG7OUTT15q0,546
|
|
469
|
-
convexity_api_client/models/__init__.py,sha256=
|
|
469
|
+
convexity_api_client/models/__init__.py,sha256=Bqr2syqLs5OLKuxa4cuuxYi75R_ts9kSKKXCLuQeCFo,124579
|
|
470
470
|
convexity_api_client/models/accept_organization_invitation_response.py,sha256=iqzqnnnXYFxGQ8E48SAeKzJCIWlqKTX4p3sxU3pyJ3g,4362
|
|
471
471
|
convexity_api_client/models/action.py,sha256=7S7EYZNaDA9hU0hDHl4juNFDgv1ZLzGPgXsoHCjFo-g,211
|
|
472
472
|
convexity_api_client/models/add_attribute_line_request.py,sha256=_tiDk_YAWzzP3G5mQVqaLd1La-Mi6uxHr27M97lLr-c,4041
|
|
@@ -922,7 +922,8 @@ convexity_api_client/models/erp_action_toggle_config.py,sha256=ZvJ8ZvQDgboxU7X2Q
|
|
|
922
922
|
convexity_api_client/models/erp_configured_column_color_rule_config.py,sha256=-hBvMaH9kYy4AhgdDFkefIxoLRcJ_fU0Nn-u9ge87fA,6060
|
|
923
923
|
convexity_api_client/models/erp_configured_column_color_rule_config_metadata.py,sha256=fAfkpYWAhos7ASLoJyPJvh0e2tcBfQcTK8_bthJhP3o,1407
|
|
924
924
|
convexity_api_client/models/erp_configured_column_color_rule_config_operator.py,sha256=ZPx_S1WWq_loDLs_5-eS4TPj9RIU6XTIflv_rAjsahs,607
|
|
925
|
-
convexity_api_client/models/erp_configured_column_config.py,sha256=
|
|
925
|
+
convexity_api_client/models/erp_configured_column_config.py,sha256=ZJ_-Y9k8ZplK8fMtQisKsXeqG2goaoZiwz1-LLj5ktI,8841
|
|
926
|
+
convexity_api_client/models/erp_configured_column_config_data_type_type_0.py,sha256=l_dy_VOWTZOh2gulYFK_1D6X2WnfSvBmYVXdav789As,251
|
|
926
927
|
convexity_api_client/models/erp_configured_column_config_metadata.py,sha256=mXf7xp2gpTNafsGBP0UZ6DC6J9mabeBkTQ4amfFlcl8,1356
|
|
927
928
|
convexity_api_client/models/erp_configured_column_config_sourcetype.py,sha256=k6QNc_PzlHIiw-3Lvm_s4Sf-JNT9J2FrvPU9oNjEcp0,194
|
|
928
929
|
convexity_api_client/models/erp_configured_column_format_config.py,sha256=GZtQ_Wgdn_ShD_8_LB8uBC_BPtvAOBiDfIKRpkAmo8U,4369
|
|
@@ -1021,6 +1022,8 @@ convexity_api_client/models/import_job_status.py,sha256=9OR5lL_T0zbwbgY_A7kxVsgn
|
|
|
1021
1022
|
convexity_api_client/models/import_preview_row.py,sha256=K0oLiPnvt7QM6yo2YxJ7uom7jzUiktiybP3QLHeqy8E,2537
|
|
1022
1023
|
convexity_api_client/models/import_preview_row_cells.py,sha256=-m3Jqmn6hNfps3_KbTTuxUwGr0KGWX-ZPZtdodzym8c,1293
|
|
1023
1024
|
convexity_api_client/models/import_row_error.py,sha256=dWGeW7jQ_aUiVlkGFAeHPLshx-vdJlW1WA2Uzfd2BeU,2454
|
|
1025
|
+
convexity_api_client/models/import_task_payload.py,sha256=GsJPofEFWoCOKyNizeV5draNP5Io1Ddc1QlESD9kMHI,3203
|
|
1026
|
+
convexity_api_client/models/import_task_payload_type.py,sha256=tqeD4IX9ZeMCkPYEkJojOQ2Z8An57SVu9VYBO63QUnA,202
|
|
1024
1027
|
convexity_api_client/models/import_warning.py,sha256=v7drl5woQKo4ViCj_RtU1P7rMsil4USEDnJHX1KsGJ8,1721
|
|
1025
1028
|
convexity_api_client/models/infor_connection.py,sha256=LzVY-7gXZKKRKFiUvB3LK4eDpcuQ6EUpZzXhEN2BEks,12601
|
|
1026
1029
|
convexity_api_client/models/infor_connection_response.py,sha256=3GchttQ0IzZtp7CoKYwB05HUBXBPXF-TFbDs0dc5GQM,10249
|
|
@@ -1041,7 +1044,6 @@ convexity_api_client/models/inventory_item_response.py,sha256=wN0MAEhCDdSW26eVFG
|
|
|
1041
1044
|
convexity_api_client/models/inventory_item_response_ext_data_type_0.py,sha256=4QH83i_qiTpBI5WEleL7noCQ-Uz-e1p_IOu3Qel_sV0,1362
|
|
1042
1045
|
convexity_api_client/models/inventory_item_type.py,sha256=LjF7EXzyUU-Nq65WK-IQg_G6pYEs_RTJzP7Kb5x6npw,236
|
|
1043
1046
|
convexity_api_client/models/inventory_kpi_snapshot.py,sha256=GTyHX4hqeY6ISgy2Y_vGahWIYbzBqtCR-gE12z2gSH0,7601
|
|
1044
|
-
convexity_api_client/models/inventory_list_templates_filter_operator_type_0.py,sha256=WiUr0U2IC3zYvdB-hfe_KQN05xPuEoXM41CdK91qWF4,538
|
|
1045
1047
|
convexity_api_client/models/inventory_list_templates_sort_direction_type_0.py,sha256=lTZIW_2lPLMnJB5yF5ZQV0rsLGO29ot6EAklcqaDA3g,179
|
|
1046
1048
|
convexity_api_client/models/inventory_replenishment_policy.py,sha256=JOpEGFxiZfBgTY6vcStc5BzGKU4PQNrbZYZ3-HdpGJ4,12741
|
|
1047
1049
|
convexity_api_client/models/issue.py,sha256=-lJDy8iO8XBdRdWIp4zQfeJAqsMAfpaS_j9InIpUf9U,4391
|
|
@@ -1137,8 +1139,7 @@ convexity_api_client/models/list_erp_user_table_preferences_response.py,sha256=v
|
|
|
1137
1139
|
convexity_api_client/models/list_goods_receipts_response.py,sha256=RmSu4N2kwBlJs0tr-Zv-q6Omp9Pwc8PedPW-KjfSN8E,2229
|
|
1138
1140
|
convexity_api_client/models/list_import_jobs_response.py,sha256=Rs9088F8X6m0Ay0Bnx1YGbf2xhYQHrI4P4hyB9PGpj8,2193
|
|
1139
1141
|
convexity_api_client/models/list_inventory_item_categories_response.py,sha256=Ja9csZ0hZWGjt5kTheKqD8zt_wk7fA_BiXMOnHHN6oE,2347
|
|
1140
|
-
convexity_api_client/models/list_inventory_items_request.py,sha256=
|
|
1141
|
-
convexity_api_client/models/list_inventory_items_request_filter_operator_type_0.py,sha256=PhBQJ_JLJ1puGwjjuJo9X-hRYag_iz__Qtcc9NVX08A,541
|
|
1142
|
+
convexity_api_client/models/list_inventory_items_request.py,sha256=gPrTekJcCcXG_PFsYBrgzKbQFdnu36JL9TflAlCI1HE,9107
|
|
1142
1143
|
convexity_api_client/models/list_inventory_items_request_sort_direction_type_0.py,sha256=YW5ob4oOZ-jXtsyDhonL1WJVgHyyP_-V7XTBFVh5NbI,182
|
|
1143
1144
|
convexity_api_client/models/list_inventory_items_response.py,sha256=YmVbBpOxYpnHCHn0A-3iq509kc2bq2TRIw1xYYNGzzw,2241
|
|
1144
1145
|
convexity_api_client/models/list_item_attribute_values_response.py,sha256=xFvwt8RbgTa6I2Ek2Kas3UdmEwph7qeuhL4i6xgHodQ,2328
|
|
@@ -1300,10 +1301,8 @@ convexity_api_client/models/purchase_order_writeback_response_provider_response_
|
|
|
1300
1301
|
convexity_api_client/models/purchase_order_writeback_validation_issue.py,sha256=GXnoTj6F25lAQ0A_PIcEd5GeijEYBd6e2Hvr9sBl8TY,2428
|
|
1301
1302
|
convexity_api_client/models/purchase_return.py,sha256=Z51Sy_STDPLD2aBf1X08DIRvzYRWmCghiTtfGiVc8VU,19781
|
|
1302
1303
|
convexity_api_client/models/purchase_return_line.py,sha256=e4g749_0QRL3a4HENO8zFcYJuqjbV8IGvxXtwruVrGE,19186
|
|
1303
|
-
convexity_api_client/models/purchasing_list_pos_filter_operator_type_0.py,sha256=3wRzyFxfjrz7Jzs2MselZyxSjPEnVmzgbfMWlm4CwjY,533
|
|
1304
1304
|
convexity_api_client/models/purchasing_list_pos_sort_direction_type_0.py,sha256=Ii2BtkAbpngWCb_T1Ca5TJssGNJq05vgyTz5NAGo9VE,174
|
|
1305
1305
|
convexity_api_client/models/purchasing_list_pos_status_group_type_0.py,sha256=5_YwfU44fp3JgYZeR9NgkRyYQFDjJ3D0Rhd5txrpfaE,186
|
|
1306
|
-
convexity_api_client/models/purchasing_list_vendors_filter_operator_type_0.py,sha256=XS3Fk2L7i1QzIRzjH5A5cQ0EUo3zfZWu7i5XfFbfLaE,537
|
|
1307
1306
|
convexity_api_client/models/purchasing_list_vendors_sort_direction_type_0.py,sha256=41r5QKCIJNQDHGAHNW-fXR91cOamoZU7HYMVADYf-jQ,178
|
|
1308
1307
|
convexity_api_client/models/quick_books_connection.py,sha256=RSDk0xqQs8CKYpHCeJL1HdbgLgLRVpwRVnFYJOucjWw,14323
|
|
1309
1308
|
convexity_api_client/models/quick_books_connection_environment.py,sha256=EV6KP5zlYJPzHNbMYZuj28H2cUapzOuLl4oN_gQBazY,190
|
|
@@ -1390,9 +1389,7 @@ convexity_api_client/models/sales_invoice_source.py,sha256=DYzldiP5p5DXKQZnff7mH
|
|
|
1390
1389
|
convexity_api_client/models/sales_invoice_status.py,sha256=LC4J3bnvlsMc-Xf6ciyUYVWFf0npbORegpuHMJv-cUk,259
|
|
1391
1390
|
convexity_api_client/models/sales_invoicing_queue_item_response.py,sha256=pamYMxDtZVJzsPzUnVl-lAL6BNqD_tSVuX9enrW3l_8,7099
|
|
1392
1391
|
convexity_api_client/models/sales_invoicing_queue_line_response.py,sha256=myza1xjckrvav6PVAxSeIf55f14K6FbAtv-7Z2l-3P8,4270
|
|
1393
|
-
convexity_api_client/models/sales_list_invoices_filter_operator_type_0.py,sha256=mg7h5yUfoz5mB775iLVQsPGnmnZ0VhKZGVXK4_eHMD8,533
|
|
1394
1392
|
convexity_api_client/models/sales_list_invoices_sort_direction_type_0.py,sha256=NuSdXh0QSKhm5IkyRDCo1xPE0VFQFC38hqVpaB9vFq8,174
|
|
1395
|
-
convexity_api_client/models/sales_list_orders_filter_operator_type_0.py,sha256=WjDM0SQuKLZ9hvqw1SkLnqKUIIdO1qwLtBrXJNM9dLU,531
|
|
1396
1393
|
convexity_api_client/models/sales_list_orders_sort_direction_type_0.py,sha256=4f2c-yVEsNXpJwAUIG4RK1pfyv-0aDeL4_4e01GNc4U,172
|
|
1397
1394
|
convexity_api_client/models/sales_order.py,sha256=iVyspvsqhfq-ygybg3JEWKxw44oVAlK7UBqaiwpM_0Q,36388
|
|
1398
1395
|
convexity_api_client/models/sales_order_allocation.py,sha256=xSiuHuOhpuP-njpCbGOdtouodC_C7SXLQ90CrJSigpA,23106
|
|
@@ -1422,7 +1419,7 @@ convexity_api_client/models/schedule_mode.py,sha256=7yDM_LQ-VZXjO5-nKeDfUzkc8N2N
|
|
|
1422
1419
|
convexity_api_client/models/schema_field.py,sha256=NViW-gMvFSkTuefMP_XgAhZbceHFrg_N7_FrrU6jstU,2846
|
|
1423
1420
|
convexity_api_client/models/schema_response.py,sha256=Ek45yisBN-gAnTHeWk8opZdYv0vr0Wzxx8jOmU7DmTU,1972
|
|
1424
1421
|
convexity_api_client/models/scope_type.py,sha256=AqxajSvAP0JgxhXzARZ0Q-w0lY-zh9nNmodqafOcZok,154
|
|
1425
|
-
convexity_api_client/models/search_purchase_orders_request.py,sha256=
|
|
1422
|
+
convexity_api_client/models/search_purchase_orders_request.py,sha256=sX0QGc8oBRLqPEaUrB5M4V717aQmBzCdyMdxT6VR2dc,12319
|
|
1426
1423
|
convexity_api_client/models/search_purchase_orders_request_sort_direction_type_0.py,sha256=n5NkdtB9-rVW3ZbqJqXMjiNNLFCvwJbReLMKQVNKiPk,184
|
|
1427
1424
|
convexity_api_client/models/search_purchase_orders_request_status_group_type_0.py,sha256=wh9gqPgOYpi8vvcN0qc9iTGiFi-jwDXtg1rpxf_DzxQ,196
|
|
1428
1425
|
convexity_api_client/models/series_style.py,sha256=EGW3C_T5leMoiYCymCBLYBKPExNjVugHG8586G_-_Z0,4913
|
|
@@ -1645,7 +1642,7 @@ convexity_api_client/models/woo_commerce_capabilities_response.py,sha256=Mlm4Ha9
|
|
|
1645
1642
|
convexity_api_client/models/woo_commerce_connection.py,sha256=WydOkQZDLlVXne9S_y6ZFnjupr_p8yNOCVs-J-NTB2I,9950
|
|
1646
1643
|
convexity_api_client/models/woo_commerce_dataset_config.py,sha256=FNmLZOpQAcUufutZqOeUvM3vGsuLldEwNCLt4oDAL74,4900
|
|
1647
1644
|
convexity_api_client/models/woo_commerce_dataset_config_entity.py,sha256=WytG6zCOh7Y7lnrKQeDJkYO-9U0cmhIaW_SNddenU6A,191
|
|
1648
|
-
convexity_api_client/models/worker_task_response.py,sha256=
|
|
1645
|
+
convexity_api_client/models/worker_task_response.py,sha256=awjKscEY2MAtioHdqxiqpP9ISK1y-gtp_gKEkF1zfGE,24290
|
|
1649
1646
|
convexity_api_client/models/worker_task_stats.py,sha256=ieYWHJQimdXkzoTWXvctJ0TQmvpJVOAISeDBLvqY9uc,3204
|
|
1650
1647
|
convexity_api_client/models/worker_task_stats_by_status.py,sha256=tbkbEkOtGrTvS6egS9jRI2D0EtnVngAWa-FUVKjIE1k,1335
|
|
1651
1648
|
convexity_api_client/models/worker_task_stats_by_type.py,sha256=yU-Xq7So4yGLz5N2ZmWjPz01tDzrKQOo17lUx4q6y-c,1323
|
|
@@ -1664,6 +1661,6 @@ convexity_api_client/models/workspace_upload_response.py,sha256=KZ2QTNTKr5xA_H9t
|
|
|
1664
1661
|
convexity_api_client/models/workspace_upload_url_response.py,sha256=U1aqwPdfnQOedsRZoN7nB78wPBlsmb8p5HldVlSGdyM,2097
|
|
1665
1662
|
convexity_api_client/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
1666
1663
|
convexity_api_client/types.py,sha256=0We4NPvhIYASRpQ3le41nmJeEAVm42-2VKdzlJ4Ogok,1343
|
|
1667
|
-
convexity_api_client-0.21.0.
|
|
1668
|
-
convexity_api_client-0.21.0.
|
|
1669
|
-
convexity_api_client-0.21.0.
|
|
1664
|
+
convexity_api_client-0.21.0.dev332.dist-info/WHEEL,sha256=oy45bIW3ehK02fnLDUKD-FzeaR3VpJxY5Jdblkktnpw,80
|
|
1665
|
+
convexity_api_client-0.21.0.dev332.dist-info/METADATA,sha256=Y1FKEaPE4ByriEqzfrLUdcHT9PPqaGj-269qVbNGCkM,5213
|
|
1666
|
+
convexity_api_client-0.21.0.dev332.dist-info/RECORD,,
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
from enum import Enum
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
class InventoryListTemplatesFilterOperatorType0(str, Enum):
|
|
5
|
-
CONTAINS = "contains"
|
|
6
|
-
ENDS_WITH = "ends_with"
|
|
7
|
-
EQUALS = "equals"
|
|
8
|
-
GREATER_THAN = "greater_than"
|
|
9
|
-
GREATER_THAN_OR_EQUAL = "greater_than_or_equal"
|
|
10
|
-
IS_EMPTY = "is_empty"
|
|
11
|
-
IS_NOT_EMPTY = "is_not_empty"
|
|
12
|
-
LESS_THAN = "less_than"
|
|
13
|
-
LESS_THAN_OR_EQUAL = "less_than_or_equal"
|
|
14
|
-
NOT_CONTAINS = "not_contains"
|
|
15
|
-
NOT_EQUALS = "not_equals"
|
|
16
|
-
STARTS_WITH = "starts_with"
|
|
17
|
-
|
|
18
|
-
def __str__(self) -> str:
|
|
19
|
-
return str(self.value)
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
from enum import Enum
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
class ListInventoryItemsRequestFilterOperatorType0(str, Enum):
|
|
5
|
-
CONTAINS = "contains"
|
|
6
|
-
ENDS_WITH = "ends_with"
|
|
7
|
-
EQUALS = "equals"
|
|
8
|
-
GREATER_THAN = "greater_than"
|
|
9
|
-
GREATER_THAN_OR_EQUAL = "greater_than_or_equal"
|
|
10
|
-
IS_EMPTY = "is_empty"
|
|
11
|
-
IS_NOT_EMPTY = "is_not_empty"
|
|
12
|
-
LESS_THAN = "less_than"
|
|
13
|
-
LESS_THAN_OR_EQUAL = "less_than_or_equal"
|
|
14
|
-
NOT_CONTAINS = "not_contains"
|
|
15
|
-
NOT_EQUALS = "not_equals"
|
|
16
|
-
STARTS_WITH = "starts_with"
|
|
17
|
-
|
|
18
|
-
def __str__(self) -> str:
|
|
19
|
-
return str(self.value)
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
from enum import Enum
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
class PurchasingListPosFilterOperatorType0(str, Enum):
|
|
5
|
-
CONTAINS = "contains"
|
|
6
|
-
ENDS_WITH = "ends_with"
|
|
7
|
-
EQUALS = "equals"
|
|
8
|
-
GREATER_THAN = "greater_than"
|
|
9
|
-
GREATER_THAN_OR_EQUAL = "greater_than_or_equal"
|
|
10
|
-
IS_EMPTY = "is_empty"
|
|
11
|
-
IS_NOT_EMPTY = "is_not_empty"
|
|
12
|
-
LESS_THAN = "less_than"
|
|
13
|
-
LESS_THAN_OR_EQUAL = "less_than_or_equal"
|
|
14
|
-
NOT_CONTAINS = "not_contains"
|
|
15
|
-
NOT_EQUALS = "not_equals"
|
|
16
|
-
STARTS_WITH = "starts_with"
|
|
17
|
-
|
|
18
|
-
def __str__(self) -> str:
|
|
19
|
-
return str(self.value)
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
from enum import Enum
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
class PurchasingListVendorsFilterOperatorType0(str, Enum):
|
|
5
|
-
CONTAINS = "contains"
|
|
6
|
-
ENDS_WITH = "ends_with"
|
|
7
|
-
EQUALS = "equals"
|
|
8
|
-
GREATER_THAN = "greater_than"
|
|
9
|
-
GREATER_THAN_OR_EQUAL = "greater_than_or_equal"
|
|
10
|
-
IS_EMPTY = "is_empty"
|
|
11
|
-
IS_NOT_EMPTY = "is_not_empty"
|
|
12
|
-
LESS_THAN = "less_than"
|
|
13
|
-
LESS_THAN_OR_EQUAL = "less_than_or_equal"
|
|
14
|
-
NOT_CONTAINS = "not_contains"
|
|
15
|
-
NOT_EQUALS = "not_equals"
|
|
16
|
-
STARTS_WITH = "starts_with"
|
|
17
|
-
|
|
18
|
-
def __str__(self) -> str:
|
|
19
|
-
return str(self.value)
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
from enum import Enum
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
class SalesListInvoicesFilterOperatorType0(str, Enum):
|
|
5
|
-
CONTAINS = "contains"
|
|
6
|
-
ENDS_WITH = "ends_with"
|
|
7
|
-
EQUALS = "equals"
|
|
8
|
-
GREATER_THAN = "greater_than"
|
|
9
|
-
GREATER_THAN_OR_EQUAL = "greater_than_or_equal"
|
|
10
|
-
IS_EMPTY = "is_empty"
|
|
11
|
-
IS_NOT_EMPTY = "is_not_empty"
|
|
12
|
-
LESS_THAN = "less_than"
|
|
13
|
-
LESS_THAN_OR_EQUAL = "less_than_or_equal"
|
|
14
|
-
NOT_CONTAINS = "not_contains"
|
|
15
|
-
NOT_EQUALS = "not_equals"
|
|
16
|
-
STARTS_WITH = "starts_with"
|
|
17
|
-
|
|
18
|
-
def __str__(self) -> str:
|
|
19
|
-
return str(self.value)
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
from enum import Enum
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
class SalesListOrdersFilterOperatorType0(str, Enum):
|
|
5
|
-
CONTAINS = "contains"
|
|
6
|
-
ENDS_WITH = "ends_with"
|
|
7
|
-
EQUALS = "equals"
|
|
8
|
-
GREATER_THAN = "greater_than"
|
|
9
|
-
GREATER_THAN_OR_EQUAL = "greater_than_or_equal"
|
|
10
|
-
IS_EMPTY = "is_empty"
|
|
11
|
-
IS_NOT_EMPTY = "is_not_empty"
|
|
12
|
-
LESS_THAN = "less_than"
|
|
13
|
-
LESS_THAN_OR_EQUAL = "less_than_or_equal"
|
|
14
|
-
NOT_CONTAINS = "not_contains"
|
|
15
|
-
NOT_EQUALS = "not_equals"
|
|
16
|
-
STARTS_WITH = "starts_with"
|
|
17
|
-
|
|
18
|
-
def __str__(self) -> str:
|
|
19
|
-
return str(self.value)
|
{convexity_api_client-0.21.0.dev331.dist-info → convexity_api_client-0.21.0.dev332.dist-info}/WHEEL
RENAMED
|
File without changes
|