feat: habilitar set completo de APIs de Google Maps y actualizar llaves funcionales para produccion
This commit is contained in:
@ -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}`)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user