Skip to content

Commit 1370c43

Browse files
committed
chore(generated): regenerate metadata and docs after the validation fixes
Reflects the corrected Serper places mapping and restored search extras, the Firecrawl source-keyed search output, the LangSmith feedback value and sessionId changes, and the Elasticsearch index and get_index changes.
1 parent 0cbd1c8 commit 1370c43

9 files changed

Lines changed: 50 additions & 36 deletions

File tree

apps/docs/content/docs/en/integrations/elasticsearch.mdx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ Search documents in Elasticsearch using Query DSL. Returns matching documents wi
6565
| `took` | number | Time in milliseconds the search took |
6666
| `timed_out` | boolean | Whether the search timed out |
6767
| `hits` | object | Search results with total count and matching documents |
68-
| `aggregations` | json | Aggregation results if any |
6968

7069
### Elasticsearch Index Document
7170

@@ -287,7 +286,7 @@ Delete an index and all its documents. This operation is irreversible.
287286

288287
### Elasticsearch Get Index
289288

290-
Retrieve index information including settings, mappings, and aliases.
289+
Retrieve index information including settings, mappings, and aliases. Accepts a comma-separated list of indices, data streams, and aliases, and supports wildcards.
291290

292291
#### Input
293292

@@ -300,7 +299,7 @@ Retrieve index information including settings, mappings, and aliases.
300299
| `apiKey` | string | No | Elasticsearch API key |
301300
| `username` | string | No | Username for basic auth |
302301
| `password` | string | No | Password for basic auth |
303-
| `index` | string | Yes | Index name to retrieve info for \(e.g., "products", "logs-2024"\) |
302+
| `index` | string | Yes | Index, data stream, or alias to retrieve info for. Accepts a comma-separated list and wildcards \(e.g., "products", "logs-2024", "logs-*", "a,b"\). |
304303

305304
#### Output
306305

@@ -310,6 +309,8 @@ Retrieve index information including settings, mappings, and aliases.
310309
| `aliases` | json | Aliases defined on the index |
311310
| `mappings` | json | Field mappings for the index |
312311
| `settings` | json | Index settings |
312+
| `indices` | json | Every matched index keyed by its resolved name, each with its aliases, mappings, settings, and any data_stream or lifecycle. Populated for single- and multi-target requests alike. |
313+
| `matchedCount` | number | How many indices, data streams, or aliases the target matched |
313314

314315
### Elasticsearch Cluster Health
315316

@@ -327,7 +328,7 @@ Get the health status of the Elasticsearch cluster.
327328
| `username` | string | No | Username for basic auth |
328329
| `password` | string | No | Password for basic auth |
329330
| `waitForStatus` | string | No | Wait until cluster reaches this status: green, yellow, or red |
330-
| `esTimeout` | string | No | Elasticsearch wait timeout as a duration string \(e.g., 30s, 1m\). Named esTimeout because the executor reserves "timeout" for the transport deadline in milliseconds. |
331+
| `esTimeout` | string | No | Elasticsearch wait timeout as a duration string \(e.g., 30s, 1m\). A bare number is read as seconds. Named esTimeout because the executor reserves "timeout" for the transport deadline in milliseconds. |
331332

332333
#### Output
333334

apps/docs/content/docs/en/integrations/firecrawl.mdx

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ Search for information on the web using Firecrawl
159159
| Parameter | Type | Required | Description |
160160
| --------- | ---- | -------- | ----------- |
161161
| `query` | string | Yes | The search query to use |
162-
| `limit` | number | No | Maximum number of results to return \(Firecrawl default: 10\) |
163-
| `sources` | array | No | Result sources to search. Defaults to \["web"\]. Results from every requested source are flattened into `data` in web, news, images order. |
162+
| `limit` | number | No | Maximum number of results to return per source type, not in total \(Firecrawl default: 10, maximum: 100\). Requesting three sources at limit 100 can return up to 300 results. |
163+
| `sources` | array | No | Result sources to search: "web", "news", and/or "images". Defaults to \["web"\]. Each requested source is returned as its own array under `data` `data.web`, `data.news`, `data.images` — with its own item fields. |
164164
| `categories` | array | No | Restrict web results to these categories: "github", "research", or "pdf" |
165165
| `tbs` | string | No | Time-based search filter \(e.g. "qdr:d" for the past day, "qdr:w" for the past week\) |
166166
| `location` | string | No | Location to search from \(e.g. "Germany", "San Francisco, California"\) |
@@ -174,21 +174,13 @@ Search for information on the web using Firecrawl
174174

