- added camera black board fetch and post
- region selector can save settings and painted regions and fetch on load - will add reset all
This commit is contained in:
@@ -170,6 +170,13 @@ export type CameraFeedAction =
|
||||
| {
|
||||
type: "RESET_PAINTED_CELLS";
|
||||
payload: { cameraFeedID: "A" | "B" | "C"; paintedCells: Map<string, PaintedCell> };
|
||||
}
|
||||
| {
|
||||
type: "SET_CAMERA_FEED_DATA";
|
||||
cameraState: CameraFeedState;
|
||||
}
|
||||
| {
|
||||
type: "RESET_CAMERA_FEED";
|
||||
};
|
||||
|
||||
export type DecodeReading = {
|
||||
@@ -214,3 +221,9 @@ export type CustomFieldConfig = {
|
||||
label: string;
|
||||
value: string;
|
||||
};
|
||||
|
||||
export type BlackBoardOptions = {
|
||||
operation?: string;
|
||||
path?: string;
|
||||
value?: object | string | number | (string | number)[] | null;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user