Files
orderPRO/src/Core/Constants/IntegrationSources.php
Jacek Pyziak 2565d9b754 feat(128): erli orders import
Phase 128 complete:
- add Erli /inbox order import with safe mark-read ACK
- add cron/manual import controls and sync state tracking
- map Erli orders into orderPRO aggregates with mapper tests and docs
2026-05-15 23:54:22 +02:00

15 lines
282 B
PHP

<?php
declare(strict_types=1);
namespace App\Core\Constants;
final class IntegrationSources
{
public const ALLEGRO = 'allegro';
public const SHOPPRO = 'shoppro';
public const ERLI = 'erli';
public const APACZKA = 'apaczka';
public const INPOST = 'inpost';
}