Skip to content

Commit fef7543

Browse files
committed
Merge remote-tracking branch 'origin/staging' into feat/datadog-depth
# Conflicts: # apps/sim/tools/generated/tool-ids.ts # apps/sim/tools/generated/tool-metadata.ts # apps/sim/tools/generated/tool-outputs.ts
2 parents 5b15235 + be20df9 commit fef7543

65 files changed

Lines changed: 8442 additions & 171 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

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

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ Retrieves leads from Email Bison with optional search and tag filters.
4040

4141
| Parameter | Type | Required | Description |
4242
| --------- | ---- | -------- | ----------- |
43+
| `apiKey` | string | Yes | Email Bison API token |
44+
| `apiBaseUrl` | string | Yes | Email Bison instance URL that issued the token |
4345
| `search` | string | No | Search term for filtering leads |
4446
| `campaignStatus` | string | No | Lead campaign status filter: in_sequence, sequence_finished, sequence_stopped, never_contacted, or replied |
4547
| `tagIds` | array | No | Tag IDs to include |
@@ -73,6 +75,8 @@ Retrieves a lead by Email Bison lead ID or email address.
7375

7476
| Parameter | Type | Required | Description |
7577
| --------- | ---- | -------- | ----------- |
78+
| `apiKey` | string | Yes | Email Bison API token |
79+
| `apiBaseUrl` | string | Yes | Email Bison instance URL that issued the token |
7680
| `leadId` | string | Yes | Lead ID or email address |
7781

7882
#### Output
@@ -102,6 +106,8 @@ Creates a single lead in Email Bison.
102106

103107
| Parameter | Type | Required | Description |
104108
| --------- | ---- | -------- | ----------- |
109+
| `apiKey` | string | Yes | Email Bison API token |
110+
| `apiBaseUrl` | string | Yes | Email Bison instance URL that issued the token |
105111
| `firstName` | string | Yes | Lead first name |
106112
| `lastName` | string | Yes | Lead last name |
107113
| `email` | string | Yes | Lead email address |
@@ -137,6 +143,8 @@ Updates an existing Email Bison lead. Fields omitted from a PUT update may be cl
137143

138144
| Parameter | Type | Required | Description |
139145
| --------- | ---- | -------- | ----------- |
146+
| `apiKey` | string | Yes | Email Bison API token |
147+
| `apiBaseUrl` | string | Yes | Email Bison instance URL that issued the token |
140148
| `leadId` | string | Yes | Lead ID or email address |
141149
| `firstName` | string | Yes | Lead first name |
142150
| `lastName` | string | Yes | Lead last name |
@@ -173,6 +181,8 @@ Retrieves Email Bison campaigns.
173181

174182
| Parameter | Type | Required | Description |
175183
| --------- | ---- | -------- | ----------- |
184+
| `apiKey` | string | Yes | Email Bison API token |
185+
| `apiBaseUrl` | string | Yes | Email Bison instance URL that issued the token |
176186

177187
#### Output
178188

@@ -201,6 +211,8 @@ Creates a new Email Bison campaign.
201211

202212
| Parameter | Type | Required | Description |
203213
| --------- | ---- | -------- | ----------- |
214+
| `apiKey` | string | Yes | Email Bison API token |
215+
| `apiBaseUrl` | string | Yes | Email Bison instance URL that issued the token |
204216
| `name` | string | Yes | Campaign name |
205217
| `campaignType` | string | No | Campaign type: outbound or reply_followup |
206218

@@ -231,6 +243,8 @@ Updates Email Bison campaign settings.
231243

232244
| Parameter | Type | Required | Description |
233245
| --------- | ---- | -------- | ----------- |
246+
| `apiKey` | string | Yes | Email Bison API token |
247+
| `apiBaseUrl` | string | Yes | Email Bison instance URL that issued the token |
234248
| `campaignId` | number | Yes | Campaign ID |
235249
| `name` | string | No | Campaign name |
236250
| `maxEmailsPerDay` | number | No | Maximum emails per day |
@@ -269,6 +283,8 @@ Pauses, resumes, or archives an Email Bison campaign.
269283

270284
| Parameter | Type | Required | Description |
271285
| --------- | ---- | -------- | ----------- |
286+
| `apiKey` | string | Yes | Email Bison API token |
287+
| `apiBaseUrl` | string | Yes | Email Bison instance URL that issued the token |
272288
| `campaignId` | number | Yes | Campaign ID |
273289
| `action` | string | Yes | Status action: pause, resume, or archive |
274290

