diff --git a/docs/static/frigate-api.yaml b/docs/static/frigate-api.yaml index 7e2a9b853..9a6364e27 100644 --- a/docs/static/frigate-api.yaml +++ b/docs/static/frigate-api.yaml @@ -3178,9 +3178,6 @@ components: total_detection: type: integer title: Total Detection - total_motion: - type: integer - title: Total Motion type: object required: - day @@ -3188,7 +3185,6 @@ components: - reviewed_detection - total_alert - total_detection - - total_motion title: DayReview EventsCreateBody: properties: @@ -3310,16 +3306,12 @@ components: total_detection: type: integer title: Total Detection - total_motion: - type: integer - title: Total Motion type: object required: - reviewed_alert - reviewed_detection - total_alert - total_detection - - total_motion title: Last24HoursReview RegenerateDescriptionEnum: type: string diff --git a/frigate/api/defs/review_responses.py b/frigate/api/defs/review_responses.py index bf15c2070..39e078b21 100644 --- a/frigate/api/defs/review_responses.py +++ b/frigate/api/defs/review_responses.py @@ -22,7 +22,6 @@ class Last24HoursReview(BaseModel): reviewed_detection: int total_alert: int total_detection: int - total_motion: int class DayReview(BaseModel): @@ -31,7 +30,6 @@ class DayReview(BaseModel): reviewed_detection: int total_alert: int total_detection: int - total_motion: int class ReviewSummaryResponse(BaseModel): diff --git a/web/src/types/review.ts b/web/src/types/review.ts index 3d5f9903e..73b8fed14 100644 --- a/web/src/types/review.ts +++ b/web/src/types/review.ts @@ -44,7 +44,6 @@ type ReviewSummaryDay = { reviewed_detection: number; total_alert: number; total_detection: number; - total_motion: number; }; export type ReviewSummary = {