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: apps/docs/content/docs/en/integrations/daytona.mdx
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -172,14 +172,14 @@ Execute a shell command inside a Daytona sandbox
172
172
|`command`| string | Yes | Shell command to execute |
173
173
|`cwd`| string | No | Working directory for the command \(defaults to the sandbox working directory\)|
174
174
|`env`| json | No | Environment variables to set for the command as key-value pairs |
175
-
|`commandTimeout`| number | No |Timeout in seconds \(defaults to 10 seconds\)|
175
+
|`commandTimeout`| number | No |Maximum time in seconds to wait for the command to complete; 0 disables the server-side limit. Daytona documents no default, so leaving this blank uses whatever the toolbox daemon applies.|
176
176
177
177
#### Output
178
178
179
179
| Parameter | Type | Description |
180
180
| --------- | ---- | ----------- |
181
181
|`exitCode`| number | Exit code of the command \(-1 if missing from the response\)|
182
-
|`result`| string |Combined stdout/stderr output of the command |
182
+
|`result`| string |Standard output from the command |
183
183
184
184
### Daytona Run Code
185
185
@@ -194,14 +194,14 @@ Run Python, JavaScript, or TypeScript code inside a Daytona sandbox
194
194
|`code`| string | Yes | Code to run |
195
195
|`language`| string | Yes | Language of the code: python, javascript, or typescript |
196
196
|`env`| json | No | Environment variables to set for the run as key-value pairs |
197
-
|`runTimeout`| number | No |Timeout in seconds \(defaults to 10 seconds\)|
197
+
|`runTimeout`| number | No |Maximum time in seconds to wait for the code run to complete; 0 disables the server-side limit. Daytona documents no default, so leaving this blank uses whatever the toolbox daemon applies.|
198
198
199
199
#### Output
200
200
201
201
| Parameter | Type | Description |
202
202
| --------- | ---- | ----------- |
203
203
|`exitCode`| number | Exit code of the code run \(-1 if missing from the response\)|
204
-
|`result`| string |Combined stdout/stderr output of the code run|
204
+
|`result`| string |Standard output from the code \(same as artifacts.stdout\)|
205
205
|`artifacts`| json | Artifacts produced by the run \(e.g., matplotlib charts\)|
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/integrations/firecrawl.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
@@ -162,7 +162,7 @@ Search for information on the web using Firecrawl
162
162
|`categories`| array | No | Restrict web results to these categories: "github", "research", "pdf", or "developer". "developer" cannot be combined with any other category. |
163
163
|`tbs`| string | No | Time-based search filter \(e.g. "qdr:d" for the past day, "qdr:w" for the past week\)|
164
164
|`location`| string | No | Location to search from \(e.g. "Germany", "San Francisco, California"\)|
165
-
|`country`| string | No | ISO country code for geo-targeting results \(e.g. "US", "DE", "JP"\). Firecrawl defaults to "US" when this is unset, and recommends setting `location` alongside it for best results. |
165
+
|`country`| string | No | ISO country code for geo-targeting results \(e.g. "US", "DE", "JP"\). Firecrawl\'s published OpenAPI declares a bare `default: US`, but its server-side request transform applies that default only when `location` is also unset\(`x.country !== undefined ? x.country : x.location ? undefined : "us"` in the v2 search request schema\). The block ships both a Location and a Country field, so the common configuration — Location filled, Country blank — sends no country at all. Set both for best results. |
166
166
|`firecrawlTimeout`| number | No | How long Firecrawl may spend on the search, in milliseconds \(Firecrawl default: 60000\). Sent as `timeout` in the request body; it does not bound Sim's own transport deadline. |
167
167
|`ignoreInvalidURLs`| boolean | No | Skip results whose URLs cannot be scraped instead of failing the search |
| ↳ `call_url`| string | URL for the incident call/bridge |
213
209
| ↳ `severity`| object | Severity of the incident |
@@ -478,7 +474,7 @@ Create a new workflow in incident.io.
478
474
|`trigger`| string | No | Trigger type for the workflow \(e.g., "incident.updated", "incident.created"\)|
479
475
|`steps`| string | No | Array of workflow steps as JSON string. Example: \[\{"label": "Notify team", "name": "slack.post_message"\}\]|
480
476
|`condition_groups`| string | No | Array of condition groups as JSON string to control when the workflow runs. Example: \[\{"conditions": \[\{"operation": "one_of", "param_bindings": \[\], "subject": "incident.severity"\}\]\}\]|
481
-
|`runs_on_incidents`| string | No | When to run the workflow: "newly_created" \(only new incidents\), "newly_created_and_active" \(new and active incidents\), "active" \(only active incidents\), or "all" \(all incidents\)|
477
+
|`runs_on_incidents`| string | No | When to run the workflow: "newly_created" \(only incidents created after the workflow is enabled\) or "newly_created_and_active" \(also applies to incidents that are already open\)|
482
478
|`runs_on_incident_modes`| string | No | Array of incident modes to run on as JSON string. Example: \["standard", "retrospective"\]|
483
479
|`include_private_incidents`| boolean | No | Whether to include private incidents |
484
480
|`continue_on_step_error`| boolean | No | Whether to continue executing subsequent steps if a step fails |
@@ -561,7 +557,7 @@ Update an existing workflow in incident.io.
561
557
|`name`| string | Yes | New name for the workflow \(e.g., "Notify on Critical Incidents"\)|
562
558
|`steps`| string | Yes | Complete array of workflow steps as a JSON string |
563
559
|`condition_groups`| string | Yes | Complete array of workflow condition groups as a JSON string |
564
-
|`runs_on_incidents`| string | Yes | When to run the workflow: newly_created, newly_created_and_active, active, or all|
560
+
|`runs_on_incidents`| string | Yes | When to run the workflow: newly_createdor newly_created_and_active|
565
561
|`runs_on_incident_modes`| string | Yes | Complete array of incident modes to run on as a JSON string |
566
562
|`include_private_incidents`| boolean | Yes | Whether to include private incidents |
567
563
|`continue_on_step_error`| boolean | Yes | Whether to continue executing subsequent steps if a step fails |
@@ -1752,7 +1748,6 @@ List the entries of a catalog type in incident.io — for example every service,
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/integrations/langsmith.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
@@ -149,7 +149,7 @@ Attach a score, correction, or comment to a LangSmith run.
149
149
| --------- | ---- | -------- | ----------- |
150
150
|`apiKey`| string | Yes | LangSmith API key |
151
151
|`runId`| string | Yes | ID of the run to attach feedback to |
152
-
|`sessionId`| string | No | UUID of the tracing project \(session\) the feedback belongs to. Optional — in the LangSmith OpenAPI spec only `key` is required by POST /api/v1/feedback, and the official SDK sends feedback without a session_id. Supply it when you have it: some LangSmith deployments cannot locate the run without it. Never guess it — use the sessionId reported by a preceding langsmith_get_run for the same run, or look the project up with GET /api/v1/sessions. |
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." The official SDK warns when it is omitted and raises outright on SmithDB-only deployments, because some LangSmith deployments cannot locate the run without it. Only `key` is in the endpoint\'s OpenAPI required array, so omitting session_id will not fail request validation — but always supply it when you have it. Never guess it — use the sessionId reported by a preceding langsmith_get_run for the same run, or look the project up with GET /api/v1/sessions. |
|`score`| number | No | Numeric score for the feedback metric |
155
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. |
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/integrations/linkedin.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,8 +56,8 @@ Share a post to your personal LinkedIn feed
56
56
57
57
| Parameter | Type | Description |
58
58
| --------- | ---- | ----------- |
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 the `x-restli-id` header was missing or did not carry a `urn:li:` URN of the ugcPost family. |
59
+
|`postId`| string | The URN of the created post, read from the `x-restli-id` response header, which LinkedIn documents as carrying the ugcPost id. Reported as received. 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 the `x-restli-id` header was missing or did not carry a `urn:li:<entityType>:<id>` URN. |
0 commit comments