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.
List meetings recorded by the configured meeting provider.
Goal
Provide downstream workflows with recent meetings and metadata.
Context
Used by integration hubs and sync workflows to enumerate meetings before pulling transcripts.
Source Definition
import {
type AnyOperationSpec,
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 { MeetingRecord } from '../models';
export const MeetingRecorderListMeetings = defineQuery({
meta: {
key: 'meeting-recorder.meetings.list',
version: '1.0.0',
description: 'List meetings recorded by the configured meeting provider.',
goal: 'Provide downstream workflows with recent meetings and metadata.',
context:
'Used by integration hubs and sync workflows to enumerate meetings before pulling transcripts.',
owners: ['@platform.integrations'],
tags: ['meeting-recorder', 'meetings', 'transcripts'],
stability: 'experimental',
},
io: {
input: MeetingRecorderListMeetingsInput,
output: MeetingRecorderListMeetingsOutput,
},
policy: {
auth: 'user',
},
});