# Conflicts: # src/constants/endpoints.js # src/helpers/unit-test-helper.js # src/mixins/base-mixin.js # src/store/store.spec.js
61 lines
No EOL
1.5 KiB
JavaScript
61 lines
No EOL
1.5 KiB
JavaScript
const endpoints = {
|
|
GetRouteInfo: {
|
|
url: (applicationAbbreviation) => `/content/api/v1/content/${applicationAbbreviation}/RouteInfo`,
|
|
method: "POST",
|
|
},
|
|
GetHomepageInfo: {
|
|
url: (applicationAbbreviation) => `/content/api/v1/content/${applicationAbbreviation}/HomepageInfo`,
|
|
method: "GET",
|
|
},
|
|
GetPageData: {
|
|
url: (applicationAbbreviation, pageName) => `/content/api/v1/content/${applicationAbbreviation}/${pageName}`,
|
|
method: "GET",
|
|
},
|
|
GetVehicleYears: {
|
|
url: "/vehicle/api/v1/vehicle/years",
|
|
method: "GET",
|
|
},
|
|
GetVehicleMakes: {
|
|
url: "/vehicle/api/v1/vehicle/makes/",
|
|
method: "GET",
|
|
},
|
|
GetVehicleModels: {
|
|
url: "/vehicle/api/v1/vehicle/models",
|
|
method: "GET",
|
|
},
|
|
GetVehicleStyles: {
|
|
url: "/vehicle/api/v1/vehicle/styles",
|
|
method: "GET",
|
|
},
|
|
GetVehicle: {
|
|
url: "/vehicle/api/v1/vehicle/lookup",
|
|
method: "GET",
|
|
},
|
|
LogExperimentExposureIfAssigned: {
|
|
url: "/experiments/api/v1/experiments/log-exposure",
|
|
method: "POST",
|
|
},
|
|
LogPageView: {
|
|
url: "/analytics/api/v1/analytics/log-page-view",
|
|
method: "POST",
|
|
},
|
|
LogCustomEvent: {
|
|
url: "/analytics/api/v1/analytics/log-custom-event",
|
|
method: "POST",
|
|
},
|
|
InitializeSession: {
|
|
url: "/analytics/api/v1/analytics/initialize",
|
|
method: "POST",
|
|
},
|
|
GetExperimentsByUser: {
|
|
url: "/analytics/api/v1/analytics/get-experiments",
|
|
method: "GET",
|
|
},
|
|
RunExperimentsForTrigger: {
|
|
url: "/experiments/api/v1/experiments/run",
|
|
method: "POST",
|
|
},
|
|
};
|
|
|
|
export { endpoints };
|
|
|