@yext/search-core
Version:
Typescript Networking Library for the Yext Search API
22 lines • 790 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Source = void 0;
/**
* Represents the source of a {@link Result}.
*
* @public
*/
var Source;
(function (Source) {
/** The result is from a Knowledge Graph. */
Source["KnowledgeManager"] = "KNOWLEDGE_MANAGER";
/** The result is from Google Custom Search Engine. */
Source["Google"] = "GOOGLE_CSE";
/** The result was from a custom source. */
Source["Custom"] = "CUSTOM_SEARCHER";
/** The result is from a document vertical. */
Source["DocumentVertical"] = "DOCUMENT_VERTICAL";
/** The result is from a function vertical. */
Source["FunctionVertical"] = "FUNCTION_VERTICAL";
})(Source = exports.Source || (exports.Source = {}));
//# sourceMappingURL=Source.js.map