feature: add handoff report

This commit is contained in:
voltsrage
2026-06-23 20:32:33 +08:00
parent 79b6d9d85e
commit c6b98b5f7c
14 changed files with 906 additions and 7 deletions
@@ -44,4 +44,10 @@ export async function fetchObservations(encounterId, { limit = 50 } = {}) {
export function fetchTimeline(encounterId) {
return api.get(`/api/v1/encounters/${encounterId}/timeline`)
}
export function submitVitalsObservations(encounterId, observations) {
return api.post(`/api/v1/encounters/${encounterId}/observations`, {
observations,
})
}