export type JiraNoteStatus = 'draft' | 'queued' | 'submitted' | 'error'; export interface JiraNote { id: string; createdAt: string; updatedAt?: string; author?: string; summary: string; body?: string; status: JiraNoteStatus; jiraKey?: string; labels?: string[]; projectKey?: string; } export interface JiraNoteInput { summary: string; body?: string; labels?: string[]; projectKey?: string; } export interface JiraNotesClientOptions { /** Base URL of the API that accepts Jira notes (e.g., Orchestrator or Ticket-Mate). */ baseUrl: string; /** Optional API key header used by Orchestrator/Ticket-Mate. */ apiKey?: string; /** Optional site or project identifier for multi-site setups. */ siteId?: string; } //# sourceMappingURL=jiraNotesTypes.d.ts.map