@@ -299,6 +315,8 @@ Adds existing Email Bison leads to a campaign.
299315

300316
| Parameter | Type | Required | Description |
301317
| --------- | ---- | -------- | ----------- |
318+
| `apiKey` | string | Yes | Email Bison API token |
319+
| `apiBaseUrl` | string | Yes | Email Bison instance URL that issued the token |
302320
| `campaignId` | number | Yes | Campaign ID |
303321
| `leadIds` | array | Yes | Lead IDs to add to the campaign |
304322
| `allowParallelSending` | boolean | No | Force add leads already in sequence in other campaigns |
@@ -330,6 +348,8 @@ Retrieves Email Bison replies with optional status, folder, campaign, sender, le
330348

331349
| Parameter | Type | Required | Description |
332350
| --------- | ---- | -------- | ----------- |
351+
| `apiKey` | string | Yes | Email Bison API token |
352+
| `apiBaseUrl` | string | Yes | Email Bison instance URL that issued the token |
333353
| `search` | string | No | Search term for replies |
334354
| `status` | string | No | Reply status: interested, automated_reply, or not_automated_reply |
335355
| `folder` | string | No | Reply folder: inbox, sent, spam, bounced, or all |
@@ -366,6 +386,8 @@ Retrieves all Email Bison tags for the authenticated workspace.
366386

367387
| Parameter | Type | Required | Description |
368388
| --------- | ---- | -------- | ----------- |
389+
| `apiKey` | string | Yes | Email Bison API token |
390+
| `apiBaseUrl` | string | Yes | Email Bison instance URL that issued the token |
369391

370392
#### Output
371393

@@ -394,6 +416,8 @@ Creates a new Email Bison tag.
394416

395417
| Parameter | Type | Required | Description |
396418
| --------- | ---- | -------- | ----------- |
419+
| `apiKey` | string | Yes | Email Bison API token |
420+
| `apiBaseUrl` | string | Yes | Email Bison instance URL that issued the token |
397421
| `name` | string | Yes | Tag name |
398422

399423
#### Output
@@ -423,6 +447,8 @@ Attaches Email Bison tags to one or more leads.
423447

424448
| Parameter | Type | Required | Description |
425449
| --------- | ---- | -------- | ----------- |
450+
| `apiKey` | string | Yes | Email Bison API token |
451+
| `apiBaseUrl` | string | Yes | Email Bison instance URL that issued the token |
426452
| `tagIds` | array | Yes | Tag IDs to attach |
427453
| `leadIds` | array | Yes | Lead IDs to tag |
428454
| `skipWebhooks` | boolean | No | Skip Email Bison webhooks for this action |

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ Fetch and parse a file from a URL with optional custom headers.
7373

7474
| Parameter | Type | Required | Description |
7575
| --------- | ---- | -------- | ----------- |
76+
| `request` | string | No | No description |
77+
| `outputs` | array | No | Array of parsed files with content and metadata |
7678
| `headers` | object | No | HTTP headers to include when fetching URL-based files. |
7779

7880
#### Output

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ Start a background Flint agent task that modifies a site from a natural-language
4949

5050
| Parameter | Type | Required | Description |
5151
| --------- | ---- | -------- | ----------- |
52+
| `apiKey` | string | Yes | Flint API key \(found in Flint team settings, starts with ak_\) |
5253
| `siteId` | string | Yes | ID of the Flint site the agent should modify |
5354
| `prompt` | string | Yes | Natural-language instructions for the agent \(e.g., "Add a new About page with a team section"\) |
5455
| `callbackUrl` | string | No | HTTPS webhook URL that Flint will POST to when the task completes or fails |
@@ -70,6 +71,7 @@ Start a background Flint agent task that generates up to 10 pages from a templat
7071

7172
| Parameter | Type | Required | Description |
7273
| --------- | ---- | -------- | ----------- |
74+
| `apiKey` | string | Yes | Flint API key \(found in Flint team settings, starts with ak_\) |
7375
| `siteId` | string | Yes | ID of the Flint site the agent should modify |
7476
| `templatePageSlug` | string | Yes | Slug of the existing template page to generate from \(e.g., /case-studies/template\) |
7577
| `items` | json | Yes | JSON array of 1-10 pages to generate. Each item requires targetPageSlug \(slug for the new page\) and context \(content details the agent should use\). |
@@ -92,6 +94,7 @@ Get the status and results of a background Flint agent task.
9294

