(cloudId: string, projectIdOrKey: string)
| 4 | import type { ToolConfig } from '@/tools/types' |
| 5 | |
| 6 | function buildProjectUrl(cloudId: string, projectIdOrKey: string): string { |
| 7 | return `https://api.atlassian.com/ex/jira/${cloudId}/rest/api/3/project/${encodeURIComponent(projectIdOrKey)}` |
| 8 | } |
| 9 | |
| 10 | export const jiraGetProjectTool: ToolConfig<JiraGetProjectParams, JiraGetProjectResponse> = { |
| 11 | id: 'jira_get_project', |
no outgoing calls
no test coverage detected