46 lines
No EOL
1.5 KiB
JavaScript
46 lines
No EOL
1.5 KiB
JavaScript
const storeActions = {
|
|
// Content Actions
|
|
GET_ROUTE_INFO_ACTION: "getRouteInfo",
|
|
GET_HOMEPAGE_NAME: "getHomepageName",
|
|
GET_PAGE_DATA: "getPageData",
|
|
|
|
// Vehicle Actions
|
|
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 Actions
|
|
LOOKUP_VEHICLE_BY_YMMS: "lookupVehicleByYmms",
|
|
LOOKUP_VEHICLE_BY_VIN: "lookupVehicleByVin",
|
|
LOOKUP_VIN_BY_PLATE: "lookupVinByPlate",
|
|
LOOKUP_VIN_BY_ADDRESS: "lookupVinByAddress",
|
|
|
|
GET_PARTS_OR_QUESTIONS: "getPartsOrQuestions",
|
|
GET_PARTS: "getParts",
|
|
GET_CAPABILITY_QUESTIONS: "getCapabilityQuestions",
|
|
GET_PART_FROM_CAPABILITY_QUESTION_ANSWER: "getPartFromCapabilityQuestionAnswer",
|
|
GET_MOLDING_QUESTIONS: "getMoldingQuestions",
|
|
VALIDATE_ZIP: "validateZip",
|
|
CLEAR_VIN: "clearVin",
|
|
|
|
// VEHICLE Actions
|
|
UPDATE_YEAR: "updateYear",
|
|
UPDATE_MAKE: "updateMake",
|
|
UPDATE_MODEL: "updateModel",
|
|
UPDATE_STYLE: "updateStyle",
|
|
UPDATE_CAR_ID: "updateCarId",
|
|
UPDATE_VEHICLE_CATEGORY: "updateVehicleCategory",
|
|
UPDATE_VEHICLE_IMAGE_URL: "updateVehicleImageUrl",
|
|
UPDATE_VEHICLE_IMAGE_VIF_NUMBER: "updateVehicleImageVifNumber",
|
|
UPDATE_VEHICLE_IMAGE_COLOR: "updateVehicleImageColor",
|
|
UPDATE_VEHICLE_VIN: "updateVehicleVin",
|
|
UPDATE_VEHICLE: "updateVehicle",
|
|
|
|
};
|
|
|
|
export { storeActions };
|
|
|