mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-15 15:45:27 +03:00
Deleted total_motion
This commit is contained in:
parent
f25bd26f03
commit
24dbe64f48
8
docs/static/frigate-api.yaml
vendored
8
docs/static/frigate-api.yaml
vendored
@ -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
|
||||
|
||||
@ -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):
|
||||
|
||||
@ -44,7 +44,6 @@ type ReviewSummaryDay = {
|
||||
reviewed_detection: number;
|
||||
total_alert: number;
|
||||
total_detection: number;
|
||||
total_motion: number;
|
||||
};
|
||||
|
||||
export type ReviewSummary = {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user