import type { ApolloOpportunityGetParams, ApolloOpportunityGetResponse } from '@/tools/apollo/types' import type { ToolConfig } from '@/tools/types' export const apolloOpportunityGetTool: ToolConfig< ApolloOpportunityGetParams, ApolloOpportunityGetResponse > = { id: 'apollo_opportunity_get', name: 'Apollo Get Opportunity', description: 'Retrieve complete details of a specific deal/opportunity by ID', version: '1.0.0', params: { apiKey: { type: 'string', required: true, visibility: 'user-only', description: 'Apollo API key', }, opportunity_id: { type: 'string', required: true, visibility: 'user-or-llm', description: 'ID of the opportunity to retrieve (e.g., "opp_abc123")', }, }, request: { url: (params: ApolloOpportunityGetParams) => `https://api.apollo.io/api/v1/opportunities/${params.opportunity_id.trim()}`, method: 'GET', headers: (params: ApolloOpportunityGetParams) => ({ 'Content-Type': 'application/json', 'Cache-Control': 'no-cache', 'X-Api-Key': params.apiKey, }), }, transformResponse: async (response: Response) => { if (!response.ok) { const errorText = await response.text() throw new Error(`Apollo API error: ${response.status} - ${errorText}`) } const data = await response.json() return { success: true, output: { opportunity: data.opportunity ?? null, found: !!data.opportunity, }, } }, outputs: { opportunity: { type: 'json', description: 'Complete opportunity data from Apollo', optional: true, }, found: { type: 'boolean', description: 'Whether the opportunity was found' }, }, }