From 9918aec438ad36822e74aa74148b87a3e8553c17 Mon Sep 17 00:00:00 2001 From: Kulbhushan Kaushik Date: Thu, 15 Sep 2022 08:29:20 -0400 Subject: [PATCH] commit --- src/constants/application-config.js | 7 ++++++ src/constants/store-actions.js | 39 +++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) diff --git a/src/constants/application-config.js b/src/constants/application-config.js index e69de29b..70777398 100644 --- a/src/constants/application-config.js +++ b/src/constants/application-config.js @@ -0,0 +1,7 @@ +const applicationConfig = { + CURRENT_ENVIRONMENT: process.env.VUE_APP_CURRENT_ENVIRONMENT, // "Localhost", "Dev", "QA", and "Prod" + APPLICATION_NAME: "SelfService", + SITE_ENTRY_TRIGGER_VALUE: "SelfService" + }; + + export { applicationConfig }; \ No newline at end of file diff --git a/src/constants/store-actions.js b/src/constants/store-actions.js index e69de29b..d6ce74f3 100644 --- a/src/constants/store-actions.js +++ b/src/constants/store-actions.js @@ -0,0 +1,39 @@ +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", + GET_EXPERIMENTS_BY_USER: "GetExperimentsByUser", + RUN_EXPERIMENTS_FOR_TRIGGER: "runExperimentsForTrigger", + CLEAR_VIN: "clearVin", + + // DEPENDENCY MUTATIONS + + // SAVE COMPONENT STATE + + }; + + export { storeActions }; + \ No newline at end of file