import type { RipplingGetCustomPageParams } from '@/tools/rippling/types' import type { ToolConfig } from '@/tools/types' export const ripplingGetCustomPageTool: ToolConfig = { id: 'rippling_get_custom_page', name: 'Rippling Get CustomPage', description: 'Get a specific custom page', 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: 'Resource ID' }, }, request: { url: (params) => `https://rest.ripplingapis.com/custom-pages/${encodeURIComponent(params.id.trim())}/`, method: 'GET', headers: (params) => ({ Authorization: `Bearer ${params.apiKey}`, Accept: 'application/json' }), }, 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, components: data.components ?? [], actions: data.actions ?? [], canvas_actions: data.canvas_actions ?? [], variables: data.variables ?? [], media: data.media ?? null, __meta: data.__meta ?? null, }, } }, outputs: { id: { type: 'string', description: 'Page ID' }, created_at: { type: 'string', description: 'Creation date', optional: true }, updated_at: { type: 'string', description: 'Update date', optional: true }, name: { type: 'string', description: 'Name', optional: true }, components: { type: 'json', description: 'Page components', optional: true }, actions: { type: 'json', description: 'Page actions', optional: true }, canvas_actions: { type: 'json', description: 'Canvas actions', optional: true }, variables: { type: 'json', description: 'Page variables', optional: true }, media: { type: 'json', description: 'Page media', optional: true }, __meta: { type: 'json', description: 'Metadata including redacted_fields', optional: true }, }, }