aff52e5672
- shared/schemas/: move Zod schemas out of routes so client + server share them - shared/types.ts: inferred types and enums for cross-package use - server tsconfig rootDir raised to ".." so shared/ compiles in-tree - server/src/services/: ticket, comment, cti, user, auth, notification (stub), search (stub) - Routes thinned to validate-delegate-return; business logic now testable in isolation - server/src/lib/httpError.ts: typed HttpError replaces ad-hoc throw shapes - server/src/lib/logger.ts: pino structured logging replaces console.log - autoClose job delegates to ticketService.closeStale() - express-rate-limit on /api/auth/login (10 / 15min / IP) - vitest + vitest-mock-extended; 20 service-level tests cover auth, ticket, comment, user flows - CI: lint + test jobs before docker builds Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
27 lines
890 B
TypeScript
27 lines
890 B
TypeScript
import { z } from 'zod';
|
|
import { severitySchema, ticketStatusSchema } from './enums';
|
|
|
|
export const createTicketSchema = z.object({
|
|
title: z.string().min(1).max(255),
|
|
overview: z.string().min(1),
|
|
severity: severitySchema,
|
|
categoryId: z.string().min(1),
|
|
typeId: z.string().min(1),
|
|
itemId: z.string().min(1),
|
|
assigneeId: z.string().optional(),
|
|
});
|
|
|
|
export const updateTicketSchema = z.object({
|
|
title: z.string().min(1).max(255).optional(),
|
|
overview: z.string().min(1).optional(),
|
|
severity: severitySchema.optional(),
|
|
status: ticketStatusSchema.optional(),
|
|
categoryId: z.string().min(1).optional(),
|
|
typeId: z.string().min(1).optional(),
|
|
itemId: z.string().min(1).optional(),
|
|
assigneeId: z.string().nullable().optional(),
|
|
});
|
|
|
|
export type CreateTicketInput = z.infer<typeof createTicketSchema>;
|
|
export type UpdateTicketInput = z.infer<typeof updateTicketSchema>;
|