The NavigatorContext interface represents the context of the browser client.

interface NavigatorContext {
    clientId: string;
    location: null | string;
    referrer: null | string;
    userAgent: null | string;
}

Properties

clientId: string

The unique identifier of the browser client in a Coveo-powered page. See clientId.

location: null | string

The URL of the current page.

referrer: null | string

The URL of the page that referred the user to the current page. See Referer

userAgent: null | string

The user agent string of the browser that made the request. See User-Agent