9395
| Parameter | Type | Required | Description |
9496
| --------- | ---- | -------- | ----------- |
97+
| `apiKey` | string | Yes | Flint API key \(found in Flint team settings, starts with ak_\) |
9598
| `taskId` | string | Yes | Identifier of the task returned when it was created \(e.g., bg-...\) |
9699

97100
#### Output

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ Fetch PR details including diff and files changed
4343

4444
| Parameter | Type | Required | Description |
4545
| --------- | ---- | -------- | ----------- |
46+
| `owner` | string | Yes | Repository owner |
47+
| `repo` | string | Yes | Repository name |
48+
| `pullNumber` | number | Yes | Pull request number |
49+
| `apiKey` | string | Yes | GitHub API token |
4650
| `includeFiles` | boolean | No | Whether to fetch changed-file details from the separate files endpoint |
4751

4852
#### Output

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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ Retrieves Instantly V2 leads with search, campaign, list, and pagination filters
4040

4141
| Parameter | Type | Required | Description |
4242
| --------- | ---- | -------- | ----------- |
43+
| `apiKey` | string | Yes | Instantly API key with the required V2 scopes |
4344
| `search` | string | No | Search by first name, last name, or email |
4445
| `filter` | string | No | Instantly lead filter value, such as FILTER_VAL_CONTACTED or FILTER_VAL_ACTIVE |
4546
| `campaign` | string | No | Campaign ID to filter leads |
@@ -90,6 +91,7 @@ Retrieves an Instantly V2 lead by ID.
9091

9192
| Parameter | Type | Required | Description |
9293
| --------- | ---- | -------- | ----------- |
94+
| `apiKey` | string | Yes | Instantly API key with the required V2 scopes |
9395
| `leadId` | string | Yes | Lead ID |
9496

9597
#### Output
@@ -124,6 +126,7 @@ Creates an Instantly V2 lead in a campaign or lead list.
124126

125127
| Parameter | Type | Required | Description |
126128
| --------- | ---- | -------- | ----------- |
129+
| `apiKey` | string | Yes | Instantly API key with the required V2 scopes |
127130
| `campaign` | string | No | Campaign ID associated with the lead |
128131
| `list_id` | string | No | Lead list ID associated with the lead |
129132
| `email` | string | No | Lead email address. Required when adding to a campaign. |
@@ -177,6 +180,7 @@ Updates fields on an existing Instantly V2 lead.
177180

178181
| Parameter | Type | Required | Description |
179182
| --------- | ---- | -------- | ----------- |
183+
| `apiKey` | string | Yes | Instantly API key with the required V2 scopes |
180184
| `leadId` | string | Yes | Lead ID |
181185
| `first_name` | string | No | Lead first name |
182186
| `last_name` | string | No | Lead last name |
@@ -222,6 +226,7 @@ Deletes Instantly V2 leads in bulk from a campaign or lead list.
222226

223227
| Parameter | Type | Required | Description |
224228
| --------- | ---- | -------- | ----------- |
229+
| `apiKey` | string | Yes | Instantly API key with the required V2 scopes |
225230
| `campaign_id` | string | No | Campaign ID to delete leads from. Required if list_id is not provided. |
226231
| `list_id` | string | No | Lead list ID to delete leads from. Required if campaign_id is not provided. |
227232
| `status` | number | No | Optional lead status filter |
@@ -242,6 +247,7 @@ Submits an Instantly V2 background job to update a lead interest status.
242247

243248
| Parameter | Type | Required | Description |
244249
| --------- | ---- | -------- | ----------- |
250+
| `apiKey` | string | Yes | Instantly API key with the required V2 scopes |
245251
| `lead_email` | string | Yes | Lead email address |
246252
| `interest_value` | number | No | Interest status value. Leave empty in the block or pass null to reset to Lead. |
247253
| `campaign_id` | string | No | Campaign ID for the lead |
@@ -263,6 +269,7 @@ Retrieves Instantly V2 campaigns with search, status, tag, and pagination filter
263269

264270
| Parameter | Type | Required | Description |
265271
| --------- | ---- | -------- | ----------- |
272+
| `apiKey` | string | Yes | Instantly API key with the required V2 scopes |
266273
| `limit` | number | No | Number of campaigns to return, from 1 to 100 |
267274
| `starting_after` | string | No | Pagination cursor from next_starting_after |
268275
| `search` | string | No | Search by campaign name |
@@ -302,6 +309,7 @@ Creates an Instantly V2 campaign using the documented campaign schedule schema.
302309

