feat: accept post heartbeats for calendar agents

This commit is contained in:
2026-04-04 17:58:57 +00:00
parent 5a2b64df70
commit 5e98d1c8f2

View File

@@ -299,8 +299,9 @@ def _apply_agent_slot_update(slot: TimeSlot, payload: SlotAgentUpdate) -> None:
slot.attended = True
@router.get(
@router.api_route(
"/agent/heartbeat",
methods=["GET", "POST"],
response_model=AgentHeartbeatResponse,
summary="Get all due slots for the calling agent",
)