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: total_detection:
type: integer type: integer
title: Total Detection title: Total Detection
total_motion:
type: integer
title: Total Motion
type: object type: object
required: required:
- day - day
@ -3188,7 +3185,6 @@ components:
- reviewed_detection - reviewed_detection
- total_alert - total_alert
- total_detection - total_detection
- total_motion
title: DayReview title: DayReview
EventsCreateBody: EventsCreateBody:
properties: properties:
@ -3310,16 +3306,12 @@ components:
total_detection: total_detection:
type: integer type: integer
title: Total Detection title: Total Detection
total_motion:
type: integer
title: Total Motion
type: object type: object
required: required:
- reviewed_alert - reviewed_alert
- reviewed_detection - reviewed_detection
- total_alert - total_alert
- total_detection - total_detection
- total_motion
title: Last24HoursReview title: Last24HoursReview
RegenerateDescriptionEnum: RegenerateDescriptionEnum:
type: string type: string

View File

@ -22,7 +22,6 @@ class Last24HoursReview(BaseModel):
reviewed_detection: int reviewed_detection: int
total_alert: int total_alert: int
total_detection: int total_detection: int
total_motion: int
class DayReview(BaseModel): class DayReview(BaseModel):
@ -31,7 +30,6 @@ class DayReview(BaseModel):
reviewed_detection: int reviewed_detection: int
total_alert: int total_alert: int
total_detection: int total_detection: int
total_motion: int
class ReviewSummaryResponse(BaseModel): class ReviewSummaryResponse(BaseModel):

View File

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