Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-18 20:58:45 +00:00
co-authored by renee-png
parent a488065d10
commit e5b328b72a
+7
View File
@@ -94,6 +94,8 @@ interface Evt {
event_type: string;
case_id: string | null;
case_label: string | null;
client_id: string | null;
client_label: string | null;
owner_id: string | null;
owner_name: string | null;
location: string | null;
@@ -106,6 +108,11 @@ interface CaseRow {
case_number: string;
}
interface ClientRow {
id: string;
name: string;
}
interface StaffRow {
id: string;
full_name: string;