update api spec

This commit is contained in:
Josh Hawkins 2026-05-03 12:06:37 -05:00
parent 9e1c7df4de
commit 393d4dd423

View File

@ -5997,7 +5997,10 @@ paths:
tags: tags:
- App - App
summary: Start debug replay summary: Start debug replay
description: Start a debug replay session from camera recordings. description:
Start a debug replay session from camera recordings. Returns
immediately while clip generation runs as a background job; subscribe
to the 'debug_replay' job_state WS topic to track progress.
operationId: start_debug_replay_debug_replay_start_post operationId: start_debug_replay_debug_replay_start_post
requestBody: requestBody:
required: true required: true
@ -6006,12 +6009,16 @@ paths:
schema: schema:
$ref: "#/components/schemas/DebugReplayStartBody" $ref: "#/components/schemas/DebugReplayStartBody"
responses: responses:
"200": "202":
description: Successful Response description: Successful Response
content: content:
application/json: application/json:
schema: schema:
$ref: "#/components/schemas/DebugReplayStartResponse" $ref: "#/components/schemas/DebugReplayStartResponse"
"400":
description: Invalid camera, time range, or no recordings
"409":
description: A replay session is already active
"422": "422":
description: Validation Error description: Validation Error
content: content:
@ -6272,10 +6279,14 @@ components:
replay_camera: replay_camera:
type: string type: string
title: Replay Camera title: Replay Camera
job_id:
type: string
title: Job Id
type: object type: object
required: required:
- success - success
- replay_camera - replay_camera
- job_id
title: DebugReplayStartResponse title: DebugReplayStartResponse
description: Response for starting a debug replay session. description: Response for starting a debug replay session.
DebugReplayStatusResponse: DebugReplayStatusResponse: