UNPKG

@yext/search-core

Version:

Typescript Networking Library for the Yext Search API

19 lines 670 B
/** * Represents the source of a {@link Result}. * * @public */ export 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 || (Source = {})); //# sourceMappingURL=Source.js.map