Add Frigate video previews and BearClaw metadata

pull/1764/head
Carlo Costanzo 3 months ago
parent af7a960b77
commit e79a383586

@ -52,3 +52,5 @@
- type: custom:frigate-events-card - type: custom:frigate-events-card
frigate_client_id: frigate frigate_client_id: frigate
event_count: 3 event_count: 3
video: true
video_on_hover: true

@ -311,6 +311,8 @@
- type: custom:frigate-events-card - type: custom:frigate-events-card
frigate_client_id: frigate frigate_client_id: frigate
event_count: 5 event_count: 5
video: true
video_on_hover: true
- show_state: true - show_state: true
show_name: true show_name: true
camera_view: live camera_view: live

@ -15,6 +15,7 @@
# Notes: Nightly Duplicati verification calls a codex_appliance admin endpoint and returns structured health to HA via response_variable. # Notes: Nightly Duplicati verification calls a codex_appliance admin endpoint and returns structured health to HA via response_variable.
# Notes: v2 intake is the primary HA contract; legacy command/ingest routes remain appliance-side shims. # Notes: v2 intake is the primary HA contract; legacy command/ingest routes remain appliance-side shims.
# Notes: Command payload supports async_only for automation-first queueing when immediate inline handling is not required. # Notes: Command payload supports async_only for automation-first queueing when immediate inline handling is not required.
# Notes: Command payload supports optional metadata for HA dispatch context snapshots.
# Notes: Blog: https://www.vcloudinfo.com/2026/03/joanna-dispatch-telemetry-home-assistant-infrastructure-dashboard/ # Notes: Blog: https://www.vcloudinfo.com/2026/03/joanna-dispatch-telemetry-home-assistant-infrastructure-dashboard/
###################################################################### ######################################################################
@ -49,6 +50,7 @@ rest_command:
"callbackEventType": "lifecycle" "callbackEventType": "lifecycle"
} }
], ],
"metadata": {{ metadata | default({}, true) | tojson }},
"priority": {{ priority | default(none) | tojson }}, "priority": {{ priority | default(none) | tojson }},
"async_only": {{ async_only | default(false) | tojson }} "async_only": {{ async_only | default(false) | tojson }}
} }
@ -127,6 +129,7 @@ sensor:
- active - active
- platform - platform
- transports - transports
- followups
- qmdHealth - qmdHealth
- memoryIndex - memoryIndex

Loading…
Cancel
Save

Powered by TurnKey Linux.