import type { JsmGetApprovalsParams, JsmGetApprovalsResponse } from '@/tools/jsm/types' import { APPROVAL_ITEM_PROPERTIES } from '@/tools/jsm/types' import type { ToolConfig } from '@/tools/types' export const jsmGetApprovalsTool: ToolConfig = { id: 'jsm_get_approvals', name: 'JSM Get Approvals', description: 'Get approvals for a request in Jira Service Management', version: '1.0.0', oauth: { required: true, provider: 'jira', }, params: { accessToken: { type: 'string', required: true, visibility: 'hidden', description: 'OAuth access token for Jira Service Management', }, domain: { type: 'string', required: true, visibility: 'user-or-llm', description: 'Your Jira domain (e.g., yourcompany.atlassian.net)', }, cloudId: { type: 'string', required: false, visibility: 'hidden', description: 'Jira Cloud ID for the instance', }, issueIdOrKey: { type: 'string', required: true, visibility: 'user-or-llm', description: 'Issue ID or key (e.g., SD-123)', }, start: { type: 'number', required: false, visibility: 'user-or-llm', description: 'Start index for pagination (e.g., 0, 50, 100)', }, limit: { type: 'number', required: false, visibility: 'user-or-llm', description: 'Maximum results to return (e.g., 10, 25, 50)', }, }, request: { url: '/api/tools/jsm/approvals', method: 'POST', headers: () => ({ 'Content-Type': 'application/json', }), body: (params) => ({ domain: params.domain, accessToken: params.accessToken, cloudId: params.cloudId, issueIdOrKey: params.issueIdOrKey, start: params.start, limit: params.limit, action: 'get', }), }, transformResponse: async (response: Response) => { const responseText = await response.text() if (!responseText) { return { success: false, output: { ts: new Date().toISOString(), issueIdOrKey: '', approvals: [], total: 0, isLastPage: true, }, error: 'Empty response from API', } } const data = JSON.parse(responseText) if (data.success && data.output) { return data } return { success: data.success || false, output: data.output || { ts: new Date().toISOString(), issueIdOrKey: '', approvals: [], total: 0, isLastPage: true, }, error: data.error, } }, outputs: { ts: { type: 'string', description: 'Timestamp of the operation' }, issueIdOrKey: { type: 'string', description: 'Issue ID or key' }, approvals: { type: 'array', description: 'List of approvals', items: { type: 'object', properties: APPROVAL_ITEM_PROPERTIES, }, }, total: { type: 'number', description: 'Total number of approvals' }, isLastPage: { type: 'boolean', description: 'Whether this is the last page' }, }, }