// Export status mappings for potential future use
export const statusMappings: Record<string, string> = {
  'Job Scheduled': 'Scheduled',
  'Job Executed': 'Ready',
  'Job in Progress': 'Initializing',
  'Job Failed': 'Failed',
  'Deleting': 'Deleting',
};
