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
15 lines
282 B
PHP
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';
|
|
}
|