mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-05 21:39:54 +02:00
The API can return `config: null` for non-scheduled triggers, but the type was `Record<string, unknown>` which doesn't reflect this. Update to `Record<string, unknown> | null` so TypeScript catches unsafe access at compile time. Follow-up to #415.