Skip to content

Commit c52c7c6

Browse files
committed
feat(confluence): added more confluence endpoints
1 parent 36ec68d commit c52c7c6

File tree

112 files changed

+5041
-503
lines changed

Some content is hidden

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

112 files changed

+5041
-503
lines changed

apps/docs/components/ui/icon-mapping.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,9 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
163163
elevenlabs: ElevenLabsIcon,
164164
enrich: EnrichSoIcon,
165165
exa: ExaAIIcon,
166-
file_v2: DocumentIcon,
166+
file_v3: DocumentIcon,
167167
firecrawl: FirecrawlIcon,
168-
fireflies: FirefliesIcon,
168+
fireflies_v2: FirefliesIcon,
169169
github_v2: GithubIcon,
170170
gitlab: GitLabIcon,
171171
gmail_v2: GmailIcon,
@@ -177,7 +177,7 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
177177
google_maps: GoogleMapsIcon,
178178
google_search: GoogleIcon,
179179
google_sheets_v2: GoogleSheetsIcon,
180-
google_slides: GoogleSlidesIcon,
180+
google_slides_v2: GoogleSlidesIcon,
181181
google_vault: GoogleVaultIcon,
182182
grafana: GrafanaIcon,
183183
grain: GrainIcon,
@@ -221,11 +221,11 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
221221
polymarket: PolymarketIcon,
222222
postgresql: PostgresIcon,
223223
posthog: PosthogIcon,
224-
pulse: PulseIcon,
224+
pulse_v2: PulseIcon,
225225
qdrant: QdrantIcon,
226226
rds: RDSIcon,
227227
reddit: RedditIcon,
228-
reducto: ReductoIcon,
228+
reducto_v2: ReductoIcon,
229229
resend: ResendIcon,
230230
s3: S3Icon,
231231
salesforce: SalesforceIcon,
@@ -244,11 +244,11 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
244244
ssh: SshIcon,
245245
stagehand: StagehandIcon,
246246
stripe: StripeIcon,
247-
stt: STTIcon,
247+
stt_v2: STTIcon,
248248
supabase: SupabaseIcon,
249249
tavily: TavilyIcon,
250250
telegram: TelegramIcon,
251-
textract: TextractIcon,
251+
textract_v2: TextractIcon,
252252
tinybird: TinybirdIcon,
253253
translate: TranslateIcon,
254254
trello: TrelloIcon,
@@ -257,7 +257,7 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
257257
twilio_voice: TwilioIcon,
258258
typeform: TypeformIcon,
259259
video_generator_v2: VideoIcon,
260-
vision: EyeIcon,
260+
vision_v2: EyeIcon,
261261
wealthbox: WealthboxIcon,
262262
webflow: WebflowIcon,
263263
whatsapp: WhatsAppIcon,

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

Lines changed: 537 additions & 9 deletions
Large diffs are not rendered by default.

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ Send a message to a Discord channel
6363
| Parameter | Type | Description |
6464
| --------- | ---- | ----------- |
6565
| `message` | string | Success or error message |
66+
| `files` | file[] | Files attached to the message |
6667
| `data` | object | Discord message data |
6768
|`id` | string | Message ID |
6869
|`content` | string | Message content |

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

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ Upload a file to Dropbox
4343
| Parameter | Type | Required | Description |
4444
| --------- | ---- | -------- | ----------- |
4545
| `path` | string | Yes | The path in Dropbox where the file should be saved \(e.g., /folder/document.pdf\) |
46-
| `fileContent` | string | Yes | The base64 encoded content of the file to upload |
46+
| `file` | file | No | The file to upload \(UserFile object\) |
47+
| `fileContent` | string | No | Legacy: base64 encoded file content |
4748
| `fileName` | string | No | Optional filename \(used if path is a folder\) |
4849
| `mode` | string | No | Write mode: add \(default\) or overwrite |
4950
| `autorename` | boolean | No | If true, rename the file if there is a conflict |
@@ -66,7 +67,7 @@ Upload a file to Dropbox
6667

6768
### `dropbox_download`
6869

69-
Download a file from Dropbox and get a temporary link
70+
Download a file from Dropbox with metadata and content
7071

7172
#### Input
7273

@@ -78,11 +79,8 @@ Download a file from Dropbox and get a temporary link
7879

7980
| Parameter | Type | Description |
8081
| --------- | ---- | ----------- |
81-
| `file` | object | The file metadata |
82-
|`id` | string | Unique identifier for the file |
83-
|`name` | string | Name of the file |
84-
|`path_display` | string | Display path of the file |
85-
|`size` | number | Size of the file in bytes |
82+
| `file` | file | Downloaded file stored in execution files |
83+
| `metadata` | json | The file metadata |
8684
| `temporaryLink` | string | Temporary link to download the file \(valid for ~4 hours\) |
8785
| `content` | string | Base64 encoded file content \(if fetched\) |
8886

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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Read and parse multiple files
66
import { BlockInfoCard } from "@/components/ui/block-info-card"
77

