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

export const SUPPORT_OPENER_ROLE = ['customer', 'vendor'] as const;

export const supportOpenerRole = defineEnum({
  name: 'support_opener_role',
  values: SUPPORT_OPENER_ROLE,
  labels: { customer: 'customer', vendor: 'vendor' },
});

export type SupportOpenerRole = (typeof SUPPORT_OPENER_ROLE)[number];
