36 lines
842 B
PHP
36 lines
842 B
PHP
<?php
|
|
|
|
return [
|
|
'name' => 'IntegrationHub',
|
|
'module_version' => '1.0',
|
|
|
|
'datasets' => [
|
|
'sales_summary',
|
|
'inventory_snapshot',
|
|
'production_kpis',
|
|
'maintenance_kpis',
|
|
'qms_kpis',
|
|
'executive_cockpit',
|
|
],
|
|
|
|
'export_formats' => ['json', 'csv', 'xlsx'],
|
|
|
|
'webhook_events' => [
|
|
'sale.finalized' => 'Sale finalized',
|
|
'export.completed' => 'BI export completed',
|
|
'executive_cockpit.exported' => 'Executive cockpit data exported',
|
|
'inventory.low_stock' => 'Low stock threshold reached',
|
|
'production.order.completed' => 'Production order completed',
|
|
],
|
|
|
|
'odata' => [
|
|
'default_page_size' => 100,
|
|
'max_page_size' => 500,
|
|
],
|
|
|
|
'webhook' => [
|
|
'timeout_seconds' => 15,
|
|
'max_retries' => 3,
|
|
],
|
|
];
|