export interface Service {
  name: string;
  price: number; // Price in cents
  description: string;
}

export interface ServicesConfig {
  [key: string]: Service;
}

export interface CreateCheckoutSessionRequest {
  serviceId: string;
  customerEmail?: string;
}

export interface CreateCheckoutSessionResponse {
  sessionId: string;
  url: string | null;
}

export interface CheckoutSessionMetadata {
  serviceId: string;
  serviceName: string;
}

