fix: finish all patient related upgrades

This commit is contained in:
voltsrage
2026-06-23 18:17:13 +08:00
parent 7751d6df06
commit 5d46200941
20 changed files with 985 additions and 19 deletions
@@ -21,4 +21,8 @@ export async function fetchObservations(encounterId, { limit = 50 } = {}) {
cursor = page.hasMore ? page.nextCursor : null
} while (cursor)
return all
}
export function fetchTimeline(encounterId) {
return api.get(`/api/v1/encounters/${encounterId}/timeline`)
}