32 lines
570 B
JavaScript
32 lines
570 B
JavaScript
const analyticsPageEvents = {
|
|
ENTRY: "ENTRY",
|
|
EVENT: "EVENT"
|
|
};
|
|
|
|
// GA Constants
|
|
const GaEvents = {
|
|
GENERIC_EVENT: 'ga_Event',
|
|
PAGE_VIEW_EVENT : 'logPageview'
|
|
};
|
|
|
|
const GaCategories = {
|
|
API_RESPONSE: 'Api_Response',
|
|
EVOX: 'Evox'
|
|
};
|
|
|
|
const GaActions = {
|
|
RESULT: 'Result',
|
|
CLICKED: 'Clicked',
|
|
VIF: 'vif',
|
|
SUBMITTED: 'Submitted',
|
|
};
|
|
|
|
const GaLabels = {
|
|
SUCCESS: 'Success',
|
|
ERROR: 'Error',
|
|
LICENSE_PLATE_LOOKUP: 'License_Plate_Look_Up',
|
|
VIN_LOOKUP: 'Vin_Look_Up',
|
|
};
|
|
|
|
|
|
export { analyticsPageEvents, GaCategories, GaActions, GaLabels, GaEvents};
|