Skip to content

Commit 940c252

Browse files
committed
chore: refresh integration docs and validation fixes
1 parent bfaf06c commit 940c252

38 files changed

Lines changed: 548 additions & 127 deletions

apps/docs/content/docs/en/tools/gong.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ Retrieve call data by date range from Gong.
5656

5757
| Parameter | Type | Description |
5858
| --------- | ---- | ----------- |
59+
| `requestId` | string | A Gong request reference ID for troubleshooting purposes |
5960
| `calls` | array | List of calls matching the date range |
6061
|`id` | string | Gong's unique numeric identifier for the call |
6162
|`title` | string | Call title |
@@ -79,6 +80,8 @@ Retrieve call data by date range from Gong.
7980
|`calendarEventId` | string | Calendar event identifier |
8081
| `cursor` | string | Pagination cursor for the next page |
8182
| `totalRecords` | number | Total number of records matching the filter |
83+
| `currentPageSize` | number | Number of records in the current page |
84+
| `currentPageNumber` | number | Current page number |
8285

8386
### `gong_create_call`
8487

@@ -306,6 +309,7 @@ List all users in your Gong account.
306309

307310
| Parameter | Type | Description |
308311
| --------- | ---- | ----------- |
312+
| `requestId` | string | A Gong request reference ID for troubleshooting purposes |
309313
| `users` | array | List of Gong users |
310314
|`id` | string | Unique numeric user ID \(up to 20 digits\) |
311315
|`emailAddress` | string | User email address |

apps/docs/content/docs/en/tools/incidentio.mdx

Lines changed: 79 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ List incidents from incident.io. Returns a list of incidents with their details
5151
| `apiKey` | string | Yes | incident.io API Key |
5252
| `page_size` | number | No | Number of incidents to return per page \(e.g., 10, 25, 50\). Default: 25 |
5353
| `after` | string | No | Pagination cursor to fetch the next page of results \(e.g., "01FCNDV6P870EA6S7TK1DSYDG0"\) |
54+
| `sort_by` | string | No | Sort order for incidents: created_at_newest_first or created_at_oldest_first |
55+
| `filter_mode` | string | No | How to combine filters: all or any |
5456

5557
#### Output
5658

@@ -234,6 +236,7 @@ List actions from incident.io. Optionally filter by incident ID.
234236
| --------- | ---- | -------- | ----------- |
235237
| `apiKey` | string | Yes | incident.io API Key |
236238
| `incident_id` | string | No | Filter actions by incident ID \(e.g., "01FCNDV6P870EA6S7TK1DSYDG0"\) |
239+
| `incident_mode` | string | No | Filter actions by incident mode \(standard, retrospective, test, tutorial, or stream\) |
237240

238241
#### Output
239242

@@ -308,6 +311,7 @@ List follow-ups from incident.io. Optionally filter by incident ID.
308311
| --------- | ---- | -------- | ----------- |
309312
| `apiKey` | string | Yes | incident.io API Key |
310313
| `incident_id` | string | No | Filter follow-ups by incident ID \(e.g., "01FCNDV6P870EA6S7TK1DSYDG0"\) |
314+
| `incident_mode` | string | No | Filter follow-ups by incident mode \(standard, retrospective, test, tutorial, or stream\) |
311315

312316
#### Output
313317

@@ -395,6 +399,8 @@ List all users in your Incident.io workspace. Returns user details including id,
395399
| `apiKey` | string | Yes | Incident.io API Key |
396400
| `page_size` | number | No | Number of results to return per page \(e.g., 10, 25, 50\). Default: 25 |
397401
| `after` | string | No | Pagination cursor to fetch the next page of results |
402+
| `email` | string | No | Filter users by email address |
403+
| `slack_user_id` | string | No | Filter users by Slack user ID |
398404

399405
#### Output
400406

@@ -446,12 +452,24 @@ List all workflows in your incident.io workspace.
446452
| Parameter | Type | Description |
447453
| --------- | ---- | ----------- |
448454
| `workflows` | array | List of workflows |
449-
|`id` | string | Unique identifier for the workflow |
450-
|`name` | string | Name of the workflow |
451-
|`state` | string | State of the workflow \(active, draft, or disabled\) |
452-
|`folder` | string | Folder the workflow belongs to |
453-
|`created_at` | string | When the workflow was created |
454-
|`updated_at` | string | When the workflow was last updated |
455+
|`id` | string | Workflow ID |
456+
|`name` | string | Workflow name |
457+
|`trigger` | string | Workflow trigger |
458+
|`once_for` | array | Fields that make the workflow run once |
459+
|`version` | number | Workflow version |
460+
|`expressions` | array | Workflow expressions |
461+
|`condition_groups` | array | Workflow condition groups |
462+
|`steps` | array | Workflow steps |
463+
|`include_private_incidents` | boolean | Whether the workflow includes private incidents |
464+
|`include_private_escalations` | boolean | Whether the workflow includes private escalations |
465+
|`runs_on_incident_modes` | array | Incident modes the workflow runs on |
466+
|`continue_on_step_error` | boolean | Whether execution continues after a step error |
467+
|`runs_on_incidents` | string | Incident lifecycle filter |
468+
|`state` | string | Workflow state \(active, draft, disabled\) |
469+
|`delay` | object | Workflow delay configuration |
470+
|`folder` | string | Workflow folder |
471+
|`runs_from` | string | When the workflow runs from |
472+
|`shortform` | string | Workflow shortform identifier |
455473

