mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-16 16:15:22 +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:
|
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
|
||||||
|
|||||||
@ -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):
|
||||||
|
|||||||
@ -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 = {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user