import type { RipplingUpdateTitleParams } from '@/tools/rippling/types' import type { ToolConfig } from '@/tools/types' export const ripplingUpdateTitleTool: ToolConfig = { id: 'rippling_update_title', name: 'Rippling Update Title', description: 'Update an existing title', version: '1.0.0', params: { apiKey: { type: 'string', required: true, visibility: 'user-only', description: 'Rippling API key', }, id: { type: 'string', required: true, visibility: 'user-or-llm', description: 'Title ID' }, name: { type: 'string', required: false, visibility: 'user-or-llm', description: 'Title name' }, }, request: { url: (params) => `https://rest.ripplingapis.com/titles/${encodeURIComponent(params.id.trim())}/`, method: 'PATCH', headers: (params) => ({ Authorization: `Bearer ${params.apiKey}`, 'Content-Type': 'application/json', Accept: 'application/json', }), body: (params) => { const body: Record = {} if (params.name != null) body.name = params.name return body }, }, transformResponse: async (response: Response) => { if (!response.ok) { const errorText = await response.text() throw new Error(`Rippling API error (${response.status}): ${errorText}`) } const data = await response.json() return { success: true, output: { id: (data.id as string) ?? '', created_at: (data.created_at as string) ?? null, updated_at: (data.updated_at as string) ?? null, name: (data.name as string) ?? null, }, } }, outputs: { id: { type: 'string', description: 'Title ID' }, created_at: { type: 'string', description: 'Creation date', optional: true }, updated_at: { type: 'string', description: 'Update date', optional: true }, name: { type: 'string', description: 'Title name', optional: true }, }, }