export enum IncidentActions {
  FETCH_INCIDENTS = 'incidents/fetchAll',
  FETCH_INCIDENT = 'incidents/fetch',
  CREATE_INCIDENT = 'incidents/create',
  UPDATE_INCIDENT = 'incidents/update',
  UPDATE_INCIDENT_STATUS = 'incidents/updateStatus',
  FETCH_INCIDENT_INJURIES = 'incidents/fetchInjuries',
  CREATE_INCIDENT_INJURY = 'incidents/createInjury',
  UPDATE_INCIDENT_INJURY = 'incidents/updateInjury',
  DELETE_INCIDENT_INJURY = 'incidents/deleteInjury',
  FETCH_INCIDENT_DOCUMENTS = 'incidents/fetchDocuments',
  UPLOAD_INCIDENT_DOCUMENT = 'incidents/uploadDocument',
  DELETE_INCIDENT_DOCUMENT = 'incidents/deleteDocument',
  FETCH_INCIDENT_WITNESSES = 'incidents/fetchWitnesses',
  CREATE_INCIDENT_WITNESS = 'incidents/createWitness',
  UPDATE_INCIDENT_WITNESS = 'incidents/updateWitness',
  DELETE_INCIDENT_WITNESS = 'incidents/deleteWitness',
  FETCH_CORRECTIVE_ACTIONS = 'incidents/fetchCorrectiveActions',
  CREATE_CORRECTIVE_ACTION = 'incidents/createCorrectiveAction',
  UPDATE_CORRECTIVE_ACTION = 'incidents/updateCorrectiveAction',
  FETCH_REGULATORY_REPORTS = 'incidents/fetchRegulatoryReports',
  CREATE_REGULATORY_REPORT = 'incidents/createRegulatoryReport',
  UPDATE_REGULATORY_REPORT = 'incidents/updateRegulatoryReport',
  FETCH_INCIDENT_TIMELINE = 'incidents/fetchTimeline',
  FETCH_INCIDENT_STATS = 'incidents/fetchStats',
}
