import { RegisterData, ApiResponse } from '@/app/types'; const API_URL = process.env.NEXT_PUBLIC_API_URL || 'http://localhost:8080'; export const registerUser = async (data: RegisterData): Promise => { try { console.log('Sending request to:', `${API_URL}/auth/register`); const response = await fetch(`${API_URL}/auth/register`, { method: 'POST', headers: { 'Content-Type': 'application/json', 'Accept': 'application/json', }, body: JSON.stringify(data), credentials: 'include', }); const responseData = await response.json(); if (!response.ok) { throw new Error(responseData.message || 'Registration failed'); } return responseData; } catch (error) { console.error('Registration API Error:', error); return { success: false, message: error instanceof Error ? error.message : 'Registration failed', }; } }; export const resendVerification = async (email: string): Promise => { try { const response = await fetch(`${API_URL}/auth/resend-verification`, { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ email }), }); const data = await response.json(); if (!response.ok) { throw new Error(data.message || 'Failed to resend verification email'); } return { success: true, message: data.message }; } catch (error) { console.error('Resend verification error:', error); throw error; } };