promote: dev → uat (GRO-1509 OIDC account_not_linked fix) #43

Merged
The Dogfather merged 7 commits from dev into uat 2026-05-21 22:53:50 +00:00
2 changed files with 17 additions and 4 deletions
Showing only changes of commit 85fc803548 - Show all commits
@@ -164,10 +164,10 @@ vi.mock("../db", async (importOriginal) => {
}), }),
pets, pets,
appointments, appointments,
and: (...conds: unknown[]) => conds, and: db.and,
eq: (col: unknown, val: unknown) => ({ col, val }), eq: db.eq,
exists: (q: unknown) => q, exists: db.exists,
or: (...conds: unknown[]) => conds, or: db.or,
}; };
}); });
+13
View File
@@ -26,6 +26,19 @@ export interface Client {
updatedAt: string; updatedAt: string;
} }
// ─── Medical Alerts ────────────────────────────────────────────────────────────
export type AlertSeverity = "low" | "medium" | "high";
export interface MedicalAlert {
type: string;
description: string;
severity: AlertSeverity;
}
// ─── Pet Profile Summary ────────────────────────────────────────────────────
export type CoatType = "short" | "medium" | "long" | "double" | "wire" | "silky" | "curly" | "hairless";
export interface Pet { export interface Pet {
id: string; id: string;
clientId: string; clientId: string;