feat(integrations): добавлена заготовка интеграции Recommerce

- Создана структура marketplaces/ для маркетплейсов
- Модели: MarketplaceIntegration, WooCommerceIntegration, RecommerceIntegration
- Сервисы: MarketplaceService, WooCommerceService, RecommerceService
- RecommerceService содержит методы для работы с API:
  - test_connection(), sync(), fetch_products()
  - push_product(), update_stock(), update_price()
- IntegrationConfig обновлён с новой интеграцией

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-11 23:19:42 +03:00
parent 4450e34497
commit 4629369823
12 changed files with 437 additions and 5 deletions

View File

@@ -1,3 +1,14 @@
from .base import BaseIntegration
from .base import BaseIntegration, IntegrationType
from .marketplaces import (
MarketplaceIntegration,
WooCommerceIntegration,
RecommerceIntegration,
)
__all__ = ['BaseIntegration']
__all__ = [
'BaseIntegration',
'IntegrationType',
'MarketplaceIntegration',
'WooCommerceIntegration',
'RecommerceIntegration',
]