175175
| Parameter | Type | Description |
176176
| --------- | ---- | ----------- |
177-
| `data` | array | Search results data with scraped content and metadata |
178-
|`title` | string | Search result title from search engine |
179-
|`description` | string | Search result description/snippet from search engine |
177+
| `data` | object | Search results, grouped by the sources requested |
178+
|`title` | string | Title from the search result |
179+
|`description` | string | Description from the search result |
180180
|`url` | string | URL of the search result |
181-
|`markdown` | string | Page content in markdown \(when scrapeOptions.formats includes "markdown"\) |
182-
|`html` | string | Processed HTML content \(when scrapeOptions.formats includes "html"\) |
183-
|`rawHtml` | string | Unprocessed raw HTML \(when scrapeOptions.formats includes "rawHtml"\) |
184-
|`links` | array | Links found on the page \(when scrapeOptions.formats includes "links"\) |
185-
|`screenshot` | string | Screenshot URL \(expires after 24 hours, when scrapeOptions.formats includes "screenshot"\) |
186-
|`metadata` | object | Metadata about the search result page |
187-
|`title` | string | Page title |
188-
|`description` | string | Page meta description |
189-
|`sourceURL` | string | Original source URL |
190-
|`statusCode` | number | HTTP status code |
191-
|`error` | string | Error message if scrape failed |
181+
| `warning` | string | Warning message if any issues occurred during the search |
182+
| `id` | string | ID of the search job |
183+
| `creditsUsed` | number | Number of credits the search consumed |
192184

193185
### Firecrawl Crawl
194186

