Skip to content

Commit a936c7e

Browse files
committed
add visibilty to params
1 parent c49c5d5 commit a936c7e

6 files changed

Lines changed: 19 additions & 0 deletions

File tree

apps/sim/tools/wealthbox/read_contact.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,13 @@ export const wealthboxReadContactTool: ToolConfig<WealthboxReadParams, Wealthbox
1313
accessToken: {
1414
type: 'string',
1515
required: true,
16+
visibility: 'hidden',
1617
description: 'The access token for the Wealthbox API',
1718
},
1819
contactId: {
1920
type: 'string',
2021
required: false,
22+
visibility: 'user-only',
2123
description: 'The ID of the contact to read',
2224
},
2325
},

apps/sim/tools/wealthbox/read_note.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,13 @@ export const wealthboxReadNoteTool: ToolConfig<WealthboxReadParams, WealthboxRea
1414
type: 'string',
1515
required: true,
1616
description: 'The access token for the Wealthbox API',
17+
visibility: 'hidden',
1718
},
1819
noteId: {
1920
type: 'string',
2021
required: false,
2122
description: 'The ID of the note to read',
23+
visibility: 'user-only',
2224
},
2325
},
2426
request: {

apps/sim/tools/wealthbox/read_task.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,13 @@ export const wealthboxReadTaskTool: ToolConfig<WealthboxReadParams, WealthboxRea
1414
type: 'string',
1515
required: true,
1616
description: 'The access token for the Wealthbox API',
17+
visibility: 'hidden',
1718
},
1819
taskId: {
1920
type: 'string',
2021
required: false,
2122
description: 'The ID of the task to read',
23+
visibility: 'user-only',
2224
},
2325
},
2426
request: {

apps/sim/tools/wealthbox/write_contact.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,26 +65,31 @@ export const wealthboxWriteContactTool: ToolConfig<WealthboxWriteParams, Wealthb
6565
type: 'string',
6666
required: true,
6767
description: 'The access token for the Wealthbox API',
68+
visibility: 'hidden',
6869
},
6970
firstName: {
7071
type: 'string',
7172
required: true,
7273
description: 'The first name of the contact',
74+
visibility: 'user-or-llm',
7375
},
7476
lastName: {
7577
type: 'string',
7678
required: true,
7779
description: 'The last name of the contact',
80+
visibility: 'user-or-llm',
7881
},
7982
emailAddress: {
8083
type: 'string',
8184
required: false,
8285
description: 'The email address of the contact',
86+
visibility: 'user-or-llm',
8387
},
8488
backgroundInformation: {
8589
type: 'string',
8690
required: false,
8791
description: 'Background information about the contact',
92+
visibility: 'user-or-llm',
8893
},
8994
},
9095
request: {

apps/sim/tools/wealthbox/write_note.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,16 +92,19 @@ export const wealthboxWriteNoteTool: ToolConfig<WealthboxWriteParams, WealthboxW
9292
type: 'string',
9393
required: true,
9494
description: 'The access token for the Wealthbox API',
95+
visibility: 'hidden',
9596
},
9697
content: {
9798
type: 'string',
9899
required: true,
99100
description: 'The main body of the note',
101+
visibility: 'user-or-llm',
100102
},
101103
contactId: {
102104
type: 'string',
103105
required: false,
104106
description: 'ID of contact to link to this note',
107+
visibility: 'user-only',
105108
},
106109
},
107110
request: {

apps/sim/tools/wealthbox/write_task.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,27 +126,32 @@ export const wealthboxWriteTaskTool: ToolConfig<WealthboxWriteParams, WealthboxW
126126
type: 'string',
127127
required: true,
128128
description: 'The access token for the Wealthbox API',
129+
visibility: 'hidden',
129130
},
130131
title: {
131132
type: 'string',
132133
required: true,
133134
description: 'The name/title of the task',
135+
visibility: 'user-or-llm',
134136
},
135137
dueDate: {
136138
type: 'string',
137139
required: true,
138140
description:
139141
'The due date and time of the task (format: "YYYY-MM-DD HH:MM AM/PM -HHMM", e.g., "2015-05-24 11:00 AM -0400")',
142+
visibility: 'user-or-llm',
140143
},
141144
contactId: {
142145
type: 'string',
143146
required: false,
144147
description: 'ID of contact to link to this task',
148+
visibility: 'user-only',
145149
},
146150
description: {
147151
type: 'string',
148152
required: false,
149153
description: 'Description or notes about the task',
154+
visibility: 'user-or-llm',
150155
},
151156
},
152157
request: {

0 commit comments

Comments
 (0)