Comparing version 1.0.13 to 1.0.14
@@ -14,2 +14,4 @@ /** | ||
* @property {string} [category] - A data category to focus on, with higher comprehensivity and data cleanliness. Currently, the only category is company. | ||
* @property {string[]} [includeText] - List of strings that must be present in webpage text of results. Currently only supports 1 string of up to 5 words. | ||
* @property {string[]} [excludeText] - List of strings that must not be present in webpage text of results. Currently only supports 1 string of up to 5 words. | ||
*/ | ||
@@ -25,7 +27,8 @@ type BaseSearchOptions = { | ||
category?: string; | ||
includeText?: string[]; | ||
excludeText?: string[]; | ||
}; | ||
/** | ||
* Search options for performing a search query. | ||
* @typedef {Object} ContentsOptions | ||
* @property {string[]} [formats] - An array of format types asked for. Currently supports `extract` (first 1000 tokens) and `text` (full parsed HTML text). If this isn't specified, defaults to `extract`. | ||
* @typedef {Object} RegularSearchOptions | ||
*/ | ||
@@ -48,2 +51,4 @@ type RegularSearchOptions = BaseSearchOptions & { | ||
* @property {string} [category] - A data category to focus on, with higher comprehensivity and data cleanliness. Currently, the only category is company. | ||
* @property {string[]} [includeText] - List of strings that must be present in webpage text of results. Currently only supports 1 string of up to 5 words. | ||
* @property {string[]} [excludeText] - List of strings that must not be present in webpage text of results. Currently only supports 1 string of up to 5 words. | ||
*/ | ||
@@ -50,0 +55,0 @@ type FindSimilarOptions = BaseSearchOptions & { |
{ | ||
"name": "exa-js", | ||
"version": "1.0.13", | ||
"version": "1.0.14", | ||
"description": "Exa SDK for Node.js and the browser", | ||
@@ -5,0 +5,0 @@ "publishConfig": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
56354
487