feat: habilitar set completo de APIs de Google Maps y actualizar llaves funcionales para produccion

This commit is contained in:
2026-02-24 10:46:17 -05:00
parent 5d14ef61d3
commit 6d4f50cafb
7 changed files with 758 additions and 617 deletions

View File

@ -51,6 +51,11 @@ export const routesService = {
/** Update a stop on a route (Admin) - including reorder */
async updateRouteStop(routeId: string, stopId: string, data: import('@/types').RouteStopUpdate): Promise<void> {
await apiClient.put(`/api/routes/${routeId}/stops/${stopId}`, data)
},
/** Remove a stop from a route (Admin) */
async removeStopFromRoute(routeId: string, stopId: string): Promise<void> {
await apiClient.delete(`/api/routes/${routeId}/stops/${stopId}`)
}
}