{"version":3,"file":"lib.js","sources":["../src/utils/normalize-id.js","../src/utils/data-formatters.js","../src/edit/constants.js","../src/utils/wait-for.js","../src/tracking/index.js","../src/utils/cookies.js","../src/utils/get-page-meta-data.js","../src/utils/feature-flags.js","../src/utils/helpers.js","../src/utils/config.js","../src/log/index.js","../src/utils/append.js","../src/location.js","../src/edit/locations/page-location.js","../src/utils/get-vehicles/get-vehicles.js","../src/edit/locations/vehicle-location.js","../src/edit/locations/vehicle-badge.js","../src/edit/locations/listing-location.js","../src/edit/locations/vehicle-media.js","../src/edit/locations/index.js","../src/edit/locations/header-toolbar.js","../src/edit/locations/banner-location.js","../src/edit/locations/search-facet.js","../src/create/button-markup.js","../src/utils/map-of-string-to-list.js","../src/content/locations/index.js","../src/content/locations/schedule-service.js","../src/utils/validator.js","../src/events/subscription.js","../src/events/index.js","../src/utils/copy.js","../src/media.js","../src/utils/markup.js","../src/utils/load-configs.js","../src/utils/getProp/getProp.js","../src/timings.js","../src/edit/locations/page-link.js","../src/edit/editor.js","../src/edit/listingLocationInsertion.js","../src/edit/index.js","../src/menu.js","../src/content/osirisContentModifications.js","../src/utils/settings.js","../src/load/loader.js","../src/load/index.js","../src/utils/loadIntegrations/globals.js","../src/utils/loadIntegrations/errorBuilder/errorBuilder.js","../src/utils/loadIntegrations/logBuilder/logBuilder.js","../src/utils/loadIntegrations/validator/validator.js","../src/utils/loadIntegrations/rules/onlyCoxIntegration/onlyCoxIntegration.js","../src/utils/loadIntegrations/rules/thirdPartyServiceDebug/thirdPartyServiceDebug.js","../src/utils/loadIntegrations/rules/deviceEnablement/deviceEnablement.js","../src/utils/loadIntegrations/rules/disableThirdParty/disableThirdParty.js","../src/utils/loadIntegrations/rules/enableThirdParty/enableThirdParty.js","../src/utils/loadIntegrations/rules/protocol/protocol.js","../src/utils/loadIntegrations/rules/resetCustom/resetCustom.js","../src/utils/loadAttrs/loadAttrs.js","../src/utils/loadIntegrations/loadIntegrations.js","../src/content/modifier.js","../src/events/event-emitter.js","../src/events/invoke-once-event-emitter.js","../src/utils/get-dealership-data.js","../src/utils/payments.js","../src/utils/populate-edit-sites.js","../src/events/event-emitters.js","../src/events/emitters/page-load-v1.js","../src/events/emitters/dealership-info-v1.js","../src/events/emitters/vehicle-events/vehicle-data-updated-v1.js","../src/events/emitters/vehicle-events/vehicle-shown-v1.js","../src/utils/item-lists.js","../src/utils/get-jwts.js","../src/utils/index.js","../src/utils/unlock-pricing.js","../src/api.js","../src/create/index.js","../src/content/index.js","../src/events/listeners.js","../src/load/listeners.js"],"sourcesContent":["export const normalizeIntegrationId = id => {\n\tlet normalizedId = id;\n\tnormalizedId = normalizedId.replace(/^(tps-)/, '');\n\tnormalizedId = normalizedId.replace(/^(cst-parse-)/, '');\n\tnormalizedId = normalizedId.replace(/^(cst-)/, '');\n\tnormalizedId = normalizedId.replace(/^(cw-)/, '');\n\treturn normalizedId;\n};\n\nexport const normalizeIntegrationType = id => {\n\tif (!id) {\n\t\treturn 'Undefined';\n\t}\n\n\tconst integrationTypes = [\n\t\t'Web Integration API',\n\t\t'Third Party Services API Full',\n\t\t'Third Party Services API Compatible',\n\t\t'Third Party Services API Hybrid',\n\t\t'Third Party Services Velocity',\n\t\t'Custom Work (cms-sites)'\n\t];\n\n\t// If the ID has already been normalized, just return it.\n\tif (integrationTypes.includes(id)) {\n\t\treturn id;\n\t}\n\n\tif (id.toLowerCase() === 'wise') {\n\t\treturn integrationTypes[0];\n\t} else if (id.toLowerCase() === 'api') {\n\t\treturn integrationTypes[1];\n\t} else if (id.toLowerCase() === 'api_compatible') {\n\t\treturn integrationTypes[2];\n\t} else if (id.toLowerCase() === 'hybrid' || id.startsWith('tps')) {\n\t\treturn integrationTypes[3];\n\t} else if (id.toLowerCase() === 'legacy') {\n\t\treturn integrationTypes[4];\n\t} else if (\n\t\tid.toLowerCase() === 'custom' ||\n\t\tid.startsWith('cw') ||\n\t\tid.startsWith('cst')\n\t) {\n\t\treturn integrationTypes[5];\n\t}\n\n\treturn 'Undefined';\n};\n","export const convertStringToObject = obj => {\n\tconst output = obj\n\t\t.replace('{', '')\n\t\t.replace('}', '')\n\t\t.split(',')\n\t\t.map(keyVal => {\n\t\t\treturn keyVal.split('=').map(_ => _.trim());\n\t\t})\n\t\t.reduce((acc, [key, val]) => {\n\t\t\tacc[key] = val;\n\t\t\treturn acc;\n\t\t}, {});\n\treturn output;\n};\n\nexport const convertStringToArray = str => {\n\tconst re = /[[\\]\\s]/gi;\n\treturn str.replace(re, '').split(',');\n};\n\nexport const convertFormattedPriceToInt = value => {\n\tif (!value || value === '0' || value === 'PLEASE_CALL') {\n\t\treturn 0;\n\t}\n\treturn (\n\t\tparseInt(\n\t\t\tvalue\n\t\t\t\t.replace(' ', '')\n\t\t\t\t.replace(' ', '')\n\t\t\t\t.replace('$', '')\n\t\t\t\t.replace(',', '')\n\t\t\t\t.trim(),\n\t\t\t10\n\t\t) || 0\n\t);\n};\n\nexport const titleCase = (inputStr, delimiter = ' ') => {\n\tlet str = inputStr.toLowerCase();\n\tstr = str.split(delimiter);\n\tfor (let i = 0; i < str.length; i++) {\n\t\tstr[i] = str[i].charAt(0).toUpperCase() + str[i].slice(1);\n\t}\n\treturn str.join(' ');\n};\n","export const DATA_LOCATION = 'data-location';\nexport const INSERT = 'Insert';\nexport const INSERT_CTA = 'Insert Call To Action';\nexport const INSERT_MENU_CONTENT = 'Insert Menu Content';\nexport const MODIFY_CTA = 'Modify Call To Action';\nexport const MODIFY_LINKS = 'Modify Links On Page';\nexport const PRIMARY_BANNER = 'primary-banner';\nexport const RESTRICTIVELY_MODIFY_CTA = 'Restrictively Modify Call To Action';\nexport const UPDATE = 'Update';\n\nexport const VEHICLE_BADGE = 'vehicle-badge';\nexport const VEHICLE_CTAS = 'vehicle-ctas';\nexport const VEHICLE_MEDIA = 'vehicle-media';\nexport const VEHICLE_PAYMENTS = 'vehicle-payments';\nexport const VEHICLE_PRICING = 'vehicle-pricing';\n\nexport const VEHICLE_BADGE_CUSTOM = `${VEHICLE_BADGE}-custom`;\nexport const VEHICLE_CTAS_CUSTOM = `${VEHICLE_CTAS}-custom`;\nexport const VEHICLE_MEDIA_CUSTOM = `${VEHICLE_MEDIA}-custom`;\nexport const VEHICLE_PAYMENTS_CUSTOM = `${VEHICLE_PAYMENTS}-custom`;\nexport const VEHICLE_PRICING_CUSTOM = `${VEHICLE_PRICING}-custom`;\n\n// List of integrations allowed to use the primary placeholder insert location on the SRP.\nexport const PRIMARY_PLACEHOLDER_INTEGRATIONS = ['mywallet', 'toyota-smartpath-banners'];\n\nexport const ALLOWED_SALES_INTEGRATIONS = ['cox-dr-sales-checkin'];\n","const isMenuOpen = () => {\n\treturn document.querySelector('.ddc-document')?.classList?.contains('active');\n};\n\nconst waitForElement = selector => {\n\treturn new Promise(resolve => {\n\t\tconst checkElement = () => {\n\t\t\tconst element = document.querySelector(selector);\n\t\t\tif (element) {\n\t\t\t\tresolve(element);\n\t\t\t} else {\n\t\t\t\twindow.requestAnimationFrame(checkElement);\n\t\t\t}\n\t\t};\n\t\tcheckElement();\n\t});\n};\n\n/**\n *\n * @param {function} callback\n * @returns\n */\nexport const onLdClientReady = async callback => {\n\tif (!window.ldClient) {\n\t\tdocument.addEventListener('LDClientReady', callback);\n\t} else {\n\t\tawait window.ldClient.waitUntilReady();\n\t\tcallback();\n\t}\n};\n\n/**\n *\n * @param {boolean} eventResolved\n * @param {string} eventName\n * @returns\n */\nexport const waitForEvent = (eventResolved, eventName) => {\n\treturn new Promise(resolve => {\n\t\tif (eventResolved) {\n\t\t\tresolve(eventResolved);\n\t\t} else {\n\t\t\twindow.addEventListener(\n\t\t\t\teventName,\n\t\t\t\tdata => {\n\t\t\t\t\tresolve(data);\n\t\t\t\t},\n\t\t\t\t{ once: true }\n\t\t\t);\n\t\t}\n\t});\n};\n\nexport const waitForMenu = () => {\n\tconst menuOpenEventName = 'mobile-navbar/open';\n\tconst targetElement = '[data-location~=\"primary-menu\"]';\n\n\treturn new Promise(resolve => {\n\t\tif (isMenuOpen) {\n\t\t\twaitForElement(targetElement)\n\t\t\t\t.then(() => resolve(true))\n\t\t\t\t.catch(() => resolve(false));\n\t\t} else {\n\t\t\tconst handleMenuOpenEvent = async () => {\n\t\t\t\tawait waitForElement(targetElement)\n\t\t\t\t\t.then(() => {\n\t\t\t\t\t\tresolve(true);\n\t\t\t\t\t\twindow.DDC?.pubsub?.unsubscribe(menuOpenEventName);\n\t\t\t\t\t})\n\t\t\t\t\t.catch(() => resolve(false));\n\t\t\t};\n\n\t\t\twindow.DDC?.pubsub?.subscribe(menuOpenEventName, handleMenuOpenEvent);\n\t\t}\n\t});\n};\n\nexport const isDocumentReady = () => {\n\treturn new Promise(resolve => {\n\t\tif (document.readyState !== 'loading') {\n\t\t\tresolve();\n\t\t} else {\n\t\t\tdocument.addEventListener('DOMContentLoaded', resolve, { once: true });\n\t\t}\n\t});\n};\n\n/**\n *\n * @returns {Promise}\n */\nexport const isWIAPILoaded = async () => {\n\treturn waitForEvent(\n\t\twindow.DDC?.PrivateAPI?.integrationsLoaded,\n\t\t'WIAPILoaded'\n\t);\n};\n\nexport const waitForObject = async (objectPath, interval = 50, timeout = 5000) => {\n\treturn new Promise((resolve, reject) => {\n\t\tlet checkObject;\n\t\tconst timeoutHandler = setTimeout(() => {\n\t\t\tclearInterval(checkObject);\n\t\t\treject(new Error(`Timed out after ${timeout}ms waiting for ${objectPath} to become available`));\n\t\t}, timeout);\n\n\t\tcheckObject = setInterval(() => {\n\t\t\tconst parts = objectPath.split('.');\n\t\t\tlet current = window;\n\t\t\tconst objectExists = parts.every(part => {\n\t\t\t\tif (current[part] === undefined) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\tcurrent = current[part];\n\t\t\t\treturn true;\n\t\t\t});\n\t\t\tif (!objectExists) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tclearInterval(checkObject);\n\t\t\tclearTimeout(timeoutHandler);\n\t\t\tresolve(true);\n\t\t}, interval);\n\t});\n};\n","import {\n\tnormalizeIntegrationId,\n\tnormalizeIntegrationType\n} from '../utils/normalize-id';\n\nimport { titleCase } from '../utils/data-formatters';\n\nimport { DATA_LOCATION } from '../edit/constants';\nimport { waitForObject } from '../utils/wait-for';\n\nexport const getPixallVisitorId = async () => {\n\t// Try to get visitorId from 'pxa_id' cookie if it's available.\n\tconst visitorId = window.Cookies.get('pxa_id');\n\tif (visitorId) {\n\t\treturn visitorId;\n\t}\n\n\t// Ensure Pixall is available before getting the Visitor ID.\n\tawait waitForObject('Pixall');\n\t\n\t// If no cookie, check if window.Pixall is available and retrieve the value from window.Pixall.getVisitorId()\n\tif (window.Pixall && typeof window.Pixall.getVisitorId !== 'undefined') {\n\t\treturn window.Pixall.getVisitorId();\n\t}\n\n\t// If still not found, return an error\n\treturn new Error('No Pixall visitorId found');\n}\n\nconst samplePercent = 5;\n\nconst pageInfo = () => {\n\tconst {\n\t\taccountId: account = '', // accountId is a NR reserved keyword\n\t\tsiteId = '',\n\t\tdefaultDomain = ''\n\t} = window.DDC.siteSettings;\n\n\tconst {\n\t\tpageInfo: { pageName = '', pagePath = '' },\n\t\tattributes: { locale = '' }\n\t} = window.DDC.dataLayer.page;\n\n\treturn {\n\t\taccount,\n\t\tsiteId,\n\t\tdefaultDomain,\n\t\tpageName,\n\t\tpagePath,\n\t\tlocale\n\t};\n};\n\nexport const trackAPIMethods = (init, payload) => {\n\tif (Math.random() * 100 <= samplePercent) {\n\t\tif (window.newrelic) {\n\t\t\tconst nrPayload = payload;\n\t\t\tif (nrPayload.status !== 'Failed') {\n\t\t\t\tnrPayload.status = 'Success';\n\t\t\t}\n\t\t\twindow.newrelic.addPageAction('WebIntegrationEvent', {\n\t\t\t\tintegrationId: normalizeIntegrationId(init.integrationId),\n\t\t\t\tintegrationType: normalizeIntegrationType(init.integrationType),\n\t\t\t\tintegrationCategory: init.integrationCategory || '',\n\t\t\t\tplacesInventoryContent: init.placesInventoryContent || false,\n\t\t\t\t...nrPayload,\n\t\t\t\t...pageInfo()\n\t\t\t});\n\t\t}\n\t}\n};\n\nexport const trackClick = (init, event) => {\n\tif (!(init || event || window?.DDC?.fireTrackingEvent)) {\n\t\treturn;\n\t}\n\n\tconst { srcElement } = event;\n\n\tlet targetEl = srcElement;\n\n\tif (srcElement.getAttribute('alt') || srcElement.getAttribute('title')) {\n\t\ttargetEl = srcElement;\n\t} else if (srcElement.closest('button')) {\n\t\ttargetEl = srcElement.closest('button');\n\t} else if (srcElement.closest('a')) {\n\t\ttargetEl = srcElement.closest('a');\n\t}\n\n\tlet dataLocation = targetEl.closest(`[${DATA_LOCATION}]`)\n\t\t? targetEl.closest(`[${DATA_LOCATION}]`).getAttribute(DATA_LOCATION)\n\t\t: 'Unknown Location';\n\n\t// Override page-footer with overlay-content for tracking purposes.\n\tif (dataLocation === 'page-footer') {\n\t\tdataLocation = 'overlay-content';\n\t}\n\n\tconst element =\n\t\ttargetEl.getAttribute('aria-label') ||\n\t\t(targetEl.textContent && ['BUTTON', 'A'].includes(targetEl.tagName))\n\t\t\t? targetEl.textContent\n\t\t\t: null ||\n\t\t\t targetEl.getAttribute('alt') ||\n\t\t\t targetEl.getAttribute('title') ||\n\t\t\t 'Third Party Content';\n\n\tconst vehicleUuid = targetEl.closest('.vehicle-card')?.getAttribute('data-uuid');\n\n\tconst trackingData = {\n\t\tevent: 'thirdPartyUserEvent',\n\t\tproduct: init.integrationId,\n\t\tstep: titleCase(dataLocation.split(' ')[0], '-'),\n\t\telement,\n\t\taction: 'clicked',\n\t\tresult: 'success',\n\t\tvehicleUuid // will be undefined if the clicked element is not within a vehicle card\n\t};\n\n\twindow.DDC.fireTrackingEvent(trackingData);\n};\n","export const setCookie = (name, value, days) => {\n\tlet expires;\n\tif (days) {\n\t\tconst date = new Date();\n\t\tdate.setTime(date.getTime() + days * 24 * 60 * 60 * 1000);\n\t\texpires = `; expires=${date.toGMTString()}`;\n\t} else {\n\t\texpires = '';\n\t}\n\tdocument.cookie = `${name}=${value}${expires}; path=/`;\n};\n\nexport const getCookie = name => {\n\tconst nameEQ = `${name}=`;\n\tconst ca = document.cookie.split(';');\n\tfor (let i = 0; i < ca.length; i++) {\n\t\tlet c = ca[i];\n\t\twhile (c.charAt(0) === ' ') {\n\t\t\tc = c.substring(1, c.length);\n\t\t}\n\t\tif (c.indexOf(nameEQ) === 0) {\n\t\t\treturn c.substring(nameEQ.length, c.length);\n\t\t}\n\t}\n\treturn null;\n};\n","import { trackAPIMethods } from '../tracking';\nimport { getCookie } from './cookies';\n\nlet currentPageData;\n\nconst hasDataLayer = () => {\n\treturn (\n\t\tObject.keys(window.DDC.dataLayer).length &&\n\t\tObject.keys(window.DDC.siteSettings).length\n\t);\n};\n\nexport const getPageMetaData = async () => {\n\tif (!hasDataLayer()) {\n\t\tthrow new Error(\n\t\t\t'DDC DataLayer is not defined. Aborting Web Integration API.'\n\t\t);\n\t}\n\n\tif (!currentPageData) {\n\t\tconst { pageInfo, attributes } = window.DDC.dataLayer.page;\n\t\tconst { design, franchises } = window.DDC.dataLayer.site;\n\t\tconst { siteSettings } = window.DDC;\n\t\tconst searchPage = pageInfo?.isVlp;\n\t\tconst detailPage = pageInfo?.isVdp;\n\t\tconst indexPage = pageInfo?.isHomepage;\n\n\t\tcurrentPageData = {\n\t\t\taccountId: siteSettings.accountId || '',\n\t\t\tsiteId: siteSettings.siteId || '',\n\t\t\tdefaultDomain: siteSettings.defaultDomain || '',\n\t\t\tindexPage,\n\t\t\tsearchPage,\n\t\t\tdetailPage,\n\t\t\tpageName: pageInfo.pageName || '',\n\t\t\tlayoutType: attributes.layoutType || '',\n\t\t\tlocale: attributes.locale || '',\n\t\t\tpageUrl: pageInfo?.pageUrl || '',\n\t\t\tdesign,\n\t\t\tfranchises,\n\t\t\tga_clientId: getCookie('_ga') || '',\n\t\t\tga_visitorId: getCookie('_gid') || ''\n\t\t};\n\t}\n\n\treturn currentPageData;\n};\n\nexport const getPageData = async (init) => {\n\tconst pageData = await getPageMetaData();\n\n\ttrackAPIMethods(init, {\n\t\tmethodType: 'getPageData',\n\t\tstatus: typeof pageData === 'object' ? 'Success' : 'Failed'\n\t});\n\n\treturn pageData;\n};\n","const fetchPriorityFlagJS = window?.DDC?.Flags['wiapi-fetch-priority-js'];\nconst fetchPriorityFlagCSS = window?.DDC?.Flags['wiapi-fetch-priority-css'];\nconst inlinePrimaryBannerFlag =\n\twindow?.DDC?.Flags['wiapi-inline-primary-banner'];\nconst fetchPriorityJS =\n\tfetchPriorityFlagJS && fetchPriorityFlagJS !== 'false'\n\t\t? fetchPriorityFlagJS\n\t\t: false;\nconst fetchPriorityCSS =\n\tfetchPriorityFlagCSS && fetchPriorityFlagCSS !== 'false'\n\t\t? fetchPriorityFlagCSS\n\t\t: false;\n\nconst inlinePrimaryBanner = inlinePrimaryBannerFlag || false;\nconst onlyCoxIntegrations =\n\twindow?.DDC?.Flags['enabled-wise-tps-integration-list'] || '';\nexport const featureFlags = {\n\tfetchPriorityJS,\n\tfetchPriorityCSS,\n\tinlinePrimaryBanner,\n\tonlyCoxIntegrations\n};\n","import { getPageMetaData } from './get-page-meta-data';\nimport { trackAPIMethods } from '../tracking';\nimport { featureFlags } from './feature-flags';\nimport { waitForObject } from './wait-for';\n\nconst observers = new Set();\n\nexport const clearObservers = () => {\n\tobservers.forEach(observer => {\n\t\tobserver.disconnect();\n\t\tobservers.delete(observer);\n\t});\n};\n\nexport const createUniqueId = () => {\n\tconst s4 = () => {\n\t\treturn Math.floor((1 + Math.random()) * 0x10000)\n\t\t\t.toString(16)\n\t\t\t.substring(1);\n\t};\n\treturn s4() + s4() + s4() + s4();\n};\n\nexport const getHash = str => {\n\tif (!str) {\n\t\treturn 0;\n\t}\n\tlet hash = 0;\n\tlet i;\n\tlet chr;\n\tif (str.length === 0) {\n\t\treturn hash;\n\t}\n\n\tconst normalizedString = str\n\t\t.replace(/key=[0-9a-z%]+/gi, '') // Remove 'key' parameter values.\n\t\t.replace(/[^0-9a-z]/gi, ''); // Remove non-alphanumeric characters to better normalize and de-duplicate the content.\n\n\tfor (i = 0; i < normalizedString.length; i++) {\n\t\tchr = normalizedString.charCodeAt(i);\n\t\thash = (hash << 5) - hash + chr; // eslint-disable-line no-bitwise\n\t\thash |= 0; // eslint-disable-line no-bitwise\n\t}\n\treturn hash;\n};\n\nexport const query = (selector, target) => {\n\tconst scope = target || document;\n\treturn scope.querySelector(selector);\n};\n\nexport const queryAll = (selector, target) => {\n\tconst scope = target || document;\n\treturn Array.from(scope.querySelectorAll(selector));\n};\n\nexport const activateModules = async targetEl => {\n\tif (typeof targetEl.querySelectorAll !== 'function') {\n\t\treturn;\n\t}\n\n\tconst pageData = await getPageMetaData();\n\n\tif (pageData.layoutType === 'desktop') {\n\t\tif (\n\t\t\twindow.DDC?.modules?.dialog &&\n\t\t\t!window.DDC.modules.dialog.active\n\t\t) {\n\t\t\tjQuery(document).trigger('modulesRefresh', {\n\t\t\t\tmodules: {\n\t\t\t\t\tdialog: window.DDC.modules.dialog\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\t// Activate desktop popover if appropriate for inserted content.\n\t\tif (window.DDC.modules && window.DDC.modules.popover) {\n\t\t\tconst toggleTargets = queryAll('[data-toggle=\"popover\"]', targetEl);\n\t\t\ttoggleTargets.forEach(target => {\n\t\t\t\tif (target.getAttribute('data-initialized') !== true) {\n\t\t\t\t\twindow.DDC.modules.popover.load(target);\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t} else if (pageData.layoutType === 'mobile') {\n\t\t// Activate mobile slide-in on 'dialog' elements if appropriate for inserted content.\n\t\tif (typeof window?.DDC?.mobile?.slidein?.init === 'function') {\n\t\t\tconst dialogAppend = queryAll(\n\t\t\t\t'.dialog, [data-toggle=\"popover\"]',\n\t\t\t\ttargetEl\n\t\t\t);\n\t\t\tif (dialogAppend.length > 0) {\n\t\t\t\tdialogAppend.forEach(element => {\n\t\t\t\t\twindow.DDC.mobile.slidein.init(element);\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t}\n};\n\nexport const fetchJson = async (init, url, methodName) => {\n\ttry {\n\t\tconst response = await fetch(url, {\n\t\t\theaders: {\n\t\t\t\tAccept: 'application/json'\n\t\t\t}\n\t\t});\n\t\tif (!response.ok) {\n\t\t\tif (init.integrationId) {\n\t\t\t\ttrackAPIMethods(init, {\n\t\t\t\t\tmethodType: methodName,\n\t\t\t\t\tstatus: 'Failed'\n\t\t\t\t});\n\t\t\t}\n\t\t\tthrow new Error(`Error calling the endpoint at ${url}.`);\n\t\t}\n\t\tif (init.integrationId) {\n\t\t\ttrackAPIMethods(init, {\n\t\t\t\tmethodType: methodName,\n\t\t\t\tstatus: 'Success'\n\t\t\t});\n\t\t}\n\t\tif (response.size === 0) {\n\t\t\treturn {};\n\t\t}\n\t\treturn await response.json();\n\t} catch (error) {\n\t\tthrow new Error(`Error fetching JSON: ${error.message}`);\n\t}\n};\n\nexport const getUrlParams = init => {\n\tif (window.DDC && window.DDC.getUrlParams) {\n\t\tif (init) {\n\t\t\ttrackAPIMethods(init, {\n\t\t\t\tmethodType: 'getUrlParams',\n\t\t\t\tstatus: 'Success'\n\t\t\t});\n\t\t}\n\t\treturn window.DDC.getUrlParams();\n\t}\n\tif (init) {\n\t\ttrackAPIMethods(init, {\n\t\t\tmethodType: 'getUrlParams',\n\t\t\tstatus: 'Failed'\n\t\t});\n\t}\n\treturn null;\n};\n\nexport const getLocalizedContent = content => {\n\tconst locale = window?.DDC?.dataLayer?.page?.attributes?.locale || 'en_US';\n\n\tlet result;\n\tif (typeof content === 'object') {\n\t\tresult = content[locale] ? content[locale] : content.en_US;\n\t} else if (typeof content === 'string') {\n\t\tresult = content;\n\t}\n\treturn result;\n};\n\nconst hasValidInventory = (InvData, dataLayer) => {\n\tconst { pageInfo, inventory } = InvData?.inventory || {};\n\n\treturn (\n\t\tinventory &&\n\t\tpageInfo?.totalCount >= 0 &&\n\t\tdataLayer?.vehicles?.length === inventory.length\n\t);\n};\n\nexport const hasDataBusInventory = async () => {\n\tconst { InvData, dataLayer, PrivateAPI, WS } = window?.DDC;\n\n\tif (!InvData) {\n\t\treturn false;\n\t}\n\n\tconst { srpReady } = InvData;\n\tconst hasWsInvData = WS?.state['ws-inv-data'];\n\n\tif (hasWsInvData && PrivateAPI?.wsInvListingRendered !== true) {\n\t\tawait waitForObject('DDC.PrivateAPI.wsInvListingRendered', 100, 10000);\n\t}\n\n\treturn (\n\t\tInvData &&\n\t\t(!hasWsInvData || srpReady) &&\n\t\thasValidInventory(InvData, dataLayer)\n\t);\n};\n\nexport const hasDataBusFacets = () => {\n\treturn window?.DDC?.InvData?.facets?.facets?.length > 0;\n};\n\nexport const hasLegacyInventory = () => {\n\tconst { InvData, dataLayer } = window.DDC;\n\treturn (\n\t\t!InvData &&\n\t\tdataLayer?.vehicles?.length >= 0 &&\n\t\t!document.querySelector('.inventory-listing-grid .hproduct')\n\t);\n};\n\nexport const hasLegacyGridViewInventory = () => {\n\treturn !!query('.inventory-listing-grid .hproduct');\n};\n\nexport const isVdp = () => {\n\treturn window?.DDC?.dataLayer?.page?.pageInfo?.isVdp;\n};\n\nexport const isSrp = () => {\n\treturn window?.DDC?.dataLayer?.page?.pageInfo?.isVlp;\n};\n\nexport const isNewSrp = () => {\n\treturn isSrp() && window?.DDC?.WS?.state['ws-inv-listing'];\n};\n\nconst inventoryDataStatus = {};\nconst inventoryDataChecker = async type => {\n\tif (!(isSrp() || isVdp())) {\n\t\treturn true;\n\t}\n\n\treturn new Promise(resolve => {\n\t\tlet checker;\n\t\tconst checkForData = async () => {\n\t\t\tlet result;\n\t\t\tif (type === 'inv') {\n\t\t\t\tresult =\n\t\t\t\t\t(await hasDataBusInventory()) ||\n\t\t\t\t\thasLegacyInventory() ||\n\t\t\t\t\thasLegacyGridViewInventory();\n\t\t\t} else if (type === 'facet') {\n\t\t\t\tresult = hasDataBusFacets();\n\t\t\t}\n\n\t\t\tif (result) {\n\t\t\t\tinventoryDataStatus[type] = true;\n\t\t\t\tclearInterval(checker);\n\t\t\t\tresolve(true);\n\t\t\t}\n\t\t};\n\t\tchecker = setInterval(checkForData, 100);\n\t});\n};\n\nexport const hasInventoryData = () => {\n\treturn inventoryDataChecker('inv');\n};\n\nexport const hasFacetData = () => {\n\treturn inventoryDataChecker('facet');\n};\n\nexport const enableInlineBanner = () =>\n\tisNewSrp() && featureFlags.inlinePrimaryBanner;\n","export const eventOptions = {\n\tpassive: true,\n\tonce: true,\n\tcapture: true\n};\n","import { getUrlParams } from '../utils/helpers';\n\nexport const log = (id, ...args) => {\n\tconst ident = typeof id === 'object' ? id.integrationId : id;\n\tif (window?.DDC?.integrationLog) {\n\t\twindow?.DDC?.integrationLog(ident, ...args);\n\t}\n};\n\nexport const isDebugMode = () => {\n\tconst urlParams = getUrlParams();\n\tconst debugMode = urlParams && urlParams._integrationMode === 'debug';\n\treturn debugMode;\n};\n\nexport const isTraceMode = () => {\n\tconst urlParams = getUrlParams();\n\tconst traceMode =\n\t\turlParams &&\n\t\t((isDebugMode() && urlParams._integrationLogLevel === 'trace') ||\n\t\t\turlParams._integrationMode === 'trace');\n\treturn traceMode;\n};\n\nexport const debugMode = isDebugMode();\nexport const traceMode = isTraceMode();\n","import { trackAPIMethods, trackClick } from '../tracking';\nimport { activateModules, getHash } from './helpers';\nimport { eventOptions } from './config';\nimport { log } from '../log';\n\nconst parentTargets = [\n\t'[data-location]',\n\t'.ws-tps-placeholder',\n\t'.ddc-content'\n];\n\nexport const append = (init, targetEl, appendEl) => {\n\t// Make external links have rel=\"nofollow\"\n\tconst appendLinks = appendEl.querySelectorAll\n\t\t? appendEl.querySelectorAll('a')\n\t\t: [];\n\t[appendEl, ...appendLinks].forEach(link => {\n\t\tconst href = link.getAttribute ? link.getAttribute('href') : link.href;\n\t\tif (href && (!href.startsWith('/') || href.startsWith('//'))) {\n\t\t\tlink.setAttribute('rel', 'nofollow');\n\t\t}\n\t});\n\n\tconst hashedContents = getHash(appendEl.outerHTML);\n\n\tconst existingInsert = targetEl\n\t\t.closest('[data-location]')\n\t\t.querySelectorAll(`[data-web-api-unique-hash=\"${hashedContents}\"]`);\n\n\tconst alreadyInserted = existingInsert.length > 0;\n\n\tif (alreadyInserted) {\n\t\tlog(`Already inserted content for ${init.integrationId}. Skipping.`);\n\t\treturn existingInsert;\n\t}\n\n\tappendEl.setAttribute('data-web-api-unique-hash', hashedContents);\n\tappendEl.setAttribute('data-web-api-inserted', true);\n\n\t// Track user clicks on inserted content\n\tif (appendEl.addEventListener) {\n\t\tappendEl.addEventListener(\n\t\t\t'click',\n\t\t\tdata => {\n\t\t\t\ttrackClick(init, data);\n\t\t\t},\n\t\t\teventOptions\n\t\t);\n\t}\n\n\t// Append the desired content to the target location.\n\ttargetEl.appendChild(appendEl);\n\n\tif (targetEl.classList) {\n\t\ttargetEl.classList.remove('hide', 'hidden');\n\t}\n\n\t// Activate DDC JavaScript modules which may be relevant to this element.\n\tactivateModules(targetEl);\n\n\tparentTargets.forEach(parentContainer => {\n\t\tconst parent = targetEl.closest(parentContainer);\n\n\t\tif (!parent) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Center primary-banner images\n\t\tif (parent.getAttribute('data-location') === 'primary-banner') {\n\t\t\tif (appendEl.querySelector('img')) {\n\t\t\t\tappendEl.querySelector('img').classList.add('align-center');\n\t\t\t}\n\t\t}\n\n\t\t// Clear the contents of the media container before inserting new contents\n\t\tif (\n\t\t\tparent.outerHTML &&\n\t\t\tparent.outerHTML.includes('vehicle-media-container')\n\t\t) {\n\t\t\tparent.innerHTML = '';\n\t\t\tparent.appendChild(targetEl);\n\t\t}\n\n\t\t// Un-hide the container this is inside of so we can see the appended contents.\n\t\tparent.classList.remove('hide', 'hidden');\n\t});\n\n\ttrackAPIMethods(init, {\n\t\tmethodType: 'Append',\n\t\tappendElement: appendEl.tagName\n\t});\n\n\treturn targetEl;\n};\n","import { log, traceMode } from './log';\n\nexport class Location {\n\tconstructor(name) {\n\t\tthis.name = name;\n\t\tthis.getElements = this.getElements.bind(this);\n\t\tthis.getMeta = this.getMeta.bind(this);\n\t\tthis.isReady = this.isReady.bind(this);\n\t}\n\n\tasync isReady() {\n\t\treturn true;\n\t}\n\n\tasync getElements(vehicle) {\n\t\tconst selector = `[data-location~=\"${this.name}\"]`;\n\t\tconst itemSelector = vehicle?.uuid\n\t\t\t? document.querySelector(`[data-uuid=\"${vehicle.uuid}\"]`)\n\t\t\t: document;\n\n\t\tif (!itemSelector) {\n\t\t\treturn [];\n\t\t}\n\n\t\tconst elems = itemSelector.querySelectorAll(selector);\n\n\t\tif (elems.length === 0 && traceMode) {\n\t\t\tlog(\n\t\t\t\t'WARNING',\n\t\t\t\t`The '${this.name}' location was targeted on this page but does not exist.`\n\t\t\t);\n\t\t}\n\n\t\treturn elems;\n\t}\n\n\tasync getConfig() {\n\t\treturn {\n\t\t\telementType: 'div'\n\t\t};\n\t}\n\n\tprepareLocation() {\n\t\treturn true;\n\t}\n\n\tgetMeta(_elem) {\n\t\treturn null;\n\t}\n}\n","import { Location } from '../../location';\nimport { getPageMetaData } from '../../utils/get-page-meta-data';\n\nexport class PageLocation extends Location {\n\tconstructor(\n\t\tname,\n\t\t{\n\t\t\tclasses = '',\n\t\t\telementType = 'div',\n\t\t\tsingleLocation = false,\n\t\t\tclearContent = false,\n\t\t\tplacement = 'default'\n\t\t} = {}\n\t) {\n\t\tsuper(name);\n\n\t\tthis.options = {\n\t\t\tclasses,\n\t\t\telementType,\n\t\t\tsingleLocation,\n\t\t\tclearContent,\n\t\t\tplacement\n\t\t};\n\t}\n\n\tasync getConfig() {\n\t\treturn this.options;\n\t}\n\n\tgetMeta() {\n\t\treturn getPageMetaData();\n\t}\n}\n","import {\n\tconvertStringToObject,\n\tconvertStringToArray,\n\tconvertFormattedPriceToInt\n} from '../data-formatters';\nimport { getPageMetaData } from '../get-page-meta-data';\nimport {\n\thasInventoryData,\n\thasLegacyInventory,\n\thasDataBusInventory,\n\thasLegacyGridViewInventory,\n\tquery,\n\tqueryAll\n} from '../helpers';\nimport { log } from '../../log';\nimport { trackAPIMethods } from '../../tracking';\n\n// Set up pricing fields.\nconst allowedPriceFields = [\n\t'askingPrice',\n\t'internetPrice',\n\t'msrp',\n\t'oemPriceMapHighMSRP',\n\t'retailValue',\n\t'salePrice'\n];\n\nconst allowedVehicleAttributes = [\n\t'accountId',\n\t'address',\n\t'autodataCaId',\n\t'bodyStyle',\n\t'certified',\n\t'chromeId',\n\t'classification',\n\t'dealerCodes',\n\t'doors',\n\t'driveLine',\n\t'engine',\n\t'engineSize',\n\t'exteriorColor',\n\t'deliveryDateRange',\n\t'fuelType',\n\t'images',\n\t'indexPosition',\n\t'interiorColor',\n\t'inventoryDate',\n\t'inventoryType',\n\t'make',\n\t'model',\n\t'modelCode',\n\t'odometer',\n\t'optionCodes',\n\t'packageCode',\n\t'priorityType',\n\t'stockNumber',\n\t'transmission',\n\t'trim',\n\t'uuid',\n\t'vin'\n];\n\nconst isHiddenElement = el => {\n\treturn el.offsetParent === null;\n};\n\nconst getInventoryType = (type, newOrUsed) => {\n\tif (newOrUsed) {\n\t\treturn newOrUsed;\n\t}\n\n\tlet inventoryType = type.toLowerCase();\n\n\tif (\n\t\tinventoryType === 'certified' ||\n\t\tinventoryType.includes('pre') ||\n\t\tinventoryType.includes(\"d'occasion\") ||\n\t\tinventoryType === 'usado'\n\t) {\n\t\tinventoryType = 'used';\n\t} else if (inventoryType.includes('neuf') || inventoryType === 'nuevo') {\n\t\tinventoryType = 'new';\n\t}\n\n\treturn inventoryType;\n};\n\nconst getIsCertified = (type, certified) => {\n\treturn (\n\t\ttype === 'certified' || certified === 'true' || certified === true || false\n\t);\n};\n\nconst addFields = (vehicleObject, data, extraFields=[]) => {\n\tconst vehicle = vehicleObject;\n\n\t// Use a default of 0 if no value is set.\n\tvehicle.highestPrice = vehicle.highestPrice || 0;\n\tvehicle.startingPrice = vehicle.startingPrice || 0;\n\tvehicle.finalPrice = vehicle.finalPrice || 0;\n\n\tallowedPriceFields.forEach(priceField => {\n\t\tconst field = priceField.toLowerCase();\n\t\tconst value = data[field] || data[priceField] || 0;\n\t\tconst formattedPrice = convertFormattedPriceToInt(value);\n\t\tvehicle[priceField] = formattedPrice;\n\t\tif (formattedPrice > vehicle.highestPrice) {\n\t\t\tvehicle.highestPrice = formattedPrice;\n\t\t}\n\t});\n\n\tif (vehicle.startingPrice > vehicle.highestPrice) {\n\t\tvehicle.highestPrice = vehicle.startingPrice;\n\t}\n\n\tif (vehicle.finalPrice > vehicle.highestPrice) {\n\t\tvehicle.highestPrice = vehicle.finalPrice;\n\t}\n\n\tif (vehicle.finalPrice === 0) {\n\t\tif (vehicle.startingPrice > 0) {\n\t\t\tvehicle.finalPrice = vehicle.startingPrice;\n\t\t} else if (vehicle.highestPrice > 0) {\n\t\t\tvehicle.finalPrice = vehicle.highestPrice;\n\t\t}\n\t}\n\n\t// If there's no starting price but there is a final price, set the starting price as the same value so it will be defined.\n\tif (!vehicle.startingPrice && vehicle.finalPrice) {\n\t\tvehicle.startingPrice = vehicle.finalPrice;\n\t}\n\n\t// Add extra fields\n\treturn extraFields.reduce((resVehicle, key) => {\n\t\treturn {\n\t\t\t...resVehicle,\n\t\t\t[key]: data[key] === false ? false : (data[key] || '')\n\t\t};\n\t}, vehicle);\n};\n\nconst formatDataBusInventory = async (extraFields) => {\n\tconst dataLayerVehicles = window.DDC.dataLayer.vehicles || [];\n\tconst dataBusVehicles = window.DDC?.InvData?.inventory\n\t\t? window.DDC.InvData.inventory.inventory\n\t\t: [];\n\n\tconst allowedFields = [\n\t\t...allowedVehicleAttributes,\n\t\t...extraFields\n\t];\n\n\tconst renamedAttributes = {\n\t\tcityFuelEfficiency: 'cityFuelEconomy',\n\t\thighwayFuelEfficiency: 'highwayFuelEconomy'\n\t};\n\n\treturn dataLayerVehicles.map(vehicle => {\n\t\t// Set up a few default fields\n\t\tconst vehicleObject = {\n\t\t\thighestPrice: 0,\n\t\t\tstartingPrice: 0,\n\t\t\tyear: vehicle.modelYear\n\t\t};\n\n\t\t// Add whitelisted fields if available on the vehicle object.\n\t\tallowedFields.forEach(field => {\n\t\t\tif (vehicle[field] !== undefined && !vehicleObject[field]) {\n\t\t\t\tconst invType = vehicle.inventoryType;\n\t\t\t\tif (field === 'certified') {\n\t\t\t\t\tvehicleObject[field] = getIsCertified(invType, vehicle[field]);\n\t\t\t\t} else if (field === 'inventoryType') {\n\t\t\t\t\tvehicleObject[field] = getInventoryType(invType, vehicle.newOrUsed);\n\t\t\t\t} else {\n\t\t\t\t\tvehicleObject[field] = vehicle[field];\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\t// Status\n\t\tvehicleObject.status = vehicle.status\n\t\t\t? vehicle.status.replace(/ /g, '_').toLowerCase()\n\t\t\t: '';\n\n\t\t// Add fields that we want to rename as we place onto the object.\n\t\tObject.entries(renamedAttributes).forEach(mapping => {\n\t\t\tif (vehicle[mapping[0]]) {\n\t\t\t\tvehicleObject[mapping[1]] = vehicle[mapping[0]];\n\t\t\t}\n\t\t});\n\n\t\tif (vehicle.link !== undefined) {\n\t\t\tvehicleObject.link = `${window.location.origin}${vehicle.link}`;\n\t\t}\n\n\t\t// Normalize Option Codes\n\t\tif (\n\t\t\tvehicleObject.optionCodes === undefined ||\n\t\t\t(vehicleObject.optionCodes.length === 1 &&\n\t\t\t\tvehicleObject.optionCodes[0] === '')\n\t\t) {\n\t\t\tvehicleObject.optionCodes = [];\n\t\t}\n\n\t\t// Simplify image array to a single image URL to save browser memory.\n\t\tif (\n\t\t\tvehicleObject.images &&\n\t\t\tvehicleObject.images.length > 0 &&\n\t\t\tvehicleObject.images[0].uri\n\t\t) {\n\t\t\tvehicleObject.images = [vehicleObject.images[0].uri];\n\t\t}\n\n\t\tconst [dbVehicle] = dataBusVehicles.filter(item => {\n\t\t\tif (item.uuid === vehicleObject.uuid) {\n\t\t\t\treturn item;\n\t\t\t}\n\t\t\treturn false;\n\t\t});\n\n\t\tconst pricing = dbVehicle?.pricing?.dPrice || dbVehicle?.pricing?.dprice;\n\n\t\tlet startingPriceFound = false;\n\n\t\tif (dbVehicle && pricing) {\n\t\t\tObject.entries(pricing).forEach(price => {\n\t\t\t\tif (price.length < 2) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tconst priceObject = price[1];\n\t\t\t\tconst priceField = priceObject.typeClass;\n\t\t\t\tconst allowedPriceField =\n\t\t\t\t\tpriceField &&\n\t\t\t\t\t(allowedPriceFields.includes(priceField) || priceObject.isFinalPrice);\n\t\t\t\tif (allowedPriceField) {\n\t\t\t\t\tconst value =\n\t\t\t\t\t\tpriceObject.value === 'PLEASE_CALL'\n\t\t\t\t\t\t\t? 0\n\t\t\t\t\t\t\t: convertFormattedPriceToInt(priceObject.value);\n\n\t\t\t\t\t// Set this specific price field on the object.\n\t\t\t\t\tif (value > 0) {\n\t\t\t\t\t\t// Set the most expensive price as `highestPrice`\n\t\t\t\t\t\tif (value > vehicleObject.highestPrice) {\n\t\t\t\t\t\t\tvehicleObject.highestPrice = value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (allowedPriceFields.includes(priceField)) {\n\t\t\t\t\t\t\tvehicleObject[priceField] = value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (priceObject.isFinalPrice) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tvehicleObject.highestPrice > 0 &&\n\t\t\t\t\t\t\t\tvehicleObject.highestPrice / 3 < value\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tvehicleObject.finalPrice = value;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (startingPriceFound === false) {\n\t\t\t\t\t\t\tvehicleObject.startingPrice = value;\n\t\t\t\t\t\t\tstartingPriceFound = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t});\n\t\t\tif (!vehicleObject.finalPrice && vehicleObject.startingPrice) {\n\t\t\t\tvehicleObject.finalPrice = vehicleObject.startingPrice;\n\t\t\t}\n\t\t}\n\n\t\treturn addFields(vehicleObject, vehicle, extraFields);\n\t});\n};\n\nconst formatLegacyDataLayerInventory = async (extraFields) => {\n\tconst pageMetaData = await getPageMetaData();\n\n\tif (!window.DDC.dataLayer) {\n\t\treturn [];\n\t}\n\n\tconst dlVehicles = window.DDC.dataLayer.vehicles || [];\n\n\tconst vehicles =\n\t\tpageMetaData.detailPage && dlVehicles.length > 0\n\t\t\t? [dlVehicles[0]] // Single VDP vehicle\n\t\t\t: queryAll('[data-uuid]'); // List of legacy SRP vehicles\n\n\t// Set up ridiculously large selector to find the correct final price.\n\tconst allowedPriceClasses = [\n\t\t...allowedPriceFields,\n\t\t'oemPriceMapHighMSRP',\n\t\t'final-price',\n\t\t'stackedFinal'\n\t];\n\n\tlet priceClasses = [];\n\tallowedPriceClasses.forEach(priceClass => {\n\t\tpriceClasses.push(`.${priceClass} .value`);\n\t\tpriceClasses.push(`.${priceClass} .price`);\n\t\tpriceClasses.push(`.${priceClass} .price-value`);\n\t});\n\tpriceClasses.push('.final-price .price');\n\tpriceClasses = priceClasses.join(', ');\n\n\treturn vehicles.map(vehicle => {\n\t\tconst images = [];\n\n\t\tlet finalPrice = 0;\n\t\tlet link;\n\t\tlet prices;\n\t\tlet startingPrice = 0;\n\t\tlet { uuid } = vehicle;\n\t\tlet vehicleData;\n\n\t\tif (pageMetaData.detailPage) {\n\t\t\tvehicleData = query('.ws-detailed-pricing, .inventory-detail-pricing');\n\t\t\tlink = `${window.location.origin}${window.location.pathname}`;\n\t\t} else if (pageMetaData.searchPage && query('.hproduct', vehicle)) {\n\t\t\tvehicleData = query('.hproduct', vehicle);\n\n\t\t\tuuid = vehicle.getAttribute('data-uuid');\n\n\t\t\tconst url = query('.url', vehicleData);\n\t\t\tif (url && url.href) {\n\t\t\t\tlink = url.href;\n\t\t\t}\n\t\t}\n\n\t\tif (vehicleData && typeof vehicleData.dealerCodes === 'string') {\n\t\t\tvehicleData.dealerCodes = JSON.parse(vehicleData.dealerCodes);\n\t\t}\n\n\t\tlet dlVehicle;\n\t\tif (dlVehicles.length > 0) {\n\t\t\t[dlVehicle] = dlVehicles.filter(el => {\n\t\t\t\tif (el.uuid === uuid) {\n\t\t\t\t\treturn el;\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t});\n\n\t\t\tif (!dlVehicle) {\n\t\t\t\tlog(\n\t\t\t\t\t'INFO',\n\t\t\t\t\t`No data found in data layer for vehicle UUID ${uuid}. Skipping.`\n\t\t\t\t);\n\t\t\t\treturn false;\n\t\t\t}\n\t\t} else if (vehicleData) {\n\t\t\tdlVehicle = vehicleData;\n\t\t}\n\n\t\tif (dlVehicle.address && dlVehicle.accountName) {\n\t\t\tdlVehicle.address.accountName = dlVehicle.accountName;\n\t\t}\n\n\t\t// Simplify image data to just the first image URL\n\t\tif (dlVehicle.images && dlVehicle.images.length > 0) {\n\t\t\timages.push(dlVehicle.images[0].uri);\n\t\t}\n\n\t\tif (pageMetaData.detailPage) {\n\t\t\tprices = queryAll(priceClasses);\n\t\t} else if (pageMetaData.searchPage && vehicleData) {\n\t\t\tprices = queryAll(priceClasses, vehicleData);\n\t\t}\n\n\t\tlet startingPriceFound = false;\n\t\tif (prices.length > 0) {\n\t\t\tprices.forEach(price => {\n\t\t\t\tconst parentClasses =\n\t\t\t\t\tprice.parentElement && price.parentElement.classList.length > 0\n\t\t\t\t\t\t? Array.from(price.parentElement.classList)\n\t\t\t\t\t\t: [];\n\n\t\t\t\tparentClasses.forEach(parentClass => {\n\t\t\t\t\tif (allowedPriceClasses.includes(parentClass)) {\n\t\t\t\t\t\tconst newPrice = convertFormattedPriceToInt(price.innerText);\n\n\t\t\t\t\t\tif (newPrice && !startingPriceFound) {\n\t\t\t\t\t\t\tstartingPrice = newPrice;\n\t\t\t\t\t\t\tstartingPriceFound = true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t/*\n\t\t\t\t\t\t\tI don't feel good about `isProbablyNotAFeeOrDiscount`, but I can't think of a better way to solve for this issue\n\t\t\t\t\t\t\twithout a great deal of work and probably introducing new bugs to various parts of our system.\n\n\t\t\t\t\t\t\tThis hack is necessary to support bizarre pricing usage on sites like these:\n\n\t\t\t\t\t\t\thttps://www.ramseychryslerjeepdodge.com/\n\t\t\t\t\t\t\thttps://www.echelonfordinc.com/used-inventory/index.htm\n\t\t\t\t\t\t\thttps://www.southwestmotors.com/\n\n\t\t\t\t\t\t\tIn some cases, a pricing field like `wholesalePrice` or `retailValue` is used as a Dealer Fee or Discount.\n\t\t\t\t\t\t\tSometimes, these discounts are shown last in the pricing stack and are therefore tagged with a final-price\n\t\t\t\t\t\t\tclass because the last 'price' shown is assumed to be 'final-price'.\n\n\t\t\t\t\t\t\tSo here, we horribly test to see if the price we are considering using as final-price is not less than\n\t\t\t\t\t\t\tone third of the value of the last selected price. This helps to avoid situations where a vehicle listed at\n\t\t\t\t\t\t\t$30,000 with a 'final-price' Dealer Fee of $499 is accidentally put in the API with a final price of $499.\n\n\t\t\t\t\t\t\tI'm sorry, and please submit better ideas if you have them. :)\n\t\t\t\t\t\t*/\n\n\t\t\t\t\t\tconst isProbablyNotAFeeOrDiscount = finalPrice / 3 < newPrice;\n\n\t\t\t\t\t\tif (\n\t\t\t\t\t\t\tfinalPrice === 0 ||\n\t\t\t\t\t\t\t(finalPrice > 0 && isProbablyNotAFeeOrDiscount)\n\t\t\t\t\t\t) {\n\t\t\t\t\t\t\tfinalPrice = newPrice;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t});\n\t\t}\n\n\t\tconst certified = getIsCertified(\n\t\t\tdlVehicle.inventoryType,\n\t\t\tdlVehicle.certified\n\t\t);\n\t\tconst inventoryType = getInventoryType(\n\t\t\tdlVehicle.inventoryType,\n\t\t\tdlVehicle.newOrUsed\n\t\t);\n\n\t\tconst formattedVehicle = {\n\t\t\taccountId: dlVehicle.accountId || '',\n\t\t\taddress: dlVehicle.address || {},\n\t\t\tautodataCaId: dlVehicle.autodataCaId || '',\n\t\t\tbodyStyle: dlVehicle.bodyStyle || '',\n\t\t\tcertified,\n\t\t\tchromeId: dlVehicle.chromeId || '',\n\t\t\tcityFuelEconomy: parseInt(dlVehicle.cityFuelEfficiency, 10) || 0,\n\t\t\tclassification: dlVehicle.classification || '',\n\t\t\tdealerCodes:\n\t\t\t\ttypeof dlVehicle.dealerCodes === 'string'\n\t\t\t\t\t? JSON.parse(dlVehicle.dealerCodes)\n\t\t\t\t\t: dlVehicle.dealerCodes || {},\n\t\t\tdoors: dlVehicle.doors || '',\n\t\t\tdriveLine: dlVehicle.driveLine || '',\n\t\t\tengine: dlVehicle.engine || '',\n\t\t\tengineSize: dlVehicle.engineSize || '',\n\t\t\tdeliveryDateRange: dlVehicle.deliveryDateRange || '',\n\t\t\texteriorColor: dlVehicle.exteriorColor || '',\n\t\t\tfinalPrice,\n\t\t\tfuelType: dlVehicle.fuelType || '',\n\t\t\thighwayFuelEconomy: parseInt(dlVehicle.highwayFuelEfficiency, 10) || 0,\n\t\t\timages,\n\t\t\tinteriorColor: dlVehicle.interiorColor || '',\n\t\t\tinventoryDate: dlVehicle.inventoryDate || '',\n\t\t\tinventoryType,\n\t\t\tlink,\n\t\t\tmake: dlVehicle.make || '',\n\t\t\tmodel: dlVehicle.model || '',\n\t\t\tmodelCode: dlVehicle.modelCode || '',\n\t\t\todometer: parseInt(dlVehicle.odometer, 10) || 0,\n\t\t\toemSourcedMerchandisingStatus: vehicle.oemSourcedMerchandisingStatus || '',\n\t\t\toptionCodes:\n\t\t\t\tdlVehicle.optionCodesOther && dlVehicle.optionCodesOther.length\n\t\t\t\t\t? dlVehicle.optionCodesOther\n\t\t\t\t\t: dlVehicle.optionCodes || [],\n\t\t\tpackageCode: dlVehicle.packageCode || '',\n\t\t\tpackages: dlVehicle.packages ? dlVehicle.packages : '',\n\t\t\tstartingPrice,\n\t\t\tstatus: dlVehicle.status\n\t\t\t\t? dlVehicle.status.replace(/ /g, '_').toLowerCase()\n\t\t\t\t: '',\n\t\t\tstockNumber: dlVehicle.stockNumber || '',\n\t\t\ttransmission: dlVehicle.transmission || '',\n\t\t\ttrim: dlVehicle.trim || '',\n\t\t\tuuid: dlVehicle.uuid || '',\n\t\t\tvin: dlVehicle.vin || '',\n\t\t\tyear: parseInt(dlVehicle.modelYear, 10) || 0\n\t\t};\n\n\t\treturn addFields(formattedVehicle, dlVehicle, extraFields);\n\t});\n};\n\nconst formatLegacyGridViewInventory = async (extraFields) => {\n\tconst pageMetaData = await getPageMetaData();\n\n\tif (\n\t\t!pageMetaData.searchPage ||\n\t\tqueryAll('.inventory-listing-grid').length === 0\n\t) {\n\t\tlog(\n\t\t\t'INFO',\n\t\t\t'Not a grid view inventory page. Skipping further inventory processing.'\n\t\t);\n\t\treturn false;\n\t}\n\n\tconst vehicles = queryAll('[data-uuid]');\n\n\treturn vehicles.map(vehicle => {\n\t\tconst vehicleData = vehicle.dataset;\n\t\tconst images = [];\n\t\tconst url = query('.url', vehicle);\n\t\tconst link = url && url.href ? url.href : '';\n\n\t\tlet highestPrice = 0;\n\t\tlet startingPrice = 0;\n\t\tlet finalPrice = 0;\n\n\t\tconst imageElems = queryAll('.image-wrap img', vehicle);\n\t\tif (imageElems.length > 0) {\n\t\t\tconst image = imageElems[0];\n\t\t\tif (image.getAttribute('data-src')) {\n\t\t\t\timages.push(image.getAttribute('data-src').split('?')[0]);\n\t\t\t} else if (image.src) {\n\t\t\t\timages.push(image.src.split('?')[0]);\n\t\t\t}\n\t\t\tvehicleData.images = images;\n\t\t}\n\n\t\tif (!vehicleData) {\n\t\t\tlog('INFO', 'Vehicle data not found. Aborting inventory events.');\n\t\t\treturn false;\n\t\t}\n\n\t\tif (vehicle.querySelectorAll) {\n\t\t\tconst prices = queryAll(\n\t\t\t\t'.detailed-pricing .value, .gv-pricing .value',\n\t\t\t\tvehicle\n\t\t\t);\n\n\t\t\tlet startingPriceFound = false;\n\n\t\t\tprices.forEach(price => {\n\t\t\t\tif (\n\t\t\t\t\tisHiddenElement(price) ||\n\t\t\t\t\tprice.parentElement.classList.contains('stackedConditionalRebate') ||\n\t\t\t\t\tprice.parentElement.classList.contains('stackedConditionalFinal')\n\t\t\t\t) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tconst formattedPrice = convertFormattedPriceToInt(price.innerText);\n\n\t\t\t\tif (!formattedPrice) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// Set highestPrice\n\t\t\t\tif (formattedPrice > highestPrice) {\n\t\t\t\t\thighestPrice = formattedPrice;\n\t\t\t\t}\n\n\t\t\t\t// Set startingPrice\n\t\t\t\tif (!startingPriceFound) {\n\t\t\t\t\tstartingPrice = formattedPrice;\n\t\t\t\t\tstartingPriceFound = true;\n\t\t\t\t}\n\n\t\t\t\t// Set finalPrice\n\t\t\t\tif (\n\t\t\t\t\tprice.parentElement.classList.contains('stackedFinal') ||\n\t\t\t\t\tprice.parentElement.classList.contains('finalPrice')\n\t\t\t\t) {\n\t\t\t\t\tfinalPrice = formattedPrice;\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tconst dealerCodes =\n\t\t\ttypeof vehicleData.dealercodes === 'string'\n\t\t\t\t? convertStringToObject(vehicleData.dealercodes)\n\t\t\t\t: {};\n\t\tconst optionCodes =\n\t\t\ttypeof vehicleData.optioncodes === 'string'\n\t\t\t\t? convertStringToArray(vehicleData.optioncodes)\n\t\t\t\t: [];\n\n\t\tconst certified = getIsCertified(vehicleData.type, vehicle.certified);\n\t\tconst inventoryType = getInventoryType(vehicleData.type, null);\n\n\t\tconst formattedVehicle = {\n\t\t\taccountId: vehicleData.accountid || '',\n\t\t\taddress: vehicleData.address || {},\n\t\t\tautodataCaId: vehicleData.autodatacaid || '',\n\t\t\tbodyStyle: vehicleData.bodystyle || '',\n\t\t\tcertified,\n\t\t\tchromeId: vehicleData.chromeid || '',\n\t\t\tcityFuelEconomy: parseInt(vehicleData.cityfueleconomy, 10) || 0,\n\t\t\tclassification: vehicleData.classification || '',\n\t\t\tdealerCodes,\n\t\t\tdoors: vehicleData.doors || '',\n\t\t\tdriveLine: vehicleData.driveline || '',\n\t\t\tengine: vehicleData.engine || '',\n\t\t\tengineSize: vehicleData.enginesize || '',\n\t\t\tdeliveryDateRange: vehicleData.deliveryDateRange || '',\n\t\t\texteriorColor: vehicleData.exteriorcolor || '',\n\t\t\tfinalPrice,\n\t\t\tfuelType: vehicleData.fueltype || '',\n\t\t\thighwayFuelEconomy: parseInt(vehicleData.highwayfueleconomy, 10) || 0,\n\t\t\thighestPrice,\n\t\t\timages,\n\t\t\tinteriorColor: vehicleData.interiorcolor || '',\n\t\t\tinventoryDate: vehicleData.inventorydate || '',\n\t\t\tinventoryType,\n\t\t\tlink,\n\t\t\tmake: vehicleData.make || '',\n\t\t\tmodel: vehicleData.model || '',\n\t\t\tmodelCode: vehicleData.modelcode || '',\n\t\t\todometer: parseInt(vehicleData.odometer, 10) || 0,\n\t\t\toemSourcedMerchandisingStatus: vehicleData.oemSourcedMerchandisingStatus || '',\n\t\t\toptionCodes,\n\t\t\tpackageCode: vehicleData.packagecode || '',\n\t\t\tpackages: vehicleData.packages ? vehicleData.packages : '',\n\t\t\tstartingPrice,\n\t\t\tstatus: vehicleData.status\n\t\t\t\t? vehicleData.status.replace(/ /g, '_').toLowerCase()\n\t\t\t\t: '',\n\t\t\tstockNumber: vehicleData.stocknumber || '',\n\t\t\ttransmission: vehicleData.transmission || '',\n\t\t\ttrim: vehicleData.trim || '',\n\t\t\tuuid: vehicleData.uuid || '',\n\t\t\tvin: vehicleData.vin || '',\n\t\t\tyear: parseInt(vehicleData.year, 10) || 0\n\t\t};\n\n\t\treturn addFields(formattedVehicle, vehicleData, extraFields);\n\t});\n};\n\nconst getInventoryData = async (type, extraFields=[]) => {\n\twindow.DDC.PrivateAPI = window.DDC.PrivateAPI || {};\n\twindow.DDC.PrivateAPI.inventoryData = window.DDC.PrivateAPI.inventoryData || {};\n\n\tif (extraFields.length === 0) {\n\t\textraFields.push('default');\n\t}\n\n\tconst cacheKey = extraFields.join('|').toString();\n\n\tif (\n\t\t!window.DDC.PrivateAPI.inventoryData[cacheKey] ||\n\t\twindow.DDC.PrivateAPI.inventoryData[cacheKey].length === 0\n\t) {\n\t\tif (type === 'responsive') {\n\t\t\twindow.DDC.PrivateAPI.inventoryData[cacheKey] =\n\t\t\t\tawait formatDataBusInventory(extraFields);\n\t\t} else if (type === 'legacy') {\n\t\t\twindow.DDC.PrivateAPI.inventoryData[cacheKey] =\n\t\t\t\tawait formatLegacyDataLayerInventory(extraFields);\n\t\t} else if (type === 'grid') {\n\t\t\twindow.DDC.PrivateAPI.inventoryData[cacheKey] =\n\t\t\t\tawait formatLegacyGridViewInventory(extraFields);\n\t\t}\n\t}\n\treturn window.DDC.PrivateAPI.inventoryData[cacheKey];\n};\n\nexport const getVehicles = async (extraFields) => {\n\tawait hasInventoryData();\n\n\tif (await hasDataBusInventory()) {\n\t\treturn getInventoryData('responsive', extraFields);\n\t} else if (hasLegacyInventory()) {\n\t\treturn getInventoryData('legacy', extraFields);\n\t} else if (hasLegacyGridViewInventory()) {\n\t\treturn getInventoryData('grid', extraFields);\n\t}\n\n\treturn [];\n};\n\nexport const getVehicleData = async (init, extraFields) => {\n\tconst pageData = await getPageMetaData();\n\n\tif (!(pageData.searchPage || pageData.detailPage)) {\n\t\treturn [];\n\t}\n\n\tconst vehicles = await getVehicles(extraFields);\n\n\tif (init) {\n\t\ttrackAPIMethods(init, {\n\t\t\tmethodType: 'getVehicleData',\n\t\t\tstatus: 'Success'\n\t\t});\n\t}\n\n\treturn vehicles;\n};\n\nexport const getVehicleObject = async (elem, extraFields) => {\n\tconst pageMetaData = await getPageMetaData();\n\tconst vehicles = await getVehicles(extraFields);\n\n\tconst dlVehicles = window.DDC.dataLayer.vehicles || [];\n\n\tconst targetUuid =\n\t\tpageMetaData.detailPage && dlVehicles.length > 0\n\t\t\t? dlVehicles[0].uuid\n\t\t\t: elem.closest('[data-uuid]').getAttribute('data-uuid');\n\n\tconst targetVehicles = vehicles.filter(el => {\n\t\tif (el.uuid === targetUuid) {\n\t\t\treturn el;\n\t\t}\n\t\treturn false;\n\t});\n\n\treturn targetVehicles.length > 0 ? targetVehicles[0] : null;\n};\n\nexport const getAttributeForVehicles = async (init, key, uuids=[]) => {\n\tconst results = [];\n\n\t// Avoid polluting the vehicle object cache with unnecessary copies of the same data.\n\tconst filteredKey = allowedVehicleAttributes.includes(key) ? [] : [key];\n\tconst vehicles = await getVehicles(filteredKey);\n\t\n\tvehicles.forEach(vehicle => {\n\t\tif (vehicle[key] && (uuids.length === 0 || uuids.includes(vehicle.uuid))) {\n\t\t\tresults.push(vehicle[key]);\n\t\t}\n\t});\n\n\tif (init) {\n\t\ttrackAPIMethods(init, {\n\t\t\tmethodType: 'getAttributeForVehicles',\n\t\t\tstatus: 'Success'\n\t\t});\n\t}\n\treturn results;\n};","import { PageLocation } from './page-location';\nimport { getVehicleObject } from '../../utils/get-vehicles';\nimport { hasInventoryData } from '../../utils/helpers';\n\nexport class VehicleLocation extends PageLocation {\n\tasync isReady() {\n\t\treturn hasInventoryData();\n\t}\n\n\tgetMeta(elem) {\n\t\treturn getVehicleObject(elem);\n\t}\n}\n","import { VehicleLocation } from './vehicle-location';\n\nconst badgeClassesPrefix = 'vehicle-card-badge badge hidden';\n\nexport class BadgeLocation extends VehicleLocation {\n\tasync getConfig() {\n\t\treturn {\n\t\t\tclasses: `${badgeClassesPrefix} m-3 p-0`,\n\t\t\telementType: 'li',\n\t\t\tgridSrpClasses: `${badgeClassesPrefix} align-center m-0 p-3`,\n\t\t\tresponsiveSrpClasses: `${badgeClassesPrefix} m-2 py-3`,\n\t\t\tvdpClasses: `${badgeClassesPrefix} align-center`\n\t\t};\n\t}\n}\n","import { Location } from '../../location';\nimport { getPageMetaData } from '../../utils/get-page-meta-data';\nimport { hasInventoryData } from '../../utils/helpers';\n\nexport class ListingLocation extends Location {\n\tconstructor(name) {\n\t\tsuper(name);\n\t\tthis.name = name;\n\t}\n\n\tasync isReady() {\n\t\treturn hasInventoryData();\n\t}\n\n\tasync getConfig() {\n\t\treturn {\n\t\t\tsingleLocation: true\n\t\t};\n\t}\n\n\tgetMeta() {\n\t\treturn getPageMetaData();\n\t}\n}\n","import { VehicleLocation } from './vehicle-location';\n\nexport class MediaLocation extends VehicleLocation {\n\tasync getConfig() {\n\t\treturn {\n\t\t\tclasses: 'badge m-0 mt-3',\n\t\t\telementType: 'li',\n\t\t\tgridSrpClasses: 'badge m-0',\n\t\t\tplacement: 'first',\n\t\t\tresponsiveSrpClasses: 'm-0 mb-3 px-3',\n\t\t\tvdpClasses: 'm-0'\n\t\t};\n\t}\n}\n","import { BadgeLocation } from './vehicle-badge';\nimport { BannerLocation } from './banner-location';\nimport { FacetLocation } from './search-facet';\nimport { HeaderToolbarLocation } from './header-toolbar';\nimport { ListingLocation } from './listing-location';\nimport { MediaLocation } from './vehicle-media';\nimport { PageLocation } from './page-location';\nimport { VehicleLocation } from './vehicle-location';\n\nimport {\n\tUPDATE,\n\tMODIFY_CTA,\n\tRESTRICTIVELY_MODIFY_CTA,\n\tMODIFY_LINKS\n} from '../constants';\n\nconst listingsPlaceholderPrefix = 'listings-placeholder';\nconst listingsAdPrefix = 'listings-ad';\n\n// Note: Please maintain an alphabetized list for the following target locations\n// We display them to the end user in the error log messages as a\n// list of valid target locations. If, the integration is trying\n// to modify an unsupported location.\nexport const insertLocations = Object.freeze({\n\tcontent: new PageLocation('content'),\n\t'digital-retailing': new VehicleLocation('digital-retailing'),\n\t'facet-browse': new PageLocation('facet-browse'),\n\t'header-toolbar': new HeaderToolbarLocation('header-toolbar'),\n\theading: new PageLocation('heading'),\n\t'listing-filters': new ListingLocation('listing-filters'),\n\t'listings-placeholder-1': new ListingLocation(\n\t\t`${listingsPlaceholderPrefix}-1`\n\t),\n\t'listings-placeholder-2': new ListingLocation(\n\t\t`${listingsPlaceholderPrefix}-2`\n\t),\n\t'listings-placeholder-3': new ListingLocation(\n\t\t`${listingsPlaceholderPrefix}-3`\n\t),\n\t'listings-placeholder-4': new ListingLocation(\n\t\t`${listingsPlaceholderPrefix}-4`\n\t),\n\t'listings-placeholder-5': new ListingLocation(\n\t\t`${listingsPlaceholderPrefix}-5`\n\t),\n\t'listings-ad-1': new ListingLocation(`${listingsAdPrefix}-1`),\n\t'listings-ad-2': new ListingLocation(`${listingsAdPrefix}-2`),\n\t'listings-ad-3': new ListingLocation(`${listingsAdPrefix}-3`),\n\t'mobile-vdp-footer': new VehicleLocation('mobile-vdp-footer', {\n\t\telementType: 'li',\n\t\tclearContent: true\n\t}),\n\t'primary-menu-top': new PageLocation('primary-menu-top', {\n\t\tclasses: 'panel panel-default',\n\t\telementType: 'li',\n\t\tsingleLocation: true,\n\t\tplacement: 'first'\n\t}),\n\t'primary-menu-bottom': new PageLocation('primary-menu-bottom', {\n\t\tclasses: 'panel panel-default',\n\t\telementType: 'li',\n\t\tsingleLocation: true\n\t}),\n\t'page-footer': new PageLocation('page-footer'),\n\t'primary-banner': new BannerLocation('primary-banner', {\n\t\tclasses: 'mt-3 px-4'\n\t}),\n\t'privacy-form': new PageLocation('privacy-form', {\n\t\tclearContent: true,\n\t\tsingleLocation: true\n\t}),\n\t'search-facet-pricing': new FacetLocation('search-facet-pricing'),\n\t'secondary-content': new PageLocation('secondary-content'),\n\t'site-text-search': new PageLocation('site-text-search'),\n\t'vehicle-badge': new BadgeLocation('vehicle-badge'),\n\t'vehicle-badge-custom': new BadgeLocation('vehicle-badge-custom'),\n\t'vehicle-build-offer': new VehicleLocation('vehicle-build-offer', { classes: 'mb-3' }),\n\t'vehicle-ctas': new VehicleLocation('vehicle-ctas', { classes: 'mb-3' }),\n\t'vehicle-ctas-bottom': new VehicleLocation('vehicle-ctas-bottom', {\n\t\tclasses: 'mb-3'\n\t}),\n\t'vehicle-ctas-custom': new VehicleLocation('vehicle-ctas-custom', {\n\t\tclasses: 'mb-3'\n\t}),\n\t'vehicle-ctas-top': new VehicleLocation('vehicle-ctas-top', {\n\t\tclasses: 'mb-3'\n\t}),\n\t'vehicle-media': new MediaLocation('vehicle-media'),\n\t'vehicle-media-container': new VehicleLocation('vehicle-media-container'),\n\t'vehicle-media-custom': new MediaLocation('vehicle-media-custom'),\n\t'vehicle-payments': new VehicleLocation('vehicle-payments', {\n\t\tclasses: 'mb-3',\n\t\tsingleLocation: true\n\t}),\n\t'vehicle-payments-primary': new VehicleLocation('vehicle-payments-primary', {\n\t\tclasses: 'mb-3',\n\t\tsingleLocation: true\n\t}),\n\t'vehicle-payments-custom': new VehicleLocation('vehicle-payments-custom', {\n\t\tclasses: 'mb-3',\n\t\tsingleLocation: true\n\t}),\n\t'vehicle-pricing': new VehicleLocation('vehicle-pricing', {\n\t\tclasses: 'mb-3'\n\t}),\n\t'vehicle-pricing-custom': new VehicleLocation('vehicle-pricing-custom', {\n\t\tclasses: 'mb-3'\n\t})\n});\n\nconst allowAllUpdatesToButtonIntents = [\n\t'chat',\n\t'check-availability',\n\t'delivery',\n\t'digital-retailing',\n\t'eprice',\n\t'location-finder',\n\t'payment-calculator',\n\t'pre-approval',\n\t'request-a-quote',\n\t'reserve-it-now',\n\t'send-to-phone',\n\t'social',\n\t'test-drive',\n\t'text-us',\n\t'value-a-trade',\n\t'window-sticker'\n];\n\n// Only the the button actions can be\n// modified for these buttons\nexport const allowSelectedUpdatesToButtonIntents = ['ask', 'drive'];\nexport const allowSelectedUpdatesToButtonClasses = [];\n\nconst allowedLinkUpdateLocations = [\n\t'x-time',\n\t'schedule-service',\n\t'quote-build',\n\t'value-a-trade',\n\t'payment-search',\n\t'pre-approval'\n];\n\nconst allowAllUpdatesToButtonTypes = {};\nconst allowSelectedUpdatesToButtonTypes = {};\n\nallowAllUpdatesToButtonIntents.forEach(value => {\n\tconst buttonIdentifier = `vehicle-${value}-button`;\n\tallowAllUpdatesToButtonTypes[buttonIdentifier] = new VehicleLocation(\n\t\tbuttonIdentifier\n\t);\n});\n\nallowSelectedUpdatesToButtonIntents.forEach(value => {\n\tconst buttonIdentifier = `vehicle-${value}-button`;\n\tallowSelectedUpdatesToButtonClasses.push(buttonIdentifier);\n\tallowSelectedUpdatesToButtonTypes[buttonIdentifier] = new VehicleLocation(\n\t\tbuttonIdentifier\n\t);\n});\n\nexport const updateLocations = Object.freeze({\n\t...allowAllUpdatesToButtonTypes,\n\t...allowSelectedUpdatesToButtonTypes\n});\n\nconst insertLocationNames = Object.keys(insertLocations);\nconst allowAllUpdateLocationNames = Object.keys(allowAllUpdatesToButtonTypes);\nconst allowSelectedUpdateLocationNames = Object.keys(\n\tallowSelectedUpdatesToButtonTypes\n);\n\nexport const validateLocationName = (methodType, locationName) => {\n\tlet locationNames = insertLocationNames;\n\tif (methodType === UPDATE) {\n\t\tlocationNames = allowAllUpdateLocationNames;\n\t}\n\tif (methodType === MODIFY_CTA) {\n\t\tlocationNames = [...allowAllUpdateLocationNames, ...insertLocationNames];\n\t}\n\tif (methodType === RESTRICTIVELY_MODIFY_CTA) {\n\t\tlocationNames = allowSelectedUpdateLocationNames;\n\t}\n\tif (methodType === MODIFY_LINKS) {\n\t\tlocationNames = allowedLinkUpdateLocations;\n\t}\n\tif (!locationNames.includes(locationName)) {\n\t\tthrow new Error(\n\t\t\t`Invalid location: ${locationName}. Valid options ` +\n\t\t\t`are: ${locationNames.join(', ')}.`\n\t\t);\n\t}\n};\n","import { Location } from '../../location';\nimport { getPageMetaData } from '../../utils/get-page-meta-data';\n\nexport class HeaderToolbarLocation extends Location {\n\tasync getConfig() {\n\t\tconst pageData = await getPageMetaData();\n\t\tconst config = {\n\t\t\telementType: 'div'\n\t\t};\n\n\t\tconst isCenteredNav = document.querySelector('.responsive-centered-nav');\n\n\t\tif (pageData.layoutType === 'desktop') {\n\t\t\tconfig.classes =\n\t\t\t\t'd-flex flex-column justify-content-center align-items-end navbar';\n\n\t\t\tif (isCenteredNav) {\n\t\t\t\tconfig.classes = `${config.classes} m-4`;\n\t\t\t}\n\t\t}\n\t\treturn config;\n\t}\n\n\tprepareLocation() {\n\t\t/**\n\t\t * Adjust the parent class on the navbar to accommodate new locations.\n\t\t * - First template-navbar widget on screen\n\t\t */\n\t\tconst navbar = document.querySelector(`\n\t\t\t[data-widget-id=\"template-navbar1\"] .navbar-inner\n\t\t`);\n\n\t\tif (!navbar) {\n\t\t\treturn;\n\t\t}\n\n\t\t/**\n\t\t * Default string for navbar item count without the count suffix\n\t\t */\n\t\tconst navbarStr = 'navbar-inner-count-';\n\n\t\t/**\n\t\t * List of Links and Search buttons in the navbar.\n\t\t * - ddc-button-nav links\n\t\t * - div containing ddc-btn-wiapi insert location\n\t\t */\n\t\tconst itemListAll = navbar.querySelectorAll(`\n\t\t\t.ddc-btn-nav,\n\t\t\tdiv.ddc-btn-wiapi\n\t\t`);\n\n\t\t// Replace navbar inner count\n\t\t// 1. Remove old count class\n\t\tnavbar.className = navbar.className.replace(new RegExp(/navbar-inner-count-\\d/, 'g'), '');\n\t\t// 2. Add new count class\n\t\tnavbar.classList.add(`${navbarStr}${itemListAll.length.toString()}`);\n\t}\n\n\tgetMeta() {\n\t\treturn getPageMetaData();\n\t}\n}\n","import { Location } from '../../location';\nimport { getPageMetaData } from '../../utils/get-page-meta-data';\nimport { hasInventoryData } from '../../utils/helpers';\n\nexport class BannerLocation extends Location {\n\tconstructor(name) {\n\t\tsuper(name);\n\t\tthis.name = name;\n\t}\n\n\tisReady() {\n\t\treturn hasInventoryData();\n\t}\n\n\tgetMeta() {\n\t\treturn getPageMetaData();\n\t}\n}\n","import { Location } from '../../location';\nimport { getPageMetaData } from '../../utils/get-page-meta-data';\nimport { hasFacetData } from '../../utils/helpers';\n\nexport class FacetLocation extends Location {\n\tconstructor(name) {\n\t\tsuper(name || 'search-facet');\n\t}\n\n\tasync isReady() {\n\t\treturn hasFacetData();\n\t}\n\n\tasync getConfig() {\n\t\treturn {\n\t\t\tclasses: 'facet m-0 mt-3',\n\t\t\telementType: 'div',\n\t\t\tresponsiveSrpClasses: 'm-0 mb-3 px-3',\n\t\t\tsingleLocation: true\n\t\t};\n\t}\n\n\tgetMeta() {\n\t\treturn getPageMetaData();\n\t}\n}\n","// import jsDoc types for IntelliSense\nimport '../../types/editor.d';\nimport '../../types/index.d';\nimport '../../types/button-markup.d'\n\nimport { getLocalizedContent, isNewSrp } from '../utils/helpers';\nimport { allowSelectedUpdatesToButtonClasses } from '../edit/locations/index';\n\nconst newSrp = isNewSrp();\n\n/**\n * @param { Element } el \n * @param { AnyObject } attributes \n * @returns { Element }\n */\nexport const addAttributes = (el, attributes) => {\n\tif (typeof attributes === 'object') {\n\t\tObject.keys(attributes).forEach(attribute => {\n\t\t\tif (attribute) {\n\t\t\t\tel.setAttribute(attribute, attributes[attribute]);\n\t\t\t}\n\t\t});\n\t}\n\treturn el;\n};\n\n/**\n * @param { Instance } instance \n * @param { Element } el \n * @param { InsertLocations } location \n * @returns { Element }\n */\nexport const applyButtonWrapperOverrides = (\n\tinstance,\n\tel,\n\tlocation\n) => {\n\tel.classList.remove('hidden');\n\n\t// Set attributes on the element to make debugging easier.\n\tif (instance.init && instance.init.integrationId) {\n\t\tel.setAttribute('data-modified-by', instance.init.integrationId);\n\t}\n\tel.setAttribute('data-content-source', 'Web Integration API');\n\n\tif (instance.targetLocation) {\n\t\tel.setAttribute('data-content-intent', instance.targetLocation);\n\t}\n\n\tif (instance.destinationLocation) {\n\t\tel.setAttribute('data-content-destination', instance.destinationLocation);\n\t}\n\n\tif (location) {\n\t\tel.setAttribute('data-location', location);\n\t}\n\n\treturn el;\n};\n\n/**\n * \n * @param { Instance } instance \n * @param { Element } element \n * @param { ButtonOverrides } options \n * @param { Boolean } vehicleCTA \n * @param { Boolean } includeWIAPIAttributes \n * @returns \n */\nexport const applyButtonOverrides = (\n\tinstance,\n\telement,\n\toptions,\n\tvehicleCTA = true,\n\tincludeWIAPIAttributes = true\n) => {\n\tconst allowModifyClasses =\n\t\t!instance.destinationLocation ||\n\t\t!allowSelectedUpdatesToButtonClasses.includes(instance.destinationLocation);\n\n\t// This removes event listeners from the CTA by cloning the\n\t// markup and replacing the CTA with one that looks identical.\n\tlet el = element.parentNode ? element.cloneNode(true) : element;\n\n\tif (element.parentNode) {\n\t\telement.parentNode.replaceChild(el, element);\n\t}\n\n\tconst buttonText = getLocalizedContent(options.text);\n\n\tif (options.href) {\n\t\tel.href = options.href;\n\n\t\t// This is here for backwards compatability.\n\t\t// It was originally defined as 'src' and set to 'href'\n\t\t// which doesn't really make sense, but some integrations\n\t\t// still use this.\n\t} else if (options.src) {\n\t\tel.href = options.src;\n\t} else {\n\t\tel.removeAttribute('href');\n\t\tel.removeAttribute('data-href');\n\t}\n\n\t// Allow inline style overrides to resolve edge case issues.\n\tif (options.style && typeof options.style === 'string') {\n\t\tel.style = options.style.trim();\n\t}\n\n\tif (vehicleCTA && allowModifyClasses) {\n\t\tel.classList.add('btn', 'btn-block');\n\n\t\tif (newSrp) {\n\t\t\tel.classList.add('btn-sm');\n\t\t}\n\n\t\tel.classList.remove('btn-default', 'btn-primary');\n\t}\n\n\tif (options.imgSrc) {\n\t\tel.innerHTML = '';\n\n\t\tlet img = document.createElement('img');\n\n\t\timg.src = options.imgSrc;\n\t\timg.alt = options.imgAlt ? getLocalizedContent(options.imgAlt) : buttonText;\n\n\t\tif (options.imgClasses) {\n\t\t\timg.className = options.imgClasses;\n\t\t}\n\n\t\timg = addAttributes(img, options.imgAttributes);\n\n\t\tel.appendChild(img);\n\t} else if (buttonText) {\n\t\tel.innerHTML = buttonText;\n\t\tel.setAttribute('alt', buttonText);\n\n\t\tif (vehicleCTA && allowModifyClasses) {\n\t\t\tif (options.type === 'primary' || options.type === 'text') {\n\t\t\t\tel.classList.add(`btn-${options.type}`);\n\t\t\t} else {\n\t\t\t\tel.classList.add('btn-default');\n\t\t\t}\n\t\t}\n\t}\n\n\tif (options.onclick) {\n\t\tel.addEventListener('click', options.onclick);\n\t}\n\n\tif (options.target) {\n\t\tel.setAttribute('target', options.target);\n\t}\n\n\t// Remove attributes which should not be set by default.\n\t// The attributes can be re-added in the next step.\n\t['data-width', 'data-dialog-class'].forEach(attributeName => {\n\t\tel.removeAttribute(attributeName);\n\t});\n\n\tel = addAttributes(el, options.attributes);\n\n\t// Remove these classes as they should be off by default\n\t// and can be re-added by the integration in the next code block.\n\t['dialog', 'hide', 'hidden'].forEach(className => {\n\t\tel.classList.remove(className);\n\t});\n\n\t// The above classes are re-added here in case they are missing,\n\t// and newly specified classes are added.\n\tif (options.classes && options.classes.trim() !== '') {\n\t\toptions.classes\n\t\t\t.trim()\n\t\t\t.split(' ')\n\t\t\t.forEach(className => {\n\t\t\t\tel.classList.add(className);\n\t\t\t});\n\t}\n\n\tif (includeWIAPIAttributes) {\n\t\tel = applyButtonWrapperOverrides(instance, el);\n\t}\n\n\t// Popover support\n\tif (options.popover) {\n\t\tconst popoverOptions = {\n\t\t\ttoggle: 'popover',\n\t\t\tanimation: options.popover.animation || true,\n\t\t\tcontainer: options.popover.container || 'body',\n\t\t\t'delay-show': options.popover.delayShow || 0,\n\t\t\t'delay-hide': options.popover.delayHide || 0,\n\t\t\ttitle: getLocalizedContent(options.popover.title) || '',\n\t\t\tcontent: getLocalizedContent(options.popover.content) || '',\n\t\t\thtml: options.popover.html || '',\n\t\t\tplacement: options.popover.placement || 'left',\n\t\t\ttrigger: options.popover.trigger || 'hover'\n\t\t};\n\n\t\tObject.keys(popoverOptions).forEach(attribute => {\n\t\t\tel.setAttribute(`data-${attribute}`, popoverOptions[attribute]);\n\t\t});\n\t}\n\n\treturn el;\n};\n","export class MapOfStringToList {\n\tconstructor() {\n\t\tthis.data = {};\n\n\t\tthis.push = this.push.bind(this);\n\t\tthis.forEach = this.forEach.bind(this);\n\t\tthis.ensureListForKey = this.ensureListForKey.bind(this);\n\t\tthis.clear = this.clear.bind(this);\n\t}\n\n\tpush(key, ...args) {\n\t\tthis.ensureListForKey(key).push(...args);\n\t}\n\n\tforEach(key, ...args) {\n\t\tthis.ensureListForKey(key).forEach(...args);\n\t}\n\n\tensureListForKey(key) {\n\t\tif (this.data[key] === undefined) {\n\t\t\tthis.data[key] = [];\n\t\t}\n\n\t\treturn this.data[key];\n\t}\n\n\tclear() {\n\t\tthis.data = {};\n\t}\n}\n","import { ScheduleServiceLocation } from './schedule-service';\n\nexport const modifyLocations = Object.freeze({\n\t'schedule-service': new ScheduleServiceLocation()\n});\n\nexport const listOfAllowedModificationLocation = Object.keys(modifyLocations);\n","import { Location } from '../../location';\n\nexport class ScheduleServiceLocation extends Location {\n\tconstructor() {\n\t\tsuper('page-schedule-service-button');\n\t}\n}\n","import { listOfAllowedModificationLocation } from '../content/locations';\n\nexport const validateNonZeroLengthString = (str, name) => {\n\tif (typeof str !== 'string' || str.length === 0) {\n\t\tthrow new Error(`${name} must be a non-zero length string. Got: ${str}.`);\n\t}\n};\n\nexport const validateIsAnObject = (testItem, name) => {\n\tif (!testItem || typeof testItem !== 'object') {\n\t\tthrow new Error(`${name} must be an object. Got: ${testItem}.`);\n\t}\n};\n\nconst validateObjectHasAllowedProprties = (\n\ttestObject,\n\tallowedProperties = [],\n\tobjDesc\n) => {\n\tconst propertiesInTestObject = Object.keys(testObject);\n\tconst invalidProps = [];\n\tconst arePropertiesInTestObjectValid = propertiesInTestObject.every(prop => {\n\t\tconst isAllowedProp = allowedProperties.indexOf(prop) >= 0;\n\t\tif (!isAllowedProp) invalidProps.push(prop);\n\t\treturn isAllowedProp;\n\t});\n\n\tif (!arePropertiesInTestObjectValid) {\n\t\tthrow new Error(\n\t\t\t`Found the following invalid props '${invalidProps.join(\n\t\t\t\t', '\n\t\t\t)}'. Only the following props are allowed '${allowedProperties.join(\n\t\t\t\t', '\n\t\t\t)}', in ${objDesc}.`\n\t\t);\n\t}\n};\n\nexport const validateInitIsAnObject = (init, name) => {\n\tvalidateIsAnObject(init, name);\n\n\tvalidateNonZeroLengthString(init.integrationId, 'integrationId');\n\tvalidateNonZeroLengthString(init.integrationType, 'integrationType');\n};\n\nexport const validateTypeMap = (property, name) => {\n\tif (!(property instanceof Map)) {\n\t\tthrow new Error(`${name} must be a Map. Got: ${typeof property}.`);\n\t}\n};\n\nexport const validateIfLocationIsModifiable = locationName => {\n\tvalidateNonZeroLengthString(locationName, 'locationName');\n\n\tif (!listOfAllowedModificationLocation.includes(locationName)) {\n\t\tthrow new Error(\n\t\t\t`Invalid location: ${locationName}. Valid options ` +\n\t\t\t\t`are: ${listOfAllowedModificationLocation.join(', ')}.`\n\t\t);\n\t}\n};\n\nexport const validateTheModifierObjectForLocation = (\n\tlocationName,\n\tmodifierObject\n) => {\n\tvalidateIsAnObject(modifierObject, 'Modifier');\n\n\tconst { schema } = modifierObject;\n\n\tswitch (locationName) {\n\t\tcase 'schedule-service': {\n\t\t\tvalidateIsAnObject(schema, 'Schema of the modifier object');\n\t\t\tvalidateObjectHasAllowedProprties(\n\t\t\t\tmodifierObject,\n\t\t\t\t['schema'],\n\t\t\t\t`Modifier object of ${locationName}.`\n\t\t\t);\n\t\t\tvalidateObjectHasAllowedProprties(\n\t\t\t\tschema,\n\t\t\t\t['href', 'target', 'onclick', 'popover', 'attributes'],\n\t\t\t\t`the schema of the modifier object of ${locationName}.`\n\t\t\t);\n\t\t\tbreak;\n\t\t}\n\n\t\tdefault:\n\t\t\tbreak;\n\t}\n};\n","import { validateInitIsAnObject } from '../utils/validator';\n\nexport class Subscription {\n\tconstructor(init, callback) {\n\t\tvalidateInitIsAnObject(init, 'init');\n\n\t\tthis.init = init;\n\t\tthis.callback = callback;\n\t}\n}\n","import { deepCopy } from '../utils/copy';\nimport { trackAPIMethods } from '../tracking';\nimport { MapOfStringToList } from '../utils/map-of-string-to-list';\nimport { Subscription } from './subscription';\nimport { log } from '../log';\nimport {\n\tvalidateInitIsAnObject,\n\tvalidateNonZeroLengthString\n} from '../utils/validator';\n\nconst events = new MapOfStringToList();\nconst subscriptions = new MapOfStringToList();\n\nconst callCallback = (integrationId, callback, ev) => {\n\ttry {\n\t\tcallback(deepCopy(ev));\n\t} catch (e) {\n\t\tlog(`Callback failed: ${integrationId} ${JSON.stringify(ev)}.`, e);\n\t}\n};\n\nexport const fireEvent = ev => {\n\tif (!ev.type) {\n\t\tthrow new Error('Events must have a type property.');\n\t}\n\n\tconst modifiedEvent = {\n\t\t...ev,\n\t\ttimestamp: new Date()\n\t};\n\n\tsubscriptions.forEach(ev.type, subscription => {\n\t\tcallCallback(\n\t\t\tsubscription.init.integrationId,\n\t\t\tsubscription.callback,\n\t\t\tmodifiedEvent\n\t\t);\n\t});\n\n\tevents.push(ev.type, modifiedEvent);\n};\n\nexport const subscribe = (init, eventType, callback) => {\n\tvalidateInitIsAnObject(init, 'init');\n\tvalidateNonZeroLengthString(eventType, 'eventType');\n\n\tconst subscription = new Subscription(init, callback);\n\n\tsubscriptions.push(eventType, subscription);\n\n\tevents.forEach(eventType, ev => {\n\t\tcallCallback(init.integrationId, callback, ev);\n\t});\n\n\ttrackAPIMethods(init, { subscribedEvent: eventType });\n};\n\nexport const clear = () => {\n\tevents.clear();\n\tsubscriptions.clear();\n};\n","export const deepCopy = object => JSON.parse(JSON.stringify(object));\n","import { trackAPIMethods } from './tracking';\nimport { getVehicleData } from './utils/get-vehicles';\n\nconst GALLERY_TARGETS = ['vehicle-media'];\nconst CONTENT_TYPES = ['image', 'html'];\nconst POSITIONS = ['primary', 'secondary', 'last'];\nconst INSERT_METHODS = ['insert', 'replace'];\n\n// An immutable function that returns default properties for content['vehicle-media'][vin]\n// - returns: {primary: [], secondary:[], last:[]}\nconst defaultMediaProps = () =>\n\tPOSITIONS.reduce((acc, pos) => {\n\t\tacc[pos] = [];\n\t\treturn acc;\n\t}, {});\n\n// content store\n// vehicle-media key is for storing content keyed to a vin\nconst content = {\n\t'vehicle-media': {}\n};\n\n// key storage for content items to avoid duplication\nconst contentKeySet = new Set();\n\n// reset all media content\nexport const clearGalleryContent = () => {\n\t// reset the content store\n\tcontent['vehicle-media'] = {};\n\t// reset the key set\n\tcontentKeySet.clear();\n};\n\n// validate the target\n// - target: enum{GALLERY_TARGETS}\nconst validateGalleryTarget = target => {\n\tif (!GALLERY_TARGETS.includes(target)) {\n\t\tthrow new Error(\n\t\t\t`Unsupported gallery: '${target}'. Expected one of: ${GALLERY_TARGETS.join(\n\t\t\t\t', '\n\t\t\t)}.`\n\t\t);\n\t}\n};\n\n// validate the type\n// - type: enum{CONTENT_TYPES}\nconst validateContentType = type => {\n\tif (!CONTENT_TYPES.includes(type)) {\n\t\tthrow new Error(\n\t\t\t`Unsupported vehicle media content type: '${type}'. Expected one of: ${CONTENT_TYPES.join(\n\t\t\t\t', '\n\t\t\t)}.`\n\t\t);\n\t}\n};\n\n// validate the insert method\n// - type: enum{INSERT_METHODS}\nconst validateInsertMethod = insertMethod => {\n\tif (!INSERT_METHODS.includes(insertMethod)) {\n\t\tthrow new Error(\n\t\t\t`Unsupported vehicle media content insertMethod: '${insertMethod}'. Expected one of: ${INSERT_METHODS.join(\n\t\t\t\t', '\n\t\t\t)}.`\n\t\t);\n\t}\n};\n\n// validate the position\n// - position: enum{POSITIONS}\nconst validatePosition = position => {\n\tif (!POSITIONS.includes(position)) {\n\t\tthrow new Error(\n\t\t\t`Unsupported vehicle media position: '${position}'. Expected one of: ${POSITIONS.join(\n\t\t\t\t', '\n\t\t\t)}.`\n\t\t);\n\t}\n};\n\n// validate for required value\n// - arg: any\nconst validateRequiredArg = (argName, arg) => {\n\t// arg is required, throw an error if missing\n\tif (!arg) {\n\t\tthrow new Error(`Unsupported request. ${argName} is a required field.`);\n\t}\n};\n\n// dispatch an event with data for a single vin\n// - vin: string\nconst triggerVehicleMediaUpdatedEvent = window._.debounce(vin => {\n\t// build the content for a specific vin\n\tconst detailPayload = {\n\t\tvin,\n\t\tcontent: content['vehicle-media'][vin]\n\t};\n\n\twindow.dispatchEvent(\n\t\tnew CustomEvent('wiapiVehicleMediaUpdated', {\n\t\t\tdetail: detailPayload\n\t\t})\n\t);\n}, 100);\n\n// dispatch an event with content for \"ALL\" vehicles\nconst triggerAllVehicleMediaUpdatedEvent = window._.debounce(() => {\n\twindow.dispatchEvent(\n\t\tnew CustomEvent('wiapiAllVehiclesMediaUpdated', {\n\t\t\tdetail: {\n\t\t\t\tcontent: content['vehicle-media']\n\t\t\t}\n\t\t})\n\t);\n}, 100);\n\n// insert vehicle media into the content store and trigger update events in the browser\n// - dataArray: {vin: string, images: content[]}[]\n// content: { type: enum{CONTENT_TYPES}, position: enum{POSITIONS}, src: string, thumbnail?: string, html?: string, trigger?: string}\nconst insertVehicleMedia = (dataArray, vehicleData) => {\n\t// Loop over dataArray\n\t// - data: {vin: string, images: content[]}\n\n\tdataArray.forEach(data => {\n\t\t// destructure the data object\n\t\tconst { vin, images, insertMethod = 'insert' } = data;\n\n\t\t// validate required args\n\t\tvalidateRequiredArg('vin', vin);\n\t\tvalidateRequiredArg('images', images);\n\t\tvalidateInsertMethod(insertMethod);\n\n\t\tconst vehicle = vehicleData.find(item => item.vin === vin);\n\n\t\t// vivification of the content['vehicle-media'][vin] object\n\t\t// If it already is defined assign it to itself else set it to the default\n\t\tcontent['vehicle-media'][vin] =\n\t\t\tcontent['vehicle-media'][vin] || defaultMediaProps();\n\t\tcontent['vehicle-media'][vin].insertMethod = insertMethod;\n\t\tcontent['vehicle-media'][vin].vehicle = vehicle;\n\n\t\t// Loop over the images array\n\t\timages.forEach(entry => {\n\t\t\t// destructure args from the image\n\t\t\tconst {\n\t\t\t\ttype,\n\t\t\t\tposition,\n\t\t\t\tsrc,\n\t\t\t\tthumbnail = '',\n\t\t\t\thtml,\n\t\t\t\ttrigger = 'click',\n\t\t\t\tcallback\n\t\t\t} = entry;\n\n\t\t\t// validate args\n\t\t\tvalidateContentType(type);\n\t\t\tvalidatePosition(position);\n\n\t\t\t// for 'image' or 'html' case\n\t\t\tif (CONTENT_TYPES.includes(type)) {\n\t\t\t\t// set a unique imageKey\n\t\t\t\tconst contentKey = `${vin}${position}${src}`;\n\t\t\t\tlet err = '';\n\n\t\t\t\t// Check if a src exists for images\n\t\t\t\tif (!src || src.trim() === '') {\n\t\t\t\t\terr = \"Vehicle media images must have a 'src' property.\";\n\t\t\t\t\ttrackAPIMethods(init, {\n\t\t\t\t\t\tmethodType: 'insertVehicleMedia',\n\t\t\t\t\t\tstatus: 'Failed',\n\t\t\t\t\t\tmessage: err\n\t\t\t\t\t});\n\t\t\t\t\tthrow new Error(err);\n\t\t\t\t}\n\t\t\t\t// Check if html exists for html types\n\t\t\t\tif (\n\t\t\t\t\ttype === 'html' &&\n\t\t\t\t\t(!(html || callback) || (html && html.trim() === '' && !callback))\n\t\t\t\t) {\n\t\t\t\t\terr = \"Vehicle media HTML must have an 'html' property with content.\";\n\t\t\t\t\ttrackAPIMethods(init, {\n\t\t\t\t\t\tmethodType: 'insertVehicleMedia',\n\t\t\t\t\t\tstatus: 'Failed',\n\t\t\t\t\t\tmessage: err\n\t\t\t\t\t});\n\t\t\t\t\tthrow new Error(err);\n\t\t\t\t}\n\n\t\t\t\t// if the contentKey does not exist\n\t\t\t\tif (!contentKeySet.has(contentKey)) {\n\t\t\t\t\t// push new media into the content store\n\t\t\t\t\tcontent['vehicle-media'][vin][position].push({\n\t\t\t\t\t\tvin,\n\t\t\t\t\t\ttype,\n\t\t\t\t\t\tsrc,\n\t\t\t\t\t\tthumbnail: thumbnail && thumbnail.trim() !== '' ? thumbnail : src,\n\t\t\t\t\t\tposition,\n\t\t\t\t\t\thtml,\n\t\t\t\t\t\ttrigger,\n\t\t\t\t\t\tcallback\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\t// add the contentKey to the key storage\n\t\t\t\tcontentKeySet.add(contentKey);\n\t\t\t}\n\t\t});\n\n\t\t// trigger dispatching an event to update a vehicle\n\t\ttriggerVehicleMediaUpdatedEvent(vin);\n\t});\n\n\t// trigger dispatching an event to update \"ALL\" vehicles\n\ttriggerAllVehicleMediaUpdatedEvent();\n};\n\n// insert supplied content into the content store\n// - init: null\n// - target: enum{GALLERY_TARGETS}\n// - data: {vin: string, images: image[], content: html[]}[] | {vin: string, images: image[], content: html[]}\n// image: { type: enum{CONTENT_TYPES}, position: enum{POSITIONS}, src: string, thumbnail?: string}\n// html: { type: enum{CONTENT_TYPES}, position: enum{POSITIONS}, content: string, image?: string, trigger: string}\nexport const insertGalleryContent = async (init, target, data) => {\n\tvalidateGalleryTarget(target);\n\n\t// normalize data to the correct shape\n\t// {vin: string, images: image[]}[]\n\tconst normalizedData = Array.isArray(data) ? data : [data];\n\n\tif (target === 'vehicle-media') {\n\t\tconst vehicleData = await getVehicleData();\n\t\tinsertVehicleMedia(normalizedData, vehicleData);\n\t}\n\n\ttrackAPIMethods(init, {\n\t\tmethodType: 'insertGalleryContent',\n\t\tlocation: target\n\t});\n};\n\n// retrieve content for a single vin\n// - target: enum{GALLERY_TARGETS}\n// - vin: string\nexport const getGalleryContent = (target, vin) => {\n\tvalidateGalleryTarget(target);\n\t// return content for a specific vin\n\treturn content[target][vin];\n};\n\n// retrieve all content\n// - target: enum{GALLERY_TARGETS}\nexport const getAllGalleryContent = target => {\n\tvalidateGalleryTarget(target);\n\t// return all content\n\treturn content[target];\n};\n","import { log } from '../log';\n\n// Convert a string of markup to actual DOM elements.\nconst stringToElements = inputHtml => {\n\tconst result = document.createElement('template');\n\tconst html = inputHtml.trim();\n\tresult.innerHTML = html;\n\treturn result.content.firstChild;\n};\n\nexport const createMenuMarkup = data => {\n\tconst {\n\t\tprimaryText,\n\t\tsecondaryText,\n\t\texpanded,\n\t\tmenuIcon,\n\t\tsubItems,\n\t\tposition,\n\t\tonclick,\n\t\tisFragmentNavType = true\n\t} = data;\n\t\n\tconst navType = isFragmentNavType ? 'fragment' : 'header';\n\n\tif (!primaryText) {\n\t\tlog('Required primaryText field is missing.');\n\t\treturn false;\n\t}\n\n\t// If it's a single menu item, return the simple markup early.\n\tif (!subItems || subItems.length === 0) {\n\t\tconst markup = `\n\t\t\t
\n\t\t\t\t\n\t\t\t
\n\t\t`;\n\n\t\tconst domElements = stringToElements(markup);\n\n\t\tif (onclick) {\n\t\t\tdomElements.querySelector('a').addEventListener('click', onclick);\n\t\t}\n\n\t\treturn domElements;\n\t}\n\n\tconst showExpandedToggle = expanded ? ' in' : '';\n\tconst showExpandedPanel = expanded ? '' : ' collapsed';\n\n\t// If submenu items are present, render the more complicated markup instead.\n\tconst wrapperElement = document.createElement('div');\n\n\tconst secondText = secondaryText\n\t\t? `${secondaryText}`\n\t\t: '';\n\n\t// Optionally show a user icon to the left of the user name\n\t// when `menuIcon` is set to `true` in the payload.\n\tconst menuIconMarkup = menuIcon\n\t\t? '
'\n\t\t: '';\n\tconst userNameSpanType = menuIcon ? 'ddc-span10' : 'ddc-span12';\n\n\tlet panelHeading = stringToElements(`\n\t\t
\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t${menuIconMarkup}\n\t\t\t\t\t
\n\t\t\t\t\t\t

\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t${primaryText}\n\t\t\t\t\t\t

\n\t\t\t\t\t\t

${secondText}

\n\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t
\n\t`);\n\n\tif (!isFragmentNavType) {\n\t\tconst iconMarkup = menuIcon\n\t\t? '
'\n\t\t: '';\n\n\t\tpanelHeading = stringToElements(`\n\t\t\t\n\t\t`);\n\t}\n\n\t// Add the panel heading to the wrapper.\n\twrapperElement.appendChild(panelHeading);\n\n\tif (!(data?.secondaryText || data?.subItems)) {\n\t\treturn wrapperElement;\n\t}\n\n\t// Create the sub menu items.\n\tconst subItemsList = document.createElement('ul');\n\tsubItemsList.classList.add(`ddc-mobile-${navType}-sub-nav`, 'list-unstyled');\n\n\tif (data?.subItems) {\n\t\tdata.subItems.forEach(item => {\n\t\t\tconst li = document.createElement('li');\n\t\t\tconst anchor = document.createElement('a');\n\t\t\tanchor.setAttribute('data-navigation-id', 'default');\n\t\t\tanchor.classList.add('nav-link', 'tier3');\n\t\t\tanchor.href = item.href;\n\t\t\tanchor.textContent = item.text;\n\n\t\t\t// Attach click handler if it exists\n\t\t\tif (typeof item.onclick === 'function') {\n\t\t\t\tanchor.addEventListener('click', item.onclick);\n\t\t\t}\n\n\t\t\tli.appendChild(anchor);\n\t\t\tsubItemsList.appendChild(li);\n\t\t});\n\t}\n\n\t// Create the wrapper for the sub menu items.\n\tconst panelBodyWrapper = stringToElements(`\n\t\t
\n\t\t\t
\n\t\t\t
\n\t\t
\n\t`);\n\n\t// Add the sub menu items to the wrapper.\n\tconst panelBodyTarget = panelBodyWrapper.querySelector('.panel-body');\n\tpanelBodyTarget.appendChild(subItemsList);\n\n\t// Add the panel body wrapper to the parent wrapper.\n\twrapperElement.appendChild(panelBodyWrapper);\n\n\treturn wrapperElement;\n};\n","// import jsDoc types for IntelliSense\nimport '../../types/index.d';\nimport '../../types/integration.d'\n\nimport { fetchJson, getUrlParams } from './helpers';\nimport { getProp } from './getProp'\nimport { getPageMetaData } from './get-page-meta-data';\nimport { log, isDebugMode, isTraceMode } from '../log';\nimport { normalizeIntegrationId } from './normalize-id';\nimport { trackAPIMethods } from '../tracking';\n\nlet configsPromise = false;\n\nexport const hasPlaceHolders = url => {\n\treturn url.includes('{') && url.includes('}');\n};\n\nexport const replacePlaceHolders = (integrationUrl, configFields) => {\n\tlet url = integrationUrl;\n\tObject.keys(configFields).forEach(field => {\n\t\tif (field !== 'integrationUrl' && url.includes(`{${field}}`)) {\n\t\t\tconst replacer = new RegExp(`{${field}}`, 'g');\n\t\t\turl = url.replace(replacer, configFields[field]);\n\t\t}\n\t});\n\treturn url;\n};\n\n/**\n *\n * @returns { Promise }\n */\nexport const loadConfigs = async () => {\n\tif (!configsPromise) {\n\t\tconst pageData = await getPageMetaData();\n\t\tconst { layoutType, pageName, siteId, locale } = pageData;\n\t\tconst uri = '/api/ipp/config/services';\n\t\tconst integrationTypes = ['api', 'api_compatible'];\n\t\tconst fetchParams = [\n\t\t\t`integrationType=${integrationTypes.join(',')}`,\n\t\t\t`deviceType=${layoutType}`,\n\t\t\t`pageAlias=${pageName}`,\n\t\t\t`siteId=${siteId}`,\n\t\t\t`locale=${locale}`\n\t\t];\n\n\t\t// Add a cache breaking parameter to the request if URL parameter disables it.\n\t\tconst urlParams = getUrlParams();\n\t\tif (urlParams?._toggleBasePageCache === 'false' || urlParams?._toggleWIAPICache === 'false') {\n\t\t\tfetchParams.push(`r=${new Date().getTime()}`);\n\t\t}\n\n\t\tconfigsPromise = fetchJson(\n\t\t\t{},\n\t\t\t`${uri}?${fetchParams.join('&')}`,\n\t\t\t'loadConfigs'\n\t\t);\n\t}\n\treturn configsPromise;\n};\n\nexport const processLegacyConfigData = async init => {\n\tconst { settings } = window.DDC.Integration;\n\n\tObject.keys(settings).forEach(configKey => {\n\t\tif (normalizeIntegrationId(configKey) !== configKey) {\n\t\t\tsettings[normalizeIntegrationId(configKey)] = settings[configKey];\n\t\t\tdelete settings[configKey];\n\t\t}\n\t});\n\n\tif (settings[init.integrationId] !== undefined) {\n\t\ttrackAPIMethods(init, {\n\t\t\tmethodType: 'getConfigDeprecated',\n\t\t\tstatus: 'Success'\n\t\t});\n\t\treturn settings[init.integrationId];\n\t}\n\treturn false;\n};\n\nexport const processConfigData = async (\n\tinit,\n\tconfigs,\n\ttestConfig,\n\thasLegacyConfigs,\n\ttrackToNewRelic = true\n) => {\n\tconst hasTestConfig =\n\t\ttypeof testConfig === 'object' && (isDebugMode() || isTraceMode());\n\tconst urlParams = getUrlParams();\n\n\t// Reject if no config found for this integration\n\tif (!configs[init.integrationId]) {\n\t\tif (hasTestConfig) {\n\t\t\treturn testConfig;\n\t\t}\n\n\t\tif (trackToNewRelic) {\n\t\t\ttrackAPIMethods(init, {\n\t\t\t\tmethodType: 'getConfig',\n\t\t\t\tstatus: 'Not Found'\n\t\t\t});\n\t\t}\n\n\t\tconst availableKeys = hasLegacyConfigs\n\t\t\t? [\n\t\t\t\t\t...Object.keys(configs),\n\t\t\t\t\t...Object.keys(window.DDC.Integration.settings)\n\t\t\t ]\n\t\t\t: Object.keys(configs);\n\n\t\tconst availableIntegrations = availableKeys.length\n\t\t\t? `Integration configs are available only for the following -> ${[\n\t\t\t\t\t...new Set(availableKeys)\n\t\t\t ].join(', ')}`\n\t\t\t: '';\n\n\t\tthrow new Error(\n\t\t\t`Config for ${init.integrationId} not found. ${availableIntegrations}`\n\t\t);\n\t} else {\n\t\tif (hasTestConfig && urlParams._integrationConfig === 'override') {\n\t\t\treturn testConfig;\n\t\t}\n\n\t\tconst config = configs[init.integrationId].fields;\n\n\t\tconst pageData = await getPageMetaData();\n\n\t\tconst { layoutType } = pageData;\n\n\t\t// All integrations created in WISE would return a config obj only\n\t\t// when they are enabled on a given page. So, we can skip the device\n\t\t// type enablement check for them.\n\t\tif (!configs[init.integrationId].wiseIntegration) {\n\t\t\t// Reject if disabled for current device type\n\t\t\tconst mobileEnabled =\n\t\t\t\tlayoutType === 'mobile' && config.enabledSeamless === true;\n\n\t\t\tconst desktopEnabled =\n\t\t\t\tlayoutType === 'desktop' && config.enabledDesktop === true;\n\n\t\t\tif (!(mobileEnabled || desktopEnabled)) {\n\t\t\t\tif (trackToNewRelic) {\n\t\t\t\t\ttrackAPIMethods(init, {\n\t\t\t\t\t\tmethodType: 'getConfig',\n\t\t\t\t\t\tstatus: `Disabled for ${layoutType}`\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\tthrow new Error(\n\t\t\t\t\t`Config for ${init.integrationId} found but not enabled for the current device type.`\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\n\t\t// No need to include these fields for the consumer.\n\t\tconst fieldsToExclude = [\n\t\t\t'includedPages',\n\t\t\t'excludedPages',\n\t\t\t'thirdPartyServiceDebug'\n\t\t];\n\n\t\tconst overrideConfigPageTypes = {\n\t\t\tsrp: 'searchPage',\n\t\t\tvdp: 'detailPage',\n\t\t\tindex: 'indexPage'\n\t\t};\n\n\t\tconst resolvedConfig = Object.keys(config)\n\t\t\t.filter(\n\t\t\t\tkey =>\n\t\t\t\t\t!fieldsToExclude.includes(key) &&\n\t\t\t\t\t!key.startsWith('enabled') &&\n\t\t\t\t\t!key.startsWith('addTo')\n\t\t\t)\n\t\t\t.reduce((obj, key) => {\n\t\t\t\tconst newObj = obj;\n\n\t\t\t\t// Allow specific config overrides for index, SRP and VDP pages.\n\t\t\t\tif (key.split('-').length > 1) {\n\t\t\t\t\tconst [baseKey, targetPage] = key.split('-');\n\t\t\t\t\tif (pageData[overrideConfigPageTypes[targetPage]]) {\n\t\t\t\t\t\tif (isTraceMode()) {\n\t\t\t\t\t\t\tlog(\n\t\t\t\t\t\t\t\tinit.integrationId,\n\t\t\t\t\t\t\t\t`Using override key '${key}' to set field '${baseKey}' to '${config[key]}' for '${overrideConfigPageTypes[targetPage]}'.`\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tnewObj[baseKey] = config[key];\n\t\t\t\t\t}\n\n\t\t\t\t\t// Normal case for populating the config object values.\n\t\t\t\t} else if (!(key in newObj)) {\n\t\t\t\t\tnewObj[key] = config[key];\n\t\t\t\t}\n\n\t\t\t\treturn newObj;\n\t\t\t}, {});\n\n\t\t// Success\n\t\tif (trackToNewRelic) {\n\t\t\ttrackAPIMethods(init, {\n\t\t\t\tmethodType: 'getConfig',\n\t\t\t\tstatus: 'Success'\n\t\t\t});\n\t\t}\n\n\t\treturn resolvedConfig;\n\t}\n};\n\nconst getConfigProp = async (init, methodName, keys) => {\n\tconst configs = await loadConfigs();\n\n\ttrackAPIMethods(init, {\n\t\tmethodType: methodName,\n\t\tstatus: 'Success'\n\t});\n\n\tconst data = getProp([init.integrationId, ...keys], configs);\n\treturn data === null ? {} : data;\n};\n\nexport const getContentMappings = async init => {\n\treturn getConfigProp(init, 'getContentMappings', ['contentMappings']);\n};\n\nexport const getSiteProperties = async init => {\n\treturn getConfigProp(init, 'getSiteProperties', [\n\t\t'supplementaryData',\n\t\t'siteProperties'\n\t]);\n};\n\nexport const getSitemap = async init => {\n\treturn getConfigProp(init, 'getSitemap', ['supplementaryData', 'siteMaps']);\n};\n\nexport const getConfig = async (\n\tinit,\n\ttestConfig = false,\n\ttrackToNewRelic = true\n) => {\n\t// Check for v1 integration configs in the page markup.\n\tconst hasLegacyConfigs = window?.DDC?.Integration?.settings;\n\n\tif (hasLegacyConfigs) {\n\t\tconst legacyConfigData = await processLegacyConfigData(init);\n\t\tif (legacyConfigData !== false) {\n\t\t\treturn legacyConfigData;\n\t\t}\n\t}\n\n\ttry {\n\t\t// Check for v2 integration configs from the CMS API endpoint.\n\t\tconst configs = await loadConfigs();\n\t\tconst resolvedConfig = await processConfigData(\n\t\t\tinit,\n\t\t\tconfigs,\n\t\t\ttestConfig,\n\t\t\thasLegacyConfigs,\n\t\t\ttrackToNewRelic\n\t\t);\n\n\t\t// Resolve the config\n\t\tif (resolvedConfig) {\n\t\t\treturn resolvedConfig;\n\t\t}\n\t} catch (err) {\n\t\tif (trackToNewRelic) {\n\t\t\ttrackAPIMethods(init, {\n\t\t\t\tmethodType: 'getConfig',\n\t\t\t\tstatus: 'Failed',\n\t\t\t\tmessage: err\n\t\t\t});\n\t\t}\n\t\tlog(init, `Error calling getConfig. ${err}`);\n\t}\n\n\treturn null;\n};","/**\n * Given a breadcumb list of strings, retrieve a nested value out of an object. Returns `null` if the value does not exist.\n * \n * example:\n * ```javascript\n * \tconst keynameBreadcrumbList = ['foo', 'bar'];\n * \tconst obj = { foo: { bar: 'nestedValue' } };\n * \tconst result = 'nestedValue'\n * ```\n * \n * @param { string[] } keynameBreadcrumbList a breadcrumb list of deeply nested keynames to traverse down\n * @param { * } obj Object to check for nested values\n * @returns { any | null }\n */\nexport const getProp = (keynameBreadcrumbList, obj) => {\n const property = keynameBreadcrumbList.reduce((propObj,keyname) => {\n // Check if next level of nesting exists\n if(propObj && propObj[keyname]) {\n // Progress getProp reduce to next level of nesting\n return propObj[keyname]\n }\n return null\n },\n obj /** initial value of the reduce */\n );\n return property;\n}","export const trackTiming = (category, timingKey, timing) => {\n\tif (window.DDC.PrivateAPI === undefined) {\n\t\twindow.DDC.PrivateAPI = {};\n\t}\n\n\tif (window.DDC.PrivateAPI.timings === undefined) {\n\t\twindow.DDC.PrivateAPI.timings = {};\n\t}\n\n\tif (window.DDC.PrivateAPI.timings[category] === undefined) {\n\t\twindow.DDC.PrivateAPI.timings[category] = {};\n\t}\n\n\tif (window.DDC.PrivateAPI.timings[category][timingKey] === undefined) {\n\t\twindow.DDC.PrivateAPI.timings[category][timingKey] = [];\n\t}\n\n\twindow.DDC.PrivateAPI.timings[category][timingKey].push(timing);\n};\n","import { Location } from '../../location';\nimport { getPageMetaData } from '../../utils/get-page-meta-data';\n\nexport class PageLinkLocation extends Location {\n\tconstructor(locations) {\n\t\tsuper();\n\t\tthis.locations = locations;\n\t}\n\n\tgetMeta() {\n\t\treturn getPageMetaData();\n\t}\n\n\tasync getElements() {\n\t\treturn this.locations;\n\t}\n}\n","// import jsDoc types for IntelliSense\nimport '../../types/editor.d';\nimport '../../types/index.d';\nimport {\n\tactivateModules,\n\tcreateUniqueId,\n\thasDataBusInventory,\n\thasLegacyGridViewInventory,\n\tisVdp,\n\thasInventoryData\n} from '../utils/helpers';\nimport { append } from '../utils/append';\nimport { applyButtonOverrides, applyButtonWrapperOverrides } from '../create/button-markup';\nimport { getConfig, getContentMappings } from '../utils/load-configs';\nimport {\n\tinsertLocations,\n\tupdateLocations,\n\tvalidateLocationName\n} from './locations';\nimport { log } from '../log';\nimport { trackAPIMethods } from '../tracking';\nimport { trackTiming } from '../timings';\nimport { validateInitIsAnObject } from '../utils/validator';\nimport { VehicleLocation } from './locations/vehicle-location';\nimport {\n\tINSERT,\n\tINSERT_CTA,\n\tMODIFY_CTA,\n\tMODIFY_LINKS,\n\tRESTRICTIVELY_MODIFY_CTA,\n\tUPDATE,\n\tVEHICLE_BADGE,\n\tVEHICLE_CTAS,\n\tVEHICLE_MEDIA,\n\tVEHICLE_PAYMENTS,\n\tVEHICLE_PRICING\n} from './constants';\nimport { PageLinkLocation } from './locations/page-link';\n\nconst allowedCustomInsertLocations = [\n\tVEHICLE_BADGE,\n\tVEHICLE_CTAS,\n\tVEHICLE_MEDIA,\n\tVEHICLE_PAYMENTS,\n\tVEHICLE_PRICING\n];\n\nexport class Editor {\n\t/**\n\t * @param { IntegrationMetaData } init\n\t * @param { MethodName } methodName\n\t * @param { MethodType } methodType\n\t * @param { InsertLocations } location\n\t * @param { string } type\n\t * @param { Intent } intent\n\t * @param { Function } callback\n\t */\n\tconstructor(init, methodName, methodType, location, type, intent, callback) {\n\t\tconst targetLocation = intent || location;\n\n\t\tvalidateInitIsAnObject(init, 'init');\n\t\tvalidateLocationName(methodType, targetLocation);\n\n\t\tthis.uniqueId = createUniqueId();\n\n\t\tthis.init = init;\n\t\tthis.methodType = methodType;\n\t\tthis.targetLocation = targetLocation;\n\t\tthis.destinationLocation = null;\n\t\tthis.defaultLocation = location;\n\n\t\tthis.type = type;\n\n\t\tthis.integrationCall = callback;\n\n\t\tthis.getInsertSite = this.getInsertSite.bind(this);\n\t\tthis.apply = this.apply.bind(this);\n\n\t\tthis.timingKey = `${this.init.integrationId}-${this.targetLocation}`;\n\t}\n\n\t/**\n\t * @param { HTMLElement } locationElem\n\t * @param {*} locationConfig\n\t * @returns { HTMLElement }\n\t */\n\tasync getInsertSite(locationElem, locationConfig) {\n\t\t// If configured for the location, return the existing location when\n\t\t// inserting content so the integration can modify the content rather\n\t\t// than placing additional content.\n\t\tif (locationConfig?.singleLocation) {\n\t\t\tconst queryTargets = [`[data-web-api-id=\"${this.init.integrationId}\"]`];\n\n\t\t\tif (locationConfig?.placement) {\n\t\t\t\tqueryTargets.push(\n\t\t\t\t\t`[data-web-api-placement=\"${locationConfig.placement}\"]`\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tconst existingSite = locationElem?.querySelector(queryTargets.join(''));\n\n\t\t\tif (existingSite) {\n\t\t\t\treturn existingSite;\n\t\t\t}\n\t\t}\n\n\t\t// Otherwise, create a new location and return it to the integration.\n\t\tconst elementType = locationConfig?.elementType\n\t\t\t? locationConfig.elementType\n\t\t\t: 'div';\n\n\t\tconst insertSite = document.createElement(elementType);\n\t\tinsertSite.setAttribute('data-web-api-id', this.init.integrationId);\n\n\t\tif (locationConfig?.placement) {\n\t\t\tinsertSite.setAttribute(\n\t\t\t\t'data-web-api-placement',\n\t\t\t\tlocationConfig.placement\n\t\t\t);\n\t\t}\n\n\t\tinsertSite.setAttribute('data-web-api-unique-id', this.uniqueId);\n\n\t\tlet additionalClasses = '';\n\t\tlet classes = '';\n\n\t\t// Allow locations to have specific styling applied based on a configuration option.\n\t\tif (locationConfig) {\n\t\t\tif (locationConfig.style) {\n\t\t\t\tinsertSite.setAttribute('style', locationConfig.style);\n\t\t\t}\n\t\t\tif (locationConfig.responsiveSrpClasses && await hasDataBusInventory()) {\n\t\t\t\tclasses = `${locationConfig.responsiveSrpClasses}`;\n\t\t\t} else if (\n\t\t\t\tlocationConfig.gridSrpClasses &&\n\t\t\t\thasLegacyGridViewInventory()\n\t\t\t) {\n\t\t\t\tclasses = `${locationConfig.gridSrpClasses}`;\n\t\t\t} else if (locationConfig.vdpClasses && isVdp()) {\n\t\t\t\tadditionalClasses = `${additionalClasses} p-4`;\n\t\t\t\tif (locationElem?.getAttribute('data-list-classes')) {\n\t\t\t\t\tadditionalClasses = locationElem?.getAttribute('data-list-classes');\n\t\t\t\t}\n\t\t\t\tclasses = `${locationConfig.vdpClasses}`;\n\t\t\t} else if (locationConfig.classes) {\n\t\t\t\tclasses = `${locationConfig.classes}`;\n\t\t\t}\n\t\t\tinsertSite.setAttribute(\n\t\t\t\t'class',\n\t\t\t\t`${classes} ${additionalClasses} hidden`\n\t\t\t);\n\t\t}\n\n\t\t// Clear all existing content inside the `data-location` if the location is configured to do so.\n\t\tif (locationConfig?.clearContent) {\n\t\t\twhile (locationElem?.firstChild) {\n\t\t\t\tlocationElem.removeChild(locationElem.firstChild);\n\t\t\t}\n\t\t}\n\n\t\tif (\n\t\t\tlocationConfig?.placement &&\n\t\t\tlocationConfig?.placement === 'first' &&\n\t\t\tlocationElem?.firstChild\n\t\t) {\n\t\t\tlocationElem.insertBefore(insertSite, locationElem.firstChild);\n\t\t} else {\n\t\t\tlocationElem?.appendChild(insertSite);\n\t\t}\n\n\t\treturn insertSite;\n\t}\n\n\t/**\n\t * @param { ?{uuid:string} & AnyObject } locationData\n\t * @param { ?Boolean } isVehicleEvent\n\t * @returns { Promise }\n\t */\n\tasync apply(locationData, isVehicleEvent) {\n\t\tconst start = Date.now();\n\n\t\tconst config = await getConfig(this.init, false, false);\n\n\t\tif (\n\t\t\tconfig?.useCustomInsertLocations &&\n\t\t\tallowedCustomInsertLocations.includes(this.targetLocation) &&\n\t\t\t!this.targetLocation.endsWith('-custom')\n\t\t) {\n\t\t\tthis.targetLocation = `${this.targetLocation}-custom`;\n\t\t}\n\n\t\t// Get the location elements first (which can error)\n\t\t// so that errors are propagated to the user right away.\n\t\t// Then call the callbacks asynchronously to ensure callers can\n\t\t// support it. They'll need to as dynamic content is added to\n\t\t// the document.\n\t\tlet location = null;\n\n\t\t// Handle 'buttons' or other type of mapping\n\t\tif (\n\t\t\tthis.methodType === MODIFY_CTA ||\n\t\t\tthis.methodType === RESTRICTIVELY_MODIFY_CTA\n\t\t) {\n\t\t\t// Obtain any applicable content mappings.\n\t\t\tconst mappings = await getContentMappings(this.init);\n\t\t\t// Fallback to support the content-mapping schema in tps\n\t\t\tconst buttonMappings = mappings.buttons || mappings.button;\n\n\t\t\tif (buttonMappings) {\n\t\t\t\t// If the mappings include an entry for this source location,\n\t\t\t\t// update the location to use the destination target instead.\n\t\t\t\tObject.entries(buttonMappings).forEach(mapping => {\n\t\t\t\t\tconst [source, destination] = mapping;\n\t\t\t\t\tif (source === this.targetLocation && destination) {\n\t\t\t\t\t\tlocation = updateLocations[destination]\n\t\t\t\t\t\t\t? updateLocations[destination]\n\t\t\t\t\t\t\t: new VehicleLocation(destination);\n\t\t\t\t\t\tthis.destinationLocation = destination;\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\n\t\t\t// Wait for the inventory data to have loaded first\n\t\t\t// Before checking if a CTA location exists on the page\n\t\t\tawait hasInventoryData();\n\n\t\t\tif (\n\t\t\t\t!location ||\n\t\t\t\t(location.name !== 'hidden' &&\n\t\t\t\t\t!document.querySelector(`[data-location=\"${location.name}\"]`))\n\t\t\t) {\n\t\t\t\t// If no existing button is targeted, insert a new button instead.\n\t\t\t\tlocation = insertLocations[this.defaultLocation];\n\t\t\t\tthis.methodType = INSERT_CTA;\n\t\t\t}\n\t\t} else if (this.methodType === INSERT_CTA) {\n\t\t\tlocation = insertLocations[this.defaultLocation];\n\t\t} else if (this.methodType === INSERT) {\n\t\t\tlocation = insertLocations[this.targetLocation];\n\n\t\t\t// Currently supporting existing 'update' method.\n\t\t\t// This will be deprecated and removed in a future release.\n\t\t} else if (this.methodType === UPDATE) {\n\t\t\tlocation = updateLocations[this.targetLocation];\n\t\t} else if (this.methodType === MODIFY_LINKS) {\n\t\t\t// Obtain any applicable content mappings.\n\t\t\tconst linkMappings = (await getContentMappings(this.init)).links || {};\n\t\t\tconst currentLinkTargets = linkMappings[this.targetLocation] || [];\n\n\t\t\t// We check if the WISE schema has the link mapping\n\t\t\t// for the specified target and the links exist on the site\n\t\t\tif (currentLinkTargets && currentLinkTargets.length) {\n\t\t\t\t// Filter out targets which are currently available in the given page\n\t\t\t\tconst locationTargetsInPage = currentLinkTargets\n\t\t\t\t\t.map(target => document.querySelectorAll(`a[href^=\"${target}\"]`))\n\t\t\t\t\t.filter(target => target.length)\n\t\t\t\t\t.reduce((acc, current) => [...acc, ...current], []);\n\n\t\t\t\tif (locationTargetsInPage.length) {\n\t\t\t\t\tlocation = new PageLinkLocation(locationTargetsInPage);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif (!location) {\n\t\t\treturn;\n\t\t}\n\n\t\tawait location.isReady();\n\n\t\tconst locationElems = await location.getElements(locationData);\n\t\tconst locationConfig = await location.getConfig();\n\n\t\tconst callCallbacks = () => {\n\t\t\tif (!locationElems) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tlocationElems.forEach(async locationElem => {\n\t\t\t\ttry {\n\t\t\t\t\tconst locationMeta = await location.getMeta(locationElem);\n\n\t\t\t\t\tconst shouldInsertItems = (\n\t\t\t\t\t\tisVehicleEvent &&\n\t\t\t\t\t\tlocationData &&\n\t\t\t\t\t\tlocationData?.uuid === locationMeta?.uuid\n\t\t\t\t\t) ? true\n\t\t\t\t\t: !locationData;\n\n\t\t\t\t\tconst isUnique = locationElem?.querySelectorAll(\n\t\t\t\t\t\t`[data-web-api-unique-id=\"${this.uniqueId}\"]`\n\t\t\t\t\t)?.length === 0\n\n\t\t\t\t\tif (!(shouldInsertItems && isUnique)) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\tawait location.prepareLocation(locationElem);\n\n\t\t\t\t\t// Modify or Insert Button\n\t\t\t\t\tif (\n\t\t\t\t\t\tthis.methodType === INSERT_CTA ||\n\t\t\t\t\t\tthis.methodType === MODIFY_CTA ||\n\t\t\t\t\t\tthis.methodType === RESTRICTIVELY_MODIFY_CTA ||\n\t\t\t\t\t\tthis.methodType === MODIFY_LINKS\n\t\t\t\t\t) {\n\t\t\t\t\t\t// Call the integration with the location metadata\n\t\t\t\t\t\t// so it can specify a set of options to override\n\t\t\t\t\t\t// existing button behaviors.\n\t\t\t\t\t\tconst options = this.integrationCall(locationMeta);\n\n\t\t\t\t\t\t// Modify the existing button element in place.\n\t\t\t\t\t\tif (typeof options === 'object') {\n\t\t\t\t\t\t\tlet allowedOptions = options;\n\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tthis.methodType === RESTRICTIVELY_MODIFY_CTA ||\n\t\t\t\t\t\t\t\tthis.methodType === MODIFY_LINKS\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tconst {\n\t\t\t\t\t\t\t\t\thref,\n\t\t\t\t\t\t\t\t\ttarget,\n\t\t\t\t\t\t\t\t\tonclick,\n\t\t\t\t\t\t\t\t\tpopover,\n\t\t\t\t\t\t\t\t\tattributes,\n\t\t\t\t\t\t\t\t\t...restrictedAttrs\n\t\t\t\t\t\t\t\t} = options;\n\n\t\t\t\t\t\t\t\t// We only allow the modification of the following\n\t\t\t\t\t\t\t\t// attributes for button intents which only allow limited attr to be updated\n\t\t\t\t\t\t\t\tallowedOptions = {\n\t\t\t\t\t\t\t\t\thref,\n\t\t\t\t\t\t\t\t\ttarget,\n\t\t\t\t\t\t\t\t\tonclick,\n\t\t\t\t\t\t\t\t\tpopover,\n\t\t\t\t\t\t\t\t\tattributes\n\t\t\t\t\t\t\t\t};\n\n\t\t\t\t\t\t\t\tconst restrictedAttrsList = Object.keys(restrictedAttrs || {});\n\n\t\t\t\t\t\t\t\tif (restrictedAttrsList.length) {\n\t\t\t\t\t\t\t\t\tconst restrictedAttrNames = restrictedAttrsList.join(', ');\n\t\t\t\t\t\t\t\t\tlog(\n\t\t\t\t\t\t\t\t\t\tthis.init.integrationId,\n\t\t\t\t\t\t\t\t\t\t`tried to modify the following button attributes ${restrictedAttrNames} of ${location.name} which is not allowed.`\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tconst buttonMarkup = applyButtonOverrides(\n\t\t\t\t\t\t\t\t\tthis,\n\t\t\t\t\t\t\t\t\tlocationElem,\n\t\t\t\t\t\t\t\t\tallowedOptions,\n\t\t\t\t\t\t\t\t\tthis.methodType !== MODIFY_LINKS\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\tactivateModules(buttonMarkup);\n\t\t\t\t\t\t\t} else if (this.methodType === INSERT_CTA) {\n\t\t\t\t\t\t\t\tconst newLocation = document.createElement('a');\n\t\t\t\t\t\t\t\tappend(\n\t\t\t\t\t\t\t\t\tthis.init,\n\t\t\t\t\t\t\t\t\tawait this.getInsertSite(locationElem, locationConfig),\n\t\t\t\t\t\t\t\t\tapplyButtonOverrides(\n\t\t\t\t\t\t\t\t\t\tthis,\n\t\t\t\t\t\t\t\t\t\tnewLocation,\n\t\t\t\t\t\t\t\t\t\tallowedOptions\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\tactivateModules(newLocation);\n\t\t\t\t\t\t\t} else if (this.methodType === MODIFY_CTA) {\n\t\t\t\t\t\t\t\tlet newInsertSite;\n\t\t\t\t\t\t\t\tconst locationIsLink = locationElem.nodeName === 'A';\n\n\t\t\t\t\t\t\t\t// 1. If type of location is an anchor tag, create a wrapper div.\n\t\t\t\t\t\t\t\tif (locationIsLink) {\n\t\t\t\t\t\t\t\t\tnewInsertSite = await this.getInsertSite(null, locationConfig);\n\t\t\t\t\t\t\t\t\tlocationElem.parentNode.appendChild(newInsertSite);\n\n\t\t\t\t\t\t\t\t\t// 2. Apply the target location attributes to the wrapper div.\n\t\t\t\t\t\t\t\t\tnewInsertSite = applyButtonWrapperOverrides(\n\t\t\t\t\t\t\t\t\t\tthis,\n\t\t\t\t\t\t\t\t\t\tnewInsertSite,\n\t\t\t\t\t\t\t\t\t\tlocationElem.getAttribute('data-location')\n\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\t// 3. Remove the data-location from the original CTA because it's now on the wrapper div.\n\t\t\t\t\t\t\t\t\tif (locationElem.getAttribute('data-location')) {\n\t\t\t\t\t\t\t\t\t\tlocationElem.removeAttribute('data-location');\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tconst locationIsButton = locationElem.nodeName === 'BUTTON';\n\t\t\t\t\t\t\t\tlet newInsertAnchor;\n\t\t\t\t\t\t\t\tif (locationIsButton) {\n\t\t\t\t\t\t\t\t\tnewInsertAnchor = document.createElement('a')\n\t\t\t\t\t\t\t\t\tlocationElem.replaceWith(newInsertAnchor)\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tlet targetElem;\n\t\t\t\t\t\t\t\tif (locationIsLink) {\n\t\t\t\t\t\t\t\t\ttargetElem = locationElem;\n\t\t\t\t\t\t\t\t} else if (locationIsButton) {\n\t\t\t\t\t\t\t\t\ttargetElem = newInsertAnchor;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\ttargetElem = locationElem.querySelector('a');\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// 4. Still apply the provided CTA options to the original CTA element.\n\t\t\t\t\t\t\t\tconst updatedButton = applyButtonOverrides(\n\t\t\t\t\t\t\t\t\tthis,\n\t\t\t\t\t\t\t\t\ttargetElem,\n\t\t\t\t\t\t\t\t\tallowedOptions,\n\t\t\t\t\t\t\t\t\ttrue, // Is Vehicle CTA\n\t\t\t\t\t\t\t\t\t!locationIsLink // Include WIAPI data attributes only if target is not an anchor tag.\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\tif (newInsertSite) {\n\t\t\t\t\t\t\t\t\t// 5. Finally, append the updated CTA to the new wrapper div location.\n\t\t\t\t\t\t\t\t\tnewInsertSite.appendChild(updatedButton);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// 6. Activate click handlers for the new content.\n\t\t\t\t\t\t\t\tactivateModules(updatedButton);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (this.methodType === INSERT) {\n\t\t\t\t\t\tconst shouldRenderAsFirstChild = config?.renderAsFirstChild;\n\t\t\t\t\t\tif (shouldRenderAsFirstChild && location.name === VEHICLE_PRICING) {\n\t\t\t\t\t\t\t// insert in the first place\n\t\t\t\t\t\t\tlocationConfig.placement = 'first';\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tthis.integrationCall(\n\t\t\t\t\t\t\tawait this.getInsertSite(locationElem, locationConfig),\n\t\t\t\t\t\t\tlocationMeta\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// Update\n\t\t\t\t\t} else if (this.methodType === UPDATE) {\n\t\t\t\t\t\tlog(\n\t\t\t\t\t\t\t'WARNING: The `API.update` method is deprecated and will soon be removed. Please use `API.insertCallToAction` instead. For details, please visit https://dealerdotcom.github.io/web-integration-api-docs/#api-insertcalltoaction-type-intent-setupfunction-meta'\n\t\t\t\t\t\t);\n\t\t\t\t\t\tthis.integrationCall(locationElem, locationMeta);\n\t\t\t\t\t}\n\n\t\t\t\t\tconst closestLocation = locationElem.closest('[data-location]');\n\t\t\t\t\tclosestLocation?.classList?.remove('hide', 'hidden');\n\n\t\t\t\t\ttrackAPIMethods(this.init, {\n\t\t\t\t\t\tmethodType: this.methodType,\n\t\t\t\t\t\tstatus: 'Success',\n\t\t\t\t\t\tlocationName: this.targetLocation\n\t\t\t\t\t});\n\n\t\t\t\t\tconst end = Date.now();\n\t\t\t\t\ttrackTiming(this.methodType, this.timingKey, end - start);\n\t\t\t\t} catch (err) {\n\t\t\t\t\tconst end = Date.now();\n\t\t\t\t\tlog(\n\t\t\t\t\t\tthis.init.integrationId,\n\t\t\t\t\t\t`Failed to edit into ${this.targetLocation} and took ${\n\t\t\t\t\t\t\tend - start\n\t\t\t\t\t\t}ms to fail... ${err}`\n\t\t\t\t\t);\n\t\t\t\t\ttrackAPIMethods(this.init, {\n\t\t\t\t\t\tmethodType: this.methodType,\n\t\t\t\t\t\tstatus: 'Failed',\n\t\t\t\t\t\tlocationName: this.targetLocation,\n\t\t\t\t\t\tmessage: err\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t});\n\t\t};\n\t\tsetTimeout(callCallbacks, 0);\n\t}\n}\n","import { PRIMARY_BANNER } from './constants';\nimport { enableInlineBanner } from '../utils/helpers';\nimport { PRIMARY_PLACEHOLDER_INTEGRATIONS } from './constants';\n\nconst insertions = new Set();\nconst listingsPlaceholderPrefix = 'listings-placeholder';\nlet allListingElems = null;\nlet observerPromise = null;\n\n// 1. Get the listing locations\nconst checkAndResolve = (listingElems, observer, resolve) => {\n\tif (listingElems.size >= 5) {\n\t\tif (observer) {\n\t\t\tobserver.disconnect();\n\t\t}\n\t\tallListingElems = listingElems;\n\t\tresolve(listingElems);\n\t}\n};\n\nconst getAllListingLocationElems = () => {\n\tif (observerPromise) {\n\t\treturn observerPromise;\n\t}\n\tconst selector = `[data-location*=\"${listingsPlaceholderPrefix}\"]`;\n\tconst elems = document.querySelectorAll(selector);\n\tconst listingElems = new Map();\n\telems.forEach(newElem => {\n\t\tconst location = newElem.getAttribute('data-location');\n\t\tconst existListingElems = listingElems.get(location) || [];\n\t\tlistingElems.set(location, [...existListingElems, newElem]);\n\t});\n\n\tobserverPromise = new Promise(resolve => {\n\t\t// Check if we already have all 5 locations\n\t\tcheckAndResolve(listingElems, null, resolve);\n\t\tconst observer = new MutationObserver(mutationsList => {\n\t\t\tmutationsList.forEach(mutation => {\n\t\t\t\tif (mutation.type === 'childList') {\n\t\t\t\t\tconst newElems = mutation.target.querySelectorAll(selector);\n\t\t\t\t\tnewElems.forEach(newElem => {\n\t\t\t\t\t\tconst location = newElem.getAttribute('data-location');\n\t\t\t\t\t\tconst existListingElems = listingElems.get(location) || [];\n\t\t\t\t\t\tlistingElems.set(location, [...existListingElems, newElem]);\n\t\t\t\t\t});\n\t\t\t\t\tcheckAndResolve(listingElems, observer, resolve);\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t\tconst container = document.querySelector('.srp-wrapper-listing');\n\t\tif (container) {\n\t\t\tobserver.observe(container, { childList: true, subtree: true });\n\t\t}\n\t});\n\treturn observerPromise;\n};\n\n// 2. Check if a listings location or other type of location\nconst isListingLocation = location => {\n\treturn !!location?.includes(listingsPlaceholderPrefix);\n};\n\n// 3.) Check if location is already used by an integration\nexport const isInsertedListingLocation = location => {\n\treturn insertions.has(location);\n};\n\n// 4.) Set location after use so the next integration does not use it.\nexport const setInsertedListingLocation = location => {\n\tif (!isListingLocation(location)) {\n\t\treturn;\n\t}\n\tinsertions.add(location);\n};\n\n// 5.) Only allow specific integrations to insert into the primary placeholder\nexport const isPrimaryPlaceholderIntegration = integrationId => {\n\treturn PRIMARY_PLACEHOLDER_INTEGRATIONS.includes(integrationId);\n};\n\n// 6.) Check if the target location can be inserted into.\nconst isInsertableToPlaceholder = async (init, location) => {\n\t// Placeholder 5 is always insertable\n\tif (location === `${listingsPlaceholderPrefix}-5`) {\n\t\treturn true;\n\t}\n\n\tif (location === `${listingsPlaceholderPrefix}-1`) {\n\t\t// Always allow integrations listed in the PRIMARY_PLACEHOLDER_INTEGRATIONS array to insert into the primary location.\n\t\tif (isPrimaryPlaceholderIntegration(init.integrationId)) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (!(window.DDC.PrivateAPI.hasPrimaryPlaceholderIntegration || allListingElems)) {\n\t\t\tallListingElems = await getAllListingLocationElems();\n\t\t}\n\n\t\t// Only insertable if not a PRIMARY_PLACEHOLDER_INTEGRATIONS integration and not already occupied by another integration.\n\t\treturn !(\n\t\t\twindow.DDC.PrivateAPI.hasPrimaryPlaceholderIntegration ||\n\t\t\tisInsertedListingLocation(location)\n\t\t);\n\t}\n\n\tif (!allListingElems) {\n\t\tallListingElems = await getAllListingLocationElems();\n\t}\n\n\tconst elems = allListingElems?.get(location) || [];\n\n\t// Can not insert if not found location or location was occupied by another WIAPI\n\tif (elems.length === 0 || isInsertedListingLocation(location)) {\n\t\treturn false;\n\t}\n\n\treturn true;\n};\n\n// 7.) Get the real target location to insert into, which may be the current location or the next placeholder location.\nconst getFirstAvailableListingLocation = async (init, currentLocation) => {\n\tconst isInsertable = await isInsertableToPlaceholder(init, currentLocation);\n\n\t// Return current location if it insertable\n\tif (isInsertable) {\n\t\treturn currentLocation;\n\t}\n\n\tif (!allListingElems) {\n\t\tallListingElems = await getAllListingLocationElems();\n\t}\n\n\tconst allAvailableListingLocations = Array.from(allListingElems.keys());\n\n\t// Sort available locations from listing-placeholder one to five\n\tallAvailableListingLocations.sort();\n\n\t// Find the first available location that insertable and not a current location\n\t// because already check that current location is not insertable and no need to check again\n\tconst nextLocation = allAvailableListingLocations.find(\n\t\tavailableLocation =>\n\t\t\t!isInsertedListingLocation(availableLocation) &&\n\t\t\tavailableLocation !== currentLocation &&\n\t\t\tisInsertableToPlaceholder(init, availableLocation)\n\t);\n\n\tif (!nextLocation) {\n\t\treturn `${listingsPlaceholderPrefix}-5`;\n\t}\n\n\treturn nextLocation;\n};\n\nexport const calculateTargetListingLocation = async (init, location) => {\n\tlet targetLocation = location;\n\n\t// Default to listings-placeholder-1 for primary banner before calculating available locations\n\tif (targetLocation === PRIMARY_BANNER && enableInlineBanner()) {\n\t\ttargetLocation = `${listingsPlaceholderPrefix}-1`;\n\t}\n\n\tif (!isListingLocation(targetLocation)) {\n\t\treturn targetLocation;\n\t}\n\n\t// Calculate available location \n\tconst availableLocation = await getFirstAvailableListingLocation(\n\t\tinit,\n\t\ttargetLocation\n\t);\n\n\tsetInsertedListingLocation(availableLocation);\n\n\treturn availableLocation;\n};\n","import { Editor } from './editor';\nimport { trackAPIMethods } from '../tracking';\nimport {\n\tINSERT,\n\tMODIFY_CTA,\n\tRESTRICTIVELY_MODIFY_CTA,\n\tMODIFY_LINKS,\n\tUPDATE\n} from './constants';\nimport { allowSelectedUpdatesToButtonIntents } from './locations';\nimport { calculateTargetListingLocation } from './listingLocationInsertion';\nimport { getConfig } from '../utils/load-configs';\nimport { log } from '../log';\nimport '../../types/edit.d'\n\nconst standardModifiers = new Set();\nconst vehicleModifiers = new Set();\nexport const transientVehicleModifiers = new Set();\n\n/**\n * For each stored Editor with the StandardModifier label,\n * Check if the Editor should be invoked with `Editor.apply()`.\n * \n * @param { InvokeStandardInsertsParams? } settings \n */\nexport const invokeStandardInserts = (settings = {}) => {\n\tstandardModifiers.forEach(insert => {\n\t\tconst { exclude, include } = settings;\n\n\t\tif (!insert.targetLocation) {\n\t\t\tlog('No target location was set for insert:', insert);\n\t\t\treturn;\n\t\t}\n\n\t\t// Skip invokation if the targetLocation is excluded\n\t\tif (exclude && insert.targetLocation.startsWith(exclude)) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Skip invokation if the targetLocation is not included\n\t\tif (include && !insert.targetLocation.startsWith(include)) {\n\t\t\treturn;\n\t\t}\n\n\t\tinsert.apply();\n\t});\n};\n\n/**\n * For each stored Editor with the StandardModifier label,\n * invoke with `Editor.apply()`.\n */\nexport const invokeStandardUpdates = () => {\n\tstandardModifiers.forEach(update => {\n\t\tupdate.apply();\n\t});\n};\n\n/**\n * For each stored Editor with the transientVehicleModifiers or vehicleModifiers label,\n * invoke with `Editor.apply()` with the `vehicleData` and a `true` `isVehicleEvent`\n * \n * @param { InvokeVehicleInsertsAndUpdatesParams } vehicleData \n */\nexport const invokeVehicleInsertsAndUpdates = vehicleData => {\n\ttransientVehicleModifiers.forEach(insert => {\n\t\tinsert.apply(vehicleData, true);\n\t});\n\tvehicleModifiers.forEach(insert => {\n\t\tinsert.apply(vehicleData, true);\n\t});\n};\n\nconst edit = (\n\tmethodName,\n\tmethodType,\n\tinit,\n\tlocation,\n\ttype,\n\tintent,\n\tcallback,\n\tsubscribe = true\n) => {\n\tconst editor = new Editor(\n\t\tinit,\n\t\tmethodName,\n\t\tmethodType,\n\t\tlocation,\n\t\ttype,\n\t\tintent,\n\t\tcallback\n\t);\n\n\tconst isNewSrpVehicleLocation =\n\t\twindow.DDC.InvData && location !== null && location.startsWith('vehicle');\n\n\tif (subscribe) {\n\t\tif (\n\t\t\tmethodType === INSERT ||\n\t\t\t[UPDATE, MODIFY_CTA, RESTRICTIVELY_MODIFY_CTA].includes(methodType)\n\t\t) {\n\t\t\tif (location.startsWith('vehicle')) {\n\t\t\t\tvehicleModifiers.add(editor);\n\t\t\t} else {\n\t\t\t\tstandardModifiers.add(editor);\n\t\t\t}\n\t\t}\n\t} else if (!subscribe && isNewSrpVehicleLocation) {\n\t\ttransientVehicleModifiers.add(editor);\n\t}\n\n\teditor.apply();\n\n\tconst locationName = intent || location;\n\ttrackAPIMethods(init, { methodType, locationName });\n\n\treturn editor;\n};\n\nexport const insert = async (init, location, callback, subscribe = true) => {\n\tif (typeof init !== 'object' || init === null) {\n\t\tthrow new Error(`init must be an object. Got: ${init}.`);\n\t}\n\n\tconst targetLocation = await calculateTargetListingLocation(init, location);\n\n\treturn edit(\n\t\t'insert',\n\t\tINSERT,\n\t\tinit,\n\t\ttargetLocation,\n\t\tnull,\n\t\tnull,\n\t\tcallback,\n\t\tsubscribe\n\t);\n};\n\nexport const insertOnce = async (init, location, callback) => {\n\treturn insert(init, location, callback, false);\n};\n\nexport const insertCallToAction = async (\n\tinit,\n\ttype,\n\tintent,\n\tcallback,\n\tsubscribe = true\n) => {\n\tlet location = null;\n\tlet ctaIntent;\n\n\tconst config = await getConfig(init);\n\n\tif (type === 'button') {\n\t\tlocation = config?.useCustomInsertLocations\n\t\t\t? 'vehicle-ctas-custom'\n\t\t\t: 'vehicle-ctas';\n\t\tctaIntent = `vehicle-${intent}-button`;\n\t}\n\n\tconst methodType = allowSelectedUpdatesToButtonIntents.includes(intent)\n\t\t? RESTRICTIVELY_MODIFY_CTA\n\t\t: MODIFY_CTA;\n\n\treturn edit(\n\t\t'insertCallToAction',\n\t\tmethodType,\n\t\tinit,\n\t\tlocation,\n\t\ttype,\n\t\tctaIntent,\n\t\tcallback,\n\t\tsubscribe\n\t);\n};\n\nexport const insertCallToActionOnce = async (init, type, intent, callback) => {\n\treturn insertCallToAction(init, type, intent, callback, false);\n};\n\nexport const update = async (init, location, callback, subscribe = true) => {\n\treturn edit(\n\t\t'update',\n\t\tUPDATE,\n\t\tinit,\n\t\tlocation,\n\t\tnull,\n\t\tnull,\n\t\tcallback,\n\t\tsubscribe\n\t);\n};\n\nexport const updateOnce = async (init, location, callback) => {\n\treturn update(init, location, callback, false);\n};\n\nexport const updateLink = (init, intent, callback, subscribe = false) => {\n\treturn edit(\n\t\t'updateLink',\n\t\tMODIFY_LINKS,\n\t\tinit,\n\t\tnull,\n\t\t'links',\n\t\tintent,\n\t\tcallback,\n\t\tsubscribe\n\t);\n};\n","import { append } from './utils/append';\nimport { createMenuMarkup } from './utils/markup';\nimport { getPageMetaData } from './utils/get-page-meta-data';\nimport { insert } from './edit';\nimport { trackAPIMethods } from './tracking';\nimport { waitForMenu } from './utils/wait-for';\n\nconst DEVICE_TYPES = ['mobile'];\nconst POSITIONS = ['top', 'bottom'];\nconst TARGETS = ['primary-menu'];\n\n// validate the position\n// - position: enum{POSITIONS}\nconst validatePosition = position => {\n\tif (!POSITIONS.includes(position)) {\n\t\tthrow new Error(\n\t\t\t`Unsupported menu position: '${position}'. Expected one of: ${POSITIONS.join(\n\t\t\t\t', '\n\t\t\t)}.`\n\t\t);\n\t}\n};\n\n// validate the target\n// - type: enum{TARGETS}\nconst validateTarget = target => {\n\tif (!TARGETS.includes(target)) {\n\t\tthrow new Error(\n\t\t\t`Unsupported menu target: '${target}'. Expected one of: ${TARGETS.join(\n\t\t\t\t', '\n\t\t\t)}.`\n\t\t);\n\t}\n};\n\n// validate the device type\n// - type: enum{DEVICE_TYPES}\nconst validateDeviceType = device => {\n\tif (!DEVICE_TYPES.includes(device)) {\n\t\tthrow new Error(\n\t\t\t`Unsupported device type: '${device}'. Expected one of: ${DEVICE_TYPES.join(\n\t\t\t\t', '\n\t\t\t)}.`\n\t\t);\n\t}\n};\n\n// If the nav type is fragment, remove the insert location from navs of type header\nconst formatFragmentNav = (isFragment) => {\n\tif (isFragment) {\n\t\tconst headersInFragment = document.querySelectorAll('#ddc-mobile-header-nav[data-location=\"primary-menu primary-menu-top primary-menu-bottom\"]');\n\t\theadersInFragment.forEach(headerInFragment => {\n\t\t\theaderInFragment.removeAttribute('data-location');\n\t\t});\n\t}\n};\n\nexport const insertMenuContent = async (init, target, data) => {\n\tconst pageData = await getPageMetaData();\n\n\tvalidateDeviceType(pageData.layoutType);\n\t\n\tconst isFragmentNavType = !!document.querySelector('a[data-href=\"/navigation-fragments/search-navigation-and-contact.htm\"]');\n\tformatFragmentNav(isFragmentNavType);\n\n\tconst dataArray = Array.isArray(data) ? data : [data];\n\tvalidateTarget(target);\n\n\tawait waitForMenu();\n\n\tdataArray.forEach(menuData => {\n\t\tconst { position, callback } = menuData;\n\n\t\tvalidatePosition(position);\n\n\t\tconst location = `${target}-${position}`;\n\n\t\t// Get a new insert location for the menu items\n\t\t// or re-use the existing one if already added.\n\t\tinsert(\n\t\t\tinit,\n\t\t\tlocation,\n\t\t\t(elem, meta) => {\n\t\t\t\t// Remove any existing menu items added by this integration\n\t\t\t\t// so that the new ones can be added instead. This allows\n\t\t\t\t// the integration to update the state of its menu elements.\n\t\t\t\twhile (elem.hasChildNodes()) {\n\t\t\t\t\telem.removeChild(elem.firstChild);\n\t\t\t\t}\n\n\t\t\t\t// Get the new markup and append it to the location.\n\t\t\t\tconst markup = createMenuMarkup({...menuData, isFragmentNavType});\n\n\t\t\t\tif (!markup) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tconst appendedElem = append(init, elem, markup);\n\n\t\t\t\tif (callback) {\n\t\t\t\t\tcallback(appendedElem, meta, menuData);\n\t\t\t\t}\n\t\t\t},\n\t\t\ttrue\n\t\t);\n\n\t\ttrackAPIMethods(init, {\n\t\t\tmethodType: 'insertMenuContent',\n\t\t\tlocation\n\t\t});\n\t});\n\n\treturn true;\n};\n","const modifications = {};\n\n/**\n *\n * @param {string} location - The location where the content needs to be modified\n *\n * The custom wiapiPageModificationUpdate event gets used by osiris widgets like\n * ws-content-cta to modify it's cta based on the schema which gets passed by\n * the web integration. This event is fired only after the wiapi validates the schema\n * and makes sure that a given location is not already modified by a different WI\n */\nconst triggerPageModificationsUpdateEvent = location =>\n\twindow._.debounce(() => {\n\t\twindow.dispatchEvent(\n\t\t\tnew CustomEvent('wiapiPageModificationUpdate', {\n\t\t\t\tdetail: {\n\t\t\t\t\tlocation\n\t\t\t\t}\n\t\t\t})\n\t\t);\n\t}, 100);\n\nconst validateIfLocationIsNotAlreadyModified = location => {\n\tif (!location) {\n\t\tthrow new Error('Location is required to set a modification.');\n\t}\n\tif (modifications[location]) {\n\t\tthrow new Error(\n\t\t\t`The location '${location}' has already been modified by integration '${modifications[location].integration}'.`\n\t\t);\n\t}\n};\n\nexport const setPageLevelModification = (\n\tintegration,\n\tlocation,\n\tmodifierObject\n) => {\n\tvalidateIfLocationIsNotAlreadyModified(location);\n\n\tmodifications[location] = { integration, ...modifierObject };\n\ttriggerPageModificationsUpdateEvent(location)();\n};\n\nexport const getPageLevelModifications = location =>\n\t!location ? modifications : modifications[location];\n","// import jsDoc types for IntelliSense\nimport '../../types/index.d';\n\nimport { getPageMetaData } from './get-page-meta-data';\nimport { isWIAPILoaded } from './wait-for';\n\n// TODO: Consider making a 'WIAPI Features' or 'WIAPI Settings' tool in WISE\n// where we can enable or disable platform level features based on the needs of\n// integrations that are enabled or disabled.\n\nconst KEY_USER_SHOW_PAYMENTS = 'userShowPayments';\nconst KEY_WIAPI_SETTINGS = 'wiapiSettings';\n\n/**\n * This specifies the config fieldName names that are treated as\n * 'settings' in the 'wiapiSettings' local storage object.\n */\nconst FIELDS_WIAPI_SETTINGS = ['showPayments', 'useFilterSortPlaceholders', 'delayLoadVdpFooter'];\n\n/**\n * \tSet to the normalized value unless it's already `true`\n * If it's true, just leave it that way as another integration\n * may have set it to true.\n *\n * @param { any } value\n * @returns { any }\n */\nconst normalize = value => {\n\tif (['true', 'false'].includes(value)) {\n\t\treturn value === 'true';\n\t}\n\treturn value;\n};\n\n/**\n * Helper function for retrieving data from session storage.\n *\n * 1. Get WIAPI settings from session storage.\n * 2. If a `pageName` is passed, get the settings for that specific page.\n *\n * @param { ?string } pageName\n * @returns { Promise }\n */\nexport const getSettingsFromStorage = pageName => {\n\tconst settings = JSON.parse(sessionStorage.getItem(KEY_WIAPI_SETTINGS)) || {};\n\n\tif (pageName) {\n\t\treturn settings?.[pageName] || {};\n\t}\n\n\treturn settings;\n};\n\n/**\n * Get WIAPI configuration settings,\n *\n * 1. Wait for WIAPI to load.\n * 2. Get WIAPI settings.\n * * If a `pageName` is passed, get the settings for that specific page.\n *\n * @param { ?string } pageName\n * @returns { Promise }\n */\nexport const getSettings = async pageName => {\n\tawait isWIAPILoaded();\n\treturn getSettingsFromStorage(pageName);\n};\n\nexport const getUserShowPayments = () => {\n\tconst showPayments =\n\t\tJSON.parse(localStorage.getItem(KEY_USER_SHOW_PAYMENTS)) || {};\n\treturn showPayments?.show;\n};\n\n/**\n * Create a NEW WIAPI settings object in session storage.\n *\n * **This overwrites the WIAPI object in storage**\n * @param { AnyObject } settings\n * @returns\n */\nexport const setSettings = settings => {\n\treturn sessionStorage.setItem(KEY_WIAPI_SETTINGS, JSON.stringify(settings));\n};\n\n/**\n * Update stored WIAPI settings.\n *\n * 1. GET: WIAPI settings from session storage.\n * 2. UPDATE: WIAPI settings with new values.\n * 3. SET: WIAPI settings in session storage.\n *\n * @param { string } name\n * @param { any } value\n * @param { boolean } force\n * @returns { void }\n */\nexport const addToSettings = async (name, value, force = false) => {\n\tconst pageData = await getPageMetaData();\n\tconst { pageName } = pageData;\n\n\tif (!pageName) {\n\t\treturn;\n\t}\n\tconst settings = getSettingsFromStorage();\n\tconst normalizedValue = normalize(value);\n\n\tif (!settings[pageName]) {\n\t\tsettings[pageName] = {};\n\t}\n\tif (\n\t\tnormalizedValue !== undefined &&\n\t\t(force || settings[pageName][name] !== true)\n\t) {\n\t\tsettings[pageName][name] = normalizedValue;\n\t\tsetSettings(settings);\n\t}\n};\n\n/**\n * Specify field names on integrations that are then copied into the 'wiapiSettings' local storage\n * as 'features' available to other widgets and parts of the system to reference when rendering.\n *\n * Example use case:\n *\n * On the SRP, the layout of the filters/sort area changes when certain integrations are\n * loaded and need placements in this area to accommodate their needs. If these integrations\n * are not loaded, a different layout is required. This functionality allows a field in the integration's\n * config to inform the SRP widgets in a loosely coupled manner about the features the WIAPI is expecting\n * to have available, to dictate how the SRP layout and WIAPI placeholder options are presented.\n *\n * @param { AnyObject[] } fields\n * @returns { true }\n */\nexport const updateSettingsFromConfig = fields => {\n\tFIELDS_WIAPI_SETTINGS.forEach(async settingName => {\n\t\tif (fields[settingName] !== undefined) {\n\t\t\taddToSettings(settingName, fields[settingName]);\n\t\t}\n\t});\n\n\treturn true;\n};\n","import {\n\tvalidateNonZeroLengthString,\n\tvalidateTypeMap\n} from '../utils/validator';\nimport { trackAPIMethods } from '../tracking';\nimport { featureFlags } from '../utils/feature-flags';\nimport {\n\tnormalizeIntegrationId,\n\tnormalizeIntegrationType\n} from '../utils/normalize-id';\nimport { log } from '../log';\nimport '../../types/init.d';\n\nexport class Loader {\n\n\t/**\n\t * @param { string | Init } init \n\t * @param { string } src URL point to the asset to load.\n\t * @param { 'css'|'js' } type The type of file loaded from `src` either javascript or css.\n\t * @param { Map} attr Map of HTML attributes.\n\t * @param { boolean } isIntegrationLoad \n\t */\n\tconstructor(init, src, type, attr, isIntegrationLoad) {\n\t\t// Type validation\n\t\tconst integrationId = typeof init === 'string' ? init : init.integrationId;\n\t\tconst integrationType =\n\t\t\ttypeof init === 'string' ? init : init.integrationType;\n\t\tvalidateNonZeroLengthString(integrationId, 'integrationId');\n\t\tvalidateNonZeroLengthString(src, 'src');\n\t\tvalidateNonZeroLengthString(type, 'type');\n\t\tvalidateTypeMap(attr, 'attributes');\n\n\t\t// instanced values\n\t\t/** @type { Init } */\n\t\tthis.init = {\n\t\t\tintegrationId: normalizeIntegrationId(integrationId),\n\t\t\tintegrationType: normalizeIntegrationType(integrationType)\n\t\t};\n\t\tthis.src = src;\n\t\tthis.fileType = type;\n\t\tthis.attr = attr;\n\t\tthis.immutableAttr = [\n\t\t\t'data-web-api-id',\n\t\t\t'data-web-api-type',\n\t\t\t'async',\n\t\t\t'type',\n\t\t\t'src'\n\t\t];\n\t\tthis.methodType = this.fileType\n\t\t\t? `load${this.fileType.toUpperCase()}`\n\t\t\t: 'Load';\n\t\tthis.isIntegrationLoad = isIntegrationLoad;\n\t\tthis.load = this.load.bind(this);\n\t\tthis.invoked = false;\n\t}\n\n\t/**\n\t * Load an asset onto the page.\n\t * \n\t * @param { 'all' | 'js' | 'css' } scope Scope of files to load.\n\t */\n\tload(scope) {\n\t\tif (this.invoked) {\n\t\t\treturn new Promise(resolve => {\n\t\t\t\tresolve(`Resource ${this.src} already loaded.`);\n\t\t\t});\n\t\t}\n\n\t\t/**\n\t\t * @param { 'Success' | 'Failed' } result \n\t\t */\n\t\tconst trackLoaderResult = result => {\n\t\t\tconst methodType = this.isIntegrationLoad\n\t\t\t\t? 'Integration Loaded'\n\t\t\t\t: this.methodType;\n\t\t\ttrackAPIMethods(this.init, {\n\t\t\t\tmethodType,\n\t\t\t\tload: this.src,\n\t\t\t\tstatus: result\n\t\t\t});\n\t\t};\n\n\t\tconst insertTag = () => {\n\t\t\tthis.invoked = true;\n\t\t\treturn new Promise((resolve, reject) => {\n\t\t\t\tconst tag = this.fileType === 'js' ? 'script' : 'link';\n\t\t\t\tconst tagElement = document.createElement(tag);\n\t\t\t\ttagElement.setAttribute('data-web-api-id', this.init.integrationId);\n\t\t\t\ttagElement.setAttribute('data-web-api-type', this.init.integrationType);\n\n\t\t\t\tswitch (tag) {\n\t\t\t\t\tcase 'script':\n\t\t\t\t\t\ttagElement.type = 'text/javascript';\n\t\t\t\t\t\ttagElement.src = this.src;\n\t\t\t\t\t\ttagElement.async = true;\n\t\t\t\t\t\tif (featureFlags.fetchPriorityJS) {\n\t\t\t\t\t\t\ttagElement.setAttribute(\n\t\t\t\t\t\t\t\t'fetchpriority',\n\t\t\t\t\t\t\t\tfeatureFlags.fetchPriorityJS\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tthis.attr.forEach((attrValue, attrKey) => {\n\t\t\t\t\t\t\tswitch (attrKey) {\n\t\t\t\t\t\t\t\tcase 'priority': {\n\t\t\t\t\t\t\t\t\t// Skip this attribute\n\t\t\t\t\t\t\t\t\t// `priority` is used to set location of the script\n\t\t\t\t\t\t\t\t\t// [head,body,standard]\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tcase 'jstype':\n\t\t\t\t\t\t\t\tcase 'type': {\n\t\t\t\t\t\t\t\t\t// Don't allow the 'type' attribute to be overridden, unless it's a type of module.\n\t\t\t\t\t\t\t\t\tif(attrValue === 'module') {\n\t\t\t\t\t\t\t\t\t\ttagElement.setAttribute('type', 'module')\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tcase 'synchronicity': {\n\t\t\t\t\t\t\t\t\tif(attrValue === 'async') {\n\t\t\t\t\t\t\t\t\t\ttagElement.setAttribute('async', 'async')\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tdefault: {\n\t\t\t\t\t\t\t\t\tif (!this.immutableAttr.includes(attrKey)) {\n\t\t\t\t\t\t\t\t\t\ttagElement.setAttribute(attrKey, attrValue);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t\t/**\n\t\t\t\t\t\t * script assets are only loaded onto the body if either:\n\t\t\t\t\t\t * - they are priority of `standard`\n\t\t\t\t\t\t * - they are a third party integration\n\t\t\t\t\t\t * \n\t\t\t\t\t\t * filter out scripts with a priority of `body` or `head`\n\t\t\t\t\t\t * these are handled in cms-web\n\t\t\t\t\t\t*/\n\t\t\t\t\t\tif (['body', 'head'].includes(this.attr.get('priority'))) {\n\t\t\t\t\t\t\treturn\n\t\t\t\t\t\t}\n\t\t\t\t\t\tdocument.body.appendChild(tagElement);\n\t\t\t\t\t\tbreak;\n\n\t\t\t\t\tcase 'link':\n\t\t\t\t\t\ttagElement.type = 'text/css';\n\t\t\t\t\t\ttagElement.rel = 'stylesheet';\n\t\t\t\t\t\ttagElement.media = 'all';\n\t\t\t\t\t\ttagElement.href = this.src;\n\t\t\t\t\t\tif (featureFlags.fetchPriorityCSS) {\n\t\t\t\t\t\t\ttagElement.setAttribute(\n\t\t\t\t\t\t\t\t'fetchpriority',\n\t\t\t\t\t\t\t\tfeatureFlags.fetchPriorityCSS\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tdocument.head.appendChild(tagElement);\n\t\t\t\t\t\tbreak;\n\n\t\t\t\t\tdefault:\n\t\t\t\t}\n\n\t\t\t\ttagElement.onload = () => {\n\t\t\t\t\tthis.invoked = true;\n\t\t\t\t\ttrackLoaderResult('Success');\n\t\t\t\t\tresolve(this.src);\n\t\t\t\t};\n\n\t\t\t\ttagElement.onerror = () => {\n\t\t\t\t\ttrackLoaderResult('Failed');\n\t\t\t\t\treject(this.src);\n\t\t\t\t};\n\t\t\t}).catch(error => {\n\t\t\t\tlog(\n\t\t\t\t\tthis.init.integrationId,\n\t\t\t\t\t`ERROR: ${error.toString()} failed to load!`\n\t\t\t\t);\n\t\t\t});\n\t\t};\n\n\t\tif (['all', 'css'].includes(scope) && this.fileType === 'css') {\n\t\t\treturn insertTag();\n\t\t}\n\n\t\tif (['all', 'js'].includes(scope) && this.fileType === 'js') {\n\t\t\treturn insertTag();\n\t\t}\n\n\t\tif (this.fileType === 'unknown') {\n\t\t\treturn new Promise((_resolve, reject) => {\n\t\t\t\treject(\n\t\t\t\t\tnew Error(`Failed to load unknown resource type of file ${this.src}`)\n\t\t\t\t);\n\t\t\t});\n\t\t}\n\t\treturn false;\n\t}\n}\n","import { getCookie, setCookie } from '../utils/cookies';\nimport { getUrlParams } from '../utils/helpers';\nimport { Loader } from './loader';\nimport '../../types/init.d'\n\nconst loaders = [];\nconst urlParams = getUrlParams();\n\n/**\n * Infer the file type based on the filename path.\n * \n * @param { string } src \n * @returns { 'css' | 'js' | 'unknown' }\n */\nconst determineFileType = src => {\n\tif (src.includes('.css') || src.includes('/css')) {\n\t\treturn 'css';\n\t}\n\tif (src.includes('.js') || src.includes('/js')) {\n\t\treturn 'js';\n\t}\n\treturn 'unknown';\n};\n\n/**\n * Load an asset onto the page.\n * \n * @param { string | Init } init \n * @param { string } src \n * @param { 'css' | 'js' } type \n * @param { Map } attr \n * @param { boolean } isIntegrationLoad \n * @returns { Promise }\n */\nexport const load = async (\n\tinit,\n\tsrc,\n\ttype,\n\tattr = new Map(),\n\tisIntegrationLoad\n) => {\n\tconst fileType = type || determineFileType(src);\n\tconst loader = new Loader(init, src, fileType, attr, isIntegrationLoad);\n\n\tif (loaders.some(instance => instance.src === src)) {\n\t\treturn true;\n\t}\n\tloaders.push(loader);\n\treturn loader.load(fileType);\n};\n\n/**\n * Load a JS script tag onto the page.\n * \n * @param { string | Init } init \n * @param { string } src \n * @param { Map } attr \n * @param { boolean } isIntegrationLoad \n * @returns { Promise }\n */\nexport const loadJS = async (init, src, attr, isIntegrationLoad = false) => {\n\treturn load(init, src, 'js', attr, isIntegrationLoad);\n};\n\n\n/**\n * Load a CSS link tag onto the page.\n * \n * @param { string | Init } init \n * @param { string } src \n * @returns { Promise }\n */\nexport const loadCSS = async (init, src) => {\n\treturn load(init, src, 'css');\n};\n\n/**\n * Invoke all Loaders withing a given scope.\n * \n * @param { 'all' | 'js' | 'css' } scope Scope of files to load.\n */\nexport const invokeLoaders = scope => {\n\treturn loaders.forEach(loader => {\n\t\tif (!loader.invoked) {\n\t\t\tloader.load(scope);\n\t\t}\n\t});\n};\n\n/**\n * Invoke all Loaders.\n */\nexport const invokeAllLoaders = () => {\n\tinvokeLoaders('all');\n};\n\n// For testing\nexport const test = (init, src) => {\n\tconst id = typeof init === 'string' ? init : init.integrationId;\n\tif (id && src) {\n\t\tsetCookie('WebIntegrationAPITestLoader', `${id}|${src}`);\n\t}\n\tif (urlParams._integrationMode !== undefined) {\n\t\treturn load(init, src);\n\t}\n\treturn false;\n};\n\nconst cookieValue = getCookie('WebIntegrationAPITestLoader');\nif (cookieValue && urlParams._integrationMode !== undefined) {\n\tconst cookie = cookieValue.split('|');\n\tconst id = cookie[0];\n\tconst src = cookie[1];\n\tload(id, src);\n}\n","export const DISABLE_THIRD_PARTY = 'DISABLE_THIRD_PARTY'\nexport const ENABLE_THIRD_PARTY = 'ENABLE_THIRD_PARTY'\nexport const DEBUG_THIRD_PARTY = 'DEBUG_THIRD_PARTY'\nexport const COX_ONLY = 'COX_ONLY'\nexport const RESET_CUSTOM = 'RESET_CUSTOM'\nexport const INVALID_PROTOCOL = 'INVALID_PROTOCOL'\nexport const DEVICE_ENABLEMENT = 'DEVICE_ENABLEMENT'\n\nexport const LOADING_INTEGRATION_JS = 'LOADING_INTEGRATION_JS'","import * as T_ERROR from '../globals'\n\n// Handlers\nconst handleCoxOnly = () => {\n\tthrow new Error('External integrations are disabled due to onlyCoxIntegration mode.')\n}\n\nconst handleDebugThirdParty = () => {\n\tthrow new Error('This integration is disabled because Third Party Debug is enabled.')\n}\n\nconst handleDeviceEnablement = () => {\n\tthrow new Error('Integration disabled for target device.')\n}\n\nconst handleDisableThirdParty = () => {\n\tthrow new Error('Integration disabled due to _onlyDisableThirdParty param.')\n}\n\nconst handleEnableThirdParty = () => {\n\tthrow new Error('Integration disabled due to _onlyEnableThirdParty param.')\n}\n\nconst handleInvalidProtocol = () => {\n\tthrow new Error('URL defined does not start with https:// or / and HTTPS is required.')\n}\n\nconst handleResetCustom = () => {\n\tthrow new Error('Integrations are disabled.')\n}\n\nconst handleDefault = () => {\n\tthrow new Error('An Error occured validating an Integration')\n}\n\n// Builder reducer\n/**\n * \n * @param { string } type \n * @returns { void }\n */\nexport const errorBuilder = (\n\ttype\n) => {\n\tswitch (type) {\n\t\tcase T_ERROR.COX_ONLY:\t\t\t\treturn handleCoxOnly()\n\t\tcase T_ERROR.DEBUG_THIRD_PARTY:\t\treturn handleDebugThirdParty()\n\t\tcase T_ERROR.DEVICE_ENABLEMENT:\t\treturn handleDeviceEnablement()\n\t\tcase T_ERROR.DISABLE_THIRD_PARTY:\treturn handleDisableThirdParty()\n\t\tcase T_ERROR.ENABLE_THIRD_PARTY:\treturn handleEnableThirdParty()\n\t\tcase T_ERROR.INVALID_PROTOCOL:\t\treturn handleInvalidProtocol()\n\t\tcase T_ERROR.RESET_CUSTOM:\t\t\treturn handleResetCustom()\n\t\tdefault: return handleDefault();\n\t}\n}","import { log } from '../../../log'\nimport * as T_LOG from '../globals'\n\n// Handlers\nconst handleCoxOnly = (payload) => {\n\tconst { integrationId, integrationUrl } = payload\n\tlog(\n\t\tintegrationId,\n\t\t'External integrations are disabled due to onlyCoxIntegration mode.',\n\t\t`Skipping JS: ${integrationUrl}`\n\t)\n}\n\nconst handleDebugThirdParty = (payload) => {\n\tconst { integrationId, integrationUrl } = payload\n\tlog(\n\t\tintegrationId,\n\t\t'This integration is disabled because Third Party Debug is enabled.',\n\t\t`Skipping JS: ${integrationUrl}`\n\t)\n}\n\nconst handleDeviceEnablement = (payload) => {\n\tconst { integrationId } = payload\n\tlog(integrationId, `Config for ${integrationId} found but not enabled for the current device type.`)\n}\n\nconst handleDisableThirdParty = (payload) => {\n\tconst { integrationId } = payload\n\tlog(`Skipping load of ${integrationId} due to _onlyDisableThirdParty URL parameter.`)\n}\n\nconst handleEnableThirdParty = (payload) => {\n\tconst { integrationId } = payload\n\tlog(`Skipping load of ${integrationId} due to _onlyEnableThirdParty URL parameter.`)\n}\n\nconst handleInvalidProtocol = (payload) => {\n\tconst { integrationId } = payload\n\tlog(\n\t\t`ERROR with '${integrationId}' integration setup:`,\n\t\t'URL defined does not start with https:// or / and HTTPS is required.'\n\t)\n}\n\nconst handleResetCustom = (payload) => {\n\tconst { integrationId, integrationUrl } = payload\n\tlog(\n\t\tintegrationId,\n\t\t`Integrations are disabled. Skipping JS: ${integrationUrl}`\n\t)\n}\n\nconst handleLoadingIntegrationJs = (payload) => {\n\tconst { integrationId, integrationUrl } = payload\n\tlog(\n\t\tintegrationId,\n\t\t`Loading Integration JS: ${integrationUrl}`\n\t);\n}\n\nconst handleDefault = () => {\n\treturn undefined\n}\n\n// Builder Reducer\n/**\n * @param { string } type \n * @param { { integrationId: string, integrationUrl?: string } } payload \n * @returns { void }\n */\nexport const logBuilder = (\n\ttype,\n\tpayload\n) => {\n\tswitch (type) {\n\t\tcase T_LOG.COX_ONLY:\t\t\t\treturn handleCoxOnly(payload)\n\t\tcase T_LOG.DEBUG_THIRD_PARTY:\t\treturn handleDebugThirdParty(payload)\n\t\tcase T_LOG.DEVICE_ENABLEMENT:\t\treturn handleDeviceEnablement(payload)\n\t\tcase T_LOG.DISABLE_THIRD_PARTY:\t\treturn handleDisableThirdParty(payload)\n\t\tcase T_LOG.ENABLE_THIRD_PARTY:\t\treturn handleEnableThirdParty(payload)\n\t\tcase T_LOG.INVALID_PROTOCOL:\t\treturn handleInvalidProtocol(payload)\n\t\tcase T_LOG.RESET_CUSTOM:\t\t\treturn handleResetCustom(payload)\n\t\tcase T_LOG.LOADING_INTEGRATION_JS:\treturn handleLoadingIntegrationJs(payload)\n\t\tdefault: return handleDefault()\n\t}\n}","import { errorBuilder } from '../errorBuilder/errorBuilder'\nimport { logBuilder } from '../logBuilder/logBuilder'\nimport * as rules from '../rules'\nimport * as T_VALIDATION from '../globals'\n\nconst handleCoxOnly = (type, payload) => {\n\tconst {\n\t\tintegrationId,\n\t\turlParams,\n\t\tintegrationList,\n\t\tintegrationUrl\n\t} = payload\n\tconst isValid = rules.onlyCoxIntegration(\n\t\tintegrationId,\n\t\turlParams,\n\t\tintegrationList\n\t)\n\tif (!isValid) {\n\t\tlogBuilder(\n\t\t\ttype,\n\t\t\t{\n\t\t\t\tintegrationId,\n\t\t\t\tintegrationUrl\n\t\t\t}\n\t\t)\n\t\terrorBuilder(type)\n\t}\n}\nconst handleDebugThirdParty = (type, payload) => {\n\tconst {\n\t\tdebugMode,\n\t\tintegrationId,\n\t\tintegrationUrl,\n\t\turlParams\n\t} = payload\n\tconst isValid = rules.thirdPartyServiceDebug(\n\t\turlParams,\n\t\tdebugMode\n\t)\n\tif (!isValid) {\n\t\tlogBuilder(\n\t\t\ttype,\n\t\t\t{\n\t\t\t\tintegrationId,\n\t\t\t\tintegrationUrl\n\t\t\t}\n\t\t)\n\t\terrorBuilder(type)\n\t}\n}\nconst handleDeviceEnablement = (type, payload) => {\n\tconst {\n\t\twiseIntegration,\n\t\tlayoutType,\n\t\tenabledSeamless,\n\t\tenabledDesktop,\n\t\tintegrationId\n\t} = payload\n\t\n\tconst isValid = rules.deviceEnablement(\n\t\twiseIntegration,\n\t\tlayoutType,\n\t\tenabledSeamless,\n\t\tenabledDesktop\n\t)\n\n\tif(!isValid) {\n\t\tlogBuilder(\n\t\t\ttype,\n\t\t\t{ integrationId }\n\t\t)\n\t\terrorBuilder(type)\n\t}\n}\nconst handleDisableThirdParty = (type, payload) => {\n\tconst {\n\t\tintegrationId,\n\t\turlParams\n\t} = payload\n\tconst isValid = rules.disableThirdParty(\n\t\tintegrationId,\n\t\turlParams\n\t)\n\tif (!isValid) {\n\t\tlogBuilder(\n\t\t\ttype,\n\t\t\t{ integrationId }\n\t\t)\n\t\terrorBuilder(type)\n\t}\n}\nconst handleEnableThirdParty = (type, payload) => {\n\tconst {\n\t\tintegrationId,\n\t\turlParams\n\t} = payload\n\tconst isValid = rules.enableThirdParty(\n\t\tintegrationId,\n\t\turlParams\n\t)\n\tif(!isValid) {\n\t\tlogBuilder(\n\t\t\ttype,\n\t\t\t{\n\t\t\t\tintegrationId\n\t\t\t}\n\t\t)\n\t\terrorBuilder(type)\n\t}\n}\nconst handleInvalidProtocol = (type, payload) => {\n\tconst {\n\t\tintegrationId,\n\t\tintegrationUrl\n\t} = payload\n\tconst isValid = rules.protocol(integrationUrl)\n\tif (!isValid) {\n\t\tlogBuilder(\n\t\t\ttype,\n\t\t\t{\n\t\t\t\tintegrationId\n\t\t\t}\n\t\t)\n\t\terrorBuilder(type)\n\t}\n}\nconst handleResetCustom = (type, payload) => {\n\tconst {\n\t\tintegrationId,\n\t\tintegrationUrl,\n\t\turlParams\n\t} = payload\n\tconst isValid = rules.resetCustom(urlParams)\n\tif (!isValid) {\n\t\tlogBuilder(\n\t\t\ttype,\n\t\t\t{\n\t\t\t\tintegrationId,\n\t\t\t\tintegrationUrl\n\t\t\t}\n\t\t)\n\t\terrorBuilder(type)\n\t}\n}\n\nexport class Validator {\n\n\t/**\n\t * @param { boolean } debugMode \n\t * @param { boolean } enabledDesktop \n\t * @param { boolean } enabledSeamless \n\t * @param { string } integrationId \n\t * @param { string } integrationUrl \n\t * @param { string[] } integrationList \n\t * @param { 'desktop'|'mobile' } layoutType \n\t * @param { Object} urlParams \n\t * @param { boolean } wiseIntegration \n\t */\n\tconstructor(\n\t\tdebugMode,\n\t\tenabledDesktop,\n\t\tenabledSeamless,\n\t\tintegrationId,\n\t\tintegrationUrl,\n\t\tintegrationList,\n\t\tlayoutType,\n\t\turlParams,\n\t\twiseIntegration\n\t) {\n\t\tthis.debugMode = debugMode\n\t\tthis.enabledDesktop = enabledDesktop\n\t\tthis.enabledSeamless = enabledSeamless\n\t\tthis.integrationId = integrationId\n\t\tthis.integrationUrl = integrationUrl\n\t\tthis.integrationList = integrationList\n\t\tthis.layoutType = layoutType\n\t\tthis.urlParams = urlParams\n\t\tthis.wiseIntegration = wiseIntegration\n\t}\n\n\t/**\n\t * @param { string } type \n\t * @returns \n\t */\n\treducer(type){\n\t\tswitch (type) {\n\t\t\tcase T_VALIDATION.COX_ONLY: {\n\t\t\t\thandleCoxOnly(type, {\n\t\t\t\t\tintegrationId: this.integrationId,\n\t\t\t\t\turlParams: this.urlParams,\n\t\t\t\t\tintegrationList: this.integrationList,\n\t\t\t\t\tintegrationUrl: this.integrationUrl\n\t\t\t\t})\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tcase T_VALIDATION.DEBUG_THIRD_PARTY: {\n\t\t\t\thandleDebugThirdParty(type, {\n\t\t\t\t\tdebugMode: this.debugMode,\n\t\t\t\t\tintegrationId: this.integrationId,\n\t\t\t\t\tintegrationUrl: this.integrationUrl,\n\t\t\t\t\turlParams: this.urlParams\n\t\t\t\t})\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tcase T_VALIDATION.DEVICE_ENABLEMENT: {\n\t\t\t\thandleDeviceEnablement(type, {\n\t\t\t\t\twiseIntegration: this.wiseIntegration,\n\t\t\t\t\tlayoutType: this.layoutType,\n\t\t\t\t\tenabledSeamless: this.enabledSeamless,\n\t\t\t\t\tenabledDesktop: this.enabledDesktop,\n\t\t\t\t\tintegrationId: this.integrationId\n\t\t\t\t})\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tcase T_VALIDATION.DISABLE_THIRD_PARTY: {\n\t\t\t\thandleDisableThirdParty(type, {\n\t\t\t\t\tintegrationId: this.integrationId,\n\t\t\t\t\turlParams: this.urlParams\n\t\t\t\t})\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tcase T_VALIDATION.ENABLE_THIRD_PARTY: {\n\t\t\t\thandleEnableThirdParty(type, {\n\t\t\t\t\tintegrationId: this.integrationId,\n\t\t\t\t\turlParams: this.urlParams\n\t\t\t\t})\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tcase T_VALIDATION.INVALID_PROTOCOL: {\n\t\t\t\thandleInvalidProtocol(type, {\n\t\t\t\t\tintegrationId: this.integrationId,\n\t\t\t\t\tintegrationUrl: this.integrationUrl\n\t\t\t\t})\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tcase T_VALIDATION.RESET_CUSTOM: {\n\t\t\t\thandleResetCustom(type, {\n\t\t\t\t\tintegrationId: this.integrationId,\n\t\t\t\t\tintegrationUrl: this.integrationUrl,\n\t\t\t\t\turlParams: this.urlParams\n\t\t\t\t})\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tdefault:\n\t\t\t\tbreak;\n\t\t}\n\t}\n\n\t/**\n\t * Validates an Integration against all validation rules\n\t */\n\tall() {\n\t\tthis.reducer(T_VALIDATION.DEVICE_ENABLEMENT)\n\t\tthis.reducer(T_VALIDATION.DISABLE_THIRD_PARTY)\n\t\tthis.reducer(T_VALIDATION.ENABLE_THIRD_PARTY)\n\t\tthis.reducer(T_VALIDATION.INVALID_PROTOCOL)\n\t\tthis.reducer(T_VALIDATION.COX_ONLY)\n\t\tthis.reducer(T_VALIDATION.RESET_CUSTOM)\n\t\tthis.reducer(T_VALIDATION.DEBUG_THIRD_PARTY)\n\t}\n\n\t/**\n\t * Validates a rule\n\t * \n\t * @param { string } type \n\t */\n\tvalidate(type) {\n\t\tthis.reducer(type)\n\t}\n\n\t/**\n\t * Validate a list of rules\n\t * \n\t * @param { string[] } types\n\t */\n\tvalidateList(types) {\n\t\ttypes.forEach(type => {\n\t\t\tthis.validate(type)\n\t\t})\n\t}\n}","/**\n * Only load CoxIntegartions if url param `_mode` is set to `onlyCoxIntegration`\n *\n * Fails if integrationid is missing from the integrationList\n * \n * * `true` === passing\n * * `false` === failing\n * \n * @param { string } integrationId \n * @param { { _mode } } urlParams \n * @param { string[] } integrationList \n * @returns {boolean}\n */\nexport const onlyCoxIntegration = (\n integrationId,\n urlParams,\n integrationList\n) => {\n if (urlParams._mode === 'onlyCoxIntegration') {\n if (!integrationList.includes(integrationId)) {\n return false\n }\n }\n return true\n}","/**\n * Validate debug mode for thirdparty services\n * \n * Fails if URL param thirdPartyServiceDebug is disabled with debugMode enabled\n * \n * * `true` === passing\n * * `false` === failing\n * \n * @param { {} } urlParams \n * @param { boolean } debugMode \n * @returns \n */\nexport const thirdPartyServiceDebug = (urlParams, debugMode) => {\n if (\n debugMode === true &&\n urlParams.thirdPartyServiceDebug !== 'true'\n ) {\n return false\n }\n return true\n}","/**\n * Validate an integration is enabled on the device type.\n * \n * * `true` === passing\n * * `false` === failing\n * \n * @param { boolean } isWiseIntegration \n * @param { 'mobile' | 'desktop' } layoutType \n * @param { boolean } isEnabledSeamless \n * @param { boolean } isEnabledDesktop \n * @returns { boolean }\n */\nexport const deviceEnablement = (\n isWiseIntegration,\n layoutType,\n isEnabledSeamless,\n isEnabledDesktop\n) => {\n /*\n * All integrations created in WISE would return a config obj only\n * when they are enabled on a given page. So, we can skip the device\n * type enablement check for them.\n */\n if (!isWiseIntegration) {\n switch (layoutType) {\n case 'mobile': return isEnabledSeamless\n case 'desktop': return isEnabledDesktop\n default:\n return false\n }\n }\n return true\n}","/**\n * Validate thirdparty integration is not disabled with URL params.\n * \n * Disables a single integrationId\n * \n * * `true` === passing\n * * `false` === failing\n * \n * @param { string } integrationId\n * @param { { _onlyDisableThirdParty?: string } } urlParams\n * @returns { boolean } \n */\nexport const disableThirdParty = (integrationId, urlParams) => {\n if(\n urlParams._onlyDisableThirdParty &&\n urlParams._onlyDisableThirdParty === integrationId\n ) {\n return false\n }\n return true\n}","/**\n * Validate thirdparty integration is enabled.\n * \n * Disables all integrations except for a single integrationId\n * \n * @param { string } integrationId\n * @param { { _onlyEnableThirdParty?: string }}\n * @returns { boolean }\n */\nexport const enableThirdParty = (integrationId, urlParams) => {\n if (\n urlParams._onlyEnableThirdParty &&\n urlParams._onlyEnableThirdParty !== integrationId\n ) {\n return false\n }\n return true\n}","/**\n * Validate url protocol.\n * \n * Fails if the URL does not start with `https://` or `/`\n * \n * * `true` === passing\n * * `false` === failing\n * \n * @param { string } integrationUrl\n * @returns { boolean } \n */\nexport const protocol = (integrationUrl) => {\n if (\n !integrationUrl.startsWith('https://') &&\n !integrationUrl.startsWith('/')\n ) {\n return false\n }\n return true\n}","/**\n * Disable Integrations if one of the following URL params are set:\n * \n * 1. _mode=resetCustom\n * 2. _disableTPS=true&_enableWIAPI=false\n * 3. _disableWIAPI=true\n * \n * * `true` === passing\n * * `false` === failing\n * \n * @param {{ _mode?: string, _disableTPS?: string, _enableWIAPI?: string, _disableWIAPI?: string}} urlParams \n * @returns \n */\nexport const resetCustom = (urlParams) => {\n if (\n urlParams._mode === 'resetCustom' ||\n (\n urlParams._disableTPS === 'true' &&\n urlParams._enableWIAPI !== 'true'\n ) ||\n urlParams._disableWIAPI === 'true'\n ) {\n return false\n }\n return true\n}","/**\n * Takes a comma separated key=value pair strings and converts them into a `Map`.\n * This is used to convert the WIS string of attributes set on a URL into iterable values.\n * \n * ```\n * // input\n * 'foo=bar,test=1234'\n * \n * // output\n * new Map(\n * ['foo','bar'],\n * ['test','1234']\n * )\n * ```\n * \n * @param { string } attrMapString\n * @returns { Map }\n */\nexport const loadAttrs = (attrMapString) => {\n // split the key=value pairs into a list\n const mapItems = attrMapString.split(',');\n\n // reduce over the list into an attribute Map\n const attrMap = mapItems.reduce((itemMap, item) => {\n // split a key=value pair\n const [key, value] = item.split('=');\n // set the new key in the Map\n itemMap.set(key, value);\n \n // return the Map with the new key\n return itemMap\n\n }, new Map());\n\n // return the attribute Map\n return attrMap\n}","import { hasPlaceHolders, loadConfigs, replacePlaceHolders } from '../load-configs'\nimport { getPageMetaData } from '../get-page-meta-data';\nimport { getUrlParams } from '../helpers';\nimport { isPrimaryPlaceholderIntegration } from '../../edit/listingLocationInsertion'\nimport { updateSettingsFromConfig } from '../settings';\nimport { log } from '../../log';\nimport { loadJS } from '../../load';\nimport { Validator } from './validator';\nimport { featureFlags } from '../feature-flags';\nimport { loadAttrs } from '../loadAttrs/loadAttrs';\n\nimport {\n\tALLOWED_SALES_INTEGRATIONS\n} from '../../edit/constants.js';\n\n\nconst integrationList = featureFlags.onlyCoxIntegrations\n\t.split(',')\n\t.map(id => id.trim());\n\nexport const loadIntegrations = async () => {\n\tconst configs = await loadConfigs();\n\tconst pageData = await getPageMetaData();\n\tconst urlParams = getUrlParams();\n\n\tconst loadPromises = Object.keys(configs).reduce((promiseList, integrationId) => {\n\t\tconst config = configs[integrationId]\n\n\t\tif(\n\t\t\tconfig &&\n\t\t\tconfig.fields &&\n\t\t\tconfig.fields.integrationUrl || config.urls\n\t\t) {\n\t\t\tconst {\n\t\t\t\tdebugMode,\n\t\t\t\tfields,\n\t\t\t\twiseIntegration,\n\t\t\t} = config\n\t\t\tconst {\n\t\t\t\tenabledDesktop,\n\t\t\t\tenabledSeamless,\n\t\t\t\texcludedPages\n\t\t\t} = fields;\n\n\t\t\tconst { pageName, layoutType } = pageData;\n\t\t\t\n\t\t\tif (wiseIntegration) {\n\t\t\t\tconst { urls } = config\n\t\t\t\t/**\n\t\t\t\t * WISE Integrations use a urls key with multiple integrationURLs\n\t\t\t\t * Each url needs to be individually loaded\n\t\t\t\t * \n\t\t\t\t * @type { Promise }\n\t\t\t\t */\n\t\t\t\tconst urlsPromises = urls.map((urlItem) => {\n\t\t\t\t\treturn new Promise((resolve) => {\n\n\t\t\t\t\t\t// Vars unique to a WISE Integration\n\t\t\t\t\t\tlet {\n\t\t\t\t\t\t\turl: integrationUrl\n\t\t\t\t\t\t} = urlItem\n\t\t\t\t\t\tconst {\n\t\t\t\t\t\t\ttypes: urlAttributes\n\t\t\t\t\t\t} = urlItem\n\t\t\t\t\t\tconst integrationType = 'wise'\n\t\t\t\t\t\t\n\t\t\t\t\t\t// Validate the integration Configuration\n\t\t\t\t\t\tconst validator = new Validator(\n\t\t\t\t\t\t\tdebugMode,\n\t\t\t\t\t\t\tenabledDesktop,\n\t\t\t\t\t\t\tenabledSeamless,\n\t\t\t\t\t\t\tintegrationId,\n\t\t\t\t\t\t\tintegrationUrl,\n\t\t\t\t\t\t\tintegrationList,\n\t\t\t\t\t\t\tlayoutType,\n\t\t\t\t\t\t\turlParams,\n\t\t\t\t\t\t\twiseIntegration\n\t\t\t\t\t\t)\n\t\t\t\t\t\tvalidator.all()\n\n\t\t\t\t\t\tlet loadIntegration = false;\n\t\t\t\t\t\tlet excludedFromPage = false;\n\t\t\t\t\t\tlet hasAddToPagesSettings = false;\n\n\t\t\t\t\t\tif (excludedPages) {\n\t\t\t\t\t\t\texcludedPages.split(',').forEach(targetPage => {\n\t\t\t\t\t\t\t\tif (pageName.match(targetPage)) {\n\t\t\t\t\t\t\t\t\texcludedFromPage = true;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (!excludedFromPage) {\n\t\t\t\t\t\t\tObject.keys(fields).forEach(field => {\n\t\t\t\t\t\t\t\tif (field.startsWith('addTo') || field === 'includedPages') {\n\t\t\t\t\t\t\t\t\thasAddToPagesSettings = true;\n\t\t\t\t\t\t\t\t\tfields[field].split(',').forEach(targetPage => {\n\t\t\t\t\t\t\t\t\t\tif (targetPage === 'ALL' || pageName.match(targetPage)) {\n\t\t\t\t\t\t\t\t\t\t\tloadIntegration = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t});\n\n\t\t\t\t\t\t\t// In the case where addToAllPages is not specified but implied, load the integration anyway.\n\t\t\t\t\t\t\t// We will want to deprecate this functionality as we move to WISE to make this decision explicit.\n\t\t\t\t\t\t\tif (!loadIntegration && !hasAddToPagesSettings) {\n\t\t\t\t\t\t\t\tloadIntegration = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t//Override for Sales domain to only load integrations that are allowed\n\t\t\t\t\t\t\tif((pageData.pageUrl.includes('cms.sales.apps.dealer.com') || pageData.pageUrl.includes('cms.sales.apps-np.dealer.com') )&& !ALLOWED_SALES_INTEGRATIONS.includes(integrationId)){\n\t\t\t\t\t\t\t\tloadIntegration = false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (loadIntegration) {\n\t\t\t\t\t\t\tif (isPrimaryPlaceholderIntegration(integrationId)) {\n\t\t\t\t\t\t\t\twindow.DDC.PrivateAPI.hasPrimaryPlaceholderIntegration = true;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tupdateSettingsFromConfig(fields);\n\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tintegrationUrl.startsWith('/') &&\n\t\t\t\t\t\t\t\t!integrationUrl.startsWith('//') &&\n\t\t\t\t\t\t\t\t!integrationUrl.startsWith('/static/')\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tintegrationUrl = `/static${integrationUrl}`;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tconst url = hasPlaceHolders(integrationUrl)\n\t\t\t\t\t\t\t\t? replacePlaceHolders(\n\t\t\t\t\t\t\t\t\tintegrationUrl,\n\t\t\t\t\t\t\t\t\tconfigs[integrationId].fields\n\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t: integrationUrl;\n\n\t\t\t\t\t\t\tlog(integrationId, `Loading Integration JS: ${url}`);\n\t\t\t\t\t\t\tloadJS(\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tintegrationId,\n\t\t\t\t\t\t\t\t\tintegrationType\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\turl,\n\t\t\t\t\t\t\t\tloadAttrs(urlAttributes),\n\t\t\t\t\t\t\t\ttrue /* Inform new relic that we are calling loadJS instead of an already-loaded integration calling it */\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tlog(\n\t\t\t\t\t\t\t\tintegrationId,\n\t\t\t\t\t\t\t\t`Config for ${integrationId} found but excluded for the current page: ${pageName}.`\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Integration Loaded!\n\t\t\t\t\t\tresolve(true)\n\t\t\t\t\t})\n\t\t\t\t})\n\t\t\t\treturn [...promiseList, ...urlsPromises]\n\t\t\t} else {\n\t\t\t\t/**\n\t\t\t\t * non-WISE Integrations load a single URL\n\t\t\t\t * \n\t\t\t\t * @type { Promise }\n\t\t\t\t */\n\t\t\t\tconst fieldPromise = new Promise((resolve) => {\n\n\t\t\t\t\t// Vars unique to a non-WISE Integration\n\t\t\t\t\tlet { integrationUrl } = fields\n\t\t\t\t\tconst integrationType = 'api';\n\n\t\t\t\t\t// Validate the integration Configuration\n\t\t\t\t\tconst validator = new Validator(\n\t\t\t\t\t\tdebugMode,\n\t\t\t\t\t\tenabledDesktop,\n\t\t\t\t\t\tenabledSeamless,\n\t\t\t\t\t\tintegrationId,\n\t\t\t\t\t\tintegrationUrl,\n\t\t\t\t\t\tintegrationList,\n\t\t\t\t\t\tlayoutType,\n\t\t\t\t\t\turlParams,\n\t\t\t\t\t\twiseIntegration\n\t\t\t\t\t)\n\t\t\t\t\tvalidator.all()\n\n\t\t\t\t\tlet loadIntegration = false;\n\t\t\t\t\tlet excludedFromPage = false;\n\t\t\t\t\tlet hasAddToPagesSettings = false;\n\n\t\t\t\t\tif (excludedPages) {\n\t\t\t\t\t\texcludedPages.split(',').forEach(targetPage => {\n\t\t\t\t\t\t\tif (pageName.match(targetPage)) {\n\t\t\t\t\t\t\t\texcludedFromPage = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\n\t\t\t\t\tif (!excludedFromPage) {\n\t\t\t\t\t\tObject.keys(fields).forEach(field => {\n\t\t\t\t\t\t\tif (field.startsWith('addTo') || field === 'includedPages') {\n\t\t\t\t\t\t\t\thasAddToPagesSettings = true;\n\t\t\t\t\t\t\t\tfields[field].split(',').forEach(targetPage => {\n\t\t\t\t\t\t\t\t\tif (targetPage === 'ALL' || pageName.match(targetPage)) {\n\t\t\t\t\t\t\t\t\t\tloadIntegration = true;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\t// In the case where addToAllPages is not specified but implied, load the integration anyway.\n\t\t\t\t\t\t// We will want to deprecate this functionality as we move to WISE to make this decision explicit.\n\t\t\t\t\t\tif (!loadIntegration && !hasAddToPagesSettings) {\n\t\t\t\t\t\t\tloadIntegration = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tif (loadIntegration) {\n\t\t\t\t\t\tif (isPrimaryPlaceholderIntegration(integrationId)) {\n\t\t\t\t\t\t\twindow.DDC.PrivateAPI.hasPrimaryPlaceholderIntegration = true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tupdateSettingsFromConfig(fields);\n\n\t\t\t\t\t\tif (\n\t\t\t\t\t\t\tintegrationUrl.startsWith('/') &&\n\t\t\t\t\t\t\t!integrationUrl.startsWith('//') &&\n\t\t\t\t\t\t\t!integrationUrl.startsWith('/static/')\n\t\t\t\t\t\t) {\n\t\t\t\t\t\t\tintegrationUrl = `/static${integrationUrl}`;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tconst url = hasPlaceHolders(integrationUrl)\n\t\t\t\t\t\t\t? replacePlaceHolders(\n\t\t\t\t\t\t\t\tintegrationUrl,\n\t\t\t\t\t\t\t\tconfigs[integrationId].fields\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t: integrationUrl;\n\n\t\t\t\t\t\tlog(integrationId, `Loading Integration JS: ${url}`);\n\t\t\t\t\t\tloadJS(\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tintegrationId,\n\t\t\t\t\t\t\t\tintegrationType\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\turl,\n\t\t\t\t\t\t\tnew Map(),\n\t\t\t\t\t\t\ttrue /* Inform new relic that we are calling loadJS instead of an already-loaded integration calling it */\n\t\t\t\t\t\t);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tlog(\n\t\t\t\t\t\t\tintegrationId,\n\t\t\t\t\t\t\t`Config for ${integrationId} found but excluded for the current page: ${pageName}.`\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\n\t\t\t\t\t// Integration Loaded!\n\t\t\t\t\tresolve(true)\n\t\t\t\t})\n\t\t\t\treturn [...promiseList, fieldPromise]\n\t\t\t}\n\t\t} else {\n\t\t\treturn promiseList\n\t\t}\n\t}, [])\n\n\tconst res = await Promise.allSettled(loadPromises)\n\treturn res\n};\n","import { applyButtonOverrides } from '../create/button-markup';\nimport { activateModules } from '../utils/helpers';\nimport {\n\tvalidateIfLocationIsModifiable,\n\tvalidateInitIsAnObject,\n\tvalidateTheModifierObjectForLocation\n} from '../utils/validator';\nimport { modifyLocations } from './locations';\nimport { setPageLevelModification } from './osirisContentModifications';\n\nexport const createModifier = (init, location, modifierObject) => {\n\tvalidateInitIsAnObject(init, 'init');\n\tvalidateIfLocationIsModifiable(location);\n\tvalidateTheModifierObjectForLocation(location, modifierObject);\n\n\t// Update the Private API and trigger a custom event with page level changes\n\t// so that individual Osiris widgets can handle relevant updates.\n\tsetPageLevelModification(init.integrationId, location, modifierObject);\n\n\tconst { schema, callback } = modifierObject;\n\tconst locationHandler = modifyLocations[location];\n\n\tconst apply = async () => {\n\t\tawait locationHandler.isReady();\n\t\tconst locationElems = await locationHandler.getElements();\n\n\t\tif (!locationElems) {\n\t\t\treturn;\n\t\t}\n\n\t\tlocationElems.forEach(locationElem => {\n\t\t\tswitch (location) {\n\t\t\t\tcase 'schedule-service': {\n\t\t\t\t\tconst newButtonMarkup = applyButtonOverrides(\n\t\t\t\t\t\t{ init, location, schema, integrationCall: callback },\n\t\t\t\t\t\tlocationElem,\n\t\t\t\t\t\tschema,\n\t\t\t\t\t\tfalse /* Not a vehicle cta */\n\t\t\t\t\t);\n\t\t\t\t\tactivateModules(newButtonMarkup);\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\tdefault:\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t});\n\t}\n\n\treturn { apply };\n}\n","import { fireEvent } from './index';\nimport { validateNonZeroLengthString } from '../utils/validator';\n\nconst validateEventType = eventType => {\n\tvalidateNonZeroLengthString(eventType, 'event type');\n\n\tif (!eventType.match(/.*-v\\d+/)) {\n\t\tthrow new Error(\n\t\t\t`Event types must end with a version (like -v1). Got: ${eventType}.`\n\t\t);\n\t}\n};\n\nexport class EventEmitter {\n\tconstructor(eventType) {\n\t\tvalidateEventType(eventType);\n\t\tthis.eventType = eventType;\n\n\t\tthis.fireEvent = this.fireEvent.bind(this);\n\t\tthis.invoke = this.invoke.bind(this);\n\t}\n\n\tfireEvent(data) {\n\t\tfireEvent({\n\t\t\ttype: this.eventType,\n\t\t\t...data\n\t\t});\n\t}\n\n\tinvoke() {\n\t\tthrow new Error('Event emitters should override invoke to fire events.');\n\t}\n}\n","import { EventEmitter } from './event-emitter';\n\nexport class InvokeOnceEventEmitter extends EventEmitter {\n\tconstructor(eventType) {\n\t\tsuper(eventType);\n\n\t\tthis.invokeOnce = this.invokeOnce.bind(this);\n\n\t\tthis.invoked = false;\n\t}\n\n\tinvoke(data) {\n\t\tif (!this.invoked) {\n\t\t\tthis.invokeOnce(data);\n\t\t\tthis.invoked = true;\n\t\t}\n\t}\n}\n","import { trackAPIMethods } from '../tracking';\n\nexport const getDealershipData = () => {\n\tconst { dealership = {}, site = {} } = window.DDC.dataLayer || {};\n\n\t// Merge the array of dealerCode objects to a single object\n\t// to match the format of the Vehicle Events.\n\tconst dealerCodes = {};\n\n\tdealership.dealerCode.forEach(entry => {\n\t\tObject.assign(dealerCodes, entry);\n\t});\n\n\treturn {\n\t\tdealershipAddress1: dealership.address1 || '',\n\t\tdealershipAddress2: dealership.address2 || '',\n\t\tdealershipCity: dealership.city || '',\n\t\tdealershipCodes: dealerCodes || [],\n\t\tdealershipCountry: dealership.country || '',\n\t\tdealershipFranchises: site.franchises || [],\n\t\tdealershipName: dealership.dealershipName || '',\n\t\tdealershipPostalCode: dealership.postalCode || '',\n\t\tdealershipStateProvince: dealership.stateProvince || ''\n\t};\n};\n\nexport const getDealerData = init => {\n\treturn new Promise((resolve, reject) => {\n\t\tconst { dealership = {} } = window.DDC.dataLayer || {};\n\t\tif (Object.keys(dealership)) {\n\t\t\ttrackAPIMethods(init, {\n\t\t\t\tmethodType: 'getDealerData',\n\t\t\t\tstatus: 'Success'\n\t\t\t});\n\t\t\tresolve(getDealershipData());\n\t\t\treturn;\n\t\t}\n\n\t\ttrackAPIMethods(init, {\n\t\t\tmethodType: 'getDealerData',\n\t\t\tstatus: 'Failed'\n\t\t});\n\t\treject(new Error('Unable to retrieve dealership data.'));\n\t});\n};\n","import { addToSettings, getSettings, getUserShowPayments } from './settings';\n\nconst showOrHidePayments = action => {\n\t// Remove any payments already displayed on the page.\n\tconst target = document.querySelector('.ws-inv-listing');\n\tif (target) {\n\t\ttarget\n\t\t\t.querySelectorAll('.loan-payment, .lease-payment')\n\t\t\t.forEach(payment => {\n\t\t\t\tif (action === 'hide') {\n\t\t\t\t\tpayment.classList.add('d-none');\n\t\t\t\t} else if (action === 'show') {\n\t\t\t\t\tpayment.classList.remove('d-none');\n\t\t\t\t}\n\t\t\t});\n\t}\n\n\tconst facets = document.querySelectorAll('#paymentLoan, #paymentLease');\n\tif (facets) {\n\t\tfacets.forEach(facet => {\n\t\t\tif (action === 'hide') {\n\t\t\t\tfacet.classList.add('d-none');\n\t\t\t} else if (action === 'show') {\n\t\t\t\tfacet.classList.remove('d-none');\n\t\t\t}\n\t\t});\n\t}\n};\n\nexport const hideDefaultPayments = () => {\n\t// Prevent new payments from being displayed as vehicle cards are rendered.\n\taddToSettings('hideDefaultPayments', true);\n\tshowOrHidePayments('hide');\n};\n\nexport const showDefaultPayments = () => {\n\taddToSettings('hideDefaultPayments', false, true);\n\tshowOrHidePayments('show');\n};\n\n/**\n *\n * @returns { Promise }\n */\nexport const handlePaymentVisibility = async () => {\n\tconst pageName = window?.DDC?.siteSettings?.pageAlias;\n\tif (!pageName) {\n\t\treturn;\n\t}\n\tconst pageSettings = await getSettings(pageName);\n\tconst showPayments = getUserShowPayments();\n\n\tif (pageSettings?.hideDefaultPayments || showPayments) {\n\t\thideDefaultPayments();\n\t} else {\n\t\tshowDefaultPayments();\n\t}\n};\n","import { getPageMetaData } from './get-page-meta-data';\nimport { query, queryAll } from './helpers';\nimport { getSettings } from './settings';\nimport { onLdClientReady } from './wait-for';\n\nimport {\n\tDATA_LOCATION,\n\tPRIMARY_BANNER,\n\tVEHICLE_BADGE,\n\tVEHICLE_MEDIA,\n\tVEHICLE_PAYMENTS,\n\tVEHICLE_PRICING,\n\tVEHICLE_CTAS,\n\tVEHICLE_BADGE_CUSTOM,\n\tVEHICLE_MEDIA_CUSTOM,\n\tVEHICLE_PAYMENTS_CUSTOM,\n\tVEHICLE_PRICING_CUSTOM,\n\tVEHICLE_CTAS_CUSTOM\n} from '../edit/constants.js';\n\nconst hiddenContentPlaceholderClasses =\n\t'ddc-content web-api-added-placeholder hidden';\n\nconst hasLocation = (location, target) => {\n\treturn (\n\t\tquery(`[data-location=\"${target}\"]`, location) ||\n\t\tquery(`[data-location=\"${target}-custom\"]`, location)\n\t);\n};\n\nconst createNewLocation = (elementType, locationName, classes) => {\n\tconst el = document.createElement(elementType);\n\tel.setAttribute(DATA_LOCATION, locationName);\n\tel.setAttribute('class', 'hidden');\n\tif (classes) {\n\t\tclasses.split(' ').forEach(className => {\n\t\t\tel.classList.add(className);\n\t\t});\n\t}\n\treturn el;\n};\n\nconst getTargetLocation = (locations, name, customName) => {\n\treturn locations.includes(name) ? customName : `${name} ${customName}`;\n};\n\nconst insertAfter = (referenceNode, newElement) => {\n\treferenceNode.parentNode.insertBefore(newElement, referenceNode.nextSibling);\n};\n\nconst insertBefore = (referenceNode, newElement) => {\n\treferenceNode.parentNode.insertBefore(newElement, referenceNode);\n};\n\nconst insertInto = (referenceNode, newElement) => {\n\treferenceNode.appendChild(newElement);\n};\n\nconst getVehicleCtaWidgets = () => {\n\tconst ctaPortals = queryAll('.ddc-vehicle-cta-summary');\n\treturn ctaPortals.length > 0 ? ctaPortals : queryAll('[data-widget-name=\"ws-vehicle-ctas\"]');\n};\n\nconst addGridViewLocations = () => {\n\t// Add CTA locations for the Groovy based Grid View SRP.\n\t// This is a temporary solution until we sunset this SRP.\n\tqueryAll('.gv-pricing').forEach(location => {\n\t\tif (!hasLocation(location, VEHICLE_MEDIA)) {\n\t\t\tlocation.appendChild(\n\t\t\t\tcreateNewLocation(\n\t\t\t\t\t'ul',\n\t\t\t\t\tVEHICLE_MEDIA,\n\t\t\t\t\t'list-unstyled d-flex flex-column justify-content-center w-100'\n\t\t\t\t)\n\t\t\t);\n\t\t}\n\t\tif (!hasLocation(location, VEHICLE_CTAS)) {\n\t\t\tlocation.appendChild(createNewLocation('div', VEHICLE_CTAS));\n\t\t}\n\t\tif (!hasLocation(location, VEHICLE_PRICING)) {\n\t\t\tlocation.appendChild(createNewLocation('div', VEHICLE_PRICING));\n\t\t}\n\t\tif (!hasLocation(location, VEHICLE_BADGE)) {\n\t\t\tlocation.appendChild(\n\t\t\t\tcreateNewLocation(\n\t\t\t\t\t'ul',\n\t\t\t\t\tVEHICLE_BADGE,\n\t\t\t\t\t'list-unstyled d-flex flex-wrap justify-content-center'\n\t\t\t\t)\n\t\t\t);\n\t\t}\n\t});\n};\n\nconst addLegacySearchResultsPageLocations = () => {\n\t// Add CTA locations for the Groovy based Grid View SRP.\n\t// This is a temporary solution until we sunset this SRP.\n\tqueryAll('.hproduct .media').forEach(location => {\n\t\tif (!hasLocation(location, VEHICLE_MEDIA)) {\n\t\t\tlocation.appendChild(\n\t\t\t\tcreateNewLocation(\n\t\t\t\t\t'ul',\n\t\t\t\t\tVEHICLE_MEDIA,\n\t\t\t\t\t'list-unstyled d-flex flex-column'\n\t\t\t\t)\n\t\t\t);\n\t\t}\n\t});\n\n\tqueryAll('.hproduct .calloutDetails ul').forEach(location => {\n\t\tif (!hasLocation(location, VEHICLE_BADGE)) {\n\t\t\tlocation.setAttribute(DATA_LOCATION, VEHICLE_BADGE);\n\t\t}\n\t});\n};\n\nconst overrideLocationName = (locationName, selector) => {\n\tif (!hasLocation(document, locationName)) {\n\t\tconst target = query(selector);\n\t\tif (target) {\n\t\t\ttarget.setAttribute(DATA_LOCATION, locationName);\n\t\t}\n\t}\n};\n\n// Add vehicle-media and vehicle-badge locations for legacy VDP.\nconst addLegacyVehicleDetailsPageLocations = async (\n\tpageData,\n\ttargetLocations\n) => {\n\tconst vehicleMediaLocationName = getTargetLocation(\n\t\ttargetLocations,\n\t\tVEHICLE_MEDIA,\n\t\tVEHICLE_MEDIA_CUSTOM\n\t);\n\tconst vehicleBadgeLocationName = getTargetLocation(\n\t\ttargetLocations,\n\t\tVEHICLE_BADGE,\n\t\tVEHICLE_BADGE_CUSTOM\n\t);\n\n\tif (pageData.detailPage && !hasLocation(document, vehicleMediaLocationName)) {\n\t\tconst vehicleMediaInsertTarget = query(\n\t\t\t'[data-widget-name=\"inventory-detail-highlighted-features\"]'\n\t\t);\n\n\t\tif (vehicleMediaInsertTarget) {\n\t\t\tconst newLocation = createNewLocation(\n\t\t\t\t'ul',\n\t\t\t\tvehicleMediaLocationName,\n\t\t\t\t'list-unstyled web-api-added-placeholder'\n\t\t\t);\n\n\t\t\tinsertBefore(vehicleMediaInsertTarget, newLocation);\n\t\t}\n\t}\n\n\toverrideLocationName(vehicleBadgeLocationName, '.calloutDetails ul');\n\toverrideLocationName(\n\t\tvehicleMediaLocationName,\n\t\t'.osiris-third-party-include [data-location=\"vehicle-media\"]'\n\t);\n};\n\n// Add any missing primary-banner locations.\nconst addPrimaryBannerLocation = async pageData => {\n\tif (!hasLocation(document, PRIMARY_BANNER)) {\n\t\tconst newLocation = createNewLocation(\n\t\t\t'div',\n\t\t\tPRIMARY_BANNER,\n\t\t\thiddenContentPlaceholderClasses\n\t\t);\n\n\t\tlet primaryBannerInsertTarget;\n\n\t\tif (pageData.detailPage) {\n\t\t\tprimaryBannerInsertTarget = query('[data-widget-id=\"tps-mediabot1\"]')\n\t\t\t\t? query('[data-widget-id=\"tps-mediabot1\"]')\n\t\t\t\t: query('[data-widget-name=\"ws-quick-specs\"]');\n\n\t\t\t// For legacy VDP support.\n\t\t\tif (!primaryBannerInsertTarget) {\n\t\t\t\tprimaryBannerInsertTarget = query(\n\t\t\t\t\t'[data-widget-name=\"inventory-detail-highlighted-features\"]'\n\t\t\t\t);\n\t\t\t}\n\t\t} else if (pageData.searchPage) {\n\t\t\tprimaryBannerInsertTarget =\n\t\t\t\tquery('[data-name=\"srp-wrapper-page-title\"]') ||\n\t\t\t\tquery('[data-widget-name=\"inventory-listing-default\"]');\n\t\t}\n\n\t\tif (primaryBannerInsertTarget) {\n\t\t\tinsertBefore(primaryBannerInsertTarget, newLocation);\n\t\t}\n\t}\n\treturn true;\n};\n\nconst addSecondaryContentLocation = async pageData => {\n\tif (!pageData.detailPage) {\n\t\treturn true;\n\t}\n\tif (!hasLocation(document, 'secondary-content')) {\n\t\tconst newLocation = createNewLocation(\n\t\t\t'div',\n\t\t\t'secondary-content',\n\t\t\thiddenContentPlaceholderClasses\n\t\t);\n\n\t\tconst secondaryContentInsertTarget = query(\n\t\t\t'[data-widget-id=\"detailed-specs1\"]'\n\t\t);\n\n\t\tif (secondaryContentInsertTarget) {\n\t\t\tinsertAfter(secondaryContentInsertTarget, newLocation);\n\t\t}\n\t}\n\treturn true;\n};\n\nconst addPrivacyFormLocation = async pageData => {\n\tif(!pageData.pageName.includes('PRIVACY')) {\n\t\treturn true;\n\t}\n\n\tconst existingPrivacyForm = query(\n\t\t'[data-widget-name=\"privacy-form\"]'\n\t);\n\n\tif (existingPrivacyForm) {\n\t\texistingPrivacyForm.setAttribute('data-location', 'privacy-form');\n\t\treturn true;\n\t}\n\n\tif (!hasLocation(document, 'privacy-form')) {\n\t\tconst newLocation = createNewLocation(\n\t\t\t'div',\n\t\t\t'privacy-form',\n\t\t\thiddenContentPlaceholderClasses\n\t\t);\n\n\t\tconst privacyFormInsertTarget = query(\n\t\t\t'[data-widget-id=\"content1\"]'\n\t\t);\n\n\t\tif (privacyFormInsertTarget) {\n\t\t\tinsertAfter(privacyFormInsertTarget, newLocation);\n\t\t}\n\t}\n\treturn true;\n};\n\nconst addContentCtaLocations = async pageData => {\n\tif (!pageData.detailPage) {\n\t\treturn true;\n\t}\n\n\tconst vehicleCtaLocations = getVehicleCtaWidgets();\n\n\tvehicleCtaLocations.forEach((location, index) => {\n\t\tconst dataLocationName = location.getAttribute('data-location');\n\t\tconst position = index === 0 ? 'top' : 'bottom';\n\t\tlocation.setAttribute(\n\t\t\t'data-location',\n\t\t\t`${dataLocationName} vehicle-ctas-${position}`\n\t\t);\n\t});\n\n\treturn true;\n};\n\nconst urlToButtonIntents = new Map([\n\t['ASK', 'vehicle-ask-button'],\n\t['DRIVE', 'vehicle-drive-button']\n]);\n\nconst addCallToActionLocation = async (pageData, targetLocations) => {\n\tif (!(pageData.detailPage || pageData.searchPage)) {\n\t\treturn true;\n\t}\n\n\t// Adding behaviours to the links in links-lead1 in the VDP\n\tif (pageData.detailPage && query('[data-widget-id=\"links-lead1\"]')) {\n\t\tconst linksList = queryAll('[data-widget-id=\"links-lead1\"] .btn');\n\t\tif (linksList.length > 0) {\n\t\t\tlinksList.forEach(link => {\n\t\t\t\tconst linkLabel = link.getAttribute('data-link-label');\n\t\t\t\tif (\n\t\t\t\t\tlinkLabel &&\n\t\t\t\t\turlToButtonIntents.has(linkLabel) &&\n\t\t\t\t\t!link.getAttribute(DATA_LOCATION)\n\t\t\t\t) {\n\t\t\t\t\tlink.setAttribute(DATA_LOCATION, urlToButtonIntents.get(linkLabel));\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t}\n\n\t// This targets the react-based VDP. The react-based SRP includes vehicle-ctas locations\n\t// from the wsm-vehicle-cta-display module so they are not added by the API.\n\tif (pageData.detailPage && query('[data-widget-name=\"ws-vehicle-ctas\"]')) {\n\t\tconst ctaEditSites = getVehicleCtaWidgets();\n\n\t\tconst vehicleCtaLocationName = getTargetLocation(\n\t\t\ttargetLocations,\n\t\t\tVEHICLE_CTAS,\n\t\t\tVEHICLE_CTAS_CUSTOM\n\t\t);\n\n\t\tif (ctaEditSites.length > 0) {\n\t\t\tctaEditSites.forEach(widget => {\n\t\t\t\twidget.setAttribute(DATA_LOCATION, vehicleCtaLocationName);\n\t\t\t\tconst childLocations = queryAll(\n\t\t\t\t\t'[data-location~=\"vehicle-ctas\"]',\n\t\t\t\t\twidget\n\t\t\t\t);\n\t\t\t\tchildLocations.forEach(location => {\n\t\t\t\t\tlocation.removeAttribute(DATA_LOCATION);\n\t\t\t\t\tlocation.classList.add('mb-3');\n\t\t\t\t});\n\t\t\t});\n\t\t}\n\n\t\t// This only affects the legacy SRP and VDP.\n\t} else {\n\t\tlet ctaEditSites = [];\n\n\t\tif (pageData.searchPage) {\n\t\t\tctaEditSites = queryAll('.pricing-area .pricing');\n\t\t} else if (pageData.detailPage) {\n\t\t\tconst pricingLocation = query('.inventory-detail-pricing .pricing');\n\n\t\t\tif (pricingLocation) {\n\t\t\t\tctaEditSites.push(pricingLocation);\n\t\t\t}\n\t\t}\n\n\t\tctaEditSites.forEach(ctaLocation => {\n\t\t\tconst ctaInsertLocation = document.createElement('li');\n\t\t\tctaInsertLocation.setAttribute(DATA_LOCATION, VEHICLE_CTAS);\n\t\t\tctaInsertLocation.setAttribute(\n\t\t\t\t'class',\n\t\t\t\t'web-api-added-placeholder hidden mt-3'\n\t\t\t);\n\t\t\tinsertInto(ctaLocation, ctaInsertLocation);\n\t\t});\n\t}\n\treturn true;\n};\n\nconst addVehiclePaymentsLocation = async (pageData, targetLocations) => {\n\t// Add payments locations in ws-detailed-pricing widget.\n\tif (pageData.detailPage) {\n\t\tconst vehiclePaymentsLocationName = getTargetLocation(\n\t\t\ttargetLocations,\n\t\t\tVEHICLE_PAYMENTS,\n\t\t\tVEHICLE_PAYMENTS_CUSTOM\n\t\t);\n\n\t\tif (!hasLocation(document, vehiclePaymentsLocationName)) {\n\t\t\tconst vehiclePaymentsInsertTargets = queryAll(\n\t\t\t\t'[data-widget-name=\"ws-detailed-pricing\"]'\n\t\t\t);\n\n\t\t\tvehiclePaymentsInsertTargets.forEach(paymentTarget => {\n\t\t\t\tconst newLocation = createNewLocation(\n\t\t\t\t\t'div',\n\t\t\t\t\tvehiclePaymentsLocationName,\n\t\t\t\t\t`${hiddenContentPlaceholderClasses} ws-detailed-pricing`\n\t\t\t\t);\n\t\t\t\tinsertAfter(paymentTarget, newLocation);\n\t\t\t});\n\t\t}\n\t}\n\treturn true;\n};\n\nconst addVehiclePricingLocation = async (pageData, targetLocations) => {\n\t// Add CTA locations in ws-vehicle-ctas widgets.\n\tif (pageData.detailPage) {\n\t\tconst vehicleCtaLocationName = getTargetLocation(\n\t\t\ttargetLocations,\n\t\t\tVEHICLE_CTAS,\n\t\t\tVEHICLE_CTAS_CUSTOM\n\t\t);\n\t\tconst vehiclePricingLocationName = getTargetLocation(\n\t\t\ttargetLocations,\n\t\t\tVEHICLE_PRICING,\n\t\t\tVEHICLE_PRICING_CUSTOM\n\t\t);\n\n\t\tconst ctaEditSites = queryAll(\n\t\t\t`[data-location=\"${vehicleCtaLocationName}\"]`\n\t\t);\n\n\t\tif (ctaEditSites.length > 0) {\n\t\t\tconst ctaLocation = ctaEditSites[ctaEditSites.length - 1];\n\n\t\t\tconst classes =\n\t\t\t\tpageData.layoutType === 'desktop'\n\t\t\t\t\t? 'ddc-content responsive-content-max-hide responsive-content-mid-hide responsive-content-min-hide box web-api-added-placeholder hidden'\n\t\t\t\t\t: hiddenContentPlaceholderClasses;\n\n\t\t\tconst vehiclePricingLocation = createNewLocation(\n\t\t\t\tctaLocation.tagName.toLowerCase(),\n\t\t\t\tvehiclePricingLocationName,\n\t\t\t\tclasses\n\t\t\t);\n\n\t\t\tctaLocation.classList.add('pb-0');\n\n\t\t\tinsertAfter(ctaLocation, vehiclePricingLocation);\n\t\t}\n\t} else if (pageData.searchPage) {\n\t\tconst pricingEditSites = queryAll('.pricing-area .pricing');\n\n\t\tpricingEditSites.forEach(pricingLocation => {\n\t\t\tconst vehiclePricingLocation = createNewLocation(\n\t\t\t\t'li',\n\t\t\t\tVEHICLE_PRICING,\n\t\t\t\t'web-api-added-placeholder hidden mb-4'\n\t\t\t);\n\t\t\tinsertInto(pricingLocation, vehiclePricingLocation);\n\t\t});\n\t}\n\treturn true;\n};\n\n/**\n * Retrieves delayLoadVdpFooter value from session storage, if it was present in a WISE config\n * @returns { Promise }\n */\nconst getDelayFromWiapiSettings = async () => {\n\tconst pageAliasSettings = await getSettings(window.DDC.siteSettings.pageAlias);\n\treturn pageAliasSettings.delayLoadVdpFooter || false;\n}\n/**\n * 1. Appends the 'mobile-vdp-footer' data-location to the links-list
    .\n * 2. Slides in the fixed-vdp-footer on a conditional delay.\n * @returns { Promise }\n */\nconst addMobileVdpFooterLocation = async () => {\n\tconst vdpFooter = query('.fixed-vdp-footer');\n\tconst editLocation = query('.links-list ul', vdpFooter);\n\tif (editLocation) {\n\t\teditLocation.setAttribute('data-location', 'mobile-vdp-footer');\n\n\t\t// Ensure Launch Darkly is available before using flags.\n\t\tonLdClientReady(async () => {\n\t\t\t// Get the delay duration from Launch Darkly\n\t\t\tconst flags = window.ldClient.allFlags();\n\t\t\tconst flagDelayDuration = flags['mobile-vdp-footer-delay'] || 2000;\n\t\t\tconst flagDelayToggle = flags['toggle-delay-vdp-footer'] || false;\n\n\t\t\tconst shouldDelay = await getDelayFromWiapiSettings() && flagDelayToggle;\n\n\t\t\t// Delay if necessary\n\t\t\tconst delayDuration = shouldDelay ? flagDelayDuration : 0;\n\t\t\tsetTimeout(() => {\n\t\t\t\tvdpFooter?.classList?.add('in');\n\t\t\t}, delayDuration);\n\t\t});\n\t}\n\treturn true;\n};\n\nexport const populateEditSites = async () => {\n\tconst pageData = await getPageMetaData();\n\tconst dataTargetLocations = 'data-target-locations';\n\tlet reactPortal;\n\tlet targetLocations = [];\n\n\tif (pageData.detailPage) {\n\t\treactPortal = query('.eprice-react-portal');\n\t\ttargetLocations = reactPortal?.getAttribute(dataTargetLocations)\n\t\t\t? reactPortal?.getAttribute(dataTargetLocations)?.split(' ')\n\t\t\t: [];\n\t}\n\tif (pageData.searchPage && query('.inventory-listing-grid')) {\n\t\taddGridViewLocations();\n\t} else if (pageData.searchPage || pageData.detailPage) {\n\t\tawait addPrimaryBannerLocation(pageData);\n\t\tawait addCallToActionLocation(pageData, targetLocations);\n\t\tawait addVehiclePaymentsLocation(pageData, targetLocations);\n\t\tawait addVehiclePricingLocation(pageData, targetLocations);\n\t\tif (pageData.searchPage && query('.inventoryList')) {\n\t\t\taddLegacySearchResultsPageLocations();\n\t\t} else if (pageData.detailPage) {\n\t\t\taddLegacyVehicleDetailsPageLocations(pageData, targetLocations);\n\t\t\tawait addSecondaryContentLocation(pageData);\n\t\t\tawait addContentCtaLocations(pageData);\n\t\t\tif (pageData.layoutType === 'mobile') {\n\t\t\t\tawait addMobileVdpFooterLocation();\n\t\t\t}\n\t\t}\n\t}\n\taddPrivacyFormLocation(pageData);\n\treturn true;\n};\n\nexport const remediateStylingIssues = async () => {\n\tconst hasPriceButtonLocations = query('li.price-btn');\n\n\tif (hasPriceButtonLocations) {\n\t\tconst priceButtonLocations = queryAll('li.price-btn');\n\t\tpriceButtonLocations.forEach(location => {\n\t\t\tlocation.classList.add('clearfix');\n\t\t});\n\t}\n\treturn true;\n};","import { DealershipInfoEventEmitter } from './emitters/dealership-info-v1';\nimport { PageLoadEventEmitter } from './emitters/page-load-v1';\nimport { VehicleDataUpdatedEmitter } from './emitters/vehicle-events/vehicle-data-updated-v1';\nimport { VehicleShownEventEmitter } from './emitters/vehicle-events/vehicle-shown-v1';\nimport {\n\tpopulateEditSites,\n\tremediateStylingIssues\n} from '../utils/populate-edit-sites';\n\nimport { trackTiming } from '../timings';\n\nconst standardEmitters = [\n\tnew PageLoadEventEmitter(),\n\tnew DealershipInfoEventEmitter()\n];\n\nconst vehicleListEmitters = [new VehicleDataUpdatedEmitter()];\n\nconst vehicleItemEmitters = [new VehicleShownEventEmitter()];\n\nconst invokeEventEmitters = async (emitters, data) => {\n\temitters.forEach(emitter => {\n\t\tconst start = Date.now();\n\n\t\ttry {\n\t\t\temitter.invoke(data);\n\t\t\tconst end = Date.now();\n\t\t\twindow.DDC.integrationLog(`Firing event emitter: ${emitter.eventType}`);\n\t\t\ttrackTiming('event-emitter', emitter.eventType, end - start);\n\t\t} catch (e) {\n\t\t\tconst end = Date.now();\n\t\t\ttrackTiming('event-emitter-failed', emitter.eventType, end - start);\n\t\t\twindow.DDC.integrationLog(\n\t\t\t\t`Event emitter ${emitter.eventType} failed and took ${\n\t\t\t\t\tend - start\n\t\t\t\t}ms to fail.`,\n\t\t\t\te\n\t\t\t);\n\t\t}\n\t});\n\n\treturn true;\n};\n\nexport const invokeStandardEventEmitters = async () => {\n\tawait populateEditSites();\n\tawait remediateStylingIssues();\n\treturn invokeEventEmitters(standardEmitters);\n};\n\nexport const invokeInventoryListEventEmitters = async () => {\n\treturn invokeEventEmitters(vehicleListEmitters);\n};\n\n// The expected format of `vehicle` is an object with the vehicle's uuid: `{uuid: \"6f0d2ca80a0e0dbd2120e10d85909620\"}`\nexport const invokeInventoryItemEventEmitters = async vehicle => {\n\treturn invokeEventEmitters(vehicleItemEmitters, vehicle);\n};\n","import { InvokeOnceEventEmitter } from '../invoke-once-event-emitter';\nimport { getPageMetaData } from '../../utils/get-page-meta-data';\n\nimport { invokeStandardInserts, invokeStandardUpdates } from '../../edit';\n\nexport class PageLoadEventEmitter extends InvokeOnceEventEmitter {\n\tconstructor() {\n\t\tsuper('page-load-v1');\n\t}\n\n\tasync invokeOnce() {\n\t\tconst pageData = await getPageMetaData();\n\t\tthis.fireEvent({ payload: pageData });\n\t\tinvokeStandardInserts({ exclude: 'listings-' });\n\t\tinvokeStandardUpdates();\n\t}\n}\n","import { InvokeOnceEventEmitter } from '../invoke-once-event-emitter';\nimport { getDealershipData } from '../../utils/get-dealership-data';\n\nexport class DealershipInfoEventEmitter extends InvokeOnceEventEmitter {\n\tconstructor() {\n\t\tsuper('dealership-info-v1');\n\t}\n\n\tinvokeOnce() {\n\t\tthis.fireEvent({ payload: getDealershipData() });\n\t}\n}\n","import { EventEmitter } from '../../event-emitter';\nimport { getPageMetaData } from '../../../utils/get-page-meta-data';\nimport { getVehicles } from '../../../utils/get-vehicles';\nimport { handlePaymentVisibility } from '../../../utils/payments';\n\nexport class VehicleDataUpdatedEmitter extends EventEmitter {\n\tconstructor() {\n\t\tsuper('vehicle-data-updated-v1');\n\t}\n\n\tasync invoke() {\n\t\t// Wait for the page data and vehicle data to load\n\t\tconst pageData = await getPageMetaData();\n\t\tconst vehicleData = await getVehicles();\n\n\t\tthis.fireEvent({\n\t\t\tpayload: {\n\t\t\t\tpageData,\n\t\t\t\tvehicleData\n\t\t\t}\n\t\t});\n\n\t\thandlePaymentVisibility();\n\t}\n}\n","import { EventEmitter } from '../../event-emitter';\nimport { getVehicles } from '../../../utils/get-vehicles';\nimport { getPageMetaData } from '../../../utils/get-page-meta-data';\nimport { handlePaymentVisibility } from '../../../utils/payments';\nimport { hasInventoryData, hasDataBusInventory } from '../../../utils/helpers';\n\nexport class VehicleShownEventEmitter extends EventEmitter {\n\tconstructor() {\n\t\tsuper('vehicle-shown-v1');\n\t}\n\n\tasync invoke(vehicleData) {\n\t\tconst pageMetaData = await getPageMetaData();\n\t\tconst vehicles = await getVehicles();\n\n\t\tconst fireVehicleEvents = async vehicle => {\n\t\t\tif (vehicle) {\n\t\t\t\tconst foundVehicle = vehicles.filter(entry => {\n\t\t\t\t\treturn entry.uuid === vehicle.uuid;\n\t\t\t\t});\n\n\t\t\t\tif (foundVehicle.length > 0) {\n\t\t\t\t\tconst targetVehicle = foundVehicle[0];\n\t\t\t\t\tthis.fireEvent({ payload: targetVehicle });\n\t\t\t\t\thandlePaymentVisibility();\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tvehicles.forEach(entry => {\n\t\t\t\t\tthis.fireEvent({ payload: entry });\n\t\t\t\t\thandlePaymentVisibility();\n\t\t\t\t});\n\t\t\t}\n\t\t};\n\n\t\t// We will likely want to open this up to all pages at some point,\n\t\t// but need to ensure it doesn't just constantly check for inventory on\n\t\t// all pages of all sites first.\n\t\tif (pageMetaData.searchPage || pageMetaData.detailPage) {\n\t\t\t// This checks if data is available in either the data layer or inventory data bus.\n\t\t\t// At this time, only one or the other will be populated, never both.\n\t\t\tawait hasInventoryData();\n\n\t\t\tif ((await hasDataBusInventory() && vehicleData) || !await hasDataBusInventory()) {\n\t\t\t\tawait fireVehicleEvents(vehicleData);\n\t\t\t}\n\t\t}\n\t}\n}\n","import { getPageMetaData } from './get-page-meta-data';\nimport { fetchJson } from './helpers';\n\nconst itemListPromises = {};\n\nexport const getItemList = async (init, type) => {\n\tconst pageData = await getPageMetaData();\n\n\tconst allowedIntegrations = ['item-list-badges'];\n\tconst allowedTypes = ['inventory-badges', 'inventory-media'];\n\n\tif (!allowedTypes.includes(type)) {\n\t\tthrow new Error(\n\t\t\t`The requested item list ${type} is not enabled for this API.`\n\t\t);\n\t}\n\n\tif (!allowedIntegrations.includes(init.integrationId)) {\n\t\tthrow new Error(\n\t\t\t'The getItemList method is not allowed for use with this integration.'\n\t\t);\n\t}\n\n\tif (!(pageData.searchPage || pageData.detailPage)) {\n\t\treturn [];\n\t}\n\n\tif (!itemListPromises[type]) {\n\t\titemListPromises[type] = fetchJson(\n\t\t\tinit,\n\t\t\t`/api/badge-item-lists/${type}`,\n\t\t\t'getItemList'\n\t\t);\n\t}\n\n\treturn itemListPromises[type];\n};\n","import { getAttributeForVehicles } from './get-vehicles';\nimport { trackAPIMethods } from '../tracking';\n\nconst decodeJwt = token => {\n\tconst splitToken = token.split('.');\n\tif (splitToken.length < 2) {\n\t\treturn;\n\t}\n\tconst base64Url = splitToken[1];\n\tconst base64 = base64Url.replace(/-/g, '+').replace(/_/g, '/');\n\tconst jsonPayload = decodeURIComponent(\n\t\tatob(base64)\n\t\t\t.split('')\n\t\t\t.map(c => {\n\t\t\t\treturn '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2); // eslint-disable-line prefer-template\n\t\t\t})\n\t\t\t.join('')\n\t);\n\n\treturn JSON.parse(jsonPayload); // eslint-disable-line consistent-return\n};\n\nconst getJwt = async (init, jwtMethod) => {\n\tconst vins =\n\t\tjwtMethod === 'getJwtForVehicles'\n\t\t\t? await getAttributeForVehicles(init, 'vin')\n\t\t\t: ['false'];\n\n\treturn fetch(`/api/ipp/jwt/vehicles?vins=${vins.join()}`).then(response => {\n\t\tif (!response.ok) {\n\t\t\ttrackAPIMethods(init, {\n\t\t\t\tmethodType: jwtMethod,\n\t\t\t\tstatus: 'Failed'\n\t\t\t});\n\t\t\tthrow new Error('Invalid response from the JWT endpoint.');\n\t\t}\n\t\treturn response.text().then(result => {\n\t\t\tconst decodedJwt = decodeJwt(result);\n\n\t\t\ttrackAPIMethods(init, {\n\t\t\t\tmethodType: jwtMethod,\n\t\t\t\tstatus: 'Success'\n\t\t\t});\n\n\t\t\tif (jwtMethod === 'getJwtForVehicles') {\n\t\t\t\treturn {\n\t\t\t\t\tvins: decodedJwt.VINs,\n\t\t\t\t\tjwt: result\n\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn {\n\t\t\t\tjwt: result\n\t\t\t};\n\t\t});\n\t});\n};\n\nexport const getJwtForVehicles = async init => {\n\treturn getJwt(init, 'getJwtForVehicles');\n};\n\nexport const getJwtForSite = async init => {\n\treturn getJwt(init, 'getJwtForSite');\n};\n","// eslint-disable-next-line max-classes-per-file\nimport { hideDefaultPayments, showDefaultPayments } from './payments';\nimport {\n\tgetAttributeForVehicles,\n\tgetVehicleData\n} from './get-vehicles';\nimport { getConfig, getSitemap, getSiteProperties } from './load-configs';\nimport { getDealerData } from './get-dealership-data';\nimport { getItemList } from './item-lists';\nimport { getJwtForSite, getJwtForVehicles } from './get-jwts';\nimport { getPageData } from './get-page-meta-data';\nimport { getSettings } from './settings';\nimport { getUnlockedVehicles, unlockPricing } from './unlock-pricing';\nimport { getUrlParams } from './helpers';\nimport { getPixallVisitorId } from '../tracking';\n\nexport class Utils {\n\tconstructor(init) {\n\t\tthis.init = init;\n\t}\n\n\tgetIntegrationId() {\n\t\treturn this.init.integrationId;\n\t}\n\n\tgetIntegrationType() {\n\t\treturn this.init.integrationType;\n\t}\n}\n\nexport class PrivateUtils extends Utils {\n\tconstructor(init) {\n\t\tsuper();\n\t\tthis.init = init;\n\t}\n}\n\nconst classesToDecorate = [\n\t{\n\t\tclassName: Utils,\n\t\tmethods: {\n\t\t\tgetAttributeForVehicles,\n\t\t\tgetConfig,\n\t\t\tgetDealerData,\n\t\t\tgetJwtForSite,\n\t\t\tgetJwtForVehicles,\n\t\t\tgetPageData,\n\t\t\tgetPixallVisitorId,\n\t\t\tgetSitemap,\n\t\t\tgetSiteProperties,\n\t\t\tgetUnlockedVehicles,\n\t\t\tgetUrlParams,\n\t\t\tgetVehicleData,\n\t\t\tunlockPricing\n\t\t}\n\t},\n\t{\n\t\tclassName: PrivateUtils,\n\t\tmethods: {\n\t\t\tgetItemList,\n\t\t\tgetSettings,\n\t\t\thideDefaultPayments,\n\t\t\tshowDefaultPayments\n\t\t}\n\t}\n];\n\nclassesToDecorate.forEach(decorateTarget => {\n\tconst item = decorateTarget;\n\tObject.entries(item.methods).forEach(([name, method]) => {\n\t\titem.className.prototype[name] = function utilMethod(...arg) {\n\t\t\tconst init = {\n\t\t\t\tintegrationId: this.getIntegrationId(),\n\t\t\t\tintegrationType: this.getIntegrationType()\n\t\t\t};\n\n\t\t\t// getUrlParams is a synchronous function.\n\t\t\tif (name === 'getUrlParams') {\n\t\t\t\treturn method.call(null, init, ...arg);\n\t\t\t}\n\n\t\t\treturn new Promise((resolve, reject) => {\n\t\t\t\ttry {\n\t\t\t\t\tresolve(method.call(null, init, ...arg));\n\t\t\t\t} catch (err) {\n\t\t\t\t\treject(err);\n\t\t\t\t}\n\t\t\t});\n\t\t};\n\t});\n});\n","import { getAttributeForVehicles } from './get-vehicles';\nimport { log } from '../log';\n\nexport const unlockPricing = async (init, ids) => {\n\tif (!window?.DDC?.userProfileController?.saveInstantEpriceVehicle) {\n\t\treturn false;\n\t}\n\n\tlet uuids = ids;\n\n\tif (!uuids) {\n\t\tuuids = await getAttributeForVehicles(init, 'uuid');\n\t}\n\n\tconst saveVehicle = (uuid) => {\n\t\treturn new Promise((resolve) => {\n\t\t\ttry {\n\t\t\t\twindow.DDC.userProfileController.saveInstantEpriceVehicle(null, uuid);\n\t\t\t} catch (error) {\n\t\t\t\tlog(`Failed to save vehicle with UUID ${uuid}:`, error);\n\t\t\t}\n\t\t\tresolve();\n\t\t});\n\t};\n\n\ttry {\n\t\tawait Promise.all(uuids.map(uuid => saveVehicle(uuid)));\n\t\treturn true;\n\t} catch (error) {\n\t\tlog('Failed to unlock pricing:', error);\n\t\treturn false;\n\t}\n};\n\n\nexport const getUnlockedVehicles = async () => {\n\tconst vehicles = window?.DDC?.userProfile?.ePriceVehicles || [];\n\treturn [\n\t\t...new Set(\n\t\t\tvehicles.map(item => item?.itemUUID ?? null).filter(uuid => uuid)\n\t\t)\n\t];\n};\n","import { append } from './utils/append';\nimport { create } from './create';\nimport { log, traceMode } from './log';\nimport { subscribe } from './events';\nimport {\n\tinsertGalleryContent,\n\tgetGalleryContent,\n\tgetAllGalleryContent\n} from './media';\n\nimport { insertMenuContent } from './menu';\n\nimport { getPageLevelModifications } from './content/osirisContentModifications';\nimport { trackAPIMethods } from './tracking';\nimport { loadIntegrations } from './utils/loadIntegrations';\nimport { load, loadJS, loadCSS, invokeAllLoaders, test } from './load';\nimport {\n\tinsert,\n\tinsertOnce,\n\tinsertCallToAction,\n\tinsertCallToActionOnce,\n\tupdate,\n\tupdateOnce,\n\tupdateLink\n} from './edit';\n\nimport { modifyContent } from './content';\n\nimport {\n\tinvokeStandardEventEmitters,\n\tinvokeInventoryItemEventEmitters,\n\tinvokeInventoryListEventEmitters\n} from './events/event-emitters';\n\nimport { PrivateUtils, Utils } from './utils';\n\nimport { isDocumentReady } from './utils/wait-for';\n\nimport { validateNonZeroLengthString } from './utils/validator';\n\nimport {\n\tnormalizeIntegrationId,\n\tnormalizeIntegrationType\n} from './utils/normalize-id';\n\nconst APIMethods = {\n\tappend,\n\tcreate,\n\tinsert,\n\tinsertOnce,\n\tinsertCallToAction,\n\tinsertCallToActionOnce,\n\tinsertGalleryContent,\n\tinsertMenuContent,\n\tupdate,\n\tupdateOnce,\n\tupdateLink,\n\tmodifyContent,\n\tload,\n\tloadJS,\n\tloadCSS,\n\tlog,\n\tsubscribe,\n\ttest\n};\n\nconst API = class API {\n\tconstructor(init) {\n\t\tlet integrationId;\n\t\tlet integrationType;\n\n\t\tconst initializer =\n\t\t\tdocument.currentScript &&\n\t\t\ttypeof document.currentScript.getAttribute === 'function' &&\n\t\t\tdocument.currentScript.getAttribute('data-web-api-id') !== ''\n\t\t\t\t? document.currentScript\n\t\t\t\t: init;\n\n\t\tif (initializer && typeof initializer === 'object') {\n\t\t\tif (\n\t\t\t\ttypeof initializer.getAttribute === 'function' &&\n\t\t\t\tinitializer.getAttribute('data-web-api-id') !== ''\n\t\t\t) {\n\t\t\t\tintegrationId = initializer.getAttribute('data-web-api-id');\n\t\t\t\tintegrationType = initializer.getAttribute('data-web-api-type') || '';\n\t\t\t} else {\n\t\t\t\t({ integrationId, integrationType } = initializer);\n\t\t\t}\n\t\t}\n\n\t\tif (!integrationId && init && init !== '') {\n\t\t\tintegrationId = init;\n\t\t\tintegrationType = init;\n\t\t}\n\n\t\tvalidateNonZeroLengthString(integrationId, 'integrationId');\n\n\t\tthis.init = {\n\t\t\tintegrationId: normalizeIntegrationId(integrationId),\n\t\t\tintegrationType: normalizeIntegrationType(integrationType)\n\t\t};\n\n\t\tthis.utils = new Utils(this.init);\n\t\tthis.privateUtils = new PrivateUtils(this.init);\n\t}\n};\n\nObject.entries(APIMethods).forEach(([name, method]) => {\n\tAPI.prototype[name] = function APIMethod(...arg) {\n\t\tif (traceMode && name !== 'log') {\n\t\t\tlog(`${this.init.integrationId} called ${name}:`, ...arg);\n\t\t}\n\t\treturn method.call(null, this.init, ...arg);\n\t};\n});\n\nconst { DDC } = window || {};\nDDC.API = API;\nDDC.PrivateAPI = DDC.PrivateAPI || {};\nDDC.PrivateAPI = {\n\t...DDC.PrivateAPI,\n\tnotifyDynamicContent: () => {\n\t\tinvokeStandardEventEmitters();\n\t\tinvokeAllLoaders();\n\t},\n\tnotifyInventoryContent: vehicleData => {\n\t\tif (vehicleData) {\n\t\t\tinvokeInventoryItemEventEmitters(vehicleData);\n\t\t} else {\n\t\t\tinvokeInventoryListEventEmitters();\n\t\t}\n\t},\n\ttimings: {},\n\tcontent: {},\n\tgetGalleryContent,\n\tgetAllGalleryContent,\n\tgetPageLevelModifications,\n\tintegrationsLoaded: false,\n\ttrack: trackAPIMethods,\n\tinventoryData: null\n};\n\n// TODO: See if we can do this on-demand in unlockPricing rather than always executing this code.\nconst initMyCarsProfile = async () => {\n\tawait isDocumentReady();\n\n\t// Load the MyCars profile in case it's being utilized by API.utils.unlockPricing.\n\tif (DDC?.userProfileController?.loadProfile) {\n\t\tDDC.userProfileController.loadProfile();\n\t}\n};\n\nconst initIntegrations = async () => {\n\t// Dispatch event to inform that the API is ready\n\twindow.dispatchEvent(new Event('WIAPIReady'));\n\n\t// Load the integrations returned from the API config endpoint.\n\tawait loadIntegrations();\n\n\t// Dispatch event to inform that the integrations have been processed.\n\twindow.DDC.PrivateAPI.integrationsLoaded = true;\n\twindow.dispatchEvent(new Event('WIAPILoaded'));\n};\n\ninitMyCarsProfile();\ninitIntegrations();\n","import { trackAPIMethods } from '../tracking';\nimport { applyButtonOverrides } from './button-markup';\n\nexport const create = (init, type, options) => {\n\ttrackAPIMethods(init, { methodType: 'Create', type, ...options });\n\tif (type === 'button') {\n\t\treturn applyButtonOverrides(init, document.createElement('a'), options);\n\t}\n\treturn null;\n};\n","import { trackAPIMethods } from '../tracking';\nimport { createModifier } from './modifier';\n\nexport const modifyContent = (init, location, modifierObject) => {\n\tconst modifier = createModifier(init, location, modifierObject);\n\tmodifier.apply();\n\n\ttrackAPIMethods(init, { methodType: 'modifyContent', location });\n};\n","import {\n\tinvokeStandardEventEmitters,\n\tinvokeInventoryItemEventEmitters,\n\tinvokeInventoryListEventEmitters\n} from './event-emitters';\n\nimport {\n\ttransientVehicleModifiers,\n\tinvokeStandardInserts,\n\tinvokeVehicleInsertsAndUpdates\n} from '../edit';\n\nimport { getVehicles } from '../utils/get-vehicles';\n\nimport { getPageMetaData } from '../utils/get-page-meta-data';\n\nimport {\n\thasInventoryData,\n\thasDataBusInventory,\n\tclearObservers,\n\tquery\n} from '../utils/helpers';\n\nimport { isDocumentReady } from '../utils/wait-for';\n\nlet eventsInitialized = false;\n\n// Clean up data from the previous SRP view.\nexport const refreshData = async () => {\n\tclearObservers();\n\ttransientVehicleModifiers.clear();\n\twindow.DDC.PrivateAPI.inventoryData = {};\n\tawait getVehicles();\n\treturn true;\n};\n\nexport const fireVehicleInsertsAndUpdates = uuid => {\n\tif (!uuid || uuid.length < 32) {\n\t\treturn true;\n\t}\n\n\t// Fire the item event emitters (vehicle-shown-v1)\n\tinvokeInventoryItemEventEmitters({ uuid });\n\n\t// Insert the content from subscribers into the vehicle card.\n\tinvokeVehicleInsertsAndUpdates({ uuid });\n\n\treturn true;\n};\n\nexport const activatePlaceholder = location => {\n\tinvokeStandardInserts({ include: location });\n};\n\nexport const activateVehicleCard = data => {\n\tconst { id, isLocation } = data.detail;\n\n\t// Placeholder Cards\n\tif (isLocation) {\n\t\tactivatePlaceholder(id);\n\t} else {\n\t\tfireVehicleInsertsAndUpdates(id);\n\t}\n};\n\nexport const activateItemListeners = async () => {\n\t// Vehicle Cards\n\n\t// Replay events that were fired before the API loaded.\n\tif (window?.DDC?.APIEvents?.get) {\n\t\twindow.DDC.APIEvents.get().forEach(data => {\n\t\t\tactivateVehicleCard(data);\n\t\t});\n\t\twindow.DDC.APIEvents.received = [];\n\t}\n\n\twindow.addEventListener('wsInvListingShown', data => {\n\t\tactivateVehicleCard(data);\n\t});\n\n\t// Placeholder Locations added after initial page rendering\n\twindow.addEventListener('wiapiPlaceholderAvailable', data => {\n\t\tactivatePlaceholder(data.detail.location);\n\t});\n\n\treturn activatePlaceholder('listings-');\n};\n\nexport const setupItemEvents = async () => {\n\twindow.DDC.PrivateAPI = window.DDC.PrivateAPI || {};\n\twindow.DDC.PrivateAPI.inventoryData = {};\n\tawait refreshData();\n\tawait invokeInventoryListEventEmitters();\n\tawait activateItemListeners();\n\treturn true;\n};\n\nexport const reprocessDisplayedItems = () => {\n\tdocument.querySelectorAll('[data-uuid]').forEach(card => {\n\t\tconst uuid = card.getAttribute('data-uuid');\n\t\tactivateVehicleCard({\n\t\t\tdetail: {\n\t\t\t\tid: uuid,\n\t\t\t\tisLocation: false\n\t\t\t}\n\t\t});\n\t});\n};\n\nexport const initializeEvents = async () => {\n\tawait invokeStandardEventEmitters();\n\n\tconst pageMetaData = await getPageMetaData();\n\tif (!(pageMetaData?.searchPage || pageMetaData?.detailPage)) {\n\t\treturn;\n\t}\n\n\tawait hasInventoryData();\n\n\tif (await hasDataBusInventory()) {\n\t\tconst initializeSRPEvents = async () => {\n\t\t\tif (eventsInitialized) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\teventsInitialized = true;\n\n\t\t\tlet debouncing = null;\n\t\t\tlet previousViewportWidth = window.innerWidth;\n\t\t\tlet currentViewportWidth = 0;\n\n\t\t\tconst updateLayout = breakpoint => {\n\t\t\t\tclearTimeout(debouncing);\n\n\t\t\t\tcurrentViewportWidth = window.innerWidth;\n\n\t\t\t\tdebouncing = setTimeout(async () => {\n\t\t\t\t\t// Only replay the events when the user's browser size passes the breakpoint to avoid sending events unnecessarily.\n\t\t\t\t\tif (\n\t\t\t\t\t\t(currentViewportWidth <= breakpoint &&\n\t\t\t\t\t\t\tpreviousViewportWidth >= breakpoint) ||\n\t\t\t\t\t\t(currentViewportWidth >= breakpoint &&\n\t\t\t\t\t\t\tpreviousViewportWidth <= breakpoint)\n\t\t\t\t\t) {\n\t\t\t\t\t\tpreviousViewportWidth = window.innerWidth;\n\n\t\t\t\t\t\tsetupItemEvents();\n\t\t\t\t\t}\n\t\t\t\t}, 500);\n\t\t\t};\n\n\t\t\tconst updateLayoutListeners = () => {\n\t\t\t\tconst target = query(\n\t\t\t\t\t'#card-layout-toggle-portal button.active .ddc-icon'\n\t\t\t\t);\n\t\t\t\tif (!target) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tconst isGridView = target.classList.contains('ddc-icon-layout-grid');\n\t\t\t\tconst breakpoint = isGridView ? 1440 : 768;\n\t\t\t\tupdateLayout(breakpoint);\n\t\t\t};\n\n\t\t\t// Replay events when the browser is resized or orientation is changed.\n\t\t\twindow.addEventListener('resize', updateLayoutListeners, false);\n\n\t\t\t// Run the initial events when the page first loads.\n\t\t\tawait setupItemEvents();\n\n\t\t\t// Watch for the inventory to be updated.\n\t\t\tif (window.DDC && window.DDC.pubsub) {\n\t\t\t\twindow.DDC.pubsub.subscribe('ws-inv-data/inventory', async () => {\n\t\t\t\t\tawait setupItemEvents();\n\t\t\t\t});\n\t\t\t}\n\n\t\t\t// Watch for the listing view to be toggled.\n\t\t\twindow.DDC.InvData.registerToggleListingView(async () => {\n\t\t\t\tawait setupItemEvents();\n\t\t\t\treprocessDisplayedItems();\n\t\t\t});\n\n\t\t\treturn true;\n\t\t};\n\n\t\tif (window.DDC?.PrivateAPI?.wsInvListingRendered) {\n\t\t\tinitializeSRPEvents();\n\t\t} else if (window.DDC.pubsub) {\n\t\t\twindow.DDC.pubsub.subscribe('ws-inv-listing-update', () => {\n\t\t\t\tinitializeSRPEvents();\n\t\t\t});\n\t\t} else {\n\t\t\twindow.addEventListener('ws-inv-listing-update', () => {\n\t\t\t\tinitializeSRPEvents();\n\t\t\t});\n\t\t}\n\t} else {\n\t\tawait invokeInventoryListEventEmitters();\n\t\tawait invokeInventoryItemEventEmitters();\n\t}\n};\n\n(async () => {\n\tawait isDocumentReady();\n\tinitializeEvents();\n})();\n","import { invokeLoaders } from './index';\n\nwindow.addEventListener('DOMContentLoaded', () => {\n\t// Load all items (CSS and JS) as soon as the content loaded event occurs.\n\t// This is to avoid unnecessarily delaying API integrations behind non-API integrations.\n\t// When we eventually have a quarum of users on the API, we should switch this to only\n\t// load stylesheets here and load 'all' at the load event instead.\n\tinvokeLoaders('css'); // Load CSS early to avoid repainting\n\tinvokeLoaders('js'); // Load JS early to avoid unnecessarily delaying integrations at this stage.\n});\n\nwindow.addEventListener('load', () => {\n\tinvokeLoaders('all'); // Load remaining items after load event\n});\n"],"names":["normalizeIntegrationId","id","normalizedId","replace","normalizeIntegrationType","integrationTypes","includes","toLowerCase","startsWith","convertFormattedPriceToInt","value","parseInt","trim","titleCase","inputStr","delimiter","arguments","length","undefined","str","split","i","charAt","toUpperCase","slice","join","DATA_LOCATION","INSERT","INSERT_CTA","MODIFY_CTA","MODIFY_LINKS","PRIMARY_BANNER","RESTRICTIVELY_MODIFY_CTA","UPDATE","VEHICLE_BADGE","VEHICLE_CTAS","VEHICLE_MEDIA","VEHICLE_PAYMENTS","VEHICLE_PRICING","VEHICLE_BADGE_CUSTOM","VEHICLE_CTAS_CUSTOM","VEHICLE_MEDIA_CUSTOM","VEHICLE_PAYMENTS_CUSTOM","VEHICLE_PRICING_CUSTOM","PRIMARY_PLACEHOLDER_INTEGRATIONS","ALLOWED_SALES_INTEGRATIONS","isMenuOpen","_document$querySelect","document","querySelector","classList","contains","waitForElement","selector","Promise","resolve","checkElement","element","window","requestAnimationFrame","waitForMenu","menuOpenEventName","targetElement","then","catch","_window$DDC2","handleMenuOpenEvent","async","_window$DDC","DDC","pubsub","unsubscribe","subscribe","isDocumentReady","readyState","addEventListener","once","isWIAPILoaded","_window$DDC3","eventResolved","eventName","PrivateAPI","integrationsLoaded","data","waitForObject","objectPath","interval","timeout","reject","checkObject","timeoutHandler","setTimeout","clearInterval","Error","setInterval","parts","current","every","part","clearTimeout","pageInfo","accountId","account","siteId","defaultDomain","siteSettings","pageName","pagePath","attributes","locale","dataLayer","page","trackAPIMethods","init","payload","Math","random","newrelic","nrPayload","status","addPageAction","integrationId","integrationType","integrationCategory","placesInventoryContent","getCookie","name","nameEQ","ca","cookie","c","substring","indexOf","currentPageData","getPageMetaData","Object","keys","design","franchises","site","searchPage","isVlp","detailPage","isVdp","indexPage","isHomepage","layoutType","pageUrl","ga_clientId","ga_visitorId","fetchPriorityFlagJS","_window","Flags","fetchPriorityFlagCSS","_window2","featureFlags","fetchPriorityJS","fetchPriorityCSS","inlinePrimaryBanner","_window3","onlyCoxIntegrations","_window4","observers","Set","query","target","queryAll","scope","Array","from","querySelectorAll","activateModules","targetEl","pageData","modules","dialog","active","jQuery","trigger","popover","forEach","getAttribute","load","mobile","slidein","dialogAppend","fetchJson","url","methodName","response","fetch","headers","Accept","ok","methodType","size","json","error","message","getUrlParams","getLocalizedContent","content","result","en_US","hasDataBusInventory","InvData","WS","srpReady","hasWsInvData","state","wsInvListingRendered","hasValidInventory","_dataLayer$vehicles","inventory","totalCount","vehicles","hasLegacyInventory","_dataLayer$vehicles2","hasLegacyGridViewInventory","_window5","isSrp","_window6","isNewSrp","_window7","inventoryDataChecker","checker","type","hasDataBusFacets","facets","hasInventoryData","eventOptions","passive","capture","log","ident","integrationLog","_len","args","_key","isDebugMode","urlParams","_integrationMode","isTraceMode","_integrationLogLevel","traceMode","parentTargets","append","appendEl","appendLinks","link","href","setAttribute","hashedContents","chr","hash","normalizedString","charCodeAt","getHash","outerHTML","existingInsert","closest","trackClick","event","_targetEl$closest","fireTrackingEvent","srcElement","dataLocation","textContent","tagName","vehicleUuid","trackingData","product","step","action","appendChild","remove","parentContainer","parent","add","innerHTML","appendElement","Location","constructor","this","getElements","bind","getMeta","isReady","vehicle","itemSelector","uuid","elems","getConfig","elementType","prepareLocation","_elem","PageLocation","classes","singleLocation","clearContent","placement","super","options","allowedPriceFields","allowedVehicleAttributes","getInventoryType","newOrUsed","inventoryType","getIsCertified","certified","addFields","vehicleObject","extraFields","highestPrice","startingPrice","finalPrice","priceField","field","formattedPrice","reduce","resVehicle","key","getInventoryData","inventoryData","push","cacheKey","toString","dataLayerVehicles","dataBusVehicles","allowedFields","renamedAttributes","cityFuelEfficiency","highwayFuelEfficiency","map","_dbVehicle$pricing","_dbVehicle$pricing2","year","modelYear","invType","entries","mapping","location","origin","optionCodes","images","uri","dbVehicle","filter","item","pricing","dPrice","dprice","startingPriceFound","price","priceObject","typeClass","isFinalPrice","formatDataBusInventory","pageMetaData","dlVehicles","allowedPriceClasses","priceClasses","priceClass","prices","vehicleData","dlVehicle","pathname","dealerCodes","JSON","parse","el","address","accountName","parentElement","parentClass","newPrice","innerText","formattedVehicle","autodataCaId","bodyStyle","chromeId","cityFuelEconomy","classification","doors","driveLine","engine","engineSize","deliveryDateRange","exteriorColor","fuelType","highwayFuelEconomy","interiorColor","inventoryDate","make","model","modelCode","odometer","oemSourcedMerchandisingStatus","optionCodesOther","packageCode","packages","stockNumber","transmission","vin","formatLegacyDataLayerInventory","dataset","imageElems","image","src","offsetParent","dealercodes","keyVal","_","acc","_ref","val","optioncodes","accountid","autodatacaid","bodystyle","chromeid","cityfueleconomy","driveline","enginesize","exteriorcolor","fueltype","highwayfueleconomy","interiorcolor","inventorydate","modelcode","packagecode","stocknumber","formatLegacyGridViewInventory","getVehicles","getVehicleData","getAttributeForVehicles","uuids","results","filteredKey","VehicleLocation","elem","targetUuid","targetVehicles","getVehicleObject","badgeClassesPrefix","BadgeLocation","gridSrpClasses","responsiveSrpClasses","vdpClasses","ListingLocation","MediaLocation","listingsPlaceholderPrefix","listingsAdPrefix","insertLocations","freeze","config","isCenteredNav","navbar","itemListAll","className","RegExp","heading","allowSelectedUpdatesToButtonIntents","allowSelectedUpdatesToButtonClasses","allowedLinkUpdateLocations","allowAllUpdatesToButtonTypes","allowSelectedUpdatesToButtonTypes","buttonIdentifier","updateLocations","insertLocationNames","allowAllUpdateLocationNames","allowSelectedUpdateLocationNames","newSrp","addAttributes","attribute","applyButtonWrapperOverrides","instance","targetLocation","destinationLocation","applyButtonOverrides","vehicleCTA","includeWIAPIAttributes","allowModifyClasses","parentNode","cloneNode","replaceChild","buttonText","text","removeAttribute","style","imgSrc","img","createElement","alt","imgAlt","imgClasses","imgAttributes","onclick","attributeName","popoverOptions","toggle","animation","container","delayShow","delayHide","title","html","MapOfStringToList","ensureListForKey","clear","_len2","_key2","modifyLocations","listOfAllowedModificationLocation","validateNonZeroLengthString","validateIsAnObject","testItem","validateObjectHasAllowedProprties","testObject","allowedProperties","objDesc","propertiesInTestObject","invalidProps","prop","isAllowedProp","validateInitIsAnObject","Subscription","callback","events","subscriptions","callCallback","ev","object","stringify","e","GALLERY_TARGETS","CONTENT_TYPES","POSITIONS","INSERT_METHODS","contentKeySet","validateGalleryTarget","validateRequiredArg","argName","arg","triggerVehicleMediaUpdatedEvent","debounce","detailPayload","dispatchEvent","CustomEvent","detail","triggerAllVehicleMediaUpdatedEvent","insertVehicleMedia","dataArray","insertMethod","validateInsertMethod","find","pos","entry","position","thumbnail","validateContentType","validatePosition","contentKey","err","has","stringToElements","inputHtml","firstChild","configsPromise","hasPlaceHolders","replacePlaceHolders","integrationUrl","configFields","replacer","loadConfigs","fetchParams","_toggleBasePageCache","_toggleWIAPICache","Date","getTime","getConfigProp","configs","keynameBreadcrumbList","obj","propObj","keyname","getProp","getContentMappings","testConfig","trackToNewRelic","hasLegacyConfigs","Integration","settings","legacyConfigData","configKey","processLegacyConfigData","resolvedConfig","hasTestConfig","_integrationConfig","fields","wiseIntegration","mobileEnabled","enabledSeamless","desktopEnabled","enabledDesktop","fieldsToExclude","overrideConfigPageTypes","srp","vdp","index","newObj","baseKey","targetPage","availableKeys","availableIntegrations","processConfigData","trackTiming","category","timingKey","timing","timings","PageLinkLocation","locations","allowedCustomInsertLocations","Editor","intent","validateLocationName","locationName","locationNames","uniqueId","createUniqueId","s4","floor","defaultLocation","integrationCall","getInsertSite","apply","locationElem","locationConfig","queryTargets","existingSite","insertSite","additionalClasses","removeChild","insertBefore","locationData","isVehicleEvent","start","now","useCustomInsertLocations","endsWith","mappings","buttonMappings","buttons","button","source","destination","currentLinkTargets","links","locationTargetsInPage","locationElems","callCallbacks","_locationElem$querySe","_closestLocation$clas","locationMeta","shouldInsertItems","isUnique","allowedOptions","restrictedAttrs","restrictedAttrsList","restrictedAttrNames","buttonMarkup","newLocation","newInsertSite","locationIsLink","nodeName","locationIsButton","newInsertAnchor","targetElem","replaceWith","updatedButton","renderAsFirstChild","closestLocation","end","insertions","allListingElems","observerPromise","checkAndResolve","listingElems","observer","disconnect","getAllListingLocationElems","Map","newElem","existListingElems","get","set","MutationObserver","mutationsList","mutation","observe","childList","subtree","isListingLocation","isInsertedListingLocation","isPrimaryPlaceholderIntegration","isInsertableToPlaceholder","_allListingElems","hasPrimaryPlaceholderIntegration","calculateTargetListingLocation","availableLocation","currentLocation","allAvailableListingLocations","sort","nextLocation","getFirstAvailableListingLocation","setInsertedListingLocation","standardModifiers","vehicleModifiers","transientVehicleModifiers","invokeStandardInserts","insert","exclude","include","edit","editor","isNewSrpVehicleLocation","insertCallToAction","ctaIntent","update","DEVICE_TYPES","TARGETS","modifications","setPageLevelModification","integration","modifierObject","validateIfLocationIsNotAlreadyModified","triggerPageModificationsUpdateEvent","KEY_WIAPI_SETTINGS","FIELDS_WIAPI_SETTINGS","getSettingsFromStorage","sessionStorage","getItem","getSettings","addToSettings","force","normalizedValue","normalize","setItem","setSettings","updateSettingsFromConfig","settingName","Loader","attr","isIntegrationLoad","validateTypeMap","property","fileType","immutableAttr","invoked","trackLoaderResult","insertTag","tag","tagElement","attrValue","attrKey","body","rel","media","head","onload","onerror","_resolve","loaders","determineFileType","loader","some","loadJS","invokeLoaders","cookieValue","DISABLE_THIRD_PARTY","ENABLE_THIRD_PARTY","DEBUG_THIRD_PARTY","COX_ONLY","RESET_CUSTOM","INVALID_PROTOCOL","DEVICE_ENABLEMENT","errorBuilder","T_ERROR","handleCoxOnly","handleDebugThirdParty","handleDeviceEnablement","handleDisableThirdParty","handleEnableThirdParty","handleInvalidProtocol","handleResetCustom","handleDefault","logBuilder","T_LOG","handleLoadingIntegrationJs","Validator","debugMode","integrationList","reducer","T_VALIDATION","isValid","onlyCoxIntegration","_mode","rules","thirdPartyServiceDebug","deviceEnablement","isWiseIntegration","isEnabledSeamless","isEnabledDesktop","disableThirdParty","_onlyDisableThirdParty","enableThirdParty","_onlyEnableThirdParty","_disableTPS","_enableWIAPI","_disableWIAPI","all","validate","validateList","types","loadIntegrations","loadPromises","promiseList","urls","excludedPages","urlsPromises","urlItem","urlAttributes","loadIntegration","excludedFromPage","hasAddToPagesSettings","match","itemMap","fieldPromise","allSettled","createModifier","validateIfLocationIsModifiable","validateTheModifierObjectForLocation","schema","locationHandler","newButtonMarkup","EventEmitter","eventType","validateEventType","fireEvent","invoke","modifiedEvent","timestamp","subscription","InvokeOnceEventEmitter","invokeOnce","getDealershipData","dealership","dealerCode","assign","dealershipAddress1","address1","dealershipAddress2","address2","dealershipCity","city","dealershipCodes","dealershipCountry","country","dealershipFranchises","dealershipName","dealershipPostalCode","postalCode","dealershipStateProvince","stateProvince","showOrHidePayments","payment","facet","hideDefaultPayments","showDefaultPayments","handlePaymentVisibility","pageAlias","pageSettings","showPayments","getUserShowPayments","localStorage","show","hiddenContentPlaceholderClasses","hasLocation","createNewLocation","getTargetLocation","customName","insertAfter","referenceNode","newElement","nextSibling","insertInto","getVehicleCtaWidgets","ctaPortals","overrideLocationName","urlToButtonIntents","addMobileVdpFooterLocation","vdpFooter","editLocation","ldClient","waitUntilReady","onLdClientReady","flags","allFlags","flagDelayDuration","flagDelayToggle","shouldDelay","delayLoadVdpFooter","getDelayFromWiapiSettings","_vdpFooter$classList","populateEditSites","dataTargetLocations","reactPortal","targetLocations","_reactPortal","_reactPortal2","primaryBannerInsertTarget","addPrimaryBannerLocation","linksList","linkLabel","ctaEditSites","vehicleCtaLocationName","widget","pricingLocation","ctaLocation","ctaInsertLocation","addCallToActionLocation","vehiclePaymentsLocationName","paymentTarget","addVehiclePaymentsLocation","vehiclePricingLocationName","vehiclePricingLocation","addVehiclePricingLocation","vehicleMediaLocationName","vehicleBadgeLocationName","vehicleMediaInsertTarget","addLegacyVehicleDetailsPageLocations","secondaryContentInsertTarget","addSecondaryContentLocation","dataLocationName","addContentCtaLocations","existingPrivacyForm","privacyFormInsertTarget","addPrivacyFormLocation","standardEmitters","vehicleListEmitters","vehicleItemEmitters","fireVehicleEvents","foundVehicle","targetVehicle","invokeEventEmitters","emitters","emitter","invokeStandardEventEmitters","remediateStylingIssues","invokeInventoryListEventEmitters","invokeInventoryItemEventEmitters","itemListPromises","getJwt","jwtMethod","vins","decodedJwt","token","splitToken","base64","jsonPayload","decodeURIComponent","atob","decodeJwt","VINs","jwt","Utils","getIntegrationId","getIntegrationType","PrivateUtils","classesToDecorate","methods","getDealerData","getJwtForSite","getJwtForVehicles","getPageData","getPixallVisitorId","visitorId","Cookies","Pixall","getVisitorId","getSitemap","getSiteProperties","getUnlockedVehicles","userProfile","ePriceVehicles","_item$itemUUID","itemUUID","unlockPricing","ids","userProfileController","saveInstantEpriceVehicle","saveVehicle","getItemList","decorateTarget","method","prototype","call","APIMethods","create","insertOnce","insertCallToActionOnce","insertGalleryContent","normalizedData","isArray","insertMenuContent","device","validateDeviceType","isFragmentNavType","headerInFragment","validateTarget","menuData","meta","hasChildNodes","markup","primaryText","secondaryText","expanded","menuIcon","subItems","navType","domElements","showExpandedToggle","showExpandedPanel","wrapperElement","secondText","panelHeading","subItemsList","li","anchor","panelBodyWrapper","createMenuMarkup","appendedElem","updateOnce","updateLink","modifyContent","loadCSS","subscribedEvent","test","setCookie","days","expires","date","setTime","toGMTString","API","initializer","currentScript","utils","privateUtils","notifyDynamicContent","notifyInventoryContent","getGalleryContent","getAllGalleryContent","getPageLevelModifications","track","_DDC$userProfileContr","loadProfile","initMyCarsProfile","Event","initIntegrations","eventsInitialized","refreshData","delete","fireVehicleInsertsAndUpdates","activatePlaceholder","activateVehicleCard","isLocation","setupItemEvents","APIEvents","received","activateItemListeners","initializeEvents","initializeSRPEvents","debouncing","previousViewportWidth","innerWidth","currentViewportWidth","updateLayoutListeners","breakpoint","updateLayout","registerToggleListingView","card"],"mappings":"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"}