import { defineEnum } from './define-enum';

export const PROMO_STATUS = ['active', 'paused', 'archived'] as const;

export const promoStatus = defineEnum({
  name: 'promo_status',
  values: PROMO_STATUS,
  labels: { active: 'active', paused: 'paused', archived: 'archived' },
});

export type PromoStatus = (typeof PROMO_STATUS)[number];
