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): keep hidden params the block exposes as user-typed fields
The visibility:'hidden' filter added earlier dropped 40 unsettable rows, but
it over-removed: a param can be hidden on the tool because the block injects
it, while the block still renders it as a required field the user fills in.
Mailchimp's apiKey was the only place its page documented an API key -- the
page went to zero mentions for an integration that cannot run without one.
Zendesk's apiToken and SharePoint's siteId had the same shape.
A hidden param is now dropped only when the block declares no subBlock for
it, matched on id or canonicalParamId. Restores 128 rows across 11 pages,
additions only. Jira cloudId, Salesforce idToken/instanceUrl and NetSuite
instanceUrl stay removed -- all genuinely injected, none with a subBlock.
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/integrations/firecrawl.mdx
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,7 @@ Extract structured content from web pages with comprehensive metadata support. C
51
51
| Parameter | Type | Required | Description |
52
52
| --------- | ---- | -------- | ----------- |
53
53
|`url`| string | Yes | The URL to scrape content from \(e.g., "https://example.com/page"\)|
54
+
|`formats`| json | No | Output formats supplied by existing Firecrawl block configurations |
54
55
|`firecrawlTimeout`| number | No | How long Firecrawl may spend on the scrape, in milliseconds. Sent as `timeout` in the request body; it does not bound Sim's own transport deadline. |
55
56
|`apiKey`| string | Yes | Firecrawl API key |
56
57
@@ -220,6 +221,7 @@ Crawl entire websites and extract structured content from all accessible pages
220
221
|`limit`| number | No | Maximum number of pages to crawl \(e.g., 50, 100, 500\). Default: 100 |
221
222
|`maxDepth`| number | No | Maximum depth to crawl from the starting URL \(e.g., 1, 2, 3\). Controls how many levels deep to follow links |
222
223
|`formats`| json | No | Output formats for scraped content \(e.g., \["markdown"\], \["markdown", "html"\], \["markdown", "links"\]\)|
224
+
|`prompt`| string | No | Natural-language crawl guidance supplied by existing configurations |
223
225
|`excludePaths`| json | No | URL paths to exclude from crawling \(e.g., \["/blog/*", "/admin/*", "/*.pdf"\]\)|
224
226
|`includePaths`| json | No | URL paths to include in crawling \(e.g., \["/docs/*", "/api/*"\]\). Only these paths will be crawled |
225
227
|`onlyMainContent`| boolean | No | Extract only main content from pages |
@@ -311,6 +313,7 @@ Get a complete list of URLs from any website quickly and reliably. Useful for di
|`limit`| number | No | Maximum number of links to return \(e.g., 100, 1000, 5000\). Max: 100,000, default: 5,000 |
313
315
|`firecrawlTimeout`| number | No | How long Firecrawl may spend on the map, in milliseconds. Sent as `timeout` in the request body; it does not bound Sim's own transport deadline. |
316
+
|`location`| json | No | Geographic context for proxying \(country, languages\)|
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/integrations/google_docs.mdx
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -87,6 +87,7 @@ Create a new Google Docs document
87
87
|`title`| string | Yes | The title of the document to create |
88
88
|`content`| string | No | The content of the document to create |
89
89
|`folderSelector`| string | No | Google Drive folder ID to create the document in \(e.g., 1ABCxyz...\)|
90
+
|`folderId`| string | No | The ID of the folder to create the document in \(internal use\)|
90
91
|`markdown`| boolean | No | When true, content is interpreted as Markdown and converted to formatted Google Docs content \(headings, bold/italic, lists, tables, links, code blocks, blockquotes\). Default: false \(content inserted as plain text\). |
0 commit comments