OSS-first docs
These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.
Fetch the transcript for a specific meeting recording.
Goal
Expose meeting transcripts for downstream knowledge and analytics flows.
Context
Used by agents and dashboards to access the transcript for a selected meeting.
Source Definition
import {
type AnyOperationSpec,
defineCommand,
defineQuery,
} from '@lssm-tech/lib.contracts-spec/operations';
import type { OperationSpecRegistry } from '@lssm-tech/lib.contracts-spec/operations/registry';
import { ScalarTypeEnum, SchemaModel } from '@lssm-tech/lib.schema';
import { MeetingTranscriptRecord } from '../models';
import { MEETING_RECORDER_TELEMETRY_EVENTS } from '../telemetry';
export const MeetingRecorderGetTranscript = defineQuery({
meta: {
key: 'meeting-recorder.transcripts.get',
version: '1.0.0',
description: 'Fetch the transcript for a specific meeting recording.',
goal: 'Expose meeting transcripts for downstream knowledge and analytics flows.',
context:
'Used by agents and dashboards to access the transcript for a selected meeting.',
owners: ['@platform.integrations'],
tags: ['meeting-recorder', 'transcripts'],
stability: 'experimental',
},
io: {
input: MeetingRecorderGetTranscriptInput,
output: MeetingTranscriptRecord,
},
policy: {
auth: 'user',
},
});