import { REQUEST_UCID_LOOKUP } from '../actionTypes'; import api from '../Api'; export function fetchUcidLookup(requestParams, searchTerm, Api = api) { return { type: REQUEST_UCID_LOOKUP, requestParams, searchTerm, Api }; }