456474
### `incidentio_workflows_create`
457475

@@ -481,12 +499,24 @@ Create a new workflow in incident.io.
481499
| Parameter | Type | Description |
482500
| --------- | ---- | ----------- |
483501
| `workflow` | object | The created workflow |
484-
|`id` | string | Unique identifier for the workflow |
485-
|`name` | string | Name of the workflow |
486-
|`state` | string | State of the workflow \(active, draft, or disabled\) |
487-
|`folder` | string | Folder the workflow belongs to |
488-
|`created_at` | string | When the workflow was created |
489-
|`updated_at` | string | When the workflow was last updated |
502+
|`id` | string | Workflow ID |
503+
|`name` | string | Workflow name |
504+
|`trigger` | string | Workflow trigger |
505+
|`once_for` | array | Fields that make the workflow run once |
506+
|`version` | number | Workflow version |
507+
|`expressions` | array | Workflow expressions |
508+
|`condition_groups` | array | Workflow condition groups |
509+
|`steps` | array | Workflow steps |
510+
|`include_private_incidents` | boolean | Whether the workflow includes private incidents |
511+
|`include_private_escalations` | boolean | Whether the workflow includes private escalations |
512+
|`runs_on_incident_modes` | array | Incident modes the workflow runs on |
513+
|`continue_on_step_error` | boolean | Whether execution continues after a step error |
514+
|`runs_on_incidents` | string | Incident lifecycle filter |
515+
|`state` | string | Workflow state \(active, draft, disabled\) |
516+
|`delay` | object | Workflow delay configuration |
517+
|`folder` | string | Workflow folder |
518+
|`runs_from` | string | When the workflow runs from |
519+
|`shortform` | string | Workflow shortform identifier |
490520
| `management_meta` | json | Workflow management metadata |
491521

492522
### `incidentio_workflows_show`
@@ -499,18 +529,31 @@ Get details of a specific workflow in incident.io.
499529
| --------- | ---- | -------- | ----------- |
500530
| `apiKey` | string | Yes | incident.io API Key |
501531
| `id` | string | Yes | The ID of the workflow to retrieve \(e.g., "01FCNDV6P870EA6S7TK1DSYDG0"\) |
532+
| `skip_step_upgrades` | boolean | No | Skip workflow step upgrades when existing workflow step parameters changed |
502533

503534
#### Output
504535

505536
| Parameter | Type | Description |
506537
| --------- | ---- | ----------- |
507538
| `workflow` | object | The workflow details |
508-
|`id` | string | Unique identifier for the workflow |
509-
|`name` | string | Name of the workflow |
510-
|`state` | string | State of the workflow \(active, draft, or disabled\) |
511-
|`folder` | string | Folder the workflow belongs to |
512-
|`created_at` | string | When the workflow was created |
513-
|`updated_at` | string | When the workflow was last updated |
539+
|`id` | string | Workflow ID |
540+
|`name` | string | Workflow name |
541+
|`trigger` | string | Workflow trigger |
542+
|`once_for` | array | Fields that make the workflow run once |
543+
|`version` | number | Workflow version |
544+
|`expressions` | array | Workflow expressions |
545+
|`condition_groups` | array | Workflow condition groups |
546+
|`steps` | array | Workflow steps |
547+
|`include_private_incidents` | boolean | Whether the workflow includes private incidents |
548+
|`include_private_escalations` | boolean | Whether the workflow includes private escalations |
549+
|`runs_on_incident_modes` | array | Incident modes the workflow runs on |
550+
|`continue_on_step_error` | boolean | Whether execution continues after a step error |
551+
|`runs_on_incidents` | string | Incident lifecycle filter |
552+
|`state` | string | Workflow state \(active, draft, disabled\) |
553+
|`delay` | object | Workflow delay configuration |
554+
|`folder` | string | Workflow folder |
555+
|`runs_from` | string | When the workflow runs from |
556+
|`shortform` | string | Workflow shortform identifier |
514557
| `management_meta` | json | Workflow management metadata |
515558

