feat: add frontend decision service and types

This commit is contained in:
Viktor Barzin 2026-02-21 13:51:12 +00:00
parent 3d2a24e921
commit 813f048e46
No known key found for this signature in database
GPG key ID: 0EB088298288D958
3 changed files with 45 additions and 0 deletions

View file

@ -5,3 +5,4 @@ export { streamListingGeoJSON, type StreamingProgress } from './streamingService
export { fetchTasksForUser, fetchTaskStatus, cancelTask, clearAllTasks, type CancelTaskResponse, type ClearAllTasksResponse } from './taskService';
export { checkBackendHealth, type HealthStatus, type HealthCheckResult } from './healthService';
export { fetchUserPOIs, createPOI, updatePOI, deletePOI, triggerPOICalculation, fetchPOIDistances } from './poiService';
export { fetchDecisions, setDecision, clearDecision } from './decisionService';