import type { PaymentGateway } from "@/types/commerce";

export const ALLOWED_PAYMENT_GATEWAYS: PaymentGateway[] = [
  "mercadopago",
  "pix",
  "card",
  "boleto",
  "apple_pay",
  "google_pay",
];

export const PAYMENT_GATEWAY_LABELS: Record<PaymentGateway, string> = {
  mercadopago: "Mercado Pago",
  pix: "PIX",
  card: "Cartão de crédito",
  boleto: "Boleto",
  apple_pay: "Apple Pay",
  google_pay: "Google Pay",
};
