Skip to content

Commit ff0753a

Browse files
committed
fix more v2 blocks
1 parent 3b74708 commit ff0753a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

apps/sim/tools/jira/add_attachment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const jiraAddAttachmentTool: ToolConfig<JiraAddAttachmentParams, JiraAddA
3535
files: {
3636
type: 'file[]',
3737
required: true,
38-
visibility: 'user-only',
38+
visibility: 'hidden',
3939
description: 'Files to attach to the Jira issue',
4040
},
4141
cloudId: {

apps/sim/tools/linear/create_attachment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const linearCreateAttachmentTool: ToolConfig<
3535
file: {
3636
type: 'file',
3737
required: false,
38-
visibility: 'user-only',
38+
visibility: 'hidden',
3939
description: 'File to attach',
4040
},
4141
title: {

apps/sim/tools/sftp/upload.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export const sftpUploadTool: ToolConfig<SftpUploadParams, SftpUploadResult> = {
5353
files: {
5454
type: 'file[]',
5555
required: false,
56-
visibility: 'user-only',
56+
visibility: 'hidden',
5757
description: 'Files to upload',
5858
},
5959
fileContent: {

apps/sim/tools/vision/tool.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export const visionToolV2: ToolConfig<VisionV2Params, VisionResponse> = {
106106
imageFile: {
107107
type: 'file',
108108
required: true,
109-
visibility: 'user-only',
109+
visibility: 'hidden',
110110
description: 'Image file to analyze',
111111
},
112112
model: visionTool.params.model,

apps/sim/tools/wordpress/upload_media.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const uploadMediaTool: ToolConfig<WordPressUploadMediaParams, WordPressUp
2727
file: {
2828
type: 'file',
2929
required: false,
30-
visibility: 'user-only',
30+
visibility: 'hidden',
3131
description: 'File to upload (UserFile object)',
3232
},
3333
filename: {

0 commit comments

Comments
 (0)