import type { DBGettingStartedMeta, DBGettingStartedProgress } from './db.js'; import type { DBConnection } from '../connection/db.js'; import type { DBEnvironment } from '../environment/db.js'; import type { IntegrationConfig } from '../integration/db.js'; export interface GettingStartedOutput { meta: { environment: Pick; integration: Pick; }; connection: Pick | null; step: number; } export interface PatchGettingStartedInput { connection_id?: string | null | undefined; step?: number | undefined; } export type CreateGettingStartedMeta = Omit; export type CreateGettingStartedProgress = Omit;