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/sim/app/(landing)/integrations/data/integrations.json
+18-5Lines changed: 18 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -2993,13 +2993,26 @@
2993
2993
"type": "file_v3",
2994
2994
"slug": "file",
2995
2995
"name": "File",
2996
-
"description": "Read and parse multiple files",
2997
-
"longDescription": "Upload files directly or import from external URLs to get UserFile objects for use in other blocks.",
2996
+
"description": "Read and write workspace files",
2997
+
"longDescription": "Read and parse files from uploads or URLs, write new workspace files, or append content to existing files.",
2998
2998
"bgColor": "#40916C",
2999
2999
"iconName": "DocumentIcon",
3000
3000
"docsUrl": "https://docs.sim.ai/tools/file",
3001
-
"operations": [],
3002
-
"operationCount": 0,
3001
+
"operations": [
3002
+
{
3003
+
"name": "Read",
3004
+
"description": "Parse one or more uploaded files or files from URLs (text, PDF, CSV, images, etc.)"
3005
+
},
3006
+
{
3007
+
"name": "Write",
3008
+
"description": "Create a new workspace file. If a file with the same name already exists, a numeric suffix is added (e.g., "
3009
+
},
3010
+
{
3011
+
"name": "Append",
3012
+
"description": "Append content to an existing workspace file. The file must already exist. Content is added to the end of the file."
3013
+
}
3014
+
],
3015
+
"operationCount": 3,
3003
3016
"triggers": [],
3004
3017
"triggerCount": 0,
3005
3018
"authType": "none",
@@ -8617,7 +8630,7 @@
8617
8630
"name": "Profound",
8618
8631
"description": "AI visibility and analytics with Profound",
8619
8632
"longDescription": "Track how your brand appears across AI platforms. Monitor visibility scores, sentiment, citations, bot traffic, referrals, content optimization, and prompt volumes with Profound.",
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/file-upload/file-upload.tsx
+11-29Lines changed: 11 additions & 29 deletions
Original file line number
Diff line number
Diff line change
@@ -7,9 +7,9 @@ import { useParams } from 'next/navigation'
0 commit comments