export enum EmployeeRequestsActions {
  FETCH_EMPLOYEE_REQUESTS = 'employeeRequests/fetch',
  FETCH_MY_EMPLOYEE_REQUESTS = 'employeeRequests/fetchMine',
  FETCH_EMPLOYEE_REQUEST = 'employeeRequests/fetchOne',
  CREATE_EMPLOYEE_REQUEST = 'employeeRequests/create',
  DELETE_EMPLOYEE_REQUEST = 'employeeRequests/delete',
  SUBMIT_EMPLOYEE_REQUEST = 'employeeRequests/submit',
  CANCEL_EMPLOYEE_REQUEST = 'employeeRequests/cancel',
  FETCH_REQUEST_TYPES = 'employeeRequests/fetchTypes',
  CREATE_REQUEST_TYPE = 'employeeRequests/createType',
  UPDATE_REQUEST_TYPE = 'employeeRequests/updateType',
  DELETE_REQUEST_TYPE = 'employeeRequests/deleteType',
  FETCH_REQUEST_WORKFLOWS = 'employeeRequests/fetchWorkflows',
  CREATE_REQUEST_WORKFLOW = 'employeeRequests/createWorkflow',
  UPDATE_REQUEST_WORKFLOW = 'employeeRequests/updateWorkflow',
  DELETE_REQUEST_WORKFLOW = 'employeeRequests/deleteWorkflow',
  ASSIGN_REQUEST_WORKFLOW = 'employeeRequests/assignWorkflow',
  FETCH_REQUEST_DASHBOARD = 'employeeRequests/fetchDashboard',
}
