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
fix(docs): correct Drive/Firecrawl/Vanta output and param descriptions
Google Drive nextPageToken: the discovery doc says the field is *absent*
at the end of the list, not empty. Say absent, and name the resource
(files/comments/permissions/revisions) per tool.
Firecrawl search outputs: restore the per-format gate the v2 OpenAPI
states ("HTML content if requested in formats"), and add that Search
exposes no input for those formats.
Vanta mimeType: the route resolves a content type from storage on every
path, so the param is never read. Say so instead of describing it as a
fallback.
Dataverse: describe the request as sending the bytes as the raw body.
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/integrations/firecrawl.mdx
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -167,11 +167,11 @@ Search for information on the web using Firecrawl
167
167
| ↳ `title`| string | Search result title from search engine |
168
168
| ↳ `description`| string | Search result description/snippet from search engine |
169
169
| ↳ `url`| string | URL of the search result |
170
-
| ↳ `markdown`| string | Page content in markdown, present only when the search result includes scraped page content|
171
-
| ↳ `html`| string | Processed HTML content, present only when the search result includes scraped page content|
172
-
| ↳ `rawHtml`| string | Unprocessed raw HTML, present only when the search result includes scraped page content|
173
-
| ↳ `links`| array | Links found on the page, present only when the search result includes scraped page content|
174
-
| ↳ `screenshot`| string | Screenshot URL \(expires after 24 hours\), present only when the search result includes a page screenshot|
170
+
| ↳ `markdown`| string | Page content in markdown; returned only when scraping was requested, for which the Search operation exposes no input|
171
+
| ↳ `html`| string | Processed HTML content; returned only when "html" is among the requested scrape formats, for which the Search operation exposes no input|
172
+
| ↳ `rawHtml`| string | Unprocessed raw HTML; returned only when "rawHtml" is among the requested scrape formats, for which the Search operation exposes no input|
173
+
| ↳ `links`| array | Links found on the page; returned only when "links" is among the requested scrape formats, for which the Search operation exposes no input|
174
+
| ↳ `screenshot`| string | Screenshot URL \(expires after 24 hours\); returned only when "screenshot" is among the requested scrape formats, for which the Search operation exposes no input|
175
175
| ↳ `metadata`| object | Metadata about the search result page |
176
176
| ↳ `title`| string | Page title |
177
177
| ↳ `description`| string | Page meta description |
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/integrations/microsoft_dataverse.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -387,7 +387,7 @@ Update an existing record in a Microsoft Dataverse table. Only send the columns
387
387
388
388
### Upload File to Microsoft Dataverse
389
389
390
-
Upload a file to a file or image column on a Dataverse record. Supports single-request upload for files up to 128 MB. Provide the file through the File input; its bytes are read from storage and sent to Dataverse directly.
390
+
Upload a file to a file or image column on a Dataverse record. Supports single-request upload for files up to 128 MB. Provide the file through the File input; its bytes are read from storage and sent as the raw request body.
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/integrations/vanta.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -331,7 +331,7 @@ Upload an evidence file to a Vanta document. Requires credentials with the vanta
331
331
|`documentId`| string | Yes | Unique ID of the document to attach the file to |
332
332
|`file`| file | No | The evidence file to upload |
333
333
|`fileName`| string | No | Optional file name override |
334
-
|`mimeType`| string | No | MIME type of the file \(e.g., application/pdf\); used only as a fallback when the uploaded file does not carry a content type of its own|
334
+
|`mimeType`| string | No | MIME type of the file \(e.g., application/pdf\). Not currently applied: a file uploaded through the File input always sends the content type resolved from storage.|
335
335
|`description`| string | No | Description of the uploaded evidence \(e.g., "Q3 access review evidence"\)|
336
336
|`effectiveAtDate`| string | No | ISO 8601 date indicating when the document is effective from |
'Page content in markdown, present only when the search result includes scraped page content',
139
+
'Page content in markdown; returned only when scraping was requested, for which the Search operation exposes no input',
140
140
optional: true,
141
141
},
142
142
html: {
143
143
type: 'string',
144
144
description:
145
-
'Processed HTML content, present only when the search result includes scraped page content',
145
+
'Processed HTML content; returned only when "html" is among the requested scrape formats, for which the Search operation exposes no input',
146
146
optional: true,
147
147
},
148
148
rawHtml: {
149
149
type: 'string',
150
150
description:
151
-
'Unprocessed raw HTML, present only when the search result includes scraped page content',
151
+
'Unprocessed raw HTML; returned only when "rawHtml" is among the requested scrape formats, for which the Search operation exposes no input',
152
152
optional: true,
153
153
},
154
154
links: {
155
155
type: 'array',
156
156
description:
157
-
'Links found on the page, present only when the search result includes scraped page content',
157
+
'Links found on the page; returned only when "links" is among the requested scrape formats, for which the Search operation exposes no input',
158
158
optional: true,
159
159
items: {type: 'string',description: 'URL found on the page'},
160
160
},
161
161
screenshot: {
162
162
type: 'string',
163
163
description:
164
-
'Screenshot URL (expires after 24 hours), present only when the search result includes a page screenshot',
164
+
'Screenshot URL (expires after 24 hours); returned only when "screenshot" is among the requested scrape formats, for which the Search operation exposes no input',
0 commit comments