303310
| Parameter | Type | Required | Description |
304311
| --------- | ---- | -------- | ----------- |
312+
| `apiKey` | string | Yes | Instantly API key with the required V2 scopes |
305313
| `name` | string | Yes | Campaign name |
306314
| `campaign_schedule` | json | Yes | Campaign schedule object with schedules array |
307315
| `sequences` | array | No | Campaign sequence definitions |
@@ -347,6 +355,7 @@ Updates documented Instantly V2 campaign fields.
347355

348356
| Parameter | Type | Required | Description |
349357
| --------- | ---- | -------- | ----------- |
358+
| `apiKey` | string | Yes | Instantly API key with the required V2 scopes |
350359
| `campaignId` | string | Yes | Campaign ID |
351360
| `name` | string | No | Campaign name |
352361
| `campaign_schedule` | json | No | Campaign schedule object with schedules array |
@@ -393,6 +402,7 @@ Activates, starts, or resumes an Instantly V2 campaign.
393402

394403
| Parameter | Type | Required | Description |
395404
| --------- | ---- | -------- | ----------- |
405+
| `apiKey` | string | Yes | Instantly API key with the required V2 scopes |
396406
| `campaignId` | string | Yes | Campaign ID |
397407

398408
#### Output
@@ -427,6 +437,7 @@ Pauses a running Instantly V2 campaign, stopping further email sends.
427437

428438
| Parameter | Type | Required | Description |
429439
| --------- | ---- | -------- | ----------- |
440+
| `apiKey` | string | Yes | Instantly API key with the required V2 scopes |
430441
| `campaignId` | string | Yes | Campaign ID |
431442

432443
#### Output
@@ -461,6 +472,7 @@ Permanently deletes an Instantly V2 campaign.
461472

462473
| Parameter | Type | Required | Description |
463474
| --------- | ---- | -------- | ----------- |
475+
| `apiKey` | string | Yes | Instantly API key with the required V2 scopes |
464476
| `campaignId` | string | Yes | Campaign ID |
465477

466478
#### Output
@@ -495,6 +507,7 @@ Retrieves Instantly V2 Unibox emails with search and pagination filters.
495507

496508
| Parameter | Type | Required | Description |
497509
| --------- | ---- | -------- | ----------- |
510+
| `apiKey` | string | Yes | Instantly API key with the required V2 scopes |
498511
| `limit` | number | No | Number of emails to return, from 1 to 100 |
499512
| `starting_after` | string | No | Pagination cursor from next_starting_after |
500513
| `search` | string | No | Search query, email address, or thread:<thread-id> |
@@ -537,6 +550,7 @@ Sends an Instantly V2 reply to an existing Unibox email.
537550

538551
| Parameter | Type | Required | Description |
539552
| --------- | ---- | -------- | ----------- |
553+
| `apiKey` | string | Yes | Instantly API key with the required V2 scopes |
540554
| `eaccount` | string | Yes | Connected email account used to send the reply |
541555
| `reply_to_uuid` | string | Yes | Email ID to reply to |
542556
| `subject` | string | Yes | Reply subject |
@@ -576,6 +590,7 @@ Retrieves Instantly V2 lead lists with search and pagination filters.
576590

577591
| Parameter | Type | Required | Description |
578592
| --------- | ---- | -------- | ----------- |
593+
| `apiKey` | string | Yes | Instantly API key with the required V2 scopes |
579594
| `limit` | number | No | Number of lead lists to return, from 1 to 100 |
580595
| `starting_after` | string | No | Starting-after timestamp cursor |
581596
| `has_enrichment_task` | boolean | No | Filter by enrichment task setting |
@@ -613,6 +628,7 @@ Creates an Instantly V2 lead list.
613628

614629
| Parameter | Type | Required | Description |
615630
| --------- | ---- | -------- | ----------- |
631+
| `apiKey` | string | Yes | Instantly API key with the required V2 scopes |
616632
| `name` | string | Yes | Lead list name |
617633
| `has_enrichment_task` | boolean | No | Whether this list runs enrichment for every added lead |
618634
| `owned_by` | string | No | User ID of the lead list owner |

0 commit comments

Comments
 (0)