export type CefpIssueMatrixStatus =
  | "Solved"
  | "In Progress"
  | "Not Addressed"
  | "Draft"
  | "New Submission";

export type CefpIssueMatrixRow = {
  id: number;
  issueId: number;
  issueResolveId: number;
  meetingSummaryId: number;
  workingGroupId: number;
  workingGroup: string;
  issue: string;
  category: string;
  issueDescription: string;
  recommendation: string;
  governmentDecision: string;
  primaryAgency: string;
  primaryAgencyImage: string | null;
  plenaryEscalation: boolean;
  status: CefpIssueMatrixStatus;
  nextStep: string;
  submittedAt: string;
  year: string;
};

export type CefpIssueMatrixSummary = {
  totalIssues: number;
  solved: number;
  inProgress: number;
  notAddressed: number;
  totalPrimaryAgencies: number;
};
