/**
 * Zod request body schemas for project routes — projects module.
 * Re-exports from packages/db/src/validation/projects.ts so route files
 * import from a single app-local module path.
 */
export {
  createProjectSchema,
  updateProjectSchema,
  addMemberSchema,
  updateMemberSchema,
  listProjectsQuerySchema,
  fixedBillingConfigSchema,
  hourlyBillingConfigSchema,
  retainerBillingConfigSchema,
} from '@zync/db/validation/projects'

export type {
  CreateProjectInput,
  UpdateProjectInput,
  AddMemberInput,
  UpdateMemberInput,
  ListProjectsQueryInput,
} from '@zync/db/validation/projects'
