update camera base URL, enhance alert context, and improve history list functionality

This commit is contained in:
2025-09-24 12:28:14 +01:00
parent fe28247b1c
commit efd037754e
12 changed files with 224 additions and 17 deletions

View File

@@ -164,6 +164,10 @@ export type AlertPayload =
| {
type: "REMOVE";
payload: SightingType;
}
| {
type: "DELETE";
payload: [];
};
export type ActionType = {
@@ -237,3 +241,13 @@ export type CameraConfig = {
datatype: "boolean";
};
};
export type CameraBlackBoardOptions = {
operation?: string;
path?: string;
value?: object | string | number | (string | number)[];
};
export type CameraBlackboardResponse = {
data: object;
};