import { createLogger } from '@sim/logger' import type { PipedriveGetDealParams, PipedriveGetDealResponse } from '@/tools/pipedrive/types' import type { ToolConfig } from '@/tools/types' const logger = createLogger('PipedriveGetDeal') export const pipedriveGetDealTool: ToolConfig = { id: 'pipedrive_get_deal', name: 'Get Deal Details from Pipedrive', description: 'Retrieve detailed information about a specific deal', version: '1.0.0', params: { accessToken: { type: 'string', required: true, visibility: 'hidden', description: 'The access token for the Pipedrive API', }, deal_id: { type: 'string', required: true, visibility: 'user-or-llm', description: 'The ID of the deal to retrieve (e.g., "123")', }, }, request: { url: (params) => `https://api.pipedrive.com/api/v2/deals/${params.deal_id}`, method: 'GET', headers: (params) => { if (!params.accessToken) { throw new Error('Access token is required') } return { Authorization: `Bearer ${params.accessToken}`, Accept: 'application/json', } }, }, transformResponse: async (response: Response) => { const data = await response.json() if (!data.success) { logger.error('Pipedrive API request failed', { data }) throw new Error(data.error || 'Failed to fetch deal from Pipedrive') } return { success: true, output: { deal: data.data ?? null, success: true, }, } }, outputs: { deal: { type: 'object', description: 'Deal object with full details', optional: true }, success: { type: 'boolean', description: 'Operation success status' }, }, }