UNPKG

@spaik/mcp-server-roi

Version:

MCP server for AI ROI prediction and tracking with Monte Carlo simulations

26 lines 761 B
import { z } from 'zod'; export const ProjectSchema = z.object({ id: z.string().uuid().optional(), client_name: z.string().min(1), project_name: z.string().min(1), industry: z.enum([ 'financial_services', 'healthcare', 'retail', 'manufacturing', 'technology', 'education', 'government', 'other' ]), description: z.string().optional(), status: z.enum(['draft', 'active', 'completed', 'archived']).default('draft'), created_at: z.string().datetime().optional(), updated_at: z.string().datetime().optional() }); export const ProjectCreateSchema = ProjectSchema.omit({ id: true, created_at: true, updated_at: true }); //# sourceMappingURL=project.js.map