516559
### `incidentio_workflows_update`
@@ -541,12 +584,24 @@ Update an existing workflow in incident.io.
541584
| Parameter | Type | Description |
542585
| --------- | ---- | ----------- |
543586
| `workflow` | object | The updated workflow |
544-
|`id` | string | Unique identifier for the workflow |
545-
|`name` | string | Name of the workflow |
546-
|`state` | string | State of the workflow \(active, draft, or disabled\) |
547-
|`folder` | string | Folder the workflow belongs to |
548-
|`created_at` | string | When the workflow was created |
549-
|`updated_at` | string | When the workflow was last updated |
587+
|`id` | string | Workflow ID |
588+
|`name` | string | Workflow name |
589+
|`trigger` | string | Workflow trigger |
590+
|`once_for` | array | Fields that make the workflow run once |
591+
|`version` | number | Workflow version |
592+
|`expressions` | array | Workflow expressions |
593+
|`condition_groups` | array | Workflow condition groups |
594+
|`steps` | array | Workflow steps |
595+
|`include_private_incidents` | boolean | Whether the workflow includes private incidents |
596+
|`include_private_escalations` | boolean | Whether the workflow includes private escalations |
597+
|`runs_on_incident_modes` | array | Incident modes the workflow runs on |
598+
|`continue_on_step_error` | boolean | Whether execution continues after a step error |
599+
|`runs_on_incidents` | string | Incident lifecycle filter |
600+
|`state` | string | Workflow state \(active, draft, disabled\) |
601+
|`delay` | object | Workflow delay configuration |
602+
|`folder` | string | Workflow folder |
603+
|`runs_from` | string | When the workflow runs from |
604+
|`shortform` | string | Workflow shortform identifier |
550605
| `management_meta` | json | Workflow management metadata |
551606

552607
### `incidentio_workflows_delete`

apps/docs/content/docs/en/tools/new_relic.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Query observability data and record deployments in New Relic
55

66
import { BlockInfoCard } from "@/components/ui/block-info-card"
77

8-
<BlockInfoCard
8+
<BlockInfoCard
99
type="new_relic"
1010
color="#000000"
1111
/>
@@ -141,3 +141,5 @@ Record a deployment change event in New Relic change tracking.
141141
|`guid` | string | Entity GUID |
142142
|`name` | string | Entity name |
143143
| `messages` | array | Messages returned by New Relic for the created change event |
144+
145+

apps/docs/content/docs/en/tools/railway.mdx

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Manage Railway projects, deployments, and variables
55

66
import { BlockInfoCard } from "@/components/ui/block-info-card"
77

8-
<BlockInfoCard
8+
<BlockInfoCard
99
type="railway"
1010
color="#FFFFFF"
1111
/>
@@ -42,6 +42,7 @@ List Railway projects visible to the provided token
4242
| --------- | ---- | -------- | ----------- |
4343
| `apiKey` | string | Yes | Railway API token |
4444
| `tokenType` | string | No | Railway token type: account, workspace, project, or oauth |
45+
| `workspaceId` | string | No | Workspace ID to list projects from |
4546
| `first` | number | No | Maximum number of projects to return |
4647
| `after` | string | No | Cursor for pagination |
4748

@@ -54,6 +55,7 @@ List Railway projects visible to the provided token
5455
|`name` | string | Project name |
5556
|`description` | string | Project description |
5657
|`createdAt` | string | Project creation timestamp |
58+
|`updatedAt` | string | Project update timestamp |
5759
| `pageInfo` | object | Pagination information |
5860
|`hasNextPage` | boolean | Whether more projects are available |
5961
|`endCursor` | string | Cursor for the next page |
@@ -99,6 +101,9 @@ Create a Railway project
99101
| `apiKey` | string | Yes | Railway API token |
100102
| `tokenType` | string | No | Railway token type: account, workspace, project, or oauth |
101103
| `name` | string | Yes | Project name |
104+
| `description` | string | No | Project description |
105+
| `workspaceId` | string | No | Workspace ID to create the project in |
106+
| `isPublic` | boolean | No | Whether the project should be publicly visible |
102107
| `defaultEnvironmentName` | string | No | Name for the default environment |
103108
| `prDeploys` | boolean | No | Whether to enable pull request deploys |
104109

@@ -123,6 +128,8 @@ Update a Railway project name or description
123128
| `projectId` | string | Yes | Railway project ID |
124129
| `name` | string | No | Updated project name |
125130
| `description` | string | No | Updated project description |
131+
| `isPublic` | boolean | No | Whether the project should be publicly visible |
132+
| `prDeploys` | boolean | No | Whether to enable pull request deploy environments |
126133

127134
#### Output
128135

@@ -210,6 +217,7 @@ Create a Railway project environment
210217
| `sourceEnvironmentId` | string | No | Environment ID to clone from |
211218
| `ephemeral` | boolean | No | Whether the environment is ephemeral |
212219
| `skipInitialDeploys` | boolean | No | Whether to skip initial deploys for the environment |
220+
| `stageInitialChanges` | boolean | No | Whether to stage initial changes instead of applying them immediately |
213221

214222
#### Output
215223

@@ -280,6 +288,7 @@ Trigger a deployment for a Railway service in an environment
280288
| `tokenType` | string | No | Railway token type: account, workspace, project, or oauth |
281289
| `serviceId` | string | Yes | Railway service ID |
282290
| `environmentId` | string | Yes | Railway environment ID |
291+
| `commitSha` | string | No | Specific Git commit SHA to deploy |
283292

284293
#### Output
285294

@@ -330,3 +339,5 @@ Create or update a Railway environment variable
330339
| Parameter | Type | Description |
331340
| --------- | ---- | ----------- |
332341
| `success` | boolean | Whether the variable was created or updated |
342+
343+

0 commit comments

Comments
 (0)