Deleted total_motion

This commit is contained in:
Rui Alves 2024-10-18 20:04:22 +01:00
parent f25bd26f03
commit 24dbe64f48
3 changed files with 0 additions and 11 deletions

View File

@ -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

View File

@ -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):

View File

@ -44,7 +44,6 @@ type ReviewSummaryDay = {
reviewed_detection: number;
total_alert: number;
total_detection: number;
total_motion: number;
};
export type ReviewSummary = {