Add new DB schemas: companies, agent_api_keys, approvals, cost_events, heartbeat_runs, issue_comments. Add corresponding shared types and validators. Update existing schemas (agents, goals, issues, projects) with new fields for company association, budgets, and richer metadata. Generate initial Drizzle migration. Update seed data. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
623 B
TypeScript
18 lines
623 B
TypeScript
import { z } from "zod";
|
|
import { GOAL_LEVELS, GOAL_STATUSES } from "../constants.js";
|
|
|
|
export const createGoalSchema = z.object({
|
|
title: z.string().min(1),
|
|
description: z.string().optional().nullable(),
|
|
level: z.enum(GOAL_LEVELS).optional().default("task"),
|
|
status: z.enum(GOAL_STATUSES).optional().default("planned"),
|
|
parentId: z.string().uuid().optional().nullable(),
|
|
ownerAgentId: z.string().uuid().optional().nullable(),
|
|
});
|
|
|
|
export type CreateGoal = z.infer<typeof createGoalSchema>;
|
|
|
|
export const updateGoalSchema = createGoalSchema.partial();
|
|
|
|
export type UpdateGoal = z.infer<typeof updateGoalSchema>;
|