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

export const AFFILIATE_STRIPE_STATUS = ['none', 'pending', 'restricted', 'enabled', 'rejected'] as const;

export const affiliateStripeStatus = defineEnum({
  name: 'affiliate_stripe_status',
  values: AFFILIATE_STRIPE_STATUS,
  labels: { none: 'none', pending: 'pending', restricted: 'restricted', enabled: 'enabled', rejected: 'rejected' },
});

export type AffiliateStripeStatus = (typeof AFFILIATE_STRIPE_STATUS)[number];
