import { i as OpenClawConfig } from "./types.openclaw-CpnoYlBx.js"; //#region src/transcripts/provider-types.d.ts /** * Public contracts for transcript source providers. * * Providers can stream live utterances, import post-hoc transcript text, expose * status, and stop active sessions using shared session/source descriptors. */ /** Supported source families for transcript providers. */ type TranscriptSourceKind = "live-audio" | "live-caption" | "posthoc-transcript" | "recording-stt"; /** Provider-specific locator for a live, recorded, or imported transcript source. */ type TranscriptSourceLocator = { providerId: string; kind?: TranscriptSourceKind; accountId?: string; guildId?: string; channelId?: string; meetingUrl?: string; threadTs?: string; fileId?: string; [key: string]: string | undefined; }; /** Speaker/participant identity attached to an utterance. */ type TranscriptParticipant = { id?: string; label: string; }; /** One captured or imported transcript utterance. */ type TranscriptUtterance = { id?: string; sessionId?: string; startedAt?: string; endedAt?: string; speaker?: TranscriptParticipant; text: string; final?: boolean; metadata?: Record; }; /** Durable transcript session metadata. */ type TranscriptSessionDescriptor = { sessionId: string; title?: string; source: TranscriptSourceLocator; startedAt: string; stoppedAt?: string; metadata?: Record; }; /** Request passed to providers that can start live transcript capture. */ type TranscriptStartRequest = { cfg?: OpenClawConfig; session: TranscriptSessionDescriptor; abortSignal?: AbortSignal; startupWaitMs?: number; onUtterance: (utterance: TranscriptUtterance) => void | Promise; onStatus?: (status: TranscriptSourceStatus) => void | Promise; }; /** Result from starting a transcript source provider. */ type TranscriptsStartResult = { ok: true; session: TranscriptSessionDescriptor; } | { ok: false; error: string; }; /** Request passed to providers that can stop live transcript capture. */ type TranscriptStopRequest = { cfg?: OpenClawConfig; sessionId: string; source: TranscriptSourceLocator; reason?: string; }; /** Result from stopping a transcript source provider. */ type TranscriptsStopResult = { ok: true; sessionId: string; stoppedAt?: string; } | { ok: false; error: string; }; /** Runtime status reported by transcript source providers. */ type TranscriptSourceStatus = { sessionId?: string; active: boolean; message?: string; source?: TranscriptSourceLocator; }; /** Request passed to providers that import post-hoc transcript text. */ type TranscriptImportRequest = { cfg?: OpenClawConfig; session: TranscriptSessionDescriptor; text: string; speakerLabel?: string; }; /** Provider contract for transcript capture/import integrations. */ type TranscriptSourceProvider = { id: string; aliases?: readonly string[]; name: string; sourceKinds: readonly TranscriptSourceKind[]; start?: (request: TranscriptStartRequest) => Promise; stop?: (request: TranscriptStopRequest) => Promise; status?: (source: TranscriptSourceLocator, cfg?: OpenClawConfig) => Promise; importTranscript?: (request: TranscriptImportRequest) => Promise; }; //#endregion export { TranscriptSourceLocator as a, TranscriptStartRequest as c, TranscriptsStartResult as d, TranscriptsStopResult as f, TranscriptSourceKind as i, TranscriptStopRequest as l, TranscriptParticipant as n, TranscriptSourceProvider as o, TranscriptSessionDescriptor as r, TranscriptSourceStatus as s, TranscriptImportRequest as t, TranscriptUtterance as u };