You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/diffbot.d.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ declare class Diffbot {
41
41
* Execute an article API call
42
42
* @param {Object} options The search options
43
43
* @param {string} [options.url] Web page URL of the article to process (required unless posting plain text)
44
-
* @param {string[]} [options.fields] Used to specify optional fields to be returned by the Article API.
44
+
* @param {string[]} [options.fields] Used to specify optional fields to be returned by the Article API. See fields: https://www.diffbot.com/dev/docs/article/#fields
45
45
* @param {boolean} [options.paging] Pass paging=false to disable automatic concatenation of multiple-page articles. (By default, Diffbot will concatenate up to 20 pages of a single article.)
46
46
* @param {number} [options.maxTags] Set the maximum number of automatically-generated tags to return. By default a maximum of ten tags will be returned.
47
47
* @param {number} [options.tagConfidence] Set the minimum relevance score of tags to return, between 0.0 and 1.0. By default only tags with a score equal to or above 0.5 will be returned.
@@ -139,7 +139,7 @@ declare class Diffbot {
139
139
* Execute a product API call
140
140
* @param {Object} options The search options
141
141
* @param {string} options.url Web page URL of the product to process
142
-
* @param {string[]} [options.fields] Used to specify optional fields to be returned by the Product API.
142
+
* @param {string[]} [options.fields] Used to specify optional fields to be returned by the Product API. See fields: https://www.diffbot.com/dev/docs/product/#fields
143
143
* @param {boolean} [options.discussion] Pass discussion=false to disable automatic extraction of product reviews.
144
144
* @param {number} [options.timeout] Sets a value in milliseconds to wait for the retrieval/fetch of content from the requested URL. The default timeout for the third-party response is 30 seconds (30000).
145
145
* @param {string} [options.callback] Use for jsonp requests. Needed for cross-domain ajax.
Copy file name to clipboardExpand all lines: src/diffbot.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -80,7 +80,7 @@ class Diffbot {
80
80
* Execute an article API call
81
81
* @param {Object} options The search options
82
82
* @param {string} [options.url] Web page URL of the article to process (required unless posting plain text)
83
-
* @param {string[]} [options.fields] Used to specify optional fields to be returned by the Article API.
83
+
* @param {string[]} [options.fields] Used to specify optional fields to be returned by the Article API. See fields: https://www.diffbot.com/dev/docs/article/#fields
84
84
* @param {boolean} [options.paging] Pass paging=false to disable automatic concatenation of multiple-page articles. (By default, Diffbot will concatenate up to 20 pages of a single article.)
85
85
* @param {number} [options.maxTags] Set the maximum number of automatically-generated tags to return. By default a maximum of ten tags will be returned.
86
86
* @param {number} [options.tagConfidence] Set the minimum relevance score of tags to return, between 0.0 and 1.0. By default only tags with a score equal to or above 0.5 will be returned.
@@ -292,7 +292,7 @@ class Diffbot {
292
292
* Execute a product API call
293
293
* @param {Object} options The search options
294
294
* @param {string} options.url Web page URL of the product to process
295
-
* @param {string[]} [options.fields] Used to specify optional fields to be returned by the Product API.
295
+
* @param {string[]} [options.fields] Used to specify optional fields to be returned by the Product API. See fields: https://www.diffbot.com/dev/docs/product/#fields
296
296
* @param {boolean} [options.discussion] Pass discussion=false to disable automatic extraction of product reviews.
297
297
* @param {number} [options.timeout] Sets a value in milliseconds to wait for the retrieval/fetch of content from the requested URL. The default timeout for the third-party response is 30 seconds (30000).
298
298
* @param {string} [options.callback] Use for jsonp requests. Needed for cross-domain ajax.
0 commit comments