import { filterUndefined } from '@sim/utils/object' import type { RailwayUpdatedProject, RailwayUpdateProjectParams, RailwayUpdateProjectResponse, } from '@/tools/railway/types' import { optionalString, parseRailwayGraphqlResponse, RAILWAY_GRAPHQL_URL, railwayHeaders, } from '@/tools/railway/utils' import type { ToolConfig } from '@/tools/types' interface RailwayUpdateProjectData { projectUpdate?: RailwayUpdatedProject } export const railwayUpdateProjectTool: ToolConfig< RailwayUpdateProjectParams, RailwayUpdateProjectResponse > = { id: 'railway_update_project', name: 'Railway Update Project', description: 'Update a Railway project name or description', version: '1.0.0', params: { apiKey: { type: 'string', required: true, visibility: 'user-only', description: 'Railway API token', }, tokenType: { type: 'string', required: false, visibility: 'user-only', description: 'Railway token type. Use "account" for account, workspace, or OAuth tokens, or "project" for project tokens.', }, projectId: { type: 'string', required: true, visibility: 'user-or-llm', description: 'Railway project ID', }, name: { type: 'string', required: false, visibility: 'user-or-llm', description: 'Updated project name', }, description: { type: 'string', required: false, visibility: 'user-or-llm', description: 'Updated project description', }, isPublic: { type: 'boolean', required: false, visibility: 'user-or-llm', description: 'Whether the project should be publicly visible', }, prDeploys: { type: 'boolean', required: false, visibility: 'user-or-llm', description: 'Whether to enable pull request deploy environments', }, }, request: { url: RAILWAY_GRAPHQL_URL, method: 'POST', headers: (params) => railwayHeaders(params.apiKey, params.tokenType), body: (params) => ({ query: ` mutation UpdateProject($id: String!, $input: ProjectUpdateInput!) { projectUpdate(id: $id, input: $input) { id name description } } `, variables: { id: params.projectId.trim(), input: filterUndefined({ name: optionalString(params.name), description: optionalString(params.description), isPublic: params.isPublic, prDeploys: params.prDeploys, }), }, }), }, transformResponse: async (response: Response) => { const data = await parseRailwayGraphqlResponse(response) const project = data.data?.projectUpdate if (!project) throw new Error('Railway did not return an updated project') return { success: true, output: { project: { id: project.id, name: project.name, description: project.description ?? null, }, }, } }, outputs: { project: { type: 'object', description: 'Updated project', properties: { id: { type: 'string', description: 'Project ID' }, name: { type: 'string', description: 'Project name' }, description: { type: 'string', description: 'Project description', optional: true }, }, }, }, }