88
<BlockInfoCard
9-
type="file_v2"
9+
type="file_v3"
1010
color="#40916C"
1111
/>
1212

@@ -27,7 +27,7 @@ The File Parser tool is particularly useful for scenarios where your agents need
2727

2828
## Usage Instructions
2929

30-
Integrate File into the workflow. Can upload a file manually or insert a file url.
30+
Upload files directly or import from external URLs to get UserFile objects for use in other blocks.
3131

3232

3333

@@ -41,14 +41,15 @@ Parse one or more uploaded files or files from URLs (text, PDF, CSV, images, etc
4141

4242
| Parameter | Type | Required | Description |
4343
| --------- | ---- | -------- | ----------- |
44-
| `filePath` | string | Yes | Path to the file\(s\). Can be a single path, URL, or an array of paths. |
44+
| `filePath` | string | No | Path to the file\(s\). Can be a single path, URL, or an array of paths. |
45+
| `file` | file | No | Uploaded file\(s\) to parse |
4546
| `fileType` | string | No | Type of file to parse \(auto-detected if not specified\) |
4647

4748
#### Output
4849

4950
| Parameter | Type | Description |
5051
| --------- | ---- | ----------- |
51-
| `files` | array | Array of parsed files with content, metadata, and file properties |
52-
| `combinedContent` | string | All file contents merged into a single text string |
52+
| `files` | file[] | Parsed files as UserFile objects |
53+
| `combinedContent` | string | Combined content of all parsed files |
5354

5455

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Interact with Fireflies.ai meeting transcripts and recordings
66
import { BlockInfoCard } from "@/components/ui/block-info-card"
77

88
<BlockInfoCard
9-
type="fireflies"
9+
type="fireflies_v2"
1010
color="#100730"
1111
/>
1212

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -692,6 +692,7 @@ Get the content of a file from a GitHub repository. Supports files up to 1MB. Co
692692
| `download_url` | string | Direct download URL |
693693
| `git_url` | string | Git blob API URL |
694694
| `_links` | json | Related links |
695+
| `file` | file | Downloaded file stored in execution files |
695696

696697
### `github_create_file`
697698

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -291,11 +291,7 @@ Download a file from Google Drive with complete metadata (exports Google Workspa
291291

292292
| Parameter | Type | Description |
293293
| --------- | ---- | ----------- |
294-
| `file` | object | Downloaded file data |
295-
|`name` | string | File name |
296-
|`mimeType` | string | MIME type of the file |
297-
|`data` | string | File content as base64-encoded string |
298-
|`size` | number | File size in bytes |
294+
| `file` | file | Downloaded file stored in execution files |
299295
| `metadata` | object | Complete file metadata from Google Drive |
300296
|`id` | string | Google Drive file ID |
301297
|`kind` | string | Resource type identifier |

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Read, write, and create presentations
66
import { BlockInfoCard } from "@/components/ui/block-info-card"
77

88
<BlockInfoCard
9-
type="google_slides"
9+
type="google_slides_v2"
1010
color="#E0E0E0"
1111
/>
1212

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

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,28 @@ Get all attachments from a Jira issue
333333
| `issueKey` | string | Issue key |
334334
| `attachments` | array | Array of attachments with id, filename, size, mimeType, created, author |
335335

336+
### `jira_add_attachment`
337+
338+
Add attachments to a Jira issue
339+
340+
#### Input
341+
342+
| Parameter | Type | Required | Description |
343+
| --------- | ---- | -------- | ----------- |
344+
| `domain` | string | Yes | Your Jira domain \(e.g., yourcompany.atlassian.net\) |
345+
| `issueKey` | string | Yes | Jira issue key to add attachments to \(e.g., PROJ-123\) |
346+
| `files` | file[] | Yes | Files to attach to the Jira issue |
347+
| `cloudId` | string | No | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
348+
349+
#### Output
350+
351+
| Parameter | Type | Description |
352+
| --------- | ---- | ----------- |
353+
| `ts` | string | Timestamp of the operation |
354+
| `issueKey` | string | Issue key |
355+
| `attachmentIds` | json | IDs of uploaded attachments |
356+
| `files` | file[] | Uploaded attachment files |
357+
336358
### `jira_delete_attachment`
337359

338360
Delete an attachment from a Jira issue

0 commit comments

Comments
 (0)