@yext/search-core
Version:
Typescript Networking Library for the Yext Search API
20 lines (19 loc) • 452 B
TypeScript
/**
* The source of the search request.
*
* @public
*/
export declare enum QuerySource {
/**
* Indicates that the query was initiated from a standard Search integration.
*/
Standard = "STANDARD",
/**
* Indicates that the query was initiated from a Search Overlay.
*/
Overlay = "OVERLAY",
/**
* Indicates that the query was initiated from visual autocomplete.
*/
Autocomplete = "AUTOCOMPLETE"
}