22 lines
789 B
JavaScript
22 lines
789 B
JavaScript
const storeActions = {
|
|
GET_ROUTE_INFO_ACTION: "getRouteInfo",
|
|
GET_HOMEPAGE_NAME: "getHomepageName",
|
|
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",
|
|
|
|
// DEPENDENCY MUTATIONS
|
|
RESET_VEHICLE_AND_DEPS: "resetVehicleAndDependencies",
|
|
RESET_DAMAGE_AND_DEPS: "resetDamageAndDependencies",
|
|
RESET_REGISTRATION_AND_DEPS: "resetRegistrationAndDependencies",
|
|
RESET_PARTS_AND_DEPS: "resetPartsAndDependencies",
|
|
};
|
|
|
|
export { storeActions };
|