export type ContextSourceFormat = 'json' | 'csv' | 'tsv' | 'xml' | 'html' | 'yaml' | 'md' | 'txt'; export interface MeetingContextDocument { id: string; document_id: string; meeting_id: string; workspace_id: string; partner_app_id: string; platform_name: string; title?: string; context_type?: string; source_format: ContextSourceFormat; file_status: string; created_by_user_id: string; created_at: string; updated_at: string; deleted_at?: string; } export interface MeetingContextListParams { limit?: number; offset?: number; } export interface MeetingContextListResponse { items: MeetingContextDocument[]; total: number; limit: number; offset: number; } export interface UploadMeetingContextRequest { file: Blob; source_format: ContextSourceFormat; title?: string; context_type?: string; } export interface MeetingContextContentResponse { data: ArrayBuffer; filename?: string; contentType?: string; size?: number; } //# sourceMappingURL=context.d.ts.map