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.

meeting-recorder.meetings.list

List meetings recorded by the configured meeting provider.

  • Type: operation (query)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.integrations
  • Tags: meeting-recorder, meetings, transcripts
  • field.key.label
    meeting-recorder.meetings.list
    field.version.label
    1.0.0
    field.type.label
    operation (query)
    field.title.label
    meeting-recorder.meetings.list
    field.description.label

    List meetings recorded by the configured meeting provider.

  • Type: operation (query)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.integrations
  • Tags: meeting-recorder, meetings, transcripts
  • field.tags.label
    meeting-recorder,meetings,transcripts
    field.owners.label
    @platform.integrations
    field.stability.label
    experimental

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