apps/docs/content/docs/en/integrations/langsmith.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,10 +149,10 @@ Attach a score, correction, or comment to a LangSmith run.
149149
| --------- | ---- | -------- | ----------- |
150150
| `apiKey` | string | Yes | LangSmith API key |
151151
| `runId` | string | Yes | ID of the run to attach feedback to |
152-
| `sessionId` | string | No | ID of the tracing project \(session\) the feedback belongs to. Optional today: LangSmith warns when it is omitted and will reject the request from 31 Jan 2027 on cloud \(self-hosted: deprecated in v0.16, removed in v0.18\). |
152+
| `sessionId` | string | No | UUID of the tracing project \(session\) the feedback belongs to. LangSmith documents this as required: "POST /api/v1/feedback now requires a session_id field in the request body. It was previously optional." Never guess it — supply the sessionId reported by a preceding langsmith_get_run for the same run, or look the project up with GET /api/v1/sessions. A wrong UUID is not validated against the run and mis-files the feedback silently. |
153153
| `key` | string | Yes | Feedback metric name \(e.g. "correctness", "user_score"\) |
154154
| `score` | number | No | Numeric score for the feedback metric |
155-
| `value` | json | No | Categorical value for the feedback metric. Accepts a string \("good"\), number, boolean, or JSON object. |
155+
| `value` | string | No | Categorical value for the feedback metric, e.g. "good". A JSON scalar or object typed here \("1", "true", \'\{"label":"good"\}\'\) is sent with its JSON type; anything else is sent as a string. |
156156
| `comment` | string | No | Free-text comment explaining the feedback |
157157
| `correction` | json | No | Corrected output for the run |
158158
| `feedbackSourceType` | string | No | Origin of the feedback \(api, app, or model\) |
@@ -165,7 +165,7 @@ Attach a score, correction, or comment to a LangSmith run.
165165
| `key` | string | Feedback metric name |
166166
| `runId` | string | ID of the run the feedback was attached to |
167167
| `score` | number | Score recorded for the feedback |
168-
| `value` | json | Categorical value recorded for the feedback \(string, number, boolean, or JSON object\) |
168+
| `value` | json | Categorical value recorded for the feedback. Declared as json because the response echoes LangSmith's own union — string, number, boolean, or JSON object — even though the input is typed as a string. |
169169
| `comment` | string | Comment recorded for the feedback |
170170
| `createdAt` | string | When the feedback was created \(ISO\) |
171171

apps/docs/content/docs/en/integrations/linkedin.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ Share a post to your personal LinkedIn feed
5656

5757
| Parameter | Type | Description |
5858
| --------- | ---- | ----------- |
59-
| `postId` | string | URN of the created share, read from the `x-restli-id` response header. Absent when LinkedIn omits that header. |
60-
| `postUrl` | string | LinkedIn URL of the created post. Viewable by an authorized LinkedIn member — not a guaranteed public permalink. Absent when no share URN was returned. |
59+
| `postId` | string | The `urn:li:ugcPost:` URN of the created post, read from the `x-restli-id` response header. Absent when LinkedIn omits that header. |
60+
| `postUrl` | string | LinkedIn URL of the created post. Viewable by an authorized LinkedIn member — not a guaranteed public permalink. Absent when no ugcPost URN was returned. |
6161

6262
### Get LinkedIn Profile
6363

apps/docs/content/docs/en/integrations/serper.mdx

Lines changed: 28 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Integrate Serper into the workflow. Can search the web.
3535

3636
### Web Search
3737

38-
Search Google through the Serper.dev API. Supports the web, news, places, images, videos, shopping, scholar, and patents verticals, and returns a flat list of results for the requested vertical with its type-specific metadata (date and source for news, rating, review count, address, category, phone, and website for places, image URLs for images, duration for videos, price for shopping).
38+
Search Google through the Serper.dev API. Supports the web, news, places, images, videos, shopping, scholar, and patents verticals, and returns a flat list of results for the requested vertical with its type-specific metadata (date and source for news, rating, review count, address, coordinates, category, phone, and website for places, image and thumbnail URLs for images, duration and channel for videos, price, delivery, and rating for shopping). The web vertical additionally returns the knowledge graph, "people also ask", and related searches when Google renders them.
3939

4040
#### Input
4141

@@ -52,21 +52,42 @@ Search Google through the Serper.dev API. Supports the web, news, places, images
5252

5353
| Parameter | Type | Description |
5454
| --------- | ---- | ----------- |
55-
| `searchResults` | array | Results for the requested vertical, with titles, links, snippets, and type-specific metadata \(date/source for news, rating/ratingCount/address/category/phoneNumber/website for places, imageUrl for images, duration/source for videos, price/source for shopping\). Places results have no link. |
55+
| `searchResults` | array | Results for the requested vertical, with titles, links, snippets, and type-specific metadata \(date/source for news, rating/ratingCount/address/latitude/longitude/category/phoneNumber/website for places, imageUrl/thumbnailUrl/source for images, duration/channel/source for videos, price/delivery/rating/ratingCount/source for shopping\). Places, images, and shopping results have no snippet; places results have no link. |
5656
|`title` | string | Result title |
5757
|`link` | string | Result URL. Absent for places results, which have no result URL |
58-
|`snippet` | string | Result description/snippet \(the business description for places\) |
58+
|`snippet` | string | Result description/snippet \(search/news/videos/scholar/patents\). The images, shopping, and places endpoints return no snippet |
5959
|`position` | number | Position in search results |
6060
|`date` | string | Publication date \(news/videos\) |
61-
|`imageUrl` | string | Image URL \(images/news/shopping\) |
62-
|`source` | string | Source name \(news/videos/shopping\) |
63-
|`rating` | number | Average rating, 1-5 \(places\) |
64-
|`ratingCount` | number | Number of ratings/reviews \(places\) |
61+
|`imageUrl` | string | Image URL \(images/news/videos/shopping\) |
62+
|`thumbnailUrl` | string | Thumbnail image URL \(images\) |
63+
|`source` | string | Source name \(images/news/videos/shopping\) |
64+
|`channel` | string | Publishing channel \(videos\) |
65+
|`rating` | number | Average rating, 1-5 \(places/shopping\) |
66+
|`ratingCount` | number | Number of ratings/reviews \(places/shopping\) |
6567
|`address` | string | Address \(places\) |
68+
|`latitude` | number | Latitude of the place \(places\) |
69+
|`longitude` | number | Longitude of the place \(places\) |
6670
|`category` | string | Primary category, e.g. "Coffee shop" \(places\) |
6771
|`phoneNumber` | string | Contact phone number \(places\) |
6872
|`website` | string | Business website URL \(places\) |
6973
|`price` | string | Price \(shopping\) |
74+
|`delivery` | string | Delivery/shipping cost as Google reports it \(shopping\) |
7075
|`duration` | string | Duration \(videos\) |
76+
| `knowledgeGraph` | object | Google knowledge panel for the query. Only returned by the web search vertical, and only when Google renders a panel. |
77+
|`title` | string | Entity name |
78+
|`type` | string | Entity type, e.g. "Website" |
79+
|`website` | string | Entity website URL |
80+
|`imageUrl` | string | Entity image URL |
81+
|`description` | string | Entity description |
82+
|`descriptionSource` | string | Publication the description was taken from, e.g. "Wikipedia" |
83+
|`descriptionLink` | string | URL of the description source |
84+
|`attributes` | object | Key/value facts Google lists in the panel |
85+
| `peopleAlsoAsk` | array | Google "People also ask" entries. Only returned by the web search vertical, and only when Google renders the block. |
86+
|`question` | string | The question asked |
87+
|`snippet` | string | Answer snippet |
88+
|`title` | string | Title of the answering page |
89+
|`link` | string | URL of the answering page |
90+
| `relatedSearches` | array | Google "Related searches" queries. Only returned by the web search vertical, and only when Google renders the block. |
91+
|`query` | string | The related query text |
7192

7293

apps/docs/content/docs/en/integrations/sixtyfour.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Enrich lead information with contact details, social profiles, and company data
101101
| --------- | ---- | -------- | ----------- |
102102
| `apiKey` | string | Yes | Sixtyfour API key |
103103
| `leadInfo` | string | Yes | Lead information as JSON object with key-value pairs \(e.g. name, company, title, linkedin\) |
104-
| `struct` | string | No | Optional fields to collect as JSON object. Keys are field names, values are descriptions \(e.g. \{"email": "The individual\'s email address", "phone": "Phone number"\}\). Omit to let Sixtyfour choose the fields. |
104+
| `struct` | string | No | Optional fields to collect as JSON object. Keys are field names, values are descriptions \(e.g. \{"email": "The individual\'s email address", "phone": "Phone number"\}\). Only the fields listed here are returned in structured_data — there is no default field set, so omitting this returns an empty structured_data and only the research notes, references, and confidence score. |
105105
| `researchPlan` | string | No | Optional research plan to guide enrichment strategy |
106106
| `tier` | string | No | Research depth and credit spend: micro, low, medium, high, or xhigh. Defaults to low when omitted; micro is cheaper than the default. |
107107
| `timeout` | number | No | Outbound request deadline in milliseconds. Defaults to SIXTYFOUR_ENRICH_TIMEOUT_MS because this endpoint is synchronous and long-running. |

apps/sim/tools/generated/tool-metadata.ts

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

apps/sim/tools/generated/tool-outputs.ts

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

packages/deployment-config/src/integrations.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7002,7 +7002,7 @@
70027002
},
70037003
{
70047004
"name": "Get Index Info",
7005-
"description": "Retrieve index information including settings, mappings, and aliases."
7005+
"description": "Retrieve index information including settings, mappings, and aliases. Accepts a comma-separated list of indices, data streams, and aliases, and supports wildcards."
70067006
},
70077007
{
70087008
"name": "List Indices",

0 commit comments

Comments
 (0)