feat: Implementar sistema de disponibilidad y corregir errores de kiosko

- Agregar API routes de disponibilidad (blocks, staff, time-slots, staff-unavailable)
- Corregir autenticación en availability routes (reemplazar get_current_user_role con validación Bearer)
- Corregir DELETE en blocks/route.ts para usar query parameters
- Corregir errores de tipos en kiosk routes (supabase → supabaseAdmin)
- Agregar layout raíz de Next.js y estilos globales
- Agregar componente Badge UI
- Corregir tipos TypeScript en WalkInFlow
- Instalar dependencias necesarias (@radix-ui/*, class-variance-authority, etc)
- Agregar migraciones de disponibilidad
This commit is contained in:
Marco Gallegos
2026-01-16 15:12:57 -06:00
parent 631e60376c
commit accf0e81e1
23 changed files with 8263 additions and 152 deletions

View File

@@ -1,14 +1,14 @@
import { NextRequest, NextResponse } from 'next/server'
import { supabase } from '@/lib/supabase/client'
import { supabaseAdmin } from '@/lib/supabase/client'
async function validateKiosk(request: NextRequest) {
const apiKey = request.headers.get('x-kiosk-api-key')
if (!apiKey) {
return null
}
const { data: kiosk } = await supabase
const { data: kiosk } = await supabaseAdmin
.from('kiosks')
.select('id, location_id, is_active')
.eq('api_key', apiKey)
@@ -34,7 +34,7 @@ export async function POST(
const shortId = params.shortId
const { data: booking, error: fetchError } = await supabase
const { data: booking, error: fetchError } = await supabaseAdmin
.from('bookings')
.select('id, status, location_id')
.eq('short_id', shortId)
@@ -61,31 +61,11 @@ export async function POST(
)
}
const { data: updatedBooking, error: updateError } = await supabase
const { data: updatedBooking, error: updateError } = await supabaseAdmin
.from('bookings')
.update({ status: 'confirmed' })
.eq('id', booking.id)
.select(`
id,
short_id,
status,
start_time_utc,
end_time_utc,
service (
id,
name,
duration_minutes
),
resource (
id,
name,
type
),
staff (
id,
display_name
)
`)
.select('id, short_id, status, start_time_utc, end_time_utc')
.single()
if (updateError || !updatedBooking) {