From 3539e50ed463dc92b727cf50d5053b041751e982 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Mon, 17 Mar 2025 13:15:51 -0500 Subject: [PATCH] add fields to frontend type --- web/src/types/frigateConfig.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/web/src/types/frigateConfig.ts b/web/src/types/frigateConfig.ts index 1b3dbd3f3..1f0d4c24a 100644 --- a/web/src/types/frigateConfig.ts +++ b/web/src/types/frigateConfig.ts @@ -391,6 +391,12 @@ export interface FrigateConfig { colormap: { [key: string]: [number, number, number] }; attributes_map: { [key: string]: [string] }; all_attributes: [string]; + plus?: { + name: string; + trainDate: string; + baseModel: string; + supportedDetectors: string[]; + }; }; motion: Record | null;