import type { HostedSessionConfig } from '../../domain/types/HostedSessionConfig'; export interface SessionDTO { sessionId: string; state: string; currentStep: number; config: HostedSessionConfig; startedAt?: Date; completedAt?: Date; errorMessage?: string; }