15 lines
490 B
JavaScript
15 lines
490 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",
|
|
SET_VEHICLE: "setVehicle",
|
|
GET_DAMAGE_OPTIONS: "getDamageOptions",
|
|
GET_EVOX_IMAGE: "getEvoxImage",
|
|
LOOKUP_VEHICLE_BY_YMMS: "lookupVehicleByYmms",
|
|
LOOKUP_VEHICLE_BY_VIN: "lookupVehicleByVin",
|
|
};
|
|
|
|
export { storeActions };
|