forked from farhoodlabs/paperclip
b62fa4ad64
Shared TypeScript types, Zod validators, API contract definitions, and constants used by both server and UI. Covers agents, goals, issues, projects, and activity entities. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
28 lines
456 B
TypeScript
28 lines
456 B
TypeScript
export {
|
|
createAgentSchema,
|
|
updateAgentSchema,
|
|
type CreateAgent,
|
|
type UpdateAgent,
|
|
} from "./agent.js";
|
|
|
|
export {
|
|
createProjectSchema,
|
|
updateProjectSchema,
|
|
type CreateProject,
|
|
type UpdateProject,
|
|
} from "./project.js";
|
|
|
|
export {
|
|
createIssueSchema,
|
|
updateIssueSchema,
|
|
type CreateIssue,
|
|
type UpdateIssue,
|
|
} from "./issue.js";
|
|
|
|
export {
|
|
createGoalSchema,
|
|
updateGoalSchema,
|
|
type CreateGoal,
|
|
type UpdateGoal,
|
|
} from "./goal.js";
|