/** * Bugs Jira Service * * Service for creating Jira tickets from bug records using ticket-mate */ import type { JiraIssue } from '../../../types'; import type { BugItem } from '../../../automation/json-reader'; export interface CreateBugTicketOptions { projectKey?: string; issueType?: string; } /** * Create a Jira bug ticket from a bug record */ export declare const bugsJiraService: { /** * Create a Jira bug ticket */ createBugTicket: (bug: BugItem, options?: CreateBugTicketOptions) => Promise; /** * Update bug record with Jira key * Note: This is a client-side operation. In a real app, you'd want to * persist this to bugs.json via a backend API or file system operation. */ updateBugWithJiraKey: (bugId: string, jiraKey: string) => Promise; }; //# sourceMappingURL=bugs-jira.service.d.ts.map