Files
AnchorOS/app/api/bookings/[id]/route.ts
Marco Gallegos 8fc9d3717e docs: add comprehensive code comments, update README and TASKS, create training and troubleshooting guides
- Add JSDoc comments to API routes and business logic functions
- Update README.md with Phase 2 status and deployment/production notes
- Enhance TASKS.md with estimated timelines and dependencies
- Create docs/STAFF_TRAINING.md for team onboarding
- Create docs/CLIENT_ONBOARDING.md for customer experience
- Create docs/OPERATIONAL_PROCEDURES.md for daily operations
- Create docs/TROUBLESHOOTING.md for common setup issues
- Fix TypeScript errors in hq/page.tsx
2026-01-16 18:42:45 -06:00

57 lines
1.4 KiB
TypeScript

import { NextRequest, NextResponse } from 'next/server'
import { supabaseAdmin } from '@/lib/supabase/client'
/**
* @description Updates the status of a specific booking
*/
export async function PATCH(
request: NextRequest,
{ params }: { params: { id: string } }
) {
try {
const bookingId = params.id
const body = await request.json()
const { status } = body
if (!status) {
return NextResponse.json(
{ error: 'Missing required field: status' },
{ status: 400 }
)
}
const validStatuses = ['pending', 'confirmed', 'completed', 'cancelled', 'no_show']
if (!validStatuses.includes(status)) {
return NextResponse.json(
{ error: `Invalid status. Must be one of: ${validStatuses.join(', ')}` },
{ status: 400 }
)
}
const { data: booking, error: updateError } = await supabaseAdmin
.from('bookings')
.update({ status })
.eq('id', bookingId)
.select()
.single()
if (updateError || !booking) {
return NextResponse.json(
{ error: updateError?.message || 'Failed to update booking' },
{ status: 400 }
)
}
return NextResponse.json({
success: true,
booking
})
} catch (error) {
console.error('Update booking error:', error)
return NextResponse.json(
{ error: 'Internal server error' },
{ status: 500 }
)
}
}