fix: resolve all typecheck, lint, and test failures

- Add @types/node to packages/db devDependencies (typecheck was missing process)
- Re-export drizzle-orm helpers (eq, gte, etc.) from @groombook/db to avoid
  duplicate-instance type conflicts; remove drizzle-orm direct dep from API
- Add @hono/zod-validator and jose as direct API dependencies
- Merge duplicate @groombook/db imports in all route files
- Fix noUncheckedIndexedAccess errors: appointments PATCH, web calendar grid
- Fix weightKg/dateOfBirth type conversion in pets route (numeric→string, string→Date)
- Add eslint.config.js for API and web (ESLint 9 flat config format)
- Add vitest.config.ts with passWithNoTests for API and web

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Groom Book CTO
2026-03-17 18:03:06 +00:00
parent 77787e028b
commit 9c8f3fc47c
14 changed files with 92 additions and 21 deletions
+6 -8
View File
@@ -1,8 +1,7 @@
import { Hono } from "hono";
import { zValidator } from "@hono/zod-validator";
import { z } from "zod";
import { and, eq, gte, lt, lte, ne } from "drizzle-orm";
import { getDb, appointments } from "@groombook/db";
import { and, eq, getDb, gte, lt, lte, ne, appointments } from "@groombook/db";
export const appointmentsRouter = new Hono();
@@ -144,13 +143,12 @@ appointmentsRouter.patch(
.from(appointments)
.where(eq(appointments.id, id))
.limit(1);
if (existing.length === 0) return c.json({ error: "Not found" }, 404);
const current = existing[0];
if (!current) return c.json({ error: "Not found" }, 404);
const start = body.startTime
? new Date(body.startTime)
: existing[0].startTime;
const end = body.endTime ? new Date(body.endTime) : existing[0].endTime;
const staffId = body.staffId ?? existing[0].staffId;
const start = body.startTime ? new Date(body.startTime) : current.startTime;
const end = body.endTime ? new Date(body.endTime) : current.endTime;
const staffId = body.staffId ?? current.staffId;
if (end <= start) {
return c.json({ error: "endTime must be after startTime" }, 422);