channel-app 0.0.131__py3-none-any.whl → 0.0.135__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.
- channel_app/app/product/service.py +16 -0
- channel_app/core/commands.py +3 -1
- channel_app/core/tests.py +15 -164
- channel_app/omnitron/commands/tests/test_products.py +494 -0
- {channel_app-0.0.131.dist-info → channel_app-0.0.135.dist-info}/METADATA +1 -1
- channel_app-0.0.135.dist-info/RECORD +60 -0
- {channel_app-0.0.131.dist-info → channel_app-0.0.135.dist-info}/WHEEL +1 -1
- channel_app/channel_app/app/__init__.py +0 -0
- channel_app/channel_app/app/order/__init__.py +0 -0
- channel_app/channel_app/app/order/service.py +0 -230
- channel_app/channel_app/app/product/__init__.py +0 -0
- channel_app/channel_app/app/product/service.py +0 -237
- channel_app/channel_app/app/product_price/__init__.py +0 -0
- channel_app/channel_app/app/product_price/service.py +0 -254
- channel_app/channel_app/app/product_stock/__init__.py +0 -0
- channel_app/channel_app/app/product_stock/service.py +0 -258
- channel_app/channel_app/app/setup/__init__.py +0 -0
- channel_app/channel_app/app/setup/service.py +0 -61
- channel_app/channel_app/channel/__init__.py +0 -0
- channel_app/channel_app/channel/commands/__init__.py +0 -0
- channel_app/channel_app/channel/commands/orders/__init__.py +0 -0
- channel_app/channel_app/channel/commands/orders/orders.py +0 -329
- channel_app/channel_app/channel/commands/product_categories.py +0 -1
- channel_app/channel_app/channel/commands/product_images.py +0 -1
- channel_app/channel_app/channel/commands/product_prices.py +0 -148
- channel_app/channel_app/channel/commands/product_stocks.py +0 -220
- channel_app/channel_app/channel/commands/products.py +0 -161
- channel_app/channel_app/channel/commands/setup.py +0 -948
- channel_app/channel_app/channel/integration.py +0 -84
- channel_app/channel_app/core/__init__.py +0 -0
- channel_app/channel_app/core/clients.py +0 -12
- channel_app/channel_app/core/commands.py +0 -364
- channel_app/channel_app/core/data.py +0 -227
- channel_app/channel_app/core/integration.py +0 -74
- channel_app/channel_app/core/products.py +0 -64
- channel_app/channel_app/core/settings.py +0 -28
- channel_app/channel_app/core/utilities.py +0 -99
- channel_app/channel_app/omnitron/__init__.py +0 -0
- channel_app/channel_app/omnitron/batch_request.py +0 -82
- channel_app/channel_app/omnitron/commands/__init__.py +0 -0
- channel_app/channel_app/omnitron/commands/batch_requests.py +0 -281
- channel_app/channel_app/omnitron/commands/error_reports.py +0 -86
- channel_app/channel_app/omnitron/commands/integration_actions.py +0 -200
- channel_app/channel_app/omnitron/commands/orders/__init__.py +0 -0
- channel_app/channel_app/omnitron/commands/orders/addresses.py +0 -242
- channel_app/channel_app/omnitron/commands/orders/cargo_companies.py +0 -40
- channel_app/channel_app/omnitron/commands/orders/customers.py +0 -72
- channel_app/channel_app/omnitron/commands/orders/orders.py +0 -450
- channel_app/channel_app/omnitron/commands/product_categories.py +0 -1
- channel_app/channel_app/omnitron/commands/product_images.py +0 -1
- channel_app/channel_app/omnitron/commands/product_prices.py +0 -192
- channel_app/channel_app/omnitron/commands/product_stocks.py +0 -229
- channel_app/channel_app/omnitron/commands/products.py +0 -735
- channel_app/channel_app/omnitron/commands/setup.py +0 -839
- channel_app/channel_app/omnitron/constants.py +0 -98
- channel_app/channel_app/omnitron/exceptions.py +0 -42
- channel_app/channel_app/omnitron/integration.py +0 -159
- channel_app/setup.py +0 -21
- channel_app-0.0.131.dist-info/RECORD +0 -110
- /channel_app/{channel_app → omnitron/commands/tests}/__init__.py +0 -0
- {channel_app-0.0.131.dist-info → channel_app-0.0.135.dist-info}/top_level.txt +0 -0
@@ -1,98 +0,0 @@
|
|
1
|
-
from enum import Enum
|
2
|
-
|
3
|
-
CHANNEL_TYPE = "sales_channel"
|
4
|
-
INTEGRATION_TYPE = "sales_channel"
|
5
|
-
CHUNK_SIZE = 50
|
6
|
-
CONTENT_TYPE_IDS = {}
|
7
|
-
|
8
|
-
|
9
|
-
class BatchRequestStatus(Enum):
|
10
|
-
"""
|
11
|
-
Batch requests work as a state machine. These are states defined for them.
|
12
|
-
"""
|
13
|
-
# Initial state
|
14
|
-
initialized = "initialized"
|
15
|
-
# Channel app reports that it received data and objects in the batch are marked so that they
|
16
|
-
# are not reprocessed on further requests
|
17
|
-
commit = "commit"
|
18
|
-
# Objects are sent to the Channel and being processed on Channel side
|
19
|
-
sent_to_remote = "sent_to_remote"
|
20
|
-
# Objects are still being processed on the Channel
|
21
|
-
ongoing = "ongoing"
|
22
|
-
# Channel finished processing the batch and returned the result. Some items may be in
|
23
|
-
# fail state
|
24
|
-
done = "done"
|
25
|
-
# Channel failed processing the batch and halted the process.
|
26
|
-
fail = "fail"
|
27
|
-
|
28
|
-
|
29
|
-
class ErrorType(Enum):
|
30
|
-
country = "country"
|
31
|
-
city = "city"
|
32
|
-
township = "township"
|
33
|
-
district = "district"
|
34
|
-
|
35
|
-
|
36
|
-
class ContentType(Enum):
|
37
|
-
"""
|
38
|
-
Omnitron model content types. Batch requests can be used for all Omnitron models. We need to
|
39
|
-
specify content type of the model in question. Both for the batch request itself and inside the
|
40
|
-
objects block of the batch.
|
41
|
-
"""
|
42
|
-
# TODO check all contenttype usages and add them here
|
43
|
-
batch_request = "batchrequest"
|
44
|
-
product = "product"
|
45
|
-
order = "order"
|
46
|
-
order_item = "orderitem"
|
47
|
-
product_price = "productprice"
|
48
|
-
product_stock = "productstock"
|
49
|
-
integration_action = "integrationaction"
|
50
|
-
product_image = "productimage"
|
51
|
-
category_tree = "categorytree"
|
52
|
-
category_node = "categorynode"
|
53
|
-
channel = "channel"
|
54
|
-
product_category = "productcategory"
|
55
|
-
attribute_set = "marketplaceattributeset"
|
56
|
-
attribute_set_config = "marketplaceattributesetconfig"
|
57
|
-
attribute = "marketplaceattribute"
|
58
|
-
attribute_schema = "marketplaceattributeschema"
|
59
|
-
attribute_value = "marketplaceattributevalue"
|
60
|
-
attribute_value_config = "marketplaceattributevalueconfig"
|
61
|
-
cancellation_request = "cancellationrequest"
|
62
|
-
|
63
|
-
|
64
|
-
class FailedReasonType(Enum):
|
65
|
-
mapping = "mapping"
|
66
|
-
remote = "remote"
|
67
|
-
channel_app = "channel_app"
|
68
|
-
|
69
|
-
|
70
|
-
class CustomerIdentifierField(Enum):
|
71
|
-
"""
|
72
|
-
Customer uniqueness identifier field
|
73
|
-
"""
|
74
|
-
email = "email"
|
75
|
-
phone_number = "phone_number"
|
76
|
-
|
77
|
-
|
78
|
-
class ResponseStatus:
|
79
|
-
fail = "FAIL"
|
80
|
-
success = "SUCCESS"
|
81
|
-
|
82
|
-
|
83
|
-
class IntegrationActionStatus:
|
84
|
-
processing = "processing"
|
85
|
-
success = "success"
|
86
|
-
error = "error"
|
87
|
-
|
88
|
-
|
89
|
-
class ChannelConfSchemaDataTypes:
|
90
|
-
text = 'text'
|
91
|
-
URL = 'URL'
|
92
|
-
email = 'email'
|
93
|
-
date = 'date'
|
94
|
-
datetime = 'datetime'
|
95
|
-
bool = 'bool'
|
96
|
-
json = 'json'
|
97
|
-
list = 'list'
|
98
|
-
integer = 'integer'
|
@@ -1,42 +0,0 @@
|
|
1
|
-
class IntegrationMappingException(Exception):
|
2
|
-
def __init__(self, params=None):
|
3
|
-
super(IntegrationMappingException, self).__init__()
|
4
|
-
self.params = params
|
5
|
-
|
6
|
-
|
7
|
-
class CountryException(IntegrationMappingException):
|
8
|
-
pass
|
9
|
-
|
10
|
-
|
11
|
-
class CityException(IntegrationMappingException):
|
12
|
-
pass
|
13
|
-
|
14
|
-
|
15
|
-
class TownshipException(IntegrationMappingException):
|
16
|
-
pass
|
17
|
-
|
18
|
-
|
19
|
-
class DistrictException(IntegrationMappingException):
|
20
|
-
pass
|
21
|
-
|
22
|
-
|
23
|
-
class AddressException(IntegrationMappingException):
|
24
|
-
pass
|
25
|
-
|
26
|
-
|
27
|
-
class OrderException(Exception):
|
28
|
-
def __init__(self, params=None):
|
29
|
-
super(OrderException, self).__init__()
|
30
|
-
self.params = params
|
31
|
-
|
32
|
-
|
33
|
-
class CargoCompanyException(Exception):
|
34
|
-
def __init__(self, params=None):
|
35
|
-
super().__init__()
|
36
|
-
self.params = params
|
37
|
-
|
38
|
-
|
39
|
-
class CustomerException(Exception):
|
40
|
-
def __init__(self, params=None):
|
41
|
-
super(CustomerException, self).__init__()
|
42
|
-
self.params = params
|
@@ -1,159 +0,0 @@
|
|
1
|
-
from omnisdk.omnitron.client import OmnitronApiClient
|
2
|
-
|
3
|
-
from channel_app.core.integration import BaseIntegration
|
4
|
-
from channel_app.omnitron.batch_request import ClientBatchRequest
|
5
|
-
from channel_app.omnitron.commands.batch_requests import GetBatchRequests, \
|
6
|
-
BatchRequestUpdate
|
7
|
-
from channel_app.omnitron.commands.error_reports import \
|
8
|
-
CreateAddressErrorReports, \
|
9
|
-
CreateErrorReports
|
10
|
-
from channel_app.omnitron.commands.integration_actions import \
|
11
|
-
CreateIntegrationActions, \
|
12
|
-
GetIntegrationActionsWithObjectId, GetIntegrationActionsWithRemoteId, \
|
13
|
-
UpdateIntegrationActions, \
|
14
|
-
GetIntegrationActions, GetObjectsFromIntegrationAction
|
15
|
-
from channel_app.omnitron.commands.orders.addresses import GetOrCreateAddress
|
16
|
-
from channel_app.omnitron.commands.orders.cargo_companies import GetCargoCompany
|
17
|
-
from channel_app.omnitron.commands.orders.customers import GetOrCreateCustomer
|
18
|
-
from channel_app.omnitron.commands.orders.orders import (
|
19
|
-
CreateOrders,
|
20
|
-
CreateOrderShippingInfo,
|
21
|
-
GetOrders,
|
22
|
-
ProcessOrderBatchRequests,
|
23
|
-
CreateOrderCancel, GetCancellationRequest)
|
24
|
-
from channel_app.omnitron.commands.product_prices import (
|
25
|
-
GetUpdatedProductPrices, ProcessPriceBatchRequests,
|
26
|
-
GetInsertedProductPrices, GetInsertedProductPricesFromExtraPriceList,
|
27
|
-
GetUpdatedProductPricesFromExtraPriceList)
|
28
|
-
from channel_app.omnitron.commands.product_stocks import (
|
29
|
-
GetUpdatedProductStocks, ProcessStockBatchRequests,
|
30
|
-
GetInsertedProductStocks, GetUpdatedProductStocksFromExtraStockList,
|
31
|
-
GetInsertedProductStocksFromExtraStockList)
|
32
|
-
from channel_app.omnitron.commands.products import (
|
33
|
-
GetInsertedProducts,
|
34
|
-
GetUpdatedProducts,
|
35
|
-
ProcessProductBatchRequests,
|
36
|
-
GetDeletedProducts,
|
37
|
-
ProcessDeletedProductBatchRequests,
|
38
|
-
GetMappedProducts,
|
39
|
-
GetProductPrices,
|
40
|
-
GetProductStocks,
|
41
|
-
GetInsertedOrUpdatedProducts,
|
42
|
-
GetProductCategoryNodes, GetProductObjects, GetProductsFromBatchrequest,
|
43
|
-
GetProductPricesWithOutCommit, GetProductStocksWithOutCommit,
|
44
|
-
GetMappedProductsWithOutCommit)
|
45
|
-
from channel_app.omnitron.commands.setup import (
|
46
|
-
CreateOrUpdateCategoryTreeAndNodes, CreateOrUpdateCategoryAttributes,
|
47
|
-
GetCategoryIds, CreateOrUpdateChannelAttributeSet,
|
48
|
-
GetOrCreateChannelAttributeSetConfig, CreateOrUpdateChannelAttribute,
|
49
|
-
CreateOrUpdateChannelAttributeConfig, CreateOrUpdateChannelAttributeValue,
|
50
|
-
GetOrCreateChannelAttributeValueConfig,
|
51
|
-
AsyncCreateOrUpdateCategoryAttributes, GetOrCreateChannelAttributeSchema,
|
52
|
-
UpdateChannelConfSchema, GetChannelAttributeSetConfigs,
|
53
|
-
GetChannelAttributeSets)
|
54
|
-
|
55
|
-
|
56
|
-
class OmnitronIntegration(BaseIntegration):
|
57
|
-
"""
|
58
|
-
Communicates with the Omnitron Api services through the commands defined. It manages
|
59
|
-
OmnitronApiClient object on enter and exit methods.
|
60
|
-
|
61
|
-
"""
|
62
|
-
actions = {
|
63
|
-
"get_inserted_products": GetInsertedProducts,
|
64
|
-
"get_updated_products": GetUpdatedProducts,
|
65
|
-
"get_inserted_or_updated_products": GetInsertedOrUpdatedProducts,
|
66
|
-
"get_deleted_products": GetDeletedProducts,
|
67
|
-
"get_mapped_products": GetMappedProducts,
|
68
|
-
"get_mapped_products_without_commit": GetMappedProductsWithOutCommit,
|
69
|
-
"get_product_prices": GetProductPrices,
|
70
|
-
"get_product_prices_without_commit": GetProductPricesWithOutCommit,
|
71
|
-
"get_product_stocks": GetProductStocks,
|
72
|
-
"get_product_stocks_without_commit": GetProductStocksWithOutCommit,
|
73
|
-
"get_product_categories": GetProductCategoryNodes,
|
74
|
-
"get_batch_requests": GetBatchRequests,
|
75
|
-
"get_updated_stocks": GetUpdatedProductStocks,
|
76
|
-
"get_inserted_stocks": GetInsertedProductStocks,
|
77
|
-
"get_updated_stocks_from_extra_stock_list": GetUpdatedProductStocksFromExtraStockList,
|
78
|
-
"get_inserted_stocks_from_extra_stock_list": GetInsertedProductStocksFromExtraStockList,
|
79
|
-
"get_updated_prices": GetUpdatedProductPrices,
|
80
|
-
"get_inserted_prices": GetInsertedProductPrices,
|
81
|
-
"get_inserted_prices_from_extra_price_list": GetInsertedProductPricesFromExtraPriceList,
|
82
|
-
"get_updated_prices_from_extra_price_list": GetUpdatedProductPricesFromExtraPriceList,
|
83
|
-
"process_product_batch_requests": ProcessProductBatchRequests,
|
84
|
-
"process_stock_batch_requests": ProcessStockBatchRequests,
|
85
|
-
"process_price_batch_requests": ProcessPriceBatchRequests,
|
86
|
-
"process_order_batch_requests": ProcessOrderBatchRequests,
|
87
|
-
"process_delete_product_batch_requests": ProcessDeletedProductBatchRequests,
|
88
|
-
"get_or_create_customer": GetOrCreateCustomer,
|
89
|
-
"get_or_create_address": GetOrCreateAddress,
|
90
|
-
"get_cargo_company": GetCargoCompany,
|
91
|
-
"create_order": CreateOrders,
|
92
|
-
"get_orders": GetOrders,
|
93
|
-
"create_order_shipping_info": CreateOrderShippingInfo,
|
94
|
-
"create_or_update_category_tree_and_nodes": CreateOrUpdateCategoryTreeAndNodes,
|
95
|
-
"create_or_update_category_attributes": CreateOrUpdateCategoryAttributes,
|
96
|
-
"create_or_update_category_attributes_async": AsyncCreateOrUpdateCategoryAttributes,
|
97
|
-
"create_address_error_report": CreateAddressErrorReports,
|
98
|
-
"create_error_report": CreateErrorReports,
|
99
|
-
"get_integration_with_object_id": GetIntegrationActionsWithObjectId,
|
100
|
-
"get_integration_with_remote_id": GetIntegrationActionsWithRemoteId,
|
101
|
-
"get_integrations": GetIntegrationActions,
|
102
|
-
"get_content_objects_from_integrations": GetObjectsFromIntegrationAction,
|
103
|
-
"create_integration": CreateIntegrationActions,
|
104
|
-
"update_integration": UpdateIntegrationActions,
|
105
|
-
"get_category_ids": GetCategoryIds,
|
106
|
-
"create_or_update_channel_attribute_set": CreateOrUpdateChannelAttributeSet,
|
107
|
-
"get_or_create_channel_attribute_set_config": GetOrCreateChannelAttributeSetConfig,
|
108
|
-
"create_or_update_channel_attribute": CreateOrUpdateChannelAttribute,
|
109
|
-
"get_or_create_channel_attribute_schema": GetOrCreateChannelAttributeSchema,
|
110
|
-
"create_or_update_channel_attribute_config": CreateOrUpdateChannelAttributeConfig,
|
111
|
-
"get_channel_attribute_set_configs": GetChannelAttributeSetConfigs,
|
112
|
-
"get_channel_attribute_set": GetChannelAttributeSets,
|
113
|
-
"create_or_update_channel_attribute_value": CreateOrUpdateChannelAttributeValue,
|
114
|
-
"get_or_create_channel_attribute_value_config": GetOrCreateChannelAttributeValueConfig,
|
115
|
-
"batch_request_update": BatchRequestUpdate,
|
116
|
-
"create_order_cancel": CreateOrderCancel,
|
117
|
-
"update_channel_conf_schema": UpdateChannelConfSchema,
|
118
|
-
"get_product_objects": GetProductObjects,
|
119
|
-
"get_product_from_batch_request": GetProductsFromBatchrequest,
|
120
|
-
"get_cancellation_requests": GetCancellationRequest,
|
121
|
-
# "fetch_cancellation_plan": FetchCancellationPlan
|
122
|
-
}
|
123
|
-
|
124
|
-
def __init__(self, create_batch=True, content_type=None):
|
125
|
-
"""
|
126
|
-
Some environment parameters are stored in the integration object for convenience.
|
127
|
-
|
128
|
-
:param create_batch: Flag to decide whether a batch request to be created
|
129
|
-
|
130
|
-
"""
|
131
|
-
from channel_app.core import settings
|
132
|
-
self.create_batch = create_batch
|
133
|
-
self.content_type = content_type
|
134
|
-
if create_batch and not content_type:
|
135
|
-
raise Exception("ContentType not defined")
|
136
|
-
self.channel_id = settings.OMNITRON_CHANNEL_ID
|
137
|
-
self.catalog_id = settings.OMNITRON_CATALOG_ID
|
138
|
-
self.base_url = settings.OMNITRON_URL
|
139
|
-
self.username = settings.OMNITRON_USER
|
140
|
-
self.password = settings.OMNITRON_PASSWORD
|
141
|
-
# TODO initialize api in init and check whether it is already initialized on enter method
|
142
|
-
|
143
|
-
def __enter__(self):
|
144
|
-
self.api = OmnitronApiClient(base_url=self.base_url,
|
145
|
-
username=self.username,
|
146
|
-
password=self.password)
|
147
|
-
self.channel_is_active = self.channel.is_active
|
148
|
-
if not self.channel_is_active:
|
149
|
-
return
|
150
|
-
if self.create_batch:
|
151
|
-
self.batch_request = ClientBatchRequest(
|
152
|
-
channel_id=self.channel_id).create()
|
153
|
-
self.batch_request.content_type = self.content_type
|
154
|
-
return self
|
155
|
-
|
156
|
-
def __exit__(self, exc_type, exc_val, exc_tb):
|
157
|
-
del self.api
|
158
|
-
if isinstance(exc_val, Exception) and not self.channel_is_active:
|
159
|
-
return True
|
channel_app/setup.py
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
from setuptools import setup, find_packages
|
2
|
-
|
3
|
-
with open("README.md") as f:
|
4
|
-
long_description = f.read()
|
5
|
-
|
6
|
-
setup(
|
7
|
-
name="channel_app",
|
8
|
-
version="0.1.0",
|
9
|
-
packages=find_packages(),
|
10
|
-
url="https://bitbucket.org/akinonteam/channel_app",
|
11
|
-
description="Channel app for Sales Channels",
|
12
|
-
long_description=long_description,
|
13
|
-
long_description_content_type="text/markdown",
|
14
|
-
author="akinonteam",
|
15
|
-
python_requires=">=3.5", #TODO Python 3.8+ for dataclasses?
|
16
|
-
# We should pin the below to work with all the way from py27 to upto py39
|
17
|
-
install_requires=["requests"],
|
18
|
-
classifiers=[
|
19
|
-
"Development Status :: 5 - Production/Stable",
|
20
|
-
],
|
21
|
-
)
|
@@ -1,110 +0,0 @@
|
|
1
|
-
channel_app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
channel_app/setup.py,sha256=k1HW_QUTbuFU_dgY9B6gGotd0m5wKzXLxNjVk6wp8gM,669
|
3
|
-
channel_app/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
-
channel_app/app/order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
-
channel_app/app/order/service.py,sha256=DTevtxN1SbnpzFC56LEvanCqNwO7tQM43PKtqCJSDK0,11272
|
6
|
-
channel_app/app/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
-
channel_app/app/product/service.py,sha256=if4Iw9J-nEf864Vy8JQS4HxVpitucaYiJlR8pnDG0jo,9938
|
8
|
-
channel_app/app/product_image/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
|
-
channel_app/app/product_image/service.py,sha256=5YsqymA2aVYO9bcy92sBDOixwnzw_H7RB2FbrXL48vI,5527
|
10
|
-
channel_app/app/product_price/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
|
-
channel_app/app/product_price/service.py,sha256=AJRwaQ3f93xWO-DqHCFVA_g9JtYyrM1sdrYUIXndTnE,12392
|
12
|
-
channel_app/app/product_stock/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
|
-
channel_app/app/product_stock/service.py,sha256=Oh7-bA_TixCz7WeBdLJ5YOzPYXXQu9Mn9e3z_Wph7_E,12244
|
14
|
-
channel_app/app/setup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
15
|
-
channel_app/app/setup/service.py,sha256=d53IKrQjahNZvxCaZAmXo2VUKBMM6-wm-P9I9tBTYOY,4553
|
16
|
-
channel_app/channel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
|
-
channel_app/channel/integration.py,sha256=q7wwPvYukEEoLCMZZ6d4GDiRHV8u_dPHT3cGU6DUuik,3587
|
18
|
-
channel_app/channel/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
|
-
channel_app/channel/commands/product_categories.py,sha256=ktN8NnWNcHcVREVOU-SSZbH5ZEwihAUOgHsZm1KcEpY,52
|
20
|
-
channel_app/channel/commands/product_images.py,sha256=8lCSt-_YkD1IytAXOtAJAwWd9d53QZPKir-iopK1fC0,4855
|
21
|
-
channel_app/channel/commands/product_prices.py,sha256=pOY_1qb_0soGyK1wkTy2epL4xUeFflFfWLGCKoVRiCo,4855
|
22
|
-
channel_app/channel/commands/product_stocks.py,sha256=3mUz9K1zA3ljvtcOBgD5uQsMHBmzTxrSfj5vHXBV5qs,8157
|
23
|
-
channel_app/channel/commands/products.py,sha256=ZzmJbcOJISOcsZ9F3FL012rqU-eNhwW_LGYYlb2WmzA,5257
|
24
|
-
channel_app/channel/commands/setup.py,sha256=NNUq7jzBHXt61Jhm9XExm2kXp6u7YEjO45fjpIRiNKk,36040
|
25
|
-
channel_app/channel/commands/orders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
26
|
-
channel_app/channel/commands/orders/orders.py,sha256=PcoDuJDR-1RuZBPqKgkPXJWkbr7OwQasyqzKrXigmFg,12487
|
27
|
-
channel_app/channel_app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
28
|
-
channel_app/channel_app/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
29
|
-
channel_app/channel_app/app/order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
30
|
-
channel_app/channel_app/app/order/service.py,sha256=0rg5YPAl_bCJUovJEBYn9e-P7oEpkhMxnGm0AqyzeE8,8841
|
31
|
-
channel_app/channel_app/app/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
32
|
-
channel_app/channel_app/app/product/service.py,sha256=pdAh9DNAM7lSgDsS5CVlSA-jkiwEt5aGcqFnBaW3tM0,9883
|
33
|
-
channel_app/channel_app/app/product_price/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
34
|
-
channel_app/channel_app/app/product_price/service.py,sha256=QCey7DvfOKu14gaBybP2s16aTRoHrBSXxdrhqCbkw5E,11038
|
35
|
-
channel_app/channel_app/app/product_stock/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
36
|
-
channel_app/channel_app/app/product_stock/service.py,sha256=l7miFdaQ-5XuZOfOyQx60Te_CcH_iy5q6VYJvxHCq-o,10891
|
37
|
-
channel_app/channel_app/app/setup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
38
|
-
channel_app/channel_app/app/setup/service.py,sha256=v6EginsQRQVVYd_Yr1Pe8n1lHCi3UlasQGNycxKoTdk,2727
|
39
|
-
channel_app/channel_app/channel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
40
|
-
channel_app/channel_app/channel/integration.py,sha256=_NUcupTIYZTl0f57YZVKCw2ab8QmwAtDJ7B2n6UR92w,3694
|
41
|
-
channel_app/channel_app/channel/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
42
|
-
channel_app/channel_app/channel/commands/product_categories.py,sha256=ktN8NnWNcHcVREVOU-SSZbH5ZEwihAUOgHsZm1KcEpY,52
|
43
|
-
channel_app/channel_app/channel/commands/product_images.py,sha256=iIpV8aLYttbmLW3HDTTttRDyovLfsVrTdj6q7_nrJx0,41
|
44
|
-
channel_app/channel_app/channel/commands/product_prices.py,sha256=pOY_1qb_0soGyK1wkTy2epL4xUeFflFfWLGCKoVRiCo,4855
|
45
|
-
channel_app/channel_app/channel/commands/product_stocks.py,sha256=3mUz9K1zA3ljvtcOBgD5uQsMHBmzTxrSfj5vHXBV5qs,8157
|
46
|
-
channel_app/channel_app/channel/commands/products.py,sha256=ZzmJbcOJISOcsZ9F3FL012rqU-eNhwW_LGYYlb2WmzA,5257
|
47
|
-
channel_app/channel_app/channel/commands/setup.py,sha256=sR4ouVRGTjfIRlLAcgWBOzENWXRvWWwhac_6nkTVLfc,33882
|
48
|
-
channel_app/channel_app/channel/commands/orders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
49
|
-
channel_app/channel_app/channel/commands/orders/orders.py,sha256=GRH_uI6GoPelCtjWK-S4qr7ZQP_EG1j6cQxFdNjQeWE,11068
|
50
|
-
channel_app/channel_app/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
51
|
-
channel_app/channel_app/core/clients.py,sha256=A15vfwD9fJTYoSdMBDIZs5Rr05Uk4wDw_QqX79MEWu4,491
|
52
|
-
channel_app/channel_app/core/commands.py,sha256=EK99g40s7BdBRimaTkTr-dCxI019Cwy8Zw5pEQgx7Ug,13976
|
53
|
-
channel_app/channel_app/core/data.py,sha256=z2dv4czZaqtO7mWfUtVyGsuifjPVu10y-9FGwzkkmhA,5601
|
54
|
-
channel_app/channel_app/core/integration.py,sha256=OqpN8B3KBLsjjrbZXZaNVF6NtObejh7P_7kGFj1xU3o,2817
|
55
|
-
channel_app/channel_app/core/products.py,sha256=uInjFw-vze1XP8vWEeq4VWDZVQQIiatoe1YsQ6n_H5E,2092
|
56
|
-
channel_app/channel_app/core/settings.py,sha256=66y5YJksINO0WQ6UwXeYQXiCVfjrve0r4QgRENQaGyQ,1212
|
57
|
-
channel_app/channel_app/core/utilities.py,sha256=m8Drz0RiH8Q1wdvgbb6IYs8ylAvkEeQa-q_sCoQgnaw,3081
|
58
|
-
channel_app/channel_app/omnitron/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
59
|
-
channel_app/channel_app/omnitron/batch_request.py,sha256=a_kb9nKoX09mUS_5H8j6jaXn3YfSVD_0r-iBi6pRnWg,3345
|
60
|
-
channel_app/channel_app/omnitron/constants.py,sha256=2kvdez5VJPzhNcMyV0VaG_6JTYkUVYwuOifnMIwGOg8,2718
|
61
|
-
channel_app/channel_app/omnitron/exceptions.py,sha256=_NjIx5LKPbKiP5jrJJGIfKGsRbGK6Thas3j5MGlq8Js,928
|
62
|
-
channel_app/channel_app/omnitron/integration.py,sha256=u99YBBrKGZ9gSGwpxqg9x7AnpbeSVO5l3Q1rvTquv-I,8322
|
63
|
-
channel_app/channel_app/omnitron/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
64
|
-
channel_app/channel_app/omnitron/commands/batch_requests.py,sha256=RcpH8QtC0DXQQPqDqgWeYVv6kJgUvVU9jbotipksOaM,11498
|
65
|
-
channel_app/channel_app/omnitron/commands/error_reports.py,sha256=PFeWryOjAyN6huKn5W8gq-ii0aa2yTGPfBoWieNL5RQ,2942
|
66
|
-
channel_app/channel_app/omnitron/commands/integration_actions.py,sha256=wjoRerXK3V9UV4pw5NGnuzphVKZCVPfh8q5eW_l10rg,7338
|
67
|
-
channel_app/channel_app/omnitron/commands/product_categories.py,sha256=XCYJ-G2qxytNNnixnPKHosPXyNiVwQ2q202dRTITkVA,43
|
68
|
-
channel_app/channel_app/omnitron/commands/product_images.py,sha256=nUkHA2g6KHi5KYumz14KKXC_az2mtggarPUr2q1xLV8,32
|
69
|
-
channel_app/channel_app/omnitron/commands/product_prices.py,sha256=aEIHjOxm-EN0oYphmfQZKcJ5uup9f4tDq5xEDhARSSo,7629
|
70
|
-
channel_app/channel_app/omnitron/commands/product_stocks.py,sha256=EfkdFLpNvKsXJL7tcV9I6Q_9ow-1fqWgXSwPK_0enOc,8897
|
71
|
-
channel_app/channel_app/omnitron/commands/products.py,sha256=6FmggmnbZLCgCKRj18KkeHnaLNB04wrrGejQUGSybp4,28205
|
72
|
-
channel_app/channel_app/omnitron/commands/setup.py,sha256=A1lSV8GD6D_G_s0eq06s8EpHE2jyllG_AH0A6uYodmE,35153
|
73
|
-
channel_app/channel_app/omnitron/commands/orders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
74
|
-
channel_app/channel_app/omnitron/commands/orders/addresses.py,sha256=pgqtQT_-OGA8FIpGKTk0lUPKt3J2L7qpg5o4cdgFaS0,10846
|
75
|
-
channel_app/channel_app/omnitron/commands/orders/cargo_companies.py,sha256=pTyOgsoIBLHUIj7F2eB_y3NXS8p8Qi0rsqjIZ7AZiWs,1308
|
76
|
-
channel_app/channel_app/omnitron/commands/orders/customers.py,sha256=LeZAfYXS5A-Zl3Nj48ZV1-RWnxdSmGxgRFrOJZYGrko,3409
|
77
|
-
channel_app/channel_app/omnitron/commands/orders/orders.py,sha256=hCL1uWxQDpCKC6JZv4fp_L1rTj47GPZ1nNbg7q1Of-A,18202
|
78
|
-
channel_app/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
79
|
-
channel_app/core/clients.py,sha256=o8OBkXwof8BobEyiiHPwmGsUcOlPb60u3oUeAUxo_hc,1591
|
80
|
-
channel_app/core/commands.py,sha256=tFmap9qLu3N4iu97-RWGCbj74L_iqciKT4CqDtxezWs,14063
|
81
|
-
channel_app/core/data.py,sha256=-9jDxdYZrvUhusbOfvtAfHwlweky_p-XD2zzOW5liLA,6302
|
82
|
-
channel_app/core/integration.py,sha256=OqpN8B3KBLsjjrbZXZaNVF6NtObejh7P_7kGFj1xU3o,2817
|
83
|
-
channel_app/core/products.py,sha256=uInjFw-vze1XP8vWEeq4VWDZVQQIiatoe1YsQ6n_H5E,2092
|
84
|
-
channel_app/core/settings.py,sha256=66y5YJksINO0WQ6UwXeYQXiCVfjrve0r4QgRENQaGyQ,1212
|
85
|
-
channel_app/core/tests.py,sha256=TZMTg838EqFFdBMa67ko-QPEXRVSKIWUfZVLRLRy9Wg,5685
|
86
|
-
channel_app/core/utilities.py,sha256=3iSU4RHFSsdTWBfUYBK23CRGtAIC-nYIBIJLm0Dlx3o,4168
|
87
|
-
channel_app/omnitron/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
88
|
-
channel_app/omnitron/batch_request.py,sha256=S8IHtbI1RtVLbnOwtfXSmkrREGp8wUYW2E-eu5omwyY,3550
|
89
|
-
channel_app/omnitron/constants.py,sha256=2kvdez5VJPzhNcMyV0VaG_6JTYkUVYwuOifnMIwGOg8,2718
|
90
|
-
channel_app/omnitron/exceptions.py,sha256=_NjIx5LKPbKiP5jrJJGIfKGsRbGK6Thas3j5MGlq8Js,928
|
91
|
-
channel_app/omnitron/integration.py,sha256=Jw9SZeDMLKRxzrZB02FTVhwDbercawfCi_GwYSPqFdc,9253
|
92
|
-
channel_app/omnitron/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
93
|
-
channel_app/omnitron/commands/batch_requests.py,sha256=WXd1iCJKC-nCcMHZ2XDP9UVcC2Xq3MFd1uCqz8h5_pU,11638
|
94
|
-
channel_app/omnitron/commands/error_reports.py,sha256=PFeWryOjAyN6huKn5W8gq-ii0aa2yTGPfBoWieNL5RQ,2942
|
95
|
-
channel_app/omnitron/commands/integration_actions.py,sha256=PvjxXr85UYhiIaNF6ub_Bi5JZm5b59XFTlB52WxgZF0,7412
|
96
|
-
channel_app/omnitron/commands/product_categories.py,sha256=XCYJ-G2qxytNNnixnPKHosPXyNiVwQ2q202dRTITkVA,43
|
97
|
-
channel_app/omnitron/commands/product_images.py,sha256=fwUntMOzRvcXrVbZ5Xd5O73w7K009jPakXqVdmWKOuk,5561
|
98
|
-
channel_app/omnitron/commands/product_prices.py,sha256=HZ37Hw7YHKhZg7_kjSR-dNb0g2pz4WQAkcRHIwHLFvQ,12527
|
99
|
-
channel_app/omnitron/commands/product_stocks.py,sha256=LQFEdfv7hnY1-LWshat2h8hu7dAPDyngOCxfttqJxpw,13822
|
100
|
-
channel_app/omnitron/commands/products.py,sha256=As8Hnw3h6dOfPdxPBPUs-Hdip_9IaQXQyLAMsAylMTs,32098
|
101
|
-
channel_app/omnitron/commands/setup.py,sha256=dcbvvIFDKKeDVziwR2qWJhVd92IlVLEoYIbMrxKjWDE,35220
|
102
|
-
channel_app/omnitron/commands/orders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
103
|
-
channel_app/omnitron/commands/orders/addresses.py,sha256=l3lW8PuR19vIcPztghVxKMy6GszXAd_G1JvCOmV9evw,11777
|
104
|
-
channel_app/omnitron/commands/orders/cargo_companies.py,sha256=pTyOgsoIBLHUIj7F2eB_y3NXS8p8Qi0rsqjIZ7AZiWs,1308
|
105
|
-
channel_app/omnitron/commands/orders/customers.py,sha256=ojI04p6DLlNQUYGwuTBKOf8cNoXgeGFwleH8lM6WOxU,3518
|
106
|
-
channel_app/omnitron/commands/orders/orders.py,sha256=MJP3nAhBqOYfe028tjn7TOzxrjojcFNAIUScTxm2zXw,22755
|
107
|
-
channel_app-0.0.131.dist-info/METADATA,sha256=jWOooCggEF-oNMDD0Xq6bdgYgwgwdAQIaLkhUmu5ZZs,353
|
108
|
-
channel_app-0.0.131.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
109
|
-
channel_app-0.0.131.dist-info/top_level.txt,sha256=JT-gM6L5Cwxr1xEoN7NHrREDs-d6iGFGfRnK-NrJ3tU,12
|
110
|
-
channel_app-0.0.131.dist-info/RECORD,,
|
File without changes
|
File without changes
|