New GET /api/poi/distances/bulk returns all POI distances keyed by listing ID, allowing the frontend to fetch distances separately from the listing stream and keep the stream on the cached path.
9 lines
754 B
TypeScript
9 lines
754 B
TypeScript
// Re-export all services
|
|
export { apiRequest } from './apiClient';
|
|
export { fetchListingGeoJSON, refreshListings } from './listingService';
|
|
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, fetchBulkPOIDistances } from './poiService';
|
|
export { fetchDecisions, setDecision, clearDecision } from './decisionService';
|
|
export { fetchListingDetail } from './listingDetailService';
|