Core data configuration

interface ICoreData {
    pageName?: string;
    pageType?: string;
    referrerUri?: string;
    requestUri?: string;
}

Properties

pageName?: string

Default page name is derived from the url. This is used to override the default.

pageType?: string

PageType is captured from a meta tag named awa-pageType. This is used to override the value or bypass defining meta tags.

referrerUri?: string

document.referrer is the default. This is used to override the default value.

requestUri?: string

window.location.href is the default. This is used to override the default value.