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
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',
},
});