feat(onboarding): extend OnboardingChannel with name and config fields

Add 'name' (user-visible channel name) and 'config' (provider-specific settings)
fields to OnboardingChannel type to support two-phase configuration flow.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Théo LAGACHE
2026-06-17 10:05:47 +02:00
co-authored by Claude Sonnet 4.6
parent ed3ae9445a
commit 2d223b72c5
@@ -32,6 +32,8 @@ export type OnboardingChannel = {
id: string;
provider: string;
label: string;
name: string;
config: Record<string, unknown>;
};
export type OnboardingDefaultsData = {