13 lines
419 B
JavaScript
13 lines
419 B
JavaScript
const storeActions = {
|
|
GET_ROUTE_INFO_ACTION: "getRouteInfo",
|
|
GET_PAGE_DATA: "getPageData",
|
|
GET_VEHICLE_YEARS: "getVehicleYears",
|
|
GET_VEHICLE_MAKES: "getVehicleMakes",
|
|
GET_VEHICLE_MODELS: "getVehicleModels",
|
|
GET_VEHICLE_STYLES: "getVehicleStyles",
|
|
GET_EVOX_IMAGE: "getEvoxImage",
|
|
LOOKUP_VEHICLE_BY_YMMS: "lookupVehicleByYmms",
|
|
LOOKUP_VEHICLE_BY_VIN: "lookupVehicleByVin",
|
|
};
|
|
|
|
export { storeActions };
|