19 lines
582 B
JavaScript
19 lines
582 B
JavaScript
const experimentUniverses = {
|
|
CONCEPT_FUNNEL: "ConceptFunnel",
|
|
};
|
|
|
|
const experimentSettings = {
|
|
GOOGLE_CUSTOM_DIMENSION_INDEX: "Google Custom Dimension Index",
|
|
DISPLAY_AVAILABILITY_INDICATORS: "DisplayAvailabilityIndicators",
|
|
PIA_EXPERIENCE: "PIA Experience",
|
|
PIA_INSURANCE: "DisplayPIAInsurance",
|
|
SUBMIT_ORDER_ENABLE_PIA: "SubmitOrder_Enable_PIA",
|
|
IS_EMAIL_OPTIONAL: "isEmailOptional",
|
|
};
|
|
|
|
const experimentTriggers = {
|
|
SITE_ENTRY: "SiteEntry",
|
|
PAGE_ENTRY: "PageEntry",
|
|
};
|
|
|
|
export { experimentUniverses, experimentSettings, experimentTriggers };
|